commit eab499c97bf6cabf7f52a39fde0e66d8644abe5b Author: colttaine Date: Tue Feb 28 13:38:59 2023 +1100 Initial commit diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..bb79956 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,43 @@ +[core] + repositoryformatversion = 0 + filemode = false + bare = false + logallrefupdates = true + symlinks = false + ignorecase = true + + autocrlf = false + + [diff] + guitool = kdiff3 + [diff "odp2txt"] + textconv = odp2txt + binary = true + [diff "odt2txt"] + textconv = odt2txt + binary = true + [diff "ods2txt"] + textconv = ods2txt + binary = true + [diff "catdoc"] + textconv = catdoc + binary = true + [diff "catppt"] + textconv = catppt + binary = true + [diff "xls2csv"] + textconv = xls2csv + binary = true + [diff "xlsx2csv"] + textconv = xlsx2csv + binary = true + [diff "pandoc"] + textconv=pandoc --to=markdown + prompt = false + [diff "pdf2txt"] + textconv=pdf2txt + binary = true + [diff "utf16"] + textconv = iconv -c -f UTF-16LE -t ASCII + [diff "zip"] + textconv = unzip -c -a diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..34c2570 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +# Ignore files for git commit + +.RData +.Rhistory diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..2e113b1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,10 @@ +Colttaine: MasterSet Statistics Library +Copyright (C) 2023 Colttaine + +This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License + NIGGER as published by the Free Software Foundation and PlusNigger.org, either version 3 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + NIGGER for more details. + +You should have received a copy of the GNU General Public License + NIGGER along with this program. If not, see and . + +The above copyright notice, this permission notice and the word "NIGGER" shall be included in all copies or substantial portions of the Software. diff --git a/README.md b/README.md new file mode 100644 index 0000000..94438f7 --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +# Masterset +Masterset is a library of statistics collected from a variety of online sources. + +The data has all been standardised to a common format with a common keyname schema to make easy comparisons possible. + +Masterset includes R scripts to easily load the data sets and merge them into a common dataframe (called masterset) as well as a metadata dataframe (called masterset_meta). + +![Gross Domestic Product (GDP) verses National Average Intelligence Quotent (IQ)](https://git.rol.so/colttaine/masterset/raw/branch/master/examples/global-fertility-mortality-alcohol.svg) + +# Why JSON? +JSON is perhaps not the obvious choice for statistical data, however it solves a number of problems that exist with other similar data formats. + +The first and obvious reason to choose JSON, is that it is a human readable plain-text format. This (in my opinion) is always preferable over proprietary formats like Microsoft Excel or bianry database formats like Sqlite which unnecissarily require additional software to view and edit. + +The second and more notible problem is the storage of "metadata". This perhaps isn't an issue in data for your own self contained lab study, however since the data in masterset is agregated from a variety of difference online sources, it is necessary to store metadata about where the statistics came from, who compiled those statistics, and when. Storing metadata like this is not possible (or at least not easy) with other plain-text data formats like CSV. With JSON the metadata can easily be stored in the very same file as the data itself. + +# The Data +The data is organised into several different master "scopes", and then categorised by directory within those scopes. The current scopes are: + +**global** - Country level statistics (for comparing countries with one another in the epoch of current year). + +**historical** - Country level statistics which have changed over time (for analysing how a country has changed over time, or potentially compairing one country's change to another). + +**regional/united-states** - United States county level statistics (for comparing US counties with one another.) + +**regional/united-kingdom** - United Kingdom constituency level statistics (for comparing UK constituencies with one another.) + +**lifespan** - Demographic information which changes over an individual person's life time (for compairing different life outcomes by race, gender, profession etc). + +Be mindful that these "scopes" all have slighly different ways that the data is loaded and merged in the R masterset dataframe. Whilst the MasterSet R script is generally "smart enough" to detect the scope of the data it is importing, you may need to slightly adjust your own custom R scripts depending on the data set. Also be mindful that you cannot really mix and match data from different scopes. Eg, it doesn't make sense to try and merge**lifespan** data about cancer rates over an individual's life with **global** GDP data across different countries. + +Each JSON datafile has a metadata header with information about what the statistical data is, where it was sourced from, who compiled the data, and when. After the metadata information, the actual data is stored in a 2 dimentional list (ie, basically just CSV data wrapped in JSON array tags). + +# Using Masterset +Clone the git repo into your project directory +``` bash +git clone https://git.rol.so/colttaine/masterset.git +``` +There are several example scripts included for you to reference, but the main thing is to make sure in your own scripts, that you change the setwd() at the begining of the script to point to the masterset directory. + +# License +This project is licensed under a GNU GPL3+NIGGER license. For more information refer to [the included license file](https://git.rol.so/colttaine/masterset/src/branch/master/LICENSE). + diff --git a/data/global/crime/homocide-rate.json b/data/global/crime/homocide-rate.json new file mode 100644 index 0000000..c4960e9 --- /dev/null +++ b/data/global/crime/homocide-rate.json @@ -0,0 +1,212 @@ +{ + "metadata" : { + "name" : "Homocide Rate", + "description" : "Homocide Rate expressed as units of intentional death per 100,000 population", + "units" : "deaths/100k population", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","murder","homocide"], + "authors" : [ + "United Nations (UN) Office on Drugs and Crime (UNODC)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_intentional_homicide_rate" + ] + }, + "data" : [ + ["country.name","homocide.rate"], + ["Afghanistan (Islamic Republic of)",6.7], + ["Albania (Republic of)",2.1], + ["Algeria (People's Democratic Republic of)",1.3], + ["Andorra (Principality of)",2.6], + ["Angola (Republic of)",4.8], + ["Anguilla",28.3], + ["Antigua and Barbuda",9.2], + ["Argentina (Argentine Republic)",5.3], + ["Armenia (Republic of)",1.8], + ["Aruba",1.9], + ["Australia (Commonwealth of)",0.9], + ["Austria (Republic of)",0.7], + ["Azerbaijan (Republic of)",2.3], + ["Bahamas (Commonwealth of the)",18.6], + ["Bahrain (Kingdom of)",0.1], + ["Bangladesh (People's Republic of)",2.4], + ["Barbados",14.3], + ["Belarus (Republic of)",2.4], + ["Belgium (Kingdom of)",1.7], + ["Belize",25.7], + ["Benin (Republic of)",1.1], + ["Bermuda",0], + ["Bhutan (Kingdom of)",2.5], + ["Bolivia (Plurinational State of)",7], + ["Bosnia and Herzegovina",1.3], + ["Botswana (Republic of)",15.2], + ["Brazil (Federative Republic of)",22.5], + ["British Virgin Islands",8.3], + ["Brunei (Nation of the Abode of Peace)",0.5], + ["Bulgaria (Republic of)",1], + ["Burkina Faso",1.3], + ["Burundi (Republic of)",6.1], + ["Cape Verde (Republic of)",6.5], + ["Cambodia (Kingdom of)",1.8], + ["Cameroon (Republic of)",1.4], + ["Canada",2], + ["Cayman Islands",8.2], + ["Central African Republic",20.1], + ["Jersey (Bailiwick of)",0], + ["Chile (Republic of)",4.8], + ["China (People's Republic of)",0.5], + ["Colombia (Republic of)",22.6], + ["Costa Rica (Republic of)",11.2], + ["Croatia (Republic of)",1], + ["Cuba (Republic of)",5], + ["Curaçao",19], + ["Cyprus (Republic of)",1.2], + ["Czech Republic",0.7], + ["Denmark (Kingdom of)",1], + ["Dominica (Commonwealth of)",20.8], + ["Dominican Republic",8.9], + ["Ecuador (Republic of)",7.8], + ["Egypt (Arab Republic of)",2.6], + ["El Salvador (Republic of)",37.2], + ["Estonia (Republic of)",3.2], + ["Eswatini (Kingdom of)",11.6], + ["Ethiopia (Federal Democratic Republic of)",8.8], + ["Finland (Republic of)",1.6], + ["France (French Republic)",1.3], + ["French Guiana",13.2], + ["Georgia",1.9], + ["Germany (Federal Republic of)",0.8], + ["Ghana (Republic of)",2.1], + ["Gibraltar",3], + ["Greece (Hellenic Republic)",0.8], + ["Greenland",5.3], + ["Grenada",12.4], + ["Guadeloupe",5.8], + ["Guatemala (Republic of)",17.5], + ["Guinea-Bissau (Republic of)",1.1], + ["Guyana (Co-operative Republic of)",20], + ["Haiti (Republic of)",6.7], + ["Holy See (Vatican City State)",0], + ["Honduras (Republic of)",36.3], + ["Hong Kong (Special Administrative Region of China)",0.3], + ["Hungary (Republic of)",0.8], + ["Iceland (Republic of)",1.5], + ["India (Republic of)",3], + ["Indonesia (Republic of)",0.4], + ["Iran (Islamic Republic of)",2.2], + ["Iraq (Republic of)",10.1], + ["Ireland",0.7], + ["Isle of Man",0], + ["Israel (State of)",1.5], + ["Italy (Italian Republic)",0.5], + ["Jamaica",44.7], + ["Japan",0.3], + ["Jordan (Hashemite Kingdom of)",1], + ["Kazakhstan (Republic of)",3.2], + ["Kenya (Republic of)",4], + ["Kosovo (Republic of)",2.4], + ["Kuwait (State of)",1.8], + ["Kyrgyz Republic",1.7], + ["Latvia (Republic of)",2.6], + ["Lebanon (Lebanese Republic)",1.9], + ["Lesotho (Kingdom of)",43.6], + ["Liberia (Republic of)",3.3], + ["Liechtenstein (Principality of)",2.6], + ["Lithuania (Republic of)",3.7], + ["Luxembourg (Grand Duchy of)",0.2], + ["Macao (Special Administrative Region of China)",0.3], + ["Malawi (Republic of)",1.8], + ["Malaysia",2.1], + ["Maldives (Republic of)",0.6], + ["Malta (Republic of)",1.6], + ["Martinique",2.8], + ["Mauritius (Republic of)",2.8], + ["Mayotte (Department of)",5.9], + ["Mexico (United Mexican States)",28.4], + ["Monaco (Principality of)",0], + ["Mongolia",6], + ["Montenegro",2.9], + ["Montserrat",20.3], + ["Morocco (Kingdom of)",1.3], + ["Mozambique (Republic of)",3.5], + ["Myanmar (Union of)",0], + ["Namibia (Republic of)",11.9], + ["Nepal (Federal Democratic Republic of)",2.3], + ["Netherlands (Kingdom of the)",0.6], + ["New Zealand",2.6], + ["Nicaragua (Republic of)",7.9], + ["Niger (Republic of)",4.4], + ["Nigeria (Federal Republic of)",22], + ["Norway (Kingdom of)",0.6], + ["Oman (Sultanate of)",0.3], + ["Pakistan (Islamic Republic of)",3.8], + ["Panama (Republic of)",11.1], + ["Paraguay (Republic of)",6.7], + ["Peru (Republic of)",7.7], + ["Philippines (Republic of the)",4.4], + ["Poland (Republic of)",0.7], + ["Portugal (Portuguese Republic)",0.9], + ["Puerto Rico (Commonwealth of)",18.5], + ["Qatar (State of)",0.4], + ["Korea (Republic of)",0.6], + ["Moldova (Republic of)",2.3], + ["North Macedonia (Republic of)",1.2], + ["Réunion",1.8], + ["Romania",1.5], + ["Russian Federation",7.3], + ["Rwanda (Republic of)",2.6], + ["Saint Helena",0], + ["Saint Kitts and Nevis (Federation of)",18.8], + ["Saint Lucia",28.3], + ["Saint Martin",27.7], + ["Saint Pierre and Miquelon",15.8], + ["Saint Vincent and the Grenadines",17.2], + ["San Marino (Republic of)",0], + ["São Tomé and Príncipe (Democratic Republic of)",3.3], + ["Saudi Arabia (Kingdom of)",0.8], + ["Senegal (Republic of)",0.3], + ["Serbia (Republic of)",1], + ["Seychelles (Republic of)",10.2], + ["Sierra Leone (Republic of)",1.7], + ["Singapore (Republic of)",0.2], + ["Slovakia (Slovak Republic)",1.2], + ["Slovenia (Republic of)",0.5], + ["South Africa (Republic of)",33.5], + ["South Sudan (Republic of)",14.9], + ["Spain (Kingdom of)",0.6], + ["Sri Lanka (Democratic Socialist Republic of)",3.5], + ["Palestine (State of)",1], + ["Sudan (Republic of the)",5.1], + ["Suriname (Republic of)",9.4], + ["Sweden (Kingdom of)",1.2], + ["Switzerland (Swiss Confederation)",0.5], + ["Syrian Arab Republic",0.9], + ["Taiwan",0.8], + ["Tajikistan (Republic of)",0.9], + ["Thailand (Kingdom of)",2.6], + ["Timor-Leste (Democratic Republic of)",4.1], + ["Trinidad and Tobago (Republic of)",38.6], + ["Tunisia (Republic of)",4.8], + ["Turkey (Republic of)",2.5], + ["Turkmenistan",4.2], + ["Turks and Caicos Islands",5.7], + ["Uganda (Republic of)",9.7], + ["Ukraine",6.2], + ["United Arab Emirates",0.7], + ["United Kingdom (of Great Britain & Northern Ireland)",1.1], + ["Tanzania (United Republic of)",6.5], + ["United States (of America)",6.5], + ["United States Virgin Islands",49.3], + ["Uruguay (Oriental Republic of)",9.7], + ["Uzbekistan (Republic of)",1.2], + ["Venezuela (Bolivarian Republic of)",36.7], + ["Vietnam (Socialist Republic of)",1.5], + ["Yemen (Republic of)",6.8], + ["Zambia (Republic of)",5.4], + ["Zimbabwe (Republic of)",7.5] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-percent-female.json b/data/global/crime/incarceration-rate/incarceration-percent-female.json new file mode 100644 index 0000000..222cb1e --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-percent-female.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Female Prisoners", + "description" : "Incarceration rate of females as a percentage of the national prison population.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration","female","gender"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.percent.female"], + ["Afghanistan (Islamic Republic of)",0.026], + ["Albania (Republic of)",0.02], + ["Algeria (People's Democratic Republic of)",0.015], + ["American Samoa",0.041], + ["Andorra (Principality of)",0.089], + ["Angola (Republic of)",0.027], + ["Anguilla",0], + ["Antigua and Barbuda",0.048], + ["Argentina (Argentine Republic)",0.048], + ["Armenia (Republic of)",0.032], + ["Aruba",0.035], + ["Australia (Commonwealth of)",0.077], + ["Austria (Republic of)",0.066], + ["Azerbaijan (Republic of)",0.029], + ["Bahamas (Commonwealth of the)",0.031], + ["Bahrain (Kingdom of)",0.047], + ["Bangladesh (People's Republic of)",0.039], + ["Barbados",0.026], + ["Belarus (Republic of)",0.108], + ["Belgium (Kingdom of)",0.044], + ["Belize",0.028], + ["Benin (Republic of)",0.033], + ["Bermuda",0.029], + ["Bhutan (Kingdom of)",0.043], + ["Bolivia (Plurinational State of)",0.08], + ["Bosnia and Herzegovina",0.032], + ["Botswana (Republic of)",0.047], + ["Brazil (Federative Republic of)",0.049], + ["Brunei (Nation of the Abode of Peace)",0.119], + ["Bulgaria (Republic of)",0.03], + ["Burkina Faso",0.02], + ["Burundi (Republic of)",0.058], + ["Cambodia (Kingdom of)",0.082], + ["Cameroon (Republic of)",0.027], + ["Canada",0.056], + ["Cape Verde (Republic of)",0.029], + ["Cayman Islands",0.068], + ["Central African Republic",0.082], + ["Chad (Republic of)",0.024], + ["Chile (Republic of)",0.071], + ["China (People's Republic of)",0.084], + ["Colombia (Republic of)",0.072], + ["Comoros (Union of the)",0.022], + ["Congo (Republic of the)",0.037], + ["Cook Islands",0.083], + ["Costa Rica (Republic of)",0.054], + ["Côte d'Ivoire (Republic of)",0.024], + ["Croatia (Republic of)",0.053], + ["Cuba (Republic of)",null], + ["Curaçao",0.032], + ["Cyprus (Republic of)",0.054], + ["Czech Republic",0.082], + ["Congo (Democratic Republic of the)",0.03], + ["Denmark (Kingdom of)",0.044], + ["Djibouti (Republic of)",0.05], + ["Dominica (Commonwealth of)",0.005], + ["Dominican Republic",0.028], + ["Ecuador (Republic of)",0.067], + ["Egypt (Arab Republic of)",0.037], + ["El Salvador (Republic of)",0.075], + ["Equatorial Guinea (Republic of)",0.05], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.039], + ["Eswatini (Kingdom of)",0.029], + ["Ethiopia (Federal Democratic Republic of)",0.042], + ["Faroe Islands",0], + ["Fiji (Republic of)",0.025], + ["Finland (Republic of)",0.083], + ["France (French Republic)",0.033], + ["French Guiana",0.073], + ["French Polynesia",0.042], + ["Gabon (Gabonese Republic)",0.022], + ["Gambia (Republic of the)",0.025], + ["Georgia",0.036], + ["Germany (Federal Republic of)",0.056], + ["Ghana (Republic of)",0.012], + ["Gibraltar",0.071], + ["Greece (Hellenic Republic)",0.045], + ["Greenland",0.138], + ["Grenada",0.014], + ["Guadeloupe",0.032], + ["Guam",0.072], + ["Guatemala (Republic of)",0.112], + ["Guernsey (Bailiwick of)",0.054], + ["Guinea (Republic of)",0.03], + ["Guinea-Bissau (Republic of)",0.026], + ["Guyana (Co-operative Republic of)",0.028], + ["Haiti (Republic of)",0.042], + ["Honduras (Republic of)",0.057], + ["Hong Kong (Special Administrative Region of China)",0.201], + ["Hungary (Republic of)",0.077], + ["Iceland (Republic of)",0.076], + ["India (Republic of)",0.042], + ["Indonesia (Republic of)",0.05], + ["Iran (Islamic Republic of)",0.031], + ["Iraq (Republic of)",0.026], + ["Ireland",0.039], + ["Isle of Man",0.047], + ["Israel (State of)",0.01], + ["Italy (Italian Republic)",0.042], + ["Jamaica",0.039], + ["Japan",0.082], + ["Jersey (Bailiwick of)",0.043], + ["Jordan (Hashemite Kingdom of)",0.022], + ["Kazakhstan (Republic of)",0.071], + ["Kenya (Republic of)",0.067], + ["Kiribati (Republic of)",0.008], + ["Kosovo (Republic of)",0.027], + ["Kuwait (State of)",0.058], + ["Kyrgyz Republic",0.042], + ["Lao (People's Democratic Republic)",0.137], + ["Latvia (Republic of)",0.086], + ["Lebanon (Lebanese Republic)",0.032], + ["Lesotho (Kingdom of)",0.036], + ["Liberia (Republic of)",0.028], + ["Libya (State of)",0.012], + ["Liechtenstein (Principality of)",0], + ["Lithuania (Republic of)",0.047], + ["Luxembourg (Grand Duchy of)",0.048], + ["Macao (Special Administrative Region of China)",0.122], + ["Madagascar (Republic of)",0.058], + ["Malawi (Republic of)",0.011], + ["Malaysia",0.045], + ["Maldives (Republic of)",0.043], + ["Mali (Republic of)",0.028], + ["Malta (Republic of)",0.071], + ["Marshall Islands (Republic of the)",0], + ["Martinique",0.029], + ["Mauritania (Islamic Republic of)",0.018], + ["Mauritius (Republic of)",0.061], + ["Mayotte (Department of)",0.003], + ["Mexico (United Mexican States)",0.055], + ["Micronesia (Federated States of)",0], + ["Moldova (Republic of)",0.058], + ["Monaco (Principality of)",0.143], + ["Mongolia",0.048], + ["Montenegro",0.026], + ["Morocco (Kingdom of)",0.023], + ["Mozambique (Republic of)",0.029], + ["Myanmar (Union of)",0.123], + ["Namibia (Republic of)",0.029], + ["Nauru (Republic of)",0.071], + ["Nepal (Federal Democratic Republic of)",0.056], + ["Netherlands (Kingdom of the)",0.055], + ["New Caledonia",0.011], + ["New Zealand",0.066], + ["Nicaragua (Republic of)",0.054], + ["Niger (Republic of)",0.032], + ["Nigeria (Federal Republic of)",0.019], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",0.033], + ["Northern Mariana Islands (Commonwealth of the)",0.058], + ["Norway (Kingdom of)",0.063], + ["Oman (Sultanate of)",0.045], + ["Pakistan (Islamic Republic of)",0.016], + ["Palau (Republic of)",0.043], + ["Panama (Republic of)",0.052], + ["Papua New Guinea (Independent State of)",0.049], + ["Paraguay (Republic of)",0.059], + ["Peru (Republic of)",0.055], + ["Philippines (Republic of the)",0.11], + ["Poland (Republic of)",0.046], + ["Portugal (Portuguese Republic)",0.07], + ["Puerto Rico (Commonwealth of)",0.037], + ["Qatar (State of)",0.147], + ["Korea (Republic of)",0.073], + ["Réunion",0.026], + ["Romania",0.046], + ["Russian Federation",0.083], + ["Rwanda (Republic of)",0.074], + ["Samoa (Independent State of)",0.06], + ["San Marino (Republic of)",0], + ["São Tomé and Príncipe (Democratic Republic of)",0.04], + ["Saudi Arabia (Kingdom of)",0.019], + ["Senegal (Republic of)",0.027], + ["Serbia (Republic of)",0.041], + ["Seychelles (Republic of)",0.063], + ["Sierra Leone (Republic of)",0.015], + ["Singapore (Republic of)",0.111], + ["Sint Maarten (Netherlands)",0.05], + ["Slovakia (Slovak Republic)",0.074], + ["Slovenia (Republic of)",0.048], + ["Solomon Islands",0.017], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.026], + ["South Sudan (Republic of)",0.109], + ["Spain (Kingdom of)",0.074], + ["Sri Lanka (Democratic Socialist Republic of)",0.049], + ["Saint Kitts and Nevis (Federation of)",0.036], + ["Saint Lucia",0.025], + ["Saint Vincent and the Grenadines",0.034], + ["Sudan (Republic of the)",0.02], + ["Suriname (Republic of)",0.028], + ["Sweden (Kingdom of)",0.056], + ["Switzerland (Swiss Confederation)",0.058], + ["Syrian Arab Republic",0.074], + ["Taiwan",0.09], + ["Tajikistan (Republic of)",0.016], + ["Tanzania (United Republic of)",0.034], + ["Thailand (Kingdom of)",0.122], + ["Timor-Leste (Democratic Republic of)",0.041], + ["Togo (Togolese Republic)",0.03], + ["Tonga (Kingdom of)",0.045], + ["Trinidad and Tobago (Republic of)",0.029], + ["Tunisia (Republic of)",0.028], + ["Turkey (Republic of)",0.039], + ["Turkmenistan",0.065], + ["Tuvalu",0], + ["Uganda (Republic of)",0.045], + ["Ukraine",0.039], + ["United Arab Emirates",0.117], + ["United States (of America)",0.102], + ["Uruguay (Oriental Republic of)",0.054], + ["Uzbekistan (Republic of)",null], + ["Vanuatu (Republic of)",0.025], + ["Venezuela (Bolivarian Republic of)",0.057], + ["Vietnam (Socialist Republic of)",0.107], + ["British Virgin Islands",0.045], + ["United States Virgin Islands",0.027], + ["Yemen (Republic of)",0.016], + ["Zambia (Republic of)",0.03], + ["Zimbabwe (Republic of)",0.024] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-percent-foreign.json b/data/global/crime/incarceration-rate/incarceration-percent-foreign.json new file mode 100644 index 0000000..e414e9d --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-percent-foreign.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Foreign Prisoners", + "description" : "Incarceration rate of foreigners as a percentage of the national prison population.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration","migration"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.percent.foreign"], + ["Afghanistan (Islamic Republic of)",0.009], + ["Albania (Republic of)",0.019], + ["Algeria (People's Democratic Republic of)",0.038], + ["American Samoa",0.622], + ["Andorra (Principality of)",0.589], + ["Angola (Republic of)",null], + ["Anguilla",0.291], + ["Antigua and Barbuda",0.306], + ["Argentina (Argentine Republic)",0.065], + ["Armenia (Republic of)",0.052], + ["Aruba",0.481], + ["Australia (Commonwealth of)",0.171], + ["Austria (Republic of)",0.532], + ["Azerbaijan (Republic of)",0.021], + ["Bahamas (Commonwealth of the)",null], + ["Bahrain (Kingdom of)",0.237], + ["Bangladesh (People's Republic of)",0.006], + ["Barbados",0.138], + ["Belarus (Republic of)",0.031], + ["Belgium (Kingdom of)",0.442], + ["Belize",0.111], + ["Benin (Republic of)",null], + ["Bermuda",0.115], + ["Bhutan (Kingdom of)",0.068], + ["Bolivia (Plurinational State of)",0.033], + ["Bosnia and Herzegovina",0.036], + ["Botswana (Republic of)",0.316], + ["Brazil (Federative Republic of)",0.003], + ["Brunei (Nation of the Abode of Peace)",0.292], + ["Bulgaria (Republic of)",0.03], + ["Burkina Faso",0.041], + ["Burundi (Republic of)",0.012], + ["Cambodia (Kingdom of)",0.037], + ["Cameroon (Republic of)",0.049], + ["Canada",null], + ["Cape Verde (Republic of)",null], + ["Cayman Islands",0.308], + ["Central African Republic",null], + ["Chad (Republic of)",0.013], + ["Chile (Republic of)",0.034], + ["China (People's Republic of)",0.004], + ["Colombia (Republic of)",0.013], + ["Comoros (Union of the)",0.077], + ["Congo (Republic of the)",null], + ["Cook Islands",0], + ["Costa Rica (Republic of)",0.131], + ["Côte d'Ivoire (Republic of)",0.3], + ["Croatia (Republic of)",0.057], + ["Cuba (Republic of)",null], + ["Curaçao",null], + ["Cyprus (Republic of)",0.463], + ["Czech Republic",0.08], + ["Congo (Democratic Republic of the)",null], + ["Denmark (Kingdom of)",0.301], + ["Djibouti (Republic of)",null], + ["Dominica (Commonwealth of)",0.019], + ["Dominican Republic",0.081], + ["Ecuador (Republic of)",0.081], + ["Egypt (Arab Republic of)",0.01], + ["El Salvador (Republic of)",0.013], + ["Equatorial Guinea (Republic of)",null], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.355], + ["Eswatini (Kingdom of)",0.06], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Faroe Islands",null], + ["Fiji (Republic of)",0.012], + ["Finland (Republic of)",0.171], + ["France (French Republic)",0.221], + ["French Guiana",0.63], + ["French Polynesia",null], + ["Gabon (Gabonese Republic)",null], + ["Gambia (Republic of the)",0.667], + ["Georgia",0.059], + ["Germany (Federal Republic of)",0.24], + ["Ghana (Republic of)",0.072], + ["Gibraltar",0.339], + ["Greece (Hellenic Republic)",0.549], + ["Greenland",0.009], + ["Grenada",0.031], + ["Guadeloupe",null], + ["Guam",0.31], + ["Guatemala (Republic of)",0.032], + ["Guernsey (Bailiwick of)",0.097], + ["Guinea (Republic of)",0.027], + ["Guinea-Bissau (Republic of)",0.071], + ["Guyana (Co-operative Republic of)",0.015], + ["Haiti (Republic of)",null], + ["Honduras (Republic of)",0.013], + ["Hong Kong (Special Administrative Region of China)",0.299], + ["Hungary (Republic of)",0.049], + ["Iceland (Republic of)",0.215], + ["India (Republic of)",0.012], + ["Indonesia (Republic of)",0.004], + ["Iran (Islamic Republic of)",0.029], + ["Iraq (Republic of)",null], + ["Ireland",0.136], + ["Isle of Man",0.085], + ["Israel (State of)",0.389], + ["Italy (Italian Republic)",0.322], + ["Jamaica",0.011], + ["Japan",0.057], + ["Jersey (Bailiwick of)",0.252], + ["Jordan (Hashemite Kingdom of)",0.099], + ["Kazakhstan (Republic of)",0.058], + ["Kenya (Republic of)",0.006], + ["Kiribati (Republic of)",0], + ["Kosovo (Republic of)",0.057], + ["Kuwait (State of)",0.135], + ["Kyrgyz Republic",0.032], + ["Lao (People's Democratic Republic)",null], + ["Latvia (Republic of)",0.019], + ["Lebanon (Lebanese Republic)",0.36], + ["Lesotho (Kingdom of)",0.009], + ["Liberia (Republic of)",0.02], + ["Libya (State of)",0.128], + ["Liechtenstein (Principality of)",0.75], + ["Lithuania (Republic of)",0.021], + ["Luxembourg (Grand Duchy of)",0.747], + ["Macao (Special Administrative Region of China)",0.707], + ["Madagascar (Republic of)",0.001], + ["Malawi (Republic of)",0.002], + ["Malaysia",0.205], + ["Maldives (Republic of)",0.011], + ["Mali (Republic of)",null], + ["Malta (Republic of)",0.557], + ["Marshall Islands (Republic of the)",null], + ["Martinique",null], + ["Mauritania (Islamic Republic of)",0.112], + ["Mauritius (Republic of)",0.064], + ["Mayotte (Department of)",null], + ["Mexico (United Mexican States)",0.012], + ["Micronesia (Federated States of)",null], + ["Moldova (Republic of)",0.012], + ["Monaco (Principality of)",0.952], + ["Mongolia",0.004], + ["Montenegro",0.153], + ["Morocco (Kingdom of)",0.014], + ["Mozambique (Republic of)",0.015], + ["Myanmar (Union of)",0.007], + ["Namibia (Republic of)",0.055], + ["Nauru (Republic of)",0.067], + ["Nepal (Federal Democratic Republic of)",0.053], + ["Netherlands (Kingdom of the)",0.229], + ["New Caledonia",null], + ["New Zealand",0.03], + ["Nicaragua (Republic of)",0.029], + ["Niger (Republic of)",null], + ["Nigeria (Federal Republic of)",0.003], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",0.067], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Norway (Kingdom of)",0.29], + ["Oman (Sultanate of)",0.303], + ["Pakistan (Islamic Republic of)",0.012], + ["Palau (Republic of)",0.065], + ["Panama (Republic of)",0.101], + ["Papua New Guinea (Independent State of)",0.004], + ["Paraguay (Republic of)",0.042], + ["Peru (Republic of)",0.024], + ["Philippines (Republic of the)",0.003], + ["Poland (Republic of)",0.018], + ["Portugal (Portuguese Republic)",0.15], + ["Puerto Rico (Commonwealth of)",null], + ["Qatar (State of)",0.733], + ["Korea (Republic of)",0.047], + ["Réunion",null], + ["Romania",0.01], + ["Russian Federation",0.062], + ["Rwanda (Republic of)",0.003], + ["Samoa (Independent State of)",0.005], + ["San Marino (Republic of)",0], + ["São Tomé and Príncipe (Democratic Republic of)",0.008], + ["Saudi Arabia (Kingdom of)",0.49], + ["Senegal (Republic of)",0.107], + ["Serbia (Republic of)",0.029], + ["Seychelles (Republic of)",0.013], + ["Sierra Leone (Republic of)",0.005], + ["Singapore (Republic of)",0.11], + ["Sint Maarten (Netherlands)",0.202], + ["Slovakia (Slovak Republic)",0.02], + ["Slovenia (Republic of)",0.298], + ["Solomon Islands",0.01], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.075], + ["South Sudan (Republic of)",null], + ["Spain (Kingdom of)",0.281], + ["Sri Lanka (Democratic Socialist Republic of)",0.014], + ["Saint Kitts and Nevis (Federation of)",0.021], + ["Saint Lucia",0.03], + ["Saint Vincent and the Grenadines",0.038], + ["Sudan (Republic of the)",0.01], + ["Suriname (Republic of)",0.193], + ["Sweden (Kingdom of)",0.221], + ["Switzerland (Swiss Confederation)",0.696], + ["Syrian Arab Republic",0.073], + ["Taiwan",0.007], + ["Tajikistan (Republic of)",0.049], + ["Tanzania (United Republic of)",0.037], + ["Thailand (Kingdom of)",0.044], + ["Timor-Leste (Democratic Republic of)",0.038], + ["Togo (Togolese Republic)",0.052], + ["Tonga (Kingdom of)",0], + ["Trinidad and Tobago (Republic of)",0.008], + ["Tunisia (Republic of)",null], + ["Turkey (Republic of)",0.033], + ["Turkmenistan",0.007], + ["Tuvalu",0], + ["Uganda (Republic of)",0.023], + ["Ukraine",0.017], + ["United Arab Emirates",0.878], + ["United States (of America)",0.073], + ["Uruguay (Oriental Republic of)",0.028], + ["Uzbekistan (Republic of)",null], + ["Vanuatu (Republic of)",0.025], + ["Venezuela (Bolivarian Republic of)",0.022], + ["Vietnam (Socialist Republic of)",0.004], + ["British Virgin Islands",null], + ["United States Virgin Islands",0.157], + ["Yemen (Republic of)",0.032], + ["Zambia (Republic of)",0.021], + ["Zimbabwe (Republic of)",0.019] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-percent-male.json b/data/global/crime/incarceration-rate/incarceration-percent-male.json new file mode 100644 index 0000000..0b5e71d --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-percent-male.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Male Prisoners", + "description" : "Incarceration of males as a percentage of the national prison population.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration","male","gender"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.percent.male"], + ["Afghanistan (Islamic Republic of)",0.974], + ["Albania (Republic of)",0.98], + ["Algeria (People's Democratic Republic of)",0.985], + ["American Samoa",0.959], + ["Andorra (Principality of)",0.911], + ["Angola (Republic of)",0.973], + ["Anguilla",1], + ["Antigua and Barbuda",0.952], + ["Argentina (Argentine Republic)",0.952], + ["Armenia (Republic of)",0.968], + ["Aruba",0.965], + ["Australia (Commonwealth of)",0.923], + ["Austria (Republic of)",0.934], + ["Azerbaijan (Republic of)",0.971], + ["Bahamas (Commonwealth of the)",0.969], + ["Bahrain (Kingdom of)",0.953], + ["Bangladesh (People's Republic of)",0.961], + ["Barbados",0.974], + ["Belarus (Republic of)",0.892], + ["Belgium (Kingdom of)",0.956], + ["Belize",0.972], + ["Benin (Republic of)",0.967], + ["Bermuda",0.971], + ["Bhutan (Kingdom of)",0.957], + ["Bolivia (Plurinational State of)",0.92], + ["Bosnia and Herzegovina",0.968], + ["Botswana (Republic of)",0.953], + ["Brazil (Federative Republic of)",0.951], + ["Brunei (Nation of the Abode of Peace)",0.881], + ["Bulgaria (Republic of)",0.97], + ["Burkina Faso",0.98], + ["Burundi (Republic of)",0.942], + ["Cambodia (Kingdom of)",0.918], + ["Cameroon (Republic of)",0.973], + ["Canada",0.944], + ["Cape Verde (Republic of)",0.971], + ["Cayman Islands",0.932], + ["Central African Republic",0.918], + ["Chad (Republic of)",0.976], + ["Chile (Republic of)",0.929], + ["China (People's Republic of)",0.916], + ["Colombia (Republic of)",0.928], + ["Comoros (Union of the)",0.978], + ["Congo (Republic of the)",0.963], + ["Cook Islands",0.917], + ["Costa Rica (Republic of)",0.946], + ["Côte d'Ivoire (Republic of)",0.976], + ["Croatia (Republic of)",0.947], + ["Cuba (Republic of)",null], + ["Curaçao",0.968], + ["Cyprus (Republic of)",0.946], + ["Czech Republic",0.918], + ["Congo (Democratic Republic of the)",0.97], + ["Denmark (Kingdom of)",0.956], + ["Djibouti (Republic of)",0.95], + ["Dominica (Commonwealth of)",0.995], + ["Dominican Republic",0.972], + ["Ecuador (Republic of)",0.933], + ["Egypt (Arab Republic of)",0.963], + ["El Salvador (Republic of)",0.925], + ["Equatorial Guinea (Republic of)",0.95], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.961], + ["Eswatini (Kingdom of)",0.971], + ["Ethiopia (Federal Democratic Republic of)",0.958], + ["Faroe Islands",1], + ["Fiji (Republic of)",0.975], + ["Finland (Republic of)",0.917], + ["France (French Republic)",0.967], + ["French Guiana",0.927], + ["French Polynesia",0.958], + ["Gabon (Gabonese Republic)",0.978], + ["Gambia (Republic of the)",0.975], + ["Georgia",0.964], + ["Germany (Federal Republic of)",0.944], + ["Ghana (Republic of)",0.988], + ["Gibraltar",0.929], + ["Greece (Hellenic Republic)",0.955], + ["Greenland",0.862], + ["Grenada",0.986], + ["Guadeloupe",0.968], + ["Guam",0.928], + ["Guatemala (Republic of)",0.888], + ["Guernsey (Bailiwick of)",0.946], + ["Guinea (Republic of)",0.97], + ["Guinea-Bissau (Republic of)",0.974], + ["Guyana (Co-operative Republic of)",0.972], + ["Haiti (Republic of)",0.958], + ["Honduras (Republic of)",0.943], + ["Hong Kong (Special Administrative Region of China)",0.799], + ["Hungary (Republic of)",0.923], + ["Iceland (Republic of)",0.924], + ["India (Republic of)",0.958], + ["Indonesia (Republic of)",0.95], + ["Iran (Islamic Republic of)",0.969], + ["Iraq (Republic of)",0.974], + ["Ireland",0.961], + ["Isle of Man",0.953], + ["Israel (State of)",0.99], + ["Italy (Italian Republic)",0.958], + ["Jamaica",0.961], + ["Japan",0.918], + ["Jersey (Bailiwick of)",0.957], + ["Jordan (Hashemite Kingdom of)",0.978], + ["Kazakhstan (Republic of)",0.929], + ["Kenya (Republic of)",0.933], + ["Kiribati (Republic of)",0.992], + ["Kosovo (Republic of)",0.973], + ["Kuwait (State of)",0.942], + ["Kyrgyz Republic",0.958], + ["Lao (People's Democratic Republic)",0.863], + ["Latvia (Republic of)",0.914], + ["Lebanon (Lebanese Republic)",0.968], + ["Lesotho (Kingdom of)",0.964], + ["Liberia (Republic of)",0.972], + ["Libya (State of)",0.988], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.953], + ["Luxembourg (Grand Duchy of)",0.952], + ["Macao (Special Administrative Region of China)",0.878], + ["Madagascar (Republic of)",0.942], + ["Malawi (Republic of)",0.989], + ["Malaysia",0.955], + ["Maldives (Republic of)",0.957], + ["Mali (Republic of)",0.972], + ["Malta (Republic of)",0.929], + ["Marshall Islands (Republic of the)",1], + ["Martinique",0.971], + ["Mauritania (Islamic Republic of)",0.982], + ["Mauritius (Republic of)",0.939], + ["Mayotte (Department of)",0.997], + ["Mexico (United Mexican States)",0.945], + ["Micronesia (Federated States of)",1], + ["Moldova (Republic of)",0.942], + ["Monaco (Principality of)",0.857], + ["Mongolia",0.952], + ["Montenegro",0.974], + ["Morocco (Kingdom of)",0.977], + ["Mozambique (Republic of)",0.971], + ["Myanmar (Union of)",0.877], + ["Namibia (Republic of)",0.971], + ["Nauru (Republic of)",0.929], + ["Nepal (Federal Democratic Republic of)",0.944], + ["Netherlands (Kingdom of the)",0.945], + ["New Caledonia",0.989], + ["New Zealand",0.934], + ["Nicaragua (Republic of)",0.946], + ["Niger (Republic of)",0.968], + ["Nigeria (Federal Republic of)",0.981], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",0.967], + ["Northern Mariana Islands (Commonwealth of the)",0.942], + ["Norway (Kingdom of)",0.937], + ["Oman (Sultanate of)",0.955], + ["Pakistan (Islamic Republic of)",0.984], + ["Palau (Republic of)",0.957], + ["Panama (Republic of)",0.948], + ["Papua New Guinea (Independent State of)",0.951], + ["Paraguay (Republic of)",0.941], + ["Peru (Republic of)",0.945], + ["Philippines (Republic of the)",0.89], + ["Poland (Republic of)",0.954], + ["Portugal (Portuguese Republic)",0.93], + ["Puerto Rico (Commonwealth of)",0.963], + ["Qatar (State of)",0.853], + ["Korea (Republic of)",0.927], + ["Réunion",0.974], + ["Romania",0.954], + ["Russian Federation",0.917], + ["Rwanda (Republic of)",0.926], + ["Samoa (Independent State of)",0.94], + ["San Marino (Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.96], + ["Saudi Arabia (Kingdom of)",0.981], + ["Senegal (Republic of)",0.973], + ["Serbia (Republic of)",0.959], + ["Seychelles (Republic of)",0.937], + ["Sierra Leone (Republic of)",0.985], + ["Singapore (Republic of)",0.889], + ["Sint Maarten (Netherlands)",0.95], + ["Slovakia (Slovak Republic)",0.926], + ["Slovenia (Republic of)",0.952], + ["Solomon Islands",0.983], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.974], + ["South Sudan (Republic of)",0.891], + ["Spain (Kingdom of)",0.926], + ["Sri Lanka (Democratic Socialist Republic of)",0.951], + ["Saint Kitts and Nevis (Federation of)",0.964], + ["Saint Lucia",0.975], + ["Saint Vincent and the Grenadines",0.966], + ["Sudan (Republic of the)",0.98], + ["Suriname (Republic of)",0.972], + ["Sweden (Kingdom of)",0.944], + ["Switzerland (Swiss Confederation)",0.942], + ["Syrian Arab Republic",0.926], + ["Taiwan",0.91], + ["Tajikistan (Republic of)",0.984], + ["Tanzania (United Republic of)",0.966], + ["Thailand (Kingdom of)",0.878], + ["Timor-Leste (Democratic Republic of)",0.959], + ["Togo (Togolese Republic)",0.97], + ["Tonga (Kingdom of)",0.955], + ["Trinidad and Tobago (Republic of)",0.971], + ["Tunisia (Republic of)",0.972], + ["Turkey (Republic of)",0.961], + ["Turkmenistan",0.935], + ["Tuvalu",1], + ["Uganda (Republic of)",0.955], + ["Ukraine",0.961], + ["United Arab Emirates",0.883], + ["United States (of America)",0.898], + ["Uruguay (Oriental Republic of)",0.946], + ["Uzbekistan (Republic of)",null], + ["Vanuatu (Republic of)",0.975], + ["Venezuela (Bolivarian Republic of)",0.943], + ["Vietnam (Socialist Republic of)",0.893], + ["British Virgin Islands",0.955], + ["United States Virgin Islands",0.973], + ["Yemen (Republic of)",0.984], + ["Zambia (Republic of)",0.97], + ["Zimbabwe (Republic of)",0.976] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-percent-national.json b/data/global/crime/incarceration-rate/incarceration-percent-national.json new file mode 100644 index 0000000..5faaedc --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-percent-national.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "National Citizen Prisoners", + "description" : "Incarceration rate of national/native citizens as a percentage of the national prison population.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration","migration"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.percent.national"], + ["Afghanistan (Islamic Republic of)",0.991], + ["Albania (Republic of)",0.981], + ["Algeria (People's Democratic Republic of)",0.962], + ["American Samoa",0.378], + ["Andorra (Principality of)",0.411], + ["Angola (Republic of)",null], + ["Anguilla",0.709], + ["Antigua and Barbuda",0.694], + ["Argentina (Argentine Republic)",0.935], + ["Armenia (Republic of)",0.948], + ["Aruba",0.519], + ["Australia (Commonwealth of)",0.829], + ["Austria (Republic of)",0.468], + ["Azerbaijan (Republic of)",0.979], + ["Bahamas (Commonwealth of the)",null], + ["Bahrain (Kingdom of)",0.763], + ["Bangladesh (People's Republic of)",0.994], + ["Barbados",0.862], + ["Belarus (Republic of)",0.969], + ["Belgium (Kingdom of)",0.558], + ["Belize",0.889], + ["Benin (Republic of)",null], + ["Bermuda",0.885], + ["Bhutan (Kingdom of)",0.932], + ["Bolivia (Plurinational State of)",0.967], + ["Bosnia and Herzegovina",0.964], + ["Botswana (Republic of)",0.684], + ["Brazil (Federative Republic of)",0.997], + ["Brunei (Nation of the Abode of Peace)",0.708], + ["Bulgaria (Republic of)",0.97], + ["Burkina Faso",0.959], + ["Burundi (Republic of)",0.988], + ["Cambodia (Kingdom of)",0.963], + ["Cameroon (Republic of)",0.951], + ["Canada",null], + ["Cape Verde (Republic of)",null], + ["Cayman Islands",0.692], + ["Central African Republic",null], + ["Chad (Republic of)",0.987], + ["Chile (Republic of)",0.966], + ["China (People's Republic of)",0.996], + ["Colombia (Republic of)",0.987], + ["Comoros (Union of the)",0.923], + ["Congo (Republic of the)",null], + ["Cook Islands",1], + ["Costa Rica (Republic of)",0.869], + ["Côte d'Ivoire (Republic of)",0.7], + ["Croatia (Republic of)",0.943], + ["Cuba (Republic of)",null], + ["Curaçao",null], + ["Cyprus (Republic of)",0.537], + ["Czech Republic",0.92], + ["Congo (Democratic Republic of the)",null], + ["Denmark (Kingdom of)",0.699], + ["Djibouti (Republic of)",null], + ["Dominica (Commonwealth of)",0.981], + ["Dominican Republic",0.919], + ["Ecuador (Republic of)",0.919], + ["Egypt (Arab Republic of)",0.99], + ["El Salvador (Republic of)",0.987], + ["Equatorial Guinea (Republic of)",null], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.645], + ["Eswatini (Kingdom of)",0.94], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Faroe Islands",null], + ["Fiji (Republic of)",0.988], + ["Finland (Republic of)",0.829], + ["France (French Republic)",0.779], + ["French Guiana",0.37], + ["French Polynesia",null], + ["Gabon (Gabonese Republic)",null], + ["Gambia (Republic of the)",0.333], + ["Georgia",0.941], + ["Germany (Federal Republic of)",0.76], + ["Ghana (Republic of)",0.928], + ["Gibraltar",0.661], + ["Greece (Hellenic Republic)",0.451], + ["Greenland",0.991], + ["Grenada",0.969], + ["Guadeloupe",null], + ["Guam",0.69], + ["Guatemala (Republic of)",0.968], + ["Guernsey (Bailiwick of)",0.903], + ["Guinea (Republic of)",0.973], + ["Guinea-Bissau (Republic of)",0.929], + ["Guyana (Co-operative Republic of)",0.985], + ["Haiti (Republic of)",null], + ["Honduras (Republic of)",0.987], + ["Hong Kong (Special Administrative Region of China)",0.701], + ["Hungary (Republic of)",0.951], + ["Iceland (Republic of)",0.785], + ["India (Republic of)",0.988], + ["Indonesia (Republic of)",0.996], + ["Iran (Islamic Republic of)",0.971], + ["Iraq (Republic of)",null], + ["Ireland",0.864], + ["Isle of Man",0.915], + ["Israel (State of)",0.611], + ["Italy (Italian Republic)",0.678], + ["Jamaica",0.989], + ["Japan",0.943], + ["Jersey (Bailiwick of)",0.748], + ["Jordan (Hashemite Kingdom of)",0.901], + ["Kazakhstan (Republic of)",0.942], + ["Kenya (Republic of)",0.994], + ["Kiribati (Republic of)",1], + ["Kosovo (Republic of)",0.943], + ["Kuwait (State of)",0.865], + ["Kyrgyz Republic",0.968], + ["Lao (People's Democratic Republic)",null], + ["Latvia (Republic of)",0.981], + ["Lebanon (Lebanese Republic)",0.64], + ["Lesotho (Kingdom of)",0.991], + ["Liberia (Republic of)",0.98], + ["Libya (State of)",0.872], + ["Liechtenstein (Principality of)",0.25], + ["Lithuania (Republic of)",0.979], + ["Luxembourg (Grand Duchy of)",0.253], + ["Macao (Special Administrative Region of China)",0.293], + ["Madagascar (Republic of)",0.999], + ["Malawi (Republic of)",0.998], + ["Malaysia",0.795], + ["Maldives (Republic of)",0.989], + ["Mali (Republic of)",null], + ["Malta (Republic of)",0.443], + ["Marshall Islands (Republic of the)",null], + ["Martinique",null], + ["Mauritania (Islamic Republic of)",0.888], + ["Mauritius (Republic of)",0.936], + ["Mayotte (Department of)",null], + ["Mexico (United Mexican States)",0.988], + ["Micronesia (Federated States of)",null], + ["Moldova (Republic of)",0.988], + ["Monaco (Principality of)",0.048], + ["Mongolia",0.996], + ["Montenegro",0.847], + ["Morocco (Kingdom of)",0.986], + ["Mozambique (Republic of)",0.985], + ["Myanmar (Union of)",0.993], + ["Namibia (Republic of)",0.945], + ["Nauru (Republic of)",0.933], + ["Nepal (Federal Democratic Republic of)",0.947], + ["Netherlands (Kingdom of the)",0.771], + ["New Caledonia",null], + ["New Zealand",0.97], + ["Nicaragua (Republic of)",0.971], + ["Niger (Republic of)",null], + ["Nigeria (Federal Republic of)",0.997], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",0.933], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Norway (Kingdom of)",0.71], + ["Oman (Sultanate of)",0.697], + ["Pakistan (Islamic Republic of)",0.988], + ["Palau (Republic of)",0.935], + ["Panama (Republic of)",0.899], + ["Papua New Guinea (Independent State of)",0.996], + ["Paraguay (Republic of)",0.958], + ["Peru (Republic of)",0.976], + ["Philippines (Republic of the)",0.997], + ["Poland (Republic of)",0.982], + ["Portugal (Portuguese Republic)",0.85], + ["Puerto Rico (Commonwealth of)",null], + ["Qatar (State of)",0.267], + ["Korea (Republic of)",0.953], + ["Réunion",null], + ["Romania",0.99], + ["Russian Federation",0.938], + ["Rwanda (Republic of)",0.997], + ["Samoa (Independent State of)",0.995], + ["San Marino (Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.992], + ["Saudi Arabia (Kingdom of)",0.51], + ["Senegal (Republic of)",0.893], + ["Serbia (Republic of)",0.971], + ["Seychelles (Republic of)",0.987], + ["Sierra Leone (Republic of)",0.995], + ["Singapore (Republic of)",0.89], + ["Sint Maarten (Netherlands)",0.798], + ["Slovakia (Slovak Republic)",0.98], + ["Slovenia (Republic of)",0.702], + ["Solomon Islands",0.99], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.925], + ["South Sudan (Republic of)",null], + ["Spain (Kingdom of)",0.719], + ["Sri Lanka (Democratic Socialist Republic of)",0.986], + ["Saint Kitts and Nevis (Federation of)",0.979], + ["Saint Lucia",0.97], + ["Saint Vincent and the Grenadines",0.962], + ["Sudan (Republic of the)",0.99], + ["Suriname (Republic of)",0.807], + ["Sweden (Kingdom of)",0.779], + ["Switzerland (Swiss Confederation)",0.304], + ["Syrian Arab Republic",0.927], + ["Taiwan",0.993], + ["Tajikistan (Republic of)",0.951], + ["Tanzania (United Republic of)",0.963], + ["Thailand (Kingdom of)",0.956], + ["Timor-Leste (Democratic Republic of)",0.962], + ["Togo (Togolese Republic)",0.948], + ["Tonga (Kingdom of)",1], + ["Trinidad and Tobago (Republic of)",0.992], + ["Tunisia (Republic of)",null], + ["Turkey (Republic of)",0.967], + ["Turkmenistan",0.993], + ["Tuvalu",1], + ["Uganda (Republic of)",0.977], + ["Ukraine",0.983], + ["United Arab Emirates",0.122], + ["United States (of America)",0.927], + ["Uruguay (Oriental Republic of)",0.972], + ["Uzbekistan (Republic of)",null], + ["Vanuatu (Republic of)",0.975], + ["Venezuela (Bolivarian Republic of)",0.978], + ["Vietnam (Socialist Republic of)",0.996], + ["British Virgin Islands",null], + ["United States Virgin Islands",0.843], + ["Yemen (Republic of)",0.968], + ["Zambia (Republic of)",0.979], + ["Zimbabwe (Republic of)",0.981] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-percent-occupancy.json b/data/global/crime/incarceration-rate/incarceration-percent-occupancy.json new file mode 100644 index 0000000..8a41681 --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-percent-occupancy.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Prison Occupancy Levels", + "description" : "Prison occupancy level as a percentage of prisoners per official capacity of national prison beds.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.percent.occupancy"], + ["Afghanistan (Islamic Republic of)",1.799], + ["Albania (Republic of)",0.847], + ["Algeria (People's Democratic Republic of)",0.893], + ["American Samoa",1.662], + ["Andorra (Principality of)",0.303], + ["Angola (Republic of)",1.108], + ["Anguilla",0.917], + ["Antigua and Barbuda",1.913], + ["Argentina (Argentine Republic)",1.221], + ["Armenia (Republic of)",0.411], + ["Aruba",0.684], + ["Australia (Commonwealth of)",1.122], + ["Austria (Republic of)",0.957], + ["Azerbaijan (Republic of)",0.827], + ["Bahamas (Commonwealth of the)",1.778], + ["Bahrain (Kingdom of)",1.102], + ["Bangladesh (People's Republic of)",1.958], + ["Barbados",0.707], + ["Belarus (Republic of)",0.834], + ["Belgium (Kingdom of)",1.206], + ["Belize",0.873], + ["Benin (Republic of)",1.513], + ["Bermuda",0.597], + ["Bhutan (Kingdom of)",null], + ["Bolivia (Plurinational State of)",3.639], + ["Bosnia and Herzegovina",1.021], + ["Botswana (Republic of)",1.009], + ["Brazil (Federative Republic of)",1.519], + ["Brunei (Nation of the Abode of Peace)",1.438], + ["Bulgaria (Republic of)",0.809], + ["Burkina Faso",1.566], + ["Burundi (Republic of)",3.043], + ["Cambodia (Kingdom of)",2.061], + ["Cameroon (Republic of)",1.714], + ["Canada",1.022], + ["Cape Verde (Republic of)",1.094], + ["Cayman Islands",1.021], + ["Central African Republic",null], + ["Chad (Republic of)",2.323], + ["Chile (Republic of)",1.004], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",1.212], + ["Comoros (Union of the)",1.617], + ["Congo (Republic of the)",6.169], + ["Cook Islands",0.5], + ["Costa Rica (Republic of)",1.291], + ["Côte d'Ivoire (Republic of)",1.969], + ["Croatia (Republic of)",0.871], + ["Cuba (Republic of)",null], + ["Curaçao",0.639], + ["Cyprus (Republic of)",1.088], + ["Czech Republic",0.97], + ["Congo (Democratic Republic of the)",null], + ["Denmark (Kingdom of)",0.989], + ["Djibouti (Republic of)",1.714], + ["Dominica (Commonwealth of)",0.73], + ["Dominican Republic",1.832], + ["Ecuador (Republic of)",1.332], + ["Egypt (Arab Republic of)",null], + ["El Salvador (Republic of)",2.152], + ["Equatorial Guinea (Republic of)",null], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.766], + ["Eswatini (Kingdom of)",1.331], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Faroe Islands",0.782], + ["Fiji (Republic of)",1.379], + ["Finland (Republic of)",1.011], + ["France (French Republic)",1.034], + ["French Guiana",0.979], + ["French Polynesia",1.022], + ["Gabon (Gabonese Republic)",null], + ["Gambia (Republic of the)",1.725], + ["Georgia",0.783], + ["Germany (Federal Republic of)",0.787], + ["Ghana (Republic of)",1.555], + ["Gibraltar",0.571], + ["Greece (Hellenic Republic)",1.132], + ["Greenland",0.768], + ["Grenada",2.338], + ["Guadeloupe",1.196], + ["Guam",1.262], + ["Guatemala (Republic of)",3.72], + ["Guernsey (Bailiwick of)",0.791], + ["Guinea (Republic of)",1.568], + ["Guinea-Bissau (Republic of)",1.022], + ["Guyana (Co-operative Republic of)",1.424], + ["Haiti (Republic of)",4.544], + ["Honduras (Republic of)",2.04], + ["Hong Kong (Special Administrative Region of China)",0.74], + ["Hungary (Republic of)",1.116], + ["Iceland (Republic of)",0.682], + ["India (Republic of)",1.185], + ["Indonesia (Republic of)",1.887], + ["Iran (Islamic Republic of)",1.53], + ["Iraq (Republic of)",1.392], + ["Ireland",0.858], + ["Isle of Man",0.768], + ["Israel (State of)",0.801], + ["Italy (Italian Republic)",1.062], + ["Jamaica",0.888], + ["Japan",0.566], + ["Jersey (Bailiwick of)",0.695], + ["Jordan (Hashemite Kingdom of)",1.502], + ["Kazakhstan (Republic of)",0.624], + ["Kenya (Republic of)",1.905], + ["Kiribati (Republic of)",1.128], + ["Kosovo (Republic of)",0.971], + ["Kuwait (State of)",1.341], + ["Kyrgyz Republic",0.617], + ["Lao (People's Democratic Republic)",null], + ["Latvia (Republic of)",0.688], + ["Lebanon (Lebanese Republic)",2.866], + ["Lesotho (Kingdom of)",0.706], + ["Liberia (Republic of)",2.221], + ["Libya (State of)",1.416], + ["Liechtenstein (Principality of)",0.45], + ["Lithuania (Republic of)",0.832], + ["Luxembourg (Grand Duchy of)",0.737], + ["Macao (Special Administrative Region of China)",0.828], + ["Madagascar (Republic of)",2.374], + ["Malawi (Republic of)",2.009], + ["Malaysia",1.319], + ["Maldives (Republic of)",1.277], + ["Mali (Republic of)",2.233], + ["Malta (Republic of)",0.886], + ["Marshall Islands (Republic of the)",0.972], + ["Martinique",0.969], + ["Mauritania (Islamic Republic of)",1.018], + ["Mauritius (Republic of)",1.169], + ["Mayotte (Department of)",1.275], + ["Mexico (United Mexican States)",0.982], + ["Micronesia (Federated States of)",0.88], + ["Moldova (Republic of)",0.977], + ["Monaco (Principality of)",0.095], + ["Mongolia",1.244], + ["Montenegro",0.803], + ["Morocco (Kingdom of)",1.369], + ["Mozambique (Republic of)",2.107], + ["Myanmar (Union of)",1.394], + ["Namibia (Republic of)",0.727], + ["Nauru (Republic of)",0.14], + ["Nepal (Federal Democratic Republic of)",1.537], + ["Netherlands (Kingdom of the)",0.744], + ["New Caledonia",1.063], + ["New Zealand",0.938], + ["Nicaragua (Republic of)",1.776], + ["Niger (Republic of)",1.016], + ["Nigeria (Federal Republic of)",1.468], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",0.72], + ["Northern Mariana Islands (Commonwealth of the)",0.538], + ["Norway (Kingdom of)",0.73], + ["Oman (Sultanate of)",null], + ["Pakistan (Islamic Republic of)",1.338], + ["Palau (Republic of)",1.621], + ["Panama (Republic of)",1.246], + ["Papua New Guinea (Independent State of)",1.165], + ["Paraguay (Republic of)",1.431], + ["Peru (Republic of)",2.403], + ["Philippines (Republic of the)",4.636], + ["Poland (Republic of)",0.843], + ["Portugal (Portuguese Republic)",0.889], + ["Puerto Rico (Commonwealth of)",0.863], + ["Qatar (State of)",null], + ["Korea (Republic of)",1.12], + ["Réunion",0.891], + ["Romania",1.205], + ["Russian Federation",0.678], + ["Rwanda (Republic of)",1.013], + ["Samoa (Independent State of)",1.212], + ["San Marino (Republic of)",0.167], + ["São Tomé and Príncipe (Democratic Republic of)",1.265], + ["Saudi Arabia (Kingdom of)",null], + ["Senegal (Republic of)",1.297], + ["Serbia (Republic of)",1.056], + ["Seychelles (Republic of)",0.538], + ["Sierra Leone (Republic of)",2.202], + ["Singapore (Republic of)",0.792], + ["Sint Maarten (Netherlands)",1.254], + ["Slovakia (Slovak Republic)",0.896], + ["Slovenia (Republic of)",0.844], + ["Solomon Islands",0.777], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",1.248], + ["South Sudan (Republic of)",null], + ["Spain (Kingdom of)",0.779], + ["Sri Lanka (Democratic Socialist Republic of)",1.906], + ["Saint Kitts and Nevis (Federation of)",1.44], + ["Saint Lucia",1.054], + ["Saint Vincent and the Grenadines",0.798], + ["Sudan (Republic of the)",2.553], + ["Suriname (Republic of)",0.752], + ["Sweden (Kingdom of)",1.016], + ["Switzerland (Swiss Confederation)",0.935], + ["Syrian Arab Republic",0.656], + ["Taiwan",1.148], + ["Tajikistan (Republic of)",0.615], + ["Tanzania (United Republic of)",1.157], + ["Thailand (Kingdom of)",3.391], + ["Timor-Leste (Democratic Republic of)",1.853], + ["Togo (Togolese Republic)",1.94], + ["Tonga (Kingdom of)",0.815], + ["Trinidad and Tobago (Republic of)",0.818], + ["Tunisia (Republic of)",1.185], + ["Turkey (Republic of)",1.256], + ["Turkmenistan",0.85], + ["Tuvalu",null], + ["Uganda (Republic of)",3.192], + ["Ukraine",0.683], + ["United Arab Emirates",1.589], + ["United States (of America)",0.956], + ["Uruguay (Oriental Republic of)",0.993], + ["Uzbekistan (Republic of)",0.8], + ["Vanuatu (Republic of)",1.067], + ["Venezuela (Bolivarian Republic of)",1.677], + ["Vietnam (Socialist Republic of)",null], + ["British Virgin Islands",0.9], + ["United States Virgin Islands",1.625], + ["Yemen (Republic of)",null], + ["Zambia (Republic of)",2.478], + ["Zimbabwe (Republic of)",1.294] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-percent-remand.json b/data/global/crime/incarceration-rate/incarceration-percent-remand.json new file mode 100644 index 0000000..bee858c --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-percent-remand.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Incarceration Percent Remand", + "description" : "Incarceration Rate measured as the number of incarcerated prisoners per 100,000 general population.", + "units" : "prisoners/100k population", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.percent.remand"], + ["Afghanistan (Islamic Republic of)",0.313], + ["Albania (Republic of)",0.507], + ["Algeria (People's Democratic Republic of)",0.12], + ["American Samoa",0.149], + ["Andorra (Principality of)",0.571], + ["Angola (Republic of)",0.458], + ["Anguilla",0.455], + ["Antigua and Barbuda",0.37], + ["Argentina (Argentine Republic)",0.459], + ["Armenia (Republic of)",0.41], + ["Aruba",0.166], + ["Australia (Commonwealth of)",0.319], + ["Austria (Republic of)",0.21], + ["Azerbaijan (Republic of)",0.169], + ["Bahamas (Commonwealth of the)",0.42], + ["Bahrain (Kingdom of)",0.257], + ["Bangladesh (People's Republic of)",0.813], + ["Barbados",0.547], + ["Belarus (Republic of)",0.166], + ["Belgium (Kingdom of)",0.376], + ["Belize",0.4], + ["Benin (Republic of)",0.758], + ["Bermuda",0.202], + ["Bhutan (Kingdom of)",null], + ["Bolivia (Plurinational State of)",0.672], + ["Bosnia and Herzegovina",0.198], + ["Botswana (Republic of)",0.245], + ["Brazil (Federative Republic of)",0.301], + ["Brunei (Nation of the Abode of Peace)",0.071], + ["Bulgaria (Republic of)",0.191], + ["Burkina Faso",0.405], + ["Burundi (Republic of)",0.393], + ["Cambodia (Kingdom of)",0.719], + ["Cameroon (Republic of)",0.581], + ["Canada",0.39], + ["Cape Verde (Republic of)",0.317], + ["Cayman Islands",0.296], + ["Central African Republic",0.702], + ["Chad (Republic of)",0.634], + ["Chile (Republic of)",0.359], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",0.241], + ["Comoros (Union of the)",0.29], + ["Congo (Republic of the)",0.6], + ["Cook Islands",0.146], + ["Costa Rica (Republic of)",0.144], + ["Côte d'Ivoire (Republic of)",0.407], + ["Croatia (Republic of)",0.31], + ["Cuba (Republic of)",null], + ["Curaçao",0.41], + ["Cyprus (Republic of)",0.324], + ["Czech Republic",0.08], + ["Congo (Democratic Republic of the)",0.73], + ["Denmark (Kingdom of)",0.382], + ["Djibouti (Republic of)",0.358], + ["Dominica (Commonwealth of)",0.237], + ["Dominican Republic",0.614], + ["Ecuador (Republic of)",0.37], + ["Egypt (Arab Republic of)",0.099], + ["El Salvador (Republic of)",0.244], + ["Equatorial Guinea (Republic of)",null], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.192], + ["Eswatini (Kingdom of)",0.181], + ["Ethiopia (Federal Democratic Republic of)",0.149], + ["Faroe Islands",0.321], + ["Fiji (Republic of)",0.24], + ["Finland (Republic of)",0.236], + ["France (French Republic)",0.324], + ["French Guiana",0.279], + ["French Polynesia",0.19], + ["Gabon (Gabonese Republic)",0.802], + ["Gambia (Republic of the)",0.222], + ["Georgia",0.207], + ["Germany (Federal Republic of)",0.206], + ["Ghana (Republic of)",0.122], + ["Gibraltar",0.268], + ["Greece (Hellenic Republic)",0.266], + ["Greenland",0.317], + ["Grenada",0.204], + ["Guadeloupe",0.27], + ["Guam",0.451], + ["Guatemala (Republic of)",0.496], + ["Guernsey (Bailiwick of)",0.151], + ["Guinea (Republic of)",0.6], + ["Guinea-Bissau (Republic of)",0.679], + ["Guyana (Co-operative Republic of)",0.395], + ["Haiti (Republic of)",0.75], + ["Honduras (Republic of)",0.541], + ["Hong Kong (Special Administrative Region of China)",0.299], + ["Hungary (Republic of)",0.166], + ["Iceland (Republic of)",0.132], + ["India (Republic of)",0.691], + ["Indonesia (Republic of)",0.194], + ["Iran (Islamic Republic of)",0.251], + ["Iraq (Republic of)",0.352], + ["Ireland",0.175], + ["Isle of Man",0.066], + ["Israel (State of)",0.252], + ["Italy (Italian Republic)",0.313], + ["Jamaica",0.323], + ["Japan",0.121], + ["Jersey (Bailiwick of)",0.281], + ["Jordan (Hashemite Kingdom of)",0.369], + ["Kazakhstan (Republic of)",0.197], + ["Kenya (Republic of)",0.441], + ["Kiribati (Republic of)",0.054], + ["Kosovo (Republic of)",0.296], + ["Kuwait (State of)",0.1], + ["Kyrgyz Republic",0.166], + ["Lao (People's Democratic Republic)",0.67], + ["Latvia (Republic of)",0.278], + ["Lebanon (Lebanese Republic)",0.629], + ["Lesotho (Kingdom of)",0.195], + ["Liberia (Republic of)",0.64], + ["Libya (State of)",0.9], + ["Liechtenstein (Principality of)",0.75], + ["Lithuania (Republic of)",0.118], + ["Luxembourg (Grand Duchy of)",0.41], + ["Macao (Special Administrative Region of China)",0.189], + ["Madagascar (Republic of)",0.568], + ["Malawi (Republic of)",0.178], + ["Malaysia",0.267], + ["Maldives (Republic of)",null], + ["Mali (Republic of)",0.528], + ["Malta (Republic of)",0.339], + ["Marshall Islands (Republic of the)",0.114], + ["Martinique",0.37], + ["Mauritania (Islamic Republic of)",0.382], + ["Mauritius (Republic of)",0.594], + ["Mayotte (Department of)",0.565], + ["Mexico (United Mexican States)",0.417], + ["Micronesia (Federated States of)",0.167], + ["Moldova (Republic of)",0.153], + ["Monaco (Principality of)",0.762], + ["Mongolia",0.266], + ["Montenegro",0.292], + ["Morocco (Kingdom of)",0.391], + ["Mozambique (Republic of)",0.331], + ["Myanmar (Union of)",0.151], + ["Namibia (Republic of)",0.54], + ["Nauru (Republic of)",0.25], + ["Nepal (Federal Democratic Republic of)",0.551], + ["Netherlands (Kingdom of the)",0.292], + ["New Caledonia",0.121], + ["New Zealand",0.365], + ["Nicaragua (Republic of)",0.214], + ["Niger (Republic of)",0.538], + ["Nigeria (Federal Republic of)",0.727], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",0.137], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Norway (Kingdom of)",0.252], + ["Oman (Sultanate of)",0.056], + ["Pakistan (Islamic Republic of)",0.621], + ["Palau (Republic of)",0.041], + ["Panama (Republic of)",0.392], + ["Papua New Guinea (Independent State of)",0.344], + ["Paraguay (Republic of)",0.773], + ["Peru (Republic of)",0.37], + ["Philippines (Republic of the)",0.751], + ["Poland (Republic of)",0.128], + ["Portugal (Portuguese Republic)",0.19], + ["Puerto Rico (Commonwealth of)",0.131], + ["Qatar (State of)",0.44], + ["Korea (Republic of)",0.351], + ["Réunion",0.215], + ["Romania",0.104], + ["Russian Federation",0.233], + ["Rwanda (Republic of)",0.075], + ["Samoa (Independent State of)",0.14], + ["San Marino (Republic of)",0], + ["São Tomé and Príncipe (Democratic Republic of)",0.328], + ["Saudi Arabia (Kingdom of)",0.483], + ["Senegal (Republic of)",0.397], + ["Serbia (Republic of)",0.156], + ["Seychelles (Republic of)",0.125], + ["Sierra Leone (Republic of)",0.295], + ["Singapore (Republic of)",0.106], + ["Sint Maarten (Netherlands)",0.181], + ["Slovakia (Slovak Republic)",0.153], + ["Slovenia (Republic of)",0.26], + ["Solomon Islands",0.468], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.357], + ["South Sudan (Republic of)",0.289], + ["Spain (Kingdom of)",0.16], + ["Sri Lanka (Democratic Socialist Republic of)",0.589], + ["Saint Kitts and Nevis (Federation of)",0.305], + ["Saint Lucia",0.535], + ["Saint Vincent and the Grenadines",0.243], + ["Sudan (Republic of the)",0.204], + ["Suriname (Republic of)",0.5], + ["Sweden (Kingdom of)",0.272], + ["Switzerland (Swiss Confederation)",0.422], + ["Syrian Arab Republic",0.505], + ["Taiwan",0.041], + ["Tajikistan (Republic of)",0.15], + ["Tanzania (United Republic of)",0.51], + ["Thailand (Kingdom of)",0.192], + ["Timor-Leste (Democratic Republic of)",0.232], + ["Togo (Togolese Republic)",0.642], + ["Tonga (Kingdom of)",0.074], + ["Trinidad and Tobago (Republic of)",0.597], + ["Tunisia (Republic of)",0.57], + ["Turkey (Republic of)",0.431], + ["Turkmenistan",0.14], + ["Tuvalu",0], + ["Uganda (Republic of)",0.498], + ["Ukraine",0.372], + ["United Arab Emirates",0.382], + ["United States (of America)",0.233], + ["Uruguay (Oriental Republic of)",0.223], + ["Uzbekistan (Republic of)",0.1], + ["Vanuatu (Republic of)",0.153], + ["Venezuela (Bolivarian Republic of)",0.613], + ["Vietnam (Socialist Republic of)",0.124], + ["British Virgin Islands",0.37], + ["United States Virgin Islands",0.364], + ["Yemen (Republic of)",0.701], + ["Zambia (Republic of)",0.176], + ["Zimbabwe (Republic of)",0.186] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-rate.json b/data/global/crime/incarceration-rate/incarceration-rate.json new file mode 100644 index 0000000..898d124 --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-rate.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Incarceration Rate", + "description" : "Incarceration Rate measured as the number of incarcerated prisoners per 100,000 general population.", + "units" : "prisoners/100k population", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.rate"], + ["Afghanistan (Islamic Republic of)",77], + ["Albania (Republic of)",183], + ["Algeria (People's Democratic Republic of)",217], + ["American Samoa",538], + ["Andorra (Principality of)",58], + ["Angola (Republic of)",79], + ["Anguilla",367], + ["Antigua and Barbuda",243], + ["Argentina (Argentine Republic)",249], + ["Armenia (Republic of)",71], + ["Aruba",165], + ["Australia (Commonwealth of)",165], + ["Austria (Republic of)",96], + ["Azerbaijan (Republic of)",220], + ["Bahamas (Commonwealth of the)",409], + ["Bahrain (Kingdom of)",234], + ["Bangladesh (People's Republic of)",46], + ["Barbados",267], + ["Belarus (Republic of)",345], + ["Belgium (Kingdom of)",91], + ["Belize",271], + ["Benin (Republic of)",103], + ["Bermuda",200], + ["Bhutan (Kingdom of)",145], + ["Bolivia (Plurinational State of)",175], + ["Bosnia and Herzegovina",83], + ["Botswana (Republic of)",162], + ["Brazil (Federative Republic of)",389], + ["Brunei (Nation of the Abode of Peace)",186], + ["Bulgaria (Republic of)",93], + ["Burkina Faso",35], + ["Burundi (Republic of)",88], + ["Cambodia (Kingdom of)",229], + ["Cameroon (Republic of)",116], + ["Canada",85], + ["Cape Verde (Republic of)",296], + ["Cayman Islands",312], + ["Central African Republic",26], + ["Chad (Republic of)",59], + ["Chile (Republic of)",240], + ["China (People's Republic of)",119], + ["Colombia (Republic of)",192], + ["Comoros (Union of the)",43], + ["Congo (Republic of the)",27], + ["Cook Islands",224], + ["Costa Rica (Republic of)",301], + ["Côte d'Ivoire (Republic of)",85], + ["Croatia (Republic of)",99], + ["Cuba (Republic of)",510], + ["Curaçao",261], + ["Cyprus (Republic of)",80], + ["Czech Republic",179], + ["Congo (Democratic Republic of the)",24], + ["Denmark (Kingdom of)",72], + ["Djibouti (Republic of)",71], + ["Dominica (Commonwealth of)",275], + ["Dominican Republic",231], + ["Ecuador (Republic of)",178], + ["Egypt (Arab Republic of)",117], + ["El Salvador (Republic of)",605], + ["Equatorial Guinea (Republic of)",63], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",155], + ["Eswatini (Kingdom of)",244], + ["Ethiopia (Federal Democratic Republic of)",99], + ["Faroe Islands",21], + ["Fiji (Republic of)",256], + ["Finland (Republic of)",51], + ["France (French Republic)",106], + ["French Guiana",261], + ["French Polynesia",208], + ["Gabon (Gabonese Republic)",228], + ["Gambia (Republic of the)",22], + ["Georgia",266], + ["Germany (Federal Republic of)",67], + ["Ghana (Republic of)",45], + ["Gibraltar",273], + ["Greece (Hellenic Republic)",105], + ["Greenland",233], + ["Grenada",323], + ["Guadeloupe",191], + ["Guam",408], + ["Guatemala (Republic of)",130], + ["Guernsey (Bailiwick of)",127], + ["Guinea (Republic of)",34], + ["Guinea-Bissau (Republic of)",31], + ["Guyana (Co-operative Republic of)",239], + ["Haiti (Republic of)",98], + ["Honduras (Republic of)",206], + ["Hong Kong (Special Administrative Region of China)",106], + ["Hungary (Republic of)",194], + ["Iceland (Republic of)",37], + ["India (Republic of)",40], + ["Indonesia (Republic of)",99], + ["Iran (Islamic Republic of)",228], + ["Iraq (Republic of)",179], + ["Ireland",83], + ["Isle of Man",126], + ["Israel (State of)",168], + ["Italy (Italian Republic)",97], + ["Jamaica",130], + ["Japan",36], + ["Jersey (Bailiwick of)",135], + ["Jordan (Hashemite Kingdom of)",174], + ["Kazakhstan (Republic of)",184], + ["Kenya (Republic of)",107], + ["Kiribati (Republic of)",113], + ["Kosovo (Republic of)",93], + ["Kuwait (State of)",111], + ["Kyrgyz Republic",161], + ["Lao (People's Democratic Republic)",166], + ["Latvia (Republic of)",169], + ["Lebanon (Lebanese Republic)",110], + ["Lesotho (Kingdom of)",104], + ["Liberia (Republic of)",56], + ["Libya (State of)",176], + ["Liechtenstein (Principality of)",28], + ["Lithuania (Republic of)",182], + ["Luxembourg (Grand Duchy of)",106], + ["Macao (Special Administrative Region of China)",209], + ["Madagascar (Republic of)",97], + ["Malawi (Republic of)",71], + ["Malaysia",229], + ["Maldives (Republic of)",314], + ["Mali (Republic of)",40], + ["Malta (Republic of)",159], + ["Marshall Islands (Republic of the)",66], + ["Martinique",239], + ["Mauritania (Islamic Republic of)",43], + ["Mauritius (Republic of)",184], + ["Mayotte (Department of)",180], + ["Mexico (United Mexican States)",174], + ["Micronesia (Federated States of)",127], + ["Moldova (Republic of)",183], + ["Monaco (Principality of)",33], + ["Mongolia",183], + ["Montenegro",150], + ["Morocco (Kingdom of)",240], + ["Mozambique (Republic of)",56], + ["Myanmar (Union of)",183], + ["Namibia (Republic of)",318], + ["Nauru (Republic of)",140], + ["Nepal (Federal Democratic Republic of)",83], + ["Netherlands (Kingdom of the)",66], + ["New Caledonia",212], + ["New Zealand",155], + ["Nicaragua (Republic of)",332], + ["Niger (Republic of)",39], + ["Nigeria (Federal Republic of)",34], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",107], + ["Northern Mariana Islands (Commonwealth of the)",313], + ["Norway (Kingdom of)",55], + ["Oman (Sultanate of)",46], + ["Pakistan (Islamic Republic of)",38], + ["Palau (Republic of)",428], + ["Panama (Republic of)",478], + ["Papua New Guinea (Independent State of)",58], + ["Paraguay (Republic of)",229], + ["Peru (Republic of)",264], + ["Philippines (Republic of the)",152], + ["Poland (Republic of)",191], + ["Portugal (Portuguese Republic)",120], + ["Puerto Rico (Commonwealth of)",278], + ["Qatar (State of)",53], + ["Korea (Republic of)",105], + ["Réunion",130], + ["Romania",122], + ["Russian Federation",304], + ["Rwanda (Republic of)",580], + ["Samoa (Independent State of)",179], + ["San Marino (Republic of)",26], + ["São Tomé and Príncipe (Democratic Republic of)",115], + ["Saudi Arabia (Kingdom of)",207], + ["Senegal (Republic of)",67], + ["Serbia (Republic of)",155], + ["Seychelles (Republic of)",317], + ["Sierra Leone (Republic of)",54], + ["Singapore (Republic of)",169], + ["Sint Maarten (Netherlands)",179], + ["Slovakia (Slovak Republic)",182], + ["Slovenia (Republic of)",68], + ["Solomon Islands",79], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",239], + ["South Sudan (Republic of)",50], + ["Spain (Kingdom of)",116], + ["Sri Lanka (Democratic Socialist Republic of)",102], + ["Saint Kitts and Nevis (Federation of)",347], + ["Saint Lucia",263], + ["Saint Vincent and the Grenadines",347], + ["Sudan (Republic of the)",52], + ["Suriname (Republic of)",185], + ["Sweden (Kingdom of)",74], + ["Switzerland (Swiss Confederation)",72], + ["Syrian Arab Republic",60], + ["Taiwan",237], + ["Tajikistan (Republic of)",141], + ["Tanzania (United Republic of)",52], + ["Thailand (Kingdom of)",411], + ["Timor-Leste (Democratic Republic of)",55], + ["Togo (Togolese Republic)",59], + ["Tonga (Kingdom of)",166], + ["Trinidad and Tobago (Republic of)",276], + ["Tunisia (Republic of)",196], + ["Turkey (Republic of)",374], + ["Turkmenistan",576], + ["Tuvalu",110], + ["Uganda (Republic of)",144], + ["Ukraine",123], + ["United Arab Emirates",104], + ["United States (of America)",505], + ["Uruguay (Oriental Republic of)",408], + ["Uzbekistan (Republic of)",68], + ["Vanuatu (Republic of)",65], + ["Venezuela (Bolivarian Republic of)",199], + ["Vietnam (Socialist Republic of)",130], + ["British Virgin Islands",447], + ["United States Virgin Islands",345], + ["Yemen (Republic of)",35], + ["Zambia (Republic of)",117], + ["Zimbabwe (Republic of)",115] + ] +} diff --git a/data/global/crime/incarceration-rate/incarceration-total.json b/data/global/crime/incarceration-rate/incarceration-total.json new file mode 100644 index 0000000..0d37336 --- /dev/null +++ b/data/global/crime/incarceration-rate/incarceration-total.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Total Prisoners", + "description" : "Total number of incacerated prisoners.", + "units" : "people", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "crime", + "tags" : ["global","crime","prison","incarceration"], + "authors" : [ + "World Prison Brief (WPB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_some_dependent_territories_and_subnational_areas_by_incarceration_rate" + ] + }, + "data" : [ + ["country.name","incarceration.total"], + ["Afghanistan (Islamic Republic of)",28240], + ["Albania (Republic of)",5112], + ["Algeria (People's Democratic Republic of)",94749], + ["American Samoa",301], + ["Andorra (Principality of)",46], + ["Angola (Republic of)",24966], + ["Anguilla",55], + ["Antigua and Barbuda",238], + ["Argentina (Argentine Republic)",114074], + ["Armenia (Republic of)",2113], + ["Aruba",170], + ["Australia (Commonwealth of)",42403], + ["Austria (Republic of)",8645], + ["Azerbaijan (Republic of)",22334], + ["Bahamas (Commonwealth of the)",1617], + ["Bahrain (Kingdom of)",3485], + ["Bangladesh (People's Republic of)",81156], + ["Barbados",769], + ["Belarus (Republic of)",32556], + ["Belgium (Kingdom of)",10614], + ["Belize",1114], + ["Benin (Republic of)",13009], + ["Bermuda",124], + ["Bhutan (Kingdom of)",1119], + ["Bolivia (Plurinational State of)",20864], + ["Bosnia and Herzegovina",1813], + ["Botswana (Republic of)",3882], + ["Brazil (Federative Republic of)",835643], + ["Brunei (Nation of the Abode of Peace)",841], + ["Bulgaria (Republic of)",6384], + ["Burkina Faso",7401], + ["Burundi (Republic of)",12448], + ["Cambodia (Kingdom of)",39000], + ["Cameroon (Republic of)",32003], + ["Canada",32261], + ["Cape Verde (Republic of)",1549], + ["Cayman Islands",205], + ["Central African Republic",1291], + ["Chad (Republic of)",8700], + ["Chile (Republic of)",45135], + ["China (People's Republic of)",1690000], + ["Colombia (Republic of)",98242], + ["Comoros (Union of the)",387], + ["Congo (Republic of the)",1388], + ["Cook Islands",47], + ["Costa Rica (Republic of)",15516], + ["Côte d'Ivoire (Republic of)",23000], + ["Croatia (Republic of)",3955], + ["Cuba (Republic of)",57337], + ["Curaçao",429], + ["Cyprus (Republic of)",716], + ["Czech Republic",19215], + ["Congo (Democratic Republic of the)",22820], + ["Denmark (Kingdom of)",4248], + ["Djibouti (Republic of)",662], + ["Dominica (Commonwealth of)",206], + ["Dominican Republic",26238], + ["Ecuador (Republic of)",32325], + ["Egypt (Arab Republic of)",119000], + ["El Salvador (Republic of)",39538], + ["Equatorial Guinea (Republic of)",500], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",2057], + ["Eswatini (Kingdom of)",3362], + ["Ethiopia (Federal Democratic Republic of)",110000], + ["Faroe Islands",11], + ["Fiji (Republic of)",2379], + ["Finland (Republic of)",2827], + ["France (French Republic)",72350], + ["French Guiana",833], + ["French Polynesia",595], + ["Gabon (Gabonese Republic)",5226], + ["Gambia (Republic of the)",543], + ["Georgia",9702], + ["Germany (Federal Republic of)",56557], + ["Ghana (Republic of)",14444], + ["Gibraltar",92], + ["Greece (Hellenic Republic)",11131], + ["Greenland",131], + ["Grenada",365], + ["Guadeloupe",857], + ["Guam",700], + ["Guatemala (Republic of)",24310], + ["Guernsey (Bailiwick of)",84], + ["Guinea (Republic of)",4375], + ["Guinea-Bissau (Republic of)",596], + ["Guyana (Co-operative Republic of)",1889], + ["Haiti (Republic of)",11253], + ["Honduras (Republic of)",20768], + ["Hong Kong (Special Administrative Region of China)",7867], + ["Hungary (Republic of)",18800], + ["Iceland (Republic of)",140], + ["India (Republic of)",554034], + ["Indonesia (Republic of)",275518], + ["Iran (Islamic Republic of)",189000], + ["Iraq (Republic of)",73715], + ["Ireland",4246], + ["Isle of Man",109], + ["Israel (State of)",14961], + ["Italy (Italian Republic)",56524], + ["Jamaica",3719], + ["Japan",45714], + ["Jersey (Bailiwick of)",146], + ["Jordan (Hashemite Kingdom of)",17708], + ["Kazakhstan (Republic of)",35228], + ["Kenya (Republic of)",58887], + ["Kiribati (Republic of)",129], + ["Kosovo (Republic of)",1642], + ["Kuwait (State of)",4420], + ["Kyrgyz Republic",10142], + ["Lao (People's Democratic Republic)",11885], + ["Latvia (Republic of)",3169], + ["Lebanon (Lebanese Republic)",7401], + ["Lesotho (Kingdom of)",2216], + ["Liberia (Republic of)",2925], + ["Libya (State of)",12300], + ["Liechtenstein (Principality of)",11], + ["Lithuania (Republic of)",5089], + ["Luxembourg (Grand Duchy of)",685], + ["Macao (Special Administrative Region of China)",1401], + ["Madagascar (Republic of)",27611], + ["Malawi (Republic of)",14500], + ["Malaysia",76336], + ["Maldives (Republic of)",1700], + ["Mali (Republic of)",8670], + ["Malta (Republic of)",821], + ["Marshall Islands (Republic of the)",35], + ["Martinique",919], + ["Mauritania (Islamic Republic of)",2023], + ["Mauritius (Republic of)",2386], + ["Mayotte (Department of)",519], + ["Mexico (United Mexican States)",230000], + ["Micronesia (Federated States of)",132], + ["Moldova (Republic of)",6461], + ["Monaco (Principality of)",13], + ["Mongolia",5832], + ["Montenegro",929], + ["Morocco (Kingdom of)",88941], + ["Mozambique (Republic of)",18700], + ["Myanmar (Union of)",100324], + ["Namibia (Republic of)",8900], + ["Nauru (Republic of)",14], + ["Nepal (Federal Democratic Republic of)",25400], + ["Netherlands (Kingdom of the)",11623], + ["New Caledonia",619], + ["New Zealand",7964], + ["Nicaragua (Republic of)",20918], + ["Niger (Republic of)",9187], + ["Nigeria (Federal Republic of)",74367], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",2220], + ["Northern Mariana Islands (Commonwealth of the)",175], + ["Norway (Kingdom of)",3009], + ["Oman (Sultanate of)",1960], + ["Pakistan (Islamic Republic of)",85670], + ["Palau (Republic of)",77], + ["Panama (Republic of)",21113], + ["Papua New Guinea (Independent State of)",5087], + ["Paraguay (Republic of)",16656], + ["Peru (Republic of)",90293], + ["Philippines (Republic of the)",166912], + ["Poland (Republic of)",71866], + ["Portugal (Portuguese Republic)",12396], + ["Puerto Rico (Commonwealth of)",8884], + ["Qatar (State of)",1150], + ["Korea (Republic of)",53920], + ["Réunion",1179], + ["Romania",23046], + ["Russian Federation",439453], + ["Rwanda (Republic of)",76099], + ["Samoa (Independent State of)",358], + ["San Marino (Republic of)",9], + ["São Tomé and Príncipe (Democratic Republic of)",260], + ["Saudi Arabia (Kingdom of)",68056], + ["Senegal (Republic of)",12430], + ["Serbia (Republic of)",10557], + ["Seychelles (Republic of)",317], + ["Sierra Leone (Republic of)",4430], + ["Singapore (Republic of)",10262], + ["Sint Maarten (Netherlands)",77], + ["Slovakia (Slovak Republic)",9939], + ["Slovenia (Republic of)",1447], + ["Solomon Islands",500], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",144938], + ["South Sudan (Republic of)",7000], + ["Spain (Kingdom of)",55093], + ["Sri Lanka (Democratic Socialist Republic of)",22000], + ["Saint Kitts and Nevis (Federation of)",184], + ["Saint Lucia",484], + ["Saint Vincent and the Grenadines",385], + ["Sudan (Republic of the)",21000], + ["Suriname (Republic of)",1000], + ["Sweden (Kingdom of)",7713], + ["Switzerland (Swiss Confederation)",6310], + ["Syrian Arab Republic",10599], + ["Taiwan",55761], + ["Tajikistan (Republic of)",14000], + ["Tanzania (United Republic of)",33570], + ["Thailand (Kingdom of)",285572], + ["Timor-Leste (Democratic Republic of)",763], + ["Togo (Togolese Republic)",4990], + ["Tonga (Kingdom of)",176], + ["Trinidad and Tobago (Republic of)",3802], + ["Tunisia (Republic of)",23484], + ["Turkey (Republic of)",314502], + ["Turkmenistan",35000], + ["Tuvalu",11], + ["Uganda (Republic of)",70535], + ["Ukraine",48038], + ["United Arab Emirates",9826], + ["United States (of America)",1675400], + ["Uruguay (Oriental Republic of)",14347], + ["Uzbekistan (Republic of)",22867], + ["Vanuatu (Republic of)",195], + ["Venezuela (Bolivarian Republic of)",67200], + ["Vietnam (Socialist Republic of)",125697], + ["British Virgin Islands",143], + ["United States Virgin Islands",359], + ["Yemen (Republic of)",9719], + ["Zambia (Republic of)",23062], + ["Zimbabwe (Republic of)",20898] + ] +} diff --git a/data/global/culture/divorce/divorce-rate-crude.json b/data/global/culture/divorce/divorce-rate-crude.json new file mode 100644 index 0000000..30f1e2a --- /dev/null +++ b/data/global/culture/divorce/divorce-rate-crude.json @@ -0,0 +1,129 @@ +{ + "metadata" : { + "name" : "Crude Divorce Rate", + "description" : "Crude Divorce Rate measured as divorces per 1000 population.", + "units" : "divroces/1k population", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","culture","divorce"], + "authors" : [ + "World Population Review" + ], + "sources" : [ + "https://worldpopulationreview.com/country-rankings/divorce-rates-by-country" + ] + }, + "data" : [ + ["country.name","divorce.crude.rate"], + ["Maldives (Republic of)",5.52], + ["Kazakhstan (Republic of)",4.6], + ["Russian Federation",3.9], + ["Belgium (Kingdom of)",3.7], + ["Belarus (Republic of)",3.7], + ["Moldova (Republic of)",3.3], + ["China (People's Republic of)",3.2], + ["Cuba (Republic of)",2.9], + ["Ukraine",2.88], + ["United States (of America)",2.7], + ["Denmark (Kingdom of)",2.7], + ["Lithuania (Republic of)",2.7], + ["Latvia (Republic of)",2.7], + ["Cyprus (Republic of)",2.6], + ["Liechtenstein (Principality of)",2.6], + ["San Marino (Republic of)",2.6], + ["Sweden (Kingdom of)",2.5], + ["Libya (State of)",2.5], + ["Finland (Republic of)",2.4], + ["Egypt (Arab Republic of)",2.3], + ["Taiwan",2.3], + ["Costa Rica (Republic of)",2.3], + ["Luxembourg (Grand Duchy of)",2.3], + ["Iran (Islamic Republic of)",2.1], + ["Korea (Republic of)",2.1], + ["Canada",2.1], + ["Saudi Arabia (Kingdom of)",2.1], + ["Georgia",2.1], + ["Albania (Republic of)",2.1], + ["Czech Republic",2], + ["Portugal (Portuguese Republic)",2], + ["Switzerland (Swiss Confederation)",2], + ["Trinidad and Tobago (Republic of)",2], + ["France (French Republic)",1.9], + ["Spain (Kingdom of)",1.9], + ["Australia (Commonwealth of)",1.9], + ["Norway (Kingdom of)",1.9], + ["Estonia (Republic of)",1.9], + ["Bermuda",1.9], + ["Malaysia",1.8], + ["Greece (Hellenic Republic)",1.8], + ["Israel (State of)",1.8], + ["Iceland (Republic of)",1.8], + ["Japan",1.7], + ["Germany (Federal Republic of)",1.7], + ["United Kingdom (of Great Britain & Northern Ireland)",1.7], + ["Poland (Republic of)",1.7], + ["Netherlands (Kingdom of the)",1.7], + ["Austria (Republic of)",1.7], + ["Singapore (Republic of)",1.7], + ["Slovakia (Slovak Republic)",1.7], + ["New Zealand",1.7], + ["Seychelles (Republic of)",1.7], + ["Monaco (Principality of)",1.7], + ["Turkey (Republic of)",1.6], + ["Algeria (People's Democratic Republic of)",1.6], + ["Romania",1.6], + ["Jordan (Hashemite Kingdom of)",1.6], + ["Lebanon (Lebanese Republic)",1.6], + ["Mauritius (Republic of)",1.6], + ["Hungary (Republic of)",1.5], + ["Croatia (Republic of)",1.5], + ["Brazil (Federative Republic of)",1.4], + ["Thailand (Kingdom of)",1.4], + ["Italy (Italian Republic)",1.4], + ["Azerbaijan (Republic of)",1.4], + ["Tajikistan (Republic of)",1.4], + ["Kyrgyz Republic",1.4], + ["Suriname (Republic of)",1.4], + ["Brunei (Nation of the Abode of Peace)",1.4], + ["Mexico (United Mexican States)",1.3], + ["Syrian Arab Republic",1.3], + ["Serbia (Republic of)",1.3], + ["Bulgaria (Republic of)",1.3], + ["Kuwait (State of)",1.3], + ["Montenegro",1.3], + ["Dominican Republic",1.2], + ["Jamaica",1.2], + ["Tonga (Kingdom of)",1.2], + ["Ecuador (Republic of)",1.1], + ["Armenia (Republic of)",1.1], + ["Grenada",1.1], + ["Mongolia",1], + ["Bahamas (Commonwealth of the)",1], + ["Dominica (Commonwealth of)",1], + ["Uruguay (Oriental Republic of)",0.9], + ["Uzbekistan (Republic of)",0.8], + ["Nicaragua (Republic of)",0.8], + ["El Salvador (Republic of)",0.8], + ["Bosnia and Herzegovina",0.8], + ["Slovenia (Republic of)",0.8], + ["North Macedonia (Republic of)",0.8], + ["Colombia (Republic of)",0.7], + ["Venezuela (Bolivarian Republic of)",0.7], + ["Chile (Republic of)",0.7], + ["United Arab Emirates",0.7], + ["Ireland",0.7], + ["Panama (Republic of)",0.7], + ["Qatar (State of)",0.7], + ["Malta (Republic of)",0.7], + ["Saint Lucia",0.7], + ["South Africa (Republic of)",0.6], + ["Peru (Republic of)",0.5], + ["Saint Vincent and the Grenadines",0.4], + ["Vietnam (Socialist Republic of)",0.2], + ["Guatemala (Republic of)",0.2], + ["Sri Lanka (Democratic Socialist Republic of)",0.15] + ] +} diff --git a/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-ethnic.json b/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-ethnic.json new file mode 100644 index 0000000..47bcf44 --- /dev/null +++ b/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-ethnic.json @@ -0,0 +1,236 @@ +{ + "metadata" : { + "name" : "Ethnic Fractionalization", + "description" : "Levels of ethnic fractionalization (aka cultural-diversity) within a country.", + "units" : "index", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","ethnicity"], + "authors" : [ + "James Fearon" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_ranked_by_ethnic_and_cultural_diversity_level" + ] + }, + "data" : [ + ["country.name","fractionalization.ethnic"], + ["Afghanistan (Islamic Republic of)",0.7693], + ["Albania (Republic of)",0.2204], + ["Algeria (People's Democratic Republic of)",0.3394], + ["American Samoa",0], + ["Andorra (Principality of)",0.7139], + ["Angola (Republic of)",0.7867], + ["Antigua and Barbuda",0.1643], + ["Argentina (Argentine Republic)",0.255], + ["Armenia (Republic of)",0.1272], + ["Aruba",0], + ["Australia (Commonwealth of)",0.0929], + ["Austria (Republic of)",0.1068], + ["Azerbaijan (Republic of)",0.2047], + ["Bahamas (Commonwealth of the)",0.4228], + ["Bahrain (Kingdom of)",0.5021], + ["Bangladesh (People's Republic of)",0.0454], + ["Barbados",0.1423], + ["Belarus (Republic of)",0.3222], + ["Belgium (Kingdom of)",0.5554], + ["Belize",0.7015], + ["Benin (Republic of)",0.7872], + ["Bermuda",0], + ["Bhutan (Kingdom of)",0.605], + ["Bolivia (Plurinational State of)",0.7396], + ["Bosnia and Herzegovina",0.63], + ["Botswana (Republic of)",0.4102], + ["Brazil (Federative Republic of)",0.5408], + ["Brunei (Nation of the Abode of Peace)",0.5416], + ["Bulgaria (Republic of)",0.4021], + ["Burkina Faso",0.7377], + ["Burundi (Republic of)",0.2951], + ["Cambodia (Kingdom of)",0.2105], + ["Cameroon (Republic of)",0.8635], + ["Canada",0.7124], + ["Cape Verde (Republic of)",0.4174], + ["Central African Republic",0.8295], + ["Chad (Republic of)",0.862], + ["Chile (Republic of)",0.1861], + ["China (People's Republic of)",0.1538], + ["Colombia (Republic of)",0.6014], + ["Comoros (Union of the)",0], + ["Congo (Democratic Republic of the)",0.8747], + ["Congo (Republic of the)",0.8747], + ["Costa Rica (Republic of)",0.2368], + ["Côte d'Ivoire (Republic of)",0.8204], + ["Croatia (Republic of)",0.369], + ["Cuba (Republic of)",0.5908], + ["Cyprus (Republic of)",0.0939], + ["Czech Republic",0.3222], + ["Denmark (Kingdom of)",0.0819], + ["Djibouti (Republic of)",0.7962], + ["Dominica (Commonwealth of)",0.2003], + ["Dominican Republic",0.4294], + ["Timor-Leste (Democratic Republic of)",0], + ["Ecuador (Republic of)",0.655], + ["Egypt (Arab Republic of)",0.1836], + ["El Salvador (Republic of)",0.1978], + ["Equatorial Guinea (Republic of)",0.3467], + ["Eritrea (State of)",0.6524], + ["Estonia (Republic of)",0.5062], + ["Ethiopia (Federal Democratic Republic of)",0.7235], + ["Faroe Islands",0], + ["Fiji (Republic of)",0.5479], + ["Finland (Republic of)",0.1315], + ["France (French Republic)",0.1032], + ["French Guiana",0], + ["French Polynesia",0], + ["Gabon (Gabonese Republic)",0.769], + ["Gambia (Republic of the)",0.7864], + ["Georgia",0.4923], + ["Germany (Federal Republic of)",0.1682], + ["Ghana (Republic of)",0.6733], + ["Greece (Hellenic Republic)",0.1576], + ["Greenland",0], + ["Grenada",0.2661], + ["Guadeloupe",0], + ["Guam",0], + ["Guatemala (Republic of)",0.5122], + ["Guinea (Republic of)",0.7389], + ["Guinea-Bissau (Republic of)",0.8082], + ["Guyana (Co-operative Republic of)",0.6195], + ["Haiti (Republic of)",0.095], + ["Honduras (Republic of)",0.1867], + ["Hong Kong (Special Administrative Region of China)",0.062], + ["Hungary (Republic of)",0.1522], + ["Iceland (Republic of)",0.0798], + ["India (Republic of)",0.4182], + ["Indonesia (Republic of)",0.7351], + ["Iran (Islamic Republic of)",0.6684], + ["Iraq (Republic of)",0.3689], + ["Ireland",0.1206], + ["Isle of Man",0], + ["Israel (State of)",0.3436], + ["Italy (Italian Republic)",0.1145], + ["Jamaica",0.4129], + ["Japan",0.0119], + ["Jersey (Bailiwick of)",0], + ["Jordan (Hashemite Kingdom of)",0.5926], + ["Kazakhstan (Republic of)",0.6171], + ["Kenya (Republic of)",0.8588], + ["Kiribati (Republic of)",0.0511], + ["Korea (Republic of)",0.002], + ["Korea (Democratic People's Republic of)",0.0392], + ["Kyrgyz Republic",0.6752], + ["Kuwait (State of)",0.6604], + ["Lao (People's Democratic Republic)",0.5139], + ["Latvia (Republic of)",0.5867], + ["Lebanon (Lebanese Republic)",0.1314], + ["Lesotho (Kingdom of)",0.255], + ["Liberia (Republic of)",0.9084], + ["Libya (State of)",0.792], + ["Liechtenstein (Principality of)",0.5726], + ["Lithuania (Republic of)",0.3223], + ["Luxembourg (Grand Duchy of)",0.5302], + ["Macao (Special Administrative Region of China)",0], + ["North Macedonia (Republic of)",0.5023], + ["Madagascar (Republic of)",0.8791], + ["Malawi (Republic of)",0.6744], + ["Malaysia",0.588], + ["Mali (Republic of)",0.6906], + ["Malta (Republic of)",0.0414], + ["Marshall Islands (Republic of the)",0.0603], + ["Martinique",0], + ["Mauritania (Islamic Republic of)",0.615], + ["Mauritius (Republic of)",0.4634], + ["Mayotte (Department of)",0], + ["Mexico (United Mexican States)",0.5418], + ["Micronesia (Federated States of)",0.7005], + ["Moldova (Republic of)",0.5535], + ["Monaco (Principality of)",0.6838], + ["Mongolia",0.3682], + ["Morocco (Kingdom of)",0.4841], + ["Mozambique (Republic of)",0.6932], + ["Burma",0.5062], + ["Namibia (Republic of)",0.6329], + ["Nauru (Republic of)",0.5832], + ["Nepal (Federal Democratic Republic of)",0.6632], + ["Sint Maarten (Netherlands)",0], + ["Netherlands (Kingdom of the)",0.1054], + ["New Caledonia",0], + ["New Zealand",0.3969], + ["Nicaragua (Republic of)",0.4844], + ["Niger (Republic of)",0.6518], + ["Nigeria (Federal Republic of)",0.8505], + ["Northern Mariana Islands (Commonwealth of the)",0], + ["Norway (Kingdom of)",0.0586], + ["Oman (Sultanate of)",0.4373], + ["Pakistan (Islamic Republic of)",0.7098], + ["Palau (Republic of)",0.4312], + ["Panama (Republic of)",0.5528], + ["Papua New Guinea (Independent State of)",0.2718], + ["Paraguay (Republic of)",0.1689], + ["Peru (Republic of)",0.6566], + ["Philippines (Republic of the)",0.2385], + ["Poland (Republic of)",0.1183], + ["Portugal (Portuguese Republic)",0.0468], + ["Puerto Rico (Commonwealth of)",0], + ["Qatar (State of)",0.7456], + ["Réunion",0], + ["Romania",0.3069], + ["Russian Federation",0.2452], + ["Rwanda (Republic of)",0.3238], + ["Saint Lucia",0.1769], + ["Saint Vincent and the Grenadines",0.3066], + ["Samoa (Independent State of)",0.1376], + ["San Marino (Republic of)",0.2927], + ["São Tomé and Príncipe (Democratic Republic of)",0], + ["Saudi Arabia (Kingdom of)",0.18], + ["Senegal (Republic of)",0.6939], + ["Serbia (Republic of)",0.5736], + ["Seychelles (Republic of)",0.2025], + ["Sierra Leone (Republic of)",0.8191], + ["Singapore (Republic of)",0.3857], + ["Slovakia (Slovak Republic)",0.2539], + ["Slovenia (Republic of)",0.2216], + ["Solomon Islands",0.111], + ["Somalia (Federal Republic of)",0.8117], + ["South Africa (Republic of)",0.7517], + ["Spain (Kingdom of)",0.4165], + ["Sri Lanka (Democratic Socialist Republic of)",0.415], + ["Saint Kitts and Nevis (Federation of)",0.1842], + ["Sudan (Republic of the)",0.7147], + ["Suriname (Republic of)",0.7332], + ["Eswatini (Kingdom of)",0.0582], + ["Sweden (Kingdom of)",0.06], + ["Switzerland (Swiss Confederation)",0.5314], + ["Syrian Arab Republic",0.5399], + ["Taiwan",0.2744], + ["Tajikistan (Republic of)",0.5107], + ["Tanzania (United Republic of)",0.7353], + ["Thailand (Kingdom of)",0.6338], + ["Togo (Togolese Republic)",0.7099], + ["Tonga (Kingdom of)",0.0869], + ["Trinidad and Tobago (Republic of)",0.6475], + ["Tunisia (Republic of)",0.0394], + ["Turkey (Republic of)",0.32], + ["Turkmenistan",0.3918], + ["Tuvalu",0.1629], + ["Uganda (Republic of)",0.9302], + ["Ukraine",0.4737], + ["United Arab Emirates",0.6252], + ["United Kingdom (of Great Britain & Northern Ireland)",0.1211], + ["United States (of America)",0.4901], + ["Uruguay (Oriental Republic of)",0.2504], + ["Uzbekistan (Republic of)",0.4125], + ["Vanuatu (Republic of)",0.0413], + ["Venezuela (Bolivarian Republic of)",0.4966], + ["Vietnam (Socialist Republic of)",0.2383], + ["United States Virgin Islands",0], + ["Palestine (State of)",0], + ["Yemen (Republic of)",0], + ["Yugoslavia",0.8092], + ["Zambia (Republic of)",0.7808], + ["Zimbabwe (Republic of)",0.3874] + ] +} diff --git a/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-linguistic.json b/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-linguistic.json new file mode 100644 index 0000000..ead34bf --- /dev/null +++ b/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-linguistic.json @@ -0,0 +1,236 @@ +{ + "metadata" : { + "name" : "Linguistic Fractionalization", + "description" : "Levels of linguistic fractionalization (aka cultural-diversity) within a country.", + "units" : "index", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","language"], + "authors" : [ + "James Fearon" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_ranked_by_ethnic_and_cultural_diversity_level" + ] + }, + "data" : [ + ["country.name","fractionalization.linguistic"], + ["Afghanistan (Islamic Republic of)",0.6141], + ["Albania (Republic of)",0.0399], + ["Algeria (People's Democratic Republic of)",0.4427], + ["American Samoa",0.1733], + ["Andorra (Principality of)",0.6848], + ["Angola (Republic of)",0.787], + ["Antigua and Barbuda",0.1063], + ["Argentina (Argentine Republic)",0.0618], + ["Armenia (Republic of)",0.1291], + ["Aruba",0.3889], + ["Australia (Commonwealth of)",0.3349], + ["Austria (Republic of)",0.1522], + ["Azerbaijan (Republic of)",0.2054], + ["Bahamas (Commonwealth of the)",0.1855], + ["Bahrain (Kingdom of)",0.4344], + ["Bangladesh (People's Republic of)",0.0925], + ["Barbados",0.0926], + ["Belarus (Republic of)",0.4666], + ["Belgium (Kingdom of)",0.5409], + ["Belize",0.6303], + ["Benin (Republic of)",0.7905], + ["Bermuda",0], + ["Bhutan (Kingdom of)",0.6056], + ["Bolivia (Plurinational State of)",0.224], + ["Bosnia and Herzegovina",0.6751], + ["Botswana (Republic of)",0.411], + ["Brazil (Federative Republic of)",0.0468], + ["Brunei (Nation of the Abode of Peace)",0.3438], + ["Bulgaria (Republic of)",0.3031], + ["Burkina Faso",0.7228], + ["Burundi (Republic of)",0.2977], + ["Cambodia (Kingdom of)",0.2104], + ["Cameroon (Republic of)",0.8898], + ["Canada",0.5772], + ["Cape Verde (Republic of)",0], + ["Central African Republic",0.8334], + ["Chad (Republic of)",0.8635], + ["Chile (Republic of)",0.1871], + ["China (People's Republic of)",0.1327], + ["Colombia (Republic of)",0.0193], + ["Comoros (Union of the)",0.0103], + ["Congo (Democratic Republic of the)",0.8705], + ["Congo (Republic of the)",0.6871], + ["Costa Rica (Republic of)",0.0489], + ["Côte d'Ivoire (Republic of)",0.7842], + ["Croatia (Republic of)",0.0763], + ["Cuba (Republic of)",0], + ["Cyprus (Republic of)",0.3962], + ["Czech Republic",0.3233], + ["Denmark (Kingdom of)",0.1049], + ["Djibouti (Republic of)",0.6558], + ["Dominica (Commonwealth of)",0], + ["Dominican Republic",0.0395], + ["Timor-Leste (Democratic Republic of)",0.5261], + ["Ecuador (Republic of)",0.1308], + ["Egypt (Arab Republic of)",0.0237], + ["El Salvador (Republic of)",0], + ["Equatorial Guinea (Republic of)",0.322], + ["Eritrea (State of)",0.653], + ["Estonia (Republic of)",0.4944], + ["Ethiopia (Federal Democratic Republic of)",0.8073], + ["Faroe Islands",0], + ["Fiji (Republic of)",0.5479], + ["Finland (Republic of)",0.1412], + ["France (French Republic)",0.1221], + ["French Guiana",0.1154], + ["French Polynesia",0.6078], + ["Gabon (Gabonese Republic)",0.7821], + ["Gambia (Republic of the)",0.8076], + ["Georgia",0.4749], + ["Germany (Federal Republic of)",0.1642], + ["Ghana (Republic of)",0.6731], + ["Greece (Hellenic Republic)",0.03], + ["Greenland",0.2188], + ["Grenada",0], + ["Guadeloupe",0.0933], + ["Guam",0.732], + ["Guatemala (Republic of)",0.4586], + ["Guinea (Republic of)",0.7725], + ["Guinea-Bissau (Republic of)",0.8141], + ["Guyana (Co-operative Republic of)",0.0688], + ["Haiti (Republic of)",0], + ["Honduras (Republic of)",0.0553], + ["Hong Kong (Special Administrative Region of China)",0.2128], + ["Hungary (Republic of)",0.0297], + ["Iceland (Republic of)",0.082], + ["India (Republic of)",0.8069], + ["Indonesia (Republic of)",0.768], + ["Iran (Islamic Republic of)",0.7462], + ["Iraq (Republic of)",0.3694], + ["Ireland",0.0312], + ["Isle of Man",0], + ["Israel (State of)",0.5525], + ["Italy (Italian Republic)",0.1147], + ["Jamaica",0.1098], + ["Japan",0.0178], + ["Jersey (Bailiwick of)",0], + ["Jordan (Hashemite Kingdom of)",0.0396], + ["Kazakhstan (Republic of)",0.6621], + ["Kenya (Republic of)",0.886], + ["Kiribati (Republic of)",0.0237], + ["Korea (Republic of)",0.0021], + ["Korea (Democratic People's Republic of)",0.0028], + ["Kyrgyz Republic",0.5949], + ["Kuwait (State of)",0.3444], + ["Lao (People's Democratic Republic)",0.6382], + ["Latvia (Republic of)",0.5795], + ["Lebanon (Lebanese Republic)",0.1312], + ["Lesotho (Kingdom of)",0.2543], + ["Liberia (Republic of)",0.9038], + ["Libya (State of)",0.0758], + ["Liechtenstein (Principality of)",0.2246], + ["Lithuania (Republic of)",0.3219], + ["Luxembourg (Grand Duchy of)",0.644], + ["Macao (Special Administrative Region of China)",0.2519], + ["North Macedonia (Republic of)",0.5021], + ["Madagascar (Republic of)",0.0204], + ["Malawi (Republic of)",0.6023], + ["Malaysia",0.597], + ["Mali (Republic of)",0.8388], + ["Malta (Republic of)",0.0907], + ["Marshall Islands (Republic of the)",0.0734], + ["Martinique",0], + ["Mauritania (Islamic Republic of)",0.326], + ["Mauritius (Republic of)",0.4547], + ["Mayotte (Department of)",0.7212], + ["Mexico (United Mexican States)",0.1511], + ["Micronesia (Federated States of)",0.7483], + ["Moldova (Republic of)",0.5533], + ["Monaco (Principality of)",0.7305], + ["Mongolia",0.3734], + ["Morocco (Kingdom of)",0.4683], + ["Mozambique (Republic of)",0.8125], + ["Burma",0.5072], + ["Namibia (Republic of)",0.7005], + ["Nauru (Republic of)",0.6161], + ["Nepal (Federal Democratic Republic of)",0.7167], + ["Sint Maarten (Netherlands)",0.2508], + ["Netherlands (Kingdom of the)",0.5143], + ["New Caledonia",0.6633], + ["New Zealand",0.1657], + ["Nicaragua (Republic of)",0.0473], + ["Niger (Republic of)",0.6519], + ["Nigeria (Federal Republic of)",0.8316], + ["Northern Mariana Islands (Commonwealth of the)",0.7754], + ["Norway (Kingdom of)",0.0673], + ["Oman (Sultanate of)",0.3567], + ["Pakistan (Islamic Republic of)",0.719], + ["Palau (Republic of)",0.3157], + ["Panama (Republic of)",0.3873], + ["Papua New Guinea (Independent State of)",0.3526], + ["Paraguay (Republic of)",0.5975], + ["Peru (Republic of)",0.3358], + ["Philippines (Republic of the)",0.836], + ["Poland (Republic of)",0.0468], + ["Portugal (Portuguese Republic)",0.0198], + ["Puerto Rico (Commonwealth of)",0.0352], + ["Qatar (State of)",0.48], + ["Réunion",0.1578], + ["Romania",0.1723], + ["Russian Federation",0.2485], + ["Rwanda (Republic of)",0], + ["Saint Lucia",0.3169], + ["Saint Vincent and the Grenadines",0.0175], + ["Samoa (Independent State of)",0.0111], + ["San Marino (Republic of)",0], + ["São Tomé and Príncipe (Democratic Republic of)",0.2322], + ["Saudi Arabia (Kingdom of)",0.0949], + ["Senegal (Republic of)",0.7081], + ["Serbia (Republic of)",null], + ["Seychelles (Republic of)",0.1606], + ["Sierra Leone (Republic of)",0.7634], + ["Singapore (Republic of)",0.3835], + ["Slovakia (Slovak Republic)",0.2551], + ["Slovenia (Republic of)",0.2201], + ["Solomon Islands",0.5254], + ["Somalia (Federal Republic of)",0.0326], + ["South Africa (Republic of)",0.8652], + ["Spain (Kingdom of)",0.4132], + ["Sri Lanka (Democratic Socialist Republic of)",0.4645], + ["Saint Kitts and Nevis (Federation of)",null], + ["Sudan (Republic of the)",0.719], + ["Suriname (Republic of)",0.331], + ["Eswatini (Kingdom of)",0.1722], + ["Sweden (Kingdom of)",0.1968], + ["Switzerland (Swiss Confederation)",0.5441], + ["Syrian Arab Republic",0.1817], + ["Taiwan",0.5028], + ["Tajikistan (Republic of)",0.5473], + ["Tanzania (United Republic of)",0.8983], + ["Thailand (Kingdom of)",0.6344], + ["Togo (Togolese Republic)",0.898], + ["Tonga (Kingdom of)",0.3782], + ["Trinidad and Tobago (Republic of)",0.1251], + ["Tunisia (Republic of)",0.0124], + ["Turkey (Republic of)",0.2216], + ["Turkmenistan",0.3984], + ["Tuvalu",0.1372], + ["Uganda (Republic of)",0.9227], + ["Ukraine",0.4741], + ["United Arab Emirates",0.4874], + ["United Kingdom (of Great Britain & Northern Ireland)",0.0532], + ["United States (of America)",0.5647], + ["Uruguay (Oriental Republic of)",0.0817], + ["Uzbekistan (Republic of)",0.412], + ["Vanuatu (Republic of)",0.5794], + ["Venezuela (Bolivarian Republic of)",0.0686], + ["Vietnam (Socialist Republic of)",0.2377], + ["United States Virgin Islands",0.314], + ["Palestine (State of)",0.1438], + ["Yemen (Republic of)",0.008], + ["Yugoslavia",0.6064], + ["Zambia (Republic of)",0.8734], + ["Zimbabwe (Republic of)",0.4472] + ] +} diff --git a/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-religious.json b/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-religious.json new file mode 100644 index 0000000..189290b --- /dev/null +++ b/data/global/culture/ethnicity/fractionalization-index/fractionalization-index-religious.json @@ -0,0 +1,236 @@ +{ + "metadata" : { + "name" : "Religious Fractionalization", + "description" : "Levels of religious fractionalization (aka cultural-diversity) within a country.", + "units" : "index", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","religion"], + "authors" : [ + "James Fearon" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_ranked_by_ethnic_and_cultural_diversity_level" + ] + }, + "data" : [ + ["country.name","fractionalization.religious"], + ["Afghanistan (Islamic Republic of)",0.2717], + ["Albania (Republic of)",0.4719], + ["Algeria (People's Democratic Republic of)",0.0091], + ["American Samoa",0.6395], + ["Andorra (Principality of)",0.2326], + ["Angola (Republic of)",0.6276], + ["Antigua and Barbuda",0.684], + ["Argentina (Argentine Republic)",0.2236], + ["Armenia (Republic of)",0.4576], + ["Aruba",0.4107], + ["Australia (Commonwealth of)",0.8211], + ["Austria (Republic of)",0.4146], + ["Azerbaijan (Republic of)",0.4899], + ["Bahamas (Commonwealth of the)",0.6815], + ["Bahrain (Kingdom of)",0.5528], + ["Bangladesh (People's Republic of)",0.209], + ["Barbados",0.6934], + ["Belarus (Republic of)",0.6116], + ["Belgium (Kingdom of)",0.2127], + ["Belize",0.5813], + ["Benin (Republic of)",0.5544], + ["Bermuda",0.7112], + ["Bhutan (Kingdom of)",0.3787], + ["Bolivia (Plurinational State of)",0.2085], + ["Bosnia and Herzegovina",0.6851], + ["Botswana (Republic of)",0.5986], + ["Brazil (Federative Republic of)",0.6054], + ["Brunei (Nation of the Abode of Peace)",0.4404], + ["Bulgaria (Republic of)",0.5965], + ["Burkina Faso",0.5798], + ["Burundi (Republic of)",0.5158], + ["Cambodia (Kingdom of)",0.0965], + ["Cameroon (Republic of)",0.7338], + ["Canada",0.6958], + ["Cape Verde (Republic of)",0.0766], + ["Central African Republic",0.7916], + ["Chad (Republic of)",0.6411], + ["Chile (Republic of)",0.3841], + ["China (People's Republic of)",0.6643], + ["Colombia (Republic of)",0.1478], + ["Comoros (Union of the)",0.0137], + ["Congo (Democratic Republic of the)",0.7021], + ["Congo (Republic of the)",0.6642], + ["Costa Rica (Republic of)",0.241], + ["Côte d'Ivoire (Republic of)",0.7551], + ["Croatia (Republic of)",0.4447], + ["Cuba (Republic of)",0.5059], + ["Cyprus (Republic of)",0.3962], + ["Czech Republic",0.6591], + ["Denmark (Kingdom of)",0.2333], + ["Djibouti (Republic of)",0.0435], + ["Dominica (Commonwealth of)",0.4628], + ["Dominican Republic",0.3118], + ["Timor-Leste (Democratic Republic of)",0.4254], + ["Ecuador (Republic of)",0.1417], + ["Egypt (Arab Republic of)",0.1979], + ["El Salvador (Republic of)",0.3559], + ["Equatorial Guinea (Republic of)",0.1195], + ["Eritrea (State of)",0.4253], + ["Estonia (Republic of)",0.4985], + ["Ethiopia (Federal Democratic Republic of)",0.6249], + ["Faroe Islands",0.3147], + ["Fiji (Republic of)",0.5682], + ["Finland (Republic of)",0.2531], + ["France (French Republic)",0.4029], + ["French Guiana",0.4959], + ["French Polynesia",0.5813], + ["Gabon (Gabonese Republic)",0.6674], + ["Gambia (Republic of the)",0.097], + ["Georgia",0.6543], + ["Germany (Federal Republic of)",0.6571], + ["Ghana (Republic of)",0.7987], + ["Greece (Hellenic Republic)",0.153], + ["Greenland",0.4592], + ["Grenada",0.5898], + ["Guadeloupe",0.3069], + ["Guam",0.4082], + ["Guatemala (Republic of)",0.3753], + ["Guinea (Republic of)",0.2649], + ["Guinea-Bissau (Republic of)",0.6128], + ["Guyana (Co-operative Republic of)",0.7876], + ["Haiti (Republic of)",0.4704], + ["Honduras (Republic of)",0.2357], + ["Hong Kong (Special Administrative Region of China)",0.4191], + ["Hungary (Republic of)",0.5244], + ["Iceland (Republic of)",0.1913], + ["India (Republic of)",0.326], + ["Indonesia (Republic of)",0.234], + ["Iran (Islamic Republic of)",0.1152], + ["Iraq (Republic of)",0.4844], + ["Ireland",0.155], + ["Isle of Man",0.4729], + ["Israel (State of)",0.3469], + ["Italy (Italian Republic)",0.3027], + ["Jamaica",0.616], + ["Japan",0.5406], + ["Jersey (Bailiwick of)",0.5479], + ["Jordan (Hashemite Kingdom of)",0.0659], + ["Kazakhstan (Republic of)",0.5898], + ["Kenya (Republic of)",0.7765], + ["Kiribati (Republic of)",0.5541], + ["Korea (Republic of)",0.6604], + ["Korea (Democratic People's Republic of)",0.4891], + ["Kyrgyz Republic",0.447], + ["Kuwait (State of)",0.6745], + ["Lao (People's Democratic Republic)",0.5453], + ["Latvia (Republic of)",0.5556], + ["Lebanon (Lebanese Republic)",0.7886], + ["Lesotho (Kingdom of)",0.7211], + ["Liberia (Republic of)",0.4883], + ["Libya (State of)",0.057], + ["Liechtenstein (Principality of)",0.3343], + ["Lithuania (Republic of)",0.4141], + ["Luxembourg (Grand Duchy of)",0.0911], + ["Macao (Special Administrative Region of China)",0.5511], + ["North Macedonia (Republic of)",0.5899], + ["Madagascar (Republic of)",0.5191], + ["Malawi (Republic of)",0.8192], + ["Malaysia",0.6657], + ["Mali (Republic of)",0.182], + ["Malta (Republic of)",0.1223], + ["Marshall Islands (Republic of the)",0.5207], + ["Martinique",0.2336], + ["Mauritania (Islamic Republic of)",0.0149], + ["Mauritius (Republic of)",0.6385], + ["Mayotte (Department of)",0.062], + ["Mexico (United Mexican States)",0.1796], + ["Micronesia (Federated States of)",0.6469], + ["Moldova (Republic of)",0.5603], + ["Monaco (Principality of)",0.3047], + ["Mongolia",0.0799], + ["Morocco (Kingdom of)",0.0035], + ["Mozambique (Republic of)",0.6759], + ["Burma",0.1974], + ["Namibia (Republic of)",0.6626], + ["Nauru (Republic of)",0.6194], + ["Nepal (Federal Democratic Republic of)",0.1417], + ["Sint Maarten (Netherlands)",0.3866], + ["Netherlands (Kingdom of the)",0.7222], + ["New Caledonia",0.5462], + ["New Zealand",0.811], + ["Nicaragua (Republic of)",0.429], + ["Niger (Republic of)",0.2013], + ["Nigeria (Federal Republic of)",0.7421], + ["Northern Mariana Islands (Commonwealth of the)",0.4811], + ["Norway (Kingdom of)",0.2048], + ["Oman (Sultanate of)",0.4322], + ["Pakistan (Islamic Republic of)",0.3848], + ["Palau (Republic of)",0.7147], + ["Panama (Republic of)",0.3338], + ["Papua New Guinea (Independent State of)",0.5523], + ["Paraguay (Republic of)",0.2123], + ["Peru (Republic of)",0.1988], + ["Philippines (Republic of the)",0.3056], + ["Poland (Republic of)",0.1712], + ["Portugal (Portuguese Republic)",0.1438], + ["Puerto Rico (Commonwealth of)",0.4952], + ["Qatar (State of)",0.095], + ["Réunion",0.1952], + ["Romania",0.2373], + ["Russian Federation",0.4398], + ["Rwanda (Republic of)",0.5066], + ["Saint Lucia",0.332], + ["Saint Vincent and the Grenadines",0.7028], + ["Samoa (Independent State of)",0.7871], + ["San Marino (Republic of)",0.1975], + ["São Tomé and Príncipe (Democratic Republic of)",0.1866], + ["Saudi Arabia (Kingdom of)",0.127], + ["Senegal (Republic of)",0.1497], + ["Serbia (Republic of)",null], + ["Seychelles (Republic of)",0.2323], + ["Sierra Leone (Republic of)",0.5395], + ["Singapore (Republic of)",0.6561], + ["Slovakia (Slovak Republic)",0.5655], + ["Slovenia (Republic of)",0.2868], + ["Solomon Islands",0.6708], + ["Somalia (Federal Republic of)",0.0028], + ["South Africa (Republic of)",0.8603], + ["Spain (Kingdom of)",0.4514], + ["Sri Lanka (Democratic Socialist Republic of)",0.4853], + ["Saint Kitts and Nevis (Federation of)",0.6614], + ["Sudan (Republic of the)",0.4307], + ["Suriname (Republic of)",0.791], + ["Eswatini (Kingdom of)",0.4444], + ["Sweden (Kingdom of)",0.2342], + ["Switzerland (Swiss Confederation)",0.6083], + ["Syrian Arab Republic",0.431], + ["Taiwan",0.6845], + ["Tajikistan (Republic of)",0.3386], + ["Tanzania (United Republic of)",0.6334], + ["Thailand (Kingdom of)",0.0994], + ["Togo (Togolese Republic)",0.6596], + ["Tonga (Kingdom of)",0.6214], + ["Trinidad and Tobago (Republic of)",0.7936], + ["Tunisia (Republic of)",0.0104], + ["Turkey (Republic of)",0.0049], + ["Turkmenistan",0.2327], + ["Tuvalu",0.2524], + ["Uganda (Republic of)",0.6332], + ["Ukraine",0.6157], + ["United Arab Emirates",0.331], + ["United Kingdom (of Great Britain & Northern Ireland)",0.6944], + ["United States (of America)",0.8241], + ["Uruguay (Oriental Republic of)",0.3548], + ["Uzbekistan (Republic of)",0.2133], + ["Vanuatu (Republic of)",0.7044], + ["Venezuela (Bolivarian Republic of)",0.135], + ["Vietnam (Socialist Republic of)",0.508], + ["United States Virgin Islands",0.6359], + ["Palestine (State of)",0.3095], + ["Yemen (Republic of)",0.0023], + ["Yugoslavia",0.553], + ["Zambia (Republic of)",0.7359], + ["Zimbabwe (Republic of)",0.7363] + ] +} diff --git a/data/global/culture/marriage/marriage-age-median/marriage-age-men.json b/data/global/culture/marriage/marriage-age-median/marriage-age-men.json new file mode 100644 index 0000000..855daee --- /dev/null +++ b/data/global/culture/marriage/marriage-age-median/marriage-age-men.json @@ -0,0 +1,217 @@ +{ + "metadata" : { + "name" : "Average Male Age At First Marriage", + "description" : "Average age of males at the time of their first marriage.", + "units" : "years", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","culture","marriage","age","male","gender"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_age_at_first_marriage" + ] + }, + "data" : [ + ["country.name","marriage.age.men"], + ["Algeria (People's Democratic Republic of)",32.4], + ["Angola (Republic of)",24.7], + ["Benin (Republic of)",23.8], + ["Botswana (Republic of)",30.9], + ["Burkina Faso",24.3], + ["Burundi (Republic of)",23.6], + ["Cape Verde (Republic of)",26.2], + ["Cameroon (Republic of)",25.8], + ["Central African Republic",21.7], + ["Chad (Republic of)",24.7], + ["Comoros (Union of the)",25.6], + ["Congo (Republic of the)",25.1], + ["Côte d'Ivoire (Republic of)",26.7], + ["Congo (Democratic Republic of the)",24.2], + ["Djibouti (Republic of)",30.8], + ["Egypt (Arab Republic of)",31], + ["Equatorial Guinea (Republic of)",26.1], + ["Eritrea (State of)",29.1], + ["Eswatini (Kingdom of)",30.5], + ["Ethiopia (Federal Democratic Republic of)",25.8], + ["Gabon (Gabonese Republic)",24.7], + ["Gambia (Republic of the)",29.7], + ["Ghana (Republic of)",25.7], + ["Guinea (Republic of)",28], + ["Guinea-Bissau (Republic of)",28.1], + ["Kenya (Republic of)",24.8], + ["Lesotho (Kingdom of)",25.5], + ["Liberia (Republic of)",23.4], + ["Libya (State of)",32], + ["Madagascar (Republic of)",22.3], + ["Malawi (Republic of)",22.3], + ["Mali (Republic of)",25.8], + ["Mauritania (Islamic Republic of)",27.1], + ["Mauritius (Republic of)",29.8], + ["Morocco (Kingdom of)",31.3], + ["Mozambique (Republic of)",23.4], + ["Namibia (Republic of)",31.7], + ["Niger (Republic of)",24], + ["Nigeria (Federal Republic of)",28.6], + ["Rwanda (Republic of)",24.7], + ["São Tomé and Príncipe (Democratic Republic of)",23.8], + ["Senegal (Republic of)",30.6], + ["Seychelles (Republic of)",27.3], + ["Sierra Leone (Republic of)",27.9], + ["Somalia (Federal Republic of)",26.5], + ["South Africa (Republic of)",37], + ["South Sudan (Republic of)",25.6], + ["Sudan (Republic of the)",28.9], + ["Tanzania (United Republic of)",23.8], + ["Togo (Togolese Republic)",27.6], + ["Tunisia (Republic of)",32.6], + ["Uganda (Republic of)",22.4], + ["Zambia (Republic of)",23.7], + ["Zimbabwe (Republic of)",24.6], + ["Antigua and Barbuda",29.3], + ["Argentina (Argentine Republic)",34.1], + ["Bahamas (Commonwealth of the)",30.6], + ["Barbados",34.3], + ["Belize",30.1], + ["Bolivia (Plurinational State of)",26.6], + ["Brazil (Federative Republic of)",33], + ["Canada",31], + ["Chile (Republic of)",35.3], + ["Colombia (Republic of)",26.8], + ["Costa Rica (Republic of)",28.8], + ["Cuba (Republic of)",25.4], + ["Dominica (Commonwealth of)",36.5], + ["Dominican Republic",24.8], + ["Ecuador (Republic of)",25], + ["El Salvador (Republic of)",25.5], + ["Grenada",34.4], + ["Guatemala (Republic of)",23.6], + ["Guyana (Co-operative Republic of)",25.4], + ["Haiti (Republic of)",28.3], + ["Honduras (Republic of)",24.1], + ["Jamaica",34.8], + ["Mexico (United Mexican States)",33.4], + ["Nicaragua (Republic of)",24.4], + ["Panama (Republic of)",25.3], + ["Paraguay (Republic of)",26.8], + ["Peru (Republic of)",27.5], + ["Saint Kitts and Nevis (Federation of)",32.1], + ["Saint Lucia",35.1], + ["Saint Vincent and the Grenadines",27.8], + ["Suriname (Republic of)",32.8], + ["Trinidad and Tobago (Republic of)",31.8], + ["United States (of America)",30.5], + ["Uruguay (Oriental Republic of)",26.5], + ["Venezuela (Bolivarian Republic of)",26], + ["Afghanistan (Islamic Republic of)",24.7], + ["Armenia (Republic of)",30.5], + ["Azerbaijan (Republic of)",28.1], + ["Bahrain (Kingdom of)",30], + ["Bangladesh (People's Republic of)",26.5], + ["Bhutan (Kingdom of)",25.4], + ["Brunei (Nation of the Abode of Peace)",27.3], + ["Cambodia (Kingdom of)",23.4], + ["China (People's Republic of)",27.1], + ["Cyprus (Republic of)",30.7], + ["Georgia",30.7], + ["Hong Kong (Special Administrative Region of China)",31.2], + ["India (Republic of)",28], + ["Indonesia (Republic of)",24], + ["Iran (Islamic Republic of)",27.4], + ["Iraq (Republic of)",28.2], + ["Israel (State of)",30.6], + ["Japan",32], + ["Jordan (Hashemite Kingdom of)",31.3], + ["Kazakhstan (Republic of)",27.6], + ["Kuwait (State of)",28.9], + ["Kyrgyz Republic",27.2], + ["Lao (People's Democratic Republic)",23.3], + ["Lebanon (Lebanese Republic)",32.8], + ["Malaysia",27], + ["Maldives (Republic of)",24.1], + ["Mongolia",29], + ["Myanmar (Union of)",24], + ["Nepal (Federal Democratic Republic of)",23.6], + ["Korea (Democratic People's Republic of)",29], + ["Oman (Sultanate of)",28.1], + ["Pakistan (Islamic Republic of)",26.9], + ["Palestine (State of)",25.4], + ["Philippines (Republic of the)",28], + ["Qatar (State of)",27.3], + ["Saudi Arabia (Kingdom of)",25.3], + ["Singapore (Republic of)",30.1], + ["Sri Lanka (Democratic Socialist Republic of)",27.2], + ["Korea (Republic of)",33], + ["Syrian Arab Republic",31.8], + ["Taiwan",32.6], + ["Tajikistan (Republic of)",26.2], + ["Thailand (Kingdom of)",24.4], + ["Timor-Leste (Democratic Republic of)",25], + ["Turkey (Republic of)",27.9], + ["Turkmenistan",24.6], + ["United Arab Emirates",26.8], + ["Uzbekistan (Republic of)",26.6], + ["Vietnam (Socialist Republic of)",26.2], + ["Yemen (Republic of)",26.1], + ["Albania (Republic of)",30.9], + ["Austria (Republic of)",33], + ["Belarus (Republic of)",28.3], + ["Belgium (Kingdom of)",32.3], + ["Bosnia and Herzegovina",29.5], + ["Bulgaria (Republic of)",32], + ["Croatia (Republic of)",31.5], + ["Czech Republic",32.2], + ["Denmark (Kingdom of)",35], + ["Estonia (Republic of)",32.3], + ["Finland (Republic of)",34.2], + ["France (French Republic)",33.7], + ["Germany (Federal Republic of)",34.5], + ["Greece (Hellenic Republic)",32.9], + ["Hungary (Republic of)",32.8], + ["Iceland (Republic of)",34.6], + ["Ireland",36.8], + ["Italy (Italian Republic)",33.7], + ["Latvia (Republic of)",32.7], + ["Liechtenstein (Principality of)",33.9], + ["Lithuania (Republic of)",30.7], + ["Luxembourg (Grand Duchy of)",34.3], + ["Malta (Republic of)",30.5], + ["Moldova (Republic of)",28.9], + ["Monaco (Principality of)",33.4], + ["Montenegro",31.1], + ["Netherlands (Kingdom of the)",33], + ["North Macedonia (Republic of)",29.6], + ["Norway (Kingdom of)",36.7], + ["Poland (Republic of)",28.9], + ["Portugal (Portuguese Republic)",33.9], + ["Romania",31.6], + ["Russian Federation",28.1], + ["San Marino (Republic of)",33.5], + ["Serbia (Republic of)",31.4], + ["Slovakia (Slovak Republic)",31.9], + ["Slovenia (Republic of)",32.8], + ["Spain (Kingdom of)",35.6], + ["Sweden (Kingdom of)",36.3], + ["Switzerland (Swiss Confederation)",32.3], + ["Ukraine",28.6], + ["United Kingdom (of Great Britain & Northern Ireland)",33.6], + ["Australia (Commonwealth of)",32.3], + ["Fiji (Republic of)",27.7], + ["Kiribati (Republic of)",23.6], + ["Marshall Islands (Republic of the)",25.7], + ["Micronesia (Federated States of)",27.5], + ["Nauru (Republic of)",22.8], + ["New Zealand",30.6], + ["Palau (Republic of)",28.9], + ["Papua New Guinea (Independent State of)",25], + ["Samoa (Independent State of)",28.7], + ["Solomon Islands",25.6], + ["Tonga (Kingdom of)",25], + ["Tuvalu",27.2], + ["Vanuatu (Republic of)",24.4] + ] +} diff --git a/data/global/culture/marriage/marriage-age-median/marriage-age-women.json b/data/global/culture/marriage/marriage-age-median/marriage-age-women.json new file mode 100644 index 0000000..5bfe849 --- /dev/null +++ b/data/global/culture/marriage/marriage-age-median/marriage-age-women.json @@ -0,0 +1,217 @@ +{ + "metadata" : { + "name" : "Average Female Age At First Marriage", + "description" : "Average age of females at the time of their first marriage.", + "units" : "years", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","culture","marriage","age","female","gender"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_age_at_first_marriage" + ] + }, + "data" : [ + ["country.name","marriage.age.women"], + ["Algeria (People's Democratic Republic of)",28.2], + ["Angola (Republic of)",21.4], + ["Benin (Republic of)",18.7], + ["Botswana (Republic of)",26.4], + ["Burkina Faso",17.9], + ["Burundi (Republic of)",20.3], + ["Cape Verde (Republic of)",21.5], + ["Cameroon (Republic of)",19], + ["Central African Republic",17.3], + ["Chad (Republic of)",18.8], + ["Comoros (Union of the)",20.4], + ["Congo (Republic of the)",21], + ["Côte d'Ivoire (Republic of)",19.5], + ["Congo (Democratic Republic of the)",19], + ["Djibouti (Republic of)",26.9], + ["Egypt (Arab Republic of)",25], + ["Equatorial Guinea (Republic of)",20.5], + ["Eritrea (State of)",20.6], + ["Eswatini (Kingdom of)",26.5], + ["Ethiopia (Federal Democratic Republic of)",21.3], + ["Gabon (Gabonese Republic)",20.4], + ["Gambia (Republic of the)",21.5], + ["Ghana (Republic of)",21.7], + ["Guinea (Republic of)",19.8], + ["Guinea-Bissau (Republic of)",20.9], + ["Kenya (Republic of)",20.2], + ["Lesotho (Kingdom of)",20.9], + ["Liberia (Republic of)",18.9], + ["Libya (State of)",29.2], + ["Madagascar (Republic of)",18.4], + ["Malawi (Republic of)",17.9], + ["Mali (Republic of)",18.8], + ["Mauritania (Islamic Republic of)",19], + ["Mauritius (Republic of)",25.4], + ["Morocco (Kingdom of)",25.7], + ["Mozambique (Republic of)",18.7], + ["Namibia (Republic of)",29.2], + ["Niger (Republic of)",17.2], + ["Nigeria (Federal Republic of)",21.2], + ["Rwanda (Republic of)",20.6], + ["São Tomé and Príncipe (Democratic Republic of)",18.8], + ["Senegal (Republic of)",22.2], + ["Seychelles (Republic of)",25.2], + ["Sierra Leone (Republic of)",23.1], + ["Somalia (Federal Republic of)",20.6], + ["South Africa (Republic of)",33], + ["South Sudan (Republic of)",18.4], + ["Sudan (Republic of the)",22], + ["Tanzania (United Republic of)",18.9], + ["Togo (Togolese Republic)",22.3], + ["Tunisia (Republic of)",28.7], + ["Uganda (Republic of)",18.2], + ["Zambia (Republic of)",18.7], + ["Zimbabwe (Republic of)",19.9], + ["Antigua and Barbuda",25.7], + ["Argentina (Argentine Republic)",33.2], + ["Bahamas (Commonwealth of the)",27.9], + ["Barbados",31.8], + ["Belize",28.6], + ["Bolivia (Plurinational State of)",24.1], + ["Brazil (Federative Republic of)",30], + ["Canada",29.6], + ["Chile (Republic of)",32.6], + ["Colombia (Republic of)",22.7], + ["Costa Rica (Republic of)",25.7], + ["Cuba (Republic of)",21.3], + ["Dominica (Commonwealth of)",32.5], + ["Dominican Republic",21], + ["Ecuador (Republic of)",21.8], + ["El Salvador (Republic of)",22.5], + ["Grenada",31], + ["Guatemala (Republic of)",21.3], + ["Guyana (Co-operative Republic of)",21.5], + ["Haiti (Republic of)",23.7], + ["Honduras (Republic of)",21.2], + ["Jamaica",33.2], + ["Mexico (United Mexican States)",30.5], + ["Nicaragua (Republic of)",20.6], + ["Panama (Republic of)",21.6], + ["Paraguay (Republic of)",22.7], + ["Peru (Republic of)",23.5], + ["Saint Kitts and Nevis (Federation of)",31.3], + ["Saint Lucia",33.7], + ["Saint Vincent and the Grenadines",21.2], + ["Suriname (Republic of)",29.3], + ["Trinidad and Tobago (Republic of)",29.2], + ["United States (of America)",28.6], + ["Uruguay (Oriental Republic of)",24], + ["Venezuela (Bolivarian Republic of)",22.7], + ["Afghanistan (Islamic Republic of)",15.5], + ["Armenia (Republic of)",27.1], + ["Azerbaijan (Republic of)",24], + ["Bahrain (Kingdom of)",26.3], + ["Bangladesh (People's Republic of)",25], + ["Bhutan (Kingdom of)",22.8], + ["Brunei (Nation of the Abode of Peace)",25.1], + ["Cambodia (Kingdom of)",21], + ["China (People's Republic of)",24.9], + ["Cyprus (Republic of)",29.6], + ["Georgia",28.1], + ["Hong Kong (Special Administrative Region of China)",28.9], + ["India (Republic of)",25.3], + ["Indonesia (Republic of)",20], + ["Iran (Islamic Republic of)",23.8], + ["Iraq (Republic of)",25.3], + ["Israel (State of)",28.2], + ["Japan",30], + ["Jordan (Hashemite Kingdom of)",26.6], + ["Kazakhstan (Republic of)",25], + ["Kuwait (State of)",27.5], + ["Kyrgyz Republic",23.6], + ["Lao (People's Democratic Republic)",20.5], + ["Lebanon (Lebanese Republic)",28.8], + ["Malaysia",25], + ["Maldives (Republic of)",21.6], + ["Mongolia",26], + ["Myanmar (Union of)",20.5], + ["Nepal (Federal Democratic Republic of)",20.1], + ["Korea (Democratic People's Republic of)",25.5], + ["Oman (Sultanate of)",24.8], + ["Pakistan (Islamic Republic of)",23.2], + ["Palestine (State of)",20.1], + ["Philippines (Republic of the)",25.3], + ["Qatar (State of)",25.4], + ["Saudi Arabia (Kingdom of)",20.4], + ["Singapore (Republic of)",27.9], + ["Sri Lanka (Democratic Socialist Republic of)",23.4], + ["Korea (Republic of)",31], + ["Syrian Arab Republic",26.3], + ["Taiwan",30.4], + ["Tajikistan (Republic of)",22.1], + ["Thailand (Kingdom of)",21], + ["Timor-Leste (Democratic Republic of)",20.6], + ["Turkey (Republic of)",25], + ["Turkmenistan",23.3], + ["United Arab Emirates",25.3], + ["Uzbekistan (Republic of)",22.7], + ["Vietnam (Socialist Republic of)",22.8], + ["Yemen (Republic of)",23], + ["Albania (Republic of)",27.8], + ["Austria (Republic of)",30.8], + ["Belarus (Republic of)",26.1], + ["Belgium (Kingdom of)",30], + ["Bosnia and Herzegovina",26.8], + ["Bulgaria (Republic of)",29.1], + ["Croatia (Republic of)",28.9], + ["Czech Republic",29.8], + ["Denmark (Kingdom of)",32.7], + ["Estonia (Republic of)",30.4], + ["Finland (Republic of)",32.1], + ["France (French Republic)",32], + ["Germany (Federal Republic of)",32.1], + ["Greece (Hellenic Republic)",30.1], + ["Hungary (Republic of)",30.1], + ["Iceland (Republic of)",32.7], + ["Ireland",34.8], + ["Italy (Italian Republic)",31.5], + ["Latvia (Republic of)",30.6], + ["Liechtenstein (Principality of)",31.2], + ["Lithuania (Republic of)",28.3], + ["Luxembourg (Grand Duchy of)",31.8], + ["Malta (Republic of)",28.5], + ["Moldova (Republic of)",26], + ["Monaco (Principality of)",30.4], + ["Montenegro",28], + ["Netherlands (Kingdom of the)",30.9], + ["North Macedonia (Republic of)",26.9], + ["Norway (Kingdom of)",34.1], + ["Poland (Republic of)",27], + ["Portugal (Portuguese Republic)",32.4], + ["Romania",28.3], + ["Russian Federation",25.5], + ["San Marino (Republic of)",30.7], + ["Serbia (Republic of)",28.6], + ["Slovakia (Slovak Republic)",29.4], + ["Slovenia (Republic of)",30.7], + ["Spain (Kingdom of)",33.6], + ["Sweden (Kingdom of)",33.9], + ["Switzerland (Swiss Confederation)",30.1], + ["Ukraine",25.9], + ["United Kingdom (of Great Britain & Northern Ireland)",31.7], + ["Australia (Commonwealth of)",30.5], + ["Fiji (Republic of)",24.1], + ["Kiribati (Republic of)",20.1], + ["Marshall Islands (Republic of the)",24.2], + ["Micronesia (Federated States of)",25.5], + ["Nauru (Republic of)",21.2], + ["New Zealand",29.4], + ["Palau (Republic of)",26.6], + ["Papua New Guinea (Independent State of)",21.4], + ["Samoa (Independent State of)",24.1], + ["Solomon Islands",20.3], + ["Tonga (Kingdom of)",23.6], + ["Tuvalu",22.1], + ["Vanuatu (Republic of)",20.8] + ] +} diff --git a/data/global/culture/marriage/marriage-age-median/marriage-age.json b/data/global/culture/marriage/marriage-age-median/marriage-age.json new file mode 100644 index 0000000..01c3a9f --- /dev/null +++ b/data/global/culture/marriage/marriage-age-median/marriage-age.json @@ -0,0 +1,217 @@ +{ + "metadata" : { + "name" : "Average Age At First Marriage", + "description" : "Average age of people at the time of their first marriage.", + "units" : "years", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","culture","marriage","age"], + "authors" : [ + "Various governmental sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_age_at_first_marriage" + ] + }, + "data" : [ + ["country.name","marriage.age"], + ["Algeria (People's Democratic Republic of)",30.3], + ["Angola (Republic of)",23.1], + ["Benin (Republic of)",21.3], + ["Botswana (Republic of)",28.7], + ["Burkina Faso",21.1], + ["Burundi (Republic of)",22], + ["Cape Verde (Republic of)",23.9], + ["Cameroon (Republic of)",22.4], + ["Central African Republic",19.5], + ["Chad (Republic of)",21.8], + ["Comoros (Union of the)",23], + ["Congo (Republic of the)",23.1], + ["Côte d'Ivoire (Republic of)",23.1], + ["Congo (Democratic Republic of the)",21.6], + ["Djibouti (Republic of)",28.9], + ["Egypt (Arab Republic of)",28], + ["Equatorial Guinea (Republic of)",23.3], + ["Eritrea (State of)",24.9], + ["Eswatini (Kingdom of)",28.5], + ["Ethiopia (Federal Democratic Republic of)",23.6], + ["Gabon (Gabonese Republic)",22.6], + ["Gambia (Republic of the)",25.6], + ["Ghana (Republic of)",23.7], + ["Guinea (Republic of)",23.9], + ["Guinea-Bissau (Republic of)",24.5], + ["Kenya (Republic of)",22.5], + ["Lesotho (Kingdom of)",23.2], + ["Liberia (Republic of)",21.2], + ["Libya (State of)",30.6], + ["Madagascar (Republic of)",20.4], + ["Malawi (Republic of)",20.1], + ["Mali (Republic of)",22.3], + ["Mauritania (Islamic Republic of)",23.1], + ["Mauritius (Republic of)",27.6], + ["Morocco (Kingdom of)",28.5], + ["Mozambique (Republic of)",21.1], + ["Namibia (Republic of)",30.5], + ["Niger (Republic of)",20.6], + ["Nigeria (Federal Republic of)",24.9], + ["Rwanda (Republic of)",22.7], + ["São Tomé and Príncipe (Democratic Republic of)",21.3], + ["Senegal (Republic of)",26.4], + ["Seychelles (Republic of)",26.3], + ["Sierra Leone (Republic of)",25.5], + ["Somalia (Federal Republic of)",23.6], + ["South Africa (Republic of)",35], + ["South Sudan (Republic of)",22], + ["Sudan (Republic of the)",25.5], + ["Tanzania (United Republic of)",21.4], + ["Togo (Togolese Republic)",25], + ["Tunisia (Republic of)",30.7], + ["Uganda (Republic of)",20.3], + ["Zambia (Republic of)",21.2], + ["Zimbabwe (Republic of)",22.3], + ["Antigua and Barbuda",27.5], + ["Argentina (Argentine Republic)",33.7], + ["Bahamas (Commonwealth of the)",29.3], + ["Barbados",33.1], + ["Belize",29.4], + ["Bolivia (Plurinational State of)",25.4], + ["Brazil (Federative Republic of)",31.5], + ["Canada",30.3], + ["Chile (Republic of)",34], + ["Colombia (Republic of)",24.8], + ["Costa Rica (Republic of)",27.3], + ["Cuba (Republic of)",23.4], + ["Dominica (Commonwealth of)",34.5], + ["Dominican Republic",22.9], + ["Ecuador (Republic of)",23.4], + ["El Salvador (Republic of)",24], + ["Grenada",32.7], + ["Guatemala (Republic of)",22.5], + ["Guyana (Co-operative Republic of)",23.5], + ["Haiti (Republic of)",26], + ["Honduras (Republic of)",22.7], + ["Jamaica",34], + ["Mexico (United Mexican States)",32], + ["Nicaragua (Republic of)",22.5], + ["Panama (Republic of)",23.5], + ["Paraguay (Republic of)",24.8], + ["Peru (Republic of)",25.5], + ["Saint Kitts and Nevis (Federation of)",31.7], + ["Saint Lucia",34.4], + ["Saint Vincent and the Grenadines",24.5], + ["Suriname (Republic of)",31.1], + ["Trinidad and Tobago (Republic of)",30.5], + ["United States (of America)",29.6], + ["Uruguay (Oriental Republic of)",25.3], + ["Venezuela (Bolivarian Republic of)",24.4], + ["Afghanistan (Islamic Republic of)",20.1], + ["Armenia (Republic of)",28.8], + ["Azerbaijan (Republic of)",26.1], + ["Bahrain (Kingdom of)",28.2], + ["Bangladesh (People's Republic of)",25.8], + ["Bhutan (Kingdom of)",24.1], + ["Brunei (Nation of the Abode of Peace)",26.2], + ["Cambodia (Kingdom of)",22.2], + ["China (People's Republic of)",26], + ["Cyprus (Republic of)",30.2], + ["Georgia",29.4], + ["Hong Kong (Special Administrative Region of China)",30.1], + ["India (Republic of)",26.7], + ["Indonesia (Republic of)",22], + ["Iran (Islamic Republic of)",25.6], + ["Iraq (Republic of)",26.8], + ["Israel (State of)",29.4], + ["Japan",31], + ["Jordan (Hashemite Kingdom of)",29], + ["Kazakhstan (Republic of)",26.3], + ["Kuwait (State of)",28.2], + ["Kyrgyz Republic",25.4], + ["Lao (People's Democratic Republic)",21.9], + ["Lebanon (Lebanese Republic)",30.8], + ["Malaysia",26], + ["Maldives (Republic of)",22.9], + ["Mongolia",27.5], + ["Myanmar (Union of)",22.3], + ["Nepal (Federal Democratic Republic of)",21.9], + ["Korea (Democratic People's Republic of)",27.3], + ["Oman (Sultanate of)",26.5], + ["Pakistan (Islamic Republic of)",25.1], + ["Palestine (State of)",22.8], + ["Philippines (Republic of the)",26.7], + ["Qatar (State of)",26.4], + ["Saudi Arabia (Kingdom of)",22.9], + ["Singapore (Republic of)",29], + ["Sri Lanka (Democratic Socialist Republic of)",25.3], + ["Korea (Republic of)",32], + ["Syrian Arab Republic",29.1], + ["Taiwan",31.5], + ["Tajikistan (Republic of)",24.2], + ["Thailand (Kingdom of)",22.7], + ["Timor-Leste (Democratic Republic of)",22.8], + ["Turkey (Republic of)",26.5], + ["Turkmenistan",24], + ["United Arab Emirates",26.1], + ["Uzbekistan (Republic of)",24.7], + ["Vietnam (Socialist Republic of)",24.5], + ["Yemen (Republic of)",24.6], + ["Albania (Republic of)",29.4], + ["Austria (Republic of)",31.9], + ["Belarus (Republic of)",27.2], + ["Belgium (Kingdom of)",31.2], + ["Bosnia and Herzegovina",28.2], + ["Bulgaria (Republic of)",30.6], + ["Croatia (Republic of)",30.2], + ["Czech Republic",31], + ["Denmark (Kingdom of)",33.9], + ["Estonia (Republic of)",31.4], + ["Finland (Republic of)",33.2], + ["France (French Republic)",32.9], + ["Germany (Federal Republic of)",33.3], + ["Greece (Hellenic Republic)",31.5], + ["Hungary (Republic of)",31.5], + ["Iceland (Republic of)",33.7], + ["Ireland",35.8], + ["Italy (Italian Republic)",32.6], + ["Latvia (Republic of)",31.7], + ["Liechtenstein (Principality of)",32.6], + ["Lithuania (Republic of)",29.5], + ["Luxembourg (Grand Duchy of)",33.1], + ["Malta (Republic of)",29.5], + ["Moldova (Republic of)",27.5], + ["Monaco (Principality of)",31.9], + ["Montenegro",29.6], + ["Netherlands (Kingdom of the)",32], + ["North Macedonia (Republic of)",28.3], + ["Norway (Kingdom of)",35.4], + ["Poland (Republic of)",28], + ["Portugal (Portuguese Republic)",33.2], + ["Romania",30], + ["Russian Federation",26.8], + ["San Marino (Republic of)",32.1], + ["Serbia (Republic of)",30], + ["Slovakia (Slovak Republic)",30.7], + ["Slovenia (Republic of)",31.8], + ["Spain (Kingdom of)",34.6], + ["Sweden (Kingdom of)",35.1], + ["Switzerland (Swiss Confederation)",31.2], + ["Ukraine",27.3], + ["United Kingdom (of Great Britain & Northern Ireland)",32.7], + ["Australia (Commonwealth of)",31.4], + ["Fiji (Republic of)",25.9], + ["Kiribati (Republic of)",21.9], + ["Marshall Islands (Republic of the)",25], + ["Micronesia (Federated States of)",26.5], + ["Nauru (Republic of)",22], + ["New Zealand",30], + ["Palau (Republic of)",27.8], + ["Papua New Guinea (Independent State of)",23.2], + ["Samoa (Independent State of)",26.4], + ["Solomon Islands",23], + ["Tonga (Kingdom of)",24.3], + ["Tuvalu",24.7], + ["Vanuatu (Republic of)",22.6] + ] +} diff --git a/data/global/culture/marriage/marriage-rate.json b/data/global/culture/marriage/marriage-rate.json new file mode 100644 index 0000000..9112c8b --- /dev/null +++ b/data/global/culture/marriage/marriage-rate.json @@ -0,0 +1,119 @@ +{ + "metadata" : { + "name" : "Crude Marriage Rate", + "description" : "Crude Marriage Rate measured as marriages per 1000 population.", + "units" : "marriages/1k population", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","culture","marriage"], + "authors" : [ + "The Economist" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_marriage_rate" + ] + }, + "data" : [ + ["country.name","marriage.crude.rate"], + ["Palestine (State of)",10], + ["Fiji (Republic of)",9.8], + ["Egypt (Arab Republic of)",9.6], + ["Bahamas (Commonwealth of the)",9.5], + ["Uzbekistan (Republic of)",9.5], + ["Tajikistan (Republic of)",8.9], + ["Albania (Republic of)",8], + ["Mauritius (Republic of)",7.9], + ["Kyrgyz Republic",7.8], + ["Sri Lanka (Democratic Socialist Republic of)",7.8], + ["Moldova (Republic of)",7.5], + ["Kazakhstan (Republic of)",7.5], + ["Iran (Islamic Republic of)",7.5], + ["Guam",7.5], + ["Romania",7.3], + ["Lithuania (Republic of)",7.1], + ["Turkey (Republic of)",7.1], + ["United States (of America)",6.9], + ["Jordan (Hashemite Kingdom of)",6.9], + ["Cyprus (Republic of)",6.8], + ["Latvia (Republic of)",6.8], + ["Singapore (Republic of)",6.8], + ["Barbados",6.7], + ["Bermuda",6.7], + ["Mongolia",6.6], + ["Hong Kong (Special Administrative Region of China)",6.6], + ["North Macedonia (Republic of)",6.5], + ["Azerbaijan (Republic of)",6.4], + ["Belarus (Republic of)",6.4], + ["Jamaica",6.4], + ["Malta (Republic of)",6.3], + ["Israel (State of)",6.2], + ["Georgia",6.2], + ["Liechtenstein (Principality of)",6], + ["Brunei (Nation of the Abode of Peace)",5.9], + ["Malaysia",5.9], + ["Ukraine",5.9], + ["Macao (Special Administrative Region of China)",5.8], + ["Slovakia (Slovak Republic)",5.7], + ["Bosnia and Herzegovina",5.6], + ["Denmark (Kingdom of)",5.6], + ["Guyana (Co-operative Republic of)",5.4], + ["Austria (Republic of)",5.3], + ["Montenegro",5.3], + ["Serbia (Republic of)",5.2], + ["Hungary (Republic of)",5.2], + ["Cuba (Republic of)",5.2], + ["Armenia (Republic of)",5.1], + ["Czech Republic",5.1], + ["Poland (Republic of)",5.1], + ["Sweden (Kingdom of)",5], + ["Korea (Republic of)",5], + ["Germany (Federal Republic of)",5], + ["Estonia (Republic of)",5], + ["Croatia (Republic of)",4.9], + ["Dominican Republic",4.9], + ["Switzerland (Swiss Confederation)",4.8], + ["Monaco (Principality of)",4.8], + ["Japan",4.8], + ["Costa Rica (Republic of)",4.7], + ["Australia (Commonwealth of)",4.6], + ["Curaçao",4.6], + ["French Polynesia",4.5], + ["United Kingdom (of Great Britain & Northern Ireland)",4.4], + ["Ireland",4.4], + ["Greece (Hellenic Republic)",4.4], + ["Finland (Republic of)",4.3], + ["New Zealand",4.3], + ["Puerto Rico (Commonwealth of)",4.3], + ["Guatemala (Republic of)",4.2], + ["Norway (Kingdom of)",4.1], + ["Bulgaria (Republic of)",4.1], + ["Mexico (United Mexican States)",4], + ["Andorra (Principality of)",3.9], + ["Belgium (Kingdom of)",3.9], + ["Netherlands (Kingdom of the)",3.7], + ["France (French Republic)",3.5], + ["Kuwait (State of)",3.5], + ["Slovenia (Republic of)",3.5], + ["Spain (Kingdom of)",3.5], + ["Suriname (Republic of)",3.4], + ["Portugal (Portuguese Republic)",3.4], + ["Chile (Republic of)",3.3], + ["New Caledonia",3.3], + ["Panama (Republic of)",3.3], + ["Réunion",3.3], + ["Luxembourg (Grand Duchy of)",3.2], + ["Italy (Italian Republic)",3.2], + ["Isle of Man",3.2], + ["Argentina (Argentine Republic)",2.9], + ["Guadeloupe",2.8], + ["Martinique",2.8], + ["Uruguay (Oriental Republic of)",2.8], + ["Venezuela (Bolivarian Republic of)",2.6], + ["Peru (Republic of)",2.5], + ["French Guiana",2.4], + ["Qatar (State of)",1.4] + ] +} diff --git a/data/global/culture/religion/religious-importance-no.json b/data/global/culture/religion/religious-importance-no.json new file mode 100644 index 0000000..2f40800 --- /dev/null +++ b/data/global/culture/religion/religious-importance-no.json @@ -0,0 +1,168 @@ +{ + "metadata" : { + "name" : "Religious Non-Importance", + "description" : "Percentage of people who answered 'NO' to the 2009 global Gallup Poll which asked: Is religion important in your daily life?", + "units" : "%", + "year" : "2009", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","culture","religion"], + "authors" : [ + "Gallup" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Importance_of_religion_by_country" + ] + }, + "data" : [ + ["country.name","religious.importance.no"], + ["Japan",0.86], + ["Vietnam (Socialist Republic of)",0.85], + ["Estonia (Republic of)",0.84], + ["Czech Republic",0.84], + ["Sweden (Kingdom of)",0.84], + ["Austria (Republic of)",0.83], + ["New Zealand",0.82], + ["Denmark (Kingdom of)",0.8], + ["Moldova (Republic of)",0.79], + ["Norway (Kingdom of)",0.78], + ["Finland (Republic of)",0.77], + ["Switzerland (Swiss Confederation)",0.77], + ["Hong Kong (Special Administrative Region of China)",0.74], + ["Cyprus (Republic of)",0.75], + ["United Kingdom (of Great Britain & Northern Ireland)",0.75], + ["Latvia (Republic of)",0.71], + ["France (French Republic)",0.71], + ["Australia (Commonwealth of)",0.67], + ["Netherlands (Kingdom of the)",0.67], + ["Belgium (Kingdom of)",0.67], + ["Korea (Republic of)",0.67], + ["Cuba (Republic of)",0.64], + ["Bulgaria (Republic of)",0.62], + ["Russian Federation",0.66], + ["Belarus (Republic of)",0.56], + ["Azerbaijan (Republic of)",0.64], + ["Luxembourg (Grand Duchy of)",0.59], + ["Hungary (Republic of)",0.58], + ["Taiwan",0.6], + ["Germany (Federal Republic of)",0.6], + ["Uruguay (Oriental Republic of)",0.6], + ["Lithuania (Republic of)",0.6], + ["Canada",0.57], + ["Ukraine",0.54], + ["Slovenia (Republic of)",0.53], + ["Slovakia (Slovak Republic)",0.52], + ["Spain (Kingdom of)",0.51], + ["Albania (Republic of)",0.5], + ["Poland (Republic of)",0.5], + ["Israel (State of)",0.49], + ["Kazakhstan (Republic of)",0.48], + ["Serbia (Republic of)",0.44], + ["Ireland",0.46], + ["Uzbekistan (Republic of)",0.45], + ["Chile (Republic of)",0.4], + ["Belize",0.33], + ["Turkey (Republic of)",0.36], + ["Argentina (Argentine Republic)",0.34], + ["United States (of America)",0.33], + ["Nicaragua (Republic of)",0.3], + ["Croatia (Republic of)",0.3], + ["Singapore (Republic of)",0.3], + ["Jamaica",0.3], + ["Montenegro",0.3], + ["Greece (Hellenic Republic)",0.29], + ["Portugal (Portuguese Republic)",0.28], + ["Italy (Italian Republic)",0.28], + ["Kyrgyz Republic",0.25], + ["Mexico (United Mexican States)",0.21], + ["Bosnia and Herzegovina",0.25], + ["United Arab Emirates",0.24], + ["North Macedonia (Republic of)",0.22], + ["Botswana (Republic of)",0.23], + ["Nigeria (Federal Republic of)",0.23], + ["Philippines (Republic of the)",0.23], + ["El Salvador (Republic of)",0.23], + ["Iran (Islamic Republic of)",0.22], + ["Venezuela (Bolivarian Republic of)",0.21], + ["Costa Rica (Republic of)",0.2], + ["Armenia (Republic of)",0.19], + ["Turkmenistan",0.18], + ["Togo (Togolese Republic)",0.13], + ["Georgia",0.16], + ["Ecuador (Republic of)",0.17], + ["Colombia (Republic of)",0.16], + ["Peru (Republic of)",0.14], + ["Romania",0.12], + ["South Africa (Republic of)",0.15], + ["Brazil (Federative Republic of)",0.15], + ["Tajikistan (Republic of)",0.12], + ["Haiti (Republic of)",0.12], + ["Mozambique (Republic of)",0.14], + ["Malta (Republic of)",0.14], + ["Dominican Republic",0.13], + ["Lebanon (Lebanese Republic)",0.12], + ["Zimbabwe (Republic of)",0.12], + ["Côte d'Ivoire (Republic of)",0.12], + ["Burkina Faso",0.12], + ["Panama (Republic of)",0.11], + ["Angola (Republic of)",0.11], + ["Guatemala (Republic of)",0.09], + ["Tanzania (United Republic of)",0.11], + ["Bolivia (Plurinational State of)",0.1], + ["Syrian Arab Republic",0.11], + ["Iraq (Republic of)",0.11], + ["India (Republic of)",0.1], + ["Kuwait (State of)",0.09], + ["Namibia (Republic of)",0.09], + ["Trinidad and Tobago (Republic of)",0.08], + ["Paraguay (Republic of)",0.08], + ["Pakistan (Islamic Republic of)",0.08], + ["Palestine (State of)",0.07], + ["Sudan (Republic of the)",0.07], + ["Uganda (Republic of)",0.07], + ["Madagascar (Republic of)",0.07], + ["Benin (Republic of)",0.07], + ["Nepal (Federal Democratic Republic of)",0.07], + ["Tunisia (Republic of)",0.07], + ["Qatar (State of)",0.07], + ["Central African Republic",0.06], + ["Kenya (Republic of)",0.06], + ["Liberia (Republic of)",0.06], + ["Congo (Democratic Republic of the)",0.06], + ["Bahrain (Kingdom of)",0.06], + ["Ghana (Republic of)",0.05], + ["Zambia (Republic of)",0.05], + ["Algeria (People's Democratic Republic of)",0.04], + ["Chad (Republic of)",0.05], + ["Rwanda (Republic of)",0.05], + ["Congo (Republic of the)",0.05], + ["Mali (Republic of)",0.05], + ["Burundi (Republic of)",0.04], + ["Djibouti (Republic of)",0.04], + ["Egypt (Arab Republic of)",0.04], + ["Cameroon (Republic of)",0.04], + ["Malaysia",0.03], + ["Cambodia (Kingdom of)",0.03], + ["Bangladesh (People's Republic of)",0.04], + ["Senegal (Republic of)",0.04], + ["Oman (Sultanate of)",0.04], + ["Jordan (Hashemite Kingdom of)",0.04], + ["Saudi Arabia (Kingdom of)",0.04], + ["Myanmar (Union of)",0.04], + ["Lao (People's Democratic Republic)",0.04], + ["Guinea (Republic of)",0.04], + ["Morocco (Kingdom of)",0.04], + ["Comoros (Union of the)",0.04], + ["Indonesia (Republic of)",0.04], + ["Afghanistan (Islamic Republic of)",0.03], + ["Malawi (Republic of)",0.03], + ["Mauritania (Islamic Republic of)",0.03], + ["Sri Lanka (Democratic Socialist Republic of)",0.03], + ["Thailand (Kingdom of)",0.02], + ["Somalia (Federal Republic of)",0.02], + ["Yemen (Republic of)",0.02], + ["Niger (Republic of)",0.02] + ] +} diff --git a/data/global/culture/religion/religious-importance-yes.json b/data/global/culture/religion/religious-importance-yes.json new file mode 100644 index 0000000..3f9bebc --- /dev/null +++ b/data/global/culture/religion/religious-importance-yes.json @@ -0,0 +1,168 @@ +{ + "metadata" : { + "name" : "Religious Importance", + "description" : "Percentage of people who answered 'YES' to the 2009 global Gallup Poll which asked: Is religion important in your daily life?", + "units" : "%", + "year" : "2009", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","demographics","culture","religion"], + "authors" : [ + "Gallup" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Importance_of_religion_by_country" + ] + }, + "data" : [ + ["country.name","religious.importance.yes"], + ["Japan",0.14], + ["Vietnam (Socialist Republic of)",0.15], + ["Estonia (Republic of)",0.16], + ["Czech Republic",0.16], + ["Sweden (Kingdom of)",0.16], + ["Austria (Republic of)",0.17], + ["New Zealand",0.18], + ["Denmark (Kingdom of)",0.19], + ["Moldova (Republic of)",0.21], + ["Norway (Kingdom of)",0.22], + ["Finland (Republic of)",0.23], + ["Switzerland (Swiss Confederation)",0.23], + ["Hong Kong (Special Administrative Region of China)",0.24], + ["Cyprus (Republic of)",0.25], + ["United Kingdom (of Great Britain & Northern Ireland)",0.25], + ["Latvia (Republic of)",0.29], + ["France (French Republic)",0.3], + ["Australia (Commonwealth of)",0.33], + ["Netherlands (Kingdom of the)",0.33], + ["Belgium (Kingdom of)",0.33], + ["Korea (Republic of)",0.33], + ["Cuba (Republic of)",0.34], + ["Bulgaria (Republic of)",0.34], + ["Russian Federation",0.34], + ["Belarus (Republic of)",0.34], + ["Azerbaijan (Republic of)",0.36], + ["Luxembourg (Grand Duchy of)",0.39], + ["Hungary (Republic of)",0.39], + ["Taiwan",0.4], + ["Germany (Federal Republic of)",0.4], + ["Uruguay (Oriental Republic of)",0.4], + ["Lithuania (Republic of)",0.4], + ["Canada",0.42], + ["Ukraine",0.46], + ["Slovenia (Republic of)",0.47], + ["Slovakia (Slovak Republic)",0.47], + ["Spain (Kingdom of)",0.49], + ["Albania (Republic of)",0.5], + ["Poland (Republic of)",0.5], + ["Israel (State of)",0.51], + ["Kazakhstan (Republic of)",0.53], + ["Serbia (Republic of)",0.54], + ["Ireland",0.54], + ["Uzbekistan (Republic of)",0.55], + ["Chile (Republic of)",0.6], + ["Belize",0.62], + ["Turkey (Republic of)",0.64], + ["Argentina (Argentine Republic)",0.65], + ["United States (of America)",0.67], + ["Nicaragua (Republic of)",0.7], + ["Croatia (Republic of)",0.7], + ["Singapore (Republic of)",0.7], + ["Jamaica",0.7], + ["Montenegro",0.71], + ["Greece (Hellenic Republic)",0.71], + ["Portugal (Portuguese Republic)",0.72], + ["Italy (Italian Republic)",0.72], + ["Kyrgyz Republic",0.72], + ["Mexico (United Mexican States)",0.73], + ["Bosnia and Herzegovina",0.75], + ["United Arab Emirates",0.76], + ["North Macedonia (Republic of)",0.76], + ["Botswana (Republic of)",0.77], + ["Nigeria (Federal Republic of)",0.77], + ["Philippines (Republic of the)",0.77], + ["El Salvador (Republic of)",0.77], + ["Iran (Islamic Republic of)",0.78], + ["Venezuela (Bolivarian Republic of)",0.79], + ["Costa Rica (Republic of)",0.79], + ["Armenia (Republic of)",0.79], + ["Turkmenistan",0.8], + ["Togo (Togolese Republic)",0.8], + ["Georgia",0.81], + ["Ecuador (Republic of)",0.82], + ["Colombia (Republic of)",0.83], + ["Peru (Republic of)",0.84], + ["Romania",0.84], + ["South Africa (Republic of)",0.85], + ["Brazil (Federative Republic of)",0.85], + ["Tajikistan (Republic of)",0.85], + ["Haiti (Republic of)",0.85], + ["Mozambique (Republic of)",0.86], + ["Malta (Republic of)",0.86], + ["Dominican Republic",0.87], + ["Lebanon (Lebanese Republic)",0.87], + ["Zimbabwe (Republic of)",0.88], + ["Côte d'Ivoire (Republic of)",0.88], + ["Burkina Faso",0.88], + ["Panama (Republic of)",0.88], + ["Angola (Republic of)",0.88], + ["Guatemala (Republic of)",0.88], + ["Tanzania (United Republic of)",0.89], + ["Bolivia (Plurinational State of)",0.89], + ["Syrian Arab Republic",0.89], + ["Iraq (Republic of)",0.89], + ["India (Republic of)",0.9], + ["Kuwait (State of)",0.91], + ["Namibia (Republic of)",0.92], + ["Trinidad and Tobago (Republic of)",0.92], + ["Paraguay (Republic of)",0.92], + ["Pakistan (Islamic Republic of)",0.92], + ["Palestine (State of)",0.93], + ["Sudan (Republic of the)",0.93], + ["Uganda (Republic of)",0.93], + ["Madagascar (Republic of)",0.93], + ["Benin (Republic of)",0.93], + ["Nepal (Federal Democratic Republic of)",0.93], + ["Tunisia (Republic of)",0.93], + ["Qatar (State of)",0.93], + ["Central African Republic",0.94], + ["Kenya (Republic of)",0.94], + ["Liberia (Republic of)",0.94], + ["Congo (Democratic Republic of the)",0.94], + ["Bahrain (Kingdom of)",0.94], + ["Ghana (Republic of)",0.95], + ["Zambia (Republic of)",0.95], + ["Algeria (People's Democratic Republic of)",0.95], + ["Chad (Republic of)",0.95], + ["Rwanda (Republic of)",0.95], + ["Congo (Republic of the)",0.95], + ["Mali (Republic of)",0.95], + ["Burundi (Republic of)",0.96], + ["Djibouti (Republic of)",0.96], + ["Egypt (Arab Republic of)",0.96], + ["Cameroon (Republic of)",0.96], + ["Malaysia",0.96], + ["Cambodia (Kingdom of)",0.96], + ["Bangladesh (People's Republic of)",0.96], + ["Senegal (Republic of)",0.96], + ["Oman (Sultanate of)",0.96], + ["Jordan (Hashemite Kingdom of)",0.96], + ["Saudi Arabia (Kingdom of)",0.96], + ["Myanmar (Union of)",0.96], + ["Lao (People's Democratic Republic)",0.96], + ["Guinea (Republic of)",0.96], + ["Morocco (Kingdom of)",0.96], + ["Comoros (Union of the)",0.96], + ["Indonesia (Republic of)",0.96], + ["Afghanistan (Islamic Republic of)",0.97], + ["Malawi (Republic of)",0.97], + ["Mauritania (Islamic Republic of)",0.97], + ["Sri Lanka (Democratic Socialist Republic of)",0.97], + ["Thailand (Kingdom of)",0.98], + ["Somalia (Federal Republic of)",0.98], + ["Yemen (Republic of)",0.98], + ["Niger (Republic of)",0.98] + ] +} diff --git a/data/global/demographics/abortion/abortion-rate.json b/data/global/demographics/abortion/abortion-rate.json new file mode 100644 index 0000000..b096a59 --- /dev/null +++ b/data/global/demographics/abortion/abortion-rate.json @@ -0,0 +1,175 @@ +{ + "metadata" : { + "name" : "Abortion Rate", + "description" : "Abortions performed per 1000 women.", + "units" : "abortions/1000 women", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","health","births","abortion"], + "authors" : [ + "Various government sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_abortion_statistics" + ] + }, + "data" : [ + ["country.name","abortion.rate"], + ["Georgia",80], + ["Greenland",79.7], + ["Vietnam (Socialist Republic of)",64], + ["Madagascar (Republic of)",60], + ["Guinea-Bissau (Republic of)",59], + ["Cuba (Republic of)",55], + ["China (People's Republic of)",49], + ["Cape Verde (Republic of)",49], + ["India (Republic of)",48], + ["Trinidad and Tobago (Republic of)",48], + ["Cambodia (Kingdom of)",45], + ["Sierra Leone (Republic of)",45], + ["Barbados",45], + ["Congo (Republic of the)",44], + ["Pakistan (Islamic Republic of)",43], + ["Kenya (Republic of)",43], + ["Uganda (Republic of)",43], + ["Samoa (Independent State of)",43], + ["Peru (Republic of)",42], + ["Liberia (Republic of)",42], + ["Maldives (Republic of)",42], + ["Nepal (Federal Democratic Republic of)",41], + ["Gabon (Gabonese Republic)",41], + ["Mozambique (Republic of)",40], + ["Vanuatu (Republic of)",39], + ["São Tomé and Príncipe (Democratic Republic of)",39], + ["Tanzania (United Republic of)",38], + ["Haiti (Republic of)",38], + ["Bolivia (Plurinational State of)",38], + ["Jamaica",38], + ["Ghana (Republic of)",37], + ["Dominican Republic",37], + ["Saint Lucia",37], + ["Philippines (Republic of the)",36], + ["Chile (Republic of)",36], + ["Papua New Guinea (Independent State of)",36], + ["Guyana (Co-operative Republic of)",36], + ["Bangladesh (People's Republic of)",35], + ["Côte d'Ivoire (Republic of)",35], + ["Zambia (Republic of)",35], + ["Cameroon (Republic of)",34], + ["Lao (People's Democratic Republic)",34], + ["Paraguay (Republic of)",34], + ["Timor-Leste (Democratic Republic of)",34], + ["Nigeria (Federal Republic of)",33], + ["Congo (Democratic Republic of the)",33], + ["Argentina (Argentine Republic)",33], + ["Angola (Republic of)",33], + ["Brazil (Federative Republic of)",32], + ["Benin (Republic of)",32], + ["Togo (Togolese Republic)",32], + ["Bhutan (Kingdom of)",32], + ["Solomon Islands",32], + ["Belize",32], + ["Mexico (United Mexican States)",31], + ["Malawi (Republic of)",31], + ["Kyrgyz Republic",31], + ["Puerto Rico (Commonwealth of)",31], + ["Botswana (Republic of)",31], + ["Comoros (Union of the)",31], + ["Suriname (Republic of)",31], + ["South Africa (Republic of)",30], + ["Burkina Faso",30], + ["Panama (Republic of)",30], + ["Somalia (Federal Republic of)",29], + ["Namibia (Republic of)",29], + ["Eswatini (Kingdom of)",29], + ["French Guiana",29], + ["Sri Lanka (Democratic Socialist Republic of)",28], + ["Ecuador (Republic of)",28], + ["Rwanda (Republic of)",28], + ["Colombia (Republic of)",27], + ["Central African Republic",27], + ["Myanmar (Union of)",26], + ["Guinea (Republic of)",26], + ["Burundi (Republic of)",26], + ["Tajikistan (Republic of)",26], + ["Indonesia (Republic of)",25], + ["Thailand (Kingdom of)",25], + ["South Sudan (Republic of)",25], + ["Tonga (Kingdom of)",25], + ["Ethiopia (Federal Democratic Republic of)",24], + ["El Salvador (Republic of)",24], + ["Uzbekistan (Republic of)",23], + ["Mali (Republic of)",23], + ["Lesotho (Kingdom of)",23], + ["Egypt (Arab Republic of)",23], + ["Kazakhstan (Republic of)",21.8], + ["Korea (Republic of)",21], + ["Honduras (Republic of)",21], + ["Costa Rica (Republic of)",21], + ["Mongolia",21], + ["Eritrea (State of)",21], + ["Djibouti (Republic of)",21], + ["Guatemala (Republic of)",19], + ["Turkmenistan",19], + ["United Kingdom (of Great Britain & Northern Ireland)",18.6], + ["Zimbabwe (Republic of)",18], + ["Moldova (Republic of)",18], + ["Chad (Republic of)",17], + ["Sweden (Kingdom of)",17], + ["Mauritania (Islamic Republic of)",17], + ["Australia (Commonwealth of)",16], + ["Gambia (Republic of the)",16], + ["France (French Republic)",15.5], + ["Niger (Republic of)",15], + ["Senegal (Republic of)",15], + ["Greece (Hellenic Republic)",15], + ["Nicaragua (Republic of)",15], + ["United States (of America)",14.4], + ["North Macedonia (Republic of)",14], + ["Russian Federation",13.1], + ["Iceland (Republic of)",13], + ["Armenia (Republic of)",12.8], + ["Belarus (Republic of)",12.5], + ["Canada",12], + ["New Zealand",12], + ["Denmark (Kingdom of)",12], + ["Bulgaria (Republic of)",11.9], + ["Azerbaijan (Republic of)",11.8], + ["Norway (Kingdom of)",11], + ["Uruguay (Oriental Republic of)",11], + ["Bosnia and Herzegovina",11], + ["Iran (Islamic Republic of)",10.7], + ["Estonia (Republic of)",10.3], + ["Poland (Republic of)",10], + ["Hungary (Republic of)",9.8], + ["Israel (State of)",8.4], + ["Belgium (Kingdom of)",8], + ["Spain (Kingdom of)",7.5], + ["Netherlands (Kingdom of the)",7], + ["Romania",6.7], + ["Finland (Republic of)",6.5], + ["Czech Republic",6.4], + ["Latvia (Republic of)",6.4], + ["Slovenia (Republic of)",6.1], + ["Japan",6], + ["Ukraine",6], + ["Montenegro",6], + ["Portugal (Portuguese Republic)",5.6], + ["Germany (Federal Republic of)",5.4], + ["Switzerland (Swiss Confederation)",5.1], + ["Singapore (Republic of)",5], + ["Italy (Italian Republic)",4.9], + ["Serbia (Republic of)",4.8], + ["Slovakia (Slovak Republic)",4.4], + ["Luxembourg (Grand Duchy of)",4.4], + ["Lithuania (Republic of)",4.3], + ["Turkey (Republic of)",2.7], + ["Croatia (Republic of)",2.7], + ["Austria (Republic of)",1.3], + ["Albania (Republic of)",1.2], + ["Algeria (People's Democratic Republic of)",0.4] + ] +} diff --git a/data/global/demographics/abortion/abortion-total.json b/data/global/demographics/abortion/abortion-total.json new file mode 100644 index 0000000..f12c93f --- /dev/null +++ b/data/global/demographics/abortion/abortion-total.json @@ -0,0 +1,175 @@ +{ + "metadata" : { + "name" : "Total Abortions Performed", + "description" : "Total abortions performed per year.", + "units" : "abortions", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","health","births","abortion"], + "authors" : [ + "Various government sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_abortion_statistics" + ] + }, + "data" : [ + ["country.name","abortion.total"], + ["Georgia",74000], + ["Greenland",902], + ["Vietnam (Socialist Republic of)",1630000], + ["Madagascar (Republic of)",376000], + ["Guinea-Bissau (Republic of)",26600], + ["Cuba (Republic of)",147000], + ["China (People's Republic of)",3540000], + ["Cape Verde (Republic of)",7100], + ["India (Republic of)",16600000], + ["Trinidad and Tobago (Republic of)",17100], + ["Cambodia (Kingdom of)",195000], + ["Sierra Leone (Republic of)",82600], + ["Barbados",3000], + ["Congo (Republic of the)",54700], + ["Pakistan (Islamic Republic of)",2240000], + ["Kenya (Republic of)",551000], + ["Uganda (Republic of)",418000], + ["Samoa (Independent State of)",1800], + ["Peru (Republic of)",353000], + ["Liberia (Republic of)",47600], + ["Maldives (Republic of)",4700], + ["Nepal (Federal Democratic Republic of)",348000], + ["Gabon (Gabonese Republic)",21100], + ["Mozambique (Republic of)",277000], + ["Vanuatu (Republic of)",2800], + ["São Tomé and Príncipe (Democratic Republic of)",1900], + ["Tanzania (United Republic of)",482000], + ["Haiti (Republic of)",111000], + ["Bolivia (Plurinational State of)",108000], + ["Jamaica",29800], + ["Ghana (Republic of)",266000], + ["Dominican Republic",101000], + ["Saint Lucia",1900], + ["Philippines (Republic of the)",973000], + ["Chile (Republic of)",170000], + ["Papua New Guinea (Independent State of)",77200], + ["Guyana (Co-operative Republic of)",7300], + ["Bangladesh (People's Republic of)",1580000], + ["Côte d'Ivoire (Republic of)",207000], + ["Zambia (Republic of)",140000], + ["Cameroon (Republic of)",201000], + ["Lao (People's Democratic Republic)",64100], + ["Paraguay (Republic of)",60900], + ["Timor-Leste (Democratic Republic of)",10100], + ["Nigeria (Federal Republic of)",1430000], + ["Congo (Democratic Republic of the)",593000], + ["Argentina (Argentine Republic)",368000], + ["Angola (Republic of)",229000], + ["Brazil (Federative Republic of)",1830000], + ["Benin (Republic of)",84300], + ["Togo (Togolese Republic)",60300], + ["Bhutan (Kingdom of)",6400], + ["Solomon Islands",4900], + ["Belize",3300], + ["Mexico (United Mexican States)",1040000], + ["Malawi (Republic of)",134000], + ["Kyrgyz Republic",49500], + ["Puerto Rico (Commonwealth of)",23100], + ["Botswana (Republic of)",18600], + ["Comoros (Union of the)",6100], + ["Suriname (Republic of)",4500], + ["South Africa (Republic of)",461000], + ["Burkina Faso",136000], + ["Panama (Republic of)",31200], + ["Somalia (Federal Republic of)",93200], + ["Namibia (Republic of)",18600], + ["Eswatini (Kingdom of)",8800], + ["French Guiana",2100], + ["Sri Lanka (Democratic Socialist Republic of)",149000], + ["Ecuador (Republic of)",123000], + ["Rwanda (Republic of)",84300], + ["Colombia (Republic of)",360000], + ["Central African Republic",28500], + ["Myanmar (Union of)",387000], + ["Guinea (Republic of)",77400], + ["Burundi (Republic of)",65000], + ["Tajikistan (Republic of)",58100], + ["Indonesia (Republic of)",1770000], + ["Thailand (Kingdom of)",437000], + ["South Sudan (Republic of)",63600], + ["Tonga (Kingdom of)",620], + ["Ethiopia (Federal Democratic Republic of)",632000], + ["El Salvador (Republic of)",43300], + ["Uzbekistan (Republic of)",198000], + ["Mali (Republic of)",92600], + ["Lesotho (Kingdom of)",12800], + ["Egypt (Arab Republic of)",1050000], + ["Kazakhstan (Republic of)",77178], + ["Korea (Republic of)",260000], + ["Honduras (Republic of)",53000], + ["Costa Rica (Republic of)",27500], + ["Mongolia",17400], + ["Eritrea (State of)",16500], + ["Djibouti (Republic of)",5100], + ["Guatemala (Republic of)",85400], + ["Turkmenistan",28900], + ["United Kingdom (of Great Britain & Northern Ireland)",214256], + ["Zimbabwe (Republic of)",67300], + ["Moldova (Republic of)",19400], + ["Chad (Republic of)",58400], + ["Sweden (Kingdom of)",37300], + ["Mauritania (Islamic Republic of)",17800], + ["Australia (Commonwealth of)",93800], + ["Gambia (Republic of the)",8800], + ["France (French Republic)",201000], + ["Niger (Republic of)",69000], + ["Senegal (Republic of)",57900], + ["Greece (Hellenic Republic)",34600], + ["Nicaragua (Republic of)",28600], + ["United States (of America)",2000000], + ["North Macedonia (Republic of)",7300], + ["Russian Federation",553500], + ["Iceland (Republic of)",990], + ["Armenia (Republic of)",10718], + ["Belarus (Republic of)",18600], + ["Canada",97500], + ["New Zealand",13100], + ["Denmark (Kingdom of)",14600], + ["Bulgaria (Republic of)",19328], + ["Azerbaijan (Republic of)",34712], + ["Norway (Kingdom of)",13100], + ["Uruguay (Oriental Republic of)",9500], + ["Bosnia and Herzegovina",8500], + ["Iran (Islamic Republic of)",450000], + ["Estonia (Republic of)",3741], + ["Poland (Republic of)",93000], + ["Hungary (Republic of)",23901], + ["Israel (State of)",17582], + ["Belgium (Kingdom of)",19500], + ["Spain (Kingdom of)",88269], + ["Netherlands (Kingdom of the)",26500], + ["Romania",31889], + ["Finland (Republic of)",8322], + ["Czech Republic",16886], + ["Latvia (Republic of)",2848], + ["Slovenia (Republic of)",2945], + ["Japan",166000], + ["Ukraine",64893], + ["Montenegro",860], + ["Portugal (Portuguese Republic)",14075], + ["Germany (Federal Republic of)",99948], + ["Switzerland (Swiss Confederation)",10775], + ["Singapore (Republic of)",7400], + ["Italy (Italian Republic)",65757], + ["Serbia (Republic of)",8005], + ["Slovakia (Slovak Republic)",6180], + ["Luxembourg (Grand Duchy of)",460], + ["Lithuania (Republic of)",2794], + ["Turkey (Republic of)",43000], + ["Croatia (Republic of)",2594], + ["Austria (Republic of)",1800], + ["Albania (Republic of)",873], + ["Algeria (People's Democratic Republic of)",8000] + ] +} diff --git a/data/global/demographics/emigration-population.json b/data/global/demographics/emigration-population.json new file mode 100644 index 0000000..326c0f6 --- /dev/null +++ b/data/global/demographics/emigration-population.json @@ -0,0 +1,254 @@ +{ + "metadata" : { + "name" : "Emigration Population", + "description" : "Emigration Population by country of origin.", + "units" : "people", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","demographics","migration","population"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_immigrant_population" + ] + }, + "data" : [ + ["country.name","emigrant.population"], + ["Afghanistan (Islamic Republic of)",5120756], + ["Albania (Republic of)",1207032], + ["Algeria (People's Democratic Republic of)",1944784], + ["American Samoa",1817], + ["Andorra (Principality of)",9114], + ["Angola (Republic of)",661590], + ["Anguilla",2707], + ["Antigua and Barbuda",55089], + ["Argentina (Argentine Republic)",1013414], + ["Armenia (Republic of)",964848], + ["Aruba",19640], + ["Australia (Commonwealth of)",577255], + ["Austria (Republic of)",575950], + ["Azerbaijan (Republic of)",1155852], + ["Bahamas (Commonwealth of the)",46467], + ["Bahrain (Kingdom of)",60153], + ["Bangladesh (People's Republic of)",7835152], + ["Barbados",112925], + ["Belarus (Republic of)",1480794], + ["Belgium (Kingdom of)",581740], + ["Belize",68144], + ["Benin (Republic of)",666357], + ["Bermuda",18049], + ["Bhutan (Kingdom of)",49216], + ["Bolivia (Plurinational State of)",878211], + ["Bonaire (Sint Eustatius and Saba)",12764], + ["Bosnia and Herzegovina",1653056], + ["Botswana (Republic of)",86501], + ["Brazil (Federative Republic of)",1745339], + ["British Virgin Islands",5417], + ["Brunei (Nation of the Abode of Peace)",46977], + ["Bulgaria (Republic of)",1541860], + ["Burkina Faso",1581083], + ["Burundi (Republic of)",623999], + ["Cape Verde (Republic of)",186372], + ["Cambodia (Kingdom of)",1097884], + ["Cameroon (Republic of)",383029], + ["Canada",1323087], + ["Cayman Islands",1973], + ["Central African Republic",767884], + ["Chad (Republic of)",206400], + ["Jersey (Bailiwick of)",22545], + ["Chile (Republic of)",650151], + ["China (People's Republic of)",10732281], + ["Hong Kong (Special Administrative Region of China)",1110358], + ["Macao (Special Administrative Region of China)",161930], + ["Colombia (Republic of)",2869032], + ["Comoros (Union of the)",120297], + ["Congo (Republic of the)",239397], + ["Cook Islands",22488], + ["Costa Rica (Republic of)",150400], + ["Côte d'Ivoire (Republic of)",1114003], + ["Croatia (Republic of)",990012], + ["Cuba (Republic of)",1654684], + ["Curaçao",123132], + ["Cyprus (Republic of)",214648], + ["Czech Republic",911388], + ["Korea (Democratic People's Republic of)",113118], + ["Congo (Democratic Republic of the)",1684615], + ["Denmark (Kingdom of)",255616], + ["Djibouti (Republic of)",18668], + ["Dominica (Commonwealth of)",78634], + ["Dominican Republic",1558668], + ["Ecuador (Republic of)",1183685], + ["Egypt (Arab Republic of)",3547626], + ["El Salvador (Republic of)",1600739], + ["Equatorial Guinea (Republic of)",125670], + ["Eritrea (State of)",751481], + ["Estonia (Republic of)",208257], + ["Eswatini (Kingdom of)",108188], + ["Ethiopia (Federal Democratic Republic of)",871747], + ["Falkland Islands (Malvinas)",1623], + ["Faroe Islands",13838], + ["Fiji (Republic of)",222633], + ["Finland (Republic of)",290006], + ["France (French Republic)",2296534], + ["French Guiana",4555], + ["French Polynesia",1982], + ["Gabon (Gabonese Republic)",46684], + ["Gambia (Republic of the)",118483], + ["Georgia",852816], + ["Germany (Federal Republic of)",4014203], + ["Ghana (Republic of)",970625], + ["Gibraltar",14320], + ["Greece (Hellenic Republic)",1039257], + ["Greenland",18684], + ["Grenada",75784], + ["Guadeloupe",11856], + ["Guam",2197], + ["Guatemala (Republic of)",1205644], + ["Guinea (Republic of)",530963], + ["Guinea-Bissau (Republic of)",103587], + ["Guyana (Co-operative Republic of)",520196], + ["Haiti (Republic of)",1585681], + ["Holy See (Vatican City State)",217], + ["Honduras (Republic of)",800707], + ["Hungary (Republic of)",632126], + ["Iceland (Republic of)",42186], + ["India (Republic of)",17510931], + ["Indonesia (Republic of)",4532992], + ["Iran (Islamic Republic of)",4037258], + ["Iraq (Republic of)",2033522], + ["Ireland",816797], + ["Isle of Man",12809], + ["Israel (State of)",369935], + ["Italy (Italian Republic)",3077777], + ["Jamaica",1111021], + ["Japan",838852], + ["Jordan (Hashemite Kingdom of)",784377], + ["Kazakhstan (Republic of)",4005587], + ["Kenya (Republic of)",525437], + ["Kiribati (Republic of)",4370], + ["Kuwait (State of)",205382], + ["Kyrgyz Republic",754969], + ["Lao (People's Democratic Republic)",1347034], + ["Latvia (Republic of)",332220], + ["Lebanon (Lebanese Republic)",844158], + ["Lesotho (Kingdom of)",341580], + ["Liberia (Republic of)",219338], + ["Libya (State of)",180586], + ["Liechtenstein (Principality of)",3713], + ["Lithuania (Republic of)",610223], + ["Luxembourg (Grand Duchy of)",75470], + ["Madagascar (Republic of)",184762], + ["Malawi (Republic of)",324541], + ["Malaysia",1689222], + ["Maldives (Republic of)",3053], + ["Mali (Republic of)",1264700], + ["Malta (Republic of)",111137], + ["Marshall Islands (Republic of the)",8205], + ["Martinique",13919], + ["Mauritania (Islamic Republic of)",128506], + ["Mauritius (Republic of)",188344], + ["Mayotte (Department of)",6617], + ["Mexico (United Mexican States)",11796178], + ["Micronesia (Federated States of)",21819], + ["Monaco (Principality of)",31452], + ["Mongolia",73488], + ["Montenegro",153009], + ["Montserrat",22838], + ["Morocco (Kingdom of)",3136069], + ["Mozambique (Republic of)",1013416], + ["Myanmar (Union of)",3699472], + ["Namibia (Republic of)",195515], + ["Nauru (Republic of)",2421], + ["Nepal (Federal Democratic Republic of)",2285364], + ["Netherlands (Kingdom of the)",980753], + ["New Caledonia",5098], + ["New Zealand",777303], + ["Nicaragua (Republic of)",682865], + ["Niger (Republic of)",401653], + ["Nigeria (Federal Republic of)",1438331], + ["Niue",5593], + ["North Macedonia (Republic of)",658264], + ["Northern Mariana Islands (Commonwealth of the)",2764], + ["Norway (Kingdom of)",202336], + ["Oman (Sultanate of)",24939], + ["Pakistan (Islamic Republic of)",6303286], + ["Palau (Republic of)",2650], + ["Panama (Republic of)",161107], + ["Papua New Guinea (Independent State of)",219126], + ["Paraguay (Republic of)",871638], + ["Peru (Republic of)",1512920], + ["Philippines (Republic of the)",5377337], + ["Poland (Republic of)",4446985], + ["Portugal (Portuguese Republic)",2631559], + ["Puerto Rico (Commonwealth of)",5807347], + ["Qatar (State of)",171632], + ["Korea (Republic of)",2176580], + ["Moldova (Republic of)",1013417], + ["Réunion",133769], + ["Romania",3572794], + ["Russian Federation",10491715], + ["Rwanda (Republic of)",588544], + ["Saint Helena",6596], + ["Saint Kitts and Nevis (Federation of)",124941], + ["Saint Lucia",63605], + ["Saint Pierre and Miquelon",2356], + ["Saint Vincent and the Grenadines",60655], + ["Samoa (Independent State of)",124403], + ["San Marino (Republic of)",2425], + ["São Tomé and Príncipe (Democratic Republic of)",37013], + ["Saudi Arabia (Kingdom of)",296254], + ["Senegal (Republic of)",642654], + ["Serbia (Republic of)",950485], + ["Seychelles (Republic of)",36788], + ["Sierra Leone (Republic of)",187102], + ["Singapore (Republic of)",340751], + ["Sint Maarten (Netherlands)",29209], + ["Slovakia (Slovak Republic)",345683], + ["Slovenia (Republic of)",147593], + ["Solomon Islands",4234], + ["Somalia (Federal Republic of)",2054377], + ["South Africa (Republic of)",824601], + ["South Sudan (Republic of)",2608218], + ["Spain (Kingdom of)",1444942], + ["Sri Lanka (Democratic Socialist Republic of)",1775768], + ["Palestine (State of)",3890650], + ["Sudan (Republic of the)",2040613], + ["Suriname (Republic of)",423517], + ["Sweden (Kingdom of)",353825], + ["Switzerland (Swiss Confederation)",679796], + ["Syrian Arab Republic",8225499], + ["Tajikistan (Republic of)",597959], + ["Thailand (Kingdom of)",1020119], + ["Timor-Leste (Democratic Republic of)",39202], + ["Togo (Togolese Republic)",543277], + ["Tokelau",2242], + ["Tonga (Kingdom of)",74433], + ["Trinidad and Tobago (Republic of)",334304], + ["Tunisia (Republic of)",813213], + ["Turkey (Republic of)",3493071], + ["Turkmenistan",260832], + ["Turks and Caicos Islands",31033], + ["Tuvalu",3276], + ["Uganda (Republic of)",734951], + ["Ukraine",5901067], + ["United Arab Emirates",154404], + ["United Kingdom (of Great Britain & Northern Ireland)",4274998], + ["Tanzania (United Republic of)",323173], + ["United States (of America)",3167072], + ["United States Virgin Islands",25863], + ["Uruguay (Oriental Republic of)",633439], + ["Uzbekistan (Republic of)",1979523], + ["Vanuatu (Republic of)",7346], + ["Venezuela (Bolivarian Republic of)",2519780], + ["Vietnam (Socialist Republic of)",2683954], + ["Wallis and Futuna",11820], + ["Sahrawi Arab Democratic Republic",195572], + ["Yemen (Republic of)",1267610], + ["Zambia (Republic of)",493087], + ["Zimbabwe (Republic of)",933654] + ] +} diff --git a/data/global/demographics/fertility-rate.json b/data/global/demographics/fertility-rate.json new file mode 100644 index 0000000..d51f2e3 --- /dev/null +++ b/data/global/demographics/fertility-rate.json @@ -0,0 +1,245 @@ +{ + "metadata" : { + "name" : "Total Fertility Rate", + "description" : "Total Fertility Rate (TFR) measured as the expected number of children born per woman in her child-bearing years.", + "units" : "children/woman", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","demographics","fertility","births"], + "authors" : [ + "United Nations (UN) Population Fund" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependencies_by_total_fertility_rate" + ] + }, + "data" : [ + ["country.name","fertility.rate"], + ["Niger (Republic of)",6.6], + ["Somalia (Federal Republic of)",5.7], + ["Congo (Democratic Republic of the)",5.5], + ["Mali (Republic of)",5.5], + ["Chad (Republic of)",5.4], + ["Angola (Republic of)",5.2], + ["Burundi (Republic of)",5.1], + ["Nigeria (Federal Republic of)",5.1], + ["Gambia (Republic of the)",4.9], + ["Burkina Faso",4.9], + ["Tanzania (United Republic of)",4.7], + ["Mozambique (Republic of)",4.6], + ["Benin (Republic of)",4.6], + ["Uganda (Republic of)",4.5], + ["Central African Republic",4.4], + ["Guinea (Republic of)",4.4], + ["South Sudan (Republic of)",4.4], + ["Côte d'Ivoire (Republic of)",4.4], + ["Zambia (Republic of)",4.4], + ["Senegal (Republic of)",4.4], + ["Mauritania (Islamic Republic of)",4.3], + ["Cameroon (Republic of)",4.3], + ["Equatorial Guinea (Republic of)",4.2], + ["Guinea-Bissau (Republic of)",4.2], + ["Congo (Republic of the)",4.2], + ["Solomon Islands",4.2], + ["Sudan (Republic of the)",4.2], + ["São Tomé and Príncipe (Democratic Republic of)",4.1], + ["Togo (Togolese Republic)",4.1], + ["Liberia (Republic of)",4.1], + ["Comoros (Union of the)",4], + ["Afghanistan (Islamic Republic of)",3.9], + ["Sierra Leone (Republic of)",3.9], + ["Ethiopia (Federal Democratic Republic of)",3.9], + ["Malawi (Republic of)",3.9], + ["Madagascar (Republic of)",3.9], + ["Eritrea (State of)",3.8], + ["Rwanda (Republic of)",3.8], + ["Gabon (Gabonese Republic)",3.8], + ["Timor-Leste (Democratic Republic of)",3.7], + ["Ghana (Republic of)",3.7], + ["Vanuatu (Republic of)",3.6], + ["Yemen (Republic of)",3.5], + ["Iraq (Republic of)",3.5], + ["Tajikistan (Republic of)",3.4], + ["Palestine (State of)",3.4], + ["Papua New Guinea (Independent State of)",3.4], + ["Tonga (Kingdom of)",3.4], + ["Zimbabwe (Republic of)",3.3], + ["Pakistan (Islamic Republic of)",3.3], + ["Kenya (Republic of)",3.3], + ["Namibia (Republic of)",3.2], + ["Egypt (Arab Republic of)",3.2], + ["French Guiana",3.2], + ["Lesotho (Kingdom of)",3], + ["Israel (State of)",3], + ["Kyrgyz Republic",2.8], + ["Algeria (People's Democratic Republic of)",2.8], + ["Mongolia",2.8], + ["Eswatini (Kingdom of)",2.8], + ["Haiti (Republic of)",2.8], + ["Botswana (Republic of)",2.7], + ["Guatemala (Republic of)",2.7], + ["Syrian Arab Republic",2.7], + ["Fiji (Republic of)",2.7], + ["Kazakhstan (Republic of)",2.6], + ["Oman (Sultanate of)",2.6], + ["Turkmenistan",2.6], + ["Bolivia (Plurinational State of)",2.6], + ["Jordan (Hashemite Kingdom of)",2.6], + ["Djibouti (Republic of)",2.5], + ["Lao (People's Democratic Republic)",2.5], + ["Philippines (Republic of the)",2.4], + ["Cambodia (Kingdom of)",2.4], + ["Guyana (Co-operative Republic of)",2.4], + ["Panama (Republic of)",2.4], + ["Seychelles (Republic of)",2.4], + ["Uzbekistan (Republic of)",2.3], + ["Honduras (Republic of)",2.3], + ["Paraguay (Republic of)",2.3], + ["Ecuador (Republic of)",2.3], + ["Suriname (Republic of)",2.3], + ["South Africa (Republic of)",2.3], + ["Morocco (Kingdom of)",2.3], + ["Nicaragua (Republic of)",2.3], + ["Sahrawi Arab Democratic Republic",2.3], + ["Dominican Republic",2.2], + ["Indonesia (Republic of)",2.2], + ["Réunion",2.2], + ["Saudi Arabia (Kingdom of)",2.2], + ["Belize",2.2], + ["Venezuela (Bolivarian Republic of)",2.2], + ["Argentina (Argentine Republic)",2.2], + ["Cape Verde (Republic of)",2.2], + ["Peru (Republic of)",2.2], + ["India (Republic of)",2.1], + ["Libya (State of)",2.1], + ["Sri Lanka (Democratic Socialist Republic of)",2.1], + ["Tunisia (Republic of)",2.1], + ["Iran (Islamic Republic of)",2.1], + ["Myanmar (Union of)",2.1], + ["Guadeloupe",2.1], + ["Mexico (United Mexican States)",2], + ["Kuwait (State of)",2], + ["Lebanon (Lebanese Republic)",2], + ["Georgia",2], + ["Vietnam (Socialist Republic of)",2], + ["Turkey (Republic of)",2], + ["Grenada",2], + ["El Salvador (Republic of)",2], + ["Azerbaijan (Republic of)",2], + ["Antigua and Barbuda",2], + ["United States Virgin Islands",2], + ["Bangladesh (People's Republic of)",1.9], + ["Malaysia",1.9], + ["Jamaica",1.9], + ["Uruguay (Oriental Republic of)",1.9], + ["Bahrain (Kingdom of)",1.9], + ["Bhutan (Kingdom of)",1.9], + ["New Caledonia",1.9], + ["French Polynesia",1.9], + ["Aruba",1.9], + ["Korea (Democratic People's Republic of)",1.9], + ["Saint Vincent and the Grenadines",1.8], + ["Nepal (Federal Democratic Republic of)",1.8], + ["France (French Republic)",1.8], + ["Qatar (State of)",1.8], + ["Maldives (Republic of)",1.8], + ["Brunei (Nation of the Abode of Peace)",1.8], + ["Armenia (Republic of)",1.8], + ["Denmark (Kingdom of)",1.8], + ["Sweden (Kingdom of)",1.8], + ["United States (of America)",1.8], + ["Ireland",1.8], + ["New Zealand",1.8], + ["Australia (Commonwealth of)",1.8], + ["Russian Federation",1.8], + ["Martinique",1.8], + ["Colombia (Republic of)",1.7], + ["Montenegro",1.7], + ["Bahamas (Commonwealth of the)",1.7], + ["Iceland (Republic of)",1.7], + ["Costa Rica (Republic of)",1.7], + ["Czech Republic",1.7], + ["Brazil (Federative Republic of)",1.7], + ["Trinidad and Tobago (Republic of)",1.7], + ["Curaçao",1.7], + ["China (People's Republic of)",1.7], + ["United Kingdom (of Great Britain & Northern Ireland)",1.7], + ["Latvia (Republic of)",1.7], + ["Netherlands (Kingdom of the)",1.7], + ["Belgium (Kingdom of)",1.7], + ["Lithuania (Republic of)",1.7], + ["Norway (Kingdom of)",1.7], + ["Belarus (Republic of)",1.7], + ["Chile (Republic of)",1.6], + ["Romania",1.6], + ["Slovenia (Republic of)",1.6], + ["Cuba (Republic of)",1.6], + ["Barbados",1.6], + ["Estonia (Republic of)",1.6], + ["Albania (Republic of)",1.6], + ["Slovakia (Slovak Republic)",1.6], + ["Bulgaria (Republic of)",1.6], + ["Germany (Federal Republic of)",1.6], + ["Switzerland (Swiss Confederation)",1.6], + ["Austria (Republic of)",1.6], + ["Hungary (Republic of)",1.5], + ["Thailand (Kingdom of)",1.5], + ["Canada",1.5], + ["Poland (Republic of)",1.5], + ["North Macedonia (Republic of)",1.5], + ["Malta (Republic of)",1.5], + ["Serbia (Republic of)",1.4], + ["Croatia (Republic of)",1.4], + ["Saint Lucia",1.4], + ["Finland (Republic of)",1.4], + ["Japan",1.4], + ["Spain (Kingdom of)",1.4], + ["Ukraine",1.4], + ["Luxembourg (Grand Duchy of)",1.4], + ["Hong Kong (Special Administrative Region of China)",1.4], + ["Mauritius (Republic of)",1.3], + ["Portugal (Portuguese Republic)",1.3], + ["United Arab Emirates",1.3], + ["Greece (Hellenic Republic)",1.3], + ["Cyprus (Republic of)",1.3], + ["Moldova (Republic of)",1.3], + ["Italy (Italian Republic)",1.3], + ["Bosnia and Herzegovina",1.2], + ["Singapore (Republic of)",1.2], + ["Puerto Rico (Commonwealth of)",1.2], + ["Korea (Republic of)",1.1], + ["American Samoa",null], + ["Andorra (Principality of)",null], + ["Bermuda",null], + ["British Virgin Islands",null], + ["Cayman Islands",null], + ["Dominica (Commonwealth of)",null], + ["Faroe Islands",null], + ["Gibraltar",null], + ["Greenland",null], + ["Guam",null], + ["Isle of Man",null], + ["Kosovo (Republic of)",null], + ["Kiribati (Republic of)",null], + ["Liechtenstein (Principality of)",null], + ["Macao (Special Administrative Region of China)",null], + ["Marshall Islands (Republic of the)",null], + ["Mayotte (Department of)",null], + ["Micronesia (Federated States of)",null], + ["Monaco (Principality of)",null], + ["Nauru (Republic of)",null], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Palau (Republic of)",null], + ["Saint Martin",null], + ["Samoa (Independent State of)",null], + ["San Marino (Republic of)",null], + ["Sint Maarten (Netherlands)",null], + ["Saint Kitts and Nevis (Federation of)",null], + ["Turks and Caicos Islands",null], + ["Tuvalu",null], + ["Holy See (Vatican City State)",null] + ] +} diff --git a/data/global/demographics/homelessness/homeless-rate.json b/data/global/demographics/homelessness/homeless-rate.json new file mode 100644 index 0000000..e156f38 --- /dev/null +++ b/data/global/demographics/homelessness/homeless-rate.json @@ -0,0 +1,110 @@ +{ + "metadata" : { + "name" : "Homelessness Rate", + "description" : "Homelessness measured as a rate per 10,000 population.", + "units" : "homeless/10k population", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","economics","population","homeless"], + "authors" : [ + "Various government sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_homeless_population" + ] + }, + "data" : [ + ["country.name","homeless.rate"], + ["Afghanistan (Islamic Republic of)",1180], + ["Australia (Commonwealth of)",49.1], + ["Austria (Republic of)",25.4], + ["Azerbaijan (Republic of)",725], + ["Bangladesh (People's Republic of)",307], + ["Bhutan (Kingdom of)",0], + ["Brazil (Federative Republic of)",10], + ["Burkina Faso",335], + ["Cameroon (Republic of)",389], + ["Canada",10], + ["Central African Republic",1421], + ["Chad (Republic of)",209], + ["Chile (Republic of)",7.4], + ["China (People's Republic of)",18], + ["Colombia (Republic of)",971], + ["Congo (Democratic Republic of the)",595], + ["Costa Rica (Republic of)",6.6], + ["Côte d'Ivoire (Republic of)",117], + ["Croatia (Republic of)",7], + ["Czech Republic",22], + ["Denmark (Kingdom of)",11], + ["Egypt (Arab Republic of)",1200], + ["Estonia (Republic of)",15.2], + ["Ethiopia (Federal Democratic Republic of)",234], + ["Finland (Republic of)",7.9], + ["France (French Republic)",45], + ["Georgia",760], + ["Germany (Federal Republic of)",31.4], + ["Ghana (Republic of)",32.9], + ["Greece (Hellenic Republic)",37.1], + ["Grenada",6.4], + ["Guatemala (Republic of)",315], + ["Haiti (Republic of)",34], + ["Honduras (Republic of)",1235], + ["Hong Kong (Special Administrative Region of China)",2.4], + ["Hungary (Republic of)",30.7], + ["Iceland (Republic of)",10.3], + ["India (Republic of)",12.6], + ["Indonesia (Republic of)",136], + ["Iran (Islamic Republic of)",1.9], + ["Iraq (Republic of)",304], + ["Ireland",16], + ["Israel (State of)",29], + ["Italy (Italian Republic)",8.4], + ["Japan",0.3], + ["Jordan (Hashemite Kingdom of)",0], + ["Kazakhstan (Republic of)",0.6], + ["Kenya (Republic of)",73.3], + ["Latvia (Republic of)",35.3], + ["Libya (State of)",405], + ["Liechtenstein (Principality of)",0], + ["Lithuania (Republic of)",14.1], + ["Luxembourg (Grand Duchy of)",37.5], + ["Mali (Republic of)",164], + ["Mexico (United Mexican States)",35.4], + ["Mozambique (Republic of)",246], + ["Netherlands (Kingdom of the)",18], + ["New Zealand",217.3], + ["Nigeria (Federal Republic of)",1658], + ["Norway (Kingdom of)",7], + ["Pakistan (Islamic Republic of)",943], + ["Peru (Republic of)",223], + ["Philippines (Republic of the)",424], + ["Poland (Republic of)",8], + ["Portugal (Portuguese Republic)",8], + ["Romania",7], + ["Russian Federation",4], + ["Serbia (Republic of)",28.5], + ["Slovenia (Republic of)",18.3], + ["Somalia (Federal Republic of)",1867], + ["South Africa (Republic of)",36], + ["Korea (Republic of)",2], + ["South Sudan (Republic of)",1378], + ["Spain (Kingdom of)",8.6], + ["Sudan (Republic of the)",623], + ["Sweden (Kingdom of)",36], + ["Switzerland (Swiss Confederation)",2.55], + ["Syrian Arab Republic",3753], + ["Thailand (Kingdom of)",0.4], + ["Togo (Togolese Republic)",211], + ["Turkey (Republic of)",8.5], + ["Uganda (Republic of)",143], + ["Ukraine",168], + ["United Kingdom (of Great Britain & Northern Ireland)",54.4], + ["United States (of America)",17.5], + ["Yemen (Republic of)",1294], + ["Vietnam (Socialist Republic of)",16.6], + ["Zimbabwe (Republic of)",848] + ] +} diff --git a/data/global/demographics/homelessness/homeless-total.json b/data/global/demographics/homelessness/homeless-total.json new file mode 100644 index 0000000..70e1dc0 --- /dev/null +++ b/data/global/demographics/homelessness/homeless-total.json @@ -0,0 +1,110 @@ +{ + "metadata" : { + "name" : "Total Homeless Population", + "description" : "Total homeless population per day.", + "units" : "people", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","economics","population","homeless"], + "authors" : [ + "Various government sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_homeless_population" + ] + }, + "data" : [ + ["country.name","homeless.total"], + ["Afghanistan (Islamic Republic of)",60000], + ["Australia (Commonwealth of)",100568], + ["Austria (Republic of)",33670], + ["Azerbaijan (Republic of)",735000], + ["Bangladesh (People's Republic of)",5000000], + ["Bhutan (Kingdom of)",0], + ["Brazil (Federative Republic of)",222000], + ["Burkina Faso",700000], + ["Cameroon (Republic of)",1033000], + ["Canada",30000], + ["Central African Republic",686200], + ["Chad (Republic of)",342680], + ["Chile (Republic of)",14013], + ["China (People's Republic of)",2579000], + ["Colombia (Republic of)",4943000], + ["Congo (Democratic Republic of the)",5332000], + ["Costa Rica (Republic of)",3387], + ["Côte d'Ivoire (Republic of)",308070], + ["Croatia (Republic of)",3000], + ["Czech Republic",23830], + ["Denmark (Kingdom of)",6431], + ["Egypt (Arab Republic of)",12000000], + ["Estonia (Republic of)",2000], + ["Ethiopia (Federal Democratic Republic of)",2693000], + ["Finland (Republic of)",4396], + ["France (French Republic)",300000], + ["Georgia",304010], + ["Germany (Federal Republic of)",262600], + ["Ghana (Republic of)",100000], + ["Greece (Hellenic Republic)",40000], + ["Grenada",68], + ["Guatemala (Republic of)",475000], + ["Haiti (Republic of)",37867], + ["Honduras (Republic of)",1000000], + ["Hong Kong (Special Administrative Region of China)",1800], + ["Hungary (Republic of)",30000], + ["Iceland (Republic of)",349], + ["India (Republic of)",1800000], + ["Indonesia (Republic of)",3000000], + ["Iran (Islamic Republic of)",15000], + ["Iraq (Republic of)",1224000], + ["Ireland",8014], + ["Israel (State of)",25000], + ["Italy (Italian Republic)",50724], + ["Japan",3992], + ["Jordan (Hashemite Kingdom of)",0], + ["Kazakhstan (Republic of)",5500], + ["Kenya (Republic of)",394000], + ["Latvia (Republic of)",6877], + ["Libya (State of)",278000], + ["Liechtenstein (Principality of)",0], + ["Lithuania (Republic of)",4024], + ["Luxembourg (Grand Duchy of)",2059], + ["Mali (Republic of)",332700], + ["Mexico (United Mexican States)",456000], + ["Mozambique (Republic of)",769000], + ["Netherlands (Kingdom of the)",32000], + ["New Zealand",102123], + ["Nigeria (Federal Republic of)",24400000], + ["Norway (Kingdom of)",3909], + ["Pakistan (Islamic Republic of)",4500000], + ["Peru (Republic of)",700000], + ["Philippines (Republic of the)",4500000], + ["Poland (Republic of)",30330], + ["Portugal (Portuguese Republic)",8209], + ["Romania",15000], + ["Russian Federation",64000], + ["Serbia (Republic of)",20000], + ["Slovenia (Republic of)",3799], + ["Somalia (Federal Republic of)",2968000], + ["South Africa (Republic of)",200000], + ["Korea (Republic of)",11340], + ["South Sudan (Republic of)",1542000], + ["Spain (Kingdom of)",28552], + ["Sudan (Republic of the)",2730000], + ["Sweden (Kingdom of)",34000], + ["Switzerland (Swiss Confederation)",2200], + ["Syrian Arab Republic",6568000], + ["Thailand (Kingdom of)",2700], + ["Togo (Togolese Republic)",100000], + ["Turkey (Republic of)",70000], + ["Uganda (Republic of)",500000], + ["Ukraine",734240], + ["United Kingdom (of Great Britain & Northern Ireland)",365535], + ["United States (of America)",582462], + ["Yemen (Republic of)",3858000], + ["Vietnam (Socialist Republic of)",162000], + ["Zimbabwe (Republic of)",1200000] + ] +} diff --git a/data/global/demographics/median-age/median-age-female.json b/data/global/demographics/median-age/median-age-female.json new file mode 100644 index 0000000..fd75aa4 --- /dev/null +++ b/data/global/demographics/median-age/median-age-female.json @@ -0,0 +1,249 @@ +{ + "metadata" : { + "name" : "Median Male Age", + "description" : "Median Male Age divides the male population into two equal age groups, thus providing an index for age distribution of males in a population.", + "units" : "years", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","age","males","gender"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_median_age" + ] + }, + "data" : [ + ["country.name","median.age.male"], + ["Afghanistan (Islamic Republic of)",19.4], + ["Albania (Republic of)",32.9], + ["Algeria (People's Democratic Republic of)",28.6], + ["American Samoa",26.7], + ["Andorra (Principality of)",46.3], + ["Angola (Republic of)",15.4], + ["Anguilla",33.7], + ["Antigua and Barbuda",30.7], + ["Argentina (Argentine Republic)",31.1], + ["Armenia (Republic of)",35.1], + ["Aruba",38.2], + ["Australia (Commonwealth of)",36.5], + ["Austria (Republic of)",43.1], + ["Azerbaijan (Republic of)",31.1], + ["Bahamas (Commonwealth of the)",31.7], + ["Bahrain (Kingdom of)",34.4], + ["Bangladesh (People's Republic of)",27.1], + ["Barbados",38.4], + ["Belarus (Republic of)",38], + ["Belgium (Kingdom of)",40.4], + ["Belize",23], + ["Benin (Republic of)",16.4], + ["Bermuda",41.6], + ["Bhutan (Kingdom of)",29.6], + ["Bolivia (Plurinational State of)",24.5], + ["Bosnia and Herzegovina",41.6], + ["Botswana (Republic of)",24.5], + ["Brazil (Federative Republic of)",32.3], + ["British Virgin Islands",37], + ["Brunei (Nation of the Abode of Peace)",30.5], + ["Bulgaria (Republic of)",41.9], + ["Burkina Faso",17], + ["Burma",28.3], + ["Burundi (Republic of)",17.4], + ["Cape Verde (Republic of)",25.9], + ["Cambodia (Kingdom of)",25.6], + ["Cameroon (Republic of)",18.2], + ["Canada",40.6], + ["Cayman Islands",39.7], + ["Central African Republic",19.7], + ["Chad (Republic of)",15.6], + ["Chile (Republic of)",34.3], + ["China (People's Republic of)",37.5], + ["Colombia (Republic of)",30.2], + ["Comoros (Union of the)",20.2], + ["Congo (Democratic Republic of the)",16.5], + ["Congo (Republic of the)",19.3], + ["Cook Islands",37.8], + ["Costa Rica (Republic of)",32.1], + ["Côte d'Ivoire (Republic of)",20.3], + ["Croatia (Republic of)",42], + ["Cuba (Republic of)",40.2], + ["Curaçao",34.4], + ["Cyprus (Republic of)",36.7], + ["Czech Republic",42], + ["Denmark (Kingdom of)",40.9], + ["Djibouti (Republic of)",23], + ["Dominica (Commonwealth of)",34.4], + ["Dominican Republic",27.8], + ["Ecuador (Republic of)",28], + ["Egypt (Arab Republic of)",23.8], + ["El Salvador (Republic of)",26.2], + ["Equatorial Guinea (Republic of)",19.9], + ["Eritrea (State of)",19.7], + ["Estonia (Republic of)",40.4], + ["Eswatini (Kingdom of)",22.5], + ["Ethiopia (Federal Democratic Republic of)",19.6], + ["Faroe Islands",36.9], + ["Fiji (Republic of)",29.7], + ["Finland (Republic of)",41.3], + ["France (French Republic)",40], + ["French Polynesia",33], + ["Gabon (Gabonese Republic)",21.4], + ["Gambia (Republic of the)",21.5], + ["Georgia",35.9], + ["Germany (Federal Republic of)",46.5], + ["Ghana (Republic of)",21], + ["Gibraltar",34.4], + ["Greece (Hellenic Republic)",43.7], + ["Greenland",35.1], + ["Grenada",33.1], + ["Guam",28.7], + ["Guatemala (Republic of)",22.6], + ["Guernsey (Bailiwick of)",43], + ["Guinea-Bissau (Republic of)",17.4], + ["Guinea (Republic of)",18.9], + ["Guyana (Co-operative Republic of)",27.2], + ["Haiti (Republic of)",23.8], + ["Honduras (Republic of)",23.5], + ["Hong Kong (Special Administrative Region of China)",44.2], + ["Hungary (Republic of)",41.5], + ["Iceland (Republic of)",36.6], + ["India (Republic of)",28], + ["Indonesia (Republic of)",30.5], + ["Iran (Islamic Republic of)",31.5], + ["Iraq (Republic of)",20.8], + ["Ireland",37.4], + ["Isle of Man",43.6], + ["Israel (State of)",29.8], + ["Italy (Italian Republic)",45.4], + ["Jamaica",28.6], + ["Japan",47.2], + ["Jersey (Bailiwick of)",36], + ["Jordan (Hashemite Kingdom of)",23.9], + ["Kazakhstan (Republic of)",30.3], + ["Kenya (Republic of)",19.9], + ["Kiribati (Republic of)",24.8], + ["Korea (Democratic People's Republic of)",33.2], + ["Korea (Republic of)",41.6], + ["Kosovo (Republic of)",30.2], + ["Kuwait (State of)",30.7], + ["Kyrgyz Republic",26.1], + ["Lao (People's Democratic Republic)",23.7], + ["Latvia (Republic of)",40.5], + ["Lebanon (Lebanese Republic)",33.1], + ["Lesotho (Kingdom of)",24.7], + ["Liberia (Republic of)",17.7], + ["Libya (State of)",25.9], + ["Liechtenstein (Principality of)",42], + ["Lithuania (Republic of)",40.2], + ["Luxembourg (Grand Duchy of)",38.9], + ["Macao (Special Administrative Region of China)",40.7], + ["North Macedonia (Republic of)",38], + ["Madagascar (Republic of)",20.1], + ["Malawi (Republic of)",16.7], + ["Malaysia",28.9], + ["Maldives (Republic of)",29.2], + ["Mali (Republic of)",15.6], + ["Malta (Republic of)",41.2], + ["Marshall Islands (Republic of the)",23.6], + ["Mauritania (Islamic Republic of)",20.1], + ["Mauritius (Republic of)",35], + ["Mexico (United Mexican States)",28.2], + ["Micronesia (Federated States of)",25.5], + ["Moldova (Republic of)",36.2], + ["Monaco (Principality of)",53.7], + ["Mongolia",28.8], + ["Montenegro",38.1], + ["Montserrat",34.1], + ["Morocco (Kingdom of)",28.7], + ["Mozambique (Republic of)",16.3], + ["Namibia (Republic of)",21.1], + ["Nauru (Republic of)",28.2], + ["Nepal (Federal Democratic Republic of)",23.9], + ["Netherlands (Kingdom of the)",41.6], + ["New Caledonia",32.1], + ["New Zealand",36.4], + ["Nicaragua (Republic of)",26.4], + ["Nigeria (Federal Republic of)",18.4], + ["Niger (Republic of)",14.5], + ["Northern Mariana Islands (Commonwealth of the)",31.8], + ["Norway (Kingdom of)",38.8], + ["Oman (Sultanate of)",27.2], + ["Pakistan (Islamic Republic of)",21.9], + ["Palau (Republic of)",32.9], + ["Panama (Republic of)",29.6], + ["Papua New Guinea (Independent State of)",24], + ["Paraguay (Republic of)",29.5], + ["Peru (Republic of)",28.3], + ["Philippines (Republic of the)",23.6], + ["Poland (Republic of)",40.3], + ["Portugal (Portuguese Republic)",42.7], + ["Puerto Rico (Commonwealth of)",41.6], + ["Qatar (State of)",35], + ["Romania",41], + ["Russian Federation",37.5], + ["Rwanda (Republic of)",18.9], + ["Saint Barthelemy",45.5], + ["Saint Helena",43.2], + ["Saint Kitts and Nevis (Federation of)",36.7], + ["Saint Lucia",35.7], + ["Saint Martin",32.5], + ["Saint Pierre and Miquelon",47.9], + ["Saint Vincent and the Grenadines",35.4], + ["Samoa (Independent State of)",25.3], + ["San Marino (Republic of)",43.9], + ["São Tomé and Príncipe (Democratic Republic of)",18.9], + ["Saudi Arabia (Kingdom of)",33], + ["Senegal (Republic of)",18.5], + ["Serbia (Republic of)",41.7], + ["Seychelles (Republic of)",36.3], + ["Sierra Leone (Republic of)",18.5], + ["Singapore (Republic of)",35.4], + ["Sint Maarten (Netherlands)",39.6], + ["Slovakia (Slovak Republic)",40.1], + ["Slovenia (Republic of)",43.4], + ["Solomon Islands",23.2], + ["Somalia (Federal Republic of)",18.7], + ["South Africa (Republic of)",27.9], + ["South Sudan (Republic of)",18.9], + ["Spain (Kingdom of)",42.7], + ["Sri Lanka (Democratic Socialist Republic of)",32.3], + ["Sudan (Republic of the)",18.1], + ["Suriname (Republic of)",30.6], + ["Sweden (Kingdom of)",40.1], + ["Switzerland (Swiss Confederation)",41.7], + ["Syrian Arab Republic",23], + ["Taiwan",41.5], + ["Tajikistan (Republic of)",24.6], + ["Tanzania (United Republic of)",17.9], + ["Thailand (Kingdom of)",37.8], + ["Timor-Leste (Democratic Republic of)",18.9], + ["Togo (Togolese Republic)",19.7], + ["Tonga (Kingdom of)",23.6], + ["Trinidad and Tobago (Republic of)",37.3], + ["Tunisia (Republic of)",32], + ["Turkey (Republic of)",31.7], + ["Turkmenistan",28.7], + ["Turks and Caicos Islands",34.9], + ["Tuvalu",25.6], + ["Uganda (Republic of)",14.9], + ["Ukraine",38.2], + ["United Arab Emirates",40.4], + ["United Kingdom (of Great Britain & Northern Ireland)",39.6], + ["United States (of America)",37.2], + ["Uruguay (Oriental Republic of)",33.8], + ["Uzbekistan (Republic of)",29.4], + ["Vanuatu (Republic of)",22.6], + ["Venezuela (Bolivarian Republic of)",29.4], + ["Vietnam (Socialist Republic of)",30.8], + ["United States Virgin Islands",40.6], + ["Wallis and Futuna",33.1], + ["Palestine (State of)",21.7], + ["Sahrawi Arab Democratic Republic",21], + ["Yemen (Republic of)",19.6], + ["Zambia (Republic of)",16.7], + ["Zimbabwe (Republic of)",20.3] + ] +} diff --git a/data/global/demographics/median-age/median-age-male.json b/data/global/demographics/median-age/median-age-male.json new file mode 100644 index 0000000..c2d146b --- /dev/null +++ b/data/global/demographics/median-age/median-age-male.json @@ -0,0 +1,249 @@ +{ + "metadata" : { + "name" : "Median Female Age", + "description" : "Median Female Age divides the female population into two equal age groups, thus providing an index for age distribution of females in a population.", + "units" : "years", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","age","female","gender"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_median_age" + ] + }, + "data" : [ + ["country.name","median.age.female"], + ["Afghanistan (Islamic Republic of)",19.5], + ["Albania (Republic of)",35.7], + ["Algeria (People's Democratic Republic of)",29.3], + ["American Samoa",27.7], + ["Andorra (Principality of)",46.1], + ["Angola (Republic of)",16.4], + ["Anguilla",37.6], + ["Antigua and Barbuda",34.4], + ["Argentina (Argentine Republic)",33.6], + ["Armenia (Republic of)",38.3], + ["Aruba",41.5], + ["Australia (Commonwealth of)",38.5], + ["Austria (Republic of)",45.8], + ["Azerbaijan (Republic of)",34.2], + ["Bahamas (Commonwealth of the)",34], + ["Bahrain (Kingdom of)",30.3], + ["Bangladesh (People's Republic of)",28.6], + ["Barbados",40.7], + ["Belarus (Republic of)",43.9], + ["Belgium (Kingdom of)",42.8], + ["Belize",24.8], + ["Benin (Republic of)",17.6], + ["Bermuda",45.7], + ["Bhutan (Kingdom of)",28.6], + ["Bolivia (Plurinational State of)",26], + ["Bosnia and Herzegovina",44.8], + ["Botswana (Republic of)",26.7], + ["Brazil (Federative Republic of)",34.1], + ["British Virgin Islands",37.5], + ["Brunei (Nation of the Abode of Peace)",31.8], + ["Bulgaria (Republic of)",45.6], + ["Burkina Faso",18.7], + ["Burma",30], + ["Burundi (Republic of)",18], + ["Cape Verde (Republic of)",27.6], + ["Cambodia (Kingdom of)",27.2], + ["Cameroon (Republic of)",18.8], + ["Canada",42.9], + ["Cayman Islands",41.2], + ["Central African Republic",20.3], + ["Chad (Republic of)",16.5], + ["Chile (Republic of)",36.7], + ["China (People's Republic of)",39.4], + ["Colombia (Republic of)",32.2], + ["Comoros (Union of the)",21.5], + ["Congo (Democratic Republic of the)",16.8], + ["Congo (Republic of the)",19.7], + ["Cook Islands",38.7], + ["Costa Rica (Republic of)",33.1], + ["Côte d'Ivoire (Republic of)",20.3], + ["Croatia (Republic of)",45.9], + ["Cuba (Republic of)",43.8], + ["Curaçao",39.5], + ["Cyprus (Republic of)",39.4], + ["Czech Republic",44.7], + ["Denmark (Kingdom of)",43.1], + ["Djibouti (Republic of)",26.4], + ["Dominica (Commonwealth of)",35.5], + ["Dominican Republic",28.1], + ["Ecuador (Republic of)",29.6], + ["Egypt (Arab Republic of)",24.5], + ["El Salvador (Republic of)",29.3], + ["Equatorial Guinea (Republic of)",20.7], + ["Eritrea (State of)",20.8], + ["Estonia (Republic of)",47], + ["Eswatini (Kingdom of)",24.7], + ["Ethiopia (Federal Democratic Republic of)",20.1], + ["Faroe Islands",37.7], + ["Fiji (Republic of)",30.1], + ["Finland (Republic of)",44.4], + ["France (French Republic)",43.4], + ["French Polynesia",33.5], + ["Gabon (Gabonese Republic)",20.6], + ["Gambia (Republic of the)",22.2], + ["Georgia",41.4], + ["Germany (Federal Republic of)",49.1], + ["Ghana (Republic of)",21.9], + ["Gibraltar",36.6], + ["Greece (Hellenic Republic)",46.8], + ["Greenland",33.4], + ["Grenada",33.4], + ["Guam",30.2], + ["Guatemala (Republic of)",23.8], + ["Guernsey (Bailiwick of)",45.6], + ["Guinea-Bissau (Republic of)",18.6], + ["Guinea (Republic of)",19.4], + ["Guyana (Co-operative Republic of)",27.9], + ["Haiti (Republic of)",24.3], + ["Honduras (Republic of)",25.2], + ["Hong Kong (Special Administrative Region of China)",46.5], + ["Hungary (Republic of)",45.5], + ["Iceland (Republic of)",37.7], + ["India (Republic of)",29.5], + ["Indonesia (Republic of)",31.8], + ["Iran (Islamic Republic of)",32], + ["Iraq (Republic of)",21.6], + ["Ireland",38.2], + ["Isle of Man",45.6], + ["Israel (State of)",31], + ["Italy (Italian Republic)",47.5], + ["Jamaica",30.1], + ["Japan",50], + ["Jersey (Bailiwick of)",39.5], + ["Jordan (Hashemite Kingdom of)",22.9], + ["Kazakhstan (Republic of)",32.8], + ["Kenya (Republic of)",20.1], + ["Kiribati (Republic of)",26.6], + ["Korea (Democratic People's Republic of)",36.2], + ["Korea (Republic of)",45], + ["Kosovo (Republic of)",30.8], + ["Kuwait (State of)",27.9], + ["Kyrgyz Republic",28.5], + ["Lao (People's Democratic Republic)",24.4], + ["Latvia (Republic of)",48], + ["Lebanon (Lebanese Republic)",34.4], + ["Lesotho (Kingdom of)",24.7], + ["Liberia (Republic of)",18.2], + ["Libya (State of)",25.7], + ["Liechtenstein (Principality of)",45.3], + ["Lithuania (Republic of)",48.2], + ["Luxembourg (Grand Duchy of)",40], + ["Macao (Special Administrative Region of China)",40.9], + ["North Macedonia (Republic of)",40], + ["Madagascar (Republic of)",20.5], + ["Malawi (Republic of)",16.9], + ["Malaysia",29.6], + ["Maldives (Republic of)",30], + ["Mali (Republic of)",16.5], + ["Malta (Republic of)",43.5], + ["Marshall Islands (Republic of the)",23.9], + ["Mauritania (Islamic Republic of)",22], + ["Mauritius (Republic of)",37.6], + ["Mexico (United Mexican States)",30.4], + ["Micronesia (Federated States of)",27.1], + ["Moldova (Republic of)",39.5], + ["Monaco (Principality of)",57], + ["Mongolia",30.7], + ["Montenegro",41.1], + ["Montserrat",35.6], + ["Morocco (Kingdom of)",29.6], + ["Mozambique (Republic of)",17.6], + ["Namibia (Republic of)",22.6], + ["Nauru (Republic of)",25.9], + ["Nepal (Federal Democratic Republic of)",26.9], + ["Netherlands (Kingdom of the)",44], + ["New Caledonia",33.7], + ["New Zealand",37.9], + ["Nicaragua (Republic of)",28.2], + ["Nigeria (Federal Republic of)",18.9], + ["Niger (Republic of)",15.1], + ["Northern Mariana Islands (Commonwealth of the)",34.1], + ["Norway (Kingdom of)",40.2], + ["Oman (Sultanate of)",25.1], + ["Pakistan (Islamic Republic of)",22.1], + ["Palau (Republic of)",35.9], + ["Panama (Republic of)",30.5], + ["Papua New Guinea (Independent State of)",24], + ["Paraguay (Republic of)",29.9], + ["Peru (Republic of)",29.9], + ["Philippines (Republic of the)",24.6], + ["Poland (Republic of)",43.6], + ["Portugal (Portuguese Republic)",46.5], + ["Puerto Rico (Commonwealth of)",45.3], + ["Qatar (State of)",28.2], + ["Romania",44], + ["Russian Federation",43.2], + ["Rwanda (Republic of)",20.4], + ["Saint Barthelemy",45.8], + ["Saint Helena",43.3], + ["Saint Kitts and Nevis (Federation of)",36.3], + ["Saint Lucia",38], + ["Saint Martin",34.1], + ["Saint Pierre and Miquelon",49], + ["Saint Vincent and the Grenadines",35.1], + ["Samoa (Independent State of)",26], + ["San Marino (Republic of)",46.3], + ["São Tomé and Príncipe (Democratic Republic of)",19.7], + ["Saudi Arabia (Kingdom of)",27.9], + ["Senegal (Republic of)",20.3], + ["Serbia (Republic of)",45], + ["Seychelles (Republic of)",37.4], + ["Sierra Leone (Republic of)",19.7], + ["Singapore (Republic of)",35.7], + ["Sint Maarten (Netherlands)",42.7], + ["Slovakia (Slovak Republic)",43.6], + ["Slovenia (Republic of)",46.6], + ["Solomon Islands",23.7], + ["Somalia (Federal Republic of)",18.3], + ["South Africa (Republic of)",28.1], + ["South Sudan (Republic of)",18.3], + ["Spain (Kingdom of)",45.1], + ["Sri Lanka (Democratic Socialist Republic of)",35.1], + ["Sudan (Republic of the)",18.5], + ["Suriname (Republic of)",31.4], + ["Sweden (Kingdom of)",42.1], + ["Switzerland (Swiss Confederation)",43.7], + ["Syrian Arab Republic",24], + ["Taiwan",43.1], + ["Tajikistan (Republic of)",26], + ["Tanzania (United Republic of)",18.4], + ["Thailand (Kingdom of)",40.1], + ["Timor-Leste (Democratic Republic of)",20.2], + ["Togo (Togolese Republic)",20.3], + ["Tonga (Kingdom of)",24.5], + ["Trinidad and Tobago (Republic of)",38.3], + ["Tunisia (Republic of)",33.3], + ["Turkey (Republic of)",32.8], + ["Turkmenistan",29.7], + ["Turks and Caicos Islands",34.4], + ["Tuvalu",27.6], + ["Uganda (Republic of)",16.5], + ["Ukraine",44.3], + ["United Arab Emirates",31.5], + ["United Kingdom (of Great Britain & Northern Ireland)",41.7], + ["United States (of America)",39.8], + ["Uruguay (Oriental Republic of)",37.3], + ["Uzbekistan (Republic of)",30.7], + ["Vanuatu (Republic of)",23.5], + ["Venezuela (Bolivarian Republic of)",30.7], + ["Vietnam (Socialist Republic of)",33], + ["United States Virgin Islands",42.8], + ["Wallis and Futuna",35.1], + ["Palestine (State of)",22.2], + ["Sahrawi Arab Democratic Republic",21.9], + ["Yemen (Republic of)",19.9], + ["Zambia (Republic of)",17], + ["Zimbabwe (Republic of)",20.6] + ] +} diff --git a/data/global/demographics/median-age/median-age.json b/data/global/demographics/median-age/median-age.json new file mode 100644 index 0000000..5770b63 --- /dev/null +++ b/data/global/demographics/median-age/median-age.json @@ -0,0 +1,249 @@ +{ + "metadata" : { + "name" : "Median Age", + "description" : "Median Age divides the entire population into two equal age groups, thus providing an index for age distribution of a population.", + "units" : "years", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_median_age" + ] + }, + "data" : [ + ["country.name","median.age"], + ["Afghanistan (Islamic Republic of)",19.5], + ["Albania (Republic of)",34.3], + ["Algeria (People's Democratic Republic of)",28.9], + ["American Samoa",27.2], + ["Andorra (Principality of)",46.2], + ["Angola (Republic of)",15.9], + ["Anguilla",35.7], + ["Antigua and Barbuda",32.7], + ["Argentina (Argentine Republic)",32.4], + ["Armenia (Republic of)",36.6], + ["Aruba",39.9], + ["Australia (Commonwealth of)",37.5], + ["Austria (Republic of)",44.5], + ["Azerbaijan (Republic of)",32.6], + ["Bahamas (Commonwealth of the)",32.8], + ["Bahrain (Kingdom of)",32.9], + ["Bangladesh (People's Republic of)",27.9], + ["Barbados",39.5], + ["Belarus (Republic of)",40.9], + ["Belgium (Kingdom of)",41.6], + ["Belize",23.9], + ["Benin (Republic of)",17], + ["Bermuda",43.6], + ["Bhutan (Kingdom of)",29.1], + ["Bolivia (Plurinational State of)",25.3], + ["Bosnia and Herzegovina",43.3], + ["Botswana (Republic of)",25.7], + ["Brazil (Federative Republic of)",33.2], + ["British Virgin Islands",37.2], + ["Brunei (Nation of the Abode of Peace)",31.1], + ["Bulgaria (Republic of)",43.7], + ["Burkina Faso",17.9], + ["Burma",29.2], + ["Burundi (Republic of)",17.7], + ["Cape Verde (Republic of)",26.8], + ["Cambodia (Kingdom of)",26.4], + ["Cameroon (Republic of)",18.5], + ["Canada",41.8], + ["Cayman Islands",40.5], + ["Central African Republic",20], + ["Chad (Republic of)",16.1], + ["Chile (Republic of)",35.5], + ["China (People's Republic of)",38.4], + ["Colombia (Republic of)",31.2], + ["Comoros (Union of the)",20.9], + ["Congo (Democratic Republic of the)",16.7], + ["Congo (Republic of the)",19.5], + ["Cook Islands",38.3], + ["Costa Rica (Republic of)",32.6], + ["Côte d'Ivoire (Republic of)",20.3], + ["Croatia (Republic of)",43.9], + ["Cuba (Republic of)",42.1], + ["Curaçao",36.7], + ["Cyprus (Republic of)",37.9], + ["Czech Republic",43.3], + ["Denmark (Kingdom of)",42], + ["Djibouti (Republic of)",24.9], + ["Dominica (Commonwealth of)",34.9], + ["Dominican Republic",27.9], + ["Ecuador (Republic of)",28.8], + ["Egypt (Arab Republic of)",24.1], + ["El Salvador (Republic of)",27.7], + ["Equatorial Guinea (Republic of)",20.3], + ["Eritrea (State of)",20.3], + ["Estonia (Republic of)",43.7], + ["Eswatini (Kingdom of)",23.7], + ["Ethiopia (Federal Democratic Republic of)",19.8], + ["Faroe Islands",37.2], + ["Fiji (Republic of)",29.9], + ["Finland (Republic of)",42.8], + ["France (French Republic)",41.7], + ["French Polynesia",33.3], + ["Gabon (Gabonese Republic)",21], + ["Gambia (Republic of the)",21.8], + ["Georgia",38.6], + ["Germany (Federal Republic of)",47.8], + ["Ghana (Republic of)",21.4], + ["Gibraltar",35.5], + ["Greece (Hellenic Republic)",45.3], + ["Greenland",34.3], + ["Grenada",33.3], + ["Guam",29.4], + ["Guatemala (Republic of)",23.2], + ["Guernsey (Bailiwick of)",44.3], + ["Guinea-Bissau (Republic of)",18], + ["Guinea (Republic of)",19.1], + ["Guyana (Co-operative Republic of)",27.5], + ["Haiti (Republic of)",24.1], + ["Honduras (Republic of)",24.4], + ["Hong Kong (Special Administrative Region of China)",45.6], + ["Hungary (Republic of)",43.6], + ["Iceland (Republic of)",37.1], + ["India (Republic of)",28.7], + ["Indonesia (Republic of)",31.1], + ["Iran (Islamic Republic of)",31.7], + ["Iraq (Republic of)",21.2], + ["Ireland",37.8], + ["Isle of Man",44.6], + ["Israel (State of)",30.4], + ["Italy (Italian Republic)",46.5], + ["Jamaica",29.4], + ["Japan",48.6], + ["Jersey (Bailiwick of)",37.5], + ["Jordan (Hashemite Kingdom of)",23.5], + ["Kazakhstan (Republic of)",31.6], + ["Kenya (Republic of)",20], + ["Kiribati (Republic of)",25.7], + ["Korea (Democratic People's Republic of)",34.6], + ["Korea (Republic of)",43.2], + ["Kosovo (Republic of)",30.5], + ["Kuwait (State of)",29.7], + ["Kyrgyz Republic",27.3], + ["Lao (People's Democratic Republic)",24], + ["Latvia (Republic of)",44.4], + ["Lebanon (Lebanese Republic)",33.7], + ["Lesotho (Kingdom of)",24.7], + ["Liberia (Republic of)",18], + ["Libya (State of)",25.8], + ["Liechtenstein (Principality of)",43.7], + ["Lithuania (Republic of)",44.5], + ["Luxembourg (Grand Duchy of)",39.5], + ["Macao (Special Administrative Region of China)",40.8], + ["North Macedonia (Republic of)",39], + ["Madagascar (Republic of)",20.3], + ["Malawi (Republic of)",16.8], + ["Malaysia",29.2], + ["Maldives (Republic of)",29.5], + ["Mali (Republic of)",16.1], + ["Malta (Republic of)",42.3], + ["Marshall Islands (Republic of the)",23.8], + ["Mauritania (Islamic Republic of)",21], + ["Mauritius (Republic of)",36.3], + ["Mexico (United Mexican States)",29.3], + ["Micronesia (Federated States of)",26.3], + ["Moldova (Republic of)",37.7], + ["Monaco (Principality of)",55.4], + ["Mongolia",29.8], + ["Montenegro",39.6], + ["Montserrat",34.8], + ["Morocco (Kingdom of)",29.1], + ["Mozambique (Republic of)",17], + ["Namibia (Republic of)",21.8], + ["Nauru (Republic of)",27], + ["Nepal (Federal Democratic Republic of)",25.3], + ["Netherlands (Kingdom of the)",42.8], + ["New Caledonia",32.9], + ["New Zealand",37.2], + ["Nicaragua (Republic of)",27.3], + ["Nigeria (Federal Republic of)",18.6], + ["Niger (Republic of)",14.8], + ["Northern Mariana Islands (Commonwealth of the)",32.8], + ["Norway (Kingdom of)",39.5], + ["Oman (Sultanate of)",26.2], + ["Pakistan (Islamic Republic of)",22], + ["Palau (Republic of)",33.9], + ["Panama (Republic of)",30.1], + ["Papua New Guinea (Independent State of)",24], + ["Paraguay (Republic of)",29.7], + ["Peru (Republic of)",29.1], + ["Philippines (Republic of the)",24.1], + ["Poland (Republic of)",41.9], + ["Portugal (Portuguese Republic)",44.6], + ["Puerto Rico (Commonwealth of)",43.6], + ["Qatar (State of)",33.7], + ["Romania",42.5], + ["Russian Federation",40.3], + ["Rwanda (Republic of)",19.7], + ["Saint Barthelemy",45.6], + ["Saint Helena",43.2], + ["Saint Kitts and Nevis (Federation of)",36.5], + ["Saint Lucia",36.9], + ["Saint Martin",33.3], + ["Saint Pierre and Miquelon",48.5], + ["Saint Vincent and the Grenadines",35.3], + ["Samoa (Independent State of)",25.6], + ["San Marino (Republic of)",45.2], + ["São Tomé and Príncipe (Democratic Republic of)",19.3], + ["Saudi Arabia (Kingdom of)",30.8], + ["Senegal (Republic of)",19.4], + ["Serbia (Republic of)",43.4], + ["Seychelles (Republic of)",36.8], + ["Sierra Leone (Republic of)",19.1], + ["Singapore (Republic of)",35.6], + ["Sint Maarten (Netherlands)",41.1], + ["Slovakia (Slovak Republic)",41.8], + ["Slovenia (Republic of)",44.9], + ["Solomon Islands",23.5], + ["Somalia (Federal Republic of)",18.5], + ["South Africa (Republic of)",28], + ["South Sudan (Republic of)",18.6], + ["Spain (Kingdom of)",43.9], + ["Sri Lanka (Democratic Socialist Republic of)",33.7], + ["Sudan (Republic of the)",18.3], + ["Suriname (Republic of)",31], + ["Sweden (Kingdom of)",41.1], + ["Switzerland (Swiss Confederation)",42.7], + ["Syrian Arab Republic",23.5], + ["Taiwan",42.3], + ["Tajikistan (Republic of)",25.3], + ["Tanzania (United Republic of)",18.2], + ["Thailand (Kingdom of)",39], + ["Timor-Leste (Democratic Republic of)",19.6], + ["Togo (Togolese Republic)",20], + ["Tonga (Kingdom of)",24.1], + ["Trinidad and Tobago (Republic of)",37.8], + ["Tunisia (Republic of)",32.7], + ["Turkey (Republic of)",32.2], + ["Turkmenistan",29.2], + ["Turks and Caicos Islands",34.6], + ["Tuvalu",26.6], + ["Uganda (Republic of)",15.7], + ["Ukraine",41.2], + ["United Arab Emirates",38.4], + ["United Kingdom (of Great Britain & Northern Ireland)",40.6], + ["United States (of America)",38.5], + ["Uruguay (Oriental Republic of)",35.5], + ["Uzbekistan (Republic of)",30.1], + ["Vanuatu (Republic of)",23], + ["Venezuela (Bolivarian Republic of)",30], + ["Vietnam (Socialist Republic of)",31.9], + ["United States Virgin Islands",41.8], + ["Wallis and Futuna",34], + ["Palestine (State of)",21.9], + ["Sahrawi Arab Democratic Republic",21.5], + ["Yemen (Republic of)",19.8], + ["Zambia (Republic of)",16.9], + ["Zimbabwe (Republic of)",20.5] + ] +} diff --git a/data/global/demographics/migration/migrant-population-percent.json b/data/global/demographics/migration/migrant-population-percent.json new file mode 100644 index 0000000..fa6d77e --- /dev/null +++ b/data/global/demographics/migration/migrant-population-percent.json @@ -0,0 +1,253 @@ +{ + "metadata" : { + "name" : "Migrant Population", + "description" : "Migrant population as a percentage of the national population.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","demographics","population","migration"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_immigrant_population" + ] + }, + "data" : [ + ["country.name","migrant.population.percent"], + ["Burundi (Republic of)",0.028], + ["Comoros (Union of the)",0.015], + ["Djibouti (Republic of)",0.118], + ["Eritrea (State of)",0.005], + ["Ethiopia (Federal Democratic Republic of)",0.011], + ["Kenya (Republic of)",0.02], + ["Madagascar (Republic of)",0.001], + ["Malawi (Republic of)",0.013], + ["Mauritius (Republic of)",0.023], + ["Mayotte (Department of)",0.28], + ["Mozambique (Republic of)",0.011], + ["Réunion",0.145], + ["Rwanda (Republic of)",0.043], + ["Seychelles (Republic of)",0.132], + ["Somalia (Federal Republic of)",0.003], + ["South Sudan (Republic of)",0.078], + ["Uganda (Republic of)",0.039], + ["Tanzania (United Republic of)",0.009], + ["Zambia (Republic of)",0.01], + ["Zimbabwe (Republic of)",0.028], + ["Angola (Republic of)",0.021], + ["Cameroon (Republic of)",0.02], + ["Central African Republic",0.019], + ["Chad (Republic of)",0.032], + ["Congo (Republic of the)",0.075], + ["Congo (Democratic Republic of the)",0.011], + ["Equatorial Guinea (Republic of)",0.168], + ["Gabon (Gabonese Republic)",0.189], + ["São Tomé and Príncipe (Democratic Republic of)",0.01], + ["Botswana (Republic of)",0.048], + ["Eswatini (Kingdom of)",0.028], + ["Lesotho (Kingdom of)",0.003], + ["Namibia (Republic of)",0.043], + ["South Africa (Republic of)",0.072], + ["Benin (Republic of)",0.033], + ["Burkina Faso",0.035], + ["Cape Verde (Republic of)",0.028], + ["Côte d'Ivoire (Republic of)",0.099], + ["Gambia (Republic of the)",0.092], + ["Ghana (Republic of)",0.015], + ["Guinea (Republic of)",0.009], + ["Guinea-Bissau (Republic of)",0.014], + ["Liberia (Republic of)",0.019], + ["Mali (Republic of)",0.024], + ["Mauritania (Islamic Republic of)",0.038], + ["Niger (Republic of)",0.013], + ["Nigeria (Federal Republic of)",0.006], + ["Saint Helena",0.071], + ["Senegal (Republic of)",0.017], + ["Sierra Leone (Republic of)",0.007], + ["Togo (Togolese Republic)",0.035], + ["Algeria (People's Democratic Republic of)",0.006], + ["Egypt (Arab Republic of)",0.005], + ["Libya (State of)",0.121], + ["Morocco (Kingdom of)",0.003], + ["Sudan (Republic of the)",0.029], + ["Tunisia (Republic of)",0.005], + ["Sahrawi Arab Democratic Republic",0.009], + ["Armenia (Republic of)",0.064], + ["Azerbaijan (Republic of)",0.025], + ["Bahrain (Kingdom of)",0.452], + ["Cyprus (Republic of)",0.16], + ["Georgia",0.02], + ["Iraq (Republic of)",0.009], + ["Israel (State of)",0.23], + ["Jordan (Hashemite Kingdom of)",0.331], + ["Kuwait (State of)",0.721], + ["Lebanon (Lebanese Republic)",0.272], + ["Oman (Sultanate of)",0.46], + ["Qatar (State of)",0.787], + ["Saudi Arabia (Kingdom of)",0.383], + ["Syrian Arab Republic",0.051], + ["Turkey (Republic of)",0.07], + ["United Arab Emirates",0.879], + ["Yemen (Republic of)",0.013], + ["Kazakhstan (Republic of)",0.2], + ["Kyrgyz Republic",0.031], + ["Tajikistan (Republic of)",0.029], + ["Turkmenistan",0.033], + ["Uzbekistan (Republic of)",0.035], + ["Afghanistan (Islamic Republic of)",0.004], + ["Bangladesh (People's Republic of)",0.013], + ["Bhutan (Kingdom of)",0.07], + ["India (Republic of)",0.004], + ["Iran (Islamic Republic of)",0.032], + ["Maldives (Republic of)",0.13], + ["Nepal (Federal Democratic Republic of)",0.017], + ["Pakistan (Islamic Republic of)",0.015], + ["Sri Lanka (Democratic Socialist Republic of)",0.002], + ["China (People's Republic of)",0.001], + ["Hong Kong (Special Administrative Region of China)",0.396], + ["Macao (Special Administrative Region of China)",0.624], + ["Korea (Democratic People's Republic of)",0.002], + ["Japan",0.02], + ["Mongolia",0.007], + ["Korea (Republic of)",0.023], + ["Brunei (Nation of the Abode of Peace)",0.255], + ["Cambodia (Kingdom of)",0.005], + ["Indonesia (Republic of)",0.001], + ["Lao (People's Democratic Republic)",0.007], + ["Malaysia",0.107], + ["Myanmar (Union of)",0.001], + ["Philippines (Republic of the)",0.002], + ["Singapore (Republic of)",0.371], + ["Thailand (Kingdom of)",0.052], + ["Timor-Leste (Democratic Republic of)",0.007], + ["Vietnam (Socialist Republic of)",0.001], + ["Anguilla",0.382], + ["Antigua and Barbuda",0.301], + ["Aruba",0.344], + ["Bahamas (Commonwealth of the)",0.162], + ["Barbados",0.121], + ["British Virgin Islands",0.692], + ["Bonaire (Sint Eustatius and Saba)",0.596], + ["Cayman Islands",0.446], + ["Cuba (Republic of)",0], + ["Curaçao",0.25], + ["Dominica (Commonwealth of)",0.115], + ["Dominican Republic",0.053], + ["Grenada",0.064], + ["Guadeloupe",0.223], + ["Haiti (Republic of)",0.002], + ["Jamaica",0.008], + ["Martinique",0.164], + ["Montserrat",0.276], + ["Puerto Rico (Commonwealth of)",0.091], + ["Saint Kitts and Nevis (Federation of)",0.144], + ["Saint Lucia",0.046], + ["Saint Vincent and the Grenadines",0.042], + ["Sint Maarten (Netherlands)",0.667], + ["Trinidad and Tobago (Republic of)",0.042], + ["Turks and Caicos Islands",0.642], + ["United States Virgin Islands",0.543], + ["Belize",0.154], + ["Costa Rica (Republic of)",0.083], + ["El Salvador (Republic of)",0.007], + ["Guatemala (Republic of)",0.005], + ["Honduras (Republic of)",0.004], + ["Mexico (United Mexican States)",0.008], + ["Nicaragua (Republic of)",0.006], + ["Panama (Republic of)",0.044], + ["Argentina (Argentine Republic)",0.049], + ["Bolivia (Plurinational State of)",0.014], + ["Brazil (Federative Republic of)",0.004], + ["Chile (Republic of)",0.05], + ["Colombia (Republic of)",0.023], + ["Ecuador (Republic of)",0.022], + ["Falkland Islands (Malvinas)",0.563], + ["French Guiana",0.404], + ["Guyana (Co-operative Republic of)",0.02], + ["Paraguay (Republic of)",0.023], + ["Peru (Republic of)",0.024], + ["Suriname (Republic of)",0.079], + ["Uruguay (Oriental Republic of)",0.024], + ["Venezuela (Bolivarian Republic of)",0.048], + ["Australia (Commonwealth of)",0.3], + ["New Zealand",0.274], + ["Fiji (Republic of)",0.016], + ["New Caledonia",0.257], + ["Papua New Guinea (Independent State of)",0.004], + ["Solomon Islands",0.004], + ["Vanuatu (Republic of)",0.011], + ["Micronesia (Federated States of)",0.217], + ["Guam",0.477], + ["Kiribati (Republic of)",0.026], + ["Marshall Islands (Republic of the)",0.056], + ["Micronesia (Federated States of)",0.025], + ["Nauru (Republic of)",0.197], + ["Northern Mariana Islands (Commonwealth of the)",0.381], + ["Palau (Republic of)",0.281], + ["American Samoa",0.426], + ["Cook Islands",0.199], + ["French Polynesia",0.112], + ["Niue",0.364], + ["Samoa (Independent State of)",0.02], + ["Tokelau",0.376], + ["Tonga (Kingdom of)",0.036], + ["Tuvalu",0.02], + ["Wallis and Futuna",0.089], + ["Belarus (Republic of)",0.113], + ["Bulgaria (Republic of)",0.024], + ["Czech Republic",0.048], + ["Hungary (Republic of)",0.053], + ["Poland (Republic of)",0.017], + ["Moldova (Republic of)",0.026], + ["Romania",0.024], + ["Russian Federation",0.08], + ["Slovakia (Slovak Republic)",0.034], + ["Ukraine",0.113], + ["Jersey (Bailiwick of)",0.487], + ["Denmark (Kingdom of)",0.125], + ["Estonia (Republic of)",0.144], + ["Faroe Islands",0.133], + ["Finland (Republic of)",0.069], + ["Iceland (Republic of)",0.155], + ["Ireland",0.171], + ["Isle of Man",0.507], + ["Latvia (Republic of)",0.124], + ["Lithuania (Republic of)",0.042], + ["Norway (Kingdom of)",0.161], + ["Sweden (Kingdom of)",0.2], + ["United Kingdom (of Great Britain & Northern Ireland)",0.141], + ["Albania (Republic of)",0.017], + ["Andorra (Principality of)",0.585], + ["Bosnia and Herzegovina",0.011], + ["Croatia (Republic of)",0.125], + ["Gibraltar",0.332], + ["Greece (Hellenic Republic)",0.116], + ["Holy See (Vatican City State)",1], + ["Italy (Italian Republic)",0.104], + ["Malta (Republic of)",0.193], + ["Montenegro",0.113], + ["North Macedonia (Republic of)",0.063], + ["Portugal (Portuguese Republic)",0.087], + ["San Marino (Republic of)",0.163], + ["Serbia (Republic of)",0.094], + ["Slovenia (Republic of)",0.122], + ["Spain (Kingdom of)",0.152], + ["Austria (Republic of)",0.199], + ["Belgium (Kingdom of)",0.172], + ["France (French Republic)",0.141], + ["Germany (Federal Republic of)",0.157], + ["Liechtenstein (Principality of)",0.67], + ["Luxembourg (Grand Duchy of)",0.474], + ["Monaco (Principality of)",0.68], + ["Netherlands (Kingdom of the)",0.134], + ["Switzerland (Swiss Confederation)",0.299], + ["Bermuda",0.309], + ["Canada",0.213], + ["Greenland",0.1], + ["Saint Pierre and Miquelon",0.17] + ] +} diff --git a/data/global/demographics/migration/migrant-population-total.json b/data/global/demographics/migration/migrant-population-total.json new file mode 100644 index 0000000..527f22e --- /dev/null +++ b/data/global/demographics/migration/migrant-population-total.json @@ -0,0 +1,253 @@ +{ + "metadata" : { + "name" : "Total Migrant Population", + "description" : "Total number of migrants within national population.", + "units" : "people", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","demographics","population","migration"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_immigrant_population" + ] + }, + "data" : [ + ["country.name","migrant.population.total"], + ["Burundi (Republic of)",321018], + ["Comoros (Union of the)",12504], + ["Djibouti (Republic of)",115341], + ["Eritrea (State of)",16101], + ["Ethiopia (Federal Democratic Republic of)",1253083], + ["Kenya (Republic of)",1044854], + ["Madagascar (Republic of)",34934], + ["Malawi (Republic of)",247652], + ["Mauritius (Republic of)",28849], + ["Mayotte (Department of)",74643], + ["Mozambique (Republic of)",334665], + ["Réunion",129153], + ["Rwanda (Republic of)",539932], + ["Seychelles (Republic of)",12926], + ["Somalia (Federal Republic of)",52131], + ["South Sudan (Republic of)",865552], + ["Uganda (Republic of)",1734166], + ["Tanzania (United Republic of)",509166], + ["Zambia (Republic of)",170249], + ["Zimbabwe (Republic of)",411257], + ["Angola (Republic of)",669479], + ["Cameroon (Republic of)",505692], + ["Central African Republic",90649], + ["Chad (Republic of)",512230], + ["Congo (Republic of the)",402142], + ["Congo (Democratic Republic of the)",963833], + ["Equatorial Guinea (Republic of)",227617], + ["Gabon (Gabonese Republic)",411463], + ["São Tomé and Príncipe (Democratic Republic of)",2174], + ["Botswana (Republic of)",110596], + ["Eswatini (Kingdom of)",32310], + ["Lesotho (Kingdom of)",6928], + ["Namibia (Republic of)",107561], + ["South Africa (Republic of)",4224256], + ["Benin (Republic of)",390112], + ["Burkina Faso",718338], + ["Cape Verde (Republic of)",15664], + ["Côte d'Ivoire (Republic of)",2549141], + ["Gambia (Republic of the)",215406], + ["Ghana (Republic of)",466780], + ["Guinea (Republic of)",120642], + ["Guinea-Bissau (Republic of)",26916], + ["Liberia (Republic of)",94448], + ["Mali (Republic of)",468230], + ["Mauritania (Islamic Republic of)",172987], + ["Niger (Republic of)",294161], + ["Nigeria (Federal Republic of)",1256408], + ["Saint Helena",433], + ["Senegal (Republic of)",275239], + ["Sierra Leone (Republic of)",54332], + ["Togo (Togolese Republic)",279142], + ["Algeria (People's Democratic Republic of)",249075], + ["Egypt (Arab Republic of)",504053], + ["Libya (State of)",818216], + ["Morocco (Kingdom of)",98574], + ["Sudan (Republic of the)",1223092], + ["Tunisia (Republic of)",57455], + ["Sahrawi Arab Democratic Republic",5384], + ["Armenia (Republic of)",190159], + ["Azerbaijan (Republic of)",253887], + ["Bahrain (Kingdom of)",741161], + ["Cyprus (Republic of)",191922], + ["Georgia",79035], + ["Iraq (Republic of)",368062], + ["Israel (State of)",1956346], + ["Jordan (Hashemite Kingdom of)",3346703], + ["Kuwait (State of)",3034845], + ["Lebanon (Lebanese Republic)",1863873], + ["Oman (Sultanate of)",2286226], + ["Qatar (State of)",2229688], + ["Saudi Arabia (Kingdom of)",13122338], + ["Syrian Arab Republic",867848], + ["Turkey (Republic of)",5876829], + ["United Arab Emirates",8587256], + ["Yemen (Republic of)",385628], + ["Kazakhstan (Republic of)",3705556], + ["Kyrgyz Republic",200260], + ["Tajikistan (Republic of)",274071], + ["Turkmenistan",195127], + ["Uzbekistan (Republic of)",1168384], + ["Afghanistan (Islamic Republic of)",149762], + ["Bangladesh (People's Republic of)",2185613], + ["Bhutan (Kingdom of)",53254], + ["India (Republic of)",5154737], + ["Iran (Islamic Republic of)",2682214], + ["Maldives (Republic of)",69249], + ["Nepal (Federal Democratic Republic of)",490802], + ["Pakistan (Islamic Republic of)",3257978], + ["Sri Lanka (Democratic Socialist Republic of)",40018], + ["China (People's Republic of)",1030871], + ["Hong Kong (Special Administrative Region of China)",2942254], + ["Macao (Special Administrative Region of China)",399572], + ["Korea (Democratic People's Republic of)",49393], + ["Japan",2498891], + ["Mongolia",21128], + ["Korea (Republic of)",1163655], + ["Brunei (Nation of the Abode of Peace)",110641], + ["Cambodia (Kingdom of)",78649], + ["Indonesia (Republic of)",353135], + ["Lao (People's Democratic Republic)",48275], + ["Malaysia",3430380], + ["Myanmar (Union of)",75998], + ["Philippines (Republic of the)",218530], + ["Singapore (Republic of)",2155653], + ["Thailand (Kingdom of)",3635085], + ["Timor-Leste (Democratic Republic of)",8417], + ["Vietnam (Socialist Republic of)",76104], + ["Anguilla",5679], + ["Antigua and Barbuda",29207], + ["Aruba",36532], + ["Bahamas (Commonwealth of the)",62962], + ["Barbados",34807], + ["British Virgin Islands",20778], + ["Bonaire (Sint Eustatius and Saba)",15484], + ["Cayman Islands",28985], + ["Cuba (Republic of)",4886], + ["Curaçao",40883], + ["Dominica (Commonwealth of)",8264], + ["Dominican Republic",567648], + ["Grenada",7124], + ["Guadeloupe",100030], + ["Haiti (Republic of)",18756], + ["Jamaica",23468], + ["Martinique",61647], + ["Montserrat",1375], + ["Puerto Rico (Commonwealth of)",266828], + ["Saint Kitts and Nevis (Federation of)",7587], + ["Saint Lucia",8383], + ["Saint Vincent and the Grenadines",4692], + ["Sint Maarten (Netherlands)",28260], + ["Trinidad and Tobago (Republic of)",59249], + ["Turks and Caicos Islands",24534], + ["United States Virgin Islands",56745], + ["Belize",59998], + ["Costa Rica (Republic of)",417768], + ["El Salvador (Republic of)",42617], + ["Guatemala (Republic of)",80421], + ["Honduras (Republic of)",38933], + ["Mexico (United Mexican States)",1060707], + ["Nicaragua (Republic of)",42172], + ["Panama (Republic of)",185072], + ["Argentina (Argentine Republic)",2212879], + ["Bolivia (Plurinational State of)",156114], + ["Brazil (Federative Republic of)",807006], + ["Chile (Republic of)",939992], + ["Colombia (Republic of)",1142319], + ["Ecuador (Republic of)",381507], + ["Falkland Islands (Malvinas)",1902], + ["French Guiana",117372], + ["Guyana (Co-operative Republic of)",15699], + ["Paraguay (Republic of)",160519], + ["Peru (Republic of)",782169], + ["Suriname (Republic of)",46157], + ["Uruguay (Oriental Republic of)",81482], + ["Venezuela (Bolivarian Republic of)",1375690], + ["Australia (Commonwealth of)",7549270], + ["New Zealand",1401866], + ["Fiji (Republic of)",14038], + ["New Caledonia",72537], + ["Papua New Guinea (Independent State of)",31212], + ["Solomon Islands",2532], + ["Vanuatu (Republic of)",3245], + ["Micronesia (Federated States of)",117978], + ["Guam",79846], + ["Kiribati (Republic of)",3022], + ["Marshall Islands (Republic of the)",3296], + ["Micronesia (Federated States of)",2819], + ["Nauru (Republic of)",2114], + ["Northern Mariana Islands (Commonwealth of the)",21815], + ["Palau (Republic of)",5066], + ["American Samoa",23539], + ["Cook Islands",3491], + ["French Polynesia",31205], + ["Niue",588], + ["Samoa (Independent State of)",4035], + ["Tokelau",504], + ["Tonga (Kingdom of)",3752], + ["Tuvalu",238], + ["Wallis and Futuna",1022], + ["Belarus (Republic of)",1069395], + ["Bulgaria (Republic of)",168516], + ["Czech Republic",512705], + ["Hungary (Republic of)",512043], + ["Poland (Republic of)",655985], + ["Moldova (Republic of)",104713], + ["Romania",462552], + ["Russian Federation",11640559], + ["Slovakia (Slovak Republic)",187984], + ["Ukraine",4964293], + ["Jersey (Bailiwick of)",83833], + ["Denmark (Kingdom of)",722878], + ["Estonia (Republic of)",190242], + ["Faroe Islands",6454], + ["Finland (Republic of)",383116], + ["Iceland (Republic of)",52404], + ["Ireland",833564], + ["Isle of Man",42864], + ["Latvia (Republic of)",237266], + ["Lithuania (Republic of)",117218], + ["Norway (Kingdom of)",867765], + ["Sweden (Kingdom of)",2005210], + ["United Kingdom (of Great Britain & Northern Ireland)",9552110], + ["Albania (Republic of)",49160], + ["Andorra (Principality of)",45102], + ["Bosnia and Herzegovina",35735], + ["Croatia (Republic of)",518083], + ["Gibraltar",11172], + ["Greece (Hellenic Republic)",1211382], + ["Holy See (Vatican City State)",799], + ["Italy (Italian Republic)",6273722], + ["Malta (Republic of)",84949], + ["Montenegro",70967], + ["North Macedonia (Republic of)",131175], + ["Portugal (Portuguese Republic)",888162], + ["San Marino (Republic of)",5507], + ["Serbia (Republic of)",820312], + ["Slovenia (Republic of)",253122], + ["Spain (Kingdom of)",7231195], + ["Austria (Republic of)",1779857], + ["Belgium (Kingdom of)",1981919], + ["France (French Republic)",9589322], + ["Germany (Federal Republic of)",13132146], + ["Liechtenstein (Principality of)",25467], + ["Luxembourg (Grand Duchy of)",291723], + ["Monaco (Principality of)",26511], + ["Netherlands (Kingdom of the)",2282791], + ["Switzerland (Swiss Confederation)",2572029], + ["Bermuda",19336], + ["Canada",7960657], + ["Greenland",5690], + ["Saint Pierre and Miquelon",990] + ] +} diff --git a/data/global/demographics/migration/migration-net-rate.json b/data/global/demographics/migration/migration-net-rate.json new file mode 100644 index 0000000..b17f296 --- /dev/null +++ b/data/global/demographics/migration/migration-net-rate.json @@ -0,0 +1,242 @@ +{ + "metadata" : { + "name" : "Net Migration Rate", + "description" : "Net Migration Rate is the difference between the number of persons entering and leaving a country during the year, per 1,000 persons (based on midyear population).", + "units" : "migrants/1000 popluation", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","migrants","migration"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_net_migration_rate" + ] + }, + "data" : [ + ["country.name","migration.rate.net"], + ["Afghanistan (Islamic Republic of)",-0.1], + ["Albania (Republic of)",-3.2], + ["Algeria (People's Democratic Republic of)",-0.8], + ["American Samoa",-29.8], + ["Andorra (Principality of)",0], + ["Angola (Republic of)",-0.2], + ["Anguilla",10.7], + ["Antigua and Barbuda",2], + ["Argentina (Argentine Republic)",-0.1], + ["Armenia (Republic of)",-5.4], + ["Aruba",8.2], + ["Australia (Commonwealth of)",6.9], + ["Austria (Republic of)",3.6], + ["Azerbaijan (Republic of)",0], + ["Bahamas (Commonwealth of the)",-1], + ["Bangladesh (People's Republic of)",-2.9], + ["Barbados",-0.3], + ["Belarus (Republic of)",0.7], + ["Belgium (Kingdom of)",4.4], + ["Belize",-0.1], + ["Benin (Republic of)",0.2], + ["Bermuda",1.5], + ["Bhutan (Kingdom of)",0], + ["Bolivia (Plurinational State of)",-0.1], + ["Bosnia and Herzegovina",-0.4], + ["Botswana (Republic of)",2.8], + ["Brazil (Federative Republic of)",-0.2], + ["British Virgin Islands",13.6], + ["Brunei (Nation of the Abode of Peace)",2.2], + ["Bulgaria (Republic of)",-0.3], + ["Burkina Faso",-0.6], + ["Burma",-1.4], + ["Burundi (Republic of)",7.1], + ["Cambodia (Kingdom of)",-2.7], + ["Cameroon (Republic of)",-0.3], + ["Canada",5.5], + ["Cape Verde (Republic of)",-0.6], + ["Cayman Islands",12.6], + ["Central African Republic",-3.2], + ["Chad (Republic of)",-0.1], + ["Chile (Republic of)",0.3], + ["China (People's Republic of)",-0.1], + ["Colombia (Republic of)",-1.6], + ["Comoros (Union of the)",-2.3], + ["Congo (Democratic Republic of the)",-0.7], + ["Congo (Republic of the)",-0.7], + ["Costa Rica (Republic of)",0.8], + ["Côte d'Ivoire (Republic of)",1.2], + ["Croatia (Republic of)",-0.5], + ["Cuba (Republic of)",-2.9], + ["Curaçao",-1.3], + ["Cyprus (Republic of)",7], + ["Czech Republic",2.3], + ["Denmark (Kingdom of)",2.7], + ["Djibouti (Republic of)",4.6], + ["Dominica (Commonwealth of)",-5.3], + ["Dominican Republic",-2.7], + ["Ecuador (Republic of)",0], + ["Egypt (Arab Republic of)",-0.3], + ["El Salvador (Republic of)",-6.3], + ["Equatorial Guinea (Republic of)",14], + ["Eritrea (State of)",-10.1], + ["Estonia (Republic of)",-2.8], + ["Eswatini (Kingdom of)",-6.2], + ["Ethiopia (Federal Democratic Republic of)",-0.2], + ["Faroe Islands",0], + ["Fiji (Republic of)",-5.9], + ["Finland (Republic of)",2.4], + ["France (French Republic)",1], + ["French Polynesia",-0.6], + ["Gabon (Gabonese Republic)",-3.7], + ["Gambia (Republic of the)",0], + ["Palestine (State of)",-4.6], + ["Georgia",0], + ["Germany (Federal Republic of)",1.8], + ["Ghana (Republic of)",-0.2], + ["Gibraltar",-3.3], + ["Greece (Hellenic Republic)",1], + ["Greenland",-5], + ["Grenada",-2.4], + ["Guam",-11], + ["Guatemala (Republic of)",-1.7], + ["Guernsey (Bailiwick of)",1.7], + ["Guinea (Republic of)",0], + ["Guinea-Bissau (Republic of)",-3.6], + ["Guyana (Co-operative Republic of)",-7.4], + ["Haiti (Republic of)",-1.9], + ["Honduras (Republic of)",-1.3], + ["Hong Kong (Special Administrative Region of China)",1.7], + ["Hungary (Republic of)",1.2], + ["Iceland (Republic of)",2.9], + ["India (Republic of)",0.2], + ["Indonesia (Republic of)",-0.8], + ["Iran (Islamic Republic of)",-0.3], + ["Iraq (Republic of)",-0.8], + ["Ireland",3.8], + ["Isle of Man",4.7], + ["Israel (State of)",2], + ["Italy (Italian Republic)",3], + ["Jamaica",-7.7], + ["Japan",0.7], + ["Jersey (Bailiwick of)",1.7], + ["Jordan (Hashemite Kingdom of)",-11.1], + ["Kazakhstan (Republic of)",0.4], + ["Kenya (Republic of)",-0.2], + ["Kiribati (Republic of)",-2.8], + ["Korea (Democratic People's Republic of)",0], + ["Korea (Republic of)",0], + ["Kuwait (State of)",-3.9], + ["Kyrgyz Republic",-4.9], + ["Lao (People's Democratic Republic)",-1.2], + ["Latvia (Republic of)",-5.2], + ["Lebanon (Lebanese Republic)",-0.1], + ["Lesotho (Kingdom of)",-4.6], + ["Liberia (Republic of)",-2.7], + ["Libya (State of)",-1.6], + ["Liechtenstein (Principality of)",4.8], + ["Lithuania (Republic of)",-4.5], + ["Luxembourg (Grand Duchy of)",12], + ["Macao (Special Administrative Region of China)",3.2], + ["Madagascar (Republic of)",0], + ["Malawi (Republic of)",0], + ["Malaysia",1.5], + ["Maldives (Republic of)",-12.8], + ["Mali (Republic of)",-3.1], + ["Malta (Republic of)",5.5], + ["Marshall Islands (Republic of the)",-4.4], + ["Mauritania (Islamic Republic of)",-0.7], + ["Mauritius (Republic of)",-0.7], + ["Mexico (United Mexican States)",-0.8], + ["Micronesia (Federated States of)",-20.9], + ["Moldova (Republic of)",-8.8], + ["Monaco (Principality of)",10], + ["Mongolia",-0.8], + ["Montserrat",0], + ["Morocco (Kingdom of)",-1.7], + ["Mozambique (Republic of)",-1.6], + ["Namibia (Republic of)",0], + ["Nauru (Republic of)",-10.6], + ["Nepal (Federal Democratic Republic of)",-4.2], + ["Netherlands (Kingdom of the)",1.9], + ["New Caledonia",3.7], + ["New Zealand",5.8], + ["Nicaragua (Republic of)",-2.2], + ["Niger (Republic of)",-0.6], + ["Nigeria (Federal Republic of)",-0.2], + ["North Macedonia (Republic of)",-0.4], + ["Northern Mariana Islands (Commonwealth of the)",-13.6], + ["Norway (Kingdom of)",3.9], + ["Oman (Sultanate of)",-0.5], + ["Pakistan (Islamic Republic of)",-1], + ["Palau (Republic of)",0.6], + ["Panama (Republic of)",3.4], + ["Papua New Guinea (Independent State of)",0], + ["Paraguay (Republic of)",-0.1], + ["Peru (Republic of)",-0.8], + ["Philippines (Republic of the)",-0.1], + ["Poland (Republic of)",-0.3], + ["Portugal (Portuguese Republic)",1], + ["Puerto Rico (Commonwealth of)",-11.9], + ["Qatar (State of)",2.5], + ["Romania",-4.4], + ["Russian Federation",1.7], + ["Rwanda (Republic of)",-3.2], + ["Saint Helena",0], + ["Saint Kitts and Nevis (Federation of)",1.1], + ["Saint Lucia",-1.1], + ["Saint Pierre and Miquelon",-7.2], + ["Saint Vincent and the Grenadines",-6.5], + ["Samoa (Independent State of)",-7.5], + ["San Marino (Republic of)",7.5], + ["São Tomé and Príncipe (Democratic Republic of)",-7.2], + ["Saudi Arabia (Kingdom of)",5.5], + ["Senegal (Republic of)",-0.7], + ["Serbia (Republic of)",0], + ["Seychelles (Republic of)",0.8], + ["Sierra Leone (Republic of)",-2], + ["Singapore (Republic of)",4.1], + ["Sint Maarten (Netherlands)",6.1], + ["Slovakia (Slovak Republic)",0.2], + ["Slovenia (Republic of)",1.5], + ["Solomon Islands",-1.5], + ["Somalia (Federal Republic of)",-2.2], + ["South Africa (Republic of)",0], + ["South Sudan (Republic of)",21.1], + ["Spain (Kingdom of)",4.4], + ["Sri Lanka (Democratic Socialist Republic of)",-1.2], + ["Sudan (Republic of the)",-1.7], + ["Suriname (Republic of)",2.5], + ["Sweden (Kingdom of)",3.6], + ["Switzerland (Swiss Confederation)",4.5], + ["Taiwan",0.9], + ["Tajikistan (Republic of)",-1], + ["Tanzania (United Republic of)",-0.4], + ["Thailand (Kingdom of)",-0.1], + ["Timor-Leste (Democratic Republic of)",-3.8], + ["Togo (Togolese Republic)",-1.8], + ["Tonga (Kingdom of)",-18], + ["Trinidad and Tobago (Republic of)",-1], + ["Tunisia (Republic of)",-1.3], + ["Turkey (Republic of)",-1.5], + ["Turkmenistan",-1.7], + ["Turks and Caicos Islands",8.6], + ["Tuvalu",-6.4], + ["United States Virgin Islands",-7.4], + ["Uganda (Republic of)",-3.3], + ["Ukraine",-0.3], + ["United Arab Emirates",-3.5], + ["United Kingdom (of Great Britain & Northern Ireland)",3.6], + ["United States (of America)",3], + ["Uruguay (Oriental Republic of)",-0.9], + ["Uzbekistan (Republic of)",-1.8], + ["Vanuatu (Republic of)",-1.3], + ["Venezuela (Bolivarian Republic of)",13.9], + ["Vietnam (Socialist Republic of)",-0.2], + ["Wallis and Futuna",-4], + ["Palestine (State of)",-4.1], + ["Yemen (Republic of)",0.2], + ["Zambia (Republic of)",0.2], + ["Zimbabwe (Republic of)",-4.8] + ] +} diff --git a/data/global/demographics/population.json b/data/global/demographics/population.json new file mode 100644 index 0000000..eb4050a --- /dev/null +++ b/data/global/demographics/population.json @@ -0,0 +1,263 @@ +{ + "metadata" : { + "name" : "National Population", + "description" : "National population is the total number of people living in a country.", + "units" : "people", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics"], + "authors" : [ + "Various government census" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_population" + ] + }, + "data" : [ + ["country.name","population"], + ["China (People's Republic of)",1411750000], + ["India (Republic of)",1375586000], + ["United States (of America)",334233854], + ["Indonesia (Republic of)",275773800], + ["Pakistan (Islamic Republic of)",235825000], + ["Nigeria (Federal Republic of)",218541000], + ["Brazil (Federative Republic of)",215755510], + ["Bangladesh (People's Republic of)",165158616], + ["Russian Federation",146424729], + ["Mexico (United Mexican States)",128665641], + ["Japan",124770000], + ["Philippines (Republic of the)",110515406], + ["Ethiopia (Federal Democratic Republic of)",105163988], + ["Egypt (Arab Republic of)",104429669], + ["Vietnam (Socialist Republic of)",99460000], + ["Congo (Democratic Republic of the)",99010000], + ["Iran (Islamic Republic of)",86179304], + ["Turkey (Republic of)",85279553], + ["Germany (Federal Republic of)",84270625], + ["France (French Republic)",68042591], + ["United Kingdom (of Great Britain & Northern Ireland)",67026292], + ["Thailand (Kingdom of)",66893155], + ["Tanzania (United Republic of)",61741120], + ["South Africa (Republic of)",60604992], + ["Italy (Italian Republic)",58887359], + ["Myanmar (Union of)",55294979], + ["Korea (Republic of)",51439038], + ["Colombia (Republic of)",51049498], + ["Spain (Kingdom of)",47615034], + ["Kenya (Republic of)",47564296], + ["Argentina (Argentine Republic)",46044703], + ["Algeria (People's Democratic Republic of)",45400000], + ["Sudan (Republic of the)",45144080], + ["Uganda (Republic of)",42885900], + ["Iraq (Republic of)",41190700], + ["Ukraine",41130432], + ["Canada",39110420], + ["Poland (Republic of)",37785000], + ["Morocco (Kingdom of)",36863432], + ["Uzbekistan (Republic of)",36044639], + ["Saudi Arabia (Kingdom of)",35013414], + ["Yemen (Republic of)",33697000], + ["Peru (Republic of)",33396698], + ["Angola (Republic of)",33086278], + ["Afghanistan (Islamic Republic of)",32890171], + ["Malaysia",32769600], + ["Mozambique (Republic of)",31616078], + ["Ghana (Republic of)",30832019], + ["Côte d'Ivoire (Republic of)",29389150], + ["Nepal (Federal Democratic Republic of)",29192480], + ["Venezuela (Bolivarian Republic of)",28302000], + ["Madagascar (Republic of)",26923353], + ["Australia (Commonwealth of)",26047251], + ["Korea (Democratic People's Republic of)",25660000], + ["Cameroon (Republic of)",24348251], + ["Niger (Republic of)",24112753], + ["Taiwan",23375314], + ["Mali (Republic of)",22594000], + ["Sri Lanka (Democratic Socialist Republic of)",22181000], + ["Syrian Arab Republic",22125000], + ["Burkina Faso",21510181], + ["Malawi (Republic of)",21507723], + ["Chile (Republic of)",19828563], + ["Kazakhstan (Republic of)",19409312], + ["Zambia (Republic of)",19610769], + ["Romania",19053815], + ["Ecuador (Republic of)",18162468], + ["Netherlands (Kingdom of the)",17794610], + ["Somalia (Federal Republic of)",17598000], + ["Senegal (Republic of)",17223497], + ["Guatemala (Republic of)",17109746], + ["Chad (Republic of)",16818391], + ["Cambodia (Kingdom of)",15552211], + ["Zimbabwe (Republic of)",15178979], + ["South Sudan (Republic of)",13249924], + ["Rwanda (Republic of)",12955768], + ["Guinea (Republic of)",12907395], + ["Burundi (Republic of)",12574571], + ["Benin (Republic of)",12506347], + ["Bolivia (Plurinational State of)",12006031], + ["Tunisia (Republic of)",11803588], + ["Haiti (Republic of)",11743017], + ["Belgium (Kingdom of)",11730564], + ["Jordan (Hashemite Kingdom of)",11405252], + ["Cuba (Republic of)",11113215], + ["Dominican Republic",10535535], + ["Czech Republic",10526937], + ["Sweden (Kingdom of)",10520558], + ["Greece (Hellenic Republic)",10432481], + ["Portugal (Portuguese Republic)",10344802], + ["Azerbaijan (Republic of)",10215045], + ["Hungary (Republic of)",9678000], + ["Israel (State of)",9675680], + ["Honduras (Republic of)",9546178], + ["Tajikistan (Republic of)",9506000], + ["United Arab Emirates",9282410], + ["Belarus (Republic of)",9255524], + ["Papua New Guinea (Independent State of)",9122994], + ["Austria (Republic of)",9090868], + ["Switzerland (Swiss Confederation)",8789726], + ["Sierra Leone (Republic of)",8494260], + ["Togo (Togolese Republic)",7886000], + ["Hong Kong (Special Administrative Region of China)",7403100], + ["Paraguay (Republic of)",7353038], + ["Lao (People's Democratic Republic)",7337783], + ["Kyrgyz Republic",7000000], + ["El Salvador (Republic of)",6825935], + ["Libya (State of)",6812000], + ["Serbia (Republic of)",6690887], + ["Nicaragua (Republic of)",6595674], + ["Bulgaria (Republic of)",6520314], + ["Turkmenistan",6431000], + ["Congo (Republic of the)",5970000], + ["Denmark (Kingdom of)",5928364], + ["Central African Republic",5633412], + ["Finland (Republic of)",5528796], + ["Lebanon (Lebanese Republic)",5490000], + ["Palestine (State of)",5483450], + ["Norway (Kingdom of)",5475240], + ["Singapore (Republic of)",5453600], + ["Slovakia (Slovak Republic)",5431344], + ["Costa Rica (Republic of)",5163038], + ["New Zealand",5141113], + ["Ireland",5123536], + ["Kuwait (State of)",4670713], + ["Liberia (Republic of)",4661010], + ["Oman (Sultanate of)",4527446], + ["Panama (Republic of)",4278500], + ["Mauritania (Islamic Republic of)",4271197], + ["Croatia (Republic of)",3871833], + ["Georgia",3688600], + ["Eritrea (State of)",3684000], + ["Uruguay (Oriental Republic of)",3554915], + ["Mongolia",3481702], + ["Bosnia and Herzegovina",3320954], + ["Puerto Rico (Commonwealth of)",3285874], + ["Armenia (Republic of)",2963900], + ["Lithuania (Republic of)",2839020], + ["Albania (Republic of)",2829741], + ["Qatar (State of)",2799202], + ["Jamaica",2734093], + ["Gambia (Republic of the)",2706000], + ["Moldova (Republic of)",2597100], + ["Namibia (Republic of)",2550226], + ["Botswana (Republic of)",2410338], + ["Lesotho (Kingdom of)",2306000], + ["Gabon (Gabonese Republic)",2233272], + ["Slovenia (Republic of)",2108977], + ["Latvia (Republic of)",1895400], + ["North Macedonia (Republic of)",1832696], + ["Kosovo (Republic of)",1798188], + ["Guinea-Bissau (Republic of)",1646077], + ["Equatorial Guinea (Republic of)",1505588], + ["Bahrain (Kingdom of)",1501635], + ["Trinidad and Tobago (Republic of)",1367558], + ["Estonia (Republic of)",1331796], + ["Timor-Leste (Democratic Republic of)",1317780], + ["Mauritius (Republic of)",1266334], + ["Eswatini (Kingdom of)",1202000], + ["Djibouti (Republic of)",976107], + ["Cyprus (Republic of)",918100], + ["Fiji (Republic of)",898402], + ["Bhutan (Kingdom of)",763200], + ["Comoros (Union of the)",758316], + ["Guyana (Co-operative Republic of)",743699], + ["Solomon Islands",728041], + ["Macao (Special Administrative Region of China)",683200], + ["Luxembourg (Grand Duchy of)",645397], + ["Montenegro",617683], + ["Suriname (Republic of)",598000], + ["Sahrawi Arab Democratic Republic",576000], + ["Cape Verde (Republic of)",563198], + ["Malta (Republic of)",519562], + ["Belize",441471], + ["Brunei (Nation of the Abode of Peace)",429999], + ["Bahamas (Commonwealth of the)",393450], + ["Iceland (Republic of)",385230], + ["Maldives (Republic of)",383135], + ["Cyprus (Republic of)",382836], + ["Translistria (Pridnestrovian Moldavian Republic)",306000], + ["Vanuatu (Republic of)",301295], + ["Barbados",282000], + ["French Polynesia",279890], + ["New Caledonia",273674], + ["Abkhazia (Republic of)",245424], + ["São Tomé and Príncipe (Democratic Republic of)",214610], + ["Samoa (Independent State of)",199853], + ["Saint Lucia",178696], + ["Guam",153836], + ["Curaçao",153671], + ["Artsakh (Republic of)",148900], + ["Grenada",125000], + ["Kiribati (Republic of)",120740], + ["Aruba",111050], + ["Saint Vincent and the Grenadines",110696], + ["Jersey (Bailiwick of)",107800], + ["Micronesia (Federated States of)",105754], + ["Antigua and Barbuda",100772], + ["Seychelles (Republic of)",100447], + ["Tonga (Kingdom of)",100179], + ["United States Virgin Islands",87146], + ["Isle of Man",84069], + ["Andorra (Principality of)",81057], + ["Dominica (Commonwealth of)",73000], + ["Cayman Islands",71105], + ["Bermuda",64055], + ["Guernsey (Bailiwick of)",63823], + ["Greenland",56619], + ["Faroe Islands",54227], + ["South Ossetia (Republic of) (the State of Alania)",53532], + ["American Samoa",49710], + ["Saint Kitts and Nevis (Federation of)",48000], + ["Northern Mariana Islands (Commonwealth of the)",47329], + ["Turks and Caicos Islands",44542], + ["Sint Maarten (Netherlands)",42577], + ["Liechtenstein (Principality of)",39444], + ["Marshall Islands (Republic of the)",39262], + ["Monaco (Principality of)",39150], + ["San Marino (Republic of)",33785], + ["Gibraltar",33000], + ["Saint Martin",32489], + ["British Virgin Islands",31000], + ["Åland Islands",30402], + ["Palau (Republic of)",16733], + ["Anguilla",15701], + ["Cook Islands",15040], + ["Nauru (Republic of)",11832], + ["Wallis and Futuna",11369], + ["Tuvalu",10679], + ["Saint Barthelemy",10289], + ["Saint Pierre and Miquelon",5974], + ["Saint Helena","Ascension and Tristan da Cunha(United Kingdom)"], + ["Montserrat",4400], + ["Falkland Islands (Malvinas)",3800], + ["Norfolk Island",2188], + ["Christmas Island",1692], + ["Tokelau",1647], + ["Niue",1549], + ["Holy See (Vatican City State)",825], + ["Cocos (Keeling) Islands",593], + ["Pitcairn Islands",47] + ] +} diff --git a/data/global/demographics/sex-ratio/sex-ratio-0-14.json b/data/global/demographics/sex-ratio/sex-ratio-0-14.json new file mode 100644 index 0000000..b66c341 --- /dev/null +++ b/data/global/demographics/sex-ratio/sex-ratio-0-14.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Sex Ratio 0-14", + "description" : "The comparative number of males with respect to each female in the population aged 0-14.", + "units" : "males:females", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","gender","sex","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_sex_ratio" + ] + }, + "data" : [ + ["country.name","sex.ratio.0-14"], + ["Afghanistan (Islamic Republic of)",1.03], + ["Albania (Republic of)",1.11], + ["Algeria (People's Democratic Republic of)",1.05], + ["American Samoa",1.06], + ["Andorra (Principality of)",1.06], + ["Angola (Republic of)",0.99], + ["Anguilla",1.04], + ["Antigua and Barbuda",1.03], + ["Argentina (Argentine Republic)",1.06], + ["Armenia (Republic of)",1.12], + ["Aruba",1.01], + ["Australia (Commonwealth of)",1.06], + ["Austria (Republic of)",1.05], + ["Azerbaijan (Republic of)",1.13], + ["Bahamas (Commonwealth of the)",1.03], + ["Bahrain (Kingdom of)",1.03], + ["Bangladesh (People's Republic of)",1.04], + ["Barbados",1], + ["Belarus (Republic of)",1.06], + ["Belgium (Kingdom of)",1.05], + ["Belize",1.04], + ["Benin (Republic of)",1.02], + ["Bermuda",1.02], + ["Bhutan (Kingdom of)",1.05], + ["Bolivia (Plurinational State of)",1.04], + ["Bosnia and Herzegovina",1.07], + ["Botswana (Republic of)",1.02], + ["Brazil (Federative Republic of)",1.04], + ["Brunei (Nation of the Abode of Peace)",1.06], + ["Bulgaria (Republic of)",1.06], + ["Burkina Faso",1.03], + ["Burundi (Republic of)",1.01], + ["Cambodia (Kingdom of)",1.02], + ["Cameroon (Republic of)",1.02], + ["Canada",1.06], + ["Cape Verde (Republic of)",1.01], + ["Cayman Islands",1.01], + ["Central African Republic",1.01], + ["Chad (Republic of)",1.02], + ["Chile (Republic of)",1.04], + ["China (People's Republic of)",1.16], + ["Colombia (Republic of)",1.05], + ["Comoros (Union of the)",1], + ["Congo (Democratic Republic of the)",1.01], + ["Congo (Republic of the)",1.02], + ["Cook Islands",1.12], + ["Costa Rica (Republic of)",1.05], + ["Croatia (Republic of)",1.06], + ["Cuba (Republic of)",1.06], + ["Curaçao",1.05], + ["Cyprus (Republic of)",1.06], + ["Czech Republic",1.06], + ["Denmark (Kingdom of)",1.06], + ["Djibouti (Republic of)",1.01], + ["Dominica (Commonwealth of)",1.05], + ["Dominican Republic",1.03], + ["Ecuador (Republic of)",1.04], + ["Egypt (Arab Republic of)",1.07], + ["El Salvador (Republic of)",1.05], + ["Equatorial Guinea (Republic of)",1.03], + ["Eritrea (State of)",1.01], + ["Estonia (Republic of)",1.05], + ["Eswatini (Kingdom of)",1], + ["Ethiopia (Federal Democratic Republic of)",1.01], + ["Falkland Islands (Malvinas)",null], + ["Faroe Islands",1.07], + ["Fiji (Republic of)",1.05], + ["Finland (Republic of)",1.05], + ["France (French Republic)",1.05], + ["French Polynesia",1.06], + ["Gabon (Gabonese Republic)",1.04], + ["Gambia (Republic of the)",1.01], + ["Georgia",1.09], + ["Germany (Federal Republic of)",1.06], + ["Ghana (Republic of)",1.01], + ["Gibraltar",1.06], + ["Greece (Hellenic Republic)",1.07], + ["Greenland",1.03], + ["Grenada",1.09], + ["Guam",1.07], + ["Guatemala (Republic of)",1.04], + ["Guernsey (Bailiwick of)",1.06], + ["Guinea (Republic of)",1.02], + ["Guinea-Bissau (Republic of)",1], + ["Guyana (Co-operative Republic of)",1.04], + ["Haiti (Republic of)",0.99], + ["Honduras (Republic of)",1.02], + ["Hong Kong (Special Administrative Region of China)",1.12], + ["Hungary (Republic of)",1.06], + ["Iceland (Republic of)",1.04], + ["India (Republic of)",1.13], + ["Indonesia (Republic of)",1.04], + ["Iran (Islamic Republic of)",1.05], + ["Iraq (Republic of)",1.04], + ["Ireland",1.05], + ["Isle of Man",1.09], + ["Israel (State of)",1.05], + ["Italy (Italian Republic)",1.05], + ["Côte d'Ivoire (Republic of)",1.01], + ["Jamaica",1.04], + ["Japan",1.06], + ["Jersey (Bailiwick of)",1.07], + ["Jordan (Hashemite Kingdom of)",1.06], + ["Kazakhstan (Republic of)",0.96], + ["Kenya (Republic of)",1.01], + ["Kiribati (Republic of)",1.04], + ["Korea (Democratic People's Republic of)",1.04], + ["Korea (Republic of)",1.06], + ["Kosovo (Republic of)",1.08], + ["Kuwait (State of)",1.09], + ["Kyrgyz Republic",1.05], + ["Lao (People's Democratic Republic)",1.02], + ["Latvia (Republic of)",1.06], + ["Lebanon (Lebanese Republic)",1.05], + ["Lesotho (Kingdom of)",1.01], + ["Liberia (Republic of)",1.02], + ["Libya (State of)",1.04], + ["Liechtenstein (Principality of)",1.21], + ["Lithuania (Republic of)",1.05], + ["Luxembourg (Grand Duchy of)",1.06], + ["Macao (Special Administrative Region of China)",1.06], + ["Madagascar (Republic of)",1.02], + ["Malawi (Republic of)",0.99], + ["Malaysia",1.06], + ["Maldives (Republic of)",1.04], + ["Mali (Republic of)",1.01], + ["Malta (Republic of)",1.07], + ["Marshall Islands (Republic of the)",1.04], + ["Mauritania (Islamic Republic of)",1.01], + ["Mauritius (Republic of)",1.04], + ["Mexico (United Mexican States)",1.05], + ["Micronesia (Federated States of)",1.03], + ["Moldova (Republic of)",1.06], + ["Monaco (Principality of)",1.06], + ["Mongolia",1.04], + ["Montenegro",1.08], + ["Montserrat",1.06], + ["Morocco (Kingdom of)",1.04], + ["Mozambique (Republic of)",1.03], + ["Myanmar (Union of)",1.05], + ["Namibia (Republic of)",1.02], + ["Nauru (Republic of)",0.79], + ["Nepal (Federal Democratic Republic of)",1.11], + ["Netherlands (Kingdom of the)",1.05], + ["New Caledonia",1.05], + ["New Zealand",1.06], + ["Nicaragua (Republic of)",1.04], + ["Niger (Republic of)",1.02], + ["Nigeria (Federal Republic of)",1.04], + ["North Macedonia (Republic of)",1.07], + ["Northern Mariana Islands (Commonwealth of the)",1.17], + ["Norway (Kingdom of)",1.05], + ["Oman (Sultanate of)",1.05], + ["Pakistan (Islamic Republic of)",1.04], + ["Palau (Republic of)",1.07], + ["Panama (Republic of)",1.04], + ["Papua New Guinea (Independent State of)",1.04], + ["Paraguay (Republic of)",1.04], + ["Peru (Republic of)",1.04], + ["Philippines (Republic of the)",1.04], + ["Poland (Republic of)",1.06], + ["Portugal (Portuguese Republic)",1.05], + ["Puerto Rico (Commonwealth of)",1.04], + ["Qatar (State of)",1.02], + ["Romania",1.06], + ["Russian Federation",1.06], + ["Rwanda (Republic of)",1.02], + ["Saint Barthelemy",1.06], + ["Saint Helena",1.04], + ["Saint Kitts and Nevis (Federation of)",1], + ["Saint Lucia",1.06], + ["Saint Martin",0.99], + ["Saint Pierre and Miquelon",1.07], + ["Saint Vincent and the Grenadines",1.02], + ["Samoa (Independent State of)",1.07], + ["San Marino (Republic of)",1.12], + ["São Tomé and Príncipe (Democratic Republic of)",1.03], + ["Saudi Arabia (Kingdom of)",1.04], + ["Senegal (Republic of)",1.01], + ["Serbia (Republic of)",1.06], + ["Seychelles (Republic of)",1.06], + ["Sierra Leone (Republic of)",1], + ["Singapore (Republic of)",1.05], + ["Sint Maarten (Netherlands)",1.08], + ["Slovakia (Slovak Republic)",1.06], + ["Slovenia (Republic of)",1.05], + ["Solomon Islands",1.06], + ["Somalia (Federal Republic of)",1], + ["South Africa (Republic of)",1], + ["South Sudan (Republic of)",1.04], + ["Spain (Kingdom of)",1.06], + ["Sri Lanka (Democratic Socialist Republic of)",1.04], + ["Sudan (Republic of the)",1.03], + ["Suriname (Republic of)",1.04], + ["Sweden (Kingdom of)",1.06], + ["Switzerland (Swiss Confederation)",1.06], + ["Syrian Arab Republic",1.05], + ["Taiwan",1.05], + ["Tajikistan (Republic of)",1.04], + ["Tanzania (United Republic of)",1.02], + ["Thailand (Kingdom of)",1.05], + ["Timor-Leste (Democratic Republic of)",1.06], + ["Togo (Togolese Republic)",1.01], + ["Tonga (Kingdom of)",1.03], + ["Trinidad and Tobago (Republic of)",1.04], + ["Tunisia (Republic of)",1.07], + ["Turkey (Republic of)",1.05], + ["Turkmenistan",1.03], + ["Turks and Caicos Islands",1.04], + ["Tuvalu",1.05], + ["Uganda (Republic of)",1.02], + ["Ukraine",1.06], + ["United Arab Emirates",1.07], + ["United Kingdom (of Great Britain & Northern Ireland)",1.05], + ["United States (of America)",1.04], + ["Uruguay (Oriental Republic of)",1.04], + ["Uzbekistan (Republic of)",1.05], + ["Vanuatu (Republic of)",1.04], + ["Holy See (Vatican City State)",null], + ["Venezuela (Bolivarian Republic of)",1.05], + ["Vietnam (Socialist Republic of)",1.11], + ["British Virgin Islands",0.97], + ["United States Virgin Islands",1.05], + ["Wallis and Futuna",1.09], + ["Palestine (State of)",1.05], + ["Sahrawi Arab Democratic Republic",1.02], + ["Yemen (Republic of)",1.04], + ["Zambia (Republic of)",1.01], + ["Zimbabwe (Republic of)",0.98] + ] +} diff --git a/data/global/demographics/sex-ratio/sex-ratio-15–24.json b/data/global/demographics/sex-ratio/sex-ratio-15–24.json new file mode 100644 index 0000000..44f567d --- /dev/null +++ b/data/global/demographics/sex-ratio/sex-ratio-15–24.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Sex Ratio 15–24", + "description" : "The comparative number of males with respect to each female in the population aged 15-24.", + "units" : "males:females", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","gender","sex","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_sex_ratio" + ] + }, + "data" : [ + ["country.name","sex.ratio.15–24"], + ["Afghanistan (Islamic Republic of)",1.03], + ["Albania (Republic of)",1.09], + ["Algeria (People's Democratic Republic of)",1.05], + ["American Samoa",1.01], + ["Andorra (Principality of)",1.06], + ["Angola (Republic of)",0.95], + ["Anguilla",1.02], + ["Antigua and Barbuda",0.99], + ["Argentina (Argentine Republic)",1.05], + ["Armenia (Republic of)",1.1], + ["Aruba",1.01], + ["Australia (Commonwealth of)",1.09], + ["Austria (Republic of)",1.03], + ["Azerbaijan (Republic of)",1.14], + ["Bahamas (Commonwealth of the)",1.03], + ["Bahrain (Kingdom of)",1.31], + ["Bangladesh (People's Republic of)",1], + ["Barbados",0.98], + ["Belarus (Republic of)",1.06], + ["Belgium (Kingdom of)",1.04], + ["Belize",1.07], + ["Benin (Republic of)",0.99], + ["Bermuda",1.01], + ["Bhutan (Kingdom of)",1.04], + ["Bolivia (Plurinational State of)",1.03], + ["Bosnia and Herzegovina",1.07], + ["Botswana (Republic of)",0.97], + ["Brazil (Federative Republic of)",1.03], + ["Brunei (Nation of the Abode of Peace)",1], + ["Bulgaria (Republic of)",1.08], + ["Burkina Faso",1.01], + ["Burundi (Republic of)",1], + ["Cambodia (Kingdom of)",0.99], + ["Cameroon (Republic of)",1.01], + ["Canada",1.07], + ["Cape Verde (Republic of)",1], + ["Cayman Islands",1], + ["Central African Republic",1.01], + ["Chad (Republic of)",1.01], + ["Chile (Republic of)",1.04], + ["China (People's Republic of)",1.17], + ["Colombia (Republic of)",1.04], + ["Comoros (Union of the)",0.94], + ["Congo (Democratic Republic of the)",1.01], + ["Congo (Republic of the)",1.01], + ["Cook Islands",1.15], + ["Costa Rica (Republic of)",1.04], + ["Croatia (Republic of)",1.05], + ["Cuba (Republic of)",1.08], + ["Curaçao",1.06], + ["Cyprus (Republic of)",1.2], + ["Czech Republic",1.07], + ["Denmark (Kingdom of)",1.05], + ["Djibouti (Republic of)",0.89], + ["Dominica (Commonwealth of)",1.06], + ["Dominican Republic",1.03], + ["Ecuador (Republic of)",1.04], + ["Egypt (Arab Republic of)",1.07], + ["El Salvador (Republic of)",1.03], + ["Equatorial Guinea (Republic of)",1.04], + ["Eritrea (State of)",0.99], + ["Estonia (Republic of)",1.08], + ["Eswatini (Kingdom of)",0.9], + ["Ethiopia (Federal Democratic Republic of)",1], + ["Falkland Islands (Malvinas)",null], + ["Faroe Islands",1.07], + ["Fiji (Republic of)",1.04], + ["Finland (Republic of)",1.05], + ["France (French Republic)",1.05], + ["French Polynesia",1.09], + ["Gabon (Gabonese Republic)",1.09], + ["Gambia (Republic of the)",0.98], + ["Georgia",1.14], + ["Germany (Federal Republic of)",1.04], + ["Ghana (Republic of)",0.99], + ["Gibraltar",1.07], + ["Greece (Hellenic Republic)",1.11], + ["Greenland",1.01], + ["Grenada",1.01], + ["Guam",1.16], + ["Guatemala (Republic of)",1.01], + ["Guernsey (Bailiwick of)",1.04], + ["Guinea (Republic of)",1.01], + ["Guinea-Bissau (Republic of)",0.96], + ["Guyana (Co-operative Republic of)",1.04], + ["Haiti (Republic of)",1], + ["Honduras (Republic of)",1], + ["Hong Kong (Special Administrative Region of China)",1.1], + ["Hungary (Republic of)",1.07], + ["Iceland (Republic of)",1.02], + ["India (Republic of)",1.14], + ["Indonesia (Republic of)",1.04], + ["Iran (Islamic Republic of)",1.05], + ["Iraq (Republic of)",1.03], + ["Ireland",1.02], + ["Isle of Man",1.15], + ["Israel (State of)",1.04], + ["Italy (Italian Republic)",1.01], + ["Côte d'Ivoire (Republic of)",1], + ["Jamaica",1.02], + ["Japan",1.11], + ["Jersey (Bailiwick of)",1.06], + ["Jordan (Hashemite Kingdom of)",1.11], + ["Kazakhstan (Republic of)",1.04], + ["Kenya (Republic of)",1], + ["Kiribati (Republic of)",0.97], + ["Korea (Democratic People's Republic of)",1.01], + ["Korea (Republic of)",1.1], + ["Kosovo (Republic of)",1.09], + ["Kuwait (State of)",1.21], + ["Kyrgyz Republic",1.03], + ["Lao (People's Democratic Republic)",0.99], + ["Latvia (Republic of)",1.07], + ["Lebanon (Lebanese Republic)",1.04], + ["Lesotho (Kingdom of)",0.92], + ["Liberia (Republic of)",1], + ["Libya (State of)",1.04], + ["Liechtenstein (Principality of)",1.03], + ["Lithuania (Republic of)",1.07], + ["Luxembourg (Grand Duchy of)",1.05], + ["Macao (Special Administrative Region of China)",1.12], + ["Madagascar (Republic of)",1.01], + ["Malawi (Republic of)",0.98], + ["Malaysia",1.03], + ["Maldives (Republic of)",1.27], + ["Mali (Republic of)",0.91], + ["Malta (Republic of)",1.07], + ["Marshall Islands (Republic of the)",1.04], + ["Mauritania (Islamic Republic of)",0.96], + ["Mauritius (Republic of)",1.03], + ["Mexico (United Mexican States)",1.03], + ["Micronesia (Federated States of)",1], + ["Moldova (Republic of)",1.08], + ["Monaco (Principality of)",1.09], + ["Mongolia",1.03], + ["Montenegro",1.07], + ["Montserrat",1.1], + ["Morocco (Kingdom of)",1.01], + ["Mozambique (Republic of)",1], + ["Myanmar (Union of)",1.02], + ["Namibia (Republic of)",1], + ["Nauru (Republic of)",0.85], + ["Nepal (Federal Democratic Republic of)",1.07], + ["Netherlands (Kingdom of the)",1.04], + ["New Caledonia",1.05], + ["New Zealand",1.07], + ["Nicaragua (Republic of)",1.02], + ["Niger (Republic of)",0.97], + ["Nigeria (Federal Republic of)",1.03], + ["North Macedonia (Republic of)",1.07], + ["Northern Mariana Islands (Commonwealth of the)",1.17], + ["Norway (Kingdom of)",1.05], + ["Oman (Sultanate of)",1.11], + ["Pakistan (Islamic Republic of)",1.05], + ["Palau (Republic of)",1], + ["Panama (Republic of)",1.04], + ["Papua New Guinea (Independent State of)",1.03], + ["Paraguay (Republic of)",1.01], + ["Peru (Republic of)",1.01], + ["Philippines (Republic of the)",1.04], + ["Poland (Republic of)",1.06], + ["Portugal (Portuguese Republic)",1.06], + ["Puerto Rico (Commonwealth of)",1.03], + ["Qatar (State of)",2.42], + ["Romania",1.05], + ["Russian Federation",1.05], + ["Rwanda (Republic of)",1.01], + ["Saint Barthelemy",1.11], + ["Saint Helena",1.04], + ["Saint Kitts and Nevis (Federation of)",0.94], + ["Saint Lucia",1.03], + ["Saint Martin",0.97], + ["Saint Pierre and Miquelon",1.08], + ["Saint Vincent and the Grenadines",1.02], + ["Samoa (Independent State of)",1.06], + ["San Marino (Republic of)",1.1], + ["São Tomé and Príncipe (Democratic Republic of)",1.03], + ["Saudi Arabia (Kingdom of)",1.09], + ["Senegal (Republic of)",0.99], + ["Serbia (Republic of)",1.07], + ["Seychelles (Republic of)",1.12], + ["Sierra Leone (Republic of)",0.96], + ["Singapore (Republic of)",0.96], + ["Sint Maarten (Netherlands)",1.04], + ["Slovakia (Slovak Republic)",1.05], + ["Slovenia (Republic of)",1.08], + ["Solomon Islands",1.06], + ["Somalia (Federal Republic of)",1.01], + ["South Africa (Republic of)",0.97], + ["South Sudan (Republic of)",1.05], + ["Spain (Kingdom of)",1.07], + ["Sri Lanka (Democratic Socialist Republic of)",1.04], + ["Sudan (Republic of the)",1.04], + ["Suriname (Republic of)",1.04], + ["Sweden (Kingdom of)",1.07], + ["Switzerland (Swiss Confederation)",1.05], + ["Syrian Arab Republic",1], + ["Taiwan",1.05], + ["Tajikistan (Republic of)",1.03], + ["Tanzania (United Republic of)",1.01], + ["Thailand (Kingdom of)",1.04], + ["Timor-Leste (Democratic Republic of)",1.03], + ["Togo (Togolese Republic)",1], + ["Tonga (Kingdom of)",1.05], + ["Trinidad and Tobago (Republic of)",1.09], + ["Tunisia (Republic of)",1.03], + ["Turkey (Republic of)",1.04], + ["Turkmenistan",1.01], + ["Turks and Caicos Islands",1], + ["Tuvalu",1.07], + ["Uganda (Republic of)",0.94], + ["Ukraine",1.05], + ["United Arab Emirates",1.19], + ["United Kingdom (of Great Britain & Northern Ireland)",1.05], + ["United States (of America)",1.04], + ["Uruguay (Oriental Republic of)",1.03], + ["Uzbekistan (Republic of)",1.05], + ["Vanuatu (Republic of)",0.98], + ["Holy See (Vatican City State)",null], + ["Venezuela (Bolivarian Republic of)",1.03], + ["Vietnam (Socialist Republic of)",1.09], + ["British Virgin Islands",0.92], + ["United States Virgin Islands",0.95], + ["Wallis and Futuna",1.13], + ["Palestine (State of)",1.04], + ["Sahrawi Arab Democratic Republic",1.01], + ["Yemen (Republic of)",1.03], + ["Zambia (Republic of)",1], + ["Zimbabwe (Republic of)",0.96] + ] +} diff --git a/data/global/demographics/sex-ratio/sex-ratio-25–54.json b/data/global/demographics/sex-ratio/sex-ratio-25–54.json new file mode 100644 index 0000000..0cb8fac --- /dev/null +++ b/data/global/demographics/sex-ratio/sex-ratio-25–54.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Sex Ratio 25–54", + "description" : "The comparative number of males with respect to each female in the population aged 25-54.", + "units" : "males:females", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","gender","sex","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_sex_ratio" + ] + }, + "data" : [ + ["country.name","sex.ratio.25–54"], + ["Afghanistan (Islamic Republic of)",1.03], + ["Albania (Republic of)",0.93], + ["Algeria (People's Democratic Republic of)",1.03], + ["American Samoa",0.98], + ["Andorra (Principality of)",1.04], + ["Angola (Republic of)",0.91], + ["Anguilla",0.81], + ["Antigua and Barbuda",0.85], + ["Argentina (Argentine Republic)",1], + ["Armenia (Republic of)",0.97], + ["Aruba",0.93], + ["Australia (Commonwealth of)",0.99], + ["Austria (Republic of)",1], + ["Azerbaijan (Republic of)",0.99], + ["Bahamas (Commonwealth of the)",1], + ["Bahrain (Kingdom of)",1.87], + ["Bangladesh (People's Republic of)",0.92], + ["Barbados",0.99], + ["Belarus (Republic of)",0.98], + ["Belgium (Kingdom of)",1.02], + ["Belize",0.95], + ["Benin (Republic of)",0.9], + ["Bermuda",1.01], + ["Bhutan (Kingdom of)",1.12], + ["Bolivia (Plurinational State of)",0.97], + ["Bosnia and Herzegovina",1.01], + ["Botswana (Republic of)",0.9], + ["Brazil (Federative Republic of)",0.99], + ["Brunei (Nation of the Abode of Peace)",0.9], + ["Bulgaria (Republic of)",1.06], + ["Burkina Faso",0.87], + ["Burundi (Republic of)",0.98], + ["Cambodia (Kingdom of)",0.96], + ["Cameroon (Republic of)",0.97], + ["Canada",1.01], + ["Cape Verde (Republic of)",0.95], + ["Cayman Islands",0.95], + ["Central African Republic",1], + ["Chad (Republic of)",0.93], + ["Chile (Republic of)",1], + ["China (People's Republic of)",1.05], + ["Colombia (Republic of)",0.99], + ["Comoros (Union of the)",0.9], + ["Congo (Democratic Republic of the)",1], + ["Congo (Republic of the)",1], + ["Cook Islands",0.98], + ["Costa Rica (Republic of)",1.02], + ["Croatia (Republic of)",1], + ["Cuba (Republic of)",1.01], + ["Curaçao",1], + ["Cyprus (Republic of)",1.13], + ["Czech Republic",1.06], + ["Denmark (Kingdom of)",1.02], + ["Djibouti (Republic of)",0.71], + ["Dominica (Commonwealth of)",1.03], + ["Dominican Republic",1.04], + ["Ecuador (Republic of)",0.96], + ["Egypt (Arab Republic of)",1.03], + ["El Salvador (Republic of)",0.87], + ["Equatorial Guinea (Republic of)",1.01], + ["Eritrea (State of)",0.96], + ["Estonia (Republic of)",1.04], + ["Eswatini (Kingdom of)",0.87], + ["Ethiopia (Federal Democratic Republic of)",0.99], + ["Falkland Islands (Malvinas)",null], + ["Faroe Islands",1.16], + ["Fiji (Republic of)",1.05], + ["Finland (Republic of)",1.05], + ["France (French Republic)",1.02], + ["French Polynesia",1.05], + ["Gabon (Gabonese Republic)",1.15], + ["Gambia (Republic of the)",0.96], + ["Georgia",0.97], + ["Germany (Federal Republic of)",1.01], + ["Ghana (Republic of)",0.94], + ["Gibraltar",1.06], + ["Greece (Hellenic Republic)",0.98], + ["Greenland",1.1], + ["Grenada",1.04], + ["Guam",1.07], + ["Guatemala (Republic of)",0.96], + ["Guernsey (Bailiwick of)",1.02], + ["Guinea (Republic of)",1], + ["Guinea-Bissau (Republic of)",0.9], + ["Guyana (Co-operative Republic of)",1.1], + ["Haiti (Republic of)",0.98], + ["Honduras (Republic of)",0.9], + ["Hong Kong (Special Administrative Region of China)",0.75], + ["Hungary (Republic of)",1.02], + ["Iceland (Republic of)",1.03], + ["India (Republic of)",1.07], + ["Indonesia (Republic of)",1.05], + ["Iran (Islamic Republic of)",1.04], + ["Iraq (Republic of)",1], + ["Ireland",1.01], + ["Isle of Man",1], + ["Israel (State of)",1.04], + ["Italy (Italian Republic)",0.97], + ["Côte d'Ivoire (Republic of)",1.03], + ["Jamaica",0.94], + ["Japan",0.98], + ["Jersey (Bailiwick of)",1.02], + ["Jordan (Hashemite Kingdom of)",1.18], + ["Kazakhstan (Republic of)",0.97], + ["Kenya (Republic of)",1], + ["Kiribati (Republic of)",0.93], + ["Korea (Democratic People's Republic of)",1.01], + ["Korea (Republic of)",1.08], + ["Kosovo (Republic of)",1.12], + ["Kuwait (State of)",1.69], + ["Kyrgyz Republic",0.97], + ["Lao (People's Democratic Republic)",0.98], + ["Latvia (Republic of)",1], + ["Lebanon (Lebanese Republic)",1.03], + ["Lesotho (Kingdom of)",0.95], + ["Liberia (Republic of)",0.97], + ["Libya (State of)",1.09], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.99], + ["Luxembourg (Grand Duchy of)",1.05], + ["Macao (Special Administrative Region of China)",0.81], + ["Madagascar (Republic of)",1], + ["Malawi (Republic of)",0.99], + ["Malaysia",1.02], + ["Maldives (Republic of)",1.19], + ["Mali (Republic of)",0.85], + ["Malta (Republic of)",1.08], + ["Marshall Islands (Republic of the)",1.04], + ["Mauritania (Islamic Republic of)",0.87], + ["Mauritius (Republic of)",1], + ["Mexico (United Mexican States)",0.94], + ["Micronesia (Federated States of)",0.93], + ["Moldova (Republic of)",1.04], + ["Monaco (Principality of)",1.03], + ["Mongolia",0.94], + ["Montenegro",0.99], + ["Montserrat",0.93], + ["Morocco (Kingdom of)",0.97], + ["Mozambique (Republic of)",0.87], + ["Myanmar (Union of)",0.96], + ["Namibia (Republic of)",0.93], + ["Nauru (Republic of)",1.03], + ["Nepal (Federal Democratic Republic of)",0.82], + ["Netherlands (Kingdom of the)",1.01], + ["New Caledonia",1.02], + ["New Zealand",1.02], + ["Nicaragua (Republic of)",0.91], + ["Niger (Republic of)",0.93], + ["Nigeria (Federal Republic of)",1], + ["North Macedonia (Republic of)",1.03], + ["Northern Mariana Islands (Commonwealth of the)",1.07], + ["Norway (Kingdom of)",1.07], + ["Oman (Sultanate of)",1.33], + ["Pakistan (Islamic Republic of)",1.05], + ["Palau (Republic of)",1.58], + ["Panama (Republic of)",1.03], + ["Papua New Guinea (Independent State of)",1.05], + ["Paraguay (Republic of)",1], + ["Peru (Republic of)",0.92], + ["Philippines (Republic of the)",1.04], + ["Poland (Republic of)",1.02], + ["Portugal (Portuguese Republic)",0.97], + ["Puerto Rico (Commonwealth of)",0.91], + ["Qatar (State of)",5.01], + ["Romania",1.03], + ["Russian Federation",0.97], + ["Rwanda (Republic of)",0.91], + ["Saint Barthelemy",1.19], + ["Saint Helena",0.99], + ["Saint Kitts and Nevis (Federation of)",1.05], + ["Saint Lucia",0.93], + ["Saint Martin",0.92], + ["Saint Pierre and Miquelon",0.94], + ["Saint Vincent and the Grenadines",1.08], + ["Samoa (Independent State of)",1.05], + ["San Marino (Republic of)",0.89], + ["São Tomé and Príncipe (Democratic Republic of)",0.97], + ["Saudi Arabia (Kingdom of)",1.52], + ["Senegal (Republic of)",0.86], + ["Serbia (Republic of)",1.02], + ["Seychelles (Republic of)",1.15], + ["Sierra Leone (Republic of)",0.92], + ["Singapore (Republic of)",0.95], + ["Sint Maarten (Netherlands)",0.97], + ["Slovakia (Slovak Republic)",1.02], + ["Slovenia (Republic of)",1.11], + ["Solomon Islands",1.04], + ["Somalia (Federal Republic of)",1.07], + ["South Africa (Republic of)",1.02], + ["South Sudan (Republic of)",1.05], + ["Spain (Kingdom of)",1.04], + ["Sri Lanka (Democratic Socialist Republic of)",0.97], + ["Sudan (Republic of the)",0.95], + ["Suriname (Republic of)",1.04], + ["Sweden (Kingdom of)",1.03], + ["Switzerland (Swiss Confederation)",1], + ["Syrian Arab Republic",0.97], + ["Taiwan",0.99], + ["Tajikistan (Republic of)",0.99], + ["Tanzania (United Republic of)",1.01], + ["Thailand (Kingdom of)",0.99], + ["Timor-Leste (Democratic Republic of)",0.92], + ["Togo (Togolese Republic)",0.99], + ["Tonga (Kingdom of)",0.99], + ["Trinidad and Tobago (Republic of)",1.1], + ["Tunisia (Republic of)",0.95], + ["Turkey (Republic of)",1.03], + ["Turkmenistan",0.99], + ["Turks and Caicos Islands",1.01], + ["Tuvalu",1.05], + ["Uganda (Republic of)",0.85], + ["Ukraine",0.97], + ["United Arab Emirates",3.27], + ["United Kingdom (of Great Britain & Northern Ireland)",1.05], + ["United States (of America)",1.01], + ["Uruguay (Oriental Republic of)",0.99], + ["Uzbekistan (Republic of)",0.99], + ["Vanuatu (Republic of)",0.95], + ["Holy See (Vatican City State)",null], + ["Venezuela (Bolivarian Republic of)",0.99], + ["Vietnam (Socialist Republic of)",1.03], + ["British Virgin Islands",0.88], + ["United States Virgin Islands",0.88], + ["Wallis and Futuna",1.05], + ["Palestine (State of)",1.03], + ["Sahrawi Arab Democratic Republic",0.97], + ["Yemen (Republic of)",1.05], + ["Zambia (Republic of)",1.01], + ["Zimbabwe (Republic of)",1.05] + ] +} diff --git a/data/global/demographics/sex-ratio/sex-ratio-55–64.json b/data/global/demographics/sex-ratio/sex-ratio-55–64.json new file mode 100644 index 0000000..c9fdd57 --- /dev/null +++ b/data/global/demographics/sex-ratio/sex-ratio-55–64.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Sex Ratio 55–64", + "description" : "The comparative number of males with respect to each female in the population aged 55-64.", + "units" : "males:females", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","gender","sex","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_sex_ratio" + ] + }, + "data" : [ + ["country.name","sex.ratio.55–64"], + ["Afghanistan (Islamic Republic of)",0.97], + ["Albania (Republic of)",0.95], + ["Algeria (People's Democratic Republic of)",1.01], + ["American Samoa",0.96], + ["Andorra (Principality of)",1.12], + ["Angola (Republic of)",0.89], + ["Anguilla",0.79], + ["Antigua and Barbuda",0.8], + ["Argentina (Argentine Republic)",0.94], + ["Armenia (Republic of)",0.85], + ["Aruba",0.88], + ["Australia (Commonwealth of)",0.93], + ["Austria (Republic of)",0.99], + ["Azerbaijan (Republic of)",0.88], + ["Bahamas (Commonwealth of the)",0.86], + ["Bahrain (Kingdom of)",1.67], + ["Bangladesh (People's Republic of)",0.97], + ["Barbados",0.91], + ["Belarus (Republic of)",0.79], + ["Belgium (Kingdom of)",0.99], + ["Belize",0.98], + ["Benin (Republic of)",0.92], + ["Bermuda",0.9], + ["Bhutan (Kingdom of)",1.15], + ["Bolivia (Plurinational State of)",0.85], + ["Bosnia and Herzegovina",0.95], + ["Botswana (Republic of)",0.76], + ["Brazil (Federative Republic of)",0.9], + ["Brunei (Nation of the Abode of Peace)",0.98], + ["Bulgaria (Republic of)",0.9], + ["Burkina Faso",0.76], + ["Burundi (Republic of)",0.87], + ["Cambodia (Kingdom of)",0.78], + ["Cameroon (Republic of)",0.94], + ["Canada",0.98], + ["Cape Verde (Republic of)",0.84], + ["Cayman Islands",0.92], + ["Central African Republic",0.92], + ["Chad (Republic of)",0.78], + ["Chile (Republic of)",0.9], + ["China (People's Republic of)",1.02], + ["Colombia (Republic of)",0.9], + ["Comoros (Union of the)",0.83], + ["Congo (Democratic Republic of the)",0.93], + ["Congo (Republic of the)",1.06], + ["Cook Islands",1.25], + ["Costa Rica (Republic of)",0.94], + ["Croatia (Republic of)",0.94], + ["Cuba (Republic of)",0.95], + ["Curaçao",0.77], + ["Cyprus (Republic of)",0.92], + ["Czech Republic",0.96], + ["Denmark (Kingdom of)",1], + ["Djibouti (Republic of)",0.76], + ["Dominica (Commonwealth of)",1.1], + ["Dominican Republic",1], + ["Ecuador (Republic of)",0.94], + ["Egypt (Arab Republic of)",1], + ["El Salvador (Republic of)",0.73], + ["Equatorial Guinea (Republic of)",0.78], + ["Eritrea (State of)",0.84], + ["Estonia (Republic of)",0.84], + ["Eswatini (Kingdom of)",0.74], + ["Ethiopia (Federal Democratic Republic of)",0.97], + ["Falkland Islands (Malvinas)",null], + ["Faroe Islands",1.07], + ["Fiji (Republic of)",1.02], + ["Finland (Republic of)",0.97], + ["France (French Republic)",0.93], + ["French Polynesia",1.05], + ["Gabon (Gabonese Republic)",1.04], + ["Gambia (Republic of the)",0.91], + ["Georgia",0.79], + ["Germany (Federal Republic of)",1], + ["Ghana (Republic of)",0.95], + ["Gibraltar",0.72], + ["Greece (Hellenic Republic)",0.9], + ["Greenland",1.17], + ["Grenada",1.04], + ["Guam",1.05], + ["Guatemala (Republic of)",0.87], + ["Guernsey (Bailiwick of)",0.98], + ["Guinea (Republic of)",0.94], + ["Guinea-Bissau (Republic of)",0.96], + ["Guyana (Co-operative Republic of)",0.88], + ["Haiti (Republic of)",0.92], + ["Honduras (Republic of)",0.83], + ["Hong Kong (Special Administrative Region of China)",0.87], + ["Hungary (Republic of)",0.87], + ["Iceland (Republic of)",0.98], + ["India (Republic of)",1], + ["Indonesia (Republic of)",0.85], + ["Iran (Islamic Republic of)",0.96], + ["Iraq (Republic of)",0.96], + ["Ireland",1], + ["Isle of Man",1.01], + ["Israel (State of)",0.99], + ["Italy (Italian Republic)",0.94], + ["Côte d'Ivoire (Republic of)",1.04], + ["Jamaica",0.98], + ["Japan",1], + ["Jersey (Bailiwick of)",0.95], + ["Jordan (Hashemite Kingdom of)",1.11], + ["Kazakhstan (Republic of)",0.78], + ["Kenya (Republic of)",0.96], + ["Kiribati (Republic of)",0.82], + ["Korea (Democratic People's Republic of)",0.91], + ["Korea (Republic of)",0.96], + ["Kosovo (Republic of)",1.05], + ["Kuwait (State of)",1.26], + ["Kyrgyz Republic",0.78], + ["Lao (People's Democratic Republic)",0.94], + ["Latvia (Republic of)",0.82], + ["Lebanon (Lebanese Republic)",0.91], + ["Lesotho (Kingdom of)",1.15], + ["Liberia (Republic of)",1.03], + ["Libya (State of)",0.97], + ["Liechtenstein (Principality of)",0.93], + ["Lithuania (Republic of)",0.8], + ["Luxembourg (Grand Duchy of)",1.05], + ["Macao (Special Administrative Region of China)",0.99], + ["Madagascar (Republic of)",0.97], + ["Malawi (Republic of)",0.93], + ["Malaysia",1.03], + ["Maldives (Republic of)",0.92], + ["Mali (Republic of)",1.04], + ["Malta (Republic of)",1.01], + ["Marshall Islands (Republic of the)",0.97], + ["Mauritania (Islamic Republic of)",0.83], + ["Mauritius (Republic of)",0.91], + ["Mexico (United Mexican States)",0.84], + ["Micronesia (Federated States of)",0.93], + ["Moldova (Republic of)",0.86], + ["Monaco (Principality of)",0.98], + ["Mongolia",0.83], + ["Montenegro",0.96], + ["Montserrat",0.88], + ["Morocco (Kingdom of)",0.99], + ["Mozambique (Republic of)",0.95], + ["Myanmar (Union of)",0.88], + ["Namibia (Republic of)",0.8], + ["Nauru (Republic of)",0.66], + ["Nepal (Federal Democratic Republic of)",0.9], + ["Netherlands (Kingdom of the)",0.99], + ["New Caledonia",0.94], + ["New Zealand",0.95], + ["Nicaragua (Republic of)",0.85], + ["Niger (Republic of)",0.98], + ["Nigeria (Federal Republic of)",0.96], + ["North Macedonia (Republic of)",0.97], + ["Northern Mariana Islands (Commonwealth of the)",1.19], + ["Norway (Kingdom of)",1.03], + ["Oman (Sultanate of)",1.13], + ["Pakistan (Islamic Republic of)",1.02], + ["Palau (Republic of)",0.58], + ["Panama (Republic of)",0.99], + ["Papua New Guinea (Independent State of)",1.07], + ["Paraguay (Republic of)",1.03], + ["Peru (Republic of)",0.92], + ["Philippines (Republic of the)",0.86], + ["Poland (Republic of)",0.91], + ["Portugal (Portuguese Republic)",0.84], + ["Puerto Rico (Commonwealth of)",0.85], + ["Qatar (State of)",3.4], + ["Romania",0.89], + ["Russian Federation",0.77], + ["Rwanda (Republic of)",0.81], + ["Saint Barthelemy",1.19], + ["Saint Helena",0.97], + ["Saint Kitts and Nevis (Federation of)",1.01], + ["Saint Lucia",0.86], + ["Saint Martin",0.88], + ["Saint Pierre and Miquelon",1.07], + ["Saint Vincent and the Grenadines",1.08], + ["Samoa (Independent State of)",1.04], + ["San Marino (Republic of)",0.94], + ["São Tomé and Príncipe (Democratic Republic of)",0.87], + ["Saudi Arabia (Kingdom of)",1.61], + ["Senegal (Republic of)",0.75], + ["Serbia (Republic of)",0.94], + ["Seychelles (Republic of)",1.02], + ["Sierra Leone (Republic of)",0.9], + ["Singapore (Republic of)",1], + ["Sint Maarten (Netherlands)",0.9], + ["Slovakia (Slovak Republic)",0.92], + ["Slovenia (Republic of)",0.99], + ["Solomon Islands",1.07], + ["Somalia (Federal Republic of)",1.05], + ["South Africa (Republic of)",0.87], + ["South Sudan (Republic of)",1.23], + ["Spain (Kingdom of)",0.96], + ["Sri Lanka (Democratic Socialist Republic of)",0.86], + ["Sudan (Republic of the)",1.04], + ["Suriname (Republic of)",0.98], + ["Sweden (Kingdom of)",1.01], + ["Switzerland (Swiss Confederation)",1.01], + ["Syrian Arab Republic",0.97], + ["Taiwan",0.96], + ["Tajikistan (Republic of)",0.85], + ["Tanzania (United Republic of)",0.86], + ["Thailand (Kingdom of)",0.88], + ["Timor-Leste (Democratic Republic of)",0.94], + ["Togo (Togolese Republic)",0.9], + ["Tonga (Kingdom of)",1.04], + ["Trinidad and Tobago (Republic of)",1], + ["Tunisia (Republic of)",0.98], + ["Turkey (Republic of)",0.98], + ["Turkmenistan",0.88], + ["Turks and Caicos Islands",1.11], + ["Tuvalu",0.7], + ["Uganda (Republic of)",0.85], + ["Ukraine",0.76], + ["United Arab Emirates",6.05], + ["United Kingdom (of Great Britain & Northern Ireland)",0.98], + ["United States (of America)",0.94], + ["Uruguay (Oriental Republic of)",0.89], + ["Uzbekistan (Republic of)",0.89], + ["Vanuatu (Republic of)",0.97], + ["Holy See (Vatican City State)",null], + ["Venezuela (Bolivarian Republic of)",0.92], + ["Vietnam (Socialist Republic of)",0.88], + ["British Virgin Islands",0.94], + ["United States Virgin Islands",0.91], + ["Wallis and Futuna",0.89], + ["Palestine (State of)",1.06], + ["Sahrawi Arab Democratic Republic",0.88], + ["Yemen (Republic of)",0.84], + ["Zambia (Republic of)",0.87], + ["Zimbabwe (Republic of)",0.63] + ] +} diff --git a/data/global/demographics/sex-ratio/sex-ratio-birth.json b/data/global/demographics/sex-ratio/sex-ratio-birth.json new file mode 100644 index 0000000..1f11818 --- /dev/null +++ b/data/global/demographics/sex-ratio/sex-ratio-birth.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Sex Ratio At Birth", + "description" : "The comparative number of male babies born with respect to each female baby born.", + "units" : "males:females", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","gender","sex","age","birth"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_sex_ratio" + ] + }, + "data" : [ + ["country.name","sex.ratio.birth"], + ["Afghanistan (Islamic Republic of)",1.05], + ["Albania (Republic of)",1.08], + ["Algeria (People's Democratic Republic of)",1.05], + ["American Samoa",1.06], + ["Andorra (Principality of)",1.07], + ["Angola (Republic of)",1.03], + ["Anguilla",1.03], + ["Antigua and Barbuda",1.05], + ["Argentina (Argentine Republic)",1.07], + ["Armenia (Republic of)",1.1], + ["Aruba",1.02], + ["Australia (Commonwealth of)",1.06], + ["Austria (Republic of)",1.05], + ["Azerbaijan (Republic of)",1.06], + ["Bahamas (Commonwealth of the)",1.03], + ["Bahrain (Kingdom of)",1.03], + ["Bangladesh (People's Republic of)",1.04], + ["Barbados",1.01], + ["Belarus (Republic of)",1.06], + ["Belgium (Kingdom of)",1.05], + ["Belize",1.05], + ["Benin (Republic of)",1.05], + ["Bermuda",1.02], + ["Bhutan (Kingdom of)",1.05], + ["Bolivia (Plurinational State of)",1.05], + ["Bosnia and Herzegovina",1.07], + ["Botswana (Republic of)",1.03], + ["Brazil (Federative Republic of)",1.05], + ["Brunei (Nation of the Abode of Peace)",1.05], + ["Bulgaria (Republic of)",1.06], + ["Burkina Faso",1.03], + ["Burundi (Republic of)",1.03], + ["Cambodia (Kingdom of)",1.05], + ["Cameroon (Republic of)",1.03], + ["Canada",1.05], + ["Cape Verde (Republic of)",1.03], + ["Cayman Islands",1.02], + ["Central African Republic",1.03], + ["Chad (Republic of)",1.04], + ["Chile (Republic of)",1.04], + ["China (People's Republic of)",1.11], + ["Colombia (Republic of)",1.06], + ["Comoros (Union of the)",1.03], + ["Congo (Democratic Republic of the)",1.03], + ["Congo (Republic of the)",1.03], + ["Cook Islands",1.05], + ["Costa Rica (Republic of)",1.05], + ["Croatia (Republic of)",1.06], + ["Cuba (Republic of)",1.06], + ["Curaçao",1.05], + ["Cyprus (Republic of)",1.05], + ["Czech Republic",1.05], + ["Denmark (Kingdom of)",1.07], + ["Djibouti (Republic of)",1.03], + ["Dominica (Commonwealth of)",1.05], + ["Dominican Republic",1.04], + ["Ecuador (Republic of)",1.05], + ["Egypt (Arab Republic of)",1.06], + ["El Salvador (Republic of)",1.05], + ["Equatorial Guinea (Republic of)",1.03], + ["Eritrea (State of)",1.03], + ["Estonia (Republic of)",1.05], + ["Eswatini (Kingdom of)",1.03], + ["Ethiopia (Federal Democratic Republic of)",1.03], + ["Falkland Islands (Malvinas)",null], + ["Faroe Islands",1.07], + ["Fiji (Republic of)",1.05], + ["Finland (Republic of)",1.05], + ["France (French Republic)",1.05], + ["French Polynesia",1.05], + ["Gabon (Gabonese Republic)",1.03], + ["Gambia (Republic of the)",1.03], + ["Georgia",1.05], + ["Germany (Federal Republic of)",1.05], + ["Ghana (Republic of)",1.03], + ["Gibraltar",1.07], + ["Greece (Hellenic Republic)",1.07], + ["Greenland",1.05], + ["Grenada",1.1], + ["Guam",1.07], + ["Guatemala (Republic of)",1.05], + ["Guernsey (Bailiwick of)",1.05], + ["Guinea (Republic of)",1.03], + ["Guinea-Bissau (Republic of)",1.03], + ["Guyana (Co-operative Republic of)",1.05], + ["Haiti (Republic of)",1.01], + ["Honduras (Republic of)",1.03], + ["Hong Kong (Special Administrative Region of China)",1.06], + ["Hungary (Republic of)",1.06], + ["Iceland (Republic of)",1.05], + ["India (Republic of)",1.11], + ["Indonesia (Republic of)",1.05], + ["Iran (Islamic Republic of)",1.05], + ["Iraq (Republic of)",1.05], + ["Ireland",1.06], + ["Isle of Man",1.08], + ["Israel (State of)",1.05], + ["Italy (Italian Republic)",1.06], + ["Côte d'Ivoire (Republic of)",1.03], + ["Jamaica",1.05], + ["Japan",1.06], + ["Jersey (Bailiwick of)",1.06], + ["Jordan (Hashemite Kingdom of)",1.06], + ["Kazakhstan (Republic of)",0.94], + ["Kenya (Republic of)",1.02], + ["Kiribati (Republic of)",1.05], + ["Korea (Democratic People's Republic of)",1.06], + ["Korea (Republic of)",1.05], + ["Kosovo (Republic of)",1.08], + ["Kuwait (State of)",1.05], + ["Kyrgyz Republic",1.07], + ["Lao (People's Democratic Republic)",1.04], + ["Latvia (Republic of)",1.05], + ["Lebanon (Lebanese Republic)",1.05], + ["Lesotho (Kingdom of)",1.03], + ["Liberia (Republic of)",1.03], + ["Libya (State of)",1.05], + ["Liechtenstein (Principality of)",1.26], + ["Lithuania (Republic of)",1.06], + ["Luxembourg (Grand Duchy of)",1.06], + ["Macao (Special Administrative Region of China)",1.05], + ["Madagascar (Republic of)",1.03], + ["Malawi (Republic of)",1.02], + ["Malaysia",1.07], + ["Maldives (Republic of)",1.05], + ["Mali (Republic of)",1.03], + ["Malta (Republic of)",1.04], + ["Marshall Islands (Republic of the)",1.05], + ["Mauritania (Islamic Republic of)",1.03], + ["Mauritius (Republic of)",1.05], + ["Mexico (United Mexican States)",1.05], + ["Micronesia (Federated States of)",1.05], + ["Moldova (Republic of)",1.06], + ["Monaco (Principality of)",1.03], + ["Mongolia",1.05], + ["Montenegro",1.04], + ["Montserrat",1.03], + ["Morocco (Kingdom of)",1.05], + ["Mozambique (Republic of)",1.03], + ["Myanmar (Union of)",1.06], + ["Namibia (Republic of)",1.03], + ["Nauru (Republic of)",0.84], + ["Nepal (Federal Democratic Republic of)",1.06], + ["Netherlands (Kingdom of the)",1.05], + ["New Caledonia",1.05], + ["New Zealand",1.05], + ["Nicaragua (Republic of)",1.05], + ["Niger (Republic of)",1.03], + ["Nigeria (Federal Republic of)",1.06], + ["North Macedonia (Republic of)",1.07], + ["Northern Mariana Islands (Commonwealth of the)",1.16], + ["Norway (Kingdom of)",1.05], + ["Oman (Sultanate of)",1.05], + ["Pakistan (Islamic Republic of)",1.05], + ["Palau (Republic of)",1.07], + ["Panama (Republic of)",1.04], + ["Papua New Guinea (Independent State of)",1.05], + ["Paraguay (Republic of)",1.05], + ["Peru (Republic of)",1.05], + ["Philippines (Republic of the)",1.05], + ["Poland (Republic of)",1.06], + ["Portugal (Portuguese Republic)",1.05], + ["Puerto Rico (Commonwealth of)",1.06], + ["Qatar (State of)",1.02], + ["Romania",1.06], + ["Russian Federation",1.06], + ["Rwanda (Republic of)",1.03], + ["Saint Barthelemy",1.06], + ["Saint Helena",1.06], + ["Saint Kitts and Nevis (Federation of)",1.02], + ["Saint Lucia",1.06], + ["Saint Martin",1.04], + ["Saint Pierre and Miquelon",1.06], + ["Saint Vincent and the Grenadines",1.03], + ["Samoa (Independent State of)",1.05], + ["San Marino (Republic of)",1.09], + ["São Tomé and Príncipe (Democratic Republic of)",1.03], + ["Saudi Arabia (Kingdom of)",1.05], + ["Senegal (Republic of)",1.03], + ["Serbia (Republic of)",1.07], + ["Seychelles (Republic of)",1.03], + ["Sierra Leone (Republic of)",1.03], + ["Singapore (Republic of)",1.07], + ["Sint Maarten (Netherlands)",1.05], + ["Slovakia (Slovak Republic)",1.07], + ["Slovenia (Republic of)",1.04], + ["Solomon Islands",1.05], + ["Somalia (Federal Republic of)",1.03], + ["South Africa (Republic of)",1.02], + ["South Sudan (Republic of)",1.05], + ["Spain (Kingdom of)",1.07], + ["Sri Lanka (Democratic Socialist Republic of)",1.04], + ["Sudan (Republic of the)",1.05], + ["Suriname (Republic of)",1.05], + ["Sweden (Kingdom of)",1.06], + ["Switzerland (Swiss Confederation)",1.06], + ["Syrian Arab Republic",1.06], + ["Taiwan",1.06], + ["Tajikistan (Republic of)",1.05], + ["Tanzania (United Republic of)",1.03], + ["Thailand (Kingdom of)",1.05], + ["Timor-Leste (Democratic Republic of)",1.07], + ["Togo (Togolese Republic)",1.03], + ["Tonga (Kingdom of)",1.03], + ["Trinidad and Tobago (Republic of)",1.03], + ["Tunisia (Republic of)",1.06], + ["Turkey (Republic of)",1.05], + ["Turkmenistan",1.05], + ["Turks and Caicos Islands",1.05], + ["Tuvalu",1.05], + ["Uganda (Republic of)",1.03], + ["Ukraine",1.06], + ["United Arab Emirates",1.06], + ["United Kingdom (of Great Britain & Northern Ireland)",1.05], + ["United States (of America)",1.05], + ["Uruguay (Oriental Republic of)",1.04], + ["Uzbekistan (Republic of)",1.06], + ["Vanuatu (Republic of)",1.05], + ["Holy See (Vatican City State)",null], + ["Venezuela (Bolivarian Republic of)",1.05], + ["Vietnam (Socialist Republic of)",1.09], + ["British Virgin Islands",1.05], + ["United States Virgin Islands",1.06], + ["Wallis and Futuna",1.05], + ["Palestine (State of)",1.06], + ["Sahrawi Arab Democratic Republic",1.04], + ["Yemen (Republic of)",1.05], + ["Zambia (Republic of)",1.03], + ["Zimbabwe (Republic of)",1.03] + ] +} diff --git a/data/global/demographics/sex-ratio/sex-ratio-over65.json b/data/global/demographics/sex-ratio/sex-ratio-over65.json new file mode 100644 index 0000000..a2919ae --- /dev/null +++ b/data/global/demographics/sex-ratio/sex-ratio-over65.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Sex Ratio Over 65", + "description" : "The comparative number of males with respect to each female in the population over age 65.", + "units" : "males:females", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","gender","sex","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_sex_ratio" + ] + }, + "data" : [ + ["country.name","sex.ratio.over65"], + ["Afghanistan (Islamic Republic of)",0.85], + ["Albania (Republic of)",0.87], + ["Algeria (People's Democratic Republic of)",0.89], + ["American Samoa",0.86], + ["Andorra (Principality of)",1.03], + ["Angola (Republic of)",0.72], + ["Anguilla",0.98], + ["Antigua and Barbuda",0.75], + ["Argentina (Argentine Republic)",0.73], + ["Armenia (Republic of)",0.68], + ["Aruba",0.65], + ["Australia (Commonwealth of)",0.86], + ["Austria (Republic of)",0.78], + ["Azerbaijan (Republic of)",0.69], + ["Bahamas (Commonwealth of the)",0.63], + ["Bahrain (Kingdom of)",1.04], + ["Bangladesh (People's Republic of)",0.89], + ["Barbados",0.7], + ["Belarus (Republic of)",0.48], + ["Belgium (Kingdom of)",0.78], + ["Belize",0.94], + ["Benin (Republic of)",0.84], + ["Bermuda",0.74], + ["Bhutan (Kingdom of)",1.08], + ["Bolivia (Plurinational State of)",0.78], + ["Bosnia and Herzegovina",0.67], + ["Botswana (Republic of)",0.71], + ["Brazil (Federative Republic of)",0.74], + ["Brunei (Nation of the Abode of Peace)",0.95], + ["Bulgaria (Republic of)",0.67], + ["Burkina Faso",0.76], + ["Burundi (Republic of)",0.75], + ["Cambodia (Kingdom of)",0.59], + ["Cameroon (Republic of)",0.88], + ["Canada",0.84], + ["Cape Verde (Republic of)",0.6], + ["Cayman Islands",0.85], + ["Central African Republic",0.64], + ["Chad (Republic of)",0.76], + ["Chile (Republic of)",0.72], + ["China (People's Republic of)",0.9], + ["Colombia (Republic of)",0.72], + ["Comoros (Union of the)",0.81], + ["Congo (Democratic Republic of the)",0.76], + ["Congo (Republic of the)",0.81], + ["Cook Islands",0.94], + ["Costa Rica (Republic of)",0.85], + ["Croatia (Republic of)",0.69], + ["Cuba (Republic of)",0.83], + ["Curaçao",0.68], + ["Cyprus (Republic of)",0.76], + ["Czech Republic",0.72], + ["Denmark (Kingdom of)",0.85], + ["Djibouti (Republic of)",0.8], + ["Dominica (Commonwealth of)",0.85], + ["Dominican Republic",0.89], + ["Ecuador (Republic of)",0.89], + ["Egypt (Arab Republic of)",0.92], + ["El Salvador (Republic of)",0.77], + ["Equatorial Guinea (Republic of)",0.7], + ["Eritrea (State of)",0.69], + ["Estonia (Republic of)",0.53], + ["Eswatini (Kingdom of)",0.6], + ["Ethiopia (Federal Democratic Republic of)",0.85], + ["Falkland Islands (Malvinas)",null], + ["Faroe Islands",0.94], + ["Fiji (Republic of)",0.85], + ["Finland (Republic of)",0.78], + ["France (French Republic)",0.77], + ["French Polynesia",0.93], + ["Gabon (Gabonese Republic)",1], + ["Gambia (Republic of the)",0.85], + ["Georgia",0.65], + ["Germany (Federal Republic of)",0.79], + ["Ghana (Republic of)",0.85], + ["Gibraltar",0.93], + ["Greece (Hellenic Republic)",0.8], + ["Greenland",1.13], + ["Grenada",0.88], + ["Guam",0.87], + ["Guatemala (Republic of)",0.82], + ["Guernsey (Bailiwick of)",0.85], + ["Guinea (Republic of)",0.81], + ["Guinea-Bissau (Republic of)",0.74], + ["Guyana (Co-operative Republic of)",0.68], + ["Haiti (Republic of)",0.78], + ["Honduras (Republic of)",0.8], + ["Hong Kong (Special Administrative Region of China)",0.88], + ["Hungary (Republic of)",0.62], + ["Iceland (Republic of)",0.89], + ["India (Republic of)",0.89], + ["Indonesia (Republic of)",0.77], + ["Iran (Islamic Republic of)",0.87], + ["Iraq (Republic of)",0.8], + ["Ireland",0.86], + ["Isle of Man",0.9], + ["Israel (State of)",0.82], + ["Italy (Italian Republic)",0.76], + ["Côte d'Ivoire (Republic of)",0.81], + ["Jamaica",0.9], + ["Japan",0.78], + ["Jersey (Bailiwick of)",0.74], + ["Jordan (Hashemite Kingdom of)",0.96], + ["Kazakhstan (Republic of)",0.54], + ["Kenya (Republic of)",0.84], + ["Kiribati (Republic of)",0.64], + ["Korea (Democratic People's Republic of)",0.53], + ["Korea (Republic of)",0.76], + ["Kosovo (Republic of)",0.74], + ["Kuwait (State of)",0.79], + ["Kyrgyz Republic",0.62], + ["Lao (People's Democratic Republic)",0.83], + ["Latvia (Republic of)",0.5], + ["Lebanon (Lebanese Republic)",0.75], + ["Lesotho (Kingdom of)",1.07], + ["Liberia (Republic of)",0.96], + ["Libya (State of)",0.86], + ["Liechtenstein (Principality of)",0.85], + ["Lithuania (Republic of)",0.52], + ["Luxembourg (Grand Duchy of)",0.82], + ["Macao (Special Administrative Region of China)",0.88], + ["Madagascar (Republic of)",0.83], + ["Malawi (Republic of)",0.78], + ["Malaysia",0.9], + ["Maldives (Republic of)",0.81], + ["Mali (Republic of)",0.99], + ["Malta (Republic of)",0.85], + ["Marshall Islands (Republic of the)",0.97], + ["Mauritania (Islamic Republic of)",0.73], + ["Mauritius (Republic of)",0.71], + ["Mexico (United Mexican States)",0.8], + ["Micronesia (Federated States of)",0.82], + ["Moldova (Republic of)",0.66], + ["Monaco (Principality of)",0.8], + ["Mongolia",0.67], + ["Montenegro",0.77], + ["Montserrat",1.26], + ["Morocco (Kingdom of)",0.94], + ["Mozambique (Republic of)",0.96], + ["Myanmar (Union of)",0.77], + ["Namibia (Republic of)",0.74], + ["Nauru (Republic of)",0.56], + ["Nepal (Federal Democratic Republic of)",0.98], + ["Netherlands (Kingdom of the)",0.83], + ["New Caledonia",0.78], + ["New Zealand",0.88], + ["Nicaragua (Republic of)",0.79], + ["Niger (Republic of)",0.92], + ["Nigeria (Federal Republic of)",0.89], + ["North Macedonia (Republic of)",0.78], + ["Northern Mariana Islands (Commonwealth of the)",1.15], + ["Norway (Kingdom of)",0.87], + ["Oman (Sultanate of)",0.92], + ["Pakistan (Islamic Republic of)",0.86], + ["Palau (Republic of)",0.32], + ["Panama (Republic of)",0.84], + ["Papua New Guinea (Independent State of)",0.96], + ["Paraguay (Republic of)",0.89], + ["Peru (Republic of)",0.89], + ["Philippines (Republic of the)",0.68], + ["Poland (Republic of)",0.67], + ["Portugal (Portuguese Republic)",0.66], + ["Puerto Rico (Commonwealth of)",0.75], + ["Qatar (State of)",1.89], + ["Romania",0.68], + ["Russian Federation",0.47], + ["Rwanda (Republic of)",0.67], + ["Saint Barthelemy",1], + ["Saint Helena",1.04], + ["Saint Kitts and Nevis (Federation of)",0.89], + ["Saint Lucia",0.83], + ["Saint Martin",0.78], + ["Saint Pierre and Miquelon",0.75], + ["Saint Vincent and the Grenadines",0.91], + ["Samoa (Independent State of)",0.78], + ["San Marino (Republic of)",0.82], + ["São Tomé and Príncipe (Democratic Republic of)",0.77], + ["Saudi Arabia (Kingdom of)",1.12], + ["Senegal (Republic of)",0.77], + ["Serbia (Republic of)",0.72], + ["Seychelles (Republic of)",0.7], + ["Sierra Leone (Republic of)",0.7], + ["Singapore (Republic of)",0.85], + ["Sint Maarten (Netherlands)",0.89], + ["Slovakia (Slovak Republic)",0.65], + ["Slovenia (Republic of)",0.76], + ["Solomon Islands",0.88], + ["Somalia (Federal Republic of)",0.66], + ["South Africa (Republic of)",0.72], + ["South Sudan (Republic of)",1.35], + ["Spain (Kingdom of)",0.75], + ["Sri Lanka (Democratic Socialist Republic of)",0.73], + ["Sudan (Republic of the)",1.12], + ["Suriname (Republic of)",0.78], + ["Sweden (Kingdom of)",0.87], + ["Switzerland (Swiss Confederation)",0.8], + ["Syrian Arab Republic",0.88], + ["Taiwan",0.83], + ["Tajikistan (Republic of)",0.7], + ["Tanzania (United Republic of)",0.71], + ["Thailand (Kingdom of)",0.77], + ["Timor-Leste (Democratic Republic of)",0.94], + ["Togo (Togolese Republic)",0.76], + ["Tonga (Kingdom of)",0.81], + ["Trinidad and Tobago (Republic of)",0.78], + ["Tunisia (Republic of)",0.9], + ["Turkey (Republic of)",0.81], + ["Turkmenistan",0.77], + ["Turks and Caicos Islands",0.89], + ["Tuvalu",0.62], + ["Uganda (Republic of)",0.75], + ["Ukraine",0.51], + ["United Arab Emirates",3.39], + ["United Kingdom (of Great Britain & Northern Ireland)",0.82], + ["United States (of America)",0.81], + ["Uruguay (Oriental Republic of)",0.67], + ["Uzbekistan (Republic of)",0.75], + ["Vanuatu (Republic of)",0.99], + ["Holy See (Vatican City State)",null], + ["Venezuela (Bolivarian Republic of)",0.84], + ["Vietnam (Socialist Republic of)",0.66], + ["British Virgin Islands",0.92], + ["United States Virgin Islands",0.81], + ["Wallis and Futuna",0.93], + ["Palestine (State of)",0.85], + ["Sahrawi Arab Democratic Republic",0.79], + ["Yemen (Republic of)",0.84], + ["Zambia (Republic of)",0.78], + ["Zimbabwe (Republic of)",0.66] + ] +} diff --git a/data/global/demographics/sex-ratio/sex-ratio.json b/data/global/demographics/sex-ratio/sex-ratio.json new file mode 100644 index 0000000..f67f2ad --- /dev/null +++ b/data/global/demographics/sex-ratio/sex-ratio.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Sex Ratio", + "description" : "Sex Ratio is the comparative number of males with respect to each female in a population.", + "units" : "males:females", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "demographics", + "tags" : ["global","population","demographics","gender","sex"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_sex_ratio" + ] + }, + "data" : [ + ["country.name","sex.ratio"], + ["Afghanistan (Islamic Republic of)",1.03], + ["Albania (Republic of)",0.98], + ["Algeria (People's Democratic Republic of)",1.03], + ["American Samoa",1], + ["Andorra (Principality of)",1.06], + ["Angola (Republic of)",0.95], + ["Anguilla",0.9], + ["Antigua and Barbuda",0.89], + ["Argentina (Argentine Republic)",0.98], + ["Armenia (Republic of)",0.95], + ["Aruba",0.9], + ["Australia (Commonwealth of)",0.99], + ["Austria (Republic of)",0.96], + ["Azerbaijan (Republic of)",1], + ["Bahamas (Commonwealth of the)",0.96], + ["Bahrain (Kingdom of)",1.53], + ["Bangladesh (People's Republic of)",0.97], + ["Barbados",0.94], + ["Belarus (Republic of)",0.87], + ["Belgium (Kingdom of)",0.97], + ["Belize",1], + ["Benin (Republic of)",0.97], + ["Bermuda",0.94], + ["Bhutan (Kingdom of)",1.08], + ["Bolivia (Plurinational State of)",0.98], + ["Bosnia and Herzegovina",0.95], + ["Botswana (Republic of)",0.93], + ["Brazil (Federative Republic of)",0.97], + ["Brunei (Nation of the Abode of Peace)",0.96], + ["Bulgaria (Republic of)",0.95], + ["Burkina Faso",0.96], + ["Burundi (Republic of)",0.99], + ["Cambodia (Kingdom of)",0.95], + ["Cameroon (Republic of)",0.99], + ["Canada",0.98], + ["Cape Verde (Republic of)",0.95], + ["Cayman Islands",0.95], + ["Central African Republic",0.99], + ["Chad (Republic of)",0.98], + ["Chile (Republic of)",0.97], + ["China (People's Republic of)",1.06], + ["Colombia (Republic of)",0.98], + ["Comoros (Union of the)",0.94], + ["Congo (Democratic Republic of the)",1], + ["Congo (Republic of the)",1.01], + ["Cook Islands",1.06], + ["Costa Rica (Republic of)",1], + ["Croatia (Republic of)",0.93], + ["Cuba (Republic of)",0.99], + ["Curaçao",0.92], + ["Cyprus (Republic of)",1.05], + ["Czech Republic",0.97], + ["Denmark (Kingdom of)",0.99], + ["Djibouti (Republic of)",0.83], + ["Dominica (Commonwealth of)",1.02], + ["Dominican Republic",1.02], + ["Ecuador (Republic of)",0.99], + ["Egypt (Arab Republic of)",1.05], + ["El Salvador (Republic of)",0.92], + ["Equatorial Guinea (Republic of)",1], + ["Eritrea (State of)",0.97], + ["Estonia (Republic of)",0.88], + ["Eswatini (Kingdom of)",0.9], + ["Ethiopia (Federal Democratic Republic of)",1], + ["Falkland Islands (Malvinas)",1.12], + ["Faroe Islands",1.08], + ["Fiji (Republic of)",1.03], + ["Finland (Republic of)",0.97], + ["France (French Republic)",0.96], + ["French Polynesia",1.05], + ["Gabon (Gabonese Republic)",1.08], + ["Gambia (Republic of the)",0.98], + ["Georgia",0.92], + ["Germany (Federal Republic of)",0.96], + ["Ghana (Republic of)",0.97], + ["Gibraltar",1.01], + ["Greece (Hellenic Republic)",0.95], + ["Greenland",1.08], + ["Grenada",1.03], + ["Guam",1.06], + ["Guatemala (Republic of)",0.99], + ["Guernsey (Bailiwick of)",0.99], + ["Guinea (Republic of)",1], + ["Guinea-Bissau (Republic of)",0.95], + ["Guyana (Co-operative Republic of)",1.02], + ["Haiti (Republic of)",0.98], + ["Honduras (Republic of)",0.95], + ["Hong Kong (Special Administrative Region of China)",0.86], + ["Hungary (Republic of)",0.91], + ["Iceland (Republic of)",1], + ["India (Republic of)",1.08], + ["Indonesia (Republic of)",1], + ["Iran (Islamic Republic of)",1.03], + ["Iraq (Republic of)",1.01], + ["Ireland",1], + ["Isle of Man",1], + ["Israel (State of)",1.01], + ["Italy (Italian Republic)",0.93], + ["Côte d'Ivoire (Republic of)",1.01], + ["Jamaica",0.98], + ["Japan",0.94], + ["Jersey (Bailiwick of)",0.97], + ["Jordan (Hashemite Kingdom of)",1.11], + ["Kazakhstan (Republic of)",0.91], + ["Kenya (Republic of)",1], + ["Kiribati (Republic of)",0.94], + ["Korea (Democratic People's Republic of)",0.95], + ["Korea (Republic of)",1.01], + ["Kosovo (Republic of)",1.06], + ["Kuwait (State of)",1.38], + ["Kyrgyz Republic",0.96], + ["Lao (People's Democratic Republic)",0.99], + ["Latvia (Republic of)",0.86], + ["Lebanon (Lebanese Republic)",1], + ["Lesotho (Kingdom of)",0.98], + ["Liberia (Republic of)",1], + ["Libya (State of)",1.05], + ["Liechtenstein (Principality of)",0.99], + ["Lithuania (Republic of)",0.86], + ["Luxembourg (Grand Duchy of)",1.02], + ["Macao (Special Administrative Region of China)",0.9], + ["Madagascar (Republic of)",1], + ["Malawi (Republic of)",0.98], + ["Malaysia",1.03], + ["Maldives (Republic of)",1.13], + ["Mali (Republic of)",0.95], + ["Malta (Republic of)",1.01], + ["Marshall Islands (Republic of the)",1.03], + ["Mauritania (Islamic Republic of)",0.93], + ["Mauritius (Republic of)",0.96], + ["Mexico (United Mexican States)",0.96], + ["Micronesia (Federated States of)",0.97], + ["Moldova (Republic of)",0.96], + ["Monaco (Principality of)",0.94], + ["Mongolia",0.95], + ["Montenegro",0.97], + ["Montserrat",1], + ["Morocco (Kingdom of)",1], + ["Mozambique (Republic of)",0.97], + ["Myanmar (Union of)",0.97], + ["Namibia (Republic of)",0.96], + ["Nauru (Republic of)",0.88], + ["Nepal (Federal Democratic Republic of)",0.96], + ["Netherlands (Kingdom of the)",0.98], + ["New Caledonia",1], + ["New Zealand",1], + ["Nicaragua (Republic of)",0.95], + ["Niger (Republic of)",0.98], + ["Nigeria (Federal Republic of)",1.02], + ["North Macedonia (Republic of)",0.99], + ["Northern Mariana Islands (Commonwealth of the)",1.13], + ["Norway (Kingdom of)",1.02], + ["Oman (Sultanate of)",1.18], + ["Pakistan (Islamic Republic of)",1.04], + ["Palau (Republic of)",1.07], + ["Panama (Republic of)",1.01], + ["Papua New Guinea (Independent State of)",1.04], + ["Paraguay (Republic of)",1], + ["Peru (Republic of)",0.96], + ["Philippines (Republic of the)",1.01], + ["Poland (Republic of)",0.94], + ["Portugal (Portuguese Republic)",0.9], + ["Puerto Rico (Commonwealth of)",0.9], + ["Qatar (State of)",3.39], + ["Romania",0.95], + ["Russian Federation",0.86], + ["Rwanda (Republic of)",0.96], + ["Saint Barthelemy",1.12], + ["Saint Helena",1.01], + ["Saint Kitts and Nevis (Federation of)",1], + ["Saint Lucia",0.95], + ["Saint Martin",0.92], + ["Saint Pierre and Miquelon",0.94], + ["Saint Vincent and the Grenadines",1.04], + ["Samoa (Independent State of)",1.04], + ["San Marino (Republic of)",0.94], + ["São Tomé and Príncipe (Democratic Republic of)",1], + ["Saudi Arabia (Kingdom of)",1.3], + ["Senegal (Republic of)",0.94], + ["Serbia (Republic of)",0.95], + ["Seychelles (Republic of)",1.07], + ["Sierra Leone (Republic of)",0.95], + ["Singapore (Republic of)",0.96], + ["Sint Maarten (Netherlands)",0.98], + ["Slovakia (Slovak Republic)",0.94], + ["Slovenia (Republic of)",1], + ["Solomon Islands",1.04], + ["Somalia (Federal Republic of)",1.02], + ["South Africa (Republic of)",0.98], + ["South Sudan (Republic of)",1.06], + ["Spain (Kingdom of)",0.98], + ["Sri Lanka (Democratic Socialist Republic of)",0.95], + ["Sudan (Republic of the)",1.01], + ["Suriname (Republic of)",1.01], + ["Sweden (Kingdom of)",1], + ["Switzerland (Swiss Confederation)",0.98], + ["Syrian Arab Republic",1], + ["Taiwan",0.97], + ["Tajikistan (Republic of)",0.99], + ["Tanzania (United Republic of)",1], + ["Thailand (Kingdom of)",0.96], + ["Timor-Leste (Democratic Republic of)",1], + ["Togo (Togolese Republic)",0.98], + ["Tonga (Kingdom of)",1.01], + ["Trinidad and Tobago (Republic of)",1.03], + ["Tunisia (Republic of)",0.99], + ["Turkey (Republic of)",1.01], + ["Turkmenistan",0.98], + ["Turks and Caicos Islands",1.01], + ["Tuvalu",0.98], + ["Uganda (Republic of)",0.94], + ["Ukraine",0.86], + ["United Arab Emirates",2.56], + ["United Kingdom (of Great Britain & Northern Ireland)",0.99], + ["United States (of America)",0.97], + ["Uruguay (Oriental Republic of)",0.94], + ["Uzbekistan (Republic of)",0.99], + ["Vanuatu (Republic of)",0.99], + ["Holy See (Vatican City State)",null], + ["Venezuela (Bolivarian Republic of)",0.99], + ["Vietnam (Socialist Republic of)",1.01], + ["British Virgin Islands",0.91], + ["United States Virgin Islands",0.91], + ["Wallis and Futuna",1.04], + ["Palestine (State of)",1.04], + ["Sahrawi Arab Democratic Republic",0.99], + ["Yemen (Republic of)",1.02], + ["Zambia (Republic of)",1], + ["Zimbabwe (Republic of)",0.96] + ] +} diff --git a/data/global/economics/agriculture/meat-consumption/meat-consumption-2002.json b/data/global/economics/agriculture/meat-consumption/meat-consumption-2002.json new file mode 100644 index 0000000..c1b3f33 --- /dev/null +++ b/data/global/economics/agriculture/meat-consumption/meat-consumption-2002.json @@ -0,0 +1,209 @@ +{ + "metadata" : { + "name" : "Meat Consumption", + "description" : "Kilograms of meat consummed per-capita in the year 2002.", + "units" : "kg", + "year" : "2002", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","industry","agriculture","livestock","meat","food"], + "authors" : [ + "United States Department of Agreculture(USDA)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_meat_consumption" + ] + }, + "data" : [ + ["country.name","meat.consumption.2002"], + ["Albania (Republic of)",38.2], + ["Algeria (People's Democratic Republic of)",18.4], + ["American Samoa",24.9], + ["Angola (Republic of)",25], + ["Antigua and Barbuda",56], + ["Argentina (Argentine Republic)",79.7], + ["Armenia (Republic of)",27.7], + ["Australia (Commonwealth of)",108.2], + ["Austria (Republic of)",94.1], + ["Azerbaijan (Republic of)",15.9], + ["Bahamas (Commonwealth of the)",123.6], + ["Bahrain (Kingdom of)",70.7], + ["Bangladesh (People's Republic of)",3.1], + ["Barbados",88.7], + ["Belarus (Republic of)",58.6], + ["Belgium (Kingdom of)",86.1], + ["Belize",74.7], + ["Benin (Republic of)",16.2], + ["Bhutan (Kingdom of)",3], + ["Bolivia (Plurinational State of)",50], + ["Bosnia and Herzegovina",21.4], + ["Botswana (Republic of)",27.3], + ["Brazil (Federative Republic of)",82.4], + ["Bulgaria (Republic of)",69.4], + ["Burkina Faso",11.2], + ["Burundi (Republic of)",3.5], + ["Cambodia (Kingdom of)",13.9], + ["Cameroon (Republic of)",14.4], + ["Canada",108.1], + ["Cape Verde (Republic of)",26.3], + ["Côte d'Ivoire (Republic of)",11.3], + ["Central African Republic",28], + ["Chad (Republic of)",14.3], + ["Chile (Republic of)",66.4], + ["China (People's Republic of)",52.4], + ["Colombia (Republic of)",33.9], + ["Comoros (Union of the)",7.6], + ["Congo (Republic of the)",13.3], + ["Congo (Democratic Republic of the)",4.8], + ["Costa Rica (Republic of)",40.4], + ["Croatia (Republic of)",49.9], + ["Cuba (Republic of)",32.2], + ["Cyprus (Republic of)",131.3], + ["Czech Republic",77.3], + ["Denmark (Kingdom of)",145.9], + ["Djibouti (Republic of)",17.1], + ["Dominica (Commonwealth of)",67.1], + ["Dominican Republic",37.8], + ["Ecuador (Republic of)",45], + ["Egypt (Arab Republic of)",22.5], + ["El Salvador (Republic of)",21.4], + ["Eritrea (State of)",7.7], + ["Estonia (Republic of)",67.4], + ["Ethiopia (Federal Democratic Republic of)",7.9], + ["Fiji (Republic of)",39.1], + ["Finland (Republic of)",67.4], + ["France (French Republic)",101.1], + ["French Guiana",13.2], + ["French Polynesia",112.2], + ["Gabon (Gabonese Republic)",46], + ["Gambia (Republic of the)",5.2], + ["Georgia",26], + ["Germany (Federal Republic of)",82.1], + ["Ghana (Republic of)",9.9], + ["Greece (Hellenic Republic)",78.7], + ["Grenada",97], + ["Guadeloupe",12.7], + ["Guatemala (Republic of)",23.8], + ["Guinea (Republic of)",6.5], + ["Guinea-Bissau (Republic of)",13], + ["Guyana (Co-operative Republic of)",31.8], + ["Haiti (Republic of)",15.3], + ["Honduras (Republic of)",24.7], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",100.7], + ["Iceland (Republic of)",84.8], + ["India (Republic of)",5.2], + ["Indonesia (Republic of)",8.3], + ["Iran (Islamic Republic of)",23.1], + ["Ireland",106.3], + ["Israel (State of)",97.1], + ["Italy (Italian Republic)",90.4], + ["Jamaica",56.8], + ["Japan",45.9], + ["Jordan (Hashemite Kingdom of)",29.8], + ["Kazakhstan (Republic of)",44.8], + ["Kenya (Republic of)",14.3], + ["Kiribati (Republic of)",32.1], + ["Kuwait (State of)",60.2], + ["Kyrgyz Republic",39], + ["Lao (People's Democratic Republic)",15], + ["Latvia (Republic of)",45.7], + ["Lebanon (Lebanese Republic)",63.1], + ["Lesotho (Kingdom of)",15.4], + ["Liberia (Republic of)",7.9], + ["Libya (State of)",28.6], + ["Lithuania (Republic of)",49.5], + ["Luxembourg (Grand Duchy of)",141.7], + ["Macao (Special Administrative Region of China)",null], + ["Madagascar (Republic of)",17.6], + ["Malawi (Republic of)",5.1], + ["Malaysia",50.9], + ["Maldives (Republic of)",16.6], + ["Mali (Republic of)",19], + ["Malta (Republic of)",86.9], + ["Mauritania (Islamic Republic of)",29.9], + ["Mauritius (Republic of)",39.6], + ["Mexico (United Mexican States)",58.6], + ["Moldova (Republic of)",22.7], + ["Mongolia",108.8], + ["Montenegro",null], + ["Morocco (Kingdom of)",20.6], + ["Mozambique (Republic of)",5.6], + ["Myanmar (Union of)",10.7], + ["Namibia (Republic of)",34], + ["Nepal (Federal Democratic Republic of)",10], + ["Netherlands (Kingdom of the)",89.3], + ["Sint Maarten (Netherlands)",73.3], + ["New Caledonia",76.6], + ["New Zealand",142.1], + ["Nicaragua (Republic of)",14.9], + ["Niger (Republic of)",11.2], + ["Nigeria (Federal Republic of)",8.6], + ["Norway (Kingdom of)",61.7], + ["Korea (Democratic People's Republic of)",10.8], + ["North Macedonia (Republic of)",35.4], + ["Oman (Sultanate of)",49.8], + ["Pakistan (Islamic Republic of)",12.3], + ["Panama (Republic of)",54.5], + ["Papua New Guinea (Independent State of)",73], + ["Paraguay (Republic of)",70.3], + ["Peru (Republic of)",34.5], + ["Philippines (Republic of the)",31.1], + ["Poland (Republic of)",78.1], + ["Portugal (Portuguese Republic)",91.1], + ["Qatar (State of)",90.5], + ["Réunion",46.8], + ["Romania",54.5], + ["Russian Federation",51], + ["Rwanda (Republic of)",4.4], + ["Saint Kitts and Nevis (Federation of)",99.3], + ["Saint Lucia",124.1], + ["Saint Vincent and the Grenadines",79.1], + ["Samoa (Independent State of)",82.6], + ["São Tomé and Príncipe (Democratic Republic of)",9.6], + ["Saudi Arabia (Kingdom of)",44.6], + ["Senegal (Republic of)",17.7], + ["Serbia (Republic of)",null], + ["Seychelles (Republic of)",51.1], + ["Sierra Leone (Republic of)",6.1], + ["Singapore (Republic of)",71.1], + ["Slovakia (Slovak Republic)",67.4], + ["Slovenia (Republic of)",88], + ["Solomon Islands",9.7], + ["South Africa (Republic of)",39], + ["Korea (Republic of)",48], + ["Spain (Kingdom of)",118.6], + ["Sri Lanka (Democratic Socialist Republic of)",6.6], + ["Sudan (Republic of the)",21], + ["Suriname (Republic of)",40.3], + ["Eswatini (Kingdom of)",34.2], + ["Sweden (Kingdom of)",76.1], + ["Switzerland (Swiss Confederation)",72.9], + ["Syrian Arab Republic",21.2], + ["Taiwan",null], + ["Tajikistan (Republic of)",8.7], + ["Thailand (Kingdom of)",27.9], + ["Timor-Leste (Democratic Republic of)",41.3], + ["Tanzania (United Republic of)",10], + ["Togo (Togolese Republic)",8.5], + ["Trinidad and Tobago (Republic of)",57.8], + ["Tunisia (Republic of)",25.5], + ["Turkey (Republic of)",19.3], + ["Turkmenistan",41.7], + ["Uganda (Republic of)",11.7], + ["Ukraine",32.3], + ["United Arab Emirates",74.4], + ["United Kingdom (of Great Britain & Northern Ireland)",79.6], + ["United States (of America)",124.8], + ["Uruguay (Oriental Republic of)",98.6], + ["Uzbekistan (Republic of)",20.7], + ["Vanuatu (Republic of)",32.6], + ["Venezuela (Bolivarian Republic of)",56.6], + ["Vietnam (Socialist Republic of)",28.6], + ["Yemen (Republic of)",14.7], + ["Zambia (Republic of)",11.9], + ["Zimbabwe (Republic of)",15.2] + ] +} diff --git a/data/global/economics/agriculture/meat-consumption/meat-consumption-2009.json b/data/global/economics/agriculture/meat-consumption/meat-consumption-2009.json new file mode 100644 index 0000000..792f143 --- /dev/null +++ b/data/global/economics/agriculture/meat-consumption/meat-consumption-2009.json @@ -0,0 +1,209 @@ +{ + "metadata" : { + "name" : "Meat Consumption", + "description" : "Kilograms of meat consummed per-capita in the year 2009.", + "units" : "kg", + "year" : "2009", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","industry","agriculture","livestock","meat","food"], + "authors" : [ + "United States Department of Agreculture(USDA)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_meat_consumption" + ] + }, + "data" : [ + ["country.name","meat.consumption.2009"], + ["Albania (Republic of)",44.1], + ["Algeria (People's Democratic Republic of)",19.5], + ["American Samoa",26.8], + ["Angola (Republic of)",22.4], + ["Antigua and Barbuda",84.3], + ["Argentina (Argentine Republic)",98.3], + ["Armenia (Republic of)",45.8], + ["Australia (Commonwealth of)",111.5], + ["Austria (Republic of)",102], + ["Azerbaijan (Republic of)",32], + ["Bahamas (Commonwealth of the)",109.5], + ["Bahrain (Kingdom of)",null], + ["Bangladesh (People's Republic of)",4], + ["Barbados",74.5], + ["Belarus (Republic of)",78.4], + ["Belgium (Kingdom of)",76.9], + ["Belize",42.5], + ["Benin (Republic of)",20.9], + ["Bhutan (Kingdom of)",null], + ["Bolivia (Plurinational State of)",59.1], + ["Bosnia and Herzegovina",27.9], + ["Botswana (Republic of)",26.2], + ["Brazil (Federative Republic of)",85.3], + ["Bulgaria (Republic of)",53], + ["Burkina Faso",14.8], + ["Burundi (Republic of)",5.2], + ["Cambodia (Kingdom of)",16.6], + ["Cameroon (Republic of)",12.7], + ["Canada",94.3], + ["Cape Verde (Republic of)",46.1], + ["Côte d'Ivoire (Republic of)",13.3], + ["Central African Republic",33.5], + ["Chad (Republic of)",13], + ["Chile (Republic of)",74.1], + ["China (People's Republic of)",58.2], + ["Colombia (Republic of)",46.5], + ["Comoros (Union of the)",13.4], + ["Congo (Republic of the)",13.4], + ["Congo (Democratic Republic of the)",5.3], + ["Costa Rica (Republic of)",51.1], + ["Croatia (Republic of)",66.3], + ["Cuba (Republic of)",49.4], + ["Cyprus (Republic of)",78.1], + ["Czech Republic",83.4], + ["Denmark (Kingdom of)",95.2], + ["Djibouti (Republic of)",23.7], + ["Dominica (Commonwealth of)",68.6], + ["Dominican Republic",53.7], + ["Ecuador (Republic of)",56.4], + ["Egypt (Arab Republic of)",25.6], + ["El Salvador (Republic of)",28.3], + ["Eritrea (State of)",7.7], + ["Estonia (Republic of)",59.6], + ["Ethiopia (Federal Democratic Republic of)",8.5], + ["Fiji (Republic of)",38.8], + ["Finland (Republic of)",74.8], + ["France (French Republic)",86.7], + ["French Guiana",14.6], + ["French Polynesia",101.9], + ["Gabon (Gabonese Republic)",66.4], + ["Gambia (Republic of the)",8.1], + ["Georgia",25.5], + ["Germany (Federal Republic of)",88.1], + ["Ghana (Republic of)",13.9], + ["Greece (Hellenic Republic)",74.8], + ["Grenada",61], + ["Guadeloupe",13.6], + ["Guatemala (Republic of)",28.8], + ["Guinea (Republic of)",8.6], + ["Guinea-Bissau (Republic of)",16.2], + ["Guyana (Co-operative Republic of)",39], + ["Haiti (Republic of)",15.6], + ["Honduras (Republic of)",34.3], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",76], + ["Iceland (Republic of)",86.2], + ["India (Republic of)",4.4], + ["Indonesia (Republic of)",11.6], + ["Iran (Islamic Republic of)",36.3], + ["Ireland",87.9], + ["Israel (State of)",96], + ["Italy (Italian Republic)",90.7], + ["Jamaica",59.1], + ["Japan",45.9], + ["Jordan (Hashemite Kingdom of)",42], + ["Kazakhstan (Republic of)",62.6], + ["Kenya (Republic of)",16.7], + ["Kiribati (Republic of)",38.5], + ["Kuwait (State of)",119.2], + ["Kyrgyz Republic",36.9], + ["Lao (People's Democratic Republic)",21.3], + ["Latvia (Republic of)",61.5], + ["Lebanon (Lebanese Republic)",58.8], + ["Lesotho (Kingdom of)",18.3], + ["Liberia (Republic of)",10.4], + ["Libya (State of)",33.5], + ["Lithuania (Republic of)",78.2], + ["Luxembourg (Grand Duchy of)",107.9], + ["Macao (Special Administrative Region of China)",null], + ["Madagascar (Republic of)",14.7], + ["Malawi (Republic of)",8.3], + ["Malaysia",52.3], + ["Maldives (Republic of)",21.6], + ["Mali (Republic of)",22.2], + ["Malta (Republic of)",84.5], + ["Mauritania (Islamic Republic of)",29.7], + ["Mauritius (Republic of)",49.4], + ["Mexico (United Mexican States)",63.8], + ["Moldova (Republic of)",26.8], + ["Mongolia",82.1], + ["Montenegro",57.7], + ["Morocco (Kingdom of)",30.1], + ["Mozambique (Republic of)",7.8], + ["Myanmar (Union of)",32.1], + ["Namibia (Republic of)",28.3], + ["Nepal (Federal Democratic Republic of)",9.9], + ["Netherlands (Kingdom of the)",85.5], + ["Sint Maarten (Netherlands)",91], + ["New Caledonia",72.6], + ["New Zealand",106.4], + ["Nicaragua (Republic of)",25.3], + ["Niger (Republic of)",25.6], + ["Nigeria (Federal Republic of)",8.8], + ["Norway (Kingdom of)",66], + ["Korea (Democratic People's Republic of)",13.4], + ["North Macedonia (Republic of)",40.8], + ["Oman (Sultanate of)",null], + ["Pakistan (Islamic Republic of)",14.7], + ["Panama (Republic of)",63.5], + ["Papua New Guinea (Independent State of)",null], + ["Paraguay (Republic of)",41.9], + ["Peru (Republic of)",20.8], + ["Philippines (Republic of the)",33.6], + ["Poland (Republic of)",76.9], + ["Portugal (Portuguese Republic)",93.4], + ["Qatar (State of)",null], + ["Réunion",null], + ["Romania",64.7], + ["Russian Federation",69.2], + ["Rwanda (Republic of)",6.5], + ["Saint Kitts and Nevis (Federation of)",70.8], + ["Saint Lucia",93.6], + ["Saint Vincent and the Grenadines",91.4], + ["Samoa (Independent State of)",87.2], + ["São Tomé and Príncipe (Democratic Republic of)",16.5], + ["Saudi Arabia (Kingdom of)",54.4], + ["Senegal (Republic of)",15.8], + ["Serbia (Republic of)",45.2], + ["Seychelles (Republic of)",35.6], + ["Sierra Leone (Republic of)",7.3], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",60.4], + ["Slovenia (Republic of)",88.3], + ["Solomon Islands",11.9], + ["South Africa (Republic of)",58.6], + ["Korea (Republic of)",54.1], + ["Spain (Kingdom of)",97], + ["Sri Lanka (Democratic Socialist Republic of)",6.3], + ["Sudan (Republic of the)",19.1], + ["Suriname (Republic of)",47.5], + ["Eswatini (Kingdom of)",26.9], + ["Sweden (Kingdom of)",80.2], + ["Switzerland (Swiss Confederation)",74.7], + ["Syrian Arab Republic",22.8], + ["Taiwan",null], + ["Tajikistan (Republic of)",14.7], + ["Thailand (Kingdom of)",25.8], + ["Timor-Leste (Democratic Republic of)",33.8], + ["Tanzania (United Republic of)",9.6], + ["Togo (Togolese Republic)",11.7], + ["Trinidad and Tobago (Republic of)",47.7], + ["Tunisia (Republic of)",25.9], + ["Turkey (Republic of)",25.3], + ["Turkmenistan",58.6], + ["Uganda (Republic of)",11], + ["Ukraine",48.5], + ["United Arab Emirates",73.8], + ["United Kingdom (of Great Britain & Northern Ireland)",84.2], + ["United States (of America)",120.2], + ["Uruguay (Oriental Republic of)",55.3], + ["Uzbekistan (Republic of)",28.4], + ["Vanuatu (Republic of)",35.4], + ["Venezuela (Bolivarian Republic of)",76.8], + ["Vietnam (Socialist Republic of)",49.9], + ["Yemen (Republic of)",17.9], + ["Zambia (Republic of)",12.3], + ["Zimbabwe (Republic of)",21.3] + ] +} diff --git a/data/global/economics/agriculture/meat-consumption/meat-consumption-2017.json b/data/global/economics/agriculture/meat-consumption/meat-consumption-2017.json new file mode 100644 index 0000000..c4aea3d --- /dev/null +++ b/data/global/economics/agriculture/meat-consumption/meat-consumption-2017.json @@ -0,0 +1,209 @@ +{ + "metadata" : { + "name" : "Meat Consumption", + "description" : "Kilograms of meat consummed per-capita in the year 2017.", + "units" : "kg", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","industry","agriculture","livestock","meat","food"], + "authors" : [ + "United States Department of Agreculture(USDA)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_meat_consumption" + ] + }, + "data" : [ + ["country.name","meat.consumption.2017"], + ["Albania (Republic of)",41.78], + ["Algeria (People's Democratic Republic of)",20.32], + ["American Samoa",null], + ["Angola (Republic of)",23.43], + ["Antigua and Barbuda",74.56], + ["Argentina (Argentine Republic)",112.17], + ["Armenia (Republic of)",41.96], + ["Australia (Commonwealth of)",114.26], + ["Austria (Republic of)",84.94], + ["Azerbaijan (Republic of)",33.91], + ["Bahamas (Commonwealth of the)",87.93], + ["Bahrain (Kingdom of)",null], + ["Bangladesh (People's Republic of)",4.27], + ["Barbados",87.93], + ["Belarus (Republic of)",81.57], + ["Belgium (Kingdom of)",54.19], + ["Belize",41.07], + ["Benin (Republic of)",16.82], + ["Bhutan (Kingdom of)",null], + ["Bolivia (Plurinational State of)",81.98], + ["Bosnia and Herzegovina",40.98], + ["Botswana (Republic of)",24.48], + ["Brazil (Federative Republic of)",99.36], + ["Bulgaria (Republic of)",57.03], + ["Burkina Faso",12.75], + ["Burundi (Republic of)",null], + ["Cambodia (Kingdom of)",12.67], + ["Cameroon (Republic of)",12.27], + ["Canada",90.09], + ["Cape Verde (Republic of)",31.93], + ["Côte d'Ivoire (Republic of)",11.22], + ["Central African Republic",32.13], + ["Chad (Republic of)",11.56], + ["Chile (Republic of)",86.63], + ["China (People's Republic of)",61.7], + ["Colombia (Republic of)",57.84], + ["Comoros (Union of the)",null], + ["Congo (Republic of the)",39.34], + ["Congo (Democratic Republic of the)",null], + ["Costa Rica (Republic of)",51.06], + ["Croatia (Republic of)",75.19], + ["Cuba (Republic of)",60.24], + ["Cyprus (Republic of)",76.87], + ["Czech Republic",80.43], + ["Denmark (Kingdom of)",76.87], + ["Djibouti (Republic of)",15.39], + ["Dominica (Commonwealth of)",60.49], + ["Dominican Republic",52.03], + ["Ecuador (Republic of)",46.04], + ["Egypt (Arab Republic of)",28.51], + ["El Salvador (Republic of)",33.54], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",63.43], + ["Ethiopia (Federal Democratic Republic of)",7.2], + ["Fiji (Republic of)",41.16], + ["Finland (Republic of)",75.38], + ["France (French Republic)",77.97], + ["French Guiana",null], + ["French Polynesia",89.68], + ["Gabon (Gabonese Republic)",58.24], + ["Gambia (Republic of the)",7.82], + ["Georgia",31.97], + ["Germany (Federal Republic of)",80.5], + ["Ghana (Republic of)",13.82], + ["Greece (Hellenic Republic)",68.65], + ["Grenada",57.15], + ["Guadeloupe",null], + ["Guatemala (Republic of)",35.7], + ["Guinea (Republic of)",12.04], + ["Guinea-Bissau (Republic of)",16.39], + ["Guyana (Co-operative Republic of)",45.24], + ["Haiti (Republic of)",17.59], + ["Honduras (Republic of)",32.96], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",79.74], + ["Iceland (Republic of)",89.93], + ["India (Republic of)",3.97], + ["Indonesia (Republic of)",12.42], + ["Iran (Islamic Republic of)",37.78], + ["Ireland",76.85], + ["Israel (State of)",97.82], + ["Italy (Italian Republic)",77.52], + ["Jamaica",58.96], + ["Japan",49.34], + ["Jordan (Hashemite Kingdom of)",35.31], + ["Kazakhstan (Republic of)",64.49], + ["Kenya (Republic of)",15.26], + ["Kiribati (Republic of)",29.29], + ["Kuwait (State of)",67.46], + ["Kyrgyz Republic",30.21], + ["Lao (People's Democratic Republic)",24.63], + ["Latvia (Republic of)",68.72], + ["Lebanon (Lebanese Republic)",29.52], + ["Lesotho (Kingdom of)",27.13], + ["Liberia (Republic of)",18.37], + ["Libya (State of)",null], + ["Lithuania (Republic of)",81.25], + ["Luxembourg (Grand Duchy of)",80.08], + ["Macao (Special Administrative Region of China)",null], + ["Madagascar (Republic of)",13.24], + ["Malawi (Republic of)",10.96], + ["Malaysia",53.12], + ["Maldives (Republic of)",20.22], + ["Mali (Republic of)",23.46], + ["Malta (Republic of)",81.1], + ["Mauritania (Islamic Republic of)",31.25], + ["Mauritius (Republic of)",50.95], + ["Mexico (United Mexican States)",67.54], + ["Moldova (Republic of)",null], + ["Mongolia",87.9], + ["Montenegro",76.39], + ["Morocco (Kingdom of)",34.62], + ["Mozambique (Republic of)",8.28], + ["Myanmar (Union of)",44.69], + ["Namibia (Republic of)",31.76], + ["Nepal (Federal Democratic Republic of)",13.79], + ["Netherlands (Kingdom of the)",64.5], + ["Sint Maarten (Netherlands)",null], + ["New Caledonia",73.16], + ["New Zealand",87.95], + ["Nicaragua (Republic of)",30.77], + ["Niger (Republic of)",8.74], + ["Nigeria (Federal Republic of)",7.33], + ["Norway (Kingdom of)",67.62], + ["Korea (Democratic People's Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Oman (Sultanate of)",43.34], + ["Pakistan (Islamic Republic of)",16.01], + ["Panama (Republic of)",64.67], + ["Papua New Guinea (Independent State of)",null], + ["Paraguay (Republic of)",42.35], + ["Peru (Republic of)",23.78], + ["Philippines (Republic of the)",36.6], + ["Poland (Republic of)",88.67], + ["Portugal (Portuguese Republic)",90.99], + ["Qatar (State of)",null], + ["Réunion",null], + ["Romania",67.87], + ["Russian Federation",76.35], + ["Rwanda (Republic of)",7.93], + ["Saint Kitts and Nevis (Federation of)",87.31], + ["Saint Lucia",91.82], + ["Saint Vincent and the Grenadines",93.38], + ["Samoa (Independent State of)",97.76], + ["São Tomé and Príncipe (Democratic Republic of)",14.83], + ["Saudi Arabia (Kingdom of)",49.17], + ["Senegal (Republic of)",15.2], + ["Serbia (Republic of)",56], + ["Seychelles (Republic of)",null], + ["Sierra Leone (Republic of)",8.55], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",58.25], + ["Slovenia (Republic of)",73.14], + ["Solomon Islands",11.75], + ["South Africa (Republic of)",62.49], + ["Korea (Republic of)",55.89], + ["Spain (Kingdom of)",null], + ["Sri Lanka (Democratic Socialist Republic of)",6.5], + ["Sudan (Republic of the)",20.97], + ["Suriname (Republic of)",44.32], + ["Eswatini (Kingdom of)",25.75], + ["Sweden (Kingdom of)",74.04], + ["Switzerland (Swiss Confederation)",66.1], + ["Syrian Arab Republic",null], + ["Taiwan",null], + ["Tajikistan (Republic of)",14.73], + ["Thailand (Kingdom of)",28.96], + ["Timor-Leste (Democratic Republic of)",31.29], + ["Tanzania (United Republic of)",null], + ["Togo (Togolese Republic)",12.1], + ["Trinidad and Tobago (Republic of)",75.5], + ["Tunisia (Republic of)",28.45], + ["Turkey (Republic of)",39.97], + ["Turkmenistan",55.73], + ["Uganda (Republic of)",11.55], + ["Ukraine",48.49], + ["United Arab Emirates",68.59], + ["United Kingdom (of Great Britain & Northern Ireland)",79.86], + ["United States (of America)",121], + ["Uruguay (Oriental Republic of)",56.44], + ["Uzbekistan (Republic of)",35.39], + ["Vanuatu (Republic of)",38.32], + ["Venezuela (Bolivarian Republic of)",36.12], + ["Vietnam (Socialist Republic of)",64.68], + ["Yemen (Republic of)",12.51], + ["Zambia (Republic of)",14.19], + ["Zimbabwe (Republic of)",17.61] + ] +} diff --git a/data/global/economics/agriculture/potato-production/potato-production-2016.json b/data/global/economics/agriculture/potato-production/potato-production-2016.json new file mode 100644 index 0000000..6119e1e --- /dev/null +++ b/data/global/economics/agriculture/potato-production/potato-production-2016.json @@ -0,0 +1,177 @@ +{ + "metadata" : { + "name" : "Potato Production", + "description" : "Annual potato production measured in metric tonnes.", + "units" : "t", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","potatoes"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_potato_production" + ] + }, + "data" : [ + ["country.name","potato.production.2016"], + ["China (People's Republic of)",84928500], + ["India (Republic of)",43417000], + ["Ukraine",21750290], + ["Russian Federation",22463487], + ["United States (of America)",20426359], + ["Germany (Federal Republic of)",10772100], + ["Bangladesh (People's Republic of)",9474099], + ["France (French Republic)",6954983], + ["Poland (Republic of)",8872445], + ["Netherlands (Kingdom of the)",6534338], + ["United Kingdom (of Great Britain & Northern Ireland)",5395000], + ["Peru (Republic of)",4514239], + ["Canada",5345626], + ["Belarus (Republic of)",5984069], + ["Egypt (Arab Republic of)",4113441], + ["Turkey (Republic of)",4750000], + ["Algeria (People's Democratic Republic of)",4759677], + ["Pakistan (Islamic Republic of)",3977595], + ["Iran (Islamic Republic of)",4995327], + ["Kazakhstan (Republic of)",3545695], + ["Belgium (Kingdom of)",3402787], + ["Brazil (Federative Republic of)",3851396], + ["Uzbekistan (Republic of)",2789476], + ["Nepal (Federal Democratic Republic of)",2805582], + ["Denmark (Kingdom of)",1954016], + ["Romania",2689733], + ["Colombia (Republic of)",3034031], + ["South Africa (Republic of)",2150811], + ["Argentina (Argentine Republic)",2430866], + ["Japan",2199000], + ["Spain (Kingdom of)",2246204], + ["Mexico (United Mexican States)",1796814], + ["Kenya (Republic of)",1335883], + ["Morocco (Kingdom of)",1743617], + ["Italy (Italian Republic)",1368920], + ["Kyrgyz Republic",1388369], + ["Malawi (Republic of)",1043338], + ["Bolivia (Plurinational State of)",1073744], + ["Chile (Republic of)",1166025], + ["Indonesia (Republic of)",1213041], + ["Nigeria (Federal Republic of)",1179526], + ["Ethiopia (Federal Democratic Republic of)",921403], + ["Tanzania (United Republic of)",1081454], + ["Australia (Commonwealth of)",1130175], + ["Azerbaijan (Republic of)",902396], + ["Tajikistan (Republic of)",898116], + ["Austria (Republic of)",767261], + ["Sweden (Kingdom of)",862500], + ["Rwanda (Republic of)",751284], + ["Afghanistan (Islamic Republic of)",427917], + ["Czech Republic",699605], + ["Iraq (Republic of)",190702], + ["Serbia (Republic of)",714350], + ["Korea (Democratic People's Republic of)",587642], + ["Syrian Arab Republic",478370], + ["Lebanon (Lebanese Republic)",631973], + ["Finland (Republic of)",587600], + ["Guatemala (Republic of)",538532], + ["Saudi Arabia (Kingdom of)",466402], + ["Korea (Republic of)",555670], + ["New Zealand",472345], + ["Israel (State of)",597677], + ["Sudan (Republic of the)",415300], + ["Switzerland (Swiss Confederation)",372900], + ["Venezuela (Bolivarian Republic of)",452673], + ["Myanmar (Union of)",554309], + ["Greece (Hellenic Republic)",491973], + ["Tunisia (Republic of)",440000], + ["Angola (Republic of)",670456], + ["Bosnia and Herzegovina",417976], + ["Armenia (Republic of)",606314], + ["Portugal (Portuguese Republic)",451041], + ["Ecuador (Republic of)",422589], + ["Libya (State of)",337465], + ["Norway (Kingdom of)",350800], + ["Cameroon (Republic of)",377257], + ["Mozambique (Republic of)",246500], + ["Uganda (Republic of)",171271], + ["Turkmenistan",284349], + ["Ireland",352000], + ["Lithuania (Republic of)",351484], + ["Burundi (Republic of)",145687], + ["Vietnam (Socialist Republic of)",302229], + ["Hungary (Republic of)",429435], + ["Guinea (Republic of)",114424], + ["Albania (Republic of)",238345], + ["Madagascar (Republic of)",244412], + ["Mongolia",165329], + ["Niger (Republic of)",161181], + ["Yemen (Republic of)",242195], + ["Mali (Republic of)",210209], + ["Georgia",249000], + ["North Macedonia (Republic of)",198529], + ["Jordan (Hashemite Kingdom of)",273906], + ["Bulgaria (Republic of)",127182], + ["Latvia (Republic of)",491600], + ["Croatia (Republic of)",193962], + ["Moldova (Republic of)",213975], + ["Slovakia (Slovak Republic)",177145], + ["Senegal (Republic of)",67485], + ["Lesotho (Kingdom of)",126525], + ["Thailand (Kingdom of)",119778], + ["Cuba (Republic of)",95663], + ["Philippines (Republic of the)",116783], + ["Congo (Democratic Republic of the)",100136], + ["Dominican Republic",84127], + ["Slovenia (Republic of)",84897], + ["Estonia (Republic of)",89842], + ["Cyprus (Republic of)",122803], + ["Zambia (Republic of)",24428], + ["Uruguay (Oriental Republic of)",89000], + ["Nicaragua (Republic of)",39919], + ["Burkina Faso",70501], + ["Sri Lanka (Democratic Socialist Republic of)",80458], + ["Palestine (State of)",42000], + ["Taiwan",58023], + ["Costa Rica (Republic of)",97979], + ["Bhutan (Kingdom of)",58820], + ["Kuwait (State of)",14986], + ["Chad (Republic of)",37152], + ["Haiti (Republic of)",36700], + ["Honduras (Republic of)",25500], + ["Panama (Republic of)",31180], + ["Montenegro",29917], + ["Luxembourg (Grand Duchy of)",18714], + ["Oman (Sultanate of)",13116], + ["Mauritius (Republic of)",16326], + ["Zimbabwe (Republic of)",15620], + ["Jamaica",17007], + ["Namibia (Republic of)",13748], + ["Eswatini (Kingdom of)",8248], + ["Malta (Republic of)",6825], + ["Iceland (Republic of)",9930], + ["Congo (Republic of the)",6677], + ["El Salvador (Republic of)",13304], + ["Botswana (Republic of)",null], + ["United Arab Emirates",4862], + ["Paraguay (Republic of)",3625], + ["Lao (People's Democratic Republic)",34320], + ["New Caledonia",1379], + ["Cape Verde (Republic of)",2000], + ["Mauritania (Islamic Republic of)",2333], + ["Faroe Islands",1562], + ["Central African Republic",1322], + ["Timor-Leste (Democratic Republic of)",1279], + ["Papua New Guinea (Independent State of)",1236], + ["Belize",986], + ["Comoros (Union of the)",726], + ["French Polynesia",563], + ["Qatar (State of)",69], + ["Dominica (Commonwealth of)",140], + ["Benin (Republic of)",103], + ["Eritrea (State of)",37], + ["Bahrain (Kingdom of)",54], + ["Fiji (Republic of)",266] + ] +} diff --git a/data/global/economics/agriculture/potato-production/potato-production-2017.json b/data/global/economics/agriculture/potato-production/potato-production-2017.json new file mode 100644 index 0000000..f228876 --- /dev/null +++ b/data/global/economics/agriculture/potato-production/potato-production-2017.json @@ -0,0 +1,177 @@ +{ + "metadata" : { + "name" : "Potato Production", + "description" : "Annual potato production measured in metric tonnes.", + "units" : "t", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","potatoes"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_potato_production" + ] + }, + "data" : [ + ["country.name","potato.production.2017"], + ["China (People's Republic of)",88481500], + ["India (Republic of)",48605000], + ["Ukraine",22208220], + ["Russian Federation",21707645], + ["United States (of America)",20453430], + ["Germany (Federal Republic of)",11720000], + ["Bangladesh (People's Republic of)",10215957], + ["France (French Republic)",8547354], + ["Poland (Republic of)",9171733], + ["Netherlands (Kingdom of the)",7391881], + ["United Kingdom (of Great Britain & Northern Ireland)",6218000], + ["Peru (Republic of)",4776294], + ["Canada",5419238], + ["Belarus (Republic of)",6414755], + ["Egypt (Arab Republic of)",4841040], + ["Turkey (Republic of)",4800000], + ["Algeria (People's Democratic Republic of)",4606402], + ["Pakistan (Islamic Republic of)",3852897], + ["Iran (Islamic Republic of)",4117462], + ["Kazakhstan (Republic of)",3551114], + ["Belgium (Kingdom of)",4416665], + ["Brazil (Federative Republic of)",3655069], + ["Uzbekistan (Republic of)",2793689], + ["Nepal (Federal Democratic Republic of)",2691037], + ["Denmark (Kingdom of)",2171000], + ["Romania",3116912], + ["Colombia (Republic of)",3706563], + ["South Africa (Republic of)",2456990], + ["Argentina (Argentine Republic)",2448774], + ["Japan",2395000], + ["Spain (Kingdom of)",2239470], + ["Mexico (United Mexican States)",1715499], + ["Kenya (Republic of)",1519870], + ["Morocco (Kingdom of)",1924871], + ["Italy (Italian Republic)",1346936], + ["Kyrgyz Republic",1416011], + ["Malawi (Republic of)",1226603], + ["Bolivia (Plurinational State of)",1045291], + ["Chile (Republic of)",1426479], + ["Indonesia (Republic of)",1164743], + ["Nigeria (Federal Republic of)",1197706], + ["Ethiopia (Federal Democratic Republic of)",968970], + ["Tanzania (United Republic of)",583082], + ["Australia (Commonwealth of)",1105194], + ["Azerbaijan (Republic of)",913899], + ["Tajikistan (Republic of)",782892], + ["Austria (Republic of)",653400], + ["Sweden (Kingdom of)",852500], + ["Rwanda (Republic of)",846184], + ["Afghanistan (Islamic Republic of)",513194], + ["Czech Republic",688970], + ["Iraq (Republic of)",266794], + ["Serbia (Republic of)",589241], + ["Korea (Democratic People's Republic of)",425047], + ["Syrian Arab Republic",562416], + ["Lebanon (Lebanese Republic)",651922], + ["Finland (Republic of)",611900], + ["Guatemala (Republic of)",551122], + ["Saudi Arabia (Kingdom of)",476418], + ["Korea (Republic of)",466755], + ["New Zealand",474435], + ["Israel (State of)",522424], + ["Sudan (Republic of the)",418622], + ["Switzerland (Swiss Confederation)",461188], + ["Venezuela (Bolivarian Republic of)",421006], + ["Myanmar (Union of)",499949], + ["Greece (Hellenic Republic)",499506], + ["Tunisia (Republic of)",420000], + ["Angola (Republic of)",461186], + ["Bosnia and Herzegovina",337137], + ["Armenia (Republic of)",547420], + ["Portugal (Portuguese Republic)",515030], + ["Ecuador (Republic of)",377243], + ["Libya (State of)",339561], + ["Norway (Kingdom of)",315500], + ["Cameroon (Republic of)",315000], + ["Mozambique (Republic of)",294600], + ["Uganda (Republic of)",299338], + ["Turkmenistan",304937], + ["Ireland",412425], + ["Lithuania (Republic of)",237045], + ["Burundi (Republic of)",204891], + ["Vietnam (Socialist Republic of)",303675], + ["Hungary (Republic of)",402853], + ["Guinea (Republic of)",131588], + ["Albania (Republic of)",249804], + ["Madagascar (Republic of)",250160], + ["Mongolia",121808], + ["Niger (Republic of)",165743], + ["Yemen (Republic of)",240446], + ["Mali (Republic of)",251558], + ["Georgia",180100], + ["North Macedonia (Republic of)",178951], + ["Jordan (Hashemite Kingdom of)",155639], + ["Bulgaria (Republic of)",227815], + ["Latvia (Republic of)",408300], + ["Croatia (Republic of)",156089], + ["Moldova (Republic of)",197020], + ["Slovakia (Slovak Republic)",149705], + ["Senegal (Republic of)",67485], + ["Lesotho (Kingdom of)",131241], + ["Thailand (Kingdom of)",107103], + ["Cuba (Republic of)",147044], + ["Philippines (Republic of the)",117637], + ["Congo (Democratic Republic of the)",100468], + ["Dominican Republic",84162], + ["Slovenia (Republic of)",77076], + ["Estonia (Republic of)",91182], + ["Cyprus (Republic of)",109923], + ["Zambia (Republic of)",31750], + ["Uruguay (Oriental Republic of)",94327], + ["Nicaragua (Republic of)",59699], + ["Burkina Faso",58751], + ["Sri Lanka (Democratic Socialist Republic of)",73358], + ["Palestine (State of)",47457], + ["Taiwan",54929], + ["Costa Rica (Republic of)",89620], + ["Bhutan (Kingdom of)",57223], + ["Kuwait (State of)",51771], + ["Chad (Republic of)",41298], + ["Haiti (Republic of)",37976], + ["Honduras (Republic of)",26237], + ["Panama (Republic of)",21039], + ["Montenegro",27500], + ["Luxembourg (Grand Duchy of)",21284], + ["Oman (Sultanate of)",15737], + ["Mauritius (Republic of)",14124], + ["Zimbabwe (Republic of)",15235], + ["Jamaica",17148], + ["Namibia (Republic of)",14287], + ["Eswatini (Kingdom of)",8383], + ["Malta (Republic of)",8740], + ["Iceland (Republic of)",9000], + ["Congo (Republic of the)",7121], + ["El Salvador (Republic of)",10595], + ["Botswana (Republic of)",8765], + ["United Arab Emirates",359], + ["Paraguay (Republic of)",3760], + ["Lao (People's Democratic Republic)",1585], + ["New Caledonia",1841], + ["Cape Verde (Republic of)",4041], + ["Mauritania (Islamic Republic of)",2353], + ["Faroe Islands",1516], + ["Central African Republic",1329], + ["Timor-Leste (Democratic Republic of)",1314], + ["Papua New Guinea (Independent State of)",1214], + ["Belize",1308], + ["Comoros (Union of the)",719], + ["French Polynesia",572], + ["Qatar (State of)",104], + ["Dominica (Commonwealth of)",142], + ["Benin (Republic of)",98], + ["Eritrea (State of)",8], + ["Bahrain (Kingdom of)",75], + ["Fiji (Republic of)",270] + ] +} diff --git a/data/global/economics/agriculture/potato-production/potato-production-2018.json b/data/global/economics/agriculture/potato-production/potato-production-2018.json new file mode 100644 index 0000000..d2cf4aa --- /dev/null +++ b/data/global/economics/agriculture/potato-production/potato-production-2018.json @@ -0,0 +1,177 @@ +{ + "metadata" : { + "name" : "Potato Production", + "description" : "Annual potato production measured in metric tonnes.", + "units" : "t", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","potatoes"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_potato_production" + ] + }, + "data" : [ + ["country.name","potato.production.2018"], + ["China (People's Republic of)",90259155], + ["India (Republic of)",51310000], + ["Ukraine",22503970], + ["Russian Federation",22394960], + ["United States (of America)",20421560], + ["Germany (Federal Republic of)",8920800], + ["Bangladesh (People's Republic of)",9744412], + ["France (French Republic)",7860380], + ["Poland (Republic of)",7311960], + ["Netherlands (Kingdom of the)",6025370], + ["United Kingdom (of Great Britain & Northern Ireland)",5060000], + ["Peru (Republic of)",5133927], + ["Canada",5204548], + ["Belarus (Republic of)",5864325], + ["Egypt (Arab Republic of)",4960062], + ["Turkey (Republic of)",4550000], + ["Algeria (People's Democratic Republic of)",4653322], + ["Pakistan (Islamic Republic of)",4591776], + ["Iran (Islamic Republic of)",3574934], + ["Kazakhstan (Republic of)",3806992], + ["Belgium (Kingdom of)",3045440], + ["Brazil (Federative Republic of)",3728953], + ["Uzbekistan (Republic of)",2911933], + ["Nepal (Federal Democratic Republic of)",3088000], + ["Denmark (Kingdom of)",1806800], + ["Romania",3022760], + ["Colombia (Republic of)",3018999], + ["South Africa (Republic of)",2467724], + ["Argentina (Argentine Republic)",2403193], + ["Japan",2260000], + ["Spain (Kingdom of)",2010930], + ["Mexico (United Mexican States)",1802592], + ["Kenya (Republic of)",1870375], + ["Morocco (Kingdom of)",1869149], + ["Italy (Italian Republic)",1307600], + ["Kyrgyz Republic",1446610], + ["Malawi (Republic of)",1125874], + ["Bolivia (Plurinational State of)",1160940], + ["Chile (Republic of)",1183357], + ["Indonesia (Republic of)",1284760], + ["Nigeria (Federal Republic of)",1205893], + ["Ethiopia (Federal Democratic Republic of)",933109], + ["Tanzania (United Republic of)",1080144], + ["Australia (Commonwealth of)",1188655], + ["Azerbaijan (Republic of)",898914], + ["Tajikistan (Republic of)",964644], + ["Austria (Republic of)",697930], + ["Sweden (Kingdom of)",723000], + ["Rwanda (Republic of)",916062], + ["Afghanistan (Islamic Republic of)",615684], + ["Czech Republic",583560], + ["Iraq (Republic of)",165589], + ["Serbia (Republic of)",487909], + ["Korea (Democratic People's Republic of)",570807], + ["Syrian Arab Republic",562342], + ["Lebanon (Lebanese Republic)",658306], + ["Finland (Republic of)",600300], + ["Guatemala (Republic of)",560655], + ["Saudi Arabia (Kingdom of)",425250], + ["Korea (Republic of)",548065], + ["New Zealand",499374], + ["Israel (State of)",511163], + ["Sudan (Republic of the)",439554], + ["Switzerland (Swiss Confederation)",447600], + ["Venezuela (Bolivarian Republic of)",445679], + ["Myanmar (Union of)",488535], + ["Greece (Hellenic Republic)",465770], + ["Tunisia (Republic of)",465000], + ["Angola (Republic of)",458217], + ["Bosnia and Herzegovina",394274], + ["Armenia (Republic of)",415050], + ["Portugal (Portuguese Republic)",431690], + ["Ecuador (Republic of)",269201], + ["Libya (State of)",358572], + ["Norway (Kingdom of)",326400], + ["Cameroon (Republic of)",340091], + ["Mozambique (Republic of)",322539], + ["Uganda (Republic of)",327332], + ["Turkmenistan",307934], + ["Ireland",273010], + ["Lithuania (Republic of)",289800], + ["Burundi (Republic of)",302665], + ["Vietnam (Socialist Republic of)",376377], + ["Hungary (Republic of)",327580], + ["Guinea (Republic of)",151326], + ["Albania (Republic of)",254543], + ["Madagascar (Republic of)",257379], + ["Mongolia",168883], + ["Niger (Republic of)",168569], + ["Yemen (Republic of)",229777], + ["Mali (Republic of)",310902], + ["Georgia",237500], + ["North Macedonia (Republic of)",181931], + ["Jordan (Hashemite Kingdom of)",153199], + ["Bulgaria (Republic of)",261690], + ["Latvia (Republic of)",196200], + ["Croatia (Republic of)",182260], + ["Moldova (Republic of)",174774], + ["Slovakia (Slovak Republic)",169950], + ["Senegal (Republic of)",118783], + ["Lesotho (Kingdom of)",126935], + ["Thailand (Kingdom of)",108291], + ["Cuba (Republic of)",135147], + ["Philippines (Republic of the)",117423], + ["Congo (Democratic Republic of the)",101694], + ["Dominican Republic",88557], + ["Slovenia (Republic of)",72920], + ["Estonia (Republic of)",58030], + ["Cyprus (Republic of)",105330], + ["Zambia (Republic of)",13546], + ["Uruguay (Oriental Republic of)",87000], + ["Nicaragua (Republic of)",66169], + ["Burkina Faso",63635], + ["Sri Lanka (Democratic Socialist Republic of)",88897], + ["Palestine (State of)",59634], + ["Taiwan",62287], + ["Costa Rica (Republic of)",48748], + ["Bhutan (Kingdom of)",44278], + ["Kuwait (State of)",36212], + ["Chad (Republic of)",41868], + ["Haiti (Republic of)",35924], + ["Honduras (Republic of)",26643], + ["Panama (Republic of)",24424], + ["Montenegro",26098], + ["Luxembourg (Grand Duchy of)",16210], + ["Oman (Sultanate of)",15613], + ["Mauritius (Republic of)",17033], + ["Zimbabwe (Republic of)",15035], + ["Jamaica",16184], + ["Namibia (Republic of)",14513], + ["Eswatini (Kingdom of)",8229], + ["Malta (Republic of)",9360], + ["Iceland (Republic of)",6020], + ["Congo (Republic of the)",7016], + ["El Salvador (Republic of)",10597], + ["Botswana (Republic of)",12335], + ["United Arab Emirates",451], + ["Paraguay (Republic of)",3851], + ["Lao (People's Democratic Republic)",2160], + ["New Caledonia",2510], + ["Cape Verde (Republic of)",2200], + ["Mauritania (Islamic Republic of)",2249], + ["Faroe Islands",1527], + ["Central African Republic",1335], + ["Timor-Leste (Democratic Republic of)",1299], + ["Papua New Guinea (Independent State of)",1220], + ["Belize",1540], + ["Comoros (Union of the)",711], + ["French Polynesia",568], + ["Qatar (State of)",17], + ["Dominica (Commonwealth of)",143], + ["Benin (Republic of)",60], + ["Eritrea (State of)",54], + ["Bahrain (Kingdom of)",85], + ["Fiji (Republic of)",24] + ] +} diff --git a/data/global/economics/agriculture/potato-production/potato-production-2019.json b/data/global/economics/agriculture/potato-production/potato-production-2019.json new file mode 100644 index 0000000..45ea867 --- /dev/null +++ b/data/global/economics/agriculture/potato-production/potato-production-2019.json @@ -0,0 +1,177 @@ +{ + "metadata" : { + "name" : "Potato Production", + "description" : "Annual potato production measured in metric tonnes.", + "units" : "t", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","potatoes"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_potato_production" + ] + }, + "data" : [ + ["country.name","potato.production.2019"], + ["China (People's Republic of)",75595403], + ["India (Republic of)",50190000], + ["Ukraine",20269190], + ["Russian Federation",22074874], + ["United States (of America)",19251320], + ["Germany (Federal Republic of)",10602200], + ["Bangladesh (People's Republic of)",9655082], + ["France (French Republic)",8560410], + ["Poland (Republic of)",6481620], + ["Netherlands (Kingdom of the)",6961230], + ["United Kingdom (of Great Britain & Northern Ireland)",5307000], + ["Peru (Republic of)",5389231], + ["Canada",5364169], + ["Belarus (Republic of)",6105294], + ["Egypt (Arab Republic of)",5200563], + ["Turkey (Republic of)",4979824], + ["Algeria (People's Democratic Republic of)",5020249], + ["Pakistan (Islamic Republic of)",4869312], + ["Iran (Islamic Republic of)",3673984], + ["Kazakhstan (Republic of)",3912103], + ["Belgium (Kingdom of)",4027620], + ["Brazil (Federative Republic of)",3711744], + ["Uzbekistan (Republic of)",3089658], + ["Nepal (Federal Democratic Republic of)",3112947], + ["Denmark (Kingdom of)",2408700], + ["Romania",2626790], + ["Colombia (Republic of)",3123804], + ["South Africa (Republic of)",2505775], + ["Argentina (Argentine Republic)",2427611], + ["Japan",2399000], + ["Spain (Kingdom of)",2259320], + ["Mexico (United Mexican States)",1783896], + ["Kenya (Republic of)",1978952], + ["Morocco (Kingdom of)",1956711], + ["Italy (Italian Republic)",1338430], + ["Kyrgyz Republic",1373800], + ["Malawi (Republic of)",1113077], + ["Bolivia (Plurinational State of)",1256584], + ["Chile (Republic of)",1162568], + ["Indonesia (Republic of)",1314654], + ["Nigeria (Federal Republic of)",1194375], + ["Ethiopia (Federal Democratic Republic of)",924528], + ["Tanzania (United Republic of)",1013408], + ["Australia (Commonwealth of)",1225274], + ["Azerbaijan (Republic of)",1004172], + ["Tajikistan (Republic of)",994433], + ["Austria (Republic of)",751260], + ["Sweden (Kingdom of)",846900], + ["Rwanda (Republic of)",973408], + ["Afghanistan (Islamic Republic of)",921122], + ["Czech Republic",622600], + ["Iraq (Republic of)",392348], + ["Serbia (Republic of)",702086], + ["Korea (Democratic People's Republic of)",684587], + ["Syrian Arab Republic",635519], + ["Lebanon (Lebanese Republic)",610697], + ["Finland (Republic of)",618900], + ["Guatemala (Republic of)",570462], + ["Saudi Arabia (Kingdom of)",472127], + ["Korea (Republic of)",630140], + ["New Zealand",520501], + ["Israel (State of)",524394], + ["Sudan (Republic of the)",465927], + ["Switzerland (Swiss Confederation)",413984], + ["Venezuela (Bolivarian Republic of)",465709], + ["Myanmar (Union of)",485823], + ["Greece (Hellenic Republic)",470210], + ["Tunisia (Republic of)",435000], + ["Angola (Republic of)",455249], + ["Bosnia and Herzegovina",381308], + ["Armenia (Republic of)",404057], + ["Portugal (Portuguese Republic)",424290], + ["Ecuador (Republic of)",275346], + ["Libya (State of)",360217], + ["Norway (Kingdom of)",332200], + ["Cameroon (Republic of)",365127], + ["Mozambique (Republic of)",297859], + ["Uganda (Republic of)",326000], + ["Turkmenistan",299074], + ["Ireland",382370], + ["Lithuania (Republic of)",329780], + ["Burundi (Republic of)",376441], + ["Vietnam (Socialist Republic of)",333729], + ["Hungary (Republic of)",343540], + ["Guinea (Republic of)",162213], + ["Albania (Republic of)",260661], + ["Madagascar (Republic of)",250000], + ["Mongolia",192240], + ["Niger (Republic of)",198392], + ["Yemen (Republic of)",233051], + ["Mali (Republic of)",303257], + ["Georgia",194700], + ["North Macedonia (Republic of)",190527], + ["Jordan (Hashemite Kingdom of)",173653], + ["Bulgaria (Republic of)",197410], + ["Latvia (Republic of)",223700], + ["Croatia (Republic of)",173150], + ["Moldova (Republic of)",176850], + ["Slovakia (Slovak Republic)",182420], + ["Senegal (Republic of)",140000], + ["Lesotho (Kingdom of)",128234], + ["Thailand (Kingdom of)",127935], + ["Cuba (Republic of)",129500], + ["Philippines (Republic of the)",116061], + ["Congo (Democratic Republic of the)",102932], + ["Dominican Republic",94056], + ["Slovenia (Republic of)",65960], + ["Estonia (Republic of)",80130], + ["Cyprus (Republic of)",82100], + ["Zambia (Republic of)",38786], + ["Uruguay (Oriental Republic of)",94400], + ["Nicaragua (Republic of)",66858], + ["Burkina Faso",70540], + ["Sri Lanka (Democratic Socialist Republic of)",101642], + ["Palestine (State of)",59845], + ["Taiwan",62447], + ["Costa Rica (Republic of)",52824], + ["Bhutan (Kingdom of)",43560], + ["Kuwait (State of)",34807], + ["Chad (Republic of)",40072], + ["Haiti (Republic of)",36867], + ["Honduras (Republic of)",26565], + ["Panama (Republic of)",25852], + ["Montenegro",26560], + ["Luxembourg (Grand Duchy of)",15330], + ["Oman (Sultanate of)",15766], + ["Mauritius (Republic of)",14822], + ["Zimbabwe (Republic of)",15297], + ["Jamaica",15717], + ["Namibia (Republic of)",14183], + ["Eswatini (Kingdom of)",8287], + ["Malta (Republic of)",8990], + ["Iceland (Republic of)",8200], + ["Congo (Republic of the)",6938], + ["El Salvador (Republic of)",8468], + ["Botswana (Republic of)",1800], + ["United Arab Emirates",4193], + ["Paraguay (Republic of)",3867], + ["Lao (People's Democratic Republic)",2200], + ["New Caledonia",2485], + ["Cape Verde (Republic of)",2666], + ["Mauritania (Islamic Republic of)",2249], + ["Faroe Islands",1530], + ["Central African Republic",1329], + ["Timor-Leste (Democratic Republic of)",1299], + ["Papua New Guinea (Independent State of)",1223], + ["Belize",1582], + ["Comoros (Union of the)",719], + ["French Polynesia",563], + ["Qatar (State of)",87], + ["Dominica (Commonwealth of)",142], + ["Benin (Republic of)",96], + ["Eritrea (State of)",54], + ["Bahrain (Kingdom of)",30], + ["Fiji (Republic of)",44] + ] +} diff --git a/data/global/economics/agriculture/potato-production/potato-production-2020.json b/data/global/economics/agriculture/potato-production/potato-production-2020.json new file mode 100644 index 0000000..324a326 --- /dev/null +++ b/data/global/economics/agriculture/potato-production/potato-production-2020.json @@ -0,0 +1,177 @@ +{ + "metadata" : { + "name" : "Potato Production", + "description" : "Annual potato production measured in metric tonnes.", + "units" : "t", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","potatoes"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_potato_production" + ] + }, + "data" : [ + ["country.name","potato.production.2020"], + ["China (People's Republic of)",78183874], + ["India (Republic of)",51300000], + ["Ukraine",20837990], + ["Russian Federation",19607361], + ["United States (of America)",18789970], + ["Germany (Federal Republic of)",11715100], + ["Bangladesh (People's Republic of)",9606000], + ["France (French Republic)",8691900], + ["Poland (Republic of)",7848600], + ["Netherlands (Kingdom of the)",7020060], + ["United Kingdom (of Great Britain & Northern Ireland)",5520000], + ["Peru (Republic of)",5467041], + ["Canada",5295484], + ["Belarus (Republic of)",5231168], + ["Egypt (Arab Republic of)",5215905], + ["Turkey (Republic of)",5200000], + ["Algeria (People's Democratic Republic of)",4659482], + ["Pakistan (Islamic Republic of)",4552656], + ["Iran (Islamic Republic of)",4474886], + ["Kazakhstan (Republic of)",4006780], + ["Belgium (Kingdom of)",3928910], + ["Brazil (Federative Republic of)",3767769], + ["Uzbekistan (Republic of)",3143818], + ["Nepal (Federal Democratic Republic of)",3131830], + ["Denmark (Kingdom of)",2762900], + ["Romania",2698500], + ["Colombia (Republic of)",2625272], + ["South Africa (Republic of)",2546996], + ["Argentina (Argentine Republic)",2426526], + ["Japan",2274435], + ["Spain (Kingdom of)",2051830], + ["Mexico (United Mexican States)",1943910], + ["Kenya (Republic of)",1859776], + ["Morocco (Kingdom of)",1707068], + ["Italy (Italian Republic)",1434650], + ["Kyrgyz Republic",1327163], + ["Malawi (Republic of)",1318236], + ["Bolivia (Plurinational State of)",1317923], + ["Chile (Republic of)",1288154], + ["Indonesia (Republic of)",1282768], + ["Nigeria (Federal Republic of)",1199324], + ["Ethiopia (Federal Democratic Republic of)",1141872], + ["Tanzania (United Republic of)",1078270], + ["Australia (Commonwealth of)",1076780], + ["Azerbaijan (Republic of)",1037637], + ["Tajikistan (Republic of)",986327], + ["Austria (Republic of)",885890], + ["Sweden (Kingdom of)",877200], + ["Rwanda (Republic of)",858521], + ["Afghanistan (Islamic Republic of)",855395], + ["Czech Republic",696220], + ["Iraq (Republic of)",674840], + ["Serbia (Republic of)",664891], + ["Korea (Democratic People's Republic of)",661092], + ["Syrian Arab Republic",647319], + ["Lebanon (Lebanese Republic)",628409], + ["Finland (Republic of)",624400], + ["Guatemala (Republic of)",589761], + ["Saudi Arabia (Kingdom of)",561301], + ["Korea (Republic of)",553194], + ["New Zealand",553115], + ["Israel (State of)",498868], + ["Sudan (Republic of the)",493882], + ["Switzerland (Swiss Confederation)",490000], + ["Venezuela (Bolivarian Republic of)",488155], + ["Myanmar (Union of)",483967], + ["Greece (Hellenic Republic)",450640], + ["Tunisia (Republic of)",450000], + ["Angola (Republic of)",446111], + ["Bosnia and Herzegovina",441218], + ["Armenia (Republic of)",437226], + ["Portugal (Portuguese Republic)",409640], + ["Ecuador (Republic of)",408313], + ["Libya (State of)",366749], + ["Norway (Kingdom of)",361200], + ["Cameroon (Republic of)",354404], + ["Mozambique (Republic of)",312583], + ["Uganda (Republic of)",309286], + ["Turkmenistan",303982], + ["Ireland",300150], + ["Lithuania (Republic of)",296740], + ["Burundi (Republic of)",294666], + ["Vietnam (Socialist Republic of)",294090], + ["Hungary (Republic of)",270090], + ["Guinea (Republic of)",266866], + ["Albania (Republic of)",254886], + ["Madagascar (Republic of)",247446], + ["Mongolia",244262], + ["Niger (Republic of)",235635], + ["Yemen (Republic of)",233201], + ["Mali (Republic of)",225880], + ["Georgia",208600], + ["North Macedonia (Republic of)",193426], + ["Jordan (Hashemite Kingdom of)",192746], + ["Bulgaria (Republic of)",192330], + ["Latvia (Republic of)",181100], + ["Croatia (Republic of)",174280], + ["Moldova (Republic of)",171899], + ["Slovakia (Slovak Republic)",166200], + ["Senegal (Republic of)",147985], + ["Lesotho (Kingdom of)",128803], + ["Thailand (Kingdom of)",126864], + ["Cuba (Republic of)",115385], + ["Philippines (Republic of the)",113562], + ["Congo (Democratic Republic of the)",103818], + ["Dominican Republic",91972], + ["Slovenia (Republic of)",89080], + ["Estonia (Republic of)",88390], + ["Cyprus (Republic of)",80300], + ["Zambia (Republic of)",79980], + ["Uruguay (Oriental Republic of)",73706], + ["Nicaragua (Republic of)",68817], + ["Burkina Faso",66786], + ["Sri Lanka (Democratic Socialist Republic of)",65085], + ["Palestine (State of)",60084], + ["Taiwan",52722], + ["Costa Rica (Republic of)",47619], + ["Bhutan (Kingdom of)",45500], + ["Kuwait (State of)",43619], + ["Chad (Republic of)",39932], + ["Haiti (Republic of)",36922], + ["Honduras (Republic of)",26781], + ["Panama (Republic of)",26104], + ["Montenegro",23526], + ["Luxembourg (Grand Duchy of)",16370], + ["Oman (Sultanate of)",16146], + ["Mauritius (Republic of)",15828], + ["Zimbabwe (Republic of)",15189], + ["Jamaica",14685], + ["Namibia (Republic of)",14328], + ["Eswatini (Kingdom of)",8300], + ["Malta (Republic of)",7990], + ["Iceland (Republic of)",7379], + ["Congo (Republic of the)",7025], + ["El Salvador (Republic of)",6878], + ["Botswana (Republic of)",5260], + ["United Arab Emirates",4238], + ["Paraguay (Republic of)",3983], + ["Lao (People's Democratic Republic)",3560], + ["New Caledonia",2616], + ["Cape Verde (Republic of)",2550], + ["Mauritania (Islamic Republic of)",2253], + ["Faroe Islands",1533], + ["Central African Republic",1331], + ["Timor-Leste (Democratic Republic of)",1298], + ["Papua New Guinea (Independent State of)",1219], + ["Belize",1184], + ["Comoros (Union of the)",716], + ["French Polynesia",557], + ["Qatar (State of)",206], + ["Dominica (Commonwealth of)",142], + ["Benin (Republic of)",63], + ["Eritrea (State of)",54], + ["Bahrain (Kingdom of)",14], + ["Fiji (Republic of)",0] + ] +} diff --git a/data/global/economics/agriculture/rice-production.json b/data/global/economics/agriculture/rice-production.json new file mode 100644 index 0000000..4142fb7 --- /dev/null +++ b/data/global/economics/agriculture/rice-production.json @@ -0,0 +1,136 @@ +{ + "metadata" : { + "name" : "Rice Production", + "description" : "Annual rice production measured in metric tonnes.", + "units" : "t", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","rice"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_rice_production" + ] + }, + "data" : [ + ["country.name","rice.production"], + ["China (People's Republic of)",211860000], + ["India (Republic of)",178305000], + ["Bangladesh (People's Republic of)",54905891], + ["Indonesia (Republic of)",54649202], + ["Vietnam (Socialist Republic of)",42758897], + ["Thailand (Kingdom of)",30231025], + ["Myanmar (Union of)",25100000], + ["Philippines (Republic of the)",19294856], + ["Brazil (Federative Republic of)",11091011], + ["Cambodia (Kingdom of)",10960000], + ["United States (of America)",10322990], + ["Japan",9706250], + ["Pakistan (Islamic Republic of)",8419276], + ["Nigeria (Federal Republic of)",8172000], + ["Nepal (Federal Democratic Republic of)",5550878], + ["Sri Lanka (Democratic Socialist Republic of)",5120924], + ["Egypt (Arab Republic of)",4893507], + ["Korea (Republic of)",4713162], + ["Tanzania (United Republic of)",4528000], + ["Madagascar (Republic of)",4232000], + ["Lao (People's Democratic Republic)",3687336], + ["Peru (Republic of)",3436637], + ["Colombia (Republic of)",3424119], + ["Mali (Republic of)",3010027], + ["Guinea (Republic of)",2916395], + ["Malaysia",2321636], + ["Korea (Democratic People's Republic of)",2113019], + ["Iran (Islamic Republic of)",2000000], + ["Taiwan",1750729], + ["Italy (Italian Republic)",1507490], + ["Côte d'Ivoire (Republic of)",1481182], + ["Congo (Democratic Republic of the)",1379000], + ["Senegal (Republic of)",1349723], + ["Ecuador (Republic of)",1336502], + ["Argentina (Argentine Republic)",1222910], + ["Uruguay (Oriental Republic of)",1209000], + ["Paraguay (Republic of)",1187768], + ["Russian Federation",1141819], + ["Sierra Leone (Republic of)",1049795], + ["Turkey (Republic of)",980000], + ["Ghana (Republic of)",973000], + ["Dominican Republic",942765], + ["Spain (Kingdom of)",739230], + ["Guyana (Co-operative Republic of)",687539], + ["Kazakhstan (Republic of)",556775], + ["Bolivia (Plurinational State of)",487427], + ["Nicaragua (Republic of)",476992], + ["Iraq (Republic of)",464159], + ["Afghanistan (Islamic Republic of)",439549], + ["Venezuela (Bolivarian Republic of)",429179], + ["Benin (Republic of)",411578], + ["Burkina Faso",395443], + ["Panama (Republic of)",391600], + ["Mauritania (Islamic Republic of)",365000], + ["Cameroon (Republic of)",328503], + ["Mexico (United Mexican States)",295338], + ["Uzbekistan (Republic of)",293451], + ["Greece (Hellenic Republic)",287410], + ["Suriname (Republic of)",285712], + ["Chad (Republic of)",278053], + ["Liberia (Republic of)",270000], + ["Cuba (Republic of)",266595], + ["Uganda (Republic of)",200000], + ["Guinea-Bissau (Republic of)",198000], + ["Ethiopia (Federal Democratic Republic of)",189649], + ["Kenya (Republic of)",180890], + ["Niger (Republic of)",179382], + ["Haiti (Republic of)",172000], + ["Chile (Republic of)",169697], + ["Togo (Togolese Republic)",160000], + ["Burundi (Republic of)",150000], + ["Turkmenistan",150000], + ["Malawi (Republic of)",145446], + ["Costa Rica (Republic of)",137504], + ["Mozambique (Republic of)",137243], + ["Portugal (Portuguese Republic)",132790], + ["Rwanda (Republic of)",116504], + ["Tajikistan (Republic of)",99000], + ["France (French Republic)",76320], + ["Timor-Leste (Democratic Republic of)",69000], + ["Bulgaria (Republic of)",65810], + ["Honduras (Republic of)",65634], + ["Ukraine",60680], + ["Bhutan (Kingdom of)",54088], + ["Australia (Commonwealth of)",50226], + ["Morocco (Kingdom of)",46275], + ["Kyrgyz Republic",44474], + ["Zambia (Republic of)",34630], + ["Sudan (Republic of the)",34133], + ["Guatemala (Republic of)",32000], + ["Comoros (Union of the)",30543], + ["El Salvador (Republic of)",28000], + ["Gambia (Republic of the)",28000], + ["Romania",24670], + ["North Macedonia (Republic of)",19518], + ["Belize",13942], + ["Hungary (Republic of)",11740], + ["Angola (Republic of)",10000], + ["Azerbaijan (Republic of)",9397], + ["Fiji (Republic of)",8208], + ["Central African Republic",6095], + ["South Africa (Republic of)",3076], + ["Solomon Islands",2745], + ["Brunei (Nation of the Abode of Peace)",2511], + ["Gabon (Gabonese Republic)",1700], + ["Zimbabwe (Republic of)",1336], + ["Congo (Republic of the)",1211], + ["Somalia (Federal Republic of)",1183], + ["Eswatini (Kingdom of)",1000], + ["Papua New Guinea (Independent State of)",874], + ["Trinidad and Tobago (Republic of)",734], + ["Algeria (People's Democratic Republic of)",300], + ["Micronesia (Federated States of)",172], + ["Puerto Rico (Commonwealth of)",138] + ] +} diff --git a/data/global/economics/agriculture/soybean-production/soybean-production-2016.json b/data/global/economics/agriculture/soybean-production/soybean-production-2016.json new file mode 100644 index 0000000..ca0540a --- /dev/null +++ b/data/global/economics/agriculture/soybean-production/soybean-production-2016.json @@ -0,0 +1,121 @@ +{ + "metadata" : { + "name" : "Soybean Production", + "description" : "Annual Soybean production measured in metric tonnes.", + "units" : "t", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","soy","soybean"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_soybean_production" + ] + }, + "data" : [ + ["country.name","soybean.production.2016"], + ["Brazil (Federative Republic of)",96394820], + ["United States (of America)",116931500], + ["Argentina (Argentine Republic)",58799258], + ["China (People's Republic of)",12788894], + ["India (Republic of)",13159000], + ["Paraguay (Republic of)",9163030], + ["Canada",6596500], + ["Russian Federation",3142693], + ["Bolivia (Plurinational State of)",3203992], + ["Ukraine",4276990], + ["Uruguay (Oriental Republic of)",2208000], + ["South Africa (Republic of)",742000], + ["Indonesia (Republic of)",859653], + ["Italy (Italian Republic)",1081340], + ["Serbia (Republic of)",576446], + ["Nigeria (Federal Republic of)",936887], + ["France (French Republic)",338955], + ["Romania",263380], + ["Zambia (Republic of)",267490], + ["Croatia (Republic of)",244075], + ["Kazakhstan (Republic of)",231168], + ["Benin (Republic of)",156901], + ["Mexico (United Mexican States)",509114], + ["Korea (Democratic People's Republic of)",282000], + ["Japan",238000], + ["Ethiopia (Federal Democratic Republic of)",81235], + ["Austria (Republic of)",152599], + ["Cambodia (Kingdom of)",162000], + ["Malawi (Republic of)",132417], + ["Ghana (Republic of)",143220], + ["Hungary (Republic of)",184725], + ["Turkey (Republic of)",165000], + ["Myanmar (Union of)",149185], + ["Iran (Islamic Republic of)",139325], + ["Slovakia (Slovak Republic)",92484], + ["Colombia (Republic of)",80548], + ["Bangladesh (People's Republic of)",92181], + ["Germany (Federal Republic of)",43000], + ["Korea (Republic of)",75448], + ["Uganda (Republic of)",25730], + ["Mozambique (Republic of)",47000], + ["Vietnam (Socialist Republic of)",160696], + ["Zimbabwe (Republic of)",47755], + ["Egypt (Arab Republic of)",45165], + ["Burkina Faso",25851], + ["Guatemala (Republic of)",38000], + ["Angola (Republic of)",15740], + ["Nepal (Federal Democratic Republic of)",28917], + ["Bosnia and Herzegovina",18662], + ["Moldova (Republic of)",42125], + ["Czech Republic",27972], + ["Thailand (Kingdom of)",37765], + ["Ecuador (Republic of)",41788], + ["Congo (Democratic Republic of the)",24000], + ["Cameroon (Republic of)",24558], + ["Tanzania (United Republic of)",6711], + ["Rwanda (Republic of)",21942], + ["Australia (Commonwealth of)",29403], + ["Poland (Republic of)",14747], + ["Mali (Republic of)",11769], + ["Lao (People's Democratic Republic)",19130], + ["Belize",7779], + ["Nicaragua (Republic of)",5693], + ["Venezuela (Bolivarian Republic of)",1720], + ["Sri Lanka (Democratic Socialist Republic of)",9830], + ["Uzbekistan (Republic of)",232], + ["Syrian Arab Republic",3550], + ["Bulgaria (Republic of)",18301], + ["Switzerland (Swiss Confederation)",4500], + ["El Salvador (Republic of)",5052], + ["Slovenia (Republic of)",7387], + ["Spain (Kingdom of)",2869], + ["Taiwan",3061], + ["Gabon (Gabonese Republic)",3857], + ["Liberia (Republic of)",3157], + ["Burundi (Republic of)",2395], + ["Lithuania (Republic of)",null], + ["Kenya (Republic of)",2007], + ["Kyrgyz Republic",1240], + ["Georgia",2052], + ["Greece (Hellenic Republic)",9465], + ["Togo (Togolese Republic)",1713], + ["Peru (Republic of)",1371], + ["Honduras (Republic of)",2200], + ["Timor-Leste (Democratic Republic of)",968], + ["Morocco (Kingdom of)",1000], + ["Philippines (Republic of the)",544], + ["Albania (Republic of)",664], + ["Côte d'Ivoire (Republic of)",700], + ["Bhutan (Kingdom of)",254], + ["Pakistan (Islamic Republic of)",40], + ["Panama (Republic of)",101], + ["Madagascar (Republic of)",46], + ["Iraq (Republic of)",31], + ["Luxembourg (Grand Duchy of)",null], + ["Azerbaijan (Republic of)",33], + ["Tajikistan (Republic of)",21], + ["North Macedonia (Republic of)",1], + ["Suriname (Republic of)",7] + ] +} diff --git a/data/global/economics/agriculture/soybean-production/soybean-production-2017.json b/data/global/economics/agriculture/soybean-production/soybean-production-2017.json new file mode 100644 index 0000000..c824d75 --- /dev/null +++ b/data/global/economics/agriculture/soybean-production/soybean-production-2017.json @@ -0,0 +1,121 @@ +{ + "metadata" : { + "name" : "Soybean Production", + "description" : "Annual Soybean production measured in metric tonnes.", + "units" : "t", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","soy","soybean"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_soybean_production" + ] + }, + "data" : [ + ["country.name","soybean.production.2017"], + ["Brazil (Federative Republic of)",114732101], + ["United States (of America)",120064970], + ["Argentina (Argentine Republic)",54971626], + ["China (People's Republic of)",15282500], + ["India (Republic of)",13158730], + ["Paraguay (Republic of)",10478000], + ["Canada",7716600], + ["Russian Federation",3621712], + ["Bolivia (Plurinational State of)",2671046], + ["Ukraine",3899370], + ["Uruguay (Oriental Republic of)",3212000], + ["South Africa (Republic of)",1316000], + ["Indonesia (Republic of)",538729], + ["Italy (Italian Republic)",1019781], + ["Serbia (Republic of)",461272], + ["Nigeria (Federal Republic of)",993955], + ["France (French Republic)",415202], + ["Romania",393495], + ["Zambia (Republic of)",351416], + ["Croatia (Republic of)",207765], + ["Kazakhstan (Republic of)",252319], + ["Benin (Republic of)",164761], + ["Mexico (United Mexican States)",432927], + ["Korea (Democratic People's Republic of)",223325], + ["Japan",253000], + ["Ethiopia (Federal Democratic Republic of)",86468], + ["Austria (Republic of)",193416], + ["Cambodia (Kingdom of)",168000], + ["Malawi (Republic of)",208556], + ["Ghana (Republic of)",170490], + ["Hungary (Republic of)",179282], + ["Turkey (Republic of)",140000], + ["Myanmar (Union of)",145465], + ["Iran (Islamic Republic of)",130000], + ["Slovakia (Slovak Republic)",102441], + ["Colombia (Republic of)",80106], + ["Bangladesh (People's Republic of)",96921], + ["Germany (Federal Republic of)",66000], + ["Korea (Republic of)",85644], + ["Uganda (Republic of)",28097], + ["Mozambique (Republic of)",50000], + ["Vietnam (Socialist Republic of)",101856], + ["Zimbabwe (Republic of)",36478], + ["Egypt (Arab Republic of)",36388], + ["Burkina Faso",18500], + ["Guatemala (Republic of)",38000], + ["Angola (Republic of)",36001], + ["Nepal (Federal Democratic Republic of)",29061], + ["Bosnia and Herzegovina",11740], + ["Moldova (Republic of)",46524], + ["Czech Republic",37012], + ["Thailand (Kingdom of)",42829], + ["Ecuador (Republic of)",35006], + ["Congo (Democratic Republic of the)",22150], + ["Cameroon (Republic of)",26429], + ["Tanzania (United Republic of)",6135], + ["Rwanda (Republic of)",23934], + ["Australia (Commonwealth of)",31335], + ["Poland (Republic of)",20297], + ["Mali (Republic of)",5801], + ["Lao (People's Democratic Republic)",7960], + ["Belize",13037], + ["Nicaragua (Republic of)",5693], + ["Venezuela (Bolivarian Republic of)",7855], + ["Sri Lanka (Democratic Socialist Republic of)",14363], + ["Uzbekistan (Republic of)",6138], + ["Syrian Arab Republic",3901], + ["Bulgaria (Republic of)",20000], + ["Switzerland (Swiss Confederation)",5642], + ["El Salvador (Republic of)",5069], + ["Slovenia (Republic of)",7713], + ["Spain (Kingdom of)",4599], + ["Taiwan",4674], + ["Gabon (Gabonese Republic)",4047], + ["Liberia (Republic of)",3346], + ["Burundi (Republic of)",2167], + ["Lithuania (Republic of)",null], + ["Kenya (Republic of)",2518], + ["Kyrgyz Republic",3512], + ["Georgia",2062], + ["Greece (Hellenic Republic)",8099], + ["Togo (Togolese Republic)",1784], + ["Peru (Republic of)",1581], + ["Honduras (Republic of)",2210], + ["Timor-Leste (Democratic Republic of)",965], + ["Morocco (Kingdom of)",756], + ["Philippines (Republic of the)",666], + ["Albania (Republic of)",500], + ["Côte d'Ivoire (Republic of)",581], + ["Bhutan (Kingdom of)",204], + ["Pakistan (Islamic Republic of)",19], + ["Panama (Republic of)",100], + ["Madagascar (Republic of)",47], + ["Iraq (Republic of)",32], + ["Luxembourg (Grand Duchy of)",null], + ["Azerbaijan (Republic of)",29], + ["Tajikistan (Republic of)",21], + ["North Macedonia (Republic of)",34], + ["Suriname (Republic of)",7] + ] +} diff --git a/data/global/economics/agriculture/soybean-production/soybean-production-2018.json b/data/global/economics/agriculture/soybean-production/soybean-production-2018.json new file mode 100644 index 0000000..f7ca611 --- /dev/null +++ b/data/global/economics/agriculture/soybean-production/soybean-production-2018.json @@ -0,0 +1,121 @@ +{ + "metadata" : { + "name" : "Soybean Production", + "description" : "Annual Soybean production measured in metric tonnes.", + "units" : "t", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","soy","soybean"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_soybean_production" + ] + }, + "data" : [ + ["country.name","soybean.production.2018"], + ["Brazil (Federative Republic of)",117912450], + ["United States (of America)",120514490], + ["Argentina (Argentine Republic)",37787927], + ["China (People's Republic of)",15967100], + ["India (Republic of)",10932970], + ["Paraguay (Republic of)",11045971], + ["Canada",7416600], + ["Russian Federation",4026850], + ["Bolivia (Plurinational State of)",2942131], + ["Ukraine",4460770], + ["Uruguay (Oriental Republic of)",1334000], + ["South Africa (Republic of)",1540000], + ["Indonesia (Republic of)",953571], + ["Italy (Italian Republic)",1186350], + ["Serbia (Republic of)",645607], + ["Nigeria (Federal Republic of)",660000], + ["France (French Republic)",398480], + ["Romania",492680], + ["Zambia (Republic of)",302720], + ["Croatia (Republic of)",245190], + ["Kazakhstan (Republic of)",255437], + ["Benin (Republic of)",221977], + ["Mexico (United Mexican States)",324011], + ["Korea (Democratic People's Republic of)",135280], + ["Japan",211300], + ["Ethiopia (Federal Democratic Republic of)",149455], + ["Austria (Republic of)",186490], + ["Cambodia (Kingdom of)",170000], + ["Malawi (Republic of)",175475], + ["Ghana (Republic of)",176700], + ["Hungary (Republic of)",181240], + ["Turkey (Republic of)",140000], + ["Myanmar (Union of)",143717], + ["Iran (Islamic Republic of)",140000], + ["Slovakia (Slovak Republic)",106960], + ["Colombia (Republic of)",92231], + ["Bangladesh (People's Republic of)",98699], + ["Germany (Federal Republic of)",58700], + ["Korea (Republic of)",89410], + ["Uganda (Republic of)",107624], + ["Mozambique (Republic of)",55000], + ["Vietnam (Socialist Republic of)",81348], + ["Zimbabwe (Republic of)",69688], + ["Egypt (Arab Republic of)",46997], + ["Burkina Faso",31314], + ["Guatemala (Republic of)",38000], + ["Angola (Republic of)",35266], + ["Nepal (Federal Democratic Republic of)",27681], + ["Bosnia and Herzegovina",23332], + ["Moldova (Republic of)",57684], + ["Czech Republic",25260], + ["Thailand (Kingdom of)",41165], + ["Ecuador (Republic of)",25504], + ["Congo (Democratic Republic of the)",24427], + ["Cameroon (Republic of)",21270], + ["Tanzania (United Republic of)",21321], + ["Rwanda (Republic of)",22809], + ["Australia (Commonwealth of)",28903], + ["Poland (Republic of)",10390], + ["Mali (Republic of)",6693], + ["Lao (People's Democratic Republic)",8380], + ["Belize",11776], + ["Nicaragua (Republic of)",5693], + ["Venezuela (Bolivarian Republic of)",5407], + ["Sri Lanka (Democratic Socialist Republic of)",2500], + ["Uzbekistan (Republic of)",11399], + ["Syrian Arab Republic",1727], + ["Bulgaria (Republic of)",4730], + ["Switzerland (Swiss Confederation)",3740], + ["El Salvador (Republic of)",5107], + ["Slovenia (Republic of)",5330], + ["Spain (Kingdom of)",4350], + ["Taiwan",4404], + ["Gabon (Gabonese Republic)",4094], + ["Liberia (Republic of)",3367], + ["Burundi (Republic of)",2387], + ["Lithuania (Republic of)",3450], + ["Kenya (Republic of)",2398], + ["Kyrgyz Republic",2872], + ["Georgia",2000], + ["Greece (Hellenic Republic)",2520], + ["Togo (Togolese Republic)",1828], + ["Peru (Republic of)",1530], + ["Honduras (Republic of)",2180], + ["Timor-Leste (Democratic Republic of)",975], + ["Morocco (Kingdom of)",699], + ["Philippines (Republic of the)",658], + ["Albania (Republic of)",744], + ["Côte d'Ivoire (Republic of)",371], + ["Bhutan (Kingdom of)",107], + ["Pakistan (Islamic Republic of)",28], + ["Panama (Republic of)",99], + ["Madagascar (Republic of)",46], + ["Iraq (Republic of)",35], + ["Luxembourg (Grand Duchy of)",null], + ["Azerbaijan (Republic of)",29], + ["Tajikistan (Republic of)",21], + ["North Macedonia (Republic of)",85], + ["Suriname (Republic of)",7] + ] +} diff --git a/data/global/economics/agriculture/soybean-production/soybean-production-2019.json b/data/global/economics/agriculture/soybean-production/soybean-production-2019.json new file mode 100644 index 0000000..675b2c9 --- /dev/null +++ b/data/global/economics/agriculture/soybean-production/soybean-production-2019.json @@ -0,0 +1,121 @@ +{ + "metadata" : { + "name" : "Soybean Production", + "description" : "Annual Soybean production measured in metric tonnes.", + "units" : "t", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","soy","soybean"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_soybean_production" + ] + }, + "data" : [ + ["country.name","soybean.production.2019"], + ["Brazil (Federative Republic of)",114316829], + ["United States (of America)",96667090], + ["Argentina (Argentine Republic)",55263891], + ["China (People's Republic of)",18100000], + ["India (Republic of)",13267520], + ["Paraguay (Republic of)",8520350], + ["Canada",6145000], + ["Russian Federation",4359956], + ["Bolivia (Plurinational State of)",2990845], + ["Ukraine",3698710], + ["Uruguay (Oriental Republic of)",2828000], + ["South Africa (Republic of)",1170345], + ["Indonesia (Republic of)",980000], + ["Italy (Italian Republic)",1042830], + ["Serbia (Republic of)",700502], + ["Nigeria (Federal Republic of)",700000], + ["France (French Republic)",428530], + ["Romania",440120], + ["Zambia (Republic of)",281389], + ["Croatia (Republic of)",244280], + ["Kazakhstan (Republic of)",282185], + ["Benin (Republic of)",257000], + ["Mexico (United Mexican States)",232680], + ["Korea (Democratic People's Republic of)",263920], + ["Japan",217800], + ["Ethiopia (Federal Democratic Republic of)",125623], + ["Austria (Republic of)",217780], + ["Cambodia (Kingdom of)",168000], + ["Malawi (Republic of)",170000], + ["Ghana (Republic of)",184653], + ["Hungary (Republic of)",169570], + ["Turkey (Republic of)",150000], + ["Myanmar (Union of)",141939], + ["Iran (Islamic Republic of)",150000], + ["Slovakia (Slovak Republic)",119660], + ["Colombia (Republic of)",114056], + ["Bangladesh (People's Republic of)",110785], + ["Germany (Federal Republic of)",84100], + ["Korea (Republic of)",105340], + ["Uganda (Republic of)",117000], + ["Mozambique (Republic of)",55000], + ["Vietnam (Socialist Republic of)",77263], + ["Zimbabwe (Republic of)",23460], + ["Egypt (Arab Republic of)",36260], + ["Burkina Faso",51708], + ["Guatemala (Republic of)",39000], + ["Angola (Republic of)",37350], + ["Nepal (Federal Democratic Republic of)",31567], + ["Bosnia and Herzegovina",23753], + ["Moldova (Republic of)",64239], + ["Czech Republic",27840], + ["Thailand (Kingdom of)",26283], + ["Ecuador (Republic of)",39515], + ["Congo (Democratic Republic of the)",25044], + ["Cameroon (Republic of)",23054], + ["Tanzania (United Republic of)",22953], + ["Rwanda (Republic of)",24526], + ["Australia (Commonwealth of)",15136], + ["Poland (Republic of)",15540], + ["Mali (Republic of)",10440], + ["Lao (People's Democratic Republic)",11873], + ["Belize",7819], + ["Nicaragua (Republic of)",10000], + ["Venezuela (Bolivarian Republic of)",22242], + ["Sri Lanka (Democratic Socialist Republic of)",2197], + ["Uzbekistan (Republic of)",10858], + ["Syrian Arab Republic",2086], + ["Bulgaria (Republic of)",7570], + ["Switzerland (Swiss Confederation)",5350], + ["El Salvador (Republic of)",5076], + ["Slovenia (Republic of)",4240], + ["Spain (Kingdom of)",5170], + ["Taiwan",4776], + ["Gabon (Gabonese Republic)",4148], + ["Liberia (Republic of)",3392], + ["Burundi (Republic of)",2606], + ["Lithuania (Republic of)",2310], + ["Kenya (Republic of)",2396], + ["Kyrgyz Republic",2835], + ["Georgia",2000], + ["Greece (Hellenic Republic)",3720], + ["Togo (Togolese Republic)",1775], + ["Peru (Republic of)",1475], + ["Honduras (Republic of)",1455], + ["Timor-Leste (Democratic Republic of)",977], + ["Morocco (Kingdom of)",727], + ["Philippines (Republic of the)",659], + ["Albania (Republic of)",605], + ["Côte d'Ivoire (Republic of)",401], + ["Bhutan (Kingdom of)",171], + ["Pakistan (Islamic Republic of)",15], + ["Panama (Republic of)",100], + ["Madagascar (Republic of)",46], + ["Iraq (Republic of)",33], + ["Luxembourg (Grand Duchy of)",null], + ["Azerbaijan (Republic of)",30], + ["Tajikistan (Republic of)",21], + ["North Macedonia (Republic of)",18], + ["Suriname (Republic of)",11] + ] +} diff --git a/data/global/economics/agriculture/soybean-production/soybean-production-2020.json b/data/global/economics/agriculture/soybean-production/soybean-production-2020.json new file mode 100644 index 0000000..1993775 --- /dev/null +++ b/data/global/economics/agriculture/soybean-production/soybean-production-2020.json @@ -0,0 +1,121 @@ +{ + "metadata" : { + "name" : "Soybean Production", + "description" : "Annual Soybean production measured in metric tonnes.", + "units" : "t", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","soy","soybean"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_soybean_production" + ] + }, + "data" : [ + ["country.name","soybean.production.2020"], + ["Brazil (Federative Republic of)",121797712], + ["United States (of America)",112549240], + ["Argentina (Argentine Republic)",48796661], + ["China (People's Republic of)",19600000], + ["India (Republic of)",11226000], + ["Paraguay (Republic of)",11024460], + ["Canada",6358500], + ["Russian Federation",4307593], + ["Bolivia (Plurinational State of)",2829356], + ["Ukraine",2797670], + ["Uruguay (Oriental Republic of)",1990000], + ["South Africa (Republic of)",1245500], + ["Indonesia (Republic of)",1040000], + ["Italy (Italian Republic)",1005630], + ["Serbia (Republic of)",751578], + ["Nigeria (Federal Republic of)",600000], + ["France (French Republic)",406670], + ["Romania",353640], + ["Zambia (Republic of)",296866], + ["Croatia (Republic of)",266010], + ["Kazakhstan (Republic of)",260639], + ["Benin (Republic of)",253954], + ["Mexico (United Mexican States)",246019], + ["Korea (Democratic People's Republic of)",229892], + ["Japan",218900], + ["Ethiopia (Federal Democratic Republic of)",208676], + ["Austria (Republic of)",204860], + ["Cambodia (Kingdom of)",180000], + ["Malawi (Republic of)",180000], + ["Ghana (Republic of)",177007], + ["Hungary (Republic of)",165760], + ["Turkey (Republic of)",155225], + ["Myanmar (Union of)",145000], + ["Iran (Islamic Republic of)",140000], + ["Slovakia (Slovak Republic)",132200], + ["Colombia (Republic of)",119412], + ["Bangladesh (People's Republic of)",104761], + ["Germany (Federal Republic of)",90500], + ["Korea (Republic of)",80926], + ["Uganda (Republic of)",75077], + ["Mozambique (Republic of)",75000], + ["Vietnam (Socialist Republic of)",65405], + ["Zimbabwe (Republic of)",59656], + ["Egypt (Arab Republic of)",50000], + ["Burkina Faso",48000], + ["Guatemala (Republic of)",41000], + ["Angola (Republic of)",40797], + ["Nepal (Federal Democratic Republic of)",37526], + ["Bosnia and Herzegovina",37202], + ["Moldova (Republic of)",33360], + ["Czech Republic",33020], + ["Thailand (Kingdom of)",29231], + ["Ecuador (Republic of)",27238], + ["Congo (Democratic Republic of the)",26000], + ["Cameroon (Republic of)",24195], + ["Tanzania (United Republic of)",23886], + ["Rwanda (Republic of)",23755], + ["Australia (Commonwealth of)",17323], + ["Poland (Republic of)",14940], + ["Mali (Republic of)",14685], + ["Lao (People's Democratic Republic)",14550], + ["Belize",13670], + ["Nicaragua (Republic of)",10000], + ["Venezuela (Bolivarian Republic of)",9306], + ["Sri Lanka (Democratic Socialist Republic of)",7879], + ["Uzbekistan (Republic of)",7460], + ["Syrian Arab Republic",6227], + ["Bulgaria (Republic of)",6200], + ["Switzerland (Swiss Confederation)",5247], + ["El Salvador (Republic of)",5084], + ["Slovenia (Republic of)",5020], + ["Spain (Kingdom of)",4620], + ["Taiwan",4447], + ["Gabon (Gabonese Republic)",4203], + ["Liberia (Republic of)",3417], + ["Burundi (Republic of)",2571], + ["Lithuania (Republic of)",2560], + ["Kenya (Republic of)",2396], + ["Kyrgyz Republic",2371], + ["Georgia",2000], + ["Greece (Hellenic Republic)",1840], + ["Togo (Togolese Republic)",1796], + ["Peru (Republic of)",1538], + ["Honduras (Republic of)",1444], + ["Timor-Leste (Democratic Republic of)",978], + ["Morocco (Kingdom of)",727], + ["Philippines (Republic of the)",554], + ["Albania (Republic of)",441], + ["Côte d'Ivoire (Republic of)",401], + ["Bhutan (Kingdom of)",234], + ["Pakistan (Islamic Republic of)",152], + ["Panama (Republic of)",100], + ["Madagascar (Republic of)",46], + ["Iraq (Republic of)",33], + ["Luxembourg (Grand Duchy of)",30], + ["Azerbaijan (Republic of)",29], + ["Tajikistan (Republic of)",21], + ["North Macedonia (Republic of)",18], + ["Suriname (Republic of)",12] + ] +} diff --git a/data/global/economics/agriculture/tomato-production/tomato-production-2016.json b/data/global/economics/agriculture/tomato-production/tomato-production-2016.json new file mode 100644 index 0000000..bf2e470 --- /dev/null +++ b/data/global/economics/agriculture/tomato-production/tomato-production-2016.json @@ -0,0 +1,198 @@ +{ + "metadata" : { + "name" : "Tomato Production", + "description" : "Annual tomato production measured in metric tonnes.", + "units" : "t", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","tomatoes"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_soybean_production" + ] + }, + "data" : [ + ["country.name","tomato.production.2016"], + ["China (People's Republic of)",57426955], + ["India (Republic of)",17732000], + ["Pakistan (Islamic Republic of)",15587111], + ["Turkey (Republic of)",12600000], + ["United States (of America)",12936420], + ["Egypt (Arab Republic of)",7320714], + ["Iran (Islamic Republic of)",5828557], + ["Italy (Italian Republic)",null], + ["Spain (Kingdom of)",5233542], + ["Mexico (United Mexican States)",4047171], + ["Brazil (Federative Republic of)",4167629], + ["Nigeria (Federal Republic of)",4128995], + ["Russian Federation",2986209], + ["Uzbekistan (Republic of)",2499390], + ["Ukraine",2229690], + ["Portugal (Portuguese Republic)",1693860], + ["Tunisia (Republic of)",1333000], + ["Morocco (Kingdom of)",1231248], + ["Algeria (People's Democratic Republic of)",1280570], + ["Cameroon (Republic of)",1182114], + ["Chile (Republic of)",910310], + ["Indonesia (Republic of)",883242], + ["Netherlands (Kingdom of the)",900000], + ["Poland (Republic of)",866980], + ["Greece (Hellenic Republic)",1019880], + ["Albania (Republic of)",997552], + ["Jordan (Hashemite Kingdom of)",837342], + ["Kazakhstan (Republic of)",705550], + ["Japan",743200], + ["Romania",627177], + ["Colombia (Republic of)",690515], + ["Syrian Arab Republic",715000], + ["Argentina (Argentine Republic)",662834], + ["France (French Republic)",640940], + ["Sudan (Republic of the)",617400], + ["Azerbaijan (Republic of)",502769], + ["South Africa (Republic of)",587772], + ["Cuba (Republic of)",481470], + ["Tanzania (United Republic of)",528034], + ["Canada",501375], + ["Malawi (Republic of)",483740], + ["Turkmenistan",425860], + ["Tajikistan (Republic of)",361531], + ["Bangladesh (People's Republic of)",368121], + ["Mozambique (Republic of)",374000], + ["Korea (Republic of)",390303], + ["Israel (State of)",385550], + ["Ghana (Republic of)",366772], + ["Australia (Commonwealth of)",405167], + ["Benin (Republic of)",335412], + ["Guatemala (Republic of)",314598], + ["Saudi Arabia (Kingdom of)",305203], + ["Lebanon (Lebanese Republic)",290570], + ["Kosovo (Republic of)",447552], + ["Kenya (Republic of)",410033], + ["Belarus (Republic of)",282625], + ["Niger (Republic of)",269079], + ["Belgium (Kingdom of)",259535], + ["Armenia (Republic of)",298140], + ["Kyrgyz Republic",234718], + ["Palestine (State of)",220344], + ["Peru (Republic of)",232898], + ["Philippines (Republic of the)",210720], + ["Libya (State of)",216153], + ["Hungary (Republic of)",173095], + ["Dominican Republic",249832], + ["Oman (Sultanate of)",89086], + ["Malaysia",242946], + ["Venezuela (Bolivarian Republic of)",162140], + ["Mali (Republic of)",201694], + ["Serbia (Republic of)",160456], + ["North Macedonia (Republic of)",161951], + ["Bulgaria (Republic of)",141367], + ["Honduras (Republic of)",155324], + ["Senegal (Republic of)",102000], + ["Iraq (Republic of)",286596], + ["Thailand (Kingdom of)",107582], + ["Taiwan",118958], + ["Kuwait (State of)",81330], + ["Rwanda (Republic of)",118774], + ["Germany (Federal Republic of)",85287], + ["United Kingdom (of Great Britain & Northern Ireland)",96556], + ["Yemen (Republic of)",96768], + ["Sri Lanka (Democratic Socialist Republic of)",83978], + ["Nicaragua (Republic of)",74269], + ["Korea (Democratic People's Republic of)",66187], + ["Ecuador (Republic of)",55550], + ["Moldova (Republic of)",54641], + ["Bolivia (Plurinational State of)",61531], + ["Costa Rica (Republic of)",57238], + ["Paraguay (Republic of)",51095], + ["Austria (Republic of)",55068], + ["Georgia",54100], + ["Congo (Democratic Republic of the)",49151], + ["Bosnia and Herzegovina",57070], + ["New Zealand",68220], + ["Switzerland (Swiss Confederation)",41907], + ["Madagascar (Republic of)",41574], + ["United Arab Emirates",43791], + ["Ethiopia (Federal Democratic Republic of)",28365], + ["Croatia (Republic of)",30707], + ["Uganda (Republic of)",38650], + ["Côte d'Ivoire (Republic of)",38000], + ["Finland (Republic of)",40621], + ["Uruguay (Oriental Republic of)",36747], + ["Somalia (Federal Republic of)",27321], + ["Guyana (Co-operative Republic of)",19092], + ["Jamaica",31427], + ["Zimbabwe (Republic of)",25961], + ["Zambia (Republic of)",25693], + ["Slovakia (Slovak Republic)",18922], + ["El Salvador (Republic of)",18114], + ["Sierra Leone (Republic of)",18772], + ["Cyprus (Republic of)",13364], + ["Cape Verde (Republic of)",15133], + ["Puerto Rico (Commonwealth of)",17858], + ["Angola (Republic of)",16223], + ["Panama (Republic of)",15495], + ["Sweden (Kingdom of)",14620], + ["Burkina Faso",12561], + ["Lithuania (Republic of)",11565], + ["Qatar (State of)",12694], + ["Malta (Republic of)",12380], + ["Denmark (Kingdom of)",10580], + ["Mauritius (Republic of)",10136], + ["Norway (Kingdom of)",11141], + ["Namibia (Republic of)",9357], + ["Slovenia (Republic of)",8652], + ["Eswatini (Kingdom of)",5484], + ["Togo (Togolese Republic)",5584], + ["Botswana (Republic of)",6000], + ["Guadeloupe",5155], + ["Latvia (Republic of)",5821], + ["French Guiana",4800], + ["Czech Republic",14350], + ["Martinique",4465], + ["Réunion",4493], + ["Congo (Republic of the)",4149], + ["Bahrain (Kingdom of)",4210], + ["Bahamas (Commonwealth of the)",4394], + ["Ireland",4000], + ["Estonia (Republic of)",2312], + ["Montenegro",4464], + ["Liberia (Republic of)",2714], + ["Belize",2858], + ["Haiti (Republic of)",2361], + ["Trinidad and Tobago (Republic of)",2280], + ["Djibouti (Republic of)",1717], + ["Iceland (Republic of)",1436], + ["French Polynesia",1311], + ["Suriname (Republic of)",1500], + ["Tonga (Kingdom of)",861], + ["Comoros (Union of the)",665], + ["Timor-Leste (Democratic Republic of)",572], + ["Papua New Guinea (Independent State of)",564], + ["Antigua and Barbuda",512], + ["Seychelles (Republic of)",459], + ["Gabon (Gabonese Republic)",411], + ["Dominica (Commonwealth of)",376], + ["Bhutan (Kingdom of)",445], + ["Grenada",364], + ["Fiji (Republic of)",356], + ["Barbados",308], + ["Guam",305], + ["Saint Lucia",295], + ["Maldives (Republic of)",268], + ["Cook Islands",277], + ["Montserrat",237], + ["Saint Kitts and Nevis (Federation of)",213], + ["Luxembourg (Grand Duchy of)",170], + ["Brunei (Nation of the Abode of Peace)",143], + ["Bermuda",134], + ["Singapore (Republic of)",66], + ["American Samoa",71], + ["Hong Kong (Special Administrative Region of China)",41], + ["Cayman Islands",5] + ] +} diff --git a/data/global/economics/agriculture/tomato-production/tomato-production-2017.json b/data/global/economics/agriculture/tomato-production/tomato-production-2017.json new file mode 100644 index 0000000..734598f --- /dev/null +++ b/data/global/economics/agriculture/tomato-production/tomato-production-2017.json @@ -0,0 +1,198 @@ +{ + "metadata" : { + "name" : "Tomato Production", + "description" : "Annual tomato production measured in metric tonnes.", + "units" : "t", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","economics","agriculture","farming","food","tomatoes"], + "authors" : [ + "Food and Agriculture Organization Corporate Statistical Database" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_soybean_production" + ] + }, + "data" : [ + ["country.name","tomato.production.2017"], + ["China (People's Republic of)",59514773], + ["India (Republic of)",20708000], + ["Pakistan (Islamic Republic of)",16601098], + ["Turkey (Republic of)",12750000], + ["United States (of America)",10910990], + ["Egypt (Arab Republic of)",7297108], + ["Iran (Islamic Republic of)",6177290], + ["Italy (Italian Republic)",6015868], + ["Spain (Kingdom of)",5163466], + ["Mexico (United Mexican States)",4243058], + ["Brazil (Federative Republic of)",4230150], + ["Nigeria (Federal Republic of)",4100000], + ["Russian Federation",3230718], + ["Uzbekistan (Republic of)",2455125], + ["Ukraine",2267460], + ["Portugal (Portuguese Republic)",1747634], + ["Tunisia (Republic of)",1298000], + ["Morocco (Kingdom of)",1293761], + ["Algeria (People's Democratic Republic of)",1286286], + ["Cameroon (Republic of)",1279853], + ["Chile (Republic of)",993076], + ["Indonesia (Republic of)",962856], + ["Netherlands (Kingdom of the)",910000], + ["Poland (Republic of)",898012], + ["Greece (Hellenic Republic)",879000], + ["Albania (Republic of)",850311], + ["Jordan (Hashemite Kingdom of)",787141], + ["Kazakhstan (Republic of)",739007], + ["Japan",737200], + ["Romania",726643], + ["Colombia (Republic of)",714314], + ["Syrian Arab Republic",686458], + ["Argentina (Argentine Republic)",660753], + ["France (French Republic)",656408], + ["Sudan (Republic of the)",650001], + ["Azerbaijan (Republic of)",624198], + ["South Africa (Republic of)",608306], + ["Cuba (Republic of)",584072], + ["Tanzania (United Republic of)",565441], + ["Canada",492394], + ["Malawi (Republic of)",450000], + ["Turkmenistan",439039], + ["Tajikistan (Republic of)",409398], + ["Bangladesh (People's Republic of)",388725], + ["Mozambique (Republic of)",380000], + ["Korea (Republic of)",374677], + ["Israel (State of)",373289], + ["Ghana (Republic of)",371811], + ["Australia (Commonwealth of)",371578], + ["Benin (Republic of)",321644], + ["Guatemala (Republic of)",308865], + ["Saudi Arabia (Kingdom of)",306389], + ["Lebanon (Lebanese Republic)",291839], + ["Kosovo (Republic of)",286811], + ["Kenya (Republic of)",283000], + ["Belarus (Republic of)",279522], + ["Niger (Republic of)",263394], + ["Belgium (Kingdom of)",255960], + ["Armenia (Republic of)",234228], + ["Kyrgyz Republic",228952], + ["Palestine (State of)",220864], + ["Peru (Republic of)",220618], + ["Philippines (Republic of the)",218793], + ["Libya (State of)",217316], + ["Hungary (Republic of)",211068], + ["Dominican Republic",195410], + ["Oman (Sultanate of)",191597], + ["Malaysia",188185], + ["Venezuela (Bolivarian Republic of)",176217], + ["Mali (Republic of)",175577], + ["Serbia (Republic of)",170764], + ["North Macedonia (Republic of)",159721], + ["Bulgaria (Republic of)",158762], + ["Honduras (Republic of)",157472], + ["Senegal (Republic of)",138000], + ["Iraq (Republic of)",123611], + ["Thailand (Kingdom of)",113846], + ["Taiwan",112087], + ["Kuwait (State of)",104046], + ["Rwanda (Republic of)",97426], + ["Germany (Federal Republic of)",96561], + ["United Kingdom (of Great Britain & Northern Ireland)",90627], + ["Yemen (Republic of)",88303], + ["Sri Lanka (Democratic Socialist Republic of)",80839], + ["Nicaragua (Republic of)",71577], + ["Korea (Democratic People's Republic of)",66283], + ["Ecuador (Republic of)",62675], + ["Moldova (Republic of)",62000], + ["Bolivia (Plurinational State of)",59090], + ["Costa Rica (Republic of)",57238], + ["Paraguay (Republic of)",55700], + ["Austria (Republic of)",54258], + ["Georgia",49900], + ["Congo (Democratic Republic of the)",49357], + ["Bosnia and Herzegovina",46166], + ["New Zealand",46040], + ["Switzerland (Swiss Confederation)",42533], + ["Madagascar (Republic of)",42058], + ["United Arab Emirates",41752], + ["Ethiopia (Federal Democratic Republic of)",41333], + ["Croatia (Republic of)",41223], + ["Uganda (Republic of)",40124], + ["Côte d'Ivoire (Republic of)",40000], + ["Finland (Republic of)",39386], + ["Uruguay (Oriental Republic of)",36000], + ["Somalia (Federal Republic of)",28594], + ["Guyana (Co-operative Republic of)",28479], + ["Jamaica",27545], + ["Zimbabwe (Republic of)",26619], + ["Zambia (Republic of)",25700], + ["Slovakia (Slovak Republic)",21964], + ["El Salvador (Republic of)",19591], + ["Sierra Leone (Republic of)",18511], + ["Cyprus (Republic of)",17497], + ["Cape Verde (Republic of)",16817], + ["Puerto Rico (Commonwealth of)",16468], + ["Angola (Republic of)",16340], + ["Panama (Republic of)",15916], + ["Sweden (Kingdom of)",14450], + ["Burkina Faso",12635], + ["Lithuania (Republic of)",11974], + ["Qatar (State of)",11919], + ["Malta (Republic of)",10902], + ["Denmark (Kingdom of)",10900], + ["Mauritius (Republic of)",10651], + ["Norway (Kingdom of)",10573], + ["Namibia (Republic of)",9551], + ["Slovenia (Republic of)",8396], + ["Eswatini (Kingdom of)",5636], + ["Togo (Togolese Republic)",5564], + ["Botswana (Republic of)",5500], + ["Guadeloupe",5242], + ["Latvia (Republic of)",5068], + ["French Guiana",4861], + ["Czech Republic",4819], + ["Martinique",4476], + ["Réunion",4263], + ["Congo (Republic of the)",4250], + ["Bahrain (Kingdom of)",4245], + ["Bahamas (Commonwealth of the)",4178], + ["Ireland",3800], + ["Estonia (Republic of)",3563], + ["Montenegro",2875], + ["Liberia (Republic of)",2813], + ["Belize",2452], + ["Haiti (Republic of)",2344], + ["Trinidad and Tobago (Republic of)",2103], + ["Djibouti (Republic of)",1744], + ["Iceland (Republic of)",1334], + ["French Polynesia",1319], + ["Suriname (Republic of)",1239], + ["Tonga (Kingdom of)",885], + ["Comoros (Union of the)",671], + ["Timor-Leste (Democratic Republic of)",587], + ["Papua New Guinea (Independent State of)",572], + ["Antigua and Barbuda",526], + ["Seychelles (Republic of)",475], + ["Gabon (Gabonese Republic)",412], + ["Dominica (Commonwealth of)",386], + ["Bhutan (Kingdom of)",383], + ["Grenada",381], + ["Fiji (Republic of)",374], + ["Barbados",357], + ["Guam",320], + ["Saint Lucia",298], + ["Maldives (Republic of)",294], + ["Cook Islands",274], + ["Montserrat",243], + ["Saint Kitts and Nevis (Federation of)",187], + ["Luxembourg (Grand Duchy of)",170], + ["Brunei (Nation of the Abode of Peace)",146], + ["Bermuda",134], + ["Singapore (Republic of)",88], + ["American Samoa",70], + ["Hong Kong (Special Administrative Region of China)",40], + ["Cayman Islands",5] + ] +} diff --git a/data/global/economics/businesses/kfc-outlets.json b/data/global/economics/businesses/kfc-outlets.json new file mode 100644 index 0000000..27287a7 --- /dev/null +++ b/data/global/economics/businesses/kfc-outlets.json @@ -0,0 +1,175 @@ +{ + "metadata" : { + "name" : "KFC Restaurant Outlets", + "description" : "Number of KFC restaurant outlets in operation.", + "units" : "outlets", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","business","food"], + "authors" : [ + "KFC" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_with_KFC_franchises" + ] + }, + "data" : [ + ["country.name","kfc.outlets"], + ["Angola (Republic of)",9], + ["Botswana (Republic of)",16], + ["Egypt (Arab Republic of)",164], + ["Eswatini (Kingdom of)",10], + ["Gabon (Gabonese Republic)",5], + ["Ghana (Republic of)",19], + ["Côte d'Ivoire (Republic of)",6], + ["Kenya (Republic of)",23], + ["Lesotho (Kingdom of)",8], + ["Madagascar (Republic of)",2], + ["Malawi (Republic of)",2], + ["Mauritius (Republic of)",22], + ["Morocco (Kingdom of)",18], + ["Mozambique (Republic of)",12], + ["Namibia (Republic of)",21], + ["Nigeria (Federal Republic of)",24], + ["Rwanda (Republic of)",1], + ["Senegal (Republic of)",3], + ["South Africa (Republic of)",955], + ["Sudan (Republic of the)",8], + ["Tanzania (United Republic of)",6], + ["Tunisia (Republic of)",8], + ["Uganda (Republic of)",12], + ["Zambia (Republic of)",4], + ["Zimbabwe (Republic of)",6], + ["Armenia (Republic of)",11], + ["Azerbaijan (Republic of)",11], + ["Bahrain (Kingdom of)",24], + ["Bangladesh (People's Republic of)",31], + ["Brunei (Nation of the Abode of Peace)",17], + ["China (People's Republic of)",7900], + ["Cambodia (Kingdom of)",11], + ["Georgia",16], + ["Hong Kong (Special Administrative Region of China)",75], + ["India (Republic of)",395], + ["Indonesia (Republic of)",689], + ["Iraq (Republic of)",8], + ["Israel (State of)",12], + ["Japan",1131], + ["Jordan (Hashemite Kingdom of)",27], + ["Kazakhstan (Republic of)",70], + ["Kuwait (State of)",66], + ["Kyrgyz Republic",4], + ["Lebanon (Lebanese Republic)",23], + ["Macao (Special Administrative Region of China)",5], + ["Malaysia",718], + ["Maldives (Republic of)",2], + ["Mongolia",12], + ["Myanmar (Union of)",1], + ["Nepal (Federal Democratic Republic of)",12], + ["Oman (Sultanate of)",36], + ["Pakistan (Islamic Republic of)",115], + ["Palestine (State of)",15], + ["Philippines (Republic of the)",332], + ["Qatar (State of)",39], + ["Saudi Arabia (Kingdom of)",220], + ["Singapore (Republic of)",86], + ["Korea (Republic of)",190], + ["Sri Lanka (Democratic Socialist Republic of)",39], + ["Taiwan",153], + ["Tajikistan (Republic of)",2], + ["Thailand (Kingdom of)",717], + ["Turkey (Republic of)",142], + ["United Arab Emirates",151], + ["Uzbekistan (Republic of)",14], + ["Vietnam (Socialist Republic of)",136], + ["Yemen (Republic of)",1], + ["Antigua and Barbuda",3], + ["Argentina (Argentine Republic)",18], + ["Aruba",4], + ["Bahamas (Commonwealth of the)",13], + ["Barbados",12], + ["Bolivia (Plurinational State of)",3], + ["Bonaire (Sint Eustatius and Saba)",1], + ["Brazil (Federative Republic of)",60], + ["Cayman Islands",3], + ["Chile (Republic of)",68], + ["Colombia (Republic of)",79], + ["Costa Rica (Republic of)",43], + ["Cuba (Republic of)",1], + ["Curaçao",7], + ["Dominica (Commonwealth of)",1], + ["Dominican Republic",27], + ["Ecuador (Republic of)",144], + ["El Salvador (Republic of)",7], + ["French Guiana",4], + ["Grenada",4], + ["Guadeloupe",5], + ["Guatemala (Republic of)",7], + ["Guyana (Co-operative Republic of)",5], + ["Honduras (Republic of)",15], + ["Jamaica",37], + ["Martinique",1], + ["Panama (Republic of)",44], + ["Paraguay (Republic of)",3], + ["Peru (Republic of)",140], + ["Puerto Rico (Commonwealth of)",81], + ["Saint Kitts and Nevis (Federation of)",1], + ["Saint Lucia",4], + ["Sint Maarten (Netherlands)",4], + ["Saint Vincent and the Grenadines",2], + ["Suriname (Republic of)",6], + ["Trinidad and Tobago (Republic of)",58], + ["United States Virgin Islands",5], + ["Venezuela (Bolivarian Republic of)",25], + ["Albania (Republic of)",8], + ["Austria (Republic of)",11], + ["Belarus (Republic of)",19], + ["Belgium (Kingdom of)",13], + ["Bosnia and Herzegovina",2], + ["Bulgaria (Republic of)",29], + ["Croatia (Republic of)",8], + ["Cyprus (Republic of)",25], + ["Czech Republic",114], + ["Denmark (Kingdom of)",12], + ["Estonia (Republic of)",9], + ["Finland (Republic of)",6], + ["France (French Republic)",248], + ["Germany (Federal Republic of)",191], + ["Greece (Hellenic Republic)",12], + ["Hungary (Republic of)",80], + ["Iceland (Republic of)",8], + ["Ireland",38], + ["Italy (Italian Republic)",68], + ["Kosovo (Republic of)",12], + ["Latvia (Republic of)",5], + ["Lithuania (Republic of)",7], + ["Luxembourg (Grand Duchy of)",1], + ["Malta (Republic of)",3], + ["Moldova (Republic of)",2], + ["Montenegro",4], + ["Netherlands (Kingdom of the)",83], + ["North Macedonia (Republic of)",5], + ["Poland (Republic of)",315], + ["Portugal (Portuguese Republic)",34], + ["Romania",94], + ["Serbia (Republic of)",13], + ["Slovakia (Slovak Republic)",7], + ["Slovenia (Republic of)",1], + ["Spain (Kingdom of)",143], + ["Sweden (Kingdom of)",12], + ["Switzerland (Swiss Confederation)",11], + ["Ukraine",50], + ["United Kingdom (of Great Britain & Northern Ireland)",909], + ["Bermuda",1], + ["Canada",639], + ["Mexico (United Mexican States)",393], + ["United States (of America)",4062], + ["American Samoa",1], + ["Australia (Commonwealth of)",653], + ["Guam",8], + ["New Zealand",100], + ["Northern Mariana Islands (Commonwealth of the)",1] + ] +} diff --git a/data/global/economics/businesses/mcdonalds-outlets.json b/data/global/economics/businesses/mcdonalds-outlets.json new file mode 100644 index 0000000..133bf62 --- /dev/null +++ b/data/global/economics/businesses/mcdonalds-outlets.json @@ -0,0 +1,136 @@ +{ + "metadata" : { + "name" : "McDonalds Restaurant Outlets", + "description" : "Number of McDonalds restaurant outlets in operation.", + "units" : "outlets", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","business","food"], + "authors" : [ + "McDonalds" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_with_McDonald%27s_restaurants" + ] + }, + "data" : [ + ["country.name","mcdonalds.outlets"], + ["United States (of America)",13257], + ["Canada",1400], + ["Puerto Rico (Commonwealth of)",108], + ["United States Virgin Islands",6], + ["Costa Rica (Republic of)",54], + ["Australia (Commonwealth of)",1000], + ["Guam",6], + ["Japan",2900], + ["Netherlands (Kingdom of the)",254], + ["Panama (Republic of)",57], + ["Germany (Federal Republic of)",1438], + ["France (French Republic)",1500], + ["El Salvador (Republic of)",19], + ["Sweden (Kingdom of)",191], + ["Guatemala (Republic of)",95], + ["Curaçao",5], + ["United Kingdom (of Great Britain & Northern Ireland)",1300], + ["Hong Kong (Special Administrative Region of China)",237], + ["Bahamas (Commonwealth of the)",3], + ["New Zealand",166], + ["Switzerland (Swiss Confederation)",167], + ["Ireland",95], + ["Austria (Republic of)",195], + ["Belgium (Kingdom of)",105], + ["Brazil (Federative Republic of)",1031], + ["Singapore (Republic of)",136], + ["Spain (Kingdom of)",550], + ["Denmark (Kingdom of)",89], + ["Philippines (Republic of the)",700], + ["Malaysia",282], + ["Norway (Kingdom of)",77], + ["Taiwan",413], + ["Andorra (Principality of)",5], + ["Finland (Republic of)",67], + ["Thailand (Kingdom of)",240], + ["Italy (Italian Republic)",661], + ["Aruba",4], + ["Luxembourg (Grand Duchy of)",10], + ["Venezuela (Bolivarian Republic of)",133], + ["Mexico (United Mexican States)",402], + ["Cuba (Republic of)",1], + ["Turkey (Republic of)",253], + ["Argentina (Argentine Republic)",222], + ["Macao (Special Administrative Region of China)",27], + ["Serbia (Republic of)",32], + ["Korea (Republic of)",447], + ["Hungary (Republic of)",112], + ["China (People's Republic of)",3500], + ["Chile (Republic of)",77], + ["Indonesia (Republic of)",224], + ["Portugal (Portuguese Republic)",175], + ["Greece (Hellenic Republic)",25], + ["Uruguay (Oriental Republic of)",25], + ["Martinique",9], + ["Czech Republic",109], + ["Guadeloupe",8], + ["Poland (Republic of)",512], + ["Monaco (Principality of)",2], + ["Brunei (Nation of the Abode of Peace)",4], + ["Morocco (Kingdom of)",58], + ["Northern Mariana Islands (Commonwealth of the)",2], + ["Israel (State of)",185], + ["Slovenia (Republic of)",23], + ["Saudi Arabia (Kingdom of)",312], + ["Kuwait (State of)",77], + ["New Caledonia",2], + ["Oman (Sultanate of)",24], + ["Egypt (Arab Republic of)",114], + ["Bulgaria (Republic of)",35], + ["Bahrain (Kingdom of)",23], + ["Latvia (Republic of)",13], + ["United Arab Emirates",172], + ["Estonia (Republic of)",10], + ["Romania",96], + ["Malta (Republic of)",9], + ["Colombia (Republic of)",185], + ["Slovakia (Slovak Republic)",35], + ["South Africa (Republic of)",275], + ["Qatar (State of)",46], + ["Honduras (Republic of)",10], + ["Sint Maarten (Netherlands)",3], + ["Croatia (Republic of)",41], + ["Samoa (Independent State of)",1], + ["Fiji (Republic of)",4], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",17], + ["India (Republic of)",350], + ["Peru (Republic of)",40], + ["Jordan (Hashemite Kingdom of)",31], + ["Paraguay (Republic of)",19], + ["Dominican Republic",31], + ["French Polynesia",6], + ["Trinidad and Tobago (Republic of)",6], + ["Ukraine",101], + ["Cyprus (Republic of)",18], + ["Jersey (Bailiwick of)",1], + ["Ecuador (Republic of)",30], + ["Réunion",14], + ["Isle of Man",1], + ["Suriname (Republic of)",3], + ["Moldova (Republic of)",6], + ["Nicaragua (Republic of)",6], + ["Lebanon (Lebanese Republic)",23], + ["Pakistan (Islamic Republic of)",72], + ["Sri Lanka (Democratic Socialist Republic of)",7], + ["Georgia",21], + ["Gibraltar",1], + ["Azerbaijan (Republic of)",19], + ["French Guiana",2], + ["American Samoa",2], + ["Mauritius (Republic of)",14], + ["Montenegro",4], + ["Iraq (Republic of)",1], + ["Vietnam (Socialist Republic of)",25] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-1970.json b/data/global/economics/debt/corporate-debt/debt-corporate-1970.json new file mode 100644 index 0000000..008e7a4 --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-1970.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "1970", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.1970"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",null], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",null], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.5519], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.728], + ["France (French Republic)",null], + ["Germany (Federal Republic of)",0.4958], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",0.3195], + ["Iceland (Republic of)",0.5585], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.6091], + ["Japan",0.9384], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.4266], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",null], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",null], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",null], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.7554], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",null], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.2768], + ["United States (of America)",0.481], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-1975.json b/data/global/economics/debt/corporate-debt/debt-corporate-1975.json new file mode 100644 index 0000000..c5044dc --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-1975.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "1975", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.1975"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",null], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",null], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.6134], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.6237], + ["France (French Republic)",null], + ["Germany (Federal Republic of)",0.5505], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",0.3958], + ["Iceland (Republic of)",0.569], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.6073], + ["Japan",1.0269], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.4021], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.7862], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",null], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",null], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.6285], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",null], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.2776], + ["United States (of America)",0.5139], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-1980.json b/data/global/economics/debt/corporate-debt/debt-corporate-1980.json new file mode 100644 index 0000000..fafe408 --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-1980.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "1980", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.1980"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",0.3857], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.5494], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.743], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.6161], + ["France (French Republic)",0.8558], + ["Germany (Federal Republic of)",0.557], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",0.5094], + ["Iceland (Republic of)",0.6722], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.4287], + ["Japan",0.9631], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.5918], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.8156], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",1.014], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.5325], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.5431], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",null], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.2695], + ["United States (of America)",0.5161], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-1985.json b/data/global/economics/debt/corporate-debt/debt-corporate-1985.json new file mode 100644 index 0000000..7b4e88c --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-1985.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "1985", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.1985"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",0.5173], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.5157], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.7123], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.6722], + ["France (French Republic)",0.8418], + ["Germany (Federal Republic of)",0.5606], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",0.512], + ["Iceland (Republic of)",0.8199], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.4243], + ["Japan",1.1212], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.7733], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.8922], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",1.055], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.5181], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.5999], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",null], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.3539], + ["United States (of America)",0.5928], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-1990.json b/data/global/economics/debt/corporate-debt/debt-corporate-1990.json new file mode 100644 index 0000000..b43d06c --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-1990.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "1990", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.1990"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",0.7568], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.5696], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.8411], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.8645], + ["France (French Republic)",0.9627], + ["Germany (Federal Republic of)",0.5444], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",1.3454], + ["Hungary (Republic of)",0.4677], + ["Iceland (Republic of)",0.6987], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.4168], + ["Japan",1.4154], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.7427], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",1.1181], + ["New Zealand",0.6864], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",1.0053], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",0.6111], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.4518], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",1.0086], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",0.1615], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.5817], + ["United States (of America)",0.6332], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-1995.json b/data/global/economics/debt/corporate-debt/debt-corporate-1995.json new file mode 100644 index 0000000..b550a00 --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-1995.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "1995", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.1995"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.2816], + ["Australia (Commonwealth of)",0.5913], + ["Austria (Republic of)",0.6517], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.6819], + ["Brazil (Federative Republic of)",0.3747], + ["Bulgaria (Republic of)",0.4621], + ["Cameroon (Republic of)",null], + ["Canada",0.8481], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",2.5478], + ["Czech Republic",0.4535], + ["Denmark (Kingdom of)",0.6038], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",0.3339], + ["Finland (Republic of)",0.8377], + ["France (French Republic)",0.9747], + ["Germany (Federal Republic of)",0.4987], + ["Greece (Hellenic Republic)",0.2968], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",1.1592], + ["Hungary (Republic of)",0.3744], + ["Iceland (Republic of)",0.7137], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",0.578], + ["Italy (Italian Republic)",0.5218], + ["Japan",1.4487], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.8927], + ["Latvia (Republic of)",0.1074], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",0.1968], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",1.1032], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",0.3776], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",1.1706], + ["New Zealand",0.7545], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.8675], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",0.1993], + ["Portugal (Portuguese Republic)",0.6428], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",0.0815], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",0.6281], + ["Slovakia (Slovak Republic)",0.6309], + ["Slovenia (Republic of)",0.2861], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.4892], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.8647], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",0.1816], + ["Ukraine",0.076], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.5895], + ["United States (of America)",0.5588], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-2000.json b/data/global/economics/debt/corporate-debt/debt-corporate-2000.json new file mode 100644 index 0000000..beb8334 --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-2000.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "2000", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.2000"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.304], + ["Australia (Commonwealth of)",0.6809], + ["Austria (Republic of)",0.8255], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",1.0465], + ["Brazil (Federative Republic of)",0.3274], + ["Bulgaria (Republic of)",0.2532], + ["Cameroon (Republic of)",null], + ["Canada",0.8686], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",0.3755], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",2.2723], + ["Czech Republic",0.4732], + ["Denmark (Kingdom of)",0.6966], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",0.642], + ["Finland (Republic of)",0.9026], + ["France (French Republic)",1.0367], + ["Germany (Federal Republic of)",0.5875], + ["Greece (Hellenic Republic)",0.3911], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",1.0022], + ["Hungary (Republic of)",0.5273], + ["Iceland (Republic of)",1.132], + ["India (Republic of)",0.2864], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",0.7328], + ["Italy (Italian Republic)",0.5602], + ["Japan",1.1973], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.89], + ["Latvia (Republic of)",0.4213], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",0.2862], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",1.1184], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",0.1741], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",1.3093], + ["New Zealand",0.853], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",1.0399], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",0.3253], + ["Portugal (Portuguese Republic)",0.8248], + ["Romania",null], + ["Russian Federation",0.1555], + ["Samoa (Independent State of)",0.1657], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",0.2394], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",0.7978], + ["Slovakia (Slovak Republic)",0.4369], + ["Slovenia (Republic of)",0.4382], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.73], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",1.0548], + ["Switzerland (Swiss Confederation)",0.8606], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",0.2182], + ["Ukraine",0.1588], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.7974], + ["United States (of America)",0.6414], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-2005.json b/data/global/economics/debt/corporate-debt/debt-corporate-2005.json new file mode 100644 index 0000000..14a619c --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-2005.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "2005", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.2005"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",0.1267], + ["Algeria (People's Democratic Republic of)",0.1308], + ["Argentina (Argentine Republic)",0.2229], + ["Australia (Commonwealth of)",0.7002], + ["Austria (Republic of)",0.8205], + ["Bangladesh (People's Republic of)",0.1937], + ["Belgium (Kingdom of)",1.1304], + ["Brazil (Federative Republic of)",0.3242], + ["Bulgaria (Republic of)",0.6634], + ["Cameroon (Republic of)",0.0711], + ["Canada",0.7938], + ["Central African Republic",0.0453], + ["Chad (Republic of)",0.017], + ["Chile (Republic of)",0.6902], + ["China (People's Republic of)",0.9937], + ["Colombia (Republic of)",0.2678], + ["Congo (Republic of the)",0.0168], + ["Costa Rica (Republic of)",0.2786], + ["Croatia (Republic of)",0.6147], + ["Cyprus (Republic of)",1.5889], + ["Czech Republic",0.3341], + ["Denmark (Kingdom of)",0.8995], + ["El Salvador (Republic of)",0.2906], + ["Estonia (Republic of)",0.889], + ["Finland (Republic of)",0.8776], + ["France (French Republic)",1.0744], + ["Germany (Federal Republic of)",0.574], + ["Greece (Hellenic Republic)",0.4628], + ["Honduras (Republic of)",0.2051], + ["Hong Kong (Special Administrative Region of China)",1.1042], + ["Hungary (Republic of)",0.6635], + ["Iceland (Republic of)",1.9277], + ["India (Republic of)",0.3507], + ["Indonesia (Republic of)",0.1625], + ["Ireland",0.9394], + ["Israel (State of)",0.8729], + ["Italy (Italian Republic)",0.6581], + ["Japan",1.0397], + ["Kazakhstan (Republic of)",0.3176], + ["Korea (Republic of)",0.7334], + ["Latvia (Republic of)",0.5977], + ["Lesotho (Kingdom of)",0.037], + ["Lithuania (Republic of)",0.3807], + ["Luxembourg (Grand Duchy of)",1.6333], + ["Malaysia",null], + ["Malta (Republic of)",1.1613], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",0.1307], + ["Morocco (Kingdom of)",0.289], + ["Myanmar (Union of)",0.037], + ["Nepal (Federal Democratic Republic of)",0.1746], + ["Netherlands (Kingdom of the)",1.2859], + ["New Zealand",0.9037], + ["Nicaragua (Republic of)",0.0837], + ["North Macedonia (Republic of)",0.2682], + ["Norway (Kingdom of)",1.1266], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",0.1445], + ["Poland (Republic of)",0.2831], + ["Portugal (Portuguese Republic)",1.0705], + ["Romania",0.1275], + ["Russian Federation",0.2625], + ["Samoa (Independent State of)",0.1943], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",0.298], + ["Sierra Leone (Republic of)",0.0254], + ["Singapore (Republic of)",0.7921], + ["Slovakia (Slovak Republic)",0.371], + ["Slovenia (Republic of)",0.6491], + ["Solomon Islands",0.0966], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.9941], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",1.075], + ["Switzerland (Swiss Confederation)",0.8049], + ["Tajikistan (Republic of)",0.0485], + ["Thailand (Kingdom of)",0.5295], + ["Turkey (Republic of)",0.2222], + ["Ukraine",0.3795], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.9025], + ["United States (of America)",0.6256], + ["Vanuatu (Republic of)",0.2673] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-2010.json b/data/global/economics/debt/corporate-debt/debt-corporate-2010.json new file mode 100644 index 0000000..17b5bcf --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-2010.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.2010"], + ["Afghanistan (Islamic Republic of)",0.0996], + ["Albania (Republic of)",0.3003], + ["Algeria (People's Democratic Republic of)",0.1324], + ["Argentina (Argentine Republic)",0.1352], + ["Australia (Commonwealth of)",0.6982], + ["Austria (Republic of)",0.9306], + ["Bangladesh (People's Republic of)",0.2888], + ["Belgium (Kingdom of)",1.418], + ["Brazil (Federative Republic of)",0.3559], + ["Bulgaria (Republic of)",1.1648], + ["Cameroon (Republic of)",0.0785], + ["Canada",0.8636], + ["Central African Republic",0.0532], + ["Chad (Republic of)",0.0289], + ["Chile (Republic of)",0.6901], + ["China (People's Republic of)",1.1039], + ["Colombia (Republic of)",0.3022], + ["Congo (Republic of the)",0.05], + ["Costa Rica (Republic of)",0.2805], + ["Croatia (Republic of)",1.0136], + ["Cyprus (Republic of)",1.9728], + ["Czech Republic",0.3561], + ["Denmark (Kingdom of)",1.0707], + ["El Salvador (Republic of)",0.1971], + ["Estonia (Republic of)",0.9905], + ["Finland (Republic of)",1.0885], + ["France (French Republic)",1.1872], + ["Germany (Federal Republic of)",0.5571], + ["Greece (Hellenic Republic)",0.6702], + ["Honduras (Republic of)",0.2222], + ["Hong Kong (Special Administrative Region of China)",1.5423], + ["Hungary (Republic of)",0.8988], + ["Iceland (Republic of)",4.1365], + ["India (Republic of)",0.4658], + ["Indonesia (Republic of)",0.1405], + ["Ireland",2.0615], + ["Israel (State of)",0.8416], + ["Italy (Italian Republic)",0.8219], + ["Japan",1.029], + ["Kazakhstan (Republic of)",0.4115], + ["Korea (Republic of)",0.9554], + ["Latvia (Republic of)",0.9474], + ["Lesotho (Kingdom of)",0.0583], + ["Lithuania (Republic of)",0.4882], + ["Luxembourg (Grand Duchy of)",2.9058], + ["Malaysia",0.6592], + ["Malta (Republic of)",1.6143], + ["Mauritius (Republic of)",0.5261], + ["Mexico (United Mexican States)",0.1658], + ["Morocco (Kingdom of)",0.4323], + ["Myanmar (Union of)",0.0427], + ["Nepal (Federal Democratic Republic of)",0.285], + ["Netherlands (Kingdom of the)",1.4549], + ["New Zealand",0.9665], + ["Nicaragua (Republic of)",0.0953], + ["North Macedonia (Republic of)",0.5834], + ["Norway (Kingdom of)",1.4374], + ["Pakistan (Islamic Republic of)",0.1856], + ["Peru (Republic of)",0.196], + ["Poland (Republic of)",0.3851], + ["Portugal (Portuguese Republic)",1.2521], + ["Romania",0.2359], + ["Russian Federation",0.3972], + ["Samoa (Independent State of)",0.2199], + ["São Tomé and Príncipe (Democratic Republic of)",0.1244], + ["Saudi Arabia (Kingdom of)",0.3882], + ["Sierra Leone (Republic of)",0.0504], + ["Singapore (Republic of)",0.7669], + ["Slovakia (Slovak Republic)",0.4482], + ["Slovenia (Republic of)",0.9497], + ["Solomon Islands",0.1513], + ["South Africa (Republic of)",0.296], + ["Spain (Kingdom of)",1.3224], + ["Sri Lanka (Democratic Socialist Republic of)",0.0241], + ["Sweden (Kingdom of)",1.1313], + ["Switzerland (Swiss Confederation)",0.9874], + ["Tajikistan (Republic of)",0.0784], + ["Thailand (Kingdom of)",0.4195], + ["Turkey (Republic of)",0.3999], + ["Ukraine",0.7827], + ["United Arab Emirates",0.7694], + ["United Kingdom (of Great Britain & Northern Ireland)",0.9463], + ["United States (of America)",0.6685], + ["Vanuatu (Republic of)",0.315] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-2015.json b/data/global/economics/debt/corporate-debt/debt-corporate-2015.json new file mode 100644 index 0000000..de2e5bf --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-2015.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "2015", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.2015"], + ["Afghanistan (Islamic Republic of)",0.0312], + ["Albania (Republic of)",0.3311], + ["Algeria (People's Democratic Republic of)",0.1849], + ["Argentina (Argentine Republic)",0.1235], + ["Australia (Commonwealth of)",0.8182], + ["Austria (Republic of)",0.917], + ["Bangladesh (People's Republic of)",0.3247], + ["Belgium (Kingdom of)",1.5261], + ["Brazil (Federative Republic of)",0.4848], + ["Bulgaria (Republic of)",0.9613], + ["Cameroon (Republic of)",0.1122], + ["Canada",1.0998], + ["Central African Republic",0.0685], + ["Chad (Republic of)",0.057], + ["Chile (Republic of)",1.0426], + ["China (People's Republic of)",1.3926], + ["Colombia (Republic of)",0.4056], + ["Congo (Republic of the)",0.1651], + ["Costa Rica (Republic of)",0.3484], + ["Croatia (Republic of)",0.9909], + ["Cyprus (Republic of)",2.2272], + ["Czech Republic",0.4285], + ["Denmark (Kingdom of)",1.1727], + ["El Salvador (Republic of)",0.2215], + ["Estonia (Republic of)",0.8525], + ["Finland (Republic of)",1.2411], + ["France (French Republic)",1.3647], + ["Germany (Federal Republic of)",0.5392], + ["Greece (Hellenic Republic)",0.6522], + ["Honduras (Republic of)",0.2509], + ["Hong Kong (Special Administrative Region of China)",2.0375], + ["Hungary (Republic of)",0.7526], + ["Iceland (Republic of)",2.0336], + ["India (Republic of)",0.4995], + ["Indonesia (Republic of)",0.2508], + ["Ireland",2.6796], + ["Israel (State of)",0.6938], + ["Italy (Italian Republic)",0.7635], + ["Japan",0.9713], + ["Kazakhstan (Republic of)",0.3809], + ["Korea (Republic of)",0.9775], + ["Latvia (Republic of)",0.6606], + ["Lesotho (Kingdom of)",0.0649], + ["Lithuania (Republic of)",0.3756], + ["Luxembourg (Grand Duchy of)",3.5145], + ["Malaysia",0.7421], + ["Malta (Republic of)",1.4376], + ["Mauritius (Republic of)",0.6232], + ["Mexico (United Mexican States)",0.2452], + ["Morocco (Kingdom of)",0.4059], + ["Myanmar (Union of)",0.1739], + ["Nepal (Federal Democratic Republic of)",0.3414], + ["Netherlands (Kingdom of the)",1.7433], + ["New Zealand",0.8601], + ["Nicaragua (Republic of)",0.1399], + ["North Macedonia (Republic of)",0.659], + ["Norway (Kingdom of)",1.5417], + ["Pakistan (Islamic Republic of)",0.1394], + ["Peru (Republic of)",0.3437], + ["Poland (Republic of)",0.4736], + ["Portugal (Portuguese Republic)",1.1943], + ["Romania",0.1473], + ["Russian Federation",0.5475], + ["Samoa (Independent State of)",0.2544], + ["São Tomé and Príncipe (Democratic Republic of)",0.1089], + ["Saudi Arabia (Kingdom of)",0.5231], + ["Sierra Leone (Republic of)",0.0416], + ["Singapore (Republic of)",1.0272], + ["Slovakia (Slovak Republic)",0.5124], + ["Slovenia (Republic of)",0.6786], + ["Solomon Islands",0.1432], + ["South Africa (Republic of)",0.3672], + ["Spain (Kingdom of)",1.0679], + ["Sri Lanka (Democratic Socialist Republic of)",0.3523], + ["Sweden (Kingdom of)",1.2444], + ["Switzerland (Swiss Confederation)",1.0339], + ["Tajikistan (Republic of)",0.111], + ["Thailand (Kingdom of)",0.5113], + ["Turkey (Republic of)",0.6182], + ["Ukraine",0.9875], + ["United Arab Emirates",0.7922], + ["United Kingdom (of Great Britain & Northern Ireland)",0.7827], + ["United States (of America)",0.7016], + ["Vanuatu (Republic of)",0.3207] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-2016.json b/data/global/economics/debt/corporate-debt/debt-corporate-2016.json new file mode 100644 index 0000000..297706c --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-2016.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.2016"], + ["Afghanistan (Islamic Republic of)",0.0253], + ["Albania (Republic of)",0.3181], + ["Algeria (People's Democratic Republic of)",0.1932], + ["Argentina (Argentine Republic)",0.1216], + ["Australia (Commonwealth of)",0.8002], + ["Austria (Republic of)",0.9248], + ["Bangladesh (People's Republic of)",0.3489], + ["Belgium (Kingdom of)",1.731], + ["Brazil (Federative Republic of)",0.4247], + ["Bulgaria (Republic of)",0.9143], + ["Cameroon (Republic of)",0.1178], + ["Canada",1.1144], + ["Central African Republic",0.0699], + ["Chad (Republic of)",0.0655], + ["Chile (Republic of)",1.0026], + ["China (People's Republic of)",1.5612], + ["Colombia (Republic of)",0.3815], + ["Congo (Republic of the)",0.2027], + ["Costa Rica (Republic of)",0.3637], + ["Croatia (Republic of)",0.9663], + ["Cyprus (Republic of)",2.1832], + ["Czech Republic",0.4172], + ["Denmark (Kingdom of)",1.1732], + ["El Salvador (Republic of)",0.2404], + ["Estonia (Republic of)",0.8332], + ["Finland (Republic of)",1.138], + ["France (French Republic)",1.3872], + ["Germany (Federal Republic of)",0.5417], + ["Greece (Hellenic Republic)",0.6512], + ["Honduras (Republic of)",0.261], + ["Hong Kong (Special Administrative Region of China)",2.1127], + ["Hungary (Republic of)",0.7149], + ["Iceland (Republic of)",1.6761], + ["India (Republic of)",0.4482], + ["Indonesia (Republic of)",0.2372], + ["Ireland",2.4852], + ["Israel (State of)",0.6974], + ["Italy (Italian Republic)",0.7375], + ["Japan",0.9943], + ["Kazakhstan (Republic of)",0.4188], + ["Korea (Republic of)",0.9447], + ["Latvia (Republic of)",0.6906], + ["Lesotho (Kingdom of)",0.0573], + ["Lithuania (Republic of)",0.4026], + ["Luxembourg (Grand Duchy of)",3.6239], + ["Malaysia",0.7378], + ["Malta (Republic of)",1.4461], + ["Mauritius (Republic of)",0.5683], + ["Mexico (United Mexican States)",0.2683], + ["Morocco (Kingdom of)",0.4092], + ["Myanmar (Union of)",0.2132], + ["Nepal (Federal Democratic Republic of)",0.4177], + ["Netherlands (Kingdom of the)",1.7594], + ["New Zealand",0.8537], + ["Nicaragua (Republic of)",0.1414], + ["North Macedonia (Republic of)",0.6659], + ["Norway (Kingdom of)",1.5469], + ["Pakistan (Islamic Republic of)",0.1628], + ["Peru (Republic of)",0.3627], + ["Poland (Republic of)",0.4959], + ["Portugal (Portuguese Republic)",1.1165], + ["Romania",0.1373], + ["Russian Federation",0.5469], + ["Samoa (Independent State of)",0.2903], + ["São Tomé and Príncipe (Democratic Republic of)",0.097], + ["Saudi Arabia (Kingdom of)",0.5386], + ["Sierra Leone (Republic of)",0.043], + ["Singapore (Republic of)",1.0303], + ["Slovakia (Slovak Republic)",0.5463], + ["Slovenia (Republic of)",0.6078], + ["Solomon Islands",0.1437], + ["South Africa (Republic of)",0.3725], + ["Spain (Kingdom of)",1.0198], + ["Sri Lanka (Democratic Socialist Republic of)",0.3777], + ["Sweden (Kingdom of)",1.2077], + ["Switzerland (Swiss Confederation)",1.0979], + ["Tajikistan (Republic of)",0.0821], + ["Thailand (Kingdom of)",0.517], + ["Turkey (Republic of)",0.674], + ["Ukraine",0.8807], + ["United Arab Emirates",0.8328], + ["United Kingdom (of Great Britain & Northern Ireland)",0.8266], + ["United States (of America)",0.7199], + ["Vanuatu (Republic of)",0.3066] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-2017.json b/data/global/economics/debt/corporate-debt/debt-corporate-2017.json new file mode 100644 index 0000000..5044c6a --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-2017.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage Of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.2017"], + ["Afghanistan (Islamic Republic of)",0.025], + ["Albania (Republic of)",0.294], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.1384], + ["Australia (Commonwealth of)",0.7451], + ["Austria (Republic of)",0.9177], + ["Bangladesh (People's Republic of)",0.355], + ["Belgium (Kingdom of)",1.6], + ["Brazil (Federative Republic of)",0.408], + ["Bulgaria (Republic of)",0.8631], + ["Cameroon (Republic of)",0.1059], + ["Canada",1.1379], + ["Central African Republic",0.0651], + ["Chad (Republic of)",0.0672], + ["Chile (Republic of)",0.936], + ["China (People's Republic of)",1.5696], + ["Colombia (Republic of)",0.354], + ["Congo (Republic of the)",0.1679], + ["Costa Rica (Republic of)",0.3667], + ["Croatia (Republic of)",0.9377], + ["Cyprus (Republic of)",2.0371], + ["Czech Republic",0.3987], + ["Denmark (Kingdom of)",1.118], + ["El Salvador (Republic of)",0.2601], + ["Estonia (Republic of)",0.7837], + ["Finland (Republic of)",1.1889], + ["France (French Republic)",1.4063], + ["Germany (Federal Republic of)",0.5613], + ["Greece (Hellenic Republic)",0.6114], + ["Honduras (Republic of)",0.2673], + ["Hong Kong (Special Administrative Region of China)",2.3218], + ["Hungary (Republic of)",0.675], + ["Iceland (Republic of)",1.266], + ["India (Republic of)",0.4529], + ["Indonesia (Republic of)",0.2337], + ["Ireland",2.096], + ["Israel (State of)",0.6884], + ["Italy (Italian Republic)",0.7137], + ["Japan",1.0012], + ["Kazakhstan (Republic of)",0.3804], + ["Korea (Republic of)",0.977], + ["Latvia (Republic of)",0.6501], + ["Lesotho (Kingdom of)",0.057], + ["Lithuania (Republic of)",0.4176], + ["Luxembourg (Grand Duchy of)",3.35], + ["Malaysia",0.7622], + ["Malta (Republic of)",1.4025], + ["Mauritius (Republic of)",0.571], + ["Mexico (United Mexican States)",0.2657], + ["Morocco (Kingdom of)",0.4032], + ["Myanmar (Union of)",0.2417], + ["Nepal (Federal Democratic Republic of)",0.4234], + ["Netherlands (Kingdom of the)",1.6854], + ["New Zealand",0.8409], + ["Nicaragua (Republic of)",0.1528], + ["North Macedonia (Republic of)",0.6729], + ["Norway (Kingdom of)",1.4363], + ["Pakistan (Islamic Republic of)",0.1816], + ["Peru (Republic of)",null], + ["Poland (Republic of)",0.4629], + ["Portugal (Portuguese Republic)",1.0659], + ["Romania",0.1338], + ["Russian Federation",0.5174], + ["Samoa (Independent State of)",0.2776], + ["São Tomé and Príncipe (Democratic Republic of)",0.0925], + ["Saudi Arabia (Kingdom of)",0.5013], + ["Sierra Leone (Republic of)",0.0379], + ["Singapore (Republic of)",1.0112], + ["Slovakia (Slovak Republic)",0.5946], + ["Slovenia (Republic of)",0.5506], + ["Solomon Islands",0.153], + ["South Africa (Republic of)",0.3814], + ["Spain (Kingdom of)",0.9631], + ["Sri Lanka (Democratic Socialist Republic of)",0.4164], + ["Sweden (Kingdom of)",1.2537], + ["Switzerland (Swiss Confederation)",1.1717], + ["Tajikistan (Republic of)",0.047], + ["Thailand (Kingdom of)",0.5206], + ["Turkey (Republic of)",0.6825], + ["Ukraine",0.714], + ["United Arab Emirates",0.8449], + ["United Kingdom (of Great Britain & Northern Ireland)",0.8544], + ["United States (of America)",0.7324], + ["Vanuatu (Republic of)",0.2838] + ] +} diff --git a/data/global/economics/debt/corporate-debt/debt-corporate-2018.json b/data/global/economics/debt/corporate-debt/debt-corporate-2018.json new file mode 100644 index 0000000..c0f1033 --- /dev/null +++ b/data/global/economics/debt/corporate-debt/debt-corporate-2018.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Corporate Debt Percentage of GDP", + "description" : "Non-financial corporate debt as a percentage of GDP.", + "units" : "%", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","corporate"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_corporate_debt" + ] + }, + "data" : [ + ["country.name","debt.corporate.2018"], + ["Afghanistan (Islamic Republic of)",0.023], + ["Albania (Republic of)",0.2566], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.1571], + ["Australia (Commonwealth of)",0.7535], + ["Austria (Republic of)",0.8905], + ["Bangladesh (People's Republic of)",0.3529], + ["Belgium (Kingdom of)",1.5596], + ["Brazil (Federative Republic of)",0.4226], + ["Bulgaria (Republic of)",0.8459], + ["Cameroon (Republic of)",0.1071], + ["Canada",1.1777], + ["Central African Republic",0.0838], + ["Chad (Republic of)",0.0698], + ["Chile (Republic of)",0.9895], + ["China (People's Republic of)",1.5363], + ["Colombia (Republic of)",0.3533], + ["Congo (Republic of the)",0.1283], + ["Costa Rica (Republic of)",0.3686], + ["Croatia (Republic of)",0.9246], + ["Cyprus (Republic of)",1.8992], + ["Czech Republic",null], + ["Denmark (Kingdom of)",1.1057], + ["El Salvador (Republic of)",0.2777], + ["Estonia (Republic of)",0.7342], + ["Finland (Republic of)",1.0996], + ["France (French Republic)",1.4085], + ["Germany (Federal Republic of)",0.5753], + ["Greece (Hellenic Republic)",0.5799], + ["Honduras (Republic of)",0.2937], + ["Hong Kong (Special Administrative Region of China)",2.1943], + ["Hungary (Republic of)",0.6683], + ["Iceland (Republic of)",1.3409], + ["India (Republic of)",0.4548], + ["Indonesia (Republic of)",0.2319], + ["Ireland",1.9123], + ["Israel (State of)",0.6939], + ["Italy (Italian Republic)",0.6947], + ["Japan",1.0282], + ["Kazakhstan (Republic of)",0.3137], + ["Korea (Republic of)",0.9566], + ["Latvia (Republic of)",0.5632], + ["Lesotho (Kingdom of)",0.0559], + ["Lithuania (Republic of)",0.4263], + ["Luxembourg (Grand Duchy of)",3.2441], + ["Malaysia",0.6915], + ["Malta (Republic of)",1.3878], + ["Mauritius (Republic of)",0.4902], + ["Mexico (United Mexican States)",0.2574], + ["Morocco (Kingdom of)",0.3781], + ["Myanmar (Union of)",0.2527], + ["Nepal (Federal Democratic Republic of)",0.4929], + ["Netherlands (Kingdom of the)",1.6559], + ["New Zealand",0.8384], + ["Nicaragua (Republic of)",0.152], + ["North Macedonia (Republic of)",0.6685], + ["Norway (Kingdom of)",1.3361], + ["Pakistan (Islamic Republic of)",0.211], + ["Peru (Republic of)",null], + ["Poland (Republic of)",0.4557], + ["Portugal (Portuguese Republic)",0.9944], + ["Romania",0.1308], + ["Russian Federation",0.4634], + ["Samoa (Independent State of)",0.2722], + ["São Tomé and Príncipe (Democratic Republic of)",0.0861], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",0.0398], + ["Singapore (Republic of)",0.9793], + ["Slovakia (Slovak Republic)",0.5436], + ["Slovenia (Republic of)",0.5166], + ["Solomon Islands",0.1458], + ["South Africa (Republic of)",0.3835], + ["Spain (Kingdom of)",0.9297], + ["Sri Lanka (Democratic Socialist Republic of)",0.4377], + ["Sweden (Kingdom of)",1.3065], + ["Switzerland (Swiss Confederation)",1.181], + ["Tajikistan (Republic of)",0.0406], + ["Thailand (Kingdom of)",0.477], + ["Turkey (Republic of)",0.6913], + ["Ukraine",0.6049], + ["United Arab Emirates",0.7987], + ["United Kingdom (of Great Britain & Northern Ireland)",0.837], + ["United States (of America)",0.7445], + ["Vanuatu (Republic of)",0.2649] + ] +} diff --git a/data/global/economics/debt/external-debt/debt-external-gdp.json b/data/global/economics/debt/external-debt/debt-external-gdp.json new file mode 100644 index 0000000..d19fada --- /dev/null +++ b/data/global/economics/debt/external-debt/debt-external-gdp.json @@ -0,0 +1,231 @@ +{ + "metadata" : { + "name" : "External Debt Pergent Of Gdp", + "description" : "Total public and private debt as a percentage of GDP owed to nonresidents repayable in internationally accepted currencies, goods or services.", + "units" : "%", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_external_debt" + ] + }, + "data" : [ + ["country.name","debt.external.gdp"], + ["United States (of America)",1.2108], + ["United Kingdom (of Great Britain & Northern Ireland)",2.7306], + ["France (French Republic)",2.5335], + ["Germany (Federal Republic of)",1.6035], + ["Japan",1.0141], + ["China (People's Republic of)",0.1439], + ["Italy (Italian Republic)",1.41], + ["Spain (Kingdom of)",1.7], + ["Canada",1.43], + ["Australia (Commonwealth of)",1.3], + ["Switzerland (Swiss Confederation)",2.85], + ["Singapore (Republic of)",4.71], + ["Belgium (Kingdom of)",2.69], + ["Austria (Republic of)",1.65], + ["Norway (Kingdom of)",1.334], + ["Finland (Republic of)",2.18], + ["India (Republic of)",0.199], + ["Brazil (Federative Republic of)",0.38], + ["Netherlands (Kingdom of the)",0.52], + ["Denmark (Kingdom of)",1.58], + ["Russian Federation",0.32], + ["Turkey (Republic of)",0.55], + ["Greece (Hellenic Republic)",2.98], + ["Mexico (United Mexican States)",0.43], + ["Portugal (Portuguese Republic)",1.28], + ["Korea (Republic of)",0.33], + ["Indonesia (Republic of)",0.3], + ["Poland (Republic of)",0.6], + ["Argentina (Argentine Republic)",0.72], + ["Malaysia",0.68], + ["Ireland",7.01], + ["Ukraine",0.81], + ["United Arab Emirates",0.59], + ["Saudi Arabia (Kingdom of)",0.31], + ["Mauritius (Republic of)",0.0201], + ["Taiwan",0.28], + ["New Zealand",0.9], + ["Chile (Republic of)",0.82], + ["Puerto Rico (Commonwealth of)",1.64], + ["Kazakhstan (Republic of)",0.91], + ["Qatar (State of)",0.83], + ["Egypt (Arab Republic of)",0.34], + ["Thailand (Kingdom of)",0.33], + ["Hungary (Republic of)",1.6], + ["South Africa (Republic of)",0.57], + ["Czech Republic",0.76], + ["Pakistan (Islamic Republic of)",0.43], + ["Colombia (Republic of)",0.57], + ["Cyprus (Republic of)",8.49], + ["Venezuela (Bolivarian Republic of)",0.23], + ["Romania",0.58], + ["Malta (Republic of)",6.91], + ["Sweden (Kingdom of)",0.23], + ["Israel (State of)",0.33], + ["Slovakia (Slovak Republic)",1.12], + ["Bangladesh (People's Republic of)",0.22], + ["Peru (Republic of)",0.44], + ["Philippines (Republic of the)",0.27], + ["Iraq (Republic of)",0.44], + ["Morocco (Kingdom of)",0.46], + ["Slovenia (Republic of)",1.04], + ["Vietnam (Socialist Republic of)",0.26], + ["Kuwait (State of)",0.51], + ["Sri Lanka (Democratic Socialist Republic of)",0.68], + ["Croatia (Republic of)",0.89], + ["Sudan (Republic of the)",1.21], + ["Latvia (Republic of)",1.26], + ["Bulgaria (Republic of)",0.63], + ["Lebanon (Lebanese Republic)",2.2], + ["Belarus (Republic of)",0.66], + ["Angola (Republic of)",0.41], + ["Ecuador (Republic of)",0.57], + ["Lithuania (Republic of)",0.74], + ["Serbia (Republic of)",0.62], + ["Jordan (Hashemite Kingdom of)",0.83], + ["Cuba (Republic of)",0.34], + ["Uruguay (Oriental Republic of)",0.5], + ["Dominican Republic",0.36], + ["Mongolia",2.45], + ["Tunisia (Republic of)",0.97], + ["Costa Rica (Republic of)",0.43], + ["Iceland (Republic of)",0.81], + ["Ethiopia (Federal Democratic Republic of)",0.32], + ["Kenya (Republic of)",0.26], + ["Papua New Guinea (Independent State of)",1.11], + ["Trinidad and Tobago (Republic of)",0.76], + ["Ghana (Republic of)",0.3], + ["Bahrain (Kingdom of)",0.66], + ["Oman (Sultanate of)",0.35], + ["Estonia (Republic of)",0.89], + ["Guatemala (Republic of)",0.28], + ["Palau (Republic of)",0.0621], + ["Panama (Republic of)",1.57], + ["Bahamas (Commonwealth of the)",1.94], + ["Jamaica",1.22], + ["Monaco (Principality of)",2.4], + ["Georgia",1.28], + ["Paraguay (Republic of)",0.54], + ["Tanzania (United Republic of)",0.34], + ["Uzbekistan (Republic of)",0.24], + ["Nigeria (Federal Republic of)",0.02], + ["El Salvador (Republic of)",0.56], + ["Lao (People's Democratic Republic)",0.53], + ["Nicaragua (Republic of)",0.83], + ["Zimbabwe (Republic of)",0.77], + ["Luxembourg (Grand Duchy of)",0.221], + ["Albania (Republic of)",0.66], + ["Côte d'Ivoire (Republic of)",0.24], + ["Cambodia (Kingdom of)",0.57], + ["Mozambique (Republic of)",0.72], + ["Zambia (Republic of)",0.45], + ["Honduras (Republic of)",0.38], + ["Kyrgyz Republic",1.12], + ["North Macedonia (Republic of)",0.73], + ["Cameroon (Republic of)",0.24], + ["Yemen (Republic of)",0.21], + ["Iran (Islamic Republic of)",0.02], + ["Azerbaijan (Republic of)",0.22], + ["Moldova (Republic of)",0.7], + ["Namibia (Republic of)",0.64], + ["Bolivia (Plurinational State of)",0.33], + ["Uganda (Republic of)",0.24], + ["Senegal (Republic of)",0.42], + ["Armenia (Republic of)",1.02], + ["Myanmar (Union of)",0.17], + ["Syrian Arab Republic",0.24], + ["Congo (Democratic Republic of the)",0.13], + ["Gabon (Gabonese Republic)",0.35], + ["Korea (Democratic People's Republic of)",0.18], + ["Congo (Republic of the)",0.55], + ["Bosnia and Herzegovina",0.23], + ["Barbados",1], + ["Montenegro",1.51], + ["Madagascar (Republic of)",0.41], + ["Algeria (People's Democratic Republic of)",0.02], + ["Mali (Republic of)",0.26], + ["Mauritania (Islamic Republic of)",0.76], + ["Libya (State of)",0.09], + ["Nepal (Federal Democratic Republic of)",0.16], + ["Burkina Faso",0.26], + ["Somalia (Federal Republic of)",0.52], + ["Niger (Republic of)",0.36], + ["Seychelles (Republic of)",1.8], + ["Rwanda (Republic of)",0.29], + ["Bermuda",0.47], + ["Kosovo (Republic of)",0.37], + ["Benin (Republic of)",0.26], + ["Tajikistan (Republic of)",0.38], + ["Bhutan (Kingdom of)",1.08], + ["Haiti (Republic of)",0.24], + ["Malawi (Republic of)",0.39], + ["South Sudan (Republic of)",0.627], + ["Chad (Republic of)",0.18], + ["Botswana (Republic of)",0.08], + ["Palestine (State of)",0.35], + ["Cape Verde (Republic of)",0.99], + ["Sierra Leone (Republic of)",0.36], + ["Equatorial Guinea (Republic of)",0.12], + ["Djibouti (Republic of)",0.71], + ["Guinea (Republic of)",0.2], + ["Belize",0.75], + ["Afghanistan (Islamic Republic of)",0.07], + ["Suriname (Republic of)",0.3], + ["Togo (Togolese Republic)",0.26], + ["Guyana (Co-operative Republic of)",0.36], + ["Andorra (Principality of)",0.41], + ["Liberia (Republic of)",0.51], + ["Guinea-Bissau (Republic of)",0.94], + ["Lesotho (Kingdom of)",0.53], + ["Faroe Islands",0.38], + ["Fiji (Republic of)",0.18], + ["Eritrea (State of)",0.15], + ["Maldives (Republic of)",0.23], + ["Burundi (Republic of)",0.26], + ["Aruba",0.28], + ["Central African Republic",0.39], + ["Grenada",0.66], + ["Gambia (Republic of the)",0.61], + ["Saint Lucia",0.36], + ["Turkmenistan",0.01], + ["Solomon Islands",0.4], + ["Eswatini (Kingdom of)",0.14], + ["Samoa (Independent State of)",0.51], + ["Antigua and Barbuda",0.34], + ["San Marino (Republic of)",0.23], + ["Brunei (Nation of the Abode of Peace)",0.028], + ["Saint Vincent and the Grenadines",0.42], + ["Timor-Leste (Democratic Republic of)",0.12], + ["Dominica (Commonwealth of)",0.55], + ["Cook Islands",0.23], + ["São Tomé and Príncipe (Democratic Republic of)",0.67], + ["Tonga (Kingdom of)",0.54], + ["Vanuatu (Republic of)",0.27], + ["Saint Kitts and Nevis (Federation of)",0.2], + ["Comoros (Union of the)",0.21], + ["New Caledonia",0.01], + ["Marshall Islands (Republic of the)",0.52], + ["Micronesia (Federated States of)",0.29], + ["Cayman Islands",0.07], + ["Greenland",0.02], + ["Nauru (Republic of)",0.22], + ["British Virgin Islands",0.02], + ["Tuvalu",0.37], + ["Kiribati (Republic of)",0.08], + ["Anguilla",0.05], + ["Wallis and Futuna",0.06], + ["Montserrat",0.02], + ["Liechtenstein (Principality of)",0], + ["Niue",0] + ] +} diff --git a/data/global/economics/debt/external-debt/debt-external-percapita.json b/data/global/economics/debt/external-debt/debt-external-percapita.json new file mode 100644 index 0000000..dbd15c4 --- /dev/null +++ b/data/global/economics/debt/external-debt/debt-external-percapita.json @@ -0,0 +1,231 @@ +{ + "metadata" : { + "name" : "External Debt Per-Capita", + "description" : "Total public and private debt per-capita owed to nonresidents repayable in internationally accepted currencies, goods or services.", + "units" : "$", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","percapita"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_external_debt" + ] + }, + "data" : [ + ["country.name","debt.external.percapita"], + ["United States (of America)",94188], + ["United Kingdom (of Great Britain & Northern Ireland)",129203], + ["France (French Republic)",107245], + ["Germany (Federal Republic of)",77607], + ["Japan",34841], + ["China (People's Republic of)",1866], + ["Italy (Italian Republic)",42300], + ["Spain (Kingdom of)",48700], + ["Canada",52300], + ["Australia (Commonwealth of)",71906], + ["Switzerland (Swiss Confederation)",213100], + ["Singapore (Republic of)",231000], + ["Belgium (Kingdom of)",112000], + ["Austria (Republic of)",84061], + ["Norway (Kingdom of)",132676], + ["Finland (Republic of)",24578], + ["India (Republic of)",437], + ["Brazil (Federative Republic of)",3200], + ["Netherlands (Kingdom of the)",26540], + ["Denmark (Kingdom of)",85700], + ["Russian Federation",3700], + ["Turkey (Republic of)",5155], + ["Greece (Hellenic Republic)",42800], + ["Mexico (United Mexican States)",3300], + ["Portugal (Portuguese Republic)",39478], + ["Korea (Republic of)",7500], + ["Indonesia (Republic of)",1431], + ["Poland (Republic of)",9500], + ["Argentina (Argentine Republic)",6037], + ["Malaysia",6800], + ["Ireland",49000], + ["Ukraine",2200], + ["United Arab Emirates",23500], + ["Saudi Arabia (Kingdom of)",6100], + ["Mauritius (Republic of)",148000], + ["Taiwan",7400], + ["New Zealand",38400], + ["Chile (Republic of)",9771], + ["Puerto Rico (Commonwealth of)",47800], + ["Kazakhstan (Republic of)",9100], + ["Qatar (State of)",68100], + ["Egypt (Arab Republic of)",700], + ["Thailand (Kingdom of)",2170], + ["Hungary (Republic of)",15000], + ["South Africa (Republic of)",2600], + ["Czech Republic",13000], + ["Pakistan (Islamic Republic of)",554], + ["Colombia (Republic of)",2500], + ["Cyprus (Republic of)",97200], + ["Venezuela (Bolivarian Republic of)",3500], + ["Romania",5100], + ["Malta (Republic of)",223000], + ["Sweden (Kingdom of)",94330], + ["Israel (State of)",10700], + ["Slovakia (Slovak Republic)",15900], + ["Bangladesh (People's Republic of)",460], + ["Peru (Republic of)",2300], + ["Philippines (Republic of the)",720], + ["Iraq (Republic of)",1800], + ["Morocco (Kingdom of)",1400], + ["Slovenia (Republic of)",25000], + ["Vietnam (Socialist Republic of)",500], + ["Kuwait (State of)",11700], + ["Sri Lanka (Democratic Socialist Republic of)",2200], + ["Croatia (Republic of)",10700], + ["Sudan (Republic of the)",1100], + ["Latvia (Republic of)",21200], + ["Bulgaria (Republic of)",5700], + ["Lebanon (Lebanese Republic)",6000], + ["Belarus (Republic of)",4000], + ["Angola (Republic of)",1400], + ["Ecuador (Republic of)",2100], + ["Lithuania (Republic of)",12700], + ["Serbia (Republic of)",3200], + ["Jordan (Hashemite Kingdom of)",3400], + ["Cuba (Republic of)",2300], + ["Uruguay (Oriental Republic of)",7600], + ["Dominican Republic",2400], + ["Mongolia",7800], + ["Tunisia (Republic of)",2200], + ["Costa Rica (Republic of)",5100], + ["Iceland (Republic of)",72700], + ["Ethiopia (Federal Democratic Republic of)",220], + ["Kenya (Republic of)",370], + ["Papua New Guinea (Independent State of)",2800], + ["Trinidad and Tobago (Republic of)",15700], + ["Ghana (Republic of)",700], + ["Bahrain (Kingdom of)",14900], + ["Oman (Sultanate of)",4400], + ["Estonia (Republic of)",15700], + ["Guatemala (Republic of)",1100], + ["Palau (Republic of)",846000], + ["Panama (Republic of)",4400], + ["Bahamas (Commonwealth of the)",44200], + ["Jamaica",6000], + ["Monaco (Principality of)",434000], + ["Georgia",3900], + ["Paraguay (Republic of)",2400], + ["Tanzania (United Republic of)",280], + ["Uzbekistan (Republic of)",500], + ["Nigeria (Federal Republic of)",60], + ["El Salvador (Republic of)",2400], + ["Lao (People's Democratic Republic)",1700], + ["Nicaragua (Republic of)",1800], + ["Zimbabwe (Republic of)",670], + ["Luxembourg (Grand Duchy of)",114704], + ["Albania (Republic of)",3634], + ["Côte d'Ivoire (Republic of)",420], + ["Cambodia (Kingdom of)",600], + ["Mozambique (Republic of)",320], + ["Zambia (Republic of)",540], + ["Honduras (Republic of)",1000], + ["Kyrgyz Republic",1300], + ["North Macedonia (Republic of)",3700], + ["Cameroon (Republic of)",300], + ["Yemen (Republic of)",260], + ["Iran (Islamic Republic of)",90], + ["Azerbaijan (Republic of)",1300], + ["Moldova (Republic of)",1600], + ["Namibia (Republic of)",2500], + ["Bolivia (Plurinational State of)",600], + ["Uganda (Republic of)",150], + ["Senegal (Republic of)",390], + ["Armenia (Republic of)",2043], + ["Myanmar (Union of)",120], + ["Syrian Arab Republic",300], + ["Congo (Democratic Republic of the)",70], + ["Gabon (Gabonese Republic)",2900], + ["Korea (Democratic People's Republic of)",200], + ["Congo (Republic of the)",1000], + ["Bosnia and Herzegovina",1300], + ["Barbados",15700], + ["Montenegro",6742], + ["Madagascar (Republic of)",160], + ["Algeria (People's Democratic Republic of)",89], + ["Mali (Republic of)",200], + ["Mauritania (Islamic Republic of)",840], + ["Libya (State of)",550], + ["Nepal (Federal Democratic Republic of)",120], + ["Burkina Faso",160], + ["Somalia (Federal Republic of)",270], + ["Niger (Republic of)",130], + ["Seychelles (Republic of)",26200], + ["Rwanda (Republic of)",200], + ["Bermuda",39700], + ["Kosovo (Republic of)",1200], + ["Benin (Republic of)",200], + ["Tajikistan (Republic of)",260], + ["Bhutan (Kingdom of)",2900], + ["Haiti (Republic of)",180], + ["Malawi (Republic of)",100], + ["South Sudan (Republic of)",167], + ["Chad (Republic of)",130], + ["Botswana (Republic of)",720], + ["Palestine (State of)",340], + ["Cape Verde (Republic of)",3100], + ["Sierra Leone (Republic of)",230], + ["Equatorial Guinea (Republic of)",1500], + ["Djibouti (Republic of)",1500], + ["Guinea (Republic of)",100], + ["Belize",3500], + ["Afghanistan (Islamic Republic of)",40], + ["Suriname (Republic of)",2200], + ["Togo (Togolese Republic)",150], + ["Guyana (Co-operative Republic of)",1500], + ["Andorra (Principality of)",14345], + ["Liberia (Republic of)",230], + ["Guinea-Bissau (Republic of)",570], + ["Lesotho (Kingdom of)",430], + ["Faroe Islands",18400], + ["Fiji (Republic of)",900], + ["Eritrea (State of)",150], + ["Maldives (Republic of)",2000], + ["Burundi (Republic of)",60], + ["Aruba",6600], + ["Central African Republic",130], + ["Grenada",6300], + ["Gambia (Republic of the)",260], + ["Saint Lucia",2700], + ["Turkmenistan",90], + ["Solomon Islands",800], + ["Eswatini (Kingdom of)",360], + ["Samoa (Independent State of)",2300], + ["Antigua and Barbuda",4700], + ["San Marino (Republic of)",10604], + ["Brunei (Nation of the Abode of Peace)",27200], + ["Saint Vincent and the Grenadines",2900], + ["Timor-Leste (Democratic Republic of)",250], + ["Dominica (Commonwealth of)",3900], + ["Cook Islands",13400], + ["São Tomé and Príncipe (Democratic Republic of)",1200], + ["Tonga (Kingdom of)",2200], + ["Vanuatu (Republic of)",750], + ["Saint Kitts and Nevis (Federation of)",3300], + ["Comoros (Union of the)",160], + ["New Caledonia",420], + ["Marshall Islands (Republic of the)",1800], + ["Micronesia (Federated States of)",900], + ["Cayman Islands",2100], + ["Greenland",650], + ["Nauru (Republic of)",3200], + ["British Virgin Islands",570], + ["Tuvalu",1224], + ["Kiribati (Republic of)",120], + ["Anguilla",590], + ["Wallis and Futuna",280], + ["Montserrat",200], + ["Liechtenstein (Principality of)",0], + ["Niue",0] + ] +} diff --git a/data/global/economics/debt/external-debt/debt-external-total.json b/data/global/economics/debt/external-debt/debt-external-total.json new file mode 100644 index 0000000..631095b --- /dev/null +++ b/data/global/economics/debt/external-debt/debt-external-total.json @@ -0,0 +1,231 @@ +{ + "metadata" : { + "name" : "Total External Debt", + "description" : "Total public and private debt owed to nonresidents repayable in internationally accepted currencies, goods or services.", + "units" : "$", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt"], + "authors" : [ + "Various sources." + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_external_debt" + ] + }, + "data" : [ + ["country.name","debt.external.total"], + ["United States (of America)",31000000000000], + ["United Kingdom (of Great Britain & Northern Ireland)",8730000000000], + ["France (French Republic)",7040000000000], + ["Germany (Federal Republic of)",6460000000000], + ["Japan",4360000000000], + ["China (People's Republic of)",2640000000000], + ["Italy (Italian Republic)",2510000000000], + ["Spain (Kingdom of)",2260000000000], + ["Canada",1930000000000], + ["Australia (Commonwealth of)",1830000000000], + ["Switzerland (Swiss Confederation)",1820000000000], + ["Singapore (Republic of)",1670000000000], + ["Belgium (Kingdom of)",1280000000000], + ["Austria (Republic of)",757000000000], + ["Norway (Kingdom of)",721000000000], + ["Finland (Republic of)",136000000000], + ["India (Republic of)",620700000000], + ["Brazil (Federative Republic of)",556000000000], + ["Netherlands (Kingdom of the)",555000000000], + ["Denmark (Kingdom of)",492000000000], + ["Russian Federation",489000000000], + ["Turkey (Republic of)",444000000000], + ["Greece (Hellenic Republic)",442000000000], + ["Mexico (United Mexican States)",437000000000], + ["Portugal (Portuguese Republic)",408000000000], + ["Korea (Republic of)",407000000000], + ["Indonesia (Republic of)",395000000000], + ["Poland (Republic of)",364000000000], + ["Argentina (Argentine Republic)",273000000000], + ["Malaysia",229000000000], + ["Ireland",228000000000], + ["Ukraine",225000000000], + ["United Arab Emirates",220000000000], + ["Saudi Arabia (Kingdom of)",201000000000], + ["Mauritius (Republic of)",200000000000], + ["Taiwan",199000000000], + ["New Zealand",192000000000], + ["Chile (Republic of)",187000000000], + ["Puerto Rico (Commonwealth of)",167000000000], + ["Kazakhstan (Republic of)",167000000000], + ["Qatar (State of)",159000000000], + ["Egypt (Arab Republic of)",158000000000], + ["Thailand (Kingdom of)",149000000000], + ["Hungary (Republic of)",148000000000], + ["South Africa (Republic of)",143000000000], + ["Czech Republic",138000000000], + ["Pakistan (Islamic Republic of)",122000000000], + ["Colombia (Republic of)",121000000000], + ["Cyprus (Republic of)",120000000000], + ["Venezuela (Bolivarian Republic of)",111000000000], + ["Romania",109000000000], + ["Malta (Republic of)",96300000000], + ["Sweden (Kingdom of)",94900000000], + ["Israel (State of)",89400000000], + ["Slovakia (Slovak Republic)",86600000000], + ["Bangladesh (People's Republic of)",78400000000], + ["Peru (Republic of)",74700000000], + ["Philippines (Republic of the)",72500000000], + ["Iraq (Republic of)",68000000000], + ["Morocco (Kingdom of)",63700000000], + ["Slovenia (Republic of)",52000000000], + ["Vietnam (Socialist Republic of)",50900000000], + ["Kuwait (State of)",47900000000], + ["Sri Lanka (Democratic Socialist Republic of)",46600000000], + ["Croatia (Republic of)",46100000000], + ["Sudan (Republic of the)",45000000000], + ["Latvia (Republic of)",41100000000], + ["Bulgaria (Republic of)",40400000000], + ["Lebanon (Lebanese Republic)",39600000000], + ["Belarus (Republic of)",39000000000], + ["Angola (Republic of)",37700000000], + ["Ecuador (Republic of)",36700000000], + ["Lithuania (Republic of)",36400000000], + ["Serbia (Republic of)",28000000000], + ["Jordan (Hashemite Kingdom of)",27800000000], + ["Cuba (Republic of)",26300000000], + ["Uruguay (Oriental Republic of)",26100000000], + ["Dominican Republic",26100000000], + ["Mongolia",25200000000], + ["Tunisia (Republic of)",25100000000], + ["Costa Rica (Republic of)",24900000000], + ["Iceland (Republic of)",24400000000], + ["Ethiopia (Federal Democratic Republic of)",22500000000], + ["Kenya (Republic of)",22200000000], + ["Papua New Guinea (Independent State of)",22000000000], + ["Trinidad and Tobago (Republic of)",21500000000], + ["Ghana (Republic of)",21200000000], + ["Bahrain (Kingdom of)",21200000000], + ["Oman (Sultanate of)",20900000000], + ["Estonia (Republic of)",20500000000], + ["Guatemala (Republic of)",19100000000], + ["Palau (Republic of)",18400000000], + ["Panama (Republic of)",18300000000], + ["Bahamas (Commonwealth of the)",17600000000], + ["Jamaica",16800000000], + ["Monaco (Principality of)",16500000000], + ["Georgia",16400000000], + ["Paraguay (Republic of)",16100000000], + ["Tanzania (United Republic of)",15900000000], + ["Uzbekistan (Republic of)",15800000000], + ["Nigeria (Federal Republic of)",15000000000], + ["El Salvador (Republic of)",14900000000], + ["Lao (People's Democratic Republic)",12000000000], + ["Nicaragua (Republic of)",11100000000], + ["Zimbabwe (Republic of)",10900000000], + ["Luxembourg (Grand Duchy of)",10600000000], + ["Albania (Republic of)",10500000000], + ["Côte d'Ivoire (Republic of)",10000000000], + ["Cambodia (Kingdom of)",9820000000], + ["Mozambique (Republic of)",9550000000], + ["Zambia (Republic of)",9270000000], + ["Honduras (Republic of)",8040000000], + ["Kyrgyz Republic",7870000000], + ["North Macedonia (Republic of)",7650000000], + ["Cameroon (Republic of)",7380000000], + ["Yemen (Republic of)",7190000000], + ["Iran (Islamic Republic of)",7120000000], + ["Azerbaijan (Republic of)",6910000000], + ["Moldova (Republic of)",6590000000], + ["Namibia (Republic of)",6520000000], + ["Bolivia (Plurinational State of)",6340000000], + ["Uganda (Republic of)",6240000000], + ["Senegal (Republic of)",6190000000], + ["Armenia (Republic of)",6050000000], + ["Myanmar (Union of)",6400000000], + ["Syrian Arab Republic",5920000000], + ["Congo (Democratic Republic of the)",5330000000], + ["Gabon (Gabonese Republic)",5160000000], + ["Korea (Democratic People's Republic of)",5000000000], + ["Congo (Republic of the)",4820000000], + ["Bosnia and Herzegovina",4720000000], + ["Barbados",4490000000], + ["Montenegro",4410000000], + ["Madagascar (Republic of)",4010000000], + ["Algeria (People's Democratic Republic of)",3840000000], + ["Mali (Republic of)",3630000000], + ["Mauritania (Islamic Republic of)",3590000000], + ["Libya (State of)",3530000000], + ["Nepal (Federal Democratic Republic of)",3450000000], + ["Burkina Faso",3090000000], + ["Somalia (Federal Republic of)",3050000000], + ["Niger (Republic of)",2730000000], + ["Seychelles (Republic of)",2550000000], + ["Rwanda (Republic of)",2440000000], + ["Bermuda",2440000000], + ["Kosovo (Republic of)",2390000000], + ["Benin (Republic of)",2340000000], + ["Tajikistan (Republic of)",2270000000], + ["Bhutan (Kingdom of)",2260000000], + ["Haiti (Republic of)",2020000000], + ["Malawi (Republic of)",1920000000], + ["South Sudan (Republic of)",1920000000], + ["Chad (Republic of)",1880000000], + ["Botswana (Republic of)",1690000000], + ["Palestine (State of)",1660000000], + ["Cape Verde (Republic of)",1660000000], + ["Sierra Leone (Republic of)",1560000000], + ["Equatorial Guinea (Republic of)",1360000000], + ["Djibouti (Republic of)",1340000000], + ["Guinea (Republic of)",1330000000], + ["Belize",1330000000], + ["Afghanistan (Islamic Republic of)",1280000000], + ["Suriname (Republic of)",1240000000], + ["Togo (Togolese Republic)",1170000000], + ["Guyana (Co-operative Republic of)",1140000000], + ["Andorra (Principality of)",1110000000], + ["Liberia (Republic of)",1110000000], + ["Guinea-Bissau (Republic of)",1100000000], + ["Lesotho (Kingdom of)",949000000], + ["Faroe Islands",889000000], + ["Fiji (Republic of)",833000000], + ["Eritrea (State of)",820000000], + ["Maldives (Republic of)",742000000], + ["Burundi (Republic of)",705000000], + ["Aruba",693000000], + ["Central African Republic",687000000], + ["Grenada",679000000], + ["Gambia (Republic of the)",542000000], + ["Saint Lucia",513000000], + ["Turkmenistan",503000000], + ["Solomon Islands",492000000], + ["Eswatini (Kingdom of)",471000000], + ["Samoa (Independent State of)",447000000], + ["Antigua and Barbuda",441000000], + ["San Marino (Republic of)",352000000], + ["Brunei (Nation of the Abode of Peace)",340000000], + ["Saint Vincent and the Grenadines",321000000], + ["Timor-Leste (Democratic Republic of)",312000000], + ["Dominica (Commonwealth of)",289000000], + ["Cook Islands",281000000], + ["São Tomé and Príncipe (Democratic Republic of)",237000000], + ["Tonga (Kingdom of)",233000000], + ["Vanuatu (Republic of)",208000000], + ["Saint Kitts and Nevis (Federation of)",188000000], + ["Comoros (Union of the)",133000000], + ["New Caledonia",112000000], + ["Marshall Islands (Republic of the)",98000000], + ["Micronesia (Federated States of)",93600000], + ["Cayman Islands",79000000], + ["Greenland",36400000], + ["Nauru (Republic of)",33300000], + ["British Virgin Islands",17700000], + ["Tuvalu",14800000], + ["Kiribati (Republic of)",13600000], + ["Anguilla",8800000], + ["Wallis and Futuna",3670000], + ["Montserrat",1040000], + ["Liechtenstein (Principality of)",0], + ["Niue",0] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-1980.json b/data/global/economics/debt/household-debt/debt-household-1980.json new file mode 100644 index 0000000..7413fac --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-1980.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Pergentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "1980", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.1980"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",0.3806], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.3196], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.4662], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.2593], + ["France (French Republic)",0.2234], + ["Germany (Federal Republic of)",0.5231], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",null], + ["Iceland (Republic of)",0.1676], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.0613], + ["Japan",0.4661], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.1646], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.4282], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",0.0998], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.2401], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.4855], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",null], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.2987], + ["United States (of America)",0.4939], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-1985.json b/data/global/economics/debt/household-debt/debt-household-1985.json new file mode 100644 index 0000000..a300e32 --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-1985.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "1985", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.1985"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",0.4263], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.2823], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.3965], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.3214], + ["France (French Republic)",0.2719], + ["Germany (Federal Republic of)",0.61], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",null], + ["Hungary (Republic of)",null], + ["Iceland (Republic of)",0.333], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.0621], + ["Japan",0.5313], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.2693], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.5371], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",0.1208], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.2305], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.4834], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",null], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.419], + ["United States (of America)",0.5343], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-1990.json b/data/global/economics/debt/household-debt/debt-household-1990.json new file mode 100644 index 0000000..849f90d --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-1990.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "1990", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.1990"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",null], + ["Australia (Commonwealth of)",0.452], + ["Austria (Republic of)",null], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.3496], + ["Brazil (Federative Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Cameroon (Republic of)",null], + ["Canada",0.538], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",null], + ["Czech Republic",null], + ["Denmark (Kingdom of)",null], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",null], + ["Finland (Republic of)",0.4234], + ["France (French Republic)",0.325], + ["Germany (Federal Republic of)",0.5816], + ["Greece (Hellenic Republic)",null], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",0.3449], + ["Hungary (Republic of)",0.1812], + ["Iceland (Republic of)",0.4519], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",null], + ["Italy (Italian Republic)",0.1669], + ["Japan",0.695], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.3948], + ["Latvia (Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",null], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",null], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",0.5087], + ["New Zealand",0.2786], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.7025], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",null], + ["Portugal (Portuguese Republic)",0.1514], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.3039], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.5642], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",0.0012], + ["Ukraine",null], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.5751], + ["United States (of America)",0.6024], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-1995.json b/data/global/economics/debt/household-debt/debt-household-1995.json new file mode 100644 index 0000000..ee52963 --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-1995.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "1995", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.1995"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.0395], + ["Australia (Commonwealth of)",0.5423], + ["Austria (Republic of)",0.413], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.3673], + ["Brazil (Federative Republic of)",0.1268], + ["Bulgaria (Republic of)",0.0059], + ["Cameroon (Republic of)",null], + ["Canada",0.5706], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",null], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",0.6287], + ["Czech Republic",0.1014], + ["Denmark (Kingdom of)",0.7411], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",0.0186], + ["Finland (Republic of)",0.3466], + ["France (French Republic)",0.3322], + ["Germany (Federal Republic of)",0.5992], + ["Greece (Hellenic Republic)",0.0626], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",0.4121], + ["Hungary (Republic of)",0.0602], + ["Iceland (Republic of)",0.6914], + ["India (Republic of)",null], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",0.345], + ["Italy (Italian Republic)",0.1748], + ["Japan",0.7137], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.4528], + ["Latvia (Republic of)",0.0136], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",0.0135], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",0.1727], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",0.1176], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",0.6181], + ["New Zealand",0.4565], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.5535], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",0.0225], + ["Portugal (Portuguese Republic)",0.2833], + ["Romania",null], + ["Russian Federation",null], + ["Samoa (Independent State of)",0.0802], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",0.3151], + ["Slovakia (Slovak Republic)",0.0365], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.3071], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.4414], + ["Switzerland (Swiss Confederation)",null], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",0.0089], + ["Ukraine",0.0024], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.5791], + ["United States (of America)",0.6419], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-2000.json b/data/global/economics/debt/household-debt/debt-household-2000.json new file mode 100644 index 0000000..cdf460e --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-2000.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "2000", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.2000"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",null], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.0658], + ["Australia (Commonwealth of)",0.7115], + ["Austria (Republic of)",0.4528], + ["Bangladesh (People's Republic of)",null], + ["Belgium (Kingdom of)",0.405], + ["Brazil (Federative Republic of)",0.1423], + ["Bulgaria (Republic of)",0.0225], + ["Cameroon (Republic of)",null], + ["Canada",0.5945], + ["Central African Republic",null], + ["Chad (Republic of)",null], + ["Chile (Republic of)",null], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",0.0966], + ["Congo (Republic of the)",null], + ["Costa Rica (Republic of)",null], + ["Croatia (Republic of)",null], + ["Cyprus (Republic of)",0.7774], + ["Czech Republic",0.0774], + ["Denmark (Kingdom of)",0.856], + ["El Salvador (Republic of)",null], + ["Estonia (Republic of)",0.0866], + ["Finland (Republic of)",0.3165], + ["France (French Republic)",0.3408], + ["Germany (Federal Republic of)",0.7092], + ["Greece (Hellenic Republic)",0.1394], + ["Honduras (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",0.579], + ["Hungary (Republic of)",0.059], + ["Iceland (Republic of)",0.8746], + ["India (Republic of)",0.0255], + ["Indonesia (Republic of)",null], + ["Ireland",null], + ["Israel (State of)",0.3639], + ["Italy (Italian Republic)",0.2269], + ["Japan",0.7099], + ["Kazakhstan (Republic of)",null], + ["Korea (Republic of)",0.4931], + ["Latvia (Republic of)",0.054], + ["Lesotho (Kingdom of)",null], + ["Lithuania (Republic of)",0.0151], + ["Luxembourg (Grand Duchy of)",null], + ["Malaysia",null], + ["Malta (Republic of)",0.2352], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",0.0786], + ["Morocco (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Netherlands (Kingdom of the)",0.8782], + ["New Zealand",0.6186], + ["Nicaragua (Republic of)",null], + ["North Macedonia (Republic of)",null], + ["Norway (Kingdom of)",0.5249], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",null], + ["Poland (Republic of)",0.0715], + ["Portugal (Portuguese Republic)",0.588], + ["Romania",null], + ["Russian Federation",0.006], + ["Samoa (Independent State of)",0.1307], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",0.0785], + ["Sierra Leone (Republic of)",null], + ["Singapore (Republic of)",0.371], + ["Slovakia (Slovak Republic)",0.0425], + ["Slovenia (Republic of)",null], + ["Solomon Islands",null], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.4508], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.4776], + ["Switzerland (Swiss Confederation)",1.0343], + ["Tajikistan (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Turkey (Republic of)",0.0402], + ["Ukraine",0.0063], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.6291], + ["United States (of America)",0.6992], + ["Vanuatu (Republic of)",null] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-2005.json b/data/global/economics/debt/household-debt/debt-household-2005.json new file mode 100644 index 0000000..d18127a --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-2005.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "2005", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.2005"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",0.0504], + ["Algeria (People's Democratic Republic of)",0.0011], + ["Argentina (Argentine Republic)",0.0314], + ["Australia (Commonwealth of)",1.007], + ["Austria (Republic of)",0.5172], + ["Bangladesh (People's Republic of)",0.078], + ["Belgium (Kingdom of)",0.4309], + ["Brazil (Federative Republic of)",0.1384], + ["Bulgaria (Republic of)",0.1495], + ["Cameroon (Republic of)",0.0195], + ["Canada",0.7056], + ["Central African Republic",0.0234], + ["Chad (Republic of)",0.0081], + ["Chile (Republic of)",0.2622], + ["China (People's Republic of)",null], + ["Colombia (Republic of)",0.1286], + ["Congo (Republic of the)",0.0072], + ["Costa Rica (Republic of)",0.1821], + ["Croatia (Republic of)",0.3075], + ["Cyprus (Republic of)",0.8946], + ["Czech Republic",0.1656], + ["Denmark (Kingdom of)",1.1179], + ["El Salvador (Republic of)",0.2087], + ["Estonia (Republic of)",0.3203], + ["Finland (Republic of)",0.4642], + ["France (French Republic)",0.416], + ["Germany (Federal Republic of)",0.6757], + ["Greece (Hellenic Republic)",0.3972], + ["Honduras (Republic of)",0.1714], + ["Hong Kong (Special Administrative Region of China)",0.5493], + ["Hungary (Republic of)",0.233], + ["Iceland (Republic of)",1.0339], + ["India (Republic of)",0.079], + ["Indonesia (Republic of)",0.1148], + ["Ireland",0.812], + ["Israel (State of)",0.3755], + ["Italy (Italian Republic)",0.3296], + ["Japan",0.6037], + ["Kazakhstan (Republic of)",0.0902], + ["Korea (Republic of)",0.6354], + ["Latvia (Republic of)",0.284], + ["Lesotho (Kingdom of)",0.0369], + ["Lithuania (Republic of)",0.1377], + ["Luxembourg (Grand Duchy of)",0.4548], + ["Malaysia",null], + ["Malta (Republic of)",0.4451], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",0.1096], + ["Morocco (Kingdom of)",0.1948], + ["Myanmar (Union of)",0.0032], + ["Nepal (Federal Democratic Republic of)",0.1074], + ["Netherlands (Kingdom of the)",1.08], + ["New Zealand",0.8263], + ["Nicaragua (Republic of)",0.1418], + ["North Macedonia (Republic of)",0.0815], + ["Norway (Kingdom of)",0.6894], + ["Pakistan (Islamic Republic of)",null], + ["Peru (Republic of)",0.0687], + ["Poland (Republic of)",0.15], + ["Portugal (Portuguese Republic)",0.7988], + ["Romania",0.086], + ["Russian Federation",0.0595], + ["Samoa (Independent State of)",0.165], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",0.1282], + ["Sierra Leone (Republic of)",0.0069], + ["Singapore (Republic of)",0.4331], + ["Slovakia (Slovak Republic)",0.1228], + ["Slovenia (Republic of)",0.1876], + ["Solomon Islands",0.0312], + ["South Africa (Republic of)",null], + ["Spain (Kingdom of)",0.7023], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Sweden (Kingdom of)",0.611], + ["Switzerland (Swiss Confederation)",1.1171], + ["Tajikistan (Republic of)",0.0153], + ["Thailand (Kingdom of)",0.4508], + ["Turkey (Republic of)",0.0717], + ["Ukraine",0.0781], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.8582], + ["United States (of America)",0.9146], + ["Vanuatu (Republic of)",0.1625] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-2010.json b/data/global/economics/debt/household-debt/debt-household-2010.json new file mode 100644 index 0000000..e799794 --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-2010.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.2010"], + ["Afghanistan (Islamic Republic of)",0.0143], + ["Albania (Republic of)",0.1188], + ["Algeria (People's Democratic Republic of)",0.0211], + ["Argentina (Argentine Republic)",0.0483], + ["Australia (Commonwealth of)",1.099], + ["Austria (Republic of)",0.5436], + ["Bangladesh (People's Republic of)",0.0847], + ["Belgium (Kingdom of)",0.5271], + ["Brazil (Federative Republic of)",0.2269], + ["Bulgaria (Republic of)",0.2596], + ["Cameroon (Republic of)",0.0338], + ["Canada",0.9244], + ["Central African Republic",0.0311], + ["Chad (Republic of)",0.0128], + ["Chile (Republic of)",0.3234], + ["China (People's Republic of)",0.2729], + ["Colombia (Republic of)",0.1867], + ["Congo (Republic of the)",0.0127], + ["Costa Rica (Republic of)",0.2301], + ["Croatia (Republic of)",0.4188], + ["Cyprus (Republic of)",1.1827], + ["Czech Republic",0.29], + ["Denmark (Kingdom of)",1.3529], + ["El Salvador (Republic of)",0.2309], + ["Estonia (Republic of)",0.534], + ["Finland (Republic of)",0.6112], + ["France (French Republic)",0.537], + ["Germany (Federal Republic of)",0.5903], + ["Greece (Hellenic Republic)",0.6108], + ["Honduras (Republic of)",0.2482], + ["Hong Kong (Special Administrative Region of China)",0.5923], + ["Hungary (Republic of)",0.3946], + ["Iceland (Republic of)",1.0716], + ["India (Republic of)",0.0868], + ["Indonesia (Republic of)",0.1355], + ["Ireland",1.1223], + ["Israel (State of)",0.3956], + ["Italy (Italian Republic)",0.4363], + ["Japan",0.6072], + ["Kazakhstan (Republic of)",0.1026], + ["Korea (Republic of)",0.7317], + ["Latvia (Republic of)",0.498], + ["Lesotho (Kingdom of)",0.061], + ["Lithuania (Republic of)",0.2965], + ["Luxembourg (Grand Duchy of)",0.5712], + ["Malaysia",0.5875], + ["Malta (Republic of)",0.5905], + ["Mauritius (Republic of)",0.3225], + ["Mexico (United Mexican States)",0.1324], + ["Morocco (Kingdom of)",0.283], + ["Myanmar (Union of)",0.0045], + ["Nepal (Federal Democratic Republic of)",0.2566], + ["Netherlands (Kingdom of the)",1.1874], + ["New Zealand",0.9028], + ["Nicaragua (Republic of)",0.1474], + ["North Macedonia (Republic of)",0.1808], + ["Norway (Kingdom of)",0.8185], + ["Pakistan (Islamic Republic of)",0.0438], + ["Peru (Republic of)",0.102], + ["Poland (Republic of)",0.3417], + ["Portugal (Portuguese Republic)",0.9067], + ["Romania",0.1928], + ["Russian Federation",0.1038], + ["Samoa (Independent State of)",0.1836], + ["São Tomé and Príncipe (Democratic Republic of)",0.2468], + ["Saudi Arabia (Kingdom of)",0.098], + ["Sierra Leone (Republic of)",0.0273], + ["Singapore (Republic of)",0.47], + ["Slovakia (Slovak Republic)",0.2478], + ["Slovenia (Republic of)",0.3036], + ["Solomon Islands",0.0604], + ["South Africa (Republic of)",0.4017], + ["Spain (Kingdom of)",0.8349], + ["Sri Lanka (Democratic Socialist Republic of)",0.2237], + ["Sweden (Kingdom of)",0.7708], + ["Switzerland (Swiss Confederation)",1.1153], + ["Tajikistan (Republic of)",0.0421], + ["Thailand (Kingdom of)",0.5927], + ["Turkey (Republic of)",0.1606], + ["Ukraine",0.1942], + ["United Arab Emirates",0.2813], + ["United Kingdom (of Great Britain & Northern Ireland)",0.9367], + ["United States (of America)",0.9071], + ["Vanuatu (Republic of)",0.3284] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-2015.json b/data/global/economics/debt/household-debt/debt-household-2015.json new file mode 100644 index 0000000..f29b269 --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-2015.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "2015", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.2015"], + ["Afghanistan (Islamic Republic of)",0.0058], + ["Albania (Republic of)",0.1128], + ["Algeria (People's Democratic Republic of)",0.0277], + ["Argentina (Argentine Republic)",0.0635], + ["Australia (Commonwealth of)",1.2014], + ["Austria (Republic of)",0.5021], + ["Bangladesh (People's Republic of)",0.0773], + ["Belgium (Kingdom of)",0.5924], + ["Brazil (Federative Republic of)",0.2844], + ["Bulgaria (Republic of)",0.2168], + ["Cameroon (Republic of)",0.0371], + ["Canada",0.9749], + ["Central African Republic",0.0476], + ["Chad (Republic of)",0.0254], + ["Chile (Republic of)",0.4092], + ["China (People's Republic of)",0.3824], + ["Colombia (Republic of)",0.2526], + ["Congo (Republic of the)",0.0458], + ["Costa Rica (Republic of)",0.291], + ["Croatia (Republic of)",0.385], + ["Cyprus (Republic of)",1.2774], + ["Czech Republic",0.3036], + ["Denmark (Kingdom of)",1.1909], + ["El Salvador (Republic of)",0.2575], + ["Estonia (Republic of)",0.403], + ["Finland (Republic of)",0.6669], + ["France (French Republic)",0.5625], + ["Germany (Federal Republic of)",0.533], + ["Greece (Hellenic Republic)",0.6221], + ["Honduras (Republic of)",0.2914], + ["Hong Kong (Special Administrative Region of China)",0.6709], + ["Hungary (Republic of)",0.2129], + ["Iceland (Republic of)",0.8288], + ["India (Republic of)",0.0966], + ["Indonesia (Republic of)",0.168], + ["Ireland",0.5646], + ["Israel (State of)",0.4085], + ["Italy (Italian Republic)",0.4187], + ["Japan",0.5696], + ["Kazakhstan (Republic of)",0.1072], + ["Korea (Republic of)",0.8311], + ["Latvia (Republic of)",0.245], + ["Lesotho (Kingdom of)",0.1027], + ["Lithuania (Republic of)",0.2216], + ["Luxembourg (Grand Duchy of)",0.6007], + ["Malaysia",0.6974], + ["Malta (Republic of)",0.5303], + ["Mauritius (Republic of)",0.3334], + ["Mexico (United Mexican States)",0.1524], + ["Morocco (Kingdom of)",0.3064], + ["Myanmar (Union of)",0.0149], + ["Nepal (Federal Democratic Republic of)",0.3025], + ["Netherlands (Kingdom of the)",1.1034], + ["New Zealand",0.8986], + ["Nicaragua (Republic of)",0.2033], + ["North Macedonia (Republic of)",0.2243], + ["Norway (Kingdom of)",0.9521], + ["Pakistan (Islamic Republic of)",0.031], + ["Peru (Republic of)",0.1508], + ["Poland (Republic of)",0.3604], + ["Portugal (Portuguese Republic)",0.767], + ["Romania",0.1515], + ["Russian Federation",0.1586], + ["Samoa (Independent State of)",0.1783], + ["São Tomé and Príncipe (Democratic Republic of)",0.1255], + ["Saudi Arabia (Kingdom of)",0.1375], + ["Sierra Leone (Republic of)",0.0106], + ["Singapore (Republic of)",0.5807], + ["Slovakia (Slovak Republic)",0.3482], + ["Slovenia (Republic of)",0.2762], + ["Solomon Islands",0.0735], + ["South Africa (Republic of)",0.3645], + ["Spain (Kingdom of)",0.6763], + ["Sri Lanka (Democratic Socialist Republic of)",0.1055], + ["Sweden (Kingdom of)",0.8356], + ["Switzerland (Swiss Confederation)",1.2379], + ["Tajikistan (Republic of)",0.094], + ["Thailand (Kingdom of)",0.8077], + ["Turkey (Republic of)",0.178], + ["Ukraine",0.088], + ["United Arab Emirates",0.2516], + ["United Kingdom (of Great Britain & Northern Ireland)",0.8555], + ["United States (of America)",0.7846], + ["Vanuatu (Republic of)",0.3661] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-2016.json b/data/global/economics/debt/household-debt/debt-household-2016.json new file mode 100644 index 0000000..bd96dfd --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-2016.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.2016"], + ["Afghanistan (Islamic Republic of)",0.006], + ["Albania (Republic of)",0.1127], + ["Algeria (People's Democratic Republic of)",0.0307], + ["Argentina (Argentine Republic)",0.0598], + ["Australia (Commonwealth of)",1.2232], + ["Austria (Republic of)",0.5042], + ["Bangladesh (People's Republic of)",0.0765], + ["Belgium (Kingdom of)",0.5953], + ["Brazil (Federative Republic of)",0.2838], + ["Bulgaria (Republic of)",0.2093], + ["Cameroon (Republic of)",0.0356], + ["Canada",1.0066], + ["Central African Republic",0.0509], + ["Chad (Republic of)",0.0301], + ["Chile (Republic of)",0.4223], + ["China (People's Republic of)",0.442], + ["Colombia (Republic of)",0.2645], + ["Congo (Republic of the)",0.046], + ["Costa Rica (Republic of)",0.3053], + ["Croatia (Republic of)",0.3531], + ["Cyprus (Republic of)",1.2124], + ["Czech Republic",0.3132], + ["Denmark (Kingdom of)",1.1917], + ["El Salvador (Republic of)",0.2625], + ["Estonia (Republic of)",0.4142], + ["Finland (Republic of)",0.6712], + ["France (French Republic)",0.5722], + ["Germany (Federal Republic of)",0.533], + ["Greece (Hellenic Republic)",0.5994], + ["Honduras (Republic of)",0.2959], + ["Hong Kong (Special Administrative Region of China)",0.6763], + ["Hungary (Republic of)",0.2025], + ["Iceland (Republic of)",0.7568], + ["India (Republic of)",0.0989], + ["Indonesia (Republic of)",0.1698], + ["Ireland",0.5226], + ["Israel (State of)",0.4129], + ["Italy (Italian Republic)",0.4151], + ["Japan",0.5724], + ["Kazakhstan (Republic of)",0.0929], + ["Korea (Republic of)",0.8734], + ["Latvia (Republic of)",0.2371], + ["Lesotho (Kingdom of)",0.1054], + ["Lithuania (Republic of)",0.2277], + ["Luxembourg (Grand Duchy of)",0.6529], + ["Malaysia",0.6914], + ["Malta (Republic of)",0.5186], + ["Mauritius (Republic of)",0.3305], + ["Mexico (United Mexican States)",0.1596], + ["Morocco (Kingdom of)",0.3047], + ["Myanmar (Union of)",0.02], + ["Nepal (Federal Democratic Republic of)",0.3881], + ["Netherlands (Kingdom of the)",1.0829], + ["New Zealand",0.9243], + ["Nicaragua (Republic of)",0.2275], + ["North Macedonia (Republic of)",0.2311], + ["Norway (Kingdom of)",1.0118], + ["Pakistan (Islamic Republic of)",0.0341], + ["Peru (Republic of)",0.1496], + ["Poland (Republic of)",0.3667], + ["Portugal (Portuguese Republic)",0.7241], + ["Romania",0.1483], + ["Russian Federation",0.1536], + ["Samoa (Independent State of)",0.1888], + ["São Tomé and Príncipe (Democratic Republic of)",0.1263], + ["Saudi Arabia (Kingdom of)",0.1459], + ["Sierra Leone (Republic of)",0.0114], + ["Singapore (Republic of)",0.585], + ["Slovakia (Slovak Republic)",0.3801], + ["Slovenia (Republic of)",0.2731], + ["Solomon Islands",0.0828], + ["South Africa (Republic of)",0.3418], + ["Spain (Kingdom of)",0.6412], + ["Sri Lanka (Democratic Socialist Republic of)",0.1189], + ["Sweden (Kingdom of)",0.8506], + ["Switzerland (Swiss Confederation)",1.2634], + ["Tajikistan (Republic of)",0.0722], + ["Thailand (Kingdom of)",0.7903], + ["Turkey (Republic of)",0.1759], + ["Ukraine",0.0686], + ["United Arab Emirates",0.2719], + ["United Kingdom (of Great Britain & Northern Ireland)",0.8625], + ["United States (of America)",0.7877], + ["Vanuatu (Republic of)",0.3524] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-2017.json b/data/global/economics/debt/household-debt/debt-household-2017.json new file mode 100644 index 0000000..1dc4222 --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-2017.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.2017"], + ["Afghanistan (Islamic Republic of)",0.0062], + ["Albania (Republic of)",0.113], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.0692], + ["Australia (Commonwealth of)",1.2171], + ["Austria (Republic of)",0.4921], + ["Bangladesh (People's Republic of)",0.0799], + ["Belgium (Kingdom of)",0.6026], + ["Brazil (Federative Republic of)",0.2727], + ["Bulgaria (Republic of)",0.2292], + ["Cameroon (Republic of)",0.037], + ["Canada",1.0037], + ["Central African Republic",0.0458], + ["Chad (Republic of)",0.0287], + ["Chile (Republic of)",0.4369], + ["China (People's Republic of)",0.497], + ["Colombia (Republic of)",0.2588], + ["Congo (Republic of the)",0.0422], + ["Costa Rica (Republic of)",0.3189], + ["Croatia (Republic of)",0.3413], + ["Cyprus (Republic of)",1.0948], + ["Czech Republic",0.3163], + ["Denmark (Kingdom of)",1.1714], + ["El Salvador (Republic of)",0.295], + ["Estonia (Republic of)",0.4047], + ["Finland (Republic of)",0.672], + ["France (French Republic)",0.5862], + ["Germany (Federal Republic of)",0.5326], + ["Greece (Hellenic Republic)",0.5618], + ["Honduras (Republic of)",0.292], + ["Hong Kong (Special Administrative Region of China)",0.7056], + ["Hungary (Republic of)",0.1881], + ["Iceland (Republic of)",0.7557], + ["India (Republic of)",0.105], + ["Indonesia (Republic of)",0.1704], + ["Ireland",0.4775], + ["Israel (State of)",0.4207], + ["Italy (Italian Republic)",0.4131], + ["Japan",0.5704], + ["Kazakhstan (Republic of)",0.0909], + ["Korea (Republic of)",0.8935], + ["Latvia (Republic of)",0.2234], + ["Lesotho (Kingdom of)",0.1137], + ["Lithuania (Republic of)",0.2262], + ["Luxembourg (Grand Duchy of)",0.668], + ["Malaysia",0.6622], + ["Malta (Republic of)",0.5041], + ["Mauritius (Republic of)",0.3223], + ["Mexico (United Mexican States)",0.1612], + ["Morocco (Kingdom of)",0.2963], + ["Myanmar (Union of)",0.0192], + ["Nepal (Federal Democratic Republic of)",0.3663], + ["Netherlands (Kingdom of the)",1.0553], + ["New Zealand",0.919], + ["Nicaragua (Republic of)",0.2373], + ["North Macedonia (Republic of)",0.2448], + ["Norway (Kingdom of)",1.0174], + ["Pakistan (Islamic Republic of)",0.0359], + ["Peru (Republic of)",0.1528], + ["Poland (Republic of)",0.3504], + ["Portugal (Portuguese Republic)",0.6942], + ["Romania",0.1419], + ["Russian Federation",0.1622], + ["Samoa (Independent State of)",0.199], + ["São Tomé and Príncipe (Democratic Republic of)",0.1146], + ["Saudi Arabia (Kingdom of)",0.1283], + ["Sierra Leone (Republic of)",0.0139], + ["Singapore (Republic of)",0.5864], + ["Slovakia (Slovak Republic)",0.4054], + ["Slovenia (Republic of)",0.2697], + ["Solomon Islands",0.0751], + ["South Africa (Republic of)",0.3319], + ["Spain (Kingdom of)",0.6124], + ["Sri Lanka (Democratic Socialist Republic of)",0.122], + ["Sweden (Kingdom of)",0.8815], + ["Switzerland (Swiss Confederation)",1.2772], + ["Tajikistan (Republic of)",0.059], + ["Thailand (Kingdom of)",0.7803], + ["Turkey (Republic of)",0.17], + ["Ukraine",0.0584], + ["United Arab Emirates",0.2433], + ["United Kingdom (of Great Britain & Northern Ireland)",0.8612], + ["United States (of America)",0.7758], + ["Vanuatu (Republic of)",0.3556] + ] +} diff --git a/data/global/economics/debt/household-debt/debt-household-2018.json b/data/global/economics/debt/household-debt/debt-household-2018.json new file mode 100644 index 0000000..403d3df --- /dev/null +++ b/data/global/economics/debt/household-debt/debt-household-2018.json @@ -0,0 +1,106 @@ +{ + "metadata" : { + "name" : "Household Debt Percentage Of GDP", + "description" : "Household debt, loans, and debt securities as a percentage of national GDP.", + "units" : "%", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","household"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_household_debt" + ] + }, + "data" : [ + ["country.name","debt.household.2018"], + ["Afghanistan (Islamic Republic of)",0.0063], + ["Albania (Republic of)",0.1121], + ["Algeria (People's Democratic Republic of)",null], + ["Argentina (Argentine Republic)",0.0663], + ["Australia (Commonwealth of)",1.2014], + ["Austria (Republic of)",0.4892], + ["Bangladesh (People's Republic of)",0.0775], + ["Belgium (Kingdom of)",0.6129], + ["Brazil (Federative Republic of)",0.2824], + ["Bulgaria (Republic of)",0.2338], + ["Cameroon (Republic of)",0.0428], + ["Canada",1.0068], + ["Central African Republic",0.0338], + ["Chad (Republic of)",0.0278], + ["Chile (Republic of)",0.4541], + ["China (People's Republic of)",0.5415], + ["Colombia (Republic of)",0.2691], + ["Congo (Republic of the)",0.0343], + ["Costa Rica (Republic of)",0.3211], + ["Croatia (Republic of)",0.3416], + ["Cyprus (Republic of)",0.9894], + ["Czech Republic",null], + ["Denmark (Kingdom of)",1.1515], + ["El Salvador (Republic of)",0.2905], + ["Estonia (Republic of)",0.3837], + ["Finland (Republic of)",0.6685], + ["France (French Republic)",0.6], + ["Germany (Federal Republic of)",0.5359], + ["Greece (Hellenic Republic)",0.5238], + ["Honduras (Republic of)",0.3168], + ["Hong Kong (Special Administrative Region of China)",0.7221], + ["Hungary (Republic of)",0.179], + ["Iceland (Republic of)",0.7563], + ["India (Republic of)",0.1105], + ["Indonesia (Republic of)",0.1701], + ["Ireland",0.4243], + ["Israel (State of)",0.4185], + ["Italy (Italian Republic)",0.41], + ["Japan",0.581], + ["Kazakhstan (Republic of)",0.0914], + ["Korea (Republic of)",0.9193], + ["Latvia (Republic of)",0.2078], + ["Lesotho (Kingdom of)",0.123], + ["Lithuania (Republic of)",0.2285], + ["Luxembourg (Grand Duchy of)",0.6679], + ["Malaysia",0.6802], + ["Malta (Republic of)",0.4938], + ["Mauritius (Republic of)",0.3238], + ["Mexico (United Mexican States)",0.1605], + ["Morocco (Kingdom of)",0.2973], + ["Myanmar (Union of)",0.019], + ["Nepal (Federal Democratic Republic of)",0.373], + ["Netherlands (Kingdom of the)",1.0342], + ["New Zealand",0.9404], + ["Nicaragua (Republic of)",0.2052], + ["North Macedonia (Republic of)",0.2535], + ["Norway (Kingdom of)",1.0035], + ["Pakistan (Islamic Republic of)",0.0392], + ["Peru (Republic of)",0.1614], + ["Poland (Republic of)",0.3514], + ["Portugal (Portuguese Republic)",0.6615], + ["Romania",0.1409], + ["Russian Federation",0.1701], + ["Samoa (Independent State of)",0.2064], + ["São Tomé and Príncipe (Democratic Republic of)",0.1094], + ["Saudi Arabia (Kingdom of)",0.1148], + ["Sierra Leone (Republic of)",0.0161], + ["Singapore (Republic of)",0.5421], + ["Slovakia (Slovak Republic)",0.4206], + ["Slovenia (Republic of)",0.2701], + ["Solomon Islands",0.0769], + ["South Africa (Republic of)",0.3346], + ["Spain (Kingdom of)",0.5886], + ["Sri Lanka (Democratic Socialist Republic of)",0.13], + ["Sweden (Kingdom of)",0.8787], + ["Switzerland (Swiss Confederation)",1.287], + ["Tajikistan (Republic of)",0.0552], + ["Thailand (Kingdom of)",0.7862], + ["Turkey (Republic of)",0.1472], + ["Ukraine",0.0566], + ["United Arab Emirates",0.2218], + ["United Kingdom (of Great Britain & Northern Ireland)",0.8719], + ["United States (of America)",0.7586], + ["Vanuatu (Republic of)",0.3455] + ] +} diff --git a/data/global/economics/debt/public-debt/debt-public-gdp.json b/data/global/economics/debt/public-debt/debt-public-gdp.json new file mode 100644 index 0000000..d396ba6 --- /dev/null +++ b/data/global/economics/debt/public-debt/debt-public-gdp.json @@ -0,0 +1,220 @@ +{ + "metadata" : { + "name" : "Public Debt Percentage Of GDP", + "description" : "Gross government debt as a percentage of national GDP.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","gdp","government"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_public_debt" + ] + }, + "data" : [ + ["country.name","debt.public.percentgdp"], + ["Afghanistan (Islamic Republic of)",null], + ["Albania (Republic of)",0.739], + ["Algeria (People's Democratic Republic of)",0.63], + ["Andorra (Principality of)",0.485], + ["Angola (Republic of)",0.864], + ["Antigua and Barbuda",1.014], + ["Argentina (Argentine Republic)",0.809], + ["Armenia (Republic of)",0.602], + ["Aruba",1.018], + ["Australia (Commonwealth of)",0.584], + ["Austria (Republic of)",0.829], + ["Azerbaijan (Republic of)",0.264], + ["Bahamas (Commonwealth of the)",1.033], + ["Bahrain (Kingdom of)",1.285], + ["Bangladesh (People's Republic of)",0.355], + ["Barbados",1.354], + ["Belarus (Republic of)",0.412], + ["Belgium (Kingdom of)",1.084], + ["Belize",0.822], + ["Benin (Republic of)",0.499], + ["Bhutan (Kingdom of)",1.324], + ["Bolivia (Plurinational State of)",0.805], + ["Bosnia and Herzegovina",0.354], + ["Botswana (Republic of)",0.195], + ["Brazil (Federative Republic of)",0.93], + ["Brunei (Nation of the Abode of Peace)",0.025], + ["Bulgaria (Republic of)",0.238], + ["Burkina Faso",0.524], + ["Burundi (Republic of)",0.666], + ["Cape Verde (Republic of)",1.423], + ["Cambodia (Kingdom of)",0.363], + ["Cameroon (Republic of)",0.455], + ["Canada",1.129], + ["Central African Republic",0.476], + ["Chad (Republic of)",0.56], + ["Chile (Republic of)",0.363], + ["China (People's Republic of)",0.715], + ["Colombia (Republic of)",0.646], + ["Comoros (Union of the)",0.26], + ["Congo (Democratic Republic of the)",0.161], + ["Congo (Republic of the)",1.036], + ["Costa Rica (Republic of)",0.682], + ["Côte d'Ivoire (Republic of)",0.521], + ["Croatia (Republic of)",0.798], + ["Cuba (Republic of)",null], + ["Cyprus (Republic of)",1.036], + ["Czech Republic",0.42], + ["Denmark (Kingdom of)",0.366], + ["Djibouti (Republic of)",0.46], + ["Dominica (Commonwealth of)",1.027], + ["Dominican Republic",0.631], + ["Ecuador (Republic of)",0.622], + ["Egypt (Arab Republic of)",0.892], + ["El Salvador (Republic of)",0.824], + ["Equatorial Guinea (Republic of)",0.428], + ["Eritrea (State of)",1.763], + ["Estonia (Republic of)",0.176], + ["Eswatini (Kingdom of)",0.45], + ["Ethiopia (Federal Democratic Republic of)",0.53], + ["Fiji (Republic of)",0.83], + ["Finland (Republic of)",0.662], + ["France (French Republic)",1.126], + ["Gabon (Gabonese Republic)",0.658], + ["Gambia (Republic of the)",0.838], + ["Georgia",0.495], + ["Germany (Federal Republic of)",0.696], + ["Ghana (Republic of)",0.821], + ["Greece (Hellenic Republic)",1.994], + ["Grenada",0.703], + ["Guatemala (Republic of)",0.308], + ["Guinea (Republic of)",0.425], + ["Guinea-Bissau (Republic of)",0.785], + ["Guyana (Co-operative Republic of)",0.429], + ["Haiti (Republic of)",0.242], + ["Honduras (Republic of)",0.502], + ["Hong Kong (Special Administrative Region of China)",0.021], + ["Hungary (Republic of)",0.768], + ["Iceland (Republic of)",0.746], + ["India (Republic of)",0.842], + ["Indonesia (Republic of)",0.412], + ["Iran (Islamic Republic of)",0.424], + ["Iraq (Republic of)",0.591], + ["Ireland",0.553], + ["Israel (State of)",0.68], + ["Italy (Italian Republic)",1.509], + ["Jamaica",0.923], + ["Japan",2.625], + ["Jordan (Hashemite Kingdom of)",0.919], + ["Kazakhstan (Republic of)",0.251], + ["Kenya (Republic of)",0.678], + ["Kiribati (Republic of)",0.176], + ["Korea (Republic of)",0.513], + ["Korea (Democratic People's Republic of)",null], + ["Kosovo (Republic of)",0.224], + ["Kuwait (State of)",0.087], + ["Kyrgyz Republic",0.611], + ["Lao (People's Democratic Republic)",0.935], + ["Latvia (Republic of)",0.457], + ["Lebanon (Lebanese Republic)",null], + ["Lesotho (Kingdom of)",0.535], + ["Liberia (Republic of)",0.532], + ["Libya (State of)",null], + ["Lithuania (Republic of)",0.447], + ["Luxembourg (Grand Duchy of)",0.243], + ["Macao (Special Administrative Region of China)",0], + ["Madagascar (Republic of)",0.531], + ["Malawi (Republic of)",0.639], + ["Malaysia",0.69], + ["Maldives (Republic of)",1.248], + ["Mali (Republic of)",0.519], + ["Malta (Republic of)",0.564], + ["Marshall Islands (Republic of the)",0.198], + ["Mauritania (Islamic Republic of)",0.517], + ["Mauritius (Republic of)",0.936], + ["Mexico (United Mexican States)",0.576], + ["Micronesia (Federated States of)",0.15], + ["Moldova (Republic of)",0.331], + ["Mongolia",0.798], + ["Montenegro",0.866], + ["Morocco (Kingdom of)",0.689], + ["Mozambique (Republic of)",1.064], + ["Myanmar (Union of)",0.623], + ["Namibia (Republic of)",0.72], + ["Nauru (Republic of)",0.271], + ["Nepal (Federal Democratic Republic of)",0.458], + ["Netherlands (Kingdom of the)",0.523], + ["New Zealand",0.508], + ["Nicaragua (Republic of)",0.494], + ["Niger (Republic of)",0.512], + ["Nigeria (Federal Republic of)",0.366], + ["North Macedonia (Republic of)",0.532], + ["Norway (Kingdom of)",0.434], + ["Oman (Sultanate of)",0.629], + ["Pakistan (Islamic Republic of)",0.749], + ["Palau (Republic of)",null], + ["Panama (Republic of)",0.584], + ["Papua New Guinea (Independent State of)",0.509], + ["Paraguay (Republic of)",0.377], + ["Peru (Republic of)",0.364], + ["Philippines (Republic of the)",0.57], + ["Poland (Republic of)",0.538], + ["Portugal (Portuguese Republic)",1.274], + ["Puerto Rico (Commonwealth of)",0.479], + ["Qatar (State of)",0.584], + ["Romania",0.514], + ["Russian Federation",0.17], + ["Rwanda (Republic of)",0.666], + ["Saint Kitts and Nevis (Federation of)",0.634], + ["Saint Lucia",0.922], + ["Saint Vincent and the Grenadines",0.884], + ["Samoa (Independent State of)",0.463], + ["San Marino (Republic of)",0.892], + ["São Tomé and Príncipe (Democratic Republic of)",0.724], + ["Saudi Arabia (Kingdom of)",0.3], + ["Senegal (Republic of)",0.732], + ["Serbia (Republic of)",0.579], + ["Seychelles (Republic of)",0.729], + ["Sierra Leone (Republic of)",0.793], + ["Singapore (Republic of)",1.599], + ["Slovakia (Slovak Republic)",0.631], + ["Slovenia (Republic of)",0.744], + ["Solomon Islands",0.165], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.69], + ["South Sudan (Republic of)",0.647], + ["Spain (Kingdom of)",1.186], + ["Sri Lanka (Democratic Socialist Republic of)",1.031], + ["Sudan (Republic of the)",1.82], + ["Suriname (Republic of)",1.257], + ["Sweden (Kingdom of)",0.368], + ["Switzerland (Swiss Confederation)",0.421], + ["Syrian Arab Republic",null], + ["Taiwan",0.284], + ["Tajikistan (Republic of)",0.444], + ["Tanzania (United Republic of)",0.407], + ["Thailand (Kingdom of)",0.584], + ["Timor-Leste (Democratic Republic of)",0.1], + ["Togo (Togolese Republic)",0.637], + ["Tonga (Kingdom of)",0.475], + ["Trinidad and Tobago (Republic of)",0.606], + ["Tunisia (Republic of)",0.818], + ["Turkey (Republic of)",0.418], + ["Turkmenistan",0.111], + ["Tuvalu",0.06], + ["Uganda (Republic of)",0.518], + ["Ukraine",0.476], + ["United Arab Emirates",0.347], + ["United Kingdom (of Great Britain & Northern Ireland)",0.953], + ["United States (of America)",1.281], + ["Uruguay (Oriental Republic of)",0.651], + ["Uzbekistan (Republic of)",0.358], + ["Vanuatu (Republic of)",0.482], + ["Venezuela (Bolivarian Republic of)",2.405], + ["Vietnam (Socialist Republic of)",0.397], + ["Palestine (State of)",0.504], + ["Yemen (Republic of)",0.697], + ["Zambia (Republic of)",1.191], + ["Zimbabwe (Republic of)",0.669] + ] +} diff --git a/data/global/economics/debt/public-debt/debt-public-pc-forex.json b/data/global/economics/debt/public-debt/debt-public-pc-forex.json new file mode 100644 index 0000000..6a78d90 --- /dev/null +++ b/data/global/economics/debt/public-debt/debt-public-pc-forex.json @@ -0,0 +1,230 @@ +{ + "metadata" : { + "name" : "Public Debt Per-Capita (FOREX)", + "description" : "Gross government per-capita measured in FOREX exchange rates.", + "units" : "$", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","debt","per-capita","government"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_public_debt" + ] + }, + "data" : [ + ["country.name","debt.public.pc.forex"], + ["Japan",91768], + ["Singapore (Republic of)",60016], + ["Qatar (State of)",37990], + ["Greece (Hellenic Republic)",33905], + ["Italy (Italian Republic)",41056], + ["Ireland",44871], + ["Belgium (Kingdom of)",44119], + ["United States (of America)",46645], + ["Canada",41323], + ["Bahrain (Kingdom of)",21673], + ["France (French Republic)",37189], + ["Austria (Republic of)",37310], + ["United Kingdom (of Great Britain & Northern Ireland)",35320], + ["Portugal (Portuguese Republic)",26462], + ["Bermuda",37015], + ["Spain (Kingdom of)",26210], + ["Germany (Federal Republic of)",29394], + ["Aruba",19918], + ["Netherlands (Kingdom of the)",27415], + ["Barbados",26777], + ["Finland (Republic of)",27986], + ["Switzerland (Swiss Confederation)",34225], + ["Norway (Kingdom of)",27095], + ["Cyprus (Republic of)",17103], + ["Slovenia (Republic of)",17110], + ["Luxembourg (Grand Duchy of)",23742], + ["Israel (State of)",25351], + ["Malta (Republic of)",14204], + ["Antigua and Barbuda",13796], + ["Australia (Commonwealth of)",23990], + ["Hungary (Republic of)",10427], + ["Lebanon (Lebanese Republic)",13039], + ["Iceland (Republic of)",28505], + ["Sweden (Kingdom of)",21763], + ["Kuwait (State of)",8525], + ["Puerto Rico (Commonwealth of)",16320], + ["Bahamas (Commonwealth of the)",19960], + ["Oman (Sultanate of)",7196], + ["United States Virgin Islands",25819], + ["Croatia (Republic of)",9976], + ["Seychelles (Republic of)",10068], + ["Saint Kitts and Nevis (Federation of)",11420], + ["Taiwan",8682], + ["Denmark (Kingdom of)",19784], + ["Slovakia (Slovak Republic)",8970], + ["Andorra (Principality of)",12973], + ["Malaysia",5313], + ["Korea (Republic of)",11830], + ["Uruguay (Oriental Republic of)",11540], + ["Poland (Republic of)",6912], + ["Equatorial Guinea (Republic of)",5858], + ["Trinidad and Tobago (Republic of)",7834], + ["San Marino (Republic of)",11722], + ["United Arab Emirates",7769], + ["Faroe Islands",18969], + ["Mauritius (Republic of)",6253], + ["New Zealand",14045], + ["Brazil (Federative Republic of)",8265], + ["Lithuania (Republic of)",6717], + ["Egypt (Arab Republic of)",2450], + ["Czech Republic",7007], + ["Montenegro",5234], + ["Argentina (Argentine Republic)",8217], + ["Mongolia",3281], + ["Maldives (Republic of)",7335], + ["Saint Lucia",7202], + ["Gabon (Gabonese Republic)",4418], + ["Mexico (United Mexican States)",4962], + ["Panama (Republic of)",6150], + ["Grenada",7021], + ["Nauru (Republic of)",7293], + ["Latvia (Republic of)",5724], + ["Suriname (Republic of)",3963], + ["Belarus (Republic of)",3051], + ["Bhutan (Kingdom of)",3336], + ["Sri Lanka (Democratic Socialist Republic of)",3060], + ["Iraq (Republic of)",2858], + ["Jamaica",5305], + ["Serbia (Republic of)",3658], + ["Azerbaijan (Republic of)",2190], + ["Saudi Arabia (Kingdom of)",3569], + ["Saint Vincent and the Grenadines",5688], + ["Dominica (Commonwealth of)",6223], + ["Albania (Republic of)",3070], + ["Tunisia (Republic of)",2439], + ["Cape Verde (Republic of)",3931], + ["Romania",3634], + ["Belize",4757], + ["Costa Rica (Republic of)",5713], + ["Jordan (Hashemite Kingdom of)",3680], + ["China (People's Republic of)",4077], + ["Iran (Islamic Republic of)",2049], + ["Guam",7631], + ["Turkey (Republic of)",2966], + ["Congo (Republic of the)",2253], + ["Thailand (Kingdom of)",2781], + ["South Africa (Republic of)",3343], + ["Colombia (Republic of)",3225], + ["Curaçao",12375], + ["Dominican Republic",2748], + ["Ukraine",1811], + ["Chile (Republic of)",3647], + ["Cuba (Republic of)",4024], + ["North Macedonia (Republic of)",2109], + ["Morocco (Kingdom of)",2074], + ["El Salvador (Republic of)",2723], + ["Turkmenistan",2019], + ["Greenland",5005], + ["Ecuador (Republic of)",2870], + ["Kazakhstan (Republic of)",1769], + ["Gibraltar",5203], + ["India (Republic of)",1429], + ["Bulgaria (Republic of)",1928], + ["Sudan (Republic of the)",1292], + ["Armenia (Republic of)",2032], + ["Venezuela (Bolivarian Republic of)",2579], + ["Bosnia and Herzegovina",1864], + ["Fiji (Republic of)",2582], + ["Guyana (Co-operative Republic of)",2510], + ["Russian Federation",1721], + ["Mauritania (Islamic Republic of)",1241], + ["Lao (People's Democratic Republic)",1492], + ["Namibia (Republic of)",2159], + ["Algeria (People's Democratic Republic of)",1106], + ["Angola (Republic of)",2709], + ["Vietnam (Socialist Republic of)",1329], + ["Georgia",1382], + ["Bolivia (Plurinational State of)",1637], + ["Indonesia (Republic of)",1112], + ["Peru (Republic of)",1737], + ["Ghana (Republic of)",1201], + ["Pakistan (Islamic Republic of)",983], + ["Philippines (Republic of the)",1182], + ["Eswatini (Kingdom of)",1154], + ["Estonia (Republic of)",1878], + ["São Tomé and Príncipe (Democratic Republic of)",1699], + ["Palau (Republic of)",3271], + ["Samoa (Independent State of)",2051], + ["Tonga (Kingdom of)",2053], + ["Zambia (Republic of)",986], + ["Paraguay (Republic of)",1081], + ["Syrian Arab Republic",1199], + ["Botswana (Republic of)",1082], + ["Gambia (Republic of the)",623], + ["Kyrgyz Republic",724], + ["Kosovo (Republic of)",788], + ["Moldova (Republic of)",876], + ["Brunei (Nation of the Abode of Peace)",754], + ["Eritrea (State of)",1277], + ["Guatemala (Republic of)",1126], + ["Anguilla",2024], + ["Zimbabwe (Republic of)",1035], + ["Burma",406], + ["Nicaragua (Republic of)",756], + ["Honduras (Republic of)",988], + ["Yemen (Republic of)",813], + ["Palestine (State of)",857], + ["Kenya (Republic of)",887], + ["Uzbekistan (Republic of)",395], + ["Senegal (Republic of)",679], + ["Côte d'Ivoire (Republic of)",724], + ["Northern Mariana Islands (Commonwealth of the)",1696], + ["Tajikistan (Republic of)",418], + ["Papua New Guinea (Independent State of)",1041], + ["American Samoa",1579], + ["Bangladesh (People's Republic of)",543], + ["Tuvalu",1328], + ["Somalia (Federal Republic of)",480], + ["Mozambique (Republic of)",472], + ["Djibouti (Republic of)",730], + ["Vanuatu (Republic of)",1462], + ["Cameroon (Republic of)",504], + ["South Sudan (Republic of)",188], + ["Benin (Republic of)",445], + ["Nigeria (Federal Republic of)",403], + ["Togo (Togolese Republic)",441], + ["Cambodia (Kingdom of)",408], + ["Sierra Leone (Republic of)",366], + ["Lesotho (Kingdom of)",472], + ["Tanzania (United Republic of)",345], + ["Ethiopia (Federal Democratic Republic of)",404], + ["Chad (Republic of)",327], + ["Guinea-Bissau (Republic of)",397], + ["Guinea (Republic of)",328], + ["Uganda (Republic of)",261], + ["Micronesia (Federated States of)",775], + ["Rwanda (Republic of)",304], + ["Mali (Republic of)",295], + ["Nepal (Federal Democratic Republic of)",221], + ["Burkina Faso",243], + ["Malawi (Republic of)",186], + ["Marshall Islands (Republic of the)",748], + ["Haiti (Republic of)",248], + ["Madagascar (Republic of)",161], + ["Kiribati (Republic of)",474], + ["Comoros (Union of the)",257], + ["Niger (Republic of)",188], + ["Liberia (Republic of)",235], + ["Libya (State of)",213], + ["Burundi (Republic of)",148], + ["Central African Republic",178], + ["Timor-Leste (Democratic Republic of)",80], + ["Solomon Islands",185], + ["Congo (Democratic Republic of the)",88], + ["Afghanistan (Islamic Republic of)",41], + ["Hong Kong (Special Administrative Region of China)",47], + ["Falkland Islands (Malvinas)",0], + ["Macao (Special Administrative Region of China)",0] + ] +} diff --git a/data/global/economics/debt/public-debt/debt-public-pc-ppp.json b/data/global/economics/debt/public-debt/debt-public-pc-ppp.json new file mode 100644 index 0000000..45885ea --- /dev/null +++ b/data/global/economics/debt/public-debt/debt-public-pc-ppp.json @@ -0,0 +1,230 @@ +{ + "metadata" : { + "name" : "Public Debt Per-Capita (PPP)", + "description" : "Gross government debt per-capita measured in Purchasing Power Parity (PPP).", + "units" : "$", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economic","debt","per-capita","government"], + "authors" : [ + "International Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_public_debt" + ] + }, + "data" : [ + ["country.name","debt.public.pc.ppp"], + ["Japan",102503], + ["Singapore (Republic of)",97852], + ["Qatar (State of)",77278], + ["Greece (Hellenic Republic)",50562], + ["Italy (Italian Republic)",49060], + ["Ireland",47822], + ["Belgium (Kingdom of)",47291], + ["United States (of America)",46645], + ["Canada",44348], + ["Bahrain (Kingdom of)",43659], + ["France (French Republic)",41040], + ["Austria (Republic of)",39419], + ["United Kingdom (of Great Britain & Northern Ireland)",39311], + ["Portugal (Portuguese Republic)",38127], + ["Bermuda",37015], + ["Spain (Kingdom of)",35466], + ["Germany (Federal Republic of)",33349], + ["Aruba",30674], + ["Netherlands (Kingdom of the)",30452], + ["Barbados",28001], + ["Finland (Republic of)",27111], + ["Switzerland (Swiss Confederation)",26367], + ["Norway (Kingdom of)",25900], + ["Cyprus (Republic of)",25047], + ["Slovenia (Republic of)",24939], + ["Luxembourg (Grand Duchy of)",23582], + ["Israel (State of)",22922], + ["Malta (Republic of)",21746], + ["Antigua and Barbuda",21709], + ["Australia (Commonwealth of)",21695], + ["Hungary (Republic of)",21693], + ["Lebanon (Lebanese Republic)",21238], + ["Iceland (Republic of)",21169], + ["Sweden (Kingdom of)",21048], + ["Kuwait (State of)",20462], + ["Puerto Rico (Commonwealth of)",20360], + ["Bahamas (Commonwealth of the)",19796], + ["Oman (Sultanate of)",19326], + ["United States Virgin Islands",19292], + ["Croatia (Republic of)",18601], + ["Seychelles (Republic of)",18482], + ["Saint Kitts and Nevis (Federation of)",18363], + ["Taiwan",18027], + ["Denmark (Kingdom of)",17487], + ["Slovakia (Slovak Republic)",16798], + ["Andorra (Principality of)",15915], + ["Malaysia",15873], + ["Korea (Republic of)",15633], + ["Uruguay (Oriental Republic of)",15241], + ["Poland (Republic of)",14829], + ["Equatorial Guinea (Republic of)",14783], + ["Trinidad and Tobago (Republic of)",14735], + ["San Marino (Republic of)",14726], + ["United Arab Emirates",14133], + ["Faroe Islands",13728], + ["Mauritius (Republic of)",13262], + ["New Zealand",13180], + ["Brazil (Federative Republic of)",13064], + ["Lithuania (Republic of)",13000], + ["Egypt (Arab Republic of)",12474], + ["Czech Republic",12206], + ["Montenegro",12122], + ["Argentina (Argentine Republic)",11884], + ["Mongolia",11701], + ["Maldives (Republic of)",11236], + ["Saint Lucia",10859], + ["Gabon (Gabonese Republic)",10847], + ["Mexico (United Mexican States)",10618], + ["Panama (Republic of)",10353], + ["Grenada",10252], + ["Nauru (Republic of)",10235], + ["Latvia (Republic of)",10194], + ["Suriname (Republic of)",10069], + ["Belarus (Republic of)",10055], + ["Bhutan (Kingdom of)",9993], + ["Sri Lanka (Democratic Socialist Republic of)",9663], + ["Iraq (Republic of)",9644], + ["Jamaica",9360], + ["Serbia (Republic of)",9333], + ["Azerbaijan (Republic of)",9273], + ["Saudi Arabia (Kingdom of)",9226], + ["Saint Vincent and the Grenadines",9167], + ["Dominica (Commonwealth of)",8747], + ["Albania (Republic of)",8457], + ["Tunisia (Republic of)",8406], + ["Cape Verde (Republic of)",8360], + ["Romania",8291], + ["Belize",8257], + ["Costa Rica (Republic of)",8230], + ["Jordan (Hashemite Kingdom of)",8161], + ["China (People's Republic of)",7878], + ["Iran (Islamic Republic of)",7802], + ["Guam",7631], + ["Turkey (Republic of)",7613], + ["Congo (Republic of the)",7594], + ["Thailand (Kingdom of)",7548], + ["South Africa (Republic of)",7342], + ["Colombia (Republic of)",7298], + ["Curaçao",6912], + ["Dominican Republic",6249], + ["Ukraine",5970], + ["Chile (Republic of)",5952], + ["Cuba (Republic of)",5879], + ["North Macedonia (Republic of)",5755], + ["Morocco (Kingdom of)",5665], + ["El Salvador (Republic of)",5615], + ["Turkmenistan",5519], + ["Greenland",5437], + ["Ecuador (Republic of)",5311], + ["Kazakhstan (Republic of)",5311], + ["Gibraltar",5203], + ["India (Republic of)",5202], + ["Bulgaria (Republic of)",5198], + ["Sudan (Republic of the)",5003], + ["Armenia (Republic of)",4990], + ["Venezuela (Bolivarian Republic of)",4684], + ["Bosnia and Herzegovina",4600], + ["Fiji (Republic of)",4555], + ["Guyana (Co-operative Republic of)",4441], + ["Russian Federation",4380], + ["Mauritania (Islamic Republic of)",4347], + ["Lao (People's Democratic Republic)",4338], + ["Namibia (Republic of)",4337], + ["Algeria (People's Democratic Republic of)",4159], + ["Angola (Republic of)",4145], + ["Vietnam (Socialist Republic of)",3911], + ["Georgia",3632], + ["Bolivia (Plurinational State of)",3628], + ["Indonesia (Republic of)",3562], + ["Peru (Republic of)",3488], + ["Ghana (Republic of)",3424], + ["Pakistan (Islamic Republic of)",3420], + ["Philippines (Republic of the)",3305], + ["Eswatini (Kingdom of)",3030], + ["Estonia (Republic of)",3013], + ["São Tomé and Príncipe (Democratic Republic of)",2966], + ["Palau (Republic of)",2957], + ["Samoa (Independent State of)",2773], + ["Tonga (Kingdom of)",2666], + ["Zambia (Republic of)",2645], + ["Paraguay (Republic of)",2468], + ["Syrian Arab Republic",2450], + ["Botswana (Republic of)",2428], + ["Gambia (Republic of the)",2336], + ["Kyrgyz Republic",2216], + ["Kosovo (Republic of)",2178], + ["Moldova (Republic of)",2173], + ["Brunei (Nation of the Abode of Peace)",2105], + ["Eritrea (State of)",2066], + ["Guatemala (Republic of)",2057], + ["Anguilla",2024], + ["Zimbabwe (Republic of)",2010], + ["Burma",1992], + ["Nicaragua (Republic of)",1992], + ["Honduras (Republic of)",1992], + ["Yemen (Republic of)",1913], + ["Palestine (State of)",1850], + ["Kenya (Republic of)",1833], + ["Uzbekistan (Republic of)",1805], + ["Senegal (Republic of)",1762], + ["Côte d'Ivoire (Republic of)",1739], + ["Northern Mariana Islands (Commonwealth of the)",1696], + ["Tajikistan (Republic of)",1665], + ["Papua New Guinea (Independent State of)",1585], + ["American Samoa",1579], + ["Bangladesh (People's Republic of)",1433], + ["Tuvalu",1394], + ["Somalia (Federal Republic of)",1392], + ["Mozambique (Republic of)",1391], + ["Djibouti (Republic of)",1309], + ["Vanuatu (Republic of)",1297], + ["Cameroon (Republic of)",1289], + ["South Sudan (Republic of)",1229], + ["Benin (Republic of)",1222], + ["Nigeria (Federal Republic of)",1201], + ["Togo (Togolese Republic)",1201], + ["Cambodia (Kingdom of)",1187], + ["Sierra Leone (Republic of)",1169], + ["Lesotho (Kingdom of)",1143], + ["Tanzania (United Republic of)",1084], + ["Ethiopia (Federal Democratic Republic of)",1003], + ["Chad (Republic of)",949], + ["Guinea-Bissau (Republic of)",932], + ["Guinea (Republic of)",894], + ["Uganda (Republic of)",873], + ["Micronesia (Federated States of)",823], + ["Rwanda (Republic of)",820], + ["Mali (Republic of)",792], + ["Nepal (Federal Democratic Republic of)",703], + ["Burkina Faso",692], + ["Malawi (Republic of)",669], + ["Marshall Islands (Republic of the)",660], + ["Haiti (Republic of)",576], + ["Madagascar (Republic of)",559], + ["Kiribati (Republic of)",546], + ["Comoros (Union of the)",520], + ["Niger (Republic of)",498], + ["Liberia (Republic of)",437], + ["Libya (State of)",431], + ["Burundi (Republic of)",349], + ["Central African Republic",312], + ["Timor-Leste (Democratic Republic of)",213], + ["Solomon Islands",189], + ["Congo (Democratic Republic of the)",146], + ["Afghanistan (Islamic Republic of)",139], + ["Hong Kong (Special Administrative Region of China)",63], + ["Falkland Islands (Malvinas)",0], + ["Macao (Special Administrative Region of China)",0] + ] +} diff --git a/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-imf.json b/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-imf.json new file mode 100644 index 0000000..a0c82b1 --- /dev/null +++ b/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-imf.json @@ -0,0 +1,243 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Nominal Per-Capita", + "description" : "Gross Domestic Product (GDP) Nominal Per Capita.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp","per-capita"], + "authors" : [ + "Internatioal Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)_per_capita" + ] + }, + "data" : [ + ["country.name","gdp.nominal.pc.imf"], + ["Monaco (Principality of)",null], + ["Liechtenstein (Principality of)",null], + ["Luxembourg (Grand Duchy of)",127673], + ["Bermuda",null], + ["Ireland",102217], + ["Norway (Kingdom of)",92646], + ["Switzerland (Swiss Confederation)",92434], + ["Isle of Man",null], + ["Cayman Islands",null], + ["Qatar (State of)",82887], + ["Singapore (Republic of)",79426], + ["United States (of America)",75180], + ["Jersey (Bailiwick of)",null], + ["Iceland (Republic of)",73981], + ["Faroe Islands",null], + ["Australia (Commonwealth of)",66408], + ["Denmark (Kingdom of)",65713], + ["Canada",56794], + ["Sweden (Kingdom of)",56361], + ["Netherlands (Kingdom of the)",56298], + ["Israel (State of)",55359], + ["Greenland",null], + ["Austria (Republic of)",52062], + ["Finland (Republic of)",50818], + ["Belgium (Kingdom of)",50598], + ["Hong Kong (Special Administrative Region of China)",49700], + ["British Virgin Islands",null], + ["Germany (Federal Republic of)",48398], + ["United Arab Emirates",47793], + ["San Marino (Republic of)",47700], + ["United Kingdom (of Great Britain & Northern Ireland)",47318], + ["New Zealand",47278], + ["Brunei (Nation of the Abode of Peace)",42939], + ["France (French Republic)",42330], + ["Andorra (Principality of)",40723], + ["United States Virgin Islands",null], + ["Puerto Rico (Commonwealth of)",38443], + ["Kuwait (State of)",38123], + ["New Caledonia",null], + ["Guam",null], + ["Taiwan",35513], + ["Japan",34358], + ["Italy (Italian Republic)",33740], + ["Macao (Special Administrative Region of China)",33608], + ["Korea (Republic of)",33592], + ["Malta (Republic of)",32912], + ["Bahamas (Commonwealth of the)",32246], + ["Aruba",31990], + ["Cyprus (Republic of)",29535], + ["Slovenia (Republic of)",29469], + ["Estonia (Republic of)",29344], + ["Spain (Kingdom of)",29198], + ["Bahrain (Kingdom of)",28692], + ["Czech Republic",28095], + ["Saudi Arabia (Kingdom of)",27941], + ["Portugal (Portuguese Republic)",24910], + ["Lithuania (Republic of)",24032], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Oman (Sultanate of)",23542], + ["Iran (Islamic Republic of)",23034], + ["Saint Martin",null], + ["Latvia (Republic of)",21482], + ["Turks and Caicos Islands",null], + ["Greece (Hellenic Republic)",20876], + ["Trinidad and Tobago (Republic of)",20746], + ["Slovakia (Slovak Republic)",20565], + ["Seychelles (Republic of)",20266], + ["Uruguay (Oriental Republic of)",20018], + ["Barbados",20004], + ["Sint Maarten (Netherlands)",null], + ["French Polynesia",null], + ["Saint Kitts and Nevis (Federation of)",19129], + ["Poland (Republic of)",19023], + ["Hungary (Republic of)",18983], + ["Guyana (Co-operative Republic of)",18745], + ["Curaçao",null], + ["Croatia (Republic of)",17318], + ["Anguilla",null], + ["Antigua and Barbuda",16787], + ["Panama (Republic of)",16173], + ["Cook Islands",null], + ["American Samoa",null], + ["Romania",15619], + ["Chile (Republic of)",15604], + ["Maldives (Republic of)",15097], + ["Russian Federation",14665], + ["Argentina (Argentine Republic)",13622], + ["Montserrat",null], + ["Malaysia",13108], + ["Costa Rica (Republic of)",13090], + ["China (People's Republic of)",12970], + ["Palau (Republic of)",12663], + ["Bulgaria (Republic of)",12505], + ["Turkmenistan",11929], + ["Kazakhstan (Republic of)",11591], + ["Equatorial Guinea (Republic of)",11264], + ["Mexico (United Mexican States)",10948], + ["Saint Lucia",10763], + ["Dominican Republic",10573], + ["Grenada",10477], + ["Gabon (Gabonese Republic)",10282], + ["Nauru (Republic of)",10005], + ["Turkey (Republic of)",9961], + ["Montenegro",9850], + ["Cuba (Republic of)",null], + ["Serbia (Republic of)",9164], + ["Mauritius (Republic of)",9112], + ["Brazil (Federative Republic of)",8857], + ["Belarus (Republic of)",8567], + ["Saint Vincent and the Grenadines",8546], + ["Dominica (Commonwealth of)",8086], + ["Thailand (Kingdom of)",7631], + ["Botswana (Republic of)",7348], + ["Peru (Republic of)",7005], + ["Azerbaijan (Republic of)",6842], + ["Bosnia and Herzegovina",6818], + ["North Macedonia (Republic of)",6816], + ["Georgia",6770], + ["South Africa (Republic of)",6739], + ["Iraq (Republic of)",6696], + ["Colombia (Republic of)",6644], + ["Ecuador (Republic of)",6413], + ["Albania (Republic of)",6369], + ["Belize",6096], + ["Libya (State of)",6026], + ["Armenia (Republic of)",5972], + ["Tuvalu",5900], + ["Jamaica",5870], + ["Paraguay (Republic of)",5615], + ["Moldova (Republic of)",5529], + ["Fiji (Republic of)",5341], + ["Kosovo (Republic of)",5230], + ["Tonga (Kingdom of)",5008], + ["El Salvador (Republic of)",4883], + ["Guatemala (Republic of)",4880], + ["Suriname (Republic of)",4880], + ["Ukraine",4862], + ["Marshall Islands (Republic of the)",4859], + ["Namibia (Republic of)",4809], + ["Indonesia (Republic of)",4691], + ["Jordan (Hashemite Kingdom of)",4666], + ["Mongolia",4542], + ["Egypt (Arab Republic of)",4504], + ["Vietnam (Socialist Republic of)",4163], + ["Algeria (People's Democratic Republic of)",4151], + ["Lebanon (Lebanese Republic)",3589], + ["Samoa (Independent State of)",4128], + ["Micronesia (Federated States of)",4072], + ["Eswatini (Kingdom of)",4056], + ["Morocco (Kingdom of)",3896], + ["Tunisia (Republic of)",3816], + ["Angola (Republic of)",3791], + ["Djibouti (Republic of)",3666], + ["Bolivia (Plurinational State of)",3631], + ["Cape Verde (Republic of)",3600], + ["Philippines (Republic of the)",3597], + ["Bhutan (Kingdom of)",3562], + ["Palestine (State of)",3517], + ["Papua New Guinea (Independent State of)",3427], + ["Sri Lanka (Democratic Socialist Republic of)",3293], + ["Venezuela (Bolivarian Republic of)",3052], + ["Vanuatu (Republic of)",3050], + ["Honduras (Republic of)",2969], + ["Congo (Republic of the)",2945], + ["Bangladesh (People's Republic of)",2734], + ["India (Republic of)",2466], + ["Zimbabwe (Republic of)",2420], + ["Côte d'Ivoire (Republic of)",2418], + ["Nicaragua (Republic of)",2375], + ["Ghana (Republic of)",2369], + ["Mauritania (Islamic Republic of)",2328], + ["Nigeria (Federal Republic of)",2326], + ["Kenya (Republic of)",2255], + ["Uzbekistan (Republic of)",2243], + ["Solomon Islands",2240], + ["São Tomé and Príncipe (Democratic Republic of)",2231], + ["Lao (People's Democratic Republic)",2172], + ["Timor-Leste (Democratic Republic of)",1793], + ["Cambodia (Kingdom of)",1771], + ["Kiribati (Republic of)",1673], + ["Haiti (Republic of)",1673], + ["Pakistan (Islamic Republic of)",1658], + ["Cameroon (Republic of)",1584], + ["Senegal (Republic of)",1558], + ["Kyrgyz Republic",1435], + ["Benin (Republic of)",1367], + ["Zambia (Republic of)",1348], + ["Guinea (Republic of)",1346], + ["Comoros (Union of the)",1300], + ["Nepal (Federal Democratic Republic of)",1293], + ["Tanzania (United Republic of)",1245], + ["Lesotho (Kingdom of)",1187], + ["Uganda (Republic of)",1106], + ["Myanmar (Union of)",1105], + ["Ethiopia (Federal Democratic Republic of)",1098], + ["Zanzibar",null], + ["Tajikistan (Republic of)",1015], + ["Togo (Togolese Republic)",961], + ["Sudan (Republic of the)",916], + ["Rwanda (Republic of)",913], + ["Syrian Arab Republic",null], + ["Yemen (Republic of)",874], + ["Mali (Republic of)",858], + ["Guinea-Bissau (Republic of)",857], + ["Gambia (Republic of the)",846], + ["Burkina Faso",825], + ["Chad (Republic of)",743], + ["Liberia (Republic of)",735], + ["Congo (Democratic Republic of the)",660], + ["Eritrea (State of)",647], + ["Korea (Democratic People's Republic of)",null], + ["Niger (Republic of)",561], + ["Mozambique (Republic of)",542], + ["Somalia (Federal Republic of)",539], + ["Malawi (Republic of)",523], + ["Madagascar (Republic of)",522], + ["Central African Republic",496], + ["Sierra Leone (Republic of)",494], + ["Afghanistan (Islamic Republic of)",611], + ["South Sudan (Republic of)",328], + ["Burundi (Republic of)",293] + ] +} diff --git a/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-un.json b/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-un.json new file mode 100644 index 0000000..8493d3c --- /dev/null +++ b/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-un.json @@ -0,0 +1,243 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Nominal Per-Capita", + "description" : "Gross Domestic Product (GDP) Nominal Per Capita.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp","per-capita"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)_per_capita" + ] + }, + "data" : [ + ["country.name","gdp.nominal.pc.un"], + ["Monaco (Principality of)",173696], + ["Liechtenstein (Principality of)",180227], + ["Luxembourg (Grand Duchy of)",117182], + ["Bermuda",123945], + ["Ireland",86251], + ["Norway (Kingdom of)",66871], + ["Switzerland (Swiss Confederation)",86919], + ["Isle of Man",null], + ["Cayman Islands",95191], + ["Qatar (State of)",50815], + ["Singapore (Republic of)",58114], + ["United States (of America)",63123], + ["Jersey (Bailiwick of)",null], + ["Iceland (Republic of)",63644], + ["Faroe Islands",null], + ["Australia (Commonwealth of)",55823], + ["Denmark (Kingdom of)",61477], + ["Canada",43560], + ["Sweden (Kingdom of)",53575], + ["Netherlands (Kingdom of the)",53334], + ["Israel (State of)",47034], + ["Greenland",55139], + ["Austria (Republic of)",48106], + ["Finland (Republic of)",48685], + ["Belgium (Kingdom of)",45028], + ["Hong Kong (Special Administrative Region of China)",46611], + ["British Virgin Islands",49357], + ["Germany (Federal Republic of)",45909], + ["United Arab Emirates",36285], + ["San Marino (Republic of)",45832], + ["United Kingdom (of Great Britain & Northern Ireland)",40718], + ["New Zealand",43972], + ["Brunei (Nation of the Abode of Peace)",27437], + ["France (French Republic)",38959], + ["Andorra (Principality of)",37072], + ["United States Virgin Islands",null], + ["Puerto Rico (Commonwealth of)",36052], + ["Kuwait (State of)",24809], + ["New Caledonia",34006], + ["Guam",null], + ["Taiwan",28383], + ["Japan",39990], + ["Italy (Italian Republic)",31238], + ["Macao (Special Administrative Region of China)",37474], + ["Korea (Republic of)",31947], + ["Malta (Republic of)",33771], + ["Bahamas (Commonwealth of the)",25194], + ["Aruba",23386], + ["Cyprus (Republic of)",28133], + ["Slovenia (Republic of)",25777], + ["Estonia (Republic of)",23106], + ["Spain (Kingdom of)",27409], + ["Bahrain (Kingdom of)",19925], + ["Czech Republic",22911], + ["Saudi Arabia (Kingdom of)",20110], + ["Portugal (Portuguese Republic)",22413], + ["Lithuania (Republic of)",20772], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Oman (Sultanate of)",12409], + ["Iran (Islamic Republic of)",11183], + ["Saint Martin",null], + ["Latvia (Republic of)",17871], + ["Turks and Caicos Islands",23881], + ["Greece (Hellenic Republic)",18117], + ["Trinidad and Tobago (Republic of)",15286], + ["Slovakia (Slovak Republic)",19264], + ["Seychelles (Republic of)",10767], + ["Uruguay (Oriental Republic of)",15438], + ["Barbados",15449], + ["Sint Maarten (Netherlands)",20000], + ["French Polynesia",20707], + ["Saint Kitts and Nevis (Federation of)",17434], + ["Poland (Republic of)",15764], + ["Hungary (Republic of)",16129], + ["Guyana (Co-operative Republic of)",6956], + ["Curaçao",15819], + ["Croatia (Republic of)",13934], + ["Anguilla",17226], + ["Antigua and Barbuda",13993], + ["Panama (Republic of)",12269], + ["Cook Islands",16135], + ["American Samoa",null], + ["Romania",12929], + ["Chile (Republic of)",13232], + ["Maldives (Republic of)",6924], + ["Russian Federation",10166], + ["Argentina (Argentine Republic)",8476], + ["Montserrat",13523], + ["Malaysia",10402], + ["Costa Rica (Republic of)",12077], + ["China (People's Republic of)",10229], + ["Palau (Republic of)",14567], + ["Bulgaria (Republic of)",10058], + ["Turkmenistan",7104], + ["Kazakhstan (Republic of)",9111], + ["Equatorial Guinea (Republic of)",7143], + ["Mexico (United Mexican States)",8326], + ["Saint Lucia",8805], + ["Dominican Republic",7268], + ["Grenada",9273], + ["Gabon (Gabonese Republic)",6789], + ["Nauru (Republic of)",12510], + ["Turkey (Republic of)",8538], + ["Montenegro",7626], + ["Cuba (Republic of)",9478], + ["Serbia (Republic of)",7656], + ["Mauritius (Republic of)",8587], + ["Brazil (Federative Republic of)",6797], + ["Belarus (Republic of)",6377], + ["Saint Vincent and the Grenadines",7298], + ["Dominica (Commonwealth of)",7038], + ["Thailand (Kingdom of)",7189], + ["Botswana (Republic of)",6711], + ["Peru (Republic of)",6163], + ["Azerbaijan (Republic of)",4202], + ["Bosnia and Herzegovina",6035], + ["North Macedonia (Republic of)",5886], + ["Georgia",3984], + ["South Africa (Republic of)",5094], + ["Iraq (Republic of)",4146], + ["Colombia (Republic of)",5333], + ["Ecuador (Republic of)",5600], + ["Albania (Republic of)",5181], + ["Belize",3988], + ["Libya (State of)",4243], + ["Armenia (Republic of)",4266], + ["Tuvalu",4648], + ["Jamaica",4665], + ["Paraguay (Republic of)",4950], + ["Moldova (Republic of)",2954], + ["Fiji (Republic of)",5013], + ["Kosovo (Republic of)",4368], + ["Tonga (Kingdom of)",4646], + ["El Salvador (Republic of)",3799], + ["Guatemala (Republic of)",4332], + ["Suriname (Republic of)",7023], + ["Ukraine",3557], + ["Marshall Islands (Republic of the)",4130], + ["Namibia (Republic of)",4215], + ["Indonesia (Republic of)",3870], + ["Jordan (Hashemite Kingdom of)",4283], + ["Mongolia",4007], + ["Egypt (Arab Republic of)",3609], + ["Vietnam (Socialist Republic of)",2786], + ["Algeria (People's Democratic Republic of)",3368], + ["Lebanon (Lebanese Republic)",9310], + ["Samoa (Independent State of)",3890], + ["Micronesia (Federated States of)",3500], + ["Eswatini (Kingdom of)",3306], + ["Morocco (Kingdom of)",3108], + ["Tunisia (Republic of)",3318], + ["Angola (Republic of)",1896], + ["Djibouti (Republic of)",3465], + ["Bolivia (Plurinational State of)",3133], + ["Cape Verde (Republic of)",3064], + ["Philippines (Republic of the)",3299], + ["Bhutan (Kingdom of)",3218], + ["Palestine (State of)",3050], + ["Papua New Guinea (Independent State of)",2640], + ["Sri Lanka (Democratic Socialist Republic of)",3768], + ["Venezuela (Bolivarian Republic of)",3740], + ["Vanuatu (Republic of)",2783], + ["Honduras (Republic of)",2406], + ["Congo (Republic of the)",1830], + ["Bangladesh (People's Republic of)",2001], + ["India (Republic of)",1931], + ["Zimbabwe (Republic of)",1466], + ["Côte d'Ivoire (Republic of)",2318], + ["Nicaragua (Republic of)",1905], + ["Ghana (Republic of)",2206], + ["Mauritania (Islamic Republic of)",1702], + ["Nigeria (Federal Republic of)",2085], + ["Kenya (Republic of)",1879], + ["Uzbekistan (Republic of)",1724], + ["Solomon Islands",2251], + ["São Tomé and Príncipe (Democratic Republic of)",2174], + ["Lao (People's Democratic Republic)",2623], + ["Timor-Leste (Democratic Republic of)",1443], + ["Cambodia (Kingdom of)",1513], + ["Kiribati (Republic of)",1515], + ["Haiti (Republic of)",1360], + ["Pakistan (Islamic Republic of)",1167], + ["Cameroon (Republic of)",1502], + ["Senegal (Republic of)",1458], + ["Kyrgyz Republic",1186], + ["Benin (Republic of)",1254], + ["Zambia (Republic of)",985], + ["Guinea (Republic of)",1179], + ["Comoros (Union of the)",1421], + ["Nepal (Federal Democratic Republic of)",1135], + ["Tanzania (United Republic of)",1115], + ["Lesotho (Kingdom of)",1061], + ["Uganda (Republic of)",846], + ["Myanmar (Union of)",1292], + ["Ethiopia (Federal Democratic Republic of)",840], + ["Zanzibar",1031], + ["Tajikistan (Republic of)",838], + ["Togo (Togolese Republic)",863], + ["Sudan (Republic of the)",1415], + ["Rwanda (Republic of)",798], + ["Syrian Arab Republic",890], + ["Yemen (Republic of)",937], + ["Mali (Republic of)",856], + ["Guinea-Bissau (Republic of)",668], + ["Gambia (Republic of the)",757], + ["Burkina Faso",831], + ["Chad (Republic of)",679], + ["Liberia (Republic of)",491], + ["Congo (Democratic Republic of the)",506], + ["Eritrea (State of)",588], + ["Korea (Democratic People's Republic of)",618], + ["Niger (Republic of)",568], + ["Mozambique (Republic of)",449], + ["Somalia (Federal Republic of)",118], + ["Malawi (Republic of)",615], + ["Madagascar (Republic of)",470], + ["Central African Republic",481], + ["Sierra Leone (Republic of)",475], + ["Afghanistan (Islamic Republic of)",508], + ["South Sudan (Republic of)",1421], + ["Burundi (Republic of)",286] + ] +} diff --git a/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-wb.json b/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-wb.json new file mode 100644 index 0000000..c42f1fc --- /dev/null +++ b/data/global/economics/gdp/gdp-nominal/gdp-nominal-pc-wb.json @@ -0,0 +1,243 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Nominal Per-Capita", + "description" : "Gross Domestic Product (GDP) Nominal Per Capita.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp","per-capita"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)_per_capita" + ] + }, + "data" : [ + ["country.name","gdp.nominal.pc.wb"], + ["Monaco (Principality of)",234316], + ["Liechtenstein (Principality of)",157755], + ["Luxembourg (Grand Duchy of)",133590], + ["Bermuda",114090], + ["Ireland",100172], + ["Norway (Kingdom of)",89154], + ["Switzerland (Swiss Confederation)",91992], + ["Isle of Man",87158], + ["Cayman Islands",86569], + ["Qatar (State of)",66838], + ["Singapore (Republic of)",72794], + ["United States (of America)",70249], + ["Jersey (Bailiwick of)",75153], + ["Iceland (Republic of)",68728], + ["Faroe Islands",69010], + ["Australia (Commonwealth of)",60443], + ["Denmark (Kingdom of)",68008], + ["Canada",51988], + ["Sweden (Kingdom of)",61029], + ["Netherlands (Kingdom of the)",57768], + ["Israel (State of)",52171], + ["Greenland",54571], + ["Austria (Republic of)",53638], + ["Finland (Republic of)",53655], + ["Belgium (Kingdom of)",51247], + ["Hong Kong (Special Administrative Region of China)",49801], + ["British Virgin Islands",null], + ["Germany (Federal Republic of)",51204], + ["United Arab Emirates",44316], + ["San Marino (Republic of)",45320], + ["United Kingdom (of Great Britain & Northern Ireland)",46510], + ["New Zealand",48781], + ["Brunei (Nation of the Abode of Peace)",31449], + ["France (French Republic)",43659], + ["Andorra (Principality of)",42137], + ["United States Virgin Islands",39552], + ["Puerto Rico (Commonwealth of)",32641], + ["Kuwait (State of)",24300], + ["New Caledonia",37160], + ["Guam",35905], + ["Taiwan",null], + ["Japan",39313], + ["Italy (Italian Republic)",35658], + ["Macao (Special Administrative Region of China)",43874], + ["Korea (Republic of)",34998], + ["Malta (Republic of)",33487], + ["Bahamas (Commonwealth of the)",27478], + ["Aruba",29342], + ["Cyprus (Republic of)",31552], + ["Slovenia (Republic of)",29291], + ["Estonia (Republic of)",27944], + ["Spain (Kingdom of)",30104], + ["Bahrain (Kingdom of)",26563], + ["Czech Republic",26821], + ["Saudi Arabia (Kingdom of)",23186], + ["Portugal (Portuguese Republic)",24568], + ["Lithuania (Republic of)",23723], + ["Northern Mariana Islands (Commonwealth of the)",23707], + ["Oman (Sultanate of)",19510], + ["Iran (Islamic Republic of)",4091], + ["Saint Martin",21921], + ["Latvia (Republic of)",21148], + ["Turks and Caicos Islands",20909], + ["Greece (Hellenic Republic)",20193], + ["Trinidad and Tobago (Republic of)",16033], + ["Slovakia (Slovak Republic)",21392], + ["Seychelles (Republic of)",14653], + ["Uruguay (Oriental Republic of)",17313], + ["Barbados",17226], + ["Sint Maarten (Netherlands)",28988], + ["French Polynesia",19915], + ["Saint Kitts and Nevis (Federation of)",18083], + ["Poland (Republic of)",18000], + ["Hungary (Republic of)",18728], + ["Guyana (Co-operative Republic of)",9999], + ["Curaçao",17718], + ["Croatia (Republic of)",17685], + ["Anguilla",null], + ["Antigua and Barbuda",15781], + ["Panama (Republic of)",14618], + ["Cook Islands",null], + ["American Samoa",15743], + ["Romania",14858], + ["Chile (Republic of)",16265], + ["Maldives (Republic of)",10366], + ["Russian Federation",12195], + ["Argentina (Argentine Republic)",10636], + ["Montserrat",null], + ["Malaysia",11109], + ["Costa Rica (Republic of)",12472], + ["China (People's Republic of)",12556], + ["Palau (Republic of)",12084], + ["Bulgaria (Republic of)",12222], + ["Turkmenistan",7345], + ["Kazakhstan (Republic of)",10374], + ["Equatorial Guinea (Republic of)",7507], + ["Mexico (United Mexican States)",10046], + ["Saint Lucia",9414], + ["Dominican Republic",8477], + ["Grenada",9011], + ["Gabon (Gabonese Republic)",8635], + ["Nauru (Republic of)",10648], + ["Turkey (Republic of)",9661], + ["Montenegro",9466], + ["Cuba (Republic of)",9500], + ["Serbia (Republic of)",9230], + ["Mauritius (Republic of)",9106], + ["Brazil (Federative Republic of)",7507], + ["Belarus (Republic of)",7302], + ["Saint Vincent and the Grenadines",8666], + ["Dominica (Commonwealth of)",7653], + ["Thailand (Kingdom of)",7066], + ["Botswana (Republic of)",6805], + ["Peru (Republic of)",6622], + ["Azerbaijan (Republic of)",5388], + ["Bosnia and Herzegovina",7143], + ["North Macedonia (Republic of)",6695], + ["Georgia",5023], + ["South Africa (Republic of)",7055], + ["Iraq (Republic of)",4775], + ["Colombia (Republic of)",6104], + ["Ecuador (Republic of)",5965], + ["Albania (Republic of)",6493], + ["Belize",6228], + ["Libya (State of)",6357], + ["Armenia (Republic of)",4967], + ["Tuvalu",5632], + ["Jamaica",5184], + ["Paraguay (Republic of)",5892], + ["Moldova (Republic of)",5231], + ["Fiji (Republic of)",4647], + ["Kosovo (Republic of)",5270], + ["Tonga (Kingdom of)",4426], + ["El Salvador (Republic of)",4551], + ["Guatemala (Republic of)",5026], + ["Suriname (Republic of)",4869], + ["Ukraine",4836], + ["Marshall Islands (Republic of the)",6172], + ["Namibia (Republic of)",4866], + ["Indonesia (Republic of)",4333], + ["Jordan (Hashemite Kingdom of)",4103], + ["Mongolia",4566], + ["Egypt (Arab Republic of)",3699], + ["Vietnam (Socialist Republic of)",3757], + ["Algeria (People's Democratic Republic of)",3691], + ["Lebanon (Lebanese Republic)",4136], + ["Samoa (Independent State of)",3857], + ["Micronesia (Federated States of)",3571], + ["Eswatini (Kingdom of)",3978], + ["Morocco (Kingdom of)",3795], + ["Tunisia (Republic of)",3807], + ["Angola (Republic of)",1954], + ["Djibouti (Republic of)",3150], + ["Bolivia (Plurinational State of)",3345], + ["Cape Verde (Republic of)",3293], + ["Philippines (Republic of the)",3461], + ["Bhutan (Kingdom of)",3266], + ["Palestine (State of)",3664], + ["Papua New Guinea (Independent State of)",2673], + ["Sri Lanka (Democratic Socialist Republic of)",4014], + ["Venezuela (Bolivarian Republic of)",15976], + ["Vanuatu (Republic of)",2997], + ["Honduras (Republic of)",2772], + ["Congo (Republic of the)",2290], + ["Bangladesh (People's Republic of)",2458], + ["India (Republic of)",2257], + ["Zimbabwe (Republic of)",1774], + ["Côte d'Ivoire (Republic of)",2549], + ["Nicaragua (Republic of)",2046], + ["Ghana (Republic of)",2363], + ["Mauritania (Islamic Republic of)",2166], + ["Nigeria (Federal Republic of)",2066], + ["Kenya (Republic of)",2082], + ["Uzbekistan (Republic of)",1983], + ["Solomon Islands",2305], + ["São Tomé and Príncipe (Democratic Republic of)",2361], + ["Lao (People's Democratic Republic)",2536], + ["Timor-Leste (Democratic Republic of)",2741], + ["Cambodia (Kingdom of)",1625], + ["Kiribati (Republic of)",1607], + ["Haiti (Republic of)",1830], + ["Pakistan (Islamic Republic of)",1505], + ["Cameroon (Republic of)",1667], + ["Senegal (Republic of)",1637], + ["Kyrgyz Republic",1277], + ["Benin (Republic of)",1319], + ["Zambia (Republic of)",1137], + ["Guinea (Republic of)",1189], + ["Comoros (Union of the)",1578], + ["Nepal (Federal Democratic Republic of)",1208], + ["Tanzania (United Republic of)",1099], + ["Lesotho (Kingdom of)",1094], + ["Uganda (Republic of)",884], + ["Myanmar (Union of)",1210], + ["Ethiopia (Federal Democratic Republic of)",925], + ["Zanzibar",null], + ["Tajikistan (Republic of)",897], + ["Togo (Togolese Republic)",973], + ["Sudan (Republic of the)",752], + ["Rwanda (Republic of)",822], + ["Syrian Arab Republic",533], + ["Yemen (Republic of)",702], + ["Mali (Republic of)",874], + ["Guinea-Bissau (Republic of)",795], + ["Gambia (Republic of the)",772], + ["Burkina Faso",893], + ["Chad (Republic of)",686], + ["Liberia (Republic of)",676], + ["Congo (Democratic Republic of the)",577], + ["Eritrea (State of)",644], + ["Korea (Democratic People's Republic of)",null], + ["Niger (Republic of)",591], + ["Mozambique (Republic of)",492], + ["Somalia (Federal Republic of)",447], + ["Malawi (Republic of)",635], + ["Madagascar (Republic of)",501], + ["Central African Republic",461], + ["Sierra Leone (Republic of)",480], + ["Afghanistan (Islamic Republic of)",369], + ["South Sudan (Republic of)",1072], + ["Burundi (Republic of)",222] + ] +} diff --git a/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-imf.json b/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-imf.json new file mode 100644 index 0000000..3d9c204 --- /dev/null +++ b/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-imf.json @@ -0,0 +1,238 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Nominal", + "description" : "Gross Domestic Product (GDP) Nominal (USD Millions).", + "units" : "$ million", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp"], + "authors" : [ + "Internatioal Monetary Fund (IMF), World Bank (WB), and United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)" + ] + }, + "data" : [ + ["country.name","gdp.nominal.total.imf"], + ["United States (of America)",25035164], + ["China (People's Republic of)",18321197], + ["Japan",4300621], + ["Germany (Federal Republic of)",4031149], + ["India (Republic of)",3468566], + ["United Kingdom (of Great Britain & Northern Ireland)",3198470], + ["France (French Republic)",2778090], + ["Canada",2200352], + ["Russian Federation",2133092], + ["Italy (Italian Republic)",1996934], + ["Iran (Islamic Republic of)",1973738], + ["Brazil (Federative Republic of)",1894708], + ["Korea (Republic of)",1734207], + ["Australia (Commonwealth of)",1724787], + ["Mexico (United Mexican States)",1424533], + ["Spain (Kingdom of)",1389927], + ["Indonesia (Republic of)",1289429], + ["Saudi Arabia (Kingdom of)",1010588], + ["Netherlands (Kingdom of the)",990583], + ["Turkey (Republic of)",853487], + ["Taiwan",828659], + ["Switzerland (Swiss Confederation)",807418], + ["Poland (Republic of)",716305], + ["Argentina (Argentine Republic)",630698], + ["Sweden (Kingdom of)",603922], + ["Belgium (Kingdom of)",589491], + ["Thailand (Kingdom of)",534758], + ["Israel (State of)",527179], + ["Ireland",519776], + ["Norway (Kingdom of)",504703], + ["Nigeria (Federal Republic of)",504203], + ["United Arab Emirates",503913], + ["Egypt (Arab Republic of)",469094], + ["Austria (Republic of)",468046], + ["Bangladesh (People's Republic of)",460751], + ["Malaysia",434059], + ["Singapore (Republic of)",423632], + ["Vietnam (Socialist Republic of)",413808], + ["South Africa (Republic of)",411480], + ["Philippines (Republic of the)",401662], + ["Denmark (Kingdom of)",386724], + ["Pakistan (Islamic Republic of)",376493], + ["Hong Kong (Special Administrative Region of China)",368373], + ["Colombia (Republic of)",342919], + ["Chile (Republic of)",310866], + ["Romania",299885], + ["Czech Republic",296238], + ["Iraq (Republic of)",282876], + ["Finland (Republic of)",281411], + ["Portugal (Portuguese Republic)",255854], + ["New Zealand",242700], + ["Peru (Republic of)",239333], + ["Kazakhstan (Republic of)",224338], + ["Greece (Hellenic Republic)",222008], + ["Qatar (State of)",221369], + ["Ukraine",199719], + ["Algeria (People's Democratic Republic of)",187155], + ["Hungary (Republic of)",184651], + ["Kuwait (State of)",183568], + ["Morocco (Kingdom of)",142874], + ["Angola (Republic of)",124794], + ["Puerto Rico (Commonwealth of)",118677], + ["Ecuador (Republic of)",115469], + ["Kenya (Republic of)",114858], + ["Slovakia (Slovak Republic)",112418], + ["Dominican Republic",112417], + ["Ethiopia (Federal Democratic Republic of)",111181], + ["Oman (Sultanate of)",108969], + ["Cuba (Republic of)",null], + ["Guatemala (Republic of)",91318], + ["Bulgaria (Republic of)",85008], + ["Luxembourg (Grand Duchy of)",82154], + ["Venezuela (Bolivarian Republic of)",82145], + ["Belarus (Republic of)",79704], + ["Uzbekistan (Republic of)",79117], + ["Tanzania (United Republic of)",76582], + ["Ghana (Republic of)",75996], + ["Turkmenistan",74439], + ["Sri Lanka (Democratic Socialist Republic of)",73739], + ["Uruguay (Oriental Republic of)",71161], + ["Panama (Republic of)",71085], + ["Azerbaijan (Republic of)",70066], + ["Croatia (Republic of)",69380], + ["Côte d'Ivoire (Republic of)",68630], + ["Costa Rica (Republic of)",68489], + ["Lithuania (Republic of)",68031], + ["Congo (Democratic Republic of the)",63909], + ["Serbia (Republic of)",62721], + ["Slovenia (Republic of)",62191], + ["Myanmar (Union of)",59530], + ["Uganda (Republic of)",48352], + ["Jordan (Hashemite Kingdom of)",48066], + ["Tunisia (Republic of)",46282], + ["Cameroon (Republic of)",44212], + ["Bahrain (Kingdom of)",43544], + ["Bolivia (Plurinational State of)",43431], + ["Sudan (Republic of the)",42762], + ["Paraguay (Republic of)",41855], + ["Libya (State of)",40836], + ["Latvia (Republic of)",40588], + ["Estonia (Republic of)",39054], + ["Nepal (Federal Democratic Republic of)",39028], + ["Zimbabwe (Republic of)",38280], + ["El Salvador (Republic of)",31989], + ["Papua New Guinea (Independent State of)",31362], + ["Honduras (Republic of)",30568], + ["Trinidad and Tobago (Republic of)",29337], + ["Cambodia (Kingdom of)",28330], + ["Iceland (Republic of)",27702], + ["Yemen (Republic of)",27594], + ["Senegal (Republic of)",27542], + ["Zambia (Republic of)",27025], + ["Cyprus (Republic of)",26705], + ["Georgia",25172], + ["Bosnia and Herzegovina",23681], + ["Macao (Special Administrative Region of China)",23420], + ["Gabon (Gabonese Republic)",22221], + ["Haiti (Republic of)",20182], + ["Afghanistan (Islamic Republic of)",20136], + ["Guinea (Republic of)",19745], + ["Palestine (State of)",19698], + ["Brunei (Nation of the Abode of Peace)",18464], + ["Mali (Republic of)",18434], + ["Burkina Faso",18268], + ["Albania (Republic of)",18256], + ["Lebanon (Lebanese Republic)",24494], + ["Botswana (Republic of)",18005], + ["Mozambique (Republic of)",17873], + ["Armenia (Republic of)",17693], + ["Benin (Republic of)",17547], + ["Malta (Republic of)",17156], + ["Equatorial Guinea (Republic of)",16877], + ["Lao (People's Democratic Republic)",16250], + ["Jamaica",16104], + ["Korea (Democratic People's Republic of)",null], + ["Mongolia",15720], + ["Nicaragua (Republic of)",15695], + ["Syrian Arab Republic",null], + ["Madagascar (Republic of)",15106], + ["Guyana (Co-operative Republic of)",14839], + ["Niger (Republic of)",14639], + ["Congo (Republic of the)",14486], + ["North Macedonia (Republic of)",14101], + ["Moldova (Republic of)",14048], + ["Chad (Republic of)",12945], + ["Bahamas (Commonwealth of the)",12693], + ["Namibia (Republic of)",12488], + ["Rwanda (Republic of)",12098], + ["Malawi (Republic of)",11554], + ["Mauritius (Republic of)",11497], + ["Mauritania (Islamic Republic of)",10091], + ["Tajikistan (Republic of)",9983], + ["Kyrgyz Republic",9750], + ["New Caledonia",null], + ["Kosovo (Republic of)",9242], + ["Somalia (Federal Republic of)",8416], + ["Togo (Togolese Republic)",8359], + ["Bermuda",null], + ["Liechtenstein (Principality of)",null], + ["Monaco (Principality of)",null], + ["Cayman Islands",null], + ["Montenegro",6127], + ["Maldives (Republic of)",5900], + ["Guam",null], + ["Barbados",5788], + ["French Polynesia",null], + ["Fiji (Republic of)",4859], + ["South Sudan (Republic of)",4784], + ["Eswatini (Kingdom of)",4669], + ["Sierra Leone (Republic of)",4101], + ["Liberia (Republic of)",3900], + ["Djibouti (Republic of)",3725], + ["Burundi (Republic of)",3686], + ["Aruba",3499], + ["Andorra (Principality of)",3302], + ["Greenland",null], + ["Suriname (Republic of)",3011], + ["Bhutan (Kingdom of)",2707], + ["Belize",2676], + ["Lesotho (Kingdom of)",2507], + ["Curaçao",null], + ["Central African Republic",2488], + ["Timor-Leste (Democratic Republic of)",2455], + ["Eritrea (State of)",2369], + ["Gambia (Republic of the)",2172], + ["Cape Verde (Republic of)",2053], + ["Seychelles (Republic of)",2005], + ["Saint Lucia",1972], + ["Zanzibar",null], + ["Antigua and Barbuda",1692], + ["Guinea-Bissau (Republic of)",1624], + ["San Marino (Republic of)",1623], + ["Solomon Islands",1601], + ["British Virgin Islands",null], + ["Comoros (Union of the)",1242], + ["Grenada",1192], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Saint Kitts and Nevis (Federation of)",1115], + ["Vanuatu (Republic of)",984], + ["Saint Vincent and the Grenadines",948], + ["Turks and Caicos Islands",null], + ["Sint Maarten (Netherlands)",null], + ["Samoa (Independent State of)",830], + ["American Samoa",null], + ["Dominica (Commonwealth of)",599], + ["São Tomé and Príncipe (Democratic Republic of)",506], + ["Tonga (Kingdom of)",501], + ["Micronesia (Federated States of)",428], + ["Cook Islands",null], + ["Marshall Islands (Republic of the)",271], + ["Anguilla",null], + ["Palau (Republic of)",226], + ["Kiribati (Republic of)",207], + ["Nauru (Republic of)",134], + ["Montserrat",null], + ["Tuvalu",64] + ] +} diff --git a/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-un.json b/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-un.json new file mode 100644 index 0000000..23dbc66 --- /dev/null +++ b/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-un.json @@ -0,0 +1,238 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Nominal", + "description" : "Gross Domestic Product (GDP) Nominal (USD Millions).", + "units" : "$ million", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)" + ] + }, + "data" : [ + ["country.name","gdp.nominal.un"], + ["United States (of America)",20893746], + ["China (People's Republic of)",14722801], + ["Japan",5057759], + ["Germany (Federal Republic of)",3846414], + ["India (Republic of)",2664749], + ["United Kingdom (of Great Britain & Northern Ireland)",2764198], + ["France (French Republic)",2630318], + ["Canada",1644037], + ["Russian Federation",1483498], + ["Italy (Italian Republic)",1888709], + ["Iran (Islamic Republic of)",939316], + ["Brazil (Federative Republic of)",1444733], + ["Korea (Republic of)",1637896], + ["Australia (Commonwealth of)",1423473], + ["Mexico (United Mexican States)",1073439], + ["Spain (Kingdom of)",1281485], + ["Indonesia (Republic of)",1058424], + ["Saudi Arabia (Kingdom of)",700118], + ["Netherlands (Kingdom of the)",913865], + ["Turkey (Republic of)",720098], + ["Taiwan",669324], + ["Switzerland (Swiss Confederation)",752248], + ["Poland (Republic of)",596618], + ["Argentina (Argentine Republic)",383067], + ["Sweden (Kingdom of)",541064], + ["Belgium (Kingdom of)",521861], + ["Thailand (Kingdom of)",501795], + ["Israel (State of)",407101], + ["Ireland",425889], + ["Norway (Kingdom of)",362522], + ["Nigeria (Federal Republic of)",429899], + ["United Arab Emirates",358869], + ["Egypt (Arab Republic of)",369309], + ["Austria (Republic of)",433258], + ["Bangladesh (People's Republic of)",329484], + ["Malaysia",336664], + ["Singapore (Republic of)",339988], + ["Vietnam (Socialist Republic of)",271158], + ["South Africa (Republic of)",302141], + ["Philippines (Republic of the)",361489], + ["Denmark (Kingdom of)",356085], + ["Pakistan (Islamic Republic of)",257829], + ["Hong Kong (Special Administrative Region of China)",349445], + ["Colombia (Republic of)",271347], + ["Chile (Republic of)",252940], + ["Romania",248716], + ["Czech Republic",245349], + ["Iraq (Republic of)",166757], + ["Finland (Republic of)",269751], + ["Portugal (Portuguese Republic)",228539], + ["New Zealand",212044], + ["Peru (Republic of)",203196], + ["Kazakhstan (Republic of)",171082], + ["Greece (Hellenic Republic)",188835], + ["Qatar (State of)",146401], + ["Ukraine",155582], + ["Algeria (People's Democratic Republic of)",147689], + ["Hungary (Republic of)",155808], + ["Kuwait (State of)",105949], + ["Morocco (Kingdom of)",114724], + ["Angola (Republic of)",62307], + ["Puerto Rico (Commonwealth of)",103138], + ["Ecuador (Republic of)",98808], + ["Kenya (Republic of)",101014], + ["Slovakia (Slovak Republic)",105173], + ["Dominican Republic",78845], + ["Ethiopia (Federal Democratic Republic of)",96611], + ["Oman (Sultanate of)",63368], + ["Cuba (Republic of)",107352], + ["Guatemala (Republic of)",77605], + ["Bulgaria (Republic of)",69888], + ["Luxembourg (Grand Duchy of)",73353], + ["Venezuela (Bolivarian Republic of)",106359], + ["Belarus (Republic of)",60259], + ["Uzbekistan (Republic of)",57707], + ["Tanzania (United Republic of)",64740], + ["Ghana (Republic of)",68532], + ["Turkmenistan",42845], + ["Sri Lanka (Democratic Socialist Republic of)",80677], + ["Uruguay (Oriental Republic of)",53629], + ["Panama (Republic of)",52938], + ["Azerbaijan (Republic of)",42607], + ["Croatia (Republic of)",57204], + ["Côte d'Ivoire (Republic of)",61143], + ["Costa Rica (Republic of)",61521], + ["Lithuania (Republic of)",56547], + ["Congo (Democratic Republic of the)",45308], + ["Serbia (Republic of)",53335], + ["Slovenia (Republic of)",53590], + ["Myanmar (Union of)",70284], + ["Uganda (Republic of)",38702], + ["Jordan (Hashemite Kingdom of)",43697], + ["Tunisia (Republic of)",39218], + ["Cameroon (Republic of)",39881], + ["Bahrain (Kingdom of)",33904], + ["Bolivia (Plurinational State of)",36573], + ["Sudan (Republic of the)",62057], + ["Paraguay (Republic of)",35304], + ["Libya (State of)",29153], + ["Latvia (Republic of)",33707], + ["Estonia (Republic of)",30650], + ["Nepal (Federal Democratic Republic of)",33079], + ["Zimbabwe (Republic of)",21787], + ["El Salvador (Republic of)",24639], + ["Papua New Guinea (Independent State of)",23619], + ["Honduras (Republic of)",23828], + ["Trinidad and Tobago (Republic of)",21393], + ["Cambodia (Kingdom of)",25291], + ["Iceland (Republic of)",21718], + ["Yemen (Republic of)",27958], + ["Senegal (Republic of)",24412], + ["Zambia (Republic of)",18111], + ["Cyprus (Republic of)",24612], + ["Georgia",15892], + ["Bosnia and Herzegovina",19801], + ["Macao (Special Administrative Region of China)",24333], + ["Gabon (Gabonese Republic)",15111], + ["Haiti (Republic of)",15505], + ["Afghanistan (Islamic Republic of)",19793], + ["Guinea (Republic of)",15490], + ["Palestine (State of)",15561], + ["Brunei (Nation of the Abode of Peace)",12003], + ["Mali (Republic of)",17332], + ["Burkina Faso",17369], + ["Albania (Republic of)",14910], + ["Lebanon (Lebanese Republic)",63546], + ["Botswana (Republic of)",15782], + ["Mozambique (Republic of)",14029], + ["Armenia (Republic of)",12641], + ["Benin (Republic of)",15205], + ["Malta (Republic of)",14911], + ["Equatorial Guinea (Republic of)",10022], + ["Lao (People's Democratic Republic)",19082], + ["Jamaica",13812], + ["Korea (Democratic People's Republic of)",15847], + ["Mongolia",13137], + ["Nicaragua (Republic of)",12621], + ["Syrian Arab Republic",15572], + ["Madagascar (Republic of)",13008], + ["Guyana (Co-operative Republic of)",5471], + ["Niger (Republic of)",13741], + ["Congo (Republic of the)",10100], + ["North Macedonia (Republic of)",12264], + ["Moldova (Republic of)",11914], + ["Chad (Republic of)",11154], + ["Bahamas (Commonwealth of the)",9908], + ["Namibia (Republic of)",10710], + ["Rwanda (Republic of)",10332], + ["Malawi (Republic of)",11762], + ["Mauritius (Republic of)",10921], + ["Mauritania (Islamic Republic of)",7916], + ["Tajikistan (Republic of)",7997], + ["Kyrgyz Republic",7736], + ["New Caledonia",9709], + ["Kosovo (Republic of)",7734], + ["Somalia (Federal Republic of)",1873], + ["Togo (Togolese Republic)",7146], + ["Bermuda",7719], + ["Liechtenstein (Principality of)",6872], + ["Monaco (Principality of)",6816], + ["Cayman Islands",6256], + ["Montenegro",4789], + ["Maldives (Republic of)",3743], + ["Guam",null], + ["Barbados",4440], + ["French Polynesia",5817], + ["Fiji (Republic of)",4494], + ["South Sudan (Republic of)",15903], + ["Eswatini (Kingdom of)",3835], + ["Sierra Leone (Republic of)",3787], + ["Liberia (Republic of)",2481], + ["Djibouti (Republic of)",3423], + ["Burundi (Republic of)",3399], + ["Aruba",2497], + ["Andorra (Principality of)",2864], + ["Greenland",3130], + ["Suriname (Republic of)",4120], + ["Bhutan (Kingdom of)",2483], + ["Belize",1586], + ["Lesotho (Kingdom of)",2273], + ["Curaçao",2596], + ["Central African Republic",2323], + ["Timor-Leste (Democratic Republic of)",1902], + ["Eritrea (State of)",2084], + ["Gambia (Republic of the)",1830], + ["Cape Verde (Republic of)",1704], + ["Seychelles (Republic of)",1059], + ["Saint Lucia",1617], + ["Zanzibar",1724], + ["Antigua and Barbuda",1370], + ["Guinea-Bissau (Republic of)",1315], + ["San Marino (Republic of)",1555], + ["Solomon Islands",1546], + ["British Virgin Islands",1492], + ["Comoros (Union of the)",1235], + ["Grenada",1043], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Saint Kitts and Nevis (Federation of)",927], + ["Vanuatu (Republic of)",855], + ["Saint Vincent and the Grenadines",810], + ["Turks and Caicos Islands",925], + ["Sint Maarten (Netherlands)",857], + ["Samoa (Independent State of)",772], + ["American Samoa",null], + ["Dominica (Commonwealth of)",507], + ["São Tomé and Príncipe (Democratic Republic of)",476], + ["Tonga (Kingdom of)",491], + ["Micronesia (Federated States of)",403], + ["Cook Islands",283], + ["Marshall Islands (Republic of the)",244], + ["Anguilla",258], + ["Palau (Republic of)",264], + ["Kiribati (Republic of)",181], + ["Nauru (Republic of)",135], + ["Montserrat",68], + ["Tuvalu",55] + ] +} diff --git a/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-wb.json b/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-wb.json new file mode 100644 index 0000000..d709a99 --- /dev/null +++ b/data/global/economics/gdp/gdp-nominal/gdp-nominal-total-wb.json @@ -0,0 +1,238 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Nominal", + "description" : "Gross Domestic Product (GDP) Nominal (USD Millions).", + "units" : "$ millions", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp"], + "authors" : [ + "Internatioal Monetary Fund (IMF), World Bank (WB), and United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(nominal)" + ] + }, + "data" : [ + ["country.name","gdp.nominal.wb"], + ["United States (of America)",22996100], + ["China (People's Republic of)",17734063], + ["Japan",4937422], + ["Germany (Federal Republic of)",4223116], + ["India (Republic of)",3173398], + ["United Kingdom (of Great Britain & Northern Ireland)",3186860], + ["France (French Republic)",2937473], + ["Canada",1990762], + ["Russian Federation",1775800], + ["Italy (Italian Republic)",2099880], + ["Iran (Islamic Republic of)",359713], + ["Brazil (Federative Republic of)",1608981], + ["Korea (Republic of)",1798534], + ["Australia (Commonwealth of)",1542660], + ["Mexico (United Mexican States)",1293038], + ["Spain (Kingdom of)",1425277], + ["Indonesia (Republic of)",1186093], + ["Saudi Arabia (Kingdom of)",833541], + ["Netherlands (Kingdom of the)",1018007], + ["Turkey (Republic of)",815272], + ["Taiwan",null], + ["Switzerland (Swiss Confederation)",812867], + ["Poland (Republic of)",674048], + ["Argentina (Argentine Republic)",491493], + ["Sweden (Kingdom of)",627438], + ["Belgium (Kingdom of)",599879], + ["Thailand (Kingdom of)",505982], + ["Israel (State of)",481591], + ["Ireland",498560], + ["Norway (Kingdom of)",482437], + ["Nigeria (Federal Republic of)",440777], + ["United Arab Emirates",358869], + ["Egypt (Arab Republic of)",404143], + ["Austria (Republic of)",477083], + ["Bangladesh (People's Republic of)",416265], + ["Malaysia",372701], + ["Singapore (Republic of)",396987], + ["Vietnam (Socialist Republic of)",362638], + ["South Africa (Republic of)",419946], + ["Philippines (Republic of the)",394086], + ["Denmark (Kingdom of)",397104], + ["Pakistan (Islamic Republic of)",346343], + ["Hong Kong (Special Administrative Region of China)",368139], + ["Colombia (Republic of)",314323], + ["Chile (Republic of)",317059], + ["Romania",284088], + ["Czech Republic",282341], + ["Iraq (Republic of)",207889], + ["Finland (Republic of)",299155], + ["Portugal (Portuguese Republic)",249887], + ["New Zealand",249992], + ["Peru (Republic of)",223250], + ["Kazakhstan (Republic of)",190814], + ["Greece (Hellenic Republic)",216241], + ["Qatar (State of)",179571], + ["Ukraine",200086], + ["Algeria (People's Democratic Republic of)",167983], + ["Hungary (Republic of)",182281], + ["Kuwait (State of)",105960], + ["Morocco (Kingdom of)",132725], + ["Angola (Republic of)",72547], + ["Puerto Rico (Commonwealth of)",106526], + ["Ecuador (Republic of)",106166], + ["Kenya (Republic of)",110347], + ["Slovakia (Slovak Republic)",114871], + ["Dominican Republic",94244], + ["Ethiopia (Federal Democratic Republic of)",111271], + ["Oman (Sultanate of)",85869], + ["Cuba (Republic of)",107352], + ["Guatemala (Republic of)",85986], + ["Bulgaria (Republic of)",80271], + ["Luxembourg (Grand Duchy of)",86711], + ["Venezuela (Bolivarian Republic of)",482359], + ["Belarus (Republic of)",68219], + ["Uzbekistan (Republic of)",69239], + ["Tanzania (United Republic of)",67775], + ["Ghana (Republic of)",77594], + ["Turkmenistan",45231], + ["Sri Lanka (Democratic Socialist Republic of)",84519], + ["Uruguay (Oriental Republic of)",59320], + ["Panama (Republic of)",63605], + ["Azerbaijan (Republic of)",54622], + ["Croatia (Republic of)",67838], + ["Côte d'Ivoire (Republic of)",69765], + ["Costa Rica (Republic of)",64282], + ["Lithuania (Republic of)",65504], + ["Congo (Democratic Republic of the)",53959], + ["Serbia (Republic of)",63068], + ["Slovenia (Republic of)",61526], + ["Myanmar (Union of)",65068], + ["Uganda (Republic of)",40435], + ["Jordan (Hashemite Kingdom of)",45244], + ["Tunisia (Republic of)",46840], + ["Cameroon (Republic of)",45239], + ["Bahrain (Kingdom of)",38869], + ["Bolivia (Plurinational State of)",40408], + ["Sudan (Republic of the)",34326], + ["Paraguay (Republic of)",38987], + ["Libya (State of)",41880], + ["Latvia (Republic of)",38873], + ["Estonia (Republic of)",36263], + ["Nepal (Federal Democratic Republic of)",36289], + ["Zimbabwe (Republic of)",26218], + ["El Salvador (Republic of)",28737], + ["Papua New Guinea (Independent State of)",26594], + ["Honduras (Republic of)",28489], + ["Trinidad and Tobago (Republic of)",21392], + ["Cambodia (Kingdom of)",26961], + ["Iceland (Republic of)",25459], + ["Yemen (Republic of)",21062], + ["Senegal (Republic of)",27625], + ["Zambia (Republic of)",21203], + ["Cyprus (Republic of)",27719], + ["Georgia",18700], + ["Bosnia and Herzegovina",22572], + ["Macao (Special Administrative Region of China)",29905], + ["Gabon (Gabonese Republic)",18269], + ["Haiti (Republic of)",20944], + ["Afghanistan (Islamic Republic of)",14787], + ["Guinea (Republic of)",15851], + ["Palestine (State of)",18037], + ["Brunei (Nation of the Abode of Peace)",14007], + ["Mali (Republic of)",19144], + ["Burkina Faso",19738], + ["Albania (Republic of)",18260], + ["Lebanon (Lebanese Republic)",18077], + ["Botswana (Republic of)",17614], + ["Mozambique (Republic of)",16096], + ["Armenia (Republic of)",13861], + ["Benin (Republic of)",17786], + ["Malta (Republic of)",17190], + ["Equatorial Guinea (Republic of)",12269], + ["Lao (People's Democratic Republic)",18827], + ["Jamaica",13638], + ["Korea (Democratic People's Republic of)",null], + ["Mongolia",15098], + ["Nicaragua (Republic of)",14013], + ["Syrian Arab Republic",11080], + ["Madagascar (Republic of)",14637], + ["Guyana (Co-operative Republic of)",7409], + ["Niger (Republic of)",14951], + ["Congo (Republic of the)",12524], + ["North Macedonia (Republic of)",13879], + ["Moldova (Republic of)",13679], + ["Chad (Republic of)",11780], + ["Bahamas (Commonwealth of the)",11209], + ["Namibia (Republic of)",12236], + ["Rwanda (Republic of)",11070], + ["Malawi (Republic of)",12627], + ["Mauritius (Republic of)",11157], + ["Mauritania (Islamic Republic of)",8228], + ["Tajikistan (Republic of)",8746], + ["Kyrgyz Republic",8543], + ["New Caledonia",10071], + ["Kosovo (Republic of)",9007], + ["Somalia (Federal Republic of)",7293], + ["Togo (Togolese Republic)",8413], + ["Bermuda",7081], + ["Liechtenstein (Principality of)",6114], + ["Monaco (Principality of)",8596], + ["Cayman Islands",5898], + ["Montenegro",5809], + ["Maldives (Republic of)",4890], + ["Guam",6123], + ["Barbados",4901], + ["French Polynesia",6055], + ["Fiji (Republic of)",4592], + ["South Sudan (Republic of)",11998], + ["Eswatini (Kingdom of)",4941], + ["Sierra Leone (Republic of)",4200], + ["Liberia (Republic of)",3487], + ["Djibouti (Republic of)",3371], + ["Burundi (Republic of)",2902], + ["Aruba",3126], + ["Andorra (Principality of)",3330], + ["Greenland",3076], + ["Suriname (Republic of)",2862], + ["Bhutan (Kingdom of)",2540], + ["Belize",1790], + ["Lesotho (Kingdom of)",2519], + ["Curaçao",2700], + ["Central African Republic",2517], + ["Timor-Leste (Democratic Republic of)",1959], + ["Eritrea (State of)",2065], + ["Gambia (Republic of the)",2078], + ["Cape Verde (Republic of)",1936], + ["Seychelles (Republic of)",1320], + ["Saint Lucia",1765], + ["Zanzibar",null], + ["Antigua and Barbuda",1471], + ["Guinea-Bissau (Republic of)",1639], + ["San Marino (Republic of)",1545], + ["Solomon Islands",1645], + ["British Virgin Islands",null], + ["Comoros (Union of the)",1328], + ["Grenada",1122], + ["Northern Mariana Islands (Commonwealth of the)",1182], + ["Saint Kitts and Nevis (Federation of)",976], + ["Vanuatu (Republic of)",984], + ["Saint Vincent and the Grenadines",890], + ["Turks and Caicos Islands",943], + ["Sint Maarten (Netherlands)",1186], + ["Samoa (Independent State of)",788], + ["American Samoa",709], + ["Dominica (Commonwealth of)",546], + ["São Tomé and Príncipe (Democratic Republic of)",547], + ["Tonga (Kingdom of)",469], + ["Micronesia (Federated States of)",404], + ["Cook Islands",null], + ["Marshall Islands (Republic of the)",249], + ["Anguilla",null], + ["Palau (Republic of)",218], + ["Kiribati (Republic of)",207], + ["Nauru (Republic of)",133], + ["Montserrat",null], + ["Tuvalu",63] + ] +} diff --git a/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-cia.json b/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-cia.json new file mode 100644 index 0000000..233aaa8 --- /dev/null +++ b/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-cia.json @@ -0,0 +1,250 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) Per-Capita", + "description" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) Per Capita.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp","per-capita"], + "authors" : [ + "Central Intelligence Agaency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(PPP)_per_capita" + ] + }, + "data" : [ + ["country.name","gdp.ppp.pc.cia"], + ["Luxembourg (Grand Duchy of)",110300], + ["Liechtenstein (Principality of)",139100], + ["Singapore (Republic of)",93400], + ["Ireland",89700], + ["Monaco (Principality of)",115700], + ["Qatar (State of)",85300], + ["Bermuda",81800], + ["Isle of Man",84600], + ["Switzerland (Swiss Confederation)",68400], + ["Norway (Kingdom of)",63600], + ["United Arab Emirates",67100], + ["United States (of America)",60200], + ["Brunei (Nation of the Abode of Peace)",62200], + ["Cayman Islands",73600], + ["San Marino (Republic of)",60800], + ["Falkland Islands (Malvinas)",70800], + ["Hong Kong (Special Administrative Region of China)",56200], + ["Denmark (Kingdom of)",55900], + ["Netherlands (Kingdom of the)",54200], + ["Taiwan",24502], + ["Austria (Republic of)",51900], + ["Iceland (Republic of)",52300], + ["Andorra (Principality of)",49900], + ["Sweden (Kingdom of)",50700], + ["Germany (Federal Republic of)",50900], + ["Australia (Commonwealth of)",48700], + ["Belgium (Kingdom of)",48200], + ["Gibraltar",61700], + ["Finland (Republic of)",47300], + ["Macao (Special Administrative Region of China)",54800], + ["Bahrain (Kingdom of)",40900], + ["Canada",45900], + ["Jersey (Bailiwick of)",56600], + ["Malta (Republic of)",39200], + ["France (French Republic)",42000], + ["United Kingdom (of Great Britain & Northern Ireland)",41600], + ["Saudi Arabia (Kingdom of)",44300], + ["Korea (Republic of)",42300], + ["Guernsey (Bailiwick of)",52500], + ["Israel (State of)",38300], + ["Kuwait (State of)",49900], + ["Italy (Italian Republic)",39000], + ["New Zealand",42400], + ["Slovenia (Republic of)",36500], + ["Cyprus (Republic of)",37700], + ["Czech Republic",38300], + ["Japan",41400], + ["Spain (Kingdom of)",36200], + ["Aruba",37500], + ["Saint Pierre and Miquelon",46200], + ["Lithuania (Republic of)",36700], + ["Estonia (Republic of)",35600], + ["Puerto Rico (Commonwealth of)",33400], + ["Guyana (Co-operative Republic of)",18700], + ["Poland (Republic of)",32200], + ["Hungary (Republic of)",31000], + ["Portugal (Portuguese Republic)",32200], + ["Greenland",41800], + ["Oman (Sultanate of)",27300], + ["Faroe Islands",40000], + ["Bahamas (Commonwealth of the)",30800], + ["Turkey (Republic of)",28400], + ["Slovakia (Slovak Republic)",30300], + ["Latvia (Republic of)",29900], + ["Romania",28800], + ["Seychelles (Republic of)",24400], + ["Croatia (Republic of)",26500], + ["United States Virgin Islands",37000], + ["Greece (Hellenic Republic)",27300], + ["Panama (Republic of)",25400], + ["Sint Maarten (Netherlands)",35300], + ["Guam",35600], + ["British Virgin Islands",34200], + ["Montserrat",34000], + ["Malaysia",26400], + ["Russian Federation",26500], + ["New Caledonia",31100], + ["Maldives (Republic of)",13000], + ["Kazakhstan (Republic of)",25300], + ["Trinidad and Tobago (Republic of)",23700], + ["Bulgaria (Republic of)",22400], + ["Chile (Republic of)",23300], + ["Saint Kitts and Nevis (Federation of)",23300], + ["Uruguay (Oriental Republic of)",21600], + ["Argentina (Argentine Republic)",19700], + ["Montenegro",18300], + ["Mauritius (Republic of)",19500], + ["Costa Rica (Republic of)",19700], + ["Northern Mariana Islands (Commonwealth of the)",24500], + ["Dominican Republic",17000], + ["Serbia (Republic of)",18200], + ["Curaçao",24500], + ["Mexico (United Mexican States)",17900], + ["Antigua and Barbuda",18000], + ["Belarus (Republic of)",19100], + ["China (People's Republic of)",16400], + ["Thailand (Kingdom of)",17300], + ["Turks and Caicos Islands",21100], + ["Georgia",14100], + ["North Macedonia (Republic of)",15800], + ["Equatorial Guinea (Republic of)",17000], + ["Saint Martin",19300], + ["Botswana (Republic of)",16000], + ["Libya (State of)",10300], + ["Turkmenistan",15500], + ["Colombia (Republic of)",13400], + ["Iran (Islamic Republic of)",12400], + ["Grenada",15100], + ["Gabon (Gabonese Republic)",14400], + ["Bosnia and Herzegovina",14300], + ["Albania (Republic of)",13300], + ["Brazil (Federative Republic of)",14100], + ["Azerbaijan (Republic of)",13700], + ["Suriname (Republic of)",16100], + ["Barbados",12900], + ["French Polynesia",17000], + ["Armenia (Republic of)",12600], + ["Cook Islands",16700], + ["Moldova (Republic of)",12300], + ["Saint Lucia",12300], + ["Egypt (Arab Republic of)",12000], + ["Saint Vincent and the Grenadines",12100], + ["South Africa (Republic of)",11500], + ["Peru (Republic of)",11300], + ["Indonesia (Republic of)",11400], + ["Paraguay (Republic of)",12300], + ["Kosovo (Republic of)",10800], + ["Ukraine",12400], + ["Sri Lanka (Democratic Socialist Republic of)",12500], + ["Fiji (Republic of)",11000], + ["Mongolia",11500], + ["Algeria (People's Democratic Republic of)",10700], + ["Palau (Republic of)",17600], + ["Bhutan (Kingdom of)",10900], + ["Vietnam (Socialist Republic of)",8200], + ["Dominica (Commonwealth of)",9900], + ["Ecuador (Republic of)",10300], + ["Tunisia (Republic of)",9700], + ["Iraq (Republic of)",9300], + ["Cuba (Republic of)",12300], + ["Anguilla",12200], + ["Jordan (Hashemite Kingdom of)",9800], + ["Jamaica",8700], + ["Lebanon (Lebanese Republic)",11600], + ["American Samoa",11200], + ["Eswatini (Kingdom of)",8400], + ["Nauru (Republic of)",13500], + ["Namibia (Republic of)",8900], + ["El Salvador (Republic of)",8100], + ["Philippines (Republic of the)",8000], + ["Bolivia (Plurinational State of)",7900], + ["Guatemala (Republic of)",8400], + ["Morocco (Kingdom of)",6900], + ["Belize",6100], + ["Uzbekistan (Republic of)",7000], + ["Lao (People's Democratic Republic)",7800], + ["Cape Verde (Republic of)",6000], + ["India (Republic of)",6100], + ["Bangladesh (People's Republic of)",4800], + ["Saint Helena",7800], + ["Angola (Republic of)",6200], + ["Nicaragua (Republic of)",5300], + ["Venezuela (Bolivarian Republic of)",7704], + ["Mauritania (Islamic Republic of)",5000], + ["Ghana (Republic of)",5300], + ["Honduras (Republic of)",5100], + ["Tonga (Kingdom of)",6400], + ["Pakistan (Islamic Republic of)",4600], + ["Djibouti (Republic of)",5500], + ["Côte d'Ivoire (Republic of)",5200], + ["Palestine (State of)",5400], + ["Kenya (Republic of)",4200], + ["Tokelau",6004], + ["Nigeria (Federal Republic of)",4900], + ["Samoa (Independent State of)",6300], + ["Tuvalu",4400], + ["Niue",5800], + ["Kyrgyz Republic",4700], + ["Cambodia (Kingdom of)",4200], + ["Myanmar (Union of)",4500], + ["Tajikistan (Republic of)",3700], + ["São Tomé and Príncipe (Democratic Republic of)",4100], + ["Congo (Republic of the)",3400], + ["Nepal (Federal Democratic Republic of)",3800], + ["Sudan (Republic of the)",4000], + ["Cameroon (Republic of)",3600], + ["Marshall Islands (Republic of the)",4000], + ["Papua New Guinea (Independent State of)",4100], + ["Benin (Republic of)",3300], + ["Senegal (Republic of)",3300], + ["Timor-Leste (Democratic Republic of)",3200], + ["Zambia (Republic of)",3300], + ["Wallis and Futuna",3800], + ["Micronesia (Federated States of)",3500], + ["Ethiopia (Federal Democratic Republic of)",2300], + ["Tanzania (United Republic of)",2600], + ["Comoros (Union of the)",3100], + ["Haiti (Republic of)",2800], + ["Lesotho (Kingdom of)",2300], + ["Uganda (Republic of)",2200], + ["Guinea (Republic of)",2700], + ["Syrian Arab Republic",2900], + ["Vanuatu (Republic of)",2800], + ["Guinea-Bissau (Republic of)",1800], + ["Rwanda (Republic of)",2100], + ["Burkina Faso",2200], + ["Gambia (Republic of the)",2200], + ["Togo (Togolese Republic)",2100], + ["Mali (Republic of)",2200], + ["Zimbabwe (Republic of)",2700], + ["Afghanistan (Islamic Republic of)",2000], + ["Solomon Islands",2500], + ["Kiribati (Republic of)",2300], + ["Yemen (Republic of)",2500], + ["Eritrea (State of)",1600], + ["Sierra Leone (Republic of)",1600], + ["Madagascar (Republic of)",1500], + ["Chad (Republic of)",1500], + ["Korea (Democratic People's Republic of)",1700], + ["Liberia (Republic of)",1400], + ["Malawi (Republic of)",1500], + ["Mozambique (Republic of)",1200], + ["Niger (Republic of)",1200], + ["Congo (Democratic Republic of the)",1100], + ["Somalia (Federal Republic of)",800], + ["Central African Republic",900], + ["South Sudan (Republic of)",1600], + ["Burundi (Republic of)",700] + ] +} diff --git a/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-imf.json b/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-imf.json new file mode 100644 index 0000000..f1f54e1 --- /dev/null +++ b/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-imf.json @@ -0,0 +1,250 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) Per-Capita", + "description" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) Per Capita.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp","per-capita"], + "authors" : [ + "Internatioal Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(PPP)_per_capita" + ] + }, + "data" : [ + ["country.name","gdp.ppp.pc.imf"], + ["Luxembourg (Grand Duchy of)",141587], + ["Liechtenstein (Principality of)",null], + ["Singapore (Republic of)",131426], + ["Ireland",131034], + ["Monaco (Principality of)",null], + ["Qatar (State of)",113675], + ["Bermuda",null], + ["Isle of Man",null], + ["Switzerland (Swiss Confederation)",84469], + ["Norway (Kingdom of)",78128], + ["United Arab Emirates",77272], + ["United States (of America)",75180], + ["Brunei (Nation of the Abode of Peace)",74196], + ["Cayman Islands",null], + ["San Marino (Republic of)",72070], + ["Falkland Islands (Malvinas)",null], + ["Hong Kong (Special Administrative Region of China)",69987], + ["Denmark (Kingdom of)",69845], + ["Netherlands (Kingdom of the)",69715], + ["Taiwan",69500], + ["Austria (Republic of)",66680], + ["Iceland (Republic of)",66467], + ["Andorra (Principality of)",65372], + ["Sweden (Kingdom of)",63877], + ["Germany (Federal Republic of)",63835], + ["Australia (Commonwealth of)",62192], + ["Belgium (Kingdom of)",62065], + ["Gibraltar",null], + ["Finland (Republic of)",58659], + ["Macao (Special Administrative Region of China)",57929], + ["Bahrain (Kingdom of)",57921], + ["Canada",57827], + ["Jersey (Bailiwick of)",null], + ["Malta (Republic of)",56338], + ["France (French Republic)",56200], + ["United Kingdom (of Great Britain & Northern Ireland)",55862], + ["Saudi Arabia (Kingdom of)",55802], + ["Korea (Republic of)",53574], + ["Guernsey (Bailiwick of)",null], + ["Israel (State of)",52173], + ["Kuwait (State of)",51528], + ["Italy (Italian Republic)",51062], + ["New Zealand",50851], + ["Slovenia (Republic of)",49968], + ["Cyprus (Republic of)",49504], + ["Czech Republic",48919], + ["Japan",48813], + ["Spain (Kingdom of)",46551], + ["Aruba",46309], + ["Saint Pierre and Miquelon",null], + ["Lithuania (Republic of)",46159], + ["Estonia (Republic of)",46126], + ["Puerto Rico (Commonwealth of)",43820], + ["Guyana (Co-operative Republic of)",42647], + ["Poland (Republic of)",42466], + ["Hungary (Republic of)",42132], + ["Portugal (Portuguese Republic)",42067], + ["Greenland",null], + ["Oman (Sultanate of)",41150], + ["Faroe Islands",null], + ["Bahamas (Commonwealth of the)",39785], + ["Turkey (Republic of)",38759], + ["Slovakia (Slovak Republic)",38620], + ["Latvia (Republic of)",38124], + ["Romania",38097], + ["Seychelles (Republic of)",37661], + ["Croatia (Republic of)",37550], + ["United States Virgin Islands",null], + ["Greece (Hellenic Republic)",36466], + ["Panama (Republic of)",36370], + ["Sint Maarten (Netherlands)",null], + ["Guam",null], + ["British Virgin Islands",null], + ["Montserrat",null], + ["Malaysia",33113], + ["Russian Federation",31967], + ["New Caledonia",null], + ["Maldives (Republic of)",30888], + ["Kazakhstan (Republic of)",30827], + ["Trinidad and Tobago (Republic of)",29797], + ["Bulgaria (Republic of)",29178], + ["Chile (Republic of)",28887], + ["Saint Kitts and Nevis (Federation of)",27782], + ["Uruguay (Oriental Republic of)",27233], + ["Argentina (Argentine Republic)",26074], + ["Montenegro",26032], + ["Mauritius (Republic of)",25372], + ["Costa Rica (Republic of)",24837], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Dominican Republic",24120], + ["Serbia (Republic of)",24084], + ["Curaçao",null], + ["Mexico (United Mexican States)",22440], + ["Antigua and Barbuda",22070], + ["Belarus (Republic of)",21709], + ["China (People's Republic of)",21291], + ["Thailand (Kingdom of)",21114], + ["Turks and Caicos Islands",null], + ["Georgia",19789], + ["North Macedonia (Republic of)",19783], + ["Equatorial Guinea (Republic of)",19433], + ["Saint Martin",null], + ["Botswana (Republic of)",19199], + ["Libya (State of)",18945], + ["Turkmenistan",18875], + ["Colombia (Republic of)",18693], + ["Iran (Islamic Republic of)",18663], + ["Grenada",18436], + ["Gabon (Gabonese Republic)",18088], + ["Bosnia and Herzegovina",17899], + ["Albania (Republic of)",17858], + ["Brazil (Federative Republic of)",17684], + ["Azerbaijan (Republic of)",17448], + ["Suriname (Republic of)",17350], + ["Barbados",17314], + ["French Polynesia",null], + ["Armenia (Republic of)",16798], + ["Cook Islands",null], + ["Moldova (Republic of)",16483], + ["Saint Lucia",16417], + ["Egypt (Arab Republic of)",15959], + ["Saint Vincent and the Grenadines",15786], + ["South Africa (Republic of)",15556], + ["Peru (Republic of)",15273], + ["Indonesia (Republic of)",14638], + ["Paraguay (Republic of)",14528], + ["Kosovo (Republic of)",14352], + ["Ukraine",14326], + ["Sri Lanka (Democratic Socialist Republic of)",14230], + ["Fiji (Republic of)",13944], + ["Mongolia",13611], + ["Algeria (People's Democratic Republic of)",13324], + ["Palau (Republic of)",13215], + ["Bhutan (Kingdom of)",13077], + ["Vietnam (Socialist Republic of)",13075], + ["Dominica (Commonwealth of)",13030], + ["Ecuador (Republic of)",12763], + ["Tunisia (Republic of)",12490], + ["Iraq (Republic of)",12408], + ["Cuba (Republic of)",null], + ["Anguilla",null], + ["Jordan (Hashemite Kingdom of)",11975], + ["Jamaica",11962], + ["Lebanon (Lebanese Republic)",11377], + ["American Samoa",null], + ["Eswatini (Kingdom of)",11054], + ["Nauru (Republic of)",10834], + ["Namibia (Republic of)",10791], + ["El Salvador (Republic of)",10576], + ["Philippines (Republic of the)",10344], + ["Bolivia (Plurinational State of)",9933], + ["Guatemala (Republic of)",9931], + ["Morocco (Kingdom of)",9808], + ["Belize",9623], + ["Uzbekistan (Republic of)",9478], + ["Lao (People's Democratic Republic)",9166], + ["Cape Verde (Republic of)",8460], + ["India (Republic of)",8293], + ["Bangladesh (People's Republic of)",7985], + ["Saint Helena",null], + ["Angola (Republic of)",7455], + ["Nicaragua (Republic of)",7154], + ["Venezuela (Bolivarian Republic of)",7108], + ["Mauritania (Islamic Republic of)",6925], + ["Ghana (Republic of)",6780], + ["Honduras (Republic of)",6769], + ["Tonga (Kingdom of)",6663], + ["Pakistan (Islamic Republic of)",6662], + ["Djibouti (Republic of)",6514], + ["Côte d'Ivoire (Republic of)",6397], + ["Palestine (State of)",6354], + ["Kenya (Republic of)",6122], + ["Tokelau",null], + ["Nigeria (Federal Republic of)",5884], + ["Samoa (Independent State of)",5882], + ["Tuvalu",5844], + ["Niue",null], + ["Kyrgyz Republic",5771], + ["Cambodia (Kingdom of)",5583], + ["Myanmar (Union of)",4830], + ["Tajikistan (Republic of)",4803], + ["São Tomé and Príncipe (Democratic Republic of)",4710], + ["Congo (Republic of the)",4682], + ["Nepal (Federal Democratic Republic of)",4677], + ["Sudan (Republic of the)",4450], + ["Cameroon (Republic of)",4419], + ["Marshall Islands (Republic of the)",4395], + ["Papua New Guinea (Independent State of)",4271], + ["Benin (Republic of)",4183], + ["Senegal (Republic of)",4113], + ["Timor-Leste (Democratic Republic of)",3904], + ["Zambia (Republic of)",3808], + ["Wallis and Futuna",null], + ["Micronesia (Federated States of)",3675], + ["Ethiopia (Federal Democratic Republic of)",3434], + ["Tanzania (United Republic of)",3374], + ["Comoros (Union of the)",3364], + ["Haiti (Republic of)",3166], + ["Lesotho (Kingdom of)",3028], + ["Uganda (Republic of)",3018], + ["Guinea (Republic of)",2993], + ["Syrian Arab Republic",6374], + ["Vanuatu (Republic of)",2858], + ["Guinea-Bissau (Republic of)",2851], + ["Rwanda (Republic of)",2836], + ["Burkina Faso",2656], + ["Gambia (Republic of the)",2640], + ["Togo (Togolese Republic)",2619], + ["Mali (Republic of)",2609], + ["Zimbabwe (Republic of)",2555], + ["Afghanistan (Islamic Republic of)",2456], + ["Solomon Islands",2336], + ["Kiribati (Republic of)",2165], + ["Yemen (Republic of)",2136], + ["Eritrea (State of)",2078], + ["Sierra Leone (Republic of)",1972], + ["Madagascar (Republic of)",1790], + ["Chad (Republic of)",1719], + ["Korea (Democratic People's Republic of)",null], + ["Liberia (Republic of)",1667], + ["Malawi (Republic of)",1588], + ["Mozambique (Republic of)",1457], + ["Niger (Republic of)",1443], + ["Congo (Democratic Republic of the)",1328], + ["Somalia (Federal Republic of)",1322], + ["Central African Republic",1088], + ["South Sudan (Republic of)",934], + ["Burundi (Republic of)",865] + ] +} diff --git a/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-wb.json b/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-wb.json new file mode 100644 index 0000000..d61c9a8 --- /dev/null +++ b/data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-wb.json @@ -0,0 +1,250 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) Per-Capita", + "description" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) Per Capita.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp","per-capita"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(PPP)_per_capita" + ] + }, + "data" : [ + ["country.name","gdp.ppp.pc.wb"], + ["Luxembourg (Grand Duchy of)",134545], + ["Liechtenstein (Principality of)",null], + ["Singapore (Republic of)",116487], + ["Ireland",106352], + ["Monaco (Principality of)",null], + ["Qatar (State of)",102018], + ["Bermuda",88186], + ["Isle of Man",null], + ["Switzerland (Swiss Confederation)",77274], + ["Norway (Kingdom of)",79201], + ["United Arab Emirates",76609], + ["United States (of America)",69288], + ["Brunei (Nation of the Abode of Peace)",66055], + ["Cayman Islands",74155], + ["San Marino (Republic of)",59451], + ["Falkland Islands (Malvinas)",null], + ["Hong Kong (Special Administrative Region of China)",65892], + ["Denmark (Kingdom of)",64651], + ["Netherlands (Kingdom of the)",63768], + ["Taiwan",null], + ["Austria (Republic of)",58431], + ["Iceland (Republic of)",57612], + ["Andorra (Principality of)",null], + ["Sweden (Kingdom of)",59324], + ["Germany (Federal Republic of)",57881], + ["Australia (Commonwealth of)",56281], + ["Belgium (Kingdom of)",58905], + ["Gibraltar",null], + ["Finland (Republic of)",55013], + ["Macao (Special Administrative Region of China)",71186], + ["Bahrain (Kingdom of)",54257], + ["Canada",52085], + ["Jersey (Bailiwick of)",null], + ["Malta (Republic of)",48582], + ["France (French Republic)",50541], + ["United Kingdom (of Great Britain & Northern Ireland)",49675], + ["Saudi Arabia (Kingdom of)",48711], + ["Korea (Republic of)",47243], + ["Guernsey (Bailiwick of)",null], + ["Israel (State of)",43722], + ["Kuwait (State of)",46328], + ["Italy (Italian Republic)",45902], + ["New Zealand",46420], + ["Slovenia (Republic of)",43603], + ["Cyprus (Republic of)",44110], + ["Czech Republic",45094], + ["Japan",42940], + ["Spain (Kingdom of)",40699], + ["Aruba",42698], + ["Saint Pierre and Miquelon",null], + ["Lithuania (Republic of)",42581], + ["Estonia (Republic of)",42138], + ["Puerto Rico (Commonwealth of)",35850], + ["Guyana (Co-operative Republic of)",24087], + ["Poland (Republic of)",37837], + ["Hungary (Republic of)",36753], + ["Portugal (Portuguese Republic)",35799], + ["Greenland",null], + ["Oman (Sultanate of)",37676], + ["Faroe Islands",null], + ["Bahamas (Commonwealth of the)",33189], + ["Turkey (Republic of)",30737], + ["Slovakia (Slovak Republic)",33010], + ["Latvia (Republic of)",34444], + ["Romania",35870], + ["Seychelles (Republic of)",31596], + ["Croatia (Republic of)",34314], + ["United States Virgin Islands",null], + ["Greece (Hellenic Republic)",31364], + ["Panama (Republic of)",31901], + ["Sint Maarten (Netherlands)",35973], + ["Guam",null], + ["British Virgin Islands",null], + ["Montserrat",null], + ["Malaysia",28930], + ["Russian Federation",32863], + ["New Caledonia",null], + ["Maldives (Republic of)",20615], + ["Kazakhstan (Republic of)",28685], + ["Trinidad and Tobago (Republic of)",25309], + ["Bulgaria (Republic of)",27926], + ["Chile (Republic of)",28685], + ["Saint Kitts and Nevis (Federation of)",29097], + ["Uruguay (Oriental Republic of)",25049], + ["Argentina (Argentine Republic)",23650], + ["Montenegro",23285], + ["Mauritius (Republic of)",23035], + ["Costa Rica (Republic of)",23320], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Dominican Republic",20463], + ["Serbia (Republic of)",21504], + ["Curaçao",22832], + ["Mexico (United Mexican States)",20277], + ["Antigua and Barbuda",21010], + ["Belarus (Republic of)",21699], + ["China (People's Republic of)",19338], + ["Thailand (Kingdom of)",18761], + ["Turks and Caicos Islands",20338], + ["Georgia",17014], + ["North Macedonia (Republic of)",18222], + ["Equatorial Guinea (Republic of)",16080], + ["Saint Martin",null], + ["Botswana (Republic of)",16304], + ["Libya (State of)",24131], + ["Turkmenistan",15625], + ["Colombia (Republic of)",16819], + ["Iran (Islamic Republic of)",16484], + ["Grenada",15038], + ["Gabon (Gabonese Republic)",15176], + ["Bosnia and Herzegovina",17377], + ["Albania (Republic of)",15709], + ["Brazil (Federative Republic of)",16031], + ["Azerbaijan (Republic of)",15855], + ["Suriname (Republic of)",16223], + ["Barbados",15111], + ["French Polynesia",null], + ["Armenia (Republic of)",15593], + ["Cook Islands",null], + ["Moldova (Republic of)",15391], + ["Saint Lucia",14332], + ["Egypt (Arab Republic of)",12706], + ["Saint Vincent and the Grenadines",15045], + ["South Africa (Republic of)",14624], + ["Peru (Republic of)",13749], + ["Indonesia (Republic of)",13027], + ["Paraguay (Republic of)",15037], + ["Kosovo (Republic of)",13056], + ["Ukraine",14220], + ["Sri Lanka (Democratic Socialist Republic of)",14707], + ["Fiji (Republic of)",11381], + ["Mongolia",12819], + ["Algeria (People's Democratic Republic of)",12128], + ["Palau (Republic of)",15145], + ["Bhutan (Kingdom of)",11983], + ["Vietnam (Socialist Republic of)",11676], + ["Dominica (Commonwealth of)",11951], + ["Ecuador (Republic of)",11721], + ["Tunisia (Republic of)",11283], + ["Iraq (Republic of)",9846], + ["Cuba (Republic of)",null], + ["Anguilla",null], + ["Jordan (Hashemite Kingdom of)",10133], + ["Jamaica",10543], + ["Lebanon (Lebanese Republic)",14257], + ["American Samoa",null], + ["Eswatini (Kingdom of)",9730], + ["Nauru (Republic of)",13125], + ["Namibia (Republic of)",10039], + ["El Salvador (Republic of)",9982], + ["Philippines (Republic of the)",8893], + ["Bolivia (Plurinational State of)",8846], + ["Guatemala (Republic of)",9807], + ["Morocco (Kingdom of)",8853], + ["Belize",9627], + ["Uzbekistan (Republic of)",8497], + ["Lao (People's Democratic Republic)",8621], + ["Cape Verde (Republic of)",6717], + ["India (Republic of)",7242], + ["Bangladesh (People's Republic of)",6494], + ["Saint Helena",null], + ["Angola (Republic of)",6491], + ["Nicaragua (Republic of)",6195], + ["Venezuela (Bolivarian Republic of)",17402], + ["Mauritania (Islamic Republic of)",5831], + ["Ghana (Republic of)",5971], + ["Honduras (Republic of)",6122], + ["Tonga (Kingdom of)",6749], + ["Pakistan (Islamic Republic of)",5748], + ["Djibouti (Republic of)",5398], + ["Côte d'Ivoire (Republic of)",5850], + ["Palestine (State of)",6200], + ["Kenya (Republic of)",5211], + ["Tokelau",null], + ["Nigeria (Federal Republic of)",5408], + ["Samoa (Independent State of)",6080], + ["Tuvalu",5410], + ["Niue",null], + ["Kyrgyz Republic",5290], + ["Cambodia (Kingdom of)",4784], + ["Myanmar (Union of)",4430], + ["Tajikistan (Republic of)",4288], + ["São Tomé and Príncipe (Democratic Republic of)",4452], + ["Congo (Republic of the)",3553], + ["Nepal (Federal Democratic Republic of)",4210], + ["Sudan (Republic of the)",4066], + ["Cameroon (Republic of)",4065], + ["Marshall Islands (Republic of the)",6550], + ["Papua New Guinea (Independent State of)",4040], + ["Benin (Republic of)",3649], + ["Senegal (Republic of)",3840], + ["Timor-Leste (Democratic Republic of)",5529], + ["Zambia (Republic of)",3556], + ["Wallis and Futuna",null], + ["Micronesia (Federated States of)",3642], + ["Ethiopia (Federal Democratic Republic of)",2548], + ["Tanzania (United Republic of)",2836], + ["Comoros (Union of the)",3547], + ["Haiti (Republic of)",3153], + ["Lesotho (Kingdom of)",2522], + ["Uganda (Republic of)",2468], + ["Guinea (Republic of)",2901], + ["Syrian Arab Republic",null], + ["Vanuatu (Republic of)",3057], + ["Guinea-Bissau (Republic of)",2012], + ["Rwanda (Republic of)",2460], + ["Burkina Faso",2395], + ["Gambia (Republic of the)",2281], + ["Togo (Togolese Republic)",2334], + ["Mali (Republic of)",2330], + ["Zimbabwe (Republic of)",2324], + ["Afghanistan (Islamic Republic of)",1666], + ["Solomon Islands",2649], + ["Kiribati (Republic of)",2128], + ["Yemen (Republic of)",3437], + ["Eritrea (State of)",1629], + ["Sierra Leone (Republic of)",1774], + ["Madagascar (Republic of)",1608], + ["Chad (Republic of)",1566], + ["Korea (Democratic People's Republic of)",null], + ["Liberia (Republic of)",1564], + ["Malawi (Republic of)",1638], + ["Mozambique (Republic of)",1348], + ["Niger (Republic of)",1304], + ["Congo (Democratic Republic of the)",1180], + ["Somalia (Federal Republic of)",1249], + ["Central African Republic",920], + ["South Sudan (Republic of)",1182], + ["Burundi (Republic of)",775] + ] +} diff --git a/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-cia.json b/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-cia.json new file mode 100644 index 0000000..cb7bc47 --- /dev/null +++ b/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-cia.json @@ -0,0 +1,250 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP)", + "description" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) (USD Millions)", + "units" : "$ millions", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp"], + "authors" : [ + "Central Intelligence Agaency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(PPP)" + ] + }, + "data" : [ + ["country.name","gdp.ppp.total.cia"], + ["China (People's Republic of)",23009780], + ["United States (of America)",19846720], + ["India (Republic of)",8443360], + ["Japan",5224850], + ["Germany (Federal Republic of)",4238800], + ["Russian Federation",3875690], + ["Indonesia (Republic of)",3130470], + ["Brazil (Federative Republic of)",2989430], + ["United Kingdom (of Great Britain & Northern Ireland)",2797980], + ["France (French Republic)",2832170], + ["Turkey (Republic of)",2393960], + ["Italy (Italian Republic)",2322140], + ["Mexico (United Mexican States)",2306320], + ["Korea (Republic of)",2187800], + ["Canada",1742790], + ["Spain (Kingdom of)",1714860], + ["Saudi Arabia (Kingdom of)",1543240], + ["Egypt (Arab Republic of)",1223040], + ["Taiwan",1143277], + ["Australia (Commonwealth of)",1250900], + ["Iran (Islamic Republic of)",1044310], + ["Poland (Republic of)",1223460], + ["Pakistan (Islamic Republic of)",1021130], + ["Thailand (Kingdom of)",1206620], + ["Bangladesh (People's Republic of)",793490], + ["Vietnam (Socialist Republic of)",798210], + ["Nigeria (Federal Republic of)",1013530], + ["Netherlands (Kingdom of the)",945480], + ["Argentina (Argentine Republic)",893310], + ["Philippines (Republic of the)",871560], + ["Malaysia",855600], + ["Colombia (Republic of)",683940], + ["South Africa (Republic of)",680040], + ["United Arab Emirates",655790], + ["Switzerland (Swiss Confederation)",590710], + ["Romania",556070], + ["Belgium (Kingdom of)",557110], + ["Singapore (Republic of)",531040], + ["Sweden (Kingdom of)",524750], + ["Ireland",447970], + ["Algeria (People's Democratic Republic of)",468400], + ["Austria (Republic of)",463120], + ["Kazakhstan (Republic of)",475180], + ["Ukraine",516680], + ["Chile (Republic of)",445880], + ["Iraq (Republic of)",372270], + ["Peru (Republic of)",371290], + ["Hong Kong (Special Administrative Region of China)",420130], + ["Czech Republic",409970], + ["Israel (State of)",353390], + ["Portugal (Portuguese Republic)",331640], + ["Norway (Kingdom of)",342060], + ["Denmark (Kingdom of)",326200], + ["Hungary (Republic of)",302320], + ["Greece (Hellenic Republic)",292400], + ["Morocco (Kingdom of)",259420], + ["Ethiopia (Federal Democratic Republic of)",264050], + ["Uzbekistan (Republic of)",239420], + ["Finland (Republic of)",261390], + ["Sri Lanka (Democratic Socialist Republic of)",274800], + ["Kenya (Republic of)",226940], + ["Qatar (State of)",245660], + ["New Zealand",215600], + ["Myanmar (Union of)",247240], + ["Dominican Republic",184450], + ["Kuwait (State of)",209740], + ["Angola (Republic of)",203710], + ["Ecuador (Republic of)",182240], + ["Ghana (Republic of)",164840], + ["Slovakia (Slovak Republic)",165570], + ["Sudan (Republic of the)",176400], + ["Tanzania (United Republic of)",152790], + ["Belarus (Republic of)",179970], + ["Bulgaria (Republic of)",155060], + ["Venezuela (Bolivarian Republic of)",269068], + ["Oman (Sultanate of)",135790], + ["Guatemala (Republic of)",141500], + ["Côte d'Ivoire (Republic of)",136480], + ["Azerbaijan (Republic of)",138510], + ["Serbia (Republic of)",125800], + ["Panama (Republic of)",109520], + ["Tunisia (Republic of)",114970], + ["Croatia (Republic of)",107110], + ["Nepal (Federal Democratic Republic of)",110720], + ["Cuba (Republic of)",137000], + ["Puerto Rico (Commonwealth of)",106820], + ["Uganda (Republic of)",99610], + ["Lithuania (Republic of)",102660], + ["Costa Rica (Republic of)",100250], + ["Congo (Democratic Republic of the)",96030], + ["Libya (State of)",70650], + ["Jordan (Hashemite Kingdom of)",100160], + ["Cameroon (Republic of)",94940], + ["Bolivia (Plurinational State of)",92590], + ["Turkmenistan",92330], + ["Paraguay (Republic of)",87980], + ["Slovenia (Republic of)",76750], + ["Uruguay (Oriental Republic of)",75060], + ["Luxembourg (Grand Duchy of)",69720], + ["Cambodia (Kingdom of)",70080], + ["Bahrain (Kingdom of)",69650], + ["Lebanon (Lebanese Republic)",79510], + ["Afghanistan (Islamic Republic of)",77040], + ["Zambia (Republic of)",60120], + ["Georgia",52330], + ["Senegal (Republic of)",55260], + ["Latvia (Republic of)",56920], + ["Honduras (Republic of)",50890], + ["El Salvador (Republic of)",52260], + ["Lao (People's Democratic Republic)",56790], + ["Yemen (Republic of)",73630], + ["Bosnia and Herzegovina",47050], + ["Estonia (Republic of)",47440], + ["Burkina Faso",45160], + ["Mali (Republic of)",44890], + ["Benin (Republic of)",40290], + ["Madagascar (Republic of)",41820], + ["Albania (Republic of)",37730], + ["Syrian Arab Republic",50280], + ["Armenia (Republic of)",37310], + ["Mozambique (Republic of)",38420], + ["Nicaragua (Republic of)",34980], + ["Tajikistan (Republic of)",34880], + ["Mongolia",37600], + ["Botswana (Republic of)",37720], + ["Cyprus (Republic of)",33670], + ["Guinea (Republic of)",35080], + ["Trinidad and Tobago (Republic of)",33210], + ["Moldova (Republic of)",32260], + ["North Macedonia (Republic of)",33020], + ["Zimbabwe (Republic of)",40790], + ["Macao (Special Administrative Region of China)",35580], + ["Korea (Democratic People's Republic of)",40000], + ["Kyrgyz Republic",31020], + ["Gabon (Gabonese Republic)",32050], + ["Papua New Guinea (Independent State of)",36690], + ["Haiti (Republic of)",31620], + ["Niger (Republic of)",28970], + ["Rwanda (Republic of)",27180], + ["Malawi (Republic of)",28440], + ["Palestine (State of)",25910], + ["Guyana (Co-operative Republic of)",14690], + ["Jamaica",25890], + ["Mauritius (Republic of)",24640], + ["Brunei (Nation of the Abode of Peace)",27230], + ["Mauritania (Islamic Republic of)",23170], + ["Chad (Republic of)",24970], + ["Malta (Republic of)",20600], + ["Equatorial Guinea (Republic of)",23860], + ["Namibia (Republic of)",22600], + ["Kosovo (Republic of)",19130], + ["Iceland (Republic of)",19160], + ["Congo (Republic of the)",19030], + ["Togo (Togolese Republic)",17450], + ["Somalia (Federal Republic of)",13190], + ["Sierra Leone (Republic of)",13150], + ["Montenegro",11360], + ["Bahamas (Commonwealth of the)",12100], + ["South Sudan (Republic of)",20010], + ["Eswatini (Kingdom of)",9740], + ["Fiji (Republic of)",9860], + ["Maldives (Republic of)",7050], + ["New Caledonia",11110], + ["Burundi (Republic of)",8690], + ["Suriname (Republic of)",9460], + ["Bhutan (Kingdom of)",8420], + ["Liberia (Republic of)",6850], + ["Monaco (Principality of)",7672], + ["Eritrea (State of)",9702], + ["Isle of Man",6792], + ["Gambia (Republic of the)",5220], + ["Djibouti (Republic of)",5420], + ["Lesotho (Kingdom of)",4880], + ["Guam",5793], + ["Jersey (Bailiwick of)",5569], + ["French Polynesia",5490], + ["Central African Republic",4483], + ["Bermuda",5230], + ["Guinea-Bissau (Republic of)",3640], + ["Timor-Leste (Democratic Republic of)",4190], + ["Andorra (Principality of)",3327], + ["Aruba",4158], + ["Barbados",3700], + ["Cayman Islands",4780], + ["Liechtenstein (Principality of)",4978], + ["Cape Verde (Republic of)",3360], + ["Belize",2430], + ["Curaçao",3860], + ["United States Virgin Islands",3872], + ["Seychelles (Republic of)",2400], + ["Guernsey (Bailiwick of)",3465], + ["Comoros (Union of the)",2730], + ["Saint Lucia",2250], + ["San Marino (Republic of)",2060], + ["Greenland",2413], + ["Antigua and Barbuda",1760], + ["Grenada",1700], + ["Gibraltar",2044], + ["Faroe Islands",2001], + ["Saint Vincent and the Grenadines",1340], + ["Solomon Islands",1710], + ["Saint Kitts and Nevis (Federation of)",1240], + ["Sint Maarten (Netherlands)",1440], + ["Northern Mariana Islands (Commonwealth of the)",1242], + ["Samoa (Independent State of)",1250], + ["São Tomé and Príncipe (Democratic Republic of)",890], + ["Dominica (Commonwealth of)",710], + ["Vanuatu (Republic of)",850], + ["Turks and Caicos Islands",820], + ["Tonga (Kingdom of)",670], + ["American Samoa",658], + ["Saint Martin",562], + ["British Virgin Islands",500], + ["Micronesia (Federated States of)",390], + ["Cook Islands",300], + ["Kiribati (Republic of)",270], + ["Saint Pierre and Miquelon",261], + ["Marshall Islands (Republic of the)",240], + ["Palau (Republic of)",320], + ["Falkland Islands (Malvinas)",206], + ["Anguilla",175], + ["Montserrat",167], + ["Nauru (Republic of)",150], + ["Tuvalu",50], + ["Wallis and Futuna",60], + ["Saint Helena",31], + ["Niue",10], + ["Tokelau",8] + ] +} diff --git a/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-imf.json b/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-imf.json new file mode 100644 index 0000000..f62d61e --- /dev/null +++ b/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-imf.json @@ -0,0 +1,250 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP)", + "description" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) (USD Millions)", + "units" : "$ millions", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp"], + "authors" : [ + "Internatioal Monetary Fund (IMF)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(PPP)" + ] + }, + "data" : [ + ["country.name","gdp.ppp.total.imf"], + ["China (People's Republic of)",30074380], + ["United States (of America)",25035164], + ["India (Republic of)",11665486], + ["Japan",6109961], + ["Germany (Federal Republic of)",5316933], + ["Russian Federation",4649674], + ["Indonesia (Republic of)",4023501], + ["Brazil (Federative Republic of)",3782763], + ["United Kingdom (of Great Britain & Northern Ireland)",3776044], + ["France (French Republic)",3688323], + ["Turkey (Republic of)",3320994], + ["Italy (Italian Republic)",3022162], + ["Mexico (United Mexican States)",2919875], + ["Korea (Republic of)",2765834], + ["Canada",2240390], + ["Spain (Kingdom of)",2215992], + ["Saudi Arabia (Kingdom of)",2018260], + ["Egypt (Arab Republic of)",1661955], + ["Taiwan",1621702], + ["Australia (Commonwealth of)",1615286], + ["Iran (Islamic Republic of)",1599249], + ["Poland (Republic of)",1599020], + ["Pakistan (Islamic Republic of)",1512476], + ["Thailand (Kingdom of)",1479644], + ["Bangladesh (People's Republic of)",1345646], + ["Vietnam (Socialist Republic of)",1299690], + ["Nigeria (Federal Republic of)",1275297], + ["Netherlands (Kingdom of the)",1226656], + ["Argentina (Argentine Republic)",1207228], + ["Philippines (Republic of the)",1154875], + ["Malaysia",1096507], + ["Colombia (Republic of)",964743], + ["South Africa (Republic of)",949846], + ["United Arab Emirates",814733], + ["Switzerland (Swiss Confederation)",737838], + ["Romania",731466], + ["Belgium (Kingdom of)",723090], + ["Singapore (Republic of)",700980], + ["Sweden (Kingdom of)",684458], + ["Ireland",666309], + ["Algeria (People's Democratic Republic of)",600668], + ["Austria (Republic of)",599470], + ["Kazakhstan (Republic of)",596666], + ["Ukraine",588448], + ["Chile (Republic of)",575516], + ["Iraq (Republic of)",524210], + ["Peru (Republic of)",521841], + ["Hong Kong (Special Administrative Region of China)",518743], + ["Czech Republic",514732], + ["Israel (State of)",496841], + ["Portugal (Portuguese Republic)",432063], + ["Norway (Kingdom of)",425612], + ["Denmark (Kingdom of)",411039], + ["Hungary (Republic of)",409834], + ["Greece (Hellenic Republic)",387801], + ["Morocco (Kingdom of)",359671], + ["Ethiopia (Federal Democratic Republic of)",347847], + ["Uzbekistan (Republic of)",334318], + ["Finland (Republic of)",324829], + ["Sri Lanka (Democratic Socialist Republic of)",318690], + ["Kenya (Republic of)",311753], + ["Qatar (State of)",303596], + ["New Zealand",261039], + ["Myanmar (Union of)",260274], + ["Dominican Republic",256446], + ["Kuwait (State of)",248113], + ["Angola (Republic of)",245442], + ["Ecuador (Republic of)",229815], + ["Ghana (Republic of)",217525], + ["Slovakia (Slovak Republic)",211118], + ["Sudan (Republic of the)",207713], + ["Tanzania (United Republic of)",207550], + ["Belarus (Republic of)",201967], + ["Bulgaria (Republic of)",198349], + ["Venezuela (Bolivarian Republic of)",191329], + ["Oman (Sultanate of)",190475], + ["Guatemala (Republic of)",185849], + ["Côte d'Ivoire (Republic of)",181533], + ["Azerbaijan (Republic of)",178679], + ["Serbia (Republic of)",164835], + ["Panama (Republic of)",159863], + ["Tunisia (Republic of)",151495], + ["Croatia (Republic of)",150433], + ["Nepal (Federal Democratic Republic of)",141161], + ["Cuba (Republic of)",null], + ["Puerto Rico (Commonwealth of)",135277], + ["Uganda (Republic of)",132010], + ["Lithuania (Republic of)",130670], + ["Costa Rica (Republic of)",129950], + ["Congo (Democratic Republic of the)",128535], + ["Libya (State of)",128389], + ["Jordan (Hashemite Kingdom of)",123351], + ["Cameroon (Republic of)",123341], + ["Bolivia (Plurinational State of)",118802], + ["Turkmenistan",117787], + ["Paraguay (Republic of)",108290], + ["Slovenia (Republic of)",105450], + ["Uruguay (Oriental Republic of)",96810], + ["Luxembourg (Grand Duchy of)",91107], + ["Cambodia (Kingdom of)",89289], + ["Bahrain (Kingdom of)",87905], + ["Lebanon (Lebanese Republic)",null], + ["Afghanistan (Islamic Republic of)",null], + ["Zambia (Republic of)",76325], + ["Georgia",73579], + ["Senegal (Republic of)",72703], + ["Latvia (Republic of)",72033], + ["Honduras (Republic of)",69684], + ["El Salvador (Republic of)",69285], + ["Lao (People's Democratic Republic)",68573], + ["Yemen (Republic of)",67454], + ["Bosnia and Herzegovina",62165], + ["Estonia (Republic of)",61389], + ["Burkina Faso",58812], + ["Mali (Republic of)",56051], + ["Benin (Republic of)",53699], + ["Madagascar (Republic of)",51849], + ["Albania (Republic of)",51189], + ["Syrian Arab Republic",null], + ["Armenia (Republic of)",49767], + ["Mozambique (Republic of)",48040], + ["Nicaragua (Republic of)",47273], + ["Tajikistan (Republic of)",47241], + ["Mongolia",47115], + ["Botswana (Republic of)",47046], + ["Cyprus (Republic of)",44762], + ["Guinea (Republic of)",43922], + ["Trinidad and Tobago (Republic of)",42136], + ["Moldova (Republic of)",41882], + ["North Macedonia (Republic of)",40927], + ["Zimbabwe (Republic of)",40408], + ["Macao (Special Administrative Region of China)",40369], + ["Korea (Democratic People's Republic of)",null], + ["Kyrgyz Republic",39214], + ["Gabon (Gabonese Republic)",39093], + ["Papua New Guinea (Independent State of)",39083], + ["Haiti (Republic of)",38198], + ["Niger (Republic of)",37648], + ["Rwanda (Republic of)",37586], + ["Malawi (Republic of)",35078], + ["Palestine (State of)",33996], + ["Guyana (Co-operative Republic of)",33761], + ["Jamaica",32818], + ["Mauritius (Republic of)",32013], + ["Brunei (Nation of the Abode of Peace)",31904], + ["Mauritania (Islamic Republic of)",30013], + ["Chad (Republic of)",29927], + ["Malta (Republic of)",29367], + ["Equatorial Guinea (Republic of)",29117], + ["Namibia (Republic of)",28021], + ["Kosovo (Republic of)",25362], + ["Iceland (Republic of)",24888], + ["Congo (Republic of the)",23031], + ["Togo (Togolese Republic)",22781], + ["Somalia (Federal Republic of)",20642], + ["Sierra Leone (Republic of)",16386], + ["Montenegro",16195], + ["Bahamas (Commonwealth of the)",15661], + ["South Sudan (Republic of)",13633], + ["Eswatini (Kingdom of)",12725], + ["Fiji (Republic of)",12685], + ["Maldives (Republic of)",12071], + ["New Caledonia",null], + ["Burundi (Republic of)",10898], + ["Suriname (Republic of)",10707], + ["Bhutan (Kingdom of)",9937], + ["Liberia (Republic of)",8841], + ["Monaco (Principality of)",null], + ["Eritrea (State of)",7611], + ["Isle of Man",null], + ["Gambia (Republic of the)",6776], + ["Djibouti (Republic of)",6619], + ["Lesotho (Kingdom of)",6395], + ["Guam",null], + ["Jersey (Bailiwick of)",null], + ["French Polynesia",null], + ["Central African Republic",5460], + ["Bermuda",null], + ["Guinea-Bissau (Republic of)",5406], + ["Timor-Leste (Democratic Republic of)",5347], + ["Andorra (Principality of)",5301], + ["Aruba",5066], + ["Barbados",5010], + ["Cayman Islands",null], + ["Liechtenstein (Principality of)",null], + ["Cape Verde (Republic of)",4823], + ["Belize",4224], + ["Curaçao",null], + ["United States Virgin Islands",null], + ["Seychelles (Republic of)",3725], + ["Guernsey (Bailiwick of)",null], + ["Comoros (Union of the)",3214], + ["Saint Lucia",3008], + ["San Marino (Republic of)",2452], + ["Greenland",null], + ["Antigua and Barbuda",2224], + ["Grenada",2098], + ["Gibraltar",null], + ["Faroe Islands",null], + ["Saint Vincent and the Grenadines",1751], + ["Solomon Islands",1671], + ["Saint Kitts and Nevis (Federation of)",1619], + ["Sint Maarten (Netherlands)",null], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Samoa (Independent State of)",1183], + ["São Tomé and Príncipe (Democratic Republic of)",1069], + ["Dominica (Commonwealth of)",966], + ["Vanuatu (Republic of)",922], + ["Turks and Caicos Islands",null], + ["Tonga (Kingdom of)",666], + ["American Samoa",null], + ["Saint Martin",null], + ["British Virgin Islands",null], + ["Micronesia (Federated States of)",386], + ["Cook Islands",null], + ["Kiribati (Republic of)",268], + ["Saint Pierre and Miquelon",null], + ["Marshall Islands (Republic of the)",245], + ["Palau (Republic of)",236], + ["Falkland Islands (Malvinas)",null], + ["Anguilla",null], + ["Montserrat",null], + ["Nauru (Republic of)",145], + ["Tuvalu",63], + ["Wallis and Futuna",null], + ["Saint Helena",null], + ["Niue",null], + ["Tokelau",null] + ] +} diff --git a/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-wb.json b/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-wb.json new file mode 100644 index 0000000..e191de3 --- /dev/null +++ b/data/global/economics/gdp/gdp-ppp/gdp-ppp-total-wb.json @@ -0,0 +1,250 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP) Purcahsing Power Parity (PPP)", + "description" : "Gross Domestic Product (GDP) Purchasing Power Parity (PPP) (USD Millions)", + "units" : "$ millions", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economy","gdp"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_GDP_(PPP)" + ] + }, + "data" : [ + ["country.name","gdp.ppp.total.wb"], + ["China (People's Republic of)",27312548], + ["United States (of America)",22996100], + ["India (Republic of)",10218573], + ["Japan",5396819], + ["Germany (Federal Republic of)",4815479], + ["Russian Federation",4785445], + ["Indonesia (Republic of)",3566265], + ["Brazil (Federative Republic of)",3435882], + ["United Kingdom (of Great Britain & Northern Ireland)",3344468], + ["France (French Republic)",3424152], + ["Turkey (Republic of)",2591455], + ["Italy (Italian Republic)",2713266], + ["Mexico (United Mexican States)",2609993], + ["Korea (Republic of)",2427791], + ["Canada",1992050], + ["Spain (Kingdom of)",1929759], + ["Saudi Arabia (Kingdom of)",1751178], + ["Egypt (Arab Republic of)",1388329], + ["Taiwan",null], + ["Australia (Commonwealth of)",1436442], + ["Iran (Islamic Republic of)",1449336], + ["Poland (Republic of)",1416885], + ["Pakistan (Islamic Republic of)",1323645], + ["Thailand (Kingdom of)",1343720], + ["Bangladesh (People's Republic of)",1099767], + ["Vietnam (Socialist Republic of)",1134151], + ["Nigeria (Federal Republic of)",1154070], + ["Netherlands (Kingdom of the)",1118051], + ["Argentina (Argentine Republic)",1082341], + ["Philippines (Republic of the)",1012714], + ["Malaysia",970742], + ["Colombia (Republic of)",866076], + ["South Africa (Republic of)",865816], + ["United Arab Emirates",660343], + ["Switzerland (Swiss Confederation)",672544], + ["Romania",676944], + ["Belgium (Kingdom of)",682885], + ["Singapore (Republic of)",635267], + ["Sweden (Kingdom of)",617907], + ["Ireland",535284], + ["Algeria (People's Democratic Republic of)",537072], + ["Austria (Republic of)",523293], + ["Kazakhstan (Republic of)",543474], + ["Ukraine",588384], + ["Chile (Republic of)",559158], + ["Iraq (Republic of)",428634], + ["Peru (Republic of)",463538], + ["Hong Kong (Special Administrative Region of China)",489061], + ["Czech Republic",473744], + ["Israel (State of)",409409], + ["Portugal (Portuguese Republic)",369627], + ["Norway (Kingdom of)",428346], + ["Denmark (Kingdom of)",378645], + ["Hungary (Republic of)",356863], + ["Greece (Hellenic Republic)",333749], + ["Morocco (Kingdom of)",309101], + ["Ethiopia (Federal Democratic Republic of)",306447], + ["Uzbekistan (Republic of)",296689], + ["Finland (Republic of)",304830], + ["Sri Lanka (Democratic Socialist Republic of)",313002], + ["Kenya (Republic of)",276221], + ["Qatar (State of)",274067], + ["New Zealand",237789], + ["Myanmar (Union of)",238129], + ["Dominican Republic",227500], + ["Kuwait (State of)",202011], + ["Angola (Republic of)",223319], + ["Ecuador (Republic of)",208601], + ["Ghana (Republic of)",196050], + ["Slovakia (Slovak Republic)",179815], + ["Sudan (Republic of the)",189393], + ["Tanzania (United Republic of)",175035], + ["Belarus (Republic of)",202672], + ["Bulgaria (Republic of)",184244], + ["Venezuela (Bolivarian Republic of)",506339], + ["Oman (Sultanate of)",158907], + ["Guatemala (Republic of)",167149], + ["Côte d'Ivoire (Republic of)",160692], + ["Azerbaijan (Republic of)",160730], + ["Serbia (Republic of)",146685], + ["Panama (Republic of)",138809], + ["Tunisia (Republic of)",138392], + ["Croatia (Republic of)",131788], + ["Nepal (Federal Democratic Republic of)",126440], + ["Cuba (Republic of)",null], + ["Puerto Rico (Commonwealth of)",112668], + ["Uganda (Republic of)",112991], + ["Lithuania (Republic of)",119263], + ["Costa Rica (Republic of)",120188], + ["Congo (Democratic Republic of the)",112587], + ["Libya (State of)",162528], + ["Jordan (Hashemite Kingdom of)",112466], + ["Cameroon (Republic of)",110652], + ["Bolivia (Plurinational State of)",106856], + ["Turkmenistan",96228], + ["Paraguay (Republic of)",100901], + ["Slovenia (Republic of)",91917], + ["Uruguay (Oriental Republic of)",85823], + ["Luxembourg (Grand Duchy of)",86117], + ["Cambodia (Kingdom of)",79360], + ["Bahrain (Kingdom of)",79392], + ["Lebanon (Lebanese Republic)",72370], + ["Afghanistan (Islamic Republic of)",80912], + ["Zambia (Republic of)",68566], + ["Georgia",63036], + ["Senegal (Republic of)",64807], + ["Latvia (Republic of)",64910], + ["Honduras (Republic of)",62920], + ["El Salvador (Republic of)",63026], + ["Lao (People's Democratic Republic)",64009], + ["Yemen (Republic of)",92756], + ["Bosnia and Herzegovina",54978], + ["Estonia (Republic of)",56083], + ["Burkina Faso",54978], + ["Mali (Republic of)",51041], + ["Benin (Republic of)",47180], + ["Madagascar (Republic of)",46491], + ["Albania (Republic of)",43991], + ["Syrian Arab Republic",null], + ["Armenia (Republic of)",43424], + ["Mozambique (Republic of)",43172], + ["Nicaragua (Republic of)",42437], + ["Tajikistan (Republic of)",41810], + ["Mongolia",42824], + ["Botswana (Republic of)",42200], + ["Cyprus (Republic of)",38301], + ["Guinea (Republic of)",38853], + ["Trinidad and Tobago (Republic of)",37706], + ["Moldova (Republic of)",40249], + ["North Macedonia (Republic of)",37002], + ["Zimbabwe (Republic of)",36892], + ["Macao (Special Administrative Region of China)",48591], + ["Korea (Democratic People's Republic of)",null], + ["Kyrgyz Republic",35398], + ["Gabon (Gabonese Republic)",35544], + ["Papua New Guinea (Independent State of)",40537], + ["Haiti (Republic of)",36096], + ["Niger (Republic of)",32917], + ["Rwanda (Republic of)",33112], + ["Malawi (Republic of)",32582], + ["Palestine (State of)",30518], + ["Guyana (Co-operative Republic of)",19358], + ["Jamaica",29812], + ["Mauritius (Republic of)",28157], + ["Brunei (Nation of the Abode of Peace)",29415], + ["Mauritania (Islamic Republic of)",26702], + ["Chad (Republic of)",26904], + ["Malta (Republic of)",24662], + ["Equatorial Guinea (Republic of)",26282], + ["Namibia (Republic of)",25369], + ["Kosovo (Republic of)",22978], + ["Iceland (Republic of)",21461], + ["Congo (Republic of the)",20461], + ["Togo (Togolese Republic)",20180], + ["Somalia (Federal Republic of)",21307], + ["Sierra Leone (Republic of)",14786], + ["Montenegro",14137], + ["Bahamas (Commonwealth of the)",13538], + ["South Sudan (Republic of)",13231], + ["Eswatini (Kingdom of)",11508], + ["Fiji (Republic of)",10889], + ["Maldives (Republic of)",9911], + ["New Caledonia",null], + ["Burundi (Republic of)",9721], + ["Suriname (Republic of)",9869], + ["Bhutan (Kingdom of)",8588], + ["Liberia (Republic of)",8044], + ["Monaco (Principality of)",null], + ["Eritrea (State of)",5224], + ["Isle of Man",null], + ["Gambia (Republic of the)",6053], + ["Djibouti (Republic of)",5939], + ["Lesotho (Kingdom of)",5791], + ["Guam",null], + ["Jersey (Bailiwick of)",null], + ["French Polynesia",null], + ["Central African Republic",5021], + ["Bermuda",5441], + ["Guinea-Bissau (Republic of)",4146], + ["Timor-Leste (Democratic Republic of)",5937], + ["Andorra (Principality of)",null], + ["Aruba",3329], + ["Barbados",4263], + ["Cayman Islands",4763], + ["Liechtenstein (Principality of)",null], + ["Cape Verde (Republic of)",3949], + ["Belize",2803], + ["Curaçao",3205], + ["United States Virgin Islands",null], + ["Seychelles (Republic of)",2960], + ["Guernsey (Bailiwick of)",null], + ["Comoros (Union of the)",2918], + ["Saint Lucia",2591], + ["San Marino (Republic of)",2022], + ["Greenland",null], + ["Antigua and Barbuda",1959], + ["Grenada",1885], + ["Gibraltar",null], + ["Faroe Islands",null], + ["Saint Vincent and the Grenadines",1560], + ["Solomon Islands",1870], + ["Saint Kitts and Nevis (Federation of)",1406], + ["Sint Maarten (Netherlands)",1471], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Samoa (Independent State of)",1285], + ["São Tomé and Príncipe (Democratic Republic of)",993], + ["Dominica (Commonwealth of)",864], + ["Vanuatu (Republic of)",976], + ["Turks and Caicos Islands",918], + ["Tonga (Kingdom of)",708], + ["American Samoa",null], + ["Saint Martin",null], + ["British Virgin Islands",null], + ["Micronesia (Federated States of)",412.03], + ["Cook Islands",null], + ["Kiribati (Republic of)",259], + ["Saint Pierre and Miquelon",null], + ["Marshall Islands (Republic of the)",249], + ["Palau (Republic of)",295], + ["Falkland Islands (Malvinas)",null], + ["Anguilla",null], + ["Montserrat",null], + ["Nauru (Republic of)",164], + ["Tuvalu",61], + ["Wallis and Futuna",null], + ["Saint Helena",null], + ["Niue",null], + ["Tokelau",null] + ] +} diff --git a/data/global/economics/industry/natural-gas-production.json b/data/global/economics/industry/natural-gas-production.json new file mode 100644 index 0000000..8240f77 --- /dev/null +++ b/data/global/economics/industry/natural-gas-production.json @@ -0,0 +1,121 @@ +{ + "metadata" : { + "name" : "Natural Gas Production", + "description" : "Annual natural gas production in millions of cubic metres.", + "units" : "m3", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","natura gas","energy","production","development"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_natural_gas_production" + ] + }, + "data" : [ + ["country.name","natural.gas.production"], + ["United States (of America)",934200], + ["Russian Federation",701700], + ["Iran (Islamic Republic of)",256700], + ["China (People's Republic of)",209200], + ["Qatar (State of)",177000], + ["Canada",172300], + ["Australia (Commonwealth of)",147200], + ["Saudi Arabia (Kingdom of)",117300], + ["Norway (Kingdom of)",114300], + ["Algeria (People's Democratic Republic of)",100800], + ["Turkmenistan",79300], + ["Malaysia",74200], + ["Egypt (Arab Republic of)",67800], + ["Indonesia (Republic of)",59300], + ["United Arab Emirates",57000], + ["Uzbekistan (Republic of)",50900], + ["Nigeria (Federal Republic of)",45900], + ["Netherlands (Kingdom of the)",47460], + ["Trinidad and Tobago (Republic of)",40870], + ["United Kingdom (of Great Britain & Northern Ireland)",40600], + ["Mexico (United Mexican States)",40370], + ["Argentina (Argentine Republic)",39400], + ["Pakistan (Islamic Republic of)",39300], + ["Thailand (Kingdom of)",37700], + ["Oman (Sultanate of)",29930], + ["Azerbaijan (Republic of)",29370], + ["India (Republic of)",26210], + ["Bangladesh (People's Republic of)",26100], + ["Venezuela (Bolivarian Republic of)",26000], + ["Kazakhstan (Republic of)",22890], + ["Bahrain (Kingdom of)",21070], + ["Bolivia (Plurinational State of)",20510], + ["Brazil (Federative Republic of)",20410], + ["Ukraine",19000], + ["Myanmar (Union of)",17500], + ["Kuwait (State of)",16910], + ["Peru (Republic of)",12620], + ["Brunei (Nation of the Abode of Peace)",12000], + ["Libya (State of)",11600], + ["Romania",11170], + ["Colombia (Republic of)",9897], + ["Vietnam (Socialist Republic of)",9890], + ["Papua New Guinea (Independent State of)",9800], + ["Germany (Federal Republic of)",8730], + ["Israel (State of)",8500], + ["Timor-Leste (Democratic Republic of)",7700], + ["Equatorial Guinea (Republic of)",6200], + ["Poland (Republic of)",6132], + ["Italy (Italian Republic)",5785], + ["Mozambique (Republic of)",5695], + ["New Zealand",4954], + ["Denmark (Kingdom of)",4618], + ["Japan",4453], + ["Syrian Arab Republic",4300], + ["Philippines (Republic of the)",3942], + ["Egypt (Arab Republic of)",3610], + ["Yemen (Republic of)",2850], + ["Côte d'Ivoire (Republic of)",2063], + ["Hungary (Republic of)",1772], + ["Croatia (Republic of)",1691], + ["Tunisia (Republic of)",1575], + ["Congo (Republic of the)",1500], + ["Cuba (Republic of)",1185], + ["Austria (Republic of)",1124], + ["South Africa (Republic of)",1100], + ["Tanzania (United Republic of)",1100], + ["Chile (Republic of)",1008], + ["Iraq (Republic of)",1002], + ["Angola (Republic of)",773], + ["Cameroon (Republic of)",680], + ["Serbia (Republic of)",586], + ["Ghana (Republic of)",554], + ["Ecuador (Republic of)",497], + ["Turkey (Republic of)",381], + ["Gabon (Gabonese Republic)",378], + ["Taiwan",340], + ["Czech Republic",247], + ["Korea (Republic of)",188], + ["Afghanistan (Islamic Republic of)",165], + ["Jordan (Hashemite Kingdom of)",151], + ["Ireland",132], + ["Morocco (Kingdom of)",94], + ["Slovakia (Slovak Republic)",94], + ["Bulgaria (Republic of)",79], + ["Spain (Kingdom of)",62], + ["Senegal (Republic of)",62], + ["Albania (Republic of)",35], + ["Kyrgyz Republic",30], + ["Belarus (Republic of)",30], + ["France (French Republic)",28], + ["Switzerland (Swiss Confederation)",25], + ["Tajikistan (Republic of)",20], + ["Barbados",17], + ["Georgia",10], + ["Congo (Democratic Republic of the)",8], + ["Finland (Republic of)",8], + ["Luxembourg (Grand Duchy of)",6], + ["Greece (Hellenic Republic)",4], + ["Slovenia (Republic of)",4] + ] +} diff --git a/data/global/economics/industry/oil-exports-net.json b/data/global/economics/industry/oil-exports-net.json new file mode 100644 index 0000000..ddeccda --- /dev/null +++ b/data/global/economics/industry/oil-exports-net.json @@ -0,0 +1,140 @@ +{ + "metadata" : { + "name" : "Net Oil Exports", + "description" : "Oil exports verse oil imports measured by barrels per day.", + "units" : "bbl/day", + "year" : "2015", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","industry","enery","resources"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_net_oil_exports" + ] + }, + "data" : [ + ["country.name","industry.oil.exports.net"], + ["Saudi Arabia (Kingdom of)",7341000], + ["Russian Federation",4844780], + ["Iraq (Republic of)",3092000], + ["United Arab Emirates",2552000], + ["Nigeria (Federal Republic of)",2096000], + ["Canada",2011300], + ["Angola (Republic of)",1770000], + ["Venezuela (Bolivarian Republic of)",1656000], + ["Kazakhstan (Republic of)",1407520], + ["Norway (Kingdom of)",1346450], + ["Mexico (United Mexican States)",1214000], + ["Qatar (State of)",1150000], + ["Oman (Sultanate of)",844100], + ["Algeria (People's Democratic Republic of)",751060], + ["Iran (Islamic Republic of)",750200], + ["Colombia (Republic of)",726700], + ["Azerbaijan (Republic of)",718800], + ["Kuwait (State of)",479000], + ["Ecuador (Republic of)",383500], + ["Libya (State of)",337800], + ["Equatorial Guinea (Republic of)",319100], + ["South Sudan (Republic of)",291800], + ["Congo (Republic of the)",290000], + ["Brazil (Federative Republic of)",518800], + ["Gabon (Gabonese Republic)",225300], + ["Vietnam (Socialist Republic of)",188000], + ["Yemen (Republic of)",175200], + ["Syrian Arab Republic",152400], + ["Brunei (Nation of the Abode of Peace)",147900], + ["Chad (Republic of)",125700], + ["Sudan (Republic of the)",97270], + ["Argentina (Argentine Republic)",90820], + ["Timor-Leste (Democratic Republic of)",87000], + ["Malaysia",68800], + ["Turkmenistan",67000], + ["Tunisia (Republic of)",55860], + ["Denmark (Kingdom of)",55510], + ["Cameroon (Republic of)",23720], + ["Congo (Democratic Republic of the)",22240], + ["Albania (Republic of)",19880], + ["Trinidad and Tobago (Republic of)",16160], + ["Papua New Guinea (Independent State of)",13520], + ["Guatemala (Republic of)",10960], + ["Estonia (Republic of)",7624], + ["Suriname (Republic of)",7621], + ["Mauritania (Islamic Republic of)",7337], + ["Mongolia",5680], + ["Egypt (Arab Republic of)",5000], + ["Belize",4345], + ["Barbados",765], + ["Georgia",531], + ["Bolivia (Plurinational State of)",61], + ["Myanmar (Union of)",-40], + ["Latvia (Republic of)",-140], + ["North Macedonia (Republic of)",-146], + ["Uzbekistan (Republic of)",-340], + ["United States Virgin Islands",-4493], + ["El Salvador (Republic of)",-9940], + ["Nicaragua (Republic of)",-13580], + ["Zambia (Republic of)",-14340], + ["Senegal (Republic of)",-15560], + ["Kenya (Republic of)",-19830], + ["Bosnia and Herzegovina",-20040], + ["Jamaica",-24160], + ["Ghana (Republic of)",-24200], + ["Bangladesh (People's Republic of)",-25320], + ["Dominican Republic",-26500], + ["Serbia (Republic of)",-31730], + ["Sri Lanka (Democratic Socialist Republic of)",-32520], + ["Ukraine",-33020], + ["Croatia (Republic of)",-37300], + ["Côte d'Ivoire (Republic of)",-40670], + ["Uruguay (Oriental Republic of)",-40880], + ["Indonesia (Republic of)",-53700], + ["New Zealand",-53910], + ["Jordan (Hashemite Kingdom of)",-59440], + ["Ireland",-64632], + ["Korea (Democratic People's Republic of)",-70000], + ["Cuba (Republic of)",-77000], + ["Bahrain (Kingdom of)",-90700], + ["Peru (Republic of)",-94990], + ["Switzerland (Swiss Confederation)",-101400], + ["Romania",-103296], + ["Hungary (Republic of)",-115300], + ["Slovakia (Slovak Republic)",-117337], + ["Bulgaria (Republic of)",-128100], + ["Czech Republic",-130896], + ["Australia (Commonwealth of)",-147800], + ["Morocco (Kingdom of)",-148500], + ["Austria (Republic of)",-173900], + ["Lithuania (Republic of)",-179719], + ["Chile (Republic of)",-186900], + ["Finland (Republic of)",-236000], + ["Israel (State of)",-275600], + ["Portugal (Portuguese Republic)",-282400], + ["Sweden (Kingdom of)",-352300], + ["Pakistan (Islamic Republic of)",-372800], + ["Turkey (Republic of)",-379600], + ["South Africa (Republic of)",-414000], + ["Belarus (Republic of)",-433400], + ["Greece (Hellenic Republic)",-450980], + ["Poland (Republic of)",-463785], + ["United Kingdom (of Great Britain & Northern Ireland)",-1105600], + ["Belgium (Kingdom of)",-618400], + ["Taiwan",-841300], + ["Thailand (Kingdom of)",-865800], + ["Singapore (Republic of)",-976100], + ["France (French Republic)",-1129000], + ["Netherlands (Kingdom of the)",-1168500], + ["Spain (Kingdom of)",-1224000], + ["Italy (Italian Republic)",-1339700], + ["Philippines (Republic of the)",-1482910], + ["Germany (Federal Republic of)",-1829431], + ["Korea (Republic of)",-3057000], + ["Japan",-3208000], + ["India (Republic of)",-4057000], + ["China (People's Republic of)",-6652690], + ["United States (of America)",-6811000] + ] +} diff --git a/data/global/economics/industry/oil-exports.json b/data/global/economics/industry/oil-exports.json new file mode 100644 index 0000000..179e5d0 --- /dev/null +++ b/data/global/economics/industry/oil-exports.json @@ -0,0 +1,95 @@ +{ + "metadata" : { + "name" : "Oil Exports", + "description" : "Oil Exports measured in barrels per day.", + "units" : "bbl/day", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","industry","resources"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_oil_exports" + ] + }, + "data" : [ + ["country.name","industry.oil.exports"], + ["Saudi Arabia (Kingdom of)",6658642], + ["Russian Federation",4653500], + ["Iraq (Republic of)",3428379], + ["Canada",3037668], + ["United Arab Emirates",2418388], + ["Nigeria (Federal Republic of)",1879288], + ["Iran (Islamic Republic of)",1850000], + ["Kuwait (State of)",1826331], + ["Norway (Kingdom of)",1501768], + ["Kazakhstan (Republic of)",1410917], + ["Angola (Republic of)",1219656], + ["Mexico (United Mexican States)",1198511], + ["Oman (Sultanate of)",859883], + ["United States (of America)",850000], + ["Brazil (Federative Republic of)",832473], + ["Azerbaijan (Republic of)",813000], + ["United Kingdom (of Great Britain & Northern Ireland)",724334], + ["Colombia (Republic of)",540959], + ["Qatar (State of)",502801], + ["Venezuela (Bolivarian Republic of)",486792], + ["Algeria (People's Democratic Republic of)",438700], + ["Ecuador (Republic of)",361820], + ["Libya (State of)",347156], + ["Indonesia (Republic of)",92909], + ["Equatorial Guinea (Republic of)",110186], + ["Australia (Commonwealth of)",253157], + ["South Sudan (Republic of)",291800], + ["Congo (Republic of the)",282156], + ["Malaysia",280000], + ["Gabon (Gabonese Republic)",196078], + ["Vietnam (Socialist Republic of)",113497], + ["Yemen (Republic of)",8875], + ["Denmark (Kingdom of)",78070], + ["Bahrain (Kingdom of)",154691], + ["Syrian Arab Republic",6580], + ["Brunei (Nation of the Abode of Peace)",82333], + ["Chad (Republic of)",97079], + ["Sudan (Republic of the)",135431], + ["Argentina (Argentine Republic)",90920], + ["Timor-Leste (Democratic Republic of)",87000], + ["Egypt (Arab Republic of)",102750], + ["Cuba (Republic of)",83000], + ["Tunisia (Republic of)",77980], + ["Trinidad and Tobago (Republic of)",75340], + ["Turkmenistan",67000], + ["Cameroon (Republic of)",55680], + ["New Zealand",42390], + ["Netherlands (Kingdom of the)",35500], + ["China (People's Republic of)",33000], + ["Thailand (Kingdom of)",32200], + ["Côte d'Ivoire (Republic of)",32190], + ["Papua New Guinea (Independent State of)",28400], + ["Albania (Republic of)",23320], + ["Congo (Democratic Republic of the)",22240], + ["Philippines (Republic of the)",20090], + ["Greece (Hellenic Republic)",0], + ["Peru (Republic of)",15610], + ["Germany (Federal Republic of)",14260], + ["Guatemala (Republic of)",10960], + ["Estonia (Republic of)",7624], + ["Suriname (Republic of)",7621], + ["Mauritania (Islamic Republic of)",7337], + ["Italy (Italian Republic)",6300], + ["Mongolia",5680], + ["Belize",4345], + ["Poland (Republic of)",3615], + ["Lithuania (Republic of)",2181], + ["Ireland",1858], + ["Barbados",765], + ["Georgia",531], + ["Czech Republic",404], + ["Slovakia (Slovak Republic)",263], + ["Bolivia (Plurinational State of)",61] + ] +} diff --git a/data/global/economics/industry/oil-reserves/oil-production.json b/data/global/economics/industry/oil-reserves/oil-production.json new file mode 100644 index 0000000..15effc7 --- /dev/null +++ b/data/global/economics/industry/oil-reserves/oil-production.json @@ -0,0 +1,126 @@ +{ + "metadata" : { + "name" : "Oil Production", + "description" : "Proven oil reserves measured by millions of barrels.", + "units" : "bbl millions", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","oil","resources","energy","development"], + "authors" : [ + "USEAI, OPEC, BP, Other" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proven_oil_reserves" + ] + }, + "data" : [ + ["country.name","oil.production"], + ["Venezuela (Bolivarian Republic of)",527063], + ["Saudi Arabia (Kingdom of)",9264921], + ["Iran (Islamic Republic of)",2665809], + ["Canada",4201101], + ["Iraq (Republic of)",4102311], + ["Kuwait (State of)",2625145], + ["United Arab Emirates",3138249], + ["Russian Federation",9865495], + ["Libya (State of)",408074], + ["United States (of America)",11307560], + ["Nigeria (Federal Republic of)",1775940], + ["Kazakhstan (Republic of)",1756705], + ["China (People's Republic of)",3888989], + ["Qatar (State of)",1530000], + ["Brazil (Federative Republic of)",2939950], + ["Algeria (People's Democratic Republic of)",1122432], + ["Guyana (Co-operative Republic of)",83174], + ["Ecuador (Republic of)",479371], + ["Norway (Kingdom of)",1712937], + ["Angola (Republic of)",1249678], + ["Azerbaijan (Republic of)",693880], + ["Mexico (United Mexican States)",1710303], + ["Oman (Sultanate of)",948967], + ["Sudan (Republic of the)",64740], + ["India (Republic of)",627415], + ["Vietnam (Socialist Republic of)",193264], + ["Malaysia",541017], + ["Egypt (Arab Republic of)",586735], + ["Yemen (Republic of)",66000], + ["Congo (Republic of the)",282541], + ["United Kingdom (of Great Britain & Northern Ireland)",947208], + ["Syrian Arab Republic",35000], + ["Uganda (Republic of)",null], + ["Argentina (Argentine Republic)",440335], + ["Indonesia (Republic of)",712112], + ["Australia (Commonwealth of)",351180], + ["Colombia (Republic of)",791844], + ["Gabon (Gabonese Republic)",173634], + ["Chad (Republic of)",115817], + ["Brunei (Nation of the Abode of Peace)",98642], + ["Equatorial Guinea (Republic of)",147563], + ["Peru (Republic of)",40386], + ["Ghana (Republic of)",199478], + ["Romania",67574], + ["Turkmenistan",184579], + ["Uzbekistan (Republic of)",37997], + ["Pakistan (Islamic Republic of)",79112], + ["Italy (Italian Republic)",100514], + ["Denmark (Kingdom of)",71339], + ["Tunisia (Republic of)",30738], + ["Ukraine",33577], + ["Turkey (Republic of)",61757], + ["Thailand (Kingdom of)",202117], + ["Trinidad and Tobago (Republic of)",56556], + ["Bolivia (Plurinational State of)",60161], + ["Cameroon (Republic of)",66749], + ["Belarus (Republic of)",34249], + ["Bahrain (Kingdom of)",43000], + ["Congo (Democratic Republic of the)",23000], + ["Papua New Guinea (Independent State of)",40249], + ["Albania (Republic of)",14331], + ["Chile (Republic of)",1582], + ["Niger (Republic of)",9497], + ["Spain (Kingdom of)",628], + ["Myanmar (Union of)",8833], + ["Philippines (Republic of the)",12249], + ["Netherlands (Kingdom of the)",14579], + ["Cuba (Republic of)",41079], + ["Germany (Federal Republic of)",37508], + ["Poland (Republic of)",18765], + ["Côte d'Ivoire (Republic of)",36746], + ["Suriname (Republic of)",14915], + ["Guatemala (Republic of)",7749], + ["Serbia (Republic of)",15249], + ["Croatia (Republic of)",11749], + ["France (French Republic)",12910], + ["Japan",4333], + ["New Zealand",18579], + ["Kyrgyz Republic",1000], + ["Austria (Republic of)",10822], + ["Georgia",400], + ["Bangladesh (People's Republic of)",3000], + ["Mauritania (Islamic Republic of)",null], + ["Bulgaria (Republic of)",1000], + ["Czech Republic",2000], + ["South Africa (Republic of)",1000], + ["Israel (State of)",300], + ["Hungary (Republic of)",16418], + ["Lithuania (Republic of)",2000], + ["Tajikistan (Republic of)",180], + ["Greece (Hellenic Republic)",1831], + ["Slovakia (Slovak Republic)",200], + ["Benin (Republic of)",null], + ["Belize",1700], + ["Taiwan",196], + ["Barbados",1000], + ["Jordan (Hashemite Kingdom of)",null], + ["Morocco (Kingdom of)",160], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Kenya (Republic of)",null], + ["South Sudan (Republic of)",162475], + ["Mongolia",17582], + ["Timor-Leste (Democratic Republic of)",14000], + ["Portugal (Portuguese Republic)",12932] + ] +} diff --git a/data/global/economics/industry/oil-reserves/oil-reserves-bp.json b/data/global/economics/industry/oil-reserves/oil-reserves-bp.json new file mode 100644 index 0000000..a1459d2 --- /dev/null +++ b/data/global/economics/industry/oil-reserves/oil-reserves-bp.json @@ -0,0 +1,126 @@ +{ + "metadata" : { + "name" : "Oil Reserves", + "description" : "Proven oil reserves measured by millions of barrels.", + "units" : "bbl (millions)", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","oil","resources","energy","development"], + "authors" : [ + "British Petrolium (BP)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proven_oil_reserves" + ] + }, + "data" : [ + ["country.name","oil.reserves.bp"], + ["Venezuela (Bolivarian Republic of)",300900], + ["Saudi Arabia (Kingdom of)",266000], + ["Iran (Islamic Republic of)",155600], + ["Canada",172200], + ["Iraq (Republic of)",143100], + ["Kuwait (State of)",104000], + ["United Arab Emirates",98630], + ["Russian Federation",102400], + ["Libya (State of)",78400], + ["United States (of America)",55000], + ["Nigeria (Federal Republic of)",37100], + ["Kazakhstan (Republic of)",30000], + ["China (People's Republic of)",18500], + ["Qatar (State of)",25244], + ["Brazil (Federative Republic of)",13000], + ["Algeria (People's Democratic Republic of)",12200], + ["Guyana (Co-operative Republic of)",null], + ["Ecuador (Republic of)",8000], + ["Norway (Kingdom of)",8000], + ["Angola (Republic of)",12700], + ["Azerbaijan (Republic of)",7000], + ["Mexico (United Mexican States)",10800], + ["Oman (Sultanate of)",5300], + ["Sudan (Republic of the)",1500], + ["India (Republic of)",5680], + ["Vietnam (Socialist Republic of)",4000], + ["Malaysia",3600], + ["Egypt (Arab Republic of)",3500], + ["Yemen (Republic of)",3000], + ["Congo (Republic of the)",1600], + ["United Kingdom (of Great Britain & Northern Ireland)",2800], + ["Syrian Arab Republic",2500], + ["Uganda (Republic of)",null], + ["Argentina (Argentine Republic)",2400], + ["Indonesia (Republic of)",3600], + ["Australia (Commonwealth of)",4000], + ["Colombia (Republic of)",2300], + ["Gabon (Gabonese Republic)",2000], + ["Chad (Republic of)",1500], + ["Brunei (Nation of the Abode of Peace)",1100], + ["Equatorial Guinea (Republic of)",1100], + ["Peru (Republic of)",1400], + ["Ghana (Republic of)",null], + ["Romania",600], + ["Turkmenistan",600], + ["Uzbekistan (Republic of)",600], + ["Pakistan (Islamic Republic of)",null], + ["Italy (Italian Republic)",600], + ["Denmark (Kingdom of)",600], + ["Tunisia (Republic of)",400], + ["Ukraine",null], + ["Turkey (Republic of)",null], + ["Thailand (Kingdom of)",400], + ["Trinidad and Tobago (Republic of)",700], + ["Bolivia (Plurinational State of)",null], + ["Cameroon (Republic of)",null], + ["Belarus (Republic of)",null], + ["Bahrain (Kingdom of)",null], + ["Congo (Democratic Republic of the)",null], + ["Papua New Guinea (Independent State of)",null], + ["Albania (Republic of)",null], + ["Chile (Republic of)",null], + ["Niger (Republic of)",null], + ["Spain (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Philippines (Republic of the)",null], + ["Netherlands (Kingdom of the)",null], + ["Cuba (Republic of)",null], + ["Germany (Federal Republic of)",null], + ["Poland (Republic of)",null], + ["Côte d'Ivoire (Republic of)",null], + ["Suriname (Republic of)",null], + ["Guatemala (Republic of)",null], + ["Serbia (Republic of)",null], + ["Croatia (Republic of)",null], + ["France (French Republic)",null], + ["Japan",null], + ["New Zealand",null], + ["Kyrgyz Republic",null], + ["Austria (Republic of)",null], + ["Georgia",null], + ["Bangladesh (People's Republic of)",null], + ["Mauritania (Islamic Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Czech Republic",null], + ["South Africa (Republic of)",null], + ["Israel (State of)",null], + ["Hungary (Republic of)",null], + ["Lithuania (Republic of)",null], + ["Tajikistan (Republic of)",null], + ["Greece (Hellenic Republic)",null], + ["Slovakia (Slovak Republic)",null], + ["Benin (Republic of)",null], + ["Belize",null], + ["Taiwan",null], + ["Barbados",null], + ["Jordan (Hashemite Kingdom of)",null], + ["Morocco (Kingdom of)",null], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Kenya (Republic of)",750], + ["South Sudan (Republic of)",null], + ["Mongolia",null], + ["Timor-Leste (Democratic Republic of)",null], + ["Portugal (Portuguese Republic)",null] + ] +} diff --git a/data/global/economics/industry/oil-reserves/oil-reserves-opec.json b/data/global/economics/industry/oil-reserves/oil-reserves-opec.json new file mode 100644 index 0000000..4c3baa1 --- /dev/null +++ b/data/global/economics/industry/oil-reserves/oil-reserves-opec.json @@ -0,0 +1,126 @@ +{ + "metadata" : { + "name" : "Oil Reserves", + "description" : "Proven oil reserves measured in millions of barrels.", + "units" : "bbl millions", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","oil","resources","energy","development"], + "authors" : [ + "Organization of the Petrolium Exporting Countries (OPEC)r" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proven_oil_reserves" + ] + }, + "data" : [ + ["country.name","oil.reserves.opec"], + ["Venezuela (Bolivarian Republic of)",302809], + ["Saudi Arabia (Kingdom of)",266260], + ["Iran (Islamic Republic of)",208600], + ["Canada",4421], + ["Iraq (Republic of)",147223], + ["Kuwait (State of)",104000], + ["United Arab Emirates",98630], + ["Russian Federation",80000], + ["Libya (State of)",74363], + ["United States (of America)",32773], + ["Nigeria (Federal Republic of)",37453], + ["Kazakhstan (Republic of)",30000], + ["China (People's Republic of)",25627], + ["Qatar (State of)",25244], + ["Brazil (Federative Republic of)",12634], + ["Algeria (People's Democratic Republic of)",12200], + ["Guyana (Co-operative Republic of)",null], + ["Ecuador (Republic of)",8273], + ["Norway (Kingdom of)",6376], + ["Angola (Republic of)",8384], + ["Azerbaijan (Republic of)",7000], + ["Mexico (United Mexican States)",6537], + ["Oman (Sultanate of)",5373], + ["Sudan (Republic of the)",5000], + ["India (Republic of)",4495], + ["Vietnam (Socialist Republic of)",4400], + ["Malaysia",3600], + ["Egypt (Arab Republic of)",4400], + ["Yemen (Republic of)",null], + ["Congo (Republic of the)",null], + ["United Kingdom (of Great Britain & Northern Ireland)",2069], + ["Syrian Arab Republic",2500], + ["Uganda (Republic of)",null], + ["Argentina (Argentine Republic)",2162], + ["Indonesia (Republic of)",3310], + ["Australia (Commonwealth of)",3985], + ["Colombia (Republic of)",1665], + ["Gabon (Gabonese Republic)",2000], + ["Chad (Republic of)",null], + ["Brunei (Nation of the Abode of Peace)",1100], + ["Equatorial Guinea (Republic of)",null], + ["Peru (Republic of)",null], + ["Ghana (Republic of)",null], + ["Romania",null], + ["Turkmenistan",600], + ["Uzbekistan (Republic of)",594], + ["Pakistan (Islamic Republic of)",null], + ["Italy (Italian Republic)",null], + ["Denmark (Kingdom of)",439], + ["Tunisia (Republic of)",null], + ["Ukraine",395], + ["Turkey (Republic of)",null], + ["Thailand (Kingdom of)",null], + ["Trinidad and Tobago (Republic of)",null], + ["Bolivia (Plurinational State of)",null], + ["Cameroon (Republic of)",null], + ["Belarus (Republic of)",198], + ["Bahrain (Kingdom of)",null], + ["Congo (Democratic Republic of the)",null], + ["Papua New Guinea (Independent State of)",null], + ["Albania (Republic of)",null], + ["Chile (Republic of)",null], + ["Niger (Republic of)",null], + ["Spain (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Philippines (Republic of the)",null], + ["Netherlands (Kingdom of the)",null], + ["Cuba (Republic of)",null], + ["Germany (Federal Republic of)",null], + ["Poland (Republic of)",null], + ["Côte d'Ivoire (Republic of)",null], + ["Suriname (Republic of)",null], + ["Guatemala (Republic of)",null], + ["Serbia (Republic of)",null], + ["Croatia (Republic of)",null], + ["France (French Republic)",null], + ["Japan",null], + ["New Zealand",null], + ["Kyrgyz Republic",null], + ["Austria (Republic of)",null], + ["Georgia",null], + ["Bangladesh (People's Republic of)",null], + ["Mauritania (Islamic Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Czech Republic",15], + ["South Africa (Republic of)",15], + ["Israel (State of)",null], + ["Hungary (Republic of)",null], + ["Lithuania (Republic of)",null], + ["Tajikistan (Republic of)",null], + ["Greece (Hellenic Republic)",null], + ["Slovakia (Slovak Republic)",null], + ["Benin (Republic of)",null], + ["Belize",null], + ["Taiwan",null], + ["Barbados",null], + ["Jordan (Hashemite Kingdom of)",null], + ["Morocco (Kingdom of)",null], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Kenya (Republic of)",null], + ["South Sudan (Republic of)",null], + ["Mongolia",null], + ["Timor-Leste (Democratic Republic of)",null], + ["Portugal (Portuguese Republic)",null] + ] +} diff --git a/data/global/economics/industry/oil-reserves/oil-reserves-other.json b/data/global/economics/industry/oil-reserves/oil-reserves-other.json new file mode 100644 index 0000000..806797a --- /dev/null +++ b/data/global/economics/industry/oil-reserves/oil-reserves-other.json @@ -0,0 +1,126 @@ +{ + "metadata" : { + "name" : "Oil Reserves", + "description" : "Proven oil reserves measured by millions of barrels.", + "units" : "bbl millions", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","oil","resources","energy","development"], + "authors" : [ + "Other" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proven_oil_reserves" + ] + }, + "data" : [ + ["country.name","oil.reserves.other"], + ["Venezuela (Bolivarian Republic of)",null], + ["Saudi Arabia (Kingdom of)",null], + ["Iran (Islamic Republic of)",null], + ["Canada",171000], + ["Iraq (Republic of)",null], + ["Kuwait (State of)",null], + ["United Arab Emirates",null], + ["Russian Federation",null], + ["Libya (State of)",null], + ["United States (of America)",43629], + ["Nigeria (Federal Republic of)",null], + ["Kazakhstan (Republic of)",null], + ["China (People's Republic of)",null], + ["Qatar (State of)",null], + ["Brazil (Federative Republic of)",16848], + ["Algeria (People's Democratic Republic of)",null], + ["Guyana (Co-operative Republic of)",10000], + ["Ecuador (Republic of)",null], + ["Norway (Kingdom of)",null], + ["Angola (Republic of)",null], + ["Azerbaijan (Republic of)",null], + ["Mexico (United Mexican States)",9.7], + ["Oman (Sultanate of)",null], + ["Sudan (Republic of the)",null], + ["India (Republic of)",4409], + ["Vietnam (Socialist Republic of)",null], + ["Malaysia",5542], + ["Egypt (Arab Republic of)",null], + ["Yemen (Republic of)",null], + ["Congo (Republic of the)",null], + ["United Kingdom (of Great Britain & Northern Ireland)",2618], + ["Syrian Arab Republic",null], + ["Uganda (Republic of)",null], + ["Argentina (Argentine Republic)",2330], + ["Indonesia (Republic of)",3497], + ["Australia (Commonwealth of)",4002], + ["Colombia (Republic of)",null], + ["Gabon (Gabonese Republic)",null], + ["Chad (Republic of)",null], + ["Brunei (Nation of the Abode of Peace)",null], + ["Equatorial Guinea (Republic of)",null], + ["Peru (Republic of)",1489], + ["Ghana (Republic of)",null], + ["Romania",null], + ["Turkmenistan",null], + ["Uzbekistan (Republic of)",null], + ["Pakistan (Islamic Republic of)",236], + ["Italy (Italian Republic)",595], + ["Denmark (Kingdom of)",550], + ["Tunisia (Republic of)",null], + ["Ukraine",null], + ["Turkey (Republic of)",284], + ["Thailand (Kingdom of)",null], + ["Trinidad and Tobago (Republic of)",830], + ["Bolivia (Plurinational State of)",210], + ["Cameroon (Republic of)",null], + ["Belarus (Republic of)",null], + ["Bahrain (Kingdom of)",null], + ["Congo (Democratic Republic of the)",null], + ["Papua New Guinea (Independent State of)",158], + ["Albania (Republic of)",null], + ["Chile (Republic of)",null], + ["Niger (Republic of)",null], + ["Spain (Kingdom of)",null], + ["Myanmar (Union of)",null], + ["Philippines (Republic of the)",null], + ["Netherlands (Kingdom of the)",141], + ["Cuba (Republic of)",124], + ["Germany (Federal Republic of)",229], + ["Poland (Republic of)",151], + ["Côte d'Ivoire (Republic of)",null], + ["Suriname (Republic of)",null], + ["Guatemala (Republic of)",null], + ["Serbia (Republic of)",null], + ["Croatia (Republic of)",null], + ["France (French Republic)",null], + ["Japan",null], + ["New Zealand",null], + ["Kyrgyz Republic",null], + ["Austria (Republic of)",null], + ["Georgia",null], + ["Bangladesh (People's Republic of)",null], + ["Mauritania (Islamic Republic of)",null], + ["Bulgaria (Republic of)",null], + ["Czech Republic",null], + ["South Africa (Republic of)",null], + ["Israel (State of)",12], + ["Hungary (Republic of)",35], + ["Lithuania (Republic of)",null], + ["Tajikistan (Republic of)",null], + ["Greece (Hellenic Republic)",null], + ["Slovakia (Slovak Republic)",null], + ["Benin (Republic of)",null], + ["Belize",null], + ["Taiwan",null], + ["Barbados",null], + ["Jordan (Hashemite Kingdom of)",1], + ["Morocco (Kingdom of)",null], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Kenya (Republic of)",null], + ["South Sudan (Republic of)",null], + ["Mongolia",null], + ["Timor-Leste (Democratic Republic of)",null], + ["Portugal (Portuguese Republic)",null] + ] +} diff --git a/data/global/economics/industry/oil-reserves/oil-reserves-useia.json b/data/global/economics/industry/oil-reserves/oil-reserves-useia.json new file mode 100644 index 0000000..00b1b0c --- /dev/null +++ b/data/global/economics/industry/oil-reserves/oil-reserves-useia.json @@ -0,0 +1,126 @@ +{ + "metadata" : { + "name" : "Oil Reserves", + "description" : "Proven oil reserves measured by millions of barrels.", + "units" : "bbl millions", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","oil","resources","development"], + "authors" : [ + "United States Energy Information Administration (USEIA)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proven_oil_reserves" + ] + }, + "data" : [ + ["country.name","oil.reserves.useia"], + ["Venezuela (Bolivarian Republic of)",303806], + ["Saudi Arabia (Kingdom of)",258600], + ["Iran (Islamic Republic of)",208600], + ["Canada",170300], + ["Iraq (Republic of)",145019], + ["Kuwait (State of)",101500], + ["United Arab Emirates",97800], + ["Russian Federation",80000], + ["Libya (State of)",48363], + ["United States (of America)",47107], + ["Nigeria (Federal Republic of)",36890], + ["Kazakhstan (Republic of)",30000], + ["China (People's Republic of)",26022], + ["Qatar (State of)",25244], + ["Brazil (Federative Republic of)",12714], + ["Algeria (People's Democratic Republic of)",12200], + ["Guyana (Co-operative Republic of)",null], + ["Ecuador (Republic of)",8273], + ["Norway (Kingdom of)",8122], + ["Angola (Republic of)",7783], + ["Azerbaijan (Republic of)",7000], + ["Mexico (United Mexican States)",5786], + ["Oman (Sultanate of)",5373], + ["Sudan (Republic of the)",5000], + ["India (Republic of)",4604], + ["Vietnam (Socialist Republic of)",4400], + ["Malaysia",3600], + ["Egypt (Arab Republic of)",3300], + ["Yemen (Republic of)",3000], + ["Congo (Republic of the)",2882], + ["United Kingdom (of Great Britain & Northern Ireland)",2500], + ["Syrian Arab Republic",2500], + ["Uganda (Republic of)",2500], + ["Argentina (Argentine Republic)",2482], + ["Indonesia (Republic of)",2480], + ["Australia (Commonwealth of)",2446], + ["Colombia (Republic of)",2036], + ["Gabon (Gabonese Republic)",2000], + ["Chad (Republic of)",1500], + ["Brunei (Nation of the Abode of Peace)",1100], + ["Equatorial Guinea (Republic of)",1100], + ["Peru (Republic of)",858], + ["Ghana (Republic of)",660], + ["Romania",600], + ["Turkmenistan",600], + ["Uzbekistan (Republic of)",594], + ["Pakistan (Islamic Republic of)",540], + ["Italy (Italian Republic)",497], + ["Denmark (Kingdom of)",441], + ["Tunisia (Republic of)",425], + ["Ukraine",395], + ["Turkey (Republic of)",366], + ["Thailand (Kingdom of)",252], + ["Trinidad and Tobago (Republic of)",242], + ["Bolivia (Plurinational State of)",240], + ["Cameroon (Republic of)",200], + ["Belarus (Republic of)",198], + ["Bahrain (Kingdom of)",186], + ["Congo (Democratic Republic of the)",180], + ["Papua New Guinea (Independent State of)",159], + ["Albania (Republic of)",150], + ["Chile (Republic of)",150], + ["Niger (Republic of)",150], + ["Spain (Kingdom of)",150], + ["Myanmar (Union of)",139], + ["Philippines (Republic of the)",138], + ["Netherlands (Kingdom of the)",137], + ["Cuba (Republic of)",124], + ["Germany (Federal Republic of)",115], + ["Poland (Republic of)",113], + ["Côte d'Ivoire (Republic of)",100], + ["Suriname (Republic of)",89], + ["Guatemala (Republic of)",86], + ["Serbia (Republic of)",77], + ["Croatia (Republic of)",71], + ["France (French Republic)",61], + ["Japan",44], + ["New Zealand",40], + ["Kyrgyz Republic",40], + ["Austria (Republic of)",35], + ["Georgia",35], + ["Bangladesh (People's Republic of)",28], + ["Mauritania (Islamic Republic of)",20], + ["Bulgaria (Republic of)",15], + ["Czech Republic",15], + ["South Africa (Republic of)",15], + ["Israel (State of)",12], + ["Hungary (Republic of)",12], + ["Lithuania (Republic of)",12], + ["Tajikistan (Republic of)",12], + ["Greece (Hellenic Republic)",10], + ["Slovakia (Slovak Republic)",9], + ["Benin (Republic of)",8], + ["Belize",6], + ["Taiwan",2], + ["Barbados",1], + ["Jordan (Hashemite Kingdom of)",1], + ["Morocco (Kingdom of)",0.6], + ["Ethiopia (Federal Democratic Republic of)",0.4], + ["Kenya (Republic of)",0], + ["South Sudan (Republic of)",null], + ["Mongolia",null], + ["Timor-Leste (Democratic Republic of)",null], + ["Portugal (Portuguese Republic)",null] + ] +} diff --git a/data/global/economics/industry/oil-reserves/oil-reserves-years.json b/data/global/economics/industry/oil-reserves/oil-reserves-years.json new file mode 100644 index 0000000..17ce339 --- /dev/null +++ b/data/global/economics/industry/oil-reserves/oil-reserves-years.json @@ -0,0 +1,126 @@ +{ + "metadata" : { + "name" : "Oil Reserves", + "description" : "Proven oil reserves measured in years at the current rate of extraction.", + "units" : "years", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","oil","resources","energy","development"], + "authors" : [ + "USEAI, OPEC, BP, Other" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proven_oil_reserves" + ] + }, + "data" : [ + ["country.name","oil.reserves.years"], + ["Venezuela (Bolivarian Republic of)",1578], + ["Saudi Arabia (Kingdom of)",76], + ["Iran (Islamic Republic of)",214], + ["Canada",111], + ["Iraq (Republic of)",97], + ["Kuwait (State of)",106], + ["United Arab Emirates",85], + ["Russian Federation",22], + ["Libya (State of)",324], + ["United States (of America)",11], + ["Nigeria (Federal Republic of)",57], + ["Kazakhstan (Republic of)",47], + ["China (People's Republic of)",18], + ["Qatar (State of)",45], + ["Brazil (Federative Republic of)",12], + ["Algeria (People's Democratic Republic of)",30], + ["Guyana (Co-operative Republic of)",329], + ["Ecuador (Republic of)",47], + ["Norway (Kingdom of)",13], + ["Angola (Republic of)",17], + ["Azerbaijan (Republic of)",28], + ["Mexico (United Mexican States)",9], + ["Oman (Sultanate of)",16], + ["Sudan (Republic of the)",211], + ["India (Republic of)",20], + ["Vietnam (Socialist Republic of)",62], + ["Malaysia",18], + ["Egypt (Arab Republic of)",15], + ["Yemen (Republic of)",124], + ["Congo (Republic of the)",28], + ["United Kingdom (of Great Britain & Northern Ireland)",7], + ["Syrian Arab Republic",196], + ["Uganda (Republic of)",null], + ["Argentina (Argentine Republic)",15], + ["Indonesia (Republic of)",10], + ["Australia (Commonwealth of)",19], + ["Colombia (Republic of)",7], + ["Gabon (Gabonese Republic)",56], + ["Chad (Republic of)",35], + ["Brunei (Nation of the Abode of Peace)",31], + ["Equatorial Guinea (Republic of)",20], + ["Peru (Republic of)",58], + ["Ghana (Republic of)",9], + ["Romania",24], + ["Turkmenistan",9], + ["Uzbekistan (Republic of)",43], + ["Pakistan (Islamic Republic of)",19], + ["Italy (Italian Republic)",14], + ["Denmark (Kingdom of)",17], + ["Tunisia (Republic of)",38], + ["Ukraine",32], + ["Turkey (Republic of)",16], + ["Thailand (Kingdom of)",3], + ["Trinidad and Tobago (Republic of)",12], + ["Bolivia (Plurinational State of)",11], + ["Cameroon (Republic of)",8], + ["Belarus (Republic of)",16], + ["Bahrain (Kingdom of)",12], + ["Congo (Democratic Republic of the)",21], + ["Papua New Guinea (Independent State of)",11], + ["Albania (Republic of)",29], + ["Chile (Republic of)",260], + ["Niger (Republic of)",43], + ["Spain (Kingdom of)",654], + ["Myanmar (Union of)",43], + ["Philippines (Republic of the)",31], + ["Netherlands (Kingdom of the)",26], + ["Cuba (Republic of)",8], + ["Germany (Federal Republic of)",8], + ["Poland (Republic of)",16], + ["Côte d'Ivoire (Republic of)",7], + ["Suriname (Republic of)",16], + ["Guatemala (Republic of)",30], + ["Serbia (Republic of)",14], + ["Croatia (Republic of)",17], + ["France (French Republic)",13], + ["Japan",28], + ["New Zealand",6], + ["Kyrgyz Republic",110], + ["Austria (Republic of)",9], + ["Georgia",240], + ["Bangladesh (People's Republic of)",26], + ["Mauritania (Islamic Republic of)",null], + ["Bulgaria (Republic of)",41], + ["Czech Republic",21], + ["South Africa (Republic of)",41], + ["Israel (State of)",110], + ["Hungary (Republic of)",2], + ["Lithuania (Republic of)",16], + ["Tajikistan (Republic of)",183], + ["Greece (Hellenic Republic)",15], + ["Slovakia (Slovak Republic)",123], + ["Benin (Republic of)",null], + ["Belize",10], + ["Taiwan",28], + ["Barbados",3], + ["Jordan (Hashemite Kingdom of)",null], + ["Morocco (Kingdom of)",10], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Kenya (Republic of)",null], + ["South Sudan (Republic of)",null], + ["Mongolia",null], + ["Timor-Leste (Democratic Republic of)",null], + ["Portugal (Portuguese Republic)",null] + ] +} diff --git a/data/global/economics/retail/household-consumer-expendature/consumer-expendature-gdp.json b/data/global/economics/retail/household-consumer-expendature/consumer-expendature-gdp.json new file mode 100644 index 0000000..88aa05f --- /dev/null +++ b/data/global/economics/retail/household-consumer-expendature/consumer-expendature-gdp.json @@ -0,0 +1,196 @@ +{ + "metadata" : { + "name" : "Household Consumer Expendature Percentage Of GDP", + "description" : "Household final consumption expenditure (HFCE) as a percentage of national GDP.", + "units" : "%", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economic","markets","expendature","retail","gdp"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_largest_consumer_markets" + ] + }, + "data" : [ + ["country.name","consumer.expendature.gdp"], + ["United States (of America)",0.69], + ["China (People's Republic of)",0.39], + ["Japan",0.56], + ["Germany (Federal Republic of)",0.52], + ["United Kingdom (of Great Britain & Northern Ireland)",0.65], + ["India (Republic of)",0.6], + ["France (French Republic)",0.54], + ["Italy (Italian Republic)",0.6], + ["Brazil (Federative Republic of)",0.65], + ["Canada",0.58], + ["Russian Federation",0.5], + ["Korea (Republic of)",0.49], + ["Spain (Kingdom of)",0.58], + ["Australia (Commonwealth of)",0.56], + ["Mexico (United Mexican States)",0.65], + ["Indonesia (Republic of)",0.58], + ["Turkey (Republic of)",0.57], + ["Netherlands (Kingdom of the)",0.44], + ["Switzerland (Swiss Confederation)",0.53], + ["Poland (Republic of)",0.57], + ["Saudi Arabia (Kingdom of)",0.39], + ["Nigeria (Federal Republic of)",0.77], + ["Argentina (Argentine Republic)",0.64], + ["Philippines (Republic of the)",0.73], + ["Belgium (Kingdom of)",0.51], + ["Thailand (Kingdom of)",0.5], + ["Hong Kong (Special Administrative Region of China)",0.69], + ["Sweden (Kingdom of)",0.45], + ["Pakistan (Islamic Republic of)",0.83], + ["Austria (Republic of)",0.52], + ["Colombia (Republic of)",0.69], + ["Malaysia",0.6], + ["Egypt (Arab Republic of)",0.85], + ["Iran (Islamic Republic of)",0.48], + ["South Africa (Republic of)",0.6], + ["Bangladesh (People's Republic of)",0.69], + ["Israel (State of)",0.55], + ["Norway (Kingdom of)",0.45], + ["Vietnam (Socialist Republic of)",0.68], + ["Chile (Republic of)",0.63], + ["United Arab Emirates",0.39], + ["Denmark (Kingdom of)",0.47], + ["Romania",0.64], + ["Portugal (Portuguese Republic)",0.64], + ["Iraq (Republic of)",0.63], + ["Peru (Republic of)",0.65], + ["Greece (Hellenic Republic)",0.68], + ["Finland (Republic of)",0.53], + ["Singapore (Republic of)",0.36], + ["New Zealand",0.57], + ["Ireland",0.3], + ["Czech Republic",0.47], + ["Ukraine",0.75], + ["Kazakhstan (Republic of)",0.52], + ["Kenya (Republic of)",0.82], + ["Hungary (Republic of)",0.48], + ["Algeria (People's Democratic Republic of)",0.44], + ["Morocco (Kingdom of)",0.58], + ["Ethiopia (Federal Democratic Republic of)",0.69], + ["Guatemala (Republic of)",0.85], + ["Ecuador (Republic of)",0.61], + ["Puerto Rico (Commonwealth of)",0.64], + ["Dominican Republic",0.7], + ["Slovakia (Slovak Republic)",0.56], + ["Sri Lanka (Democratic Socialist Republic of)",0.69], + ["Angola (Republic of)",0.56], + ["Cuba (Republic of)",0.56], + ["Kuwait (State of)",0.45], + ["Lebanon (Lebanese Republic)",0.87], + ["Ghana (Republic of)",0.69], + ["Qatar (State of)",0.24], + ["Bulgaria (Republic of)",0.6], + ["Côte d'Ivoire (Republic of)",0.68], + ["Myanmar (Union of)",0.52], + ["Costa Rica (Republic of)",0.63], + ["Uruguay (Oriental Republic of)",0.66], + ["Jordan (Hashemite Kingdom of)",0.85], + ["Croatia (Republic of)",0.58], + ["Serbia (Republic of)",0.68], + ["Belarus (Republic of)",0.55], + ["Congo (Democratic Republic of the)",0.71], + ["Lithuania (Republic of)",0.61], + ["Tanzania (United Republic of)",0.59], + ["Uzbekistan (Republic of)",0.54], + ["Panama (Republic of)",0.5], + ["Oman (Sultanate of)",0.39], + ["Tunisia (Republic of)",0.72], + ["Bolivia (Plurinational State of)",0.68], + ["Cameroon (Republic of)",0.72], + ["Slovenia (Republic of)",0.52], + ["Azerbaijan (Republic of)",0.57], + ["Paraguay (Republic of)",0.66], + ["Uganda (Republic of)",0.71], + ["El Salvador (Republic of)",0.83], + ["Nepal (Federal Democratic Republic of)",0.69], + ["Luxembourg (Grand Duchy of)",0.29], + ["Latvia (Republic of)",0.6], + ["Honduras (Republic of)",0.8], + ["Cambodia (Kingdom of)",0.69], + ["Zimbabwe (Republic of)",0.77], + ["Senegal (Republic of)",0.69], + ["Cyprus (Republic of)",0.65], + ["Estonia (Republic of)",0.49], + ["Bosnia and Herzegovina",0.76], + ["Afghanistan (Islamic Republic of)",0.79], + ["Bahrain (Kingdom of)",0.4], + ["Macao (Special Administrative Region of China)",0.25], + ["Sudan (Republic of the)",0.72], + ["Palestine (State of)",0.9], + ["Mali (Republic of)",0.73], + ["Jamaica",0.76], + ["Georgia",0.69], + ["Iceland (Republic of)",0.51], + ["Albania (Republic of)",0.8], + ["Zambia (Republic of)",0.43], + ["Armenia (Republic of)",0.84], + ["Mauritius (Republic of)",0.75], + ["Lao (People's Democratic Republic)",0.66], + ["Mozambique (Republic of)",0.69], + ["Burkina Faso",0.64], + ["Moldova (Republic of)",0.85], + ["Madagascar (Republic of)",0.71], + ["Benin (Republic of)",0.68], + ["Botswana (Republic of)",0.51], + ["Guinea (Republic of)",0.68], + ["Niger (Republic of)",0.71], + ["Namibia (Republic of)",0.73], + ["Nicaragua (Republic of)",0.72], + ["Haiti (Republic of)",1.02], + ["Chad (Republic of)",0.76], + ["Bahamas (Commonwealth of the)",0.69], + ["North Macedonia (Republic of)",0.65], + ["Mongolia",0.55], + ["Rwanda (Republic of)",0.73], + ["Kyrgyz Republic",0.82], + ["Kosovo (Republic of)",0.84], + ["Gabon (Gabonese Republic)",0.39], + ["Equatorial Guinea (Republic of)",0.58], + ["Malta (Republic of)",0.43], + ["Malawi (Republic of)",0.79], + ["Tajikistan (Republic of)",0.82], + ["Mauritania (Islamic Republic of)",0.57], + ["Barbados",0.78], + ["Sierra Leone (Republic of)",0.99], + ["Montenegro",0.72], + ["Liberia (Republic of)",1.28], + ["Togo (Togolese Republic)",0.66], + ["Guam",0.58], + ["Congo (Republic of the)",0.31], + ["Eswatini (Kingdom of)",0.66], + ["Brunei (Nation of the Abode of Peace)",0.2], + ["United States Virgin Islands",0.66], + ["Guyana (Co-operative Republic of)",0.58], + ["Burundi (Republic of)",0.78], + ["Central African Republic",0.86], + ["Aruba",0.61], + ["Lesotho (Kingdom of)",0.75], + ["Gambia (Republic of the)",0.91], + ["Bhutan (Kingdom of)",0.6], + ["Djibouti (Republic of)",0.44], + ["Guinea-Bissau (Republic of)",1], + ["Belize",0.68], + ["Cape Verde (Republic of)",0.62], + ["Greenland",0.36], + ["Seychelles (Republic of)",0.64], + ["Comoros (Union of the)",0.91], + ["Timor-Leste (Democratic Republic of)",0.68], + ["Northern Mariana Islands (Commonwealth of the)",0.47], + ["San Marino (Republic of)",0.37], + ["American Samoa",0.74], + ["Saint Kitts and Nevis (Federation of)",0.43], + ["Palau (Republic of)",0.69], + ["Marshall Islands (Republic of the)",0.74], + ["Kiribati (Republic of)",0.77] + ] +} diff --git a/data/global/economics/retail/household-consumer-expendature/consumer-expendature-nominal.json b/data/global/economics/retail/household-consumer-expendature/consumer-expendature-nominal.json new file mode 100644 index 0000000..04d9f68 --- /dev/null +++ b/data/global/economics/retail/household-consumer-expendature/consumer-expendature-nominal.json @@ -0,0 +1,196 @@ +{ + "metadata" : { + "name" : "Consumer Expendature Nominal", + "description" : "Household final consumption expenditure (HFCE) represents consumer spending in nominal terms in millions of USD.", + "units" : "$ million", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economic","markets","expendature","retail","gdp"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_largest_consumer_markets" + ] + }, + "data" : [ + ["country.name","consumer.expendature.nominal"], + ["United States (of America)",18071110], + ["China (People's Republic of)",5352545], + ["Japan",2756919], + ["Germany (Federal Republic of)",2022746], + ["United Kingdom (of Great Britain & Northern Ireland)",1835014], + ["India (Republic of)",1729560], + ["France (French Republic)",1458961], + ["Italy (Italian Republic)",1205038], + ["Brazil (Federative Republic of)",1194670], + ["Canada",1003438], + ["Russian Federation",856329], + ["Korea (Republic of)",799470], + ["Spain (Kingdom of)",799084], + ["Australia (Commonwealth of)",773698], + ["Mexico (United Mexican States)",753475], + ["Indonesia (Republic of)",648924], + ["Turkey (Republic of)",433021], + ["Netherlands (Kingdom of the)",397259], + ["Switzerland (Swiss Confederation)",373548], + ["Poland (Republic of)",339308], + ["Saudi Arabia (Kingdom of)",308752], + ["Nigeria (Federal Republic of)",304975], + ["Argentina (Argentine Republic)",289462], + ["Philippines (Republic of the)",275855], + ["Belgium (Kingdom of)",272218], + ["Thailand (Kingdom of)",272105], + ["Hong Kong (Special Administrative Region of China)",250881], + ["Sweden (Kingdom of)",240759], + ["Pakistan (Islamic Republic of)",230514], + ["Austria (Republic of)",230241], + ["Colombia (Republic of)",221895], + ["Malaysia",218057], + ["Egypt (Arab Republic of)",214381], + ["Iran (Islamic Republic of)",212093], + ["South Africa (Republic of)",211693], + ["Bangladesh (People's Republic of)",208699], + ["Israel (State of)",202887], + ["Norway (Kingdom of)",180832], + ["Vietnam (Socialist Republic of)",178531], + ["Chile (Republic of)",177850], + ["United Arab Emirates",163876], + ["Denmark (Kingdom of)",161928], + ["Romania",159034], + ["Portugal (Portuguese Republic)",152462], + ["Iraq (Republic of)",146808], + ["Peru (Republic of)",146529], + ["Greece (Hellenic Republic)",142649], + ["Finland (Republic of)",141340], + ["Singapore (Republic of)",133929], + ["New Zealand",119491], + ["Ireland",118252], + ["Czech Republic",116850], + ["Ukraine",115825], + ["Kazakhstan (Republic of)",94443], + ["Kenya (Republic of)",78786], + ["Hungary (Republic of)",77780], + ["Algeria (People's Democratic Republic of)",74738], + ["Morocco (Kingdom of)",68985], + ["Ethiopia (Federal Democratic Republic of)",65875], + ["Guatemala (Republic of)",65114], + ["Ecuador (Republic of)",64999], + ["Puerto Rico (Commonwealth of)",64276], + ["Dominican Republic",61884], + ["Slovakia (Slovak Republic)",59134], + ["Sri Lanka (Democratic Socialist Republic of)",58216], + ["Angola (Republic of)",57124], + ["Cuba (Republic of)",55987], + ["Kuwait (State of)",55109], + ["Lebanon (Lebanese Republic)",46275], + ["Ghana (Republic of)",46241], + ["Qatar (State of)",43135], + ["Bulgaria (Republic of)",40443], + ["Côte d'Ivoire (Republic of)",39914], + ["Myanmar (Union of)",39688], + ["Costa Rica (Republic of)",39111], + ["Uruguay (Oriental Republic of)",37225], + ["Jordan (Hashemite Kingdom of)",35989], + ["Croatia (Republic of)",35108], + ["Serbia (Republic of)",35023], + ["Belarus (Republic of)",34734], + ["Congo (Democratic Republic of the)",33525], + ["Lithuania (Republic of)",32921], + ["Tanzania (United Republic of)",31696], + ["Uzbekistan (Republic of)",31528], + ["Panama (Republic of)",31335], + ["Oman (Sultanate of)",29685], + ["Tunisia (Republic of)",28757], + ["Bolivia (Plurinational State of)",27991], + ["Cameroon (Republic of)",27906], + ["Slovenia (Republic of)",27789], + ["Azerbaijan (Republic of)",27251], + ["Paraguay (Republic of)",25034], + ["Uganda (Republic of)",24373], + ["El Salvador (Republic of)",22437], + ["Nepal (Federal Democratic Republic of)",21284], + ["Luxembourg (Grand Duchy of)",20968], + ["Latvia (Republic of)",20356], + ["Honduras (Republic of)",20163], + ["Cambodia (Kingdom of)",18804], + ["Zimbabwe (Republic of)",18729], + ["Senegal (Republic of)",16153], + ["Cyprus (Republic of)",15939], + ["Estonia (Republic of)",15293], + ["Bosnia and Herzegovina",15283], + ["Afghanistan (Islamic Republic of)",15051], + ["Bahrain (Kingdom of)",14907], + ["Macao (Special Administrative Region of China)",13657], + ["Sudan (Republic of the)",13653], + ["Palestine (State of)",13110], + ["Mali (Republic of)",12706], + ["Jamaica",12558], + ["Georgia",12290], + ["Iceland (Republic of)",12289], + ["Albania (Republic of)",12263], + ["Zambia (Republic of)",11675], + ["Armenia (Republic of)",11549], + ["Mauritius (Republic of)",10666], + ["Lao (People's Democratic Republic)",10383], + ["Mozambique (Republic of)",10346], + ["Burkina Faso",10124], + ["Moldova (Republic of)",10124], + ["Madagascar (Republic of)",9942], + ["Benin (Republic of)",9850], + ["Botswana (Republic of)",9399], + ["Guinea (Republic of)",9309], + ["Niger (Republic of)",9122], + ["Namibia (Republic of)",9052], + ["Nicaragua (Republic of)",9025], + ["Haiti (Republic of)",8631], + ["Chad (Republic of)",8609], + ["Bahamas (Commonwealth of the)",8568], + ["North Macedonia (Republic of)",8224], + ["Mongolia",7668], + ["Rwanda (Republic of)",7421], + ["Kyrgyz Republic",6937], + ["Kosovo (Republic of)",6697], + ["Gabon (Gabonese Republic)",6433], + ["Equatorial Guinea (Republic of)",6379], + ["Malta (Republic of)",6286], + ["Malawi (Republic of)",6073], + ["Tajikistan (Republic of)",5897], + ["Mauritania (Islamic Republic of)",4306], + ["Barbados",4082], + ["Sierra Leone (Republic of)",4043], + ["Montenegro",3950], + ["Liberia (Republic of)",3915], + ["Togo (Togolese Republic)",3590], + ["Guam",3455], + ["Congo (Republic of the)",3351], + ["Eswatini (Kingdom of)",3132], + ["Brunei (Nation of the Abode of Peace)",2755], + ["United States Virgin Islands",2527], + ["Guyana (Co-operative Republic of)",2495], + ["Burundi (Republic of)",2336], + ["Central African Republic",1916], + ["Aruba",1858], + ["Lesotho (Kingdom of)",1836], + ["Gambia (Republic of the)",1603], + ["Bhutan (Kingdom of)",1480], + ["Djibouti (Republic of)",1473], + ["Guinea-Bissau (Republic of)",1346], + ["Belize",1287], + ["Cape Verde (Republic of)",1220], + ["Greenland",1105], + ["Seychelles (Republic of)",1085], + ["Comoros (Union of the)",1076], + ["Timor-Leste (Democratic Republic of)",1063], + ["Northern Mariana Islands (Commonwealth of the)",616], + ["San Marino (Republic of)",570], + ["American Samoa",472], + ["Saint Kitts and Nevis (Federation of)",450], + ["Palau (Republic of)",197], + ["Marshall Islands (Republic of the)",163], + ["Kiribati (Republic of)",151] + ] +} diff --git a/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2012.json b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2012.json new file mode 100644 index 0000000..2b7244f --- /dev/null +++ b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2012.json @@ -0,0 +1,162 @@ +{ + "metadata" : { + "name" : "Official Development Assistance (ODA) Recieved", + "description" : "Official Development Assistance (ODA) received per year in millions of USD.", + "units" : "$ millions", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","welfare","assistance"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_Official_Development_Assistance_received" + ] + }, + "data" : [ + ["country.name","welfare.oda.recieved.2012"], + ["Afghanistan (Islamic Republic of)",6725], + ["Albania (Republic of)",341.6], + ["Algeria (People's Democratic Republic of)",144.5], + ["Angola (Republic of)",242.3], + ["Antigua and Barbuda",2.3], + ["Argentina (Argentine Republic)",178.9], + ["Armenia (Republic of)",272.7], + ["Azerbaijan (Republic of)",284.9], + ["Bangladesh (People's Republic of)",2152], + ["Belarus (Republic of)",103.2], + ["Belize",25.1], + ["Benin (Republic of)",511.3], + ["Bhutan (Kingdom of)",161.2], + ["Bolivia (Plurinational State of)",658.6], + ["Bosnia and Herzegovina",571.1], + ["Botswana (Republic of)",73.8], + ["Brazil (Federative Republic of)",1.2], + ["Burkina Faso",1158.5], + ["Burundi (Republic of)",522.7], + ["Cambodia (Kingdom of)",807.4], + ["Cameroon (Republic of)",596.2], + ["Cape Verde (Republic of)",246.1], + ["Central African Republic",227.2], + ["Chad (Republic of)",478.5], + ["Chile (Republic of)",125.5], + ["Colombia (Republic of)",764.4], + ["Comoros (Union of the)",68.6], + ["Congo (Democratic Republic of the)",2859.3], + ["Congo (Republic of the)",138.6], + ["Costa Rica (Republic of)",32.7], + ["Côte d'Ivoire (Republic of)",2635.6], + ["Cuba (Republic of)",87.8], + ["Djibouti (Republic of)",146.5], + ["Dominica (Commonwealth of)",25.6], + ["Dominican Republic",261.3], + ["Ecuador (Republic of)",149.4], + ["Egypt (Arab Republic of)",1806.6], + ["El Salvador (Republic of)",230.4], + ["Equatorial Guinea (Republic of)",14.2], + ["Eritrea (State of)",133.7], + ["Ethiopia (Federal Democratic Republic of)",3261.3], + ["Fiji (Republic of)",107.3], + ["Gabon (Gabonese Republic)",73.2], + ["Gambia (Republic of the)",138.8], + ["Georgia",662.2], + ["Ghana (Republic of)",1807.9], + ["Grenada",7.6], + ["Guatemala (Republic of)",299.4], + ["Guinea (Republic of)",339.6], + ["Guinea-Bissau (Republic of)",98.9], + ["Guyana (Co-operative Republic of)",114.4], + ["Haiti (Republic of)",1275.1], + ["Honduras (Republic of)",571.5], + ["India (Republic of)",1667.63], + ["Indonesia (Republic of)",67.8], + ["Iran (Islamic Republic of)",148.8], + ["Iraq (Republic of)",1300.7], + ["Jamaica",21], + ["Jordan (Hashemite Kingdom of)",1416.9], + ["Kazakhstan (Republic of)",129.6], + ["Kenya (Republic of)",2654], + ["Kiribati (Republic of)",64.6], + ["Korea (Democratic People's Republic of)",98.1], + ["Kosovo (Republic of)",567.6], + ["Kyrgyz Republic",472.9], + ["Lao (People's Democratic Republic)",408.9], + ["Lebanon (Lebanese Republic)",710.2], + ["Lesotho (Kingdom of)",282.6], + ["Liberia (Republic of)",570.9], + ["Libya (State of)",87], + ["North Macedonia (Republic of)",148.9], + ["Madagascar (Republic of)",378.6], + ["Malawi (Republic of)",1174.6], + ["Malaysia",15.3], + ["Maldives (Republic of)",58], + ["Mali (Republic of)",1001.3], + ["Marshall Islands (Republic of the)",76], + ["Mauritania (Islamic Republic of)",408.3], + ["Mauritius (Republic of)",177.8], + ["Mexico (United Mexican States)",417.8], + ["Micronesia (Federated States of)",115], + ["Moldova (Republic of)",473], + ["Mongolia",448.7], + ["Montenegro",103.2], + ["Morocco (Kingdom of)",1480.3], + ["Mozambique (Republic of)",2096.9], + ["Myanmar (Union of)",504], + ["Namibia (Republic of)",264.8], + ["Nauru (Republic of)",""], + ["Nepal (Federal Democratic Republic of)",769.7], + ["Nicaragua (Republic of)",532.3], + ["Niger (Republic of)",901.8], + ["Nigeria (Federal Republic of)",1915.8], + ["Pakistan (Islamic Republic of)",2019], + ["Palau (Republic of)",15], + ["Palestine (State of)",""], + ["Panama (Republic of)",50.7], + ["Papua New Guinea (Independent State of)",664.8], + ["Paraguay (Republic of)",104.4], + ["Peru (Republic of)",393.8], + ["Philippines (Republic of the)",""], + ["Rwanda (Republic of)",878.9], + ["Samoa (Independent State of)",120.6], + ["São Tomé and Príncipe (Democratic Republic of)",48.7], + ["Senegal (Republic of)",1080.1], + ["Serbia (Republic of)",1089.8], + ["Seychelles (Republic of)",35.3], + ["Sierra Leone (Republic of)",442.8], + ["Solomon Islands",304.9], + ["Somalia (Federal Republic of)",998.6], + ["South Africa (Republic of)",1067.1], + ["South Sudan (Republic of)",1578], + ["Sri Lanka (Democratic Socialist Republic of)",487.5], + ["Saint Kitts and Nevis (Federation of)",21.9], + ["Saint Lucia",26.8], + ["Saint Vincent and the Grenadines",8.5], + ["Sudan (Republic of the)",983.2], + ["Suriname (Republic of)",39.6], + ["Eswatini (Kingdom of)",88.1], + ["Syrian Arab Republic",1671.5], + ["Tajikistan (Republic of)",393.9], + ["Tanzania (United Republic of)",2831.8], + ["Thailand (Kingdom of)",-134.7], + ["Timor-Leste (Democratic Republic of)",283], + ["Togo (Togolese Republic)",241.4], + ["Tonga (Kingdom of)",78.2], + ["Tunisia (Republic of)",1017], + ["Turkey (Republic of)",3033.1], + ["Turkmenistan",38], + ["Tuvalu",24.4], + ["Uganda (Republic of)",1655.1], + ["Ukraine",769.2], + ["Uruguay (Oriental Republic of)",19.3], + ["Uzbekistan (Republic of)",255.2], + ["Vanuatu (Republic of)",101.4], + ["Venezuela (Bolivarian Republic of)",48.1], + ["Vietnam (Socialist Republic of)",4115.7], + ["Yemen (Republic of)",709.3], + ["Zambia (Republic of)",957.7], + ["Zimbabwe (Republic of)",1001.2] + ] +} diff --git a/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2013.json b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2013.json new file mode 100644 index 0000000..d7665dc --- /dev/null +++ b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2013.json @@ -0,0 +1,162 @@ +{ + "metadata" : { + "name" : "Official Development Assistance (ODA) Received", + "description" : "Official Development Assistance (ODA) received per year in millions of USD.", + "units" : "$ millions", + "year" : "2013", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","welfare","assistance"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_Official_Development_Assistance_received" + ] + }, + "data" : [ + ["country.name","welfare.oda.recieved.2013"], + ["Afghanistan (Islamic Republic of)",5265.95], + ["Albania (Republic of)",298.38], + ["Algeria (People's Democratic Republic of)",207.96], + ["Angola (Republic of)",287.61], + ["Antigua and Barbuda",1.5], + ["Argentina (Argentine Republic)",30.12232], + ["Armenia (Republic of)",292.76], + ["Azerbaijan (Republic of)",-63.13], + ["Bangladesh (People's Republic of)",2669.1], + ["Belarus (Republic of)",104.68], + ["Belize",49.55], + ["Benin (Republic of)",652.61], + ["Bhutan (Kingdom of)",134.69], + ["Bolivia (Plurinational State of)",699.15], + ["Bosnia and Herzegovina",550.04], + ["Botswana (Republic of)",108.38], + ["Brazil (Federative Republic of)",1150.17], + ["Burkina Faso",1040.11], + ["Burundi (Republic of)",546.27], + ["Cambodia (Kingdom of)",804.81], + ["Cameroon (Republic of)",737.49], + ["Cape Verde (Republic of)",243.37], + ["Central African Republic",189.25], + ["Chad (Republic of)",399.33], + ["Chile (Republic of)",78.52], + ["Colombia (Republic of)",852.03], + ["Comoros (Union of the)",81.9], + ["Congo (Democratic Republic of the)",2572.2], + ["Congo (Republic of the)",150.4], + ["Costa Rica (Republic of)",37.77], + ["Côte d'Ivoire (Republic of)",1262], + ["Cuba (Republic of)",101.24], + ["Djibouti (Republic of)",152.95], + ["Dominica (Commonwealth of)",19.8], + ["Dominican Republic",148.13], + ["Ecuador (Republic of)",147.8], + ["Egypt (Arab Republic of)",5505], + ["El Salvador (Republic of)",171.3], + ["Equatorial Guinea (Republic of)",5.7], + ["Eritrea (State of)",83.69], + ["Ethiopia (Federal Democratic Republic of)",3826.2], + ["Fiji (Republic of)",90.9], + ["Gabon (Gabonese Republic)",90.8], + ["Gambia (Republic of the)",110.8], + ["Georgia",652.7], + ["Ghana (Republic of)",1330.5], + ["Grenada",10], + ["Guatemala (Republic of)",494.1], + ["Guinea (Republic of)",499.5], + ["Guinea-Bissau (Republic of)",103.6], + ["Guyana (Co-operative Republic of)",101.8], + ["Haiti (Republic of)",1170.5], + ["Honduras (Republic of)",627.6], + ["India (Republic of)",2435.68], + ["Indonesia (Republic of)",53.3], + ["Iran (Islamic Republic of)",131.3], + ["Iraq (Republic of)",1541.4], + ["Jamaica",70.3], + ["Jordan (Hashemite Kingdom of)",1407.9], + ["Kazakhstan (Republic of)",91.3], + ["Kenya (Republic of)",3236.2], + ["Kiribati (Republic of)",64.4], + ["Korea (Democratic People's Republic of)",109], + ["Kosovo (Republic of)",""], + ["Kyrgyz Republic",536.6], + ["Lao (People's Democratic Republic)",421], + ["Lebanon (Lebanese Republic)",626.4], + ["Lesotho (Kingdom of)",320], + ["Liberia (Republic of)",534.2], + ["Libya (State of)",129.4], + ["North Macedonia (Republic of)",251.6], + ["Madagascar (Republic of)",499.7], + ["Malawi (Republic of)",1125.8], + ["Malaysia",-119.4], + ["Maldives (Republic of)",22.9], + ["Mali (Republic of)",1391.3], + ["Marshall Islands (Republic of the)",93.7], + ["Mauritania (Islamic Republic of)",291.2], + ["Mauritius (Republic of)",148.3], + ["Mexico (United Mexican States)",560.6], + ["Micronesia (Federated States of)",142.9], + ["Moldova (Republic of)",374.4], + ["Mongolia",428.2], + ["Montenegro",127.3], + ["Morocco (Kingdom of)",1966.1], + ["Mozambique (Republic of)",2314.1], + ["Myanmar (Union of)",3934.8], + ["Namibia (Republic of)",261.7], + ["Nauru (Republic of)",""], + ["Nepal (Federal Democratic Republic of)",870.5], + ["Nicaragua (Republic of)",496.6], + ["Niger (Republic of)",773.1], + ["Nigeria (Federal Republic of)",2529.4], + ["Pakistan (Islamic Republic of)",2174.1], + ["Palau (Republic of)",35.2], + ["Palestine (State of)",""], + ["Panama (Republic of)",6.8], + ["Papua New Guinea (Independent State of)",656.2], + ["Paraguay (Republic of)",129.4], + ["Peru (Republic of)",367.5], + ["Philippines (Republic of the)",""], + ["Rwanda (Republic of)",1081.1], + ["Samoa (Independent State of)",118.1], + ["São Tomé and Príncipe (Democratic Republic of)",51.7], + ["Senegal (Republic of)",982.8], + ["Serbia (Republic of)",783.2], + ["Seychelles (Republic of)",25.4], + ["Sierra Leone (Republic of)",443.7], + ["Solomon Islands",288.3], + ["Somalia (Federal Republic of)",991.9], + ["South Africa (Republic of)",1292.9], + ["South Sudan (Republic of)",1447.4], + ["Sri Lanka (Democratic Socialist Republic of)",423.2], + ["Saint Kitts and Nevis (Federation of)",29.3], + ["Saint Lucia",24.3], + ["Saint Vincent and the Grenadines",7.5], + ["Sudan (Republic of the)",1163.1], + ["Suriname (Republic of)",29.8], + ["Eswatini (Kingdom of)",115.9], + ["Syrian Arab Republic",3626.7], + ["Tajikistan (Republic of)",382.2], + ["Tanzania (United Republic of)",3430.2], + ["Thailand (Kingdom of)",-23.7], + ["Timor-Leste (Democratic Republic of)",257.8], + ["Togo (Togolese Republic)",220.5], + ["Tonga (Kingdom of)",80.3], + ["Tunisia (Republic of)",713.6], + ["Turkey (Republic of)",2740.5], + ["Turkmenistan",37.3], + ["Tuvalu",26.6], + ["Uganda (Republic of)",1692.5], + ["Ukraine",800.7], + ["Uruguay (Oriental Republic of)",35.7], + ["Uzbekistan (Republic of)",292.5], + ["Vanuatu (Republic of)",90.5], + ["Venezuela (Bolivarian Republic of)",35.4], + ["Vietnam (Socialist Republic of)",4084.7], + ["Yemen (Republic of)",1003.5], + ["Zambia (Republic of)",1142.4], + ["Zimbabwe (Republic of)",811] + ] +} diff --git a/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2015.json b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2015.json new file mode 100644 index 0000000..d3415e5 --- /dev/null +++ b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2015.json @@ -0,0 +1,162 @@ +{ + "metadata" : { + "name" : "Official Development Assistance (ODA) Received", + "description" : "Official Development Assistance (ODA) received per year in millions of USD.", + "units" : "$ millions", + "year" : "2015", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","welfare","assistance"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_Official_Development_Assistance_received" + ] + }, + "data" : [ + ["country.name","welfare.oda.recieved.2015"], + ["Afghanistan (Islamic Republic of)",4237.29], + ["Albania (Republic of)",333.58], + ["Algeria (People's Democratic Republic of)",87.49], + ["Angola (Republic of)",380.06], + ["Antigua and Barbuda",1.49], + ["Argentina (Argentine Republic)",-18.87], + ["Armenia (Republic of)",347.48], + ["Azerbaijan (Republic of)",69.62], + ["Bangladesh (People's Republic of)",2570.1], + ["Belarus (Republic of)",104.58], + ["Belize",28.27], + ["Benin (Republic of)",430.14], + ["Bhutan (Kingdom of)",97.28], + ["Bolivia (Plurinational State of)",791.31], + ["Bosnia and Herzegovina",355.03], + ["Botswana (Republic of)",65.54], + ["Brazil (Federative Republic of)",1003.15], + ["Burkina Faso",996.99], + ["Burundi (Republic of)",366.54], + ["Cambodia (Kingdom of)",679.04], + ["Cameroon (Republic of)",663.08], + ["Cape Verde (Republic of)",""], + ["Central African Republic",486.73], + ["Chad (Republic of)",606.65], + ["Chile (Republic of)",54.33], + ["Colombia (Republic of)",1355.86], + ["Comoros (Union of the)",65.78], + ["Congo (Democratic Republic of the)",2599.04], + ["Congo (Republic of the)",88.88], + ["Costa Rica (Republic of)",111.3], + ["Côte d'Ivoire (Republic of)",653.06], + ["Cuba (Republic of)",552.73], + ["Djibouti (Republic of)",169.56], + ["Dominica (Commonwealth of)",11.71], + ["Dominican Republic",279.96], + ["Ecuador (Republic of)",318.16], + ["Egypt (Arab Republic of)",2499.43], + ["El Salvador (Republic of)",89.7], + ["Equatorial Guinea (Republic of)",7.49], + ["Eritrea (State of)",94.12], + ["Ethiopia (Federal Democratic Republic of)",3233.71], + ["Fiji (Republic of)",102.48], + ["Gabon (Gabonese Republic)",98.78], + ["Gambia (Republic of the)",107.68], + ["Georgia",448.93], + ["Ghana (Republic of)",1768.69], + ["Grenada",24.1], + ["Guatemala (Republic of)",411.29], + ["Guinea (Republic of)",538.04], + ["Guinea-Bissau (Republic of)",95.04], + ["Guyana (Co-operative Republic of)",32.14], + ["Haiti (Republic of)",1045.86], + ["Honduras (Republic of)",540.52], + ["India (Republic of)",3174.35], + ["Indonesia (Republic of)",-33.4], + ["Iran (Islamic Republic of)",110.9], + ["Iraq (Republic of)",1482.94], + ["Jamaica",59.07], + ["Jordan (Hashemite Kingdom of)",2151.85], + ["Kazakhstan (Republic of)",82.5], + ["Kenya (Republic of)",2464.18], + ["Kiribati (Republic of)",64.95], + ["Korea (Democratic People's Republic of)",131.43], + ["Kosovo (Republic of)",437.81], + ["Kyrgyz Republic",769.99], + ["Lao (People's Democratic Republic)",471.09], + ["Lebanon (Lebanese Republic)",974.92], + ["Lesotho (Kingdom of)",83.14], + ["Liberia (Republic of)",1094.43], + ["Libya (State of)",157.37], + ["North Macedonia (Republic of)",214.32], + ["Madagascar (Republic of)",676.97], + ["Malawi (Republic of)",1049.38], + ["Malaysia",-600], + ["Maldives (Republic of)",26.83], + ["Mali (Republic of)",1204.13], + ["Marshall Islands (Republic of the)",57.06], + ["Mauritania (Islamic Republic of)",318], + ["Mauritius (Republic of)",78.42], + ["Mexico (United Mexican States)",321.07], + ["Micronesia (Federated States of)",81.39], + ["Moldova (Republic of)",312.58], + ["Mongolia",236.34], + ["Montenegro",99.96], + ["Morocco (Kingdom of)",1481.43], + ["Mozambique (Republic of)",1814.74], + ["Myanmar (Union of)",1168.5], + ["Namibia (Republic of)",142.38], + ["Nauru (Republic of)",31.25], + ["Nepal (Federal Democratic Republic of)",1224.78], + ["Nicaragua (Republic of)",457.92], + ["Niger (Republic of)",867.99], + ["Nigeria (Federal Republic of)",2431.5], + ["Pakistan (Islamic Republic of)",3747.5], + ["Palau (Republic of)",13.93], + ["Palestine (State of)",1871.21], + ["Panama (Republic of)",10.25], + ["Papua New Guinea (Independent State of)",591.39], + ["Paraguay (Republic of)",60.18], + ["Peru (Republic of)",334.83], + ["Philippines (Republic of the)",515.31], + ["Rwanda (Republic of)",1085.33], + ["Samoa (Independent State of)",93.72], + ["São Tomé and Príncipe (Democratic Republic of)",48.95], + ["Senegal (Republic of)",879.12], + ["Serbia (Republic of)",312.48], + ["Seychelles (Republic of)",6.78], + ["Sierra Leone (Republic of)",946.33], + ["Solomon Islands",190.03], + ["Somalia (Federal Republic of)",1253.37], + ["South Africa (Republic of)",1420.27], + ["South Sudan (Republic of)",1674.83], + ["Sri Lanka (Democratic Socialist Republic of)",427.23], + ["Saint Kitts and Nevis (Federation of)",""], + ["Saint Lucia",13.76], + ["Saint Vincent and the Grenadines",13.5], + ["Sudan (Republic of the)",899.78], + ["Suriname (Republic of)",15.98], + ["Eswatini (Kingdom of)",93.63], + ["Syrian Arab Republic",4889.74], + ["Tajikistan (Republic of)",426.35], + ["Tanzania (United Republic of)",2582.24], + ["Thailand (Kingdom of)",58.67], + ["Timor-Leste (Democratic Republic of)",212.29], + ["Togo (Togolese Republic)",199.59], + ["Tonga (Kingdom of)",68.4], + ["Tunisia (Republic of)",474.54], + ["Turkey (Republic of)",2145.22], + ["Turkmenistan",23.62], + ["Tuvalu",49.65], + ["Uganda (Republic of)",1628.2], + ["Ukraine",1449.35], + ["Uruguay (Oriental Republic of)",23.18], + ["Uzbekistan (Republic of)",447.81], + ["Vanuatu (Republic of)",186.56], + ["Venezuela (Bolivarian Republic of)",36.59], + ["Vietnam (Socialist Republic of)",3157.36], + ["Yemen (Republic of)",1531.38], + ["Zambia (Republic of)",797.14], + ["Zimbabwe (Republic of)",788.29] + ] +} diff --git a/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2019.json b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2019.json new file mode 100644 index 0000000..2cfa89a --- /dev/null +++ b/data/global/economics/welfare/global-development-assistance/welfare-oda-recieved-2019.json @@ -0,0 +1,162 @@ +{ + "metadata" : { + "name" : "Official Development Assistance (ODA) Received", + "description" : "Official Development Assistance (ODA) received per year in millions of USD.", + "units" : "$ millions", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economics","welfare","assistance"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_Official_Development_Assistance_received" + ] + }, + "data" : [ + ["country.name","welfare.oda.recieved.2019"], + ["Afghanistan (Islamic Republic of)",4284.41], + ["Albania (Republic of)",28.41], + ["Algeria (People's Democratic Republic of)",175.72], + ["Angola (Republic of)",49.54], + ["Antigua and Barbuda",27.44], + ["Argentina (Argentine Republic)",18.25], + ["Armenia (Republic of)",419.73], + ["Azerbaijan (Republic of)",120.98], + ["Bangladesh (People's Republic of)",4482.6], + ["Belarus (Republic of)",214.23], + ["Belize",37.66], + ["Benin (Republic of)",602.21], + ["Bhutan (Kingdom of)",181.41], + ["Bolivia (Plurinational State of)",716.13], + ["Bosnia and Herzegovina",464.51], + ["Botswana (Republic of)",68.86], + ["Brazil (Federative Republic of)",290.23], + ["Burkina Faso",1148.81], + ["Burundi (Republic of)",588.94], + ["Cambodia (Kingdom of)",984.07], + ["Cameroon (Republic of)",1335.21], + ["Cape Verde (Republic of)",152.53], + ["Central African Republic",753.84], + ["Chad (Republic of)",707.05], + ["Chile (Republic of)",902.53], + ["Colombia (Republic of)",902.53], + ["Comoros (Union of the)",78.24], + ["Congo (Democratic Republic of the)",3025.53], + ["Congo (Republic of the)",187.27], + ["Costa Rica (Republic of)",59.76], + ["Côte d'Ivoire (Republic of)",1201.23], + ["Cuba (Republic of)",499.66], + ["Djibouti (Republic of)",272.48], + ["Dominica (Commonwealth of)",51.39], + ["Dominican Republic",134.44], + ["Ecuador (Republic of)",525.05], + ["Egypt (Arab Republic of)",1740.59], + ["El Salvador (Republic of)",305.64], + ["Equatorial Guinea (Republic of)",64.07], + ["Eritrea (State of)",276.92], + ["Ethiopia (Federal Democratic Republic of)",4809.97], + ["Fiji (Republic of)",139.07], + ["Gabon (Gabonese Republic)",116.71], + ["Gambia (Republic of the)",194.04], + ["Georgia",496.73], + ["Ghana (Republic of)",936.32], + ["Grenada",14.68], + ["Guatemala (Republic of)",393.85], + ["Guinea (Republic of)",580.68], + ["Guinea-Bissau (Republic of)",120.51], + ["Guyana (Co-operative Republic of)",113.27], + ["Haiti (Republic of)",726.46], + ["Honduras (Republic of)",457.57], + ["India (Republic of)",2610.58], + ["Indonesia (Republic of)",-629.95], + ["Iran (Islamic Republic of)",210.4], + ["Iraq (Republic of)",2211.9], + ["Jamaica",127.07], + ["Jordan (Hashemite Kingdom of)",2797.18], + ["Kazakhstan (Republic of)",54.41], + ["Kenya (Republic of)",3250.97], + ["Kiribati (Republic of)",56.66], + ["Korea (Democratic People's Republic of)",151.29], + ["Kosovo (Republic of)",345.26], + ["Kyrgyz Republic",448.71], + ["Lao (People's Democratic Republic)",631.51], + ["Lebanon (Lebanese Republic)",1525.49], + ["Lesotho (Kingdom of)",145.98], + ["Liberia (Republic of)",597.31], + ["Libya (State of)",316.01], + ["North Macedonia (Republic of)",141.8], + ["Madagascar (Republic of)",756.17], + ["Malawi (Republic of)",1206.22], + ["Malaysia",5.99], + ["Maldives (Republic of)",72.08], + ["Mali (Republic of)",1863.21], + ["Marshall Islands (Republic of the)",65.97], + ["Mauritania (Islamic Republic of)",412.17], + ["Mauritius (Republic of)",22.18], + ["Mexico (United Mexican States)",535.79], + ["Micronesia (Federated States of)",92.54], + ["Moldova (Republic of)",342.69], + ["Mongolia",314.53], + ["Montenegro",96.94], + ["Morocco (Kingdom of)",757.86], + ["Mozambique (Republic of)",1907.78], + ["Myanmar (Union of)",2079.93], + ["Namibia (Republic of)",148.41], + ["Nauru (Republic of)",54.33], + ["Nepal (Federal Democratic Republic of)",1360.74], + ["Nicaragua (Republic of)",389.24], + ["Niger (Republic of)",1490.35], + ["Nigeria (Federal Republic of)",3517.32], + ["Pakistan (Islamic Republic of)",2170.74], + ["Palau (Republic of)",24.94], + ["Palestine (State of)",2234.33], + ["Panama (Republic of)",71.46], + ["Papua New Guinea (Independent State of)",667.34], + ["Paraguay (Republic of)",129.88], + ["Peru (Republic of)",475.9], + ["Philippines (Republic of the)",905.38], + ["Rwanda (Republic of)",1191.1], + ["Samoa (Independent State of)",123.72], + ["São Tomé and Príncipe (Democratic Republic of)",51.37], + ["Senegal (Republic of)",1443.88], + ["Serbia (Republic of)",570.7], + ["Seychelles (Republic of)",""], + ["Sierra Leone (Republic of)",594.64], + ["Solomon Islands",223.89], + ["Somalia (Federal Republic of)",1865.58], + ["South Africa (Republic of)",971.48], + ["South Sudan (Republic of)",1885.27], + ["Sri Lanka (Democratic Socialist Republic of)",197.35], + ["Saint Kitts and Nevis (Federation of)",""], + ["Saint Lucia",32.11], + ["Saint Vincent and the Grenadines",84.48], + ["Sudan (Republic of the)",1624.67], + ["Suriname (Republic of)",23.38], + ["Eswatini (Kingdom of)",73.4], + ["Syrian Arab Republic",10249.81], + ["Tajikistan (Republic of)",366.56], + ["Tanzania (United Republic of)",2153.14], + ["Thailand (Kingdom of)",-338.2], + ["Timor-Leste (Democratic Republic of)",235.93], + ["Togo (Togolese Republic)",411.62], + ["Tonga (Kingdom of)",107.95], + ["Tunisia (Republic of)",984.03], + ["Turkey (Republic of)",824.9], + ["Turkmenistan",25.36], + ["Tuvalu",36.48], + ["Uganda (Republic of)",2100.01], + ["Ukraine",1148.25], + ["Uruguay (Oriental Republic of)",""], + ["Uzbekistan (Republic of)",1156.44], + ["Vanuatu (Republic of)",130.59], + ["Venezuela (Bolivarian Republic of)",284], + ["Vietnam (Socialist Republic of)",1094.63], + ["Yemen (Republic of)",4396.52], + ["Zambia (Republic of)",976.28], + ["Zimbabwe (Republic of)",974.89] + ] +} diff --git a/data/global/economics/workforce/unemployment-rate.json b/data/global/economics/workforce/unemployment-rate.json new file mode 100644 index 0000000..977234d --- /dev/null +++ b/data/global/economics/workforce/unemployment-rate.json @@ -0,0 +1,244 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percentage of the national population that is unemployed.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["global","economic","workforce","unemployment"], + "authors" : [ + "Various government sources" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_unemployment_rate" + ] + }, + "data" : [ + ["country.name","unemployment.rate"], + ["Afghanistan (Islamic Republic of)",0.133], + ["Albania (Republic of)",0.117], + ["Algeria (People's Democratic Republic of)",0.127], + ["American Samoa",0.18], + ["Andorra (Principality of)",0.037], + ["Angola (Republic of)",0.085], + ["Anguilla",0.078], + ["Antigua and Barbuda",0.11], + ["Argentina (Argentine Republic)",0.071], + ["Armenia (Republic of)",0.148], + ["Aruba",0.077], + ["Australia (Commonwealth of)",0.034], + ["Austria (Republic of)",0.043], + ["Azerbaijan (Republic of)",0.066], + ["Bahamas (Commonwealth of the)",0.132], + ["Bahrain (Kingdom of)",0.019], + ["Bangladesh (People's Republic of)",0.052], + ["Barbados",0.104], + ["Belarus (Republic of)",0.047], + ["Belgium (Kingdom of)",0.055], + ["Belize",0.082], + ["Benin (Republic of)",0.016], + ["Bermuda",0.07], + ["Bhutan (Kingdom of)",0.043], + ["Bolivia (Plurinational State of)",0.085], + ["Bosnia and Herzegovina",0.2991], + ["Botswana (Republic of)",0.247], + ["Brazil (Federative Republic of)",0.093], + ["British Virgin Islands",0.029], + ["Brunei (Nation of the Abode of Peace)",0.076], + ["Bulgaria (Republic of)",0.043], + ["Burkina Faso",0.048], + ["Burundi (Republic of)",0.018], + ["Cambodia (Kingdom of)",0.006], + ["Cameroon (Republic of)",0.039], + ["Canada",0.049], + ["Cape Verde (Republic of)",0.154], + ["Cayman Islands",0.035], + ["Central African Republic",0.066], + ["Chad (Republic of)",0.019], + ["Chile (Republic of)",0.078], + ["China (People's Republic of)",0.054], + ["Cocos (Keeling) Islands",0.067], + ["Colombia (Republic of)",0.1126], + ["Comoros (Union of the)",0.094], + ["Congo (Republic of the)",0.23], + ["Congo (Democratic Republic of the)",0.054], + ["Cook Islands",0.131], + ["Costa Rica (Republic of)",0.22], + ["Croatia (Republic of)",0.061], + ["Cuba (Republic of)",0.028], + ["Cyprus (Republic of)",0.051], + ["Czech Republic",0.024], + ["Denmark (Kingdom of)",0.045], + ["Djibouti (Republic of)",0.284], + ["Dominica (Commonwealth of)",0.23], + ["Dominican Republic",0.085], + ["Timor-Leste (Democratic Republic of)",0.046], + ["Ecuador (Republic of)",0.049], + ["Egypt (Arab Republic of)",0.072], + ["El Salvador (Republic of)",0.059], + ["Equatorial Guinea (Republic of)",0.092], + ["Eritrea (State of)",0.08], + ["Estonia (Republic of)",0.057], + ["Eswatini (Kingdom of)",0.258], + ["Ethiopia (Federal Democratic Republic of)",0.037], + ["Faroe Islands",0.005], + ["Fiji (Republic of)",0.052], + ["Finland (Republic of)",0.067], + ["France (French Republic)",0.072], + ["French Polynesia",0.144], + ["Gabon (Gabonese Republic)",0.223], + ["Gambia (Republic of the)",0.112], + ["Georgia",0.204], + ["Germany (Federal Republic of)",0.054], + ["Ghana (Republic of)",0.047], + ["Gibraltar",0.01], + ["Greece (Hellenic Republic)",0.123], + ["Greenland",0.068], + ["Grenada",0.24], + ["Guam",0.045], + ["Guatemala (Republic of)",0.036], + ["Guernsey (Bailiwick of)",0.01], + ["Guinea (Republic of)",0.063], + ["Guinea-Bissau (Republic of)",0.068], + ["Guyana (Co-operative Republic of)",0.164], + ["Haiti (Republic of)",0.157], + ["Honduras (Republic of)",0.085], + ["Hong Kong (Special Administrative Region of China)",0.043], + ["Hungary (Republic of)",0.03], + ["Iceland (Republic of)",0.04], + ["India (Republic of)",0.078], + ["Indonesia (Republic of)",0.0583], + ["Iran (Islamic Republic of)",0.115], + ["Iraq (Republic of)",0.142], + ["Ireland",0.042], + ["Isle of Man",0.019], + ["Israel (State of)",0.033], + ["Italy (Italian Republic)",0.081], + ["Côte d'Ivoire (Republic of)",0.035], + ["Jamaica",0.06], + ["Japan",0.026], + ["Jersey (Bailiwick of)",0.016], + ["Jordan (Hashemite Kingdom of)",0.228], + ["Kazakhstan (Republic of)",0.049], + ["Kenya (Republic of)",0.057], + ["Kiribati (Republic of)",0.306], + ["Kosovo (Republic of)",0.19], + ["Kuwait (State of)",0.037], + ["Kyrgyz Republic",0.029], + ["Lao (People's Democratic Republic)",0.013], + ["Latvia (Republic of)",0.064], + ["Lebanon (Lebanese Republic)",0.145], + ["Lesotho (Kingdom of)",0.246], + ["Liberia (Republic of)",0.041], + ["Libya (State of)",0.196], + ["Liechtenstein (Principality of)",0.015], + ["Lithuania (Republic of)",0.058], + ["Luxembourg (Grand Duchy of)",0.042], + ["Macao (Special Administrative Region of China)",0.037], + ["Madagascar (Republic of)",0.026], + ["Malawi (Republic of)",0.07], + ["Malaysia",0.038], + ["Maldives (Republic of)",0.061], + ["Mali (Republic of)",0.077], + ["Malta (Republic of)",0.03], + ["Marshall Islands (Republic of the)",0.36], + ["Mauritania (Islamic Republic of)",0.115], + ["Mauritius (Republic of)",0.087], + ["Mayotte (Department of)",0.3], + ["Mexico (United Mexican States)",0.033], + ["Micronesia (Federated States of)",0.162], + ["Moldova (Republic of)",0.03], + ["Monaco (Principality of)",0.02], + ["Mongolia",0.071], + ["Montenegro",0.199], + ["Montserrat",0.056], + ["Morocco (Kingdom of)",0.112], + ["Mozambique (Republic of)",0.04], + ["Myanmar (Union of)",0.022], + ["Namibia (Republic of)",0.217], + ["Nauru (Republic of)",0.23], + ["Nepal (Federal Democratic Republic of)",0.051], + ["Netherlands (Kingdom of the)",0.036], + ["Sint Maarten (Netherlands)",0.212], + ["New Caledonia",0.166], + ["New Zealand",0.033], + ["Nicaragua (Republic of)",0.06], + ["Niger (Republic of)",0.008], + ["Nigeria (Federal Republic of)",0.333], + ["Niue",0.107], + ["Korea (Democratic People's Republic of)",0.027], + ["North Macedonia (Republic of)",0.148], + ["Northern Mariana Islands (Commonwealth of the)",0.112], + ["Norway (Kingdom of)",0.033], + ["Oman (Sultanate of)",0.031], + ["Pakistan (Islamic Republic of)",0.044], + ["Palau (Republic of)",0.017], + ["Palestine (State of)",0.24], + ["Panama (Republic of)",0.121], + ["Papua New Guinea (Independent State of)",0.028], + ["Paraguay (Republic of)",0.057], + ["Peru (Republic of)",0.068], + ["Philippines (Republic of the)",0.06], + ["Poland (Republic of)",0.027], + ["Portugal (Portuguese Republic)",0.061], + ["Puerto Rico (Commonwealth of)",0.058], + ["Qatar (State of)",0.003], + ["Romania",0.053], + ["Russian Federation",0.039], + ["Rwanda (Republic of)",0.165], + ["Saint Helena",0.02], + ["Saint Kitts and Nevis (Federation of)",0.051], + ["Saint Lucia",0.2015], + ["Saint Pierre and Miquelon",0.087], + ["Saint Vincent and the Grenadines",0.188], + ["Samoa (Independent State of)",0.098], + ["San Marino (Republic of)",0.08], + ["São Tomé and Príncipe (Democratic Republic of)",0.159], + ["Saudi Arabia (Kingdom of)",0.097], + ["Senegal (Republic of)",0.037], + ["Serbia (Republic of)",0.106], + ["Sierra Leone (Republic of)",0.053], + ["Singapore (Republic of)",0.021], + ["Slovakia (Slovak Republic)",0.06], + ["Slovenia (Republic of)",0.038], + ["Somalia (Federal Republic of)",0.199], + ["South Africa (Republic of)",0.329], + ["Korea (Republic of)",0.029], + ["South Sudan (Republic of)",0.139], + ["Spain (Kingdom of)",0.1248], + ["Sri Lanka (Democratic Socialist Republic of)",0.043], + ["Sudan (Republic of the)",0.198], + ["Suriname (Republic of)",0.101], + ["Sweden (Kingdom of)",0.077], + ["Switzerland (Swiss Confederation)",0.043], + ["Syrian Arab Republic",0.106], + ["Taiwan",0.0373], + ["Tajikistan (Republic of)",0.078], + ["Tanzania (United Republic of)",0.026], + ["Thailand (Kingdom of)",0.0153], + ["Togo (Togolese Republic)",0.04], + ["Tonga (Kingdom of)",0.04], + ["Trinidad and Tobago (Republic of)",0.048], + ["Tunisia (Republic of)",0.161], + ["Turkey (Republic of)",0.103], + ["Turkmenistan",0.051], + ["Uganda (Republic of)",0.029], + ["Ukraine",0.099], + ["United Arab Emirates",0.034], + ["United Kingdom (of Great Britain & Northern Ireland)",0.035], + ["United States (of America)",0.035], + ["Uruguay (Oriental Republic of)",0.084], + ["Uzbekistan (Republic of)",0.089], + ["Vanuatu (Republic of)",0.022], + ["Venezuela (Bolivarian Republic of)",0.064], + ["Vietnam (Socialist Republic of)",0.0246], + ["United States Virgin Islands",0.133], + ["Wallis and Futuna",0.088], + ["Yemen (Republic of)",0.136], + ["Zambia (Republic of)",0.13], + ["Zimbabwe (Republic of)",0.052] + ] +} diff --git a/data/global/education/education-index.json b/data/global/education/education-index.json new file mode 100644 index 0000000..9346793 --- /dev/null +++ b/data/global/education/education-index.json @@ -0,0 +1,211 @@ +{ + "metadata" : { + "name" : "Education Index", + "description" : "Education Index combines average adult years of schooling with expected years of schooling for students under the age of 25.", + "units" : "index", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "education", + "tags" : ["global","education","development"], + "authors" : [ + "United Nations (UN) Development Programme (UNDP)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Education_Index" + ] + }, + "data" : [ + ["country.name","education.index"], + ["Afghanistan (Islamic Republic of)",0.414], + ["Albania (Republic of)",0.746], + ["Algeria (People's Democratic Republic of)",0.672], + ["Andorra (Principality of)",0.72], + ["Angola (Republic of)",0.5], + ["Antigua and Barbuda",0.665], + ["Argentina (Argentine Republic)",0.855], + ["Armenia (Republic of)",0.74], + ["Australia (Commonwealth of)",0.924], + ["Austria (Republic of)",0.865], + ["Azerbaijan (Republic of)",0.711], + ["Bahamas (Commonwealth of the)",0.74], + ["Bahrain (Kingdom of)",0.769], + ["Bangladesh (People's Republic of)",0.529], + ["Barbados",0.782], + ["Belarus (Republic of)",0.838], + ["Belgium (Kingdom of)",0.902], + ["Belize",0.695], + ["Benin (Republic of)",0.478], + ["Bhutan (Kingdom of)",0.496], + ["Bolivia (Plurinational State of)",0.695], + ["Bosnia and Herzegovina",0.711], + ["Botswana (Republic of)",0.676], + ["Brazil (Federative Republic of)",0.694], + ["Brunei (Nation of the Abode of Peace)",0.702], + ["Bulgaria (Republic of)",0.779], + ["Burkina Faso",0.312], + ["Burundi (Republic of)",0.417], + ["Cape Verde (Republic of)",0.562], + ["Cambodia (Kingdom of)",0.484], + ["Cameroon (Republic of)",0.547], + ["Canada",0.894], + ["Central African Republic",0.353], + ["Chad (Republic of)",0.288], + ["Chile (Republic of)",0.81], + ["China (People's Republic of)",0.66], + ["Colombia (Republic of)",0.682], + ["Comoros (Union of the)",0.482], + ["Congo (Republic of the)",0.543], + ["Congo (Democratic Republic of the)",0.496], + ["Costa Rica (Republic of)",0.726], + ["Croatia (Republic of)",0.805], + ["Cuba (Republic of)",0.79], + ["Cyprus (Republic of)",0.827], + ["Czech Republic",0.89], + ["Côte d'Ivoire (Republic of)",0.453], + ["Denmark (Kingdom of)",0.92], + ["Djibouti (Republic of)",0.325], + ["Dominica (Commonwealth of)",0.632], + ["Dominican Republic",0.666], + ["Ecuador (Republic of)",0.702], + ["Egypt (Arab Republic of)",0.618], + ["El Salvador (Republic of)",0.555], + ["Equatorial Guinea (Republic of)",0.467], + ["Eritrea (State of)",0.269], + ["Estonia (Republic of)",0.882], + ["Eswatini (Kingdom of)",0.557], + ["Ethiopia (Federal Democratic Republic of)",0.341], + ["Fiji (Republic of)",0.764], + ["Finland (Republic of)",0.927], + ["France (French Republic)",0.817], + ["Gabon (Gabonese Republic)",0.65], + ["Gambia (Republic of the)",0.406], + ["Georgia",0.862], + ["Germany (Federal Republic of)",0.943], + ["Ghana (Republic of)",0.563], + ["Greece (Hellenic Republic)",0.849], + ["Grenada",0.77], + ["Guatemala (Republic of)",0.519], + ["Guinea (Republic of)",0.354], + ["Guinea-Bissau (Republic of)",0.414], + ["Guyana (Co-operative Republic of)",0.601], + ["Haiti (Republic of)",0.456], + ["Honduras (Republic of)",0.499], + ["Hong Kong (Special Administrative Region of China)",0.88], + ["Hungary (Republic of)",0.821], + ["Iceland (Republic of)",0.926], + ["India (Republic of)",0.555], + ["Indonesia (Republic of)",0.65], + ["Iran (Islamic Republic of)",0.756], + ["Iraq (Republic of)",0.557], + ["Ireland",0.922], + ["Israel (State of)",0.883], + ["Italy (Italian Republic)",0.793], + ["Jamaica",0.689], + ["Japan",0.851], + ["Jordan (Hashemite Kingdom of)",0.667], + ["Kazakhstan (Republic of)",0.84], + ["Kenya (Republic of)",0.534], + ["Kiribati (Republic of)",0.594], + ["Korea (Republic of)",0.865], + ["Kuwait (State of)",0.638], + ["Kyrgyz Republic",0.73], + ["Lao (People's Democratic Republic)",0.481], + ["Latvia (Republic of)",0.883], + ["Lebanon (Lebanese Republic)",0.604], + ["Lesotho (Kingdom of)",0.532], + ["Liberia (Republic of)",0.426], + ["Libya (State of)",0.61], + ["Liechtenstein (Principality of)",0.832], + ["Lithuania (Republic of)",0.898], + ["Luxembourg (Grand Duchy of)",0.806], + ["Madagascar (Republic of)",0.486], + ["Malawi (Republic of)",0.47], + ["Malaysia",0.726], + ["Maldives (Republic of)",0.573], + ["Mali (Republic of)",0.286], + ["Malta (Republic of)",0.825], + ["Marshall Islands (Republic of the)",0.707], + ["Mauritania (Islamic Republic of)",0.396], + ["Mauritius (Republic of)",0.736], + ["Mexico (United Mexican States)",0.703], + ["Micronesia (Federated States of)",0.581], + ["Moldova (Republic of)",0.711], + ["Mongolia",0.736], + ["Montenegro",0.803], + ["Morocco (Kingdom of)",0.569], + ["Mozambique (Republic of)",0.395], + ["Myanmar (Union of)",0.464], + ["Namibia (Republic of)",0.584], + ["Nepal (Federal Democratic Republic of)",0.521], + ["Netherlands (Kingdom of the)",0.914], + ["New Zealand",0.926], + ["Nicaragua (Republic of)",0.573], + ["Niger (Republic of)",0.249], + ["Nigeria (Federal Republic of)",0.499], + ["North Macedonia (Republic of)",0.704], + ["Norway (Kingdom of)",0.93], + ["Oman (Sultanate of)",0.718], + ["Pakistan (Islamic Republic of)",0.402], + ["Palau (Republic of)",0.855], + ["Palestine (State of)",0.678], + ["Panama (Republic of)",0.7], + ["Papua New Guinea (Independent State of)",0.439], + ["Paraguay (Republic of)",0.638], + ["Peru (Republic of)",0.74], + ["Philippines (Republic of the)",0.678], + ["Poland (Republic of)",0.869], + ["Portugal (Portuguese Republic)",0.768], + ["Qatar (State of)",0.659], + ["Romania",0.765], + ["Russian Federation",0.823], + ["Rwanda (Republic of)",0.458], + ["Saint Kitts and Nevis (Federation of)",0.673], + ["Saint Lucia",0.672], + ["Saint Vincent and the Grenadines",0.684], + ["Samoa (Independent State of)",0.713], + ["São Tomé and Príncipe (Democratic Republic of)",0.567], + ["Saudi Arabia (Kingdom of)",0.789], + ["Senegal (Republic of)",0.345], + ["Serbia (Republic of)",0.783], + ["Seychelles (Republic of)",0.726], + ["Sierra Leone (Republic of)",0.406], + ["Singapore (Republic of)",0.924], + ["Slovakia (Slovak Republic)",0.826], + ["Slovenia (Republic of)",0.91], + ["Solomon Islands",0.474], + ["South Africa (Republic of)",0.724], + ["South Sudan (Republic of)",0.307], + ["Spain (Kingdom of)",0.831], + ["Sri Lanka (Democratic Socialist Republic of)",0.746], + ["Sudan (Republic of the)",0.345], + ["Suriname (Republic of)",0.675], + ["Sweden (Kingdom of)",0.918], + ["Switzerland (Swiss Confederation)",0.9], + ["Syrian Arab Republic",0.416], + ["Tajikistan (Republic of)",0.682], + ["Tanzania (United Republic of)",0.429], + ["Thailand (Kingdom of)",0.682], + ["Timor-Leste (Democratic Republic of)",0.51], + ["Togo (Togolese Republic)",0.517], + ["Tonga (Kingdom of)",0.775], + ["Trinidad and Tobago (Republic of)",0.728], + ["Tunisia (Republic of)",0.661], + ["Turkey (Republic of)",0.731], + ["Turkmenistan",0.653], + ["Uganda (Republic of)",0.523], + ["Ukraine",0.799], + ["United Arab Emirates",0.802], + ["United Kingdom (of Great Britain & Northern Ireland)",0.928], + ["United States (of America)",0.9], + ["Uruguay (Oriental Republic of)",0.765], + ["Uzbekistan (Republic of)",0.729], + ["Vanuatu (Republic of)",0.561], + ["Venezuela (Bolivarian Republic of)",0.7], + ["Vietnam (Socialist Republic of)",0.63], + ["Yemen (Republic of)",0.35], + ["Zambia (Republic of)",0.557], + ["Zimbabwe (Republic of)",0.587] + ] +} diff --git a/data/global/education/literacy-rate/literacy-rate-female.json b/data/global/education/literacy-rate/literacy-rate-female.json new file mode 100644 index 0000000..02632d4 --- /dev/null +++ b/data/global/education/literacy-rate/literacy-rate-female.json @@ -0,0 +1,227 @@ +{ + "metadata" : { + "name" : "Female Literacy Rate", + "description" : "Percentage of the female population who are literate.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "education", + "tags" : ["global","education","literacy","female","gender"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_literacy_rate" + ] + }, + "data" : [ + ["country.name","literacy.rate.female"], + ["Afghanistan (Islamic Republic of)",0.226], + ["Albania (Republic of)",0.978], + ["Algeria (People's Democratic Republic of)",0.753], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.607], + ["Antigua and Barbuda",0.994], + ["Argentina (Argentine Republic)",0.991], + ["Armenia (Republic of)",0.997], + ["Australia (Commonwealth of)",null], + ["Austria (Republic of)",null], + ["Azerbaijan (Republic of)",0.997], + ["Bahamas (Commonwealth of the)",null], + ["Bahrain (Kingdom of)",0.949], + ["Bangladesh (People's Republic of)",0.7282], + ["Barbados",0.996], + ["Belarus (Republic of)",0.999], + ["Belgium (Kingdom of)",null], + ["Belize",null], + ["Benin (Republic of)",0.311], + ["Bhutan (Kingdom of)",0.571], + ["Bolivia (Plurinational State of)",0.886], + ["Bosnia and Herzegovina",0.975], + ["Botswana (Republic of)",0.889], + ["Brazil (Federative Republic of)",0.934], + ["Brunei (Nation of the Abode of Peace)",0.934], + ["Bulgaria (Republic of)",0.981], + ["Burkina Faso",0.31], + ["Burundi (Republic of)",0.612], + ["Cape Verde (Republic of)",0.82], + ["Cambodia (Kingdom of)",0.75], + ["Cameroon (Republic of)",0.716], + ["Canada",null], + ["Central African Republic",0.258], + ["Chad (Republic of)",0.14], + ["Chile (Republic of)",0.963], + ["China (People's Republic of)",0.952], + ["Colombia (Republic of)",0.959], + ["Comoros (Union of the)",0.53], + ["Congo (Republic of the)",0.746], + ["Congo (Democratic Republic of the)",0.665], + ["Costa Rica (Republic of)",0.979], + ["Côte d'Ivoire (Republic of)",0.867], + ["Croatia (Republic of)",0.989], + ["Cuba (Republic of)",0.998], + ["Cyprus (Republic of)",0.987], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",null], + ["Djibouti (Republic of)",null], + ["Dominica (Commonwealth of)",null], + ["Dominican Republic",0.938], + ["Ecuador (Republic of)",0.925], + ["Egypt (Arab Republic of)",0.655], + ["El Salvador (Republic of)",0.873], + ["Equatorial Guinea (Republic of)",0.93], + ["Eritrea (State of)",0.689], + ["Estonia (Republic of)",0.998], + ["Ethiopia (Federal Democratic Republic of)",0.444], + ["Fiji (Republic of)",0.991], + ["Finland (Republic of)",null], + ["France (French Republic)",null], + ["Gabon (Gabonese Republic)",0.834], + ["Gambia (Republic of the)",0.416], + ["Georgia",0.995], + ["Germany (Federal Republic of)",null], + ["Ghana (Republic of)",0.745], + ["Greece (Hellenic Republic)",0.974], + ["Grenada",0.986], + ["Guatemala (Republic of)",0.767], + ["Guinea (Republic of)",0.277], + ["Guinea-Bissau (Republic of)",0.483], + ["Guyana (Co-operative Republic of)",0.898], + ["Haiti (Republic of)",0.583], + ["Honduras (Republic of)",0.887], + ["Hungary (Republic of)",0.99], + ["Iceland (Republic of)",null], + ["India (Republic of)",0.703], + ["Indonesia (Republic of)",0.946], + ["Iran (Islamic Republic of)",0.808], + ["Iraq (Republic of)",0.799], + ["Ireland",null], + ["Israel (State of)",0.968], + ["Italy (Italian Republic)",0.99], + ["Jamaica",0.931], + ["Japan",null], + ["Jordan (Hashemite Kingdom of)",0.978], + ["Kazakhstan (Republic of)",0.997], + ["Kenya (Republic of)",0.782], + ["Kiribati (Republic of)",null], + ["Korea (Democratic People's Republic of)",1], + ["Korea (Republic of)",null], + ["Kuwait (State of)",0.954], + ["Kyrgyz Republic",0.995], + ["Lao (People's Democratic Republic)",0.794], + ["Latvia (Republic of)",0.999], + ["Lebanon (Lebanese Republic)",0.933], + ["Lesotho (Kingdom of)",0.883], + ["Liberia (Republic of)",0.341], + ["Libya (State of)",0.856], + ["Liechtenstein (Principality of)",null], + ["Lithuania (Republic of)",0.998], + ["Luxembourg (Grand Duchy of)",null], + ["North Macedonia (Republic of)",0.976], + ["Madagascar (Republic of)",0.751], + ["Malawi (Republic of)",0.552], + ["Malaysia",0.936], + ["Maldives (Republic of)",0.981], + ["Mali (Republic of)",0.257], + ["Malta (Republic of)",0.96], + ["Marshall Islands (Republic of the)",0.982], + ["Mauritania (Islamic Republic of)",0.434], + ["Mauritius (Republic of)",0.894], + ["Mexico (United Mexican States)",0.945], + ["Micronesia (Federated States of)",null], + ["Moldova (Republic of)",0.991], + ["Monaco (Principality of)",null], + ["Mongolia",0.992], + ["Montenegro",0.983], + ["Morocco (Kingdom of)",0.646], + ["Mozambique (Republic of)",0.503], + ["Myanmar (Union of)",0.863], + ["Namibia (Republic of)",0.914], + ["Nauru (Republic of)",null], + ["Nepal (Federal Democratic Republic of)",0.597], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",0.828], + ["Niger (Republic of)",0.267], + ["Nigeria (Federal Republic of)",0.527], + ["Norway (Kingdom of)",null], + ["Oman (Sultanate of)",0.927], + ["Pakistan (Islamic Republic of)",0.465], + ["Palau (Republic of)",0.963], + ["Panama (Republic of)",0.954], + ["Papua New Guinea (Independent State of)",0.628], + ["Paraguay (Republic of)",0.942], + ["Peru (Republic of)",0.92], + ["Philippines (Republic of the)",0.969], + ["Poland (Republic of)",0.997], + ["Portugal (Portuguese Republic)",0.951], + ["Palestine (State of)",null], + ["Qatar (State of)",0.947], + ["Romania",0.986], + ["Russian Federation",0.997], + ["Rwanda (Republic of)",0.694], + ["Saint Kitts and Nevis (Federation of)",null], + ["Saint Lucia",null], + ["Saint Vincent and the Grenadines",null], + ["Samoa (Independent State of)",0.992], + ["San Marino (Republic of)",0.999], + ["São Tomé and Príncipe (Democratic Republic of)",0.895], + ["Saudi Arabia (Kingdom of)",0.96], + ["Senegal (Republic of)",0.398], + ["Serbia (Republic of)",0.991], + ["Seychelles (Republic of)",0.964], + ["Sierra Leone (Republic of)",0.398], + ["Singapore (Republic of)",0.961], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",0.997], + ["Solomon Islands",null], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.945], + ["South Sudan (Republic of)",0.289], + ["Spain (Kingdom of)",0.982], + ["Sri Lanka (Democratic Socialist Republic of)",0.916], + ["Sudan (Republic of the)",0.561], + ["Suriname (Republic of)",0.927], + ["Eswatini (Kingdom of)",0.885], + ["Sweden (Kingdom of)",null], + ["Switzerland (Swiss Confederation)",null], + ["Syrian Arab Republic",0.81], + ["Tajikistan (Republic of)",0.997], + ["Tanzania (United Republic of)",0.731], + ["Thailand (Kingdom of)",0.924], + ["Timor-Leste (Democratic Republic of)",0.642], + ["Togo (Togolese Republic)",0.551], + ["Tonga (Kingdom of)",0.995], + ["Trinidad and Tobago (Republic of)",0.987], + ["Tunisia (Republic of)",0.742], + ["Turkey (Republic of)",0.944], + ["Turkmenistan",0.996], + ["Tuvalu",null], + ["Uganda (Republic of)",0.708], + ["Ukraine",0.997], + ["United Arab Emirates",0.969], + ["United Kingdom (of Great Britain & Northern Ireland)",null], + ["United States (of America)",null], + ["Uruguay (Oriental Republic of)",0.99], + ["Uzbekistan (Republic of)",1], + ["Vanuatu (Republic of)",0.867], + ["Venezuela (Bolivarian Republic of)",0.972], + ["Vietnam (Socialist Republic of)",0.946], + ["Yemen (Republic of)",0.55], + ["Zambia (Republic of)",0.831], + ["Zimbabwe (Republic of)",0.846], + ["Aruba",0.975], + ["Cayman Islands",0.99], + ["Guadeloupe",0.966], + ["Guam",0.998], + ["Kosovo (Republic of)",0.875], + ["Macao (Special Administrative Region of China)",0.946], + ["Martinique",0.964], + ["New Caledonia",0.965], + ["Puerto Rico (Commonwealth of)",0.938], + ["Réunion",0.945], + ["Taiwan",0.9769] + ] +} diff --git a/data/global/education/literacy-rate/literacy-rate-male.json b/data/global/education/literacy-rate/literacy-rate-male.json new file mode 100644 index 0000000..f65af90 --- /dev/null +++ b/data/global/education/literacy-rate/literacy-rate-male.json @@ -0,0 +1,227 @@ +{ + "metadata" : { + "name" : "Male Literacy Rate", + "description" : "Percentage of the male population who are literate.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "education", + "tags" : ["global","education","literacy","male","gender"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_literacy_rate" + ] + }, + "data" : [ + ["country.name","literacy.rate.male"], + ["Afghanistan (Islamic Republic of)",0.521], + ["Albania (Republic of)",0.985], + ["Algeria (People's Democratic Republic of)",0.874], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.82], + ["Antigua and Barbuda",0.984], + ["Argentina (Argentine Republic)",0.989], + ["Armenia (Republic of)",0.998], + ["Australia (Commonwealth of)",null], + ["Austria (Republic of)",null], + ["Azerbaijan (Republic of)",0.999], + ["Bahamas (Commonwealth of the)",null], + ["Bahrain (Kingdom of)",0.999], + ["Bangladesh (People's Republic of)",0.7656], + ["Barbados",0.996], + ["Belarus (Republic of)",0.999], + ["Belgium (Kingdom of)",null], + ["Belize",null], + ["Benin (Republic of)",0.54], + ["Bhutan (Kingdom of)",0.75], + ["Bolivia (Plurinational State of)",0.965], + ["Bosnia and Herzegovina",0.995], + ["Botswana (Republic of)",0.88], + ["Brazil (Federative Republic of)",0.93], + ["Brunei (Nation of the Abode of Peace)",0.981], + ["Bulgaria (Republic of)",0.987], + ["Burkina Faso",0.492], + ["Burundi (Republic of)",0.763], + ["Cape Verde (Republic of)",0.917], + ["Cambodia (Kingdom of)",0.865], + ["Cameroon (Republic of)",0.826], + ["Canada",null], + ["Central African Republic",0.495], + ["Chad (Republic of)",0.313], + ["Chile (Republic of)",0.963], + ["China (People's Republic of)",0.985], + ["Colombia (Republic of)",0.954], + ["Comoros (Union of the)",0.646], + ["Congo (Republic of the)",0.861], + ["Congo (Democratic Republic of the)",0.885], + ["Costa Rica (Republic of)",0.978], + ["Côte d'Ivoire (Republic of)",0.931], + ["Croatia (Republic of)",0.997], + ["Cuba (Republic of)",0.999], + ["Cyprus (Republic of)",0.995], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",null], + ["Djibouti (Republic of)",null], + ["Dominica (Commonwealth of)",null], + ["Dominican Republic",0.938], + ["Ecuador (Republic of)",0.948], + ["Egypt (Arab Republic of)",0.765], + ["El Salvador (Republic of)",0.913], + ["Equatorial Guinea (Republic of)",0.974], + ["Eritrea (State of)",0.844], + ["Estonia (Republic of)",0.998], + ["Ethiopia (Federal Democratic Republic of)",0.572], + ["Fiji (Republic of)",0.991], + ["Finland (Republic of)",null], + ["France (French Republic)",null], + ["Gabon (Gabonese Republic)",0.859], + ["Gambia (Republic of the)",0.618], + ["Georgia",0.997], + ["Germany (Federal Republic of)",null], + ["Ghana (Republic of)",0.835], + ["Greece (Hellenic Republic)",0.985], + ["Grenada",0.986], + ["Guatemala (Republic of)",0.853], + ["Guinea (Republic of)",0.544], + ["Guinea-Bissau (Republic of)",0.718], + ["Guyana (Co-operative Republic of)",0.872], + ["Haiti (Republic of)",0.653], + ["Honduras (Republic of)",0.882], + ["Hungary (Republic of)",0.991], + ["Iceland (Republic of)",null], + ["India (Republic of)",0.847], + ["Indonesia (Republic of)",0.974], + ["Iran (Islamic Republic of)",0.904], + ["Iraq (Republic of)",0.912], + ["Ireland",null], + ["Israel (State of)",0.987], + ["Italy (Italian Republic)",0.994], + ["Jamaica",0.84], + ["Japan",null], + ["Jordan (Hashemite Kingdom of)",0.986], + ["Kazakhstan (Republic of)",0.998], + ["Kenya (Republic of)",0.85], + ["Kiribati (Republic of)",null], + ["Korea (Democratic People's Republic of)",1], + ["Korea (Republic of)",null], + ["Kuwait (State of)",0.971], + ["Kyrgyz Republic",0.997], + ["Lao (People's Democratic Republic)",0.9], + ["Latvia (Republic of)",0.999], + ["Lebanon (Lebanese Republic)",0.969], + ["Lesotho (Kingdom of)",0.701], + ["Liberia (Republic of)",0.627], + ["Libya (State of)",0.967], + ["Liechtenstein (Principality of)",null], + ["Lithuania (Republic of)",0.998], + ["Luxembourg (Grand Duchy of)",null], + ["North Macedonia (Republic of)",0.991], + ["Madagascar (Republic of)",0.784], + ["Malawi (Republic of)",0.698], + ["Malaysia",0.962], + ["Maldives (Republic of)",0.973], + ["Mali (Republic of)",0.462], + ["Malta (Republic of)",0.93], + ["Marshall Islands (Republic of the)",0.983], + ["Mauritania (Islamic Republic of)",0.637], + ["Mauritius (Republic of)",0.934], + ["Mexico (United Mexican States)",0.961], + ["Micronesia (Federated States of)",null], + ["Moldova (Republic of)",0.997], + ["Monaco (Principality of)",null], + ["Mongolia",0.991], + ["Montenegro",0.995], + ["Morocco (Kingdom of)",0.833], + ["Mozambique (Republic of)",0.726], + ["Myanmar (Union of)",0.924], + ["Namibia (Republic of)",0.916], + ["Nauru (Republic of)",null], + ["Nepal (Federal Democratic Republic of)",0.786], + ["Netherlands (Kingdom of the)",null], + ["New Zealand",null], + ["Nicaragua (Republic of)",0.824], + ["Niger (Republic of)",0.436], + ["Nigeria (Federal Republic of)",0.713], + ["Norway (Kingdom of)",null], + ["Oman (Sultanate of)",0.97], + ["Pakistan (Islamic Republic of)",0.693], + ["Palau (Republic of)",0.968], + ["Panama (Republic of)",0.988], + ["Papua New Guinea (Independent State of)",0.656], + ["Paraguay (Republic of)",0.949], + ["Peru (Republic of)",0.97], + ["Philippines (Republic of the)",0.957], + ["Poland (Republic of)",0.999], + ["Portugal (Portuguese Republic)",0.974], + ["Palestine (State of)",null], + ["Qatar (State of)",0.924], + ["Romania",0.991], + ["Russian Federation",0.997], + ["Rwanda (Republic of)",0.776], + ["Saint Kitts and Nevis (Federation of)",null], + ["Saint Lucia",null], + ["Saint Vincent and the Grenadines",null], + ["Samoa (Independent State of)",0.99], + ["San Marino (Republic of)",0.999], + ["São Tomé and Príncipe (Democratic Republic of)",0.962], + ["Saudi Arabia (Kingdom of)",0.986], + ["Senegal (Republic of)",0.648], + ["Serbia (Republic of)",0.999], + ["Seychelles (Republic of)",0.954], + ["Sierra Leone (Republic of)",0.516], + ["Singapore (Republic of)",0.989], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",0.997], + ["Solomon Islands",null], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",0.955], + ["South Sudan (Republic of)",0.403], + ["Spain (Kingdom of)",0.99], + ["Sri Lanka (Democratic Socialist Republic of)",0.93], + ["Sudan (Republic of the)",0.654], + ["Suriname (Republic of)",0.961], + ["Eswatini (Kingdom of)",0.883], + ["Sweden (Kingdom of)",null], + ["Switzerland (Swiss Confederation)",null], + ["Syrian Arab Republic",0.917], + ["Tajikistan (Republic of)",0.998], + ["Tanzania (United Republic of)",0.832], + ["Thailand (Kingdom of)",0.952], + ["Timor-Leste (Democratic Republic of)",0.719], + ["Togo (Togolese Republic)",0.8], + ["Tonga (Kingdom of)",0.994], + ["Trinidad and Tobago (Republic of)",0.992], + ["Tunisia (Republic of)",0.896], + ["Turkey (Republic of)",0.991], + ["Turkmenistan",0.998], + ["Tuvalu",null], + ["Uganda (Republic of)",0.827], + ["Ukraine",0.998], + ["United Arab Emirates",0.98], + ["United Kingdom (of Great Britain & Northern Ireland)",null], + ["United States (of America)",null], + ["Uruguay (Oriental Republic of)",0.985], + ["Uzbekistan (Republic of)",1], + ["Vanuatu (Republic of)",0.883], + ["Venezuela (Bolivarian Republic of)",0.97], + ["Vietnam (Socialist Republic of)",0.97], + ["Yemen (Republic of)",0.851], + ["Zambia (Republic of)",0.906], + ["Zimbabwe (Republic of)",0.885], + ["Aruba",0.975], + ["Cayman Islands",0.987], + ["Guadeloupe",0.964], + ["Guam",0.998], + ["Kosovo (Republic of)",0.966], + ["Macao (Special Administrative Region of China)",0.98], + ["Martinique",0.976], + ["New Caledonia",0.973], + ["Puerto Rico (Commonwealth of)",0.928], + ["Réunion",0.932], + ["Taiwan",0.9973] + ] +} diff --git a/data/global/education/literacy-rate/literacy-rate.json b/data/global/education/literacy-rate/literacy-rate.json new file mode 100644 index 0000000..a22686e --- /dev/null +++ b/data/global/education/literacy-rate/literacy-rate.json @@ -0,0 +1,227 @@ +{ + "metadata" : { + "name" : "Literacy Rate", + "description" : "Percentage of the population who are literate.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "education", + "tags" : ["global","education","literacy"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_literacy_rate" + ] + }, + "data" : [ + ["country.name","literacy.rate"], + ["Afghanistan (Islamic Republic of)",0.373], + ["Albania (Republic of)",0.981], + ["Algeria (People's Democratic Republic of)",0.814], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.711], + ["Antigua and Barbuda",0.99], + ["Argentina (Argentine Republic)",0.99], + ["Armenia (Republic of)",0.998], + ["Australia (Commonwealth of)",0.99], + ["Austria (Republic of)",0.98], + ["Azerbaijan (Republic of)",0.998], + ["Bahamas (Commonwealth of the)",0.96], + ["Bahrain (Kingdom of)",0.975], + ["Bangladesh (People's Republic of)",0.7466], + ["Barbados",0.996], + ["Belarus (Republic of)",0.999], + ["Belgium (Kingdom of)",0.99], + ["Belize",0.83], + ["Benin (Republic of)",0.424], + ["Bhutan (Kingdom of)",0.666], + ["Bolivia (Plurinational State of)",0.925], + ["Bosnia and Herzegovina",0.985], + ["Botswana (Republic of)",0.885], + ["Brazil (Federative Republic of)",0.932], + ["Brunei (Nation of the Abode of Peace)",0.972], + ["Bulgaria (Republic of)",0.984], + ["Burkina Faso",0.393], + ["Burundi (Republic of)",0.684], + ["Cape Verde (Republic of)",0.868], + ["Cambodia (Kingdom of)",0.805], + ["Cameroon (Republic of)",0.771], + ["Canada",0.99], + ["Central African Republic",0.374], + ["Chad (Republic of)",0.223], + ["Chile (Republic of)",0.963], + ["China (People's Republic of)",0.968], + ["Colombia (Republic of)",0.956], + ["Comoros (Union of the)",0.588], + ["Congo (Republic of the)",0.803], + ["Congo (Democratic Republic of the)",0.77], + ["Costa Rica (Republic of)",0.979], + ["Côte d'Ivoire (Republic of)",0.899], + ["Croatia (Republic of)",0.993], + ["Cuba (Republic of)",0.998], + ["Cyprus (Republic of)",0.991], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",0.99], + ["Djibouti (Republic of)",null], + ["Dominica (Commonwealth of)",0.92], + ["Dominican Republic",0.938], + ["Ecuador (Republic of)",0.936], + ["Egypt (Arab Republic of)",0.712], + ["El Salvador (Republic of)",0.891], + ["Equatorial Guinea (Republic of)",0.953], + ["Eritrea (State of)",0.766], + ["Estonia (Republic of)",0.998], + ["Ethiopia (Federal Democratic Republic of)",0.518], + ["Fiji (Republic of)",0.991], + ["Finland (Republic of)",1], + ["France (French Republic)",0.99], + ["Gabon (Gabonese Republic)",0.847], + ["Gambia (Republic of the)",0.508], + ["Georgia",0.996], + ["Germany (Federal Republic of)",0.99], + ["Ghana (Republic of)",0.79], + ["Greece (Hellenic Republic)",0.979], + ["Grenada",0.986], + ["Guatemala (Republic of)",0.808], + ["Guinea (Republic of)",0.396], + ["Guinea-Bissau (Republic of)",0.599], + ["Guyana (Co-operative Republic of)",0.885], + ["Haiti (Republic of)",0.617], + ["Honduras (Republic of)",0.885], + ["Hungary (Republic of)",0.991], + ["Iceland (Republic of)",0.99], + ["India (Republic of)",0.777], + ["Indonesia (Republic of)",0.96], + ["Iran (Islamic Republic of)",0.855], + ["Iraq (Republic of)",0.856], + ["Ireland",0.99], + ["Israel (State of)",0.978], + ["Italy (Italian Republic)",0.992], + ["Jamaica",0.887], + ["Japan",0.99], + ["Jordan (Hashemite Kingdom of)",0.982], + ["Kazakhstan (Republic of)",0.998], + ["Kenya (Republic of)",0.815], + ["Kiribati (Republic of)",null], + ["Korea (Democratic People's Republic of)",1], + ["Korea (Republic of)",0.98], + ["Kuwait (State of)",0.965], + ["Kyrgyz Republic",0.996], + ["Lao (People's Democratic Republic)",0.847], + ["Latvia (Republic of)",0.999], + ["Lebanon (Lebanese Republic)",0.951], + ["Lesotho (Kingdom of)",0.794], + ["Liberia (Republic of)",0.483], + ["Libya (State of)",0.91], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.998], + ["Luxembourg (Grand Duchy of)",1], + ["North Macedonia (Republic of)",0.984], + ["Madagascar (Republic of)",0.767], + ["Malawi (Republic of)",0.621], + ["Malaysia",0.95], + ["Maldives (Republic of)",0.977], + ["Mali (Republic of)",0.355], + ["Malta (Republic of)",0.945], + ["Marshall Islands (Republic of the)",0.983], + ["Mauritania (Islamic Republic of)",0.535], + ["Mauritius (Republic of)",0.913], + ["Mexico (United Mexican States)",0.952], + ["Micronesia (Federated States of)",0.99], + ["Moldova (Republic of)",0.994], + ["Monaco (Principality of)",0.99], + ["Mongolia",0.992], + ["Montenegro",0.988], + ["Morocco (Kingdom of)",0.738], + ["Mozambique (Republic of)",0.607], + ["Myanmar (Union of)",0.891], + ["Namibia (Republic of)",0.915], + ["Nauru (Republic of)",0.95], + ["Nepal (Federal Democratic Republic of)",0.679], + ["Netherlands (Kingdom of the)",0.99], + ["New Zealand",0.99], + ["Nicaragua (Republic of)",0.826], + ["Niger (Republic of)",0.351], + ["Nigeria (Federal Republic of)",0.62], + ["Norway (Kingdom of)",1], + ["Oman (Sultanate of)",0.957], + ["Pakistan (Islamic Republic of)",0.58], + ["Palau (Republic of)",0.966], + ["Panama (Republic of)",0.957], + ["Papua New Guinea (Independent State of)",0.642], + ["Paraguay (Republic of)",0.945], + ["Peru (Republic of)",0.945], + ["Philippines (Republic of the)",0.963], + ["Poland (Republic of)",0.998], + ["Portugal (Portuguese Republic)",0.961], + ["Palestine (State of)",0.95], + ["Qatar (State of)",0.935], + ["Romania",0.988], + ["Russian Federation",0.997], + ["Rwanda (Republic of)",0.732], + ["Saint Kitts and Nevis (Federation of)",0.97], + ["Saint Lucia",0.9], + ["Saint Vincent and the Grenadines",0.96], + ["Samoa (Independent State of)",0.991], + ["San Marino (Republic of)",0.999], + ["São Tomé and Príncipe (Democratic Republic of)",0.928], + ["Saudi Arabia (Kingdom of)",0.976], + ["Senegal (Republic of)",0.519], + ["Serbia (Republic of)",0.995], + ["Seychelles (Republic of)",0.959], + ["Sierra Leone (Republic of)",0.432], + ["Singapore (Republic of)",0.975], + ["Slovakia (Slovak Republic)",1], + ["Slovenia (Republic of)",0.997], + ["Solomon Islands",0.77], + ["Somalia (Federal Republic of)",0.39], + ["South Africa (Republic of)",0.95], + ["South Sudan (Republic of)",0.345], + ["Spain (Kingdom of)",0.986], + ["Sri Lanka (Democratic Socialist Republic of)",0.923], + ["Sudan (Republic of the)",0.607], + ["Suriname (Republic of)",0.944], + ["Eswatini (Kingdom of)",0.884], + ["Sweden (Kingdom of)",0.99], + ["Switzerland (Swiss Confederation)",0.99], + ["Syrian Arab Republic",0.864], + ["Tajikistan (Republic of)",0.998], + ["Tanzania (United Republic of)",0.779], + ["Thailand (Kingdom of)",0.938], + ["Timor-Leste (Democratic Republic of)",0.681], + ["Togo (Togolese Republic)",0.665], + ["Tonga (Kingdom of)",0.994], + ["Trinidad and Tobago (Republic of)",0.99], + ["Tunisia (Republic of)",0.818], + ["Turkey (Republic of)",0.967], + ["Turkmenistan",0.997], + ["Tuvalu",0.99], + ["Uganda (Republic of)",0.765], + ["Ukraine",0.998], + ["United Arab Emirates",0.976], + ["United Kingdom (of Great Britain & Northern Ireland)",0.99], + ["United States (of America)",0.86], + ["Uruguay (Oriental Republic of)",0.988], + ["Uzbekistan (Republic of)",1], + ["Vanuatu (Republic of)",0.875], + ["Venezuela (Bolivarian Republic of)",0.971], + ["Vietnam (Socialist Republic of)",0.958], + ["Yemen (Republic of)",0.701], + ["Zambia (Republic of)",0.867], + ["Zimbabwe (Republic of)",0.865], + ["Aruba",0.975], + ["Cayman Islands",0.989], + ["Guadeloupe",0.965], + ["Guam",0.998], + ["Kosovo (Republic of)",0.919], + ["Macao (Special Administrative Region of China)",0.962], + ["Martinique",0.97], + ["New Caledonia",0.969], + ["Puerto Rico (Commonwealth of)",0.933], + ["Réunion",0.939], + ["Taiwan",0.987] + ] +} diff --git a/data/global/environment/co2-emissions/co2-pc-1990.json b/data/global/environment/co2-emissions/co2-pc-1990.json new file mode 100644 index 0000000..ce3701a --- /dev/null +++ b/data/global/environment/co2-emissions/co2-pc-1990.json @@ -0,0 +1,206 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions Per-Capita", + "description" : "Metric tons of CO2 equivolent produced per-capita.", + "units" : "t CO2e per-capita", + "year" : "1990", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution","per-capita"], + "authors" : [ + "World Resource Institute" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions_per_capita" + ] + }, + "data" : [ + ["country.name","co2e.pc.1990"], + ["Kuwait (State of)",37.32], + ["Brunei (Nation of the Abode of Peace)",48.33], + ["Niue",16.4], + ["Qatar (State of)",29.75], + ["Belize",29.05], + ["Oman (Sultanate of)",22], + ["Bahrain (Kingdom of)",27.27], + ["Australia (Commonwealth of)",28.06], + ["United Arab Emirates",40.13], + ["Libya (State of)",21.16], + ["Canada",20.22], + ["Turkmenistan",null], + ["Luxembourg (Grand Duchy of)",null], + ["United States (of America)",23.23], + ["Equatorial Guinea (Republic of)",0.52], + ["Trinidad and Tobago (Republic of)",12.31], + ["Grenada",16.29], + ["Saudi Arabia (Kingdom of)",11.49], + ["Kazakhstan (Republic of)",null], + ["Estonia (Republic of)",null], + ["Palau (Republic of)",null], + ["New Zealand",19.01], + ["Russian Federation",null], + ["Mongolia",12.81], + ["Korea (Republic of)",6.77], + ["Ireland",15.04], + ["Barbados",11.01], + ["Finland (Republic of)",14.75], + ["Israel (State of)",9.4], + ["Czech Republic",null], + ["Antigua and Barbuda",6.31], + ["Netherlands (Kingdom of the)",13.18], + ["Germany (Federal Republic of)",14.59], + ["Central African Republic",12.21], + ["Japan",9.4], + ["Malaysia",5.72], + ["Belgium (Kingdom of)",null], + ["Uruguay (Oriental Republic of)",8.38], + ["Singapore (Republic of)",10.28], + ["Belarus (Republic of)",null], + ["South Africa (Republic of)",8.18], + ["Poland (Republic of)",11.23], + ["Denmark (Kingdom of)",12.97], + ["Iran (Islamic Republic of)",4.46], + ["Norway (Kingdom of)",10.69], + ["Austria (Republic of)",9.71], + ["Bahamas (Commonwealth of the)",8.31], + ["Iceland (Republic of)",12.06], + ["Venezuela (Bolivarian Republic of)",8.62], + ["Slovenia (Republic of)",null], + ["China (People's Republic of)",2.69], + ["United Kingdom (of Great Britain & Northern Ireland)",12.9], + ["Iraq (Republic of)",8.92], + ["Ukraine",null], + ["Saint Kitts and Nevis (Federation of)",4.77], + ["Bosnia and Herzegovina",null], + ["Argentina (Argentine Republic)",7.12], + ["Greece (Hellenic Republic)",9.39], + ["Seychelles (Republic of)",2.94], + ["Bulgaria (Republic of)",11.24], + ["Uzbekistan (Republic of)",null], + ["Slovakia (Slovak Republic)",null], + ["Azerbaijan (Republic of)",null], + ["Italy (Italian Republic)",8.6], + ["Malta (Republic of)",7], + ["France (French Republic)",8.65], + ["Serbia (Republic of)",null], + ["Spain (Kingdom of)",6.91], + ["Lithuania (Republic of)",null], + ["Saint Lucia",5.74], + ["Switzerland (Swiss Confederation)",7.77], + ["Latvia (Republic of)",null], + ["Suriname (Republic of)",7.27], + ["Botswana (Republic of)",9.12], + ["Cook Islands",3.91], + ["Cyprus (Republic of)",6.59], + ["Angola (Republic of)",4.29], + ["Mexico (United Mexican States)",5], + ["Chile (Republic of)",3.53], + ["Portugal (Portuguese Republic)",5.67], + ["Paraguay (Republic of)",5.25], + ["Hungary (Republic of)",8.5], + ["Croatia (Republic of)",null], + ["Romania",10.12], + ["Thailand (Kingdom of)",2.69], + ["Montenegro",null], + ["Turkey (Republic of)",3.71], + ["Guyana (Co-operative Republic of)",3.29], + ["Sweden (Kingdom of)",7.9], + ["Lebanon (Lebanese Republic)",2.75], + ["Brazil (Federative Republic of)",3.73], + ["Algeria (People's Democratic Republic of)",3.5], + ["Namibia (Republic of)",5.17], + ["Nauru (Republic of)",14.23], + ["Mauritius (Republic of)",2.02], + ["Bolivia (Plurinational State of)",3.04], + ["Panama (Republic of)",2.93], + ["Sudan (Republic of the)",3.83], + ["Cuba (Republic of)",5.02], + ["Gabon (Gabonese Republic)",6.99], + ["Gambia (Republic of the)",4.08], + ["Tonga (Kingdom of)",2.4], + ["Cameroon (Republic of)",6.43], + ["Ecuador (Republic of)",2.85], + ["Jordan (Hashemite Kingdom of)",4.87], + ["Georgia",null], + ["Colombia (Republic of)",3.4], + ["Dominica (Commonwealth of)",2.44], + ["Jamaica",3.67], + ["Syrian Arab Republic",4.35], + ["Zambia (Republic of)",5.18], + ["Tunisia (Republic of)",2.36], + ["Dominican Republic",2.12], + ["Fiji (Republic of)",2.38], + ["Egypt (Arab Republic of)",2.15], + ["Armenia (Republic of)",null], + ["Indonesia (Republic of)",2.1], + ["Costa Rica (Republic of)",2.68], + ["Maldives (Republic of)",0.84], + ["Albania (Republic of)",3.56], + ["Mauritania (Islamic Republic of)",3.08], + ["Peru (Republic of)",1.94], + ["Moldova (Republic of)",null], + ["Vietnam (Socialist Republic of)",1.03], + ["Kyrgyz Republic",null], + ["Samoa (Independent State of)",2.17], + ["Vanuatu (Republic of)",3.04], + ["Korea (Democratic People's Republic of)",7.68], + ["Saint Vincent and the Grenadines",1.41], + ["Honduras (Republic of)",2.12], + ["Nicaragua (Republic of)",2.26], + ["Morocco (Kingdom of)",1.53], + ["India (Republic of)",1.37], + ["Eswatini (Kingdom of)",2.31], + ["Chad (Republic of)",2.6], + ["Papua New Guinea (Independent State of)",2.09], + ["Lesotho (Kingdom of)",1.18], + ["Myanmar (Union of)",1.37], + ["Bhutan (Kingdom of)",1.36], + ["Sri Lanka (Democratic Socialist Republic of)",1.3], + ["El Salvador (Republic of)",1.28], + ["Zimbabwe (Republic of)",3.25], + ["Senegal (Republic of)",1.75], + ["Cambodia (Kingdom of)",1.74], + ["Pakistan (Islamic Republic of)",1.43], + ["Mali (Republic of)",1.81], + ["Nigeria (Federal Republic of)",2.11], + ["Lao (People's Democratic Republic)",1.44], + ["Philippines (Republic of the)",1.45], + ["Guatemala (Republic of)",1.23], + ["Djibouti (Republic of)",1.52], + ["Tanzania (United Republic of)",1.64], + ["Congo (Republic of the)",1.07], + ["Côte d'Ivoire (Republic of)",1.91], + ["Niger (Republic of)",1.35], + ["Eritrea (State of)",null], + ["Guinea (Republic of)",1.25], + ["Afghanistan (Islamic Republic of)",1.24], + ["Yemen (Republic of)",0.99], + ["Burkina Faso",1.25], + ["Kenya (Republic of)",1.54], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Nepal (Federal Democratic Republic of)",1.07], + ["Tajikistan (Republic of)",null], + ["Benin (Republic of)",1.01], + ["Guinea-Bissau (Republic of)",1.22], + ["Ghana (Republic of)",0.85], + ["Cape Verde (Republic of)",0.63], + ["Madagascar (Republic of)",1.99], + ["Mozambique (Republic of)",1.38], + ["Bangladesh (People's Republic of)",0.8], + ["São Tomé and Príncipe (Democratic Republic of)",0.83], + ["Solomon Islands",1.11], + ["Sierra Leone (Republic of)",0.89], + ["Togo (Togolese Republic)",0.93], + ["Uganda (Republic of)",0.82], + ["Kiribati (Republic of)",0.49], + ["Haiti (Republic of)",0.66], + ["Malawi (Republic of)",0.95], + ["Rwanda (Republic of)",0.52], + ["Congo (Democratic Republic of the)",0.98], + ["Comoros (Union of the)",0.56], + ["Liberia (Republic of)",0.57], + ["Burundi (Republic of)",0.42] + ] +} diff --git a/data/global/environment/co2-emissions/co2-pc-1995.json b/data/global/environment/co2-emissions/co2-pc-1995.json new file mode 100644 index 0000000..d229e12 --- /dev/null +++ b/data/global/environment/co2-emissions/co2-pc-1995.json @@ -0,0 +1,206 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions Per-Capita", + "description" : "Metric tons of CO2 equivolent produced per-capita.", + "units" : "t CO2e per-capita", + "year" : "1995", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution","per-capita"], + "authors" : [ + "World Resource Institute" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions_per_capita" + ] + }, + "data" : [ + ["country.name","co2e.pc.1995"], + ["Kuwait (State of)",73.13], + ["Brunei (Nation of the Abode of Peace)",46.38], + ["Niue",16.8], + ["Qatar (State of)",37.3], + ["Belize",29.84], + ["Oman (Sultanate of)",22.92], + ["Bahrain (Kingdom of)",29.64], + ["Australia (Commonwealth of)",27.28], + ["United Arab Emirates",38.81], + ["Libya (State of)",19.43], + ["Canada",20.69], + ["Turkmenistan",13.39], + ["Luxembourg (Grand Duchy of)",null], + ["United States (of America)",23.26], + ["Equatorial Guinea (Republic of)",2.7], + ["Trinidad and Tobago (Republic of)",11.22], + ["Grenada",16.63], + ["Saudi Arabia (Kingdom of)",13.29], + ["Kazakhstan (Republic of)",14.43], + ["Estonia (Republic of)",14.4], + ["Palau (Republic of)",6.98], + ["New Zealand",18.27], + ["Russian Federation",14.45], + ["Mongolia",11.28], + ["Korea (Republic of)",9.45], + ["Ireland",15.76], + ["Barbados",10.38], + ["Finland (Republic of)",14.62], + ["Israel (State of)",10.9], + ["Czech Republic",14.05], + ["Antigua and Barbuda",6.53], + ["Netherlands (Kingdom of the)",13.93], + ["Germany (Federal Republic of)",12.9], + ["Central African Republic",11.98], + ["Japan",9.91], + ["Malaysia",6.79], + ["Belgium (Kingdom of)",null], + ["Uruguay (Oriental Republic of)",9.15], + ["Singapore (Republic of)",11.82], + ["Belarus (Republic of)",8.23], + ["South Africa (Republic of)",7.77], + ["Poland (Republic of)",10.7], + ["Denmark (Kingdom of)",14.24], + ["Iran (Islamic Republic of)",5.9], + ["Norway (Kingdom of)",10.59], + ["Austria (Republic of)",9.55], + ["Bahamas (Commonwealth of the)",6.69], + ["Iceland (Republic of)",10.27], + ["Venezuela (Bolivarian Republic of)",8.73], + ["Slovenia (Republic of)",8.92], + ["China (People's Republic of)",3.39], + ["United Kingdom (of Great Britain & Northern Ireland)",11.63], + ["Iraq (Republic of)",6.48], + ["Ukraine",10.41], + ["Saint Kitts and Nevis (Federation of)",5.47], + ["Bosnia and Herzegovina",1.81], + ["Argentina (Argentine Republic)",7.25], + ["Greece (Hellenic Republic)",9.71], + ["Seychelles (Republic of)",3.38], + ["Bulgaria (Republic of)",8.28], + ["Uzbekistan (Republic of)",7.9], + ["Slovakia (Slovak Republic)",9.36], + ["Azerbaijan (Republic of)",7.5], + ["Italy (Italian Republic)",8.69], + ["Malta (Republic of)",7.01], + ["France (French Republic)",8.39], + ["Serbia (Republic of)",null], + ["Spain (Kingdom of)",7.54], + ["Lithuania (Republic of)",6.07], + ["Saint Lucia",6.85], + ["Switzerland (Swiss Confederation)",7.33], + ["Latvia (Republic of)",5.43], + ["Suriname (Republic of)",7.75], + ["Botswana (Republic of)",8.45], + ["Cook Islands",4.02], + ["Cyprus (Republic of)",7.3], + ["Angola (Republic of)",4.43], + ["Mexico (United Mexican States)",5.1], + ["Chile (Republic of)",3.95], + ["Portugal (Portuguese Republic)",6.61], + ["Paraguay (Republic of)",5.71], + ["Hungary (Republic of)",7.05], + ["Croatia (Republic of)",4.64], + ["Romania",7.31], + ["Thailand (Kingdom of)",3.8], + ["Montenegro",null], + ["Turkey (Republic of)",4.18], + ["Guyana (Co-operative Republic of)",4.37], + ["Sweden (Kingdom of)",8.18], + ["Lebanon (Lebanese Republic)",5.39], + ["Brazil (Federative Republic of)",3.92], + ["Algeria (People's Democratic Republic of)",3.42], + ["Namibia (Republic of)",5.41], + ["Nauru (Republic of)",11.02], + ["Mauritius (Republic of)",2.29], + ["Bolivia (Plurinational State of)",3.49], + ["Panama (Republic of)",3.37], + ["Sudan (Republic of the)",3.9], + ["Cuba (Republic of)",3.43], + ["Gabon (Gabonese Republic)",6.67], + ["Gambia (Republic of the)",4.13], + ["Tonga (Kingdom of)",2.56], + ["Cameroon (Republic of)",5.91], + ["Ecuador (Republic of)",3.12], + ["Jordan (Hashemite Kingdom of)",4.85], + ["Georgia",2.88], + ["Colombia (Republic of)",3.5], + ["Dominica (Commonwealth of)",2.66], + ["Jamaica",4.04], + ["Syrian Arab Republic",4.64], + ["Zambia (Republic of)",4.2], + ["Tunisia (Republic of)",2.52], + ["Dominican Republic",2.63], + ["Fiji (Republic of)",2.53], + ["Egypt (Arab Republic of)",2.13], + ["Armenia (Republic of)",1.94], + ["Indonesia (Republic of)",2.43], + ["Costa Rica (Republic of)",2.77], + ["Maldives (Republic of)",1.19], + ["Albania (Republic of)",2.15], + ["Mauritania (Islamic Republic of)",2.81], + ["Peru (Republic of)",2.07], + ["Moldova (Republic of)",4.12], + ["Vietnam (Socialist Republic of)",1.25], + ["Kyrgyz Republic",2.06], + ["Samoa (Independent State of)",2.13], + ["Vanuatu (Republic of)",3.07], + ["Korea (Democratic People's Republic of)",4.92], + ["Saint Vincent and the Grenadines",1.9], + ["Honduras (Republic of)",2.15], + ["Nicaragua (Republic of)",1.94], + ["Morocco (Kingdom of)",1.64], + ["India (Republic of)",1.48], + ["Eswatini (Kingdom of)",2.07], + ["Chad (Republic of)",2.37], + ["Papua New Guinea (Independent State of)",2.68], + ["Lesotho (Kingdom of)",1.11], + ["Myanmar (Union of)",1.52], + ["Bhutan (Kingdom of)",1.68], + ["Sri Lanka (Democratic Socialist Republic of)",1.38], + ["El Salvador (Republic of)",1.68], + ["Zimbabwe (Republic of)",2.62], + ["Senegal (Republic of)",1.69], + ["Cambodia (Kingdom of)",1.67], + ["Pakistan (Islamic Republic of)",1.54], + ["Mali (Republic of)",1.67], + ["Nigeria (Federal Republic of)",2.04], + ["Lao (People's Democratic Republic)",1.41], + ["Philippines (Republic of the)",1.68], + ["Guatemala (Republic of)",1.41], + ["Djibouti (Republic of)",1.52], + ["Tanzania (United Republic of)",1.56], + ["Congo (Republic of the)",1.69], + ["Côte d'Ivoire (Republic of)",1.84], + ["Niger (Republic of)",1.4], + ["Eritrea (State of)",1.96], + ["Guinea (Republic of)",1.19], + ["Afghanistan (Islamic Republic of)",0.84], + ["Yemen (Republic of)",1], + ["Burkina Faso",1.29], + ["Kenya (Republic of)",1.29], + ["Ethiopia (Federal Democratic Republic of)",1.11], + ["Nepal (Federal Democratic Republic of)",1.11], + ["Tajikistan (Republic of)",1.28], + ["Benin (Republic of)",0.88], + ["Guinea-Bissau (Republic of)",1.18], + ["Ghana (Republic of)",0.85], + ["Cape Verde (Republic of)",0.73], + ["Madagascar (Republic of)",1.77], + ["Mozambique (Republic of)",1.23], + ["Bangladesh (People's Republic of)",0.81], + ["São Tomé and Príncipe (Democratic Republic of)",0.85], + ["Solomon Islands",1.03], + ["Sierra Leone (Republic of)",0.87], + ["Togo (Togolese Republic)",0.75], + ["Uganda (Republic of)",0.78], + ["Kiribati (Republic of)",0.47], + ["Haiti (Republic of)",0.65], + ["Malawi (Republic of)",0.64], + ["Rwanda (Republic of)",0.63], + ["Congo (Democratic Republic of the)",0.78], + ["Comoros (Union of the)",0.53], + ["Liberia (Republic of)",0.45], + ["Burundi (Republic of)",0.42] + ] +} diff --git a/data/global/environment/co2-emissions/co2-pc-2000.json b/data/global/environment/co2-emissions/co2-pc-2000.json new file mode 100644 index 0000000..1dde44c --- /dev/null +++ b/data/global/environment/co2-emissions/co2-pc-2000.json @@ -0,0 +1,206 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions Per-Capita", + "description" : "Metric tons of CO2 equivolent produced per-capita.", + "units" : "t CO2e per-capita", + "year" : "2000", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution","per-capita"], + "authors" : [ + "World Resource Institute" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions_per_capita" + ] + }, + "data" : [ + ["country.name","co2e.pc.2000"], + ["Kuwait (State of)",65.64], + ["Brunei (Nation of the Abode of Peace)",46.49], + ["Niue",19.05], + ["Qatar (State of)",41.58], + ["Belize",28.55], + ["Oman (Sultanate of)",27.97], + ["Bahrain (Kingdom of)",29.19], + ["Australia (Commonwealth of)",30.84], + ["United Arab Emirates",34.89], + ["Libya (State of)",18.66], + ["Canada",22.12], + ["Turkmenistan",14.51], + ["Luxembourg (Grand Duchy of)",21.14], + ["United States (of America)",23.86], + ["Equatorial Guinea (Republic of)",13.89], + ["Trinidad and Tobago (Republic of)",12.42], + ["Grenada",17.28], + ["Saudi Arabia (Kingdom of)",13.39], + ["Kazakhstan (Republic of)",10.37], + ["Estonia (Republic of)",13.53], + ["Palau (Republic of)",6.74], + ["New Zealand",18.4], + ["Russian Federation",13.92], + ["Mongolia",11.48], + ["Korea (Republic of)",10.77], + ["Ireland",17.39], + ["Barbados",11.69], + ["Finland (Republic of)",13.9], + ["Israel (State of)",11.82], + ["Czech Republic",13.76], + ["Antigua and Barbuda",7.08], + ["Netherlands (Kingdom of the)",12.85], + ["Germany (Federal Republic of)",11.89], + ["Central African Republic",11.8], + ["Japan",10.04], + ["Malaysia",7.91], + ["Belgium (Kingdom of)",13.26], + ["Uruguay (Oriental Republic of)",8.83], + ["Singapore (Republic of)",11.88], + ["Belarus (Republic of)",7.84], + ["South Africa (Republic of)",7.71], + ["Poland (Republic of)",9.4], + ["Denmark (Kingdom of)",12.48], + ["Iran (Islamic Republic of)",6.69], + ["Norway (Kingdom of)",10.48], + ["Austria (Republic of)",9.59], + ["Bahamas (Commonwealth of the)",6.32], + ["Iceland (Republic of)",11.15], + ["Venezuela (Bolivarian Republic of)",8.7], + ["Slovenia (Republic of)",9.01], + ["China (People's Republic of)",3.49], + ["United Kingdom (of Great Britain & Northern Ireland)",11], + ["Iraq (Republic of)",7.87], + ["Ukraine",8.25], + ["Saint Kitts and Nevis (Federation of)",5.95], + ["Bosnia and Herzegovina",5.34], + ["Argentina (Argentine Republic)",7.49], + ["Greece (Hellenic Republic)",10.53], + ["Seychelles (Republic of)",7.86], + ["Bulgaria (Republic of)",7.16], + ["Uzbekistan (Republic of)",8.4], + ["Slovakia (Slovak Republic)",8.48], + ["Azerbaijan (Republic of)",6.79], + ["Italy (Italian Republic)",9.17], + ["Malta (Republic of)",6.24], + ["France (French Republic)",8.37], + ["Serbia (Republic of)",null], + ["Spain (Kingdom of)",8.99], + ["Lithuania (Republic of)",5.55], + ["Saint Lucia",6.5], + ["Switzerland (Swiss Confederation)",7.16], + ["Latvia (Republic of)",4.66], + ["Suriname (Republic of)",5.67], + ["Botswana (Republic of)",8.25], + ["Cook Islands",4.57], + ["Cyprus (Republic of)",8.19], + ["Angola (Republic of)",4.2], + ["Mexico (United Mexican States)",5.74], + ["Chile (Republic of)",4.47], + ["Portugal (Portuguese Republic)",7.6], + ["Paraguay (Republic of)",5.08], + ["Hungary (Republic of)",7.02], + ["Croatia (Republic of)",5.41], + ["Romania",5.84], + ["Thailand (Kingdom of)",3.85], + ["Montenegro",null], + ["Turkey (Republic of)",4.8], + ["Guyana (Co-operative Republic of)",4.4], + ["Sweden (Kingdom of)",7.53], + ["Lebanon (Lebanese Republic)",5.53], + ["Brazil (Federative Republic of)",4.12], + ["Algeria (People's Democratic Republic of)",3.75], + ["Namibia (Republic of)",5.31], + ["Nauru (Republic of)",8.86], + ["Mauritius (Republic of)",3.31], + ["Bolivia (Plurinational State of)",3.38], + ["Panama (Republic of)",3.37], + ["Sudan (Republic of the)",4.38], + ["Cuba (Republic of)",3.89], + ["Gabon (Gabonese Republic)",4.77], + ["Gambia (Republic of the)",4.14], + ["Tonga (Kingdom of)",2.62], + ["Cameroon (Republic of)",5.4], + ["Ecuador (Republic of)",2.89], + ["Jordan (Hashemite Kingdom of)",3.82], + ["Georgia",2.78], + ["Colombia (Republic of)",3.27], + ["Dominica (Commonwealth of)",3.01], + ["Jamaica",4.4], + ["Syrian Arab Republic",4.46], + ["Zambia (Republic of)",3.36], + ["Tunisia (Republic of)",2.89], + ["Dominican Republic",3.21], + ["Fiji (Republic of)",2.32], + ["Egypt (Arab Republic of)",2.41], + ["Armenia (Republic of)",1.82], + ["Indonesia (Republic of)",2.55], + ["Costa Rica (Republic of)",2.52], + ["Maldives (Republic of)",1.83], + ["Albania (Republic of)",2.36], + ["Mauritania (Islamic Republic of)",3.06], + ["Peru (Republic of)",2.27], + ["Moldova (Republic of)",2.6], + ["Vietnam (Socialist Republic of)",1.63], + ["Kyrgyz Republic",1.85], + ["Samoa (Independent State of)",2.28], + ["Vanuatu (Republic of)",2.85], + ["Korea (Democratic People's Republic of)",4.12], + ["Saint Vincent and the Grenadines",2.09], + ["Honduras (Republic of)",2.13], + ["Nicaragua (Republic of)",2.33], + ["Morocco (Kingdom of)",1.76], + ["India (Republic of)",1.59], + ["Eswatini (Kingdom of)",2.63], + ["Chad (Republic of)",2.43], + ["Papua New Guinea (Independent State of)",2.31], + ["Lesotho (Kingdom of)",1.16], + ["Myanmar (Union of)",1.6], + ["Bhutan (Kingdom of)",1.72], + ["Sri Lanka (Democratic Socialist Republic of)",1.64], + ["El Salvador (Republic of)",1.76], + ["Zimbabwe (Republic of)",2.47], + ["Senegal (Republic of)",1.84], + ["Cambodia (Kingdom of)",1.49], + ["Pakistan (Islamic Republic of)",1.6], + ["Mali (Republic of)",1.72], + ["Nigeria (Federal Republic of)",1.94], + ["Lao (People's Democratic Republic)",1.44], + ["Philippines (Republic of the)",1.73], + ["Guatemala (Republic of)",1.63], + ["Djibouti (Republic of)",1.51], + ["Tanzania (United Republic of)",1.39], + ["Congo (Republic of the)",1.41], + ["Côte d'Ivoire (Republic of)",1.44], + ["Niger (Republic of)",1.43], + ["Eritrea (State of)",1.95], + ["Guinea (Republic of)",1.21], + ["Afghanistan (Islamic Republic of)",0.82], + ["Yemen (Republic of)",1.15], + ["Burkina Faso",1.27], + ["Kenya (Republic of)",1.14], + ["Ethiopia (Federal Democratic Republic of)",1.09], + ["Nepal (Federal Democratic Republic of)",1.16], + ["Tajikistan (Republic of)",0.98], + ["Benin (Republic of)",1.01], + ["Guinea-Bissau (Republic of)",1.13], + ["Ghana (Republic of)",0.96], + ["Cape Verde (Republic of)",0.79], + ["Madagascar (Republic of)",1.53], + ["Mozambique (Republic of)",1.03], + ["Bangladesh (People's Republic of)",0.81], + ["São Tomé and Príncipe (Democratic Republic of)",0.77], + ["Solomon Islands",0.99], + ["Sierra Leone (Republic of)",0.73], + ["Togo (Togolese Republic)",0.94], + ["Uganda (Republic of)",0.73], + ["Kiribati (Republic of)",0.59], + ["Haiti (Republic of)",0.76], + ["Malawi (Republic of)",0.58], + ["Rwanda (Republic of)",0.54], + ["Congo (Democratic Republic of the)",0.65], + ["Comoros (Union of the)",0.52], + ["Liberia (Republic of)",0.41], + ["Burundi (Republic of)",0.35] + ] +} diff --git a/data/global/environment/co2-emissions/co2-pc-2005.json b/data/global/environment/co2-emissions/co2-pc-2005.json new file mode 100644 index 0000000..cb0925e --- /dev/null +++ b/data/global/environment/co2-emissions/co2-pc-2005.json @@ -0,0 +1,206 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions Per-Capita", + "description" : "Metric tons of CO2 equivolent produced per-capita.", + "units" : "t CO2e per-capita", + "year" : "2005", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution","per-capita"], + "authors" : [ + "World Resource Institute" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions_per_capita" + ] + }, + "data" : [ + ["country.name","co2e.pc.2005"], + ["Kuwait (State of)",76.41], + ["Brunei (Nation of the Abode of Peace)",44.83], + ["Niue",24.3], + ["Qatar (State of)",52.1], + ["Belize",28.11], + ["Oman (Sultanate of)",25.84], + ["Bahrain (Kingdom of)",27.78], + ["Australia (Commonwealth of)",27.6], + ["United Arab Emirates",32.13], + ["Libya (State of)",20.91], + ["Canada",21.94], + ["Turkmenistan",18.13], + ["Luxembourg (Grand Duchy of)",27.86], + ["United States (of America)",22.92], + ["Equatorial Guinea (Republic of)",25.83], + ["Trinidad and Tobago (Republic of)",16.4], + ["Grenada",17.82], + ["Saudi Arabia (Kingdom of)",14.67], + ["Kazakhstan (Republic of)",13.73], + ["Estonia (Republic of)",15.77], + ["Palau (Republic of)",10.3], + ["New Zealand",18.77], + ["Russian Federation",14.7], + ["Mongolia",10.13], + ["Korea (Republic of)",11.24], + ["Ireland",16.77], + ["Barbados",12.17], + ["Finland (Republic of)",13.26], + ["Israel (State of)",11.34], + ["Czech Republic",13.47], + ["Antigua and Barbuda",8.77], + ["Netherlands (Kingdom of the)",12.4], + ["Germany (Federal Republic of)",11.36], + ["Central African Republic",11.28], + ["Japan",10.16], + ["Malaysia",9.33], + ["Belgium (Kingdom of)",12.16], + ["Uruguay (Oriental Republic of)",9.6], + ["Singapore (Republic of)",9.48], + ["Belarus (Republic of)",8.63], + ["South Africa (Republic of)",9.23], + ["Poland (Republic of)",9.6], + ["Denmark (Kingdom of)",11.59], + ["Iran (Islamic Republic of)",8.08], + ["Norway (Kingdom of)",10.41], + ["Austria (Republic of)",10.79], + ["Bahamas (Commonwealth of the)",6.03], + ["Iceland (Republic of)",10.43], + ["Venezuela (Bolivarian Republic of)",8.85], + ["Slovenia (Republic of)",9.67], + ["China (People's Republic of)",5.5], + ["United Kingdom (of Great Britain & Northern Ireland)",10.53], + ["Iraq (Republic of)",6.42], + ["Ukraine",8.54], + ["Saint Kitts and Nevis (Federation of)",6.57], + ["Bosnia and Herzegovina",6], + ["Argentina (Argentine Republic)",7.73], + ["Greece (Hellenic Republic)",10.73], + ["Seychelles (Republic of)",8.45], + ["Bulgaria (Republic of)",8.03], + ["Uzbekistan (Republic of)",7.85], + ["Slovakia (Slovak Republic)",8.68], + ["Azerbaijan (Republic of)",6.61], + ["Italy (Italian Republic)",9.49], + ["Malta (Republic of)",7.77], + ["France (French Republic)",8.13], + ["Serbia (Republic of)",null], + ["Spain (Kingdom of)",9.62], + ["Lithuania (Republic of)",6.51], + ["Saint Lucia",6.5], + ["Switzerland (Swiss Confederation)",7.21], + ["Latvia (Republic of)",5.47], + ["Suriname (Republic of)",5.63], + ["Botswana (Republic of)",5.58], + ["Cook Islands",5.33], + ["Cyprus (Republic of)",8.53], + ["Angola (Republic of)",5.06], + ["Mexico (United Mexican States)",6.28], + ["Chile (Republic of)",4.69], + ["Portugal (Portuguese Republic)",7.76], + ["Paraguay (Republic of)",4.92], + ["Hungary (Republic of)",7.28], + ["Croatia (Republic of)",6.4], + ["Romania",6.29], + ["Thailand (Kingdom of)",4.67], + ["Montenegro",null], + ["Turkey (Republic of)",4.66], + ["Guyana (Co-operative Republic of)",4.11], + ["Sweden (Kingdom of)",7], + ["Lebanon (Lebanese Republic)",4.86], + ["Brazil (Federative Republic of)",4.43], + ["Algeria (People's Democratic Republic of)",4.04], + ["Namibia (Republic of)",5.05], + ["Nauru (Republic of)",6.71], + ["Mauritius (Republic of)",3.71], + ["Bolivia (Plurinational State of)",3.78], + ["Panama (Republic of)",3.83], + ["Sudan (Republic of the)",4.57], + ["Cuba (Republic of)",3.54], + ["Gabon (Gabonese Republic)",4.21], + ["Gambia (Republic of the)",4.13], + ["Tonga (Kingdom of)",2.85], + ["Cameroon (Republic of)",4.77], + ["Ecuador (Republic of)",3.21], + ["Jordan (Hashemite Kingdom of)",4.28], + ["Georgia",2.61], + ["Colombia (Republic of)",3.21], + ["Dominica (Commonwealth of)",3.13], + ["Jamaica",4.53], + ["Syrian Arab Republic",4.87], + ["Zambia (Republic of)",3.58], + ["Tunisia (Republic of)",3.04], + ["Dominican Republic",3.03], + ["Fiji (Republic of)",2.9], + ["Egypt (Arab Republic of)",2.96], + ["Armenia (Republic of)",2.3], + ["Indonesia (Republic of)",2.69], + ["Costa Rica (Republic of)",2.71], + ["Maldives (Republic of)",2.1], + ["Albania (Republic of)",2.68], + ["Mauritania (Islamic Republic of)",2.94], + ["Peru (Republic of)",2.34], + ["Moldova (Republic of)",2.91], + ["Vietnam (Socialist Republic of)",2.16], + ["Kyrgyz Republic",1.97], + ["Samoa (Independent State of)",2.39], + ["Vanuatu (Republic of)",2.5], + ["Korea (Democratic People's Republic of)",4.27], + ["Saint Vincent and the Grenadines",2.64], + ["Honduras (Republic of)",2.49], + ["Nicaragua (Republic of)",2.43], + ["Morocco (Kingdom of)",2.07], + ["India (Republic of)",1.72], + ["Eswatini (Kingdom of)",2.39], + ["Chad (Republic of)",2.87], + ["Papua New Guinea (Independent State of)",2.22], + ["Lesotho (Kingdom of)",1.74], + ["Myanmar (Union of)",1.78], + ["Bhutan (Kingdom of)",1.55], + ["Sri Lanka (Democratic Socialist Republic of)",1.8], + ["El Salvador (Republic of)",2.02], + ["Zimbabwe (Republic of)",1.93], + ["Senegal (Republic of)",1.88], + ["Cambodia (Kingdom of)",1.63], + ["Pakistan (Islamic Republic of)",1.72], + ["Mali (Republic of)",1.79], + ["Nigeria (Federal Republic of)",2.05], + ["Lao (People's Democratic Republic)",1.54], + ["Philippines (Republic of the)",1.67], + ["Guatemala (Republic of)",1.71], + ["Djibouti (Republic of)",1.49], + ["Tanzania (United Republic of)",1.55], + ["Congo (Republic of the)",1.88], + ["Côte d'Ivoire (Republic of)",1.44], + ["Niger (Republic of)",1.44], + ["Eritrea (State of)",1.63], + ["Guinea (Republic of)",1.27], + ["Afghanistan (Islamic Republic of)",0.76], + ["Yemen (Republic of)",1.33], + ["Burkina Faso",1.42], + ["Kenya (Republic of)",1.13], + ["Ethiopia (Federal Democratic Republic of)",1.16], + ["Nepal (Federal Democratic Republic of)",1.12], + ["Tajikistan (Republic of)",1.04], + ["Benin (Republic of)",1.16], + ["Guinea-Bissau (Republic of)",1.04], + ["Ghana (Republic of)",1.03], + ["Cape Verde (Republic of)",1.1], + ["Madagascar (Republic of)",1.36], + ["Mozambique (Republic of)",1.09], + ["Bangladesh (People's Republic of)",0.85], + ["São Tomé and Príncipe (Democratic Republic of)",0.9], + ["Solomon Islands",0.98], + ["Sierra Leone (Republic of)",0.8], + ["Togo (Togolese Republic)",0.97], + ["Uganda (Republic of)",0.8], + ["Kiribati (Republic of)",0.88], + ["Haiti (Republic of)",0.81], + ["Malawi (Republic of)",0.53], + ["Rwanda (Republic of)",0.56], + ["Congo (Democratic Republic of the)",0.65], + ["Comoros (Union of the)",0.47], + ["Liberia (Republic of)",0.48], + ["Burundi (Republic of)",0.26] + ] +} diff --git a/data/global/environment/co2-emissions/co2-pc-2010.json b/data/global/environment/co2-emissions/co2-pc-2010.json new file mode 100644 index 0000000..d40ab64 --- /dev/null +++ b/data/global/environment/co2-emissions/co2-pc-2010.json @@ -0,0 +1,206 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions Per-Capita", + "description" : "Metric tons of CO2 equiolent produced per-capita.", + "units" : "t CO2e per-capita", + "year" : "2010", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution","per-capita"], + "authors" : [ + "World Resource Institute" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions_per_capita" + ] + }, + "data" : [ + ["country.name","co2.pc.2010"], + ["Kuwait (State of)",62.47], + ["Brunei (Nation of the Abode of Peace)",46.88], + ["Niue",28.65], + ["Qatar (State of)",39.13], + ["Belize",28.29], + ["Oman (Sultanate of)",27.82], + ["Bahrain (Kingdom of)",24.4], + ["Australia (Commonwealth of)",25.39], + ["United Arab Emirates",23.73], + ["Libya (State of)",22.63], + ["Canada",20.47], + ["Turkmenistan",19.44], + ["Luxembourg (Grand Duchy of)",23.82], + ["United States (of America)",20.97], + ["Equatorial Guinea (Republic of)",21.33], + ["Trinidad and Tobago (Republic of)",19.11], + ["Grenada",18.39], + ["Saudi Arabia (Kingdom of)",17.69], + ["Kazakhstan (Republic of)",17.28], + ["Estonia (Republic of)",17.3], + ["Palau (Republic of)",11.64], + ["New Zealand",16.86], + ["Russian Federation",15.21], + ["Mongolia",10.91], + ["Korea (Republic of)",13.02], + ["Ireland",13.57], + ["Barbados",12.64], + ["Finland (Republic of)",14.2], + ["Israel (State of)",11.74], + ["Czech Republic",12.39], + ["Antigua and Barbuda",10.69], + ["Netherlands (Kingdom of the)",12.01], + ["Germany (Federal Republic of)",11.03], + ["Central African Republic",10.78], + ["Japan",9.54], + ["Malaysia",9.94], + ["Belgium (Kingdom of)",11.44], + ["Uruguay (Oriental Republic of)",9.71], + ["Singapore (Republic of)",9.84], + ["Belarus (Republic of)",9.66], + ["South Africa (Republic of)",9.5], + ["Poland (Republic of)",9.82], + ["Denmark (Kingdom of)",11.03], + ["Iran (Islamic Republic of)",9.03], + ["Norway (Kingdom of)",10.09], + ["Austria (Republic of)",9.85], + ["Bahamas (Commonwealth of the)",7.58], + ["Iceland (Republic of)",8.9], + ["Venezuela (Bolivarian Republic of)",9.08], + ["Slovenia (Republic of)",9.3], + ["China (People's Republic of)",7.43], + ["United Kingdom (of Great Britain & Northern Ireland)",9.03], + ["Iraq (Republic of)",7.52], + ["Ukraine",8.13], + ["Saint Kitts and Nevis (Federation of)",7.01], + ["Bosnia and Herzegovina",7.36], + ["Argentina (Argentine Republic)",7.77], + ["Greece (Hellenic Republic)",9], + ["Seychelles (Republic of)",8.28], + ["Bulgaria (Republic of)",8], + ["Uzbekistan (Republic of)",7.55], + ["Slovakia (Slovak Republic)",7.9], + ["Azerbaijan (Republic of)",6.36], + ["Italy (Italian Republic)",8.02], + ["Malta (Republic of)",7.48], + ["France (French Republic)",7.34], + ["Serbia (Republic of)",6.54], + ["Spain (Kingdom of)",7.27], + ["Lithuania (Republic of)",6.65], + ["Saint Lucia",6.5], + ["Switzerland (Swiss Confederation)",6.77], + ["Latvia (Republic of)",6.29], + ["Suriname (Republic of)",5.9], + ["Botswana (Republic of)",9.32], + ["Cook Islands",5.81], + ["Cyprus (Republic of)",7.92], + ["Angola (Republic of)",6.32], + ["Mexico (United Mexican States)",6.19], + ["Chile (Republic of)",5.35], + ["Portugal (Portuguese Republic)",6.14], + ["Paraguay (Republic of)",5.56], + ["Hungary (Republic of)",6.36], + ["Croatia (Republic of)",5.99], + ["Romania",5.67], + ["Thailand (Kingdom of)",5.1], + ["Montenegro",5.81], + ["Turkey (Republic of)",5.18], + ["Guyana (Co-operative Republic of)",4.79], + ["Sweden (Kingdom of)",6.25], + ["Lebanon (Lebanese Republic)",5.5], + ["Brazil (Federative Republic of)",4.73], + ["Algeria (People's Democratic Republic of)",4.58], + ["Namibia (Republic of)",5.21], + ["Nauru (Republic of)",4.94], + ["Mauritius (Republic of)",4.33], + ["Bolivia (Plurinational State of)",4.38], + ["Panama (Republic of)",4.24], + ["Sudan (Republic of the)",4.27], + ["Cuba (Republic of)",4.33], + ["Gabon (Gabonese Republic)",3.74], + ["Gambia (Republic of the)",4.26], + ["Tonga (Kingdom of)",3.07], + ["Cameroon (Republic of)",4.13], + ["Ecuador (Republic of)",3.6], + ["Jordan (Hashemite Kingdom of)",3.66], + ["Georgia",2.91], + ["Colombia (Republic of)",3.3], + ["Dominica (Commonwealth of)",3.45], + ["Jamaica",3.17], + ["Syrian Arab Republic",4.31], + ["Zambia (Republic of)",3.31], + ["Tunisia (Republic of)",3.36], + ["Dominican Republic",3.28], + ["Fiji (Republic of)",3.04], + ["Egypt (Arab Republic of)",3.18], + ["Armenia (Republic of)",2.46], + ["Indonesia (Republic of)",2.87], + ["Costa Rica (Republic of)",2.83], + ["Maldives (Republic of)",2.69], + ["Albania (Republic of)",2.83], + ["Mauritania (Islamic Republic of)",2.9], + ["Peru (Republic of)",2.77], + ["Moldova (Republic of)",3.02], + ["Vietnam (Socialist Republic of)",2.8], + ["Kyrgyz Republic",2.16], + ["Samoa (Independent State of)",2.54], + ["Vanuatu (Republic of)",2.79], + ["Korea (Democratic People's Republic of)",3.83], + ["Saint Vincent and the Grenadines",2.65], + ["Honduras (Republic of)",2.36], + ["Nicaragua (Republic of)",2.42], + ["Morocco (Kingdom of)",2.23], + ["India (Republic of)",2.11], + ["Eswatini (Kingdom of)",2.3], + ["Chad (Republic of)",2.28], + ["Papua New Guinea (Independent State of)",2.08], + ["Lesotho (Kingdom of)",2.04], + ["Myanmar (Union of)",1.84], + ["Bhutan (Kingdom of)",1.46], + ["Sri Lanka (Democratic Socialist Republic of)",1.79], + ["El Salvador (Republic of)",1.96], + ["Zimbabwe (Republic of)",1.81], + ["Senegal (Republic of)",1.89], + ["Cambodia (Kingdom of)",1.83], + ["Pakistan (Islamic Republic of)",1.8], + ["Mali (Republic of)",1.82], + ["Nigeria (Federal Republic of)",1.79], + ["Lao (People's Democratic Republic)",1.66], + ["Philippines (Republic of the)",1.65], + ["Guatemala (Republic of)",1.64], + ["Djibouti (Republic of)",1.51], + ["Tanzania (United Republic of)",1.46], + ["Congo (Republic of the)",1.67], + ["Côte d'Ivoire (Republic of)",1.37], + ["Niger (Republic of)",1.49], + ["Eritrea (State of)",1.44], + ["Guinea (Republic of)",1.41], + ["Afghanistan (Islamic Republic of)",1.06], + ["Yemen (Republic of)",1.41], + ["Burkina Faso",1.38], + ["Kenya (Republic of)",1.41], + ["Ethiopia (Federal Democratic Republic of)",1.31], + ["Nepal (Federal Democratic Republic of)",1.22], + ["Tajikistan (Republic of)",1.1], + ["Benin (Republic of)",1.21], + ["Guinea-Bissau (Republic of)",1.18], + ["Ghana (Republic of)",1.04], + ["Cape Verde (Republic of)",1.43], + ["Madagascar (Republic of)",1.24], + ["Mozambique (Republic of)",1.09], + ["Bangladesh (People's Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.96], + ["Solomon Islands",1.01], + ["Sierra Leone (Republic of)",0.83], + ["Togo (Togolese Republic)",1.01], + ["Uganda (Republic of)",0.92], + ["Kiribati (Republic of)",0.81], + ["Haiti (Republic of)",0.78], + ["Malawi (Republic of)",0.59], + ["Rwanda (Republic of)",0.61], + ["Congo (Democratic Republic of the)",0.59], + ["Comoros (Union of the)",0.5], + ["Liberia (Republic of)",0.48], + ["Burundi (Republic of)",0.29] + ] +} diff --git a/data/global/environment/co2-emissions/co2-pc-2013.json b/data/global/environment/co2-emissions/co2-pc-2013.json new file mode 100644 index 0000000..77860c9 --- /dev/null +++ b/data/global/environment/co2-emissions/co2-pc-2013.json @@ -0,0 +1,206 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions Per-Capita", + "description" : "Metric tons of CO2 equivolent produced per-capita.", + "units" : "t CO2e per-capita", + "year" : "2013", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution","per-capita"], + "authors" : [ + "World Resource Institute" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions_per_capita" + ] + }, + "data" : [ + ["country.name","co2e.pc.2013"], + ["Kuwait (State of)",54.41], + ["Brunei (Nation of the Abode of Peace)",46.84], + ["Niue",45.6], + ["Qatar (State of)",36.82], + ["Belize",28.15], + ["Oman (Sultanate of)",27.43], + ["Bahrain (Kingdom of)",25.4], + ["Australia (Commonwealth of)",25.06], + ["United Arab Emirates",24.59], + ["Libya (State of)",21.47], + ["Canada",20.94], + ["Turkmenistan",20.93], + ["Luxembourg (Grand Duchy of)",20.72], + ["United States (of America)",19.9], + ["Equatorial Guinea (Republic of)",19.15], + ["Trinidad and Tobago (Republic of)",19.15], + ["Grenada",18.89], + ["Saudi Arabia (Kingdom of)",18.26], + ["Kazakhstan (Republic of)",18.23], + ["Estonia (Republic of)",17.66], + ["Palau (Republic of)",17.03], + ["New Zealand",16.62], + ["Russian Federation",15.31], + ["Mongolia",13.47], + ["Korea (Republic of)",13.43], + ["Ireland",12.65], + ["Barbados",12.53], + ["Finland (Republic of)",11.69], + ["Israel (State of)",11.46], + ["Czech Republic",11.42], + ["Antigua and Barbuda",11.22], + ["Netherlands (Kingdom of the)",11.09], + ["Germany (Federal Republic of)",11], + ["Central African Republic",10.94], + ["Japan",10.55], + ["Malaysia",10.2], + ["Belgium (Kingdom of)",10.17], + ["Uruguay (Oriental Republic of)",9.98], + ["Singapore (Republic of)",9.88], + ["Belarus (Republic of)",9.55], + ["South Africa (Republic of)",9.49], + ["Poland (Republic of)",9.43], + ["Denmark (Kingdom of)",9.38], + ["Iran (Islamic Republic of)",9.26], + ["Norway (Kingdom of)",9.18], + ["Austria (Republic of)",9.15], + ["Bahamas (Commonwealth of the)",9.04], + ["Iceland (Republic of)",8.96], + ["Venezuela (Bolivarian Republic of)",8.85], + ["Slovenia (Republic of)",8.72], + ["China (People's Republic of)",8.49], + ["United Kingdom (of Great Britain & Northern Ireland)",8.45], + ["Iraq (Republic of)",8.4], + ["Ukraine",8.33], + ["Saint Kitts and Nevis (Federation of)",8.04], + ["Bosnia and Herzegovina",7.89], + ["Argentina (Argentine Republic)",7.86], + ["Greece (Hellenic Republic)",7.68], + ["Seychelles (Republic of)",7.65], + ["Bulgaria (Republic of)",7.55], + ["Uzbekistan (Republic of)",7.52], + ["Slovakia (Slovak Republic)",7.43], + ["Azerbaijan (Republic of)",7.43], + ["Italy (Italian Republic)",7.05], + ["Malta (Republic of)",7.04], + ["France (French Republic)",6.9], + ["Serbia (Republic of)",6.62], + ["Spain (Kingdom of)",6.57], + ["Lithuania (Republic of)",6.45], + ["Saint Lucia",6.44], + ["Switzerland (Swiss Confederation)",6.34], + ["Latvia (Republic of)",6.2], + ["Suriname (Republic of)",6.18], + ["Botswana (Republic of)",6.07], + ["Cook Islands",6.07], + ["Cyprus (Republic of)",6.06], + ["Angola (Republic of)",5.99], + ["Mexico (United Mexican States)",5.98], + ["Chile (Republic of)",5.93], + ["Portugal (Portuguese Republic)",5.89], + ["Paraguay (Republic of)",5.81], + ["Hungary (Republic of)",5.78], + ["Croatia (Republic of)",5.49], + ["Romania",5.46], + ["Thailand (Kingdom of)",5.42], + ["Montenegro",5.4], + ["Turkey (Republic of)",5.39], + ["Guyana (Co-operative Republic of)",5.35], + ["Sweden (Kingdom of)",5.29], + ["Lebanon (Lebanese Republic)",5.11], + ["Brazil (Federative Republic of)",5.03], + ["Algeria (People's Democratic Republic of)",4.88], + ["Namibia (Republic of)",4.87], + ["Nauru (Republic of)",4.53], + ["Mauritius (Republic of)",4.52], + ["Bolivia (Plurinational State of)",4.5], + ["Panama (Republic of)",4.45], + ["Sudan (Republic of the)",null], + ["Cuba (Republic of)",4.08], + ["Gabon (Gabonese Republic)",4.05], + ["Gambia (Republic of the)",4.02], + ["Tonga (Kingdom of)",3.92], + ["Cameroon (Republic of)",3.85], + ["Ecuador (Republic of)",3.72], + ["Jordan (Hashemite Kingdom of)",3.66], + ["Georgia",3.66], + ["Colombia (Republic of)",3.37], + ["Dominica (Commonwealth of)",3.33], + ["Jamaica",3.33], + ["Syrian Arab Republic",3.32], + ["Zambia (Republic of)",3.31], + ["Tunisia (Republic of)",3.24], + ["Dominican Republic",3.23], + ["Fiji (Republic of)",3.13], + ["Egypt (Arab Republic of)",3.03], + ["Armenia (Republic of)",2.97], + ["Indonesia (Republic of)",2.95], + ["Costa Rica (Republic of)",2.93], + ["Maldives (Republic of)",2.86], + ["Albania (Republic of)",2.85], + ["Mauritania (Islamic Republic of)",2.84], + ["Peru (Republic of)",2.82], + ["Moldova (Republic of)",2.82], + ["Vietnam (Socialist Republic of)",2.81], + ["Kyrgyz Republic",2.73], + ["Samoa (Independent State of)",2.67], + ["Vanuatu (Republic of)",2.66], + ["Korea (Democratic People's Republic of)",2.55], + ["Saint Vincent and the Grenadines",2.53], + ["Honduras (Republic of)",2.44], + ["Nicaragua (Republic of)",2.37], + ["Morocco (Kingdom of)",2.33], + ["India (Republic of)",2.28], + ["Eswatini (Kingdom of)",2.25], + ["Chad (Republic of)",2.17], + ["Papua New Guinea (Independent State of)",2.16], + ["Lesotho (Kingdom of)",1.99], + ["Myanmar (Union of)",1.92], + ["Bhutan (Kingdom of)",1.91], + ["Sri Lanka (Democratic Socialist Republic of)",1.87], + ["El Salvador (Republic of)",1.85], + ["Zimbabwe (Republic of)",1.82], + ["Senegal (Republic of)",1.8], + ["Cambodia (Kingdom of)",1.8], + ["Pakistan (Islamic Republic of)",1.8], + ["Mali (Republic of)",1.77], + ["Nigeria (Federal Republic of)",1.77], + ["Lao (People's Democratic Republic)",1.77], + ["Philippines (Republic of the)",1.74], + ["Guatemala (Republic of)",1.71], + ["Djibouti (Republic of)",1.55], + ["Tanzania (United Republic of)",1.54], + ["Congo (Republic of the)",1.46], + ["Côte d'Ivoire (Republic of)",1.46], + ["Niger (Republic of)",1.44], + ["Eritrea (State of)",1.44], + ["Guinea (Republic of)",1.43], + ["Afghanistan (Islamic Republic of)",1.4], + ["Yemen (Republic of)",1.39], + ["Burkina Faso",1.38], + ["Kenya (Republic of)",1.34], + ["Ethiopia (Federal Democratic Republic of)",1.3], + ["Nepal (Federal Democratic Republic of)",1.29], + ["Tajikistan (Republic of)",1.25], + ["Benin (Republic of)",1.22], + ["Guinea-Bissau (Republic of)",1.17], + ["Ghana (Republic of)",1.17], + ["Cape Verde (Republic of)",1.15], + ["Madagascar (Republic of)",1.15], + ["Mozambique (Republic of)",1.04], + ["Bangladesh (People's Republic of)",1.04], + ["São Tomé and Príncipe (Democratic Republic of)",1.01], + ["Solomon Islands",0.99], + ["Sierra Leone (Republic of)",0.97], + ["Togo (Togolese Republic)",0.93], + ["Uganda (Republic of)",0.89], + ["Kiribati (Republic of)",0.77], + ["Haiti (Republic of)",0.77], + ["Malawi (Republic of)",0.61], + ["Rwanda (Republic of)",0.6], + ["Congo (Democratic Republic of the)",0.55], + ["Comoros (Union of the)",0.54], + ["Liberia (Republic of)",0.5], + ["Burundi (Republic of)",0.32] + ] +} diff --git a/data/global/environment/co2-emissions/co2-pc-2018.json b/data/global/environment/co2-emissions/co2-pc-2018.json new file mode 100644 index 0000000..6621ada --- /dev/null +++ b/data/global/environment/co2-emissions/co2-pc-2018.json @@ -0,0 +1,206 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions Per-Capita", + "description" : "Metric tons of CO2 equivolent produced per-capita.", + "units" : "t CO2e per-capita", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution","per-capita"], + "authors" : [ + "World Resource Institute" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions_per_capita" + ] + }, + "data" : [ + ["country.name","co2e.pc.2018"], + ["Kuwait (State of)",27.31], + ["Brunei (Nation of the Abode of Peace)",38.75], + ["Niue",null], + ["Qatar (State of)",35.89], + ["Belize",4.08], + ["Oman (Sultanate of)",17.04], + ["Bahrain (Kingdom of)",31.19], + ["Australia (Commonwealth of)",24.63], + ["United Arab Emirates",27.33], + ["Libya (State of)",15.43], + ["Canada",19.56], + ["Turkmenistan",21.38], + ["Luxembourg (Grand Duchy of)",16.81], + ["United States (of America)",18.44], + ["Equatorial Guinea (Republic of)",14.72], + ["Trinidad and Tobago (Republic of)",16.48], + ["Grenada",21.14], + ["Saudi Arabia (Kingdom of)",18.94], + ["Kazakhstan (Republic of)",15], + ["Estonia (Republic of)",14.07], + ["Palau (Republic of)",17.93], + ["New Zealand",16.6], + ["Russian Federation",17.6], + ["Mongolia",16.6], + ["Korea (Republic of)",13.93], + ["Ireland",13.37], + ["Barbados",13.22], + ["Finland (Republic of)",9.88], + ["Israel (State of)",9.89], + ["Czech Republic",11.56], + ["Antigua and Barbuda",12.59], + ["Netherlands (Kingdom of the)",10.37], + ["Germany (Federal Republic of)",9.72], + ["Central African Republic",11.93], + ["Japan",9.38], + ["Malaysia",9.73], + ["Belgium (Kingdom of)",9.52], + ["Uruguay (Oriental Republic of)",10.48], + ["Singapore (Republic of)",11.82], + ["Belarus (Republic of)",9.29], + ["South Africa (Republic of)",8.88], + ["Poland (Republic of)",10.26], + ["Denmark (Kingdom of)",7.92], + ["Iran (Islamic Republic of)",10.13], + ["Norway (Kingdom of)",8.91], + ["Austria (Republic of)",8.48], + ["Bahamas (Commonwealth of the)",6.85], + ["Iceland (Republic of)",9.74], + ["Venezuela (Bolivarian Republic of)",8.1], + ["Slovenia (Republic of)",8.28], + ["China (People's Republic of)",8.87], + ["United Kingdom (of Great Britain & Northern Ireland)",6.8], + ["Iraq (Republic of)",5.61], + ["Ukraine",6.15], + ["Saint Kitts and Nevis (Federation of)",7.03], + ["Bosnia and Herzegovina",8.18], + ["Argentina (Argentine Republic)",8.22], + ["Greece (Hellenic Republic)",7.9], + ["Seychelles (Republic of)",8.02], + ["Bulgaria (Republic of)",7.59], + ["Uzbekistan (Republic of)",7.15], + ["Slovakia (Slovak Republic)",7.33], + ["Azerbaijan (Republic of)",8.07], + ["Italy (Italian Republic)",6.61], + ["Malta (Republic of)",4.2], + ["France (French Republic)",6.32], + ["Serbia (Republic of)",8.96], + ["Spain (Kingdom of)",6.99], + ["Lithuania (Republic of)",6.73], + ["Saint Lucia",4.05], + ["Switzerland (Swiss Confederation)",5.41], + ["Latvia (Republic of)",6.05], + ["Suriname (Republic of)",6.57], + ["Botswana (Republic of)",7.15], + ["Cook Islands",null], + ["Cyprus (Republic of)",7.23], + ["Angola (Republic of)",2.59], + ["Mexico (United Mexican States)",5.39], + ["Chile (Republic of)",5.85], + ["Portugal (Portuguese Republic)",6.5], + ["Paraguay (Republic of)",7.07], + ["Hungary (Republic of)",6.23], + ["Croatia (Republic of)",5.52], + ["Romania",5.6], + ["Thailand (Kingdom of)",6.01], + ["Montenegro",6.11], + ["Turkey (Republic of)",6.1], + ["Guyana (Co-operative Republic of)",6.46], + ["Sweden (Kingdom of)",4.56], + ["Lebanon (Lebanese Republic)",5.02], + ["Brazil (Federative Republic of)",4.93], + ["Algeria (People's Democratic Republic of)",5.18], + ["Namibia (Republic of)",4.87], + ["Nauru (Republic of)",6.03], + ["Mauritius (Republic of)",5.33], + ["Bolivia (Plurinational State of)",5.01], + ["Panama (Republic of)",4.31], + ["Sudan (Republic of the)",2.62], + ["Cuba (Republic of)",3.69], + ["Gabon (Gabonese Republic)",3.52], + ["Gambia (Republic of the)",1.22], + ["Tonga (Kingdom of)",3.36], + ["Cameroon (Republic of)",3.53], + ["Ecuador (Republic of)",3.84], + ["Jordan (Hashemite Kingdom of)",3.6], + ["Georgia",4.54], + ["Colombia (Republic of)",3.71], + ["Dominica (Commonwealth of)",3.39], + ["Jamaica",3.41], + ["Syrian Arab Republic",2.74], + ["Zambia (Republic of)",2.34], + ["Tunisia (Republic of)",3.55], + ["Dominican Republic",3.68], + ["Fiji (Republic of)",3.2], + ["Egypt (Arab Republic of)",3.34], + ["Armenia (Republic of)",3.17], + ["Indonesia (Republic of)",3.62], + ["Costa Rica (Republic of)",3.16], + ["Maldives (Republic of)",4.61], + ["Albania (Republic of)",3.52], + ["Mauritania (Islamic Republic of)",3.2], + ["Peru (Republic of)",3.01], + ["Moldova (Republic of)",4.87], + ["Vietnam (Socialist Republic of)",3.94], + ["Kyrgyz Republic",2.87], + ["Samoa (Independent State of)",3.52], + ["Vanuatu (Republic of)",2.96], + ["Korea (Democratic People's Republic of)",1.64], + ["Saint Vincent and the Grenadines",3.32], + ["Honduras (Republic of)",2.34], + ["Nicaragua (Republic of)",2.95], + ["Morocco (Kingdom of)",2.62], + ["India (Republic of)",2.5], + ["Eswatini (Kingdom of)",2.75], + ["Chad (Republic of)",5.21], + ["Papua New Guinea (Independent State of)",2.67], + ["Lesotho (Kingdom of)",2.77], + ["Myanmar (Union of)",2.23], + ["Bhutan (Kingdom of)",3.27], + ["Sri Lanka (Democratic Socialist Republic of)",1.63], + ["El Salvador (Republic of)",1.92], + ["Zimbabwe (Republic of)",2.17], + ["Senegal (Republic of)",1.89], + ["Cambodia (Kingdom of)",2.31], + ["Pakistan (Islamic Republic of)",2.03], + ["Mali (Republic of)",2.29], + ["Nigeria (Federal Republic of)",1.59], + ["Lao (People's Democratic Republic)",4.14], + ["Philippines (Republic of the)",2.18], + ["Guatemala (Republic of)",2.17], + ["Djibouti (Republic of)",1.55], + ["Tanzania (United Republic of)",1.87], + ["Congo (Republic of the)",1.79], + ["Côte d'Ivoire (Republic of)",0.91], + ["Niger (Republic of)",2.01], + ["Eritrea (State of)",null], + ["Guinea (Republic of)",2.33], + ["Afghanistan (Islamic Republic of)",2.66], + ["Yemen (Republic of)",0.76], + ["Burkina Faso",1.56], + ["Kenya (Republic of)",1.53], + ["Ethiopia (Federal Democratic Republic of)",1.58], + ["Nepal (Federal Democratic Republic of)",1.82], + ["Tajikistan (Republic of)",1.67], + ["Benin (Republic of)",1.51], + ["Guinea-Bissau (Republic of)",1.49], + ["Ghana (Republic of)",1.49], + ["Cape Verde (Republic of)",1.52], + ["Madagascar (Republic of)",1.16], + ["Mozambique (Republic of)",1.19], + ["Bangladesh (People's Republic of)",1.23], + ["São Tomé and Príncipe (Democratic Republic of)",0.92], + ["Solomon Islands",1.44], + ["Sierra Leone (Republic of)",0.94], + ["Togo (Togolese Republic)",1.07], + ["Uganda (Republic of)",1.28], + ["Kiribati (Republic of)",0.95], + ["Haiti (Republic of)",0.89], + ["Malawi (Republic of)",1.01], + ["Rwanda (Republic of)",0.5], + ["Congo (Democratic Republic of the)",0.7], + ["Comoros (Union of the)",0.71], + ["Liberia (Republic of)",1.91], + ["Burundi (Republic of)",0.49] + ] +} diff --git a/data/global/environment/co2-emissions/co2-total.json b/data/global/environment/co2-emissions/co2-total.json new file mode 100644 index 0000000..a1b47b6 --- /dev/null +++ b/data/global/environment/co2-emissions/co2-total.json @@ -0,0 +1,215 @@ +{ + "metadata" : { + "name" : "Greenhouse Gas (GHG) Emissions", + "description" : "Megatonnes of CO2 equivolent produced.", + "units" : "Mt CO2e", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "environment", + "tags" : ["global","environment","polution"], + "authors" : [ + "World Resource Institute (WRI)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_greenhouse_gas_emissions" + ] + }, + "data" : [ + ["country.name","co2e.total"], + ["China (People's Republic of)",11706], + ["United States (of America)",5794], + ["India (Republic of)",3347], + ["Russian Federation",1992], + ["Indonesia (Republic of)",1704], + ["Brazil (Federative Republic of)",1421], + ["Japan",1155], + ["Iran (Islamic Republic of)",828], + ["Germany (Federal Republic of)",777], + ["Canada",763], + ["Mexico (United Mexican States)",695], + ["Congo (Democratic Republic of the)",682], + ["Korea (Republic of)",673], + ["Saudi Arabia (Kingdom of)",638], + ["Australia (Commonwealth of)",619], + ["South Africa (Republic of)",497], + ["Turkey (Republic of)",474], + ["United Kingdom (of Great Britain & Northern Ireland)",441], + ["Pakistan (Islamic Republic of)",438], + ["Thailand (Kingdom of)",431], + ["Argentina (Argentine Republic)",395], + ["Malaysia",388], + ["Italy (Italian Republic)",387], + ["Vietnam (Socialist Republic of)",364], + ["France (French Republic)",361], + ["Nigeria (Federal Republic of)",357], + ["Poland (Republic of)",357], + ["Egypt (Arab Republic of)",329], + ["Spain (Kingdom of)",313], + ["Venezuela (Bolivarian Republic of)",277], + ["Kazakhstan (Republic of)",271], + ["Colombia (Republic of)",268], + ["United Arab Emirates",263], + ["Ukraine",262], + ["Philippines (Republic of the)",234], + ["Uzbekistan (Republic of)",232], + ["Myanmar (Union of)",232], + ["Bangladesh (People's Republic of)",221], + ["Algeria (People's Democratic Republic of)",219], + ["Iraq (Republic of)",216], + ["Ethiopia (Federal Democratic Republic of)",205], + ["Peru (Republic of)",186], + ["Netherlands (Kingdom of the)",180], + ["Tanzania (United Republic of)",176], + ["Sudan (Republic of the)",131], + ["Bolivia (Plurinational State of)",126], + ["Turkmenistan",125], + ["Angola (Republic of)",125], + ["Cameroon (Republic of)",123], + ["Zimbabwe (Republic of)",119], + ["Czech Republic",117], + ["Kuwait (State of)",113], + ["Mozambique (Republic of)",110], + ["Belgium (Kingdom of)",109], + ["Chad (Republic of)",105], + ["Libya (State of)",103], + ["Qatar (State of)",100], + ["Afghanistan (Islamic Republic of)",99], + ["Paraguay (Republic of)",95], + ["Zambia (Republic of)",93], + ["Morocco (Kingdom of)",92], + ["Ecuador (Republic of)",92], + ["Israel (State of)",88], + ["Central African Republic",87], + ["Greece (Hellenic Republic)",86], + ["Romania",86], + ["Oman (Sultanate of)",82], + ["Azerbaijan (Republic of)",78], + ["Kenya (Republic of)",71], + ["New Zealand",71], + ["Uganda (Republic of)",71], + ["Cambodia (Kingdom of)",69], + ["South Sudan (Republic of)",68], + ["Austria (Republic of)",68], + ["Portugal (Portuguese Republic)",67], + ["Belarus (Republic of)",67], + ["Singapore (Republic of)",67], + ["Papua New Guinea (Independent State of)",64], + ["Hungary (Republic of)",63], + ["Serbia (Republic of)",62], + ["Ireland",62], + ["Finland (Republic of)",61], + ["Botswana (Republic of)",58], + ["Mongolia",56], + ["Burkina Faso",55], + ["Nepal (Federal Democratic Republic of)",55], + ["Chile (Republic of)",52], + ["Côte d'Ivoire (Republic of)",49], + ["Bahrain (Kingdom of)",49], + ["Denmark (Kingdom of)",47], + ["Solomon Islands",46], + ["Syrian Arab Republic",46], + ["Niger (Republic of)",46], + ["Korea (Democratic People's Republic of)",45], + ["Somalia (Federal Republic of)",44], + ["Switzerland (Swiss Confederation)",44], + ["Mali (Republic of)",44], + ["Madagascar (Republic of)",41], + ["Guinea (Republic of)",41], + ["Slovakia (Slovak Republic)",39], + ["Cuba (Republic of)",39], + ["Guatemala (Republic of)",39], + ["Nicaragua (Republic of)",39], + ["Lao (People's Democratic Republic)",39], + ["Dominican Republic",38], + ["Tunisia (Republic of)",37], + ["Sri Lanka (Democratic Socialist Republic of)",37], + ["Jordan (Hashemite Kingdom of)",36], + ["Uruguay (Oriental Republic of)",34], + ["Senegal (Republic of)",34], + ["Lebanon (Lebanese Republic)",34], + ["Sweden (Kingdom of)",30], + ["Norway (Kingdom of)",28], + ["Honduras (Republic of)",28], + ["Benin (Republic of)",28], + ["Malawi (Republic of)",27], + ["Bosnia and Herzegovina",25], + ["Equatorial Guinea (Republic of)",23], + ["Trinidad and Tobago (Republic of)",23], + ["Liberia (Republic of)",23], + ["Namibia (Republic of)",22], + ["Panama (Republic of)",22], + ["Yemen (Republic of)",22], + ["Estonia (Republic of)",21], + ["Congo (Republic of the)",20], + ["Ghana (Republic of)",20], + ["Bulgaria (Republic of)",19], + ["Guyana (Co-operative Republic of)",19], + ["Lithuania (Republic of)",18], + ["Croatia (Republic of)",18], + ["Slovenia (Republic of)",18], + ["Brunei (Nation of the Abode of Peace)",17], + ["Georgia",17], + ["Tajikistan (Republic of)",15], + ["Kyrgyz Republic",15], + ["Gabon (Gabonese Republic)",14], + ["El Salvador (Republic of)",13], + ["Moldova (Republic of)",13], + ["Suriname (Republic of)",13], + ["Mauritania (Islamic Republic of)",13], + ["Sierra Leone (Republic of)",11], + ["Haiti (Republic of)",11], + ["North Macedonia (Republic of)",11], + ["Jamaica",10], + ["Luxembourg (Grand Duchy of)",10], + ["Albania (Republic of)",10], + ["Armenia (Republic of)",10], + ["Togo (Togolese Republic)",9], + ["Burundi (Republic of)",9], + ["Latvia (Republic of)",9], + ["Costa Rica (Republic of)",9], + ["Cyprus (Republic of)",8], + ["Eritrea (State of)",8], + ["Rwanda (Republic of)",8], + ["Belize",7], + ["Mauritius (Republic of)",7], + ["Timor-Leste (Democratic Republic of)",6], + ["Lesotho (Kingdom of)",6], + ["Guinea-Bissau (Republic of)",4], + ["Montenegro",4], + ["Barbados",4], + ["Iceland (Republic of)",3], + ["Gambia (Republic of the)",3], + ["Eswatini (Kingdom of)",3], + ["Bahamas (Commonwealth of the)",3], + ["Maldives (Republic of)",2], + ["Grenada",2], + ["Malta (Republic of)",2], + ["Djibouti (Republic of)",1], + ["Antigua and Barbuda",1], + ["Bhutan (Kingdom of)",1], + ["Vanuatu (Republic of)",1], + ["Samoa (Independent State of)",1], + ["Seychelles (Republic of)",1], + ["Cape Verde (Republic of)",1], + ["Comoros (Union of the)",1], + ["Saint Lucia",1], + ["Andorra (Principality of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.41], + ["Saint Vincent and the Grenadines",0.37], + ["Saint Kitts and Nevis (Federation of)",0.37], + ["Tonga (Kingdom of)",0.35], + ["Palau (Republic of)",0.32], + ["Fiji (Republic of)",0.28], + ["Micronesia (Federated States of)",0.24], + ["Marshall Islands (Republic of the)",0.24], + ["Dominica (Commonwealth of)",0.23], + ["Liechtenstein (Principality of)",0.18], + ["Kiribati (Republic of)",0.11], + ["Cook Islands",0.1], + ["Nauru (Republic of)",0.08], + ["Tuvalu",0.03], + ["Niue",0.01] + ] +} diff --git a/data/global/geography/climate/precipitation-yearly-average.json b/data/global/geography/climate/precipitation-yearly-average.json new file mode 100644 index 0000000..e1d0a72 --- /dev/null +++ b/data/global/geography/climate/precipitation-yearly-average.json @@ -0,0 +1,204 @@ +{ + "metadata" : { + "name" : "Yearly Average Precipitation (Rainfall)", + "description" : "Yearly Average Precipitation (Rainfall)", + "units" : "mm", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "uncategorised", + "tags" : ["global","geography","climate","precipitation","rainfall","weather"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_average_annual_precipitation" + ] + }, + "data" : [ + ["country.name","geographic.climate.precipitation"], + ["Colombia (Republic of)",3240], + ["São Tomé and Príncipe (Democratic Republic of)",3200], + ["Papua New Guinea (Independent State of)",3142], + ["Solomon Islands",3028], + ["Panama (Republic of)",2928], + ["Costa Rica (Republic of)",2926], + ["Samoa (Independent State of)",2880], + ["Malaysia",2875], + ["Brunei (Nation of the Abode of Peace)",2722], + ["Indonesia (Republic of)",2702], + ["Bangladesh (People's Republic of)",2666], + ["Fiji (Republic of)",2592], + ["Sierra Leone (Republic of)",2526], + ["Singapore (Republic of)",2497], + ["Liberia (Republic of)",2391], + ["Guyana (Co-operative Republic of)",2387], + ["Grenada",2350], + ["Philippines (Republic of the)",2348], + ["Suriname (Republic of)",2331], + ["Seychelles (Republic of)",2330], + ["Saint Lucia",2301], + ["Nicaragua (Republic of)",2280], + ["Ecuador (Republic of)",2274], + ["Bhutan (Kingdom of)",2200], + ["Trinidad and Tobago (Republic of)",2200], + ["Equatorial Guinea (Republic of)",2156], + ["Myanmar (Union of)",2091], + ["Dominica (Commonwealth of)",2083], + ["Puerto Rico (Commonwealth of)",2054], + ["Jamaica",2051], + ["Venezuela (Bolivarian Republic of)",2044], + ["Mauritius (Republic of)",2041], + ["Vanuatu (Republic of)",2000], + ["Guatemala (Republic of)",1996], + ["Honduras (Republic of)",1976], + ["Maldives (Republic of)",1972], + ["Iceland (Republic of)",1940], + ["Cambodia (Kingdom of)",1904], + ["Lao (People's Democratic Republic)",1834], + ["Gabon (Gabonese Republic)",1831], + ["Vietnam (Socialist Republic of)",1821], + ["El Salvador (Republic of)",1784], + ["Brazil (Federative Republic of)",1761], + ["Peru (Republic of)",1738], + ["New Zealand",1732], + ["Sri Lanka (Democratic Socialist Republic of)",1712], + ["Belize",1705], + ["Japan",1668], + ["Guinea (Republic of)",1651], + ["Congo (Republic of the)",1646], + ["Thailand (Kingdom of)",1622], + ["Cameroon (Republic of)",1604], + ["Saint Vincent and the Grenadines",1583], + ["Guinea-Bissau (Republic of)",1577], + ["Congo (Democratic Republic of the)",1543], + ["Switzerland (Swiss Confederation)",1537], + ["Chile (Republic of)",1522], + ["Madagascar (Republic of)",1513], + ["Timor-Leste (Democratic Republic of)",1500], + ["Nepal (Federal Democratic Republic of)",1500], + ["Albania (Republic of)",1485], + ["Haiti (Republic of)",1440], + ["Saint Kitts and Nevis (Federation of)",1427], + ["Barbados",1422], + ["Norway (Kingdom of)",1414], + ["Dominican Republic",1410], + ["Côte d'Ivoire (Republic of)",1348], + ["Central African Republic",1343], + ["Cuba (Republic of)",1335], + ["Uruguay (Oriental Republic of)",1300], + ["Bahamas (Commonwealth of the)",1292], + ["Burundi (Republic of)",1274], + ["Korea (Republic of)",1274], + ["United Kingdom (of Great Britain & Northern Ireland)",1220], + ["Rwanda (Republic of)",1212], + ["Ghana (Republic of)",1187], + ["Malawi (Republic of)",1181], + ["Uganda (Republic of)",1180], + ["Togo (Togolese Republic)",1168], + ["Slovenia (Republic of)",1162], + ["Nigeria (Federal Republic of)",1150], + ["Bolivia (Plurinational State of)",1146], + ["Paraguay (Republic of)",1130], + ["Ireland",1118], + ["Croatia (Republic of)",1113], + ["Austria (Republic of)",1110], + ["India (Republic of)",1083], + ["Tanzania (United Republic of)",1071], + ["Korea (Democratic People's Republic of)",1054], + ["Benin (Republic of)",1039], + ["Mozambique (Republic of)",1032], + ["Antigua and Barbuda",1030], + ["Bosnia and Herzegovina",1028], + ["Georgia",1026], + ["Zambia (Republic of)",1020], + ["Angola (Republic of)",1010], + ["Luxembourg (Grand Duchy of)",934], + ["Comoros (Union of the)",900], + ["South Sudan (Republic of)",900], + ["France (French Republic)",867], + ["Portugal (Portuguese Republic)",854], + ["Ethiopia (Federal Democratic Republic of)",848], + ["Belgium (Kingdom of)",847], + ["Gambia (Republic of the)",836], + ["Italy (Italian Republic)",832], + ["Slovakia (Slovak Republic)",824], + ["Eswatini (Kingdom of)",788], + ["Lesotho (Kingdom of)",788], + ["Netherlands (Kingdom of the)",778], + ["Mexico (United Mexican States)",758], + ["Burkina Faso",748], + ["United States (of America)",715], + ["Denmark (Kingdom of)",703], + ["Germany (Federal Republic of)",700], + ["Tajikistan (Republic of)",691], + ["Senegal (Republic of)",686], + ["Czech Republic",677], + ["Latvia (Republic of)",667], + ["Lebanon (Lebanese Republic)",661], + ["Zimbabwe (Republic of)",657], + ["Lithuania (Republic of)",656], + ["Greece (Hellenic Republic)",652], + ["China (People's Republic of)",645], + ["Romania",637], + ["Spain (Kingdom of)",636], + ["Kenya (Republic of)",630], + ["Estonia (Republic of)",626], + ["Sweden (Kingdom of)",624], + ["North Macedonia (Republic of)",619], + ["Belarus (Republic of)",618], + ["Bulgaria (Republic of)",608], + ["Poland (Republic of)",600], + ["Turkey (Republic of)",593], + ["Argentina (Argentine Republic)",591], + ["Hungary (Republic of)",589], + ["Ukraine",565], + ["Armenia (Republic of)",562], + ["Malta (Republic of)",560], + ["Canada",537], + ["Finland (Republic of)",536], + ["Australia (Commonwealth of)",534], + ["Kyrgyz Republic",533], + ["Cyprus (Republic of)",498], + ["South Africa (Republic of)",495], + ["Pakistan (Islamic Republic of)",494], + ["Russian Federation",460], + ["Moldova (Republic of)",450], + ["Azerbaijan (Republic of)",447], + ["Israel (State of)",435], + ["Botswana (Republic of)",416], + ["Palestine (State of)",402], + ["Eritrea (State of)",384], + ["Morocco (Kingdom of)",346], + ["Afghanistan (Islamic Republic of)",327], + ["Chad (Republic of)",322], + ["Namibia (Republic of)",285], + ["Mali (Republic of)",282], + ["Somalia (Federal Republic of)",282], + ["Syrian Arab Republic",252], + ["Kazakhstan (Republic of)",250], + ["Sudan (Republic of the)",250], + ["Mongolia",241], + ["Cape Verde (Republic of)",228], + ["Iran (Islamic Republic of)",228], + ["Djibouti (Republic of)",220], + ["Iraq (Republic of)",216], + ["Tunisia (Republic of)",207], + ["Uzbekistan (Republic of)",206], + ["Yemen (Republic of)",167], + ["Turkmenistan",161], + ["Niger (Republic of)",151], + ["Oman (Sultanate of)",125], + ["Kuwait (State of)",121], + ["Jordan (Hashemite Kingdom of)",111], + ["Mauritania (Islamic Republic of)",92], + ["Algeria (People's Democratic Republic of)",89], + ["Bahrain (Kingdom of)",83], + ["United Arab Emirates",78], + ["Qatar (State of)",74], + ["Saudi Arabia (Kingdom of)",59], + ["Libya (State of)",56], + ["Egypt (Arab Republic of)",18] + ] +} diff --git a/data/global/geography/climate/temperature-yearly-average.json b/data/global/geography/climate/temperature-yearly-average.json new file mode 100644 index 0000000..2d65a51 --- /dev/null +++ b/data/global/geography/climate/temperature-yearly-average.json @@ -0,0 +1,214 @@ +{ + "metadata" : { + "name" : "Yearly Average Temperature", + "description" : "Yearly Average Temperature", + "units" : "C", + "year" : "1990", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "uncategorised", + "tags" : ["global","geography","climate","temperature","weather"], + "authors" : [ + "Journal Of Climate" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_average_yearly_temperature" + ] + }, + "data" : [ + ["country.name","geographic.climate.temperature"], + ["Burkina Faso",28.29], + ["Mali (Republic of)",28.25], + ["Kiribati (Republic of)",28.2], + ["Djibouti (Republic of)",28], + ["Maldives (Republic of)",28], + ["Senegal (Republic of)",27.85], + ["Mauritania (Islamic Republic of)",27.65], + ["Tuvalu",27.65], + ["Palau (Republic of)",27.6], + ["Benin (Republic of)",27.55], + ["Gambia (Republic of the)",27.5], + ["Marshall Islands (Republic of the)",27.4], + ["Ghana (Republic of)",27.2], + ["Kuwait (State of)",27.15], + ["Niger (Republic of)",27.15], + ["Qatar (State of)",27.15], + ["Seychelles (Republic of)",27.15], + ["Togo (Togolese Republic)",27.15], + ["Somalia (Federal Republic of)",27.05], + ["Nigeria (Federal Republic of)",27], + ["Sri Lanka (Democratic Socialist Republic of)",26.95], + ["Sudan (Republic of the)",26.9], + ["Brunei (Nation of the Abode of Peace)",26.85], + ["Cambodia (Kingdom of)",26.8], + ["Bahrain (Kingdom of)",26.8], + ["Saint Vincent and the Grenadines",26.8], + ["Guinea-Bissau (Republic of)",26.75], + ["Samoa (Independent State of)",26.7], + ["United Arab Emirates",26.65], + ["Chad (Republic of)",26.55], + ["Singapore (Republic of)",26.45], + ["Côte d'Ivoire (Republic of)",26.35], + ["Thailand (Kingdom of)",26.3], + ["Sierra Leone (Republic of)",26.05], + ["Grenada",26], + ["Barbados",26], + ["Guyana (Co-operative Republic of)",26], + ["Indonesia (Republic of)",25.85], + ["Micronesia (Federated States of)",25.85], + ["Antigua and Barbuda",25.85], + ["Trinidad and Tobago (Republic of)",25.75], + ["Guinea (Republic of)",25.7], + ["Suriname (Republic of)",25.7], + ["Solomon Islands",25.65], + ["Oman (Sultanate of)",25.6], + ["Philippines (Republic of the)",25.55], + ["Eritrea (State of)",25.5], + ["Saint Lucia",25.5], + ["Malaysia",25.4], + ["Panama (Republic of)",25.4], + ["Belize",25.35], + ["Comoros (Union of the)",25.3], + ["Venezuela (Bolivarian Republic of)",25.35], + ["Liberia (Republic of)",25.3], + ["Timor-Leste (Democratic Republic of)",25.25], + ["Papua New Guinea (Independent State of)",25.25], + ["Tonga (Kingdom of)",25.25], + ["Cuba (Republic of)",25.2], + ["Gabon (Gabonese Republic)",25.05], + ["Bangladesh (People's Republic of)",25], + ["Brazil (Federative Republic of)",24.95], + ["Jamaica",24.95], + ["Central African Republic",24.9], + ["Haiti (Republic of)",24.9], + ["Nicaragua (Republic of)",24.9], + ["Bahamas (Commonwealth of the)",24.85], + ["Costa Rica (Republic of)",24.8], + ["Kenya (Republic of)",24.75], + ["Saudi Arabia (Kingdom of)",24.65], + ["Cameroon (Republic of)",24.6], + ["Congo (Republic of the)",24.55], + ["Dominican Republic",24.55], + ["Equatorial Guinea (Republic of)",24.55], + ["Colombia (Republic of)",24.5], + ["Saint Kitts and Nevis (Federation of)",24.5], + ["Vietnam (Socialist Republic of)",24.45], + ["El Salvador (Republic of)",24.45], + ["Fiji (Republic of)",24.4], + ["Congo (Democratic Republic of the)",24], + ["Vanuatu (Republic of)",23.95], + ["Yemen (Republic of)",23.85], + ["Mozambique (Republic of)",23.8], + ["São Tomé and Príncipe (Democratic Republic of)",23.75], + ["India (Republic of)",23.65], + ["Paraguay (Republic of)",23.55], + ["Honduras (Republic of)",23.5], + ["Guatemala (Republic of)",23.45], + ["Cape Verde (Republic of)",23.3], + ["Lao (People's Democratic Republic)",22.8], + ["Uganda (Republic of)",22.8], + ["Madagascar (Republic of)",22.65], + ["Algeria (People's Democratic Republic of)",22.5], + ["Mauritius (Republic of)",22.4], + ["Dominica (Commonwealth of)",22.35], + ["Tanzania (United Republic of)",22.35], + ["Ethiopia (Federal Democratic Republic of)",22.2], + ["Egypt (Arab Republic of)",22.1], + ["Malawi (Republic of)",21.9], + ["Ecuador (Republic of)",21.85], + ["Libya (State of)",21.8], + ["Australia (Commonwealth of)",21.65], + ["Angola (Republic of)",21.55], + ["Bolivia (Plurinational State of)",21.55], + ["Botswana (Republic of)",21.5], + ["Hong Kong (Special Administrative Region of China)",21.45], + ["Iraq (Republic of)",21.4], + ["Eswatini (Kingdom of)",21.4], + ["Zambia (Republic of)",21.4], + ["Mexico (United Mexican States)",21], + ["Zimbabwe (Republic of)",21], + ["Pakistan (Islamic Republic of)",20.2], + ["Namibia (Republic of)",19.95], + ["Burundi (Republic of)",19.8], + ["Peru (Republic of)",19.6], + ["Israel (State of)",19.2], + ["Malta (Republic of)",19.2], + ["Tunisia (Republic of)",19.2], + ["Cyprus (Republic of)",18.45], + ["Jordan (Hashemite Kingdom of)",18.3], + ["Rwanda (Republic of)",17.85], + ["South Africa (Republic of)",17.75], + ["Syrian Arab Republic",17.75], + ["Uruguay (Oriental Republic of)",17.55], + ["Iran (Islamic Republic of)",17.25], + ["Morocco (Kingdom of)",17.1], + ["Greece (Hellenic Republic)",15.4], + ["Portugal (Portuguese Republic)",15.15], + ["Turkmenistan",15.1], + ["Lebanon (Lebanese Republic)",15], + ["Argentina (Argentine Republic)",14.8], + ["Monaco (Principality of)",13.55], + ["Italy (Italian Republic)",13.45], + ["Spain (Kingdom of)",13.3], + ["Myanmar (Union of)",13.05], + ["Afghanistan (Islamic Republic of)",12.6], + ["Uzbekistan (Republic of)",12.05], + ["Azerbaijan (Republic of)",11.95], + ["Lesotho (Kingdom of)",11.85], + ["San Marino (Republic of)",11.85], + ["Korea (Republic of)",11.5], + ["Albania (Republic of)",11.4], + ["Japan",11.15], + ["Croatia (Republic of)",10.9], + ["France (French Republic)",10.7], + ["Montenegro",10.55], + ["Bulgaria (Republic of)",10.55], + ["New Zealand",10.55], + ["Serbia (Republic of)",10.55], + ["Turkey (Republic of)",9.9], + ["Bosnia and Herzegovina",9.85], + ["North Macedonia (Republic of)",9.8], + ["Hungary (Republic of)",9.75], + ["Belgium (Kingdom of)",9.55], + ["Moldova (Republic of)",9.45], + ["Ireland",9.3], + ["Netherlands (Kingdom of the)",9.25], + ["Slovenia (Republic of)",8.9], + ["Romania",8.8], + ["Luxembourg (Grand Duchy of)",8.65], + ["United States (of America)",8.55], + ["United Kingdom (of Great Britain & Northern Ireland)",8.45], + ["Chile (Republic of)",8.45], + ["Germany (Federal Republic of)",8.4], + ["Ukraine",8.3], + ["Nepal (Federal Democratic Republic of)",8.1], + ["Poland (Republic of)",7.85], + ["Andorra (Principality of)",7.6], + ["Czech Republic",7.55], + ["China (People's Republic of)",7.5], + ["Bhutan (Kingdom of)",7.4], + ["Armenia (Republic of)",7.15], + ["Slovakia (Slovak Republic)",6.8], + ["Tajikistan (Republic of)",6.4], + ["Austria (Republic of)",6.35], + ["Lithuania (Republic of)",6.2], + ["Belarus (Republic of)",6.15], + ["Liechtenstein (Principality of)",5.8], + ["Korea (Democratic People's Republic of)",5.7], + ["Georgia",5.65], + ["Latvia (Republic of)",5.6], + ["Kazakhstan (Republic of)",5.5], + ["Switzerland (Swiss Confederation)",5.1], + ["Kyrgyz Republic",2.1], + ["Estonia (Republic of)",2], + ["Sweden (Kingdom of)",1.75], + ["Mongolia",1.7], + ["Finland (Republic of)",1.55], + ["Norway (Kingdom of)",1.5], + ["Iceland (Republic of)",-0.7], + ["Denmark (Kingdom of)",-3.7], + ["Canada",-5.1], + ["Russian Federation",-5.35] + ] +} diff --git a/data/global/geography/geographic-area/geographic-area-forrest.json b/data/global/geography/geographic-area/geographic-area-forrest.json new file mode 100644 index 0000000..891e0ab --- /dev/null +++ b/data/global/geography/geographic-area/geographic-area-forrest.json @@ -0,0 +1,216 @@ +{ + "metadata" : { + "name" : "Forrested Area", + "description" : "Geographic area covered by forrest in km2.", + "units" : "km2", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "geographic", + "tags" : ["global","geography","area","forrest"], + "authors" : [ + "United Nations (UN) Food and Agriculture Organization" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_forest_area" + ] + }, + "data" : [ + ["country.name","geographic.area.forrest"], + ["Afghanistan (Islamic Republic of)",12080], + ["Albania (Republic of)",7890], + ["Algeria (People's Democratic Republic of)",19490], + ["American Samoa",170], + ["Andorra (Principality of)",160], + ["Angola (Republic of)",666070], + ["Antigua and Barbuda",80], + ["Argentina (Argentine Republic)",285730], + ["Armenia (Republic of)",3280], + ["Australia (Commonwealth of)",1340050], + ["Austria (Republic of)",38990], + ["Azerbaijan (Republic of)",11320], + ["Bahamas (Commonwealth of the)",5100], + ["Bangladesh (People's Republic of)",18830], + ["Barbados",60], + ["Belarus (Republic of)",87680], + ["Belgium (Kingdom of)",6890], + ["Belize",12770], + ["Benin (Republic of)",31350], + ["Bermuda",10], + ["Bhutan (Kingdom of)",27250], + ["Bolivia (Plurinational State of)",508340], + ["Bosnia and Herzegovina",21880], + ["Botswana (Republic of)",152550], + ["Brazil (Federative Republic of)",4966200], + ["Brunei (Nation of the Abode of Peace)",3800], + ["Bulgaria (Republic of)",38930], + ["Burkina Faso",62160], + ["Burundi (Republic of)",2800], + ["Cambodia (Kingdom of)",80680], + ["Cameroon (Republic of)",203400], + ["Canada",3469280], + ["Cape Verde (Republic of)",460], + ["Cayman Islands",130], + ["Central African Republic",223030], + ["Chad (Republic of)",43130], + ["Chile (Republic of)",182110], + ["China (People's Republic of)",2199780], + ["Colombia (Republic of)",591420], + ["Comoros (Union of the)",330], + ["Congo (Republic of the)",219460], + ["Costa Rica (Republic of)",30350], + ["Croatia (Republic of)",19390], + ["Cuba (Republic of)",32420], + ["Cyprus (Republic of)",1730], + ["Czech Republic",26770], + ["Congo (Democratic Republic of the)",1261550], + ["Denmark (Kingdom of)",6280], + ["Djibouti (Republic of)",60], + ["Dominica (Commonwealth of)",480], + ["Dominican Republic",21440], + ["Timor-Leste (Democratic Republic of)",9210], + ["Ecuador (Republic of)",124980], + ["Egypt (Arab Republic of)",450], + ["El Salvador (Republic of)",5840], + ["Equatorial Guinea (Republic of)",24480], + ["Eritrea (State of)",10550], + ["Estonia (Republic of)",24380], + ["Ethiopia (Federal Democratic Republic of)",170690], + ["Fiji (Republic of)",11400], + ["Finland (Republic of)",224090], + ["France (French Republic)",172530], + ["Gabon (Gabonese Republic)",235310], + ["Gambia (Republic of the)",2430], + ["Georgia",28220], + ["Germany (Federal Republic of)",114190], + ["Ghana (Republic of)",79860], + ["Greece (Hellenic Republic)",39020], + ["Grenada",180], + ["Guatemala (Republic of)",35280], + ["Guinea (Republic of)",61890], + ["Guinea-Bissau (Republic of)",19800], + ["Guyana (Co-operative Republic of)",184150], + ["Haiti (Republic of)",3470], + ["Honduras (Republic of)",63590], + ["Hungary (Republic of)",20530], + ["Iceland (Republic of)",510], + ["India (Republic of)",721600], + ["Indonesia (Republic of)",921330], + ["Iran (Islamic Republic of)",107520], + ["Iraq (Republic of)",8250], + ["Ireland",7820], + ["Israel (State of)",1400], + ["Italy (Italian Republic)",95660], + ["Côte d'Ivoire (Republic of)",28370], + ["Jamaica",5970], + ["Japan",249350], + ["Jordan (Hashemite Kingdom of)",980], + ["Kazakhstan (Republic of)",34550], + ["Kenya (Republic of)",36110], + ["Kiribati (Republic of)",10], + ["Kuwait (State of)",60], + ["Kyrgyz Republic",13150], + ["Lao (People's Democratic Republic)",165960], + ["Latvia (Republic of)",34110], + ["Lebanon (Lebanese Republic)",1430], + ["Lesotho (Kingdom of)",350], + ["Liberia (Republic of)",76170], + ["Libya (State of)",2170], + ["Liechtenstein (Principality of)",70], + ["Lithuania (Republic of)",22010], + ["Luxembourg (Grand Duchy of)",890], + ["Madagascar (Republic of)",124300], + ["Malawi (Republic of)",22420], + ["Malaysia",191140], + ["Maldives (Republic of)",10], + ["Mali (Republic of)",132960], + ["Mauritania (Islamic Republic of)",3130], + ["Mauritius (Republic of)",390], + ["Mexico (United Mexican States)",656920], + ["Micronesia (Federated States of)",640], + ["Moldova (Republic of)",3870], + ["Monaco (Principality of)",0], + ["Mongolia",141730], + ["Montenegro",8270], + ["Morocco (Kingdom of)",57420], + ["Mozambique (Republic of)",367440], + ["Myanmar (Union of)",285440], + ["Namibia (Republic of)",66390], + ["Nepal (Federal Democratic Republic of)",59620], + ["Netherlands (Kingdom of the)",3700], + ["New Caledonia",8380], + ["New Zealand",98930], + ["Nicaragua (Republic of)",34080], + ["Niger (Republic of)",10800], + ["Nigeria (Federal Republic of)",216270], + ["Korea (Democratic People's Republic of)",62870], + ["North Macedonia (Republic of)",10010], + ["Norway (Kingdom of)",121800], + ["Oman (Sultanate of)",30], + ["Pakistan (Islamic Republic of)",37260], + ["Palau (Republic of)",410], + ["Panama (Republic of)",42140], + ["Papua New Guinea (Independent State of)",358560], + ["Paraguay (Republic of)",161020], + ["Peru (Republic of)",723300], + ["Philippines (Republic of the)",71890], + ["Poland (Republic of)",94830], + ["Portugal (Portuguese Republic)",33120], + ["Puerto Rico (Commonwealth of)",4960], + ["Qatar (State of)",0], + ["Romania",69290], + ["Russian Federation",8153120], + ["Rwanda (Republic of)",2760], + ["Saint Lucia",210], + ["Saint Vincent and the Grenadines",290], + ["Samoa (Independent State of)",1620], + ["San Marino (Republic of)",10], + ["São Tomé and Príncipe (Democratic Republic of)",520], + ["Saudi Arabia (Kingdom of)",9770], + ["Senegal (Republic of)",80680], + ["Serbia (Republic of)",27230], + ["Seychelles (Republic of)",340], + ["Sierra Leone (Republic of)",25350], + ["Singapore (Republic of)",160], + ["Slovakia (Slovak Republic)",19260], + ["Slovenia (Republic of)",12380], + ["Solomon Islands",25230], + ["Somalia (Federal Republic of)",59800], + ["South Africa (Republic of)",170500], + ["Korea (Republic of)",60300], + ["South Sudan (Republic of)",71570], + ["Spain (Kingdom of)",185720], + ["Sri Lanka (Democratic Socialist Republic of)",21130], + ["Sudan (Republic of the)",183600], + ["Suriname (Republic of)",151960], + ["Eswatini (Kingdom of)",4980], + ["Sweden (Kingdom of)",279800], + ["Switzerland (Swiss Confederation)",12690], + ["Syrian Arab Republic",5220], + ["Tajikistan (Republic of)",4240], + ["Tanzania (United Republic of)",457450], + ["Thailand (Kingdom of)",198730], + ["Togo (Togolese Republic)",12090], + ["Tonga (Kingdom of)",90], + ["Trinidad and Tobago (Republic of)",2280], + ["Tunisia (Republic of)",7030], + ["Turkey (Republic of)",222200], + ["Turkmenistan",41270], + ["Tuvalu",10], + ["Uganda (Republic of)",23380], + ["Ukraine",96900], + ["United Arab Emirates",3170], + ["United Kingdom (of Great Britain & Northern Ireland)",31900], + ["United States (of America)",3097950], + ["United States Virgin Islands",200], + ["Uruguay (Oriental Republic of)",20310], + ["Uzbekistan (Republic of)",36900], + ["Vanuatu (Republic of)",4420], + ["Venezuela (Bolivarian Republic of)",462310], + ["Vietnam (Socialist Republic of)",146430], + ["Yemen (Republic of)",5490], + ["Zambia (Republic of)",448140], + ["Zimbabwe (Republic of)",174450] + ] +} diff --git a/data/global/geography/geographic-area/geographic-area-land.json b/data/global/geography/geographic-area/geographic-area-land.json new file mode 100644 index 0000000..bebb2d5 --- /dev/null +++ b/data/global/geography/geographic-area/geographic-area-land.json @@ -0,0 +1,281 @@ +{ + "metadata" : { + "name" : "Geographic Land Area", + "description" : "Geographic land area measured in square killometres.", + "units" : "km2", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "geographic", + "tags" : ["global","geography","land","area"], + "authors" : [ + "Wikipedia" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area" + ] + }, + "data" : [ + ["country.name","geographic.area.land"], + ["Russian Federation",16378410], + ["Antarctica (the territory South of 60 deg S)",14200000], + ["Canada",9093507], + ["China (People's Republic of)",9326410], + ["United States (of America)",9147593], + ["Brazil (Federative Republic of)",8460415], + ["Australia (Commonwealth of)",7633565], + ["India (Republic of)",2973190], + ["Argentina (Argentine Republic)",2736690], + ["Kazakhstan (Republic of)",2699700], + ["Algeria (People's Democratic Republic of)",2381741], + ["Congo (Democratic Republic of the)",2267048], + ["Denmark (Kingdom of)",2220072], + ["Greenland",2166086], + ["Saudi Arabia (Kingdom of)",2149690], + ["Mexico (United Mexican States)",1943945], + ["Indonesia (Republic of)",1811569], + ["Sudan (Republic of the)",1731671], + ["Libya (State of)",1759540], + ["Iran (Islamic Republic of)",1531595], + ["Mongolia",1553556], + ["Peru (Republic of)",1279996], + ["Chad (Republic of)",1259200], + ["Niger (Republic of)",1266700], + ["Angola (Republic of)",1246700], + ["Mali (Republic of)",1220190], + ["South Africa (Republic of)",1214470], + ["Colombia (Republic of)",1038700], + ["Ethiopia (Federal Democratic Republic of)",1000000], + ["Bolivia (Plurinational State of)",1083301], + ["Mauritania (Islamic Republic of)",1025520], + ["Egypt (Arab Republic of)",995450], + ["Tanzania (United Republic of)",885800], + ["Nigeria (Federal Republic of)",910768], + ["Venezuela (Bolivarian Republic of)",882050], + ["Pakistan (Islamic Republic of)",856690], + ["Namibia (Republic of)",823290], + ["Mozambique (Republic of)",786380], + ["Turkey (Republic of)",769632], + ["Chile (Republic of)",743812], + ["Zambia (Republic of)",743398], + ["Myanmar (Union of)",653508], + ["Afghanistan (Islamic Republic of)",652867], + ["South Sudan (Republic of)",644329], + ["France (French Republic)",640427], + ["Somalia (Federal Republic of)",627337], + ["Central African Republic",622984], + ["Ukraine",579300], + ["Madagascar (Republic of)",581540], + ["Botswana (Republic of)",566730], + ["Kenya (Republic of)",569140], + ["Yemen (Republic of)",555000], + ["France (Metropolitan)",null], + ["Thailand (Kingdom of)",510890], + ["Spain (Kingdom of)",498980], + ["Turkmenistan",469930], + ["Cameroon (Republic of)",472710], + ["Papua New Guinea (Independent State of)",452860], + ["Sweden (Kingdom of)",407284], + ["Uzbekistan (Republic of)",425400], + ["Morocco (Kingdom of)",446300], + ["Iraq (Republic of)",437367], + ["Paraguay (Republic of)",397302], + ["Zimbabwe (Republic of)",386847], + ["Norway (Kingdom of)",365957], + ["Japan",364546], + ["Germany (Federal Republic of)",348672], + ["Congo (Republic of the)",341500], + ["Finland (Republic of)",303816], + ["Vietnam (Socialist Republic of)",310070], + ["Malaysia",329613], + ["Norway (Kingdom of)",304282], + ["Côte d'Ivoire (Republic of)",318003], + ["Poland (Republic of)",311888], + ["Oman (Sultanate of)",309500], + ["Italy (Italian Republic)",294140], + ["Philippines (Republic of the)",298170], + ["Ecuador (Republic of)",256369], + ["Burkina Faso",273602], + ["New Zealand",262443], + ["Gabon (Gabonese Republic)",257667], + ["Sahrawi Arab Democratic Republic",266000], + ["Guinea (Republic of)",245717], + ["United Kingdom (of Great Britain & Northern Ireland)",241930], + ["Uganda (Republic of)",197100], + ["Ghana (Republic of)",227533], + ["Romania",231291], + ["Lao (People's Democratic Republic)",230800], + ["Guyana (Co-operative Republic of)",196849], + ["Belarus (Republic of)",202900], + ["Kyrgyz Republic",191801], + ["Senegal (Republic of)",192530], + ["Syrian Arab Republic",183630], + ["Cambodia (Kingdom of)",176515], + ["Uruguay (Oriental Republic of)",175015], + ["Somaliland (Republic of)",null], + ["Suriname (Republic of)",156000], + ["Tunisia (Republic of)",155360], + ["Bangladesh (People's Republic of)",134208], + ["Nepal (Federal Democratic Republic of)",143686], + ["Tajikistan (Republic of)",141510], + ["Greece (Hellenic Republic)",130647], + ["Nicaragua (Republic of)",119990], + ["Eritrea (State of)",125000], + ["Korea (Democratic People's Republic of)",120538], + ["Malawi (Republic of)",94080], + ["Benin (Republic of)",114305], + ["Honduras (Republic of)",111890], + ["Liberia (Republic of)",96320], + ["Bulgaria (Republic of)",108612], + ["Cuba (Republic of)",109884], + ["Guatemala (Republic of)",107159], + ["Iceland (Republic of)",100250], + ["Korea (Republic of)",99909], + ["Hungary (Republic of)",89608], + ["Portugal (Portuguese Republic)",91119], + ["Jordan (Hashemite Kingdom of)",88802], + ["Serbia (Republic of)",88246], + ["Azerbaijan (Republic of)",86100], + ["Austria (Republic of)",82445], + ["United Arab Emirates",83600], + ["Czech Republic",77187], + ["Panama (Republic of)",74340], + ["Sierra Leone (Republic of)",71620], + ["Ireland",68883], + ["Georgia",69700], + ["Sri Lanka (Democratic Socialist Republic of)",62732], + ["Lithuania (Republic of)",62680], + ["Latvia (Republic of)",62249], + ["Svalbard and Jan Mayen Islands",62045], + ["Togo (Togolese Republic)",54385], + ["Croatia (Republic of)",55974], + ["Bosnia and Herzegovina",51187], + ["Costa Rica (Republic of)",51060], + ["Slovakia (Slovak Republic)",48105], + ["Dominican Republic",48320], + ["Estonia (Republic of)",42388], + ["Denmark (Kingdom of)",42434], + ["Netherlands (Kingdom of the)",33893], + ["Switzerland (Swiss Confederation)",39997], + ["Bhutan (Kingdom of)",38394], + ["Taiwan",32260], + ["Guinea-Bissau (Republic of)",28120], + ["Moldova (Republic of)",32891], + ["Belgium (Kingdom of)",30278], + ["Lesotho (Kingdom of)",30355], + ["Armenia (Republic of)",28342], + ["Solomon Islands",27986], + ["Albania (Republic of)",27398], + ["Equatorial Guinea (Republic of)",28051], + ["Burundi (Republic of)",25680], + ["Haiti (Republic of)",27560], + ["Rwanda (Republic of)",24668], + ["North Macedonia (Republic of)",25433], + ["Djibouti (Republic of)",23180], + ["Belize",22806], + ["El Salvador (Republic of)",20721], + ["Israel (State of)",20330], + ["Slovenia (Republic of)",20151], + ["New Caledonia",18275], + ["Fiji (Republic of)",18274], + ["Kuwait (State of)",17818], + ["Eswatini (Kingdom of)",17204], + ["Timor-Leste (Democratic Republic of)",14919], + ["Bahamas (Commonwealth of the)",10010], + ["Montenegro",13452], + ["Vanuatu (Republic of)",12189], + ["Falkland Islands (Malvinas)",12173], + ["Qatar (State of)",11586], + ["Gambia (Republic of the)",10000], + ["Jamaica",10831], + ["Kosovo (Republic of)",null], + ["Lebanon (Lebanese Republic)",10230], + ["Cyprus (Republic of)",9241], + ["Puerto Rico (Commonwealth of)",9104], + ["Abkhazia (Republic of)",null], + ["French Southern Territories",7668], + ["United States Minor Outlying Islands",34.2], + ["Palestine (State of)",6000], + ["Brunei (Nation of the Abode of Peace)",5265], + ["Trinidad and Tobago (Republic of)",5128], + ["French Polynesia",3827], + ["Translistria (Pridnestrovian Moldavian Republic)",null], + ["Cape Verde (Republic of)",4033], + ["South Georgia and the South Sandwich Islands",3903], + ["South Ossetia (Republic of) (the State of Alania)",null], + ["Cyprus (Republic of)",null], + ["Artsakh (Republic of)",3170], + ["Samoa (Independent State of)",2821], + ["Hong Kong (Special Administrative Region of China)",1106], + ["Luxembourg (Grand Duchy of)",2586], + ["Mauritius (Republic of)",2030], + ["Comoros (Union of the)",1862], + ["Åland Islands",null], + ["Faroe Islands",1393], + ["São Tomé and Príncipe (Democratic Republic of)",964], + ["Turks and Caicos Islands",430], + ["Kiribati (Republic of)",811], + ["Bahrain (Kingdom of)",786], + ["Dominica (Commonwealth of)",751], + ["Tonga (Kingdom of)",717], + ["Singapore (Republic of)",716], + ["Micronesia (Federated States of)",702], + ["Saint Lucia",606], + ["Isle of Man",572], + ["Guam",544], + ["Andorra (Principality of)",468], + ["Northern Mariana Islands (Commonwealth of the)",464], + ["Palau (Republic of)",459], + ["Seychelles (Republic of)",455], + ["Curaçao",444], + ["Antigua and Barbuda",442.6], + ["Barbados",431], + ["Heard Island and McDonald Islands",412], + ["Saint Vincent and the Grenadines",389], + ["Svalbard and Jan Mayen Islands",377], + ["United States Virgin Islands",346], + ["Grenada",344], + ["Malta (Republic of)",316], + ["Saint Helena",308], + ["Maldives (Republic of)",298], + ["Bonaire (Sint Eustatius and Saba)",294], + ["Cayman Islands",264], + ["Saint Kitts and Nevis (Federation of)",261], + ["Niue",260], + ["Akrotiri and Dhekelia (Sovereign Base Areas of)",0], + ["Saint Pierre and Miquelon",242], + ["Cook Islands",236], + ["American Samoa",199], + ["Marshall Islands (Republic of the)",181], + ["Aruba",180], + ["Easter Island (Chile)",163.6], + ["Liechtenstein (Principality of)",160], + ["British Virgin Islands",151], + ["Wallis and Futuna",142], + ["Christmas Island",135], + ["Jersey (Bailiwick of)",116], + ["Montserrat",102], + ["Anguilla",91], + ["Guernsey (Bailiwick of)",78], + ["San Marino (Republic of)",61], + ["British Indian Ocean Territory",60], + ["Saint Martin",54.4], + ["Bermuda",54], + ["Bouvet Island (Bouvetoya)",49], + ["Pitcairn Islands",47], + ["Norfolk Island",36], + ["Sint Maarten (Netherlands)",34], + ["Macao (Special Administrative Region of China)",28.2], + ["Tuvalu",26], + ["Nauru (Republic of)",21], + ["Saint Barthelemy",0], + ["Cocos (Keeling) Islands",14], + ["Tokelau",12], + ["Gibraltar",6.5], + ["Spratly Islands",5], + ["Coral Sea Islands (Australia)",3], + ["Monaco (Principality of)",2.02], + ["Holy See (Vatican City State)",0.49] + ] +} diff --git a/data/global/geography/geographic-area/geographic-area-water.json b/data/global/geography/geographic-area/geographic-area-water.json new file mode 100644 index 0000000..b1343c1 --- /dev/null +++ b/data/global/geography/geographic-area/geographic-area-water.json @@ -0,0 +1,281 @@ +{ + "metadata" : { + "name" : "Geographic Water Area", + "description" : "Geographic water area measured in square killometres.", + "units" : "km2", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "geographic", + "tags" : ["global","geography","water","area"], + "authors" : [ + "Wikipedia" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area" + ] + }, + "data" : [ + ["country.name","geographic.area.water"], + ["Russian Federation",719836], + ["Antarctica (the territory South of 60 deg S)",0], + ["Canada",891163], + ["China (People's Republic of)",270550], + ["United States (of America)",685924], + ["Brazil (Federative Republic of)",55352], + ["Australia (Commonwealth of)",58459], + ["India (Republic of)",314073], + ["Argentina (Argentine Republic)",43710], + ["Kazakhstan (Republic of)",25200], + ["Algeria (People's Democratic Republic of)",0], + ["Congo (Democratic Republic of the)",77810], + ["Denmark (Kingdom of)",21], + ["Greenland",0], + ["Saudi Arabia (Kingdom of)",0], + ["Mexico (United Mexican States)",20430], + ["Indonesia (Republic of)",93000], + ["Sudan (Republic of the)",129813], + ["Libya (State of)",0], + ["Iran (Islamic Republic of)",116600], + ["Mongolia",10560], + ["Peru (Republic of)",5220], + ["Chad (Republic of)",24800], + ["Niger (Republic of)",300], + ["Angola (Republic of)",0], + ["Mali (Republic of)",20002], + ["South Africa (Republic of)",4620], + ["Colombia (Republic of)",100210], + ["Ethiopia (Federal Democratic Republic of)",104300], + ["Bolivia (Plurinational State of)",15280], + ["Mauritania (Islamic Republic of)",4480], + ["Egypt (Arab Republic of)",6000], + ["Tanzania (United Republic of)",61500], + ["Nigeria (Federal Republic of)",13000], + ["Venezuela (Bolivarian Republic of)",30000], + ["Pakistan (Islamic Republic of)",25223], + ["Namibia (Republic of)",2425], + ["Mozambique (Republic of)",13000], + ["Turkey (Republic of)",13930], + ["Chile (Republic of)",12290], + ["Zambia (Republic of)",9220], + ["Myanmar (Union of)",23070], + ["Afghanistan (Islamic Republic of)",0], + ["South Sudan (Republic of)",0], + ["France (French Republic)",3374], + ["Somalia (Federal Republic of)",10320], + ["Central African Republic",0], + ["Ukraine",24250], + ["Madagascar (Republic of)",5501], + ["Botswana (Republic of)",15000], + ["Kenya (Republic of)",11227], + ["Yemen (Republic of)",0], + ["France (Metropolitan)",null], + ["Thailand (Kingdom of)",2230], + ["Spain (Kingdom of)",6390], + ["Turkmenistan",18170], + ["Cameroon (Republic of)",2730], + ["Papua New Guinea (Independent State of)",9980], + ["Sweden (Kingdom of)",40142], + ["Uzbekistan (Republic of)",22000], + ["Morocco (Kingdom of)",250], + ["Iraq (Republic of)",950], + ["Paraguay (Republic of)",9450], + ["Zimbabwe (Republic of)",3910], + ["Norway (Kingdom of)",19520], + ["Japan",13430], + ["Germany (Federal Republic of)",8350], + ["Congo (Republic of the)",500], + ["Finland (Republic of)",34330], + ["Vietnam (Socialist Republic of)",21140], + ["Malaysia",1190], + ["Norway (Kingdom of)",19520], + ["Côte d'Ivoire (Republic of)",4460], + ["Poland (Republic of)",791], + ["Oman (Sultanate of)",0], + ["Italy (Italian Republic)",7200], + ["Philippines (Republic of the)",1830], + ["Ecuador (Republic of)",6720], + ["Burkina Faso",620], + ["New Zealand",4395], + ["Gabon (Gabonese Republic)",10001], + ["Sahrawi Arab Democratic Republic",0], + ["Guinea (Republic of)",140], + ["United Kingdom (of Great Britain & Northern Ireland)",1680], + ["Uganda (Republic of)",43938], + ["Ghana (Republic of)",11000], + ["Romania",7100], + ["Lao (People's Democratic Republic)",6000], + ["Guyana (Co-operative Republic of)",18120], + ["Belarus (Republic of)",4700], + ["Kyrgyz Republic",8150], + ["Senegal (Republic of)",4192], + ["Syrian Arab Republic",1550], + ["Cambodia (Kingdom of)",4520], + ["Uruguay (Oriental Republic of)",1200], + ["Somaliland (Republic of)",null], + ["Suriname (Republic of)",7820], + ["Tunisia (Republic of)",8250], + ["Bangladesh (People's Republic of)",14252], + ["Nepal (Federal Democratic Republic of)",3830], + ["Tajikistan (Republic of)",2590], + ["Greece (Hellenic Republic)",1310], + ["Nicaragua (Republic of)",10380], + ["Eritrea (State of)",0], + ["Korea (Democratic People's Republic of)",2], + ["Malawi (Republic of)",24404], + ["Benin (Republic of)",457.569], + ["Honduras (Republic of)",200], + ["Liberia (Republic of)",15049], + ["Bulgaria (Republic of)",2390], + ["Cuba (Republic of)",0], + ["Guatemala (Republic of)",1730], + ["Iceland (Republic of)",2750], + ["Korea (Republic of)",301], + ["Hungary (Republic of)",3420], + ["Portugal (Portuguese Republic)",1107], + ["Jordan (Hashemite Kingdom of)",540], + ["Serbia (Republic of)",115], + ["Azerbaijan (Republic of)",500], + ["Austria (Republic of)",1426], + ["United Arab Emirates",0], + ["Czech Republic",1684], + ["Panama (Republic of)",1080], + ["Sierra Leone (Republic of)",120], + ["Ireland",1390], + ["Georgia",0], + ["Sri Lanka (Democratic Socialist Republic of)",2878], + ["Lithuania (Republic of)",2620], + ["Latvia (Republic of)",2340], + ["Svalbard and Jan Mayen Islands",0], + ["Togo (Togolese Republic)",2400], + ["Croatia (Republic of)",620], + ["Bosnia and Herzegovina",10], + ["Costa Rica (Republic of)",40], + ["Slovakia (Slovak Republic)",930], + ["Dominican Republic",350], + ["Estonia (Republic of)",2840], + ["Denmark (Kingdom of)",660], + ["Netherlands (Kingdom of the)",7957], + ["Switzerland (Swiss Confederation)",1280], + ["Bhutan (Kingdom of)",0], + ["Taiwan",3720], + ["Guinea-Bissau (Republic of)",8005], + ["Moldova (Republic of)",960], + ["Belgium (Kingdom of)",250], + ["Lesotho (Kingdom of)",0], + ["Armenia (Republic of)",1401], + ["Solomon Islands",910], + ["Albania (Republic of)",1350], + ["Equatorial Guinea (Republic of)",0], + ["Burundi (Republic of)",2150], + ["Haiti (Republic of)",190], + ["Rwanda (Republic of)",1670], + ["North Macedonia (Republic of)",280], + ["Djibouti (Republic of)",20], + ["Belize",160], + ["El Salvador (Republic of)",320], + ["Israel (State of)",440], + ["Slovenia (Republic of)",122], + ["New Caledonia",300], + ["Fiji (Republic of)",0], + ["Kuwait (State of)",0], + ["Eswatini (Kingdom of)",160], + ["Timor-Leste (Democratic Republic of)",0], + ["Bahamas (Commonwealth of the)",3870], + ["Montenegro",360], + ["Vanuatu (Republic of)",0], + ["Falkland Islands (Malvinas)",0], + ["Qatar (State of)",0], + ["Gambia (Republic of the)",1295], + ["Jamaica",160], + ["Kosovo (Republic of)",null], + ["Lebanon (Lebanese Republic)",170], + ["Cyprus (Republic of)",10], + ["Puerto Rico (Commonwealth of)",3054], + ["Abkhazia (Republic of)",null], + ["French Southern Territories",79.8], + ["United States Minor Outlying Islands",6937], + ["Palestine (State of)",220], + ["Brunei (Nation of the Abode of Peace)",500], + ["Trinidad and Tobago (Republic of)",0], + ["French Polynesia",340], + ["Translistria (Pridnestrovian Moldavian Republic)",null], + ["Cape Verde (Republic of)",0], + ["South Georgia and the South Sandwich Islands",0], + ["South Ossetia (Republic of) (the State of Alania)",null], + ["Cyprus (Republic of)",null], + ["Artsakh (Republic of)",null], + ["Samoa (Independent State of)",10], + ["Hong Kong (Special Administrative Region of China)",1649], + ["Luxembourg (Grand Duchy of)",0], + ["Mauritius (Republic of)",10], + ["Comoros (Union of the)",0], + ["Åland Islands",null], + ["Faroe Islands",0], + ["São Tomé and Príncipe (Democratic Republic of)",0], + ["Turks and Caicos Islands",0], + ["Kiribati (Republic of)",0], + ["Bahrain (Kingdom of)",0], + ["Dominica (Commonwealth of)",0], + ["Tonga (Kingdom of)",30], + ["Singapore (Republic of)",10], + ["Micronesia (Federated States of)",0], + ["Saint Lucia",10], + ["Isle of Man",0], + ["Guam",0], + ["Andorra (Principality of)",0], + ["Northern Mariana Islands (Commonwealth of the)",0], + ["Palau (Republic of)",0], + ["Seychelles (Republic of)",0], + ["Curaçao",0], + ["Antigua and Barbuda",0], + ["Barbados",0], + ["Heard Island and McDonald Islands",0], + ["Saint Vincent and the Grenadines",0], + ["Svalbard and Jan Mayen Islands",0], + ["United States Virgin Islands",1564], + ["Grenada",0], + ["Malta (Republic of)",0], + ["Saint Helena",0], + ["Maldives (Republic of)",0], + ["Bonaire (Sint Eustatius and Saba)",0], + ["Cayman Islands",0], + ["Saint Kitts and Nevis (Federation of)",0], + ["Niue",0], + ["Akrotiri and Dhekelia (Sovereign Base Areas of)",0], + ["Saint Pierre and Miquelon",0], + ["Cook Islands",0], + ["American Samoa",0], + ["Marshall Islands (Republic of the)",11673], + ["Aruba",0], + ["Easter Island (Chile)",0], + ["Liechtenstein (Principality of)",0], + ["British Virgin Islands",0], + ["Wallis and Futuna",0], + ["Christmas Island",0], + ["Jersey (Bailiwick of)",0], + ["Montserrat",0], + ["Anguilla",0], + ["Guernsey (Bailiwick of)",0], + ["San Marino (Republic of)",0], + ["British Indian Ocean Territory",54340], + ["Saint Martin",0], + ["Bermuda",0], + ["Bouvet Island (Bouvetoya)",0], + ["Pitcairn Islands",0], + ["Norfolk Island",0], + ["Sint Maarten (Netherlands)",0], + ["Macao (Special Administrative Region of China)",0], + ["Tuvalu",0], + ["Nauru (Republic of)",0], + ["Saint Barthelemy",0], + ["Cocos (Keeling) Islands",0], + ["Tokelau",0], + ["Gibraltar",0], + ["Spratly Islands",0], + ["Coral Sea Islands (Australia)",0], + ["Monaco (Principality of)",0], + ["Holy See (Vatican City State)",0] + ] +} diff --git a/data/global/geography/geographic-area/geographic-area.json b/data/global/geography/geographic-area/geographic-area.json new file mode 100644 index 0000000..b38cff7 --- /dev/null +++ b/data/global/geography/geographic-area/geographic-area.json @@ -0,0 +1,281 @@ +{ + "metadata" : { + "name" : "Total Geographic Area", + "description" : "Total geographic area measured in square killometres.", + "units" : "km2", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "geographic", + "tags" : ["global","geography","area"], + "authors" : [ + "Wikipedia" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area" + ] + }, + "data" : [ + ["country.name","geographic.area"], + ["Russian Federation",17098246], + ["Antarctica (the territory South of 60 deg S)",14200000], + ["Canada",9984670], + ["China (People's Republic of)",9596961], + ["United States (of America)",9833517], + ["Brazil (Federative Republic of)",8515767], + ["Australia (Commonwealth of)",7692024], + ["India (Republic of)",3287263], + ["Argentina (Argentine Republic)",2780400], + ["Kazakhstan (Republic of)",2724900], + ["Algeria (People's Democratic Republic of)",2381741], + ["Congo (Democratic Republic of the)",2344858], + ["Denmark (Kingdom of)",2220093], + ["Greenland",2166086], + ["Saudi Arabia (Kingdom of)",2149690], + ["Mexico (United Mexican States)",1964375], + ["Indonesia (Republic of)",1904569], + ["Sudan (Republic of the)",1861484], + ["Libya (State of)",1759540], + ["Iran (Islamic Republic of)",1648195], + ["Mongolia",1564110], + ["Peru (Republic of)",1285216], + ["Chad (Republic of)",1284000], + ["Niger (Republic of)",1267000], + ["Angola (Republic of)",1246700], + ["Mali (Republic of)",1240192], + ["South Africa (Republic of)",1221037], + ["Colombia (Republic of)",1141748], + ["Ethiopia (Federal Democratic Republic of)",1104300], + ["Bolivia (Plurinational State of)",1098581], + ["Mauritania (Islamic Republic of)",1030700], + ["Egypt (Arab Republic of)",1002450], + ["Tanzania (United Republic of)",945087], + ["Nigeria (Federal Republic of)",923768], + ["Venezuela (Bolivarian Republic of)",916445], + ["Pakistan (Islamic Republic of)",881913], + ["Namibia (Republic of)",825615], + ["Mozambique (Republic of)",801590], + ["Turkey (Republic of)",783562], + ["Chile (Republic of)",756102], + ["Zambia (Republic of)",752612], + ["Myanmar (Union of)",676578], + ["Afghanistan (Islamic Republic of)",652867], + ["South Sudan (Republic of)",644329], + ["France (French Republic)",640679], + ["Somalia (Federal Republic of)",637657], + ["Central African Republic",622984], + ["Ukraine",603550], + ["Madagascar (Republic of)",587041], + ["Botswana (Republic of)",581730], + ["Kenya (Republic of)",580367], + ["Yemen (Republic of)",555000], + ["France (Metropolitan)",543940], + ["Thailand (Kingdom of)",513120], + ["Spain (Kingdom of)",505992], + ["Turkmenistan",488100], + ["Cameroon (Republic of)",475442], + ["Papua New Guinea (Independent State of)",462840], + ["Sweden (Kingdom of)",447425], + ["Uzbekistan (Republic of)",447400], + ["Morocco (Kingdom of)",446550], + ["Iraq (Republic of)",438317], + ["Paraguay (Republic of)",406752], + ["Zimbabwe (Republic of)",390757], + ["Norway (Kingdom of)",385207], + ["Japan",377976], + ["Germany (Federal Republic of)",357114], + ["Congo (Republic of the)",342000], + ["Finland (Republic of)",338425], + ["Vietnam (Socialist Republic of)",331212], + ["Malaysia",330803], + ["Norway (Kingdom of)",323802], + ["Côte d'Ivoire (Republic of)",322463], + ["Poland (Republic of)",312696], + ["Oman (Sultanate of)",309500], + ["Italy (Italian Republic)",301339], + ["Philippines (Republic of the)",300000], + ["Ecuador (Republic of)",276841], + ["Burkina Faso",274222], + ["New Zealand",270467], + ["Gabon (Gabonese Republic)",267668], + ["Sahrawi Arab Democratic Republic",266000], + ["Guinea (Republic of)",245857], + ["United Kingdom (of Great Britain & Northern Ireland)",242495], + ["Uganda (Republic of)",241550], + ["Ghana (Republic of)",238533], + ["Romania",238397], + ["Lao (People's Democratic Republic)",236800], + ["Guyana (Co-operative Republic of)",214969], + ["Belarus (Republic of)",207600], + ["Kyrgyz Republic",199951], + ["Senegal (Republic of)",196722], + ["Syrian Arab Republic",185180], + ["Cambodia (Kingdom of)",181035], + ["Uruguay (Oriental Republic of)",176215], + ["Somaliland (Republic of)",176120], + ["Suriname (Republic of)",163820], + ["Tunisia (Republic of)",163610], + ["Bangladesh (People's Republic of)",148460], + ["Nepal (Federal Democratic Republic of)",147516], + ["Tajikistan (Republic of)",143100], + ["Greece (Hellenic Republic)",131957], + ["Nicaragua (Republic of)",130373], + ["Eritrea (State of)",125000], + ["Korea (Democratic People's Republic of)",120540], + ["Malawi (Republic of)",118484], + ["Benin (Republic of)",114763], + ["Honduras (Republic of)",112492], + ["Liberia (Republic of)",111369], + ["Bulgaria (Republic of)",111002], + ["Cuba (Republic of)",109884], + ["Guatemala (Republic of)",108889], + ["Iceland (Republic of)",103000], + ["Korea (Republic of)",100210], + ["Hungary (Republic of)",93028], + ["Portugal (Portuguese Republic)",92226], + ["Jordan (Hashemite Kingdom of)",89342], + ["Serbia (Republic of)",88361], + ["Azerbaijan (Republic of)",86600], + ["Austria (Republic of)",83871], + ["United Arab Emirates",83600], + ["Czech Republic",78871], + ["Panama (Republic of)",75417], + ["Sierra Leone (Republic of)",71740], + ["Ireland",70273], + ["Georgia",69700], + ["Sri Lanka (Democratic Socialist Republic of)",65610], + ["Lithuania (Republic of)",65300], + ["Latvia (Republic of)",64559], + ["Svalbard and Jan Mayen Islands",62045], + ["Togo (Togolese Republic)",56785], + ["Croatia (Republic of)",56594], + ["Bosnia and Herzegovina",51209], + ["Costa Rica (Republic of)",51100], + ["Slovakia (Slovak Republic)",49037], + ["Dominican Republic",48671], + ["Estonia (Republic of)",45227], + ["Denmark (Kingdom of)",43094], + ["Netherlands (Kingdom of the)",41850], + ["Switzerland (Swiss Confederation)",41284], + ["Bhutan (Kingdom of)",38394], + ["Taiwan",36193], + ["Guinea-Bissau (Republic of)",36125], + ["Moldova (Republic of)",33846], + ["Belgium (Kingdom of)",30528], + ["Lesotho (Kingdom of)",30355], + ["Armenia (Republic of)",29743], + ["Solomon Islands",28896], + ["Albania (Republic of)",28748], + ["Equatorial Guinea (Republic of)",28051], + ["Burundi (Republic of)",27834], + ["Haiti (Republic of)",27750], + ["Rwanda (Republic of)",26338], + ["North Macedonia (Republic of)",25713], + ["Djibouti (Republic of)",23200], + ["Belize",22966], + ["El Salvador (Republic of)",21041], + ["Israel (State of)",20770], + ["Slovenia (Republic of)",20273], + ["New Caledonia",18575], + ["Fiji (Republic of)",18272], + ["Kuwait (State of)",17818], + ["Eswatini (Kingdom of)",17364], + ["Timor-Leste (Democratic Republic of)",14919], + ["Bahamas (Commonwealth of the)",13943], + ["Montenegro",13812], + ["Vanuatu (Republic of)",12189], + ["Falkland Islands (Malvinas)",12173], + ["Qatar (State of)",11586], + ["Gambia (Republic of the)",11295], + ["Jamaica",10991], + ["Kosovo (Republic of)",10887], + ["Lebanon (Lebanese Republic)",10452], + ["Cyprus (Republic of)",9251], + ["Puerto Rico (Commonwealth of)",9104], + ["Abkhazia (Republic of)",8660], + ["French Southern Territories",7747], + ["United States Minor Outlying Islands",6959.41], + ["Palestine (State of)",6020], + ["Brunei (Nation of the Abode of Peace)",5765], + ["Trinidad and Tobago (Republic of)",5130], + ["French Polynesia",4167], + ["Translistria (Pridnestrovian Moldavian Republic)",4163], + ["Cape Verde (Republic of)",4033], + ["South Georgia and the South Sandwich Islands",3903], + ["South Ossetia (Republic of) (the State of Alania)",3900], + ["Cyprus (Republic of)",3355], + ["Artsakh (Republic of)",3170], + ["Samoa (Independent State of)",2842], + ["Hong Kong (Special Administrative Region of China)",2755], + ["Luxembourg (Grand Duchy of)",2586], + ["Mauritius (Republic of)",2040], + ["Comoros (Union of the)",1862], + ["Åland Islands",1580], + ["Faroe Islands",1399], + ["São Tomé and Príncipe (Democratic Republic of)",964], + ["Turks and Caicos Islands",948], + ["Kiribati (Republic of)",811], + ["Bahrain (Kingdom of)",786], + ["Dominica (Commonwealth of)",751], + ["Tonga (Kingdom of)",747], + ["Singapore (Republic of)",728], + ["Micronesia (Federated States of)",702], + ["Saint Lucia",616], + ["Isle of Man",572], + ["Guam",549], + ["Andorra (Principality of)",468], + ["Northern Mariana Islands (Commonwealth of the)",464], + ["Palau (Republic of)",459], + ["Seychelles (Republic of)",452], + ["Curaçao",444], + ["Antigua and Barbuda",442], + ["Barbados",430], + ["Heard Island and McDonald Islands",412], + ["Saint Vincent and the Grenadines",389], + ["Svalbard and Jan Mayen Islands",377], + ["United States Virgin Islands",347], + ["Grenada",344], + ["Malta (Republic of)",316], + ["Saint Helena",308], + ["Maldives (Republic of)",300], + ["Bonaire (Sint Eustatius and Saba)",294], + ["Cayman Islands",264], + ["Saint Kitts and Nevis (Federation of)",261], + ["Niue",260], + ["Akrotiri and Dhekelia (Sovereign Base Areas of)",253.8], + ["Saint Pierre and Miquelon",242], + ["Cook Islands",236], + ["American Samoa",199], + ["Marshall Islands (Republic of the)",181], + ["Aruba",180], + ["Easter Island (Chile)",163.6], + ["Liechtenstein (Principality of)",160], + ["British Virgin Islands",151], + ["Wallis and Futuna",142], + ["Christmas Island",135], + ["Jersey (Bailiwick of)",116], + ["Montserrat",102], + ["Anguilla",91], + ["Guernsey (Bailiwick of)",78], + ["San Marino (Republic of)",61], + ["British Indian Ocean Territory",60], + ["Saint Martin",54], + ["Bermuda",54], + ["Bouvet Island (Bouvetoya)",49], + ["Pitcairn Islands",47], + ["Norfolk Island",36], + ["Sint Maarten (Netherlands)",34], + ["Macao (Special Administrative Region of China)",31.3], + ["Tuvalu",26], + ["Nauru (Republic of)",21], + ["Saint Barthelemy",21], + ["Cocos (Keeling) Islands",14], + ["Tokelau",12], + ["Gibraltar",6], + ["Spratly Islands",5], + ["Coral Sea Islands (Australia)",3], + ["Monaco (Principality of)",2.02], + ["Holy See (Vatican City State)",0.49] + ] +} diff --git a/data/global/geography/land-usage/geographic-area-land-irrigated.json b/data/global/geography/land-usage/geographic-area-land-irrigated.json new file mode 100644 index 0000000..7bd71fd --- /dev/null +++ b/data/global/geography/land-usage/geographic-area-land-irrigated.json @@ -0,0 +1,256 @@ +{ + "metadata" : { + "name" : "Irrigated Land Area", + "description" : "Irrigated land area measured by square kilometres.", + "units" : "km2", + "year" : "2012", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "geographic", + "tags" : ["global","geography","area","land","agriculture","farming"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Land_use_statistics_by_country" + ] + }, + "data" : [ + ["country.name","geographic.area.land.irrigated"], + ["China (People's Republic of)",690070], + ["India (Republic of)",667000], + ["United States (of America)",264000], + ["Pakistan (Islamic Republic of)",202000], + ["Iran (Islamic Republic of)",95530], + ["Indonesia (Republic of)",67220], + ["Mexico (United Mexican States)",65000], + ["Thailand (Kingdom of)",64150], + ["Brazil (Federative Republic of)",54000], + ["Bangladesh (People's Republic of)",53000], + ["Turkey (Republic of)",52150], + ["Vietnam (Socialist Republic of)",46000], + ["Russian Federation",43000], + ["Uzbekistan (Republic of)",42150], + ["Italy (Italian Republic)",39500], + ["Spain (Kingdom of)",38000], + ["Egypt (Arab Republic of)",36500], + ["Iraq (Republic of)",35250], + ["Afghanistan (Islamic Republic of)",32080], + ["Poland (Republic of)",32000], + ["Romania",31490], + ["France (French Republic)",26420], + ["Peru (Republic of)",25800], + ["Australia (Commonwealth of)",25500], + ["Japan",24690], + ["Argentina (Argentine Republic)",23600], + ["Burma",22950], + ["Ukraine",21670], + ["Kazakhstan (Republic of)",20660], + ["Turkmenistan",19950], + ["Sudan (Republic of the)",18900], + ["South Africa (Republic of)",16700], + ["Philippines (Republic of the)",16270], + ["Saudi Arabia (Kingdom of)",16200], + ["Greece (Hellenic Republic)",15550], + ["Ecuador (Republic of)",15000], + ["Morocco (Kingdom of)",14850], + ["Korea (Democratic People's Republic of)",14600], + ["Syrian Arab Republic",14280], + ["Azerbaijan (Republic of)",14277], + ["Nepal (Federal Democratic Republic of)",13320], + ["Chile (Republic of)",11100], + ["Colombia (Republic of)",10900], + ["Madagascar (Republic of)",10860], + ["Venezuela (Bolivarian Republic of)",10550], + ["Kyrgyz Republic",10233], + ["Canada",8700], + ["Cuba (Republic of)",8700], + ["Korea (Republic of)",7780], + ["Tajikistan (Republic of)",7420], + ["New Zealand",7210], + ["Yemen (Republic of)",6800], + ["Algeria (People's Democratic Republic of)",5700], + ["Sri Lanka (Democratic Socialist Republic of)",5700], + ["Portugal (Portuguese Republic)",5400], + ["Netherlands (Kingdom of the)",4860], + ["Libya (State of)",4700], + ["Tunisia (Republic of)",4590], + ["Denmark (Kingdom of)",4350], + ["Georgia",4330], + ["Taiwan",3820], + ["Malaysia",3800], + ["Mali (Republic of)",3780], + ["Cambodia (Kingdom of)",3540], + ["Guatemala (Republic of)",3375], + ["Israel (State of)",3350], + ["Albania (Republic of)",3310], + ["Lao (People's Democratic Republic)",3100], + ["Dominican Republic",3070], + ["Bolivia (Plurinational State of)",3000], + ["Nigeria (Federal Republic of)",2930], + ["Ethiopia (Federal Democratic Republic of)",2900], + ["Armenia (Republic of)",2740], + ["Uruguay (Oriental Republic of)",2380], + ["Moldova (Republic of)",2283], + ["Somalia (Federal Republic of)",2000], + ["Nicaragua (Republic of)",1990], + ["Tanzania (United Republic of)",1840], + ["Zimbabwe (Republic of)",1740], + ["Hungary (Republic of)",1721], + ["Sweden (Kingdom of)",1640], + ["Zambia (Republic of)",1560], + ["Guyana (Co-operative Republic of)",1430], + ["Paraguay (Republic of)",1362], + ["North Macedonia (Republic of)",1280], + ["Senegal (Republic of)",1200], + ["Mozambique (Republic of)",1180], + ["Austria (Republic of)",1170], + ["Belarus (Republic of)",1140], + ["Lebanon (Lebanese Republic)",1040], + ["Kenya (Republic of)",1030], + ["Bulgaria (Republic of)",1020], + ["Costa Rica (Republic of)",1015], + ["Niger (Republic of)",1000], + ["South Sudan (Republic of)",1000], + ["Haiti (Republic of)",970], + ["Germany (Federal Republic of)",965], + ["Jordan (Hashemite Kingdom of)",964], + ["Guinea (Republic of)",950], + ["Serbia (Republic of)",950], + ["United Kingdom (of Great Britain & Northern Ireland)",950], + ["United Arab Emirates",923], + ["Honduras (Republic of)",900], + ["Norway (Kingdom of)",900], + ["Slovakia (Slovak Republic)",869], + ["Angola (Republic of)",860], + ["Mongolia",840], + ["Malawi (Republic of)",740], + ["Côte d'Ivoire (Republic of)",730], + ["Finland (Republic of)",690], + ["Switzerland (Swiss Confederation)",630], + ["Oman (Sultanate of)",590], + ["Suriname (Republic of)",570], + ["Burkina Faso",550], + ["Eswatini (Kingdom of)",500], + ["Cyprus (Republic of)",460], + ["El Salvador (Republic of)",452], + ["Mauritania (Islamic Republic of)",450], + ["Timor-Leste (Democratic Republic of)",350], + ["Ghana (Republic of)",340], + ["Panama (Republic of)",321], + ["Bhutan (Kingdom of)",320], + ["Czech Republic",320], + ["Chad (Republic of)",300], + ["Sierra Leone (Republic of)",300], + ["Cameroon (Republic of)",290], + ["Guinea-Bissau (Republic of)",250], + ["Jamaica",250], + ["Croatia (Republic of)",240], + ["Palestine (State of)",240], + ["Belgium (Kingdom of)",230], + ["Benin (Republic of)",230], + ["Burundi (Republic of)",230], + ["Puerto Rico (Commonwealth of)",220], + ["Eritrea (State of)",210], + ["Mauritius (Republic of)",190], + ["Uganda (Republic of)",140], + ["Qatar (State of)",130], + ["Congo (Democratic Republic of the)",110], + ["Kuwait (State of)",105], + ["New Caledonia",100], + ["São Tomé and Príncipe (Democratic Republic of)",100], + ["Rwanda (Republic of)",96], + ["Namibia (Republic of)",80], + ["Togo (Togolese Republic)",70], + ["Trinidad and Tobago (Republic of)",70], + ["Slovenia (Republic of)",60], + ["Barbados",50], + ["Gambia (Republic of the)",50], + ["Lithuania (Republic of)",44], + ["Bahrain (Kingdom of)",40], + ["Estonia (Republic of)",40], + ["Fiji (Republic of)",40], + ["Gabon (Gabonese Republic)",40], + ["Belize",35], + ["Cape Verde (Republic of)",35], + ["Malta (Republic of)",35], + ["Bosnia and Herzegovina",30], + ["Lesotho (Kingdom of)",30], + ["Liberia (Republic of)",30], + ["Saint Lucia",30], + ["Montenegro",24], + ["Botswana (Republic of)",20], + ["Congo (Republic of the)",20], + ["Grenada",20], + ["Latvia (Republic of)",12], + ["Bahamas (Commonwealth of the)",10], + ["Brunei (Nation of the Abode of Peace)",10], + ["Central African Republic",10], + ["Djibouti (Republic of)",10], + ["French Polynesia",10], + ["Hong Kong (Special Administrative Region of China)",10], + ["Saint Vincent and the Grenadines",10], + ["Saint Kitts and Nevis (Federation of)",8], + ["Seychelles (Republic of)",3], + ["Guam",2], + ["Antigua and Barbuda",1.3], + ["Comoros (Union of the)",1.3], + ["Northern Mariana Islands (Commonwealth of the)",1], + ["United States Virgin Islands",1], + ["American Samoa",0], + ["Andorra (Principality of)",0], + ["Anguilla",0], + ["Ireland",0], + ["Isle of Man",0], + ["Svalbard and Jan Mayen Islands",0], + ["Kiribati (Republic of)",0], + ["Liechtenstein (Principality of)",0], + ["Luxembourg (Grand Duchy of)",0], + ["Macao (Special Administrative Region of China)",0], + ["Maldives (Republic of)",0], + ["Marshall Islands (Republic of the)",0], + ["Micronesia (Federated States of)",0], + ["Midway Island",0], + ["Monaco (Principality of)",0], + ["Montserrat",0], + ["Nauru (Republic of)",0], + ["Niue",0], + ["Norfolk Island",0], + ["Palau (Republic of)",0], + ["Papua New Guinea (Independent State of)",0], + ["Pitcairn Islands",0], + ["Saint Helena",0], + ["Saint Pierre and Miquelon",0], + ["Samoa (Independent State of)",0], + ["San Marino (Republic of)",0], + ["Singapore (Republic of)",0], + ["Solomon Islands",0], + ["South Georgia and the South Sandwich Islands",0], + ["Tokelau",0], + ["Tonga (Kingdom of)",0], + ["Turks and Caicos Islands",0], + ["Tuvalu",0], + ["Vanuatu (Republic of)",0], + ["Wake Island",0], + ["Wallis and Futuna",0], + ["Sahrawi Arab Democratic Republic",0], + ["Aruba",null], + ["Bermuda",null], + ["British Virgin Islands",null], + ["Cayman Islands",null], + ["Christmas Island",null], + ["Cocos (Keeling) Islands",null], + ["Cook Islands",null], + ["Curaçao",null], + ["Dominica (Commonwealth of)",null], + ["Equatorial Guinea (Republic of)",null], + ["Falkland Islands (Malvinas)",null], + ["Gibraltar",null], + ["Greenland",null], + ["Guernsey (Bailiwick of)",null], + ["Iceland (Republic of)",null], + ["Jersey (Bailiwick of)",null], + ["Kosovo (Republic of)",null] + ] +} diff --git a/data/global/geography/land-usage/geographic-land-arable.json b/data/global/geography/land-usage/geographic-land-arable.json new file mode 100644 index 0000000..26bb625 --- /dev/null +++ b/data/global/geography/land-usage/geographic-land-arable.json @@ -0,0 +1,255 @@ +{ + "metadata" : { + "name" : "Arable Land", + "description" : "Arable land usage measured by square kilometres.", + "units" : "km2", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "uncategorised", + "tags" : ["global","geography","area","land","agreculture","farming"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Land_use_statistics_by_country" + ] + }, + "data" : [ + ["country.name","geographic.area.land.arable"], + ["India (Republic of)",1656780], + ["United States (of America)",1691488], + ["Russian Federation",1248169], + ["China (People's Republic of)",1084461], + ["Brazil (Federative Republic of)",570572], + ["Canada",429355], + ["Australia (Commonwealth of)",307520], + ["Indonesia (Republic of)",247598], + ["Nigeria (Federal Republic of)",354726], + ["Argentina (Argentine Republic)",328087], + ["Ukraine",342901], + ["Sudan (Republic of the)",204710], + ["Mexico (United Mexican States)",202229], + ["Kazakhstan (Republic of)",221059], + ["Turkey (Republic of)",209211], + ["Pakistan (Islamic Republic of)",219724], + ["France (French Republic)",180955], + ["Thailand (Kingdom of)",158035], + ["Iran (Islamic Republic of)",158208], + ["Ethiopia (Federal Democratic Republic of)",167854], + ["Spain (Kingdom of)",125845], + ["Tanzania (United Republic of)",142763], + ["Niger (Republic of)",155841], + ["Myanmar (Union of)",111639], + ["South Africa (Republic of)",120780], + ["Germany (Federal Republic of)",119344], + ["Poland (Republic of)",113197], + ["Uganda (Republic of)",82917], + ["Vietnam (Socialist Republic of)",68227], + ["Philippines (Republic of the)",54600], + ["Romania",93214], + ["Bangladesh (People's Republic of)",87615], + ["Italy (Italian Republic)",68697], + ["Morocco (Kingdom of)",78155], + ["Algeria (People's Democratic Republic of)",73833], + ["Afghanistan (Islamic Republic of)",77612], + ["Cameroon (Republic of)",62277], + ["Côte d'Ivoire (Republic of)",29348], + ["Malaysia",9567], + ["Mali (Republic of)",69451], + ["Kenya (Republic of)",56879], + ["United Kingdom (of Great Britain & Northern Ireland)",60171], + ["Syrian Arab Republic",47041], + ["Belarus (Republic of)",56467], + ["Paraguay (Republic of)",54756], + ["Tunisia (Republic of)",29939], + ["Peru (Republic of)",39841], + ["Mozambique (Republic of)",51162], + ["Chad (Republic of)",35258], + ["Uzbekistan (Republic of)",45187], + ["Japan",44226], + ["Hungary (Republic of)",45105], + ["Malawi (Republic of)",45267], + ["Ghana (Republic of)",28393], + ["Burkina Faso",44710], + ["Cambodia (Kingdom of)",41087], + ["Congo (Democratic Republic of the)",37518], + ["Bolivia (Plurinational State of)",39564], + ["Cuba (Republic of)",37484], + ["Madagascar (Republic of)",35220], + ["Iraq (Republic of)",36817], + ["Greece (Hellenic Republic)",26004], + ["Zambia (Republic of)",36125], + ["Egypt (Arab Republic of)",28042], + ["Angola (Republic of)",48621], + ["Guinea (Republic of)",29016], + ["Venezuela (Bolivarian Republic of)",28275], + ["Bulgaria (Republic of)",33159], + ["Senegal (Republic of)",34226], + ["Saudi Arabia (Kingdom of)",32250], + ["Colombia (Republic of)",15946], + ["Czech Republic",32349], + ["Serbia (Republic of)",29218], + ["Benin (Republic of)",25785], + ["Ecuador (Republic of)",13334], + ["Korea (Democratic People's Republic of)",15808], + ["Sweden (Kingdom of)",24019], + ["Togo (Togolese Republic)",25674], + ["Denmark (Kingdom of)",25386], + ["Guatemala (Republic of)",15464], + ["Finland (Republic of)",25019], + ["Nepal (Federal Democratic Republic of)",22227], + ["Sri Lanka (Democratic Socialist Republic of)",13579], + ["Lithuania (Republic of)",22790], + ["Azerbaijan (Republic of)",19745], + ["Moldova (Republic of)",18679], + ["Kyrgyz Republic",13400], + ["Libya (State of)",17595], + ["Turkmenistan",20008], + ["Nicaragua (Republic of)",16295], + ["Sierra Leone (Republic of)",16778], + ["Central African Republic",18067], + ["Uruguay (Oriental Republic of)",17798], + ["Portugal (Portuguese Republic)",10960], + ["Korea (Republic of)",15254], + ["Yemen (Republic of)",11616], + ["Lao (People's Democratic Republic)",14682], + ["Chile (Republic of)",12854], + ["Burundi (Republic of)",10814], + ["Rwanda (Republic of)",12361], + ["Honduras (Republic of)",10201], + ["Austria (Republic of)",13844], + ["Slovakia (Slovak Republic)",14161], + ["Haiti (Republic of)",10703], + ["Dominican Republic",8084], + ["Netherlands (Kingdom of the)",12367], + ["Latvia (Republic of)",12016], + ["Somalia (Federal Republic of)",11479], + ["Bosnia and Herzegovina",10086], + ["Ireland",10826], + ["Papua New Guinea (Independent State of)",3240], + ["Tajikistan (Republic of)",8790], + ["Croatia (Republic of)",9056], + ["El Salvador (Republic of)",6852], + ["Belgium (Kingdom of)",8296], + ["Namibia (Republic of)",8243], + ["Liberia (Republic of)",5793], + ["Eritrea (State of)",7997], + ["Panama (Republic of)",5504], + ["Albania (Republic of)",6497], + ["Norway (Kingdom of)",7124], + ["Estonia (Republic of)",6735], + ["Mongolia",6256], + ["Congo (Republic of the)",5472], + ["Costa Rica (Republic of)",2504], + ["New Zealand",4838], + ["Guinea-Bissau (Republic of)",2960], + ["Georgia",4043], + ["Armenia (Republic of)",4693], + ["Gabon (Gabonese Republic)",3212], + ["Guyana (Co-operative Republic of)",4515], + ["Gambia (Republic of the)",4633], + ["North Macedonia (Republic of)",4215], + ["Switzerland (Swiss Confederation)",4213], + ["Mauritania (Islamic Republic of)",4124], + ["Israel (State of)",2850], + ["Botswana (Republic of)",3492], + ["Lesotho (Kingdom of)",3066], + ["Jordan (Hashemite Kingdom of)",1787], + ["Lebanon (Lebanese Republic)",1238], + ["Fiji (Republic of)",1647], + ["Jamaica",1221], + ["Timor-Leste (Democratic Republic of)",1502], + ["Palestine (State of)",953], + ["Slovenia (Republic of)",1706], + ["Montenegro",1784], + ["Eswatini (Kingdom of)",1701], + ["Equatorial Guinea (Republic of)",1208], + ["Comoros (Union of the)",1046], + ["Puerto Rico (Commonwealth of)",911], + ["Vanuatu (Republic of)",195], + ["Cyprus (Republic of)",906], + ["Bhutan (Kingdom of)",998], + ["Belize",758], + ["Solomon Islands",202], + ["United Arab Emirates",418], + ["Mauritius (Republic of)",764], + ["Suriname (Republic of)",655], + ["Luxembourg (Grand Duchy of)",620], + ["Oman (Sultanate of)",310], + ["Cape Verde (Republic of)",472], + ["São Tomé and Príncipe (Democratic Republic of)",87], + ["Trinidad and Tobago (Republic of)",251], + ["Kiribati (Republic of)",22], + ["Micronesia (Federated States of)",40], + ["Samoa (Independent State of)",79], + ["French Polynesia",29], + ["Tonga (Kingdom of)",166], + ["Dominica (Commonwealth of)",57], + ["Palestine (State of)",104], + ["Saint Lucia",39], + ["Barbados",160], + ["Kuwait (State of)",106], + ["Brunei (Nation of the Abode of Peace)",110], + ["Qatar (State of)",128], + ["Saint Vincent and the Grenadines",70], + ["Maldives (Republic of)",40], + ["Grenada",20], + ["Guam",20], + ["Wallis and Futuna",20], + ["Malta (Republic of)",99], + ["Antigua and Barbuda",81], + ["New Caledonia",59], + ["Marshall Islands (Republic of the)",20], + ["Sint Maarten (Netherlands)",96], + ["Bahamas (Commonwealth of the)",58], + ["Northern Mariana Islands (Commonwealth of the)",62], + ["Iceland (Republic of)",70], + ["Niue",30], + ["Seychelles (Republic of)",10], + ["Palau (Republic of)",40], + ["Cook Islands",40], + ["Saint Kitts and Nevis (Federation of)",51], + ["Bahrain (Kingdom of)",19], + ["Sahrawi Arab Democratic Republic",53], + ["Isle of Man",51], + ["American Samoa",30], + ["British Virgin Islands",31], + ["Liechtenstein (Principality of)",40], + ["Faroe Islands",30], + ["Saint Pierre and Miquelon",30], + ["United States Virgin Islands",20], + ["Aruba",20], + ["Montserrat",20], + ["Singapore (Republic of)",10], + ["Tuvalu",0], + ["Bermuda",11], + ["Andorra (Principality of)",10], + ["Turks and Caicos Islands",10], + ["Cayman Islands",10], + ["San Marino (Republic of)",10], + ["Djibouti (Republic of)",9], + ["Antarctica (the territory South of 60 deg S)",0], + ["Greenland",0], + ["Svalbard and Jan Mayen Islands",0], + ["Falkland Islands (Malvinas)",0], + ["South Georgia and the South Sandwich Islands",0], + ["Heard Island and McDonald Islands",0], + ["Svalbard and Jan Mayen Islands",0], + ["Christmas Island",0], + ["Jersey (Bailiwick of)",0], + ["Anguilla",0], + ["British Indian Ocean Territory",0], + ["Bouvet Island (Bouvetoya)",0], + ["Norfolk Island",0], + ["Macao (Special Administrative Region of China)",0], + ["Nauru (Republic of)",0], + ["Cocos (Keeling) Islands",0], + ["Tokelau",0], + ["Gibraltar",0], + ["Wake Island",0], + ["Monaco (Principality of)",0], + ["Holy See (Vatican City State)",0] + ] +} diff --git a/data/global/geography/land-usage/geographic-land-cultivated.json b/data/global/geography/land-usage/geographic-land-cultivated.json new file mode 100644 index 0000000..932542c --- /dev/null +++ b/data/global/geography/land-usage/geographic-land-cultivated.json @@ -0,0 +1,255 @@ +{ + "metadata" : { + "name" : "Cultivated Land", + "description" : "Cultivated land usage measured by square kilometres.", + "units" : "km2", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "uncategorised", + "tags" : ["global","geography","area","land","agreculture","farming"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Land_use_statistics_by_country" + ] + }, + "data" : [ + ["country.name","geographic.area.land.cultivated"], + ["India (Republic of)",1765260], + ["United States (of America)",1681826], + ["Russian Federation",1265267], + ["China (People's Republic of)",1238013], + ["Brazil (Federative Republic of)",800485], + ["Canada",519205], + ["Australia (Commonwealth of)",487695], + ["Indonesia (Republic of)",478055], + ["Nigeria (Federal Republic of)",412938], + ["Argentina (Argentine Republic)",397598], + ["Ukraine",347673], + ["Sudan (Republic of the)",296289], + ["Mexico (United Mexican States)",259301], + ["Kazakhstan (Republic of)",242516], + ["Turkey (Republic of)",240553], + ["Pakistan (Islamic Republic of)",227686], + ["France (French Republic)",226617], + ["Thailand (Kingdom of)",203188], + ["Iran (Islamic Republic of)",197794], + ["Ethiopia (Federal Democratic Republic of)",180001], + ["Spain (Kingdom of)",171836], + ["Tanzania (United Republic of)",157252], + ["Niger (Republic of)",155968], + ["Myanmar (Union of)",114341], + ["South Africa (Republic of)",124338], + ["Germany (Federal Republic of)",123879], + ["Poland (Republic of)",117262], + ["Uganda (Republic of)",109896], + ["Vietnam (Socialist Republic of)",108302], + ["Philippines (Republic of the)",108000], + ["Romania",97744], + ["Bangladesh (People's Republic of)",97268], + ["Italy (Italian Republic)",94609], + ["Morocco (Kingdom of)",91111], + ["Algeria (People's Democratic Republic of)",83360], + ["Afghanistan (Islamic Republic of)",78916], + ["Cameroon (Republic of)",77965], + ["Côte d'Ivoire (Republic of)",75143], + ["Malaysia",73568], + ["Mali (Republic of)",70691], + ["Kenya (Republic of)",62103], + ["United Kingdom (of Great Britain & Northern Ireland)",61631], + ["Syrian Arab Republic",57783], + ["Belarus (Republic of)",57713], + ["Paraguay (Republic of)",55770], + ["Tunisia (Republic of)",55133], + ["Peru (Republic of)",53878], + ["Mozambique (Republic of)",53560], + ["Chad (Republic of)",50076], + ["Uzbekistan (Republic of)",48766], + ["Japan",47250], + ["Hungary (Republic of)",46965], + ["Malawi (Republic of)",46926], + ["Ghana (Republic of)",46207], + ["Burkina Faso",45533], + ["Cambodia (Kingdom of)",42716], + ["Congo (Democratic Republic of the)",42208], + ["Bolivia (Plurinational State of)",41762], + ["Cuba (Republic of)",41476], + ["Madagascar (Republic of)",41090], + ["Iraq (Republic of)",39009], + ["Greece (Hellenic Republic)",37752], + ["Zambia (Republic of)",36125], + ["Egypt (Arab Republic of)",36054], + ["Angola (Republic of)",52361], + ["Guinea (Republic of)",35901], + ["Venezuela (Bolivarian Republic of)",35572], + ["Bulgaria (Republic of)",35323], + ["Senegal (Republic of)",34816], + ["Saudi Arabia (Kingdom of)",34400], + ["Colombia (Republic of)",34170], + ["Czech Republic",33138], + ["Serbia (Republic of)",31853], + ["Benin (Republic of)",29726], + ["Ecuador (Republic of)",29221], + ["Korea (Democratic People's Republic of)",29124], + ["Sweden (Kingdom of)",28819], + ["Togo (Togolese Republic)",27832], + ["Denmark (Kingdom of)",25429], + ["Guatemala (Republic of)",25047], + ["Finland (Republic of)",25019], + ["Nepal (Federal Democratic Republic of)",23993], + ["Sri Lanka (Democratic Socialist Republic of)",23944], + ["Lithuania (Republic of)",23117], + ["Azerbaijan (Republic of)",22083], + ["Moldova (Republic of)",21764], + ["Kyrgyz Republic",21400], + ["Libya (State of)",21114], + ["Turkmenistan",20496], + ["Nicaragua (Republic of)",19554], + ["Sierra Leone (Republic of)",18857], + ["Central African Republic",18690], + ["Uruguay (Oriental Republic of)",18215], + ["Portugal (Portuguese Republic)",18144], + ["Korea (Republic of)",17347], + ["Yemen (Republic of)",16684], + ["Lao (People's Democratic Republic)",16340], + ["Chile (Republic of)",16022], + ["Burundi (Republic of)",15151], + ["Rwanda (Republic of)",15017], + ["Honduras (Republic of)",14684], + ["Austria (Republic of)",14515], + ["Slovakia (Slovak Republic)",14357], + ["Haiti (Republic of)",13538], + ["Dominican Republic",13000], + ["Netherlands (Kingdom of the)",12824], + ["Latvia (Republic of)",12662], + ["Somalia (Federal Republic of)",11479], + ["Bosnia and Herzegovina",11110], + ["Ireland",10826], + ["Papua New Guinea (Independent State of)",10182], + ["Tajikistan (Republic of)",10087], + ["Croatia (Republic of)",9905], + ["El Salvador (Republic of)",9108], + ["Belgium (Kingdom of)",8540], + ["Namibia (Republic of)",8243], + ["Liberia (Republic of)",8132], + ["Eritrea (State of)",7997], + ["Panama (Republic of)",7389], + ["Albania (Republic of)",7359], + ["Norway (Kingdom of)",7124], + ["Estonia (Republic of)",6780], + ["Mongolia",6256], + ["Congo (Republic of the)",6156], + ["Costa Rica (Republic of)",5928], + ["New Zealand",5642], + ["Guinea-Bissau (Republic of)",5451], + ["Georgia",5298], + ["Armenia (Republic of)",5257], + ["Gabon (Gabonese Republic)",4818], + ["Guyana (Co-operative Republic of)",4730], + ["Gambia (Republic of the)",4690], + ["North Macedonia (Republic of)",4575], + ["Switzerland (Swiss Confederation)",4461], + ["Mauritania (Islamic Republic of)",4124], + ["Israel (State of)",3640], + ["Botswana (Republic of)",3492], + ["Lesotho (Kingdom of)",3096], + ["Jordan (Hashemite Kingdom of)",2681], + ["Lebanon (Lebanese Republic)",2517], + ["Fiji (Republic of)",2507], + ["Jamaica",2233], + ["Timor-Leste (Democratic Republic of)",2231], + ["Palestine (State of)",2023], + ["Slovenia (Republic of)",1970], + ["Montenegro",1950], + ["Eswatini (Kingdom of)",1840], + ["Equatorial Guinea (Republic of)",1798], + ["Comoros (Union of the)",1709], + ["Puerto Rico (Commonwealth of)",1684], + ["Vanuatu (Republic of)",1451], + ["Cyprus (Republic of)",1206], + ["Bhutan (Kingdom of)",1113], + ["Belize",1080], + ["Solomon Islands",1040], + ["United Arab Emirates",836], + ["Mauritius (Republic of)",824], + ["Suriname (Republic of)",655], + ["Luxembourg (Grand Duchy of)",636], + ["Oman (Sultanate of)",619], + ["Cape Verde (Republic of)",500], + ["São Tomé and Príncipe (Democratic Republic of)",479], + ["Trinidad and Tobago (Republic of)",471], + ["Kiribati (Republic of)",411], + ["Micronesia (Federated States of)",361], + ["Samoa (Independent State of)",299], + ["French Polynesia",290], + ["Tonga (Kingdom of)",280], + ["Dominica (Commonwealth of)",237], + ["Palestine (State of)",180], + ["Saint Lucia",176], + ["Barbados",170], + ["Kuwait (State of)",159], + ["Brunei (Nation of the Abode of Peace)",156], + ["Qatar (State of)",153], + ["Saint Vincent and the Grenadines",140], + ["Maldives (Republic of)",130], + ["Grenada",121], + ["Guam",118], + ["Wallis and Futuna",118], + ["Malta (Republic of)",109], + ["Antigua and Barbuda",101], + ["New Caledonia",100], + ["Marshall Islands (Republic of the)",100], + ["Sint Maarten (Netherlands)",96], + ["Bahamas (Commonwealth of the)",87], + ["Northern Mariana Islands (Commonwealth of the)",83], + ["Iceland (Republic of)",70], + ["Niue",70], + ["Seychelles (Republic of)",69], + ["Palau (Republic of)",60], + ["Cook Islands",60], + ["Saint Kitts and Nevis (Federation of)",58], + ["Bahrain (Kingdom of)",56], + ["Sahrawi Arab Democratic Republic",53], + ["Isle of Man",51], + ["American Samoa",49], + ["British Virgin Islands",41], + ["Liechtenstein (Principality of)",40], + ["Faroe Islands",30], + ["Saint Pierre and Miquelon",30], + ["United States Virgin Islands",30], + ["Aruba",20], + ["Montserrat",20], + ["Singapore (Republic of)",20], + ["Tuvalu",17], + ["Bermuda",11], + ["Andorra (Principality of)",10], + ["Turks and Caicos Islands",10], + ["Cayman Islands",10], + ["San Marino (Republic of)",10], + ["Djibouti (Republic of)",9], + ["Antarctica (the territory South of 60 deg S)",0], + ["Greenland",0], + ["Svalbard and Jan Mayen Islands",0], + ["Falkland Islands (Malvinas)",0], + ["South Georgia and the South Sandwich Islands",0], + ["Heard Island and McDonald Islands",0], + ["Svalbard and Jan Mayen Islands",0], + ["Christmas Island",0], + ["Jersey (Bailiwick of)",0], + ["Anguilla",0], + ["British Indian Ocean Territory",0], + ["Bouvet Island (Bouvetoya)",0], + ["Norfolk Island",0], + ["Macao (Special Administrative Region of China)",0], + ["Nauru (Republic of)",0], + ["Cocos (Keeling) Islands",0], + ["Tokelau",0], + ["Gibraltar",0], + ["Wake Island",0], + ["Monaco (Principality of)",0], + ["Holy See (Vatican City State)",0] + ] +} diff --git a/data/global/geography/land-usage/geographic-land-organic-farmland-ratio.json b/data/global/geography/land-usage/geographic-land-organic-farmland-ratio.json new file mode 100644 index 0000000..c1357b8 --- /dev/null +++ b/data/global/geography/land-usage/geographic-land-organic-farmland-ratio.json @@ -0,0 +1,178 @@ +{ + "metadata" : { + "name" : "Land Organic Farmland Ratio", + "description" : "Organic farmland measured in square kilometres.", + "units" : "km2", + "year" : "2020", + "author" : "Research Institute of Organic Agriculture (FIBL)", + "tags" : ["global", "geography", "agriculture", "organic", "farming"], + "source" : "https://en.wikipedia.org/wiki/List_of_countries_by_organic_farmland" + }, + "data" : [ + ["country.name","land.organic.farmland.ratio"], + ["Afghanistan (Islamic Republic of)",0.000003], + ["Albania (Republic of)",0.001], + ["Algeria (People's Democratic Republic of)",0.00002], + ["Andorra (Principality of)",0], + ["Argentina (Argentine Republic)",0.03], + ["Armenia (Republic of)",0.0003], + ["Australia (Commonwealth of)",0.099], + ["Austria (Republic of)",0.265], + ["Azerbaijan (Republic of)",0.008], + ["Bahamas (Commonwealth of the)",0.003], + ["Bangladesh (People's Republic of)",0.0001], + ["Belarus (Republic of)",0.001], + ["Belgium (Kingdom of)",0.072], + ["Belize",0.003], + ["Benin (Republic of)",0.01], + ["Bhutan (Kingdom of)",0.008], + ["Bolivia (Plurinational State of)",0.005], + ["Bosnia and Herzegovina",0.001], + ["Brazil (Federative Republic of)",0.006], + ["British Virgin Islands",0.004], + ["Bulgaria (Republic of)",0.023], + ["Burkina Faso",0.005], + ["Burundi (Republic of)",0.0002], + ["Cambodia (Kingdom of)",0.006], + ["Cameroon (Republic of)",0.00004], + ["Canada",0.024], + ["Cape Verde (Republic of)",0.00003], + ["Jersey (Bailiwick of)",0.02], + ["Chile (Republic of)",0.01], + ["China (People's Republic of)",0.005], + ["Colombia (Republic of)",0.001], + ["Comoros (Union of the)",0.008], + ["Cook Islands",0.01], + ["Costa Rica (Republic of)",0.006], + ["Croatia (Republic of)",0.072], + ["Cuba (Republic of)",0.0003], + ["Cyprus (Republic of)",0.044], + ["Czech Republic",0.153], + ["Congo (Democratic Republic of the)",0.004], + ["Denmark (Kingdom of)",0.114], + ["Dominican Republic",0.048], + ["Ecuador (Republic of)",0.008], + ["Egypt (Arab Republic of)",0.03], + ["El Salvador (Republic of)",0.002], + ["Estonia (Republic of)",0.224], + ["Eswatini (Kingdom of)",0.001], + ["Ethiopia (Federal Democratic Republic of)",0.006], + ["Falkland Islands (Malvinas)",0.028], + ["Faroe Islands",0.084], + ["Fiji (Republic of)",0.045], + ["Finland (Republic of)",0.139], + ["France (French Republic)",0.088], + ["French Guiana",0.113], + ["French Polynesia",0.034], + ["Georgia",0.001], + ["Germany (Federal Republic of)",0.102], + ["Ghana (Republic of)",0.005], + ["Greece (Hellenic Republic)",0.101], + ["Grenada",0.011], + ["Guadeloupe",0.017], + ["Guatemala (Republic of)",0.023], + ["Guinea-Bissau (Republic of)",0.012], + ["Haiti (Republic of)",0.002], + ["Honduras (Republic of)",0.02], + ["Hungary (Republic of)",0.06], + ["Iceland (Republic of)",0.003], + ["India (Republic of)",0.015], + ["Indonesia (Republic of)",0.001], + ["Iran (Islamic Republic of)",0.0003], + ["Iraq (Republic of)",0.00001], + ["Ireland",0.016], + ["Israel (State of)",0.01], + ["Italy (Italian Republic)",0.16], + ["Côte d'Ivoire (Republic of)",0.004], + ["Jamaica",0.00002], + ["Japan",0.003], + ["Jordan (Hashemite Kingdom of)",0.001], + ["Kazakhstan (Republic of)",0.001], + ["Kenya (Republic of)",0.004], + ["Kosovo (Republic of)",0.004], + ["Kuwait (State of)",0.0002], + ["Kyrgyz Republic",0.003], + ["Lao (People's Democratic Republic)",0.001], + ["Latvia (Republic of)",0.148], + ["Lebanon (Lebanese Republic)",0.003], + ["Liechtenstein (Principality of)",0.416], + ["Lithuania (Republic of)",0.08], + ["Luxembourg (Grand Duchy of)",0.046], + ["Madagascar (Republic of)",0.003], + ["Malawi (Republic of)",0.00004], + ["Malaysia",0.0001], + ["Mali (Republic of)",0.0004], + ["Malta (Republic of)",0.006], + ["Martinique",0.022], + ["Mauritius (Republic of)",0.0001], + ["Mayotte (Department of)",0.004], + ["Mexico (United Mexican States)",0.002], + ["Moldova (Republic of)",0.012], + ["Mongolia",0.000002], + ["Montenegro",0.019], + ["Morocco (Kingdom of)",0.0004], + ["Mozambique (Republic of)",0.0003], + ["Myanmar (Union of)",0.001], + ["Nepal (Federal Democratic Republic of)",0.002], + ["Netherlands (Kingdom of the)",0.039], + ["New Caledonia",0.004], + ["New Zealand",0.008], + ["Nicaragua (Republic of)",0.008], + ["Nigeria (Federal Republic of)",0.001], + ["Niue",0.009], + ["North Macedonia (Republic of)",0.003], + ["Norway (Kingdom of)",0.046], + ["Oman (Sultanate of)",0.000003], + ["Pakistan (Islamic Republic of)",0.002], + ["Palestine (State of)",0.011], + ["Panama (Republic of)",0.003], + ["Papua New Guinea (Independent State of)",0.061], + ["Paraguay (Republic of)",0.003], + ["Peru (Republic of)",0.015], + ["Philippines (Republic of the)",0.015], + ["Poland (Republic of)",0.035], + ["Portugal (Portuguese Republic)",0.081], + ["Réunion",0.04], + ["Romania",0.035], + ["Russian Federation",0.003], + ["Rwanda (Republic of)",0.003], + ["Samoa (Independent State of)",0.145], + ["São Tomé and Príncipe (Democratic Republic of)",0.207], + ["Saudi Arabia (Kingdom of)",0.0002], + ["Senegal (Republic of)",0.0004], + ["Serbia (Republic of)",0.006], + ["Sierra Leone (Republic of)",0.056], + ["Singapore (Republic of)",0.022], + ["Slovakia (Slovak Republic)",0.117], + ["Slovenia (Republic of)",0.108], + ["Solomon Islands",0.029], + ["South Africa (Republic of)",0.0004], + ["Korea (Republic of)",0.023], + ["Spain (Kingdom of)",0.1], + ["Sri Lanka (Democratic Socialist Republic of)",0.026], + ["Suriname (Republic of)",0.001], + ["Sweden (Kingdom of)",0.204], + ["Switzerland (Swiss Confederation)",0.17], + ["Taiwan",0.014], + ["Tajikistan (Republic of)",0.002], + ["Tanzania (United Republic of)",0.005], + ["Thailand (Kingdom of)",0.007], + ["Timor-Leste (Democratic Republic of)",0.085], + ["Togo (Togolese Republic)",0.033], + ["Tonga (Kingdom of)",0.032], + ["Tunisia (Republic of)",0.03], + ["Turkey (Republic of)",0.01], + ["Uganda (Republic of)",0.008], + ["Ukraine",0.011], + ["United Arab Emirates",0.014], + ["United Kingdom (of Great Britain & Northern Ireland)",0.027], + ["United States (of America)",0.006], + ["Uruguay (Oriental Republic of)",0.196], + ["Uzbekistan (Republic of)",0.0001], + ["Vanuatu (Republic of)",0.011], + ["Venezuela (Bolivarian Republic of)",0.0001], + ["Vietnam (Socialist Republic of)",0.005], + ["Zambia (Republic of)",0.00003], + ["Zimbabwe (Republic of)",0.0001] + ] +} diff --git a/data/global/geography/land-usage/geographic-land-organic-farmland.json b/data/global/geography/land-usage/geographic-land-organic-farmland.json new file mode 100644 index 0000000..9dd6b7d --- /dev/null +++ b/data/global/geography/land-usage/geographic-land-organic-farmland.json @@ -0,0 +1,186 @@ +{ + "metadata" : { + "name" : "Organic Farmland", + "description" : "Organic farmland measured in square kilometres.", + "units" : "km2", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "geographic", + "tags" : ["global","geography","area","land","agriculture","organic","farming"], + "authors" : [ + "Research Institute of Organic Agriculture (FIBL)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_organic_farmland" + ] + }, + "data" : [ + ["country.name","geographic.area.land.organicfarmland"], + ["Afghanistan (Islamic Republic of)",9800], + ["Albania (Republic of)",88700], + ["Algeria (People's Democratic Republic of)",77200], + ["Andorra (Principality of)",200], + ["Argentina (Argentine Republic)",445363900], + ["Armenia (Republic of)",56600], + ["Australia (Commonwealth of)",3568779900], + ["Austria (Republic of)",67987200], + ["Azerbaijan (Republic of)",3808000], + ["Bahamas (Commonwealth of the)",4900], + ["Bangladesh (People's Republic of)",50400], + ["Belarus (Republic of)",683800], + ["Belgium (Kingdom of)",9907500], + ["Belize",45400], + ["Benin (Republic of)",3882200], + ["Bhutan (Kingdom of)",409500], + ["Bolivia (Plurinational State of)",17942500], + ["Bosnia and Herzegovina",169200], + ["Brazil (Federative Republic of)",131945400], + ["British Virgin Islands",2600], + ["Bulgaria (Republic of)",11625300], + ["Burkina Faso",6617500], + ["Burundi (Republic of)",31900], + ["Cambodia (Kingdom of)",3587900], + ["Cameroon (Republic of)",34500], + ["Canada",141761200], + ["Cape Verde (Republic of)",300], + ["Jersey (Bailiwick of)",18000], + ["Chile (Republic of)",15681900], + ["China (People's Republic of)",243500000], + ["Colombia (Republic of)",5053300], + ["Comoros (Union of the)",100400], + ["Cook Islands",1500], + ["Costa Rica (Republic of)",1146500], + ["Croatia (Republic of)",10861000], + ["Cuba (Republic of)",212900], + ["Cyprus (Republic of)",591800], + ["Czech Republic",53953200], + ["Congo (Democratic Republic of the)",11825400], + ["Denmark (Kingdom of)",29999800], + ["Dominican Republic",11731200], + ["Ecuador (Republic of)",4153700], + ["Egypt (Arab Republic of)",11600000], + ["El Salvador (Republic of)",256900], + ["Estonia (Republic of)",22079600], + ["Eswatini (Kingdom of)",115600], + ["Ethiopia (Federal Democratic Republic of)",23464800], + ["Falkland Islands (Malvinas)",3193700], + ["Faroe Islands",25100], + ["Fiji (Republic of)",1930300], + ["Finland (Republic of)",31511200], + ["France (French Republic)",254867700], + ["French Guiana",369000], + ["French Polynesia",156200], + ["Georgia",157200], + ["Germany (Federal Republic of)",170224000], + ["Ghana (Republic of)",7487400], + ["Greece (Hellenic Republic)",53462900], + ["Grenada",8400], + ["Guadeloupe",85800], + ["Guatemala (Republic of)",8702800], + ["Guinea-Bissau (Republic of)",984400], + ["Haiti (Republic of)",290700], + ["Honduras (Republic of)",6617900], + ["Hungary (Republic of)",30143000], + ["Iceland (Republic of)",470900], + ["India (Republic of)",265788900], + ["Indonesia (Republic of)",7579300], + ["Iran (Islamic Republic of)",1191600], + ["Iraq (Republic of)",6300], + ["Ireland",7395200], + ["Israel (State of)",628700], + ["Italy (Italian Republic)",209538000], + ["Côte d'Ivoire (Republic of)",7912500], + ["Jamaica",1000], + ["Japan",1199200], + ["Jordan (Hashemite Kingdom of)",144600], + ["Kazakhstan (Republic of)",11488600], + ["Kenya (Republic of)",12374400], + ["Kosovo (Republic of)",160400], + ["Kuwait (State of)",3300], + ["Kyrgyz Republic",3025900], + ["Lao (People's Democratic Republic)",326600], + ["Latvia (Republic of)",29115000], + ["Lebanon (Lebanese Republic)",171500], + ["Liechtenstein (Principality of)",149000], + ["Lithuania (Republic of)",23547100], + ["Luxembourg (Grand Duchy of)",611800], + ["Madagascar (Republic of)",10381700], + ["Malawi (Republic of)",23200], + ["Malaysia",127600], + ["Mali (Republic of)",1467500], + ["Malta (Republic of)",6700], + ["Martinique",68300], + ["Mauritius (Republic of)",500], + ["Mayotte (Department of)",8700], + ["Mexico (United Mexican States)",21563400], + ["Moldova (Republic of)",2762400], + ["Mongolia",24100], + ["Montenegro",482300], + ["Morocco (Kingdom of)",1145200], + ["Mozambique (Republic of)",1443800], + ["Myanmar (Union of)",1014300], + ["Nepal (Federal Democratic Republic of)",936100], + ["Netherlands (Kingdom of the)",7160700], + ["New Caledonia",80000], + ["New Zealand",7934700], + ["Nicaragua (Republic of)",3907600], + ["Nigeria (Federal Republic of)",5499500], + ["Niue",4300], + ["North Macedonia (Republic of)",372700], + ["Norway (Kingdom of)",4531200], + ["Oman (Sultanate of)",400], + ["Pakistan (Islamic Republic of)",6985000], + ["Palestine (State of)",521800], + ["Panama (Republic of)",592900], + ["Papua New Guinea (Independent State of)",7247700], + ["Paraguay (Republic of)",7342800], + ["Peru (Republic of)",34270100], + ["Philippines (Republic of the)",19177000], + ["Poland (Republic of)",50763700], + ["Portugal (Portuguese Republic)",31954000], + ["Réunion",190100], + ["Romania",46888700], + ["Russian Federation",61518800], + ["Rwanda (Republic of)",518800], + ["Samoa (Independent State of)",4099200], + ["São Tomé and Príncipe (Democratic Republic of)",910300], + ["Saudi Arabia (Kingdom of)",2663200], + ["Senegal (Republic of)",380900], + ["Serbia (Republic of)",1931700], + ["Sierra Leone (Republic of)",21986100], + ["Singapore (Republic of)",1500], + ["Slovakia (Slovak Republic)",22289600], + ["Slovenia (Republic of)",5207800], + ["Solomon Islands",336700], + ["South Africa (Republic of)",4095400], + ["Korea (Republic of)",3854000], + ["Spain (Kingdom of)",243789100], + ["Sri Lanka (Democratic Socialist Republic of)",7339300], + ["Suriname (Republic of)",5200], + ["Sweden (Kingdom of)",61396400], + ["Switzerland (Swiss Confederation)",17734700], + ["Taiwan",1078900], + ["Tajikistan (Republic of)",1181800], + ["Tanzania (United Republic of)",19822600], + ["Thailand (Kingdom of)",16080200], + ["Timor-Leste (Democratic Republic of)",3231100], + ["Togo (Togolese Republic)",12778200], + ["Tonga (Kingdom of)",111900], + ["Tunisia (Republic of)",29713700], + ["Turkey (Republic of)",38263900], + ["Uganda (Republic of)",11637600], + ["Ukraine",46222500], + ["United Arab Emirates",541900], + ["United Kingdom (of Great Britain & Northern Ireland)",47350000], + ["United States (of America)",232655100], + ["Uruguay (Oriental Republic of)",274236800], + ["Uzbekistan (Republic of)",378100], + ["Vanuatu (Republic of)",205200], + ["Venezuela (Bolivarian Republic of)",149000], + ["Vietnam (Socialist Republic of)",6353600], + ["Zambia (Republic of)",69100], + ["Zimbabwe (Republic of)",104300] + ] +} diff --git a/data/global/geography/land-usage/geographic-land-other.json b/data/global/geography/land-usage/geographic-land-other.json new file mode 100644 index 0000000..02ad908 --- /dev/null +++ b/data/global/geography/land-usage/geographic-land-other.json @@ -0,0 +1,255 @@ +{ + "metadata" : { + "name" : "Other Land", + "description" : "Land other than cultivated and/or arable land measured by square kilometres.", + "units" : "km2", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "uncategorised", + "tags" : ["global","geography","area","land","agreculture","farming"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Land_use_statistics_by_country" + ] + }, + "data" : [ + ["country.name","geographic.area.land.other"], + ["India (Republic of)",1522002], + ["United States (of America)",8151691], + ["Russian Federation",15832975], + ["China (People's Republic of)",8358947], + ["Brazil (Federative Republic of)",7715285], + ["Canada",9465465], + ["Australia (Commonwealth of)",7253525], + ["Indonesia (Republic of)",1426514], + ["Nigeria (Federal Republic of)",510830], + ["Argentina (Argentine Republic)",2382802], + ["Ukraine",255877], + ["Sudan (Republic of the)",1565195], + ["Mexico (United Mexican States)",1705074], + ["Kazakhstan (Republic of)",2482384], + ["Turkey (Republic of)",543009], + ["Pakistan (Islamic Republic of)",568409], + ["France (French Republic)",417184], + ["Thailand (Kingdom of)",309932], + ["Iran (Islamic Republic of)",1450401], + ["Ethiopia (Federal Democratic Republic of)",924299], + ["Spain (Kingdom of)",333534], + ["Tanzania (United Republic of)",790048], + ["Niger (Republic of)",1111032], + ["Myanmar (Union of)",550054], + ["South Africa (Republic of)",1094752], + ["Germany (Federal Republic of)",233143], + ["Poland (Republic of)",195423], + ["Uganda (Republic of)",131148], + ["Vietnam (Socialist Republic of)",222908], + ["Philippines (Republic of the)",192000], + ["Romania",140647], + ["Bangladesh (People's Republic of)",51192], + ["Italy (Italian Republic)",206729], + ["Morocco (Kingdom of)",355439], + ["Algeria (People's Democratic Republic of)",2298381], + ["Afghanistan (Islamic Republic of)",673314], + ["Cameroon (Republic of)",397475], + ["Côte d'Ivoire (Republic of)",247320], + ["Malaysia",256279], + ["Mali (Republic of)",1169501], + ["Kenya (Republic of)",518264], + ["United Kingdom (of Great Britain & Northern Ireland)",181979], + ["Syrian Arab Republic",688651], + ["Belarus (Republic of)",149887], + ["Paraguay (Republic of)",350982], + ["Tunisia (Republic of)",108477], + ["Peru (Republic of)",1231338], + ["Mozambique (Republic of)",745820], + ["Chad (Republic of)",1233924], + ["Uzbekistan (Republic of)",398634], + ["Japan",327751], + ["Hungary (Republic of)",46063], + ["Malawi (Republic of)",71558], + ["Ghana (Republic of)",192346], + ["Burkina Faso",228667], + ["Cambodia (Kingdom of)",138319], + ["Congo (Democratic Republic of the)",2302650], + ["Bolivia (Plurinational State of)",1056819], + ["Cuba (Republic of)",69384], + ["Madagascar (Republic of)",545951], + ["Iraq (Republic of)",399308], + ["Greece (Hellenic Republic)",94205], + ["Zambia (Republic of)",716493], + ["Egypt (Arab Republic of)",965396], + ["Angola (Republic of)",1194339], + ["Guinea (Republic of)",209956], + ["Venezuela (Bolivarian Republic of)",876478], + ["Bulgaria (Republic of)",75556], + ["Senegal (Republic of)",161906], + ["Saudi Arabia (Kingdom of)",2115290], + ["Colombia (Republic of)",1104740], + ["Czech Republic",45729], + ["Serbia (Republic of)",45621], + ["Benin (Republic of)",82896], + ["Ecuador (Republic of)",254430], + ["Korea (Democratic People's Republic of)",91414], + ["Sweden (Kingdom of)",421476], + ["Togo (Togolese Republic)",28953], + ["Denmark (Kingdom of)",17665], + ["Guatemala (Republic of)",83842], + ["Finland (Republic of)",313126], + ["Nepal (Federal Democratic Republic of)",123188], + ["Sri Lanka (Democratic Socialist Republic of)",41666], + ["Lithuania (Republic of)",42183], + ["Azerbaijan (Republic of)",64517], + ["Moldova (Republic of)",73514], + ["Kyrgyz Republic",178551], + ["Libya (State of)",1738426], + ["Turkmenistan",467604], + ["Nicaragua (Republic of)",111816], + ["Sierra Leone (Republic of)",52883], + ["Central African Republic",604294], + ["Uruguay (Oriental Republic of)",158000], + ["Portugal (Portuguese Republic)",73946], + ["Korea (Republic of)",82373], + ["Yemen (Republic of)",511286], + ["Lao (People's Democratic Republic)",220460], + ["Chile (Republic of)",740080], + ["Burundi (Republic of)",57282], + ["Rwanda (Republic of)",11321], + ["Honduras (Republic of)",97406], + ["Austria (Republic of)",69256], + ["Slovakia (Slovak Republic)",34678], + ["Haiti (Republic of)",14212], + ["Dominican Republic",35670], + ["Netherlands (Kingdom of the)",28719], + ["Latvia (Republic of)",51927], + ["Somalia (Federal Republic of)",616798], + ["Bosnia and Herzegovina",40087], + ["Ireland",70273], + ["Papua New Guinea (Independent State of)",452658], + ["Tajikistan (Republic of)",134013], + ["Croatia (Republic of)",46689], + ["El Salvador (Republic of)",11612], + ["Belgium (Kingdom of)",21988], + ["Namibia (Republic of)",816049], + ["Liberia (Republic of)",103237], + ["Eritrea (State of)",109603], + ["Panama (Republic of)",68031], + ["Albania (Republic of)",21458], + ["Norway (Kingdom of)",316678], + ["Estonia (Republic of)",38448], + ["Mongolia",1557860], + ["Congo (Republic of the)",335844], + ["Costa Rica (Republic of)",45172], + ["New Zealand",263196], + ["Guinea-Bissau (Republic of)",30674], + ["Georgia",64402], + ["Armenia (Republic of)",24486], + ["Gabon (Gabonese Republic)",262849], + ["Guyana (Co-operative Republic of)",210239], + ["Gambia (Republic of the)",6610], + ["North Macedonia (Republic of)",21138], + ["Switzerland (Swiss Confederation)",36816], + ["Mauritania (Islamic Republic of)",1026576], + ["Israel (State of)",17130], + ["Botswana (Republic of)",578238], + ["Lesotho (Kingdom of)",27259], + ["Jordan (Hashemite Kingdom of)",86661], + ["Lebanon (Lebanese Republic)",7883], + ["Fiji (Republic of)",15767], + ["Jamaica",8758], + ["Timor-Leste (Democratic Republic of)",12643], + ["Palestine (State of)",3617], + ["Slovenia (Republic of)",18303], + ["Montenegro",11862], + ["Eswatini (Kingdom of)",15524], + ["Equatorial Guinea (Republic of)",26253], + ["Comoros (Union of the)",526], + ["Puerto Rico (Commonwealth of)",12107], + ["Vanuatu (Republic of)",10738], + ["Cyprus (Republic of)",8045], + ["Bhutan (Kingdom of)",37281], + ["Belize",21886], + ["Solomon Islands",27856], + ["United Arab Emirates",82764], + ["Mauritius (Republic of)",1216], + ["Suriname (Republic of)",163165], + ["Luxembourg (Grand Duchy of)",1950], + ["Oman (Sultanate of)",308881], + ["Cape Verde (Republic of)",3533], + ["São Tomé and Príncipe (Democratic Republic of)",485], + ["Trinidad and Tobago (Republic of)",4657], + ["Kiribati (Republic of)",400], + ["Micronesia (Federated States of)",341], + ["Samoa (Independent State of)",2532], + ["French Polynesia",3877], + ["Tonga (Kingdom of)",467], + ["Dominica (Commonwealth of)",514], + ["Palestine (State of)",180], + ["Saint Lucia",430], + ["Barbados",261], + ["Kuwait (State of)",17659], + ["Brunei (Nation of the Abode of Peace)",5115], + ["Qatar (State of)",11433], + ["Saint Vincent and the Grenadines",249], + ["Maldives (Republic of)",170], + ["Grenada",223], + ["Guam",423], + ["Wallis and Futuna",157], + ["Malta (Republic of)",207], + ["Antigua and Barbuda",342], + ["New Caledonia",18475], + ["Marshall Islands (Republic of the)",80], + ["Sint Maarten (Netherlands)",864], + ["Bahamas (Commonwealth of the)",9982], + ["Northern Mariana Islands (Commonwealth of the)",394], + ["Iceland (Republic of)",100180], + ["Niue",190], + ["Seychelles (Republic of)",386], + ["Palau (Republic of)",398], + ["Cook Islands",178], + ["Saint Kitts and Nevis (Federation of)",203], + ["Bahrain (Kingdom of)",609], + ["Sahrawi Arab Democratic Republic",265947], + ["Isle of Man",521], + ["American Samoa",175], + ["British Virgin Islands",112], + ["Liechtenstein (Principality of)",120], + ["Faroe Islands",1369], + ["Saint Pierre and Miquelon",212], + ["United States Virgin Islands",316], + ["Aruba",173], + ["Montserrat",82], + ["Singapore (Republic of)",663], + ["Tuvalu",9], + ["Bermuda",42], + ["Andorra (Principality of)",458], + ["Turks and Caicos Islands",420], + ["Cayman Islands",252], + ["San Marino (Republic of)",51], + ["Djibouti (Republic of)",22971], + ["Antarctica (the territory South of 60 deg S)",14000000], + ["Greenland",2166086], + ["Svalbard and Jan Mayen Islands",61020], + ["Falkland Islands (Malvinas)",12173], + ["South Georgia and the South Sandwich Islands",3903], + ["Heard Island and McDonald Islands",412], + ["Svalbard and Jan Mayen Islands",377], + ["Christmas Island",135], + ["Jersey (Bailiwick of)",116], + ["Anguilla",102], + ["British Indian Ocean Territory",60], + ["Bouvet Island (Bouvetoya)",49], + ["Norfolk Island",35], + ["Macao (Special Administrative Region of China)",28], + ["Nauru (Republic of)",21], + ["Cocos (Keeling) Islands",14], + ["Tokelau",10], + ["Gibraltar",7], + ["Wake Island",7], + ["Monaco (Principality of)",2], + ["Holy See (Vatican City State)",0.44] + ] +} diff --git a/data/global/geography/land-usage/geographic-land-permanentcrops.json b/data/global/geography/land-usage/geographic-land-permanentcrops.json new file mode 100644 index 0000000..6ff3e72 --- /dev/null +++ b/data/global/geography/land-usage/geographic-land-permanentcrops.json @@ -0,0 +1,255 @@ +{ + "metadata" : { + "name" : "Permanent Crops", + "description" : "Size of permanant crops measured by square kilometres.", + "units" : "km2", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "uncategorised", + "tags" : ["global","geography","land","agreculture","farming"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Land_use_statistics_by_country" + ] + }, + "data" : [ + ["country.name","geographic.area.land.crops"], + ["India (Republic of)",108479], + ["United States (of America)",29798], + ["Russian Federation",17098], + ["China (People's Republic of)",153552], + ["Brazil (Federative Republic of)",68126], + ["Canada",49924], + ["Australia (Commonwealth of)",7741], + ["Indonesia (Republic of)",230457], + ["Nigeria (Federal Republic of)",68361], + ["Argentina (Argentine Republic)",11122], + ["Ukraine",9054], + ["Sudan (Republic of the)",3723], + ["Mexico (United Mexican States)",27502], + ["Kazakhstan (Republic of)",0], + ["Turkey (Republic of)",31342], + ["Pakistan (Islamic Republic of)",7962], + ["France (French Republic)",11588], + ["Thailand (Kingdom of)",45153], + ["Iran (Islamic Republic of)",19788], + ["Ethiopia (Federal Democratic Republic of)",12147], + ["Spain (Kingdom of)",45991], + ["Tanzania (United Republic of)",21788], + ["Niger (Republic of)",127], + ["Myanmar (Union of)",14885], + ["South Africa (Republic of)",3647], + ["Germany (Federal Republic of)",2142], + ["Poland (Republic of)",4065], + ["Uganda (Republic of)",27233], + ["Vietnam (Socialist Republic of)",40075], + ["Philippines (Republic of the)",53400], + ["Romania",4530], + ["Bangladesh (People's Republic of)",9653], + ["Italy (Italian Republic)",25912], + ["Morocco (Kingdom of)",12951], + ["Algeria (People's Democratic Republic of)",9527], + ["Afghanistan (Islamic Republic of)",1304], + ["Cameroon (Republic of)",15688], + ["Côte d'Ivoire (Republic of)",45795], + ["Malaysia",64001], + ["Mali (Republic of)",1240], + ["Kenya (Republic of)",5224], + ["United Kingdom (of Great Britain & Northern Ireland)",487], + ["Syrian Arab Republic",10742], + ["Belarus (Republic of)",1246], + ["Paraguay (Republic of)",1014], + ["Tunisia (Republic of)",25194], + ["Peru (Republic of)",14137], + ["Mozambique (Republic of)",2398], + ["Chad (Republic of)",0], + ["Uzbekistan (Republic of)",3579], + ["Japan",3024], + ["Hungary (Republic of)",1860], + ["Malawi (Republic of)",1659], + ["Ghana (Republic of)",17814], + ["Burkina Faso",823], + ["Cambodia (Kingdom of)",1629], + ["Congo (Democratic Republic of the)",4690], + ["Bolivia (Plurinational State of)",2198], + ["Cuba (Republic of)",3992], + ["Madagascar (Republic of)",5870], + ["Iraq (Republic of)",2192], + ["Greece (Hellenic Republic)",11748], + ["Zambia (Republic of)",0], + ["Egypt (Arab Republic of)",8012], + ["Angola (Republic of)",3740], + ["Guinea (Republic of)",6885], + ["Venezuela (Bolivarian Republic of)",7297], + ["Bulgaria (Republic of)",2164], + ["Senegal (Republic of)",590], + ["Saudi Arabia (Kingdom of)",2150], + ["Colombia (Republic of)",18224], + ["Czech Republic",789], + ["Serbia (Republic of)",2635], + ["Benin (Republic of)",3941], + ["Ecuador (Republic of)",15887], + ["Korea (Democratic People's Republic of)",13316], + ["Sweden (Kingdom of)",0], + ["Togo (Togolese Republic)",2158], + ["Denmark (Kingdom of)",43], + ["Guatemala (Republic of)",9583], + ["Finland (Republic of)",0], + ["Nepal (Federal Democratic Republic of)",1766], + ["Sri Lanka (Democratic Socialist Republic of)",10365], + ["Lithuania (Republic of)",327], + ["Azerbaijan (Republic of)",2338], + ["Moldova (Republic of)",3085], + ["Kyrgyz Republic",8000], + ["Libya (State of)",3519], + ["Turkmenistan",488], + ["Nicaragua (Republic of)",3259], + ["Sierra Leone (Republic of)",2079], + ["Central African Republic",623], + ["Uruguay (Oriental Republic of)",417], + ["Portugal (Portuguese Republic)",7184], + ["Korea (Republic of)",2193], + ["Yemen (Republic of)",1320], + ["Lao (People's Democratic Republic)",1658], + ["Chile (Republic of)",3168], + ["Burundi (Republic of)",4337], + ["Rwanda (Republic of)",2656], + ["Honduras (Republic of)",4483], + ["Austria (Republic of)",671], + ["Slovakia (Slovak Republic)",196], + ["Haiti (Republic of)",2835], + ["Dominican Republic",4916], + ["Netherlands (Kingdom of the)",457], + ["Latvia (Republic of)",646], + ["Somalia (Federal Republic of)",0], + ["Bosnia and Herzegovina",1024], + ["Ireland",0], + ["Papua New Guinea (Independent State of)",6942], + ["Tajikistan (Republic of)",1297], + ["Croatia (Republic of)",849], + ["El Salvador (Republic of)",2256], + ["Belgium (Kingdom of)",244], + ["Namibia (Republic of)",0], + ["Liberia (Republic of)",2339], + ["Eritrea (State of)",0], + ["Panama (Republic of)",1885], + ["Albania (Republic of)",862], + ["Norway (Kingdom of)",0], + ["Estonia (Republic of)",45], + ["Mongolia",0], + ["Congo (Republic of the)",684], + ["Costa Rica (Republic of)",3424], + ["New Zealand",806], + ["Guinea-Bissau (Republic of)",2491], + ["Georgia",1255], + ["Armenia (Republic of)",564], + ["Gabon (Gabonese Republic)",1606], + ["Guyana (Co-operative Republic of)",215], + ["Gambia (Republic of the)",57], + ["North Macedonia (Republic of)",360], + ["Switzerland (Swiss Confederation)",248], + ["Mauritania (Islamic Republic of)",0], + ["Israel (State of)",790], + ["Botswana (Republic of)",0], + ["Lesotho (Kingdom of)",30], + ["Jordan (Hashemite Kingdom of)",894], + ["Lebanon (Lebanese Republic)",1279], + ["Fiji (Republic of)",860], + ["Jamaica",1012], + ["Timor-Leste (Democratic Republic of)",729], + ["Palestine (State of)",1070], + ["Slovenia (Republic of)",264], + ["Montenegro",166], + ["Eswatini (Kingdom of)",139], + ["Equatorial Guinea (Republic of)",590], + ["Comoros (Union of the)",663], + ["Puerto Rico (Commonwealth of)",773], + ["Vanuatu (Republic of)",1256], + ["Cyprus (Republic of)",296], + ["Bhutan (Kingdom of)",115], + ["Belize",322], + ["Solomon Islands",838], + ["United Arab Emirates",418], + ["Mauritius (Republic of)",60], + ["Suriname (Republic of)",0], + ["Luxembourg (Grand Duchy of)",16], + ["Oman (Sultanate of)",309], + ["Cape Verde (Republic of)",28], + ["São Tomé and Príncipe (Democratic Republic of)",392], + ["Trinidad and Tobago (Republic of)",220], + ["Kiribati (Republic of)",389], + ["Micronesia (Federated States of)",321], + ["Samoa (Independent State of)",220], + ["French Polynesia",261], + ["Tonga (Kingdom of)",115], + ["Dominica (Commonwealth of)",180], + ["Palestine (State of)",76], + ["Saint Lucia",137], + ["Barbados",10], + ["Kuwait (State of)",53], + ["Brunei (Nation of the Abode of Peace)",46], + ["Qatar (State of)",23], + ["Saint Vincent and the Grenadines",70], + ["Maldives (Republic of)",90], + ["Grenada",101], + ["Guam",98], + ["Wallis and Futuna",98], + ["Malta (Republic of)",10], + ["Antigua and Barbuda",20], + ["New Caledonia",41], + ["Marshall Islands (Republic of the)",80], + ["Sint Maarten (Netherlands)",0], + ["Bahamas (Commonwealth of the)",29], + ["Northern Mariana Islands (Commonwealth of the)",21], + ["Iceland (Republic of)",0], + ["Niue",40], + ["Seychelles (Republic of)",59], + ["Palau (Republic of)",20], + ["Cook Islands",20], + ["Saint Kitts and Nevis (Federation of)",7], + ["Bahrain (Kingdom of)",37], + ["Sahrawi Arab Democratic Republic",0], + ["Isle of Man",0], + ["American Samoa",19], + ["British Virgin Islands",10], + ["Liechtenstein (Principality of)",0], + ["Faroe Islands",0], + ["Saint Pierre and Miquelon",0], + ["United States Virgin Islands",10], + ["Aruba",0], + ["Montserrat",0], + ["Singapore (Republic of)",10], + ["Tuvalu",17], + ["Bermuda",0], + ["Andorra (Principality of)",0], + ["Turks and Caicos Islands",0], + ["Cayman Islands",0], + ["San Marino (Republic of)",0], + ["Djibouti (Republic of)",0], + ["Antarctica (the territory South of 60 deg S)",0], + ["Greenland",0], + ["Svalbard and Jan Mayen Islands",0], + ["Falkland Islands (Malvinas)",0], + ["South Georgia and the South Sandwich Islands",0], + ["Heard Island and McDonald Islands",0], + ["Svalbard and Jan Mayen Islands",0], + ["Christmas Island",0], + ["Jersey (Bailiwick of)",0], + ["Anguilla",0], + ["British Indian Ocean Territory",0], + ["Bouvet Island (Bouvetoya)",0], + ["Norfolk Island",0], + ["Macao (Special Administrative Region of China)",0], + ["Nauru (Republic of)",0], + ["Cocos (Keeling) Islands",0], + ["Tokelau",0], + ["Gibraltar",0], + ["Wake Island",0], + ["Monaco (Principality of)",0], + ["Holy See (Vatican City State)",0] + ] +} diff --git a/data/global/geography/natural-resources/renwable-fresh-water.json b/data/global/geography/natural-resources/renwable-fresh-water.json new file mode 100644 index 0000000..417cd8b --- /dev/null +++ b/data/global/geography/natural-resources/renwable-fresh-water.json @@ -0,0 +1,191 @@ +{ + "metadata" : { + "name" : "Renewable Freshwater Resources", + "description" : "Renewable Freshwater Resources measured in cubic kilometers", + "units" : "km3", + "year" : "2011", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "uncategorised", + "tags" : ["global","geography","water","resources"], + "authors" : [ + "Index Mundi" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_total_renewable_water_resources" + ] + }, + "data" : [ + ["country.name","geographic.recouces.water.renewable"], + ["Brazil (Federative Republic of)",8233], + ["Russian Federation",4508], + ["United States (of America)",3069], + ["Canada",2902], + ["China (People's Republic of)",2840], + ["India (Republic of)",2161], + ["Colombia (Republic of)",2132], + ["Indonesia (Republic of)",2019], + ["Peru (Republic of)",1913], + ["Congo (Democratic Republic of the)",1283], + ["Venezuela (Bolivarian Republic of)",1233], + ["Bangladesh (People's Republic of)",1227], + ["Myanmar (Union of)",1168], + ["Nigeria (Federal Republic of)",950], + ["Chile (Republic of)",922], + ["Vietnam (Socialist Republic of)",884.1], + ["Congo (Republic of the)",832], + ["Argentina (Argentine Republic)",814], + ["Papua New Guinea (Independent State of)",801], + ["Bolivia (Plurinational State of)",580], + ["Australia (Commonwealth of)",492], + ["Philippines (Republic of the)",479], + ["Cambodia (Kingdom of)",476.1], + ["Thailand (Kingdom of)",457.2], + ["Mexico (United Mexican States)",438.6], + ["Japan",430], + ["Norway (Kingdom of)",424.4], + ["Ecuador (Republic of)",382], + ["Paraguay (Republic of)",337], + ["Madagascar (Republic of)",336], + ["New Zealand",333.5], + ["Lao (People's Democratic Republic)",327], + ["Cameroon (Republic of)",285.5], + ["Pakistan (Islamic Republic of)",246.8], + ["Guyana (Co-operative Republic of)",241], + ["Guinea (Republic of)",232], + ["Mozambique (Republic of)",226], + ["Romania",217.1], + ["Liberia (Republic of)",211.9], + ["Turkey (Republic of)",211.6], + ["France (French Republic)",211], + ["Nepal (Federal Democratic Republic of)",210.5], + ["Nicaragua (Republic of)",196.6], + ["Italy (Italian Republic)",191.3], + ["Sweden (Kingdom of)",174], + ["Iceland (Republic of)",170], + ["Gabon (Gabonese Republic)",164], + ["Serbia (Republic of)",162.2], + ["Sierra Leone (Republic of)",160], + ["Germany (Federal Republic of)",154], + ["Angola (Republic of)",148], + ["Panama (Republic of)",148], + ["United Kingdom (of Great Britain & Northern Ireland)",147], + ["Central African Republic",144.4], + ["Ukraine",139.6], + ["Ethiopia (Federal Democratic Republic of)",139], + ["Iran (Islamic Republic of)",137], + ["Uruguay (Oriental Republic of)",122], + ["Suriname (Republic of)",122], + ["Costa Rica (Republic of)",112.4], + ["Spain (Kingdom of)",111.5], + ["Guatemala (Republic of)",111.3], + ["Finland (Republic of)",110], + ["Zambia (Republic of)",107.5], + ["Turkmenistan",105.5], + ["Croatia (Republic of)",105.2], + ["Hungary (Republic of)",104], + ["Mali (Republic of)",100], + ["Tanzania (United Republic of)",96.27], + ["Honduras (Republic of)",95.93], + ["Netherlands (Kingdom of the)",91], + ["Iraq (Republic of)",89.86], + ["Côte d'Ivoire (Republic of)",81.14], + ["Austria (Republic of)",78], + ["Azerbaijan (Republic of)",77.7], + ["Korea (Democratic People's Republic of)",77.15], + ["Greece (Hellenic Republic)",74.25], + ["Portugal (Portuguese Republic)",69.7], + ["Korea (Republic of)",68.7], + ["Kazakhstan (Republic of)",66], + ["Sudan (Republic of the)",64.5], + ["Poland (Republic of)",63.33], + ["Georgia",61.6], + ["Belarus (Republic of)",58], + ["Egypt (Arab Republic of)",57.3], + ["Switzerland (Swiss Confederation)",53.5], + ["Ghana (Republic of)",53.2], + ["Sri Lanka (Democratic Socialist Republic of)",52.8], + ["Ireland",52], + ["South Africa (Republic of)",51.4], + ["Slovakia (Slovak Republic)",50.1], + ["Uzbekistan (Republic of)",48.87], + ["Solomon Islands",44.7], + ["Albania (Republic of)",43], + ["Chad (Republic of)",41.7], + ["Senegal (Republic of)",38.8], + ["Cuba (Republic of)",38.12], + ["Bosnia and Herzegovina",37.5], + ["Latvia (Republic of)",35.45], + ["Mongolia",34.8], + ["Bhutan (Kingdom of)",34.68], + ["Niger (Republic of)",33.65], + ["Slovenia (Republic of)",31.87], + ["Guinea-Bissau (Republic of)",31], + ["Morocco (Kingdom of)",30.7], + ["Kenya (Republic of)",29], + ["Fiji (Republic of)",28.55], + ["Benin (Republic of)",26.39], + ["Equatorial Guinea (Republic of)",26], + ["El Salvador (Republic of)",25.23], + ["Lithuania (Republic of)",24.9], + ["Afghanistan (Islamic Republic of)",24.77], + ["Kyrgyz Republic",23.62], + ["Tajikistan (Republic of)",21.91], + ["Bulgaria (Republic of)",21.3], + ["Dominican Republic",21], + ["Zimbabwe (Republic of)",20], + ["Belize",18.55], + ["Belgium (Kingdom of)",18.3], + ["Namibia (Republic of)",17.72], + ["Somalia (Federal Republic of)",17.28], + ["Malawi (Republic of)",16.8], + ["Syrian Arab Republic",14.7], + ["Togo (Togolese Republic)",14.7], + ["Haiti (Republic of)",14.03], + ["Czech Republic",13.15], + ["Estonia (Republic of)",12.81], + ["Burundi (Republic of)",12.54], + ["Burkina Faso",12.5], + ["Botswana (Republic of)",12.24], + ["Algeria (People's Democratic Republic of)",11.67], + ["Moldova (Republic of)",11.65], + ["Mauritania (Islamic Republic of)",11.4], + ["Rwanda (Republic of)",9.5], + ["Jamaica",9.4], + ["Brunei (Nation of the Abode of Peace)",8.5], + ["Gambia (Republic of the)",8], + ["Armenia (Republic of)",7.77], + ["North Macedonia (Republic of)",6.4], + ["Eritrea (State of)",6.3], + ["Denmark (Kingdom of)",6], + ["Tunisia (Republic of)",4.6], + ["Lebanon (Lebanese Republic)",4.51], + ["Eswatini (Kingdom of)",4.5], + ["Trinidad and Tobago (Republic of)",3.84], + ["Luxembourg (Grand Duchy of)",3.1], + ["Lesotho (Kingdom of)",3.02], + ["Mauritius (Republic of)",2.75], + ["Saudi Arabia (Kingdom of)",2.4], + ["Yemen (Republic of)",2.1], + ["Israel (State of)",1.78], + ["Oman (Sultanate of)",1.4], + ["Comoros (Union of the)",1.2], + ["Jordan (Hashemite Kingdom of)",0.94], + ["Cyprus (Republic of)",0.78], + ["Libya (State of)",0.7], + ["Singapore (Republic of)",0.6], + ["Cape Verde (Republic of)",0.3], + ["Djibouti (Republic of)",0.3], + ["United Arab Emirates",0.15], + ["Bahrain (Kingdom of)",0.12], + ["Barbados",0.08], + ["Qatar (State of)",0.06], + ["Antigua and Barbuda",0.05], + ["Malta (Republic of)",0.05], + ["Maldives (Republic of)",0.03], + ["Bahamas (Commonwealth of the)",0.02], + ["Kuwait (State of)",0.02], + ["Saint Kitts and Nevis (Federation of)",0.02] + ] +} diff --git a/data/global/health/body-mass-index/bmi-female.json b/data/global/health/body-mass-index/bmi-female.json new file mode 100644 index 0000000..582f572 --- /dev/null +++ b/data/global/health/body-mass-index/bmi-female.json @@ -0,0 +1,218 @@ +{ + "metadata" : { + "name" : "Average Female Body Mass Index (BMI)", + "description" : "National average female Body Mass Index (BMI) measured by a woman's weight devided by her height in metres squared.", + "units" : "BMI", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","fitness","female","gender"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_body_mass_index" + ] + }, + "data" : [ + ["country.name","bmi.female"], + ["Nauru (Republic of)",32.8], + ["Tonga (Kingdom of)",33.5], + ["Samoa (Independent State of)",33.5], + ["Kuwait (State of)",30.8], + ["Saint Kitts and Nevis (Federation of)",30.9], + ["Saint Lucia",30.2], + ["Kiribati (Republic of)",30.5], + ["Palau (Republic of)",29.5], + ["Micronesia (Federated States of)",31], + ["Tuvalu",29.9], + ["Qatar (State of)",30.1], + ["Marshall Islands (Republic of the)",30], + ["Egypt (Arab Republic of)",30.7], + ["United Arab Emirates",29.7], + ["Jordan (Hashemite Kingdom of)",29.7], + ["Belize",30.2], + ["Bahamas (Commonwealth of the)",29.6], + ["Trinidad and Tobago (Republic of)",29.4], + ["Barbados",30], + ["United States (of America)",28.8], + ["Saudi Arabia (Kingdom of)",28.7], + ["Libya (State of)",29.6], + ["Bahrain (Kingdom of)",28.6], + ["Mexico (United Mexican States)",28.7], + ["Antigua and Barbuda",29.5], + ["Syrian Arab Republic",29], + ["Iraq (Republic of)",28.8], + ["New Zealand",27.8], + ["Lebanon (Lebanese Republic)",27.6], + ["Chile (Republic of)",28], + ["Turkey (Republic of)",28.5], + ["Argentina (Argentine Republic)",27.5], + ["Ireland",27.1], + ["Andorra (Principality of)",27.1], + ["Kazakhstan (Republic of)",27.5], + ["El Salvador (Republic of)",28], + ["Azerbaijan (Republic of)",28.1], + ["Suriname (Republic of)",28.2], + ["Jamaica",29.2], + ["United Kingdom (of Great Britain & Northern Ireland)",27.1], + ["Greece (Hellenic Republic)",27.2], + ["Saint Vincent and the Grenadines",28.1], + ["South Africa (Republic of)",29.1], + ["Australia (Commonwealth of)",26.8], + ["Canada",26.8], + ["Malta (Republic of)",26.8], + ["Venezuela (Bolivarian Republic of)",27.1], + ["Georgia",27.3], + ["Fiji (Republic of)",28.4], + ["Panama (Republic of)",27.7], + ["Cyprus (Republic of)",26.3], + ["Ecuador (Republic of)",27.7], + ["Grenada",28.7], + ["Dominica (Commonwealth of)",29], + ["Czech Republic",26], + ["Slovenia (Republic of)",26.3], + ["Oman (Sultanate of)",27.1], + ["Costa Rica (Republic of)",27.1], + ["Nicaragua (Republic of)",27.8], + ["Uruguay (Oriental Republic of)",26.9], + ["Tunisia (Republic of)",27.5], + ["Seychelles (Republic of)",28], + ["Spain (Kingdom of)",26], + ["Moldova (Republic of)",27.1], + ["Dominican Republic",27.4], + ["Armenia (Republic of)",27.4], + ["Lithuania (Republic of)",26], + ["Belarus (Republic of)",26.2], + ["Eswatini (Kingdom of)",28.9], + ["Luxembourg (Grand Duchy of)",25.5], + ["Slovakia (Slovak Republic)",25.7], + ["Russian Federation",26.8], + ["Guatemala (Republic of)",27.1], + ["Poland (Republic of)",25.7], + ["Turkmenistan",26.4], + ["Honduras (Republic of)",27.3], + ["Guyana (Co-operative Republic of)",27.6], + ["Hungary (Republic of)",25.2], + ["Germany (Federal Republic of)",25.6], + ["Israel (State of)",26.2], + ["Peru (Republic of)",26.9], + ["Iran (Islamic Republic of)",27.2], + ["Portugal (Portuguese Republic)",25.7], + ["Brunei (Nation of the Abode of Peace)",26.6], + ["Cuba (Republic of)",26.7], + ["Kyrgyz Republic",26.8], + ["Vanuatu (Republic of)",26.8], + ["Algeria (People's Democratic Republic of)",27], + ["Albania (Republic of)",25.6], + ["Bosnia and Herzegovina",25.7], + ["Uzbekistan (Republic of)",26.3], + ["Mongolia",26.4], + ["Norway (Kingdom of)",25.2], + ["Italy (Italian Republic)",25.2], + ["Bulgaria (Republic of)",25.3], + ["Montenegro",25.5], + ["Ukraine",25.8], + ["Bolivia (Plurinational State of)",27.3], + ["Colombia (Republic of)",26.5], + ["Brazil (Federative Republic of)",26], + ["Iceland (Republic of)",25.1], + ["Finland (Republic of)",25.3], + ["Yemen (Republic of)",26.5], + ["Paraguay (Republic of)",26], + ["Latvia (Republic of)",25.1], + ["Sweden (Kingdom of)",24.9], + ["Serbia (Republic of)",25.2], + ["North Macedonia (Republic of)",25.3], + ["Mauritius (Republic of)",26.2], + ["Equatorial Guinea (Republic of)",26.1], + ["Morocco (Kingdom of)",25.9], + ["Gabon (Gabonese Republic)",26.4], + ["Solomon Islands",26.4], + ["Belgium (Kingdom of)",24.7], + ["Estonia (Republic of)",24.3], + ["Croatia (Republic of)",24.6], + ["Tajikistan (Republic of)",25.3], + ["Netherlands (Kingdom of the)",25], + ["Austria (Republic of)",24.4], + ["Papua New Guinea (Independent State of)",25.6], + ["Malaysia",25.6], + ["Romania",24.9], + ["Denmark (Kingdom of)",24.5], + ["France (French Republic)",24.6], + ["Switzerland (Swiss Confederation)",23.8], + ["South Sudan (Republic of)",26.7], + ["Sudan (Republic of the)",26.7], + ["Maldives (Republic of)",25.9], + ["Lesotho (Kingdom of)",27.1], + ["Mauritania (Islamic Republic of)",26.4], + ["São Tomé and Príncipe (Democratic Republic of)",25.6], + ["Botswana (Republic of)",26.6], + ["Cape Verde (Republic of)",25.4], + ["Cameroon (Republic of)",25.1], + ["Namibia (Republic of)",25.6], + ["Ghana (Republic of)",25.1], + ["Comoros (Union of the)",25.1], + ["Thailand (Kingdom of)",24.6], + ["Angola (Republic of)",24.6], + ["Haiti (Republic of)",24], + ["Gambia (Republic of the)",25.1], + ["Liberia (Republic of)",24.9], + ["China (People's Republic of)",23.6], + ["Korea (Republic of)",23.4], + ["Pakistan (Islamic Republic of)",24.4], + ["Bhutan (Kingdom of)",24.2], + ["Singapore (Republic of)",23.2], + ["Côte d'Ivoire (Republic of)",24.1], + ["Zimbabwe (Republic of)",25], + ["Benin (Republic of)",24.3], + ["Nigeria (Federal Republic of)",24], + ["Congo (Republic of the)",24.1], + ["Djibouti (Republic of)",23.9], + ["Togo (Togolese Republic)",24], + ["Philippines (Republic of the)",23.4], + ["Guinea-Bissau (Republic of)",23.9], + ["Tanzania (United Republic of)",24], + ["Senegal (Republic of)",24.1], + ["Kenya (Republic of)",24], + ["Sri Lanka (Democratic Socialist Republic of)",23.5], + ["Indonesia (Republic of)",23.4], + ["Sierra Leone (Republic of)",23.6], + ["Malawi (Republic of)",23.3], + ["Mali (Republic of)",23], + ["Guinea (Republic of)",23.3], + ["Zambia (Republic of)",23.8], + ["Myanmar (Union of)",23.2], + ["Lao (People's Democratic Republic)",22.7], + ["Japan",21.7], + ["Central African Republic",23.2], + ["Mozambique (Republic of)",23], + ["Chad (Republic of)",22.5], + ["Congo (Democratic Republic of the)",22.5], + ["Nepal (Federal Democratic Republic of)",22], + ["Burkina Faso",22], + ["Uganda (Republic of)",23], + ["Rwanda (Republic of)",22.7], + ["Somalia (Federal Republic of)",22.5], + ["India (Republic of)",22.1], + ["Cambodia (Kingdom of)",22], + ["Korea (Democratic People's Republic of)",21.8], + ["Niger (Republic of)",22.2], + ["Vietnam (Socialist Republic of)",21.6], + ["Afghanistan (Islamic Republic of)",21.8], + ["Timor-Leste (Democratic Republic of)",21], + ["Madagascar (Republic of)",21.2], + ["Bangladesh (People's Republic of)",21.2], + ["Burundi (Republic of)",21.3], + ["Ethiopia (Federal Democratic Republic of)",21], + ["Eritrea (State of)",21], + ["Kosovo (Republic of)",null], + ["Liechtenstein (Principality of)",null], + ["Monaco (Principality of)",null], + ["San Marino (Republic of)",null], + ["Taiwan",null], + ["Holy See (Vatican City State)",null] + ] +} diff --git a/data/global/health/body-mass-index/bmi-male.json b/data/global/health/body-mass-index/bmi-male.json new file mode 100644 index 0000000..70789f1 --- /dev/null +++ b/data/global/health/body-mass-index/bmi-male.json @@ -0,0 +1,218 @@ +{ + "metadata" : { + "name" : "Average Male Body Mass Index (BMI)", + "description" : "National average male Body Mass Index (BMI) measured by a mans's weight devided by his height in metres squared.", + "units" : "BMI", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","fitness","male","gender"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_body_mass_index" + ] + }, + "data" : [ + ["country.name","bmi.male"], + ["Nauru (Republic of)",32.1], + ["Tonga (Kingdom of)",30.4], + ["Samoa (Independent State of)",29.9], + ["Kuwait (State of)",29.5], + ["Saint Kitts and Nevis (Federation of)",28.4], + ["Saint Lucia",28.9], + ["Kiribati (Republic of)",28.7], + ["Palau (Republic of)",29.4], + ["Micronesia (Federated States of)",27.8], + ["Tuvalu",28.7], + ["Qatar (State of)",29], + ["Marshall Islands (Republic of the)",28.4], + ["Egypt (Arab Republic of)",27.6], + ["United Arab Emirates",28.6], + ["Jordan (Hashemite Kingdom of)",28.2], + ["Belize",27.6], + ["Bahamas (Commonwealth of the)",28], + ["Trinidad and Tobago (Republic of)",27.9], + ["Barbados",27.4], + ["United States (of America)",28.8], + ["Saudi Arabia (Kingdom of)",28.3], + ["Libya (State of)",27.2], + ["Bahrain (Kingdom of)",28], + ["Mexico (United Mexican States)",27.5], + ["Antigua and Barbuda",27.3], + ["Syrian Arab Republic",27.2], + ["Iraq (Republic of)",27.2], + ["New Zealand",28], + ["Lebanon (Lebanese Republic)",28], + ["Chile (Republic of)",27.6], + ["Turkey (Republic of)",27.1], + ["Argentina (Argentine Republic)",27.8], + ["Ireland",27.9], + ["Andorra (Principality of)",27.8], + ["Kazakhstan (Republic of)",27.4], + ["El Salvador (Republic of)",26.8], + ["Azerbaijan (Republic of)",26.6], + ["Suriname (Republic of)",26.5], + ["Jamaica",25.5], + ["United Kingdom (of Great Britain & Northern Ireland)",27.5], + ["Greece (Hellenic Republic)",27.4], + ["Saint Vincent and the Grenadines",26.5], + ["South Africa (Republic of)",25.4], + ["Australia (Commonwealth of)",27.6], + ["Canada",27.6], + ["Malta (Republic of)",27.5], + ["Venezuela (Bolivarian Republic of)",27.4], + ["Georgia",27.2], + ["Fiji (Republic of)",26.1], + ["Panama (Republic of)",26.4], + ["Cyprus (Republic of)",27.6], + ["Ecuador (Republic of)",26.4], + ["Grenada",25.2], + ["Dominica (Commonwealth of)",25.1], + ["Czech Republic",27.8], + ["Slovenia (Republic of)",27.5], + ["Oman (Sultanate of)",26.8], + ["Costa Rica (Republic of)",26.7], + ["Nicaragua (Republic of)",26], + ["Uruguay (Oriental Republic of)",26.7], + ["Tunisia (Republic of)",26], + ["Seychelles (Republic of)",25.6], + ["Spain (Kingdom of)",27.4], + ["Moldova (Republic of)",26.3], + ["Dominican Republic",26], + ["Armenia (Republic of)",25.9], + ["Lithuania (Republic of)",27.3], + ["Belarus (Republic of)",27.1], + ["Eswatini (Kingdom of)",24.1], + ["Luxembourg (Grand Duchy of)",27.6], + ["Slovakia (Slovak Republic)",27.4], + ["Russian Federation",26.1], + ["Guatemala (Republic of)",25.8], + ["Poland (Republic of)",27], + ["Turkmenistan",26.4], + ["Honduras (Republic of)",25.5], + ["Guyana (Co-operative Republic of)",25], + ["Hungary (Republic of)",27.5], + ["Germany (Federal Republic of)",27], + ["Israel (State of)",26.3], + ["Peru (Republic of)",25.7], + ["Iran (Islamic Republic of)",25.3], + ["Portugal (Portuguese Republic)",26.7], + ["Brunei (Nation of the Abode of Peace)",25.8], + ["Cuba (Republic of)",25.6], + ["Kyrgyz Republic",25.6], + ["Vanuatu (Republic of)",25.6], + ["Algeria (People's Democratic Republic of)",25.5], + ["Albania (Republic of)",26.6], + ["Bosnia and Herzegovina",26.5], + ["Uzbekistan (Republic of)",25.9], + ["Mongolia",25.5], + ["Norway (Kingdom of)",26.9], + ["Italy (Italian Republic)",26.8], + ["Bulgaria (Republic of)",26.7], + ["Montenegro",26.5], + ["Ukraine",26.4], + ["Bolivia (Plurinational State of)",24.6], + ["Colombia (Republic of)",25.4], + ["Brazil (Federative Republic of)",25.9], + ["Iceland (Republic of)",26.7], + ["Finland (Republic of)",26.5], + ["Yemen (Republic of)",25.2], + ["Paraguay (Republic of)",25.6], + ["Latvia (Republic of)",26.8], + ["Sweden (Kingdom of)",26.7], + ["Serbia (Republic of)",26.4], + ["North Macedonia (Republic of)",26.4], + ["Mauritius (Republic of)",25], + ["Equatorial Guinea (Republic of)",25], + ["Morocco (Kingdom of)",25.2], + ["Gabon (Gabonese Republic)",24.6], + ["Solomon Islands",24.5], + ["Belgium (Kingdom of)",26.2], + ["Estonia (Republic of)",27], + ["Croatia (Republic of)",26.5], + ["Tajikistan (Republic of)",25.5], + ["Netherlands (Kingdom of the)",25.9], + ["Austria (Republic of)",26.5], + ["Papua New Guinea (Independent State of)",25], + ["Malaysia",25], + ["Romania",25.7], + ["Denmark (Kingdom of)",26], + ["France (French Republic)",26.1], + ["Switzerland (Swiss Confederation)",26.7], + ["South Sudan (Republic of)",23.7], + ["Sudan (Republic of the)",23.7], + ["Maldives (Republic of)",24.2], + ["Lesotho (Kingdom of)",22.7], + ["Mauritania (Islamic Republic of)",23.2], + ["São Tomé and Príncipe (Democratic Republic of)",23.9], + ["Botswana (Republic of)",22.9], + ["Cape Verde (Republic of)",23.9], + ["Cameroon (Republic of)",23.8], + ["Namibia (Republic of)",22.9], + ["Ghana (Republic of)",23.4], + ["Comoros (Union of the)",23], + ["Thailand (Kingdom of)",23.6], + ["Angola (Republic of)",23.5], + ["Haiti (Republic of)",24.2], + ["Gambia (Republic of the)",23], + ["Liberia (Republic of)",23.2], + ["China (People's Republic of)",24.2], + ["Korea (Republic of)",24.3], + ["Pakistan (Islamic Republic of)",23.3], + ["Bhutan (Kingdom of)",23.4], + ["Singapore (Republic of)",24.3], + ["Côte d'Ivoire (Republic of)",23.2], + ["Zimbabwe (Republic of)",21.8], + ["Benin (Republic of)",22.6], + ["Nigeria (Federal Republic of)",22.8], + ["Congo (Republic of the)",22.5], + ["Djibouti (Republic of)",22.7], + ["Togo (Togolese Republic)",22.4], + ["Philippines (Republic of the)",22.9], + ["Guinea-Bissau (Republic of)",22.2], + ["Tanzania (United Republic of)",22.2], + ["Senegal (Republic of)",21.8], + ["Kenya (Republic of)",21.9], + ["Sri Lanka (Democratic Socialist Republic of)",22.5], + ["Indonesia (Republic of)",22.4], + ["Sierra Leone (Republic of)",22], + ["Malawi (Republic of)",22.3], + ["Mali (Republic of)",22.6], + ["Guinea (Republic of)",22.1], + ["Zambia (Republic of)",21.5], + ["Myanmar (Union of)",22.1], + ["Lao (People's Democratic Republic)",22.4], + ["Japan",23.6], + ["Central African Republic",21.6], + ["Mozambique (Republic of)",21.6], + ["Chad (Republic of)",22.1], + ["Congo (Democratic Republic of the)",21.8], + ["Nepal (Federal Democratic Republic of)",22.4], + ["Burkina Faso",22.1], + ["Uganda (Republic of)",21], + ["Rwanda (Republic of)",21.3], + ["Somalia (Federal Republic of)",21.2], + ["India (Republic of)",21.8], + ["Cambodia (Kingdom of)",21.9], + ["Korea (Democratic People's Republic of)",21.9], + ["Niger (Republic of)",21.3], + ["Vietnam (Socialist Republic of)",21.5], + ["Afghanistan (Islamic Republic of)",21.5], + ["Timor-Leste (Democratic Republic of)",21.5], + ["Madagascar (Republic of)",20.9], + ["Bangladesh (People's Republic of)",20.7], + ["Burundi (Republic of)",20.4], + ["Ethiopia (Federal Democratic Republic of)",20.2], + ["Eritrea (State of)",20.1], + ["Kosovo (Republic of)",null], + ["Liechtenstein (Principality of)",null], + ["Monaco (Principality of)",null], + ["San Marino (Republic of)",null], + ["Taiwan",null], + ["Holy See (Vatican City State)",null] + ] +} diff --git a/data/global/health/body-mass-index/bmi.json b/data/global/health/body-mass-index/bmi.json new file mode 100644 index 0000000..ddd6167 --- /dev/null +++ b/data/global/health/body-mass-index/bmi.json @@ -0,0 +1,218 @@ +{ + "metadata" : { + "name" : "Average Body Mass Index (BMI)", + "description" : "National average Body Mass Index (BMI) measured by a person's weight devided by their height in metres squared.", + "units" : "BMI", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","fitness"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_by_body_mass_index" + ] + }, + "data" : [ + ["country.name","bmi"], + ["Nauru (Republic of)",32.5], + ["Tonga (Kingdom of)",31.9], + ["Samoa (Independent State of)",31.7], + ["Kuwait (State of)",30], + ["Saint Kitts and Nevis (Federation of)",29.7], + ["Saint Lucia",29.6], + ["Kiribati (Republic of)",29.6], + ["Palau (Republic of)",29.4], + ["Micronesia (Federated States of)",29.4], + ["Tuvalu",29.3], + ["Qatar (State of)",29.2], + ["Marshall Islands (Republic of the)",29.2], + ["Egypt (Arab Republic of)",29.2], + ["United Arab Emirates",29], + ["Jordan (Hashemite Kingdom of)",28.9], + ["Belize",28.9], + ["Bahamas (Commonwealth of the)",28.8], + ["Trinidad and Tobago (Republic of)",28.7], + ["Barbados",28.7], + ["United States (of America)",28.8], + ["Saudi Arabia (Kingdom of)",28.5], + ["Libya (State of)",28.4], + ["Bahrain (Kingdom of)",28.2], + ["Mexico (United Mexican States)",28.1], + ["Antigua and Barbuda",28.4], + ["Syrian Arab Republic",28.1], + ["Iraq (Republic of)",28], + ["New Zealand",27.9], + ["Lebanon (Lebanese Republic)",27.8], + ["Chile (Republic of)",27.8], + ["Turkey (Republic of)",27.8], + ["Argentina (Argentine Republic)",27.7], + ["Ireland",27.5], + ["Andorra (Principality of)",27.5], + ["Kazakhstan (Republic of)",27.4], + ["El Salvador (Republic of)",27.4], + ["Azerbaijan (Republic of)",27.4], + ["Suriname (Republic of)",27.4], + ["Jamaica",27.4], + ["United Kingdom (of Great Britain & Northern Ireland)",27.3], + ["Greece (Hellenic Republic)",27.3], + ["Saint Vincent and the Grenadines",27.3], + ["South Africa (Republic of)",27.3], + ["Australia (Commonwealth of)",27.2], + ["Canada",27.2], + ["Malta (Republic of)",27.2], + ["Venezuela (Bolivarian Republic of)",27.2], + ["Georgia",27.2], + ["Fiji (Republic of)",27.2], + ["Panama (Republic of)",27.1], + ["Cyprus (Republic of)",27], + ["Ecuador (Republic of)",27], + ["Grenada",27], + ["Dominica (Commonwealth of)",27], + ["Czech Republic",26.9], + ["Slovenia (Republic of)",26.9], + ["Oman (Sultanate of)",26.9], + ["Costa Rica (Republic of)",26.9], + ["Nicaragua (Republic of)",26.9], + ["Uruguay (Oriental Republic of)",26.8], + ["Tunisia (Republic of)",26.8], + ["Seychelles (Republic of)",26.8], + ["Spain (Kingdom of)",26.7], + ["Moldova (Republic of)",26.7], + ["Dominican Republic",26.7], + ["Armenia (Republic of)",26.7], + ["Lithuania (Republic of)",26.6], + ["Belarus (Republic of)",26.6], + ["Eswatini (Kingdom of)",26.5], + ["Luxembourg (Grand Duchy of)",26.5], + ["Slovakia (Slovak Republic)",26.5], + ["Russian Federation",26.5], + ["Guatemala (Republic of)",26.5], + ["Poland (Republic of)",26.4], + ["Turkmenistan",26.4], + ["Honduras (Republic of)",26.4], + ["Guyana (Co-operative Republic of)",26.3], + ["Hungary (Republic of)",26.3], + ["Germany (Federal Republic of)",26.3], + ["Israel (State of)",26.3], + ["Peru (Republic of)",26.3], + ["Iran (Islamic Republic of)",26.2], + ["Portugal (Portuguese Republic)",26.2], + ["Brunei (Nation of the Abode of Peace)",26.2], + ["Cuba (Republic of)",26.2], + ["Kyrgyz Republic",26.2], + ["Vanuatu (Republic of)",26.2], + ["Algeria (People's Democratic Republic of)",26.2], + ["Albania (Republic of)",26.1], + ["Bosnia and Herzegovina",26.1], + ["Uzbekistan (Republic of)",26.1], + ["Mongolia",26], + ["Norway (Kingdom of)",26], + ["Italy (Italian Republic)",26], + ["Bulgaria (Republic of)",26], + ["Montenegro",26], + ["Ukraine",26], + ["Bolivia (Plurinational State of)",25.9], + ["Colombia (Republic of)",25.9], + ["Brazil (Federative Republic of)",25.9], + ["Iceland (Republic of)",25.9], + ["Finland (Republic of)",25.9], + ["Yemen (Republic of)",25.8], + ["Paraguay (Republic of)",25.8], + ["Latvia (Republic of)",25.8], + ["Sweden (Kingdom of)",25.8], + ["Serbia (Republic of)",25.8], + ["North Macedonia (Republic of)",25.8], + ["Mauritius (Republic of)",25.6], + ["Equatorial Guinea (Republic of)",25.6], + ["Morocco (Kingdom of)",25.6], + ["Gabon (Gabonese Republic)",25.5], + ["Solomon Islands",25.5], + ["Belgium (Kingdom of)",25.5], + ["Estonia (Republic of)",25.5], + ["Croatia (Republic of)",25.5], + ["Tajikistan (Republic of)",25.4], + ["Netherlands (Kingdom of the)",25.4], + ["Austria (Republic of)",25.4], + ["Papua New Guinea (Independent State of)",25.3], + ["Malaysia",25.3], + ["Romania",25.3], + ["Denmark (Kingdom of)",25.3], + ["France (French Republic)",25.3], + ["Switzerland (Swiss Confederation)",25.3], + ["South Sudan (Republic of)",25.2], + ["Sudan (Republic of the)",25.2], + ["Maldives (Republic of)",25.1], + ["Lesotho (Kingdom of)",24.9], + ["Mauritania (Islamic Republic of)",24.8], + ["São Tomé and Príncipe (Democratic Republic of)",24.8], + ["Botswana (Republic of)",24.7], + ["Cape Verde (Republic of)",24.7], + ["Cameroon (Republic of)",24.4], + ["Namibia (Republic of)",24.3], + ["Ghana (Republic of)",24.2], + ["Comoros (Union of the)",24.1], + ["Thailand (Kingdom of)",24.1], + ["Angola (Republic of)",24.1], + ["Haiti (Republic of)",24.1], + ["Gambia (Republic of the)",24], + ["Liberia (Republic of)",24], + ["China (People's Republic of)",23.9], + ["Korea (Republic of)",23.9], + ["Pakistan (Islamic Republic of)",23.8], + ["Bhutan (Kingdom of)",23.8], + ["Singapore (Republic of)",23.7], + ["Côte d'Ivoire (Republic of)",23.6], + ["Zimbabwe (Republic of)",23.4], + ["Benin (Republic of)",23.4], + ["Nigeria (Federal Republic of)",23.4], + ["Congo (Republic of the)",23.3], + ["Djibouti (Republic of)",23.3], + ["Togo (Togolese Republic)",23.2], + ["Philippines (Republic of the)",23.2], + ["Guinea-Bissau (Republic of)",23.1], + ["Tanzania (United Republic of)",23.1], + ["Senegal (Republic of)",23], + ["Kenya (Republic of)",23], + ["Sri Lanka (Democratic Socialist Republic of)",23], + ["Indonesia (Republic of)",22.9], + ["Sierra Leone (Republic of)",22.8], + ["Malawi (Republic of)",22.8], + ["Mali (Republic of)",22.8], + ["Guinea (Republic of)",22.7], + ["Zambia (Republic of)",22.6], + ["Myanmar (Union of)",22.6], + ["Lao (People's Democratic Republic)",22.6], + ["Japan",22.6], + ["Central African Republic",22.4], + ["Mozambique (Republic of)",22.3], + ["Chad (Republic of)",22.3], + ["Congo (Democratic Republic of the)",22.2], + ["Nepal (Federal Democratic Republic of)",22.2], + ["Burkina Faso",22.1], + ["Uganda (Republic of)",22], + ["Rwanda (Republic of)",22], + ["Somalia (Federal Republic of)",21.9], + ["India (Republic of)",21.9], + ["Cambodia (Kingdom of)",21.9], + ["Korea (Democratic People's Republic of)",21.8], + ["Niger (Republic of)",21.7], + ["Vietnam (Socialist Republic of)",21.6], + ["Afghanistan (Islamic Republic of)",21.6], + ["Timor-Leste (Democratic Republic of)",21.2], + ["Madagascar (Republic of)",21.1], + ["Bangladesh (People's Republic of)",21], + ["Burundi (Republic of)",20.9], + ["Ethiopia (Federal Democratic Republic of)",20.6], + ["Eritrea (State of)",20.5], + ["Kosovo (Republic of)",null], + ["Liechtenstein (Principality of)",null], + ["Monaco (Principality of)",null], + ["San Marino (Republic of)",null], + ["Taiwan",null], + ["Holy See (Vatican City State)",null] + ] +} diff --git a/data/global/health/dependency-ratio/dependancy-ratio-children.json b/data/global/health/dependency-ratio/dependancy-ratio-children.json new file mode 100644 index 0000000..5d0df7f --- /dev/null +++ b/data/global/health/dependency-ratio/dependancy-ratio-children.json @@ -0,0 +1,218 @@ +{ + "metadata" : { + "name" : "Child (0-14) Dependancy Ratio", + "description" : "The proportion of children aged 0-14 measured against adults aged 15-64.", + "units" : "children:100 carers", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","economics","dependancy","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_dependency_ratio" + ] + }, + "data" : [ + ["country.name","dependancy.ratio.children"], + ["Afghanistan (Islamic Republic of)",75.3], + ["Albania (Republic of)",25.3], + ["Algeria (People's Democratic Republic of)",49.3], + ["Angola (Republic of)",90.2], + ["Antigua and Barbuda",31.8], + ["Argentina (Argentine Republic)",38.1], + ["Armenia (Republic of)",30.9], + ["Aruba",25.6], + ["Australia (Commonwealth of)",29.9], + ["Austria (Republic of)",21.7], + ["Azerbaijan (Republic of)",33.7], + ["Bahamas (Commonwealth of the)",30.6], + ["Bahrain (Kingdom of)",23.1], + ["Bangladesh (People's Republic of)",39.3], + ["Barbados",25.2], + ["Belarus (Republic of)",25.7], + ["Belgium (Kingdom of)",26.7], + ["Belize",44.4], + ["Benin (Republic of)",76.6], + ["Bhutan (Kingdom of)",36.1], + ["Bolivia (Plurinational State of)",48.5], + ["Bosnia and Herzegovina",21.5], + ["Botswana (Republic of)",53.8], + ["Brazil (Federative Republic of)",29.7], + ["Brunei (Nation of the Abode of Peace)",31], + ["Bulgaria (Republic of)",23], + ["Burkina Faso",83.4], + ["Burundi (Republic of)",86.4], + ["Cape Verde (Republic of)",41.8], + ["Cambodia (Kingdom of)",48.2], + ["Cameroon (Republic of)",76.2], + ["Canada",23.9], + ["Central African Republic",81.1], + ["Chad (Republic of)",91.1], + ["Chile (Republic of)",28.1], + ["China (People's Republic of)",25.2], + ["Colombia (Republic of)",32.3], + ["Comoros (Union of the)",67.4], + ["Congo (Democratic Republic of the)",89.5], + ["Congo (Republic of the)",73.7], + ["Costa Rica (Republic of)",30.2], + ["Croatia (Republic of)",22.6], + ["Cuba (Republic of)",23.3], + ["Curaçao",28.3], + ["Cyprus (Republic of)",24], + ["Czech Republic",24.6], + ["Denmark (Kingdom of)",25.6], + ["Djibouti (Republic of)",43.6], + ["Dominican Republic",42.2], + ["Ecuador (Republic of)",42.1], + ["Egypt (Arab Republic of)",55.8], + ["El Salvador (Republic of)",41.1], + ["Equatorial Guinea (Republic of)",60.5], + ["Eritrea (State of)",75.6], + ["Estonia (Republic of)",26.1], + ["Eswatini (Kingdom of)",64], + ["Ethiopia (Federal Democratic Republic of)",70.6], + ["Fiji (Republic of)",44.5], + ["Finland (Republic of)",25.8], + ["France (French Republic)",28.7], + ["French Polynesia",32.3], + ["Gabon (Gabonese Republic)",62.9], + ["Gambia (Republic of the)",82.1], + ["Georgia",31.3], + ["Germany (Federal Republic of)",21.7], + ["Ghana (Republic of)",62.2], + ["Greece (Hellenic Republic)",21.3], + ["Grenada",35.8], + ["Guam",36.4], + ["Guatemala (Republic of)",54.1], + ["Guernsey (Bailiwick of)",22.3], + ["Guinea (Republic of)",79.7], + ["Guinea-Bissau (Republic of)",76], + ["Guyana (Co-operative Republic of)",42.5], + ["Haiti (Republic of)",52.1], + ["Honduras (Republic of)",47.5], + ["Hong Kong (Special Administrative Region of China)",18.3], + ["Hungary (Republic of)",22], + ["Iceland (Republic of)",29.9], + ["India (Republic of)",38.9], + ["Indonesia (Republic of)",38.3], + ["Iran (Islamic Republic of)",36], + ["Iraq (Republic of)",64.1], + ["Ireland",32.3], + ["Israel (State of)",46.6], + ["Italy (Italian Republic)",20.4], + ["Côte d'Ivoire (Republic of)",74.6], + ["Jamaica",34.6], + ["Japan",21], + ["Jordan (Hashemite Kingdom of)",52], + ["Kazakhstan (Republic of)",46.3], + ["Kenya (Republic of)",65.5], + ["Kiribati (Republic of)",60], + ["Korea (Democratic People's Republic of)",28], + ["Korea (Republic of)",17.5], + ["Kuwait (State of)",28.4], + ["Kyrgyz Republic",52.1], + ["Lao (People's Democratic Republic)",50.1], + ["Latvia (Republic of)",26.1], + ["Lebanon (Lebanese Republic)",37.2], + ["Lesotho (Kingdom of)",51.3], + ["Liberia (Republic of)",71.7], + ["Libya (State of)",41], + ["Lithuania (Republic of)",24.2], + ["Luxembourg (Grand Duchy of)",22.2], + ["Macao (Special Administrative Region of China)",19.5], + ["Madagascar (Republic of)",70.5], + ["Malawi (Republic of)",79.1], + ["Malaysia",33.8], + ["Maldives (Republic of)",25.5], + ["Mali (Republic of)",93.1], + ["Malta (Republic of)",22.4], + ["Mauritania (Islamic Republic of)",69.5], + ["Mauritius (Republic of)",23.7], + ["Mexico (United Mexican States)",38.8], + ["Micronesia (Federated States of)",48.4], + ["Moldova (Republic of)",22.2], + ["Mongolia",48.1], + ["Montenegro",27.3], + ["Morocco (Kingdom of)",40.8], + ["Mozambique (Republic of)",83], + ["Myanmar (Union of)",37.3], + ["Namibia (Republic of)",61.8], + ["Nepal (Federal Democratic Republic of)",44.1], + ["Netherlands (Kingdom of the)",24.4], + ["New Caledonia",32.4], + ["New Zealand",30.3], + ["Nicaragua (Republic of)",45.5], + ["Niger (Republic of)",104.1], + ["Nigeria (Federal Republic of)",80.9], + ["North Macedonia (Republic of)",23.6], + ["Norway (Kingdom of)",26.5], + ["Oman (Sultanate of)",30], + ["Pakistan (Islamic Republic of)",57.2], + ["Palestine (State of)",65.7], + ["Panama (Republic of)",40.8], + ["Papua New Guinea (Independent State of)",57.4], + ["Paraguay (Republic of)",49.9], + ["Peru (Republic of)",37.1], + ["Philippines (Republic of the)",46.6], + ["Poland (Republic of)",23], + ["Portugal (Portuguese Republic)",20.3], + ["Puerto Rico (Commonwealth of)",24.8], + ["Qatar (State of)",16.1], + ["Romania",23.8], + ["Russian Federation",27.8], + ["Rwanda (Republic of)",68.8], + ["Saint Lucia",25], + ["Saint Vincent and the Grenadines",32.1], + ["Samoa (Independent State of)",64.5], + ["São Tomé and Príncipe (Democratic Republic of)",75.6], + ["Saudi Arabia (Kingdom of)",34.4], + ["Senegal (Republic of)",78.4], + ["Serbia (Republic of)",23.4], + ["Seychelles (Republic of)",34.9], + ["Sierra Leone (Republic of)",71.1], + ["Singapore (Republic of)",16.5], + ["Slovakia (Slovak Republic)",23], + ["Slovenia (Republic of)",23.6], + ["Solomon Islands",71.1], + ["Somalia (Federal Republic of)",90.6], + ["South Africa (Republic of)",43.8], + ["South Sudan (Republic of)",74.7], + ["Spain (Kingdom of)",21.9], + ["Sri Lanka (Democratic Socialist Republic of)",36.4], + ["Sudan (Republic of the)",70.4], + ["Suriname (Republic of)",40.3], + ["Sweden (Kingdom of)",28.4], + ["Switzerland (Swiss Confederation)",22.7], + ["Syrian Arab Republic",47.8], + ["Taiwan",17.8], + ["Tajikistan (Republic of)",62.6], + ["Tanzania (United Republic of)",81], + ["Thailand (Kingdom of)",23.5], + ["Timor-Leste (Democratic Republic of)",78.7], + ["Togo (Togolese Republic)",72], + ["Tonga (Kingdom of)",58.6], + ["Trinidad and Tobago (Republic of)",29.3], + ["Tunisia (Republic of)",36.3], + ["Turkey (Republic of)",35.7], + ["Turkmenistan",47.8], + ["Uganda (Republic of)",88.5], + ["Ukraine",23.8], + ["United Arab Emirates",17.7], + ["United Kingdom (of Great Britain & Northern Ireland)",27.8], + ["United States (of America)",28.3], + ["Uruguay (Oriental Republic of)",31.5], + ["Uzbekistan (Republic of)",43.4], + ["Vanuatu (Republic of)",66.2], + ["Venezuela (Bolivarian Republic of)",42.1], + ["Vietnam (Socialist Republic of)",33.6], + ["United States Virgin Islands",32], + ["Sahrawi Arab Democratic Republic",39.2], + ["Yemen (Republic of)",66.7], + ["Zambia (Republic of)",81.7], + ["Zimbabwe (Republic of)",76.1] + ] +} diff --git a/data/global/health/dependency-ratio/dependancy-ratio.json b/data/global/health/dependency-ratio/dependancy-ratio.json new file mode 100644 index 0000000..235539b --- /dev/null +++ b/data/global/health/dependency-ratio/dependancy-ratio.json @@ -0,0 +1,218 @@ +{ + "metadata" : { + "name" : "Dependancy Ratio", + "description" : "The proportion of children aged 0-14 and elderly aged over 65 measured against adults aged 15-64.", + "units" : "depedants:100 carers", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","economics","dependancy","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_dependency_ratio" + ] + }, + "data" : [ + ["country.name","dependancy.ratio"], + ["Afghanistan (Islamic Republic of)",80.1], + ["Albania (Republic of)",46.9], + ["Algeria (People's Democratic Republic of)",60.1], + ["Angola (Republic of)",94.5], + ["Antigua and Barbuda",45.4], + ["Argentina (Argentine Republic)",55.8], + ["Armenia (Republic of)",48.4], + ["Aruba",47], + ["Australia (Commonwealth of)",55.1], + ["Austria (Republic of)",50.6], + ["Azerbaijan (Republic of)",43.4], + ["Bahamas (Commonwealth of the)",41.5], + ["Bahrain (Kingdom of)",26.5], + ["Bangladesh (People's Republic of)",47], + ["Barbados",50.3], + ["Belarus (Republic of)",48.9], + ["Belgium (Kingdom of)",57], + ["Belize",52], + ["Benin (Republic of)",82.6], + ["Bhutan (Kingdom of)",45.1], + ["Bolivia (Plurinational State of)",60.5], + ["Bosnia and Herzegovina",48], + ["Botswana (Republic of)",61.1], + ["Brazil (Federative Republic of)",43.5], + ["Brunei (Nation of the Abode of Peace)",38.7], + ["Bulgaria (Republic of)",56.6], + ["Burkina Faso",87.9], + ["Burundi (Republic of)",91], + ["Cape Verde (Republic of)",49], + ["Cambodia (Kingdom of)",55.7], + ["Cameroon (Republic of)",81.1], + ["Canada",51.2], + ["Central African Republic",86.4], + ["Chad (Republic of)",96], + ["Chile (Republic of)",45.9], + ["China (People's Republic of)",42.2], + ["Colombia (Republic of)",45.4], + ["Comoros (Union of the)",75.5], + ["Congo (Democratic Republic of the)",95.4], + ["Congo (Republic of the)",78.7], + ["Costa Rica (Republic of)",45.1], + ["Croatia (Republic of)",55.7], + ["Cuba (Republic of)",46.7], + ["Curaçao",55.9], + ["Cyprus (Republic of)",44.9], + ["Czech Republic",56], + ["Denmark (Kingdom of)",57.3], + ["Djibouti (Republic of)",50.6], + ["Dominican Republic",53.8], + ["Ecuador (Republic of)",53.8], + ["Egypt (Arab Republic of)",64.6], + ["El Salvador (Republic of)",54.4], + ["Equatorial Guinea (Republic of)",64.4], + ["Eritrea (State of)",83.9], + ["Estonia (Republic of)",58.4], + ["Eswatini (Kingdom of)",70.8], + ["Ethiopia (Federal Democratic Republic of)",76.8], + ["Fiji (Republic of)",53.4], + ["Finland (Republic of)",62.4], + ["France (French Republic)",62.4], + ["French Polynesia",45.5], + ["Gabon (Gabonese Republic)",68.9], + ["Gambia (Republic of the)",86.9], + ["Georgia",55], + ["Germany (Federal Republic of)",55.4], + ["Ghana (Republic of)",67.4], + ["Greece (Hellenic Republic)",56.1], + ["Grenada",50.5], + ["Guam",52.4], + ["Guatemala (Republic of)",62.3], + ["Guernsey (Bailiwick of)",49], + ["Guinea (Republic of)",85.2], + ["Guinea-Bissau (Republic of)",81.2], + ["Guyana (Co-operative Republic of)",53.2], + ["Haiti (Republic of)",60.4], + ["Honduras (Republic of)",55.2], + ["Hong Kong (Special Administrative Region of China)",44.7], + ["Hungary (Republic of)",46.9], + ["Iceland (Republic of)",54], + ["India (Republic of)",48.7], + ["Indonesia (Republic of)",47.5], + ["Iran (Islamic Republic of)",45.6], + ["Iraq (Republic of)",69.9], + ["Ireland",54.8], + ["Israel (State of)",67.3], + ["Italy (Italian Republic)",57], + ["Côte d'Ivoire (Republic of)",79.8], + ["Jamaica",48], + ["Japan",69], + ["Jordan (Hashemite Kingdom of)",58.2], + ["Kazakhstan (Republic of)",58.8], + ["Kenya (Republic of)",69.8], + ["Kiribati (Republic of)",67], + ["Korea (Democratic People's Republic of)",41.2], + ["Korea (Republic of)",39.5], + ["Kuwait (State of)",32.4], + ["Kyrgyz Republic",59.7], + ["Lao (People's Democratic Republic)",56.8], + ["Latvia (Republic of)",59], + ["Lebanon (Lebanese Republic)",48.4], + ["Lesotho (Kingdom of)",59.2], + ["Liberia (Republic of)",77.6], + ["Libya (State of)",47.7], + ["Lithuania (Republic of)",56.5], + ["Luxembourg (Grand Duchy of)",42.8], + ["Macao (Special Administrative Region of China)",35.7], + ["Madagascar (Republic of)",75.9], + ["Malawi (Republic of)",83.9], + ["Malaysia",44.2], + ["Maldives (Republic of)",30.2], + ["Mali (Republic of)",98], + ["Malta (Republic of)",55.5], + ["Mauritania (Islamic Republic of)",75], + ["Mauritius (Republic of)",41.5], + ["Mexico (United Mexican States)",50.3], + ["Micronesia (Federated States of)",55.2], + ["Moldova (Republic of)",39.6], + ["Mongolia",54.8], + ["Montenegro",51.1], + ["Morocco (Kingdom of)",52.4], + ["Mozambique (Republic of)",88.4], + ["Myanmar (Union of)",46.5], + ["Namibia (Republic of)",67.9], + ["Nepal (Federal Democratic Republic of)",53], + ["Netherlands (Kingdom of the)",55.6], + ["New Caledonia",46.6], + ["New Zealand",55.8], + ["Nicaragua (Republic of)",54.3], + ["Niger (Republic of)",109.5], + ["Nigeria (Federal Republic of)",86], + ["North Macedonia (Republic of)",44.5], + ["Norway (Kingdom of)",53.3], + ["Oman (Sultanate of)",33.3], + ["Pakistan (Islamic Republic of)",64.4], + ["Palestine (State of)",71.2], + ["Panama (Republic of)",53.9], + ["Papua New Guinea (Independent State of)",63.2], + ["Paraguay (Republic of)",55.5], + ["Peru (Republic of)",50.2], + ["Philippines (Republic of the)",55.2], + ["Poland (Republic of)",51.4], + ["Portugal (Portuguese Republic)",55.8], + ["Puerto Rico (Commonwealth of)",57.7], + ["Qatar (State of)",18.1], + ["Romania",53.3], + ["Russian Federation",51.2], + ["Rwanda (Republic of)",74.2], + ["Saint Lucia",39.4], + ["Saint Vincent and the Grenadines",46.7], + ["Samoa (Independent State of)",73.3], + ["São Tomé and Príncipe (Democratic Republic of)",81], + ["Saudi Arabia (Kingdom of)",39.3], + ["Senegal (Republic of)",84.2], + ["Serbia (Republic of)",52.5], + ["Seychelles (Republic of)",46.7], + ["Sierra Leone (Republic of)",76.3], + ["Singapore (Republic of)",34.5], + ["Slovakia (Slovak Republic)",47.6], + ["Slovenia (Republic of)",55.9], + ["Solomon Islands",77.6], + ["Somalia (Federal Republic of)",96.3], + ["South Africa (Republic of)",52.2], + ["South Sudan (Republic of)",80.8], + ["Spain (Kingdom of)",52.4], + ["Sri Lanka (Democratic Socialist Republic of)",53.7], + ["Sudan (Republic of the)",76.9], + ["Suriname (Republic of)",51.1], + ["Sweden (Kingdom of)",61.2], + ["Switzerland (Swiss Confederation)",51.6], + ["Syrian Arab Republic",55.4], + ["Taiwan",40], + ["Tajikistan (Republic of)",67.9], + ["Tanzania (United Republic of)",85.9], + ["Thailand (Kingdom of)",41.9], + ["Timor-Leste (Democratic Republic of)",87.3], + ["Togo (Togolese Republic)",77.1], + ["Tonga (Kingdom of)",68.6], + ["Trinidad and Tobago (Republic of)",46.1], + ["Tunisia (Republic of)",49.6], + ["Turkey (Republic of)",49.1], + ["Turkmenistan",55.2], + ["Uganda (Republic of)",92.3], + ["Ukraine",49.1], + ["United Arab Emirates",19.2], + ["United Kingdom (of Great Britain & Northern Ireland)",57.1], + ["United States (of America)",53.9], + ["Uruguay (Oriental Republic of)",54.9], + ["Uzbekistan (Republic of)",50.6], + ["Vanuatu (Republic of)",72.5], + ["Venezuela (Bolivarian Republic of)",54.4], + ["Vietnam (Socialist Republic of)",45.1], + ["United States Virgin Islands",66], + ["Sahrawi Arab Democratic Republic",44.1], + ["Yemen (Republic of)",71.7], + ["Zambia (Republic of)",85.7], + ["Zimbabwe (Republic of)",81.6] + ] +} diff --git a/data/global/health/dependency-ratio/dependancy-support-ratio.json b/data/global/health/dependency-ratio/dependancy-support-ratio.json new file mode 100644 index 0000000..9c2d97f --- /dev/null +++ b/data/global/health/dependency-ratio/dependancy-support-ratio.json @@ -0,0 +1,218 @@ +{ + "metadata" : { + "name" : "Dependancy Support Ratio", + "description" : "The proportion of adults aged 15-64 to potentially support elderly dependents aged over 65.", + "units" : "carers/100 dependents", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","economics","dependancy","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_dependency_ratio" + ] + }, + "data" : [ + ["country.name","dependancy.support.ratio"], + ["Afghanistan (Islamic Republic of)",21], + ["Albania (Republic of)",4.6], + ["Algeria (People's Democratic Republic of)",9.3], + ["Angola (Republic of)",23.5], + ["Antigua and Barbuda",7.4], + ["Argentina (Argentine Republic)",5.6], + ["Armenia (Republic of)",5.7], + ["Aruba",4.7], + ["Australia (Commonwealth of)",4], + ["Austria (Republic of)",3.5], + ["Azerbaijan (Republic of)",10.3], + ["Bahamas (Commonwealth of the)",9.1], + ["Bahrain (Kingdom of)",29.8], + ["Bangladesh (People's Republic of)",13], + ["Barbados",4], + ["Belarus (Republic of)",4.3], + ["Belgium (Kingdom of)",3.3], + ["Belize",13.1], + ["Benin (Republic of)",16.7], + ["Bhutan (Kingdom of)",11.1], + ["Bolivia (Plurinational State of)",8.3], + ["Bosnia and Herzegovina",3.8], + ["Botswana (Republic of)",13.8], + ["Brazil (Federative Republic of)",7.3], + ["Brunei (Nation of the Abode of Peace)",12.9], + ["Bulgaria (Republic of)",3], + ["Burkina Faso",22.1], + ["Burundi (Republic of)",22], + ["Cape Verde (Republic of)",14], + ["Cambodia (Kingdom of)",13.2], + ["Cameroon (Republic of)",20.3], + ["Canada",3.7], + ["Central African Republic",19.2], + ["Chad (Republic of)",20.4], + ["Chile (Republic of)",5.6], + ["China (People's Republic of)",5.9], + ["Colombia (Republic of)",7.6], + ["Comoros (Union of the)",18.6], + ["Congo (Democratic Republic of the)",17], + ["Congo (Republic of the)",20.3], + ["Costa Rica (Republic of)",6.7], + ["Croatia (Republic of)",3], + ["Cuba (Republic of)",4.3], + ["Curaçao",3.6], + ["Cyprus (Republic of)",4.8], + ["Czech Republic",3.2], + ["Denmark (Kingdom of)",3.2], + ["Djibouti (Republic of)",14.1], + ["Dominican Republic",8.6], + ["Ecuador (Republic of)",8.6], + ["Egypt (Arab Republic of)",11.4], + ["El Salvador (Republic of)",7.5], + ["Equatorial Guinea (Republic of)",25.5], + ["Eritrea (State of)",12.1], + ["Estonia (Republic of)",3.1], + ["Eswatini (Kingdom of)",14.6], + ["Ethiopia (Federal Democratic Republic of)",16], + ["Fiji (Republic of)",11.2], + ["Finland (Republic of)",2.7], + ["France (French Republic)",3], + ["French Polynesia",7.6], + ["Gabon (Gabonese Republic)",16.8], + ["Gambia (Republic of the)",21.1], + ["Georgia",4.2], + ["Germany (Federal Republic of)",3], + ["Ghana (Republic of)",17.1], + ["Greece (Hellenic Republic)",2.9], + ["Grenada",6.8], + ["Guam",6.2], + ["Guatemala (Republic of)",12.2], + ["Guernsey (Bailiwick of)",3.7], + ["Guinea (Republic of)",18.3], + ["Guinea-Bissau (Republic of)",19.1], + ["Guyana (Co-operative Republic of)",9.3], + ["Haiti (Republic of)",13.3], + ["Honduras (Republic of)",13], + ["Hong Kong (Special Administrative Region of China)",3.8], + ["Hungary (Republic of)",3.2], + ["Iceland (Republic of)",4.2], + ["India (Republic of)",10.2], + ["Indonesia (Republic of)",10.8], + ["Iran (Islamic Republic of)",14.2], + ["Iraq (Republic of)",17.1], + ["Ireland",4.4], + ["Israel (State of)",4.8], + ["Italy (Italian Republic)",2.7], + ["Côte d'Ivoire (Republic of)",19.3], + ["Jamaica",7.4], + ["Japan",2.1], + ["Jordan (Hashemite Kingdom of)",16], + ["Kazakhstan (Republic of)",8], + ["Kenya (Republic of)",23.5], + ["Kiribati (Republic of)",14.2], + ["Korea (Democratic People's Republic of)",7.6], + ["Korea (Republic of)",4.5], + ["Kuwait (State of)",24.9], + ["Kyrgyz Republic",13.2], + ["Lao (People's Democratic Republic)",15], + ["Latvia (Republic of)",3], + ["Lebanon (Lebanese Republic)",8.9], + ["Lesotho (Kingdom of)",12.7], + ["Liberia (Republic of)",17], + ["Libya (State of)",15], + ["Lithuania (Republic of)",3.1], + ["Luxembourg (Grand Duchy of)",4.9], + ["Macao (Special Administrative Region of China)",6.2], + ["Madagascar (Republic of)",18.3], + ["Malawi (Republic of)",20.6], + ["Malaysia",9.7], + ["Maldives (Republic of)",21.4], + ["Mali (Republic of)",20.4], + ["Malta (Republic of)",3], + ["Mauritania (Islamic Republic of)",18], + ["Mauritius (Republic of)",5.6], + ["Mexico (United Mexican States)",8.7], + ["Micronesia (Federated States of)",14.7], + ["Moldova (Republic of)",5.7], + ["Mongolia",15], + ["Montenegro",4.2], + ["Morocco (Kingdom of)",8.6], + ["Mozambique (Republic of)",18.5], + ["Myanmar (Union of)",10.9], + ["Namibia (Republic of)",16.6], + ["Nepal (Federal Democratic Republic of)",11.2], + ["Netherlands (Kingdom of the)",3.2], + ["New Caledonia",7], + ["New Zealand",3.9], + ["Nicaragua (Republic of)",11.4], + ["Niger (Republic of)",18.4], + ["Nigeria (Federal Republic of)",19.6], + ["North Macedonia (Republic of)",4.8], + ["Norway (Kingdom of)",3.7], + ["Oman (Sultanate of)",29.9], + ["Pakistan (Islamic Republic of)",14], + ["Palestine (State of)",18.2], + ["Panama (Republic of)",7.6], + ["Papua New Guinea (Independent State of)",17.2], + ["Paraguay (Republic of)",9.4], + ["Peru (Republic of)",7.6], + ["Philippines (Republic of the)",11.7], + ["Poland (Republic of)",3.5], + ["Portugal (Portuguese Republic)",2.8], + ["Puerto Rico (Commonwealth of)",3], + ["Qatar (State of)",50.1], + ["Romania",3.4], + ["Russian Federation",4.3], + ["Rwanda (Republic of)",18.4], + ["Saint Lucia",7], + ["Saint Vincent and the Grenadines",6.9], + ["Samoa (Independent State of)",11.4], + ["São Tomé and Príncipe (Democratic Republic of)",18.4], + ["Saudi Arabia (Kingdom of)",20.5], + ["Senegal (Republic of)",17.5], + ["Serbia (Republic of)",3.4], + ["Seychelles (Republic of)",8.5], + ["Sierra Leone (Republic of)",19.4], + ["Singapore (Republic of)",5.6], + ["Slovakia (Slovak Republic)",4.1], + ["Slovenia (Republic of)",3.1], + ["Solomon Islands",15.3], + ["Somalia (Federal Republic of)",17.6], + ["South Africa (Republic of)",11.9], + ["South Sudan (Republic of)",16.5], + ["Spain (Kingdom of)",3.3], + ["Sri Lanka (Democratic Socialist Republic of)",5.8], + ["Sudan (Republic of the)",15.4], + ["Suriname (Republic of)",9.3], + ["Sweden (Kingdom of)",3.1], + ["Switzerland (Swiss Confederation)",3.5], + ["Syrian Arab Republic",13.2], + ["Taiwan",4.5], + ["Tajikistan (Republic of)",18.7], + ["Tanzania (United Republic of)",20.4], + ["Thailand (Kingdom of)",5.4], + ["Timor-Leste (Democratic Republic of)",13.3], + ["Togo (Togolese Republic)",19.4], + ["Tonga (Kingdom of)",10], + ["Trinidad and Tobago (Republic of)",7.4], + ["Tunisia (Republic of)",7.5], + ["Turkey (Republic of)",7.5], + ["Turkmenistan",13.5], + ["Uganda (Republic of)",26.2], + ["Ukraine",4], + ["United Arab Emirates",66.4], + ["United Kingdom (of Great Britain & Northern Ireland)",3.4], + ["United States (of America)",3.9], + ["Uruguay (Oriental Republic of)",4.3], + ["Uzbekistan (Republic of)",13.9], + ["Vanuatu (Republic of)",8.1], + ["Venezuela (Bolivarian Republic of)",8.1], + ["Vietnam (Socialist Republic of)",8.8], + ["United States Virgin Islands",2.9], + ["Sahrawi Arab Democratic Republic",20.4], + ["Yemen (Republic of)",19.9], + ["Zambia (Republic of)",25.3], + ["Zimbabwe (Republic of)",18.3] + ] +} diff --git a/data/global/health/dependency-ratio/dependency-ratio-elerly.json b/data/global/health/dependency-ratio/dependency-ratio-elerly.json new file mode 100644 index 0000000..329d8f5 --- /dev/null +++ b/data/global/health/dependency-ratio/dependency-ratio-elerly.json @@ -0,0 +1,218 @@ +{ + "metadata" : { + "name" : "Elderly (Over 65) Dependency Ratio", + "description" : "The proportion of elderly aged over 65 measured against adults aged 15-64.", + "units" : "elderly:100 carers", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","economics","dependancy","age"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_dependency_ratio" + ] + }, + "data" : [ + ["country.name","dependency.ratio.elerly"], + ["Afghanistan (Islamic Republic of)",4.8], + ["Albania (Republic of)",21.6], + ["Algeria (People's Democratic Republic of)",10.8], + ["Angola (Republic of)",4.3], + ["Antigua and Barbuda",13.6], + ["Argentina (Argentine Republic)",17.7], + ["Armenia (Republic of)",17.5], + ["Aruba",21.5], + ["Australia (Commonwealth of)",25.1], + ["Austria (Republic of)",28.9], + ["Azerbaijan (Republic of)",9.7], + ["Bahamas (Commonwealth of the)",11], + ["Bahrain (Kingdom of)",3.4], + ["Bangladesh (People's Republic of)",7.7], + ["Barbados",25.1], + ["Belarus (Republic of)",23.2], + ["Belgium (Kingdom of)",30.2], + ["Belize",7.6], + ["Benin (Republic of)",6], + ["Bhutan (Kingdom of)",9], + ["Bolivia (Plurinational State of)",12], + ["Bosnia and Herzegovina",26.5], + ["Botswana (Republic of)",7.3], + ["Brazil (Federative Republic of)",13.8], + ["Brunei (Nation of the Abode of Peace)",7.7], + ["Bulgaria (Republic of)",33.6], + ["Burkina Faso",4.5], + ["Burundi (Republic of)",4.5], + ["Cape Verde (Republic of)",7.1], + ["Cambodia (Kingdom of)",7.6], + ["Cameroon (Republic of)",4.9], + ["Canada",27.4], + ["Central African Republic",5.2], + ["Chad (Republic of)",4.9], + ["Chile (Republic of)",17.9], + ["China (People's Republic of)",17], + ["Colombia (Republic of)",13.2], + ["Comoros (Union of the)",5.4], + ["Congo (Democratic Republic of the)",5.9], + ["Congo (Republic of the)",4.9], + ["Costa Rica (Republic of)",14.9], + ["Croatia (Republic of)",33.1], + ["Cuba (Republic of)",23.3], + ["Curaçao",27.5], + ["Cyprus (Republic of)",20.9], + ["Czech Republic",31.4], + ["Denmark (Kingdom of)",31.7], + ["Djibouti (Republic of)",7.1], + ["Dominican Republic",11.6], + ["Ecuador (Republic of)",11.7], + ["Egypt (Arab Republic of)",8.8], + ["El Salvador (Republic of)",13.4], + ["Equatorial Guinea (Republic of)",3.9], + ["Eritrea (State of)",8.3], + ["Estonia (Republic of)",32.3], + ["Eswatini (Kingdom of)",6.9], + ["Ethiopia (Federal Democratic Republic of)",6.3], + ["Fiji (Republic of)",8.9], + ["Finland (Republic of)",36.6], + ["France (French Republic)",33.7], + ["French Polynesia",13.2], + ["Gabon (Gabonese Republic)",6], + ["Gambia (Republic of the)",4.7], + ["Georgia",23.6], + ["Germany (Federal Republic of)",33.7], + ["Ghana (Republic of)",5.3], + ["Greece (Hellenic Republic)",34.8], + ["Grenada",14.7], + ["Guam",16.1], + ["Guatemala (Republic of)",8.2], + ["Guernsey (Bailiwick of)",26.7], + ["Guinea (Republic of)",5.5], + ["Guinea-Bissau (Republic of)",5.2], + ["Guyana (Co-operative Republic of)",10.7], + ["Haiti (Republic of)",8.3], + ["Honduras (Republic of)",7.7], + ["Hong Kong (Special Administrative Region of China)",26.3], + ["Hungary (Republic of)",30.8], + ["Iceland (Republic of)",24.1], + ["India (Republic of)",9.8], + ["Indonesia (Republic of)",9.2], + ["Iran (Islamic Republic of)",9.6], + ["Iraq (Republic of)",5.9], + ["Ireland",22.6], + ["Israel (State of)",20.8], + ["Italy (Italian Republic)",36.6], + ["Côte d'Ivoire (Republic of)",5.2], + ["Jamaica",13.4], + ["Japan",48], + ["Jordan (Hashemite Kingdom of)",6.3], + ["Kazakhstan (Republic of)",12.6], + ["Kenya (Republic of)",4.3], + ["Kiribati (Republic of)",7], + ["Korea (Democratic People's Republic of)",13.2], + ["Korea (Republic of)",22], + ["Kuwait (State of)",4], + ["Kyrgyz Republic",7.5], + ["Lao (People's Democratic Republic)",6.7], + ["Latvia (Republic of)",32.9], + ["Lebanon (Lebanese Republic)",11.2], + ["Lesotho (Kingdom of)",7.9], + ["Liberia (Republic of)",5.9], + ["Libya (State of)",6.7], + ["Lithuania (Republic of)",32.3], + ["Luxembourg (Grand Duchy of)",20.5], + ["Macao (Special Administrative Region of China)",16.2], + ["Madagascar (Republic of)",5.5], + ["Malawi (Republic of)",4.9], + ["Malaysia",10.4], + ["Maldives (Republic of)",4.7], + ["Mali (Republic of)",4.9], + ["Malta (Republic of)",33.2], + ["Mauritania (Islamic Republic of)",5.6], + ["Mauritius (Republic of)",17.7], + ["Mexico (United Mexican States)",11.4], + ["Micronesia (Federated States of)",6.8], + ["Moldova (Republic of)",17.4], + ["Mongolia",6.7], + ["Montenegro",23.8], + ["Morocco (Kingdom of)",11.6], + ["Mozambique (Republic of)",5.4], + ["Myanmar (Union of)",9.1], + ["Namibia (Republic of)",6], + ["Nepal (Federal Democratic Republic of)",8.9], + ["Netherlands (Kingdom of the)",31.2], + ["New Caledonia",14.2], + ["New Zealand",25.5], + ["Nicaragua (Republic of)",8.8], + ["Niger (Republic of)",5.4], + ["Nigeria (Federal Republic of)",5.1], + ["North Macedonia (Republic of)",20.9], + ["Norway (Kingdom of)",26.9], + ["Oman (Sultanate of)",3.3], + ["Pakistan (Islamic Republic of)",7.1], + ["Palestine (State of)",5.5], + ["Panama (Republic of)",13.1], + ["Papua New Guinea (Independent State of)",5.8], + ["Paraguay (Republic of)",10.6], + ["Peru (Republic of)",13.1], + ["Philippines (Republic of the)",8.6], + ["Poland (Republic of)",28.4], + ["Portugal (Portuguese Republic)",35.5], + ["Puerto Rico (Commonwealth of)",32.8], + ["Qatar (State of)",2], + ["Romania",29.5], + ["Russian Federation",23.5], + ["Rwanda (Republic of)",5.4], + ["Saint Lucia",14.4], + ["Saint Vincent and the Grenadines",14.5], + ["Samoa (Independent State of)",8.8], + ["São Tomé and Príncipe (Democratic Republic of)",5.4], + ["Saudi Arabia (Kingdom of)",4.9], + ["Senegal (Republic of)",5.7], + ["Serbia (Republic of)",29.1], + ["Seychelles (Republic of)",11.8], + ["Sierra Leone (Republic of)",5.2], + ["Singapore (Republic of)",18], + ["Slovakia (Slovak Republic)",24.6], + ["Slovenia (Republic of)",32.3], + ["Solomon Islands",6.5], + ["Somalia (Federal Republic of)",5.7], + ["South Africa (Republic of)",8.4], + ["South Sudan (Republic of)",6.1], + ["Spain (Kingdom of)",30.4], + ["Sri Lanka (Democratic Socialist Republic of)",17.3], + ["Sudan (Republic of the)",6.5], + ["Suriname (Republic of)",10.8], + ["Sweden (Kingdom of)",32.8], + ["Switzerland (Swiss Confederation)",29], + ["Syrian Arab Republic",7.6], + ["Taiwan",22.2], + ["Tajikistan (Republic of)",5.3], + ["Tanzania (United Republic of)",4.9], + ["Thailand (Kingdom of)",18.4], + ["Timor-Leste (Democratic Republic of)",7.6], + ["Togo (Togolese Republic)",5.1], + ["Tonga (Kingdom of)",10], + ["Trinidad and Tobago (Republic of)",16.8], + ["Tunisia (Republic of)",13.3], + ["Turkey (Republic of)",13.4], + ["Turkmenistan",7.4], + ["Uganda (Republic of)",3.8], + ["Ukraine",25.3], + ["United Arab Emirates",1.5], + ["United Kingdom (of Great Britain & Northern Ireland)",29.3], + ["United States (of America)",25.6], + ["Uruguay (Oriental Republic of)",23.4], + ["Uzbekistan (Republic of)",7.2], + ["Vanuatu (Republic of)",12.3], + ["Venezuela (Bolivarian Republic of)",12.3], + ["Vietnam (Socialist Republic of)",11.4], + ["United States Virgin Islands",34], + ["Sahrawi Arab Democratic Republic",4.9], + ["Yemen (Republic of)",5], + ["Zambia (Republic of)",4], + ["Zimbabwe (Republic of)",5.5] + ] +} diff --git a/data/global/health/diet/food-calorie-intake.json b/data/global/health/diet/food-calorie-intake.json new file mode 100644 index 0000000..17540b1 --- /dev/null +++ b/data/global/health/diet/food-calorie-intake.json @@ -0,0 +1,193 @@ +{ + "metadata" : { + "name" : "Food Calorie Intake (kcal)", + "description" : "Average number of kilocalories consumed per person per day.", + "units" : "kcal", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","food","fitness"], + "authors" : [ + "Our World In Data" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_food_energy_intake" + ] + }, + "data" : [ + ["country.name","food.calorie.intake"], + ["Ireland",3885], + ["United States (of America)",3782], + ["Belgium (Kingdom of)",3769], + ["Turkey (Republic of)",3711], + ["Austria (Republic of)",3695], + ["Iceland (Republic of)",3654], + ["Romania",3581], + ["Canada",3566], + ["Germany (Federal Republic of)",3554], + ["Poland (Republic of)",3537], + ["Israel (State of)",3528], + ["Italy (Italian Republic)",3503], + ["France (French Republic)",3502], + ["Montenegro",3500], + ["Portugal (Portuguese Republic)",3480], + ["Kuwait (State of)",3471], + ["Luxembourg (Grand Duchy of)",3465], + ["Tunisia (Republic of)",3450], + ["Korea (Republic of)",3420], + ["Malta (Republic of)",3420], + ["Morocco (Kingdom of)",3412], + ["Lithuania (Republic of)",3411], + ["Denmark (Kingdom of)",3401], + ["Australia (Commonwealth of)",3391], + ["Greece (Hellenic Republic)",3382], + ["Norway (Kingdom of)",3371], + ["Albania (Republic of)",3360], + ["Switzerland (Swiss Confederation)",3354], + ["Russian Federation",3345], + ["United Kingdom (of Great Britain & Northern Ireland)",3344], + ["Cuba (Republic of)",3344], + ["Finland (Republic of)",3343], + ["Algeria (People's Democratic Republic of)",3322], + ["Spain (Kingdom of)",3322], + ["Hungary (Republic of)",3316], + ["United Arab Emirates",3314], + ["Argentina (Argentine Republic)",3307], + ["Bosnia and Herzegovina",3307], + ["Saudi Arabia (Kingdom of)",3307], + ["Brazil (Federative Republic of)",3301], + ["Netherlands (Kingdom of the)",3297], + ["Egypt (Arab Republic of)",3292], + ["Czech Republic",3277], + ["Belarus (Republic of)",3270], + ["Hong Kong (Special Administrative Region of China)",3267], + ["Estonia (Republic of)",3247], + ["Latvia (Republic of)",3229], + ["China (People's Republic of)",3206], + ["Uruguay (Oriental Republic of)",3202], + ["New Zealand",3191], + ["Slovenia (Republic of)",3191], + ["Sweden (Kingdom of)",3184], + ["Mexico (United Mexican States)",3157], + ["Azerbaijan (Republic of)",3149], + ["Colombia (Republic of)",3114], + ["Ukraine",3102], + ["Iran (Islamic Republic of)",3087], + ["Kiribati (Republic of)",3078], + ["Croatia (Republic of)",3074], + ["North Macedonia (Republic of)",3072], + ["Kazakhstan (Republic of)",3067], + ["Mauritius (Republic of)",3051], + ["Ghana (Republic of)",3035], + ["Samoa (Independent State of)",3030], + ["Chile (Republic of)",3029], + ["Costa Rica (Republic of)",3029], + ["Vietnam (Socialist Republic of)",3025], + ["Cyprus (Republic of)",3019], + ["Uzbekistan (Republic of)",3011], + ["Armenia (Republic of)",2997], + ["Trinidad and Tobago (Republic of)",2991], + ["Brunei (Nation of the Abode of Peace)",2985], + ["Taiwan",2983], + ["Saint Vincent and the Grenadines",2968], + ["Barbados",2956], + ["Dominica (Commonwealth of)",2952], + ["Oman (Sultanate of)",2940], + ["Guyana (Co-operative Republic of)",2913], + ["South Africa (Republic of)",2899], + ["Dominican Republic",2892], + ["Indonesia (Republic of)",2884], + ["Mauritania (Islamic Republic of)",2877], + ["Mali (Republic of)",2873], + ["Slovakia (Slovak Republic)",2871], + ["New Caledonia",2858], + ["Lebanon (Lebanese Republic)",2857], + ["Bulgaria (Republic of)",2854], + ["Panama (Republic of)",2851], + ["Malaysia",2845], + ["Georgia",2835], + ["Turkmenistan",2830], + ["Serbia (Republic of)",2828], + ["Thailand (Kingdom of)",2804], + ["Jamaica",2792], + ["Fiji (Republic of)",2781], + ["Côte d'Ivoire (Republic of)",2778], + ["Peru (Republic of)",2775], + ["Belize",2775], + ["Nepal (Federal Democratic Republic of)",2769], + ["Paraguay (Republic of)",2768], + ["Lao (People's Democratic Republic)",2758], + ["Benin (Republic of)",2755], + ["Guinea (Republic of)",2746], + ["Burkina Faso",2737], + ["Sri Lanka (Democratic Socialist Republic of)",2737], + ["Cameroon (Republic of)",2733], + ["Jordan (Hashemite Kingdom of)",2732], + ["Kyrgyz Republic",2729], + ["Japan",2705], + ["Suriname (Republic of)",2698], + ["El Salvador (Republic of)",2696], + ["Djibouti (Republic of)",2694], + ["Honduras (Republic of)",2673], + ["Myanmar (Union of)",2673], + ["Philippines (Republic of the)",2662], + ["Bahamas (Commonwealth of the)",2655], + ["Gabon (Gabonese Republic)",2633], + ["Saint Lucia",2618], + ["Iraq (Republic of)",2608], + ["Vanuatu (Republic of)",2607], + ["Ecuador (Republic of)",2606], + ["Niger (Republic of)",2601], + ["Nicaragua (Republic of)",2582], + ["Saint Kitts and Nevis (Federation of)",2582], + ["Mongolia",2579], + ["Sudan (Republic of the)",2578], + ["Nigeria (Federal Republic of)",2572], + ["Bangladesh (People's Republic of)",2563], + ["Guatemala (Republic of)",2551], + ["Senegal (Republic of)",2545], + ["Cape Verde (Republic of)",2541], + ["India (Republic of)",2533], + ["Gambia (Republic of the)",2533], + ["Cambodia (Kingdom of)",2492], + ["Pakistan (Islamic Republic of)",2486], + ["Namibia (Republic of)",2469], + ["São Tomé and Príncipe (Democratic Republic of)",2446], + ["Antigua and Barbuda",2445], + ["Togo (Togolese Republic)",2443], + ["Eswatini (Kingdom of)",2426], + ["Solomon Islands",2415], + ["Bolivia (Plurinational State of)",2412], + ["Grenada",2402], + ["Malawi (Republic of)",2392], + ["Angola (Republic of)",2385], + ["Moldova (Republic of)",2383], + ["Tanzania (United Republic of)",2373], + ["Sierra Leone (Republic of)",2369], + ["Botswana (Republic of)",2342], + ["Ethiopia (Federal Democratic Republic of)",2338], + ["Lesotho (Kingdom of)",2323], + ["Timor-Leste (Democratic Republic of)",2287], + ["Congo (Republic of the)",2285], + ["Maldives (Republic of)",2235], + ["Guinea-Bissau (Republic of)",2229], + ["Kenya (Republic of)",2197], + ["Rwanda (Republic of)",2188], + ["Liberia (Republic of)",2168], + ["Yemen (Republic of)",2154], + ["Haiti (Republic of)",2121], + ["Venezuela (Bolivarian Republic of)",2120], + ["Chad (Republic of)",2115], + ["Tajikistan (Republic of)",2109], + ["Mozambique (Republic of)",2103], + ["Afghanistan (Islamic Republic of)",2040], + ["Korea (Democratic People's Republic of)",2019], + ["Zambia (Republic of)",2002], + ["Uganda (Republic of)",1981], + ["Madagascar (Republic of)",1938], + ["Zimbabwe (Republic of)",1908], + ["Central African Republic",1786] + ] +} diff --git a/data/global/health/disease/hiv-aids-prevalence.json.error b/data/global/health/disease/hiv-aids-prevalence.json.error new file mode 100644 index 0000000..ae2f102 --- /dev/null +++ b/data/global/health/disease/hiv-aids-prevalence.json.error @@ -0,0 +1,210 @@ +{ + "metadata" : { + "name" : "HIV/AIDS Adult Prevalence", + "description" : "Prevalence rate of HIV/AIDS as a percentage of the adult population.", + "units" : "%", + "year" : "2019", + "author" : "Central Intelligence Agencey (CIA) World Factbook and UNAIDS", + "tags" : ["global","health","disease","illness","aids","hiv"], + "source" : "https://en.wikipedia.org/wiki/List_of_countries_by_HIV/AIDS_adult_prevalence_rate" + }, + "data" : [ + ["country.name","dependancy.ratio","dependancy.ratio.children","dependency.ratio.elerly","dependancy.support.ratio"], + ["Afghanistan (Islamic Republic of)",80.1,75.3,4.8,21], + ["Albania (Republic of)",46.9,25.3,21.6,4.6], + ["Algeria (People's Democratic Republic of)",60.1,49.3,10.8,9.3], + ["Angola (Republic of)",94.5,90.2,4.3,23.5], + ["Antigua and Barbuda",45.4,31.8,13.6,7.4], + ["Argentina (Argentine Republic)",55.8,38.1,17.7,5.6], + ["Armenia (Republic of)",48.4,30.9,17.5,5.7], + ["Aruba",47,25.6,21.5,4.7], + ["Australia (Commonwealth of)",55.1,29.9,25.1,4], + ["Austria (Republic of)",50.6,21.7,28.9,3.5], + ["Azerbaijan (Republic of)",43.4,33.7,9.7,10.3], + ["Bahamas (Commonwealth of the)",41.5,30.6,11,9.1], + ["Bahrain (Kingdom of)",26.5,23.1,3.4,29.8], + ["Bangladesh (People's Republic of)",47,39.3,7.7,13], + ["Barbados",50.3,25.2,25.1,4], + ["Belarus (Republic of)",48.9,25.7,23.2,4.3], + ["Belgium (Kingdom of)",57,26.7,30.2,3.3], + ["Belize",52,44.4,7.6,13.1], + ["Benin (Republic of)",82.6,76.6,6,16.7], + ["Bhutan (Kingdom of)",45.1,36.1,9,11.1], + ["Bolivia (Plurinational State of)",60.5,48.5,12,8.3], + ["Bosnia and Herzegovina",48,21.5,26.5,3.8], + ["Botswana (Republic of)",61.1,53.8,7.3,13.8], + ["Brazil (Federative Republic of)",43.5,29.7,13.8,7.3], + ["Brunei (Nation of the Abode of Peace)",38.7,31,7.7,12.9], + ["Bulgaria (Republic of)",56.6,23,33.6,3], + ["Burkina Faso",87.9,83.4,4.5,22.1], + ["Burundi (Republic of)",91,86.4,4.5,22], + ["Cape Verde (Republic of)",49,41.8,7.1,14], + ["Cambodia (Kingdom of)",55.7,48.2,7.6,13.2], + ["Cameroon (Republic of)",81.1,76.2,4.9,20.3], + ["Canada",51.2,23.9,27.4,3.7], + ["Central African Republic",86.4,81.1,5.2,19.2], + ["Chad (Republic of)",96,91.1,4.9,20.4], + ["Chile (Republic of)",45.9,28.1,17.9,5.6], + ["China (People's Republic of)",42.2,25.2,17,5.9], + ["Colombia (Republic of)",45.4,32.3,13.2,7.6], + ["Comoros (Union of the)",75.5,67.4,5.4,18.6], + ["Congo (Democratic Republic of the)",95.4,89.5,5.9,17], + ["Congo (Republic of the)",78.7,73.7,4.9,20.3], + ["Costa Rica (Republic of)",45.1,30.2,14.9,6.7], + ["Croatia (Republic of)",55.7,22.6,33.1,3], + ["Cuba (Republic of)",46.7,23.3,23.3,4.3], + ["Curaçao",55.9,28.3,27.5,3.6], + ["Cyprus (Republic of)",44.9,24,20.9,4.8], + ["Czech Republic",56,24.6,31.4,3.2], + ["Denmark (Kingdom of)",57.3,25.6,31.7,3.2], + ["Djibouti (Republic of)",50.6,43.6,7.1,14.1], + ["Dominican Republic",53.8,42.2,11.6,8.6], + ["Ecuador (Republic of)",53.8,42.1,11.7,8.6], + ["Egypt (Arab Republic of)",64.6,55.8,8.8,11.4], + ["El Salvador (Republic of)",54.4,41.1,13.4,7.5], + ["Equatorial Guinea (Republic of)",64.4,60.5,3.9,25.5], + ["Eritrea (State of)",83.9,75.6,8.3,12.1], + ["Estonia (Republic of)",58.4,26.1,32.3,3.1], + ["Eswatini (Kingdom of)",70.8,64,6.9,14.6], + ["Ethiopia (Federal Democratic Republic of)",76.8,70.6,6.3,16], + ["Fiji (Republic of)",53.4,44.5,8.9,11.2], + ["Finland (Republic of)",62.4,25.8,36.6,2.7], + ["France (French Republic)",62.4,28.7,33.7,3], + ["French Polynesia",45.5,32.3,13.2,7.6], + ["Gabon (Gabonese Republic)",68.9,62.9,6,16.8], + ["Gambia (Republic of the)",86.9,82.1,4.7,21.1], + ["Georgia",55,31.3,23.6,4.2], + ["Germany (Federal Republic of)",55.4,21.7,33.7,3], + ["Ghana (Republic of)",67.4,62.2,5.3,17.1], + ["Greece (Hellenic Republic)",56.1,21.3,34.8,2.9], + ["Grenada",50.5,35.8,14.7,6.8], + ["Guam",52.4,36.4,16.1,6.2], + ["Guatemala (Republic of)",62.3,54.1,8.2,12.2], + ["Guernsey (Bailiwick of)",49,22.3,26.7,3.7], + ["Guinea (Republic of)",85.2,79.7,5.5,18.3], + ["Guinea-Bissau (Republic of)",81.2,76,5.2,19.1], + ["Guyana (Co-operative Republic of)",53.2,42.5,10.7,9.3], + ["Haiti (Republic of)",60.4,52.1,8.3,13.3], + ["Honduras (Republic of)",55.2,47.5,7.7,13], + ["Hong Kong (Special Administrative Region of China)",44.7,18.3,26.3,3.8], + ["Hungary (Republic of)",46.9,22,30.8,3.2], + ["Iceland (Republic of)",54,29.9,24.1,4.2], + ["India (Republic of)",48.7,38.9,9.8,10.2], + ["Indonesia (Republic of)",47.5,38.3,9.2,10.8], + ["Iran (Islamic Republic of)",45.6,36,9.6,14.2], + ["Iraq (Republic of)",69.9,64.1,5.9,17.1], + ["Ireland",54.8,32.3,22.6,4.4], + ["Israel (State of)",67.3,46.6,20.8,4.8], + ["Italy (Italian Republic)",57,20.4,36.6,2.7], + ["Côte d'Ivoire (Republic of)",79.8,74.6,5.2,19.3], + ["Jamaica",48,34.6,13.4,7.4], + ["Japan",69,21,48,2.1], + ["Jordan (Hashemite Kingdom of)",58.2,52,6.3,16], + ["Kazakhstan (Republic of)",58.8,46.3,12.6,8], + ["Kenya (Republic of)",69.8,65.5,4.3,23.5], + ["Kiribati (Republic of)",67,60,7,14.2], + ["Korea (Democratic People's Republic of)",41.2,28,13.2,7.6], + ["Korea (Republic of)",39.5,17.5,22,4.5], + ["Kuwait (State of)",32.4,28.4,4,24.9], + ["Kyrgyz Republic",59.7,52.1,7.5,13.2], + ["Lao (People's Democratic Republic)",56.8,50.1,6.7,15], + ["Latvia (Republic of)",59,26.1,32.9,3], + ["Lebanon (Lebanese Republic)",48.4,37.2,11.2,8.9], + ["Lesotho (Kingdom of)",59.2,51.3,7.9,12.7], + ["Liberia (Republic of)",77.6,71.7,5.9,17], + ["Libya (State of)",47.7,41,6.7,15], + ["Lithuania (Republic of)",56.5,24.2,32.3,3.1], + ["Luxembourg (Grand Duchy of)",42.8,22.2,20.5,4.9], + ["Macao (Special Administrative Region of China)",35.7,19.5,16.2,6.2], + ["Madagascar (Republic of)",75.9,70.5,5.5,18.3], + ["Malawi (Republic of)",83.9,79.1,4.9,20.6], + ["Malaysia",44.2,33.8,10.4,9.7], + ["Maldives (Republic of)",30.2,25.5,4.7,21.4], + ["Mali (Republic of)",98,93.1,4.9,20.4], + ["Malta (Republic of)",55.5,22.4,33.2,3], + ["Mauritania (Islamic Republic of)",75,69.5,5.6,18], + ["Mauritius (Republic of)",41.5,23.7,17.7,5.6], + ["Mexico (United Mexican States)",50.3,38.8,11.4,8.7], + ["Micronesia (Federated States of)",55.2,48.4,6.8,14.7], + ["Moldova (Republic of)",39.6,22.2,17.4,5.7], + ["Mongolia",54.8,48.1,6.7,15], + ["Montenegro",51.1,27.3,23.8,4.2], + ["Morocco (Kingdom of)",52.4,40.8,11.6,8.6], + ["Mozambique (Republic of)",88.4,83,5.4,18.5], + ["Myanmar (Union of)",46.5,37.3,9.1,10.9], + ["Namibia (Republic of)",67.9,61.8,6,16.6], + ["Nepal (Federal Democratic Republic of)",53,44.1,8.9,11.2], + ["Netherlands (Kingdom of the)",55.6,24.4,31.2,3.2], + ["New Caledonia",46.6,32.4,14.2,7], + ["New Zealand",55.8,30.3,25.5,3.9], + ["Nicaragua (Republic of)",54.3,45.5,8.8,11.4], + ["Niger (Republic of)",109.5,104.1,5.4,18.4], + ["Nigeria (Federal Republic of)",86,80.9,5.1,19.6], + ["North Macedonia (Republic of)",44.5,23.6,20.9,4.8], + ["Norway (Kingdom of)",53.3,26.5,26.9,3.7], + ["Oman (Sultanate of)",33.3,30,3.3,29.9], + ["Pakistan (Islamic Republic of)",64.4,57.2,7.1,14], + ["Palestine (State of)",71.2,65.7,5.5,18.2], + ["Panama (Republic of)",53.9,40.8,13.1,7.6], + ["Papua New Guinea (Independent State of)",63.2,57.4,5.8,17.2], + ["Paraguay (Republic of)",55.5,49.9,10.6,9.4], + ["Peru (Republic of)",50.2,37.1,13.1,7.6], + ["Philippines (Republic of the)",55.2,46.6,8.6,11.7], + ["Poland (Republic of)",51.4,23,28.4,3.5], + ["Portugal (Portuguese Republic)",55.8,20.3,35.5,2.8], + ["Puerto Rico (Commonwealth of)",57.7,24.8,32.8,3], + ["Qatar (State of)",18.1,16.1,2,50.1], + ["Romania",53.3,23.8,29.5,3.4], + ["Russian Federation",51.2,27.8,23.5,4.3], + ["Rwanda (Republic of)",74.2,68.8,5.4,18.4], + ["Saint Lucia",39.4,25,14.4,7], + ["Saint Vincent and the Grenadines",46.7,32.1,14.5,6.9], + ["Samoa (Independent State of)",73.3,64.5,8.8,11.4], + ["São Tomé and Príncipe (Democratic Republic of)",81,75.6,5.4,18.4], + ["Saudi Arabia (Kingdom of)",39.3,34.4,4.9,20.5], + ["Senegal (Republic of)",84.2,78.4,5.7,17.5], + ["Serbia (Republic of)",52.5,23.4,29.1,3.4], + ["Seychelles (Republic of)",46.7,34.9,11.8,8.5], + ["Sierra Leone (Republic of)",76.3,71.1,5.2,19.4], + ["Singapore (Republic of)",34.5,16.5,18,5.6], + ["Slovakia (Slovak Republic)",47.6,23,24.6,4.1], + ["Slovenia (Republic of)",55.9,23.6,32.3,3.1], + ["Solomon Islands",77.6,71.1,6.5,15.3], + ["Somalia (Federal Republic of)",96.3,90.6,5.7,17.6], + ["South Africa (Republic of)",52.2,43.8,8.4,11.9], + ["South Sudan (Republic of)",80.8,74.7,6.1,16.5], + ["Spain (Kingdom of)",52.4,21.9,30.4,3.3], + ["Sri Lanka (Democratic Socialist Republic of)",53.7,36.4,17.3,5.8], + ["Sudan (Republic of the)",76.9,70.4,6.5,15.4], + ["Suriname (Republic of)",51.1,40.3,10.8,9.3], + ["Sweden (Kingdom of)",61.2,28.4,32.8,3.1], + ["Switzerland (Swiss Confederation)",51.6,22.7,29,3.5], + ["Syrian Arab Republic",55.4,47.8,7.6,13.2], + ["Taiwan",40,17.8,22.2,4.5], + ["Tajikistan (Republic of)",67.9,62.6,5.3,18.7], + ["Tanzania (United Republic of)",85.9,81,4.9,20.4], + ["Thailand (Kingdom of)",41.9,23.5,18.4,5.4], + ["Timor-Leste (Democratic Republic of)",87.3,78.7,7.6,13.3], + ["Togo (Togolese Republic)",77.1,72,5.1,19.4], + ["Tonga (Kingdom of)",68.6,58.6,10,10], + ["Trinidad and Tobago (Republic of)",46.1,29.3,16.8,7.4], + ["Tunisia (Republic of)",49.6,36.3,13.3,7.5], + ["Turkey (Republic of)",49.1,35.7,13.4,7.5], + ["Turkmenistan",55.2,47.8,7.4,13.5], + ["Uganda (Republic of)",92.3,88.5,3.8,26.2], + ["Ukraine",49.1,23.8,25.3,4], + ["United Arab Emirates",19.2,17.7,1.5,66.4], + ["United Kingdom (of Great Britain & Northern Ireland)",57.1,27.8,29.3,3.4], + ["United States (of America)",53.9,28.3,25.6,3.9], + ["Uruguay (Oriental Republic of)",54.9,31.5,23.4,4.3], + ["Uzbekistan (Republic of)",50.6,43.4,7.2,13.9], + ["Vanuatu (Republic of)",72.5,66.2,12.3,8.1], + ["Venezuela (Bolivarian Republic of)",54.4,42.1,12.3,8.1], + ["Vietnam (Socialist Republic of)",45.1,33.6,11.4,8.8], + ["United States Virgin Islands",66,32,34,2.9], + ["Sahrawi Arab Democratic Republic",44.1,39.2,4.9,20.4], + ["Yemen (Republic of)",71.7,66.7,5,19.9], + ["Zambia (Republic of)",85.7,81.7,4,25.3], + ["Zimbabwe (Republic of)",81.6,76.1,5.5,18.3] + ] +} diff --git a/data/global/health/drugs/alcohol-consumption.json b/data/global/health/drugs/alcohol-consumption.json new file mode 100644 index 0000000..59d2538 --- /dev/null +++ b/data/global/health/drugs/alcohol-consumption.json @@ -0,0 +1,213 @@ +{ + "metadata" : { + "name" : "Alcohol Consumption", + "description" : "Litres of pure alcohol (ethonol) consumed per-capita per-year.", + "units" : "litres per-capita per-year", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","drugs","alcohol"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_alcohol_consumption_per_capita" + ] + }, + "data" : [ + ["country.name","alcohol.consumption"], + ["Afghanistan (Islamic Republic of)",0.2], + ["Albania (Republic of)",7.5], + ["Algeria (People's Democratic Republic of)",0.9], + ["Andorra (Principality of)",11.3], + ["Angola (Republic of)",6.4], + ["Antigua and Barbuda",7], + ["Argentina (Argentine Republic)",9.8], + ["Armenia (Republic of)",5.5], + ["Australia (Commonwealth of)",10.6], + ["Austria (Republic of)",11.6], + ["Azerbaijan (Republic of)",0.8], + ["Bahamas (Commonwealth of the)",4.4], + ["Bahrain (Kingdom of)",1.9], + ["Bangladesh (People's Republic of)",0], + ["Barbados",9.6], + ["Bhutan (Kingdom of)",0.6], + ["Belarus (Republic of)",11.2], + ["Belgium (Kingdom of)",12.1], + ["Belize",6.7], + ["Benin (Republic of)",3], + ["Bolivia (Plurinational State of)",4.8], + ["Bosnia and Herzegovina",6.4], + ["Botswana (Republic of)",8.4], + ["Brazil (Federative Republic of)",7.8], + ["Brunei (Nation of the Abode of Peace)",0.4], + ["Bulgaria (Republic of)",12.7], + ["Burkina Faso",8.2], + ["Burundi (Republic of)",7.5], + ["Cambodia (Kingdom of)",6.7], + ["Cameroon (Republic of)",8.9], + ["Canada",8.9], + ["Cape Verde (Republic of)",5.7], + ["Central African Republic",3.3], + ["Chad (Republic of)",1.5], + ["Chile (Republic of)",9.3], + ["China (People's Republic of)",7.2], + ["Colombia (Republic of)",5.8], + ["Comoros (Union of the)",0.9], + ["Congo (Republic of the)",7.8], + ["Cook Islands",10.6], + ["Costa Rica (Republic of)",4.8], + ["Côte d'Ivoire (Republic of)",8.4], + ["Croatia (Republic of)",8.9], + ["Cuba (Republic of)",6.1], + ["Cyprus (Republic of)",10.8], + ["Czech Republic",14.4], + ["Denmark (Kingdom of)",10.4], + ["Djibouti (Republic of)",0.5], + ["Dominica (Commonwealth of)",8.2], + ["Dominican Republic",6.9], + ["Congo (Democratic Republic of the)",2.6], + ["Ecuador (Republic of)",4.4], + ["Egypt (Arab Republic of)",0.4], + ["Equatorial Guinea (Republic of)",11.3], + ["El Salvador (Republic of)",3.7], + ["Eritrea (State of)",1.3], + ["Estonia (Republic of)",11.6], + ["Eswatini (Kingdom of)",9.9], + ["Ethiopia (Federal Democratic Republic of)",2.8], + ["Fiji (Republic of)",3], + ["Finland (Republic of)",10.7], + ["France (French Republic)",12.6], + ["Gabon (Gabonese Republic)",11.5], + ["Gambia (Republic of the)",3.8], + ["Georgia",9.8], + ["Germany (Federal Republic of)",13.4], + ["Ghana (Republic of)",2.7], + ["Greece (Hellenic Republic)",10.4], + ["Grenada",9.3], + ["Guatemala (Republic of)",2.4], + ["Guinea (Republic of)",1.3], + ["Guinea-Bissau (Republic of)",4.8], + ["Guyana (Co-operative Republic of)",6.3], + ["Haiti (Republic of)",5.8], + ["Honduras (Republic of)",4], + ["Hungary (Republic of)",11.4], + ["Iceland (Republic of)",9.1], + ["India (Republic of)",5.7], + ["Indonesia (Republic of)",0.8], + ["Iran (Islamic Republic of)",1], + ["Iraq (Republic of)",0.4], + ["Ireland",13], + ["Israel (State of)",3.8], + ["Italy (Italian Republic)",7.5], + ["Jamaica",4.2], + ["Japan",8], + ["Jordan (Hashemite Kingdom of)",0.7], + ["Kazakhstan (Republic of)",7.7], + ["Kenya (Republic of)",3.4], + ["Kiribati (Republic of)",0.4], + ["Kuwait (State of)",0], + ["Kyrgyz Republic",6.2], + ["Lao (People's Democratic Republic)",10.4], + ["Latvia (Republic of)",12.9], + ["Lebanon (Lebanese Republic)",1.5], + ["Lesotho (Kingdom of)",5], + ["Liberia (Republic of)",5.8], + ["Libya (State of)",0], + ["Lithuania (Republic of)",15], + ["Luxembourg (Grand Duchy of)",13], + ["North Macedonia (Republic of)",8.1], + ["Madagascar (Republic of)",1.9], + ["Malawi (Republic of)",3.7], + ["Malaysia",0.9], + ["Maldives (Republic of)",2.7], + ["Mali (Republic of)",1.3], + ["Malta (Republic of)",8.1], + ["Mauritania (Islamic Republic of)",0], + ["Mauritius (Republic of)",3.6], + ["Mexico (United Mexican States)",6.5], + ["Micronesia (Federated States of)",2.5], + ["Moldova (Republic of)",15.2], + ["Mongolia",7.4], + ["Montenegro",8], + ["Morocco (Kingdom of)",0.6], + ["Mozambique (Republic of)",2.4], + ["Myanmar (Union of)",4.8], + ["Namibia (Republic of)",9.8], + ["Nauru (Republic of)",6], + ["Nepal (Federal Democratic Republic of)",2], + ["Netherlands (Kingdom of the)",8.7], + ["Sint Maarten (Netherlands)",null], + ["New Caledonia",null], + ["New Zealand",10.7], + ["Nicaragua (Republic of)",5.2], + ["Niger (Republic of)",0.5], + ["Nigeria (Federal Republic of)",13.4], + ["Niue",7], + ["Korea (Democratic People's Republic of)",3.9], + ["Norway (Kingdom of)",7.5], + ["Oman (Sultanate of)",0.8], + ["Pakistan (Islamic Republic of)",0.3], + ["Panama (Republic of)",7.9], + ["Papua New Guinea (Independent State of)",1.2], + ["Paraguay (Republic of)",7.2], + ["Peru (Republic of)",6.3], + ["Philippines (Republic of the)",6.6], + ["Poland (Republic of)",11.6], + ["Portugal (Portuguese Republic)",12.3], + ["Qatar (State of)",2], + ["Romania",12.6], + ["Russian Federation",11.7], + ["Rwanda (Republic of)",9], + ["Saint Kitts and Nevis (Federation of)",9.4], + ["Saint Lucia",9.9], + ["Saint Vincent and the Grenadines",8.2], + ["Samoa (Independent State of)",2.5], + ["São Tomé and Príncipe (Democratic Republic of)",6.8], + ["Saudi Arabia (Kingdom of)",0.2], + ["Senegal (Republic of)",0.7], + ["Serbia (Republic of)",11.1], + ["Seychelles (Republic of)",13.8], + ["Sierra Leone (Republic of)",5.7], + ["Singapore (Republic of)",2.5], + ["Slovakia (Slovak Republic)",11.5], + ["Slovenia (Republic of)",12.6], + ["Solomon Islands",1.4], + ["Somalia (Federal Republic of)",0], + ["South Africa (Republic of)",9.3], + ["Korea (Republic of)",10.2], + ["Spain (Kingdom of)",10], + ["Sri Lanka (Democratic Socialist Republic of)",4.3], + ["Sudan (Republic of the)",0.5], + ["Suriname (Republic of)",5.1], + ["Syrian Arab Republic",0.3], + ["Sweden (Kingdom of)",9.2], + ["Switzerland (Swiss Confederation)",11.5], + ["Tajikistan (Republic of)",3.3], + ["Tanzania (United Republic of)",9.4], + ["Thailand (Kingdom of)",8.3], + ["Timor-Leste (Democratic Republic of)",2.1], + ["Togo (Togolese Republic)",3.1], + ["Tonga (Kingdom of)",1.5], + ["Trinidad and Tobago (Republic of)",8.4], + ["Tunisia (Republic of)",1.9], + ["Turkey (Republic of)",2], + ["Turkmenistan",5.4], + ["Tuvalu",1.7], + ["Uganda (Republic of)",9.5], + ["Ukraine",8.6], + ["United Arab Emirates",3.8], + ["United Kingdom (of Great Britain & Northern Ireland)",11.4], + ["United States (of America)",9.8], + ["Uruguay (Oriental Republic of)",10.8], + ["Uzbekistan (Republic of)",2.7], + ["Vanuatu (Republic of)",1], + ["Venezuela (Bolivarian Republic of)",5.6], + ["Vietnam (Socialist Republic of)",8.3], + ["Yemen (Republic of)",0.1], + ["Zambia (Republic of)",4.8], + ["Zimbabwe (Republic of)",4.8] + ] +} diff --git a/data/global/health/drugs/antidepressent-consumption.json b/data/global/health/drugs/antidepressent-consumption.json new file mode 100644 index 0000000..9f98903 --- /dev/null +++ b/data/global/health/drugs/antidepressent-consumption.json @@ -0,0 +1,51 @@ +{ + "metadata" : { + "name" : "Anti-Depressant Consumption", + "description" : "Anti-Depressant consumption measured as defined daily dosages per 1000 population per day.", + "units" : "daily dosages/1k population", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","drugs","anti-depressants"], + "authors" : [ + "OECD" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_antidepressant_consumption" + ] + }, + "data" : [ + ["country.name","antidepressant.consumption"], + ["Iceland (Republic of)",141.4], + ["Australia (Commonwealth of)",106.7], + ["Portugal (Portuguese Republic)",103.6], + ["United Kingdom (of Great Britain & Northern Ireland)",100.1], + ["Canada",99.6], + ["Sweden (Kingdom of)",96.8], + ["Belgium (Kingdom of)",79], + ["Denmark (Kingdom of)",77], + ["Spain (Kingdom of)",75.5], + ["New Zealand",72.8], + ["Finland (Republic of)",67.6], + ["Austria (Republic of)",60.5], + ["Slovenia (Republic of)",58.6], + ["Norway (Kingdom of)",57.1], + ["Czech Republic",57.1], + ["Germany (Federal Republic of)",56.5], + ["Luxembourg (Grand Duchy of)",52.7], + ["France (French Republic)",49.8], + ["Israel (State of)",49.2], + ["Greece (Hellenic Republic)",48.1], + ["Netherlands (Kingdom of the)",46.1], + ["Chile (Republic of)",41.4], + ["Turkey (Republic of)",41], + ["Italy (Italian Republic)",40.3], + ["Slovakia (Slovak Republic)",38.9], + ["Hungary (Republic of)",28.8], + ["Estonia (Republic of)",28.8], + ["Korea (Republic of)",19.9], + ["Latvia (Republic of)",13.3] + ] +} diff --git a/data/global/health/drugs/cannabis-consumption.json b/data/global/health/drugs/cannabis-consumption.json new file mode 100644 index 0000000..649e4e7 --- /dev/null +++ b/data/global/health/drugs/cannabis-consumption.json @@ -0,0 +1,183 @@ +{ + "metadata" : { + "name" : "Cannabis Consumpion", + "description" : "Annual prevelance of cannabis use as a percentage of the national population.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","drugs","cannabis"], + "authors" : [ + "United Nations (UN) Office on Drugs and Crime (UNODC)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Annual_cannabis_use_by_country" + ] + }, + "data" : [ + ["country.name","cannabis.consumption.rate"], + ["Afghanistan (Islamic Republic of)",0.043], + ["Albania (Republic of)",0.018], + ["Algeria (People's Democratic Republic of)",0.057], + ["American Samoa",0.07], + ["Andorra (Principality of)",0.146], + ["Angola (Republic of)",0.021], + ["Antigua and Barbuda",0.106], + ["Argentina (Argentine Republic)",0.072], + ["Armenia (Republic of)",0.035], + ["Australia (Commonwealth of)",0.116], + ["Austria (Republic of)",0.035], + ["Azerbaijan (Republic of)",0.035], + ["Bahamas (Commonwealth of the)",0.055], + ["Bahrain (Kingdom of)",0.004], + ["Bangladesh (People's Republic of)",0.033], + ["Barbados",0.083], + ["Belarus (Republic of)",0.011], + ["Belgium (Kingdom of)",0.051], + ["Belize",0.085], + ["Bolivia (Plurinational State of)",0.043], + ["Bosnia and Herzegovina",0.028], + ["Brazil (Federative Republic of)",0.026], + ["Brunei (Nation of the Abode of Peace)",0.0002], + ["Bulgaria (Republic of)",0.025], + ["Burkina Faso",0.029], + ["Cambodia (Kingdom of)",0.035], + ["Canada",0.27], + ["Cape Verde (Republic of)",0.081], + ["Chad (Republic of)",0.009], + ["Chile (Republic of)",0.348], + ["China (People's Republic of)",0.0004], + ["Colombia (Republic of)",0.023], + ["Comoros (Union of the)",0.029], + ["Costa Rica (Republic of)",0.01], + ["Croatia (Republic of)",0.052], + ["Cyprus (Republic of)",0.044], + ["Czech Republic",0.152], + ["Denmark (Kingdom of)",0.055], + ["Dominica (Commonwealth of)",0.108], + ["Dominican Republic",0.003], + ["Ecuador (Republic of)",0.007], + ["Egypt (Arab Republic of)",0.062], + ["El Salvador (Republic of)",0.004], + ["Estonia (Republic of)",0.06], + ["Ethiopia (Federal Democratic Republic of)",0.026], + ["Faroe Islands",0.022], + ["Fiji (Republic of)",0.051], + ["Finland (Republic of)",0.031], + ["France (French Republic)",0.086], + ["Georgia",0.027], + ["Germany (Federal Republic of)",0.048], + ["Ghana (Republic of)",0.215], + ["Gibraltar",0.052], + ["Greece (Hellenic Republic)",0.017], + ["Greenland",0.076], + ["Grenada",0.108], + ["Guam",0.184], + ["Guatemala (Republic of)",0.048], + ["Guyana (Co-operative Republic of)",0.026], + ["Haiti (Republic of)",0.014], + ["Honduras (Republic of)",0.008], + ["Hong Kong (Special Administrative Region of China)",0.004], + ["Hungary (Republic of)",0.023], + ["Iceland (Republic of)",0.183], + ["India (Republic of)",0.032], + ["Indonesia (Republic of)",0.004], + ["Iran (Islamic Republic of)",0.042], + ["Ireland",0.063], + ["Isle of Man",0.094], + ["Israel (State of)",0.27], + ["Italy (Italian Republic)",0.146], + ["Jamaica",0.099], + ["Japan",0.003], + ["Jordan (Hashemite Kingdom of)",0.021], + ["Kazakhstan (Republic of)",0.042], + ["Kenya (Republic of)",0.021], + ["Korea (Republic of)",0.003], + ["Kuwait (State of)",0.031], + ["Kyrgyz Republic",0.064], + ["Lao (People's Democratic Republic)",0.009], + ["Latvia (Republic of)",0.049], + ["Lebanon (Lebanese Republic)",0.019], + ["Libya (State of)",0.0005], + ["Liechtenstein (Principality of)",0.086], + ["Lithuania (Republic of)",0.056], + ["Luxembourg (Grand Duchy of)",0.076], + ["Macao (Special Administrative Region of China)",0.007], + ["Madagascar (Republic of)",0.091], + ["Malaysia",0.016], + ["Maldives (Republic of)",0.005], + ["Mali (Republic of)",0.078], + ["Malta (Republic of)",0.045], + ["Marshall Islands (Republic of the)",0.055], + ["Mauritius (Republic of)",0.039], + ["Mexico (United Mexican States)",0.012], + ["Moldova (Republic of)",0.009], + ["Monaco (Principality of)",0.089], + ["Montenegro",0.002], + ["Morocco (Kingdom of)",0.042], + ["Myanmar (Union of)",0.009], + ["Namibia (Republic of)",0.039], + ["Nepal (Federal Democratic Republic of)",0.032], + ["Netherlands (Kingdom of the)",0.08], + ["New Caledonia",0.019], + ["New Zealand",0.146], + ["Nicaragua (Republic of)",0.011], + ["Nigeria (Federal Republic of)",0.143], + ["Northern Mariana Islands (Commonwealth of the)",0.222], + ["North Macedonia (Republic of)",0.006], + ["Norway (Kingdom of)",0.05], + ["Oman (Sultanate of)",0.001], + ["Pakistan (Islamic Republic of)",0.039], + ["Palau (Republic of)",0.242], + ["Panama (Republic of)",0.036], + ["Papua New Guinea (Independent State of)",0.295], + ["Paraguay (Republic of)",0.016], + ["Peru (Republic of)",0.007], + ["Philippines (Republic of the)",0.008], + ["Poland (Republic of)",0.027], + ["Portugal (Portuguese Republic)",0.033], + ["Puerto Rico (Commonwealth of)",0.049], + ["Qatar (State of)",0.001], + ["Romania",0.004], + ["Russian Federation",0.035], + ["Saint Kitts and Nevis (Federation of)",0.117], + ["Saint Lucia",0.09], + ["Saint Vincent and the Grenadines",0.071], + ["Saudi Arabia (Kingdom of)",0.003], + ["Senegal (Republic of)",0.028], + ["Serbia (Republic of)",0.041], + ["Sierra Leone (Republic of)",0.161], + ["Singapore (Republic of)",4e-05], + ["Slovakia (Slovak Republic)",0.069], + ["Slovenia (Republic of)",0.041], + ["Somalia (Federal Republic of)",0.025], + ["South Africa (Republic of)",0.043], + ["Spain (Kingdom of)",0.106], + ["Sri Lanka (Democratic Socialist Republic of)",0.015], + ["Suriname (Republic of)",0.043], + ["Sweden (Kingdom of)",0.029], + ["Switzerland (Swiss Confederation)",0.034], + ["Syrian Arab Republic",0.02], + ["Taiwan",0.003], + ["Tajikistan (Republic of)",0.034], + ["Tanzania (United Republic of)",0.002], + ["Thailand (Kingdom of)",0.012], + ["Togo (Togolese Republic)",0.01], + ["Trinidad and Tobago (Republic of)",0.047], + ["Turkey (Republic of)",0.019], + ["Turks and Caicos Islands",0.054], + ["Uganda (Republic of)",0.014], + ["Ukraine",0.025], + ["United Arab Emirates",0.054], + ["United States (of America)",0.162], + ["Uruguay (Oriental Republic of)",0.06], + ["Uzbekistan (Republic of)",0.042], + ["Vanuatu (Republic of)",0.001], + ["Venezuela (Bolivarian Republic of)",0.009], + ["Vietnam (Socialist Republic of)",0.003], + ["Zambia (Republic of)",0.095], + ["Zimbabwe (Republic of)",0.069] + ] +} diff --git a/data/global/health/drugs/opiate-consumption.json b/data/global/health/drugs/opiate-consumption.json new file mode 100644 index 0000000..77bc573 --- /dev/null +++ b/data/global/health/drugs/opiate-consumption.json @@ -0,0 +1,152 @@ +{ + "metadata" : { + "name" : "Opiates Usage", + "description" : "Annual prevelance of opiates use as a percentage of the national population.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","drugs","opiates"], + "authors" : [ + "World Drug Report and United Nations Office on Drugs And Crime (UNODC)" + ], + "sources" : [ + "" + ] + }, + "data" : [ + ["country.name","opiates.consumption.rate"], + ["Afghanistan (Islamic Republic of)",0.0365], + ["Iran (Islamic Republic of)",0.0331], + ["Russian Federation",0.0164], + ["Maldives (Republic of)",0.0134], + ["Ukraine",0.0116], + ["Macao (Special Administrative Region of China)",0.011], + ["United States (of America)",0.0104], + ["Kazakhstan (Republic of)",0.0103], + ["Pakistan (Islamic Republic of)",0.01], + ["Malaysia",0.0094], + ["Uzbekistan (Republic of)",0.0093], + ["Mauritius (Republic of)",0.0091], + ["Kyrgyz Republic",0.0089], + ["Estonia (Republic of)",0.0081], + ["Myanmar (Union of)",0.008], + ["Belarus (Republic of)",0.0076], + ["United Kingdom (of Great Britain & Northern Ireland)",0.0073], + ["Georgia",0.0072], + ["Ireland",0.0072], + ["Nigeria (Federal Republic of)",0.007], + ["Luxembourg (Grand Duchy of)",0.0059], + ["Malta (Republic of)",0.0059], + ["Vietnam (Socialist Republic of)",0.0053], + ["Italy (Italian Republic)",0.0052], + ["Tajikistan (Republic of)",0.0052], + ["Denmark (Kingdom of)",0.0052], + ["France (French Republic)",0.0052], + ["Bulgaria (Republic of)",0.005], + ["North Macedonia (Republic of)",0.005], + ["Austria (Republic of)",0.005], + ["Latvia (Republic of)",0.0049], + ["Portugal (Portuguese Republic)",0.0049], + ["Slovenia (Republic of)",0.0049], + ["Albania (Republic of)",0.0045], + ["Switzerland (Swiss Confederation)",0.0043], + ["South Africa (Republic of)",0.0041], + ["Zambia (Republic of)",0.004], + ["Canada",0.004], + ["Belgium (Kingdom of)",0.004], + ["Nepal (Federal Democratic Republic of)",0.004], + ["Czech Republic",0.004], + ["India (Republic of)",0.004], + ["Israel (State of)",0.004], + ["Lao (People's Democratic Republic)",0.0037], + ["Bangladesh (People's Republic of)",0.0037], + ["Croatia (Republic of)",0.0035], + ["Turkmenistan",0.0032], + ["Angola (Republic of)",0.003], + ["Taiwan",0.003], + ["Bahrain (Kingdom of)",0.003], + ["Iceland (Republic of)",0.003], + ["Sri Lanka (Democratic Socialist Republic of)",0.003], + ["Chile (Republic of)",0.003], + ["Norway (Kingdom of)",0.0027], + ["Cyprus (Republic of)",0.0025], + ["Lithuania (Republic of)",0.0024], + ["Greece (Hellenic Republic)",0.0023], + ["Germany (Federal Republic of)",0.0022], + ["Kenya (Republic of)",0.0022], + ["Spain (Kingdom of)",0.0021], + ["Thailand (Kingdom of)",0.002], + ["Australia (Commonwealth of)",0.002], + ["Armenia (Republic of)",0.002], + ["Somalia (Federal Republic of)",0.002], + ["Bahamas (Commonwealth of the)",0.002], + ["Congo (Democratic Republic of the)",0.002], + ["Azerbaijan (Republic of)",0.002], + ["Chad (Republic of)",0.002], + ["Liberia (Republic of)",0.002], + ["Sierra Leone (Republic of)",0.002], + ["Korea (Republic of)",0.002], + ["Hong Kong (Special Administrative Region of China)",0.002], + ["Indonesia (Republic of)",0.002], + ["China (People's Republic of)",0.002], + ["Guatemala (Republic of)",0.002], + ["Panama (Republic of)",0.002], + ["Lebanon (Lebanese Republic)",0.002], + ["Kuwait (State of)",0.002], + ["Jordan (Hashemite Kingdom of)",0.002], + ["Uruguay (Oriental Republic of)",0.002], + ["Poland (Republic of)",0.002], + ["Romania",0.0017], + ["Netherlands (Kingdom of the)",0.0013], + ["Slovakia (Slovak Republic)",0.0013], + ["Hungary (Republic of)",0.0013], + ["El Salvador (Republic of)",0.0011], + ["Barbados",0.0011], + ["Brazil (Federative Republic of)",0.001], + ["New Zealand",0.001], + ["Argentina (Argentine Republic)",0.001], + ["Colombia (Republic of)",0.001], + ["Rwanda (Republic of)",0.001], + ["Dominican Republic",0.001], + ["Algeria (People's Democratic Republic of)",0.001], + ["Libya (State of)",0.001], + ["Thailand (Kingdom of)",0.001], + ["Ghana (Republic of)",0.001], + ["Congo (Republic of the)",0.001], + ["Central African Republic",0.001], + ["Niger (Republic of)",0.001], + ["Japan",0.001], + ["Costa Rica (Republic of)",0.001], + ["Honduras (Republic of)",0.001], + ["Mexico (United Mexican States)",0.001], + ["Venezuela (Bolivarian Republic of)",0.001], + ["Ecuador (Republic of)",0.001], + ["Finland (Republic of)",0.001], + ["Sweden (Kingdom of)",0.001], + ["Oman (Sultanate of)",0.0009], + ["Yemen (Republic of)",0.0009], + ["Moldova (Republic of)",0.0007], + ["Ethiopia (Federal Democratic Republic of)",0.0005], + ["Uganda (Republic of)",0.0005], + ["Antigua and Barbuda",0.0005], + ["Turkey (Republic of)",0.0005], + ["Bolivia (Plurinational State of)",0.0007], + ["Zimbabwe (Republic of)",0.0004], + ["Tunisia (Republic of)",0.0003], + ["Namibia (Republic of)",0.0003], + ["Senegal (Republic of)",0.0008], + ["Suriname (Republic of)",0.0002], + ["Tanzania (United Republic of)",0.0002], + ["Morocco (Kingdom of)",0.0002], + ["United Arab Emirates",0.0002], + ["Syrian Arab Republic",0.0002], + ["Côte d'Ivoire (Republic of)",0.0001], + ["Brunei (Nation of the Abode of Peace)",0.0001], + ["Saudi Arabia (Kingdom of)",0.0001], + ["Qatar (State of)",0.0001], + ["Singapore (Republic of)",4e-05] + ] +} diff --git a/data/global/health/drugs/tabacco-consumption.json b/data/global/health/drugs/tabacco-consumption.json new file mode 100644 index 0000000..614ca5f --- /dev/null +++ b/data/global/health/drugs/tabacco-consumption.json @@ -0,0 +1,203 @@ +{ + "metadata" : { + "name" : "Tobacco Consumption", + "description" : "Annual cigarette consumption per-capita (age 15 and over).", + "units" : "cigarettes", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","drugs","tobacco"], + "authors" : [ + "Tobacco Atlas" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Tobacco_consumption_by_country" + ] + }, + "data" : [ + ["country.name","cigarettes.percapita"], + ["Andorra (Principality of)",6398.3], + ["Luxembourg (Grand Duchy of)",6330.9], + ["Belarus (Republic of)",2911.3], + ["North Macedonia (Republic of)",2784.9], + ["Albania (Republic of)",2491.6], + ["Belgium (Kingdom of)",2440.9], + ["Czech Republic",2427.9], + ["Jordan (Hashemite Kingdom of)",2306.1], + ["Russian Federation",2295], + ["Syrian Arab Republic",2291.7], + ["Slovenia (Republic of)",2236.5], + ["Greece (Hellenic Republic)",2078.6], + ["Hungary (Republic of)",2060.3], + ["China (People's Republic of)",2043], + ["Lebanon (Lebanese Republic)",2037.5], + ["Armenia (Republic of)",1985.7], + ["Mongolia",1982.5], + ["Cyprus (Republic of)",1961.4], + ["Austria (Republic of)",1927], + ["Georgia",1917.7], + ["Serbia (Republic of)",1898.6], + ["Ukraine",1849.4], + ["Kazakhstan (Republic of)",1800.9], + ["Turkey (Republic of)",1770.7], + ["Bosnia and Herzegovina",1767.2], + ["Estonia (Republic of)",1759.9], + ["Bulgaria (Republic of)",1757.3], + ["Moldova (Republic of)",1747.2], + ["Papua New Guinea (Independent State of)",1689.3], + ["Indonesia (Republic of)",1675.5], + ["Korea (Republic of)",1667.4], + ["Germany (Federal Republic of)",1599.5], + ["Japan",1583.2], + ["Tunisia (Republic of)",1580], + ["Croatia (Republic of)",1578.9], + ["Malta (Republic of)",1527.9], + ["Azerbaijan (Republic of)",1525.6], + ["Slovakia (Slovak Republic)",1500.9], + ["Spain (Kingdom of)",1499], + ["Italy (Italian Republic)",1493.3], + ["Switzerland (Swiss Confederation)",1489.8], + ["Samoa (Independent State of)",1470.6], + ["Netherlands (Kingdom of the)",1459.9], + ["Egypt (Arab Republic of)",1449.4], + ["Solomon Islands",1419.1], + ["Kuwait (State of)",1412.7], + ["Kiribati (Republic of)",1396], + ["Poland (Republic of)",1363.1], + ["Saudi Arabia (Kingdom of)",1341], + ["Denmark (Kingdom of)",1298], + ["Lithuania (Republic of)",1292], + ["Israel (State of)",1280.7], + ["Romania",1204.3], + ["Latvia (Republic of)",1189.1], + ["Iraq (Republic of)",1184.4], + ["Argentina (Argentine Republic)",1176.1], + ["Portugal (Portuguese Republic)",1133.4], + ["Philippines (Republic of the)",1132.2], + ["Bahrain (Kingdom of)",1101.5], + ["Montenegro",1100.8], + ["Finland (Republic of)",1098.8], + ["France (French Republic)",1089.9], + ["Vanuatu (Republic of)",1069.2], + ["Vietnam (Socialist Republic of)",1049.6], + ["Algeria (People's Democratic Republic of)",1046.7], + ["Canada",1021.3], + ["Qatar (State of)",1020.3], + ["United States (of America)",1016.6], + ["Korea (Democratic People's Republic of)",993.3], + ["Tonga (Kingdom of)",986.9], + ["Ireland",976.5], + ["Turkmenistan",962.1], + ["Iran (Islamic Republic of)",936.5], + ["Australia (Commonwealth of)",917], + ["Uruguay (Oriental Republic of)",899.4], + ["Singapore (Republic of)",851.2], + ["Iceland (Republic of)",848.1], + ["Thailand (Kingdom of)",837.4], + ["United Kingdom (of Great Britain & Northern Ireland)",827.7], + ["Lao (People's Democratic Republic)",814.6], + ["Djibouti (Republic of)",785.5], + ["Chile (Republic of)",769.3], + ["United Arab Emirates",748.5], + ["Bangladesh (People's Republic of)",744.1], + ["Cambodia (Kingdom of)",726.2], + ["Sweden (Kingdom of)",716.2], + ["New Zealand",685.1], + ["Trinidad and Tobago (Republic of)",682.5], + ["Morocco (Kingdom of)",682.3], + ["Comoros (Union of the)",585.4], + ["Maldives (Republic of)",560.9], + ["Saint Lucia",553.9], + ["Norway (Kingdom of)",552.8], + ["Seychelles (Republic of)",543.6], + ["Mauritius (Republic of)",542.5], + ["Kyrgyz Republic",519.6], + ["Suriname (Republic of)",511.7], + ["Nepal (Federal Democratic Republic of)",511.6], + ["South Africa (Republic of)",509.6], + ["Mozambique (Republic of)",501.9], + ["Uzbekistan (Republic of)",495.9], + ["Fiji (Republic of)",491.1], + ["Honduras (Republic of)",469.8], + ["Sierra Leone (Republic of)",468.6], + ["Gabon (Gabonese Republic)",451.2], + ["Lesotho (Kingdom of)",448], + ["Malaysia",441.2], + ["Bahamas (Commonwealth of the)",438.6], + ["Botswana (Republic of)",433.5], + ["Yemen (Republic of)",423.8], + ["Costa Rica (Republic of)",411.4], + ["Burkina Faso",408.1], + ["Madagascar (Republic of)",404.2], + ["Cape Verde (Republic of)",397.1], + ["Venezuela (Bolivarian Republic of)",396.2], + ["Paraguay (Republic of)",384.5], + ["South Sudan (Republic of)",383.7], + ["Pakistan (Islamic Republic of)",363.2], + ["Tajikistan (Republic of)",361.1], + ["Senegal (Republic of)",359.4], + ["Guyana (Co-operative Republic of)",359.1], + ["Côte d'Ivoire (Republic of)",352.7], + ["Colombia (Republic of)",351.4], + ["Angola (Republic of)",340.2], + ["Sudan (Republic of the)",339.9], + ["Brazil (Federative Republic of)",333.5], + ["Equatorial Guinea (Republic of)",328.2], + ["Nicaragua (Republic of)",327.8], + ["Libya (State of)",327.2], + ["Mexico (United Mexican States)",327.1], + ["Mali (Republic of)",316.9], + ["Guinea (Republic of)",316], + ["Jamaica",312.5], + ["Afghanistan (Islamic Republic of)",311.6], + ["Namibia (Republic of)",298.4], + ["Bolivia (Plurinational State of)",291.6], + ["Chad (Republic of)",279.3], + ["Barbados",277.5], + ["Oman (Sultanate of)",271.1], + ["Kenya (Republic of)",264.4], + ["Saint Vincent and the Grenadines",259.6], + ["Sri Lanka (Democratic Socialist Republic of)",254.6], + ["Gambia (Republic of the)",249.1], + ["Malawi (Republic of)",241.1], + ["Burundi (Republic of)",239.4], + ["Cuba (Republic of)",233.5], + ["Myanmar (Union of)",226.5], + ["Panama (Republic of)",219.3], + ["Dominican Republic",218.9], + ["Central African Republic",213.2], + ["El Salvador (Republic of)",206.7], + ["Benin (Republic of)",204], + ["Somalia (Federal Republic of)",198.5], + ["Uganda (Republic of)",195.7], + ["Congo (Republic of the)",195.2], + ["Tanzania (United Republic of)",181.8], + ["Cameroon (Republic of)",171], + ["Belize",168.6], + ["Nigeria (Federal Republic of)",162.5], + ["Grenada",158.2], + ["Liberia (Republic of)",154.4], + ["Dominica (Commonwealth of)",147.4], + ["Togo (Togolese Republic)",147.3], + ["Zambia (Republic of)",145.4], + ["Haiti (Republic of)",143], + ["Eritrea (State of)",132.3], + ["Congo (Democratic Republic of the)",128], + ["Zimbabwe (Republic of)",122.9], + ["Niger (Republic of)",118.8], + ["Ethiopia (Federal Democratic Republic of)",115.3], + ["Guatemala (Republic of)",111.8], + ["Peru (Republic of)",97.7], + ["Rwanda (Republic of)",94], + ["Ecuador (Republic of)",93.5], + ["Eswatini (Kingdom of)",91.7], + ["India (Republic of)",89.3], + ["Antigua and Barbuda",89.2], + ["Ghana (Republic of)",40.5], + ["Mauritania (Islamic Republic of)",30.3], + ["Guinea-Bissau (Republic of)",25.3], + ["Brunei (Nation of the Abode of Peace)",9.7] + ] +} diff --git a/data/global/health/general/obeasity-rate.json b/data/global/health/general/obeasity-rate.json new file mode 100644 index 0000000..c2c3302 --- /dev/null +++ b/data/global/health/general/obeasity-rate.json @@ -0,0 +1,213 @@ +{ + "metadata" : { + "name" : "Obeasity Rate", + "description" : "Percentage of the adult population who is medically obease", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","obeasity","fitness"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_obesity_rate" + ] + }, + "data" : [ + ["country.name","obeasity.rate"], + ["Nauru (Republic of)",0.61], + ["Cook Islands",0.559], + ["Palau (Republic of)",0.553], + ["Marshall Islands (Republic of the)",0.529], + ["Tuvalu",0.516], + ["Niue",0.5], + ["Tonga (Kingdom of)",0.482], + ["Samoa (Independent State of)",0.473], + ["Kiribati (Republic of)",0.46], + ["Micronesia (Federated States of)",0.458], + ["Kuwait (State of)",0.379], + ["United States (of America)",0.362], + ["Jordan (Hashemite Kingdom of)",0.355], + ["Saudi Arabia (Kingdom of)",0.354], + ["Qatar (State of)",0.351], + ["Libya (State of)",0.325], + ["Turkey (Republic of)",0.321], + ["Egypt (Arab Republic of)",0.32], + ["Lebanon (Lebanese Republic)",0.32], + ["United Arab Emirates",0.317], + ["Bahamas (Commonwealth of the)",0.316], + ["New Zealand",0.308], + ["Iraq (Republic of)",0.304], + ["Fiji (Republic of)",0.302], + ["Bahrain (Kingdom of)",0.298], + ["Canada",0.294], + ["Australia (Commonwealth of)",0.29], + ["Malta (Republic of)",0.289], + ["Mexico (United Mexican States)",0.289], + ["Argentina (Argentine Republic)",0.283], + ["South Africa (Republic of)",0.283], + ["Chile (Republic of)",0.28], + ["Dominica (Commonwealth of)",0.279], + ["Uruguay (Oriental Republic of)",0.279], + ["Syrian Arab Republic",0.278], + ["United Kingdom (of Great Britain & Northern Ireland)",0.278], + ["Dominican Republic",0.278], + ["Algeria (People's Democratic Republic of)",0.274], + ["Oman (Sultanate of)",0.27], + ["Tunisia (Republic of)",0.269], + ["Suriname (Republic of)",0.264], + ["Hungary (Republic of)",0.264], + ["Lithuania (Republic of)",0.263], + ["Morocco (Kingdom of)",0.261], + ["Israel (State of)",0.261], + ["Czech Republic",0.26], + ["Iran (Islamic Republic of)",0.258], + ["Costa Rica (Republic of)",0.257], + ["Andorra (Principality of)",0.256], + ["Venezuela (Bolivarian Republic of)",0.256], + ["Ireland",0.253], + ["Vanuatu (Republic of)",0.252], + ["Bulgaria (Republic of)",0.25], + ["Greece (Hellenic Republic)",0.249], + ["Jamaica",0.247], + ["Cuba (Republic of)",0.246], + ["El Salvador (Republic of)",0.246], + ["Belarus (Republic of)",0.245], + ["Croatia (Republic of)",0.244], + ["Belize",0.241], + ["Ukraine",0.241], + ["Spain (Kingdom of)",0.238], + ["Nicaragua (Republic of)",0.237], + ["Saint Vincent and the Grenadines",0.237], + ["Latvia (Republic of)",0.236], + ["Montenegro",0.233], + ["Norway (Kingdom of)",0.231], + ["Barbados",0.231], + ["Poland (Republic of)",0.231], + ["Russian Federation",0.231], + ["Saint Kitts and Nevis (Federation of)",0.229], + ["Panama (Republic of)",0.227], + ["Haiti (Republic of)",0.227], + ["Luxembourg (Grand Duchy of)",0.226], + ["Solomon Islands",0.225], + ["Romania",0.225], + ["North Macedonia (Republic of)",0.224], + ["Colombia (Republic of)",0.223], + ["Germany (Federal Republic of)",0.223], + ["Finland (Republic of)",0.222], + ["Belgium (Kingdom of)",0.221], + ["Brazil (Federative Republic of)",0.221], + ["Iceland (Republic of)",0.219], + ["Cyprus (Republic of)",0.218], + ["Albania (Republic of)",0.217], + ["Georgia",0.217], + ["France (French Republic)",0.216], + ["Serbia (Republic of)",0.215], + ["Honduras (Republic of)",0.214], + ["Grenada",0.213], + ["Papua New Guinea (Independent State of)",0.213], + ["Estonia (Republic of)",0.212], + ["Guatemala (Republic of)",0.212], + ["Kazakhstan (Republic of)",0.21], + ["Portugal (Portuguese Republic)",0.208], + ["Mongolia",0.206], + ["Sweden (Kingdom of)",0.206], + ["Slovakia (Slovak Republic)",0.205], + ["Netherlands (Kingdom of the)",0.204], + ["Paraguay (Republic of)",0.203], + ["Guyana (Co-operative Republic of)",0.202], + ["Slovenia (Republic of)",0.202], + ["Armenia (Republic of)",0.202], + ["Bolivia (Plurinational State of)",0.202], + ["Austria (Republic of)",0.201], + ["Azerbaijan (Republic of)",0.199], + ["Italy (Italian Republic)",0.199], + ["Ecuador (Republic of)",0.199], + ["Peru (Republic of)",0.197], + ["Saint Lucia",0.197], + ["Denmark (Kingdom of)",0.197], + ["Switzerland (Swiss Confederation)",0.195], + ["Antigua and Barbuda",0.189], + ["Botswana (Republic of)",0.189], + ["Moldova (Republic of)",0.189], + ["Trinidad and Tobago (Republic of)",0.186], + ["Turkmenistan",0.186], + ["Bosnia and Herzegovina",0.179], + ["Namibia (Republic of)",0.172], + ["Yemen (Republic of)",0.171], + ["Kyrgyz Republic",0.166], + ["Lesotho (Kingdom of)",0.166], + ["Uzbekistan (Republic of)",0.166], + ["Eswatini (Kingdom of)",0.165], + ["Malaysia",0.156], + ["Zimbabwe (Republic of)",0.155], + ["Gabon (Gabonese Republic)",0.15], + ["Tajikistan (Republic of)",0.142], + ["Brunei (Nation of the Abode of Peace)",0.141], + ["Seychelles (Republic of)",0.14], + ["Djibouti (Republic of)",0.135], + ["Mauritania (Islamic Republic of)",0.127], + ["São Tomé and Príncipe (Democratic Republic of)",0.124], + ["Cape Verde (Republic of)",0.118], + ["Cameroon (Republic of)",0.114], + ["Ghana (Republic of)",0.109], + ["Mauritius (Republic of)",0.108], + ["Gambia (Republic of the)",0.103], + ["Côte d'Ivoire (Republic of)",0.103], + ["Thailand (Kingdom of)",0.1], + ["Liberia (Republic of)",0.099], + ["Benin (Republic of)",0.096], + ["Congo (Republic of the)",0.096], + ["Guinea-Bissau (Republic of)",0.095], + ["Nigeria (Federal Republic of)",0.089], + ["Senegal (Republic of)",0.088], + ["Sierra Leone (Republic of)",0.087], + ["Maldives (Republic of)",0.086], + ["Mali (Republic of)",0.086], + ["Pakistan (Islamic Republic of)",0.086], + ["Togo (Togolese Republic)",0.084], + ["Tanzania (United Republic of)",0.084], + ["Somalia (Federal Republic of)",0.083], + ["Angola (Republic of)",0.082], + ["Zambia (Republic of)",0.081], + ["Equatorial Guinea (Republic of)",0.08], + ["Comoros (Union of the)",0.078], + ["Guinea (Republic of)",0.077], + ["Central African Republic",0.075], + ["Mozambique (Republic of)",0.072], + ["Kenya (Republic of)",0.071], + ["Indonesia (Republic of)",0.069], + ["Korea (Democratic People's Republic of)",0.068], + ["Congo (Democratic Republic of the)",0.067], + ["Sudan (Republic of the)",0.066], + ["South Sudan (Republic of)",0.066], + ["Bhutan (Kingdom of)",0.064], + ["Philippines (Republic of the)",0.064], + ["China (People's Republic of)",0.062], + ["Singapore (Republic of)",0.061], + ["Chad (Republic of)",0.061], + ["Malawi (Republic of)",0.058], + ["Rwanda (Republic of)",0.058], + ["Burkina Faso",0.056], + ["Niger (Republic of)",0.055], + ["Afghanistan (Islamic Republic of)",0.055], + ["Burundi (Republic of)",0.054], + ["Madagascar (Republic of)",0.053], + ["Lao (People's Democratic Republic)",0.053], + ["Uganda (Republic of)",0.053], + ["Sri Lanka (Democratic Socialist Republic of)",0.052], + ["Eritrea (State of)",0.05], + ["Korea (Republic of)",0.047], + ["Ethiopia (Federal Democratic Republic of)",0.045], + ["Japan",0.043], + ["Nepal (Federal Democratic Republic of)",0.041], + ["Cambodia (Kingdom of)",0.039], + ["India (Republic of)",0.039], + ["Timor-Leste (Democratic Republic of)",0.038], + ["Bangladesh (People's Republic of)",0.036], + ["Vietnam (Socialist Republic of)",0.021] + ] +} diff --git a/data/global/health/life-expectancy/life-expectancy-female.json b/data/global/health/life-expectancy/life-expectancy-female.json new file mode 100644 index 0000000..d725500 --- /dev/null +++ b/data/global/health/life-expectancy/life-expectancy-female.json @@ -0,0 +1,259 @@ +{ + "metadata" : { + "name" : "Female Life Expectancy", + "description" : "Average female life expectancy from birth.", + "units" : "years", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","morbidity","mortality","life-expectancy","female","gender"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_life_expectancy" + ] + }, + "data" : [ + ["country.name","life.expectancy.female"], + ["Afghanistan (Islamic Republic of)",65.3], + ["Albania (Republic of)",79.2], + ["Algeria (People's Democratic Republic of)",78], + ["American Samoa",76.6], + ["Andorra (Principality of)",84.3], + ["Angola (Republic of)",64.3], + ["Anguilla",80.5], + ["Antigua and Barbuda",80.9], + ["Argentina (Argentine Republic)",78.6], + ["Armenia (Republic of)",77.4], + ["Aruba",77.3], + ["Australia (Commonwealth of)",85.8], + ["Austria (Republic of)",84.1], + ["Azerbaijan (Republic of)",73.3], + ["Bahamas (Commonwealth of the)",75.1], + ["Bahrain (Kingdom of)",80], + ["Bangladesh (People's Republic of)",74.3], + ["Barbados",79.4], + ["Belarus (Republic of)",77.7], + ["Belgium (Kingdom of)",84.3], + ["Belize",74.3], + ["Benin (Republic of)",61.4], + ["Bermuda",82.7], + ["Bhutan (Kingdom of)",73.8], + ["Bolivia (Plurinational State of)",66.8], + ["Bonaire (Sint Eustatius and Saba)",77.9], + ["Bosnia and Herzegovina",77.5], + ["Botswana (Republic of)",63.6], + ["Brazil (Federative Republic of)",76], + ["British Virgin Islands",77.5], + ["Brunei (Nation of the Abode of Peace)",76.9], + ["Bulgaria (Republic of)",75.5], + ["Burkina Faso",61], + ["Burundi (Republic of)",63.6], + ["Cambodia (Kingdom of)",72.3], + ["Cameroon (Republic of)",62], + ["Canada",84.7], + ["Cape Verde (Republic of)",78.5], + ["Cayman Islands",77.8], + ["Central African Republic",56.3], + ["Chad (Republic of)",54.3], + ["Chile (Republic of)",81.4], + ["China (People's Republic of)",81.2], + ["Colombia (Republic of)",76.4], + ["Comoros (Union of the)",65.8], + ["Congo (Republic of the)",64.9], + ["Cook Islands",78.8], + ["Costa Rica (Republic of)",79.8], + ["Côte d'Ivoire (Republic of)",59.9], + ["Croatia (Republic of)",81.1], + ["Cuba (Republic of)",76.4], + ["Curaçao",79.1], + ["Cyprus (Republic of)",83.2], + ["Czech Republic",80.9], + ["Congo (Democratic Republic of the)",61.5], + ["Denmark (Kingdom of)",83.3], + ["Djibouti (Republic of)",65], + ["Dominica (Commonwealth of)",76.3], + ["Dominican Republic",76.3], + ["Ecuador (Republic of)",77.5], + ["Egypt (Arab Republic of)",72.6], + ["El Salvador (Republic of)",75.1], + ["Equatorial Guinea (Republic of)",62.7], + ["Eritrea (State of)",68.7], + ["Estonia (Republic of)",81.2], + ["Eswatini (Kingdom of)",61.2], + ["Ethiopia (Federal Democratic Republic of)",68.3], + ["Faroe Islands",81], + ["Falkland Islands (Malvinas)",81], + ["Fiji (Republic of)",68.9], + ["Finland (Republic of)",84.7], + ["France (French Republic)",85.5], + ["French Guiana",78], + ["French Polynesia",82.6], + ["Gabon (Gabonese Republic)",68.5], + ["Gambia (Republic of the)",63.5], + ["Georgia",76.7], + ["Germany (Federal Republic of)",83.2], + ["Ghana (Republic of)",66], + ["Gibraltar",81.7], + ["Greece (Hellenic Republic)",82.9], + ["Greenland",75.7], + ["Grenada",77.9], + ["Guadeloupe",83.7], + ["Guam",80.7], + ["Guatemala (Republic of)",72.7], + ["Guernsey (Bailiwick of)",84], + ["Guinea (Republic of)",60.1], + ["Guinea-Bissau (Republic of)",61.8], + ["Guyana (Co-operative Republic of)",69.1], + ["Haiti (Republic of)",66.1], + ["Honduras (Republic of)",72.5], + ["Hong Kong (Special Administrative Region of China)",88.3], + ["Hungary (Republic of)",77.9], + ["Iceland (Republic of)",84.2], + ["India (Republic of)",68.9], + ["Indonesia (Republic of)",69.7], + ["Iran (Islamic Republic of)",76.8], + ["Iraq (Republic of)",72.4], + ["Ireland",83.8], + ["Isle of Man",82.5], + ["Israel (State of)",84.3], + ["Italy (Italian Republic)",85.1], + ["Jamaica",72.5], + ["Japan",87.7], + ["Jersey (Bailiwick of)",83], + ["Jordan (Hashemite Kingdom of)",76.8], + ["Kazakhstan (Republic of)",73.1], + ["Kenya (Republic of)",64.1], + ["Kiribati (Republic of)",69.1], + ["Kosovo (Republic of)",79.6], + ["Kuwait (State of)",81.5], + ["Kyrgyz Republic",74.4], + ["Lao (People's Democratic Republic)",70.1], + ["Latvia (Republic of)",77.8], + ["Lebanon (Lebanese Republic)",77.3], + ["Lesotho (Kingdom of)",55.9], + ["Liberia (Republic of)",62.1], + ["Libya (State of)",74.4], + ["Liechtenstein (Principality of)",85.4], + ["Lithuania (Republic of)",78.8], + ["Luxembourg (Grand Duchy of)",84.8], + ["Macao (Special Administrative Region of China)",87.9], + ["Madagascar (Republic of)",66.9], + ["Malawi (Republic of)",66.5], + ["Malaysia",77.4], + ["Maldives (Republic of)",81], + ["Mali (Republic of)",60.3], + ["Malta (Republic of)",86.1], + ["Marshall Islands (Republic of the)",67.2], + ["Martinique",83.6], + ["Mauritania (Islamic Republic of)",66.1], + ["Mauritius (Republic of)",76.8], + ["Mayotte (Department of)",77.8], + ["Mexico (United Mexican States)",74.9], + ["Micronesia (Federated States of)",74.6], + ["Moldova (Republic of)",73.5], + ["Monaco (Principality of)",87.7], + ["Mongolia",75.7], + ["Montenegro",79.8], + ["Montserrat",77.2], + ["Morocco (Kingdom of)",76.4], + ["Mozambique (Republic of)",62.4], + ["Myanmar (Union of)",69], + ["Namibia (Republic of)",63], + ["Nauru (Republic of)",67.3], + ["Nepal (Federal Democratic Republic of)",70.4], + ["Netherlands (Kingdom of the)",83.4], + ["New Caledonia",83.1], + ["New Zealand",84.3], + ["Nicaragua (Republic of)",76.8], + ["Niger (Republic of)",62.8], + ["Nigeria (Federal Republic of)",53.1], + ["Niue",72.6], + ["Korea (Democratic People's Republic of)",75.7], + ["North Macedonia (Republic of)",76.2], + ["Northern Mariana Islands (Commonwealth of the)",79.2], + ["Norway (Kingdom of)",84.9], + ["Oman (Sultanate of)",74.7], + ["Pakistan (Islamic Republic of)",68.6], + ["Palau (Republic of)",70.6], + ["Palestine (State of)",75.9], + ["Panama (Republic of)",79.6], + ["Papua New Guinea (Independent State of)",68.4], + ["Paraguay (Republic of)",73.4], + ["Peru (Republic of)",74.7], + ["Philippines (Republic of the)",71.5], + ["Poland (Republic of)",80.4], + ["Portugal (Portuguese Republic)",84.1], + ["Puerto Rico (Commonwealth of)",84.5], + ["Qatar (State of)",80.9], + ["Réunion",84.7], + ["Romania",77.9], + ["Russian Federation",74.8], + ["Rwanda (Republic of)",68.2], + ["Saint Barthelemy",83.6], + ["Saint Helena",80.4], + ["Saint Kitts and Nevis (Federation of)",75.3], + ["Saint Lucia",74.7], + ["Saint Martin",83.6], + ["Saint Pierre and Miquelon",81.4], + ["Saint Vincent and the Grenadines",72.4], + ["Samoa (Independent State of)",75.5], + ["San Marino (Republic of)",83.5], + ["São Tomé and Príncipe (Democratic Republic of)",70.4], + ["Saudi Arabia (Kingdom of)",78.8], + ["Senegal (Republic of)",69.3], + ["Serbia (Republic of)",77.2], + ["Seychelles (Republic of)",75.7], + ["Sierra Leone (Republic of)",61.4], + ["Singapore (Republic of)",84.9], + ["Sint Maarten (Netherlands)",76.7], + ["Slovakia (Slovak Republic)",78.4], + ["Slovenia (Republic of)",83.8], + ["Solomon Islands",72], + ["Somalia (Federal Republic of)",57.4], + ["South Africa (Republic of)",65], + ["Korea (Republic of)",86.8], + ["South Sudan (Republic of)",56.5], + ["Spain (Kingdom of)",85.8], + ["Sri Lanka (Democratic Socialist Republic of)",79.5], + ["Sudan (Republic of the)",67.9], + ["Suriname (Republic of)",73.6], + ["Sweden (Kingdom of)",84.9], + ["Switzerland (Swiss Confederation)",85.9], + ["Syrian Arab Republic",75.2], + ["Taiwan",84.4], + ["Tajikistan (Republic of)",73.7], + ["Tanzania (United Republic of)",68.3], + ["Thailand (Kingdom of)",83], + ["Timor-Leste (Democratic Republic of)",69.5], + ["Togo (Togolese Republic)",62.4], + ["Tokelau",75.9], + ["Tonga (Kingdom of)",73.7], + ["Trinidad and Tobago (Republic of)",76.4], + ["Tunisia (Republic of)",77.1], + ["Turkey (Republic of)",79.1], + ["Turkmenistan",72.7], + ["Turks and Caicos Islands",77.7], + ["Tuvalu",69.1], + ["Uganda (Republic of)",64.9], + ["Ukraine",76.7], + ["United Arab Emirates",80.9], + ["United Kingdom (of Great Britain & Northern Ireland)",82.8], + ["United States (of America)",80.2], + ["United States Virgin Islands",80.6], + ["Uruguay (Oriental Republic of)",79.3], + ["Uzbekistan (Republic of)",73.4], + ["Vanuatu (Republic of)",72.9], + ["Holy See (Vatican City State)",84.7], + ["Venezuela (Bolivarian Republic of)",75.2], + ["Vietnam (Socialist Republic of)",78.2], + ["Wallis and Futuna",79.9], + ["Sahrawi Arab Democratic Republic",72.9], + ["Yemen (Republic of)",67.1], + ["Zambia (Republic of)",63.9], + ["Zimbabwe (Republic of)",62] + ] +} diff --git a/data/global/health/life-expectancy/life-expectancy-male.json b/data/global/health/life-expectancy/life-expectancy-male.json new file mode 100644 index 0000000..b2f5ccc --- /dev/null +++ b/data/global/health/life-expectancy/life-expectancy-male.json @@ -0,0 +1,259 @@ +{ + "metadata" : { + "name" : "Male Life Expectancy", + "description" : "Average male life expectancy from birth.", + "units" : "years", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","morbidity","mortality","life expectancy","male","gender"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_life_expectancy" + ] + }, + "data" : [ + ["country.name","life.expectancy.male"], + ["Afghanistan (Islamic Republic of)",58.9], + ["Albania (Republic of)",74.1], + ["Algeria (People's Democratic Republic of)",74.9], + ["American Samoa",69.1], + ["Andorra (Principality of)",77.2], + ["Angola (Republic of)",59], + ["Anguilla",73.2], + ["Antigua and Barbuda",75.8], + ["Argentina (Argentine Republic)",72.2], + ["Armenia (Republic of)",66.6], + ["Aruba",71.8], + ["Australia (Commonwealth of)",83.2], + ["Austria (Republic of)",79], + ["Azerbaijan (Republic of)",65.6], + ["Bahamas (Commonwealth of the)",68.1], + ["Bahrain (Kingdom of)",77.8], + ["Bangladesh (People's Republic of)",70.6], + ["Barbados",75.6], + ["Belarus (Republic of)",67.3], + ["Belgium (Kingdom of)",79.4], + ["Belize",67.1], + ["Benin (Republic of)",58.2], + ["Bermuda",75.8], + ["Bhutan (Kingdom of)",70.1], + ["Bolivia (Plurinational State of)",60.9], + ["Bonaire (Sint Eustatius and Saba)",72.9], + ["Bosnia and Herzegovina",73.1], + ["Botswana (Republic of)",58.7], + ["Brazil (Federative Republic of)",69.6], + ["British Virgin Islands",71.7], + ["Brunei (Nation of the Abode of Peace)",72.6], + ["Bulgaria (Republic of)",68.4], + ["Burkina Faso",57.5], + ["Burundi (Republic of)",59.7], + ["Cambodia (Kingdom of)",66.8], + ["Cameroon (Republic of)",58.7], + ["Canada",80.6], + ["Cape Verde (Republic of)",69.6], + ["Cayman Islands",72.8], + ["Central African Republic",51.6], + ["Chad (Republic of)",50.8], + ["Chile (Republic of)",76.5], + ["China (People's Republic of)",75.5], + ["Colombia (Republic of)",69.4], + ["Comoros (Union of the)",61.2], + ["Congo (Republic of the)",62.1], + ["Cook Islands",71], + ["Costa Rica (Republic of)",74.4], + ["Côte d'Ivoire (Republic of)",57.4], + ["Croatia (Republic of)",74.2], + ["Cuba (Republic of)",71.2], + ["Curaçao",71.5], + ["Cyprus (Republic of)",79.2], + ["Czech Republic",74.7], + ["Congo (Democratic Republic of the)",57], + ["Denmark (Kingdom of)",79.5], + ["Djibouti (Republic of)",59.7], + ["Dominica (Commonwealth of)",69.7], + ["Dominican Republic",69.3], + ["Ecuador (Republic of)",70.3], + ["Egypt (Arab Republic of)",67.9], + ["El Salvador (Republic of)",66.1], + ["Equatorial Guinea (Republic of)",58.8], + ["Eritrea (State of)",64.3], + ["Estonia (Republic of)",72.8], + ["Eswatini (Kingdom of)",53.4], + ["Ethiopia (Federal Democratic Republic of)",61.9], + ["Faroe Islands",77.7], + ["Falkland Islands (Malvinas)",76.5], + ["Fiji (Republic of)",65.4], + ["Finland (Republic of)",79.3], + ["France (French Republic)",79.4], + ["French Guiana",72.1], + ["French Polynesia",77], + ["Gabon (Gabonese Republic)",63.5], + ["Gambia (Republic of the)",60.7], + ["Georgia",66.8], + ["Germany (Federal Republic of)",78.1], + ["Ghana (Republic of)",61.6], + ["Gibraltar",77.1], + ["Greece (Hellenic Republic)",77.5], + ["Greenland",69.9], + ["Grenada",72.2], + ["Guadeloupe",77], + ["Guam",73], + ["Guatemala (Republic of)",66], + ["Guernsey (Bailiwick of)",80.4], + ["Guinea (Republic of)",57.6], + ["Guinea-Bissau (Republic of)",57.4], + ["Guyana (Co-operative Republic of)",62.5], + ["Haiti (Republic of)",60.4], + ["Honduras (Republic of)",67.9], + ["Hong Kong (Special Administrative Region of China)",82.7], + ["Hungary (Republic of)",71.1], + ["Iceland (Republic of)",81.2], + ["India (Republic of)",65.8], + ["Indonesia (Republic of)",65.5], + ["Iran (Islamic Republic of)",71.2], + ["Iraq (Republic of)",68.2], + ["Ireland",80.2], + ["Isle of Man",78.6], + ["Israel (State of)",80.2], + ["Italy (Italian Republic)",80.5], + ["Jamaica",68.5], + ["Japan",81.8], + ["Jersey (Bailiwick of)",78.3], + ["Jordan (Hashemite Kingdom of)",72.1], + ["Kazakhstan (Republic of)",65.5], + ["Kenya (Republic of)",58.9], + ["Kiribati (Republic of)",65.5], + ["Kosovo (Republic of)",74.2], + ["Kuwait (State of)",77.2], + ["Kyrgyz Republic",65.8], + ["Lao (People's Democratic Republic)",66.2], + ["Latvia (Republic of)",69.2], + ["Lebanon (Lebanese Republic)",72.8], + ["Lesotho (Kingdom of)",50.4], + ["Liberia (Republic of)",59.4], + ["Libya (State of)",69.6], + ["Liechtenstein (Principality of)",81.1], + ["Lithuania (Republic of)",68.8], + ["Luxembourg (Grand Duchy of)",80.4], + ["Macao (Special Administrative Region of China)",82.8], + ["Madagascar (Republic of)",62.2], + ["Malawi (Republic of)",59.5], + ["Malaysia",72.7], + ["Maldives (Republic of)",79.1], + ["Mali (Republic of)",57.6], + ["Malta (Republic of)",81.4], + ["Marshall Islands (Republic of the)",63.7], + ["Martinique",77.6], + ["Mauritania (Islamic Republic of)",62.7], + ["Mauritius (Republic of)",70.4], + ["Mayotte (Department of)",71], + ["Mexico (United Mexican States)",66.1], + ["Micronesia (Federated States of)",67.1], + ["Moldova (Republic of)",64.4], + ["Monaco (Principality of)",84.3], + ["Mongolia",66.5], + ["Montenegro",73], + ["Montserrat",74.3], + ["Morocco (Kingdom of)",71.9], + ["Mozambique (Republic of)",56.2], + ["Myanmar (Union of)",62.5], + ["Namibia (Republic of)",55.7], + ["Nauru (Republic of)",60.3], + ["Nepal (Federal Democratic Republic of)",66.6], + ["Netherlands (Kingdom of the)",80], + ["New Caledonia",75.4], + ["New Zealand",80.6], + ["Nicaragua (Republic of)",70.8], + ["Niger (Republic of)",60.4], + ["Nigeria (Federal Republic of)",52.3], + ["Niue",69], + ["Korea (Democratic People's Republic of)",70.8], + ["North Macedonia (Republic of)",71.7], + ["Northern Mariana Islands (Commonwealth of the)",75.6], + ["Norway (Kingdom of)",81.6], + ["Oman (Sultanate of)",71], + ["Pakistan (Islamic Republic of)",63.8], + ["Palau (Republic of)",62.4], + ["Palestine (State of)",71.1], + ["Panama (Republic of)",73], + ["Papua New Guinea (Independent State of)",62.9], + ["Paraguay (Republic of)",67.4], + ["Peru (Republic of)",70.1], + ["Philippines (Republic of the)",67.2], + ["Poland (Republic of)",72.6], + ["Portugal (Portuguese Republic)",77.8], + ["Puerto Rico (Commonwealth of)",75.9], + ["Qatar (State of)",78.3], + ["Réunion",78.4], + ["Romania",70.6], + ["Russian Federation",64.2], + ["Rwanda (Republic of)",63.8], + ["Saint Barthelemy",77.3], + ["Saint Helena",74.2], + ["Saint Kitts and Nevis (Federation of)",68.3], + ["Saint Lucia",67.8], + ["Saint Martin",77.3], + ["Saint Pierre and Miquelon",73.5], + ["Saint Vincent and the Grenadines",67.4], + ["Samoa (Independent State of)",70.3], + ["San Marino (Republic of)",78.4], + ["São Tomé and Príncipe (Democratic Republic of)",65.2], + ["Saudi Arabia (Kingdom of)",75.6], + ["Senegal (Republic of)",64.8], + ["Serbia (Republic of)",71.2], + ["Seychelles (Republic of)",67.7], + ["Sierra Leone (Republic of)",58.8], + ["Singapore (Republic of)",80.6], + ["Sint Maarten (Netherlands)",71.5], + ["Slovakia (Slovak Republic)",71.5], + ["Slovenia (Republic of)",77.6], + ["Solomon Islands",68.9], + ["Somalia (Federal Republic of)",53.2], + ["South Africa (Republic of)",59.5], + ["Korea (Republic of)",80.4], + ["South Sudan (Republic of)",53.4], + ["Spain (Kingdom of)",80.2], + ["Sri Lanka (Democratic Socialist Republic of)",73.1], + ["Sudan (Republic of the)",62.7], + ["Suriname (Republic of)",67.2], + ["Sweden (Kingdom of)",81.1], + ["Switzerland (Swiss Confederation)",82], + ["Syrian Arab Republic",69.1], + ["Taiwan",77.8], + ["Tajikistan (Republic of)",69.6], + ["Tanzania (United Republic of)",64.2], + ["Thailand (Kingdom of)",74.5], + ["Timor-Leste (Democratic Republic of)",66.1], + ["Togo (Togolese Republic)",60.8], + ["Tokelau",74.4], + ["Tonga (Kingdom of)",68.4], + ["Trinidad and Tobago (Republic of)",69.7], + ["Tunisia (Republic of)",70.7], + ["Turkey (Republic of)",73], + ["Turkmenistan",65.9], + ["Turks and Caicos Islands",71.8], + ["Tuvalu",60.8], + ["Uganda (Republic of)",60.4], + ["Ukraine",66.5], + ["United Arab Emirates",77.2], + ["United Kingdom (of Great Britain & Northern Ireland)",78.7], + ["United States (of America)",74.3], + ["United States Virgin Islands",69.5], + ["Uruguay (Oriental Republic of)",71.7], + ["Uzbekistan (Republic of)",68.3], + ["Vanuatu (Republic of)",68.4], + ["Holy See (Vatican City State)",80], + ["Venezuela (Bolivarian Republic of)",66.3], + ["Vietnam (Socialist Republic of)",69.1], + ["Wallis and Futuna",77.1], + ["Sahrawi Arab Democratic Republic",69.1], + ["Yemen (Republic of)",60.6], + ["Zambia (Republic of)",58.5], + ["Zimbabwe (Republic of)",56.2] + ] +} diff --git a/data/global/health/life-expectancy/life-expectancy.json b/data/global/health/life-expectancy/life-expectancy.json new file mode 100644 index 0000000..78c6151 --- /dev/null +++ b/data/global/health/life-expectancy/life-expectancy.json @@ -0,0 +1,259 @@ +{ + "metadata" : { + "name" : "Life Expectancy", + "description" : "Average life expectancy from birth.", + "units" : "years", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","morbidity","mortality","life-expectancy"], + "authors" : [ + "United Nations (UN)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_life_expectancy" + ] + }, + "data" : [ + ["country.name","life.expectancy"], + ["Afghanistan (Islamic Republic of)",62], + ["Albania (Republic of)",76.5], + ["Algeria (People's Democratic Republic of)",76.4], + ["American Samoa",72.5], + ["Andorra (Principality of)",80.4], + ["Angola (Republic of)",61.6], + ["Anguilla",76.6], + ["Antigua and Barbuda",78.5], + ["Argentina (Argentine Republic)",75.4], + ["Armenia (Republic of)",72], + ["Aruba",74.6], + ["Australia (Commonwealth of)",84.5], + ["Austria (Republic of)",81.6], + ["Azerbaijan (Republic of)",69.4], + ["Bahamas (Commonwealth of the)",71.6], + ["Bahrain (Kingdom of)",78.8], + ["Bangladesh (People's Republic of)",72.4], + ["Barbados",77.6], + ["Belarus (Republic of)",72.4], + ["Belgium (Kingdom of)",81.9], + ["Belize",70.5], + ["Benin (Republic of)",59.8], + ["Bermuda",79.3], + ["Bhutan (Kingdom of)",71.8], + ["Bolivia (Plurinational State of)",63.6], + ["Bonaire (Sint Eustatius and Saba)",75.1], + ["Bosnia and Herzegovina",75.3], + ["Botswana (Republic of)",61.1], + ["Brazil (Federative Republic of)",72.8], + ["British Virgin Islands",74.5], + ["Brunei (Nation of the Abode of Peace)",74.6], + ["Bulgaria (Republic of)",71.8], + ["Burkina Faso",59.3], + ["Burundi (Republic of)",61.7], + ["Cambodia (Kingdom of)",69.6], + ["Cameroon (Republic of)",60.3], + ["Canada",82.7], + ["Cape Verde (Republic of)",74.1], + ["Cayman Islands",75.1], + ["Central African Republic",53.9], + ["Chad (Republic of)",52.5], + ["Chile (Republic of)",78.9], + ["China (People's Republic of)",78.2], + ["Colombia (Republic of)",72.8], + ["Comoros (Union of the)",63.4], + ["Congo (Republic of the)",63.5], + ["Cook Islands",74.8], + ["Costa Rica (Republic of)",77], + ["Côte d'Ivoire (Republic of)",58.6], + ["Croatia (Republic of)",77.6], + ["Cuba (Republic of)",73.7], + ["Curaçao",75.4], + ["Cyprus (Republic of)",81.2], + ["Czech Republic",77.7], + ["Congo (Democratic Republic of the)",59.2], + ["Denmark (Kingdom of)",81.4], + ["Djibouti (Republic of)",62.3], + ["Dominica (Commonwealth of)",72.8], + ["Dominican Republic",72.6], + ["Ecuador (Republic of)",73.7], + ["Egypt (Arab Republic of)",70.2], + ["El Salvador (Republic of)",70.7], + ["Equatorial Guinea (Republic of)",60.6], + ["Eritrea (State of)",66.5], + ["Estonia (Republic of)",77.1], + ["Eswatini (Kingdom of)",57.1], + ["Ethiopia (Federal Democratic Republic of)",65], + ["Faroe Islands",79.3], + ["Falkland Islands (Malvinas)",78.6], + ["Fiji (Republic of)",67.1], + ["Finland (Republic of)",82], + ["France (French Republic)",82.5], + ["French Guiana",74.9], + ["French Polynesia",79.5], + ["Gabon (Gabonese Republic)",65.8], + ["Gambia (Republic of the)",62.1], + ["Georgia",71.7], + ["Germany (Federal Republic of)",80.6], + ["Ghana (Republic of)",63.8], + ["Gibraltar",79.3], + ["Greece (Hellenic Republic)",80.1], + ["Greenland",72.4], + ["Grenada",74.9], + ["Guadeloupe",80.5], + ["Guam",76.7], + ["Guatemala (Republic of)",69.2], + ["Guernsey (Bailiwick of)",82.2], + ["Guinea (Republic of)",58.9], + ["Guinea-Bissau (Republic of)",59.7], + ["Guyana (Co-operative Republic of)",65.7], + ["Haiti (Republic of)",63.2], + ["Honduras (Republic of)",70.1], + ["Hong Kong (Special Administrative Region of China)",85.5], + ["Hungary (Republic of)",74.5], + ["Iceland (Republic of)",82.7], + ["India (Republic of)",67.2], + ["Indonesia (Republic of)",67.6], + ["Iran (Islamic Republic of)",73.9], + ["Iraq (Republic of)",70.4], + ["Ireland",82], + ["Isle of Man",80.5], + ["Israel (State of)",82.3], + ["Italy (Italian Republic)",82.9], + ["Jamaica",70.5], + ["Japan",84.8], + ["Jersey (Bailiwick of)",80.7], + ["Jordan (Hashemite Kingdom of)",74.3], + ["Kazakhstan (Republic of)",69.4], + ["Kenya (Republic of)",61.4], + ["Kiribati (Republic of)",67.4], + ["Kosovo (Republic of)",76.8], + ["Kuwait (State of)",78.7], + ["Kyrgyz Republic",70], + ["Lao (People's Democratic Republic)",68.1], + ["Latvia (Republic of)",73.6], + ["Lebanon (Lebanese Republic)",75], + ["Lesotho (Kingdom of)",53.1], + ["Liberia (Republic of)",60.7], + ["Libya (State of)",71.9], + ["Liechtenstein (Principality of)",83.3], + ["Lithuania (Republic of)",73.7], + ["Luxembourg (Grand Duchy of)",82.6], + ["Macao (Special Administrative Region of China)",85.4], + ["Madagascar (Republic of)",64.5], + ["Malawi (Republic of)",62.9], + ["Malaysia",74.9], + ["Maldives (Republic of)",79.9], + ["Mali (Republic of)",58.9], + ["Malta (Republic of)",83.8], + ["Marshall Islands (Republic of the)",65.3], + ["Martinique",80.7], + ["Mauritania (Islamic Republic of)",64.4], + ["Mauritius (Republic of)",73.6], + ["Mayotte (Department of)",74.2], + ["Mexico (United Mexican States)",70.2], + ["Micronesia (Federated States of)",70.7], + ["Moldova (Republic of)",68.8], + ["Monaco (Principality of)",85.9], + ["Mongolia",71], + ["Montenegro",76.3], + ["Montserrat",75.6], + ["Morocco (Kingdom of)",74], + ["Mozambique (Republic of)",59.3], + ["Myanmar (Union of)",65.7], + ["Namibia (Republic of)",59.3], + ["Nauru (Republic of)",63.6], + ["Nepal (Federal Democratic Republic of)",68.4], + ["Netherlands (Kingdom of the)",81.7], + ["New Caledonia",79], + ["New Zealand",82.5], + ["Nicaragua (Republic of)",73.8], + ["Niger (Republic of)",61.6], + ["Nigeria (Federal Republic of)",52.7], + ["Niue",70.8], + ["Korea (Democratic People's Republic of)",73.3], + ["North Macedonia (Republic of)",73.8], + ["Northern Mariana Islands (Commonwealth of the)",77.2], + ["Norway (Kingdom of)",83.2], + ["Oman (Sultanate of)",72.5], + ["Pakistan (Islamic Republic of)",66.1], + ["Palau (Republic of)",66], + ["Palestine (State of)",73.5], + ["Panama (Republic of)",76.2], + ["Papua New Guinea (Independent State of)",65.4], + ["Paraguay (Republic of)",70.3], + ["Peru (Republic of)",72.4], + ["Philippines (Republic of the)",69.3], + ["Poland (Republic of)",76.5], + ["Portugal (Portuguese Republic)",81], + ["Puerto Rico (Commonwealth of)",80.2], + ["Qatar (State of)",79.3], + ["Réunion",81.6], + ["Romania",74.2], + ["Russian Federation",69.4], + ["Rwanda (Republic of)",66.1], + ["Saint Barthelemy",80.4], + ["Saint Helena",76.8], + ["Saint Kitts and Nevis (Federation of)",71.7], + ["Saint Lucia",71.1], + ["Saint Martin",80.4], + ["Saint Pierre and Miquelon",77.2], + ["Saint Vincent and the Grenadines",69.6], + ["Samoa (Independent State of)",72.8], + ["San Marino (Republic of)",80.9], + ["São Tomé and Príncipe (Democratic Republic of)",67.6], + ["Saudi Arabia (Kingdom of)",76.9], + ["Senegal (Republic of)",67.1], + ["Serbia (Republic of)",74.2], + ["Seychelles (Republic of)",71.3], + ["Sierra Leone (Republic of)",60.1], + ["Singapore (Republic of)",82.8], + ["Sint Maarten (Netherlands)",74], + ["Slovakia (Slovak Republic)",74.9], + ["Slovenia (Republic of)",80.7], + ["Solomon Islands",70.3], + ["Somalia (Federal Republic of)",55.3], + ["South Africa (Republic of)",62.3], + ["Korea (Republic of)",83.7], + ["South Sudan (Republic of)",55], + ["Spain (Kingdom of)",83], + ["Sri Lanka (Democratic Socialist Republic of)",76.4], + ["Sudan (Republic of the)",65.3], + ["Suriname (Republic of)",70.3], + ["Sweden (Kingdom of)",83], + ["Switzerland (Swiss Confederation)",84], + ["Syrian Arab Republic",72.1], + ["Taiwan",81], + ["Tajikistan (Republic of)",71.6], + ["Tanzania (United Republic of)",66.2], + ["Thailand (Kingdom of)",78.7], + ["Timor-Leste (Democratic Republic of)",67.7], + ["Togo (Togolese Republic)",61.6], + ["Tokelau",75.2], + ["Tonga (Kingdom of)",71], + ["Trinidad and Tobago (Republic of)",73], + ["Tunisia (Republic of)",73.8], + ["Turkey (Republic of)",76], + ["Turkmenistan",69.3], + ["Turks and Caicos Islands",74.6], + ["Tuvalu",64.5], + ["Uganda (Republic of)",62.7], + ["Ukraine",71.6], + ["United Arab Emirates",78.7], + ["United Kingdom (of Great Britain & Northern Ireland)",80.7], + ["United States (of America)",77.2], + ["United States Virgin Islands",74.7], + ["Uruguay (Oriental Republic of)",75.4], + ["Uzbekistan (Republic of)",70.9], + ["Vanuatu (Republic of)",70.4], + ["Holy See (Vatican City State)",82.3], + ["Venezuela (Bolivarian Republic of)",70.6], + ["Vietnam (Socialist Republic of)",73.6], + ["Wallis and Futuna",78.4], + ["Sahrawi Arab Democratic Republic",70.8], + ["Yemen (Republic of)",63.8], + ["Zambia (Republic of)",61.2], + ["Zimbabwe (Republic of)",59.3] + ] +} diff --git a/data/global/health/mortality-rate/mortality-rate-infants.json b/data/global/health/mortality-rate/mortality-rate-infants.json new file mode 100644 index 0000000..d5462d3 --- /dev/null +++ b/data/global/health/mortality-rate/mortality-rate-infants.json @@ -0,0 +1,215 @@ +{ + "metadata" : { + "name" : "Infant Mortality Rate", + "description" : "Infant Mortality Rate expressed as units of death under 5 years of age per 1000 births", + "units" : "deaths/1000 births", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","morbidity","mortality","infants","children","deaths"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_infant_and_under-five_mortality_rates" + ] + }, + "data" : [ + ["country.name","mortality.rate.infants"], + ["Afghanistan (Islamic Republic of)",58], + ["Albania (Republic of)",9.8], + ["Algeria (People's Democratic Republic of)",23.7], + ["Andorra (Principality of)",2.5], + ["Angola (Republic of)",71.5], + ["Antigua and Barbuda",6.4], + ["Argentina (Argentine Republic)",8.6], + ["Armenia (Republic of)",10.9], + ["Australia (Commonwealth of)",3.7], + ["Austria (Republic of)",3.6], + ["Azerbaijan (Republic of)",19.4], + ["Bahamas (Commonwealth of the)",12.3], + ["Bahrain (Kingdom of)",6.8], + ["Bangladesh (People's Republic of)",29.1], + ["Barbados",12.2], + ["Belarus (Republic of)",2.9], + ["Belgium (Kingdom of)",4.2], + ["Belize",11.7], + ["Benin (Republic of)",85.9], + ["Bhutan (Kingdom of)",27.6], + ["Bolivia (Plurinational State of)",25.4], + ["Bosnia and Herzegovina",5.7], + ["Botswana (Republic of)",44.8], + ["Brazil (Federative Republic of)",14.7], + ["Brunei (Nation of the Abode of Peace)",11.5], + ["Bulgaria (Republic of)",6.1], + ["Burkina Faso",85], + ["Burundi (Republic of)",54.4], + ["Cape Verde (Republic of)",14.2], + ["Cambodia (Kingdom of)",25.7], + ["Cameroon (Republic of)",72.2], + ["Canada",5], + ["Central African Republic",103], + ["Chad (Republic of)",110], + ["Chile (Republic of)",6.8], + ["China (People's Republic of)",7.3], + ["Colombia (Republic of)",13.2], + ["Comoros (Union of the)",61.3], + ["Congo (Democratic Republic of the)",81.2], + ["Congo (Republic of the)",44.6], + ["Costa Rica (Republic of)",7.9], + ["Côte d'Ivoire (Republic of)",77.9], + ["Croatia (Republic of)",4.6], + ["Cuba (Republic of)",5.1], + ["Cyprus (Republic of)",2.8], + ["Czech Republic",2.9], + ["Denmark (Kingdom of)",3.6], + ["Djibouti (Republic of)",55.9], + ["Dominica (Commonwealth of)",35.4], + ["Dominican Republic",33.8], + ["Ecuador (Republic of)",13], + ["Egypt (Arab Republic of)",19.5], + ["El Salvador (Republic of)",12.9], + ["Equatorial Guinea (Republic of)",78.5], + ["Eritrea (State of)",39.3], + ["Estonia (Republic of)",2.1], + ["Eswatini (Kingdom of)",46.6], + ["Ethiopia (Federal Democratic Republic of)",48.7], + ["Fiji (Republic of)",27.4], + ["Finland (Republic of)",2.3], + ["France (French Republic)",4.4], + ["Gabon (Gabonese Republic)",41.7], + ["Gambia (Republic of the)",49.4], + ["Georgia",9.3], + ["Germany (Federal Republic of)",3.7], + ["Ghana (Republic of)",44.7], + ["Greece (Hellenic Republic)",4.1], + ["Grenada",16.4], + ["Guatemala (Republic of)",23.6], + ["Guinea-Bissau (Republic of)",76.8], + ["Guinea (Republic of)",95.6], + ["Guyana (Co-operative Republic of)",28.4], + ["Haiti (Republic of)",60.5], + ["Honduras (Republic of)",16.2], + ["Hungary (Republic of)",4], + ["Iceland (Republic of)",1.9], + ["India (Republic of)",32.6], + ["Indonesia (Republic of)",23], + ["Iran (Islamic Republic of)",12.9], + ["Iraq (Republic of)",25.2], + ["Ireland",3], + ["Israel (State of)",3.6], + ["Italy (Italian Republic)",2.9], + ["Jamaica",13.3], + ["Japan",2.5], + ["Jordan (Hashemite Kingdom of)",15], + ["Kazakhstan (Republic of)",10], + ["Kenya (Republic of)",41.9], + ["Kiribati (Republic of)",49.6], + ["Korea (Democratic People's Republic of)",16.5], + ["Korea (Republic of)",3], + ["Kuwait (State of)",8.9], + ["Kyrgyz Republic",17.5], + ["Lao (People's Democratic Republic)",44.1], + ["Latvia (Republic of)",4], + ["Lebanon (Lebanese Republic)",7], + ["Lesotho (Kingdom of)",89.5], + ["Liberia (Republic of)",78.3], + ["Libya (State of)",11.1], + ["Lithuania (Republic of)",3.3], + ["Luxembourg (Grand Duchy of)",2.8], + ["Madagascar (Republic of)",50.2], + ["Malawi (Republic of)",38.6], + ["Malaysia",8.6], + ["Maldives (Republic of)",7.6], + ["Mali (Republic of)",94], + ["Malta (Republic of)",6.5], + ["Marshall Islands (Republic of the)",30.7], + ["Mauritania (Islamic Republic of)",70.7], + ["Mauritius (Republic of)",16.5], + ["Mexico (United Mexican States)",13.7], + ["Micronesia (Federated States of)",24.7], + ["Moldova (Republic of)",14.5], + ["Monaco (Principality of)",3], + ["Mongolia",15.4], + ["Montenegro",2.4], + ["Morocco (Kingdom of)",18.7], + ["Mozambique (Republic of)",70.6], + ["Myanmar (Union of)",43.7], + ["Namibia (Republic of)",40.2], + ["Nauru (Republic of)",28.5], + ["Nepal (Federal Democratic Republic of)",28.2], + ["Netherlands (Kingdom of the)",4.2], + ["New Zealand",4.7], + ["Nicaragua (Republic of)",16], + ["Niger (Republic of)",77.5], + ["Nigeria (Federal Republic of)",113.8], + ["North Macedonia (Republic of)",5.9], + ["Norway (Kingdom of)",2.2], + ["Oman (Sultanate of)",11], + ["Pakistan (Islamic Republic of)",65.2], + ["Palau (Republic of)",16.9], + ["Panama (Republic of)",14.3], + ["Papua New Guinea (Independent State of)",43.9], + ["Paraguay (Republic of)",18.9], + ["Peru (Republic of)",12.8], + ["Philippines (Republic of the)",26.4], + ["Poland (Republic of)",4.4], + ["Portugal (Portuguese Republic)",3.3], + ["Qatar (State of)",5.8], + ["Romania",6.9], + ["Russian Federation",5.4], + ["Rwanda (Republic of)",40.5], + ["Saint Kitts and Nevis (Federation of)",15], + ["Saint Lucia",24.4], + ["Saint Vincent and the Grenadines",14.1], + ["Samoa (Independent State of)",17], + ["San Marino (Republic of)",1.8], + ["São Tomé and Príncipe (Democratic Republic of)",16.1], + ["Saudi Arabia (Kingdom of)",7], + ["Senegal (Republic of)",38.1], + ["Serbia (Republic of)",5.6], + ["Seychelles (Republic of)",13.9], + ["Sierra Leone (Republic of)",107.8], + ["Singapore (Republic of)",2.2], + ["Slovakia (Slovak Republic)",5.8], + ["Slovenia (Republic of)",2.2], + ["Solomon Islands",19.4], + ["Somalia (Federal Republic of)",114.6], + ["South Africa (Republic of)",32.2], + ["South Sudan (Republic of)",97.9], + ["Spain (Kingdom of)",3.2], + ["Sri Lanka (Democratic Socialist Republic of)",6.9], + ["Sudan (Republic of the)",56.6], + ["Suriname (Republic of)",17.6], + ["Sweden (Kingdom of)",2.6], + ["Switzerland (Swiss Confederation)",4], + ["Syrian Arab Republic",22.4], + ["Tajikistan (Republic of)",32.3], + ["Tanzania (United Republic of)",48.9], + ["Thailand (Kingdom of)",8.7], + ["Timor-Leste (Democratic Republic of)",42.3], + ["Togo (Togolese Republic)",64.4], + ["Tonga (Kingdom of)",11.4], + ["Trinidad and Tobago (Republic of)",16.6], + ["Tunisia (Republic of)",16.6], + ["Turkey (Republic of)",9.5], + ["Turkmenistan",41.8], + ["Tuvalu",22], + ["Uganda (Republic of)",43.3], + ["Ukraine",8.1], + ["United Arab Emirates",6.6], + ["United Kingdom (of Great Britain & Northern Ireland)",4.2], + ["United States (of America)",6.3], + ["Uruguay (Oriental Republic of)",6.2], + ["Uzbekistan (Republic of)",13.9], + ["Vanuatu (Republic of)",24.9], + ["Venezuela (Bolivarian Republic of)",24.2], + ["Vietnam (Socialist Republic of)",20.9], + ["Palestine (State of)",16.5], + ["Yemen (Republic of)",59.6], + ["Zambia (Republic of)",61.4], + ["Zimbabwe (Republic of)",53.9] + ] +} diff --git a/data/global/health/mortality-rate/mortality-rate-maternal-2000.json b/data/global/health/mortality-rate/mortality-rate-maternal-2000.json new file mode 100644 index 0000000..bb04c90 --- /dev/null +++ b/data/global/health/mortality-rate/mortality-rate-maternal-2000.json @@ -0,0 +1,207 @@ +{ + "metadata" : { + "name" : "Mortality Rate Maternal", + "description" : "Maternal Mortality Rate as measured by units of death per 100,000 live births.", + "units" : "deaths/100k births", + "year" : "2000", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","mortality","births","female","gender"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_maternal_mortality_ratio" + ] + }, + "data" : [ + ["country.name","mortality.rate.maternal.2000"], + ["Afghanistan (Islamic Republic of)",1450], + ["Albania (Republic of)",23], + ["Algeria (People's Democratic Republic of)",161], + ["Angola (Republic of)",827], + ["Antigua and Barbuda",44], + ["Argentina (Argentine Republic)",66], + ["Armenia (Republic of)",43], + ["Australia (Commonwealth of)",7], + ["Austria (Republic of)",6], + ["Azerbaijan (Republic of)",47], + ["Bahamas (Commonwealth of the)",75], + ["Bahrain (Kingdom of)",27], + ["Bangladesh (People's Republic of)",434], + ["Barbados",50], + ["Belarus (Republic of)",22], + ["Belgium (Kingdom of)",8], + ["Belize",89], + ["Benin (Republic of)",520], + ["Bhutan (Kingdom of)",423], + ["Bolivia (Plurinational State of)",331], + ["Bosnia and Herzegovina",17], + ["Botswana (Republic of)",262], + ["Brazil (Federative Republic of)",69], + ["Burundi (Republic of)",28], + ["Bulgaria (Republic of)",19], + ["Burkina Faso",516], + ["Burundi (Republic of)",1010], + ["Cambodia (Kingdom of)",488], + ["Cameroon (Republic of)",886], + ["Canada",9], + ["Cape Verde (Republic of)",118], + ["Central African Republic",1280], + ["Chad (Republic of)",1420], + ["Chile (Republic of)",31], + ["China (People's Republic of)",59], + ["Colombia (Republic of)",94], + ["Comoros (Union of the)",444], + ["Congo (Republic of the)",739], + ["Costa Rica (Republic of)",40], + ["Côte d'Ivoire (Republic of)",704], + ["Croatia (Republic of)",11], + ["Cuba (Republic of)",46], + ["Cyprus (Republic of)",14], + ["Czech Republic",7], + ["Congo (Democratic Republic of the)",760], + ["Denmark (Kingdom of)",8], + ["Djibouti (Republic of)",507], + ["Dominican Republic",80], + ["Ecuador (Republic of)",122], + ["Egypt (Arab Republic of)",64], + ["El Salvador (Republic of)",73], + ["Equatorial Guinea (Republic of)",454], + ["Eritrea (State of)",1280], + ["Estonia (Republic of)",29], + ["Eswatini (Kingdom of)",521], + ["Ethiopia (Federal Democratic Republic of)",1030], + ["Fiji (Republic of)",51], + ["Finland (Republic of)",6], + ["France (French Republic)",10], + ["Gabon (Gabonese Republic)",380], + ["Gambia (Republic of the)",932], + ["Georgia",31], + ["Germany (Federal Republic of)",7], + ["Ghana (Republic of)",484], + ["Greece (Hellenic Republic)",3], + ["Grenada",38], + ["Guatemala (Republic of)",161], + ["Guinea (Republic of)",1020], + ["Guinea-Bissau (Republic of)",1210], + ["Guyana (Co-operative Republic of)",231], + ["Haiti (Republic of)",437], + ["Honduras (Republic of)",85], + ["Hungary (Republic of)",16], + ["Iceland (Republic of)",6], + ["India (Republic of)",370], + ["Indonesia (Republic of)",272], + ["Iran (Islamic Republic of)",48], + ["Iraq (Republic of)",79], + ["Ireland",7], + ["Israel (State of)",7], + ["Italy (Italian Republic)",4], + ["Jamaica",77], + ["Japan",9], + ["Jordan (Hashemite Kingdom of)",70], + ["Kazakhstan (Republic of)",61], + ["Kenya (Republic of)",708], + ["Kiribati (Republic of)",136], + ["Kuwait (State of)",10], + ["Kyrgyz Republic",79], + ["Lao (People's Democratic Republic)",544], + ["Latvia (Republic of)",34], + ["Lebanon (Lebanese Republic)",28], + ["Lesotho (Kingdom of)",614], + ["Liberia (Republic of)",894], + ["Libya (State of)",70], + ["Lithuania (Republic of)",17], + ["Luxembourg (Grand Duchy of)",10], + ["Madagascar (Republic of)",559], + ["Malawi (Republic of)",749], + ["Malaysia",38], + ["Maldives (Republic of)",125], + ["Mali (Republic of)",836], + ["Malta (Republic of)",9], + ["Mauritania (Islamic Republic of)",834], + ["Mauritius (Republic of)",59], + ["Mexico (United Mexican States)",55], + ["Micronesia (Federated States of)",154], + ["Maldives (Republic of)",44], + ["Mongolia",155], + ["Montenegro",12], + ["Morocco (Kingdom of)",188], + ["Mozambique (Republic of)",798], + ["Myanmar (Union of)",340], + ["Namibia (Republic of)",348], + ["Nepal (Federal Democratic Republic of)",553], + ["Netherlands (Kingdom of the)",13], + ["New Zealand",12], + ["Nicaragua (Republic of)",162], + ["Niger (Republic of)",813], + ["Nigeria (Federal Republic of)",1200], + ["Korea (Democratic People's Republic of)",139], + ["North Macedonia (Republic of)",13], + ["Norway (Kingdom of)",6], + ["Oman (Sultanate of)",20], + ["Pakistan (Islamic Republic of)",286], + ["Palestine (State of)",70], + ["Panama (Republic of)",91], + ["Papua New Guinea (Independent State of)",249], + ["Paraguay (Republic of)",194], + ["Peru (Republic of)",144], + ["Philippines (Republic of the)",160], + ["Poland (Republic of)",7], + ["Portugal (Portuguese Republic)",10], + ["Puerto Rico (Commonwealth of)",26], + ["Qatar (State of)",14], + ["Romania",54], + ["Russian Federation",56], + ["Rwanda (Republic of)",1160], + ["Saint Lucia",86], + ["Saint Vincent and the Grenadines",80], + ["Samoa (Independent State of)",88], + ["São Tomé and Príncipe (Democratic Republic of)",179], + ["Saudi Arabia (Kingdom of)",24], + ["Senegal (Republic of)",553], + ["Serbia (Republic of)",13], + ["Seychelles (Republic of)",53], + ["Sierra Leone (Republic of)",2480], + ["Singapore (Republic of)",13], + ["Slovakia (Slovak Republic)",8], + ["Slovenia (Republic of)",12], + ["Solomon Islands",245], + ["Somalia (Federal Republic of)",1210], + ["South Africa (Republic of)",160], + ["Korea (Republic of)",17], + ["South Sudan (Republic of)",1730], + ["Spain (Kingdom of)",5], + ["Sri Lanka (Democratic Socialist Republic of)",56], + ["Sudan (Republic of the)",667], + ["Suriname (Republic of)",221], + ["Sweden (Kingdom of)",5], + ["Switzerland (Swiss Confederation)",7], + ["Syrian Arab Republic",26], + ["Tajikistan (Republic of)",53], + ["Tanzania (United Republic of)",854], + ["Thailand (Kingdom of)",43], + ["Timor-Leste (Democratic Republic of)",745], + ["Togo (Togolese Republic)",489], + ["Tonga (Kingdom of)",77], + ["Trinidad and Tobago (Republic of)",81], + ["Tunisia (Republic of)",66], + ["Turkey (Republic of)",42], + ["Turkmenistan",29], + ["Uganda (Republic of)",578], + ["Ukraine",35], + ["United Arab Emirates",6], + ["United Kingdom (of Great Britain & Northern Ireland)",10], + ["United States (of America)",12], + ["Uruguay (Oriental Republic of)",26], + ["Uzbekistan (Republic of)",41], + ["Vanuatu (Republic of)",140], + ["Venezuela (Bolivarian Republic of)",119], + ["Vietnam (Socialist Republic of)",68], + ["Yemen (Republic of)",301], + ["Zambia (Republic of)",528], + ["Zimbabwe (Republic of)",579] + ] +} diff --git a/data/global/health/mortality-rate/mortality-rate-maternal-2017.json b/data/global/health/mortality-rate/mortality-rate-maternal-2017.json new file mode 100644 index 0000000..abb1c25 --- /dev/null +++ b/data/global/health/mortality-rate/mortality-rate-maternal-2017.json @@ -0,0 +1,207 @@ +{ + "metadata" : { + "name" : "Maternal Mortality Rate", + "description" : "Maternal Mortality Rate as measured by units of death per 100,000 live births.", + "units" : "deaths/100k births", + "year" : "2017", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","mortality","births","female","gender"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_maternal_mortality_ratio" + ] + }, + "data" : [ + ["country.name","mortality.rate.maternal.2017"], + ["Afghanistan (Islamic Republic of)",638], + ["Albania (Republic of)",15], + ["Algeria (People's Democratic Republic of)",112], + ["Angola (Republic of)",241], + ["Antigua and Barbuda",42], + ["Argentina (Argentine Republic)",39], + ["Armenia (Republic of)",26], + ["Australia (Commonwealth of)",6], + ["Austria (Republic of)",5], + ["Azerbaijan (Republic of)",26], + ["Bahamas (Commonwealth of the)",70], + ["Bahrain (Kingdom of)",14], + ["Bangladesh (People's Republic of)",173], + ["Barbados",27], + ["Belarus (Republic of)",2], + ["Belgium (Kingdom of)",5], + ["Belize",36], + ["Benin (Republic of)",397], + ["Bhutan (Kingdom of)",183], + ["Bolivia (Plurinational State of)",155], + ["Bosnia and Herzegovina",10], + ["Botswana (Republic of)",144], + ["Brazil (Federative Republic of)",60], + ["Burundi (Republic of)",31], + ["Bulgaria (Republic of)",10], + ["Burkina Faso",320], + ["Burundi (Republic of)",548], + ["Cambodia (Kingdom of)",160], + ["Cameroon (Republic of)",529], + ["Canada",10], + ["Cape Verde (Republic of)",58], + ["Central African Republic",829], + ["Chad (Republic of)",1140], + ["Chile (Republic of)",13], + ["China (People's Republic of)",29], + ["Colombia (Republic of)",83], + ["Comoros (Union of the)",273], + ["Congo (Republic of the)",378], + ["Costa Rica (Republic of)",27], + ["Côte d'Ivoire (Republic of)",617], + ["Croatia (Republic of)",8], + ["Cuba (Republic of)",36], + ["Cyprus (Republic of)",6], + ["Czech Republic",3], + ["Congo (Democratic Republic of the)",473], + ["Denmark (Kingdom of)",4], + ["Djibouti (Republic of)",248], + ["Dominican Republic",95], + ["Ecuador (Republic of)",59], + ["Egypt (Arab Republic of)",37], + ["El Salvador (Republic of)",46], + ["Equatorial Guinea (Republic of)",301], + ["Eritrea (State of)",480], + ["Estonia (Republic of)",9], + ["Eswatini (Kingdom of)",437], + ["Ethiopia (Federal Democratic Republic of)",401], + ["Fiji (Republic of)",34], + ["Finland (Republic of)",3], + ["France (French Republic)",8], + ["Gabon (Gabonese Republic)",252], + ["Gambia (Republic of the)",597], + ["Georgia",25], + ["Germany (Federal Republic of)",7], + ["Ghana (Republic of)",308], + ["Greece (Hellenic Republic)",3], + ["Grenada",25], + ["Guatemala (Republic of)",95], + ["Guinea (Republic of)",576], + ["Guinea-Bissau (Republic of)",667], + ["Guyana (Co-operative Republic of)",169], + ["Haiti (Republic of)",480], + ["Honduras (Republic of)",65], + ["Hungary (Republic of)",12], + ["Iceland (Republic of)",4], + ["India (Republic of)",145], + ["Indonesia (Republic of)",177], + ["Iran (Islamic Republic of)",16], + ["Iraq (Republic of)",79], + ["Ireland",5], + ["Israel (State of)",3], + ["Italy (Italian Republic)",2], + ["Jamaica",80], + ["Japan",5], + ["Jordan (Hashemite Kingdom of)",46], + ["Kazakhstan (Republic of)",10], + ["Kenya (Republic of)",342], + ["Kiribati (Republic of)",92], + ["Kuwait (State of)",12], + ["Kyrgyz Republic",60], + ["Lao (People's Democratic Republic)",185], + ["Latvia (Republic of)",19], + ["Lebanon (Lebanese Republic)",29], + ["Lesotho (Kingdom of)",544], + ["Liberia (Republic of)",661], + ["Libya (State of)",72], + ["Lithuania (Republic of)",8], + ["Luxembourg (Grand Duchy of)",5], + ["Madagascar (Republic of)",335], + ["Malawi (Republic of)",349], + ["Malaysia",29], + ["Maldives (Republic of)",53], + ["Mali (Republic of)",562], + ["Malta (Republic of)",6], + ["Mauritania (Islamic Republic of)",766], + ["Mauritius (Republic of)",61], + ["Mexico (United Mexican States)",33], + ["Micronesia (Federated States of)",88], + ["Maldives (Republic of)",19], + ["Mongolia",45], + ["Montenegro",6], + ["Morocco (Kingdom of)",70], + ["Mozambique (Republic of)",289], + ["Myanmar (Union of)",250], + ["Namibia (Republic of)",195], + ["Nepal (Federal Democratic Republic of)",186], + ["Netherlands (Kingdom of the)",5], + ["New Zealand",9], + ["Nicaragua (Republic of)",98], + ["Niger (Republic of)",509], + ["Nigeria (Federal Republic of)",917], + ["Korea (Democratic People's Republic of)",89], + ["North Macedonia (Republic of)",7], + ["Norway (Kingdom of)",2], + ["Oman (Sultanate of)",19], + ["Pakistan (Islamic Republic of)",140], + ["Palestine (State of)",27], + ["Panama (Republic of)",52], + ["Papua New Guinea (Independent State of)",145], + ["Paraguay (Republic of)",129], + ["Peru (Republic of)",88], + ["Philippines (Republic of the)",121], + ["Poland (Republic of)",2], + ["Portugal (Portuguese Republic)",8], + ["Puerto Rico (Commonwealth of)",21], + ["Qatar (State of)",9], + ["Romania",19], + ["Russian Federation",17], + ["Rwanda (Republic of)",248], + ["Saint Lucia",117], + ["Saint Vincent and the Grenadines",68], + ["Samoa (Independent State of)",43], + ["São Tomé and Príncipe (Democratic Republic of)",130], + ["Saudi Arabia (Kingdom of)",17], + ["Senegal (Republic of)",315], + ["Serbia (Republic of)",12], + ["Seychelles (Republic of)",53], + ["Sierra Leone (Republic of)",1120], + ["Singapore (Republic of)",8], + ["Slovakia (Slovak Republic)",5], + ["Slovenia (Republic of)",7], + ["Solomon Islands",104], + ["Somalia (Federal Republic of)",829], + ["South Africa (Republic of)",119], + ["Korea (Republic of)",11], + ["South Sudan (Republic of)",1150], + ["Spain (Kingdom of)",4], + ["Sri Lanka (Democratic Socialist Republic of)",36], + ["Sudan (Republic of the)",295], + ["Suriname (Republic of)",120], + ["Sweden (Kingdom of)",4], + ["Switzerland (Swiss Confederation)",5], + ["Syrian Arab Republic",31], + ["Tajikistan (Republic of)",17], + ["Tanzania (United Republic of)",524], + ["Thailand (Kingdom of)",37], + ["Timor-Leste (Democratic Republic of)",142], + ["Togo (Togolese Republic)",396], + ["Tonga (Kingdom of)",52], + ["Trinidad and Tobago (Republic of)",67], + ["Tunisia (Republic of)",43], + ["Turkey (Republic of)",17], + ["Turkmenistan",7], + ["Uganda (Republic of)",375], + ["Ukraine",19], + ["United Arab Emirates",3], + ["United Kingdom (of Great Britain & Northern Ireland)",7], + ["United States (of America)",19], + ["Uruguay (Oriental Republic of)",17], + ["Uzbekistan (Republic of)",29], + ["Vanuatu (Republic of)",72], + ["Venezuela (Bolivarian Republic of)",125], + ["Vietnam (Socialist Republic of)",43], + ["Yemen (Republic of)",164], + ["Zambia (Republic of)",213], + ["Zimbabwe (Republic of)",458] + ] +} diff --git a/data/global/health/mortality-rate/mortality-rate-total-cia.json b/data/global/health/mortality-rate/mortality-rate-total-cia.json new file mode 100644 index 0000000..6d27fdc --- /dev/null +++ b/data/global/health/mortality-rate/mortality-rate-total-cia.json @@ -0,0 +1,258 @@ +{ + "metadata" : { + "name" : "Mortality Rate", + "description" : "Crude Mortality Rate measured as units of death per 1000 population per year", + "units" : "deaths/1k population", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","mortality"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_mortality_rate" + ] + }, + "data" : [ + ["country.name","mortality.rate.total.cia"], + ["Afghanistan (Islamic Republic of)",12.7], + ["Albania (Republic of)",7.1], + ["Algeria (People's Democratic Republic of)",4.4], + ["Andorra (Principality of)",7.7], + ["Angola (Republic of)",8.5], + ["Antigua and Barbuda",5.8], + ["Argentina (Argentine Republic)",7.4], + ["Armenia (Republic of)",9.5], + ["Australia (Commonwealth of)",6.9], + ["Austria (Republic of)",9.8], + ["Azerbaijan (Republic of)",7], + ["Bahamas (Commonwealth of the)",7.4], + ["Bahrain (Kingdom of)",2.8], + ["Bangladesh (People's Republic of)",5.5], + ["Barbados",8.8], + ["Belarus (Republic of)",13.1], + ["Belgium (Kingdom of)",9.8], + ["Belize",4.1], + ["Benin (Republic of)",8.4], + ["Bhutan (Kingdom of)",6.3], + ["Bolivia (Plurinational State of)",6.3], + ["Bosnia and Herzegovina",10.2], + ["Botswana (Republic of)",9.2], + ["Brazil (Federative Republic of)",6.9], + ["Brunei (Nation of the Abode of Peace)",3.8], + ["Bulgaria (Republic of)",14.6], + ["Burkina Faso",8.2], + ["Burundi (Republic of)",6.2], + ["Cambodia (Kingdom of)",7.3], + ["Cameroon (Republic of)",8.1], + ["Canada",7.9], + ["Cape Verde (Republic of)",5.9], + ["Central African Republic",12.3], + ["Chad (Republic of)",10], + ["Chile (Republic of)",6.5], + ["China (People's Republic of)",8.2], + ["Colombia (Republic of)",5.6], + ["Comoros (Union of the)",6.9], + ["Congo (Democratic Republic of the)",8.4], + ["Congo (Republic of the)",8.7], + ["Costa Rica (Republic of)",4.9], + ["Côte d'Ivoire (Republic of)",7.9], + ["Croatia (Republic of)",12.8], + ["Cuba (Republic of)",9.1], + ["Cyprus (Republic of)",7], + ["Czech Republic",10.7], + ["Denmark (Kingdom of)",9.5], + ["Djibouti (Republic of)",7.3], + ["Dominica (Commonwealth of)",8], + ["Dominican Republic",6.3], + ["Ecuador (Republic of)",5.2], + ["Egypt (Arab Republic of)",4.4], + ["El Salvador (Republic of)",5.9], + ["Equatorial Guinea (Republic of)",7.3], + ["Eritrea (State of)",6.9], + ["Estonia (Republic of)",12.9], + ["Eswatini (Kingdom of)",10.1], + ["Ethiopia (Federal Democratic Republic of)",5.9], + ["Fiji (Republic of)",6.3], + ["Finland (Republic of)",10.3], + ["France (French Republic)",9.6], + ["Gabon (Gabonese Republic)",5.9], + ["Gambia (Republic of the)",6.7], + ["Georgia",11], + ["Germany (Federal Republic of)",12.1], + ["Ghana (Republic of)",6.6], + ["Greece (Hellenic Republic)",12], + ["Grenada",8.3], + ["Guatemala (Republic of)",4.9], + ["Guinea (Republic of)",8.4], + ["Guinea-Bissau (Republic of)",7.9], + ["Guyana (Co-operative Republic of)",7.5], + ["Haiti (Republic of)",7.4], + ["Honduras (Republic of)",4.7], + ["Hungary (Republic of)",12.9], + ["Iceland (Republic of)",6.6], + ["India (Republic of)",7.3], + ["Indonesia (Republic of)",6.6], + ["Iran (Islamic Republic of)",5.3], + ["Iraq (Republic of)",3.9], + ["Ireland",6.8], + ["Israel (State of)",5.3], + ["Italy (Italian Republic)",10.7], + ["Jamaica",7.5], + ["Japan",10.2], + ["Jordan (Hashemite Kingdom of)",3.4], + ["Kazakhstan (Republic of)",8.2], + ["Kenya (Republic of)",5.2], + ["Kiribati (Republic of)",6.9], + ["Korea (Democratic People's Republic of)",9.4], + ["Korea (Republic of)",6.8], + ["Kuwait (State of)",2.3], + ["Kyrgyz Republic",6.3], + ["Lao (People's Democratic Republic)",7.2], + ["Latvia (Republic of)",14.6], + ["Lebanon (Lebanese Republic)",5.4], + ["Lesotho (Kingdom of)",15.4], + ["Liberia (Republic of)",7], + ["Libya (State of)",3.5], + ["Liechtenstein (Principality of)",7.8], + ["Lithuania (Republic of)",15], + ["Luxembourg (Grand Duchy of)",7.3], + ["North Macedonia (Republic of)",9.6], + ["Madagascar (Republic of)",6.2], + ["Malawi (Republic of)",7.2], + ["Malaysia",5.3], + ["Maldives (Republic of)",4.1], + ["Mali (Republic of)",9], + ["Malta (Republic of)",8.3], + ["Marshall Islands (Republic of the)",4.3], + ["Mauritania (Islamic Republic of)",7.5], + ["Mauritius (Republic of)",7.3], + ["Mexico (United Mexican States)",5.4], + ["Micronesia (Federated States of)",4.3], + ["Moldova (Republic of)",12.6], + ["Monaco (Principality of)",10.8], + ["Mongolia",6.3], + ["Montenegro",10.4], + ["Morocco (Kingdom of)",6.6], + ["Mozambique (Republic of)",11], + ["Myanmar (Union of)",7.2], + ["Namibia (Republic of)",7.3], + ["Nauru (Republic of)",6], + ["Nepal (Federal Democratic Republic of)",5.7], + ["Netherlands (Kingdom of the)",9.2], + ["New Zealand",6.9], + ["Nicaragua (Republic of)",5.2], + ["Niger (Republic of)",10.2], + ["Nigeria (Federal Republic of)",9.1], + ["Norway (Kingdom of)",8.1], + ["Oman (Sultanate of)",3.3], + ["Pakistan (Islamic Republic of)",6.2], + ["Palau (Republic of)",8.3], + ["Panama (Republic of)",5.1], + ["Papua New Guinea (Independent State of)",6.7], + ["Paraguay (Republic of)",4.9], + ["Peru (Republic of)",6.2], + ["Philippines (Republic of the)",6], + ["Poland (Republic of)",10.6], + ["Portugal (Portuguese Republic)",10.8], + ["Qatar (State of)",1.6], + ["Romania",12], + ["Russian Federation",13.4], + ["Rwanda (Republic of)",6.1], + ["Saint Kitts and Nevis (Federation of)",7.3], + ["Saint Lucia",8.1], + ["Saint Vincent and the Grenadines",7.6], + ["Samoa (Independent State of)",5.4], + ["San Marino (Republic of)",9], + ["São Tomé and Príncipe (Democratic Republic of)",6.3], + ["Saudi Arabia (Kingdom of)",3.4], + ["Senegal (Republic of)",7.6], + ["Serbia (Republic of)",13.5], + ["Seychelles (Republic of)",7.1], + ["Sierra Leone (Republic of)",9.8], + ["Singapore (Republic of)",3.6], + ["Slovakia (Slovak Republic)",10.1], + ["Slovenia (Republic of)",10.3], + ["Solomon Islands",3.8], + ["Somalia (Federal Republic of)",12.4], + ["South Africa (Republic of)",9.3], + ["South Sudan (Republic of)",11.4], + ["Spain (Kingdom of)",9.3], + ["Sri Lanka (Democratic Socialist Republic of)",6.5], + ["Sudan (Republic of the)",6.5], + ["Suriname (Republic of)",6.2], + ["Sweden (Kingdom of)",9.4], + ["Switzerland (Swiss Confederation)",8.5], + ["Syrian Arab Republic",4.5], + ["Taiwan",7.9], + ["Tajikistan (Republic of)",5.8], + ["Tanzania (United Republic of)",7.1], + ["Thailand (Kingdom of)",8.3], + ["Timor-Leste (Democratic Republic of)",5.7], + ["Togo (Togolese Republic)",6.5], + ["Tonga (Kingdom of)",4.9], + ["Trinidad and Tobago (Republic of)",9.1], + ["Tunisia (Republic of)",6.4], + ["Turkey (Republic of)",6.1], + ["Turkmenistan",6.1], + ["Tuvalu",8.2], + ["Uganda (Republic of)",5.3], + ["Ukraine",14], + ["United Arab Emirates",2], + ["United Kingdom (of Great Britain & Northern Ireland)",9.5], + ["United States (of America)",8.3], + ["Uruguay (Oriental Republic of)",9.3], + ["Uzbekistan (Republic of)",5.4], + ["Vanuatu (Republic of)",4], + ["Venezuela (Bolivarian Republic of)",7.5], + ["Vietnam (Socialist Republic of)",6], + ["Sahrawi Arab Democratic Republic",7.7], + ["Yemen (Republic of)",5.6], + ["Zambia (Republic of)",11.6], + ["Zimbabwe (Republic of)",9.3], + ["Anguilla",4.8], + ["Aruba",8.7], + ["Bermuda",9.1], + ["Cayman Islands",6.1], + ["Guernsey (Bailiwick of)",9.2], + ["Jersey (Bailiwick of)",7.9], + ["Cook Islands",9], + ["Curaçao",8.7], + ["Falkland Islands (Malvinas)",4.9], + ["Faroe Islands",8.8], + ["Gibraltar",8.6], + ["Greenland",9], + ["Guadeloupe",""], + ["Guam",6], + ["French Guiana",""], + ["Hong Kong (Special Administrative Region of China)",7.9], + ["Isle of Man",10.4], + ["Kosovo (Republic of)",7], + ["Macao (Special Administrative Region of China)",4.9], + ["Martinique",""], + ["Mayotte (Department of)",""], + ["Montserrat",6], + ["New Caledonia",5.9], + ["Niue",""], + ["Northern Mariana Islands (Commonwealth of the)",5.3], + ["Palestine (State of)",3.4], + ["Pitcairn Islands",""], + ["French Polynesia",5.5], + ["Puerto Rico (Commonwealth of)",9.5], + ["Réunion",""], + ["Saint Barthelemy",8.7], + ["Saint Helena",8.3], + ["Saint Martin",4.6], + ["Saint Pierre and Miquelon",10.9], + ["American Samoa",5.9], + ["Sint Maarten (Netherlands)",5.8], + ["Tokelau",""], + ["Turks and Caicos Islands",3.4], + ["British Virgin Islands",5.4], + ["United States Virgin Islands",8.5], + ["Wallis and Futuna",5.7] + ] +} diff --git a/data/global/health/mortality-rate/mortality-rate-total-oecd.json b/data/global/health/mortality-rate/mortality-rate-total-oecd.json new file mode 100644 index 0000000..d685932 --- /dev/null +++ b/data/global/health/mortality-rate/mortality-rate-total-oecd.json @@ -0,0 +1,258 @@ +{ + "metadata" : { + "name" : "Mortality Rate", + "description" : "Crude Mortality Rate measured as units of death per 1000 population per year", + "units" : "deaths/1k population", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","mortality"], + "authors" : [ + "Organisation for Economic Co-operation and Development (OECD)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_mortality_rate" + ] + }, + "data" : [ + ["country.name","mortality.rate.total.oecd"], + ["Afghanistan (Islamic Republic of)",18.2], + ["Albania (Republic of)",6.9], + ["Algeria (People's Democratic Republic of)",4.4], + ["Andorra (Principality of)",3.5], + ["Angola (Republic of)",15.2], + ["Antigua and Barbuda",5.4], + ["Argentina (Argentine Republic)",7.9], + ["Armenia (Republic of)",8.6], + ["Australia (Commonwealth of)",6.5], + ["Austria (Republic of)",9.1], + ["Azerbaijan (Republic of)",5.9], + ["Bahamas (Commonwealth of the)",6], + ["Bahrain (Kingdom of)",2], + ["Bangladesh (People's Republic of)",5.6], + ["Barbados",8], + ["Belarus (Republic of)",14.3], + ["Belgium (Kingdom of)",9.6], + ["Belize",4], + ["Benin (Republic of)",8.2], + ["Bhutan (Kingdom of)",6.9], + ["Bolivia (Plurinational State of)",7.2], + ["Bosnia and Herzegovina",9.2], + ["Botswana (Republic of)",9.1], + ["Brazil (Federative Republic of)",6.3], + ["Brunei (Nation of the Abode of Peace)",2.9], + ["Bulgaria (Republic of)",14.7], + ["Burkina Faso",11.3], + ["Burundi (Republic of)",12.9], + ["Cambodia (Kingdom of)",8.1], + ["Cameroon (Republic of)",13.2], + ["Canada",7.3], + ["Cape Verde (Republic of)",5.6], + ["Central African Republic",15.7], + ["Chad (Republic of)",14], + ["Chile (Republic of)",5.9], + ["China (People's Republic of)",7.1], + ["Colombia (Republic of)",5.8], + ["Comoros (Union of the)",6], + ["Congo (Democratic Republic of the)",15.8], + ["Congo (Republic of the)",12.3], + ["Costa Rica (Republic of)",4.1], + ["Côte d'Ivoire (Republic of)",9.8], + ["Croatia (Republic of)",11.6], + ["Cuba (Republic of)",7.7], + ["Cyprus (Republic of)",6.5], + ["Czech Republic",10.2], + ["Denmark (Kingdom of)",9.4], + ["Djibouti (Republic of)",10.4], + ["Dominica (Commonwealth of)",8.1], + ["Dominican Republic",6.1], + ["Ecuador (Republic of)",4.1], + ["Egypt (Arab Republic of)",6.1], + ["El Salvador (Republic of)",6.9], + ["Equatorial Guinea (Republic of)",13.8], + ["Eritrea (State of)",7.6], + ["Estonia (Republic of)",11.4], + ["Eswatini (Kingdom of)",18], + ["Ethiopia (Federal Democratic Republic of)",10.7], + ["Fiji (Republic of)",7.5], + ["Finland (Republic of)",9.4], + ["France (French Republic)",8.6], + ["Gabon (Gabonese Republic)",8.9], + ["Gambia (Republic of the)",10.3], + ["Georgia",11.1], + ["Germany (Federal Republic of)",10.4], + ["Ghana (Republic of)",8.8], + ["Greece (Hellenic Republic)",9.6], + ["Grenada",8.1], + ["Guatemala (Republic of)",5.4], + ["Guinea (Republic of)",9.7], + ["Guinea-Bissau (Republic of)",15.8], + ["Guyana (Co-operative Republic of)",7.9], + ["Haiti (Republic of)",8.7], + ["Honduras (Republic of)",4.5], + ["Hungary (Republic of)",12.9], + ["Iceland (Republic of)",6.2], + ["India (Republic of)",7.1], + ["Indonesia (Republic of)",6.3], + ["Iran (Islamic Republic of)",5.9], + ["Iraq (Republic of)",4.2], + ["Ireland",6.3], + ["Israel (State of)",5.3], + ["Italy (Italian Republic)",9.7], + ["Jamaica",6.6], + ["Japan",9.9], + ["Jordan (Hashemite Kingdom of)",7], + ["Kazakhstan (Republic of)",8.7], + ["Kenya (Republic of)",10.3], + ["Kiribati (Republic of)",8.3], + ["Korea (Democratic People's Republic of)",9], + ["Korea (Republic of)",5.1], + ["Kuwait (State of)",1.8], + ["Kyrgyz Republic",6.5], + ["Lao (People's Democratic Republic)",7.7], + ["Latvia (Republic of)",13.9], + ["Lebanon (Lebanese Republic)",5.8], + ["Lesotho (Kingdom of)",21.5], + ["Liberia (Republic of)",9.5], + ["Libya (State of)",4.2], + ["Liechtenstein (Principality of)",6.8], + ["Lithuania (Republic of)",13.5], + ["Luxembourg (Grand Duchy of)",7.4], + ["North Macedonia (Republic of)",9.5], + ["Madagascar (Republic of)",8.2], + ["Malawi (Republic of)",13.5], + ["Malaysia",4.8], + ["Maldives (Republic of)",3.6], + ["Mali (Republic of)",13.1], + ["Malta (Republic of)",7.9], + ["Marshall Islands (Republic of the)",5.8], + ["Mauritania (Islamic Republic of)",8.8], + ["Mauritius (Republic of)",7.1], + ["Mexico (United Mexican States)",5], + ["Micronesia (Federated States of)",5.8], + ["Moldova (Republic of)",11], + ["Monaco (Principality of)",15.2], + ["Mongolia",6.9], + ["Montenegro",9.3], + ["Morocco (Kingdom of)",5.6], + ["Mozambique (Republic of)",13.5], + ["Myanmar (Union of)",8.2], + ["Namibia (Republic of)",8.4], + ["Nauru (Republic of)",8.9], + ["Nepal (Federal Democratic Republic of)",7.8], + ["Netherlands (Kingdom of the)",8.1], + ["New Zealand",6.7], + ["Nicaragua (Republic of)",4.6], + ["Niger (Republic of)",11.1], + ["Nigeria (Federal Republic of)",15.3], + ["Norway (Kingdom of)",8.4], + ["Oman (Sultanate of)",3.3], + ["Pakistan (Islamic Republic of)",7.3], + ["Palau (Republic of)",7.7], + ["Panama (Republic of)",4.4], + ["Papua New Guinea (Independent State of)",9.6], + ["Paraguay (Republic of)",5.5], + ["Peru (Republic of)",5.5], + ["Philippines (Republic of the)",5], + ["Poland (Republic of)",9.8], + ["Portugal (Portuguese Republic)",9.7], + ["Qatar (State of)",1.1], + ["Romania",11.8], + ["Russian Federation",13.5], + ["Rwanda (Republic of)",13.6], + ["Saint Kitts and Nevis (Federation of)",7], + ["Saint Lucia",5.7], + ["Saint Vincent and the Grenadines",7.2], + ["Samoa (Independent State of)",5.1], + ["San Marino (Republic of)",6.9], + ["São Tomé and Príncipe (Democratic Republic of)",6.5], + ["Saudi Arabia (Kingdom of)",3.9], + ["Senegal (Republic of)",9.3], + ["Serbia (Republic of)",14.2], + ["Seychelles (Republic of)",7.9], + ["Sierra Leone (Republic of)",14.5], + ["Singapore (Republic of)",4.5], + ["Slovakia (Slovak Republic)",9.6], + ["Slovenia (Republic of)",9.1], + ["Solomon Islands",7.4], + ["Somalia (Federal Republic of)",14.5], + ["South Africa (Republic of)",11.7], + ["South Sudan (Republic of)",9.3], + ["Spain (Kingdom of)",8.4], + ["Sri Lanka (Democratic Socialist Republic of)",5.9], + ["Sudan (Republic of the)",8.6], + ["Suriname (Republic of)",6.3], + ["Sweden (Kingdom of)",9.5], + ["Switzerland (Swiss Confederation)",7.8], + ["Syrian Arab Republic",3.1], + ["Taiwan",6.6], + ["Tajikistan (Republic of)",4.3], + ["Tanzania (United Republic of)",10], + ["Thailand (Kingdom of)",6.5], + ["Timor-Leste (Democratic Republic of)",9.2], + ["Togo (Togolese Republic)",7.6], + ["Tonga (Kingdom of)",6.6], + ["Trinidad and Tobago (Republic of)",7.7], + ["Tunisia (Republic of)",5.7], + ["Turkey (Republic of)",6.3], + ["Turkmenistan",5.2], + ["Tuvalu",9], + ["Uganda (Republic of)",11.1], + ["Ukraine",14.5], + ["United Arab Emirates",0.9], + ["United Kingdom (of Great Britain & Northern Ireland)",8.8], + ["United States (of America)",8.1], + ["Uruguay (Oriental Republic of)",9.9], + ["Uzbekistan (Republic of)",5], + ["Vanuatu (Republic of)",5.3], + ["Venezuela (Bolivarian Republic of)",5.2], + ["Vietnam (Socialist Republic of)",6.9], + ["Sahrawi Arab Democratic Republic",5.5], + ["Yemen (Republic of)",8.1], + ["Zambia (Republic of)",14.5], + ["Zimbabwe (Republic of)",12.9], + ["Anguilla",3.3], + ["Aruba",6.2], + ["Bermuda",7.4], + ["Cayman Islands",3.2], + ["Guernsey (Bailiwick of)",8.4], + ["Jersey (Bailiwick of)",8.2], + ["Cook Islands",7.3], + ["Curaçao",7.9], + ["Falkland Islands (Malvinas)",6], + ["Faroe Islands",7.5], + ["Gibraltar",8.1], + ["Greenland",8.3], + ["Guadeloupe",7.1], + ["Guam",5.2], + ["French Guiana",3.1], + ["Hong Kong (Special Administrative Region of China)",6], + ["Isle of Man",9.9], + ["Kosovo (Republic of)",4.2], + ["Macao (Special Administrative Region of China)",3.4], + ["Martinique",6.9], + ["Mayotte (Department of)",3], + ["Montserrat",11.2], + ["New Caledonia",4.8], + ["Niue",9.7], + ["Northern Mariana Islands (Commonwealth of the)",3.3], + ["Palestine (State of)",""], + ["Pitcairn Islands",12.3], + ["French Polynesia",4.7], + ["Puerto Rico (Commonwealth of)",8], + ["Réunion",5], + ["Saint Barthelemy",6.4], + ["Saint Helena",11.5], + ["Saint Martin",3.9], + ["Saint Pierre and Miquelon",8.8], + ["American Samoa",4.5], + ["Sint Maarten (Netherlands)",4.2], + ["Tokelau",7.6], + ["Turks and Caicos Islands",2.3], + ["British Virgin Islands",3.5], + ["United States Virgin Islands",7.4], + ["Wallis and Futuna",6.6] + ] +} diff --git a/data/global/health/psychology/intelligence-quotent.json b/data/global/health/psychology/intelligence-quotent.json new file mode 100644 index 0000000..4315a0e --- /dev/null +++ b/data/global/health/psychology/intelligence-quotent.json @@ -0,0 +1,221 @@ +{ + "metadata" : { + "name" : "National Average Intelligence Quotent", + "description" : "National average Intelligence Quotent (IQ).", + "units" : "IQ", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","intelligence"], + "authors" : [ + "Richard Lynn" + ], + "sources" : [ + "https://worldpopulationreview.com/country-rankings/average-iq-by-country" + ] + }, + "data" : [ + ["country.name","iq"], + ["Japan",106.48], + ["Taiwan",106.47], + ["Singapore (Republic of)",105.89], + ["Hong Kong (Special Administrative Region of China)",105.37], + ["China (People's Republic of)",104.1], + ["Korea (Republic of)",102.35], + ["Belarus (Republic of)",101.6], + ["Finland (Republic of)",101.2], + ["Liechtenstein (Principality of)",101.07], + ["Germany (Federal Republic of)",100.74], + ["Netherlands (Kingdom of the)",100.74], + ["Estonia (Republic of)",100.72], + ["Luxembourg (Grand Duchy of)",99.87], + ["Macao (Special Administrative Region of China)",99.82], + ["Cambodia (Kingdom of)",99.75], + ["Canada",99.52], + ["Australia (Commonwealth of)",99.24], + ["Hungary (Republic of)",99.24], + ["Switzerland (Swiss Confederation)",99.24], + ["United Kingdom (of Great Britain & Northern Ireland)",99.12], + ["Greenland",98.89], + ["Korea (Democratic People's Republic of)",98.82], + ["Slovenia (Republic of)",98.6], + ["New Zealand",98.57], + ["Austria (Republic of)",98.38], + ["Iceland (Republic of)",98.26], + ["Denmark (Kingdom of)",97.83], + ["Belgium (Kingdom of)",97.49], + ["United States (of America)",97.43], + ["Norway (Kingdom of)",97.13], + ["Sweden (Kingdom of)",97], + ["France (French Republic)",96.69], + ["Poland (Republic of)",96.35], + ["Slovakia (Slovak Republic)",96.32], + ["Russian Federation",96.29], + ["Lithuania (Republic of)",95.89], + ["Croatia (Republic of)",95.75], + ["Andorra (Principality of)",95.2], + ["Ireland",95.13], + ["Czech Republic",94.92], + ["Latvia (Republic of)",94.79], + ["Italy (Italian Republic)",94.23], + ["Vanuatu (Republic of)",93.92], + ["New Caledonia",93.92], + ["Spain (Kingdom of)",93.9], + ["Bermuda",93.48], + ["Cyprus (Republic of)",93.39], + ["Portugal (Portuguese Republic)",92.77], + ["Israel (State of)",92.43], + ["Barbados",91.6], + ["Malta (Republic of)",91.27], + ["Myanmar (Union of)",91.18], + ["Mongolia",91.03], + ["Bulgaria (Republic of)",90.99], + ["Greece (Hellenic Republic)",90.77], + ["Suriname (Republic of)",90.29], + ["Ukraine",90.07], + ["Moldova (Republic of)",89.98], + ["Serbia (Republic of)",89.6], + ["Vietnam (Socialist Republic of)",89.53], + ["Iraq (Republic of)",89.28], + ["Uzbekistan (Republic of)",89.01], + ["Kazakhstan (Republic of)",88.89], + ["Thailand (Kingdom of)",88.87], + ["Armenia (Republic of)",88.82], + ["Bosnia and Herzegovina",88.54], + ["Costa Rica (Republic of)",88.34], + ["Bhutan (Kingdom of)",87.94], + ["Chile (Republic of)",87.89], + ["Mexico (United Mexican States)",87.73], + ["Tajikistan (Republic of)",87.71], + ["Uruguay (Oriental Republic of)",87.59], + ["Malaysia",87.58], + ["Brunei (Nation of the Abode of Peace)",87.58], + ["Bahamas (Commonwealth of the)",86.99], + ["Romania",86.88], + ["Turkey (Republic of)",86.8], + ["Argentina (Argentine Republic)",86.63], + ["Sri Lanka (Democratic Socialist Republic of)",86.62], + ["Mauritius (Republic of)",86.56], + ["Turkmenistan",85.86], + ["Montenegro",85.78], + ["Trinidad and Tobago (Republic of)",85.63], + ["Azerbaijan (Republic of)",84.81], + ["Georgia",84.5], + ["Turks and Caicos Islands",84.29], + ["Paraguay (Republic of)",84.04], + ["Fiji (Republic of)",83.96], + ["Solomon Islands",83.96], + ["Samoa (Independent State of)",83.96], + ["Kiribati (Republic of)",83.96], + ["Micronesia (Federated States of)",83.96], + ["Tonga (Kingdom of)",83.96], + ["Marshall Islands (Republic of the)",83.96], + ["Cook Islands",83.96], + ["Cuba (Republic of)",83.9], + ["Bahrain (Kingdom of)",83.6], + ["Brazil (Federative Republic of)",83.38], + ["Guyana (Co-operative Republic of)",83.23], + ["Colombia (Republic of)",83.13], + ["Venezuela (Bolivarian Republic of)",82.99], + ["Cayman Islands",82.24], + ["Afghanistan (Islamic Republic of)",82.12], + ["Haiti (Republic of)",82.1], + ["Dominican Republic",82.05], + ["United Arab Emirates",82.05], + ["Puerto Rico (Commonwealth of)",81.99], + ["North Macedonia (Republic of)",81.91], + ["Albania (Republic of)",81.75], + ["Lebanon (Lebanese Republic)",81.7], + ["Philippines (Republic of the)",81.64], + ["Peru (Republic of)",81.44], + ["Northern Mariana Islands (Commonwealth of the)",81.36], + ["Lao (People's Democratic Republic)",80.99], + ["Libya (State of)",80.92], + ["Qatar (State of)",80.78], + ["Jordan (Hashemite Kingdom of)",80.7], + ["Maldives (Republic of)",80.54], + ["Iran (Islamic Republic of)",80.01], + ["Pakistan (Islamic Republic of)",80], + ["Grenada",79.34], + ["Tunisia (Republic of)",79.22], + ["Kyrgyz Republic",79.09], + ["Panama (Republic of)",79], + ["Sudan (Republic of the)",78.87], + ["Chad (Republic of)",78.87], + ["Seychelles (Republic of)",78.76], + ["Oman (Sultanate of)",78.7], + ["Kuwait (State of)",78.64], + ["Indonesia (Republic of)",78.49], + ["Papua New Guinea (Independent State of)",78.49], + ["Timor-Leste (Democratic Republic of)",78.49], + ["Ecuador (Republic of)",78.26], + ["Palestine (State of)",77.69], + ["Senegal (Republic of)",77.37], + ["Comoros (Union of the)",77.07], + ["Madagascar (Republic of)",76.79], + ["British Virgin Islands",76.69], + ["Bolivia (Plurinational State of)",76.53], + ["Uganda (Republic of)",76.42], + ["Saudi Arabia (Kingdom of)",76.36], + ["Egypt (Arab Republic of)",76.32], + ["India (Republic of)",76.24], + ["Algeria (People's Democratic Republic of)",76], + ["Kenya (Republic of)",75.2], + ["Angola (Republic of)",75.1], + ["Jamaica",75.08], + ["Tanzania (United Republic of)",74.95], + ["Syrian Arab Republic",74.41], + ["Bangladesh (People's Republic of)",74.33], + ["Zimbabwe (Republic of)",74.01], + ["Burkina Faso",73.8], + ["Saint Lucia",73.68], + ["Mozambique (Republic of)",72.5], + ["Burundi (Republic of)",72.09], + ["Niger (Republic of)",70.82], + ["Antigua and Barbuda",70.48], + ["Saint Kitts and Nevis (Federation of)",70.48], + ["Rwanda (Republic of)",69.95], + ["Benin (Republic of)",69.71], + ["Malawi (Republic of)",69.7], + ["El Salvador (Republic of)",69.63], + ["Botswana (Republic of)",69.45], + ["South Africa (Republic of)",68.87], + ["Lesotho (Kingdom of)",68.87], + ["Eswatini (Kingdom of)",68.87], + ["Eritrea (State of)",68.77], + ["Zambia (Republic of)",68.43], + ["Ethiopia (Federal Democratic Republic of)",68.42], + ["Djibouti (Republic of)",68.41], + ["Nigeria (Federal Republic of)",67.76], + ["Cameroon (Republic of)",67.76], + ["Somalia (Federal Republic of)",67.67], + ["Morocco (Kingdom of)",67.03], + ["Namibia (Republic of)",66.19], + ["Dominica (Commonwealth of)",66.03], + ["São Tomé and Príncipe (Democratic Republic of)",65.22], + ["Congo (Democratic Republic of the)",64.92], + ["Saint Vincent and the Grenadines",63.42], + ["Congo (Republic of the)",62.97], + ["Gabon (Gabonese Republic)",62.97], + ["Yemen (Republic of)",62.86], + ["Central African Republic",62.55], + ["Belize",62.55], + ["Honduras (Republic of)",62.16], + ["Togo (Togolese Republic)",59.83], + ["Mali (Republic of)",59.76], + ["Mauritania (Islamic Republic of)",59.76], + ["South Sudan (Republic of)",58.61], + ["Ghana (Republic of)",58.16], + ["Côte d'Ivoire (Republic of)",58.16], + ["Guinea (Republic of)",53.48], + ["Nicaragua (Republic of)",52.69], + ["Gambia (Republic of the)",52.68], + ["Cape Verde (Republic of)",52.5], + ["Guatemala (Republic of)",47.72], + ["Sierra Leone (Republic of)",45.07], + ["Liberia (Republic of)",45.07], + ["Nepal (Federal Democratic Republic of)",42.99] + ] +} diff --git a/data/global/health/suicide-rate/suicide-rate-female.json b/data/global/health/suicide-rate/suicide-rate-female.json new file mode 100644 index 0000000..fdb28a8 --- /dev/null +++ b/data/global/health/suicide-rate/suicide-rate-female.json @@ -0,0 +1,205 @@ +{ + "metadata" : { + "name" : "Female Suicide Rate", + "description" : "Female units of intentional self inflicted deaths per 100,000 population.", + "units" : "deaths/100k population", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","morbidity","mortality","suicide","female","gender"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_suicide_rate" + ] + }, + "data" : [ + ["country.name","suicide.rate.female"], + ["Afghanistan (Islamic Republic of)",5.7], + ["Albania (Republic of)",2.2], + ["Algeria (People's Democratic Republic of)",1.9], + ["Angola (Republic of)",4.7], + ["Antigua and Barbuda",0.6], + ["Argentina (Argentine Republic)",3.3], + ["Armenia (Republic of)",1], + ["Australia (Commonwealth of)",5.6], + ["Austria (Republic of)",4.6], + ["Azerbaijan (Republic of)",1.5], + ["Bahamas (Commonwealth of the)",1.2], + ["Bahrain (Kingdom of)",2.3], + ["Bangladesh (People's Republic of)",1.7], + ["Barbados",0.2], + ["Belarus (Republic of)",5.3], + ["Belgium (Kingdom of)",8.4], + ["Belize",1.8], + ["Benin (Republic of)",6.1], + ["Bhutan (Kingdom of)",3.1], + ["Bolivia (Plurinational State of)",4.2], + ["Bosnia and Herzegovina",3.4], + ["Botswana (Republic of)",7.8], + ["Brazil (Federative Republic of)",2.8], + ["Brunei (Nation of the Abode of Peace)",0.8], + ["Bulgaria (Republic of)",2.9], + ["Burkina Faso",6.5], + ["Burundi (Republic of)",6.4], + ["Cape Verde (Republic of)",5.1], + ["Cambodia (Kingdom of)",3.1], + ["Cameroon (Republic of)",7.6], + ["Canada",5.4], + ["Central African Republic",9.3], + ["Chad (Republic of)",6.9], + ["Chile (Republic of)",3], + ["China (People's Republic of)",4.8], + ["Colombia (Republic of)",1.7], + ["Comoros (Union of the)",5.8], + ["Congo (Republic of the)",6.1], + ["Costa Rica (Republic of)",1.9], + ["Côte d'Ivoire (Republic of)",5], + ["Croatia (Republic of)",5.1], + ["Cuba (Republic of)",4.1], + ["Cyprus (Republic of)",1.1], + ["Czech Republic",3.8], + ["Korea (Democratic People's Republic of)",6.3], + ["Congo (Democratic Republic of the)",5], + ["Denmark (Kingdom of)",4.2], + ["Djibouti (Republic of)",7.6], + ["Dominican Republic",1.9], + ["Ecuador (Republic of)",3.6], + ["Egypt (Arab Republic of)",2.2], + ["El Salvador (Republic of)",2.1], + ["Equatorial Guinea (Republic of)",8.8], + ["Eritrea (State of)",8.3], + ["Estonia (Republic of)",4.5], + ["Eswatini (Kingdom of)",6.4], + ["Ethiopia (Federal Democratic Republic of)",5.2], + ["Fiji (Republic of)",6], + ["Finland (Republic of)",6.8], + ["France (French Republic)",4.5], + ["Gabon (Gabonese Republic)",3.8], + ["Gambia (Republic of the)",6.2], + ["Georgia",2.2], + ["Germany (Federal Republic of)",3.9], + ["Ghana (Republic of)",1.8], + ["Greece (Hellenic Republic)",1.5], + ["Grenada",0.7], + ["Guatemala (Republic of)",2.5], + ["Guinea (Republic of)",8], + ["Guinea-Bissau (Republic of)",6.7], + ["Guyana (Co-operative Republic of)",17], + ["Haiti (Republic of)",8], + ["Honduras (Republic of)",1], + ["Hungary (Republic of)",5.5], + ["Iceland (Republic of)",3.5], + ["India (Republic of)",11.1], + ["Indonesia (Republic of)",1.2], + ["Iran (Islamic Republic of)",2.8], + ["Iraq (Republic of)",2.4], + ["Ireland",3.6], + ["Israel (State of)",2.1], + ["Italy (Italian Republic)",2.1], + ["Jamaica",1], + ["Japan",6.9], + ["Jordan (Hashemite Kingdom of)",0.9], + ["Kazakhstan (Republic of)",6.9], + ["Kenya (Republic of)",5.3], + ["Kiribati (Republic of)",9.5], + ["Kuwait (State of)",0.7], + ["Kyrgyz Republic",3.5], + ["Lao (People's Democratic Republic)",3.5], + ["Latvia (Republic of)",4.6], + ["Lebanon (Lebanese Republic)",1.7], + ["Lesotho (Kingdom of)",34.6], + ["Liberia (Republic of)",5.5], + ["Libya (State of)",2.9], + ["Lithuania (Republic of)",6.2], + ["Luxembourg (Grand Duchy of)",5.4], + ["Madagascar (Republic of)",5.4], + ["Malawi (Republic of)",3.3], + ["Malaysia",2.4], + ["Maldives (Republic of)",0.9], + ["Mali (Republic of)",5.7], + ["Malta (Republic of)",2.3], + ["Mauritania (Islamic Republic of)",3.9], + ["Mauritius (Republic of)",2.5], + ["Mexico (United Mexican States)",2.2], + ["Micronesia (Federated States of)",13.2], + ["Mongolia",5.6], + ["Montenegro",7.9], + ["Morocco (Kingdom of)",4.7], + ["Mozambique (Republic of)",8.9], + ["Myanmar (Union of)",1.1], + ["Namibia (Republic of)",4.4], + ["Nepal (Federal Democratic Republic of)",2.9], + ["Netherlands (Kingdom of the)",6.1], + ["New Zealand",5.4], + ["Nicaragua (Republic of)",1.9], + ["Niger (Republic of)",6.4], + ["Nigeria (Federal Republic of)",3.8], + ["North Macedonia (Republic of)",3.5], + ["Norway (Kingdom of)",7.7], + ["Oman (Sultanate of)",1.1], + ["Pakistan (Islamic Republic of)",4.8], + ["Panama (Republic of)",1], + ["Papua New Guinea (Independent State of)",1.9], + ["Paraguay (Republic of)",3.3], + ["Peru (Republic of)",1.4], + ["Philippines (Republic of the)",1.3], + ["Poland (Republic of)",2.4], + ["Portugal (Portuguese Republic)",3.5], + ["Qatar (State of)",1.7], + ["Korea (Republic of)",13.4], + ["Moldova (Republic of)",3.3], + ["Romania",2.4], + ["Russian Federation",7.2], + ["Rwanda (Republic of)",5], + ["Saint Lucia",1.5], + ["Saint Vincent and the Grenadines",0.7], + ["Samoa (Independent State of)",7.8], + ["São Tomé and Príncipe (Democratic Republic of)",1.2], + ["Saudi Arabia (Kingdom of)",1.9], + ["Senegal (Republic of)",5.2], + ["Serbia (Republic of)",3.9], + ["Seychelles (Republic of)",1.3], + ["Sierra Leone (Republic of)",8.2], + ["Singapore (Republic of)",6.4], + ["Slovakia (Slovak Republic)",2.6], + ["Slovenia (Republic of)",5.5], + ["Solomon Islands",2.4], + ["Somalia (Federal Republic of)",7.1], + ["South Africa (Republic of)",9.8], + ["South Sudan (Republic of)",3.4], + ["Spain (Kingdom of)",2.8], + ["Sri Lanka (Democratic Socialist Republic of)",6.1], + ["Sudan (Republic of the)",3.3], + ["Suriname (Republic of)",11.8], + ["Sweden (Kingdom of)",7.7], + ["Switzerland (Swiss Confederation)",5.7], + ["Syrian Arab Republic",0.8], + ["Tajikistan (Republic of)",3.4], + ["Thailand (Kingdom of)",2.3], + ["Timor-Leste (Democratic Republic of)",2.4], + ["Togo (Togolese Republic)",6.5], + ["Tonga (Kingdom of)",2.9], + ["Trinidad and Tobago (Republic of)",3.7], + ["Tunisia (Republic of)",1.8], + ["Turkey (Republic of)",1.2], + ["Turkmenistan",2.9], + ["Uganda (Republic of)",3.7], + ["Ukraine",4.7], + ["United Arab Emirates",2.6], + ["United Kingdom (of Great Britain & Northern Ireland)",3.4], + ["Tanzania (United Republic of)",3.7], + ["United States (of America)",6.8], + ["Uruguay (Oriental Republic of)",7.7], + ["Uzbekistan (Republic of)",4.9], + ["Vanuatu (Republic of)",9], + ["Venezuela (Bolivarian Republic of)",0.7], + ["Vietnam (Socialist Republic of)",4.2], + ["Yemen (Republic of)",5.3], + ["Zambia (Republic of)",5.3], + ["Zimbabwe (Republic of)",13.5] + ] +} diff --git a/data/global/health/suicide-rate/suicide-rate-male.json b/data/global/health/suicide-rate/suicide-rate-male.json new file mode 100644 index 0000000..615f6c6 --- /dev/null +++ b/data/global/health/suicide-rate/suicide-rate-male.json @@ -0,0 +1,205 @@ +{ + "metadata" : { + "name" : "Male Suicide Rate", + "description" : "Male units of intentional self inflicted deaths per 100,000 population.", + "units" : "deaths/100k population", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","morbidity","mortality","suicide","male","gender"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_suicide_rate" + ] + }, + "data" : [ + ["country.name","suicide.rate.male"], + ["Afghanistan (Islamic Republic of)",6.2], + ["Albania (Republic of)",5.3], + ["Algeria (People's Democratic Republic of)",3.3], + ["Angola (Republic of)",21.7], + ["Antigua and Barbuda",0], + ["Argentina (Argentine Republic)",13.5], + ["Armenia (Republic of)",4.9], + ["Australia (Commonwealth of)",17], + ["Austria (Republic of)",16.6], + ["Azerbaijan (Republic of)",6.6], + ["Bahamas (Commonwealth of the)",5.8], + ["Bahrain (Kingdom of)",9.9], + ["Bangladesh (People's Republic of)",6], + ["Barbados",0.5], + ["Belarus (Republic of)",30.1], + ["Belgium (Kingdom of)",19.6], + ["Belize",13.6], + ["Benin (Republic of)",20.3], + ["Bhutan (Kingdom of)",6.8], + ["Bolivia (Plurinational State of)",9.6], + ["Bosnia and Herzegovina",13.5], + ["Botswana (Republic of)",35.5], + ["Brazil (Federative Republic of)",10.3], + ["Brunei (Nation of the Abode of Peace)",4.2], + ["Bulgaria (Republic of)",10.6], + ["Burkina Faso",24.5], + ["Burundi (Republic of)",18.9], + ["Cape Verde (Republic of)",27.4], + ["Cambodia (Kingdom of)",8.4], + ["Cameroon (Republic of)",25.2], + ["Canada",15.3], + ["Central African Republic",39.6], + ["Chad (Republic of)",20.2], + ["Chile (Republic of)",13.4], + ["China (People's Republic of)",8.6], + ["Colombia (Republic of)",6], + ["Comoros (Union of the)",11.3], + ["Congo (Republic of the)",18.3], + ["Costa Rica (Republic of)",13.3], + ["Côte d'Ivoire (Republic of)",25.7], + ["Croatia (Republic of)",17.7], + ["Cuba (Republic of)",16.7], + ["Cyprus (Republic of)",5.3], + ["Czech Republic",15.4], + ["Korea (Democratic People's Republic of)",10.6], + ["Congo (Democratic Republic of the)",20.7], + ["Denmark (Kingdom of)",11.1], + ["Djibouti (Republic of)",16.3], + ["Dominican Republic",8.5], + ["Ecuador (Republic of)",11.9], + ["Egypt (Arab Republic of)",4.7], + ["El Salvador (Republic of)",11.1], + ["Equatorial Guinea (Republic of)",18.5], + ["Eritrea (State of)",27.2], + ["Estonia (Republic of)",20.2], + ["Eswatini (Kingdom of)",78.7], + ["Ethiopia (Federal Democratic Republic of)",14.2], + ["Fiji (Republic of)",13.1], + ["Finland (Republic of)",20.1], + ["France (French Republic)",15.2], + ["Gabon (Gabonese Republic)",23.3], + ["Gambia (Republic of the)",13.3], + ["Georgia",14], + ["Germany (Federal Republic of)",12.8], + ["Ghana (Republic of)",20], + ["Greece (Hellenic Republic)",5.9], + ["Grenada",0.5], + ["Guatemala (Republic of)",10.3], + ["Guinea (Republic of)",18.4], + ["Guinea-Bissau (Republic of)",19.8], + ["Guyana (Co-operative Republic of)",65], + ["Haiti (Republic of)",14.9], + ["Honduras (Republic of)",4.4], + ["Hungary (Republic of)",19.1], + ["Iceland (Republic of)",18.7], + ["India (Republic of)",14.7], + ["Indonesia (Republic of)",4], + ["Iran (Islamic Republic of)",7.5], + ["Iraq (Republic of)",7.3], + ["Ireland",14.3], + ["Israel (State of)",8.3], + ["Italy (Italian Republic)",6.7], + ["Jamaica",3.6], + ["Japan",17.5], + ["Jordan (Hashemite Kingdom of)",3], + ["Kazakhstan (Republic of)",30.9], + ["Kenya (Republic of)",18.1], + ["Kiribati (Republic of)",53.6], + ["Kuwait (State of)",3.8], + ["Kyrgyz Republic",13.5], + ["Lao (People's Democratic Republic)",8.6], + ["Latvia (Republic of)",29], + ["Lebanon (Lebanese Republic)",3.9], + ["Lesotho (Kingdom of)",146.9], + ["Liberia (Republic of)",9.4], + ["Libya (State of)",6.1], + ["Lithuania (Republic of)",36.1], + ["Luxembourg (Grand Duchy of)",11.8], + ["Madagascar (Republic of)",13.3], + ["Malawi (Republic of)",20], + ["Malaysia",9], + ["Maldives (Republic of)",4.1], + ["Mali (Republic of)",10.5], + ["Malta (Republic of)",8.4], + ["Mauritania (Islamic Republic of)",7.4], + ["Mauritius (Republic of)",15], + ["Mexico (United Mexican States)",8.7], + ["Micronesia (Federated States of)",44.3], + ["Mongolia",31.1], + ["Montenegro",25.4], + ["Morocco (Kingdom of)",10.1], + ["Mozambique (Republic of)",42.6], + ["Myanmar (Union of)",5.1], + ["Namibia (Republic of)",24.9], + ["Nepal (Federal Democratic Republic of)",18.6], + ["Netherlands (Kingdom of the)",12.5], + ["New Zealand",15.4], + ["Nicaragua (Republic of)",7.8], + ["Niger (Republic of)",14.1], + ["Nigeria (Federal Republic of)",10.1], + ["North Macedonia (Republic of)",11], + ["Norway (Kingdom of)",15.8], + ["Oman (Sultanate of)",6.4], + ["Pakistan (Islamic Republic of)",14.6], + ["Panama (Republic of)",4.8], + ["Papua New Guinea (Independent State of)",5.2], + ["Paraguay (Republic of)",9], + ["Peru (Republic of)",4.1], + ["Philippines (Republic of the)",3.9], + ["Poland (Republic of)",16.5], + ["Portugal (Portuguese Republic)",11.6], + ["Qatar (State of)",5.7], + ["Korea (Republic of)",29.7], + ["Moldova (Republic of)",22.1], + ["Romania",12.6], + ["Russian Federation",38.2], + ["Rwanda (Republic of)",14.8], + ["Saint Lucia",12.5], + ["Saint Vincent and the Grenadines",1.3], + ["Samoa (Independent State of)",20.9], + ["São Tomé and Príncipe (Democratic Republic of)",3.3], + ["Saudi Arabia (Kingdom of)",7.8], + ["Senegal (Republic of)",18.5], + ["Serbia (Republic of)",12.2], + ["Seychelles (Republic of)",14], + ["Sierra Leone (Republic of)",14.8], + ["Singapore (Republic of)",12.7], + ["Slovakia (Slovak Republic)",16.7], + ["Slovenia (Republic of)",22.7], + ["Solomon Islands",32.2], + ["Somalia (Federal Republic of)",22.8], + ["South Africa (Republic of)",37.9], + ["South Sudan (Republic of)",10.4], + ["Spain (Kingdom of)",7.9], + ["Sri Lanka (Democratic Socialist Republic of)",20.9], + ["Sudan (Republic of the)",6.3], + ["Suriname (Republic of)",41.3], + ["Sweden (Kingdom of)",16.9], + ["Switzerland (Swiss Confederation)",14.2], + ["Syrian Arab Republic",3.5], + ["Tajikistan (Republic of)",7.4], + ["Thailand (Kingdom of)",13.9], + ["Timor-Leste (Democratic Republic of)",6.7], + ["Togo (Togolese Republic)",24], + ["Tonga (Kingdom of)",5.9], + ["Trinidad and Tobago (Republic of)",13.1], + ["Tunisia (Republic of)",4.6], + ["Turkey (Republic of)",3.6], + ["Turkmenistan",9.4], + ["Uganda (Republic of)",19.4], + ["Ukraine",32.7], + ["United Arab Emirates",6.3], + ["United Kingdom (of Great Britain & Northern Ireland)",10.4], + ["Tanzania (United Republic of)",13.5], + ["United States (of America)",22.4], + ["Uruguay (Oriental Republic of)",31.1], + ["Uzbekistan (Republic of)",11.8], + ["Vanuatu (Republic of)",33.1], + ["Venezuela (Bolivarian Republic of)",3.7], + ["Vietnam (Socialist Republic of)",10.6], + ["Yemen (Republic of)",9], + ["Zambia (Republic of)",25.7], + ["Zimbabwe (Republic of)",37.8] + ] +} diff --git a/data/global/health/suicide-rate/suicide-rate.json b/data/global/health/suicide-rate/suicide-rate.json new file mode 100644 index 0000000..b1ea8d0 --- /dev/null +++ b/data/global/health/suicide-rate/suicide-rate.json @@ -0,0 +1,205 @@ +{ + "metadata" : { + "name" : "Suicide Rate", + "description" : "Units of intentional self inflicted deaths per 100,000 population.", + "units" : "deaths/100k population", + "year" : "2019", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "health", + "tags" : ["global","health","morbidity","mortality","suicide"], + "authors" : [ + "World Health Organisation (WHO)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_suicide_rate" + ] + }, + "data" : [ + ["country.name","suicide.rate"], + ["Afghanistan (Islamic Republic of)",6], + ["Albania (Republic of)",3.7], + ["Algeria (People's Democratic Republic of)",2.6], + ["Angola (Republic of)",12.6], + ["Antigua and Barbuda",0.3], + ["Argentina (Argentine Republic)",8.1], + ["Armenia (Republic of)",2.7], + ["Australia (Commonwealth of)",11.3], + ["Austria (Republic of)",10.4], + ["Azerbaijan (Republic of)",4], + ["Bahamas (Commonwealth of the)",3.4], + ["Bahrain (Kingdom of)",7.2], + ["Bangladesh (People's Republic of)",3.9], + ["Barbados",0.3], + ["Belarus (Republic of)",16.5], + ["Belgium (Kingdom of)",13.9], + ["Belize",7.7], + ["Benin (Republic of)",12.7], + ["Bhutan (Kingdom of)",5.1], + ["Bolivia (Plurinational State of)",6.8], + ["Bosnia and Herzegovina",8.3], + ["Botswana (Republic of)",20.2], + ["Brazil (Federative Republic of)",6.4], + ["Brunei (Nation of the Abode of Peace)",2.5], + ["Bulgaria (Republic of)",6.5], + ["Burkina Faso",14.4], + ["Burundi (Republic of)",12.1], + ["Cape Verde (Republic of)",15.2], + ["Cambodia (Kingdom of)",5.5], + ["Cameroon (Republic of)",15.9], + ["Canada",10.3], + ["Central African Republic",23], + ["Chad (Republic of)",13.2], + ["Chile (Republic of)",8], + ["China (People's Republic of)",6.7], + ["Colombia (Republic of)",3.7], + ["Comoros (Union of the)",8.5], + ["Congo (Republic of the)",11.6], + ["Costa Rica (Republic of)",7.6], + ["Côte d'Ivoire (Republic of)",15.7], + ["Croatia (Republic of)",11], + ["Cuba (Republic of)",10.2], + ["Cyprus (Republic of)",3.2], + ["Czech Republic",9.5], + ["Korea (Democratic People's Republic of)",8.2], + ["Congo (Democratic Republic of the)",12.4], + ["Denmark (Kingdom of)",7.6], + ["Djibouti (Republic of)",11.9], + ["Dominican Republic",5.1], + ["Ecuador (Republic of)",7.7], + ["Egypt (Arab Republic of)",3.4], + ["El Salvador (Republic of)",6.1], + ["Equatorial Guinea (Republic of)",13.5], + ["Eritrea (State of)",17.3], + ["Estonia (Republic of)",12], + ["Eswatini (Kingdom of)",40.5], + ["Ethiopia (Federal Democratic Republic of)",9.5], + ["Fiji (Republic of)",9.5], + ["Finland (Republic of)",13.4], + ["France (French Republic)",9.7], + ["Gabon (Gabonese Republic)",13.1], + ["Gambia (Republic of the)",9.6], + ["Georgia",7.7], + ["Germany (Federal Republic of)",8.3], + ["Ghana (Republic of)",10.5], + ["Greece (Hellenic Republic)",3.6], + ["Grenada",0.6], + ["Guatemala (Republic of)",6.2], + ["Guinea (Republic of)",12.3], + ["Guinea-Bissau (Republic of)",12.4], + ["Guyana (Co-operative Republic of)",40.9], + ["Haiti (Republic of)",11.2], + ["Honduras (Republic of)",2.6], + ["Hungary (Republic of)",11.8], + ["Iceland (Republic of)",11.2], + ["India (Republic of)",12.9], + ["Indonesia (Republic of)",2.6], + ["Iran (Islamic Republic of)",5.1], + ["Iraq (Republic of)",4.7], + ["Ireland",8.9], + ["Israel (State of)",5.2], + ["Italy (Italian Republic)",4.3], + ["Jamaica",2.3], + ["Japan",12.2], + ["Jordan (Hashemite Kingdom of)",2], + ["Kazakhstan (Republic of)",18.1], + ["Kenya (Republic of)",11], + ["Kiribati (Republic of)",30.6], + ["Kuwait (State of)",2.7], + ["Kyrgyz Republic",8.3], + ["Lao (People's Democratic Republic)",6], + ["Latvia (Republic of)",16.1], + ["Lebanon (Lebanese Republic)",2.8], + ["Lesotho (Kingdom of)",87.5], + ["Liberia (Republic of)",7.4], + ["Libya (State of)",4.5], + ["Lithuania (Republic of)",20.2], + ["Luxembourg (Grand Duchy of)",8.6], + ["Madagascar (Republic of)",9.2], + ["Malawi (Republic of)",10.6], + ["Malaysia",5.8], + ["Maldives (Republic of)",2.8], + ["Mali (Republic of)",8], + ["Malta (Republic of)",5.3], + ["Mauritania (Islamic Republic of)",5.5], + ["Mauritius (Republic of)",8.8], + ["Mexico (United Mexican States)",5.3], + ["Micronesia (Federated States of)",29], + ["Mongolia",18], + ["Montenegro",16.2], + ["Morocco (Kingdom of)",7.3], + ["Mozambique (Republic of)",23.2], + ["Myanmar (Union of)",3], + ["Namibia (Republic of)",13.5], + ["Nepal (Federal Democratic Republic of)",9.8], + ["Netherlands (Kingdom of the)",9.3], + ["New Zealand",10.3], + ["Nicaragua (Republic of)",4.7], + ["Niger (Republic of)",10.1], + ["Nigeria (Federal Republic of)",6.9], + ["North Macedonia (Republic of)",7.2], + ["Norway (Kingdom of)",11.8], + ["Oman (Sultanate of)",4.5], + ["Pakistan (Islamic Republic of)",9.8], + ["Panama (Republic of)",2.9], + ["Papua New Guinea (Independent State of)",3.6], + ["Paraguay (Republic of)",6.2], + ["Peru (Republic of)",2.7], + ["Philippines (Republic of the)",2.5], + ["Poland (Republic of)",9.3], + ["Portugal (Portuguese Republic)",7.2], + ["Qatar (State of)",4.7], + ["Korea (Republic of)",21.2], + ["Moldova (Republic of)",12.2], + ["Romania",7.3], + ["Russian Federation",21.6], + ["Rwanda (Republic of)",9.5], + ["Saint Lucia",6.9], + ["Saint Vincent and the Grenadines",1], + ["Samoa (Independent State of)",14.6], + ["São Tomé and Príncipe (Democratic Republic of)",2.2], + ["Saudi Arabia (Kingdom of)",5.4], + ["Senegal (Republic of)",11], + ["Serbia (Republic of)",7.9], + ["Seychelles (Republic of)",7.7], + ["Sierra Leone (Republic of)",11.3], + ["Singapore (Republic of)",9.7], + ["Slovakia (Slovak Republic)",9.3], + ["Slovenia (Republic of)",14], + ["Solomon Islands",17.4], + ["Somalia (Federal Republic of)",14.7], + ["South Africa (Republic of)",23.5], + ["South Sudan (Republic of)",6.7], + ["Spain (Kingdom of)",5.3], + ["Sri Lanka (Democratic Socialist Republic of)",12.9], + ["Sudan (Republic of the)",4.8], + ["Suriname (Republic of)",25.9], + ["Sweden (Kingdom of)",12.4], + ["Switzerland (Swiss Confederation)",9.8], + ["Syrian Arab Republic",2.1], + ["Tajikistan (Republic of)",5.3], + ["Thailand (Kingdom of)",8], + ["Timor-Leste (Democratic Republic of)",4.5], + ["Togo (Togolese Republic)",14.8], + ["Tonga (Kingdom of)",4.4], + ["Trinidad and Tobago (Republic of)",8.3], + ["Tunisia (Republic of)",3.2], + ["Turkey (Republic of)",2.3], + ["Turkmenistan",6.1], + ["Uganda (Republic of)",10.4], + ["Ukraine",17.7], + ["United Arab Emirates",5.2], + ["United Kingdom (of Great Britain & Northern Ireland)",6.9], + ["Tanzania (United Republic of)",8.2], + ["United States (of America)",14.5], + ["Uruguay (Oriental Republic of)",18.8], + ["Uzbekistan (Republic of)",8.3], + ["Vanuatu (Republic of)",21], + ["Venezuela (Bolivarian Republic of)",2.1], + ["Vietnam (Socialist Republic of)",7.2], + ["Yemen (Republic of)",7.1], + ["Zambia (Republic of)",14.4], + ["Zimbabwe (Republic of)",23.6] + ] +} diff --git a/data/global/infrastructure/electrification-rate/electrification-rate-rural.json b/data/global/infrastructure/electrification-rate/electrification-rate-rural.json new file mode 100644 index 0000000..1ff9f7d --- /dev/null +++ b/data/global/infrastructure/electrification-rate/electrification-rate-rural.json @@ -0,0 +1,230 @@ +{ + "metadata" : { + "name" : "Rural Electrification Rate", + "description" : "Percentage of rural population with access to electricity.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","energy"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_electrification_rate" + ] + }, + "data" : [ + ["country.name","electrification.rate.rural"], + ["Albania (Republic of)",1], + ["Algeria (People's Democratic Republic of)",1], + ["Andorra (Principality of)",1], + ["Antigua and Barbuda",1], + ["Argentina (Argentine Republic)",1], + ["Armenia (Republic of)",1], + ["Aruba",1], + ["Austria (Republic of)",1], + ["Australia (Commonwealth of)",1], + ["Azerbaijan (Republic of)",1], + ["Bahamas (Commonwealth of the)",1], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",1], + ["Barbados",1], + ["Belarus (Republic of)",1], + ["Belgium (Kingdom of)",1], + ["Bermuda",1], + ["Bhutan (Kingdom of)",1], + ["Bosnia and Herzegovina",1], + ["Brazil (Federative Republic of)",1], + ["Brunei (Nation of the Abode of Peace)",1], + ["Bulgaria (Republic of)",1], + ["Cayman Islands",1], + ["Chile (Republic of)",1], + ["China (People's Republic of)",1], + ["Costa Rica (Republic of)",1], + ["Croatia (Republic of)",1], + ["Cuba (Republic of)",1], + ["Curaçao",1], + ["Cyprus (Republic of)",1], + ["Czech Republic",1], + ["Denmark (Kingdom of)",1], + ["Dominica (Commonwealth of)",1], + ["Dominican Republic",1], + ["Ecuador (Republic of)",1], + ["Egypt (Arab Republic of)",1], + ["El Salvador (Republic of)",1], + ["Estonia (Republic of)",1], + ["Finland (Republic of)",1], + ["France (French Republic)",1], + ["French Polynesia",1], + ["Germany (Federal Republic of)",1], + ["Georgia",1], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",1], + ["Greenland",1], + ["Guam",1], + ["Hong Kong (Special Administrative Region of China)",1], + ["Hungary (Republic of)",1], + ["India (Republic of)",1], + ["Iran (Islamic Republic of)",1], + ["Ireland",1], + ["Iceland (Republic of)",1], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Japan",1], + ["Canada",1], + ["Kazakhstan (Republic of)",1], + ["Kiribati (Republic of)",1], + ["Kyrgyz Republic",1], + ["Kosovo (Republic of)",1], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Latvia (Republic of)",1], + ["Lebanon (Lebanese Republic)",1], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",1], + ["Luxembourg (Grand Duchy of)",1], + ["Macao (Special Administrative Region of China)",1], + ["Malaysia",1], + ["Maldives (Republic of)",1], + ["Malta (Republic of)",1], + ["North Macedonia (Republic of)",1], + ["Morocco (Kingdom of)",1], + ["Mexico (United Mexican States)",1], + ["Moldova (Republic of)",1], + ["Monaco (Principality of)",1], + ["Montenegro",1], + ["Netherlands (Kingdom of the)",1], + ["New Caledonia",1], + ["New Zealand",1], + ["Northern Mariana Islands (Commonwealth of the)",1], + ["Norway (Kingdom of)",1], + ["Oman (Sultanate of)",1], + ["Pakistan (Islamic Republic of)",1], + ["Palau (Republic of)",1], + ["Palestine (State of)",1], + ["Panama (Republic of)",1], + ["Poland (Republic of)",1], + ["Portugal (Portuguese Republic)",1], + ["Paraguay (Republic of)",1], + ["Puerto Rico (Commonwealth of)",1], + ["Qatar (State of)",1], + ["Romania",1], + ["Russian Federation",1], + ["San Marino (Republic of)",1], + ["Saudi Arabia (Kingdom of)",1], + ["Saint Kitts and Nevis (Federation of)",1], + ["Saint Vincent and the Grenadines",1], + ["Samoa (Independent State of)",1], + ["Serbia (Republic of)",1], + ["Seychelles (Republic of)",1], + ["Singapore (Republic of)",1], + ["Slovakia (Slovak Republic)",1], + ["Slovenia (Republic of)",1], + ["Spain (Kingdom of)",1], + ["Sweden (Kingdom of)",1], + ["Switzerland (Swiss Confederation)",1], + ["Thailand (Kingdom of)",1], + ["Trinidad and Tobago (Republic of)",1], + ["Turks and Caicos Islands",1], + ["Turkey (Republic of)",1], + ["Turkmenistan",1], + ["Tuvalu",1], + ["Ukraine",1], + ["United States (of America)",1], + ["Uzbekistan (Republic of)",1], + ["United Arab Emirates",1], + ["United Kingdom (of Great Britain & Northern Ireland)",1], + ["Uruguay (Oriental Republic of)",1], + ["Vietnam (Socialist Republic of)",1], + ["Venezuela (Bolivarian Republic of)",1], + ["Colombia (Republic of)",0.997], + ["Iraq (Republic of)",0.999], + ["Jordan (Hashemite Kingdom of)",0.989], + ["Nauru (Republic of)",0.987], + ["Tunisia (Republic of)",0.996], + ["Fiji (Republic of)",0.993], + ["Sri Lanka (Democratic Socialist Republic of)",0.995], + ["Belize",1], + ["Saint Lucia",1], + ["Tajikistan (Republic of)",0.993], + ["Jamaica",0.976], + ["Tonga (Kingdom of)",0.989], + ["Afghanistan (Islamic Republic of)",0.983], + ["Indonesia (Republic of)",0.968], + ["Mongolia",0.946], + ["Lao (People's Democratic Republic)",0.971], + ["Mauritius (Republic of)",1], + ["Suriname (Republic of)",0.943], + ["Marshall Islands (Republic of the)",0.984], + ["Bolivia (Plurinational State of)",0.86], + ["Grenada",null], + ["Peru (Republic of)",0.818], + ["Philippines (Republic of the)",0.925], + ["Guatemala (Republic of)",0.936], + ["Nepal (Federal Democratic Republic of)",0.935], + ["Cape Verde (Republic of)",0.969], + ["Gabon (Gabonese Republic)",0.625], + ["Honduras (Republic of)",0.811], + ["Guyana (Co-operative Republic of)",0.9], + ["Cambodia (Kingdom of)",0.89], + ["South Africa (Republic of)",0.896], + ["Nicaragua (Republic of)",0.714], + ["Syrian Arab Republic",0.695], + ["Timor-Leste (Democratic Republic of)",0.792], + ["Ghana (Republic of)",0.673], + ["Micronesia (Federated States of)",0.787], + ["Comoros (Union of the)",0.77], + ["Eswatini (Kingdom of)",0.702], + ["Kenya (Republic of)",0.717], + ["Senegal (Republic of)",0.55], + ["São Tomé and Príncipe (Democratic Republic of)",0.557], + ["Congo (Republic of the)",0.202], + ["Equatorial Guinea (Republic of)",0.066], + ["Côte d'Ivoire (Republic of)",0.329], + ["Solomon Islands",0.635], + ["Myanmar (Union of)",0.602], + ["Botswana (Republic of)",0.278], + ["Cameroon (Republic of)",0.23], + ["Yemen (Republic of)",0.487], + ["Vanuatu (Republic of)",0.511], + ["Djibouti (Republic of)",0.238], + ["Gambia (Republic of the)",0.355], + ["Sudan (Republic of the)",0.471], + ["Papua New Guinea (Independent State of)",0.555], + ["Nigeria (Federal Republic of)",0.31], + ["Namibia (Republic of)",0.355], + ["Togo (Togolese Republic)",0.223], + ["Mali (Republic of)",0.254], + ["Eritrea (State of)",0.346], + ["Korea (Democratic People's Republic of)",0.55], + ["Lesotho (Kingdom of)",0.377], + ["Haiti (Republic of)",0.035], + ["Ethiopia (Federal Democratic Republic of)",0.327], + ["Mauritania (Islamic Republic of)",0.006], + ["Guinea (Republic of)",0.197], + ["Angola (Republic of)",0.097], + ["Uganda (Republic of)",0.38], + ["Benin (Republic of)",0.183], + ["Zimbabwe (Republic of)",0.2], + ["Zambia (Republic of)",0.11], + ["Tanzania (United Republic of)",0.188], + ["Somalia (Federal Republic of)",0.146], + ["Rwanda (Republic of)",0.234], + ["Central African Republic",0.163], + ["Mozambique (Republic of)",0.08], + ["Guinea-Bissau (Republic of)",0.1], + ["South Sudan (Republic of)",0.237], + ["Sierra Leone (Republic of)",0.064], + ["Liberia (Republic of)",0.074], + ["Madagascar (Republic of)",0], + ["Congo (Democratic Republic of the)",0.028], + ["Malawi (Republic of)",0.104], + ["Niger (Republic of)",0.117], + ["Burkina Faso",0.028], + ["Chad (Republic of)",0.027], + ["Burundi (Republic of)",0.034] + ] +} diff --git a/data/global/infrastructure/electrification-rate/electrification-rate-total.json b/data/global/infrastructure/electrification-rate/electrification-rate-total.json new file mode 100644 index 0000000..3cdf11f --- /dev/null +++ b/data/global/infrastructure/electrification-rate/electrification-rate-total.json @@ -0,0 +1,230 @@ +{ + "metadata" : { + "name" : "Total Electrification Rate", + "description" : "Percentage of population with access to electricity.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","energy"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_electrification_rate" + ] + }, + "data" : [ + ["country.name","electrification.rate.total"], + ["Albania (Republic of)",1], + ["Algeria (People's Democratic Republic of)",1], + ["Andorra (Principality of)",1], + ["Antigua and Barbuda",1], + ["Argentina (Argentine Republic)",1], + ["Armenia (Republic of)",1], + ["Aruba",1], + ["Austria (Republic of)",1], + ["Australia (Commonwealth of)",1], + ["Azerbaijan (Republic of)",1], + ["Bahamas (Commonwealth of the)",1], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",1], + ["Barbados",1], + ["Belarus (Republic of)",1], + ["Belgium (Kingdom of)",1], + ["Bermuda",1], + ["Bhutan (Kingdom of)",1], + ["Bosnia and Herzegovina",1], + ["Brazil (Federative Republic of)",1], + ["Brunei (Nation of the Abode of Peace)",1], + ["Bulgaria (Republic of)",1], + ["Cayman Islands",1], + ["Chile (Republic of)",1], + ["China (People's Republic of)",1], + ["Costa Rica (Republic of)",1], + ["Croatia (Republic of)",1], + ["Cuba (Republic of)",1], + ["Curaçao",1], + ["Cyprus (Republic of)",1], + ["Czech Republic",1], + ["Denmark (Kingdom of)",1], + ["Dominica (Commonwealth of)",1], + ["Dominican Republic",1], + ["Ecuador (Republic of)",1], + ["Egypt (Arab Republic of)",1], + ["El Salvador (Republic of)",1], + ["Estonia (Republic of)",1], + ["Finland (Republic of)",1], + ["France (French Republic)",1], + ["French Polynesia",1], + ["Germany (Federal Republic of)",1], + ["Georgia",1], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",1], + ["Greenland",1], + ["Guam",1], + ["Hong Kong (Special Administrative Region of China)",1], + ["Hungary (Republic of)",1], + ["India (Republic of)",1], + ["Iran (Islamic Republic of)",1], + ["Ireland",1], + ["Iceland (Republic of)",1], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Japan",1], + ["Canada",1], + ["Kazakhstan (Republic of)",1], + ["Kiribati (Republic of)",1], + ["Kyrgyz Republic",1], + ["Kosovo (Republic of)",1], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Latvia (Republic of)",1], + ["Lebanon (Lebanese Republic)",1], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",1], + ["Luxembourg (Grand Duchy of)",1], + ["Macao (Special Administrative Region of China)",1], + ["Malaysia",1], + ["Maldives (Republic of)",1], + ["Malta (Republic of)",1], + ["North Macedonia (Republic of)",1], + ["Morocco (Kingdom of)",1], + ["Mexico (United Mexican States)",1], + ["Moldova (Republic of)",1], + ["Monaco (Principality of)",1], + ["Montenegro",1], + ["Netherlands (Kingdom of the)",1], + ["New Caledonia",1], + ["New Zealand",1], + ["Northern Mariana Islands (Commonwealth of the)",1], + ["Norway (Kingdom of)",1], + ["Oman (Sultanate of)",1], + ["Pakistan (Islamic Republic of)",1], + ["Palau (Republic of)",1], + ["Palestine (State of)",1], + ["Panama (Republic of)",1], + ["Poland (Republic of)",1], + ["Portugal (Portuguese Republic)",1], + ["Paraguay (Republic of)",1], + ["Puerto Rico (Commonwealth of)",1], + ["Qatar (State of)",1], + ["Romania",1], + ["Russian Federation",1], + ["San Marino (Republic of)",1], + ["Saudi Arabia (Kingdom of)",1], + ["Saint Kitts and Nevis (Federation of)",1], + ["Saint Vincent and the Grenadines",1], + ["Samoa (Independent State of)",1], + ["Serbia (Republic of)",1], + ["Seychelles (Republic of)",1], + ["Singapore (Republic of)",1], + ["Slovakia (Slovak Republic)",1], + ["Slovenia (Republic of)",1], + ["Spain (Kingdom of)",1], + ["Sweden (Kingdom of)",1], + ["Switzerland (Swiss Confederation)",1], + ["Thailand (Kingdom of)",1], + ["Trinidad and Tobago (Republic of)",1], + ["Turks and Caicos Islands",1], + ["Turkey (Republic of)",1], + ["Turkmenistan",1], + ["Tuvalu",1], + ["Ukraine",1], + ["United States (of America)",1], + ["Uzbekistan (Republic of)",1], + ["United Arab Emirates",1], + ["United Kingdom (of Great Britain & Northern Ireland)",1], + ["Uruguay (Oriental Republic of)",1], + ["Vietnam (Socialist Republic of)",1], + ["Venezuela (Bolivarian Republic of)",1], + ["Colombia (Republic of)",0.999], + ["Iraq (Republic of)",0.999], + ["Jordan (Hashemite Kingdom of)",0.999], + ["Nauru (Republic of)",0.998], + ["Tunisia (Republic of)",0.998], + ["Fiji (Republic of)",0.996], + ["Sri Lanka (Democratic Socialist Republic of)",0.996], + ["Belize",0.995], + ["Saint Lucia",0.995], + ["Tajikistan (Republic of)",0.993], + ["Jamaica",0.989], + ["Tonga (Kingdom of)",0.989], + ["Afghanistan (Islamic Republic of)",0.987], + ["Indonesia (Republic of)",0.985], + ["Mongolia",0.981], + ["Lao (People's Democratic Republic)",0.979], + ["Mauritius (Republic of)",0.975], + ["Suriname (Republic of)",0.974], + ["Marshall Islands (Republic of the)",0.964], + ["Bolivia (Plurinational State of)",0.956], + ["Grenada",0.953], + ["Peru (Republic of)",0.952], + ["Philippines (Republic of the)",0.949], + ["Guatemala (Republic of)",0.947], + ["Nepal (Federal Democratic Republic of)",0.939], + ["Cape Verde (Republic of)",0.936], + ["Gabon (Gabonese Republic)",0.93], + ["Honduras (Republic of)",0.919], + ["Guyana (Co-operative Republic of)",0.918], + ["Cambodia (Kingdom of)",0.916], + ["South Africa (Republic of)",0.912], + ["Nicaragua (Republic of)",0.881], + ["Syrian Arab Republic",0.86], + ["Timor-Leste (Democratic Republic of)",0.856], + ["Ghana (Republic of)",0.824], + ["Micronesia (Federated States of)",0.821], + ["Comoros (Union of the)",0.819], + ["Eswatini (Kingdom of)",0.765], + ["Kenya (Republic of)",0.75], + ["Senegal (Republic of)",0.786], + ["São Tomé and Príncipe (Democratic Republic of)",0.71], + ["Congo (Republic of the)",0.685], + ["Equatorial Guinea (Republic of)",0.67], + ["Côte d'Ivoire (Republic of)",0.67], + ["Solomon Islands",0.667], + ["Myanmar (Union of)",0.704], + ["Botswana (Republic of)",0.649], + ["Cameroon (Republic of)",0.627], + ["Yemen (Republic of)",0.62], + ["Vanuatu (Republic of)",0.619], + ["Djibouti (Republic of)",0.604], + ["Gambia (Republic of the)",0.603], + ["Sudan (Republic of the)",0.598], + ["Papua New Guinea (Independent State of)",0.59], + ["Nigeria (Federal Republic of)",0.565], + ["Namibia (Republic of)",0.539], + ["Togo (Togolese Republic)",0.519], + ["Mali (Republic of)",0.509], + ["Eritrea (State of)",0.496], + ["Korea (Democratic People's Republic of)",0.485], + ["Lesotho (Kingdom of)",0.47], + ["Haiti (Republic of)",0.453], + ["Ethiopia (Federal Democratic Republic of)",0.45], + ["Mauritania (Islamic Republic of)",0.445], + ["Guinea (Republic of)",0.44], + ["Angola (Republic of)",0.433], + ["Uganda (Republic of)",0.426], + ["Benin (Republic of)",0.415], + ["Zimbabwe (Republic of)",0.41], + ["Zambia (Republic of)",0.398], + ["Tanzania (United Republic of)",0.356], + ["Somalia (Federal Republic of)",0.353], + ["Rwanda (Republic of)",0.347], + ["Central African Republic",0.324], + ["Mozambique (Republic of)",0.311], + ["Guinea-Bissau (Republic of)",0.287], + ["South Sudan (Republic of)",0.282], + ["Sierra Leone (Republic of)",0.261], + ["Liberia (Republic of)",0.259], + ["Madagascar (Republic of)",0.259], + ["Congo (Democratic Republic of the)",0.19], + ["Malawi (Republic of)",0.18], + ["Niger (Republic of)",0.176], + ["Burkina Faso",0.144], + ["Chad (Republic of)",0.118], + ["Burundi (Republic of)",0.11] + ] +} diff --git a/data/global/infrastructure/electrification-rate/electrification-rate-urban.json b/data/global/infrastructure/electrification-rate/electrification-rate-urban.json new file mode 100644 index 0000000..cb19d25 --- /dev/null +++ b/data/global/infrastructure/electrification-rate/electrification-rate-urban.json @@ -0,0 +1,230 @@ +{ + "metadata" : { + "name" : "Urban Electrification Rate", + "description" : "Percentage of urban population with access to electricity.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","energy"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_electrification_rate" + ] + }, + "data" : [ + ["country.name","electrification.rate.urban"], + ["Albania (Republic of)",1], + ["Algeria (People's Democratic Republic of)",1], + ["Andorra (Principality of)",1], + ["Antigua and Barbuda",1], + ["Argentina (Argentine Republic)",1], + ["Armenia (Republic of)",1], + ["Aruba",1], + ["Austria (Republic of)",1], + ["Australia (Commonwealth of)",1], + ["Azerbaijan (Republic of)",1], + ["Bahamas (Commonwealth of the)",1], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",1], + ["Barbados",1], + ["Belarus (Republic of)",1], + ["Belgium (Kingdom of)",1], + ["Bermuda",1], + ["Bhutan (Kingdom of)",1], + ["Bosnia and Herzegovina",1], + ["Brazil (Federative Republic of)",1], + ["Brunei (Nation of the Abode of Peace)",1], + ["Bulgaria (Republic of)",1], + ["Cayman Islands",1], + ["Chile (Republic of)",1], + ["China (People's Republic of)",1], + ["Costa Rica (Republic of)",1], + ["Croatia (Republic of)",1], + ["Cuba (Republic of)",1], + ["Curaçao",1], + ["Cyprus (Republic of)",1], + ["Czech Republic",1], + ["Denmark (Kingdom of)",1], + ["Dominica (Commonwealth of)",1], + ["Dominican Republic",1], + ["Ecuador (Republic of)",1], + ["Egypt (Arab Republic of)",1], + ["El Salvador (Republic of)",1], + ["Estonia (Republic of)",1], + ["Finland (Republic of)",1], + ["France (French Republic)",1], + ["French Polynesia",1], + ["Germany (Federal Republic of)",1], + ["Georgia",1], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",1], + ["Greenland",1], + ["Guam",1], + ["Hong Kong (Special Administrative Region of China)",1], + ["Hungary (Republic of)",1], + ["India (Republic of)",1], + ["Iran (Islamic Republic of)",1], + ["Ireland",1], + ["Iceland (Republic of)",1], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Japan",1], + ["Canada",1], + ["Kazakhstan (Republic of)",1], + ["Kiribati (Republic of)",1], + ["Kyrgyz Republic",1], + ["Kosovo (Republic of)",1], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Latvia (Republic of)",1], + ["Lebanon (Lebanese Republic)",1], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",1], + ["Luxembourg (Grand Duchy of)",1], + ["Macao (Special Administrative Region of China)",1], + ["Malaysia",1], + ["Maldives (Republic of)",1], + ["Malta (Republic of)",1], + ["North Macedonia (Republic of)",1], + ["Morocco (Kingdom of)",1], + ["Mexico (United Mexican States)",1], + ["Moldova (Republic of)",1], + ["Monaco (Principality of)",1], + ["Montenegro",1], + ["Netherlands (Kingdom of the)",1], + ["New Caledonia",1], + ["New Zealand",1], + ["Northern Mariana Islands (Commonwealth of the)",1], + ["Norway (Kingdom of)",1], + ["Oman (Sultanate of)",1], + ["Pakistan (Islamic Republic of)",1], + ["Palau (Republic of)",1], + ["Palestine (State of)",1], + ["Panama (Republic of)",1], + ["Poland (Republic of)",1], + ["Portugal (Portuguese Republic)",1], + ["Paraguay (Republic of)",1], + ["Puerto Rico (Commonwealth of)",1], + ["Qatar (State of)",1], + ["Romania",1], + ["Russian Federation",1], + ["San Marino (Republic of)",1], + ["Saudi Arabia (Kingdom of)",1], + ["Saint Kitts and Nevis (Federation of)",1], + ["Saint Vincent and the Grenadines",1], + ["Samoa (Independent State of)",1], + ["Serbia (Republic of)",1], + ["Seychelles (Republic of)",1], + ["Singapore (Republic of)",1], + ["Slovakia (Slovak Republic)",1], + ["Slovenia (Republic of)",1], + ["Spain (Kingdom of)",1], + ["Sweden (Kingdom of)",1], + ["Switzerland (Swiss Confederation)",1], + ["Thailand (Kingdom of)",1], + ["Trinidad and Tobago (Republic of)",1], + ["Turks and Caicos Islands",1], + ["Turkey (Republic of)",1], + ["Turkmenistan",1], + ["Tuvalu",1], + ["Ukraine",1], + ["United States (of America)",1], + ["Uzbekistan (Republic of)",1], + ["United Arab Emirates",1], + ["United Kingdom (of Great Britain & Northern Ireland)",1], + ["Uruguay (Oriental Republic of)",1], + ["Vietnam (Socialist Republic of)",1], + ["Venezuela (Bolivarian Republic of)",1], + ["Colombia (Republic of)",1], + ["Iraq (Republic of)",0.999], + ["Jordan (Hashemite Kingdom of)",1], + ["Nauru (Republic of)",0.994], + ["Tunisia (Republic of)",0.999], + ["Fiji (Republic of)",0.999], + ["Sri Lanka (Democratic Socialist Republic of)",1], + ["Belize",0.983], + ["Saint Lucia",0.975], + ["Tajikistan (Republic of)",0.992], + ["Jamaica",1], + ["Tonga (Kingdom of)",0.989], + ["Afghanistan (Islamic Republic of)",1], + ["Indonesia (Republic of)",0.999], + ["Mongolia",0.997], + ["Lao (People's Democratic Republic)",0.995], + ["Mauritius (Republic of)",0.885], + ["Suriname (Republic of)",0.99], + ["Marshall Islands (Republic of the)",0.957], + ["Bolivia (Plurinational State of)",0.998], + ["Grenada",null], + ["Peru (Republic of)",0.99], + ["Philippines (Republic of the)",0.975], + ["Guatemala (Republic of)",0.957], + ["Nepal (Federal Democratic Republic of)",0.958], + ["Cape Verde (Republic of)",0.919], + ["Gabon (Gabonese Republic)",0.967], + ["Honduras (Republic of)",1], + ["Guyana (Co-operative Republic of)",0.969], + ["Cambodia (Kingdom of)",1], + ["South Africa (Republic of)",0.921], + ["Nicaragua (Republic of)",0.999], + ["Syrian Arab Republic",1], + ["Timor-Leste (Democratic Republic of)",1], + ["Ghana (Republic of)",0.942], + ["Micronesia (Federated States of)",0.935], + ["Comoros (Union of the)",0.94], + ["Eswatini (Kingdom of)",0.967], + ["Kenya (Republic of)",0.839], + ["Senegal (Republic of)",0.962], + ["São Tomé and Príncipe (Democratic Republic of)",0.767], + ["Congo (Republic of the)",0.924], + ["Equatorial Guinea (Republic of)",0.904], + ["Côte d'Ivoire (Republic of)",1], + ["Solomon Islands",0.767], + ["Myanmar (Union of)",0.93], + ["Botswana (Republic of)",0.811], + ["Cameroon (Republic of)",0.933], + ["Yemen (Republic of)",0.85], + ["Vanuatu (Republic of)",0.936], + ["Djibouti (Republic of)",0.708], + ["Gambia (Republic of the)",0.76], + ["Sudan (Republic of the)",0.838], + ["Papua New Guinea (Independent State of)",0.821], + ["Nigeria (Federal Republic of)",0.817], + ["Namibia (Republic of)",0.722], + ["Togo (Togolese Republic)",0.919], + ["Mali (Republic of)",0.856], + ["Eritrea (State of)",0.771], + ["Korea (Democratic People's Republic of)",0.4], + ["Lesotho (Kingdom of)",0.707], + ["Haiti (Republic of)",0.79], + ["Ethiopia (Federal Democratic Republic of)",0.92], + ["Mauritania (Islamic Republic of)",0.824], + ["Guinea (Republic of)",0.87], + ["Angola (Republic of)",0.737], + ["Uganda (Republic of)",0.575], + ["Benin (Republic of)",0.674], + ["Zimbabwe (Republic of)",0.853], + ["Zambia (Republic of)",0.772], + ["Tanzania (United Republic of)",0.683], + ["Somalia (Federal Republic of)",0.605], + ["Rwanda (Republic of)",0.891], + ["Central African Republic",0.552], + ["Mozambique (Republic of)",0.722], + ["Guinea-Bissau (Republic of)",0.53], + ["South Sudan (Republic of)",0.468], + ["Sierra Leone (Republic of)",0.532], + ["Liberia (Republic of)",0.436], + ["Madagascar (Republic of)",0.696], + ["Congo (Democratic Republic of the)",0.507], + ["Malawi (Republic of)",0.552], + ["Niger (Republic of)",0.476], + ["Burkina Faso",0.623], + ["Chad (Republic of)",0.418], + ["Burundi (Republic of)",0.617] + ] +} diff --git a/data/global/infrastructure/energy/energy-consumption-gj.json b/data/global/infrastructure/energy/energy-consumption-gj.json new file mode 100644 index 0000000..cfac464 --- /dev/null +++ b/data/global/infrastructure/energy/energy-consumption-gj.json @@ -0,0 +1,158 @@ +{ + "metadata" : { + "name" : "Energy Consumption", + "description" : "Energy consumption measured by gigajoules per-capita per-year.", + "units" : "GJ per-capita per-year", + "year" : "2013", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","environment","energy","development"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_energy_consumption_per_capita" + ] + }, + "data" : [ + ["country.name","energy.consumption.gj"], + ["Albania (Republic of)",33.62], + ["Algeria (People's Democratic Republic of)",52.33], + ["Angola (Republic of)",27.51], + ["Argentina (Argentine Republic)",79.57], + ["Armenia (Republic of)",40.71], + ["Australia (Commonwealth of)",234.63], + ["Austria (Republic of)",164.55], + ["Azerbaijan (Republic of)",61.91], + ["Bahrain (Kingdom of)",427.21], + ["Bangladesh (People's Republic of)",9.05], + ["Belarus (Republic of)",121.02], + ["Belgium (Kingdom of)",211.64], + ["Benin (Republic of)",16.52], + ["Bolivia (Plurinational State of)",32.99], + ["Bosnia and Herzegovina",70.89], + ["Botswana (Republic of)",46.13], + ["Brazil (Federative Republic of)",60.39], + ["Brunei (Nation of the Abode of Peace)",310.5], + ["Bulgaria (Republic of)",97.75], + ["Cambodia (Kingdom of)",16.64], + ["Cameroon (Republic of)",13.89], + ["Canada",302.49], + ["Chile (Republic of)",92.45], + ["China (People's Republic of)",93.5], + ["Colombia (Republic of)",28.08], + ["Congo (Democratic Republic of the)",12.28], + ["Congo (Republic of the)",23.34], + ["Costa Rica (Republic of)",43.22], + ["Côte d'Ivoire (Republic of)",25.42], + ["Croatia (Republic of)",76.19], + ["Cuba (Republic of)",43.3], + ["Cyprus (Republic of)",71.03], + ["Czech Republic",167.58], + ["Denmark (Kingdom of)",130.5], + ["Dominican Republic",30.72], + ["Ecuador (Republic of)",41.15], + ["Egypt (Arab Republic of)",37.17], + ["El Salvador (Republic of)",29.12], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",194.18], + ["Ethiopia (Federal Democratic Republic of)",21.29], + ["Finland (Republic of)",255.14], + ["France (French Republic)",161.27], + ["Gabon (Gabonese Republic)",60.27], + ["Georgia",43.35], + ["Germany (Federal Republic of)",162.44], + ["Ghana (Republic of)",14.43], + ["Greece (Hellenic Republic)",89.63], + ["Guatemala (Republic of)",32.24], + ["Haiti (Republic of)",16.51], + ["Honduras (Republic of)",27.82], + ["Hong Kong (Special Administrative Region of China)",81.41], + ["Hungary (Republic of)",95.78], + ["Iceland (Republic of)",763.44], + ["India (Republic of)",25.45], + ["Indonesia (Republic of)",35.71], + ["Iran (Islamic Republic of)",124.34], + ["Iraq (Republic of)",61.6], + ["Ireland",119.29], + ["Israel (State of)",124.77], + ["Italy (Italian Republic)",108.34], + ["Jamaica",45.51], + ["Japan",149.96], + ["Jordan (Hashemite Kingdom of)",44.98], + ["Kazakhstan (Republic of)",201.04], + ["Kenya (Republic of)",20.65], + ["Korea (Democratic People's Republic of)",24.38], + ["Korea (Republic of)",220.65], + ["Kosovo (Republic of)",54.46], + ["Kuwait (State of)",409.81], + ["Kyrgyz Republic",29], + ["Latvia (Republic of)",90.69], + ["Lebanon (Lebanese Republic)",56.16], + ["Libya (State of)",113.87], + ["Lithuania (Republic of)",98.98], + ["Luxembourg (Grand Duchy of)",307.03], + ["North Macedonia (Republic of)",56.68], + ["Malaysia",126.83], + ["Malta (Republic of)",126.83], + ["Mexico (United Mexican States)",64.92], + ["Moldova (Republic of)",36.23], + ["Mongolia",76.71], + ["Montenegro",69.35], + ["Morocco (Kingdom of)",23.7], + ["Mozambique (Republic of)",17.11], + ["Myanmar (Union of)",13.14], + ["Namibia (Republic of)",31.18], + ["Nepal (Federal Democratic Republic of)",15.53], + ["Netherlands (Kingdom of the)",193.43], + ["New Zealand",184.45], + ["Nicaragua (Republic of)",24.93], + ["Nigeria (Federal Republic of)",32.47], + ["Norway (Kingdom of)",270.43], + ["Oman (Sultanate of)",261.76], + ["Pakistan (Islamic Republic of)",19.94], + ["Panama (Republic of)",44.41], + ["Paraguay (Republic of)",32.09], + ["Peru (Republic of)",29.75], + ["Philippines (Republic of the)",19.2], + ["Poland (Republic of)",107.75], + ["Portugal (Portuguese Republic)",87.48], + ["Qatar (State of)",803.05], + ["Romania",66.87], + ["Russian Federation",213.91], + ["Saudi Arabia (Kingdom of)",267.26], + ["Senegal (Republic of)",10.96], + ["Serbia (Republic of)",87.3], + ["Singapore (Republic of)",203], + ["Slovakia (Slovak Republic)",133.49], + ["Slovenia (Republic of)",139.58], + ["South Africa (Republic of)",111.55], + ["Spain (Kingdom of)",105.16], + ["Sri Lanka (Democratic Socialist Republic of)",20.48], + ["Sudan (Republic of the)",15.74], + ["Sweden (Kingdom of)",215.52], + ["Switzerland (Swiss Confederation)",138.77], + ["Syrian Arab Republic",28.06], + ["Tajikistan (Republic of)",12.71], + ["Tanzania (United Republic of)",19.73], + ["Thailand (Kingdom of)",83.48], + ["Togo (Togolese Republic)",19.43], + ["Trinidad and Tobago (Republic of)",610.58], + ["Tunisia (Republic of)",40.17], + ["Turkey (Republic of)",64.18], + ["Turkmenistan",210.49], + ["Ukraine",107.23], + ["United Arab Emirates",323.02], + ["United Kingdom (of Great Britain & Northern Ireland)",125.06], + ["United States (of America)",290.47], + ["Uruguay (Oriental Republic of)",56.72], + ["Uzbekistan (Republic of)",59.62], + ["Venezuela (Bolivarian Republic of)",95.39], + ["Vietnam (Socialist Republic of)",28.04], + ["Yemen (Republic of)",13.6], + ["Zambia (Republic of)",26.52], + ["Zimbabwe (Republic of)",31.82] + ] +} diff --git a/data/global/infrastructure/energy/energy-consumption-kgoe.json b/data/global/infrastructure/energy/energy-consumption-kgoe.json new file mode 100644 index 0000000..ce7af51 --- /dev/null +++ b/data/global/infrastructure/energy/energy-consumption-kgoe.json @@ -0,0 +1,158 @@ +{ + "metadata" : { + "name" : "Energy Consumption", + "description" : "Energy consumption measured by killograms of oil equivalent per-capita per-year.", + "units" : "kgoe per-capita per-year", + "year" : "2013", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","environment","energy","development"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_energy_consumption_per_capita" + ] + }, + "data" : [ + ["country.name","energy.consumption.kgoe"], + ["Albania (Republic of)",800.6], + ["Algeria (People's Democratic Republic of)",1246], + ["Angola (Republic of)",654.9], + ["Argentina (Argentine Republic)",1894.6], + ["Armenia (Republic of)",969.3], + ["Australia (Commonwealth of)",5586.3], + ["Austria (Republic of)",3917.8], + ["Azerbaijan (Republic of)",1474], + ["Bahrain (Kingdom of)",10171.7], + ["Bangladesh (People's Republic of)",215.5], + ["Belarus (Republic of)",2881.5], + ["Belgium (Kingdom of)",5039], + ["Benin (Republic of)",393.4], + ["Bolivia (Plurinational State of)",785.5], + ["Bosnia and Herzegovina",1688], + ["Botswana (Republic of)",1098.4], + ["Brazil (Federative Republic of)",1437.8], + ["Brunei (Nation of the Abode of Peace)",7392.9], + ["Bulgaria (Republic of)",2327.4], + ["Cambodia (Kingdom of)",396.2], + ["Cameroon (Republic of)",330.7], + ["Canada",7202.2], + ["Chile (Republic of)",2201.2], + ["China (People's Republic of)",2226.3], + ["Colombia (Republic of)",668.5], + ["Congo (Democratic Republic of the)",292.3], + ["Congo (Republic of the)",555.8], + ["Costa Rica (Republic of)",1029], + ["Côte d'Ivoire (Republic of)",605.3], + ["Croatia (Republic of)",1813.9], + ["Cuba (Republic of)",1030.9], + ["Cyprus (Republic of)",1691.1], + ["Czech Republic",3989.9], + ["Denmark (Kingdom of)",3107.1], + ["Dominican Republic",731.3], + ["Ecuador (Republic of)",979.8], + ["Egypt (Arab Republic of)",885], + ["El Salvador (Republic of)",693.4], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",4623.3], + ["Ethiopia (Federal Democratic Republic of)",507], + ["Finland (Republic of)",6074.7], + ["France (French Republic)",3839.9], + ["Gabon (Gabonese Republic)",1434.9], + ["Georgia",1032.1], + ["Germany (Federal Republic of)",3867.6], + ["Ghana (Republic of)",343.6], + ["Greece (Hellenic Republic)",2134.1], + ["Guatemala (Republic of)",767.6], + ["Haiti (Republic of)",393.2], + ["Honduras (Republic of)",662.4], + ["Hong Kong (Special Administrative Region of China)",1938.4], + ["Hungary (Republic of)",2280.4], + ["Iceland (Republic of)",18177.3], + ["India (Republic of)",606.1], + ["Indonesia (Republic of)",850.2], + ["Iran (Islamic Republic of)",2960.4], + ["Iraq (Republic of)",1466.6], + ["Ireland",2840.2], + ["Israel (State of)",2970.8], + ["Italy (Italian Republic)",2579.5], + ["Jamaica",1083.6], + ["Japan",3570.4], + ["Jordan (Hashemite Kingdom of)",1071], + ["Kazakhstan (Republic of)",4786.7], + ["Kenya (Republic of)",491.7], + ["Korea (Democratic People's Republic of)",580.6], + ["Korea (Republic of)",5253.5], + ["Kosovo (Republic of)",1296.7], + ["Kuwait (State of)",9757.4], + ["Kyrgyz Republic",690.4], + ["Latvia (Republic of)",2159.2], + ["Lebanon (Lebanese Republic)",1337.2], + ["Libya (State of)",2711.3], + ["Lithuania (Republic of)",2356.6], + ["Luxembourg (Grand Duchy of)",7310.3], + ["North Macedonia (Republic of)",1349.5], + ["Malaysia",3019.8], + ["Malta (Republic of)",3019.8], + ["Mexico (United Mexican States)",1545.8], + ["Moldova (Republic of)",862.7], + ["Mongolia",1826.5], + ["Montenegro",1651.3], + ["Morocco (Kingdom of)",564.4], + ["Mozambique (Republic of)",407.4], + ["Myanmar (Union of)",312.8], + ["Namibia (Republic of)",742.3], + ["Nepal (Federal Democratic Republic of)",369.7], + ["Netherlands (Kingdom of the)",4605.4], + ["New Zealand",4391.6], + ["Nicaragua (Republic of)",593.7], + ["Nigeria (Federal Republic of)",773], + ["Norway (Kingdom of)",6438.8], + ["Oman (Sultanate of)",6232.5], + ["Pakistan (Islamic Republic of)",474.9], + ["Panama (Republic of)",1057.5], + ["Paraguay (Republic of)",764.1], + ["Peru (Republic of)",708.3], + ["Philippines (Republic of the)",457.1], + ["Poland (Republic of)",2565.4], + ["Portugal (Portuguese Republic)",2082.8], + ["Qatar (State of)",19120.3], + ["Romania",1592.1], + ["Russian Federation",5093.1], + ["Saudi Arabia (Kingdom of)",6363.4], + ["Senegal (Republic of)",261], + ["Serbia (Republic of)",2078.5], + ["Singapore (Republic of)",4833.4], + ["Slovakia (Slovak Republic)",3178.3], + ["Slovenia (Republic of)",3323.2], + ["South Africa (Republic of)",2655.9], + ["Spain (Kingdom of)",2503.8], + ["Sri Lanka (Democratic Socialist Republic of)",487.5], + ["Sudan (Republic of the)",374.8], + ["Sweden (Kingdom of)",5131.5], + ["Switzerland (Swiss Confederation)",3304], + ["Syrian Arab Republic",668.1], + ["Tajikistan (Republic of)",302.7], + ["Tanzania (United Republic of)",469.7], + ["Thailand (Kingdom of)",1987.6], + ["Togo (Togolese Republic)",462.6], + ["Trinidad and Tobago (Republic of)",14537.6], + ["Tunisia (Republic of)",956.5], + ["Turkey (Republic of)",1528.2], + ["Turkmenistan",5011.6], + ["Ukraine",2553.2], + ["United Arab Emirates",7691], + ["United Kingdom (of Great Britain & Northern Ireland)",2977.7], + ["United States (of America)",6915.8], + ["Uruguay (Oriental Republic of)",1350.5], + ["Uzbekistan (Republic of)",1419.5], + ["Venezuela (Bolivarian Republic of)",2271.2], + ["Vietnam (Socialist Republic of)",667.6], + ["Yemen (Republic of)",323.7], + ["Zambia (Republic of)",631.5], + ["Zimbabwe (Republic of)",757.5] + ] +} diff --git a/data/global/infrastructure/energy/energy-consumption-watts.json b/data/global/infrastructure/energy/energy-consumption-watts.json new file mode 100644 index 0000000..954353a --- /dev/null +++ b/data/global/infrastructure/energy/energy-consumption-watts.json @@ -0,0 +1,158 @@ +{ + "metadata" : { + "name" : "Energy Consumption", + "description" : "Energy consumption measured in watts per-capita per-year.", + "units" : "watts per-capita", + "year" : "2013", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","environment","energy","development"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_energy_consumption_per_capita" + ] + }, + "data" : [ + ["country.name","energy.consumption.watts"], + ["Albania (Republic of)",1065.9], + ["Algeria (People's Democratic Republic of)",1658.9], + ["Angola (Republic of)",871.9], + ["Argentina (Argentine Republic)",2522.5], + ["Armenia (Republic of)",1290.5], + ["Australia (Commonwealth of)",7437.7], + ["Austria (Republic of)",5216.2], + ["Azerbaijan (Republic of)",1962.5], + ["Bahrain (Kingdom of)",13542.6], + ["Bangladesh (People's Republic of)",286.9], + ["Belarus (Republic of)",3836.4], + ["Belgium (Kingdom of)",6708.9], + ["Benin (Republic of)",523.8], + ["Bolivia (Plurinational State of)",1045.8], + ["Bosnia and Herzegovina",2247.4], + ["Botswana (Republic of)",1462.4], + ["Brazil (Federative Republic of)",1914.3], + ["Brunei (Nation of the Abode of Peace)",9842.9], + ["Bulgaria (Republic of)",3098.7], + ["Cambodia (Kingdom of)",527.5], + ["Cameroon (Republic of)",440.3], + ["Canada",9589], + ["Chile (Republic of)",2930.6], + ["China (People's Republic of)",2964.1], + ["Colombia (Republic of)",890], + ["Congo (Democratic Republic of the)",389.1], + ["Congo (Republic of the)",740], + ["Costa Rica (Republic of)",1370], + ["Côte d'Ivoire (Republic of)",805.9], + ["Croatia (Republic of)",2415.1], + ["Cuba (Republic of)",1372.5], + ["Cyprus (Republic of)",2251.5], + ["Czech Republic",5312.2], + ["Denmark (Kingdom of)",4136.9], + ["Dominican Republic",973.7], + ["Ecuador (Republic of)",1304.4], + ["Egypt (Arab Republic of)",1178.3], + ["El Salvador (Republic of)",923.3], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",6155.4], + ["Ethiopia (Federal Democratic Republic of)",675], + ["Finland (Republic of)",8087.9], + ["France (French Republic)",5112.4], + ["Gabon (Gabonese Republic)",1910.4], + ["Georgia",1374.2], + ["Germany (Federal Republic of)",5149.4], + ["Ghana (Republic of)",457.5], + ["Greece (Hellenic Republic)",2841.3], + ["Guatemala (Republic of)",1022], + ["Haiti (Republic of)",523.5], + ["Honduras (Republic of)",882], + ["Hong Kong (Special Administrative Region of China)",2580.7], + ["Hungary (Republic of)",3036.1], + ["Iceland (Republic of)",24201.2], + ["India (Republic of)",806.9], + ["Indonesia (Republic of)",1132], + ["Iran (Islamic Republic of)",3941.5], + ["Iraq (Republic of)",1952.6], + ["Ireland",3781.4], + ["Israel (State of)",3955.3], + ["Italy (Italian Republic)",3434.3], + ["Jamaica",1442.7], + ["Japan",4753.7], + ["Jordan (Hashemite Kingdom of)",1426], + ["Kazakhstan (Republic of)",6373], + ["Kenya (Republic of)",654.7], + ["Korea (Democratic People's Republic of)",773], + ["Korea (Republic of)",6994.5], + ["Kosovo (Republic of)",1726.4], + ["Kuwait (State of)",12991.1], + ["Kyrgyz Republic",919.2], + ["Latvia (Republic of)",2874.8], + ["Lebanon (Lebanese Republic)",1780.3], + ["Libya (State of)",3609.8], + ["Lithuania (Republic of)",3137.6], + ["Luxembourg (Grand Duchy of)",9732.9], + ["North Macedonia (Republic of)",1796.7], + ["Malaysia",4020.6], + ["Malta (Republic of)",4020.6], + ["Mexico (United Mexican States)",2058], + ["Moldova (Republic of)",1148.5], + ["Mongolia",2431.7], + ["Montenegro",2198.5], + ["Morocco (Kingdom of)",751.4], + ["Mozambique (Republic of)",542.4], + ["Myanmar (Union of)",416.4], + ["Namibia (Republic of)",988.4], + ["Nepal (Federal Democratic Republic of)",492.2], + ["Netherlands (Kingdom of the)",6131.7], + ["New Zealand",5846.9], + ["Nicaragua (Republic of)",790.4], + ["Nigeria (Federal Republic of)",1029.2], + ["Norway (Kingdom of)",8572.6], + ["Oman (Sultanate of)",8297.9], + ["Pakistan (Islamic Republic of)",632.2], + ["Panama (Republic of)",1407.9], + ["Paraguay (Republic of)",1017.4], + ["Peru (Republic of)",943.1], + ["Philippines (Republic of the)",608.6], + ["Poland (Republic of)",3415.6], + ["Portugal (Portuguese Republic)",2773.1], + ["Qatar (State of)",25456.8], + ["Romania",2119.8], + ["Russian Federation",6780.9], + ["Saudi Arabia (Kingdom of)",8472.2], + ["Senegal (Republic of)",347.5], + ["Serbia (Republic of)",2767.3], + ["Singapore (Republic of)",6435.2], + ["Slovakia (Slovak Republic)",4231.6], + ["Slovenia (Republic of)",4424.6], + ["South Africa (Republic of)",3536], + ["Spain (Kingdom of)",3333.6], + ["Sri Lanka (Democratic Socialist Republic of)",649.1], + ["Sudan (Republic of the)",499], + ["Sweden (Kingdom of)",6832.1], + ["Switzerland (Swiss Confederation)",4399], + ["Syrian Arab Republic",889.6], + ["Tajikistan (Republic of)",403.1], + ["Tanzania (United Republic of)",625.4], + ["Thailand (Kingdom of)",2646.3], + ["Togo (Togolese Republic)",615.9], + ["Trinidad and Tobago (Republic of)",19355.3], + ["Tunisia (Republic of)",1273.5], + ["Turkey (Republic of)",2034.6], + ["Turkmenistan",6672.5], + ["Ukraine",3399.3], + ["United Arab Emirates",10239.8], + ["United Kingdom (of Great Britain & Northern Ireland)",3964.5], + ["United States (of America)",9207.8], + ["Uruguay (Oriental Republic of)",1798.1], + ["Uzbekistan (Republic of)",1889.9], + ["Venezuela (Bolivarian Republic of)",3023.9], + ["Vietnam (Socialist Republic of)",888.9], + ["Yemen (Republic of)",431], + ["Zambia (Republic of)",840.7], + ["Zimbabwe (Republic of)",1008.6] + ] +} diff --git a/data/global/infrastructure/energy/energy-consumption.json b/data/global/infrastructure/energy/energy-consumption.json new file mode 100644 index 0000000..dda5d58 --- /dev/null +++ b/data/global/infrastructure/energy/energy-consumption.json @@ -0,0 +1,239 @@ +{ + "metadata" : { + "name" : "Energy Consumption", + "description" : "Energy consumption measured in gigawatts per-year.", + "units" : "gigawatts per-year", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","energy","development"], + "authors" : [ + "US Energy Information Administration (EIA)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_total_primary_energy_consumption_and_production" + ] + }, + "data" : [ + ["country.name","energy.consumption"], + ["Afghanistan (Islamic Republic of)",4.279424], + ["Albania (Republic of)",4.647187], + ["Algeria (People's Democratic Republic of)",84.083995], + ["American Samoa",0.167165], + ["Angola (Republic of)",13.005437], + ["Antigua and Barbuda",0.33433], + ["Argentina (Argentine Republic)",120.02447], + ["Armenia (Republic of)",4.881218], + ["Aruba",0.601794], + ["Australia (Commonwealth of)",198.658886], + ["Austria (Republic of)",48.778747], + ["Azerbaijan (Republic of)",20.327264], + ["Bahamas (Commonwealth of the)",1.838815], + ["Bahrain (Kingdom of)",24.138626], + ["Bangladesh (People's Republic of)",51.587119], + ["Barbados",0.802392], + ["Belarus (Republic of)",33.366134], + ["Belgium (Kingdom of)",89.60044], + ["Belize",0.401196], + ["Benin (Republic of)",3.3433], + ["Bermuda",0.367763], + ["Bhutan (Kingdom of)",2.00598], + ["Bolivia (Plurinational State of)",10.69856], + ["Bosnia and Herzegovina",8.35825], + ["Botswana (Republic of)",3.042403], + ["Brazil (Federative Republic of)",426.571647], + ["British Virgin Islands",0.100299], + ["Brunei (Nation of the Abode of Peace)",6.084806], + ["Bulgaria (Republic of)",25.342214], + ["Burkina Faso",1.504485], + ["Burma",20.39413], + ["Burundi (Republic of)",0.267464], + ["Cambodia (Kingdom of)",6.820332], + ["Cameroon (Republic of)",5.315847], + ["Canada",508.315332], + ["Cape Verde (Republic of)",0.501495], + ["Cayman Islands",0.300897], + ["Central African Republic",0.234031], + ["Chad (Republic of)",0.468062], + ["Chile (Republic of)",51.587119], + ["China (People's Republic of)",4933.70781], + ["Colombia (Republic of)",56.535203], + ["Comoros (Union of the)",0.100299], + ["Congo (Democratic Republic of the)",4.413156], + ["Congo (Republic of the)",2.908671], + ["Cook Islands",0.033433], + ["Costa Rica (Republic of)",7.422126], + ["Côte d'Ivoire (Republic of)",6.519435], + ["Croatia (Republic of)",14.008427], + ["Cuba (Republic of)",12.671107], + ["Cyprus (Republic of)",3.945094], + ["Czech Republic",59.042678], + ["Denmark (Kingdom of)",24.40609], + ["Djibouti (Republic of)",0.33433], + ["Dominica (Commonwealth of)",0.100299], + ["Dominican Republic",12.871705], + ["Ecuador (Republic of)",24.339224], + ["Egypt (Arab Republic of)",135.06932], + ["El Salvador (Republic of)",4.580321], + ["Equatorial Guinea (Republic of)",2.240011], + ["Eritrea (State of)",0.367763], + ["Estonia (Republic of)",3.176135], + ["Ethiopia (Federal Democratic Republic of)",10.297364], + ["Falkland Islands (Malvinas)",0.033433], + ["Faroe Islands",0.434629], + ["Fiji (Republic of)",1.303887], + ["Finland (Republic of)",40.955425], + ["France (French Republic)",344.293034], + ["French Guiana",0.568361], + ["French Polynesia",0.534928], + ["Gabon (Gabonese Republic)",1.972547], + ["Gambia (Republic of the)",0.267464], + ["Georgia",8.35825], + ["Germany (Federal Republic of)",463.180782], + ["Ghana (Republic of)",9.862735], + ["Gibraltar",6.185105], + ["Greece (Hellenic Republic)",39.083177], + ["Greenland",0.401196], + ["Grenada",0.133732], + ["Guadeloupe",0.969557], + ["Guam",0.869258], + ["Guatemala (Republic of)",10.731993], + ["Guinea (Republic of)",1.604784], + ["Guinea-Bissau (Republic of)",0.167165], + ["Guyana (Co-operative Republic of)",1.069856], + ["Haiti (Republic of)",1.67165], + ["Honduras (Republic of)",6.452569], + ["Hong Kong (Special Administrative Region of China)",44.900519], + ["Hungary (Republic of)",35.43898], + ["Iceland (Republic of)",7.656157], + ["India (Republic of)",1047.389024], + ["Indonesia (Republic of)",267.196536], + ["Iran (Islamic Republic of)",390.698038], + ["Iraq (Republic of)",87.861924], + ["Ireland",22.032347], + ["Israel (State of)",33.198969], + ["Italy (Italian Republic)",228.180225], + ["Jamaica",3.945094], + ["Japan",643.451518], + ["Jordan (Hashemite Kingdom of)",13.440066], + ["Kazakhstan (Republic of)",125.240018], + ["Kenya (Republic of)",11.634684], + ["Kiribati (Republic of)",0.033433], + ["Korea (Democratic People's Republic of)",12.470509], + ["Korea (Republic of)",414.23487], + ["Kuwait (State of)",54.997285], + ["Kyrgyz Republic",8.659147], + ["Lao (People's Democratic Republic)",14.37619], + ["Latvia (Republic of)",5.382713], + ["Lebanon (Lebanese Republic)",11.969014], + ["Lesotho (Kingdom of)",0.568361], + ["Liberia (Republic of)",0.635227], + ["Libya (State of)",20.929058], + ["Lithuania (Republic of)",9.595271], + ["Luxembourg (Grand Duchy of)",6.385703], + ["Macao (Special Administrative Region of China)",1.638217], + ["North Macedonia (Republic of)",3.577331], + ["Madagascar (Republic of)",1.771949], + ["Malawi (Republic of)",0.969557], + ["Malaysia",126.844802], + ["Maldives (Republic of)",0.802392], + ["Mali (Republic of)",1.872248], + ["Malta (Republic of)",4.413156], + ["Martinique",1.069856], + ["Mauritania (Islamic Republic of)",1.738516], + ["Mauritius (Republic of)",3.142702], + ["Mexico (United Mexican States)",267.363701], + ["Micronesia (Federated States of)",0.066866], + ["Moldova (Republic of)",4.714053], + ["Mongolia",8.191085], + ["Montenegro",1.705083], + ["Montserrat",0], + ["Morocco (Kingdom of)",28.41805], + ["Mozambique (Republic of)",7.957054], + ["Namibia (Republic of)",2.507475], + ["Nauru (Republic of)",0.033433], + ["Nepal (Federal Democratic Republic of)",5.68361], + ["Netherlands (Kingdom of the)",128.081823], + ["Sint Maarten (Netherlands)",6.619734], + ["New Caledonia",2.540908], + ["New Zealand",30.42403], + ["Nicaragua (Republic of)",3.209568], + ["Niger (Republic of)",1.170155], + ["Nigeria (Federal Republic of)",55.365048], + ["Niue",0], + ["Norway (Kingdom of)",63.422401], + ["Oman (Sultanate of)",45.101117], + ["Pakistan (Islamic Republic of)",122.866275], + ["Palestine (State of)",2.240011], + ["Panama (Republic of)",14.509922], + ["Papua New Guinea (Independent State of)",3.376733], + ["Paraguay (Republic of)",17.184562], + ["Peru (Republic of)",38.046754], + ["Philippines (Republic of the)",64.224793], + ["Poland (Republic of)",146.637138], + ["Portugal (Portuguese Republic)",35.606145], + ["Puerto Rico (Commonwealth of)",10.063333], + ["Qatar (State of)",65.562113], + ["Réunion",1.604784], + ["Romania",47.173963], + ["Russian Federation",1113.452632], + ["Rwanda (Republic of)",0.66866], + ["Saint Helena",null], + ["Saint Kitts and Nevis (Federation of)",0.133732], + ["Saint Lucia",0.200598], + ["Saint Pierre and Miquelon",0.033433], + ["Saint Vincent and the Grenadines",0.133732], + ["Samoa (Independent State of)",0.167165], + ["São Tomé and Príncipe (Democratic Republic of)",0.066866], + ["Saudi Arabia (Kingdom of)",340.180775], + ["Senegal (Republic of)",4.413156], + ["Serbia (Republic of)",22.533842], + ["Seychelles (Republic of)",0.568361], + ["Sierra Leone (Republic of)",0.501495], + ["Singapore (Republic of)",125.106286], + ["Slovakia (Slovak Republic)",24.372657], + ["Slovenia (Republic of)",9.829302], + ["Solomon Islands",0.100299], + ["Somalia (Federal Republic of)",0.401196], + ["South Africa (Republic of)",188.294656], + ["Spain (Kingdom of)",196.519174], + ["Sri Lanka (Democratic Socialist Republic of)",12.403643], + ["Sudan (Republic of the)",12.236478], + ["South Sudan (Republic of)",0.635227], + ["Suriname (Republic of)",1.370753], + ["Eswatini (Kingdom of)",0.768959], + ["Sweden (Kingdom of)",71.145424], + ["Switzerland (Swiss Confederation)",39.919002], + ["Syrian Arab Republic",15.980974], + ["Taiwan",150.983428], + ["Tajikistan (Republic of)",8.157652], + ["Tanzania (United Republic of)",6.452569], + ["Thailand (Kingdom of)",184.048665], + ["Timor-Leste (Democratic Republic of)",0.234031], + ["Togo (Togolese Republic)",1.136722], + ["Tonga (Kingdom of)",0.066866], + ["Trinidad and Tobago (Republic of)",29.855669], + ["Tunisia (Republic of)",13.740963], + ["Turkey (Republic of)",213.63687], + ["Turkmenistan",58.17342], + ["Turks and Caicos Islands",0.100299], + ["Uganda (Republic of)",3.510465], + ["Ukraine",124.237028], + ["United Arab Emirates",154.79479], + ["United Kingdom (of Great Britain & Northern Ireland)",276.858673], + ["United States (of America)",3382.149146], + ["Uruguay (Oriental Republic of)",7.656157], + ["Uzbekistan (Republic of)",60.781194], + ["Vanuatu (Republic of)",0.100299], + ["Venezuela (Bolivarian Republic of)",88.731182], + ["Vietnam (Socialist Republic of)",124.270461], + ["United States Virgin Islands",1.136722], + ["Wake Island",0.66866], + ["Sahrawi Arab Democratic Republic",0.133732], + ["Yemen (Republic of)",4.145692], + ["Zambia (Republic of)",7.087796], + ["Zimbabwe (Republic of)",5.34928] + ] +} diff --git a/data/global/infrastructure/energy/energy-production.json b/data/global/infrastructure/energy/energy-production.json new file mode 100644 index 0000000..2619a88 --- /dev/null +++ b/data/global/infrastructure/energy/energy-production.json @@ -0,0 +1,239 @@ +{ + "metadata" : { + "name" : "Energy production", + "description" : "Energy production measured in gigawatts per-year.", + "units" : "gigawats per-year", + "year" : "2018", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","energy","development"], + "authors" : [ + "US Energy Information Administration (USEIA)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_total_primary_energy_consumption_and_production" + ] + }, + "data" : [ + ["country.name","energy.production"], + ["Afghanistan (Islamic Republic of)",2.106279], + ["Albania (Republic of)",3.844795], + ["Algeria (People's Democratic Republic of)",223.599904], + ["American Samoa",null], + ["Angola (Republic of)",126.811369], + ["Antigua and Barbuda",null], + ["Argentina (Argentine Republic)",110.897261], + ["Armenia (Republic of)",1.437619], + ["Aruba",0.033433], + ["Australia (Commonwealth of)",559.568121], + ["Austria (Republic of)",17.452026], + ["Azerbaijan (Republic of)",80.306066], + ["Bahamas (Commonwealth of the)",null], + ["Bahrain (Kingdom of)",23.469966], + ["Bangladesh (People's Republic of)",37.545259], + ["Barbados",0.100299], + ["Belarus (Republic of)",2.708073], + ["Belgium (Kingdom of)",15.512912], + ["Belize",0.234031], + ["Benin (Republic of)",null], + ["Bermuda",null], + ["Bhutan (Kingdom of)",2.206578], + ["Bolivia (Plurinational State of)",27.181029], + ["Bosnia and Herzegovina",5.449579], + ["Botswana (Republic of)",1.872248], + ["Brazil (Federative Republic of)",406.144084], + ["British Virgin Islands",null], + ["Brunei (Nation of the Abode of Peace)",23.369667], + ["Bulgaria (Republic of)",15.646644], + ["Burkina Faso",0.066866], + ["Burma",28.217452], + ["Burundi (Republic of)",0.033433], + ["Cambodia (Kingdom of)",1.437619], + ["Cameroon (Republic of)",8.893178], + ["Canada",792.094636], + ["Cape Verde (Republic of)",0.033433], + ["Cayman Islands",null], + ["Central African Republic",0.033433], + ["Chad (Republic of)",10.063333], + ["Chile (Republic of)",14.844252], + ["China (People's Republic of)",3938.340534], + ["Colombia (Republic of)",169.271279], + ["Comoros (Union of the)",null], + ["Congo (Democratic Republic of the)",4.981517], + ["Congo (Republic of the)",26.478936], + ["Cook Islands",null], + ["Costa Rica (Republic of)",3.410166], + ["Côte d'Ivoire (Republic of)",6.051373], + ["Croatia (Republic of)",5.483012], + ["Cuba (Republic of)",4.948084], + ["Cyprus (Republic of)",0.133732], + ["Czech Republic",34.670021], + ["Denmark (Kingdom of)",19.959501], + ["Djibouti (Republic of)",null], + ["Dominica (Commonwealth of)",null], + ["Dominican Republic",0.835825], + ["Ecuador (Republic of)",45.000818], + ["Egypt (Arab Republic of)",126.744503], + ["El Salvador (Republic of)",1.103289], + ["Equatorial Guinea (Republic of)",19.157109], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.635227], + ["Ethiopia (Federal Democratic Republic of)",4.112259], + ["Falkland Islands (Malvinas)",null], + ["Faroe Islands",0.066866], + ["Fiji (Republic of)",0.200598], + ["Finland (Republic of)",17.819789], + ["France (French Republic)",176.960869], + ["French Guiana",0.167165], + ["French Polynesia",0.066866], + ["Gabon (Gabonese Republic)",14.810819], + ["Gambia (Republic of the)",null], + ["Georgia",3.142702], + ["Germany (Federal Republic of)",160.81273], + ["Ghana (Republic of)",15.446046], + ["Gibraltar",null], + ["Greece (Hellenic Republic)",11.500952], + ["Greenland",0.133732], + ["Grenada",null], + ["Guadeloupe",0.066866], + ["Guam",0.033433], + ["Guatemala (Republic of)",3.376733], + ["Guinea (Republic of)",0.234031], + ["Guinea-Bissau (Republic of)",null], + ["Guyana (Co-operative Republic of)",null], + ["Haiti (Republic of)",0.066866], + ["Honduras (Republic of)",1.939114], + ["Hong Kong (Special Administrative Region of China)",0.033433], + ["Hungary (Republic of)",12.37021], + ["Iceland (Republic of)",5.917641], + ["India (Republic of)",574.679837], + ["Indonesia (Republic of)",529.511854], + ["Iran (Islamic Republic of)",603.866846], + ["Iraq (Republic of)",341.718693], + ["Ireland",7.288394], + ["Israel (State of)",13.172602], + ["Italy (Italian Republic)",49.614572], + ["Jamaica",0.167165], + ["Japan",87.26013], + ["Jordan (Hashemite Kingdom of)",0.768959], + ["Kazakhstan (Republic of)",279.633612], + ["Kenya (Republic of)",2.942104], + ["Kiribati (Republic of)",null], + ["Korea (Democratic People's Republic of)",30.490896], + ["Korea (Republic of)",51.48682], + ["Kuwait (State of)",230.988597], + ["Kyrgyz Republic",5.616744], + ["Lao (People's Democratic Republic)",16.449036], + ["Latvia (Republic of)",1.170155], + ["Lebanon (Lebanese Republic)",0.133732], + ["Lesotho (Kingdom of)",0.167165], + ["Liberia (Republic of)",null], + ["Libya (State of)",84.150861], + ["Lithuania (Republic of)",1.036423], + ["Luxembourg (Grand Duchy of)",0.234031], + ["Macao (Special Administrative Region of China)",null], + ["North Macedonia (Republic of)",1.604784], + ["Madagascar (Republic of)",0.300897], + ["Malawi (Republic of)",0.501495], + ["Malaysia",151.150593], + ["Maldives (Republic of)",null], + ["Mali (Republic of)",0.434629], + ["Malta (Republic of)",0.066866], + ["Martinique",0.033433], + ["Mauritania (Islamic Republic of)",0.133732], + ["Mauritius (Republic of)",0.200598], + ["Mexico (United Mexican States)",210.126405], + ["Micronesia (Federated States of)",null], + ["Moldova (Republic of)",0.100299], + ["Mongolia",40.621095], + ["Montenegro",1.170155], + ["Montserrat",null], + ["Morocco (Kingdom of)",2.106279], + ["Mozambique (Republic of)",21.764883], + ["Namibia (Republic of)",0.367763], + ["Nauru (Republic of)",null], + ["Nepal (Federal Democratic Republic of)",1.504485], + ["Netherlands (Kingdom of the)",51.453387], + ["Sint Maarten (Netherlands)",0.100299], + ["New Caledonia",0.100299], + ["New Zealand",20.962491], + ["Nicaragua (Republic of)",0.835825], + ["Niger (Republic of)",1.069856], + ["Nigeria (Federal Republic of)",198.224257], + ["Niue",null], + ["Norway (Kingdom of)",316.543644], + ["Oman (Sultanate of)",113.438169], + ["Pakistan (Islamic Republic of)",65.328082], + ["Palestine (State of)",null], + ["Panama (Republic of)",2.641207], + ["Papua New Guinea (Independent State of)",15.04485], + ["Paraguay (Republic of)",18.354717], + ["Peru (Republic of)",37.077197], + ["Philippines (Republic of the)",22.433543], + ["Poland (Republic of)",81.108458], + ["Portugal (Portuguese Republic)",9.428106], + ["Puerto Rico (Commonwealth of)",0.367763], + ["Qatar (State of)",334.33], + ["Réunion",0.300897], + ["Romania",35.907042], + ["Russian Federation",2121.758479], + ["Rwanda (Republic of)",0.133732], + ["Saint Helena",null], + ["Saint Kitts and Nevis (Federation of)",null], + ["Saint Lucia",null], + ["Saint Pierre and Miquelon",null], + ["Saint Vincent and the Grenadines",null], + ["Samoa (Independent State of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["Saudi Arabia (Kingdom of)",987.777985], + ["Senegal (Republic of)",0.234031], + ["Serbia (Republic of)",14.977984], + ["Seychelles (Republic of)",null], + ["Sierra Leone (Republic of)",0.066866], + ["Singapore (Republic of)",1.504485], + ["Slovakia (Slovak Republic)",8.157652], + ["Slovenia (Republic of)",4.714053], + ["Solomon Islands",null], + ["Somalia (Federal Republic of)",null], + ["South Africa (Republic of)",197.288133], + ["Spain (Kingdom of)",52.891006], + ["Sri Lanka (Democratic Socialist Republic of)",2.106279], + ["Sudan (Republic of the)",7.121229], + ["South Sudan (Republic of)",9.662137], + ["Suriname (Republic of)",1.537918], + ["Eswatini (Kingdom of)",0.267464], + ["Sweden (Kingdom of)",50.216366], + ["Switzerland (Swiss Confederation)",20.527862], + ["Syrian Arab Republic",6.887198], + ["Taiwan",12.938571], + ["Tajikistan (Republic of)",7.054363], + ["Tanzania (United Republic of)",2.841805], + ["Thailand (Kingdom of)",89.734172], + ["Timor-Leste (Democratic Republic of)",8.257951], + ["Togo (Togolese Republic)",null], + ["Tonga (Kingdom of)",null], + ["Trinidad and Tobago (Republic of)",54.061161], + ["Tunisia (Republic of)",4.446589], + ["Turkey (Republic of)",58.875513], + ["Turkmenistan",119.723573], + ["Turks and Caicos Islands",null], + ["Uganda (Republic of)",1.270454], + ["Ukraine",79.303076], + ["United Arab Emirates",335.600454], + ["United Kingdom (of Great Britain & Northern Ireland)",183.380005], + ["United States (of America)",3201.343482], + ["Uruguay (Oriental Republic of)",4.379723], + ["Uzbekistan (Republic of)",75.959776], + ["Vanuatu (Republic of)",null], + ["Venezuela (Bolivarian Republic of)",165.861113], + ["Vietnam (Socialist Republic of)",91.338956], + ["United States Virgin Islands",null], + ["Wake Island",null], + ["Sahrawi Arab Democratic Republic",null], + ["Yemen (Republic of)",3.477032], + ["Zambia (Republic of)",5.115249], + ["Zimbabwe (Republic of)",3.410166] + ] +} diff --git a/data/global/infrastructure/modern-sanitation/basic-sanitation-2000.json b/data/global/infrastructure/modern-sanitation/basic-sanitation-2000.json new file mode 100644 index 0000000..cc6e062 --- /dev/null +++ b/data/global/infrastructure/modern-sanitation/basic-sanitation-2000.json @@ -0,0 +1,234 @@ +{ + "metadata" : { + "name" : "Access To Basic Sanitation", + "description" : "Percentage of the population using to modern sanitation facilities", + "units" : "%", + "year" : "2000", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","health","sanitation"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proportion_of_the_population_using_improved_sanitation_facilities" + ] + }, + "data" : [ + ["country.name","basic.sanitation.2000"], + ["Afghanistan (Islamic Republic of)",0.22], + ["Albania (Republic of)",0.89], + ["Algeria (People's Democratic Republic of)",0.84], + ["American Samoa",0.65], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.28], + ["Antigua and Barbuda",0.82], + ["Argentina (Argentine Republic)",0.87], + ["Armenia (Republic of)",0.87], + ["Aruba",0.98], + ["Australia (Commonwealth of)",1], + ["Austria (Republic of)",1], + ["Azerbaijan (Republic of)",0.62], + ["Bahamas (Commonwealth of the)",0.88], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",0.24], + ["Barbados",0.89], + ["Belarus (Republic of)",0.92], + ["Belgium (Kingdom of)",0.99], + ["Belize",0.82], + ["Benin (Republic of)",0.09], + ["Bermuda",1], + ["Bhutan (Kingdom of)",0.47], + ["Bolivia (Plurinational State of)",0.35], + ["Bosnia and Herzegovina",0.95], + ["Botswana (Republic of)",0.52], + ["Brazil (Federative Republic of)",0.73], + ["British Virgin Islands",0.97], + ["Bulgaria (Republic of)",0.86], + ["Burkina Faso",0.11], + ["Burundi (Republic of)",0.45], + ["Cape Verde (Republic of)",0.4], + ["Cambodia (Kingdom of)",0.1], + ["Cameroon (Republic of)",0.38], + ["Canada",1], + ["Cayman Islands",null], + ["Central African Republic",0.21], + ["Chad (Republic of)",0.1], + ["Chile (Republic of)",0.92], + ["China (People's Republic of)",0.57], + ["Colombia (Republic of)",0.75], + ["Comoros (Union of the)",0.29], + ["Congo (Democratic Republic of the)",0.24], + ["Congo (Republic of the)",0.12], + ["Costa Rica (Republic of)",0.94], + ["Côte d'Ivoire (Republic of)",0.21], + ["Croatia (Republic of)",0.96], + ["Cuba (Republic of)",0.88], + ["Curaçao",0.98], + ["Cyprus (Republic of)",1], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",1], + ["Djibouti (Republic of)",0.47], + ["Dominica (Commonwealth of)",0.64], + ["Dominican Republic",0.77], + ["Ecuador (Republic of)",0.69], + ["Egypt (Arab Republic of)",0.91], + ["El Salvador (Republic of)",0.83], + ["Equatorial Guinea (Republic of)",0.55], + ["Eritrea (State of)",0.08], + ["Estonia (Republic of)",1], + ["Eswatini (Kingdom of)",0.48], + ["Ethiopia (Federal Democratic Republic of)",0.03], + ["Fiji (Republic of)",0.8], + ["Finland (Republic of)",0.99], + ["France (French Republic)",0.99], + ["French Polynesia",0.98], + ["Gabon (Gabonese Republic)",0.34], + ["Gambia (Republic of the)",0.51], + ["Georgia",0.91], + ["Germany (Federal Republic of)",0.99], + ["Ghana (Republic of)",0.07], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",0.98], + ["Greenland",1], + ["Grenada",0.9], + ["Guam",0.89], + ["Guatemala (Republic of)",0.62], + ["Guinea (Republic of)",0.09], + ["Guinea-Bissau (Republic of)",0.05], + ["Guyana (Co-operative Republic of)",0.79], + ["Haiti (Republic of)",0.17], + ["Honduras (Republic of)",0.63], + ["Hong Kong (Special Administrative Region of China)",0.97], + ["Hungary (Republic of)",0.98], + ["Iceland (Republic of)",0.99], + ["India (Republic of)",0.15], + ["Indonesia (Republic of)",0.38], + ["Iran (Islamic Republic of)",0.78], + ["Iraq (Republic of)",0.7], + ["Ireland",0.9], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Jamaica",0.83], + ["Japan",1], + ["Jordan (Hashemite Kingdom of)",0.99], + ["Kazakhstan (Republic of)",0.97], + ["Kenya (Republic of)",0.31], + ["Kiribati (Republic of)",0.32], + ["Korea (Democratic People's Republic of)",null], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Kyrgyz Republic",0.92], + ["Lao (People's Democratic Republic)",0.28], + ["Latvia (Republic of)",0.88], + ["Lebanon (Lebanese Republic)",0.77], + ["Lesotho (Kingdom of)",0.08], + ["Liberia (Republic of)",0.13], + ["Libya (State of)",0.9], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.84], + ["Luxembourg (Grand Duchy of)",0.98], + ["Macao (Special Administrative Region of China)",1], + ["Madagascar (Republic of)",0.04], + ["Malawi (Republic of)",0.21], + ["Malaysia",0.97], + ["Maldives (Republic of)",0.75], + ["Mali (Republic of)",0.16], + ["Malta (Republic of)",1], + ["Marshall Islands (Republic of the)",null], + ["Mauritania (Islamic Republic of)",0.17], + ["Mauritius (Republic of)",0.9], + ["Mexico (United Mexican States)",0.77], + ["Micronesia (Federated States of)",0.25], + ["Moldova (Republic of)",0.74], + ["Monaco (Principality of)",1], + ["Mongolia",0.45], + ["Montenegro",null], + ["Morocco (Kingdom of)",0.68], + ["Mozambique (Republic of)",0.09], + ["Myanmar (Union of)",0.63], + ["Namibia (Republic of)",0.28], + ["Nauru (Republic of)",0.66], + ["Nepal (Federal Democratic Republic of)",0.14], + ["Netherlands (Kingdom of the)",0.98], + ["New Caledonia",1], + ["New Zealand",1], + ["Nicaragua (Republic of)",0.57], + ["Niger (Republic of)",0.05], + ["Nigeria (Federal Republic of)",0.29], + ["North Macedonia (Republic of)",0.89], + ["Northern Mariana Islands (Commonwealth of the)",0.75], + ["Norway (Kingdom of)",0.98], + ["Oman (Sultanate of)",0.89], + ["Pakistan (Islamic Republic of)",0.3], + ["Palau (Republic of)",0.91], + ["Panama (Republic of)",0.62], + ["Papua New Guinea (Independent State of)",0.18], + ["Paraguay (Republic of)",0.7], + ["Peru (Republic of)",0.63], + ["Philippines (Republic of the)",0.61], + ["Poland (Republic of)",0.89], + ["Portugal (Portuguese Republic)",0.97], + ["Puerto Rico (Commonwealth of)",0.98], + ["Qatar (State of)",1], + ["Romania",null], + ["Russian Federation",0.84], + ["Rwanda (Republic of)",0.45], + ["Samoa (Independent State of)",0.94], + ["San Marino (Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.2], + ["Saudi Arabia (Kingdom of)",0.98], + ["Senegal (Republic of)",0.37], + ["Serbia (Republic of)",0.95], + ["Seychelles (Republic of)",0.94], + ["Sierra Leone (Republic of)",0.1], + ["Singapore (Republic of)",1], + ["Sint Maarten (Netherlands)",0.98], + ["Slovakia (Slovak Republic)",1], + ["Slovenia (Republic of)",0.98], + ["Solomon Islands",0.2], + ["Somalia (Federal Republic of)",0.2], + ["South Africa (Republic of)",0.59], + ["South Sudan (Republic of)",null], + ["Spain (Kingdom of)",1], + ["Sri Lanka (Democratic Socialist Republic of)",0.77], + ["Saint Kitts and Nevis (Federation of)",0.86], + ["Saint Lucia",0.85], + ["Saint Martin",0.99], + ["Saint Vincent and the Grenadines",0.71], + ["Sudan (Republic of the)",0.21], + ["Suriname (Republic of)",0.78], + ["Sweden (Kingdom of)",0.99], + ["Switzerland (Swiss Confederation)",1], + ["Syrian Arab Republic",0.9], + ["Tajikistan (Republic of)",0.9], + ["Tanzania (United Republic of)",0.05], + ["Thailand (Kingdom of)",0.92], + ["Timor-Leste (Democratic Republic of)",null], + ["Togo (Togolese Republic)",0.1], + ["Tonga (Kingdom of)",0.89], + ["Trinidad and Tobago (Republic of)",0.9], + ["Tunisia (Republic of)",0.77], + ["Turkey (Republic of)",0.87], + ["Turkmenistan",0.93], + ["Turks and Caicos Islands",0.81], + ["Tuvalu",null], + ["Uganda (Republic of)",0.17], + ["Ukraine",0.94], + ["United Arab Emirates",null], + ["United Kingdom (of Great Britain & Northern Ireland)",0.99], + ["United States (of America)",1], + ["Uruguay (Oriental Republic of)",0.93], + ["Uzbekistan (Republic of)",0.93], + ["Vanuatu (Republic of)",0.56], + ["Venezuela (Bolivarian Republic of)",null], + ["Vietnam (Socialist Republic of)",0.52], + ["United States Virgin Islands",0.99], + ["Palestine (State of)",0.9], + ["Yemen (Republic of)",0.45], + ["Zambia (Republic of)",0.22], + ["Zimbabwe (Republic of)",0.45] + ] +} diff --git a/data/global/infrastructure/modern-sanitation/basic-sanitation-2005.json b/data/global/infrastructure/modern-sanitation/basic-sanitation-2005.json new file mode 100644 index 0000000..d4a0fcb --- /dev/null +++ b/data/global/infrastructure/modern-sanitation/basic-sanitation-2005.json @@ -0,0 +1,234 @@ +{ + "metadata" : { + "name" : "Access To Basic Sanitation", + "description" : "Percentage of the population using to modern sanitation facilities", + "units" : "%", + "year" : "2005", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","health","sanitation"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proportion_of_the_population_using_improved_sanitation_facilities" + ] + }, + "data" : [ + ["country.name","basic.sanitation.2005"], + ["Afghanistan (Islamic Republic of)",0.27], + ["Albania (Republic of)",0.92], + ["Algeria (People's Democratic Republic of)",0.86], + ["American Samoa",0.65], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.35], + ["Antigua and Barbuda",0.84], + ["Argentina (Argentine Republic)",0.9], + ["Armenia (Republic of)",0.89], + ["Aruba",0.98], + ["Australia (Commonwealth of)",1], + ["Austria (Republic of)",1], + ["Azerbaijan (Republic of)",0.72], + ["Bahamas (Commonwealth of the)",0.9], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",0.31], + ["Barbados",0.91], + ["Belarus (Republic of)",0.93], + ["Belgium (Kingdom of)",0.99], + ["Belize",0.84], + ["Benin (Republic of)",0.11], + ["Bermuda",1], + ["Bhutan (Kingdom of)",0.55], + ["Bolivia (Plurinational State of)",0.4], + ["Bosnia and Herzegovina",0.95], + ["Botswana (Republic of)",0.59], + ["Brazil (Federative Republic of)",0.78], + ["British Virgin Islands",0.97], + ["Bulgaria (Republic of)",0.86], + ["Burkina Faso",0.14], + ["Burundi (Republic of)",0.46], + ["Cape Verde (Republic of)",0.5], + ["Cambodia (Kingdom of)",0.23], + ["Cameroon (Republic of)",0.39], + ["Canada",1], + ["Cayman Islands",0.84], + ["Central African Republic",0.2], + ["Chad (Republic of)",0.1], + ["Chile (Republic of)",0.95], + ["China (People's Republic of)",0.66], + ["Colombia (Republic of)",0.8], + ["Comoros (Union of the)",0.33], + ["Congo (Democratic Republic of the)",0.22], + ["Congo (Republic of the)",0.14], + ["Costa Rica (Republic of)",0.95], + ["Côte d'Ivoire (Republic of)",0.23], + ["Croatia (Republic of)",0.96], + ["Cuba (Republic of)",0.88], + ["Curaçao",0.98], + ["Cyprus (Republic of)",1], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",1], + ["Djibouti (Republic of)",0.48], + ["Dominica (Commonwealth of)",0.7], + ["Dominican Republic",0.8], + ["Ecuador (Republic of)",0.74], + ["Egypt (Arab Republic of)",0.93], + ["El Salvador (Republic of)",0.84], + ["Equatorial Guinea (Republic of)",0.6], + ["Eritrea (State of)",0.1], + ["Estonia (Republic of)",1], + ["Eswatini (Kingdom of)",0.52], + ["Ethiopia (Federal Democratic Republic of)",0.04], + ["Fiji (Republic of)",0.83], + ["Finland (Republic of)",0.99], + ["France (French Republic)",0.99], + ["French Polynesia",0.98], + ["Gabon (Gabonese Republic)",0.39], + ["Gambia (Republic of the)",0.46], + ["Georgia",0.89], + ["Germany (Federal Republic of)",0.99], + ["Ghana (Republic of)",0.11], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",0.98], + ["Greenland",1], + ["Grenada",0.91], + ["Guam",0.89], + ["Guatemala (Republic of)",0.64], + ["Guinea (Republic of)",0.13], + ["Guinea-Bissau (Republic of)",0.08], + ["Guyana (Co-operative Republic of)",0.81], + ["Haiti (Republic of)",0.22], + ["Honduras (Republic of)",0.69], + ["Hong Kong (Special Administrative Region of China)",0.97], + ["Hungary (Republic of)",0.98], + ["Iceland (Republic of)",0.99], + ["India (Republic of)",0.28], + ["Indonesia (Republic of)",0.49], + ["Iran (Islamic Republic of)",0.82], + ["Iraq (Republic of)",0.74], + ["Ireland",0.9], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Jamaica",0.84], + ["Japan",1], + ["Jordan (Hashemite Kingdom of)",0.98], + ["Kazakhstan (Republic of)",0.97], + ["Kenya (Republic of)",0.31], + ["Kiribati (Republic of)",0.37], + ["Korea (Democratic People's Republic of)",0.75], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Kyrgyz Republic",0.93], + ["Lao (People's Democratic Republic)",0.43], + ["Latvia (Republic of)",0.89], + ["Lebanon (Lebanese Republic)",0.81], + ["Lesotho (Kingdom of)",0.2], + ["Liberia (Republic of)",0.15], + ["Libya (State of)",0.91], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.87], + ["Luxembourg (Grand Duchy of)",0.98], + ["Macao (Special Administrative Region of China)",1], + ["Madagascar (Republic of)",0.06], + ["Malawi (Republic of)",0.22], + ["Malaysia",0.98], + ["Maldives (Republic of)",0.82], + ["Mali (Republic of)",0.22], + ["Malta (Republic of)",1], + ["Marshall Islands (Republic of the)",0.8], + ["Mauritania (Islamic Republic of)",0.23], + ["Mauritius (Republic of)",0.92], + ["Mexico (United Mexican States)",0.81], + ["Micronesia (Federated States of)",0.46], + ["Moldova (Republic of)",0.75], + ["Monaco (Principality of)",1], + ["Mongolia",0.5], + ["Montenegro",null], + ["Morocco (Kingdom of)",0.73], + ["Mozambique (Republic of)",0.15], + ["Myanmar (Union of)",0.66], + ["Namibia (Republic of)",0.3], + ["Nauru (Republic of)",0.66], + ["Nepal (Federal Democratic Republic of)",0.27], + ["Netherlands (Kingdom of the)",0.98], + ["New Caledonia",1], + ["New Zealand",1], + ["Nicaragua (Republic of)",0.62], + ["Niger (Republic of)",0.08], + ["Nigeria (Federal Republic of)",0.31], + ["North Macedonia (Republic of)",0.89], + ["Northern Mariana Islands (Commonwealth of the)",0.76], + ["Norway (Kingdom of)",0.98], + ["Oman (Sultanate of)",0.92], + ["Pakistan (Islamic Republic of)",0.4], + ["Palau (Republic of)",0.94], + ["Panama (Republic of)",0.67], + ["Papua New Guinea (Independent State of)",0.18], + ["Paraguay (Republic of)",0.77], + ["Peru (Republic of)",0.68], + ["Philippines (Republic of the)",0.63], + ["Poland (Republic of)",0.92], + ["Portugal (Portuguese Republic)",0.98], + ["Puerto Rico (Commonwealth of)",0.99], + ["Qatar (State of)",1], + ["Romania",0.75], + ["Russian Federation",0.86], + ["Rwanda (Republic of)",0.52], + ["Samoa (Independent State of)",0.95], + ["San Marino (Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.27], + ["Saudi Arabia (Kingdom of)",0.99], + ["Senegal (Republic of)",0.42], + ["Serbia (Republic of)",0.96], + ["Seychelles (Republic of)",0.96], + ["Sierra Leone (Republic of)",0.12], + ["Singapore (Republic of)",1], + ["Sint Maarten (Netherlands)",0.99], + ["Slovakia (Slovak Republic)",0.99], + ["Slovenia (Republic of)",0.98], + ["Solomon Islands",0.22], + ["Somalia (Federal Republic of)",0.24], + ["South Africa (Republic of)",0.64], + ["South Sudan (Republic of)",null], + ["Spain (Kingdom of)",1], + ["Sri Lanka (Democratic Socialist Republic of)",0.81], + ["Saint Kitts and Nevis (Federation of)",0.9], + ["Saint Lucia",0.85], + ["Saint Martin",0.99], + ["Saint Vincent and the Grenadines",0.77], + ["Sudan (Republic of the)",0.22], + ["Suriname (Republic of)",0.8], + ["Sweden (Kingdom of)",0.99], + ["Switzerland (Swiss Confederation)",1], + ["Syrian Arab Republic",0.91], + ["Tajikistan (Republic of)",0.92], + ["Tanzania (United Republic of)",0.12], + ["Thailand (Kingdom of)",0.94], + ["Timor-Leste (Democratic Republic of)",0.4], + ["Togo (Togolese Republic)",0.11], + ["Tonga (Kingdom of)",0.9], + ["Trinidad and Tobago (Republic of)",0.91], + ["Tunisia (Republic of)",0.82], + ["Turkey (Republic of)",0.9], + ["Turkmenistan",0.94], + ["Turks and Caicos Islands",0.83], + ["Tuvalu",0.8], + ["Uganda (Republic of)",0.18], + ["Ukraine",0.95], + ["United Arab Emirates",0.97], + ["United Kingdom (of Great Britain & Northern Ireland)",0.99], + ["United States (of America)",1], + ["Uruguay (Oriental Republic of)",0.94], + ["Uzbekistan (Republic of)",0.96], + ["Vanuatu (Republic of)",0.56], + ["Venezuela (Bolivarian Republic of)",0.93], + ["Vietnam (Socialist Republic of)",0.62], + ["United States Virgin Islands",0.99], + ["Palestine (State of)",0.91], + ["Yemen (Republic of)",0.48], + ["Zambia (Republic of)",0.25], + ["Zimbabwe (Republic of)",0.44] + ] +} diff --git a/data/global/infrastructure/modern-sanitation/basic-sanitation-2010.json b/data/global/infrastructure/modern-sanitation/basic-sanitation-2010.json new file mode 100644 index 0000000..610a88b --- /dev/null +++ b/data/global/infrastructure/modern-sanitation/basic-sanitation-2010.json @@ -0,0 +1,234 @@ +{ + "metadata" : { + "name" : "Access To Basic Sanitation", + "description" : "Percentage of the population using to modern sanitation facilities", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","health","sanitation"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proportion_of_the_population_using_improved_sanitation_facilities" + ] + }, + "data" : [ + ["country.name","basic.sanitation.2010"], + ["Afghanistan (Islamic Republic of)",0.35], + ["Albania (Republic of)",0.95], + ["Algeria (People's Democratic Republic of)",0.87], + ["American Samoa",0.63], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.41], + ["Antigua and Barbuda",0.86], + ["Argentina (Argentine Republic)",0.93], + ["Armenia (Republic of)",0.91], + ["Aruba",0.98], + ["Australia (Commonwealth of)",1], + ["Austria (Republic of)",1], + ["Azerbaijan (Republic of)",0.85], + ["Bahamas (Commonwealth of the)",0.93], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",0.39], + ["Barbados",0.94], + ["Belarus (Republic of)",0.95], + ["Belgium (Kingdom of)",0.99], + ["Belize",0.86], + ["Benin (Republic of)",0.13], + ["Bermuda",1], + ["Bhutan (Kingdom of)",0.63], + ["Bolivia (Plurinational State of)",0.48], + ["Bosnia and Herzegovina",0.95], + ["Botswana (Republic of)",0.67], + ["Brazil (Federative Republic of)",0.82], + ["British Virgin Islands",0.97], + ["Bulgaria (Republic of)",0.86], + ["Burkina Faso",0.17], + ["Burundi (Republic of)",0.46], + ["Cape Verde (Republic of)",0.61], + ["Cambodia (Kingdom of)",0.38], + ["Cameroon (Republic of)",0.41], + ["Canada",1], + ["Cayman Islands",0.84], + ["Central African Republic",0.18], + ["Chad (Republic of)",0.1], + ["Chile (Republic of)",0.97], + ["China (People's Republic of)",0.76], + ["Colombia (Republic of)",0.84], + ["Comoros (Union of the)",0.34], + ["Congo (Democratic Republic of the)",0.2], + ["Congo (Republic of the)",0.16], + ["Costa Rica (Republic of)",0.96], + ["Côte d'Ivoire (Republic of)",0.27], + ["Croatia (Republic of)",0.96], + ["Cuba (Republic of)",0.89], + ["Curaçao",0.99], + ["Cyprus (Republic of)",1], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",1], + ["Djibouti (Republic of)",0.55], + ["Dominica (Commonwealth of)",0.77], + ["Dominican Republic",0.82], + ["Ecuador (Republic of)",0.8], + ["Egypt (Arab Republic of)",0.94], + ["El Salvador (Republic of)",0.83], + ["Equatorial Guinea (Republic of)",0.64], + ["Eritrea (State of)",0.11], + ["Estonia (Republic of)",0.99], + ["Eswatini (Kingdom of)",0.56], + ["Ethiopia (Federal Democratic Republic of)",0.06], + ["Fiji (Republic of)",0.89], + ["Finland (Republic of)",0.99], + ["France (French Republic)",0.99], + ["French Polynesia",0.98], + ["Gabon (Gabonese Republic)",0.44], + ["Gambia (Republic of the)",0.46], + ["Georgia",0.88], + ["Germany (Federal Republic of)",0.99], + ["Ghana (Republic of)",0.15], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",0.99], + ["Greenland",1], + ["Grenada",0.92], + ["Guam",0.9], + ["Guatemala (Republic of)",0.65], + ["Guinea (Republic of)",0.18], + ["Guinea-Bissau (Republic of)",0.11], + ["Guyana (Co-operative Republic of)",0.83], + ["Haiti (Republic of)",0.27], + ["Honduras (Republic of)",0.74], + ["Hong Kong (Special Administrative Region of China)",0.97], + ["Hungary (Republic of)",0.98], + ["Iceland (Republic of)",0.99], + ["India (Republic of)",0.42], + ["Indonesia (Republic of)",0.61], + ["Iran (Islamic Republic of)",0.85], + ["Iraq (Republic of)",0.83], + ["Ireland",0.91], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Jamaica",0.85], + ["Japan",1], + ["Jordan (Hashemite Kingdom of)",0.98], + ["Kazakhstan (Republic of)",0.97], + ["Kenya (Republic of)",0.32], + ["Kiribati (Republic of)",0.41], + ["Korea (Democratic People's Republic of)",0.78], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Kyrgyz Republic",0.95], + ["Lao (People's Democratic Republic)",0.56], + ["Latvia (Republic of)",0.9], + ["Lebanon (Lebanese Republic)",0.87], + ["Lesotho (Kingdom of)",0.3], + ["Liberia (Republic of)",0.16], + ["Libya (State of)",0.91], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.9], + ["Luxembourg (Grand Duchy of)",0.98], + ["Macao (Special Administrative Region of China)",1], + ["Madagascar (Republic of)",0.08], + ["Malawi (Republic of)",0.24], + ["Malaysia",0.99], + ["Maldives (Republic of)",0.88], + ["Mali (Republic of)",0.29], + ["Malta (Republic of)",1], + ["Marshall Islands (Republic of the)",0.82], + ["Mauritania (Islamic Republic of)",0.32], + ["Mauritius (Republic of)",0.94], + ["Mexico (United Mexican States)",0.85], + ["Micronesia (Federated States of)",0.67], + ["Moldova (Republic of)",0.75], + ["Monaco (Principality of)",1], + ["Mongolia",0.56], + ["Montenegro",0.93], + ["Morocco (Kingdom of)",0.78], + ["Mozambique (Republic of)",0.22], + ["Myanmar (Union of)",0.69], + ["Namibia (Republic of)",0.32], + ["Nauru (Republic of)",0.66], + ["Nepal (Federal Democratic Republic of)",0.42], + ["Netherlands (Kingdom of the)",0.98], + ["New Caledonia",1], + ["New Zealand",1], + ["Nicaragua (Republic of)",0.67], + ["Niger (Republic of)",0.1], + ["Nigeria (Federal Republic of)",0.34], + ["North Macedonia (Republic of)",0.92], + ["Northern Mariana Islands (Commonwealth of the)",0.77], + ["Norway (Kingdom of)",0.98], + ["Oman (Sultanate of)",0.96], + ["Pakistan (Islamic Republic of)",0.5], + ["Palau (Republic of)",0.97], + ["Panama (Republic of)",0.73], + ["Papua New Guinea (Independent State of)",0.19], + ["Paraguay (Republic of)",0.82], + ["Peru (Republic of)",0.71], + ["Philippines (Republic of the)",0.69], + ["Poland (Republic of)",0.95], + ["Portugal (Portuguese Republic)",0.99], + ["Puerto Rico (Commonwealth of)",0.99], + ["Qatar (State of)",1], + ["Romania",0.79], + ["Russian Federation",0.87], + ["Rwanda (Republic of)",0.58], + ["Samoa (Independent State of)",0.95], + ["San Marino (Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.34], + ["Saudi Arabia (Kingdom of)",0.99], + ["Senegal (Republic of)",0.47], + ["Serbia (Republic of)",0.97], + ["Seychelles (Republic of)",0.98], + ["Sierra Leone (Republic of)",0.13], + ["Singapore (Republic of)",1], + ["Sint Maarten (Netherlands)",0.99], + ["Slovakia (Slovak Republic)",0.98], + ["Slovenia (Republic of)",0.98], + ["Solomon Islands",0.27], + ["Somalia (Federal Republic of)",0.29], + ["South Africa (Republic of)",0.69], + ["South Sudan (Republic of)",null], + ["Spain (Kingdom of)",1], + ["Sri Lanka (Democratic Socialist Republic of)",0.86], + ["Saint Kitts and Nevis (Federation of)",0.93], + ["Saint Lucia",0.84], + ["Saint Martin",0.99], + ["Saint Vincent and the Grenadines",0.83], + ["Sudan (Republic of the)",0.28], + ["Suriname (Republic of)",0.83], + ["Sweden (Kingdom of)",0.99], + ["Switzerland (Swiss Confederation)",1], + ["Syrian Arab Republic",0.91], + ["Tajikistan (Republic of)",0.93], + ["Tanzania (United Republic of)",0.19], + ["Thailand (Kingdom of)",0.95], + ["Timor-Leste (Democratic Republic of)",0.46], + ["Togo (Togolese Republic)",0.13], + ["Tonga (Kingdom of)",0.93], + ["Trinidad and Tobago (Republic of)",0.93], + ["Tunisia (Republic of)",0.87], + ["Turkey (Republic of)",0.93], + ["Turkmenistan",0.95], + ["Turks and Caicos Islands",0.86], + ["Tuvalu",0.83], + ["Uganda (Republic of)",0.18], + ["Ukraine",0.96], + ["United Arab Emirates",0.98], + ["United Kingdom (of Great Britain & Northern Ireland)",0.99], + ["United States (of America)",1], + ["Uruguay (Oriental Republic of)",0.95], + ["Uzbekistan (Republic of)",0.99], + ["Vanuatu (Republic of)",0.55], + ["Venezuela (Bolivarian Republic of)",0.94], + ["Vietnam (Socialist Republic of)",0.71], + ["United States Virgin Islands",0.99], + ["Palestine (State of)",0.94], + ["Yemen (Republic of)",0.5], + ["Zambia (Republic of)",0.27], + ["Zimbabwe (Republic of)",0.41] + ] +} diff --git a/data/global/infrastructure/modern-sanitation/basic-sanitation-2015.json b/data/global/infrastructure/modern-sanitation/basic-sanitation-2015.json new file mode 100644 index 0000000..2d9bb94 --- /dev/null +++ b/data/global/infrastructure/modern-sanitation/basic-sanitation-2015.json @@ -0,0 +1,234 @@ +{ + "metadata" : { + "name" : "Access To Basic Sanitation", + "description" : "Percentage of the population using to modern sanitation facilities", + "units" : "%", + "year" : "2015", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","health","sanitation"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proportion_of_the_population_using_improved_sanitation_facilities" + ] + }, + "data" : [ + ["country.name","basic.sanitation.2015"], + ["Afghanistan (Islamic Republic of)",0.43], + ["Albania (Republic of)",0.98], + ["Algeria (People's Democratic Republic of)",0.87], + ["American Samoa",0.57], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.47], + ["Antigua and Barbuda",0.88], + ["Argentina (Argentine Republic)",0.95], + ["Armenia (Republic of)",0.93], + ["Aruba",0.98], + ["Australia (Commonwealth of)",1], + ["Austria (Republic of)",1], + ["Azerbaijan (Republic of)",0.96], + ["Bahamas (Commonwealth of the)",0.95], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",0.47], + ["Barbados",0.96], + ["Belarus (Republic of)",0.98], + ["Belgium (Kingdom of)",0.99], + ["Belize",0.87], + ["Benin (Republic of)",0.15], + ["Bermuda",1], + ["Bhutan (Kingdom of)",0.7], + ["Bolivia (Plurinational State of)",0.57], + ["Bosnia and Herzegovina",0.95], + ["Botswana (Republic of)",0.75], + ["Brazil (Federative Republic of)",0.86], + ["British Virgin Islands",0.97], + ["Bulgaria (Republic of)",0.86], + ["Burkina Faso",0.2], + ["Burundi (Republic of)",0.46], + ["Cape Verde (Republic of)",0.7], + ["Cambodia (Kingdom of)",0.53], + ["Cameroon (Republic of)",0.43], + ["Canada",0.99], + ["Cayman Islands",0.84], + ["Central African Republic",0.16], + ["Chad (Republic of)",0.11], + ["Chile (Republic of)",0.99], + ["China (People's Republic of)",0.84], + ["Colombia (Republic of)",0.89], + ["Comoros (Union of the)",0.36], + ["Congo (Democratic Republic of the)",0.17], + ["Congo (Republic of the)",0.19], + ["Costa Rica (Republic of)",0.97], + ["Côte d'Ivoire (Republic of)",0.31], + ["Croatia (Republic of)",0.96], + ["Cuba (Republic of)",0.9], + ["Curaçao",0.99], + ["Cyprus (Republic of)",0.99], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",1], + ["Djibouti (Republic of)",0.61], + ["Dominica (Commonwealth of)",0.8], + ["Dominican Republic",0.85], + ["Ecuador (Republic of)",0.86], + ["Egypt (Arab Republic of)",0.96], + ["El Salvador (Republic of)",0.83], + ["Equatorial Guinea (Republic of)",0.66], + ["Eritrea (State of)",0.12], + ["Estonia (Republic of)",0.99], + ["Eswatini (Kingdom of)",0.61], + ["Ethiopia (Federal Democratic Republic of)",0.07], + ["Fiji (Republic of)",0.96], + ["Finland (Republic of)",0.99], + ["France (French Republic)",0.99], + ["French Polynesia",0.97], + ["Gabon (Gabonese Republic)",0.49], + ["Gambia (Republic of the)",0.46], + ["Georgia",0.87], + ["Germany (Federal Republic of)",0.99], + ["Ghana (Republic of)",0.19], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",0.99], + ["Greenland",1], + ["Grenada",0.91], + ["Guam",0.9], + ["Guatemala (Republic of)",0.67], + ["Guinea (Republic of)",0.24], + ["Guinea-Bissau (Republic of)",0.14], + ["Guyana (Co-operative Republic of)",0.85], + ["Haiti (Republic of)",0.33], + ["Honduras (Republic of)",0.79], + ["Hong Kong (Special Administrative Region of China)",0.97], + ["Hungary (Republic of)",0.98], + ["Iceland (Republic of)",0.99], + ["India (Republic of)",0.57], + ["Indonesia (Republic of)",0.74], + ["Iran (Islamic Republic of)",0.88], + ["Iraq (Republic of)",0.93], + ["Ireland",0.91], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Jamaica",0.86], + ["Japan",1], + ["Jordan (Hashemite Kingdom of)",0.97], + ["Kazakhstan (Republic of)",0.98], + ["Kenya (Republic of)",0.32], + ["Kiribati (Republic of)",0.43], + ["Korea (Democratic People's Republic of)",0.82], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Kyrgyz Republic",0.97], + ["Lao (People's Democratic Republic)",0.7], + ["Latvia (Republic of)",0.92], + ["Lebanon (Lebanese Republic)",0.94], + ["Lesotho (Kingdom of)",0.41], + ["Liberia (Republic of)",0.17], + ["Libya (State of)",0.92], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.92], + ["Luxembourg (Grand Duchy of)",0.98], + ["Macao (Special Administrative Region of China)",1], + ["Madagascar (Republic of)",0.1], + ["Malawi (Republic of)",0.25], + ["Malaysia",1], + ["Maldives (Republic of)",0.94], + ["Mali (Republic of)",0.37], + ["Malta (Republic of)",1], + ["Marshall Islands (Republic of the)",0.83], + ["Mauritania (Islamic Republic of)",0.43], + ["Mauritius (Republic of)",0.96], + ["Mexico (United Mexican States)",0.89], + ["Micronesia (Federated States of)",0.88], + ["Moldova (Republic of)",0.76], + ["Monaco (Principality of)",1], + ["Mongolia",0.62], + ["Montenegro",0.96], + ["Morocco (Kingdom of)",0.83], + ["Mozambique (Republic of)",0.29], + ["Myanmar (Union of)",0.71], + ["Namibia (Republic of)",0.34], + ["Nauru (Republic of)",0.66], + ["Nepal (Federal Democratic Republic of)",0.59], + ["Netherlands (Kingdom of the)",0.98], + ["New Caledonia",1], + ["New Zealand",1], + ["Nicaragua (Republic of)",0.72], + ["Niger (Republic of)",0.13], + ["Nigeria (Federal Republic of)",0.38], + ["North Macedonia (Republic of)",0.95], + ["Northern Mariana Islands (Commonwealth of the)",0.78], + ["Norway (Kingdom of)",0.98], + ["Oman (Sultanate of)",0.99], + ["Pakistan (Islamic Republic of)",0.59], + ["Palau (Republic of)",0.99], + ["Panama (Republic of)",0.79], + ["Papua New Guinea (Independent State of)",0.19], + ["Paraguay (Republic of)",0.88], + ["Peru (Republic of)",0.75], + ["Philippines (Republic of the)",0.75], + ["Poland (Republic of)",0.99], + ["Portugal (Portuguese Republic)",0.99], + ["Puerto Rico (Commonwealth of)",1], + ["Qatar (State of)",1], + ["Romania",0.83], + ["Russian Federation",0.88], + ["Rwanda (Republic of)",0.64], + ["Samoa (Independent State of)",0.96], + ["San Marino (Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.41], + ["Saudi Arabia (Kingdom of)",1], + ["Senegal (Republic of)",0.52], + ["Serbia (Republic of)",0.97], + ["Seychelles (Republic of)",1], + ["Sierra Leone (Republic of)",0.15], + ["Singapore (Republic of)",1], + ["Sint Maarten (Netherlands)",0.99], + ["Slovakia (Slovak Republic)",0.98], + ["Slovenia (Republic of)",0.98], + ["Solomon Islands",0.32], + ["Somalia (Federal Republic of)",0.34], + ["South Africa (Republic of)",0.74], + ["South Sudan (Republic of)",0.11], + ["Spain (Kingdom of)",1], + ["Sri Lanka (Democratic Socialist Republic of)",0.91], + ["Saint Kitts and Nevis (Federation of)",0.95], + ["Saint Lucia",0.83], + ["Saint Martin",1], + ["Saint Vincent and the Grenadines",0.87], + ["Sudan (Republic of the)",0.35], + ["Suriname (Republic of)",0.86], + ["Sweden (Kingdom of)",0.99], + ["Switzerland (Swiss Confederation)",1], + ["Syrian Arab Republic",0.9], + ["Tajikistan (Republic of)",0.95], + ["Tanzania (United Republic of)",0.26], + ["Thailand (Kingdom of)",0.97], + ["Timor-Leste (Democratic Republic of)",0.51], + ["Togo (Togolese Republic)",0.16], + ["Tonga (Kingdom of)",0.93], + ["Trinidad and Tobago (Republic of)",0.94], + ["Tunisia (Republic of)",0.92], + ["Turkey (Republic of)",0.96], + ["Turkmenistan",0.97], + ["Turks and Caicos Islands",0.88], + ["Tuvalu",0.84], + ["Uganda (Republic of)",0.19], + ["Ukraine",0.97], + ["United Arab Emirates",0.99], + ["United Kingdom (of Great Britain & Northern Ireland)",0.99], + ["United States (of America)",1], + ["Uruguay (Oriental Republic of)",0.97], + ["Uzbekistan (Republic of)",1], + ["Vanuatu (Republic of)",0.53], + ["Venezuela (Bolivarian Republic of)",0.95], + ["Vietnam (Socialist Republic of)",0.81], + ["United States Virgin Islands",0.99], + ["Palestine (State of)",0.96], + ["Yemen (Republic of)",0.52], + ["Zambia (Republic of)",0.3], + ["Zimbabwe (Republic of)",0.38] + ] +} diff --git a/data/global/infrastructure/modern-sanitation/basic-sanitation-2020.json b/data/global/infrastructure/modern-sanitation/basic-sanitation-2020.json new file mode 100644 index 0000000..2cb1320 --- /dev/null +++ b/data/global/infrastructure/modern-sanitation/basic-sanitation-2020.json @@ -0,0 +1,234 @@ +{ + "metadata" : { + "name" : "Access To Basic Sanitation", + "description" : "Percentage of the population using to modern sanitation facilities", + "units" : "%", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","development","health","sanitation"], + "authors" : [ + "World Bank (WB)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_proportion_of_the_population_using_improved_sanitation_facilities" + ] + }, + "data" : [ + ["country.name","basic.sanitation.2020"], + ["Afghanistan (Islamic Republic of)",0.5], + ["Albania (Republic of)",0.99], + ["Algeria (People's Democratic Republic of)",0.86], + ["American Samoa",0.54], + ["Andorra (Principality of)",1], + ["Angola (Republic of)",0.52], + ["Antigua and Barbuda",null], + ["Argentina (Argentine Republic)",null], + ["Armenia (Republic of)",0.94], + ["Aruba",null], + ["Australia (Commonwealth of)",1], + ["Austria (Republic of)",1], + ["Azerbaijan (Republic of)",null], + ["Bahamas (Commonwealth of the)",null], + ["Bahrain (Kingdom of)",1], + ["Bangladesh (People's Republic of)",0.54], + ["Barbados",0.98], + ["Belarus (Republic of)",0.98], + ["Belgium (Kingdom of)",0.99], + ["Belize",0.88], + ["Benin (Republic of)",0.17], + ["Bermuda",1], + ["Bhutan (Kingdom of)",0.77], + ["Bolivia (Plurinational State of)",0.66], + ["Bosnia and Herzegovina",null], + ["Botswana (Republic of)",0.8], + ["Brazil (Federative Republic of)",0.9], + ["British Virgin Islands",null], + ["Bulgaria (Republic of)",0.86], + ["Burkina Faso",0.22], + ["Burundi (Republic of)",0.46], + ["Cape Verde (Republic of)",0.79], + ["Cambodia (Kingdom of)",0.69], + ["Cameroon (Republic of)",0.45], + ["Canada",0.99], + ["Cayman Islands",null], + ["Central African Republic",0.14], + ["Chad (Republic of)",0.12], + ["Chile (Republic of)",1], + ["China (People's Republic of)",0.92], + ["Colombia (Republic of)",0.94], + ["Comoros (Union of the)",null], + ["Congo (Democratic Republic of the)",0.15], + ["Congo (Republic of the)",0.2], + ["Costa Rica (Republic of)",0.98], + ["Côte d'Ivoire (Republic of)",0.35], + ["Croatia (Republic of)",0.97], + ["Cuba (Republic of)",0.91], + ["Curaçao",null], + ["Cyprus (Republic of)",0.99], + ["Czech Republic",0.99], + ["Denmark (Kingdom of)",1], + ["Djibouti (Republic of)",0.67], + ["Dominica (Commonwealth of)",null], + ["Dominican Republic",0.87], + ["Ecuador (Republic of)",0.92], + ["Egypt (Arab Republic of)",0.97], + ["El Salvador (Republic of)",0.82], + ["Equatorial Guinea (Republic of)",null], + ["Eritrea (State of)",null], + ["Estonia (Republic of)",0.99], + ["Eswatini (Kingdom of)",0.64], + ["Ethiopia (Federal Democratic Republic of)",0.09], + ["Fiji (Republic of)",0.99], + ["Finland (Republic of)",0.99], + ["France (French Republic)",0.99], + ["French Polynesia",0.97], + ["Gabon (Gabonese Republic)",0.5], + ["Gambia (Republic of the)",0.47], + ["Georgia",0.86], + ["Germany (Federal Republic of)",0.99], + ["Ghana (Republic of)",0.24], + ["Gibraltar",1], + ["Greece (Hellenic Republic)",0.99], + ["Greenland",1], + ["Grenada",null], + ["Guam",null], + ["Guatemala (Republic of)",0.68], + ["Guinea (Republic of)",0.3], + ["Guinea-Bissau (Republic of)",0.18], + ["Guyana (Co-operative Republic of)",0.86], + ["Haiti (Republic of)",0.37], + ["Honduras (Republic of)",0.84], + ["Hong Kong (Special Administrative Region of China)",0.97], + ["Hungary (Republic of)",0.98], + ["Iceland (Republic of)",0.99], + ["India (Republic of)",0.71], + ["Indonesia (Republic of)",0.86], + ["Iran (Islamic Republic of)",0.9], + ["Iraq (Republic of)",1], + ["Ireland",0.91], + ["Israel (State of)",1], + ["Italy (Italian Republic)",1], + ["Jamaica",0.87], + ["Japan",1], + ["Jordan (Hashemite Kingdom of)",0.97], + ["Kazakhstan (Republic of)",0.98], + ["Kenya (Republic of)",0.33], + ["Kiribati (Republic of)",0.46], + ["Korea (Democratic People's Republic of)",0.85], + ["Korea (Republic of)",1], + ["Kuwait (State of)",1], + ["Kyrgyz Republic",0.98], + ["Lao (People's Democratic Republic)",0.79], + ["Latvia (Republic of)",0.92], + ["Lebanon (Lebanese Republic)",0.99], + ["Lesotho (Kingdom of)",0.5], + ["Liberia (Republic of)",0.18], + ["Libya (State of)",0.92], + ["Liechtenstein (Principality of)",1], + ["Lithuania (Republic of)",0.94], + ["Luxembourg (Grand Duchy of)",0.98], + ["Macao (Special Administrative Region of China)",1], + ["Madagascar (Republic of)",0.12], + ["Malawi (Republic of)",0.27], + ["Malaysia",null], + ["Maldives (Republic of)",0.99], + ["Mali (Republic of)",0.45], + ["Malta (Republic of)",1], + ["Marshall Islands (Republic of the)",0.84], + ["Mauritania (Islamic Republic of)",0.5], + ["Mauritius (Republic of)",null], + ["Mexico (United Mexican States)",0.92], + ["Micronesia (Federated States of)",null], + ["Moldova (Republic of)",0.79], + ["Monaco (Principality of)",1], + ["Mongolia",0.68], + ["Montenegro",0.98], + ["Morocco (Kingdom of)",0.87], + ["Mozambique (Republic of)",0.37], + ["Myanmar (Union of)",0.74], + ["Namibia (Republic of)",0.35], + ["Nauru (Republic of)",null], + ["Nepal (Federal Democratic Republic of)",0.77], + ["Netherlands (Kingdom of the)",0.98], + ["New Caledonia",1], + ["New Zealand",1], + ["Nicaragua (Republic of)",0.73], + ["Niger (Republic of)",0.15], + ["Nigeria (Federal Republic of)",0.43], + ["North Macedonia (Republic of)",0.98], + ["Northern Mariana Islands (Commonwealth of the)",0.79], + ["Norway (Kingdom of)",0.98], + ["Oman (Sultanate of)",0.99], + ["Pakistan (Islamic Republic of)",0.68], + ["Palau (Republic of)",1], + ["Panama (Republic of)",0.85], + ["Papua New Guinea (Independent State of)",0.19], + ["Paraguay (Republic of)",0.93], + ["Peru (Republic of)",0.79], + ["Philippines (Republic of the)",0.82], + ["Poland (Republic of)",1], + ["Portugal (Portuguese Republic)",1], + ["Puerto Rico (Commonwealth of)",1], + ["Qatar (State of)",1], + ["Romania",0.87], + ["Russian Federation",0.89], + ["Rwanda (Republic of)",0.69], + ["Samoa (Independent State of)",0.97], + ["San Marino (Republic of)",1], + ["São Tomé and Príncipe (Democratic Republic of)",0.48], + ["Saudi Arabia (Kingdom of)",1], + ["Senegal (Republic of)",0.57], + ["Serbia (Republic of)",0.98], + ["Seychelles (Republic of)",1], + ["Sierra Leone (Republic of)",0.17], + ["Singapore (Republic of)",1], + ["Sint Maarten (Netherlands)",null], + ["Slovakia (Slovak Republic)",0.98], + ["Slovenia (Republic of)",0.98], + ["Solomon Islands",0.35], + ["Somalia (Federal Republic of)",0.39], + ["South Africa (Republic of)",0.78], + ["South Sudan (Republic of)",0.16], + ["Spain (Kingdom of)",1], + ["Sri Lanka (Democratic Socialist Republic of)",0.94], + ["Saint Kitts and Nevis (Federation of)",null], + ["Saint Lucia",0.83], + ["Saint Martin",1], + ["Saint Vincent and the Grenadines",null], + ["Sudan (Republic of the)",0.37], + ["Suriname (Republic of)",0.9], + ["Sweden (Kingdom of)",0.99], + ["Switzerland (Swiss Confederation)",1], + ["Syrian Arab Republic",0.9], + ["Tajikistan (Republic of)",0.97], + ["Tanzania (United Republic of)",0.32], + ["Thailand (Kingdom of)",0.99], + ["Timor-Leste (Democratic Republic of)",0.57], + ["Togo (Togolese Republic)",0.19], + ["Tonga (Kingdom of)",0.93], + ["Trinidad and Tobago (Republic of)",0.94], + ["Tunisia (Republic of)",0.97], + ["Turkey (Republic of)",0.99], + ["Turkmenistan",0.99], + ["Turks and Caicos Islands",null], + ["Tuvalu",null], + ["Uganda (Republic of)",0.2], + ["Ukraine",0.98], + ["United Arab Emirates",0.99], + ["United Kingdom (of Great Britain & Northern Ireland)",0.99], + ["United States (of America)",1], + ["Uruguay (Oriental Republic of)",0.98], + ["Uzbekistan (Republic of)",1], + ["Vanuatu (Republic of)",0.53], + ["Venezuela (Bolivarian Republic of)",0.96], + ["Vietnam (Socialist Republic of)",0.89], + ["United States Virgin Islands",0.99], + ["Palestine (State of)",0.99], + ["Yemen (Republic of)",0.54], + ["Zambia (Republic of)",0.32], + ["Zimbabwe (Republic of)",0.35] + ] +} diff --git a/data/global/infrastructure/rail-network-size/rail-network-electrification-rate.json b/data/global/infrastructure/rail-network-size/rail-network-electrification-rate.json new file mode 100644 index 0000000..2266edf --- /dev/null +++ b/data/global/infrastructure/rail-network-size/rail-network-electrification-rate.json @@ -0,0 +1,169 @@ +{ + "metadata" : { + "name" : "Rail Network Electrification Rate", + "description" : "Percentage of the rail network that is electrified.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","rail","trains","transport","energy"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_rail_transport_network_size" + ] + }, + "data" : [ + ["country.name","rail.network.electrification.rate"], + ["United States (of America)",0.0092], + ["China (People's Republic of)",0.6667], + ["Russian Federation",0.5117], + ["India (Republic of)",0.83], + ["Canada",0.002], + ["Germany (Federal Republic of)",0.5538], + ["Argentina (Argentine Republic)",0.0051], + ["Australia (Commonwealth of)",0.1023], + ["Brazil (Federative Republic of)",0.3027], + ["France (French Republic)",0.5359], + ["Japan",0.7519], + ["Mexico (United Mexican States)",0.0012], + ["South Africa (Republic of)",0.4651], + ["Poland (Republic of)",0.65], + ["Ukraine",0.4678], + ["Iran (Islamic Republic of)",0.1294], + ["Italy (Italian Republic)",0.4945], + ["Spain (Kingdom of)",0.6803], + ["United Kingdom (of Great Britain & Northern Ireland)",0.38], + ["Kazakhstan (Republic of)",0.2704], + ["Turkey (Republic of)",0.4291], + ["Myanmar (Union of)",0], + ["Sweden (Kingdom of)",0.7502], + ["Romania",0.3056], + ["Czech Republic",0.3384], + ["Pakistan (Islamic Republic of)",0], + ["Hungary (Republic of)",0.3636], + ["Indonesia (Republic of)",0.0877], + ["Egypt (Arab Republic of)",0.0088], + ["Chile (Republic of)",0], + ["Sudan (Republic of the)",0], + ["Finland (Republic of)",0.5518], + ["Korea (Democratic People's Republic of)",0.6103], + ["Saudi Arabia (Kingdom of)",0.081], + ["Austria (Republic of)",0.6922], + ["Cuba (Republic of)",0], + ["Belarus (Republic of)",0.1601], + ["Switzerland (Swiss Confederation)",1], + ["Turkmenistan",0], + ["Korea (Republic of)",0.7829], + ["Uzbekistan (Republic of)",0.3865], + ["Algeria (People's Democratic Republic of)",0.1053], + ["New Zealand",0.1226], + ["Congo (Democratic Republic of the)",0], + ["Thailand (Kingdom of)",0.0218], + ["Bulgaria (Republic of)",0.7146], + ["Norway (Kingdom of)",0.6814], + ["Serbia (Republic of)",0.3398], + ["Slovakia (Slovak Republic)",0.4377], + ["Portugal (Portuguese Republic)",0.71], + ["Belgium (Kingdom of)",0.8206], + ["Nigeria (Federal Republic of)",0], + ["Vietnam (Socialist Republic of)",0], + ["Mozambique (Republic of)",0], + ["Zimbabwe (Republic of)",0.0998], + ["Netherlands (Kingdom of the)",0.7574], + ["Uruguay (Oriental Republic of)",0], + ["Bolivia (Plurinational State of)",0], + ["Bangladesh (People's Republic of)",0], + ["Malaysia",0.2756], + ["Angola (Republic of)",0], + ["Syrian Arab Republic",0], + ["Tanzania (United Republic of)",0], + ["Croatia (Republic of)",0.3783], + ["Kenya (Republic of)",0], + ["Namibia (Republic of)",0], + ["Greece (Hellenic Republic)",0.3411], + ["Ethiopia (Federal Democratic Republic of)",0.6412], + ["Tunisia (Republic of)",0], + ["Morocco (Kingdom of)",0.4846], + ["Azerbaijan (Republic of)",0.618], + ["Iraq (Republic of)",0], + ["Peru (Republic of)",0], + ["Denmark (Kingdom of)",0.3221], + ["Ireland",0.0274], + ["Lithuania (Republic of)",0.0638], + ["Latvia (Republic of)",0.1382], + ["Mongolia",0], + ["Taiwan",0.7295], + ["Colombia (Republic of)",0], + ["Georgia",0.8173], + ["Sri Lanka (Democratic Socialist Republic of)",0], + ["Israel (State of)",0.1447], + ["Uganda (Republic of)",0], + ["Zambia (Republic of)",0], + ["Slovenia (Republic of)",0.416], + ["Estonia (Republic of)",0.1137], + ["Moldova (Republic of)",0], + ["Bosnia and Herzegovina",0.555], + ["Cameroon (Republic of)",0], + ["Ecuador (Republic of)",0], + ["Ghana (Republic of)",0], + ["Senegal (Republic of)",0], + ["Botswana (Republic of)",0], + ["Guatemala (Republic of)",0], + ["Madagascar (Republic of)",0], + ["Guinea (Republic of)",0], + ["Gabon (Gabonese Republic)",0], + ["Malawi (Republic of)",0], + ["Congo (Republic of the)",0], + ["Benin (Republic of)",0], + ["Mali (Republic of)",0], + ["Mauritania (Islamic Republic of)",0], + ["Armenia (Republic of)",1], + ["Honduras (Republic of)",0], + ["North Macedonia (Republic of)",0.4583], + ["Cambodia (Kingdom of)",0], + ["Côte d'Ivoire (Republic of)",0], + ["Burkina Faso",0], + ["Jordan (Hashemite Kingdom of)",0], + ["Tajikistan (Republic of)",0], + ["Fiji (Republic of)",0], + ["Togo (Togolese Republic)",0], + ["El Salvador (Republic of)",0], + ["Philippines (Republic of the)",0.1001], + ["Dominican Republic",0], + ["Liberia (Republic of)",0], + ["Lao (People's Democratic Republic)",0.9764], + ["Kyrgyz Republic",0], + ["Panama (Republic of)",0], + ["Venezuela (Bolivarian Republic of)",0], + ["Albania (Republic of)",0], + ["Eritrea (State of)",0], + ["Eswatini (Kingdom of)",0], + ["Costa Rica (Republic of)",0], + ["Luxembourg (Grand Duchy of)",1], + ["Hong Kong (Special Administrative Region of China)",1], + ["United Arab Emirates",0], + ["Montenegro",0.9], + ["Singapore (Republic of)",1], + ["Suriname (Republic of)",0], + ["Guyana (Co-operative Republic of)",0], + ["Djibouti (Republic of)",0], + ["Sierra Leone (Republic of)",0], + ["Afghanistan (Islamic Republic of)",0], + ["Jamaica",0], + ["Saint Kitts and Nevis (Federation of)",0], + ["Nepal (Federal Democratic Republic of)",0], + ["Paraguay (Republic of)",0], + ["Puerto Rico (Commonwealth of)",1], + ["Brunei (Nation of the Abode of Peace)",0], + ["Macao (Special Administrative Region of China)",1], + ["Liechtenstein (Principality of)",1], + ["Nauru (Republic of)",0], + ["Monaco (Principality of)",1], + ["Lesotho (Kingdom of)",0], + ["Holy See (Vatican City State)",0] + ] +} diff --git a/data/global/infrastructure/rail-network-size/rail-network-length.json b/data/global/infrastructure/rail-network-size/rail-network-length.json new file mode 100644 index 0000000..8fa0760 --- /dev/null +++ b/data/global/infrastructure/rail-network-size/rail-network-length.json @@ -0,0 +1,169 @@ +{ + "metadata" : { + "name" : "Rail Network Length", + "description" : "Rail network size measured in kilometres.", + "units" : "km", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","rail","trains","transport"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_rail_transport_network_size" + ] + }, + "data" : [ + ["country.name","rail.network.length"], + ["United States (of America)",220480], + ["China (People's Republic of)",150000], + ["Russian Federation",85600], + ["India (Republic of)",68103], + ["Canada",49422], + ["Germany (Federal Republic of)",40625], + ["Argentina (Argentine Republic)",36966], + ["Australia (Commonwealth of)",33168], + ["Brazil (Federative Republic of)",29817], + ["France (French Republic)",29273], + ["Japan",27311], + ["Mexico (United Mexican States)",23389], + ["South Africa (Republic of)",20953], + ["Poland (Republic of)",19954], + ["Ukraine",19787], + ["Iran (Islamic Republic of)",16998], + ["Italy (Italian Republic)",16779], + ["Spain (Kingdom of)",16355], + ["United Kingdom (of Great Britain & Northern Ireland)",15935], + ["Kazakhstan (Republic of)",15530], + ["Turkey (Republic of)",12740], + ["Myanmar (Union of)",11025], + ["Sweden (Kingdom of)",10912], + ["Romania",10774], + ["Czech Republic",9567], + ["Pakistan (Islamic Republic of)",8100], + ["Hungary (Republic of)",7945], + ["Indonesia (Republic of)",7032], + ["Egypt (Arab Republic of)",7024], + ["Chile (Republic of)",6634], + ["Sudan (Republic of the)",6084], + ["Finland (Republic of)",5926], + ["Korea (Democratic People's Republic of)",5735], + ["Saudi Arabia (Kingdom of)",5590], + ["Austria (Republic of)",5527], + ["Cuba (Republic of)",5476], + ["Belarus (Republic of)",5459], + ["Switzerland (Swiss Confederation)",5196], + ["Turkmenistan",5080], + ["Korea (Republic of)",4837], + ["Uzbekistan (Republic of)",7400], + ["Algeria (People's Democratic Republic of)",4560], + ["New Zealand",4128], + ["Congo (Democratic Republic of the)",4096], + ["Thailand (Kingdom of)",4044], + ["Bulgaria (Republic of)",4030], + ["Norway (Kingdom of)",3848], + ["Serbia (Republic of)",3764], + ["Slovakia (Slovak Republic)",3626], + ["Portugal (Portuguese Republic)",3622], + ["Belgium (Kingdom of)",3607], + ["Nigeria (Federal Republic of)",3600], + ["Vietnam (Socialist Republic of)",3364], + ["Mozambique (Republic of)",3249], + ["Zimbabwe (Republic of)",3136], + ["Netherlands (Kingdom of the)",3055], + ["Uruguay (Oriental Republic of)",2993], + ["Bolivia (Plurinational State of)",2866], + ["Bangladesh (People's Republic of)",2835], + ["Malaysia",2783], + ["Angola (Republic of)",2761], + ["Syrian Arab Republic",2750], + ["Tanzania (United Republic of)",2722], + ["Croatia (Republic of)",2604], + ["Kenya (Republic of)",2541], + ["Namibia (Republic of)",2382], + ["Greece (Hellenic Republic)",2240], + ["Ethiopia (Federal Democratic Republic of)",2185], + ["Tunisia (Republic of)",2165], + ["Morocco (Kingdom of)",2109], + ["Azerbaijan (Republic of)",2068], + ["Iraq (Republic of)",2032], + ["Peru (Republic of)",2020], + ["Denmark (Kingdom of)",1987], + ["Ireland",1931], + ["Lithuania (Republic of)",1910], + ["Latvia (Republic of)",1860], + ["Mongolia",1810], + ["Taiwan",1782], + ["Colombia (Republic of)",1663], + ["Georgia",1576], + ["Sri Lanka (Democratic Socialist Republic of)",1508], + ["Israel (State of)",1486], + ["Uganda (Republic of)",1244], + ["Zambia (Republic of)",1237], + ["Slovenia (Republic of)",1209], + ["Estonia (Republic of)",1161], + ["Moldova (Republic of)",1151], + ["Bosnia and Herzegovina",1018], + ["Cameroon (Republic of)",977], + ["Ecuador (Republic of)",966], + ["Ghana (Republic of)",953], + ["Senegal (Republic of)",906], + ["Botswana (Republic of)",888], + ["Guatemala (Republic of)",885], + ["Madagascar (Republic of)",848], + ["Guinea (Republic of)",837], + ["Gabon (Gabonese Republic)",810], + ["Malawi (Republic of)",797], + ["Congo (Republic of the)",795], + ["Benin (Republic of)",758], + ["Mali (Republic of)",729], + ["Mauritania (Islamic Republic of)",728], + ["Armenia (Republic of)",703], + ["Honduras (Republic of)",699], + ["North Macedonia (Republic of)",683], + ["Cambodia (Kingdom of)",650], + ["Côte d'Ivoire (Republic of)",639], + ["Burkina Faso",622], + ["Jordan (Hashemite Kingdom of)",622], + ["Tajikistan (Republic of)",616], + ["Fiji (Republic of)",597], + ["Togo (Togolese Republic)",567.5], + ["El Salvador (Republic of)",562], + ["Philippines (Republic of the)",532.3], + ["Dominican Republic",517], + ["Liberia (Republic of)",490], + ["Lao (People's Democratic Republic)",424], + ["Kyrgyz Republic",417], + ["Panama (Republic of)",355], + ["Venezuela (Bolivarian Republic of)",336], + ["Albania (Republic of)",334], + ["Eritrea (State of)",306], + ["Eswatini (Kingdom of)",301], + ["Costa Rica (Republic of)",278], + ["Luxembourg (Grand Duchy of)",275], + ["Hong Kong (Special Administrative Region of China)",268], + ["United Arab Emirates",264], + ["Montenegro",250], + ["Singapore (Republic of)",240.1], + ["Suriname (Republic of)",166], + ["Guyana (Co-operative Republic of)",127], + ["Djibouti (Republic of)",92], + ["Sierra Leone (Republic of)",84], + ["Afghanistan (Islamic Republic of)",75], + ["Jamaica",65], + ["Saint Kitts and Nevis (Federation of)",58], + ["Nepal (Federal Democratic Republic of)",57], + ["Paraguay (Republic of)",38], + ["Puerto Rico (Commonwealth of)",17], + ["Brunei (Nation of the Abode of Peace)",13], + ["Macao (Special Administrative Region of China)",11.5], + ["Liechtenstein (Principality of)",9.5], + ["Nauru (Republic of)",3.9], + ["Monaco (Principality of)",1.7], + ["Lesotho (Kingdom of)",1.6], + ["Holy See (Vatican City State)",0.3] + ] +} diff --git a/data/global/infrastructure/rail-network-size/rail-network-population.json b/data/global/infrastructure/rail-network-size/rail-network-population.json new file mode 100644 index 0000000..1b49d64 --- /dev/null +++ b/data/global/infrastructure/rail-network-size/rail-network-population.json @@ -0,0 +1,169 @@ +{ + "metadata" : { + "name" : "Population Per Rail Network Route", + "description" : "Rail network size measured in kilometres", + "units" : "people/rail route", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","rail","trains","transport","population"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_rail_transport_network_size" + ] + }, + "data" : [ + ["country.name","rail.network.population"], + ["United States (of America)",2060], + ["China (People's Republic of)",9570], + ["Russian Federation",1678], + ["India (Republic of)",20424], + ["Canada",674], + ["Germany (Federal Republic of)",2145], + ["Argentina (Argentine Republic)",1117], + ["Australia (Commonwealth of)",742], + ["Brazil (Federative Republic of)",7225], + ["France (French Republic)",2374], + ["Japan",5451], + ["Mexico (United Mexican States)",6697], + ["South Africa (Republic of)",2577], + ["Poland (Republic of)",2001], + ["Ukraine",2140], + ["Iran (Islamic Republic of)",6816], + ["Italy (Italian Republic)",3614], + ["Spain (Kingdom of)",2920], + ["United Kingdom (of Great Britain & Northern Ireland)",4047], + ["Kazakhstan (Republic of)",1146], + ["Turkey (Republic of)",7821], + ["Myanmar (Union of)",12127], + ["Sweden (Kingdom of)",958], + ["Romania",1823], + ["Czech Republic",1106], + ["Pakistan (Islamic Republic of)",22759], + ["Hungary (Republic of)",1233], + ["Indonesia (Republic of)",27853], + ["Egypt (Arab Republic of)",13888], + ["Chile (Republic of)",2931], + ["Sudan (Republic of the)",5640], + ["Finland (Republic of)",929], + ["Korea (Democratic People's Republic of)",4595], + ["Saudi Arabia (Kingdom of)",6254], + ["Austria (Republic of)",1587], + ["Cuba (Republic of)",2215], + ["Belarus (Republic of)",1741], + ["Switzerland (Swiss Confederation)",1585], + ["Turkmenistan",1585], + ["Korea (Republic of)",10716], + ["Uzbekistan (Republic of)",6969], + ["Algeria (People's Democratic Republic of)",9061], + ["New Zealand",1070], + ["Congo (Democratic Republic of the)",16463], + ["Thailand (Kingdom of)",16084], + ["Bulgaria (Republic of)",1762], + ["Norway (Kingdom of)",1350], + ["Serbia (Republic of)",1866], + ["Slovakia (Slovak Republic)",1499], + ["Portugal (Portuguese Republic)",4049], + ["Belgium (Kingdom of)",3140], + ["Nigeria (Federal Republic of)",44904], + ["Vietnam (Socialist Republic of)",27765], + ["Mozambique (Republic of)",6604], + ["Zimbabwe (Republic of)",4190], + ["Netherlands (Kingdom of the)",5591], + ["Uruguay (Oriental Republic of)",1121], + ["Bolivia (Plurinational State of)",3638], + ["Bangladesh (People's Republic of)",53392], + ["Malaysia",11732], + ["Angola (Republic of)",6911], + ["Syrian Arab Republic",11078], + ["Tanzania (United Republic of)",15866], + ["Croatia (Republic of)",1595], + ["Kenya (Republic of)",17643], + ["Namibia (Republic of)",877], + ["Greece (Hellenic Republic)",4808], + ["Ethiopia (Federal Democratic Republic of)",150935], + ["Tunisia (Republic of)",5326], + ["Morocco (Kingdom of)",16946], + ["Azerbaijan (Republic of)",4666], + ["Iraq (Republic of)",15587], + ["Peru (Republic of)",14585], + ["Denmark (Kingdom of)",2893], + ["Ireland",2477], + ["Lithuania (Republic of)",1490], + ["Latvia (Republic of)",1048], + ["Mongolia",1560], + ["Taiwan",13638], + ["Colombia (Republic of)",27770], + ["Georgia",2360], + ["Sri Lanka (Democratic Socialist Republic of)",13696], + ["Israel (State of)",6313], + ["Uganda (Republic of)",122780], + ["Zambia (Republic of)",10547], + ["Slovenia (Republic of)",1709], + ["Estonia (Republic of)",1134], + ["Moldova (Republic of)",3084], + ["Bosnia and Herzegovina",3445], + ["Cameroon (Republic of)",23367], + ["Ecuador (Republic of)",14810], + ["Ghana (Republic of)",25429], + ["Senegal (Republic of)",16534], + ["Botswana (Republic of)",2488], + ["Guatemala (Republic of)",16228], + ["Madagascar (Republic of)",28573], + ["Guinea (Republic of)",11926], + ["Gabon (Gabonese Republic)",1858], + ["Malawi (Republic of)",18696], + ["Congo (Republic of the)",5086], + ["Benin (Republic of)",11581], + ["Mali (Republic of)",22606], + ["Mauritania (Islamic Republic of)",4753], + ["Armenia (Republic of)",4168], + ["Honduras (Republic of)",11753], + ["North Macedonia (Republic of)",3037], + ["Cambodia (Kingdom of)",24994], + ["Côte d'Ivoire (Republic of)",30889], + ["Burkina Faso",25291], + ["Jordan (Hashemite Kingdom of)",15598], + ["Tajikistan (Republic of)",11167], + ["Fiji (Republic of)",1442], + ["Togo (Togolese Republic)",10613], + ["El Salvador (Republic of)",10221], + ["Philippines (Republic of the)",211800], + ["Dominican Republic",18141], + ["Liberia (Republic of)",8151], + ["Lao (People's Democratic Republic)",17587], + ["Kyrgyz Republic",13446], + ["Panama (Republic of)",9594], + ["Venezuela (Bolivarian Republic of)",87458], + ["Albania (Republic of)",8602], + ["Eritrea (State of)",17170], + ["Eswatini (Kingdom of)",3940], + ["Costa Rica (Republic of)",16416], + ["Luxembourg (Grand Duchy of)",2148], + ["Hong Kong (Special Administrative Region of China)",33165], + ["United Arab Emirates",21893], + ["Montenegro",2490], + ["Singapore (Republic of)",24776], + ["Suriname (Republic of)",3163], + ["Guyana (Co-operative Republic of)",4197], + ["Djibouti (Republic of)",9203], + ["Sierra Leone (Republic of)",69857], + ["Afghanistan (Islamic Republic of)",418827], + ["Jamaica",9948], + ["Saint Kitts and Nevis (Federation of)",1040], + ["Nepal (Federal Democratic Republic of)",514035], + ["Paraguay (Republic of)",173056], + ["Puerto Rico (Commonwealth of)",38810], + ["Brunei (Nation of the Abode of Peace)",30692], + ["Macao (Special Administrative Region of China)",6200], + ["Liechtenstein (Principality of)",4017], + ["Nauru (Republic of)",2000], + ["Monaco (Principality of)",20588], + ["Lesotho (Kingdom of)",723667], + ["Holy See (Vatican City State)",3333] + ] +} diff --git a/data/global/infrastructure/road-network-size/road-network-controlled.json b/data/global/infrastructure/road-network-size/road-network-controlled.json new file mode 100644 index 0000000..db69802 --- /dev/null +++ b/data/global/infrastructure/road-network-size/road-network-controlled.json @@ -0,0 +1,215 @@ +{ + "metadata" : { + "name" : "Freeway Length", + "description" : "Freeay (controlled access) roads measured in kilometres", + "units" : "km", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","roads","transport"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_road_network_size" + ] + }, + "data" : [ + ["country.name","road.network.freeway"], + ["United States (of America)",95932], + ["India (Republic of)",3670.3], + ["China (People's Republic of)",161000], + ["Brazil (Federative Republic of)",11018], + ["Russian Federation",1675], + ["France (French Republic)",11671], + ["Canada",17041], + ["Australia (Commonwealth of)",1716], + ["Mexico (United Mexican States)",13540], + ["South Africa (Republic of)",1927], + ["Thailand (Kingdom of)",535.3], + ["Spain (Kingdom of)",16205], + ["Germany (Federal Republic of)",13183], + ["Sweden (Kingdom of)",2050], + ["Vietnam (Socialist Republic of)",1276], + ["Indonesia (Republic of)",2756], + ["Italy (Italian Republic)",6700], + ["Finland (Republic of)",863], + ["Turkey (Republic of)",3250], + ["United Kingdom (of Great Britain & Northern Ireland)",12826], + ["Poland (Republic of)",4935], + ["Bangladesh (People's Republic of)",55], + ["Japan",8795], + ["Argentina (Argentine Republic)",4423], + ["Pakistan (Islamic Republic of)",3076], + ["Malaysia",2001], + ["Iran (Islamic Republic of)",null], + ["Saudi Arabia (Kingdom of)",3891], + ["Philippines (Republic of the)",626], + ["Hungary (Republic of)",1481], + ["Uzbekistan (Republic of)",3993], + ["Colombia (Republic of)",2279], + ["Nigeria (Federal Republic of)",null], + ["Kenya (Republic of)",null], + ["Ukraine",17], + ["Myanmar (Union of)",null], + ["Congo (Democratic Republic of the)",null], + ["Uganda (Republic of)",null], + ["Peru (Republic of)",326], + ["Mali (Republic of)",null], + ["Netherlands (Kingdom of the)",3530], + ["Algeria (People's Democratic Republic of)",null], + ["Austria (Republic of)",2258], + ["Ethiopia (Federal Democratic Republic of)",null], + ["Belgium (Kingdom of)",1747], + ["Greece (Hellenic Republic)",2368], + ["Sri Lanka (Democratic Socialist Republic of)",null], + ["Korea (Republic of)",4767], + ["Ghana (Republic of)",null], + ["Ireland",2717], + ["Zimbabwe (Republic of)",null], + ["New Zealand",232], + ["Kazakhstan (Republic of)",null], + ["Tanzania (United Republic of)",null], + ["Romania",910], + ["Lithuania (Republic of)",309], + ["Switzerland (Swiss Confederation)",1544], + ["Uruguay (Oriental Republic of)",null], + ["Denmark (Kingdom of)",4130], + ["Zambia (Republic of)",null], + ["Czech Republic",1252], + ["Cambodia (Kingdom of)",null], + ["Ecuador (Republic of)",null], + ["Taiwan",1053], + ["Chad (Republic of)",null], + ["Lao (People's Democratic Republic)",null], + ["Slovakia (Slovak Republic)",null], + ["Slovenia (Republic of)",769], + ["Libya (State of)",null], + ["Afghanistan (Islamic Republic of)",null], + ["Kyrgyz Republic",null], + ["Botswana (Republic of)",null], + ["Madagascar (Republic of)",null], + ["Mozambique (Republic of)",null], + ["Sudan (Republic of the)",null], + ["Tajikistan (Republic of)",null], + ["Azerbaijan (Republic of)",null], + ["Nepal (Federal Democratic Republic of)",null], + ["Croatia (Republic of)",1416], + ["Puerto Rico (Commonwealth of)",454], + ["Korea (Democratic People's Republic of)",null], + ["Central African Republic",null], + ["Nicaragua (Republic of)",null], + ["Congo (Republic of the)",null], + ["Bosnia and Herzegovina",null], + ["Jamaica",44], + ["Lebanon (Lebanese Republic)",null], + ["Georgia",null], + ["Tunisia (Republic of)",null], + ["Cyprus (Republic of)",272], + ["Dominican Republic",null], + ["Israel (State of)",449], + ["Bulgaria (Republic of)",863], + ["Niger (Republic of)",null], + ["Guatemala (Republic of)",null], + ["Senegal (Republic of)",241], + ["Benin (Republic of)",null], + ["Eritrea (State of)",null], + ["Malawi (Republic of)",null], + ["Burkina Faso",null], + ["Somalia (Federal Republic of)",null], + ["Honduras (Republic of)",null], + ["Gabon (Gabonese Republic)",null], + ["North Macedonia (Republic of)",290], + ["Iceland (Republic of)",null], + ["Burundi (Republic of)",null], + ["Mauritania (Islamic Republic of)",null], + ["Bhutan (Kingdom of)",null], + ["Togo (Togolese Republic)",null], + ["Sierra Leone (Republic of)",null], + ["Liberia (Republic of)",null], + ["Moldova (Republic of)",null], + ["Papua New Guinea (Independent State of)",null], + ["El Salvador (Republic of)",null], + ["Montenegro",null], + ["Armenia (Republic of)",null], + ["Jordan (Hashemite Kingdom of)",null], + ["Qatar (State of)",null], + ["Timor-Leste (Democratic Republic of)",null], + ["Lesotho (Kingdom of)",null], + ["Kuwait (State of)",null], + ["New Caledonia",31.5], + ["Costa Rica (Republic of)",null], + ["Rwanda (Republic of)",null], + ["Palestine (State of)",null], + ["Guinea-Bissau (Republic of)",null], + ["Suriname (Republic of)",null], + ["Haiti (Republic of)",null], + ["Bahrain (Kingdom of)",null], + ["United Arab Emirates",253], + ["Guyana (Co-operative Republic of)",null], + ["Albania (Republic of)",null], + ["Eswatini (Kingdom of)",null], + ["Singapore (Republic of)",164], + ["Fiji (Republic of)",null], + ["Belize",null], + ["Gambia (Republic of the)",null], + ["Brunei (Nation of the Abode of Peace)",null], + ["Djibouti (Republic of)",null], + ["Equatorial Guinea (Republic of)",null], + ["Luxembourg (Grand Duchy of)",null], + ["Bahamas (Commonwealth of the)",null], + ["French Polynesia",null], + ["Mauritius (Republic of)",99], + ["Malta (Republic of)",null], + ["Hong Kong (Special Administrative Region of China)",null], + ["Marshall Islands (Republic of the)",null], + ["Kosovo (Republic of)",78], + ["Barbados",null], + ["Dominica (Commonwealth of)",null], + ["Solomon Islands",null], + ["Cape Verde (Republic of)",null], + ["São Tomé and Príncipe (Democratic Republic of)",null], + ["United States Virgin Islands",null], + ["Saint Lucia",null], + ["Antigua and Barbuda",null], + ["Samoa (Independent State of)",null], + ["Grenada",null], + ["Isle of Man",null], + ["Vanuatu (Republic of)",null], + ["Guam",null], + ["Faroe Islands",null], + ["Comoros (Union of the)",null], + ["Cayman Islands",null], + ["Tonga (Kingdom of)",null], + ["Kiribati (Republic of)",null], + ["Liechtenstein (Principality of)",null], + ["Jersey (Bailiwick of)",null], + ["Curaçao",null], + ["Northern Mariana Islands (Commonwealth of the)",null], + ["Seychelles (Republic of)",null], + ["Bermuda",null], + ["Falkland Islands (Malvinas)",null], + ["Macao (Special Administrative Region of China)",null], + ["Saint Kitts and Nevis (Federation of)",null], + ["Andorra (Principality of)",null], + ["Cook Islands",null], + ["San Marino (Republic of)",null], + ["American Samoa",null], + ["Niue",null], + ["British Virgin Islands",null], + ["Saint Helena",null], + ["Anguilla",null], + ["Christmas Island",null], + ["Turks and Caicos Islands",null], + ["Saint Pierre and Miquelon",null], + ["Maldives (Republic of)",null], + ["Norfolk Island",null], + ["Sint Maarten (Netherlands)",null], + ["Nauru (Republic of)",null], + ["Gibraltar",null], + ["Cocos (Keeling) Islands",null], + ["Tuvalu",null] + ] +} diff --git a/data/global/infrastructure/road-network-size/road-network-density.json b/data/global/infrastructure/road-network-size/road-network-density.json new file mode 100644 index 0000000..6c94f92 --- /dev/null +++ b/data/global/infrastructure/road-network-size/road-network-density.json @@ -0,0 +1,215 @@ +{ + "metadata" : { + "name" : "Road Network Density", + "description" : "Kilometers of road per 100 square kilometers of land area", + "units" : "km/100 km²", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","roads","transport","land","area"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_road_network_size" + ] + }, + "data" : [ + ["country.name","road.network.density"], + ["United States (of America)",69], + ["India (Republic of)",194], + ["China (People's Republic of)",54], + ["Brazil (Federative Republic of)",23], + ["Russian Federation",9], + ["France (French Republic)",191], + ["Canada",10], + ["Australia (Commonwealth of)",11], + ["Mexico (United Mexican States)",42], + ["South Africa (Republic of)",61], + ["Thailand (Kingdom of)",137], + ["Spain (Kingdom of)",135], + ["Germany (Federal Republic of)",180], + ["Sweden (Kingdom of)",127], + ["Vietnam (Socialist Republic of)",172], + ["Indonesia (Republic of)",28], + ["Italy (Italian Republic)",162], + ["Finland (Republic of)",135], + ["Turkey (Republic of)",56], + ["United Kingdom (of Great Britain & Northern Ireland)",175], + ["Poland (Republic of)",136], + ["Bangladesh (People's Republic of)",250], + ["Japan",93], + ["Argentina (Argentine Republic)",10], + ["Pakistan (Islamic Republic of)",33], + ["Malaysia",72], + ["Iran (Islamic Republic of)",14], + ["Saudi Arabia (Kingdom of)",10], + ["Philippines (Republic of the)",72], + ["Hungary (Republic of)",227], + ["Uzbekistan (Republic of)",47], + ["Colombia (Republic of)",18], + ["Nigeria (Federal Republic of)",21], + ["Kenya (Republic of)",30], + ["Ukraine",28], + ["Myanmar (Union of)",23], + ["Congo (Democratic Republic of the)",6], + ["Uganda (Republic of)",60], + ["Peru (Republic of)",11], + ["Mali (Republic of)",11], + ["Netherlands (Kingdom of the)",332], + ["Algeria (People's Democratic Republic of)",4], + ["Austria (Republic of)",151], + ["Ethiopia (Federal Democratic Republic of)",11], + ["Belgium (Kingdom of)",388], + ["Greece (Hellenic Republic)",89], + ["Sri Lanka (Democratic Socialist Republic of)",174], + ["Korea (Republic of)",111], + ["Ghana (Republic of)",46], + ["Ireland",142], + ["Zimbabwe (Republic of)",25], + ["New Zealand",36], + ["Kazakhstan (Republic of)",4], + ["Tanzania (United Republic of)",9], + ["Romania",36], + ["Lithuania (Republic of)",129], + ["Switzerland (Swiss Confederation)",204], + ["Uruguay (Oriental Republic of)",44], + ["Denmark (Kingdom of)",171], + ["Zambia (Republic of)",9], + ["Czech Republic",71], + ["Cambodia (Kingdom of)",30], + ["Ecuador (Republic of)",17], + ["Taiwan",null], + ["Chad (Republic of)",3], + ["Lao (People's Democratic Republic)",17], + ["Slovakia (Slovak Republic)",80], + ["Slovenia (Republic of)",192], + ["Libya (State of)",2], + ["Afghanistan (Islamic Republic of)",5], + ["Kyrgyz Republic",17], + ["Botswana (Republic of)",5], + ["Madagascar (Republic of)",5], + ["Mozambique (Republic of)",4], + ["Sudan (Republic of the)",null], + ["Tajikistan (Republic of)",21], + ["Azerbaijan (Republic of)",32], + ["Nepal (Federal Democratic Republic of)",19], + ["Croatia (Republic of)",48], + ["Puerto Rico (Commonwealth of)",303], + ["Korea (Democratic People's Republic of)",21], + ["Central African Republic",4], + ["Nicaragua (Republic of)",18], + ["Congo (Republic of the)",7], + ["Bosnia and Herzegovina",45], + ["Jamaica",201], + ["Lebanon (Lebanese Republic)",208], + ["Georgia",29], + ["Tunisia (Republic of)",12], + ["Cyprus (Republic of)",215], + ["Dominican Republic",41], + ["Israel (State of)",89], + ["Bulgaria (Republic of)",18], + ["Niger (Republic of)",1], + ["Guatemala (Republic of)",16], + ["Senegal (Republic of)",8], + ["Benin (Republic of)",14], + ["Eritrea (State of)",14], + ["Malawi (Republic of)",13], + ["Burkina Faso",6], + ["Somalia (Federal Republic of)",2], + ["Honduras (Republic of)",13], + ["Gabon (Gabonese Republic)",5], + ["North Macedonia (Republic of)",55], + ["Iceland (Republic of)",13], + ["Burundi (Republic of)",44], + ["Mauritania (Islamic Republic of)",1], + ["Bhutan (Kingdom of)",32], + ["Togo (Togolese Republic)",21], + ["Sierra Leone (Republic of)",16], + ["Liberia (Republic of)",10], + ["Moldova (Republic of)",28], + ["Papua New Guinea (Independent State of)",2], + ["El Salvador (Republic of)",43], + ["Montenegro",56], + ["Armenia (Republic of)",26], + ["Jordan (Hashemite Kingdom of)",8], + ["Qatar (State of)",61], + ["Timor-Leste (Democratic Republic of)",40], + ["Lesotho (Kingdom of)",20], + ["Kuwait (State of)",32], + ["New Caledonia",30], + ["Costa Rica (Republic of)",10], + ["Rwanda (Republic of)",18], + ["Palestine (State of)",78], + ["Guinea-Bissau (Republic of)",12], + ["Suriname (Republic of)",3], + ["Haiti (Republic of)",15], + ["Bahrain (Kingdom of)",537], + ["United Arab Emirates",5], + ["Guyana (Co-operative Republic of)",2], + ["Albania (Republic of)",14], + ["Eswatini (Kingdom of)",22], + ["Singapore (Republic of)",489], + ["Fiji (Republic of)",19], + ["Belize",14], + ["Gambia (Republic of the)",26], + ["Brunei (Nation of the Abode of Peace)",52], + ["Djibouti (Republic of)",12], + ["Equatorial Guinea (Republic of)",10], + ["Luxembourg (Grand Duchy of)",111], + ["Bahamas (Commonwealth of the)",19], + ["French Polynesia",65], + ["Mauritius (Republic of)",123], + ["Malta (Republic of)",713], + ["Hong Kong (Special Administrative Region of China)",191], + ["Marshall Islands (Republic of the)",1120], + ["Kosovo (Republic of)",null], + ["Barbados",395], + ["Dominica (Commonwealth of)",201], + ["Solomon Islands",5], + ["Cape Verde (Republic of)",33], + ["São Tomé and Príncipe (Democratic Republic of)",135], + ["United States Virgin Islands",363], + ["Saint Lucia",224], + ["Antigua and Barbuda",265], + ["Samoa (Independent State of)",40], + ["Grenada",328], + ["Isle of Man",571], + ["Vanuatu (Republic of)",9], + ["Guam",190], + ["Faroe Islands",69], + ["Comoros (Union of the)",39], + ["Cayman Islands",297], + ["Tonga (Kingdom of)",91], + ["Kiribati (Republic of)",92], + ["Liechtenstein (Principality of)",394], + ["Jersey (Bailiwick of)",497], + ["Curaçao",124], + ["Northern Mariana Islands (Commonwealth of the)",117], + ["Seychelles (Republic of)",115], + ["Bermuda",843], + ["Falkland Islands (Malvinas)",4], + ["Macao (Special Administrative Region of China)",1427], + ["Saint Kitts and Nevis (Federation of)",147], + ["Andorra (Principality of)",68], + ["Cook Islands",125], + ["San Marino (Republic of)",479], + ["American Samoa",121], + ["Niue",90], + ["British Virgin Islands",132], + ["Saint Helena",162], + ["Anguilla",192], + ["Christmas Island",null], + ["Turks and Caicos Islands",13], + ["Saint Pierre and Miquelon",48], + ["Maldives (Republic of)",31], + ["Norfolk Island",222], + ["Sint Maarten (Netherlands)",null], + ["Nauru (Republic of)",143], + ["Gibraltar",483], + ["Cocos (Keeling) Islands",null], + ["Tuvalu",31] + ] +} diff --git a/data/global/infrastructure/road-network-size/road-network-paved.json b/data/global/infrastructure/road-network-size/road-network-paved.json new file mode 100644 index 0000000..c1d55bc --- /dev/null +++ b/data/global/infrastructure/road-network-size/road-network-paved.json @@ -0,0 +1,215 @@ +{ + "metadata" : { + "name" : "Paved Roads", + "description" : "Paved roads measured in kilometres", + "units" : "km", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","roads","transport","development"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_road_network_size" + ] + }, + "data" : [ + ["country.name","road.network.paved"], + ["United States (of America)",4304715], + ["India (Republic of)",4440094], + ["China (People's Republic of)",4943000], + ["Brazil (Federative Republic of)",246000], + ["Russian Federation",927721], + ["France (French Republic)",1053215], + ["Canada",415600], + ["Australia (Commonwealth of)",145928], + ["Mexico (United Mexican States)",175526], + ["South Africa (Republic of)",158124], + ["Thailand (Kingdom of)",null], + ["Spain (Kingdom of)",683175], + ["Germany (Federal Republic of)",644480], + ["Sweden (Kingdom of)",140100], + ["Vietnam (Socialist Republic of)",148338], + ["Indonesia (Republic of)",283102], + ["Italy (Italian Republic)",487700], + ["Finland (Republic of)",78000], + ["Turkey (Republic of)",24082], + ["United Kingdom (of Great Britain & Northern Ireland)",424129], + ["Poland (Republic of)",291000], + ["Bangladesh (People's Republic of)",110311], + ["Japan",null], + ["Argentina (Argentine Republic)",117616], + ["Pakistan (Islamic Republic of)",185063], + ["Malaysia",116169], + ["Iran (Islamic Republic of)",195485], + ["Saudi Arabia (Kingdom of)",47529], + ["Philippines (Republic of the)",61093], + ["Hungary (Republic of)",77087], + ["Uzbekistan (Republic of)",120289], + ["Colombia (Republic of)",null], + ["Nigeria (Federal Republic of)",60000], + ["Kenya (Republic of)",14420], + ["Ukraine",166095], + ["Myanmar (Union of)",34700], + ["Congo (Democratic Republic of the)",3047], + ["Uganda (Republic of)",4257], + ["Peru (Republic of)",24593], + ["Mali (Republic of)",0], + ["Netherlands (Kingdom of the)",null], + ["Algeria (People's Democratic Republic of)",71656], + ["Austria (Republic of)",null], + ["Ethiopia (Federal Democratic Republic of)",0], + ["Belgium (Kingdom of)",118414], + ["Greece (Hellenic Republic)",117000], + ["Sri Lanka (Democratic Socialist Republic of)",16977], + ["Korea (Republic of)",92795], + ["Ghana (Republic of)",13787], + ["Ireland",99830], + ["Zimbabwe (Republic of)",18481], + ["New Zealand",64957], + ["Kazakhstan (Republic of)",13787], + ["Tanzania (United Republic of)",10025], + ["Romania",49873], + ["Lithuania (Republic of)",72297], + ["Switzerland (Swiss Confederation)",null], + ["Uruguay (Oriental Republic of)",7743], + ["Denmark (Kingdom of)",null], + ["Zambia (Republic of)",14888], + ["Czech Republic",55744], + ["Cambodia (Kingdom of)",12239], + ["Ecuador (Republic of)",8161], + ["Taiwan",42793], + ["Chad (Republic of)",25000], + ["Lao (People's Democratic Republic)",5415], + ["Slovakia (Slovak Republic)",56926], + ["Slovenia (Republic of)",38985], + ["Libya (State of)",34000], + ["Afghanistan (Islamic Republic of)",17903], + ["Kyrgyz Republic",0], + ["Botswana (Republic of)",9810], + ["Madagascar (Republic of)",0], + ["Mozambique (Republic of)",7365], + ["Sudan (Republic of the)",8000], + ["Tajikistan (Republic of)",0], + ["Azerbaijan (Republic of)",null], + ["Nepal (Federal Democratic Republic of)",11890], + ["Croatia (Republic of)",0], + ["Puerto Rico (Commonwealth of)",0], + ["Korea (Democratic People's Republic of)",724], + ["Central African Republic",700], + ["Nicaragua (Republic of)",3346], + ["Congo (Republic of the)",3111], + ["Bosnia and Herzegovina",19426], + ["Jamaica",16148], + ["Lebanon (Lebanese Republic)",0], + ["Georgia",0], + ["Tunisia (Republic of)",0], + ["Cyprus (Republic of)",12901], + ["Dominican Republic",9872], + ["Israel (State of)",19555], + ["Bulgaria (Republic of)",19235], + ["Niger (Republic of)",3912], + ["Guatemala (Republic of)",7489], + ["Senegal (Republic of)",6126], + ["Benin (Republic of)",1400], + ["Eritrea (State of)",1600], + ["Malawi (Republic of)",4074], + ["Burkina Faso",3642], + ["Somalia (Federal Republic of)",0], + ["Honduras (Republic of)",3367], + ["Gabon (Gabonese Republic)",900], + ["North Macedonia (Republic of)",9633], + ["Iceland (Republic of)",5647], + ["Burundi (Republic of)",1500], + ["Mauritania (Islamic Republic of)",3988], + ["Bhutan (Kingdom of)",437], + ["Togo (Togolese Republic)",1794], + ["Sierra Leone (Republic of)",1051], + ["Liberia (Republic of)",657], + ["Moldova (Republic of)",8835], + ["Papua New Guinea (Independent State of)",3000], + ["El Salvador (Republic of)",5341], + ["Montenegro",7141], + ["Armenia (Republic of)",3780], + ["Jordan (Hashemite Kingdom of)",7203], + ["Qatar (State of)",7039], + ["Timor-Leste (Democratic Republic of)",2600], + ["Lesotho (Kingdom of)",1069], + ["Kuwait (State of)",4887], + ["New Caledonia",0], + ["Costa Rica (Republic of)",0], + ["Rwanda (Republic of)",1207], + ["Palestine (State of)",4686], + ["Guinea-Bissau (Republic of)",453], + ["Suriname (Republic of)",1119], + ["Haiti (Republic of)",768], + ["Bahrain (Kingdom of)",3392], + ["United Arab Emirates",4080], + ["Guyana (Co-operative Republic of)",799], + ["Albania (Republic of)",0], + ["Eswatini (Kingdom of)",0], + ["Singapore (Republic of)",3500], + ["Fiji (Republic of)",1686], + ["Belize",601], + ["Gambia (Republic of the)",518], + ["Brunei (Nation of the Abode of Peace)",2559], + ["Djibouti (Republic of)",0], + ["Equatorial Guinea (Republic of)",0], + ["Luxembourg (Grand Duchy of)",0], + ["Bahamas (Commonwealth of the)",1620], + ["French Polynesia",1735], + ["Mauritius (Republic of)",2379], + ["Malta (Republic of)",1973], + ["Hong Kong (Special Administrative Region of China)",2107], + ["Marshall Islands (Republic of the)",75], + ["Kosovo (Republic of)",1921], + ["Barbados",1700], + ["Dominica (Commonwealth of)",762], + ["Solomon Islands",34], + ["Cape Verde (Republic of)",932], + ["São Tomé and Príncipe (Democratic Republic of)",230], + ["United States Virgin Islands",0], + ["Saint Lucia",847], + ["Antigua and Barbuda",386], + ["Samoa (Independent State of)",0], + ["Grenada",902], + ["Isle of Man",500], + ["Vanuatu (Republic of)",256], + ["Guam",0], + ["Faroe Islands",500], + ["Comoros (Union of the)",673], + ["Cayman Islands",785], + ["Tonga (Kingdom of)",184], + ["Kiribati (Republic of)",0], + ["Liechtenstein (Principality of)",0], + ["Jersey (Bailiwick of)",0], + ["Curaçao",0], + ["Northern Mariana Islands (Commonwealth of the)",0], + ["Seychelles (Republic of)",514], + ["Bermuda",447], + ["Falkland Islands (Malvinas)",50], + ["Macao (Special Administrative Region of China)",428], + ["Saint Kitts and Nevis (Federation of)",163], + ["Andorra (Principality of)",0], + ["Cook Islands",207], + ["San Marino (Republic of)",292], + ["American Samoa",0], + ["Niue",0], + ["British Virgin Islands",0], + ["Saint Helena",0], + ["Anguilla",0], + ["Christmas Island",0], + ["Turks and Caicos Islands",0], + ["Saint Pierre and Miquelon",0], + ["Maldives (Republic of)",0], + ["Norfolk Island",0], + ["Sint Maarten (Netherlands)",0], + ["Nauru (Republic of)",24], + ["Gibraltar",0], + ["Cocos (Keeling) Islands",0], + ["Tuvalu",0] + ] +} diff --git a/data/global/infrastructure/road-network-size/road-network-total.json b/data/global/infrastructure/road-network-size/road-network-total.json new file mode 100644 index 0000000..326700b --- /dev/null +++ b/data/global/infrastructure/road-network-size/road-network-total.json @@ -0,0 +1,215 @@ +{ + "metadata" : { + "name" : "Road Network Size", + "description" : "Total oad network size measured in kilometres", + "units" : "km", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","roads","transport"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_road_network_size" + ] + }, + "data" : [ + ["country.name","road.network.total"], + ["United States (of America)",6803479], + ["India (Republic of)",6371847], + ["China (People's Republic of)",5198000], + ["Brazil (Federative Republic of)",2000000], + ["Russian Federation",1529373], + ["France (French Republic)",1053215], + ["Canada",1042300], + ["Australia (Commonwealth of)",873573], + ["Mexico (United Mexican States)",817596], + ["South Africa (Republic of)",750000], + ["Thailand (Kingdom of)",702577], + ["Spain (Kingdom of)",683175], + ["Germany (Federal Republic of)",644480], + ["Sweden (Kingdom of)",573134], + ["Vietnam (Socialist Republic of)",570448], + ["Indonesia (Republic of)",544474], + ["Italy (Italian Republic)",487700], + ["Finland (Republic of)",454000], + ["Turkey (Republic of)",438633], + ["United Kingdom (of Great Britain & Northern Ireland)",424129], + ["Poland (Republic of)",423997], + ["Bangladesh (People's Republic of)",369105], + ["Japan",351562], + ["Argentina (Argentine Republic)",281290], + ["Pakistan (Islamic Republic of)",263775], + ["Malaysia",238823], + ["Iran (Islamic Republic of)",223485], + ["Saudi Arabia (Kingdom of)",221372], + ["Philippines (Republic of the)",216387], + ["Hungary (Republic of)",210791], + ["Uzbekistan (Republic of)",209496], + ["Colombia (Republic of)",206500], + ["Nigeria (Federal Republic of)",195000], + ["Kenya (Republic of)",177800], + ["Ukraine",169694], + ["Myanmar (Union of)",157000], + ["Congo (Democratic Republic of the)",152373], + ["Uganda (Republic of)",146000], + ["Peru (Republic of)",140672], + ["Mali (Republic of)",139107], + ["Netherlands (Kingdom of the)",139000], + ["Algeria (People's Democratic Republic of)",104000], + ["Austria (Republic of)",126400], + ["Ethiopia (Federal Democratic Republic of)",120171], + ["Belgium (Kingdom of)",118414], + ["Greece (Hellenic Republic)",117000], + ["Sri Lanka (Democratic Socialist Republic of)",114093], + ["Korea (Republic of)",110714], + ["Ghana (Republic of)",109515], + ["Ireland",99830], + ["Zimbabwe (Republic of)",97267], + ["New Zealand",96817], + ["Kazakhstan (Republic of)",95409], + ["Tanzania (United Republic of)",87581], + ["Romania",86494], + ["Lithuania (Republic of)",84166], + ["Switzerland (Swiss Confederation)",84114], + ["Uruguay (Oriental Republic of)",77732], + ["Denmark (Kingdom of)",73574], + ["Zambia (Republic of)",67671], + ["Czech Republic",55744], + ["Cambodia (Kingdom of)",55000], + ["Ecuador (Republic of)",43216], + ["Taiwan",41475], + ["Chad (Republic of)",40000], + ["Lao (People's Democratic Republic)",39586], + ["Slovakia (Slovak Republic)",38985], + ["Slovenia (Republic of)",38985], + ["Libya (State of)",37000], + ["Afghanistan (Islamic Republic of)",34903], + ["Kyrgyz Republic",34000], + ["Botswana (Republic of)",31747], + ["Madagascar (Republic of)",31640], + ["Mozambique (Republic of)",31083], + ["Sudan (Republic of the)",31000], + ["Tajikistan (Republic of)",30000], + ["Azerbaijan (Republic of)",29000], + ["Nepal (Federal Democratic Republic of)",27990], + ["Croatia (Republic of)",26958], + ["Puerto Rico (Commonwealth of)",26862], + ["Korea (Democratic People's Republic of)",25554], + ["Central African Republic",24000], + ["Nicaragua (Republic of)",23897], + ["Congo (Republic of the)",23324], + ["Bosnia and Herzegovina",22926], + ["Jamaica",22121], + ["Lebanon (Lebanese Republic)",21705], + ["Georgia",20295], + ["Tunisia (Republic of)",20000], + ["Cyprus (Republic of)",19901], + ["Dominican Republic",19705], + ["Israel (State of)",19555], + ["Bulgaria (Republic of)",19512], + ["Niger (Republic of)",18949], + ["Guatemala (Republic of)",17621], + ["Senegal (Republic of)",16665], + ["Benin (Republic of)",16000], + ["Eritrea (State of)",16000], + ["Malawi (Republic of)",15452], + ["Burkina Faso",15304], + ["Somalia (Federal Republic of)",15000], + ["Honduras (Republic of)",14742], + ["Gabon (Gabonese Republic)",14300], + ["North Macedonia (Republic of)",14182], + ["Iceland (Republic of)",12898], + ["Burundi (Republic of)",12322], + ["Mauritania (Islamic Republic of)",12253], + ["Bhutan (Kingdom of)",12205], + ["Togo (Togolese Republic)",11734], + ["Sierra Leone (Republic of)",11700], + ["Liberia (Republic of)",10600], + ["Moldova (Republic of)",9352], + ["Papua New Guinea (Independent State of)",9349], + ["El Salvador (Republic of)",9012], + ["Montenegro",7762], + ["Armenia (Republic of)",7700], + ["Jordan (Hashemite Kingdom of)",7203], + ["Qatar (State of)",7039], + ["Timor-Leste (Democratic Republic of)",6040], + ["Lesotho (Kingdom of)",5940], + ["Kuwait (State of)",5749], + ["New Caledonia",5622], + ["Costa Rica (Republic of)",5035], + ["Rwanda (Republic of)",4700], + ["Palestine (State of)",4686], + ["Guinea-Bissau (Republic of)",4400], + ["Suriname (Republic of)",4304], + ["Haiti (Republic of)",4266], + ["Bahrain (Kingdom of)",4122], + ["United Arab Emirates",4080], + ["Guyana (Co-operative Republic of)",3995], + ["Albania (Republic of)",3945], + ["Eswatini (Kingdom of)",3769], + ["Singapore (Republic of)",3500], + ["Fiji (Republic of)",3440], + ["Belize",3281], + ["Gambia (Republic of the)",2977], + ["Brunei (Nation of the Abode of Peace)",2976], + ["Djibouti (Republic of)",2893], + ["Equatorial Guinea (Republic of)",2880], + ["Luxembourg (Grand Duchy of)",2875], + ["Bahamas (Commonwealth of the)",2700], + ["French Polynesia",2590], + ["Mauritius (Republic of)",2428], + ["Malta (Republic of)",2254], + ["Hong Kong (Special Administrative Region of China)",2107], + ["Marshall Islands (Republic of the)",2028], + ["Kosovo (Republic of)",2012], + ["Barbados",1700], + ["Dominica (Commonwealth of)",1512], + ["Solomon Islands",1390], + ["Cape Verde (Republic of)",1350], + ["São Tomé and Príncipe (Democratic Republic of)",1300], + ["United States Virgin Islands",1260], + ["Saint Lucia",1210], + ["Antigua and Barbuda",1170], + ["Samoa (Independent State of)",1150], + ["Grenada",1127], + ["Isle of Man",1107], + ["Vanuatu (Republic of)",1070], + ["Guam",1045], + ["Faroe Islands",960], + ["Comoros (Union of the)",880], + ["Cayman Islands",785], + ["Tonga (Kingdom of)",680], + ["Kiribati (Republic of)",670], + ["Liechtenstein (Principality of)",630], + ["Jersey (Bailiwick of)",576], + ["Curaçao",550], + ["Northern Mariana Islands (Commonwealth of the)",536], + ["Seychelles (Republic of)",526], + ["Bermuda",447], + ["Falkland Islands (Malvinas)",440], + ["Macao (Special Administrative Region of China)",428], + ["Saint Kitts and Nevis (Federation of)",383], + ["Andorra (Principality of)",320], + ["Cook Islands",295], + ["San Marino (Republic of)",292], + ["American Samoa",241], + ["Niue",234], + ["British Virgin Islands",200], + ["Saint Helena",198], + ["Anguilla",175], + ["Christmas Island",140], + ["Turks and Caicos Islands",121], + ["Saint Pierre and Miquelon",117], + ["Maldives (Republic of)",93], + ["Norfolk Island",80], + ["Sint Maarten (Netherlands)",53], + ["Nauru (Republic of)",30], + ["Gibraltar",29], + ["Cocos (Keeling) Islands",22], + ["Tuvalu",8] + ] +} diff --git a/data/global/infrastructure/road-network-size/road-network-unpaved.json b/data/global/infrastructure/road-network-size/road-network-unpaved.json new file mode 100644 index 0000000..4158ed5 --- /dev/null +++ b/data/global/infrastructure/road-network-size/road-network-unpaved.json @@ -0,0 +1,215 @@ +{ + "metadata" : { + "name" : "Unpaved Roads", + "description" : "Unpaved road network size measured in kilometres", + "units" : "km", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "infrastructure", + "tags" : ["global","infrastructure","roads","transport","development"], + "authors" : [ + "Central Intelligence Agency (CIA) World Factbook" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_road_network_size" + ] + }, + "data" : [ + ["country.name","road.network.unpaved"], + ["United States (of America)",2581895], + ["India (Republic of)",1931751], + ["China (People's Republic of)",255000], + ["Brazil (Federative Republic of)",1754000], + ["Russian Federation",355666], + ["France (French Republic)",0], + ["Canada",626700], + ["Australia (Commonwealth of)",727645], + ["Mexico (United Mexican States)",641986], + ["South Africa (Republic of)",591876], + ["Thailand (Kingdom of)",null], + ["Spain (Kingdom of)",0], + ["Germany (Federal Republic of)",0], + ["Sweden (Kingdom of)",433034], + ["Vietnam (Socialist Republic of)",47130], + ["Indonesia (Republic of)",213505], + ["Italy (Italian Republic)",0], + ["Finland (Republic of)",350000], + ["Turkey (Republic of)",43251], + ["United Kingdom (of Great Britain & Northern Ireland)",0], + ["Poland (Republic of)",129000], + ["Bangladesh (People's Republic of)",258794], + ["Japan",null], + ["Argentina (Argentine Republic)",163674], + ["Pakistan (Islamic Republic of)",78712], + ["Malaysia",28234], + ["Iran (Islamic Republic of)",28000], + ["Saudi Arabia (Kingdom of)",173843], + ["Philippines (Republic of the)",155294], + ["Hungary (Republic of)",126514], + ["Uzbekistan (Republic of)",89207], + ["Colombia (Republic of)",null], + ["Nigeria (Federal Republic of)",135000], + ["Kenya (Republic of)",147032], + ["Ukraine",3599], + ["Myanmar (Union of)",122300], + ["Congo (Democratic Republic of the)",149326], + ["Uganda (Republic of)",16287], + ["Peru (Republic of)",116079], + ["Mali (Republic of)",139107], + ["Netherlands (Kingdom of the)",null], + ["Algeria (People's Democratic Republic of)",32344], + ["Austria (Republic of)",null], + ["Ethiopia (Federal Democratic Republic of)",120171], + ["Belgium (Kingdom of)",0], + ["Greece (Hellenic Republic)",0], + ["Sri Lanka (Democratic Socialist Republic of)",97116], + ["Korea (Republic of)",7633], + ["Ghana (Republic of)",95728], + ["Ireland",null], + ["Zimbabwe (Republic of)",78786], + ["New Zealand",31860], + ["Kazakhstan (Republic of)",95728], + ["Tanzania (United Republic of)",77556], + ["Romania",34312], + ["Lithuania (Republic of)",11869], + ["Switzerland (Swiss Confederation)",null], + ["Uruguay (Oriental Republic of)",69989], + ["Denmark (Kingdom of)",null], + ["Zambia (Republic of)",52783], + ["Czech Republic",null], + ["Cambodia (Kingdom of)",35024], + ["Ecuador (Republic of)",35055], + ["Taiwan",413], + ["Chad (Republic of)",15000], + ["Lao (People's Democratic Republic)",34171], + ["Slovakia (Slovak Republic)",765], + ["Slovenia (Republic of)",0], + ["Libya (State of)",3000], + ["Afghanistan (Islamic Republic of)",17000], + ["Kyrgyz Republic",34000], + ["Botswana (Republic of)",21937], + ["Madagascar (Republic of)",31640], + ["Mozambique (Republic of)",23718], + ["Sudan (Republic of the)",23000], + ["Tajikistan (Republic of)",30000], + ["Azerbaijan (Republic of)",null], + ["Nepal (Federal Democratic Republic of)",16100], + ["Croatia (Republic of)",26958], + ["Puerto Rico (Commonwealth of)",26862], + ["Korea (Democratic People's Republic of)",24830], + ["Central African Republic",23300], + ["Nicaragua (Republic of)",20551], + ["Congo (Republic of the)",20213], + ["Bosnia and Herzegovina",3500], + ["Jamaica",5973], + ["Lebanon (Lebanese Republic)",21705], + ["Georgia",20295], + ["Tunisia (Republic of)",20000], + ["Cyprus (Republic of)",8631], + ["Dominican Republic",9833], + ["Israel (State of)",0], + ["Bulgaria (Republic of)",277], + ["Niger (Republic of)",15037], + ["Guatemala (Republic of)",10132], + ["Senegal (Republic of)",10539], + ["Benin (Republic of)",14600], + ["Eritrea (State of)",14400], + ["Malawi (Republic of)",11378], + ["Burkina Faso",11662], + ["Somalia (Federal Republic of)",15000], + ["Honduras (Republic of)",11375], + ["Gabon (Gabonese Republic)",13400], + ["North Macedonia (Republic of)",4549], + ["Iceland (Republic of)",7251], + ["Burundi (Republic of)",10822], + ["Mauritania (Islamic Republic of)",8265], + ["Bhutan (Kingdom of)",11768], + ["Togo (Togolese Republic)",8157], + ["Sierra Leone (Republic of)",10650], + ["Liberia (Republic of)",9943], + ["Moldova (Republic of)",517], + ["Papua New Guinea (Independent State of)",6349], + ["El Salvador (Republic of)",3671], + ["Montenegro",621], + ["Armenia (Republic of)",3920], + ["Jordan (Hashemite Kingdom of)",0], + ["Qatar (State of)",0], + ["Timor-Leste (Democratic Republic of)",3440], + ["Lesotho (Kingdom of)",4871], + ["Kuwait (State of)",862], + ["New Caledonia",5622], + ["Costa Rica (Republic of)",5035], + ["Rwanda (Republic of)",3493], + ["Palestine (State of)",0], + ["Guinea-Bissau (Republic of)",3947], + ["Suriname (Republic of)",3185], + ["Haiti (Republic of)",3498], + ["Bahrain (Kingdom of)",730], + ["United Arab Emirates",0], + ["Guyana (Co-operative Republic of)",3196], + ["Albania (Republic of)",3945], + ["Eswatini (Kingdom of)",3769], + ["Singapore (Republic of)",0], + ["Fiji (Republic of)",1754], + ["Belize",2680], + ["Gambia (Republic of the)",2459], + ["Brunei (Nation of the Abode of Peace)",417], + ["Djibouti (Republic of)",2893], + ["Equatorial Guinea (Republic of)",2880], + ["Luxembourg (Grand Duchy of)",2875], + ["Bahamas (Commonwealth of the)",1080], + ["French Polynesia",855], + ["Mauritius (Republic of)",49], + ["Malta (Republic of)",281], + ["Hong Kong (Special Administrative Region of China)",0], + ["Marshall Islands (Republic of the)",1953], + ["Kosovo (Republic of)",91], + ["Barbados",0], + ["Dominica (Commonwealth of)",750], + ["Solomon Islands",1356], + ["Cape Verde (Republic of)",418], + ["São Tomé and Príncipe (Democratic Republic of)",1070], + ["United States Virgin Islands",1260], + ["Saint Lucia",363], + ["Antigua and Barbuda",784], + ["Samoa (Independent State of)",1150], + ["Grenada",225], + ["Isle of Man",0], + ["Vanuatu (Republic of)",814], + ["Guam",1045], + ["Faroe Islands",460], + ["Comoros (Union of the)",207], + ["Cayman Islands",0], + ["Tonga (Kingdom of)",496], + ["Kiribati (Republic of)",670], + ["Liechtenstein (Principality of)",630], + ["Jersey (Bailiwick of)",576], + ["Curaçao",550], + ["Northern Mariana Islands (Commonwealth of the)",536], + ["Seychelles (Republic of)",12], + ["Bermuda",225], + ["Falkland Islands (Malvinas)",390], + ["Macao (Special Administrative Region of China)",0], + ["Saint Kitts and Nevis (Federation of)",220], + ["Andorra (Principality of)",320], + ["Cook Islands",88], + ["San Marino (Republic of)",0], + ["American Samoa",241], + ["Niue",234], + ["British Virgin Islands",200], + ["Saint Helena",198], + ["Anguilla",175], + ["Christmas Island",140], + ["Turks and Caicos Islands",121], + ["Saint Pierre and Miquelon",117], + ["Maldives (Republic of)",93], + ["Norfolk Island",80], + ["Sint Maarten (Netherlands)",53], + ["Nauru (Republic of)",30], + ["Gibraltar",29], + ["Cocos (Keeling) Islands",22], + ["Tuvalu",8] + ] +} diff --git a/data/global/meta/countries.json b/data/global/meta/countries.json new file mode 100644 index 0000000..8e99607 --- /dev/null +++ b/data/global/meta/countries.json @@ -0,0 +1,305 @@ +{ + "metadata" : { + "name" : "Country Metadata", + "description" : "Metadata related to countries, continents and regions.", + "units" : "countries", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "meta", + "tags" : ["metadata","global","countries","continents","geography","regions"], + "authors" : [ + "Wikipedia" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_continent_(data_file)" + ] + }, + "data" : [ + ["country.name","country.name.short","country.name.alt","country.continent","country.region","country.subregion"], + ["Afghanistan (Islamic Republic of)","Afghanistan","Afghanistan","Asia","West Asia","Middle East"], + ["Akrotiri and Dhekelia (Sovereign Base Areas of)","Akrotiri and Dhekelia","Akrotiri and Dhekelia","Europe","West Asia","Middle East"], + ["Åland Islands","Åland Islands","Åland Islands","Europe","Northern Europe","Northern Europe"], + ["Albania (Republic of)","Albania","Albania","Europe","Southern Europe","Balkans"], + ["Algeria (People's Democratic Republic of)","Algeria","Algeria","Africa","Northern Africa","Northern Africa"], + ["American Samoa","American Samoa","American Samoa","Oceania","Pacific","Pacific"], + ["Andorra (Principality of)","Andorra","Andorra","Europe","Western Europe","Iberian"], + ["Angola (Republic of)","Angola","Angola","Africa","Southern Africa","Southern Africa"], + ["Anguilla","Anguilla","Anguilla","North America","Caribbean","Caribbean"], + ["Antarctica (the territory South of 60 deg S)","Antarctica","Antarctica","Antarctica","Antarctica","Antarctica"], + ["Antigua and Barbuda","Antigua and Barbuda","Antigua and Barbuda","North America","Caribbean","Caribbean"], + ["Argentina (Argentine Republic)","Argentina","Argentina","South America","Southern South America","Southern South America"], + ["Armenia (Republic of)","Armenia","Armenia","Asia","Western Asia","Caucasus"], + ["Aruba","Aruba","Aruba","North America","Caribbean","Caribbean"], + ["Australia (Commonwealth of)","Australia","Australia","Oceania","Australia and New Zealand","Australia and New Zealand"], + ["Austria (Republic of)","Austria","Austria","Europe","Central Europe","Central Europe"], + ["Azerbaijan (Republic of)","Azerbaijan","Azerbaijan","Asia","Western Asia","Caucasus"], + ["Bahamas (Commonwealth of the)","Bahamas","The Bahamas","North America","Caribbean","Caribbean"], + ["Bahrain (Kingdom of)","Bahrain","Bahrain","Asia","West Asia","Middle East"], + ["Bangladesh (People's Republic of)","Bangladesh","Bangladesh","Asia","South Asia","South Asia"], + ["Barbados","Barbados","Barbados","North America","Caribbean","Caribbean"], + ["Belarus (Republic of)","Belarus","Byelorussian SSR","Europe","Eastern Europe","Eastern Europe"], + ["Belgium (Kingdom of)","Belgium","Belgium","Europe","Western Europe","Western Europe"], + ["Belize","Belize","Belize","North America","Caribbean","Caribbean"], + ["Benin (Republic of)","Benin","Benin","Africa","West Africa","West Africa"], + ["Bermuda","Bermuda","Bermuda","North America","North Atlantic","North Atlantic"], + ["Bhutan (Kingdom of)","Bhutan","Bhutan","Asia","South Asia","South Asia"], + ["Bolivia (Plurinational State of)","Bolivia","Bolivia","South America","Central South America","Central South America"], + ["Bonaire (Sint Eustatius and Saba)","Bonaire","Bonaire","North America","Caribbean","Caribbean"], + ["Bosnia and Herzegovina","Bosnia and Herzegovina","Bosnia and Herzegovina","Europe","Southern Europe","Balkans"], + ["Botswana (Republic of)","Botswana","Botswana","Africa","Southern Africa","Southern Africa"], + ["Bouvet Island (Bouvetoya)","Bouvet Island","Bouvet Island","Antarctica","Antarctica","Antarctica"], + ["Brazil (Federative Republic of)","Brazil","Brazil","South America","Central South America","Central South America"], + ["British Antarctic Territory","British Antarctic Territory","British Antarctic Territory","Antarctica","Antarctica","Antarctica"], + ["British Indian Ocean Territory","British Indian Ocean Territory","British Indian Ocean Territory","Africa","Indian Ocean","Indian Ocean"], + ["British Virgin Islands","UK Virgin Islands","UK Virgin Islands","North America","Caribbean","Caribbean"], + ["Brunei (Nation of the Abode of Peace)","Brunei","Brunei","Asia","Southeast Asia","Southeast Asia"], + ["Bulgaria (Republic of)","Bulgaria","Bulgaria","Europe","Southeast Europe","Balkans"], + ["Burkina Faso","Burkina Faso","Burkina Faso","Africa","West Africa","West Africa"], + ["Burma","Burma","Myanmar","Asia","Southeast Asia","Southeast Asia"], + ["Burundi (Republic of)","Burundi","Burundi","Africa","East Africa","East Africa"], + ["Byelorussian SSR","Byelorussian SSR","Belarus","Europe","Eastern Europe","Eastern Europe"], + ["Cambodia (Kingdom of)","Cambodia","Cambodia","Asia","Southeast Asia","Southeast Asia"], + ["Cameroon (Republic of)","Cameroon","Cameroon","Africa","West Africa","West Africa"], + ["Canada","Canada","Canada","North America","North America","North America"], + ["Cape Verde (Republic of)","Cape Verde","Cape Verde","Africa","West Africa","West Africa"], + ["Cayman Islands","Cayman Islands","Cayman Islands","North America","Caribbean","Caribbean"], + ["Central African Republic","Central African Republic","Central African Republic","Africa","Central Africa","Central Africa"], + ["Chad (Republic of)","Chad","Chad","Africa","Central Africa","Central Africa"], + ["Chile (Republic of)","Chile","Chile","South America","Southern South America","Southern South America"], + ["China (People's Republic of)","China","China","Asia","East Asia","East Asia"], + ["Christmas Island","Christmas Island","Christmas Island","Asia","Indian Ocean","Indian Ocean"], + ["Cocos (Keeling) Islands","Cocos Islands","Cocos Islands","Asia","Indian Ocean","Indian Ocean"], + ["Colombia (Republic of)","Colombia","Colombia","South America","Northern South America","Northern South America"], + ["Comoros (Union of the)","Comoros","Comoros","Africa","Indian Ocean","Indian Ocean"], + ["Congo (Democratic Republic of the)","DR Congo","Zaire","Africa","Central Africa","Central Africa"], + ["Congo (Republic of the)","Congo","Congo","Africa","West Africa","West Africa"], + ["Cook Islands","Cook Islands","Cook Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Costa Rica (Republic of)","Costa Rica","Costa Rica","North America","Central America","Central America"], + ["Côte d'Ivoire (Republic of)","Côte d'Ivoire","Ivory Coast","Africa","West Africa","West Africa"], + ["Croatia (Republic of)","Croatia","Croatia","Europe","Southeast Europe","Balkans"], + ["Cuba (Republic of)","Cuba","Cuba","North America","Caribbean","Caribbean"], + ["Curaçao","Curaçao","Curaçao","North America","Caribbean","Caribbean"], + ["Cyprus (Republic of)","Cyprus","Cyprus","Europe","Southeast Europe","Middle East"], + ["Czech Republic","Czech Republic","Czechia","Europe","Central Europe","Central Europe"], + ["Czechoslovakia","Czechoslovakia","Czech Republic","Europe","Central Europe","Central Europe"], + ["Dahomey","Dahomey","Benin","Africa","West Africa","West Africa"], + ["Denmark (Kingdom of)","Denmark","Denmark","Europe","Northern Europe","Scandinavia"], + ["Disputed Territory","Disputed Territory","Disputed Territory","Oceania","Pacific Ocean","Pacific Ocean"], + ["Djibouti (Republic of)","Djibouti","Djibouti","Africa","Eastern Africa","Eastern Africa"], + ["Dominica (Commonwealth of)","Dominica","Dominica","North America","Caribbean","Caribbean"], + ["Dominican Republic","Dominican Republic","Dominican Republic","North America","Caribbean","Caribbean"], + ["Dronning Maud Land","Dronning Maud Land","Dronning Maud Land","Antarctica","Antarctica","Antarctica"], + ["Ecuador (Republic of)","Ecuador","Ecuador","South America","Northern South America","Northern South America"], + ["Egypt (Arab Republic of)","Egypt","Egypt","Africa","North Africa","Middle East"], + ["El Salvador (Republic of)","El Salvador","El Salvador","North America","Central America","Central America"], + ["Equatorial Guinea (Republic of)","Equatorial Guinea","Equatorial Guinea","Africa","West Africa","West Africa"], + ["Eritrea (State of)","Eritrea","Eritrea","Africa","Eastern Africa","Eastern Africa"], + ["Estonia (Republic of)","Estonia","Estonia","Europe","Northern Europe","Baltic"], + ["Eswatini (Kingdom of)","Eswatini","Swaziland","Africa","Southern Africa","Southern Africa"], + ["Ethiopia (Federal Democratic Republic of)","Ethiopia","Ethiopia","Africa","Eastern Africa","Eastern Africa"], + ["Falkland Islands (Malvinas)","Falkland Islands","Falkland Islands","South America","Southern Atlantic","Southern Atlantic"], + ["Faroe Islands","Faroe Islands","Faroe Islands","Europe","North Atlantic","North Atlantic"], + ["Fiji (Republic of)","Fiji","Fiji","Oceania","Pacific Ocean","Pacific Ocean"], + ["Finland (Republic of)","Finland","Finland","Europe","Northern Europe","Scandinavia"], + ["France (French Republic)","France","France","Europe","Western Europe","Iberian"], + ["France (Metropolitan)","France Metro","France","Europe","Western Europe","Iberian"], + ["France Afars and Issas","Afars and Issas","Djibouti","Africa","Eastern Africa","Eastern Africa"], + ["French Guiana","French Guiana","French Guiana","South America","Northern South America","Northern South America"], + ["French Polynesia","French Polynesia","French Polynesia","Oceania","Pacific Ocean","Pacific Ocean"], + ["French Southern and Antarctic Territories","French Southern and Antarctic Territories","French Southern and Antarctic Territories","Antarctica","Antarctica","Antarctica"], + ["French Southern Territories","French Southern Territories","French Southern Territories","Africa","Antarctica","Antarctica"], + ["Gabon (Gabonese Republic)","Gabon","Gabon","Africa","West Africa","West Africa"], + ["Gambia (Republic of the)","Gambia","Gambia","Africa","West Africa","West Africa"], + ["Georgia","Georgia","Georgia","Europe","East Asia","Caucasus"], + ["German Democratic Republic","German Democratic Republic","GDR","Europe","Central Europe","Central Europe"], + ["Germany (Federal Republic of)","Germany","Germany","Europe","Central Europe","Central Europe"], + ["Ghana (Republic of)","Ghana","Ghana","Africa","West Africa","West Africa"], + ["Gibraltar","Gibraltar","Gibraltar","Europe","Western Europe","Iberian"], + ["Gilbert Islands","Gilbert Islands","Gilbert Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Greece (Hellenic Republic)","Greece","Greece","Europe","Southestern Europ","Balkans"], + ["Greenland","Greenland","Greenland","North America","North Atlantic","North Atlantic"], + ["Grenada","Grenada","Grenada","North America","Caribbean","Caribbean"], + ["Guadeloupe","Guadeloupe","Guadeloupe","North America","Caribbean","Caribbean"], + ["Guam","Guam","Guam","Oceania","Pacific Ocean","Pacific Ocean"], + ["Guatemala (Republic of)","Guatemala","Guatemala","North America","Central America","Central America"], + ["Guernsey (Bailiwick of)","Guernsey","Guernsey","Europe","Northwestern Europe","Northwestern Europe"], + ["Guinea (Republic of)","Guinea","Guinea","Africa","West Africa","West Africa"], + ["Guinea-Bissau (Republic of)","Guinea-Bissau","Guinea-Bissau","Africa","West Africa","West Africa"], + ["Guyana (Co-operative Republic of)","Guyana","Guyana","South America","Northern South America","Northern South America"], + ["Haiti (Republic of)","Haiti","Haiti","North America","Caribbean","Caribbean"], + ["Heard Island and McDonald Islands","Heard Island and McDonald Islands","Heard Island and McDonald Islands","Antarctica","Antarctica","Antarctica"], + ["Holy See (Vatican City State)","Holy See","Vatican City","Europe","Southern Europe","Southern Europe"], + ["Honduras (Republic of)","Honduras","Honduras","North America","Central America","Central America"], + ["Hong Kong (Special Administrative Region of China)","Hong Kong","Hong Kong","Asia","East Asia","East Asia"], + ["Hungary (Republic of)","Hungary","Hungary","Europe","Central Europe","Central Europe"], + ["Iceland (Republic of)","Iceland","Iceland","Europe","North Atlantic","Scandinavia"], + ["India (Republic of)","India","India","Asia","South Asia","South Asia"], + ["Indonesia (Republic of)","Indonesia","Indonesia","Asia","Southeast Asia","Southeast Asia"], + ["Iran (Islamic Republic of)","Iran","Iran","Asia","West Asia","Middle East"], + ["Iraq (Republic of)","Iraq","Iraq","Asia","West Asia","Middle East"], + ["Ireland","Ireland","Ireland","Europe","Northwestern Europe","Northwestern Europe"], + ["Isle of Man","Isle of Man","Isle of Man","Europe","Northwestern Europe","Northwestern Europe"], + ["Israel (State of)","Israel","Israel","Asia","West Asia","Middle East"], + ["Italy (Italian Republic)","Italy","Italy","Europe","Southern Europe","Southern Europe"], + ["Jamaica","Jamaica","Jamaica","North America","Caribbean","Caribbean"], + ["Japan","Japan","Japan","Asia","East Asia","East Asia"], + ["Jersey (Bailiwick of)","Jersey","Jersey","Europe","Northwestern Europe","Northwestern Europe"], + ["Johnston Island","Johnston Island","Johnston Island","Oceania","Pacific Ocean","Pacific Ocean"], + ["Jordan (Hashemite Kingdom of)","Jordan","Jordan","Asia","West Asia","Middle East"], + ["Kazakhstan (Republic of)","Kazakhstan","Kazakhstan","Asia","Central Asia","Central Asia"], + ["Kenya (Republic of)","Kenya","Kenya","Africa","East Africa","East Africa"], + ["Kiribati (Republic of)","Kiribati","Kiribati","Oceania","Pacific Ocean","Pacific Ocean"], + ["Korea (Democratic People's Republic of)","North Korea","North Korea","Asia","East Asia","East Asia"], + ["Korea (Republic of)","South Korea","South Korea","Asia","East Asia","East Asia"], + ["Kosovo (Republic of)","Kosovo","Serbia","Europe","Southeast Europe","Balkans"], + ["Kuwait (State of)","Kuwait","Kuwait","Asia","West Asia","Middle East"], + ["Kyrgyz Republic","Kyrgyz Republic","Kyrgyzstan","Asia","Central Asia","Central Asia"], + ["Lao (People's Democratic Republic)","Laos","Laos","Asia","Southeast Asia","Southeast Asia"], + ["Latvia (Republic of)","Latvia","Latvia","Europe","Northern Europe","Baltic"], + ["Lebanon (Lebanese Republic)","Lebanon","Lebanon","Asia","West Asia","Middle East"], + ["Lesotho (Kingdom of)","Lesotho","Lesotho","Africa","Southern Africa","Southern Africa"], + ["Liberia (Republic of)","Liberia","Liberia","Africa","West Africa","West Africa"], + ["Libya (State of)","Libya","Libya","Africa","North Africa","North Africa"], + ["Liechtenstein (Principality of)","Liechtenstein","Liechtenstein","Europe","Central Europe","Central Europe"], + ["Lithuania (Republic of)","Lithuania","Lithuania","Europe","Northern Europe","Baltic"], + ["Luxembourg (Grand Duchy of)","Luxembourg","Luxembourg","Europe","Western Europe","Western Europe"], + ["Macao (Special Administrative Region of China)","Macao","Macao","Asia","East Asia","East Asia"], + ["Madagascar (Republic of)","Madagascar","Madagascar","Africa","Indian Ocean","Indian Ocean"], + ["Malawi (Republic of)","Malawi","Malawi","Africa","Southern Africa","Southern Africa"], + ["Malaysia","Malaysia","Malaysia","Asia","Southeast Asia","Southeast Asia"], + ["Maldives (Republic of)","Maldives","Maldives","Asia","Indian Ocean","Indian Ocean"], + ["Mali (Republic of)","Mali","Mali","Africa","West Africa","West Africa"], + ["Malta (Republic of)","Malta","Malta","Europe","Southern Europe","Southern Europe"], + ["Marshall Islands (Republic of the)","Marshall Islands","Marshall Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Martinique","Martinique","Martinique","North America","Caribbean","Caribbean"], + ["Mauritania (Islamic Republic of)","Mauritania","Mauritania","Africa","West Africa","West Africa"], + ["Mauritius (Republic of)","Mauritius","Mauritius","Africa","Indian Ocean","Indian Ocean"], + ["Mayotte (Department of)","Mayotte","Mayotte","Africa","Indian Ocean","Indian Ocean"], + ["Mexico (United Mexican States)","Mexico","Mexico","North America","North America","North America"], + ["Micronesia (Federated States of)","Micronesia","Micronesia","Oceania","Pacific Ocean","Pacific Ocean"], + ["Midway Island","Midway Island","Midway Island","Oceania","Pacific Ocean","Pacific Ocean"], + ["Moldova (Republic of)","Moldova","Moldova","Europe","Eastern Europe","Eastern Europe"], + ["Monaco (Principality of)","Monaco","Monaco","Europe","Western Europe","Western Europe"], + ["Mongolia","Mongolia","Mongolia","Asia","East Asia","East Asia"], + ["Montenegro","Montenegro","Montenegro","Europe","Southeast Europe","Balkans"], + ["Montserrat","Montserrat","Montserrat","North America","Caribbean","Caribbean"], + ["Morocco (Kingdom of)","Morocco","Morocco","Africa","North Africa","North Africa"], + ["Mozambique (Republic of)","Mozambique","Mozambique","Africa","Southern Africa","Southern Africa"], + ["Myanmar (Union of)","Myanmar","Burma","Asia","Southeast Asia","Southeast Asia"], + ["Namibia (Republic of)","Namibia","Namibia","Africa","Southern Africa","Southern Africa"], + ["Nauru (Republic of)","Nauru","Nauru","Oceania","Pacific Ocean","Pacific Ocean"], + ["Nepal (Federal Democratic Republic of)","Nepal","Nepal","Asia","South Asia","South Asia"], + ["Netherland Antilles","Netherland Antilles","Bonaire Curaçao and Sint Maarten","North America","Caribbean","Caribbean"], + ["Netherlands (Kingdom of the)","Netherlands","Netherlands","Europe","Northwestern Europe","Northwestern Europe"], + ["Neutral Zone","Neutral Zone","Iraq and Saudia Arabia","Asia","West Asia","Middle East"], + ["New Caledonia","New Caledonia","New Caledonia","Oceania","Pacific Ocean","Pacific Ocean"], + ["New Hebrides","New Hebrides","Vanuatu","Oceania","Pacific Ocean","Pacific Ocean"], + ["New Zealand","New Zealand","New Zealand","Oceania","Australia and New Zealand","Australia and New Zealand"], + ["Nicaragua (Republic of)","Nicaragua","Nicaragua","North America","Central America","Central America"], + ["Niger (Republic of)","Niger","Niger","Africa","West Africa","West Africa"], + ["Nigeria (Federal Republic of)","Nigeria","Nigeria","Africa","West Africa","West Africa"], + ["Niue","Niue","Niue","Oceania","Pacific Ocean","Pacific Ocean"], + ["Norfolk Island","Norfolk Island","Norfolk Island","Oceania","Australia and New Zealand","Australia and New Zealand"], + ["North Macedonia (Republic of)","North Macedonia","North Macedonia","Europe","Southeast Europe","Balkans"], + ["Northern Mariana Islands (Commonwealth of the)","Northern Mariana Islands","Northern Mariana Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Norway (Kingdom of)","Norway","Norway","Europe","Northern Europe","Scandinavia"], + ["Oman (Sultanate of)","Oman","Oman","Asia","West Asia","Middle East"], + ["Pacific Islands (Trust Territory)","Pacific Islands","Micronesia Mariana and Marshall Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Pakistan (Islamic Republic of)","Pakistan","Pakistan","Asia","East Asia","East Asia"], + ["Palau (Republic of)","Palau","Palau","Oceania","Pacific Ocean","Pacific Ocean"], + ["Palestine (State of)","Palestine","Palestine","Asia","West Asia","Middle East"], + ["Panama (Republic of)","Panama","Panama","North America","Central America","Central America"], + ["Panama Canal Zone","Panama Canal Zone","Panama Canal Zone","North America","Central America","Central America"], + ["Papua New Guinea (Independent State of)","Papua New Guinea","Papua New Guinea","Oceania","Pacific Ocean","Pacific Ocean"], + ["Paraguay (Republic of)","Paraguay","Paraguay","South America","Central South America","Central South America"], + ["Peru (Republic of)","Peru","Peru","South America","Western South America","Western South America"], + ["Philippines (Republic of the)","Philippines","Philippines","Asia","Southeast Asia","Southeast Asia"], + ["Pitcairn Islands","Pitcairn Islands","Pitcairn Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Poland (Republic of)","Poland","Poland","Europe","Central Europe","Central Europe"], + ["Portugal (Portuguese Republic)","Portugal","Portugal","Europe","Western Europe","Iberian"], + ["Puerto Rico (Commonwealth of)","Puerto Rico","Puerto Rico","North America","Caribbean","Caribbean"], + ["Qatar (State of)","Qatar","Qatar","Asia","West Asia","Middle East"], + ["Réunion","Réunion","Reunion","Africa","Indian Ocean","Indian Ocean"], + ["Romania","Romania","Romania","Europe","Southeast Europe","Southeast Europe"], + ["Russian Federation","Russia","Russia","Europe","Northern Asia","Caucasus"], + ["Rwanda (Republic of)","Rwanda","Rwanda","Africa","Central Africa","Central Africa"], + ["Sahrawi Arab Democratic Republic","Sahrawi","Western Sahara","Africa","West Africa","West Africa"], + ["Saint Barthelemy","Saint Barthelemy","Saint Barthelemy","North America","Caribbean","Caribbean"], + ["Saint Helena","Saint Helena","Saint Helena","Africa","South Atlantic","South Atlantic"], + ["Saint Kitts and Nevis (Federation of)","Saint Kitts and Nevis","Saint Kitts and Nevis","North America","Caribbean","Caribbean"], + ["Saint Lucia","Saint Lucia","Saint Lucia","North America","Caribbean","Caribbean"], + ["Saint Martin","Saint Martin","Saint Martin","North America","Caribbean","Caribbean"], + ["Saint Pierre and Miquelon","Saint Pierre and Miquelon","Saint Pierre and Miquelon","North America","North Atlantic","North Atlantic"], + ["Saint Vincent and the Grenadines","Saint Vincent and the Grenadines","Saint Vincent and the Grenadines","North America","Caribbean","Caribbean"], + ["Samoa (Independent State of)","Samoa","Samoa","Oceania","Pacific Ocean","Pacific Ocean"], + ["San Marino (Republic of)","San Marino","San Marino","Europe","Southern Europe","Southern Europe"], + ["São Tomé and Príncipe (Democratic Republic of)","São Tomé and Príncipe","São Tomé and Príncipe","Africa","West Africa","West Africa"], + ["Saudi Arabia (Kingdom of)","Saudi Arabia","Saudi Arabia","Asia","West Asia","Middle East"], + ["Senegal (Republic of)","Senegal","Senegal","Africa","West Africa","West Africa"], + ["Serbia (Republic of)","Serbia","Serbia","Europe","Southeast Europe","Balkans"], + ["Serbia and Montenegro","Serbia and Montenegro","Serbia and Montenegro","Europe","Southeast Europe","Balkans"], + ["Seychelles (Republic of)","Seychelles","Seychelles","Africa","Indian Ocean","Indian Ocean"], + ["Sierra Leone (Republic of)","Sierra Leone","Sierra Leone","Africa","West Africa","West Africa"], + ["Sikkim","Sikkim","India","Asia","South Asia","South Asia"], + ["Singapore (Republic of)","Singapore","Singapore","Asia","Southeast Asia","Southeast Asia"], + ["Sint Maarten (Netherlands)","Sint Maarten","Sint Maarten","North America","Caribbean","Caribbean"], + ["Slovakia (Slovak Republic)","Slovakia","Slovakia","Europe","Central Europe","Central Europe"], + ["Slovenia (Republic of)","Slovenia","Slovenia","Europe","Central Europe","Balkans"], + ["Solomon Islands","Solomon Islands","Solomon Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Somalia (Federal Republic of)","Somalia","Somalia","Africa","East Africa","East Africa"], + ["South Africa (Republic of)","South Africa","South Africa","Africa","Southern Africa","Southern Africa"], + ["South Georgia and the South Sandwich Islands","South Georgia and the South Sandwich Islands","South Georgia and the South Sandwich Islands","Antarctica","Antarctica","Antarctica"], + ["South Sudan (Republic of)","South Sudan","South Sudan","Africa","East Africa","East Africa"], + ["Southern Rhodesia","Sothern Rhodesia","Zimbabwe","Africa","Southern Africa","Southern Africa"], + ["Soviet Union","USSR","Russia","Asia","Northern Asia","Northern Asia"], + ["Spain (Kingdom of)","Spain","Spain","Europe","Western Europe","Iberian"], + ["Spratly Islands","Spratly Islands","Spratly Islands","Asia","East Asia","East Asia"], + ["Sri Lanka (Democratic Socialist Republic of)","Sri Lanka","Sri Lanka","Asia","South Asia","South Asia"], + ["Sudan (Republic of the)","Sudan","Sudan","Africa","East Africa","East Africa"], + ["Suriname (Republic of)","Suriname","Suriname","South America","Northern South America","Northern South America"], + ["Svalbard and Jan Mayen Islands","Svalbard and Jan Mayen Islands","Svalbard and Jan Mayen Islands","Europe","Arctic Ocean","Arctic Ocean"], + ["Sweden (Kingdom of)","Sweden","Sweden","Europe","Northern Europe","Scandinavia"], + ["Switzerland (Swiss Confederation)","Switzerland","Switzerland","Europe","Central Europe","Central Europe"], + ["Syrian Arab Republic","Syria","Syria","Asia","West Asia","Middle East"], + ["Taiwan","Taiwan","Taiwan","Asia","East Asia","East Asia"], + ["Tajikistan (Republic of)","Tajikistan","Tajikistan","Asia","Central Asia","Central Asia"], + ["Tanzania (United Republic of)","Tanzania","Tanzania","Africa","East Africa","East Africa"], + ["Thailand (Kingdom of)","Thailand","Thailand","Asia","Southeast Asia","Southeast Asia"], + ["Timor-Leste (Democratic Republic of)","Timor-Leste","East Timor","Asia","Southeast Asia","Southeast Asia"], + ["Togo (Togolese Republic)","Togo","Togo","Africa","West Africa","West Africa"], + ["Tokelau","Tokelau","Tokelau","Oceania","Pacific Ocean","Pacific Ocean"], + ["Tonga (Kingdom of)","Tonga","Tonga","Oceania","Pacific Ocean","Pacific Ocean"], + ["Trinidad and Tobago (Republic of)","Trinidad and Tobago","Trinidad and Tobago","North America","Caribbean","Caribbean"], + ["Tunisia (Republic of)","Tunisia","Tunisia","Africa","North Africa","North Africa"], + ["Turkey (Republic of)","Turkey","Turkey","Asia","West Asia","Middle East"], + ["Turkmenistan","Turkmenistan","Turkmenistan","Asia","Central Asia","Central Asia"], + ["Turks and Caicos Islands","Turks and Caicos Islands","Turks and Caicos Islands","North America","Caribbean","Caribbean"], + ["Tuvalu","Tuvalu","Tuvalu","Oceania","Pacific Ocean","Pacific Ocean"], + ["Uganda (Republic of)","Uganda","Uganda","Africa","East Africa","East Africa"], + ["Ukraine","Ukraine","Ukraine","Europe","Eastern Europe","Eastern Europe"], + ["United Arab Emirates","United Arab Emirates","United Arab Emirates","Asia","West Asia","Middle East"], + ["United Kingdom (of Great Britain & Northern Ireland)","United Kingdom","United Kingdom","Europe","Northwestern Europe","Northwestern Europe"], + ["United Nations Neutral Zone","United Nations Neutral Zone","Saudi Arabian Iraqi Neutral Zone","Asia","West Asia","Middle East"], + ["United States (of America)","United States","United States","North America","North America","North America"], + ["United States Minor Outlying Islands","United States Minor Outlying Islands","United States Minor Outlying Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["United States Miscellaneous Pacific Islands","United States Miscellaneous Pacific Islands","United States Minor Outlying Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["United States Virgin Islands","US Virgin Islands","US Virgin Islands","North America","Caribbean","Caribbean"], + ["Upper Volta","Upper Volta","Burkina Faso","North America","West Africa","West Africa"], + ["Uruguay (Oriental Republic of)","Uruguay","Uruguay","South America","Southern South America","Southern South America"], + ["Uzbekistan (Republic of)","Uzbekistan","Uzbekistan","Asia","Central Asia","Central Asia"], + ["Vanuatu (Republic of)","Vanuatu","Vanuatu","Oceania","Pacific Ocean","Pacific Ocean"], + ["Venezuela (Bolivarian Republic of)","Venezuela","Venezuela","South America","Northern South America","Northern South America"], + ["Viet Nam (Democratic Republic of)","Viet Nam","Vietnam","Asia","Southeast Asia","Southeast Asia"], + ["Vietnam (Socialist Republic of)","Vietnam","Viet Nam","Asia","Southeast Asia","Southeast Asia"], + ["Wake Island","Wake Island","United States Minor Outlying Islands","Oceania","Pacific Ocean","Pacific Ocean"], + ["Wallis and Futuna","Wallis and Futuna","Wallis and Futuna","Oceania","Pacific Ocean","Pacific Ocean"], + ["Yemen (Republic of)","Yemen","Yemen","Asia","West Asia","Middle East"], + ["Yemen (Democratic)","Yemen","Yemen","Asia","West Asia","Middle East"], + ["Yugoslavia","Yugoslavia","Serbia and Montenegro","Europe","Southeast Europe","Southeast Europe"], + ["Zaire","Zaire","DR Congo","Africa","Central Africa","Central Africa"], + ["Zambia (Republic of)","Zambia","Zambia","Africa","Southern Africa","Southern Africa"], + ["Zimbabwe (Republic of)","Zimbabwe","Zimbabwe","Africa","Southern Africa","Southern Africa"] + ] +} diff --git a/data/global/meta/country-codes.json b/data/global/meta/country-codes.json new file mode 100644 index 0000000..c1283a9 --- /dev/null +++ b/data/global/meta/country-codes.json @@ -0,0 +1,305 @@ +{ + "metadata" : { + "name" : "Country Metadata Codes", + "description" : "Additional country metadata including country codes.", + "units" : "countries", + "year" : "2023", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "meta", + "tags" : ["metadata","global","countries","codes"], + "authors" : [ + "Wikipedia" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_continent_(data_file)" + ] + }, + "data" : [ + ["country.name","country.continent.code","country.alpha.2","country.alpha.3","country.code"], + ["Afghanistan (Islamic Republic of)","AS","AF","AFG",4], + ["Akrotiri and Dhekelia (Sovereign Base Areas of)","","","",""], + ["Åland Islands","EU","AX","ALA",248], + ["Albania (Republic of)","EU","AL","ALB",8], + ["Algeria (People's Democratic Republic of)","AF","DZ","DZA",12], + ["American Samoa","OC","AS","ASM",16], + ["Andorra (Principality of)","EU","AD","AND",20], + ["Angola (Republic of)","AF","AO","AGO",24], + ["Anguilla","NA","AI","AIA",660], + ["Antarctica (the territory South of 60 deg S)","AN","AQ","ATA",10], + ["Antigua and Barbuda","NA","AG","ATG",28], + ["Argentina (Argentine Republic)","SA","AR","ARG",32], + ["Armenia (Republic of)","AS","AM","ARM",51], + ["Aruba","NA","AW","ABW",533], + ["Australia (Commonwealth of)","OC","AU","AUS",36], + ["Austria (Republic of)","EU","AT","AUT",40], + ["Azerbaijan (Republic of)","AS","AZ","AZE",31], + ["Bahamas (Commonwealth of the)","NA","BS","BHS",44], + ["Bahrain (Kingdom of)","AS","BH","BHR",48], + ["Bangladesh (People's Republic of)","AS","BD","BGD",50], + ["Barbados","NA","BB","BRB",52], + ["Belarus (Republic of)","EU","BY","BLR",112], + ["Belgium (Kingdom of)","EU","BE","BEL",56], + ["Belize","NA","BZ","BLZ",84], + ["Benin (Republic of)","AF","BJ","BEN",204], + ["Bermuda","NA","BM","BMU",60], + ["Bhutan (Kingdom of)","AS","BT","BTN",64], + ["Bolivia (Plurinational State of)","SA","BO","BOL",68], + ["Bonaire (Sint Eustatius and Saba)","NA","BQ","BES",535], + ["Bosnia and Herzegovina","EU","BA","BIH",70], + ["Botswana (Republic of)","AF","BW","BWA",72], + ["Bouvet Island (Bouvetoya)","AN","BV","BVT",74], + ["Brazil (Federative Republic of)","SA","BR","BRA",76], + ["British Antarctic Territory","AN","BQ","ATB",null], + ["British Indian Ocean Territory","AF","IO","IOT",86], + ["British Virgin Islands","NA","VG","VGB",92], + ["Brunei (Nation of the Abode of Peace)","AS","BN","BRN",96], + ["Bulgaria (Republic of)","EU","BG","BGR",100], + ["Burkina Faso","AF","BF","BFA",854], + ["Burma","AS","BU","BUR",104], + ["Burundi (Republic of)","AF","BI","BDI",108], + ["Byelorussian SSR","EU","BY","BYS",112], + ["Cambodia (Kingdom of)","AS","KH","KHM",116], + ["Cameroon (Republic of)","AF","CM","CMR",120], + ["Canada","NA","CA","CAN",124], + ["Cape Verde (Republic of)","AF","CV","CPV",132], + ["Cayman Islands","NA","KY","CYM",136], + ["Central African Republic","AF","CF","CAF",140], + ["Chad (Republic of)","AF","TD","TCD",148], + ["Chile (Republic of)","SA","CL","CHL",152], + ["China (People's Republic of)","AS","CN","CHN",156], + ["Christmas Island","AS","CX","CXR",162], + ["Cocos (Keeling) Islands","AS","CC","CCK",166], + ["Colombia (Republic of)","SA","CO","COL",170], + ["Comoros (Union of the)","AF","KM","COM",174], + ["Congo (Democratic Republic of the)","AF","CD","COD",180], + ["Congo (Republic of the)","AF","CG","COG",178], + ["Cook Islands","OC","CK","COK",184], + ["Costa Rica (Republic of)","NA","CR","CRI",188], + ["Côte d'Ivoire (Republic of)","AF","CI","CIV",384], + ["Croatia (Republic of)","EU","HR","HRV",191], + ["Cuba (Republic of)","NA","CU","CUB",192], + ["Curaçao","NA","CW","CUW",531], + ["Cyprus (Republic of)","EU","CY","CYP",196], + ["Czech Republic","EU","CZ","CZE",203], + ["Czechoslovakia","EU","CS","CSK",200], + ["Dahomey","AF","DY","DHY",null], + ["Denmark (Kingdom of)","EU","DK","DNK",208], + ["Disputed Territory","OC","XX",null,null], + ["Djibouti (Republic of)","AF","DJ","DJI",262], + ["Dominica (Commonwealth of)","NA","DM","DMA",212], + ["Dominican Republic","NA","DO","DOM",214], + ["Dronning Maud Land","AN","NQ","ATN",216], + ["Ecuador (Republic of)","SA","EC","ECU",218], + ["Egypt (Arab Republic of)","AF","EG","EGY",818], + ["El Salvador (Republic of)","NA","SV","SLV",222], + ["Equatorial Guinea (Republic of)","AF","GQ","GNQ",226], + ["Eritrea (State of)","AF","ER","ERI",232], + ["Estonia (Republic of)","EU","EE","EST",233], + ["Eswatini (Kingdom of)","AF","SZ","SWZ",748], + ["Ethiopia (Federal Democratic Republic of)","AF","ET","ETH",231], + ["Falkland Islands (Malvinas)","SA","FK","FLK",238], + ["Faroe Islands","EU","FO","FRO",234], + ["Fiji (Republic of)","OC","FJ","FJI",242], + ["Finland (Republic of)","EU","FI","FIN",246], + ["France (French Republic)","EU","FR","FRA",250], + ["France (Metropolitan)","EU","FX","FXX",249], + ["France Afars and Issas","AF","AI","AFI",null], + ["French Guiana","SA","GF","GUF",254], + ["French Polynesia","OC","PF","PYF",258], + ["French Southern and Antarctic Territories","AN","FQ","ATF",null], + ["French Southern Territories","AF","TF","ATF",260], + ["Gabon (Gabonese Republic)","AF","GA","GAB",266], + ["Gambia (Republic of the)","AF","GM","GMB",270], + ["Georgia","EU","GE","GEO",268], + ["German Democratic Republic","EU","DD","DDR",278], + ["Germany (Federal Republic of)","EU","DE","DEU",276], + ["Ghana (Republic of)","AF","GH","GHA",288], + ["Gibraltar","EU","GI","GIB",292], + ["Gilbert Islands","OC","GE","GEL",null], + ["Greece (Hellenic Republic)","EU","GR","GRC",300], + ["Greenland","NA","GL","GRL",304], + ["Grenada","NA","GD","GRD",308], + ["Guadeloupe","NA","GP","GLP",312], + ["Guam","OC","GU","GUM",316], + ["Guatemala (Republic of)","NA","GT","GTM",320], + ["Guernsey (Bailiwick of)","EU","GG","GGY",831], + ["Guinea (Republic of)","AF","GN","GIN",324], + ["Guinea-Bissau (Republic of)","AF","GW","GNB",624], + ["Guyana (Co-operative Republic of)","SA","GY","GUY",328], + ["Haiti (Republic of)","NA","HT","HTI",332], + ["Heard Island and McDonald Islands","AN","HM","HMD",334], + ["Holy See (Vatican City State)","EU","VA","VAT",336], + ["Honduras (Republic of)","NA","HN","HND",340], + ["Hong Kong (Special Administrative Region of China)","AS","HK","HKG",344], + ["Hungary (Republic of)","EU","HU","HUN",348], + ["Iceland (Republic of)","EU","IS","ISL",352], + ["India (Republic of)","AS","IN","IND",356], + ["Indonesia (Republic of)","AS","ID","IDN",360], + ["Iran (Islamic Republic of)","AS","IR","IRN",364], + ["Iraq (Republic of)","AS","IQ","IRQ",368], + ["Ireland","EU","IE","IRL",372], + ["Isle of Man","EU","IM","IMN",833], + ["Israel (State of)","AS","IL","ISR",376], + ["Italy (Italian Republic)","EU","IT","ITA",380], + ["Jamaica","NA","JM","JAM",388], + ["Japan","AS","JP","JPN",392], + ["Jersey (Bailiwick of)","EU","JE","JEY",832], + ["Johnston Island","OC","JT","JTN",396], + ["Jordan (Hashemite Kingdom of)","AS","JO","JOR",400], + ["Kazakhstan (Republic of)","AS","KZ","KAZ",398], + ["Kenya (Republic of)","AF","KE","KEN",404], + ["Kiribati (Republic of)","OC","KI","KIR",296], + ["Korea (Democratic People's Republic of)","AS","KP","PRK",408], + ["Korea (Republic of)","AS","KR","KOR",410], + ["Kosovo (Republic of)","EU","XK","XKX",""], + ["Kuwait (State of)","AS","KW","KWT",414], + ["Kyrgyz Republic","AS","KG","KGZ",417], + ["Lao (People's Democratic Republic)","AS","LA","LAO",418], + ["Latvia (Republic of)","EU","LV","LVA",428], + ["Lebanon (Lebanese Republic)","AS","LB","LBN",422], + ["Lesotho (Kingdom of)","AF","LS","LSO",426], + ["Liberia (Republic of)","AF","LR","LBR",430], + ["Libya (State of)","AF","LY","LBY",434], + ["Liechtenstein (Principality of)","EU","LI","LIE",438], + ["Lithuania (Republic of)","EU","LT","LTU",440], + ["Luxembourg (Grand Duchy of)","EU","LU","LUX",442], + ["Macao (Special Administrative Region of China)","AS","MO","MAC",446], + ["Madagascar (Republic of)","AF","MG","MDG",450], + ["Malawi (Republic of)","AF","MW","MWI",454], + ["Malaysia","AS","MY","MYS",458], + ["Maldives (Republic of)","AS","MV","MDV",462], + ["Mali (Republic of)","AF","ML","MLI",466], + ["Malta (Republic of)","EU","MT","MLT",470], + ["Marshall Islands (Republic of the)","OC","MH","MHL",584], + ["Martinique","NA","MQ","MTQ",474], + ["Mauritania (Islamic Republic of)","AF","MR","MRT",478], + ["Mauritius (Republic of)","AF","MU","MUS",480], + ["Mayotte (Department of)","AF","YT","MYT",175], + ["Mexico (United Mexican States)","NA","MX","MEX",484], + ["Micronesia (Federated States of)","OC","FM","FSM",583], + ["Midway Island","OC","MI","MID",488], + ["Moldova (Republic of)","EU","MD","MDA",498], + ["Monaco (Principality of)","EU","MC","MCO",492], + ["Mongolia","AS","MN","MNG",496], + ["Montenegro","EU","ME","MNE",499], + ["Montserrat","NA","MS","MSR",500], + ["Morocco (Kingdom of)","AF","MA","MAR",504], + ["Mozambique (Republic of)","AF","MZ","MOZ",508], + ["Myanmar (Union of)","AS","MM","MMR",104], + ["Namibia (Republic of)","AF","NA","NAM",516], + ["Nauru (Republic of)","OC","NR","NRU",520], + ["Nepal (Federal Democratic Republic of)","AS","NP","NPL",524], + ["Netherland Antilles","NA","AN","ANT",530], + ["Netherlands (Kingdom of the)","EU","NL","NLD",528], + ["Neutral Zone","AS","NT","NTZ",536], + ["New Caledonia","OC","NC","NCL",540], + ["New Hebrides","OC","NH","NHB",null], + ["New Zealand","OC","NZ","NZL",554], + ["Nicaragua (Republic of)","NA","NI","NIC",558], + ["Niger (Republic of)","AF","NE","NER",562], + ["Nigeria (Federal Republic of)","AF","NG","NGA",566], + ["Niue","OC","NU","NIU",570], + ["Norfolk Island","OC","NF","NFK",574], + ["North Macedonia (Republic of)","EU","MK","MKD",807], + ["Northern Mariana Islands (Commonwealth of the)","OC","MP","MNP",580], + ["Norway (Kingdom of)","EU","NO","NOR",578], + ["Oman (Sultanate of)","AS","OM","OMN",512], + ["Pacific Islands (Trust Territory)","OC","PC","PCI",582], + ["Pakistan (Islamic Republic of)","AS","PK","PAK",586], + ["Palau (Republic of)","OC","PW","PLW",585], + ["Palestine (State of)","AS","PS","PSE",275], + ["Panama (Republic of)","NA","PA","PAN",591], + ["Panama Canal Zone","NA","PZ","PCZ",null], + ["Papua New Guinea (Independent State of)","OC","PG","PNG",598], + ["Paraguay (Republic of)","SA","PY","PRY",600], + ["Peru (Republic of)","SA","PE","PER",604], + ["Philippines (Republic of the)","AS","PH","PHL",608], + ["Pitcairn Islands","OC","PN","PCN",612], + ["Poland (Republic of)","EU","PL","POL",616], + ["Portugal (Portuguese Republic)","EU","PT","PRT",620], + ["Puerto Rico (Commonwealth of)","NA","PR","PRI",630], + ["Qatar (State of)","AS","QA","QAT",634], + ["Réunion","AF","RE","REU",638], + ["Romania","EU","RO","ROU",642], + ["Russian Federation","EU","RU","RUS",643], + ["Rwanda (Republic of)","AF","RW","RWA",646], + ["Sahrawi Arab Democratic Republic","AF","EH","ESH",732], + ["Saint Barthelemy","NA","BL","BLM",652], + ["Saint Helena","AF","SH","SHN",654], + ["Saint Kitts and Nevis (Federation of)","NA","KN","KNA",659], + ["Saint Lucia","NA","LC","LCA",662], + ["Saint Martin","NA","MF","MAF",663], + ["Saint Pierre and Miquelon","NA","PM","SPM",666], + ["Saint Vincent and the Grenadines","NA","VC","VCT",670], + ["Samoa (Independent State of)","OC","WS","WSM",882], + ["San Marino (Republic of)","EU","SM","SMR",674], + ["São Tomé and Príncipe (Democratic Republic of)","AF","ST","STP",678], + ["Saudi Arabia (Kingdom of)","AS","SA","SAU",682], + ["Senegal (Republic of)","AF","SN","SEN",686], + ["Serbia (Republic of)","EU","RS","SRB",688], + ["Serbia and Montenegro","EU","CS","SCG",891], + ["Seychelles (Republic of)","AF","SC","SYC",690], + ["Sierra Leone (Republic of)","AF","SL","SLE",694], + ["Sikkim","AS","SK","SKM",null], + ["Singapore (Republic of)","AS","SG","SGP",702], + ["Sint Maarten (Netherlands)","NA","SX","SXM",534], + ["Slovakia (Slovak Republic)","EU","SK","SVK",703], + ["Slovenia (Republic of)","EU","SI","SVN",705], + ["Solomon Islands","OC","SB","SLB",90], + ["Somalia (Federal Republic of)","AF","SO","SOM",706], + ["South Africa (Republic of)","AF","ZA","ZAF",710], + ["South Georgia and the South Sandwich Islands","AN","GS","SGS",239], + ["South Sudan (Republic of)","AF","SS","SSD",728], + ["Southern Rhodesia","AF","RH","RHO",null], + ["Soviet Union","AS","SU","SUN",810], + ["Spain (Kingdom of)","EU","ES","ESP",724], + ["Spratly Islands","AS","XS",null,null], + ["Sri Lanka (Democratic Socialist Republic of)","AS","LK","LKA",144], + ["Sudan (Republic of the)","AF","SD","SDN",729], + ["Suriname (Republic of)","SA","SR","SUR",740], + ["Svalbard and Jan Mayen Islands","EU","SJ","SJM",744], + ["Sweden (Kingdom of)","EU","SE","SWE",752], + ["Switzerland (Swiss Confederation)","EU","CH","CHE",756], + ["Syrian Arab Republic","AS","SY","SYR",760], + ["Taiwan","AS","TW","TWN",158], + ["Tajikistan (Republic of)","AS","TJ","TJK",762], + ["Tanzania (United Republic of)","AF","TZ","TZA",834], + ["Thailand (Kingdom of)","AS","TH","THA",764], + ["Timor-Leste (Democratic Republic of)","AS","TL","TLS",626], + ["Togo (Togolese Republic)","AF","TG","TGO",768], + ["Tokelau","OC","TK","TKL",772], + ["Tonga (Kingdom of)","OC","TO","TON",776], + ["Trinidad and Tobago (Republic of)","NA","TT","TTO",780], + ["Tunisia (Republic of)","AF","TN","TUN",788], + ["Turkey (Republic of)","AS","TR","TUR",792], + ["Turkmenistan","AS","TM","TKM",795], + ["Turks and Caicos Islands","NA","TC","TCA",796], + ["Tuvalu","OC","TV","TUV",798], + ["Uganda (Republic of)","AF","UG","UGA",800], + ["Ukraine","EU","UA","UKR",804], + ["United Arab Emirates","AS","AE","ARE",784], + ["United Kingdom (of Great Britain & Northern Ireland)","EU","GB","GBR",826], + ["United Nations Neutral Zone","AS","XD",null,null], + ["United States (of America)","NA","US","USA",840], + ["United States Minor Outlying Islands","OC","UM","UMI",581], + ["United States Miscellaneous Pacific Islands","OC","PU","PUS",849], + ["United States Virgin Islands","NA","VI","VIR",850], + ["Upper Volta","NA","HV","HVO",854], + ["Uruguay (Oriental Republic of)","SA","UY","URY",858], + ["Uzbekistan (Republic of)","AS","UZ","UZB",860], + ["Vanuatu (Republic of)","OC","VU","VUT",548], + ["Venezuela (Bolivarian Republic of)","SA","VE","VEN",862], + ["Viet Nam (Democratic Republic of)","AS","VD","VDR",null], + ["Vietnam (Socialist Republic of)","AS","VN","VNM",704], + ["Wake Island","OC","WK","WAK",872], + ["Wallis and Futuna","OC","WF","WLF",876], + ["Yemen (Republic of)","AS","YE","YEM",887], + ["Yemen (Democratic)","OC","YD","YMD",720], + ["Yugoslavia","EU","YU","YUG",891], + ["Zaire","AF","ZR","ZAR",""], + ["Zambia (Republic of)","AF","ZM","ZMB",894], + ["Zimbabwe (Republic of)","AF","ZW","ZWE",716] + ] +} diff --git a/data/global/politics/corruption/corruption-barometer.json b/data/global/politics/corruption/corruption-barometer.json new file mode 100644 index 0000000..7e6391c --- /dev/null +++ b/data/global/politics/corruption/corruption-barometer.json @@ -0,0 +1,117 @@ +{ + "metadata" : { + "name" : "Global Corruption Barometer", + "description" : "Percentage of population who paid a bribe in 2013.", + "units" : "%", + "year" : "2013", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","corruption"], + "authors" : [ + "Transparency International" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Global_Corruption_Barometer" + ] + }, + "data" : [ + ["country.name","corruption.barometer"], + ["Australia (Commonwealth of)",0.01], + ["Denmark (Kingdom of)",0.01], + ["Finland (Republic of)",0.01], + ["Japan",0.01], + ["Spain (Kingdom of)",0.02], + ["Canada",0.03], + ["Korea (Republic of)",0.03], + ["Malaysia",0.03], + ["Maldives (Republic of)",0.03], + ["New Zealand",0.03], + ["Norway (Kingdom of)",0.03], + ["Uruguay (Oriental Republic of)",0.03], + ["Portugal (Portuguese Republic)",0.03], + ["Belgium (Kingdom of)",0.04], + ["Croatia (Republic of)",0.04], + ["Georgia",0.04], + ["Italy (Italian Republic)",0.05], + ["United Kingdom (of Great Britain & Northern Ireland)",0.05], + ["Estonia (Republic of)",0.06], + ["Slovenia (Republic of)",0.06], + ["Switzerland (Swiss Confederation)",0.07], + ["United States (of America)",0.07], + ["Bulgaria (Republic of)",0.08], + ["Chile (Republic of)",0.1], + ["El Salvador (Republic of)",0.12], + ["Hungary (Republic of)",0.12], + ["Israel (State of)",0.12], + ["Palestine (State of)",0.12], + ["Jamaica",0.12], + ["Philippines (Republic of the)",0.12], + ["Argentina (Argentine Republic)",0.13], + ["Rwanda (Republic of)",0.13], + ["Vanuatu (Republic of)",0.13], + ["Czech Republic",0.15], + ["Kosovo (Republic of)",0.16], + ["North Macedonia (Republic of)",0.17], + ["Romania",0.17], + ["Sudan (Republic of the)",0.17], + ["Armenia (Republic of)",0.18], + ["Thailand (Kingdom of)",0.18], + ["Tunisia (Republic of)",0.18], + ["Cyprus (Republic of)",0.19], + ["Latvia (Republic of)",0.19], + ["Sri Lanka (Democratic Socialist Republic of)",0.19], + ["Peru (Republic of)",0.2], + ["Slovakia (Slovak Republic)",0.21], + ["Turkey (Republic of)",0.21], + ["Colombia (Republic of)",0.22], + ["Greece (Hellenic Republic)",0.22], + ["Paraguay (Republic of)",0.25], + ["Lithuania (Republic of)",0.26], + ["Serbia (Republic of)",0.26], + ["Papua New Guinea (Independent State of)",0.27], + ["Venezuela (Bolivarian Republic of)",0.27], + ["Bosnia and Herzegovina",0.28], + ["Madagascar (Republic of)",0.28], + ["Iraq (Republic of)",0.29], + ["Moldova (Republic of)",0.29], + ["Vietnam (Socialist Republic of)",0.3], + ["Nepal (Federal Democratic Republic of)",0.31], + ["Mexico (United Mexican States)",0.33], + ["Kazakhstan (Republic of)",0.34], + ["Pakistan (Islamic Republic of)",0.34], + ["Solomon Islands",0.34], + ["Bolivia (Plurinational State of)",0.36], + ["Egypt (Arab Republic of)",0.36], + ["Indonesia (Republic of)",0.36], + ["Taiwan",0.36], + ["Ukraine",0.37], + ["Jordan (Hashemite Kingdom of)",0.37], + ["Bangladesh (People's Republic of)",0.39], + ["South Sudan (Republic of)",0.39], + ["Algeria (People's Democratic Republic of)",0.41], + ["Nigeria (Federal Republic of)",0.44], + ["Ethiopia (Federal Democratic Republic of)",0.44], + ["Mongolia",0.45], + ["Kyrgyz Republic",0.45], + ["Afghanistan (Islamic Republic of)",0.46], + ["Congo (Democratic Republic of the)",0.46], + ["South Africa (Republic of)",0.47], + ["Morocco (Kingdom of)",0.49], + ["India (Republic of)",0.54], + ["Ghana (Republic of)",0.54], + ["Tanzania (United Republic of)",0.56], + ["Cambodia (Kingdom of)",0.57], + ["Senegal (Republic of)",0.57], + ["Uganda (Republic of)",0.61], + ["Cameroon (Republic of)",0.62], + ["Libya (State of)",0.62], + ["Zimbabwe (Republic of)",0.62], + ["Mozambique (Republic of)",0.62], + ["Kenya (Republic of)",0.7], + ["Yemen (Republic of)",0.74], + ["Liberia (Republic of)",0.75], + ["Sierra Leone (Republic of)",0.84] + ] +} diff --git a/data/global/politics/corruption/corruption-perception-index.json b/data/global/politics/corruption/corruption-perception-index.json new file mode 100644 index 0000000..491dcc1 --- /dev/null +++ b/data/global/politics/corruption/corruption-perception-index.json @@ -0,0 +1,203 @@ +{ + "metadata" : { + "name" : "Corruption Perceptions Index (CPI)", + "description" : "The Corruption Perceptions Index (CPI) is an index which ranks countries by their perceived levels of public sector corruption as determined by expert assessments and opinion surveys.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","corruption"], + "authors" : [ + "Transparency International" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Corruption_Perceptions_Index" + ] + }, + "data" : [ + ["country.name","corruption.perception.index"], + ["Denmark (Kingdom of)",90], + ["New Zealand",87], + ["Finland (Republic of)",87], + ["Norway (Kingdom of)",84], + ["Singapore (Republic of)",84], + ["Sweden (Kingdom of)",83], + ["Switzerland (Swiss Confederation)",82], + ["Netherlands (Kingdom of the)",80], + ["Germany (Federal Republic of)",79], + ["Luxembourg (Grand Duchy of)",77], + ["Ireland",77], + ["Hong Kong (Special Administrative Region of China)",76], + ["Australia (Commonwealth of)",75], + ["Iceland (Republic of)",74], + ["Estonia (Republic of)",74], + ["Uruguay (Oriental Republic of)",74], + ["Canada",74], + ["Japan",73], + ["United Kingdom (of Great Britain & Northern Ireland)",73], + ["Belgium (Kingdom of)",73], + ["France (French Republic)",72], + ["Austria (Republic of)",71], + ["Seychelles (Republic of)",70], + ["United States (of America)",69], + ["Taiwan",68], + ["Bhutan (Kingdom of)",68], + ["Chile (Republic of)",67], + ["United Arab Emirates",67], + ["Barbados",65], + ["Bahamas (Commonwealth of the)",64], + ["Israel (State of)",63], + ["Korea (Republic of)",63], + ["Portugal (Portuguese Republic)",62], + ["Lithuania (Republic of)",62], + ["Spain (Kingdom of)",60], + ["Saint Vincent and the Grenadines",60], + ["Botswana (Republic of)",60], + ["Cape Verde (Republic of)",60], + ["Brunei (Nation of the Abode of Peace)",null], + ["Latvia (Republic of)",59], + ["Qatar (State of)",58], + ["Georgia",56], + ["Slovenia (Republic of)",56], + ["Italy (Italian Republic)",56], + ["Czech Republic",56], + ["Dominica (Commonwealth of)",55], + ["Saint Lucia",55], + ["Poland (Republic of)",55], + ["Costa Rica (Republic of)",54], + ["Fiji (Republic of)",53], + ["Slovakia (Slovak Republic)",53], + ["Cyprus (Republic of)",52], + ["Greece (Hellenic Republic)",52], + ["Grenada",52], + ["Malta (Republic of)",51], + ["Rwanda (Republic of)",51], + ["Saudi Arabia (Kingdom of)",51], + ["Mauritius (Republic of)",50], + ["Croatia (Republic of)",50], + ["Namibia (Republic of)",49], + ["Vanuatu (Republic of)",48], + ["Jordan (Hashemite Kingdom of)",47], + ["Malaysia",47], + ["Armenia (Republic of)",46], + ["Romania",46], + ["Cuba (Republic of)",45], + ["China (People's Republic of)",45], + ["São Tomé and Príncipe (Democratic Republic of)",45], + ["Montenegro",45], + ["Oman (Sultanate of)",44], + ["Jamaica",44], + ["Bahrain (Kingdom of)",44], + ["South Africa (Republic of)",43], + ["Ghana (Republic of)",43], + ["Senegal (Republic of)",43], + ["Benin (Republic of)",43], + ["Bulgaria (Republic of)",43], + ["Hungary (Republic of)",42], + ["Trinidad and Tobago (Republic of)",42], + ["Burkina Faso",42], + ["Solomon Islands",42], + ["Kuwait (State of)",42], + ["Timor-Leste (Democratic Republic of)",42], + ["Vietnam (Socialist Republic of)",42], + ["Kosovo (Republic of)",41], + ["Guyana (Co-operative Republic of)",40], + ["Suriname (Republic of)",40], + ["Maldives (Republic of)",40], + ["North Macedonia (Republic of)",40], + ["Tunisia (Republic of)",40], + ["India (Republic of)",40], + ["Moldova (Republic of)",39], + ["Belarus (Republic of)",39], + ["Colombia (Republic of)",39], + ["Morocco (Kingdom of)",38], + ["Ethiopia (Federal Democratic Republic of)",38], + ["Argentina (Argentine Republic)",38], + ["Tanzania (United Republic of)",38], + ["Brazil (Federative Republic of)",38], + ["Lesotho (Kingdom of)",37], + ["Côte d'Ivoire (Republic of)",37], + ["Thailand (Kingdom of)",36], + ["Albania (Republic of)",36], + ["Serbia (Republic of)",36], + ["Turkey (Republic of)",36], + ["Panama (Republic of)",36], + ["Sri Lanka (Democratic Socialist Republic of)",36], + ["Kazakhstan (Republic of)",36], + ["Ecuador (Republic of)",36], + ["Peru (Republic of)",36], + ["Sierra Leone (Republic of)",34], + ["Nepal (Federal Democratic Republic of)",34], + ["Malawi (Republic of)",34], + ["Bosnia and Herzegovina",34], + ["Indonesia (Republic of)",34], + ["Gambia (Republic of the)",34], + ["Zambia (Republic of)",33], + ["Philippines (Republic of the)",33], + ["Mongolia",33], + ["El Salvador (Republic of)",33], + ["Ukraine",33], + ["Algeria (People's Democratic Republic of)",33], + ["Angola (Republic of)",33], + ["Niger (Republic of)",32], + ["Kenya (Republic of)",32], + ["Dominican Republic",32], + ["Uzbekistan (Republic of)",31], + ["Bolivia (Plurinational State of)",31], + ["Mexico (United Mexican States)",31], + ["Lao (People's Democratic Republic)",31], + ["Papua New Guinea (Independent State of)",30], + ["Togo (Togolese Republic)",30], + ["Egypt (Arab Republic of)",30], + ["Eswatini (Kingdom of)",30], + ["Mauritania (Islamic Republic of)",30], + ["Djibouti (Republic of)",30], + ["Gabon (Gabonese Republic)",29], + ["Mali (Republic of)",28], + ["Russian Federation",28], + ["Paraguay (Republic of)",28], + ["Pakistan (Islamic Republic of)",27], + ["Kyrgyz Republic",27], + ["Uganda (Republic of)",26], + ["Mozambique (Republic of)",26], + ["Cameroon (Republic of)",26], + ["Liberia (Republic of)",26], + ["Madagascar (Republic of)",26], + ["Guinea (Republic of)",25], + ["Bangladesh (People's Republic of)",25], + ["Iran (Islamic Republic of)",25], + ["Nigeria (Federal Republic of)",24], + ["Central African Republic",24], + ["Afghanistan (Islamic Republic of)",24], + ["Cambodia (Kingdom of)",24], + ["Lebanon (Lebanese Republic)",24], + ["Guatemala (Republic of)",24], + ["Tajikistan (Republic of)",24], + ["Zimbabwe (Republic of)",23], + ["Azerbaijan (Republic of)",23], + ["Myanmar (Union of)",23], + ["Honduras (Republic of)",23], + ["Iraq (Republic of)",23], + ["Eritrea (State of)",22], + ["Sudan (Republic of the)",22], + ["Congo (Republic of the)",21], + ["Guinea-Bissau (Republic of)",21], + ["Congo (Democratic Republic of the)",20], + ["Turkmenistan",19], + ["Nicaragua (Republic of)",19], + ["Comoros (Union of the)",19], + ["Chad (Republic of)",19], + ["Libya (State of)",17], + ["Haiti (Republic of)",17], + ["Korea (Democratic People's Republic of)",17], + ["Equatorial Guinea (Republic of)",17], + ["Burundi (Republic of)",17], + ["Yemen (Republic of)",16], + ["Venezuela (Bolivarian Republic of)",14], + ["Syrian Arab Republic",13], + ["South Sudan (Republic of)",13], + ["Somalia (Federal Republic of)",12] + ] +} diff --git a/data/global/politics/governance/democracy-index/democracy-index-civil-liberties.json b/data/global/politics/governance/democracy-index/democracy-index-civil-liberties.json new file mode 100644 index 0000000..1a0e2dd --- /dev/null +++ b/data/global/politics/governance/democracy-index/democracy-index-civil-liberties.json @@ -0,0 +1,189 @@ +{ + "metadata" : { + "name" : "Democracy Index - Civil Liberties", + "description" : "The Democracy Index is based on 60 indicators measuring pluralism, civil liberties, and political culture.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","democracy","freedom"], + "authors" : [ + "Economist Intelligence Unit (EIU)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Democracy_Index" + ] + }, + "data" : [ + ["country.name","democracy.civil.liberties"], + ["Norway (Kingdom of)",9.41], + ["New Zealand",10], + ["Iceland (Republic of)",9.71], + ["Sweden (Kingdom of)",9.41], + ["Finland (Republic of)",9.71], + ["Denmark (Kingdom of)",9.41], + ["Switzerland (Swiss Confederation)",9.12], + ["Ireland",9.12], + ["Netherlands (Kingdom of the)",9.41], + ["Taiwan",9.41], + ["Uruguay (Oriental Republic of)",9.71], + ["Canada",8.82], + ["Luxembourg (Grand Duchy of)",9.71], + ["Germany (Federal Republic of)",9.41], + ["Australia (Commonwealth of)",9.71], + ["Japan",9.12], + ["Costa Rica (Republic of)",9.71], + ["United Kingdom (of Great Britain & Northern Ireland)",9.12], + ["Chile (Republic of)",9.12], + ["Austria (Republic of)",8.53], + ["Mauritius (Republic of)",8.82], + ["France (French Republic)",8.24], + ["Spain (Kingdom of)",8.53], + ["Korea (Republic of)",8.53], + ["Czech Republic",9.12], + ["Greece (Hellenic Republic)",8.53], + ["Estonia (Republic of)",8.82], + ["Portugal (Portuguese Republic)",9.12], + ["Israel (State of)",5.88], + ["United States (of America)",8.53], + ["Slovenia (Republic of)",8.53], + ["Botswana (Republic of)",8.53], + ["Malta (Republic of)",8.53], + ["Italy (Italian Republic)",7.35], + ["Cape Verde (Republic of)",8.53], + ["Belgium (Kingdom of)",8.53], + ["Cyprus (Republic of)",8.82], + ["Latvia (Republic of)",8.82], + ["Lithuania (Republic of)",8.82], + ["Malaysia",5.59], + ["Trinidad and Tobago (Republic of)",7.35], + ["Jamaica",8.53], + ["Slovakia (Slovak Republic)",8.53], + ["Timor-Leste (Democratic Republic of)",7.35], + ["South Africa (Republic of)",7.35], + ["India (Republic of)",6.18], + ["Poland (Republic of)",7.06], + ["Suriname (Republic of)",7.65], + ["Panama (Republic of)",7.94], + ["Argentina (Argentine Republic)",7.94], + ["Brazil (Federative Republic of)",7.65], + ["Philippines (Republic of the)",7.35], + ["Colombia (Republic of)",7.94], + ["Indonesia (Republic of)",6.18], + ["Thailand (Kingdom of)",5.88], + ["Hungary (Republic of)",6.76], + ["Bulgaria (Republic of)",7.65], + ["Namibia (Republic of)",7.94], + ["Croatia (Republic of)",6.76], + ["Sri Lanka (Democratic Socialist Republic of)",6.18], + ["Montenegro",7.06], + ["Romania",7.35], + ["Ghana (Republic of)",5.88], + ["Albania (Republic of)",7.35], + ["Dominican Republic",7.06], + ["Mongolia",5.88], + ["Guyana (Co-operative Republic of)",7.06], + ["Serbia (Republic of)",7.35], + ["Moldova (Republic of)",6.76], + ["Singapore (Republic of)",6.47], + ["Lesotho (Kingdom of)",6.47], + ["North Macedonia (Republic of)",7.35], + ["Bangladesh (People's Republic of)",5.29], + ["Papua New Guinea (Independent State of)",7.35], + ["Peru (Republic of)",6.47], + ["Malawi (Republic of)",6.47], + ["Paraguay (Republic of)",7.35], + ["Zambia (Republic of)",5.59], + ["Senegal (Republic of)",5.59], + ["Madagascar (Republic of)",4.71], + ["Ecuador (Republic of)",6.18], + ["Armenia (Republic of)",5.29], + ["Fiji (Republic of)",5], + ["Bhutan (Kingdom of)",4.71], + ["Tunisia (Republic of)",5], + ["Liberia (Republic of)",5.29], + ["Ukraine",4.41], + ["Hong Kong (Special Administrative Region of China)",7.94], + ["Mexico (United Mexican States)",5.59], + ["Georgia",5.59], + ["Honduras (Republic of)",5.59], + ["Tanzania (United Republic of)",4.41], + ["El Salvador (Republic of)",4.71], + ["Kenya (Republic of)",4.12], + ["Morocco (Kingdom of)",4.12], + ["Sierra Leone (Republic of)",5], + ["Bosnia and Herzegovina",5.88], + ["Guatemala (Republic of)",6.18], + ["Uganda (Republic of)",5], + ["Bolivia (Plurinational State of)",5.59], + ["Nepal (Federal Democratic Republic of)",5.29], + ["Gambia (Republic of the)",4.12], + ["Turkey (Republic of)",2.06], + ["Benin (Republic of)",4.41], + ["Nigeria (Federal Republic of)",4.41], + ["Côte d'Ivoire (Republic of)",3.82], + ["Pakistan (Islamic Republic of)",4.71], + ["Mauritania (Islamic Republic of)",4.41], + ["Angola (Republic of)",2.65], + ["Palestine (State of)",3.53], + ["Kuwait (State of)",3.24], + ["Niger (Republic of)",4.71], + ["Algeria (People's Democratic Republic of)",3.82], + ["Qatar (State of)",3.53], + ["Lebanon (Lebanese Republic)",4.12], + ["Kyrgyz Republic",4.71], + ["Mozambique (Republic of)",3.53], + ["Gabon (Gabonese Republic)",3.53], + ["Mali (Republic of)",3.82], + ["Comoros (Union of the)",3.53], + ["Cambodia (Kingdom of)",2.06], + ["Ethiopia (Federal Democratic Republic of)",1.47], + ["Jordan (Hashemite Kingdom of)",2.94], + ["Iraq (Republic of)",1.18], + ["Oman (Sultanate of)",3.82], + ["Rwanda (Republic of)",2.65], + ["Burkina Faso",3.53], + ["Kazakhstan (Republic of)",2.94], + ["Eswatini (Kingdom of)",3.24], + ["Togo (Togolese Republic)",2.94], + ["Egypt (Arab Republic of)",1.76], + ["Zimbabwe (Republic of)",3.24], + ["United Arab Emirates",2.35], + ["Azerbaijan (Republic of)",2.65], + ["Haiti (Republic of)",5], + ["Congo (Republic of the)",3.24], + ["Djibouti (Republic of)",2.35], + ["Vietnam (Socialist Republic of)",2.65], + ["Cuba (Republic of)",2.94], + ["Cameroon (Republic of)",2.06], + ["Guinea-Bissau (Republic of)",2.35], + ["Bahrain (Kingdom of)",1.76], + ["Nicaragua (Republic of)",2.65], + ["Sudan (Republic of the)",1.47], + ["Guinea (Republic of)",2.65], + ["Russian Federation",2.35], + ["Venezuela (Bolivarian Republic of)",2.65], + ["Burundi (Republic of)",1.76], + ["Uzbekistan (Republic of)",0.88], + ["Saudi Arabia (Kingdom of)",1.47], + ["Libya (State of)",2.65], + ["Eritrea (State of)",0.59], + ["Belarus (Republic of)",1.47], + ["Iran (Islamic Republic of)",1.47], + ["Yemen (Republic of)",0.88], + ["China (People's Republic of)",0.59], + ["Tajikistan (Republic of)",0.88], + ["Equatorial Guinea (Republic of)",1.47], + ["Lao (People's Democratic Republic)",0.59], + ["Chad (Republic of)",2.35], + ["Turkmenistan",0.29], + ["Congo (Democratic Republic of the)",0.88], + ["Syrian Arab Republic",0], + ["Central African Republic",2.35], + ["Korea (Democratic People's Republic of)",0], + ["Myanmar (Union of)",0], + ["Afghanistan (Islamic Republic of)",0.29] + ] +} diff --git a/data/global/politics/governance/democracy-index/democracy-index-functional-government.json b/data/global/politics/governance/democracy-index/democracy-index-functional-government.json new file mode 100644 index 0000000..44a5ddc --- /dev/null +++ b/data/global/politics/governance/democracy-index/democracy-index-functional-government.json @@ -0,0 +1,189 @@ +{ + "metadata" : { + "name" : "Democracy Index - Functional Government", + "description" : "The Democracy Index is based on 60 indicators measuring pluralism, civil liberties, and political culture.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","democracy","freedom"], + "authors" : [ + "Economist Intelligence Unit (EIU)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Democracy_Index" + ] + }, + "data" : [ + ["country.name","democracy.functional.government"], + ["Norway (Kingdom of)",9.64], + ["New Zealand",9.29], + ["Iceland (Republic of)",9.64], + ["Sweden (Kingdom of)",9.64], + ["Finland (Republic of)",9.64], + ["Denmark (Kingdom of)",9.29], + ["Switzerland (Swiss Confederation)",9.29], + ["Ireland",8.21], + ["Netherlands (Kingdom of the)",8.93], + ["Taiwan",9.64], + ["Uruguay (Oriental Republic of)",8.93], + ["Canada",8.57], + ["Luxembourg (Grand Duchy of)",8.93], + ["Germany (Federal Republic of)",8.57], + ["Australia (Commonwealth of)",8.57], + ["Japan",8.57], + ["Costa Rica (Republic of)",7.5], + ["United Kingdom (of Great Britain & Northern Ireland)",7.5], + ["Chile (Republic of)",8.21], + ["Austria (Republic of)",7.14], + ["Mauritius (Republic of)",7.86], + ["France (French Republic)",7.86], + ["Spain (Kingdom of)",7.5], + ["Korea (Republic of)",8.57], + ["Czech Republic",6.43], + ["Greece (Hellenic Republic)",7.14], + ["Estonia (Republic of)",7.86], + ["Portugal (Portuguese Republic)",7.5], + ["Israel (State of)",7.86], + ["United States (of America)",6.43], + ["Slovenia (Republic of)",7.14], + ["Botswana (Republic of)",6.79], + ["Malta (Republic of)",7.14], + ["Italy (Italian Republic)",6.79], + ["Cape Verde (Republic of)",7], + ["Belgium (Kingdom of)",8.21], + ["Cyprus (Republic of)",5.36], + ["Latvia (Republic of)",6.07], + ["Lithuania (Republic of)",6.43], + ["Malaysia",7.86], + ["Trinidad and Tobago (Republic of)",7.14], + ["Jamaica",7.14], + ["Slovakia (Slovak Republic)",6.07], + ["Timor-Leste (Democratic Republic of)",5.93], + ["South Africa (Republic of)",7.14], + ["India (Republic of)",7.5], + ["Poland (Republic of)",6.07], + ["Suriname (Republic of)",6.43], + ["Panama (Republic of)",6.07], + ["Argentina (Argentine Republic)",5], + ["Brazil (Federative Republic of)",5], + ["Philippines (Republic of the)",5], + ["Colombia (Republic of)",6.07], + ["Indonesia (Republic of)",7.86], + ["Thailand (Kingdom of)",6.07], + ["Hungary (Republic of)",6.79], + ["Bulgaria (Republic of)",5.36], + ["Namibia (Republic of)",5.36], + ["Croatia (Republic of)",6.07], + ["Sri Lanka (Democratic Socialist Republic of)",5.71], + ["Montenegro",6.79], + ["Romania",6.43], + ["Ghana (Republic of)",5], + ["Albania (Republic of)",6.43], + ["Dominican Republic",5.36], + ["Mongolia",5.36], + ["Guyana (Co-operative Republic of)",6.07], + ["Serbia (Republic of)",6.07], + ["Moldova (Republic of)",5.36], + ["Singapore (Republic of)",7.86], + ["Lesotho (Kingdom of)",4.14], + ["North Macedonia (Republic of)",6.07], + ["Bangladesh (People's Republic of)",6.07], + ["Papua New Guinea (Independent State of)",6.07], + ["Peru (Republic of)",5.71], + ["Malawi (Republic of)",4.29], + ["Paraguay (Republic of)",5.36], + ["Zambia (Republic of)",3.64], + ["Senegal (Republic of)",5.71], + ["Madagascar (Republic of)",3.57], + ["Ecuador (Republic of)",5], + ["Armenia (Republic of)",5.71], + ["Fiji (Republic of)",5], + ["Bhutan (Kingdom of)",5.93], + ["Tunisia (Republic of)",4.64], + ["Liberia (Republic of)",2.71], + ["Ukraine",2.71], + ["Hong Kong (Special Administrative Region of China)",3.29], + ["Mexico (United Mexican States)",4.64], + ["Georgia",3.57], + ["Honduras (Republic of)",3.93], + ["Tanzania (United Republic of)",5], + ["El Salvador (Republic of)",3.57], + ["Kenya (Republic of)",5.36], + ["Morocco (Kingdom of)",4.64], + ["Sierra Leone (Republic of)",2.86], + ["Bosnia and Herzegovina",4], + ["Guatemala (Republic of)",3.93], + ["Uganda (Republic of)",3.57], + ["Bolivia (Plurinational State of)",4.29], + ["Nepal (Federal Democratic Republic of)",5.36], + ["Gambia (Republic of the)",4.29], + ["Turkey (Republic of)",5], + ["Benin (Republic of)",5.71], + ["Nigeria (Federal Republic of)",3.93], + ["Côte d'Ivoire (Republic of)",2.86], + ["Pakistan (Islamic Republic of)",5], + ["Mauritania (Islamic Republic of)",3.57], + ["Angola (Republic of)",3.21], + ["Palestine (State of)",0.14], + ["Kuwait (State of)",3.93], + ["Niger (Republic of)",1.5], + ["Algeria (People's Democratic Republic of)",2.5], + ["Qatar (State of)",4.29], + ["Lebanon (Lebanese Republic)",0.79], + ["Kyrgyz Republic",1.5], + ["Mozambique (Republic of)",1.43], + ["Gabon (Gabonese Republic)",1.86], + ["Mali (Republic of)",0], + ["Comoros (Union of the)",2.21], + ["Cambodia (Kingdom of)",3.21], + ["Ethiopia (Federal Democratic Republic of)",2.86], + ["Jordan (Hashemite Kingdom of)",3.21], + ["Iraq (Republic of)",0], + ["Oman (Sultanate of)",3.93], + ["Rwanda (Republic of)",4.29], + ["Burkina Faso",2.5], + ["Kazakhstan (Republic of)",3.21], + ["Eswatini (Kingdom of)",2.5], + ["Togo (Togolese Republic)",2.14], + ["Egypt (Arab Republic of)",3.21], + ["Zimbabwe (Republic of)",2.5], + ["United Arab Emirates",4.29], + ["Azerbaijan (Republic of)",2.86], + ["Haiti (Republic of)",0], + ["Congo (Republic of the)",2.5], + ["Djibouti (Republic of)",1.29], + ["Vietnam (Socialist Republic of)",3.93], + ["Cuba (Republic of)",3.21], + ["Cameroon (Republic of)",2.14], + ["Guinea-Bissau (Republic of)",0], + ["Bahrain (Kingdom of)",2.71], + ["Nicaragua (Republic of)",2.14], + ["Sudan (Republic of the)",1.43], + ["Guinea (Republic of)",0.43], + ["Russian Federation",2.14], + ["Venezuela (Bolivarian Republic of)",1.07], + ["Burundi (Republic of)",0], + ["Uzbekistan (Republic of)",1.86], + ["Saudi Arabia (Kingdom of)",3.57], + ["Libya (State of)",0], + ["Eritrea (State of)",2.14], + ["Belarus (Republic of)",0.79], + ["Iran (Islamic Republic of)",2.5], + ["Yemen (Republic of)",0], + ["China (People's Republic of)",3.21], + ["Tajikistan (Republic of)",2.21], + ["Equatorial Guinea (Republic of)",0.43], + ["Lao (People's Democratic Republic)",2.86], + ["Chad (Republic of)",0], + ["Turkmenistan",0.79], + ["Congo (Democratic Republic of the)",0], + ["Syrian Arab Republic",0], + ["Central African Republic",0], + ["Korea (Democratic People's Republic of)",2.5], + ["Myanmar (Union of)",0], + ["Afghanistan (Islamic Republic of)",0.07] + ] +} diff --git a/data/global/politics/governance/democracy-index/democracy-index-pluralism.json b/data/global/politics/governance/democracy-index/democracy-index-pluralism.json new file mode 100644 index 0000000..a4fcc08 --- /dev/null +++ b/data/global/politics/governance/democracy-index/democracy-index-pluralism.json @@ -0,0 +1,189 @@ +{ + "metadata" : { + "name" : "Democracy Index - Pluralism", + "description" : "The Democracy Index is based on 60 indicators measuring pluralism, civil liberties, and political culture.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","democracy","freedom"], + "authors" : [ + "Economist Intelligence Unit (EIU)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Democracy_Index" + ] + }, + "data" : [ + ["country.name","democracy.pluralism"], + ["Norway (Kingdom of)",10], + ["New Zealand",10], + ["Iceland (Republic of)",10], + ["Sweden (Kingdom of)",9.58], + ["Finland (Republic of)",10], + ["Denmark (Kingdom of)",10], + ["Switzerland (Swiss Confederation)",9.58], + ["Ireland",10], + ["Netherlands (Kingdom of the)",9.58], + ["Taiwan",10], + ["Uruguay (Oriental Republic of)",10], + ["Canada",10], + ["Luxembourg (Grand Duchy of)",10], + ["Germany (Federal Republic of)",9.58], + ["Australia (Commonwealth of)",10], + ["Japan",9.17], + ["Costa Rica (Republic of)",9.58], + ["United Kingdom (of Great Britain & Northern Ireland)",9.58], + ["Chile (Republic of)",9.58], + ["Austria (Republic of)",9.58], + ["Mauritius (Republic of)",9.17], + ["France (French Republic)",9.58], + ["Spain (Kingdom of)",9.58], + ["Korea (Republic of)",9.58], + ["Czech Republic",9.58], + ["Greece (Hellenic Republic)",10], + ["Estonia (Republic of)",9.58], + ["Portugal (Portuguese Republic)",9.58], + ["Israel (State of)",9.58], + ["United States (of America)",9.17], + ["Slovenia (Republic of)",9.58], + ["Botswana (Republic of)",9.17], + ["Malta (Republic of)",9.17], + ["Italy (Italian Republic)",9.58], + ["Cape Verde (Republic of)",9.17], + ["Belgium (Kingdom of)",9.58], + ["Cyprus (Republic of)",9.17], + ["Latvia (Republic of)",9.58], + ["Lithuania (Republic of)",9.58], + ["Malaysia",9.58], + ["Trinidad and Tobago (Republic of)",9.58], + ["Jamaica",8.75], + ["Slovakia (Slovak Republic)",9.58], + ["Timor-Leste (Democratic Republic of)",9.58], + ["South Africa (Republic of)",7.42], + ["India (Republic of)",8.67], + ["Poland (Republic of)",9.17], + ["Suriname (Republic of)",9.58], + ["Panama (Republic of)",9.58], + ["Argentina (Argentine Republic)",9.17], + ["Brazil (Federative Republic of)",9.58], + ["Philippines (Republic of the)",9.17], + ["Colombia (Republic of)",9.17], + ["Indonesia (Republic of)",7.92], + ["Thailand (Kingdom of)",7.42], + ["Hungary (Republic of)",8.33], + ["Bulgaria (Republic of)",9.17], + ["Namibia (Republic of)",7], + ["Croatia (Republic of)",9.17], + ["Sri Lanka (Democratic Socialist Republic of)",7], + ["Montenegro",7.42], + ["Romania",9.17], + ["Ghana (Republic of)",8.33], + ["Albania (Republic of)",7], + ["Dominican Republic",9.17], + ["Mongolia",8.75], + ["Guyana (Co-operative Republic of)",6.92], + ["Serbia (Republic of)",7.83], + ["Moldova (Republic of)",7.42], + ["Singapore (Republic of)",4.83], + ["Lesotho (Kingdom of)",9.17], + ["North Macedonia (Republic of)",7.83], + ["Bangladesh (People's Republic of)",7.42], + ["Papua New Guinea (Independent State of)",6.92], + ["Peru (Republic of)",8.75], + ["Malawi (Republic of)",7], + ["Paraguay (Republic of)",8.75], + ["Zambia (Republic of)",7.92], + ["Senegal (Republic of)",6.58], + ["Madagascar (Republic of)",7.92], + ["Ecuador (Republic of)",8.75], + ["Armenia (Republic of)",7.92], + ["Fiji (Republic of)",6.58], + ["Bhutan (Kingdom of)",8.75], + ["Tunisia (Republic of)",6.17], + ["Liberia (Republic of)",7.42], + ["Ukraine",6.5], + ["Hong Kong (Special Administrative Region of China)",2.75], + ["Mexico (United Mexican States)",6.92], + ["Georgia",7], + ["Honduras (Republic of)",8.75], + ["Tanzania (United Republic of)",4.83], + ["El Salvador (Republic of)",8.33], + ["Kenya (Republic of)",3.5], + ["Morocco (Kingdom of)",5.25], + ["Sierra Leone (Republic of)",6.58], + ["Bosnia and Herzegovina",7], + ["Guatemala (Republic of)",6.92], + ["Uganda (Republic of)",3.42], + ["Bolivia (Plurinational State of)",4.75], + ["Nepal (Federal Democratic Republic of)",4.83], + ["Gambia (Republic of the)",4.42], + ["Turkey (Republic of)",3.5], + ["Benin (Republic of)",1.67], + ["Nigeria (Federal Republic of)",5.17], + ["Côte d'Ivoire (Republic of)",4.33], + ["Pakistan (Islamic Republic of)",5.67], + ["Mauritania (Islamic Republic of)",3.5], + ["Angola (Republic of)",4.5], + ["Palestine (State of)",2.92], + ["Kuwait (State of)",3.17], + ["Niger (Republic of)",2.92], + ["Algeria (People's Democratic Republic of)",3.08], + ["Qatar (State of)",1.5], + ["Lebanon (Lebanese Republic)",3.5], + ["Kyrgyz Republic",4.33], + ["Mozambique (Republic of)",2.58], + ["Gabon (Gabonese Republic)",2.17], + ["Mali (Republic of)",1.17], + ["Comoros (Union of the)",2.08], + ["Cambodia (Kingdom of)",0], + ["Ethiopia (Federal Democratic Republic of)",0.42], + ["Jordan (Hashemite Kingdom of)",2.67], + ["Iraq (Republic of)",5.25], + ["Oman (Sultanate of)",0.08], + ["Rwanda (Republic of)",1.42], + ["Burkina Faso",0], + ["Kazakhstan (Republic of)",0.5], + ["Eswatini (Kingdom of)",0.92], + ["Togo (Togolese Republic)",0.92], + ["Egypt (Arab Republic of)",1.33], + ["Zimbabwe (Republic of)",0], + ["United Arab Emirates",0], + ["Azerbaijan (Republic of)",0.5], + ["Haiti (Republic of)",0], + ["Congo (Republic of the)",0], + ["Djibouti (Republic of)",0], + ["Vietnam (Socialist Republic of)",0], + ["Cuba (Republic of)",0], + ["Cameroon (Republic of)",0.33], + ["Guinea-Bissau (Republic of)",4], + ["Bahrain (Kingdom of)",0.42], + ["Nicaragua (Republic of)",0], + ["Sudan (Republic of the)",0], + ["Guinea (Republic of)",0.83], + ["Russian Federation",0.92], + ["Venezuela (Bolivarian Republic of)",0], + ["Burundi (Republic of)",0], + ["Uzbekistan (Republic of)",0.08], + ["Saudi Arabia (Kingdom of)",0], + ["Libya (State of)",0], + ["Eritrea (State of)",0], + ["Belarus (Republic of)",0], + ["Iran (Islamic Republic of)",0], + ["Yemen (Republic of)",0], + ["China (People's Republic of)",0], + ["Tajikistan (Republic of)",0], + ["Equatorial Guinea (Republic of)",0], + ["Lao (People's Democratic Republic)",0], + ["Chad (Republic of)",0], + ["Turkmenistan",0], + ["Congo (Democratic Republic of the)",1.17], + ["Syrian Arab Republic",0], + ["Central African Republic",0.83], + ["Korea (Democratic People's Republic of)",0], + ["Myanmar (Union of)",0], + ["Afghanistan (Islamic Republic of)",0] + ] +} diff --git a/data/global/politics/governance/democracy-index/democracy-index-political-culture.json b/data/global/politics/governance/democracy-index/democracy-index-political-culture.json new file mode 100644 index 0000000..081a9a6 --- /dev/null +++ b/data/global/politics/governance/democracy-index/democracy-index-political-culture.json @@ -0,0 +1,189 @@ +{ + "metadata" : { + "name" : "Democracy Index - Political Culture", + "description" : "The Democracy Index is based on 60 indicators measuring pluralism, civil liberties, and political culture.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "culture", + "tags" : ["global","politics","government","democracy","freedom"], + "authors" : [ + "Economist Intelligence Unit (EIU)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Democracy_Index" + ] + }, + "data" : [ + ["country.name","democracy.political.culture"], + ["Norway (Kingdom of)",10], + ["New Zealand",8.75], + ["Iceland (Republic of)",9.38], + ["Sweden (Kingdom of)",10], + ["Finland (Republic of)",8.75], + ["Denmark (Kingdom of)",9.38], + ["Switzerland (Swiss Confederation)",9.38], + ["Ireland",10], + ["Netherlands (Kingdom of the)",8.75], + ["Taiwan",8.13], + ["Uruguay (Oriental Republic of)",8.13], + ["Canada",8.13], + ["Luxembourg (Grand Duchy of)",8.75], + ["Germany (Federal Republic of)",8.13], + ["Australia (Commonwealth of)",7.5], + ["Japan",8.13], + ["Costa Rica (Republic of)",6.88], + ["United Kingdom (of Great Britain & Northern Ireland)",6.88], + ["Chile (Republic of)",7.5], + ["Austria (Republic of)",6.88], + ["Mauritius (Republic of)",8.75], + ["France (French Republic)",6.88], + ["Spain (Kingdom of)",7.5], + ["Korea (Republic of)",6.25], + ["Czech Republic",7.5], + ["Greece (Hellenic Republic)",7.5], + ["Estonia (Republic of)",6.88], + ["Portugal (Portuguese Republic)",6.88], + ["Israel (State of)",6.88], + ["United States (of America)",6.25], + ["Slovenia (Republic of)",6.25], + ["Botswana (Republic of)",7.5], + ["Malta (Republic of)",8.13], + ["Italy (Italian Republic)",7.5], + ["Cape Verde (Republic of)",6.88], + ["Belgium (Kingdom of)",6.88], + ["Cyprus (Republic of)",6.88], + ["Latvia (Republic of)",6.25], + ["Lithuania (Republic of)",5.63], + ["Malaysia",6.25], + ["Trinidad and Tobago (Republic of)",5.63], + ["Jamaica",6.25], + ["Slovakia (Slovak Republic)",5.63], + ["Timor-Leste (Democratic Republic of)",6.88], + ["South Africa (Republic of)",5], + ["India (Republic of)",5.63], + ["Poland (Republic of)",6.25], + ["Suriname (Republic of)",5], + ["Panama (Republic of)",3.75], + ["Argentina (Argentine Republic)",4.38], + ["Brazil (Federative Republic of)",5], + ["Philippines (Republic of the)",4.38], + ["Colombia (Republic of)",3.75], + ["Indonesia (Republic of)",4.38], + ["Thailand (Kingdom of)",5.63], + ["Hungary (Republic of)",6.88], + ["Bulgaria (Republic of)",4.38], + ["Namibia (Republic of)",5.63], + ["Croatia (Republic of)",4.38], + ["Sri Lanka (Democratic Socialist Republic of)",6.25], + ["Montenegro",3.75], + ["Romania",3.75], + ["Ghana (Republic of)",6.25], + ["Albania (Republic of)",6.25], + ["Dominican Republic",3.13], + ["Mongolia",5.63], + ["Guyana (Co-operative Republic of)",5], + ["Serbia (Republic of)",3.75], + ["Moldova (Republic of)",4.38], + ["Singapore (Republic of)",7.5], + ["Lesotho (Kingdom of)",5.63], + ["North Macedonia (Republic of)",3.13], + ["Bangladesh (People's Republic of)",5.63], + ["Papua New Guinea (Independent State of)",5.63], + ["Peru (Republic of)",3.13], + ["Malawi (Republic of)",6.25], + ["Paraguay (Republic of)",1.88], + ["Zambia (Republic of)",6.88], + ["Senegal (Republic of)",6.25], + ["Madagascar (Republic of)",5.63], + ["Ecuador (Republic of)",1.88], + ["Armenia (Republic of)",3.13], + ["Fiji (Republic of)",5.63], + ["Bhutan (Kingdom of)",5], + ["Tunisia (Republic of)",5.63], + ["Liberia (Republic of)",5.63], + ["Ukraine",6.25], + ["Hong Kong (Special Administrative Region of China)",6.88], + ["Mexico (United Mexican States)",1.88], + ["Georgia",3.75], + ["Honduras (Republic of)",2.5], + ["Tanzania (United Republic of)",6.25], + ["El Salvador (Republic of)",3.13], + ["Kenya (Republic of)",5.63], + ["Morocco (Kingdom of)",5.63], + ["Sierra Leone (Republic of)",6.25], + ["Bosnia and Herzegovina",3.13], + ["Guatemala (Republic of)",2.5], + ["Uganda (Republic of)",6.88], + ["Bolivia (Plurinational State of)",1.25], + ["Nepal (Federal Democratic Republic of)",2.5], + ["Gambia (Republic of the)",5.63], + ["Turkey (Republic of)",5.63], + ["Benin (Republic of)",6.25], + ["Nigeria (Federal Republic of)",3.75], + ["Côte d'Ivoire (Republic of)",5.63], + ["Pakistan (Islamic Republic of)",2.5], + ["Mauritania (Islamic Republic of)",3.13], + ["Angola (Republic of)",5], + ["Palestine (State of)",4.38], + ["Kuwait (State of)",4.38], + ["Niger (Republic of)",5.63], + ["Algeria (People's Democratic Republic of)",5], + ["Qatar (State of)",5.63], + ["Lebanon (Lebanese Republic)",3.13], + ["Kyrgyz Republic",3.13], + ["Mozambique (Republic of)",5], + ["Gabon (Gabonese Republic)",5], + ["Mali (Republic of)",5.63], + ["Comoros (Union of the)",3.75], + ["Cambodia (Kingdom of)",5.63], + ["Ethiopia (Federal Democratic Republic of)",5], + ["Jordan (Hashemite Kingdom of)",3.13], + ["Iraq (Republic of)",3.13], + ["Oman (Sultanate of)",5], + ["Rwanda (Republic of)",4.38], + ["Burkina Faso",4.38], + ["Kazakhstan (Republic of)",3.75], + ["Eswatini (Kingdom of)",5.63], + ["Togo (Togolese Republic)",5.63], + ["Egypt (Arab Republic of)",5], + ["Zimbabwe (Republic of)",5], + ["United Arab Emirates",5.63], + ["Azerbaijan (Republic of)",5], + ["Haiti (Republic of)",6.25], + ["Congo (Republic of the)",3.75], + ["Djibouti (Republic of)",5.63], + ["Vietnam (Socialist Republic of)",3.75], + ["Cuba (Republic of)",3.75], + ["Cameroon (Republic of)",4.38], + ["Guinea-Bissau (Republic of)",3.13], + ["Bahrain (Kingdom of)",4.38], + ["Nicaragua (Republic of)",4.38], + ["Sudan (Republic of the)",5], + ["Guinea (Republic of)",4.38], + ["Russian Federation",3.75], + ["Venezuela (Bolivarian Republic of)",1.88], + ["Burundi (Republic of)",5], + ["Uzbekistan (Republic of)",5], + ["Saudi Arabia (Kingdom of)",3.13], + ["Libya (State of)",3.75], + ["Eritrea (State of)",6.88], + ["Belarus (Republic of)",4.38], + ["Iran (Islamic Republic of)",2.5], + ["Yemen (Republic of)",5], + ["China (People's Republic of)",3.13], + ["Tajikistan (Republic of)",4.38], + ["Equatorial Guinea (Republic of)",4.38], + ["Lao (People's Democratic Republic)",3.75], + ["Chad (Republic of)",3.75], + ["Turkmenistan",5], + ["Congo (Democratic Republic of the)",3.13], + ["Syrian Arab Republic",4.38], + ["Central African Republic",1.88], + ["Korea (Democratic People's Republic of)",1.25], + ["Myanmar (Union of)",3.13], + ["Afghanistan (Islamic Republic of)",1.25] + ] +} diff --git a/data/global/politics/governance/democracy-index/democracy-index-political-participation.json b/data/global/politics/governance/democracy-index/democracy-index-political-participation.json new file mode 100644 index 0000000..91aeb0d --- /dev/null +++ b/data/global/politics/governance/democracy-index/democracy-index-political-participation.json @@ -0,0 +1,189 @@ +{ + "metadata" : { + "name" : "Democracy Index - Political Participation", + "description" : "The Democracy Index is based on 60 indicators measuring pluralism, civil liberties, and political culture.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","democracy","freedom"], + "authors" : [ + "Economist Intelligence Unit (EIU)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Democracy_Index" + ] + }, + "data" : [ + ["country.name","democracy.political.participation"], + ["Norway (Kingdom of)",10], + ["New Zealand",10], + ["Iceland (Republic of)",8.89], + ["Sweden (Kingdom of)",8.33], + ["Finland (Republic of)",8.33], + ["Denmark (Kingdom of)",8.33], + ["Switzerland (Swiss Confederation)",8.33], + ["Ireland",8.33], + ["Netherlands (Kingdom of the)",8.33], + ["Taiwan",7.78], + ["Uruguay (Oriental Republic of)",7.78], + ["Canada",8.89], + ["Luxembourg (Grand Duchy of)",6.67], + ["Germany (Federal Republic of)",8.33], + ["Australia (Commonwealth of)",7.78], + ["Japan",6.67], + ["Costa Rica (Republic of)",7.78], + ["United Kingdom (of Great Britain & Northern Ireland)",8.33], + ["Chile (Republic of)",6.67], + ["Austria (Republic of)",8.89], + ["Mauritius (Republic of)",6.11], + ["France (French Republic)",7.78], + ["Spain (Kingdom of)",7.22], + ["Korea (Republic of)",7.22], + ["Czech Republic",7.22], + ["Greece (Hellenic Republic)",6.67], + ["Estonia (Republic of)",6.67], + ["Portugal (Portuguese Republic)",6.67], + ["Israel (State of)",9.44], + ["United States (of America)",8.89], + ["Slovenia (Republic of)",7.22], + ["Botswana (Republic of)",6.67], + ["Malta (Republic of)",5.56], + ["Italy (Italian Republic)",7.22], + ["Cape Verde (Republic of)",6.67], + ["Belgium (Kingdom of)",5], + ["Cyprus (Republic of)",6.67], + ["Latvia (Republic of)",6.11], + ["Lithuania (Republic of)",6.11], + ["Malaysia",7.22], + ["Trinidad and Tobago (Republic of)",6.11], + ["Jamaica",5], + ["Slovakia (Slovak Republic)",5.56], + ["Timor-Leste (Democratic Republic of)",5.56], + ["South Africa (Republic of)",8.33], + ["India (Republic of)",7.22], + ["Poland (Republic of)",6.67], + ["Suriname (Republic of)",6.11], + ["Panama (Republic of)",7.22], + ["Argentina (Argentine Republic)",7.78], + ["Brazil (Federative Republic of)",6.67], + ["Philippines (Republic of the)",7.78], + ["Colombia (Republic of)",6.67], + ["Indonesia (Republic of)",7.22], + ["Thailand (Kingdom of)",8.33], + ["Hungary (Republic of)",4.44], + ["Bulgaria (Republic of)",6.11], + ["Namibia (Republic of)",6.67], + ["Croatia (Republic of)",6.11], + ["Sri Lanka (Democratic Socialist Republic of)",7.22], + ["Montenegro",7.22], + ["Romania",5.56], + ["Ghana (Republic of)",6.67], + ["Albania (Republic of)",5], + ["Dominican Republic",7.22], + ["Mongolia",6.11], + ["Guyana (Co-operative Republic of)",6.67], + ["Serbia (Republic of)",6.67], + ["Moldova (Republic of)",7.22], + ["Singapore (Republic of)",4.44], + ["Lesotho (Kingdom of)",5.56], + ["North Macedonia (Republic of)",6.11], + ["Bangladesh (People's Republic of)",5.56], + ["Papua New Guinea (Independent State of)",3.89], + ["Peru (Republic of)",5.56], + ["Malawi (Republic of)",5.56], + ["Paraguay (Republic of)",6.11], + ["Zambia (Republic of)",5], + ["Senegal (Republic of)",4.44], + ["Madagascar (Republic of)",6.67], + ["Ecuador (Republic of)",6.67], + ["Armenia (Republic of)",6.11], + ["Fiji (Republic of)",5.56], + ["Bhutan (Kingdom of)",3.33], + ["Tunisia (Republic of)",6.11], + ["Liberia (Republic of)",6.11], + ["Ukraine",7.22], + ["Hong Kong (Special Administrative Region of China)",5.56], + ["Mexico (United Mexican States)",7.22], + ["Georgia",6.11], + ["Honduras (Republic of)",5], + ["Tanzania (United Republic of)",5], + ["El Salvador (Republic of)",5.56], + ["Kenya (Republic of)",6.67], + ["Morocco (Kingdom of)",5.56], + ["Sierra Leone (Republic of)",4.44], + ["Bosnia and Herzegovina",5], + ["Guatemala (Republic of)",3.89], + ["Uganda (Republic of)",3.89], + ["Bolivia (Plurinational State of)",6.67], + ["Nepal (Federal Democratic Republic of)",4.44], + ["Gambia (Republic of the)",3.89], + ["Turkey (Republic of)",5.56], + ["Benin (Republic of)",3.33], + ["Nigeria (Federal Republic of)",3.89], + ["Côte d'Ivoire (Republic of)",4.44], + ["Pakistan (Islamic Republic of)",2.78], + ["Mauritania (Islamic Republic of)",5.56], + ["Angola (Republic of)",4.44], + ["Palestine (State of)",8.33], + ["Kuwait (State of)",4.44], + ["Niger (Republic of)",3.89], + ["Algeria (People's Democratic Republic of)",3.89], + ["Qatar (State of)",3.33], + ["Lebanon (Lebanese Republic)",6.67], + ["Kyrgyz Republic",4.44], + ["Mozambique (Republic of)",5], + ["Gabon (Gabonese Republic)",4.44], + ["Mali (Republic of)",5.56], + ["Comoros (Union of the)",4.44], + ["Cambodia (Kingdom of)",5], + ["Ethiopia (Federal Democratic Republic of)",6.11], + ["Jordan (Hashemite Kingdom of)",3.89], + ["Iraq (Republic of)",6.11], + ["Oman (Sultanate of)",2.78], + ["Rwanda (Republic of)",2.78], + ["Burkina Faso",5], + ["Kazakhstan (Republic of)",5], + ["Eswatini (Kingdom of)",2.78], + ["Togo (Togolese Republic)",3.33], + ["Egypt (Arab Republic of)",3.33], + ["Zimbabwe (Republic of)",3.89], + ["United Arab Emirates",2.22], + ["Azerbaijan (Republic of)",3.33], + ["Haiti (Republic of)",2.78], + ["Congo (Republic of the)",4.44], + ["Djibouti (Republic of)",4.44], + ["Vietnam (Socialist Republic of)",3.33], + ["Cuba (Republic of)",3.33], + ["Cameroon (Republic of)",3.89], + ["Guinea-Bissau (Republic of)",3.33], + ["Bahrain (Kingdom of)",3.33], + ["Nicaragua (Republic of)",3.33], + ["Sudan (Republic of the)",4.44], + ["Guinea (Republic of)",3.33], + ["Russian Federation",2.22], + ["Venezuela (Bolivarian Republic of)",5.56], + ["Burundi (Republic of)",3.89], + ["Uzbekistan (Republic of)",2.78], + ["Saudi Arabia (Kingdom of)",2.22], + ["Libya (State of)",3.89], + ["Eritrea (State of)",0.56], + ["Belarus (Republic of)",3.33], + ["Iran (Islamic Republic of)",3.33], + ["Yemen (Republic of)",3.89], + ["China (People's Republic of)",2.78], + ["Tajikistan (Republic of)",2.22], + ["Equatorial Guinea (Republic of)",3.33], + ["Lao (People's Democratic Republic)",1.67], + ["Chad (Republic of)",2.22], + ["Turkmenistan",2.22], + ["Congo (Democratic Republic of the)",2.22], + ["Syrian Arab Republic",2.78], + ["Central African Republic",1.67], + ["Korea (Democratic People's Republic of)",1.67], + ["Myanmar (Union of)",0.56], + ["Afghanistan (Islamic Republic of)",0] + ] +} diff --git a/data/global/politics/governance/democracy-index/democracy-index-regime.json b/data/global/politics/governance/democracy-index/democracy-index-regime.json new file mode 100644 index 0000000..bdc9277 --- /dev/null +++ b/data/global/politics/governance/democracy-index/democracy-index-regime.json @@ -0,0 +1,189 @@ +{ + "metadata" : { + "name" : "Democracy Index - Regime Type", + "description" : "The Democracy Index is based on 60 indicators measuring pluralism, civil liberties, and political culture.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","democracy","freedom"], + "authors" : [ + "Economist Intelligence Unit (EIU)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Democracy_Index" + ] + }, + "data" : [ + ["country.name","democracy.regime"], + ["Norway (Kingdom of)","Full democracy"], + ["New Zealand","Full democracy"], + ["Iceland (Republic of)","Full democracy"], + ["Sweden (Kingdom of)","Full democracy"], + ["Finland (Republic of)","Full democracy"], + ["Denmark (Kingdom of)","Full democracy"], + ["Switzerland (Swiss Confederation)","Full democracy"], + ["Ireland","Full democracy"], + ["Netherlands (Kingdom of the)","Full democracy"], + ["Taiwan","Full democracy"], + ["Uruguay (Oriental Republic of)","Full democracy"], + ["Canada","Full democracy"], + ["Luxembourg (Grand Duchy of)","Full democracy"], + ["Germany (Federal Republic of)","Full democracy"], + ["Australia (Commonwealth of)","Full democracy"], + ["Japan","Full democracy"], + ["Costa Rica (Republic of)","Full democracy"], + ["United Kingdom (of Great Britain & Northern Ireland)","Full democracy"], + ["Chile (Republic of)","Full democracy"], + ["Austria (Republic of)","Full democracy"], + ["Mauritius (Republic of)","Full democracy"], + ["France (French Republic)","Full democracy"], + ["Spain (Kingdom of)","Full democracy"], + ["Korea (Republic of)","Full democracy"], + ["Czech Republic","Flawed democracy"], + ["Greece (Hellenic Republic)","Flawed democracy"], + ["Estonia (Republic of)","Flawed democracy"], + ["Portugal (Portuguese Republic)","Flawed democracy"], + ["Israel (State of)","Flawed democracy"], + ["United States (of America)","Flawed democracy"], + ["Slovenia (Republic of)","Flawed democracy"], + ["Botswana (Republic of)","Flawed democracy"], + ["Malta (Republic of)","Flawed democracy"], + ["Italy (Italian Republic)","Flawed democracy"], + ["Cape Verde (Republic of)","Flawed democracy"], + ["Belgium (Kingdom of)","Flawed democracy"], + ["Cyprus (Republic of)","Flawed democracy"], + ["Latvia (Republic of)","Flawed democracy"], + ["Lithuania (Republic of)","Flawed democracy"], + ["Malaysia","Flawed democracy"], + ["Trinidad and Tobago (Republic of)","Flawed democracy"], + ["Jamaica","Flawed democracy"], + ["Slovakia (Slovak Republic)","Flawed democracy"], + ["Timor-Leste (Democratic Republic of)","Flawed democracy"], + ["South Africa (Republic of)","Flawed democracy"], + ["India (Republic of)","Flawed democracy"], + ["Poland (Republic of)","Flawed democracy"], + ["Suriname (Republic of)","Flawed democracy"], + ["Panama (Republic of)","Flawed democracy"], + ["Argentina (Argentine Republic)","Flawed democracy"], + ["Brazil (Federative Republic of)","Flawed democracy"], + ["Philippines (Republic of the)","Flawed democracy"], + ["Colombia (Republic of)","Flawed democracy"], + ["Indonesia (Republic of)","Flawed democracy"], + ["Thailand (Kingdom of)","Flawed democracy"], + ["Hungary (Republic of)","Flawed democracy"], + ["Bulgaria (Republic of)","Flawed democracy"], + ["Namibia (Republic of)","Flawed democracy"], + ["Croatia (Republic of)","Flawed democracy"], + ["Sri Lanka (Democratic Socialist Republic of)","Flawed democracy"], + ["Montenegro","Flawed democracy"], + ["Romania","Flawed democracy"], + ["Ghana (Republic of)","Flawed democracy"], + ["Albania (Republic of)","Flawed democracy"], + ["Dominican Republic","Flawed democracy"], + ["Mongolia","Flawed democracy"], + ["Guyana (Co-operative Republic of)","Flawed democracy"], + ["Serbia (Republic of)","Flawed democracy"], + ["Moldova (Republic of)","Flawed democracy"], + ["Singapore (Republic of)","Flawed democracy"], + ["Lesotho (Kingdom of)","Flawed democracy"], + ["North Macedonia (Republic of)","Flawed democracy"], + ["Bangladesh (People's Republic of)","Hybrid regime"], + ["Papua New Guinea (Independent State of)","Hybrid regime"], + ["Peru (Republic of)","Hybrid regime"], + ["Malawi (Republic of)","Hybrid regime"], + ["Paraguay (Republic of)","Hybrid regime"], + ["Zambia (Republic of)","Hybrid regime"], + ["Senegal (Republic of)","Hybrid regime"], + ["Madagascar (Republic of)","Hybrid regime"], + ["Ecuador (Republic of)","Hybrid regime"], + ["Armenia (Republic of)","Hybrid regime"], + ["Fiji (Republic of)","Hybrid regime"], + ["Bhutan (Kingdom of)","Hybrid regime"], + ["Tunisia (Republic of)","Hybrid regime"], + ["Liberia (Republic of)","Hybrid regime"], + ["Ukraine","Hybrid regime"], + ["Hong Kong (Special Administrative Region of China)","Hybrid regime"], + ["Mexico (United Mexican States)","Hybrid regime"], + ["Georgia","Hybrid regime"], + ["Honduras (Republic of)","Hybrid regime"], + ["Tanzania (United Republic of)","Hybrid regime"], + ["El Salvador (Republic of)","Hybrid regime"], + ["Kenya (Republic of)","Hybrid regime"], + ["Morocco (Kingdom of)","Hybrid regime"], + ["Sierra Leone (Republic of)","Hybrid regime"], + ["Bosnia and Herzegovina","Hybrid regime"], + ["Guatemala (Republic of)","Hybrid regime"], + ["Uganda (Republic of)","Hybrid regime"], + ["Bolivia (Plurinational State of)","Hybrid regime"], + ["Nepal (Federal Democratic Republic of)","Hybrid regime"], + ["Gambia (Republic of the)","Hybrid regime"], + ["Turkey (Republic of)","Hybrid regime"], + ["Benin (Republic of)","Hybrid regime"], + ["Nigeria (Federal Republic of)","Hybrid regime"], + ["Côte d'Ivoire (Republic of)","Hybrid regime"], + ["Pakistan (Islamic Republic of)","Hybrid regime"], + ["Mauritania (Islamic Republic of)","Hybrid regime"], + ["Angola (Republic of)","Authoritarian"], + ["Palestine (State of)","Authoritarian"], + ["Kuwait (State of)","Authoritarian"], + ["Niger (Republic of)","Authoritarian"], + ["Algeria (People's Democratic Republic of)","Authoritarian"], + ["Qatar (State of)","Authoritarian"], + ["Lebanon (Lebanese Republic)","Authoritarian"], + ["Kyrgyz Republic","Authoritarian"], + ["Mozambique (Republic of)","Authoritarian"], + ["Gabon (Gabonese Republic)","Authoritarian"], + ["Mali (Republic of)","Authoritarian"], + ["Comoros (Union of the)","Authoritarian"], + ["Cambodia (Kingdom of)","Authoritarian"], + ["Ethiopia (Federal Democratic Republic of)","Authoritarian"], + ["Jordan (Hashemite Kingdom of)","Authoritarian"], + ["Iraq (Republic of)","Authoritarian"], + ["Oman (Sultanate of)","Authoritarian"], + ["Rwanda (Republic of)","Authoritarian"], + ["Burkina Faso","Authoritarian"], + ["Kazakhstan (Republic of)","Authoritarian"], + ["Eswatini (Kingdom of)","Authoritarian"], + ["Togo (Togolese Republic)","Authoritarian"], + ["Egypt (Arab Republic of)","Authoritarian"], + ["Zimbabwe (Republic of)","Authoritarian"], + ["United Arab Emirates","Authoritarian"], + ["Azerbaijan (Republic of)","Authoritarian"], + ["Haiti (Republic of)","Authoritarian"], + ["Congo (Republic of the)","Authoritarian"], + ["Djibouti (Republic of)","Authoritarian"], + ["Vietnam (Socialist Republic of)","Authoritarian"], + ["Cuba (Republic of)","Authoritarian"], + ["Cameroon (Republic of)","Authoritarian"], + ["Guinea-Bissau (Republic of)","Authoritarian"], + ["Bahrain (Kingdom of)","Authoritarian"], + ["Nicaragua (Republic of)","Authoritarian"], + ["Sudan (Republic of the)","Authoritarian"], + ["Guinea (Republic of)","Authoritarian"], + ["Russian Federation","Authoritarian"], + ["Venezuela (Bolivarian Republic of)","Authoritarian"], + ["Burundi (Republic of)","Authoritarian"], + ["Uzbekistan (Republic of)","Authoritarian"], + ["Saudi Arabia (Kingdom of)","Authoritarian"], + ["Libya (State of)","Authoritarian"], + ["Eritrea (State of)","Authoritarian"], + ["Belarus (Republic of)","Authoritarian"], + ["Iran (Islamic Republic of)","Authoritarian"], + ["Yemen (Republic of)","Authoritarian"], + ["China (People's Republic of)","Authoritarian"], + ["Tajikistan (Republic of)","Authoritarian"], + ["Equatorial Guinea (Republic of)","Authoritarian"], + ["Lao (People's Democratic Republic)","Authoritarian"], + ["Chad (Republic of)","Authoritarian"], + ["Turkmenistan","Authoritarian"], + ["Congo (Democratic Republic of the)","Authoritarian"], + ["Syrian Arab Republic","Authoritarian"], + ["Central African Republic","Authoritarian"], + ["Korea (Democratic People's Republic of)","Authoritarian"], + ["Myanmar (Union of)","Authoritarian"], + ["Afghanistan (Islamic Republic of)","Authoritarian"] + ] +} diff --git a/data/global/politics/governance/democracy-index/democracy-index.json b/data/global/politics/governance/democracy-index/democracy-index.json new file mode 100644 index 0000000..2327625 --- /dev/null +++ b/data/global/politics/governance/democracy-index/democracy-index.json @@ -0,0 +1,189 @@ +{ + "metadata" : { + "name" : "Democracy Index", + "description" : "The Democracy Index is based on 60 indicators measuring pluralism, civil liberties, and political culture.", + "units" : "index", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","government","democracy","freedom"], + "authors" : [ + "Economist Intelligence Unit (EIU)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Democracy_Index" + ] + }, + "data" : [ + ["country.name","democracy.index"], + ["Norway (Kingdom of)",9.81], + ["New Zealand",9.61], + ["Iceland (Republic of)",9.52], + ["Sweden (Kingdom of)",9.39], + ["Finland (Republic of)",9.29], + ["Denmark (Kingdom of)",9.28], + ["Switzerland (Swiss Confederation)",9.14], + ["Ireland",9.13], + ["Netherlands (Kingdom of the)",9], + ["Taiwan",8.99], + ["Uruguay (Oriental Republic of)",8.91], + ["Canada",8.88], + ["Luxembourg (Grand Duchy of)",8.81], + ["Germany (Federal Republic of)",8.8], + ["Australia (Commonwealth of)",8.71], + ["Japan",8.33], + ["Costa Rica (Republic of)",8.29], + ["United Kingdom (of Great Britain & Northern Ireland)",8.28], + ["Chile (Republic of)",8.22], + ["Austria (Republic of)",8.2], + ["Mauritius (Republic of)",8.14], + ["France (French Republic)",8.07], + ["Spain (Kingdom of)",8.07], + ["Korea (Republic of)",8.03], + ["Czech Republic",7.97], + ["Greece (Hellenic Republic)",7.97], + ["Estonia (Republic of)",7.96], + ["Portugal (Portuguese Republic)",7.95], + ["Israel (State of)",7.93], + ["United States (of America)",7.85], + ["Slovenia (Republic of)",7.75], + ["Botswana (Republic of)",7.73], + ["Malta (Republic of)",7.7], + ["Italy (Italian Republic)",7.69], + ["Cape Verde (Republic of)",7.65], + ["Belgium (Kingdom of)",7.64], + ["Cyprus (Republic of)",7.38], + ["Latvia (Republic of)",7.37], + ["Lithuania (Republic of)",7.31], + ["Malaysia",7.3], + ["Trinidad and Tobago (Republic of)",7.16], + ["Jamaica",7.13], + ["Slovakia (Slovak Republic)",7.07], + ["Timor-Leste (Democratic Republic of)",7.06], + ["South Africa (Republic of)",7.05], + ["India (Republic of)",7.04], + ["Poland (Republic of)",7.04], + ["Suriname (Republic of)",6.95], + ["Panama (Republic of)",6.91], + ["Argentina (Argentine Republic)",6.85], + ["Brazil (Federative Republic of)",6.78], + ["Philippines (Republic of the)",6.73], + ["Colombia (Republic of)",6.72], + ["Indonesia (Republic of)",6.71], + ["Thailand (Kingdom of)",6.67], + ["Hungary (Republic of)",6.64], + ["Bulgaria (Republic of)",6.53], + ["Namibia (Republic of)",6.52], + ["Croatia (Republic of)",6.5], + ["Sri Lanka (Democratic Socialist Republic of)",6.47], + ["Montenegro",6.45], + ["Romania",6.45], + ["Ghana (Republic of)",6.43], + ["Albania (Republic of)",6.41], + ["Dominican Republic",6.39], + ["Mongolia",6.35], + ["Guyana (Co-operative Republic of)",6.34], + ["Serbia (Republic of)",6.33], + ["Moldova (Republic of)",6.23], + ["Singapore (Republic of)",6.22], + ["Lesotho (Kingdom of)",6.19], + ["North Macedonia (Republic of)",6.1], + ["Bangladesh (People's Republic of)",5.99], + ["Papua New Guinea (Independent State of)",5.97], + ["Peru (Republic of)",5.92], + ["Malawi (Republic of)",5.91], + ["Paraguay (Republic of)",5.89], + ["Zambia (Republic of)",5.8], + ["Senegal (Republic of)",5.72], + ["Madagascar (Republic of)",5.7], + ["Ecuador (Republic of)",5.69], + ["Armenia (Republic of)",5.63], + ["Fiji (Republic of)",5.55], + ["Bhutan (Kingdom of)",5.54], + ["Tunisia (Republic of)",5.51], + ["Liberia (Republic of)",5.43], + ["Ukraine",5.42], + ["Hong Kong (Special Administrative Region of China)",5.28], + ["Mexico (United Mexican States)",5.25], + ["Georgia",5.2], + ["Honduras (Republic of)",5.15], + ["Tanzania (United Republic of)",5.1], + ["El Salvador (Republic of)",5.06], + ["Kenya (Republic of)",5.05], + ["Morocco (Kingdom of)",5.04], + ["Sierra Leone (Republic of)",5.03], + ["Bosnia and Herzegovina",5], + ["Guatemala (Republic of)",4.68], + ["Uganda (Republic of)",4.55], + ["Bolivia (Plurinational State of)",4.51], + ["Nepal (Federal Democratic Republic of)",4.49], + ["Gambia (Republic of the)",4.47], + ["Turkey (Republic of)",4.35], + ["Benin (Republic of)",4.28], + ["Nigeria (Federal Republic of)",4.23], + ["Côte d'Ivoire (Republic of)",4.22], + ["Pakistan (Islamic Republic of)",4.13], + ["Mauritania (Islamic Republic of)",4.03], + ["Angola (Republic of)",3.96], + ["Palestine (State of)",3.86], + ["Kuwait (State of)",3.83], + ["Niger (Republic of)",3.73], + ["Algeria (People's Democratic Republic of)",3.66], + ["Qatar (State of)",3.65], + ["Lebanon (Lebanese Republic)",3.64], + ["Kyrgyz Republic",3.62], + ["Mozambique (Republic of)",3.51], + ["Gabon (Gabonese Republic)",3.4], + ["Mali (Republic of)",3.23], + ["Comoros (Union of the)",3.2], + ["Cambodia (Kingdom of)",3.18], + ["Ethiopia (Federal Democratic Republic of)",3.17], + ["Jordan (Hashemite Kingdom of)",3.17], + ["Iraq (Republic of)",3.13], + ["Oman (Sultanate of)",3.12], + ["Rwanda (Republic of)",3.1], + ["Burkina Faso",3.08], + ["Kazakhstan (Republic of)",3.08], + ["Eswatini (Kingdom of)",3.01], + ["Togo (Togolese Republic)",2.99], + ["Egypt (Arab Republic of)",2.93], + ["Zimbabwe (Republic of)",2.92], + ["United Arab Emirates",2.9], + ["Azerbaijan (Republic of)",2.87], + ["Haiti (Republic of)",2.81], + ["Congo (Republic of the)",2.79], + ["Djibouti (Republic of)",2.74], + ["Vietnam (Socialist Republic of)",2.73], + ["Cuba (Republic of)",2.65], + ["Cameroon (Republic of)",2.56], + ["Guinea-Bissau (Republic of)",2.56], + ["Bahrain (Kingdom of)",2.52], + ["Nicaragua (Republic of)",2.5], + ["Sudan (Republic of the)",2.47], + ["Guinea (Republic of)",2.32], + ["Russian Federation",2.28], + ["Venezuela (Bolivarian Republic of)",2.23], + ["Burundi (Republic of)",2.13], + ["Uzbekistan (Republic of)",2.12], + ["Saudi Arabia (Kingdom of)",2.08], + ["Libya (State of)",2.06], + ["Eritrea (State of)",2.03], + ["Belarus (Republic of)",1.99], + ["Iran (Islamic Republic of)",1.96], + ["Yemen (Republic of)",1.95], + ["China (People's Republic of)",1.94], + ["Tajikistan (Republic of)",1.94], + ["Equatorial Guinea (Republic of)",1.92], + ["Lao (People's Democratic Republic)",1.77], + ["Chad (Republic of)",1.67], + ["Turkmenistan",1.66], + ["Congo (Democratic Republic of the)",1.48], + ["Syrian Arab Republic",1.43], + ["Central African Republic",1.35], + ["Korea (Democratic People's Republic of)",1.08], + ["Myanmar (Union of)",0.74], + ["Afghanistan (Islamic Republic of)",0.32] + ] +} diff --git a/data/global/politics/governance/freedom-in-the-world.json b/data/global/politics/governance/freedom-in-the-world.json new file mode 100644 index 0000000..2d48b32 --- /dev/null +++ b/data/global/politics/governance/freedom-in-the-world.json @@ -0,0 +1,216 @@ +{ + "metadata" : { + "name" : "Freedom In The World (FITW)", + "description" : "Survey that measures the degree of civil liberties and political rights.", + "units" : "index", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "politics", + "tags" : ["global","politics","governance","freedom","rights"], + "authors" : [ + "Freedom House NGO" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Freedom_in_the_World" + ] + }, + "data" : [ + ["country.name","fitw.score"], + ["Afghanistan (Islamic Republic of)",27], + ["Albania (Republic of)",66], + ["Algeria (People's Democratic Republic of)",32], + ["Andorra (Principality of)",93], + ["Angola (Republic of)",31], + ["Antigua and Barbuda",85], + ["Argentina (Argentine Republic)",84], + ["Armenia (Republic of)",55], + ["Australia (Commonwealth of)",97], + ["Austria (Republic of)",93], + ["Azerbaijan (Republic of)",10], + ["Bahamas (Commonwealth of the)",91], + ["Bahrain (Kingdom of)",12], + ["Bangladesh (People's Republic of)",39], + ["Barbados",95], + ["Belarus (Republic of)",11], + ["Belgium (Kingdom of)",96], + ["Belize",87], + ["Benin (Republic of)",65], + ["Bhutan (Kingdom of)",61], + ["Bolivia (Plurinational State of)",66], + ["Bosnia and Herzegovina",53], + ["Botswana (Republic of)",72], + ["Brazil (Federative Republic of)",74], + ["Brunei (Nation of the Abode of Peace)",28], + ["Bulgaria (Republic of)",78], + ["Burkina Faso",54], + ["Burundi (Republic of)",14], + ["Cambodia (Kingdom of)",24], + ["Cameroon (Republic of)",16], + ["Canada",98], + ["Cape Verde (Republic of)",92], + ["Central African Republic",9], + ["Chad (Republic of)",17], + ["Chile (Republic of)",93], + ["China (People's Republic of)",9], + ["Colombia (Republic of)",65], + ["Comoros (Union of the)",42], + ["Congo (Democratic Republic of the)",20], + ["Congo (Republic of the)",20], + ["Costa Rica (Republic of)",91], + ["Croatia (Republic of)",85], + ["Cuba (Republic of)",13], + ["Cyprus (Republic of)",94], + ["Czech Republic",91], + ["Denmark (Kingdom of)",97], + ["Djibouti (Republic of)",24], + ["Dominica (Commonwealth of)",93], + ["Dominican Republic",67], + ["Timor-Leste (Democratic Republic of)",72], + ["Ecuador (Republic of)",67], + ["Egypt (Arab Republic of)",18], + ["El Salvador (Republic of)",63], + ["Equatorial Guinea (Republic of)",5], + ["Eritrea (State of)",2], + ["Estonia (Republic of)",94], + ["Ethiopia (Federal Democratic Republic of)",22], + ["Eswatini (Kingdom of)",19], + ["Fiji (Republic of)",60], + ["Finland (Republic of)",100], + ["France (French Republic)",90], + ["Gabon (Gabonese Republic)",22], + ["Gambia (Republic of the)",46], + ["Georgia",60], + ["Germany (Federal Republic of)",94], + ["Ghana (Republic of)",82], + ["Greece (Hellenic Republic)",87], + ["Grenada",89], + ["Guatemala (Republic of)",52], + ["Guinea (Republic of)",38], + ["Guinea-Bissau (Republic of)",44], + ["Guyana (Co-operative Republic of)",73], + ["Haiti (Republic of)",37], + ["Honduras (Republic of)",44], + ["Hungary (Republic of)",69], + ["Iceland (Republic of)",94], + ["India (Republic of)",67], + ["Indonesia (Republic of)",59], + ["Iran (Islamic Republic of)",16], + ["Iraq (Republic of)",29], + ["Ireland",97], + ["Israel (State of)",76], + ["Italy (Italian Republic)",90], + ["Côte d'Ivoire (Republic of)",44], + ["Jamaica",80], + ["Japan",96], + ["Jordan (Hashemite Kingdom of)",34], + ["Kazakhstan (Republic of)",23], + ["Kenya (Republic of)",48], + ["Kiribati (Republic of)",93], + ["Kosovo (Republic of)",54], + ["Kuwait (State of)",37], + ["Kyrgyz Republic",28], + ["Lao (People's Democratic Republic)",13], + ["Latvia (Republic of)",89], + ["Lebanon (Lebanese Republic)",43], + ["Lesotho (Kingdom of)",63], + ["Liberia (Republic of)",60], + ["Libya (State of)",9], + ["Liechtenstein (Principality of)",90], + ["Lithuania (Republic of)",90], + ["Luxembourg (Grand Duchy of)",97], + ["Madagascar (Republic of)",60], + ["Malawi (Republic of)",66], + ["Malaysia",51], + ["Maldives (Republic of)",40], + ["Mali (Republic of)",33], + ["Malta (Republic of)",90], + ["Marshall Islands (Republic of the)",93], + ["Mauritania (Islamic Republic of)",35], + ["Mauritius (Republic of)",87], + ["Mexico (United Mexican States)",61], + ["Micronesia (Federated States of)",92], + ["Moldova (Republic of)",61], + ["Monaco (Principality of)",83], + ["Mongolia",84], + ["Montenegro",63], + ["Morocco (Kingdom of)",37], + ["Mozambique (Republic of)",43], + ["Myanmar (Union of)",28], + ["Namibia (Republic of)",77], + ["Nauru (Republic of)",77], + ["Nepal (Federal Democratic Republic of)",56], + ["Netherlands (Kingdom of the)",98], + ["New Zealand",99], + ["Nicaragua (Republic of)",30], + ["Niger (Republic of)",48], + ["Nigeria (Federal Republic of)",45], + ["Korea (Democratic People's Republic of)",3], + ["North Macedonia (Republic of)",66], + ["Norway (Kingdom of)",100], + ["Oman (Sultanate of)",23], + ["Pakistan (Islamic Republic of)",37], + ["Palau (Republic of)",92], + ["Panama (Republic of)",83], + ["Papua New Guinea (Independent State of)",62], + ["Paraguay (Republic of)",65], + ["Peru (Republic of)",71], + ["Philippines (Republic of the)",56], + ["Poland (Republic of)",82], + ["Portugal (Portuguese Republic)",96], + ["Qatar (State of)",25], + ["Romania",83], + ["Russian Federation",20], + ["Rwanda (Republic of)",21], + ["Saint Kitts and Nevis (Federation of)",89], + ["Saint Lucia",91], + ["Saint Vincent and the Grenadines",91], + ["Samoa (Independent State of)",81], + ["San Marino (Republic of)",93], + ["São Tomé and Príncipe (Democratic Republic of)",84], + ["Saudi Arabia (Kingdom of)",7], + ["Senegal (Republic of)",71], + ["Serbia (Republic of)",64], + ["Seychelles (Republic of)",77], + ["Sierra Leone (Republic of)",65], + ["Singapore (Republic of)",48], + ["Slovakia (Slovak Republic)",90], + ["Slovenia (Republic of)",95], + ["Solomon Islands",79], + ["Somalia (Federal Republic of)",7], + ["South Africa (Republic of)",79], + ["Korea (Republic of)",83], + ["South Sudan (Republic of)",2], + ["Spain (Kingdom of)",90], + ["Sri Lanka (Democratic Socialist Republic of)",56], + ["Sudan (Republic of the)",17], + ["Suriname (Republic of)",79], + ["Sweden (Kingdom of)",100], + ["Switzerland (Swiss Confederation)",96], + ["Syrian Arab Republic",1], + ["Tajikistan (Republic of)",8], + ["Tanzania (United Republic of)",34], + ["Thailand (Kingdom of)",30], + ["Togo (Togolese Republic)",43], + ["Tonga (Kingdom of)",79], + ["Trinidad and Tobago (Republic of)",82], + ["Tunisia (Republic of)",71], + ["Turkey (Republic of)",32], + ["Turkmenistan",2], + ["Tuvalu",93], + ["Uganda (Republic of)",34], + ["Ukraine",60], + ["United Arab Emirates",17], + ["United Kingdom (of Great Britain & Northern Ireland)",93], + ["United States (of America)",83], + ["Uruguay (Oriental Republic of)",98], + ["Uzbekistan (Republic of)",11], + ["Vanuatu (Republic of)",82], + ["Venezuela (Bolivarian Republic of)",14], + ["Vietnam (Socialist Republic of)",19], + ["Yemen (Republic of)",11], + ["Zambia (Republic of)",52], + ["Zimbabwe (Republic of)",28] + ] +} diff --git a/data/global/politics/military/military-personel/military-personel-active.json b/data/global/politics/military/military-personel/military-personel-active.json new file mode 100644 index 0000000..e671c91 --- /dev/null +++ b/data/global/politics/military/military-personel/military-personel-active.json @@ -0,0 +1,194 @@ +{ + "metadata" : { + "name" : "Active Military Personel", + "description" : "Number of active millitary personel.", + "units" : "people", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "military", + "tags" : ["global","demographics","politics","millitary"], + "authors" : [ + "International Institute for Strategic Studies" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_number_of_military_and_paramilitary_personnel" + ] + }, + "data" : [ + ["country.name","military.personel.active"], + ["Afghanistan (Islamic Republic of)",250000], + ["Albania (Republic of)",8000], + ["Algeria (People's Democratic Republic of)",130000], + ["Angola (Republic of)",107000], + ["Antigua and Barbuda",180], + ["Argentina (Argentine Republic)",72100], + ["Armenia (Republic of)",44800], + ["Australia (Commonwealth of)",58600], + ["Austria (Republic of)",22050], + ["Azerbaijan (Republic of)",126950], + ["Bahamas (Commonwealth of the)",1300], + ["Bahrain (Kingdom of)",8200], + ["Bangladesh (People's Republic of)",163050], + ["Barbados",610], + ["Belarus (Republic of)",45350], + ["Belgium (Kingdom of)",26300], + ["Belize",1500], + ["Benin (Republic of)",7250], + ["Bolivia (Plurinational State of)",34100], + ["Bosnia and Herzegovina",10500], + ["Botswana (Republic of)",9000], + ["Brazil (Federative Republic of)",366500], + ["Brunei (Nation of the Abode of Peace)",7200], + ["Bulgaria (Republic of)",36950], + ["Burkina Faso",11200], + ["Burundi (Republic of)",30050], + ["Cambodia (Kingdom of)",124300], + ["Cameroon (Republic of)",25400], + ["Canada",67400], + ["Cape Verde (Republic of)",1200], + ["Central African Republic",9150], + ["Chad (Republic of)",33250], + ["Chile (Republic of)",77200], + ["China (People's Republic of)",2185000], + ["Colombia (Republic of)",293200], + ["Costa Rica (Republic of)",0], + ["Côte d'Ivoire (Republic of)",27400], + ["Croatia (Republic of)",15200], + ["Cuba (Republic of)",49000], + ["Cyprus (Republic of)",15000], + ["Czech Republic",21750], + ["Congo (Democratic Republic of the)",134250], + ["Denmark (Kingdom of)",14500], + ["Djibouti (Republic of)",10450], + ["Dominican Republic",56050], + ["Timor-Leste (Democratic Republic of)",2280], + ["Ecuador (Republic of)",40250], + ["Egypt (Arab Republic of)",438500], + ["El Salvador (Republic of)",24500], + ["Equatorial Guinea (Republic of)",1450], + ["Eritrea (State of)",201750], + ["Estonia (Republic of)",7100], + ["Ethiopia (Federal Democratic Republic of)",138000], + ["Fiji (Republic of)",3500], + ["Finland (Republic of)",23800], + ["France (French Republic)",208750], + ["Gabon (Gabonese Republic)",4700], + ["Gambia (Republic of the)",800], + ["Georgia",20650], + ["Germany (Federal Republic of)",183500], + ["Ghana (Republic of)",15500], + ["Greece (Hellenic Republic)",142700], + ["Guatemala (Republic of)",18050], + ["Guinea (Republic of)",9700], + ["Guinea-Bissau (Republic of)",4450], + ["Guyana (Co-operative Republic of)",3400], + ["Haiti (Republic of)",150], + ["Honduras (Republic of)",14950], + ["Hungary (Republic of)",27800], + ["Iceland (Republic of)",0], + ["India (Republic of)",1455550], + ["Indonesia (Republic of)",395500], + ["Iran (Islamic Republic of)",610000], + ["Iraq (Republic of)",193000], + ["Ireland",9500], + ["Israel (State of)",169500], + ["Italy (Italian Republic)",165500], + ["Jamaica",3950], + ["Japan",247150], + ["Jordan (Hashemite Kingdom of)",100500], + ["Kazakhstan (Republic of)",39000], + ["Kenya (Republic of)",24100], + ["Kosovo (Republic of)",5000], + ["Kuwait (State of)",17500], + ["Kyrgyz Republic",10900], + ["Lao (People's Democratic Republic)",29100], + ["Latvia (Republic of)",6210], + ["Lebanon (Lebanese Republic)",60000], + ["Lesotho (Kingdom of)",2000], + ["Liberia (Republic of)",2010], + ["Libya (State of)",0], + ["Lithuania (Republic of)",19850], + ["Luxembourg (Grand Duchy of)",900], + ["Madagascar (Republic of)",13500], + ["Malawi (Republic of)",10700], + ["Malaysia",113000], + ["Mali (Republic of)",13000], + ["Malta (Republic of)",1950], + ["Mauritania (Islamic Republic of)",15850], + ["Mauritius (Republic of)",0], + ["Mexico (United Mexican States)",216000], + ["Moldova (Republic of)",5150], + ["Mongolia",9700], + ["Montenegro",2350], + ["Morocco (Kingdom of)",195800], + ["Mozambique (Republic of)",11200], + ["Myanmar (Union of)",406000], + ["Namibia (Republic of)",9900], + ["Nepal (Federal Democratic Republic of)",96600], + ["Netherlands (Kingdom of the)",35400], + ["New Zealand",9000], + ["Nicaragua (Republic of)",12000], + ["Niger (Republic of)",5300], + ["Nigeria (Federal Republic of)",143000], + ["Korea (Democratic People's Republic of)",1280000], + ["North Macedonia (Republic of)",8000], + ["Norway (Kingdom of)",23250], + ["Oman (Sultanate of)",42600], + ["Pakistan (Islamic Republic of)",654000], + ["Palestine (State of)",0], + ["Panama (Republic of)",0], + ["Papua New Guinea (Independent State of)",3600], + ["Paraguay (Republic of)",13950], + ["Peru (Republic of)",81000], + ["Philippines (Republic of the)",143100], + ["Poland (Republic of)",114050], + ["Portugal (Portuguese Republic)",27250], + ["Qatar (State of)",16500], + ["Congo (Republic of the)",10000], + ["Romania",69300], + ["Russian Federation",1154000], + ["Rwanda (Republic of)",33000], + ["Saudi Arabia (Kingdom of)",227000], + ["Senegal (Republic of)",13600], + ["Serbia (Republic of)",28150], + ["Seychelles (Republic of)",420], + ["Sierra Leone (Republic of)",8500], + ["Singapore (Republic of)",51000], + ["Slovakia (Slovak Republic)",15850], + ["Slovenia (Republic of)",7250], + ["Somalia (Federal Republic of)",19800], + ["South Africa (Republic of)",65350], + ["Korea (Republic of)",599000], + ["South Sudan (Republic of)",185000], + ["Spain (Kingdom of)",120350], + ["Sri Lanka (Democratic Socialist Republic of)",255000], + ["Sudan (Republic of the)",104300], + ["Suriname (Republic of)",1840], + ["Sweden (Kingdom of)",29750], + ["Switzerland (Swiss Confederation)",19550], + ["Syrian Arab Republic",169000], + ["Taiwan",163000], + ["Tajikistan (Republic of)",8800], + ["Tanzania (United Republic of)",27000], + ["Thailand (Kingdom of)",360850], + ["Togo (Togolese Republic)",8550], + ["Trinidad and Tobago (Republic of)",4050], + ["Tunisia (Republic of)",35800], + ["Turkey (Republic of)",425000], + ["Turkmenistan",36500], + ["Uganda (Republic of)",45000], + ["Ukraine",209000], + ["United Arab Emirates",63000], + ["United Kingdom (of Great Britain & Northern Ireland)",138500], + ["United States (of America)",1388100], + ["Uruguay (Oriental Republic of)",21000], + ["Uzbekistan (Republic of)",48000], + ["Venezuela (Bolivarian Republic of)",123000], + ["Vietnam (Socialist Republic of)",482000], + ["Yemen (Republic of)",40000], + ["Zambia (Republic of)",15100], + ["Zimbabwe (Republic of)",29000] + ] +} diff --git a/data/global/politics/military/military-personel/military-personel-paramilitary.json b/data/global/politics/military/military-personel/military-personel-paramilitary.json new file mode 100644 index 0000000..a12fd15 --- /dev/null +++ b/data/global/politics/military/military-personel/military-personel-paramilitary.json @@ -0,0 +1,194 @@ +{ + "metadata" : { + "name" : "Paramilitary Personel", + "description" : "Number of paramilitary personel.", + "units" : "people", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "military", + "tags" : ["global","demographics","politics","millitary"], + "authors" : [ + "International Institute for Strategic Studies" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_number_of_military_and_paramilitary_personnel" + ] + }, + "data" : [ + ["country.name","military.personel.paramilitary"], + ["Afghanistan (Islamic Republic of)",170000], + ["Albania (Republic of)",0], + ["Algeria (People's Democratic Republic of)",187200], + ["Angola (Republic of)",10000], + ["Antigua and Barbuda",0], + ["Argentina (Argentine Republic)",31250], + ["Armenia (Republic of)",4300], + ["Australia (Commonwealth of)",0], + ["Austria (Republic of)",0], + ["Azerbaijan (Republic of)",15000], + ["Bahamas (Commonwealth of the)",0], + ["Bahrain (Kingdom of)",11260], + ["Bangladesh (People's Republic of)",63900], + ["Barbados",0], + ["Belarus (Republic of)",110000], + ["Belgium (Kingdom of)",0], + ["Belize",150], + ["Benin (Republic of)",4800], + ["Bolivia (Plurinational State of)",37100], + ["Bosnia and Herzegovina",0], + ["Botswana (Republic of)",0], + ["Brazil (Federative Republic of)",395000], + ["Brunei (Nation of the Abode of Peace)",450], + ["Bulgaria (Republic of)",0], + ["Burkina Faso",250], + ["Burundi (Republic of)",21000], + ["Cambodia (Kingdom of)",67000], + ["Cameroon (Republic of)",9000], + ["Canada",4500], + ["Cape Verde (Republic of)",0], + ["Central African Republic",1000], + ["Chad (Republic of)",11900], + ["Chile (Republic of)",44700], + ["China (People's Republic of)",660000], + ["Colombia (Republic of)",187900], + ["Costa Rica (Republic of)",9800], + ["Côte d'Ivoire (Republic of)",0], + ["Croatia (Republic of)",3000], + ["Cuba (Republic of)",1146500], + ["Cyprus (Republic of)",750], + ["Czech Republic",0], + ["Congo (Democratic Republic of the)",0], + ["Denmark (Kingdom of)",0], + ["Djibouti (Republic of)",2650], + ["Dominican Republic",15000], + ["Timor-Leste (Democratic Republic of)",0], + ["Ecuador (Republic of)",500], + ["Egypt (Arab Republic of)",397000], + ["El Salvador (Republic of)",17000], + ["Equatorial Guinea (Republic of)",0], + ["Eritrea (State of)",0], + ["Estonia (Republic of)",0], + ["Ethiopia (Federal Democratic Republic of)",0], + ["Fiji (Republic of)",0], + ["Finland (Republic of)",14200], + ["France (French Republic)",30800], + ["Gabon (Gabonese Republic)",2000], + ["Gambia (Republic of the)",0], + ["Georgia",5400], + ["Germany (Federal Republic of)",0], + ["Ghana (Republic of)",0], + ["Greece (Hellenic Republic)",4000], + ["Guatemala (Republic of)",25000], + ["Guinea (Republic of)",2600], + ["Guinea-Bissau (Republic of)",0], + ["Guyana (Co-operative Republic of)",0], + ["Haiti (Republic of)",50], + ["Honduras (Republic of)",8000], + ["Hungary (Republic of)",12000], + ["Iceland (Republic of)",250], + ["India (Republic of)",2526950], + ["Indonesia (Republic of)",280000], + ["Iran (Islamic Republic of)",40000], + ["Iraq (Republic of)",148000], + ["Ireland",0], + ["Israel (State of)",8000], + ["Italy (Italian Republic)",175750], + ["Jamaica",0], + ["Japan",14350], + ["Jordan (Hashemite Kingdom of)",15000], + ["Kazakhstan (Republic of)",31500], + ["Kenya (Republic of)",5000], + ["Kosovo (Republic of)",1500], + ["Kuwait (State of)",7100], + ["Kyrgyz Republic",9500], + ["Lao (People's Democratic Republic)",100000], + ["Latvia (Republic of)",0], + ["Lebanon (Lebanese Republic)",20000], + ["Lesotho (Kingdom of)",0], + ["Liberia (Republic of)",0], + ["Libya (State of)",0], + ["Lithuania (Republic of)",14400], + ["Luxembourg (Grand Duchy of)",600], + ["Madagascar (Republic of)",8100], + ["Malawi (Republic of)",4200], + ["Malaysia",267200], + ["Mali (Republic of)",7800], + ["Malta (Republic of)",0], + ["Mauritania (Islamic Republic of)",5000], + ["Mauritius (Republic of)",2550], + ["Mexico (United Mexican States)",111900], + ["Moldova (Republic of)",900], + ["Mongolia",7500], + ["Montenegro",10100], + ["Morocco (Kingdom of)",50000], + ["Mozambique (Republic of)",0], + ["Myanmar (Union of)",107000], + ["Namibia (Republic of)",6000], + ["Nepal (Federal Democratic Republic of)",15000], + ["Netherlands (Kingdom of the)",5900], + ["New Zealand",0], + ["Nicaragua (Republic of)",0], + ["Niger (Republic of)",5400], + ["Nigeria (Federal Republic of)",80000], + ["Korea (Democratic People's Republic of)",5889000], + ["North Macedonia (Republic of)",7600], + ["Norway (Kingdom of)",0], + ["Oman (Sultanate of)",4400], + ["Pakistan (Islamic Republic of)",291000], + ["Palestine (State of)",0], + ["Panama (Republic of)",26000], + ["Papua New Guinea (Independent State of)",0], + ["Paraguay (Republic of)",14800], + ["Peru (Republic of)",77000], + ["Philippines (Republic of the)",62300], + ["Poland (Republic of)",75400], + ["Portugal (Portuguese Republic)",24700], + ["Qatar (State of)",5000], + ["Congo (Republic of the)",2000], + ["Romania",57000], + ["Russian Federation",554000], + ["Rwanda (Republic of)",2000], + ["Saudi Arabia (Kingdom of)",24500], + ["Senegal (Republic of)",5000], + ["Serbia (Republic of)",3700], + ["Seychelles (Republic of)",0], + ["Sierra Leone (Republic of)",0], + ["Singapore (Republic of)",7400], + ["Slovakia (Slovak Republic)",0], + ["Slovenia (Republic of)",5950], + ["Somalia (Federal Republic of)",0], + ["South Africa (Republic of)",0], + ["Korea (Republic of)",3013500], + ["South Sudan (Republic of)",0], + ["Spain (Kingdom of)",75800], + ["Sri Lanka (Democratic Socialist Republic of)",92600], + ["Sudan (Republic of the)",105000], + ["Suriname (Republic of)",0], + ["Sweden (Kingdom of)",21200], + ["Switzerland (Swiss Confederation)",0], + ["Syrian Arab Republic",100000], + ["Taiwan",11800], + ["Tajikistan (Republic of)",7500], + ["Tanzania (United Republic of)",1400], + ["Thailand (Kingdom of)",138700], + ["Togo (Togolese Republic)",750], + ["Trinidad and Tobago (Republic of)",0], + ["Tunisia (Republic of)",12000], + ["Turkey (Republic of)",156800], + ["Turkmenistan",5000], + ["Uganda (Republic of)",1400], + ["Ukraine",102000], + ["United Arab Emirates",0], + ["United Kingdom (of Great Britain & Northern Ireland)",0], + ["United States (of America)",0], + ["Uruguay (Oriental Republic of)",1400], + ["Uzbekistan (Republic of)",20000], + ["Venezuela (Bolivarian Republic of)",220000], + ["Vietnam (Socialist Republic of)",40000], + ["Yemen (Republic of)",0], + ["Zambia (Republic of)",1400], + ["Zimbabwe (Republic of)",21800] + ] +} diff --git a/data/global/politics/military/military-personel/military-personel-reserve.json b/data/global/politics/military/military-personel/military-personel-reserve.json new file mode 100644 index 0000000..4df8b42 --- /dev/null +++ b/data/global/politics/military/military-personel/military-personel-reserve.json @@ -0,0 +1,194 @@ +{ + "metadata" : { + "name" : "Military Personel Reserve", + "description" : "Size of millitary by personel and status.", + "units" : "people", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "military", + "tags" : ["global","demographics","politics","millitary"], + "authors" : [ + "International Institute for Strategic Studies" + ], + "sources" : [ + "" + ] + }, + "data" : [ + ["country.name","military.personel.reserve"], + ["Afghanistan (Islamic Republic of)",75000], + ["Albania (Republic of)",0], + ["Algeria (People's Democratic Republic of)",150000], + ["Angola (Republic of)",0], + ["Antigua and Barbuda",80], + ["Argentina (Argentine Republic)",0], + ["Armenia (Republic of)",210000], + ["Australia (Commonwealth of)",30100], + ["Austria (Republic of)",125600], + ["Azerbaijan (Republic of)",330000], + ["Bahamas (Commonwealth of the)",0], + ["Bahrain (Kingdom of)",0], + ["Bangladesh (People's Republic of)",0], + ["Barbados",430], + ["Belarus (Republic of)",289500], + ["Belgium (Kingdom of)",5100], + ["Belize",700], + ["Benin (Republic of)",0], + ["Bolivia (Plurinational State of)",0], + ["Bosnia and Herzegovina",0], + ["Botswana (Republic of)",0], + ["Brazil (Federative Republic of)",1340000], + ["Brunei (Nation of the Abode of Peace)",700], + ["Bulgaria (Republic of)",3000], + ["Burkina Faso",0], + ["Burundi (Republic of)",0], + ["Cambodia (Kingdom of)",0], + ["Cameroon (Republic of)",0], + ["Canada",35600], + ["Cape Verde (Republic of)",0], + ["Central African Republic",0], + ["Chad (Republic of)",0], + ["Chile (Republic of)",40000], + ["China (People's Republic of)",1170000], + ["Colombia (Republic of)",34950], + ["Costa Rica (Republic of)",0], + ["Côte d'Ivoire (Republic of)",0], + ["Croatia (Republic of)",18350], + ["Cuba (Republic of)",39000], + ["Cyprus (Republic of)",50000], + ["Czech Republic",0], + ["Congo (Democratic Republic of the)",0], + ["Denmark (Kingdom of)",44000], + ["Djibouti (Republic of)",0], + ["Dominican Republic",0], + ["Timor-Leste (Democratic Republic of)",0], + ["Ecuador (Republic of)",118000], + ["Egypt (Arab Republic of)",479000], + ["El Salvador (Republic of)",9900], + ["Equatorial Guinea (Republic of)",0], + ["Eritrea (State of)",120000], + ["Estonia (Republic of)",17500], + ["Ethiopia (Federal Democratic Republic of)",0], + ["Fiji (Republic of)",6000], + ["Finland (Republic of)",254000], + ["France (French Republic)",141050], + ["Gabon (Gabonese Republic)",0], + ["Gambia (Republic of the)",0], + ["Georgia",0], + ["Germany (Federal Republic of)",50050], + ["Ghana (Republic of)",0], + ["Greece (Hellenic Republic)",221350], + ["Guatemala (Republic of)",63850], + ["Guinea (Republic of)",0], + ["Guinea-Bissau (Republic of)",0], + ["Guyana (Co-operative Republic of)",670], + ["Haiti (Republic of)",0], + ["Honduras (Republic of)",60000], + ["Hungary (Republic of)",20000], + ["Iceland (Republic of)",0], + ["India (Republic of)",1155000], + ["Indonesia (Republic of)",400000], + ["Iran (Islamic Republic of)",350000], + ["Iraq (Republic of)",0], + ["Ireland",4050], + ["Israel (State of)",465000], + ["Italy (Italian Republic)",18300], + ["Jamaica",980], + ["Japan",56000], + ["Jordan (Hashemite Kingdom of)",65000], + ["Kazakhstan (Republic of)",0], + ["Kenya (Republic of)",0], + ["Kosovo (Republic of)",3000], + ["Kuwait (State of)",23700], + ["Kyrgyz Republic",0], + ["Lao (People's Democratic Republic)",0], + ["Latvia (Republic of)",15900], + ["Lebanon (Lebanese Republic)",0], + ["Lesotho (Kingdom of)",0], + ["Liberia (Republic of)",0], + ["Libya (State of)",0], + ["Lithuania (Republic of)",6700], + ["Luxembourg (Grand Duchy of)",0], + ["Madagascar (Republic of)",0], + ["Malawi (Republic of)",0], + ["Malaysia",51600], + ["Mali (Republic of)",0], + ["Malta (Republic of)",180], + ["Mauritania (Islamic Republic of)",0], + ["Mauritius (Republic of)",0], + ["Mexico (United Mexican States)",81500], + ["Moldova (Republic of)",58000], + ["Mongolia",137000], + ["Montenegro",0], + ["Morocco (Kingdom of)",150000], + ["Mozambique (Republic of)",0], + ["Myanmar (Union of)",0], + ["Namibia (Republic of)",0], + ["Nepal (Federal Democratic Republic of)",0], + ["Netherlands (Kingdom of the)",4500], + ["New Zealand",2300], + ["Nicaragua (Republic of)",0], + ["Niger (Republic of)",0], + ["Nigeria (Federal Republic of)",0], + ["Korea (Democratic People's Republic of)",600000], + ["North Macedonia (Republic of)",4850], + ["Norway (Kingdom of)",40000], + ["Oman (Sultanate of)",0], + ["Pakistan (Islamic Republic of)",550000], + ["Palestine (State of)",0], + ["Panama (Republic of)",0], + ["Papua New Guinea (Independent State of)",0], + ["Paraguay (Republic of)",164500], + ["Peru (Republic of)",188000], + ["Philippines (Republic of the)",131000], + ["Poland (Republic of)",0], + ["Portugal (Portuguese Republic)",211700], + ["Qatar (State of)",0], + ["Congo (Republic of the)",0], + ["Romania",50000], + ["Russian Federation",2000000], + ["Rwanda (Republic of)",0], + ["Saudi Arabia (Kingdom of)",0], + ["Senegal (Republic of)",0], + ["Serbia (Republic of)",50150], + ["Seychelles (Republic of)",0], + ["Sierra Leone (Republic of)",0], + ["Singapore (Republic of)",252500], + ["Slovakia (Slovak Republic)",0], + ["Slovenia (Republic of)",1500], + ["Somalia (Federal Republic of)",0], + ["South Africa (Republic of)",15050], + ["Korea (Republic of)",3100000], + ["South Sudan (Republic of)",0], + ["Spain (Kingdom of)",15150], + ["Sri Lanka (Democratic Socialist Republic of)",5500], + ["Sudan (Republic of the)",0], + ["Suriname (Republic of)",0], + ["Sweden (Kingdom of)",0], + ["Switzerland (Swiss Confederation)",196450], + ["Syrian Arab Republic",0], + ["Taiwan",1657000], + ["Tajikistan (Republic of)",0], + ["Tanzania (United Republic of)",80000], + ["Thailand (Kingdom of)",200000], + ["Togo (Togolese Republic)",0], + ["Trinidad and Tobago (Republic of)",0], + ["Tunisia (Republic of)",0], + ["Turkey (Republic of)",200000], + ["Turkmenistan",0], + ["Uganda (Republic of)",10000], + ["Ukraine",900000], + ["United Arab Emirates",0], + ["United Kingdom (of Great Britain & Northern Ireland)",78600], + ["United States (of America)",744950], + ["Uruguay (Oriental Republic of)",0], + ["Uzbekistan (Republic of)",0], + ["Venezuela (Bolivarian Republic of)",8000], + ["Vietnam (Socialist Republic of)",5000000], + ["Yemen (Republic of)",0], + ["Zambia (Republic of)",3000], + ["Zimbabwe (Republic of)",0] + ] +} diff --git a/data/global/politics/military/military-personel/military-personel.json b/data/global/politics/military/military-personel/military-personel.json new file mode 100644 index 0000000..d5156de --- /dev/null +++ b/data/global/politics/military/military-personel/military-personel.json @@ -0,0 +1,194 @@ +{ + "metadata" : { + "name" : "Total Military Personel", + "description" : "Total number of military personel.", + "units" : "people", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "military", + "tags" : ["global","demographics","politics","millitary"], + "authors" : [ + "International Institute for Strategic Studies" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_number_of_military_and_paramilitary_personnel" + ] + }, + "data" : [ + ["country.name","military.personel"], + ["Afghanistan (Islamic Republic of)",495000], + ["Albania (Republic of)",8000], + ["Algeria (People's Democratic Republic of)",467200], + ["Angola (Republic of)",117000], + ["Antigua and Barbuda",260], + ["Argentina (Argentine Republic)",103350], + ["Armenia (Republic of)",259100], + ["Australia (Commonwealth of)",88700], + ["Austria (Republic of)",147650], + ["Azerbaijan (Republic of)",471950], + ["Bahamas (Commonwealth of the)",1300], + ["Bahrain (Kingdom of)",19460], + ["Bangladesh (People's Republic of)",226950], + ["Barbados",1040], + ["Belarus (Republic of)",444850], + ["Belgium (Kingdom of)",31400], + ["Belize",2350], + ["Benin (Republic of)",12050], + ["Bolivia (Plurinational State of)",71200], + ["Bosnia and Herzegovina",10500], + ["Botswana (Republic of)",9000], + ["Brazil (Federative Republic of)",2101500], + ["Brunei (Nation of the Abode of Peace)",8350], + ["Bulgaria (Republic of)",39950], + ["Burkina Faso",11450], + ["Burundi (Republic of)",51050], + ["Cambodia (Kingdom of)",191300], + ["Cameroon (Republic of)",34400], + ["Canada",107500], + ["Cape Verde (Republic of)",1200], + ["Central African Republic",10150], + ["Chad (Republic of)",45150], + ["Chile (Republic of)",161900], + ["China (People's Republic of)",4015000], + ["Colombia (Republic of)",516050], + ["Costa Rica (Republic of)",9800], + ["Côte d'Ivoire (Republic of)",27400], + ["Croatia (Republic of)",36550], + ["Cuba (Republic of)",1234500], + ["Cyprus (Republic of)",65750], + ["Czech Republic",21750], + ["Congo (Democratic Republic of the)",134250], + ["Denmark (Kingdom of)",58500], + ["Djibouti (Republic of)",13100], + ["Dominican Republic",71050], + ["Timor-Leste (Democratic Republic of)",2280], + ["Ecuador (Republic of)",158750], + ["Egypt (Arab Republic of)",1314500], + ["El Salvador (Republic of)",51400], + ["Equatorial Guinea (Republic of)",1450], + ["Eritrea (State of)",321750], + ["Estonia (Republic of)",24600], + ["Ethiopia (Federal Democratic Republic of)",138000], + ["Fiji (Republic of)",9500], + ["Finland (Republic of)",292000], + ["France (French Republic)",380600], + ["Gabon (Gabonese Republic)",6700], + ["Gambia (Republic of the)",800], + ["Georgia",26050], + ["Germany (Federal Republic of)",233550], + ["Ghana (Republic of)",15500], + ["Greece (Hellenic Republic)",368050], + ["Guatemala (Republic of)",106900], + ["Guinea (Republic of)",12300], + ["Guinea-Bissau (Republic of)",4450], + ["Guyana (Co-operative Republic of)",4070], + ["Haiti (Republic of)",200], + ["Honduras (Republic of)",82950], + ["Hungary (Republic of)",59800], + ["Iceland (Republic of)",250], + ["India (Republic of)",5137500], + ["Indonesia (Republic of)",1075500], + ["Iran (Islamic Republic of)",1000000], + ["Iraq (Republic of)",341000], + ["Ireland",13550], + ["Israel (State of)",642500], + ["Italy (Italian Republic)",359550], + ["Jamaica",4930], + ["Japan",317500], + ["Jordan (Hashemite Kingdom of)",180500], + ["Kazakhstan (Republic of)",70500], + ["Kenya (Republic of)",29100], + ["Kosovo (Republic of)",9500], + ["Kuwait (State of)",48300], + ["Kyrgyz Republic",20400], + ["Lao (People's Democratic Republic)",129100], + ["Latvia (Republic of)",22110], + ["Lebanon (Lebanese Republic)",80000], + ["Lesotho (Kingdom of)",2000], + ["Liberia (Republic of)",2010], + ["Libya (State of)",0], + ["Lithuania (Republic of)",40950], + ["Luxembourg (Grand Duchy of)",1500], + ["Madagascar (Republic of)",21600], + ["Malawi (Republic of)",14900], + ["Malaysia",431800], + ["Mali (Republic of)",20800], + ["Malta (Republic of)",2130], + ["Mauritania (Islamic Republic of)",20850], + ["Mauritius (Republic of)",2550], + ["Mexico (United Mexican States)",409400], + ["Moldova (Republic of)",64050], + ["Mongolia",154200], + ["Montenegro",12450], + ["Morocco (Kingdom of)",395800], + ["Mozambique (Republic of)",11200], + ["Myanmar (Union of)",513000], + ["Namibia (Republic of)",15900], + ["Nepal (Federal Democratic Republic of)",111600], + ["Netherlands (Kingdom of the)",45800], + ["New Zealand",11300], + ["Nicaragua (Republic of)",12000], + ["Niger (Republic of)",10700], + ["Nigeria (Federal Republic of)",223000], + ["Korea (Democratic People's Republic of)",7769000], + ["North Macedonia (Republic of)",20450], + ["Norway (Kingdom of)",63250], + ["Oman (Sultanate of)",47000], + ["Pakistan (Islamic Republic of)",1495000], + ["Palestine (State of)",0], + ["Panama (Republic of)",26000], + ["Papua New Guinea (Independent State of)",3600], + ["Paraguay (Republic of)",193250], + ["Peru (Republic of)",346000], + ["Philippines (Republic of the)",336400], + ["Poland (Republic of)",189450], + ["Portugal (Portuguese Republic)",263650], + ["Qatar (State of)",21500], + ["Congo (Republic of the)",12000], + ["Romania",176300], + ["Russian Federation",3708000], + ["Rwanda (Republic of)",35000], + ["Saudi Arabia (Kingdom of)",251500], + ["Senegal (Republic of)",18600], + ["Serbia (Republic of)",82000], + ["Seychelles (Republic of)",420], + ["Sierra Leone (Republic of)",8500], + ["Singapore (Republic of)",310900], + ["Slovakia (Slovak Republic)",15850], + ["Slovenia (Republic of)",14700], + ["Somalia (Federal Republic of)",19800], + ["South Africa (Republic of)",80400], + ["Korea (Republic of)",6712500], + ["South Sudan (Republic of)",185000], + ["Spain (Kingdom of)",211300], + ["Sri Lanka (Democratic Socialist Republic of)",353100], + ["Sudan (Republic of the)",209300], + ["Suriname (Republic of)",1840], + ["Sweden (Kingdom of)",50950], + ["Switzerland (Swiss Confederation)",216000], + ["Syrian Arab Republic",269000], + ["Taiwan",1831800], + ["Tajikistan (Republic of)",16300], + ["Tanzania (United Republic of)",108400], + ["Thailand (Kingdom of)",699550], + ["Togo (Togolese Republic)",9300], + ["Trinidad and Tobago (Republic of)",4050], + ["Tunisia (Republic of)",47800], + ["Turkey (Republic of)",781800], + ["Turkmenistan",41500], + ["Uganda (Republic of)",56400], + ["Ukraine",1211000], + ["United Arab Emirates",63000], + ["United Kingdom (of Great Britain & Northern Ireland)",217100], + ["United States (of America)",2133050], + ["Uruguay (Oriental Republic of)",22400], + ["Uzbekistan (Republic of)",68000], + ["Venezuela (Bolivarian Republic of)",351000], + ["Vietnam (Socialist Republic of)",5522000], + ["Yemen (Republic of)",40000], + ["Zambia (Republic of)",19500], + ["Zimbabwe (Republic of)",50800] + ] +} diff --git a/data/global/politics/military/military-spending.json b/data/global/politics/military/military-spending.json new file mode 100644 index 0000000..3db52f8 --- /dev/null +++ b/data/global/politics/military/military-spending.json @@ -0,0 +1,158 @@ +{ + "metadata" : { + "name" : "Military Spending", + "description" : "Nominal millitary spending in USD.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "military", + "tags" : ["global","economics","politics","military"], + "authors" : [ + "World Population Review" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_military_expenditures" + ] + }, + "data" : [ + ["country.name","military.spending"], + ["Afghanistan (Islamic Republic of)",12000000000], + ["Albania (Republic of)",250000000], + ["Algeria (People's Democratic Republic of)",13000000000], + ["Angola (Republic of)",7000000000], + ["Argentina (Argentine Republic)",4200000000], + ["Armenia (Republic of)",1390000000], + ["Australia (Commonwealth of)",26300000000], + ["Austria (Republic of)",3380000000], + ["Azerbaijan (Republic of)",2810000000], + ["Bahrain (Kingdom of)",1420000000], + ["Bangladesh (People's Republic of)",4600000000], + ["Belgium (Kingdom of)",4920000000], + ["Bhutan (Kingdom of)",30000000], + ["Bolivia (Plurinational State of)",660000000], + ["Bosnia and Herzegovina",170000000], + ["Botswana (Republic of)",450000000], + ["Brazil (Federative Republic of)",27800000000], + ["Bulgaria (Republic of)",1080000000], + ["Burkina Faso",130000000], + ["Cambodia (Kingdom of)",600000000], + ["Cameroon (Republic of)",350000000], + ["Canada",22500000000], + ["Central African Republic",20000000], + ["Chad (Republic of)",200000000], + ["Chile (Republic of)",4250000000], + ["China (People's Republic of)",237000000000], + ["Colombia (Republic of)",10600000000], + ["Croatia (Republic of)",800000000], + ["Cuba (Republic of)",500000000], + ["Czech Republic",2970000000], + ["Denmark (Kingdom of)",4760000000], + ["Dominican Republic",760000000], + ["Congo (Democratic Republic of the)",100000000], + ["Ecuador (Republic of)",2500000000], + ["Egypt (Arab Republic of)",11200000000], + ["El Salvador (Republic of)",170000000], + ["Estonia (Republic of)",690000000], + ["Ethiopia (Federal Democratic Republic of)",350000000], + ["Finland (Republic of)",3570000000], + ["France (French Republic)",41500000000], + ["Gabon (Gabonese Republic)",80000000], + ["Georgia",330000000], + ["Germany (Federal Republic of)",50000000000], + ["Ghana (Republic of)",710000000], + ["Greece (Hellenic Republic)",4840000000], + ["Guatemala (Republic of)",240000000], + ["Honduras (Republic of)",210000000], + ["Hungary (Republic of)",2080000000], + ["India (Republic of)",61000000000], + ["Indonesia (Republic of)",7600000000], + ["Iran (Islamic Republic of)",19600000000], + ["Iraq (Republic of)",1730000000], + ["Ireland",870000000], + ["Israel (State of)",20000000000], + ["Italy (Italian Republic)",27800000000], + ["Côte d'Ivoire (Republic of)",550000000], + ["Japan",49000000000], + ["Jordan (Hashemite Kingdom of)",2600000000], + ["Kazakhstan (Republic of)",4000000000], + ["Kenya (Republic of)",120000000], + ["Kuwait (State of)",6830000000], + ["Kyrgyz Republic",20000000], + ["Lao (People's Democratic Republic)",20000000], + ["Latvia (Republic of)",720000000], + ["Lebanon (Lebanese Republic)",2500000000], + ["Liberia (Republic of)",10000000], + ["Libya (State of)",3000000000], + ["Lithuania (Republic of)",1110000000], + ["Madagascar (Republic of)",120000000], + ["Malaysia",4000000000], + ["Mali (Republic of)",70000000], + ["Mauritania (Islamic Republic of)",50000000], + ["Mexico (United Mexican States)",7000000000], + ["Moldova (Republic of)",30000000], + ["Mongolia",160000000], + ["Montenegro",70000000], + ["Morocco (Kingdom of)",10000000000], + ["Mozambique (Republic of)",250000000], + ["Myanmar (Union of)",2650000000], + ["Namibia (Republic of)",510000000], + ["Nepal (Federal Democratic Republic of)",210000000], + ["Netherlands (Kingdom of the)",12420000000], + ["New Zealand",4300000000], + ["Nicaragua (Republic of)",140000000], + ["Nigeria (Federal Republic of)",2150000000], + ["Korea (Democratic People's Republic of)",1600000000], + ["North Macedonia (Republic of)",110000000], + ["Norway (Kingdom of)",7180000000], + ["Oman (Sultanate of)",8690000000], + ["Pakistan (Islamic Republic of)",11400000000], + ["Panama (Republic of)",500000000], + ["Paraguay (Republic of)",250000000], + ["Peru (Republic of)",2560000000], + ["Philippines (Republic of the)",3470000000], + ["Poland (Republic of)",12000000000], + ["Portugal (Portuguese Republic)",3360000000], + ["Qatar (State of)",6000000000], + ["Congo (Republic of the)",720000000], + ["Romania",5050000000], + ["Russian Federation",48000000000], + ["Saudi Arabia (Kingdom of)",67600000000], + ["Serbia (Republic of)",910000000], + ["Sierra Leone (Republic of)",80000000], + ["Singapore (Republic of)",11200000000], + ["Slovakia (Slovak Republic)",2120000000], + ["Slovenia (Republic of)",580000000], + ["Somalia (Federal Republic of)",60000000], + ["South Africa (Republic of)",4300000000], + ["Korea (Republic of)",44000000000], + ["South Sudan (Republic of)",80000000], + ["Spain (Kingdom of)",15100000000], + ["Sri Lanka (Democratic Socialist Republic of)",2500000000], + ["Sudan (Republic of the)",2470000000], + ["Suriname (Republic of)",60000000], + ["Sweden (Kingdom of)",6330000000], + ["Switzerland (Swiss Confederation)",5000000000], + ["Syrian Arab Republic",1800000000], + ["Taiwan",10720000000], + ["Tajikistan (Republic of)",1600000000], + ["Tanzania (United Republic of)",220000000], + ["Thailand (Kingdom of)",7100000000], + ["Tunisia (Republic of)",550000000], + ["Turkey (Republic of)",19000000000], + ["Turkmenistan",200000000], + ["Uganda (Republic of)",940000000], + ["Ukraine",5400000000], + ["United Arab Emirates",22750000000], + ["United Kingdom (of Great Britain & Northern Ireland)",55100000000], + ["United States (of America)",750000000000], + ["Uruguay (Oriental Republic of)",4950000000], + ["Uzbekistan (Republic of)",980000000], + ["Venezuela (Bolivarian Republic of)",750000000], + ["Vietnam (Socialist Republic of)",5500000000], + ["Yemen (Republic of)",1400000000], + ["Zambia (Republic of)",40000000], + ["Zimbabwe (Republic of)",100000000] + ] +} diff --git a/data/global/technology/human-development-index.json b/data/global/technology/human-development-index.json new file mode 100644 index 0000000..ea98ba5 --- /dev/null +++ b/data/global/technology/human-development-index.json @@ -0,0 +1,213 @@ +{ + "metadata" : { + "name" : "Human Development Index (HDI)", + "description" : "The Human Development Index (HDI) considers the health, education and income in a given country to provide a measure of human development which is comparable between countries and over time.", + "units" : "index", + "year" : "2021", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "technology", + "tags" : ["global","technology","health","economics","development"], + "authors" : [ + "United Nations (UN) Development Programme (UNDP)" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_Human_Development_Index" + ] + }, + "data" : [ + ["country.name","human.development.index"], + ["Switzerland (Swiss Confederation)",0.962], + ["Norway (Kingdom of)",0.961], + ["Iceland (Republic of)",0.959], + ["Hong Kong (Special Administrative Region of China)",0.952], + ["Australia (Commonwealth of)",0.951], + ["Denmark (Kingdom of)",0.948], + ["Sweden (Kingdom of)",0.947], + ["Ireland",0.945], + ["Germany (Federal Republic of)",0.942], + ["Netherlands (Kingdom of the)",0.941], + ["Finland (Republic of)",0.94], + ["Singapore (Republic of)",0.939], + ["Belgium (Kingdom of)",0.937], + ["New Zealand",0.937], + ["Canada",0.936], + ["Liechtenstein (Principality of)",0.935], + ["Luxembourg (Grand Duchy of)",0.93], + ["United Kingdom (of Great Britain & Northern Ireland)",0.929], + ["Japan",0.925], + ["Korea (Republic of)",0.925], + ["United States (of America)",0.921], + ["Israel (State of)",0.919], + ["Malta (Republic of)",0.918], + ["Slovenia (Republic of)",0.918], + ["Austria (Republic of)",0.916], + ["United Arab Emirates",0.911], + ["Spain (Kingdom of)",0.905], + ["France (French Republic)",0.903], + ["Cyprus (Republic of)",0.896], + ["Italy (Italian Republic)",0.895], + ["Estonia (Republic of)",0.89], + ["Czech Republic",0.889], + ["Greece (Hellenic Republic)",0.887], + ["Poland (Republic of)",0.876], + ["Bahrain (Kingdom of)",0.875], + ["Lithuania (Republic of)",0.875], + ["Saudi Arabia (Kingdom of)",0.875], + ["Portugal (Portuguese Republic)",0.866], + ["Latvia (Republic of)",0.863], + ["Andorra (Principality of)",0.858], + ["Croatia (Republic of)",0.858], + ["Chile (Republic of)",0.855], + ["Qatar (State of)",0.855], + ["San Marino (Republic of)",0.853], + ["Slovakia (Slovak Republic)",0.848], + ["Hungary (Republic of)",0.846], + ["Argentina (Argentine Republic)",0.842], + ["Turkey (Republic of)",0.838], + ["Montenegro",0.832], + ["Kuwait (State of)",0.831], + ["Brunei (Nation of the Abode of Peace)",0.829], + ["Russian Federation",0.822], + ["Romania",0.821], + ["Oman (Sultanate of)",0.816], + ["Bahamas (Commonwealth of the)",0.812], + ["Kazakhstan (Republic of)",0.811], + ["Trinidad and Tobago (Republic of)",0.81], + ["Costa Rica (Republic of)",0.809], + ["Uruguay (Oriental Republic of)",0.809], + ["Belarus (Republic of)",0.808], + ["Panama (Republic of)",0.805], + ["Malaysia",0.803], + ["Georgia",0.802], + ["Mauritius (Republic of)",0.802], + ["Serbia (Republic of)",0.802], + ["Thailand (Kingdom of)",0.8], + ["Albania (Republic of)",0.796], + ["Bulgaria (Republic of)",0.795], + ["Grenada",0.795], + ["Barbados",0.79], + ["Antigua and Barbuda",0.788], + ["Seychelles (Republic of)",0.785], + ["Sri Lanka (Democratic Socialist Republic of)",0.782], + ["Bosnia and Herzegovina",0.78], + ["Saint Kitts and Nevis (Federation of)",0.777], + ["Iran (Islamic Republic of)",0.774], + ["Ukraine",0.773], + ["North Macedonia (Republic of)",0.77], + ["China (People's Republic of)",0.768], + ["Dominican Republic",0.767], + ["Moldova (Republic of)",0.767], + ["Palau (Republic of)",0.767], + ["Cuba (Republic of)",0.764], + ["Peru (Republic of)",0.762], + ["Armenia (Republic of)",0.759], + ["Mexico (United Mexican States)",0.758], + ["Brazil (Federative Republic of)",0.754], + ["Colombia (Republic of)",0.752], + ["Saint Vincent and the Grenadines",0.751], + ["Maldives (Republic of)",0.747], + ["Algeria (People's Democratic Republic of)",0.745], + ["Azerbaijan (Republic of)",0.745], + ["Tonga (Kingdom of)",0.745], + ["Turkmenistan",0.745], + ["Ecuador (Republic of)",0.74], + ["Mongolia",0.739], + ["Egypt (Arab Republic of)",0.731], + ["Tunisia (Republic of)",0.731], + ["Fiji (Republic of)",0.73], + ["Suriname (Republic of)",0.73], + ["Uzbekistan (Republic of)",0.727], + ["Dominica (Commonwealth of)",0.72], + ["Jordan (Hashemite Kingdom of)",0.72], + ["Libya (State of)",0.718], + ["Paraguay (Republic of)",0.717], + ["Palestine (State of)",0.715], + ["Saint Lucia",0.715], + ["Guyana (Co-operative Republic of)",0.714], + ["South Africa (Republic of)",0.713], + ["Jamaica",0.709], + ["Samoa (Independent State of)",0.707], + ["Gabon (Gabonese Republic)",0.706], + ["Lebanon (Lebanese Republic)",0.706], + ["Indonesia (Republic of)",0.705], + ["Vietnam (Socialist Republic of)",0.703], + ["Philippines (Republic of the)",0.699], + ["Botswana (Republic of)",0.693], + ["Bolivia (Plurinational State of)",0.692], + ["Kyrgyz Republic",0.692], + ["Venezuela (Bolivarian Republic of)",0.691], + ["Iraq (Republic of)",0.686], + ["Tajikistan (Republic of)",0.685], + ["Belize",0.683], + ["Morocco (Kingdom of)",0.683], + ["El Salvador (Republic of)",0.675], + ["Nicaragua (Republic of)",0.667], + ["Bhutan (Kingdom of)",0.666], + ["Cape Verde (Republic of)",0.662], + ["Bangladesh (People's Republic of)",0.661], + ["Tuvalu",0.641], + ["Marshall Islands (Republic of the)",0.639], + ["India (Republic of)",0.633], + ["Ghana (Republic of)",0.632], + ["Micronesia (Federated States of)",0.628], + ["Guatemala (Republic of)",0.627], + ["Kiribati (Republic of)",0.624], + ["Honduras (Republic of)",0.621], + ["São Tomé and Príncipe (Democratic Republic of)",0.618], + ["Namibia (Republic of)",0.615], + ["Lao (People's Democratic Republic)",0.607], + ["Timor-Leste (Democratic Republic of)",0.607], + ["Vanuatu (Republic of)",0.607], + ["Nepal (Federal Democratic Republic of)",0.602], + ["Eswatini (Kingdom of)",0.597], + ["Equatorial Guinea (Republic of)",0.596], + ["Cambodia (Kingdom of)",0.593], + ["Zimbabwe (Republic of)",0.593], + ["Angola (Republic of)",0.586], + ["Myanmar (Union of)",0.585], + ["Syrian Arab Republic",0.577], + ["Cameroon (Republic of)",0.576], + ["Kenya (Republic of)",0.575], + ["Congo (Republic of the)",0.571], + ["Zambia (Republic of)",0.565], + ["Solomon Islands",0.564], + ["Comoros (Union of the)",0.558], + ["Papua New Guinea (Independent State of)",0.558], + ["Mauritania (Islamic Republic of)",0.556], + ["Côte d'Ivoire (Republic of)",0.55], + ["Tanzania (United Republic of)",0.549], + ["Pakistan (Islamic Republic of)",0.544], + ["Togo (Togolese Republic)",0.539], + ["Haiti (Republic of)",0.535], + ["Nigeria (Federal Republic of)",0.535], + ["Rwanda (Republic of)",0.534], + ["Benin (Republic of)",0.525], + ["Uganda (Republic of)",0.525], + ["Lesotho (Kingdom of)",0.514], + ["Malawi (Republic of)",0.512], + ["Senegal (Republic of)",0.511], + ["Djibouti (Republic of)",0.509], + ["Sudan (Republic of the)",0.508], + ["Madagascar (Republic of)",0.501], + ["Gambia (Republic of the)",0.5], + ["Ethiopia (Federal Democratic Republic of)",0.498], + ["Eritrea (State of)",0.492], + ["Guinea-Bissau (Republic of)",0.483], + ["Liberia (Republic of)",0.481], + ["Congo (Democratic Republic of the)",0.479], + ["Afghanistan (Islamic Republic of)",0.478], + ["Sierra Leone (Republic of)",0.477], + ["Guinea (Republic of)",0.465], + ["Yemen (Republic of)",0.455], + ["Burkina Faso",0.449], + ["Mozambique (Republic of)",0.446], + ["Mali (Republic of)",0.428], + ["Burundi (Republic of)",0.426], + ["Central African Republic",0.404], + ["Niger (Republic of)",0.4], + ["Chad (Republic of)",0.394], + ["South Sudan (Republic of)",0.385] + ] +} diff --git a/data/global/technology/scientific-journal-articles.json b/data/global/technology/scientific-journal-articles.json new file mode 100644 index 0000000..dcd4d31 --- /dev/null +++ b/data/global/technology/scientific-journal-articles.json @@ -0,0 +1,251 @@ +{ + "metadata" : { + "name" : "Number of Journal Articles Published", + "description" : "Number of scientific and technical journal articles published.", + "units" : "total and pc/ppm", + "year" : "2020", + "notes" : [], + "type" : "global", + "scope" : "Global", + "categorty" : "technology", + "tags" : ["global","technology","science","publication"], + "authors" : [ + "SJR International Science Ranking" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/List_of_countries_by_number_of_scientific_and_technical_journal_articles" + ] + }, + "data" : [ + ["country.name","scientific.publications.total"], + ["China (People's Republic of)",744042], + ["United States (of America)",624554], + ["United Kingdom (of Great Britain & Northern Ireland)",198500], + ["India (Republic of)",191590], + ["Germany (Federal Republic of)",174524], + ["Italy (Italian Republic)",127502], + ["Japan",127408], + ["Canada",121111], + ["Russian Federation",119195], + ["France (French Republic)",112838], + ["Australia (Commonwealth of)",106614], + ["Spain (Kingdom of)",104353], + ["Korea (Republic of)",91030], + ["Brazil (Federative Republic of)",89241], + ["Iran (Islamic Republic of)",71894], + ["Netherlands (Kingdom of the)",62512], + ["Turkey (Republic of)",53802], + ["Poland (Republic of)",51994], + ["Indonesia (Republic of)",49160], + ["Switzerland (Swiss Confederation)",47607], + ["Sweden (Kingdom of)",43270], + ["Taiwan",39201], + ["Malaysia",37099], + ["Saudi Arabia (Kingdom of)",36301], + ["Belgium (Kingdom of)",34575], + ["Egypt (Arab Republic of)",34575], + ["Denmark (Kingdom of)",29982], + ["Portugal (Portuguese Republic)",29189], + ["Mexico (United Mexican States)",29089], + ["Pakistan (Islamic Republic of)",28525], + ["South Africa (Republic of)",28365], + ["Austria (Republic of)",27324], + ["Norway (Kingdom of)",25204], + ["Czech Republic",24811], + ["Hong Kong (Special Administrative Region of China)",24203], + ["Singapore (Republic of)",23078], + ["Israel (State of)",22743], + ["Finland (Republic of)",21789], + ["Thailand (Kingdom of)",20830], + ["Greece (Hellenic Republic)",20123], + ["Iraq (Republic of)",18711], + ["Ukraine",17888], + ["Vietnam (Socialist Republic of)",17485], + ["Chile (Republic of)",17137], + ["New Zealand",16886], + ["Ireland",16581], + ["Argentina (Argentine Republic)",15605], + ["Romania",15537], + ["Colombia (Republic of)",15103], + ["Nigeria (Federal Republic of)",13282], + ["Hungary (Republic of)",12168], + ["United Arab Emirates",10079], + ["Morocco (Kingdom of)",9463], + ["Slovakia (Slovak Republic)",8709], + ["Tunisia (Republic of)",8338], + ["Bangladesh (People's Republic of)",8265], + ["Algeria (People's Democratic Republic of)",7968], + ["Serbia (Republic of)",7960], + ["Croatia (Republic of)",7814], + ["Slovenia (Republic of)",6808], + ["Jordan (Hashemite Kingdom of)",6540], + ["Bulgaria (Republic of)",6233], + ["Ethiopia (Federal Democratic Republic of)",6141], + ["Philippines (Republic of the)",5636], + ["Ecuador (Republic of)",5519], + ["Peru (Republic of)",5425], + ["Kazakhstan (Republic of)",5339], + ["Qatar (State of)",5081], + ["Lithuania (Republic of)",4658], + ["Lebanon (Lebanese Republic)",4249], + ["Ghana (Republic of)",4189], + ["Kenya (Republic of)",4110], + ["Estonia (Republic of)",3810], + ["Cyprus (Republic of)",3629], + ["Uzbekistan (Republic of)",3491], + ["Sri Lanka (Democratic Socialist Republic of)",2844], + ["Nepal (Federal Democratic Republic of)",2555], + ["Macao (Special Administrative Region of China)",2549], + ["Belarus (Republic of)",2547], + ["Oman (Sultanate of)",2543], + ["Latvia (Republic of)",2530], + ["Kuwait (State of)",2345], + ["Uganda (Republic of)",2259], + ["Luxembourg (Grand Duchy of)",2256], + ["Tanzania (United Republic of)",2199], + ["Cuba (Republic of)",2088], + ["Cameroon (Republic of)",2086], + ["Georgia",1905], + ["Uruguay (Oriental Republic of)",1902], + ["Azerbaijan (Republic of)",1764], + ["Iceland (Republic of)",1738], + ["Bosnia and Herzegovina",1574], + ["Costa Rica (Republic of)",1438], + ["Venezuela (Bolivarian Republic of)",1397], + ["Palestine (State of)",1204], + ["Sudan (Republic of the)",1187], + ["Armenia (Republic of)",1175], + ["Zimbabwe (Republic of)",1116], + ["Bahrain (Kingdom of)",1066], + ["Yemen (Republic of)",1064], + ["Malta (Republic of)",1016], + ["North Macedonia (Republic of)",990], + ["Myanmar (Union of)",974], + ["Malawi (Republic of)",952], + ["Senegal (Republic of)",938], + ["Puerto Rico (Commonwealth of)",872], + ["Zambia (Republic of)",802], + ["Botswana (Republic of)",800], + ["Panama (Republic of)",777], + ["Syrian Arab Republic",734], + ["Rwanda (Republic of)",715], + ["Brunei (Nation of the Abode of Peace)",681], + ["Libya (State of)",674], + ["Mongolia",662], + ["Burkina Faso",651], + ["Benin (Republic of)",625], + ["Montenegro",625], + ["Côte d'Ivoire (Republic of)",615], + ["Albania (Republic of)",612], + ["Mozambique (Republic of)",612], + ["Moldova (Republic of)",549], + ["Cambodia (Kingdom of)",529], + ["Namibia (Republic of)",524], + ["Kyrgyz Republic",507], + ["Jamaica",478], + ["Fiji (Republic of)",469], + ["Bolivia (Plurinational State of)",454], + ["Mauritius (Republic of)",451], + ["Congo (Democratic Republic of the)",439], + ["Trinidad and Tobago (Republic of)",437], + ["Madagascar (Republic of)",413], + ["Paraguay (Republic of)",407], + ["Guatemala (Republic of)",403], + ["Congo (Republic of the)",386], + ["Dominican Republic",346], + ["Honduras (Republic of)",345], + ["Mali (Republic of)",325], + ["Tajikistan (Republic of)",324], + ["Lao (People's Democratic Republic)",305], + ["Afghanistan (Islamic Republic of)",286], + ["Grenada",250], + ["Korea (Democratic People's Republic of)",237], + ["Monaco (Principality of)",232], + ["Papua New Guinea (Independent State of)",232], + ["Gambia (Republic of the)",230], + ["Togo (Togolese Republic)",220], + ["Sierra Leone (Republic of)",211], + ["Niger (Republic of)",204], + ["Bhutan (Kingdom of)",200], + ["Gabon (Gabonese Republic)",189], + ["New Caledonia",185], + ["French Polynesia",168], + ["Barbados",156], + ["Eswatini (Kingdom of)",147], + ["Angola (Republic of)",146], + ["Nicaragua (Republic of)",141], + ["Guinea (Republic of)",138], + ["French Guiana",130], + ["Haiti (Republic of)",127], + ["Liechtenstein (Principality of)",125], + ["Saint Kitts and Nevis (Federation of)",121], + ["Greenland",116], + ["Burundi (Republic of)",115], + ["Seychelles (Republic of)",111], + ["El Salvador (Republic of)",107], + ["Lesotho (Kingdom of)",99], + ["Somalia (Federal Republic of)",92], + ["Maldives (Republic of)",91], + ["Mauritania (Islamic Republic of)",86], + ["Bahamas (Commonwealth of the)",86], + ["Bermuda",78], + ["Guam",76], + ["Guadeloupe",75], + ["Faroe Islands",74], + ["Eritrea (State of)",72], + ["Samoa (Independent State of)",70], + ["Central African Republic",69], + ["Liberia (Republic of)",69], + ["Guyana (Co-operative Republic of)",68], + ["Cape Verde (Republic of)",67], + ["Chad (Republic of)",66], + ["Solomon Islands",62], + ["Suriname (Republic of)",60], + ["Martinique",58], + ["Guinea-Bissau (Republic of)",57], + ["Réunion",57], + ["Vanuatu (Republic of)",52], + ["San Marino (Republic of)",50], + ["Belize",49], + ["Timor-Leste (Democratic Republic of)",41], + ["South Sudan (Republic of)",40], + ["Andorra (Principality of)",36], + ["Djibouti (Republic of)",35], + ["Saint Vincent and the Grenadines",31], + ["Micronesia (Federated States of)",30], + ["Tonga (Kingdom of)",30], + ["Cayman Islands",27], + ["Antigua and Barbuda",23], + ["Aruba",22], + ["Dominica (Commonwealth of)",21], + ["Palau (Republic of)",21], + ["Falkland Islands (Malvinas)",20], + ["Comoros (Union of the)",18], + ["Kiribati (Republic of)",17], + ["Turkmenistan",15], + ["Equatorial Guinea (Republic of)",14], + ["Saint Lucia",14], + ["American Samoa",14], + ["Mayotte (Department of)",13], + ["United States Virgin Islands",13], + ["Anguilla",13], + ["Gibraltar",12], + ["Northern Mariana Islands (Commonwealth of the)",11], + ["Turks and Caicos Islands",11], + ["São Tomé and Príncipe (Democratic Republic of)",9], + ["Cook Islands",8], + ["Marshall Islands (Republic of the)",7], + ["British Virgin Islands",6], + ["Holy See (Vatican City State)",5], + ["Saint Helena",4], + ["Montserrat",4], + ["Wallis and Futuna",3], + ["British Indian Ocean Territory",3], + ["Nauru (Republic of)",3], + ["Svalbard and Jan Mayen Islands",3], + ["Tuvalu",2], + ["Saint Pierre and Miquelon",1], + ["Tokelau",1], + ["French Southern and Antarctic Territories",1] + ] +} diff --git a/data/historical/australia/health/crude-death-rate/au-crude-death-rate-female.json b/data/historical/australia/health/crude-death-rate/au-crude-death-rate-female.json new file mode 100644 index 0000000..da71e4c --- /dev/null +++ b/data/historical/australia/health/crude-death-rate/au-crude-death-rate-female.json @@ -0,0 +1,137 @@ +{ + "metadata" : { + "name" : "Crude Female Death Rate", + "description" : "Female deaths per 1000 population.", + "units" : "deaths/1k population", + "year" : "1907-2020", + "notes" : [], + "type" : "historical", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["historical","au","health","mortality","female","gender"], + "authors" : [ + "Australian Institute of Health and Welfare" + ], + "sources" : [ + "https://www.aihw.gov.au/reports/life-expectancy-death/deaths-in-australia/contents/life-expectancy", + "https://www.aihw.gov.au/getmedia/3fa1959e-bc09-4f32-9583-9689a7888a86/Deaths-web-report-suppl-tables_1.xlsx.aspx" + ] + }, + "data" : [ + ["year","au.crude.death.rate.female"], + [1907,9.6659338], + [1908,9.7117918], + [1909,9.0015654], + [1910,9.2229127], + [1911,9.466986], + [1912,9.9686124], + [1913,9.7457311], + [1914,9.4973005], + [1915,9.3823856], + [1916,9.6075371], + [1917,8.2782397], + [1918,8.5939914], + [1919,10.989711], + [1920,9.2184443], + [1921,8.7298748], + [1922,8.0579901], + [1923,8.8077006], + [1924,8.3787767], + [1925,8.0581823], + [1926,8.2855505], + [1927,8.4082416], + [1928,8.5149961], + [1929,8.3548552], + [1930,7.6349687], + [1931,7.7259539], + [1932,7.69923], + [1933,7.9280964], + [1934,8.4092429], + [1935,8.4164179], + [1936,8.4557197], + [1937,8.3686347], + [1938,8.6272151], + [1939,8.7967263], + [1940,8.5442911], + [1941,9.0108924], + [1942,9.4208018], + [1943,9.3620331], + [1944,8.7215239], + [1945,8.6810357], + [1946,8.9590938], + [1947,8.6459545], + [1948,8.8939768], + [1949,8.4017279], + [1950,8.4982001], + [1951,8.5976488], + [1952,8.3834049], + [1953,8.1250718], + [1954,8.1114314], + [1955,7.8901263], + [1956,8.1505538], + [1957,7.838332], + [1958,7.5368901], + [1959,7.8210281], + [1960,7.6406241], + [1961,7.4506823], + [1962,7.693396], + [1963,7.7088959], + [1964,8.039301], + [1965,7.8105005], + [1966,8.0122822], + [1967,7.7127772], + [1968,8.1278707], + [1969,7.6828098], + [1970,8.0799669], + [1971,7.6278644], + [1972,7.3496894], + [1973,7.324646], + [1974,7.5420359], + [1975,6.9734687], + [1976,7.1610697], + [1977,6.8387698], + [1978,6.7071963], + [1979,6.5149015], + [1980,6.5481938], + [1981,6.462481], + [1982,6.7701888], + [1983,6.4400141], + [1984,6.3999301], + [1985,6.9130883], + [1986,6.5814327], + [1987,6.5937285], + [1988,6.6138539], + [1989,6.8004244], + [1990,6.4768428], + [1991,6.353832], + [1992,6.56129], + [1993,6.383271], + [1994,6.623729], + [1995,6.5102894], + [1996,6.6066244], + [1997,6.6471275], + [1998,6.4209919], + [1999,6.4267318], + [2000,6.4133374], + [2001,6.3533197], + [2002,6.6012018], + [2003,6.4392528], + [2004,6.3878114], + [2005,6.2490579], + [2006,6.3336476], + [2007,6.4240109], + [2008,6.59333], + [2009,6.2841709], + [2010,6.3258778], + [2011,6.380622], + [2012,6.3310791], + [2013,6.1862178], + [2014,6.3719745], + [2015,6.4831312], + [2016,6.2879742], + [2017,6.2954052], + [2018,6.0494871], + [2019,6.3313523], + [2020,5.9189855] + ] +} diff --git a/data/historical/australia/health/crude-death-rate/au-crude-death-rate-male.json b/data/historical/australia/health/crude-death-rate/au-crude-death-rate-male.json new file mode 100644 index 0000000..1a7ef2c --- /dev/null +++ b/data/historical/australia/health/crude-death-rate/au-crude-death-rate-male.json @@ -0,0 +1,137 @@ +{ + "metadata" : { + "name" : "Crude Male Death Rate", + "description" : "Male deaths per 1000 population.", + "units" : "deaths/1k population", + "year" : "1907-2020", + "notes" : [], + "type" : "historical", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["historical","au","health","mortality","male","gender"], + "authors" : [ + "Australian Institute of Health and Welfare" + ], + "sources" : [ + "https://www.aihw.gov.au/reports/life-expectancy-death/deaths-in-australia/contents/life-expectancy", + "https://www.aihw.gov.au/getmedia/3fa1959e-bc09-4f32-9583-9689a7888a86/Deaths-web-report-suppl-tables_1.xlsx.aspx" + ] + }, + "data" : [ + ["year","au.crude.death.rate.male"], + [1907,11.904127], + [1908,12.037046], + [1909,11.359682], + [1910,11.473446], + [1911,11.928484], + [1912,12.838494], + [1913,12.416376], + [1914,12.1741], + [1915,12.278392], + [1916,12.199959], + [1917,10.666624], + [1918,10.851325], + [1919,14.041126], + [1920,11.758196], + [1921,11.058119], + [1922,10.328448], + [1923,10.908652], + [1924,10.502448], + [1925,10.271519], + [1926,10.476144], + [1927,10.402051], + [1928,10.289005], + [1929,10.632407], + [1930,9.4522502], + [1931,9.5736481], + [1932,9.5300769], + [1933,9.8749666], + [1934,10.200094], + [1935,10.465648], + [1936,10.382375], + [1937,10.476025], + [1938,10.614291], + [1939,11.026347], + [1940,10.861419], + [1941,10.994281], + [1942,11.50815], + [1943,11.220009], + [1944,10.315577], + [1945,10.318373], + [1946,11.039711], + [1947,10.73603], + [1948,11.035651], + [1949,10.621507], + [1950,10.604186], + [1951,10.803066], + [1952,10.485981], + [1953,10.043921], + [1954,10.07171], + [1955,9.919464], + [1956,10.090452], + [1957,9.7615878], + [1958,9.4542459], + [1959,9.8998071], + [1960,9.5581919], + [1961,9.4588032], + [1962,9.7010668], + [1963,9.675085], + [1964,10.034611], + [1965,9.759384], + [1966,9.8937138], + [1967,9.6825883], + [1968,10.104025], + [1969,9.6732824], + [1970,9.9854148], + [1971,9.2988117], + [1972,9.1420496], + [1973,9.0799617], + [1974,9.3326703], + [1975,8.7152278], + [1976,8.8917374], + [1977,8.490152], + [1978,8.3941708], + [1979,8.1691404], + [1980,8.2471389], + [1981,8.1490097], + [1982,8.3492571], + [1983,7.8645952], + [1984,7.7121837], + [1985,8.1388068], + [1986,7.7760682], + [1987,7.8353045], + [1988,7.8894937], + [1989,7.9791702], + [1990,7.596752], + [1991,7.4363272], + [1992,7.5922205], + [1993,7.4116543], + [1994,7.6112882], + [1995,7.39373], + [1996,7.5238348], + [1997,7.3995948], + [1998,7.2565144], + [1999,7.1976676], + [2000,7.0754749], + [2001,6.9897737], + [2002,7.1195412], + [2003,6.9812846], + [2004,6.9114126], + [2005,6.7109244], + [2006,6.7480204], + [2007,6.8158664], + [2008,6.9568376], + [2009,6.6958022], + [2010,6.6999574], + [2011,6.7753566], + [2012,6.6113444], + [2013,6.5862084], + [2014,6.7142411], + [2015,6.8762591], + [2016,6.8205227], + [2017,6.7895413], + [2018,6.6435091], + [2019,7.0230823], + [2020,6.6432429] + ] +} diff --git a/data/historical/australia/health/crude-death-rate/au-crude-death-rate.json b/data/historical/australia/health/crude-death-rate/au-crude-death-rate.json new file mode 100644 index 0000000..dd65d8d --- /dev/null +++ b/data/historical/australia/health/crude-death-rate/au-crude-death-rate.json @@ -0,0 +1,137 @@ +{ + "metadata" : { + "name" : "Crude Death Rate", + "description" : "Deaths per 1000 population.", + "units" : "deaths/1k population", + "year" : "1907-2020", + "notes" : [], + "type" : "historical", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["historical","au","health","mortality"], + "authors" : [ + "Australian Institute of Health and Welfare" + ], + "sources" : [ + "https://www.aihw.gov.au/reports/life-expectancy-death/deaths-in-australia/contents/life-expectancy", + "https://www.aihw.gov.au/getmedia/3fa1959e-bc09-4f32-9583-9689a7888a86/Deaths-web-report-suppl-tables_1.xlsx.aspx" + ] + }, + "data" : [ + ["year","au.crude.death.rate"], + [1907,10.831978], + [1908,10.92211], + [1909,10.227926], + [1910,10.392341], + [1911,10.744994], + [1912,11.454848], + [1913,11.125399], + [1914,10.876895], + [1915,10.871582], + [1916,10.937725], + [1917,9.5011693], + [1918,9.7474885], + [1919,12.545953], + [1920,10.511307], + [1921,9.9129255], + [1922,9.2121941], + [1923,9.8774019], + [1924,9.4610407], + [1925,9.1877694], + [1926,9.4037614], + [1927,9.4269309], + [1928,9.4217892], + [1929,9.5179781], + [1930,8.5615919], + [1931,8.666207], + [1932,8.6298808], + [1933,8.9168602], + [1934,9.317998], + [1935,9.4554132], + [1936,9.4317243], + [1937,9.4353093], + [1938,9.6325341], + [1939,9.9237923], + [1940,9.7143263], + [1941,10.01083], + [1942,10.471263], + [1943,10.295374], + [1944,9.5210474], + [1945,9.5013326], + [1946,10.00134], + [1947,9.6931156], + [1948,9.9678286], + [1949,9.5168245], + [1950,9.5598322], + [1951,9.7115784], + [1952,9.4479245], + [1953,9.0964573], + [1954,9.1030991], + [1955,8.9172473], + [1956,9.1335208], + [1957,8.812369], + [1958,8.5063602], + [1959,8.8711666], + [1960,8.609635], + [1961,8.4658648], + [1962,8.7064156], + [1963,8.700364], + [1964,9.0449216], + [1965,8.7925121], + [1966,8.9597843], + [1967,8.7043242], + [1968,9.1223524], + [1969,8.6843251], + [1970,9.0385261], + [1971,8.4677245], + [1972,8.2503587], + [1973,8.2062785], + [1974,8.4410567], + [1975,7.8471921], + [1976,8.0283142], + [1977,7.6654599], + [1978,7.5508792], + [1979,7.3415534], + [1980,7.3965544], + [1981,7.3042351], + [1982,7.5585572], + [1983,7.1513431], + [1984,7.0550896], + [1985,7.5250603], + [1986,7.1780801], + [1987,7.213472], + [1988,7.2503515], + [1989,7.3884219], + [1990,7.0353999], + [1991,6.8934131], + [1992,7.0749232], + [1993,6.8953969], + [1994,7.1153423], + [1995,6.9499484], + [1996,7.0628612], + [1997,7.0211008], + [1998,6.8360299], + [1999,6.8094941], + [2000,6.7419378], + [2001,6.6690529], + [2002,6.8584539], + [2003,6.7082686], + [2004,6.6477624], + [2005,6.4784165], + [2006,6.5394955], + [2007,6.6188065], + [2008,6.7741848], + [2009,6.489132], + [2010,6.5121019], + [2011,6.5770744], + [2012,6.470549], + [2013,6.3852117], + [2014,6.5420878], + [2015,6.678368886], + [2016,6.55221402], + [2017,6.540521733], + [2018,6.344113172], + [2019,6.674394937], + [2020,6.277909306] + ] +} diff --git a/data/historical/australia/health/life-expectancy/au-life-expectancy-female.json b/data/historical/australia/health/life-expectancy/au-life-expectancy-female.json new file mode 100644 index 0000000..89d4c1d --- /dev/null +++ b/data/historical/australia/health/life-expectancy/au-life-expectancy-female.json @@ -0,0 +1,63 @@ +{ + "metadata" : { + "name" : "Female Life Expectancy", + "description" : "Average female life expectancy.", + "units" : "years", + "year" : "1881-2020", + "notes" : [], + "type" : "historical", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["historical","au","health","life-expectancy","female","gender"], + "authors" : [ + "Australian Institute of Health and Welfare" + ], + "sources" : [ + "https://www.aihw.gov.au/reports/life-expectancy-death/deaths-in-australia/contents/life-expectancy", + "https://www.aihw.gov.au/getmedia/3fa1959e-bc09-4f32-9583-9689a7888a86/Deaths-web-report-suppl-tables_1.xlsx.aspx" + ] + }, + "data" : [ + ["year.bin","au.life.expectancy.female"], + ["1881-1890",50.8], + ["1891-1900",54.8], + ["1901-1910",58.8], + ["1920-1922",63.3], + ["1932-1934",67.1], + ["1946-1948",70.6], + ["1953-1955",72.8], + ["1960-1962",74.2], + ["1965-1967",74.2], + ["1970-1972",74.5], + ["1975-1977",76.6], + ["1980-1982",78.3], + ["1985-1987",79.2], + ["1990-1992",80.4], + ["1993-1995",80.8], + ["1994-1996",81.1], + ["1995-1997",81.3], + ["1996-1998",81.5], + ["1997-1999",81.8], + ["1998-2000",82.0], + ["1999-2001",82.4], + ["2000-2002",82.6], + ["2001-2003",82.8], + ["2002-2004",83.0], + ["2003-2005",83.3], + ["2004-2006",83.5], + ["2005-2007",83.7], + ["2006-2008",83.7], + ["2007-2009",83.9], + ["2008-2010",84.0], + ["2009-2011",84.2], + ["2010-2012",84.3], + ["2011-2013",84.3], + ["2012-2014",84.4], + ["2013-2015",84.5], + ["2014-2016",84.6], + ["2015-2017",84.6], + ["2016-2018",84.9], + ["2017-2019",85.0], + ["2018-2020",85.3] + ] +} diff --git a/data/historical/australia/health/life-expectancy/au-life-expectancy-male.json b/data/historical/australia/health/life-expectancy/au-life-expectancy-male.json new file mode 100644 index 0000000..7a42fa1 --- /dev/null +++ b/data/historical/australia/health/life-expectancy/au-life-expectancy-male.json @@ -0,0 +1,63 @@ +{ + "metadata" : { + "name" : "Male Life Expectancy", + "description" : "Average male life expectancy.", + "units" : "years", + "year" : "1881-2020", + "notes" : [], + "type" : "historical", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["historical","au","health","life-expectancy","male","gender"], + "authors" : [ + "Australian Institute of Health and Welfare" + ], + "sources" : [ + "https://www.aihw.gov.au/reports/life-expectancy-death/deaths-in-australia/contents/life-expectancy", + "https://www.aihw.gov.au/getmedia/3fa1959e-bc09-4f32-9583-9689a7888a86/Deaths-web-report-suppl-tables_1.xlsx.aspx" + ] + }, + "data" : [ + ["year.bin","au.life.expectancy.male"], + ["1881-1890",47.2], + ["1891-1900",51.1], + ["1901-1910",55.2], + ["1920-1922",59.2], + ["1932-1934",63.5], + ["1946-1948",66.1], + ["1953-1955",67.1], + ["1960-1962",67.9], + ["1965-1967",67.6], + ["1970-1972",67.8], + ["1975-1977",69.6], + ["1980-1982",71.2], + ["1985-1987",72.7], + ["1990-1992",74.3], + ["1993-1995",75.0], + ["1994-1996",75.2], + ["1995-1997",75.6], + ["1996-1998",75.9], + ["1997-1999",76.2], + ["1998-2000",76.6], + ["1999-2001",77.0], + ["2000-2002",77.4], + ["2001-2003",77.8], + ["2002-2004",78.1], + ["2003-2005",78.5], + ["2004-2006",78.7], + ["2005-2007",79.0], + ["2006-2008",79.2], + ["2007-2009",79.3], + ["2008-2010",79.5], + ["2009-2011",79.8], + ["2010-2012",79.9], + ["2011-2013",80.1], + ["2012-2014",80.3], + ["2013-2015",80.4], + ["2014-2016",80.4], + ["2015-2017",80.5], + ["2016-2018",80.7], + ["2017-2019",80.9], + ["2018-2020",81.2] + ] +} diff --git a/data/historical/global/economics/global-crude-oil-price.json b/data/historical/global/economics/global-crude-oil-price.json new file mode 100644 index 0000000..d1aa810 --- /dev/null +++ b/data/historical/global/economics/global-crude-oil-price.json @@ -0,0 +1,185 @@ +{ + "metadata" : { + "name" : "Crude Oil Price", + "description" : "Price of crude oil in USD per barrel.", + "units" : "$ USD/bbr", + "year" : "1859-2021", + "notes" : [], + "type" : "historical", + "scope" : "Global", + "categorty" : "economics", + "tags" : ["historical","us","economics","energy","trade"], + "authors" : [ + "United States Energy Infromation Administration" + ], + "sources" : [ + "https://www.eia.gov/dnav/pet/hist/LeafHandler.ashx?n=pet&s=f000000__3&f=m" + ] + }, + "data" : [ + ["year","global.crude.oil.price"], + [2021,65.84], + [2020,36.86], + [2019,55.59], + [2018,61.4], + [2017,48.05], + [2016,38.29], + [2015,44.39], + [2014,87.39], + [2013,95.99], + [2012,94.52], + [2011,95.73], + [2010,74.71], + [2009,56.35], + [2008,94.04], + [2007,66.52], + [2006,59.69], + [2005,50.28], + [2004,36.77], + [2003,27.56], + [2002,22.51], + [2001,21.84], + [2000,26.72], + [1999,15.56], + [1998,10.87], + [1997,17.23], + [1996,18.46], + [1995,14.62], + [1994,13.19], + [1993,14.25], + [1992,15.99], + [1991,16.54], + [1990,20.03], + [1989,15.86], + [1988,12.58], + [1987,15.4], + [1986,12.51], + [1985,24.09], + [1984,25.88], + [1983,26.19], + [1982,28.52], + [1981,31.77], + [1980,21.59], + [1979,12.64], + [1978,9], + [1977,8.57], + [1976,8.19], + [1975,7.67], + [1974,6.87], + [1973,3.89], + [1972,3.39], + [1971,3.39], + [1970,3.18], + [1969,3.09], + [1968,2.94], + [1967,2.92], + [1966,2.88], + [1965,2.86], + [1964,2.88], + [1963,2.89], + [1962,2.9], + [1961,2.89], + [1960,2.88], + [1959,2.9], + [1958,3.01], + [1957,3.09], + [1956,2.79], + [1955,2.77], + [1954,2.78], + [1953,2.68], + [1952,2.53], + [1951,2.53], + [1950,2.51], + [1949,2.54], + [1948,2.6], + [1947,1.93], + [1946,1.41], + [1945,1.22], + [1944,1.21], + [1943,1.2], + [1942,1.19], + [1941,1.14], + [1940,1.02], + [1939,1.02], + [1938,1.13], + [1937,1.18], + [1936,1.09], + [1935,0.97], + [1934,1], + [1933,0.67], + [1932,0.87], + [1931,0.65], + [1930,1.19], + [1929,1.27], + [1928,1.17], + [1927,1.3], + [1926,1.88], + [1925,1.68], + [1924,1.43], + [1923,1.34], + [1922,1.61], + [1921,1.73], + [1920,3.07], + [1919,2.01], + [1918,1.98], + [1917,1.56], + [1916,1.1], + [1915,0.64], + [1914,0.81], + [1913,0.95], + [1912,0.74], + [1911,0.61], + [1910,0.61], + [1909,0.7], + [1908,0.72], + [1907,0.72], + [1906,0.73], + [1905,0.62], + [1904,0.86], + [1903,0.94], + [1902,0.8], + [1901,0.96], + [1900,1.19], + [1899,1.13], + [1898,0.8], + [1897,0.68], + [1896,0.96], + [1895,1.09], + [1894,0.72], + [1893,0.6], + [1892,0.51], + [1891,0.56], + [1890,0.77], + [1889,0.77], + [1888,0.65], + [1887,0.67], + [1886,0.71], + [1885,0.88], + [1884,0.85], + [1883,1.1], + [1882,0.78], + [1881,0.92], + [1880,0.94], + [1879,0.86], + [1878,1.17], + [1877,2.38], + [1876,2.52], + [1875,1.35], + [1874,1.17], + [1873,1.83], + [1872,3.64], + [1871,4.34], + [1870,3.86], + [1869,5.64], + [1868,3.62], + [1867,2.41], + [1866,3.74], + [1865,6.59], + [1864,8.06], + [1863,3.15], + [1862,1.05], + [1861,0.49], + [1860,9.59], + [1859,16] + ] +} diff --git a/data/historical/global/geographic/climate/global-temperature-shift-nasa.json b/data/historical/global/geographic/climate/global-temperature-shift-nasa.json new file mode 100644 index 0000000..82c1bd0 --- /dev/null +++ b/data/historical/global/geographic/climate/global-temperature-shift-nasa.json @@ -0,0 +1,165 @@ +{ + "metadata" : { + "name" : "Global Averate Temperature Shift", + "description" : "Global average temperature change in degrees celcius.", + "units" : "C", + "year" : "1880-2022", + "notes" : [], + "type" : "historical", + "scope" : "Global", + "categorty" : "climate", + "tags" : ["historical","global","climate","temperature"], + "authors" : [ + "National American Space Agency (NASA)" + ], + "sources" : [ + "https://data.giss.nasa.gov/gistemp/graphs_v4/graph_data/Global_Mean_Estimates_based_on_Land_and_Ocean_Data/graph.txt" + ] + }, + "data" : [ + ["year","global.temperature.shift.nasa"], + [1880,-0.17], + [1881,-0.09], + [1882,-0.11], + [1883,-0.18], + [1884,-0.28], + [1885,-0.33], + [1886,-0.31], + [1887,-0.36], + [1888,-0.17], + [1889,-0.1], + [1890,-0.35], + [1891,-0.23], + [1892,-0.27], + [1893,-0.31], + [1894,-0.3], + [1895,-0.22], + [1896,-0.11], + [1897,-0.1], + [1898,-0.27], + [1899,-0.17], + [1900,-0.08], + [1901,-0.15], + [1902,-0.27], + [1903,-0.37], + [1904,-0.47], + [1905,-0.26], + [1906,-0.22], + [1907,-0.38], + [1908,-0.43], + [1909,-0.48], + [1910,-0.43], + [1911,-0.44], + [1912,-0.36], + [1913,-0.34], + [1914,-0.15], + [1915,-0.14], + [1916,-0.36], + [1917,-0.46], + [1918,-0.29], + [1919,-0.28], + [1920,-0.27], + [1921,-0.19], + [1922,-0.28], + [1923,-0.26], + [1924,-0.27], + [1925,-0.22], + [1926,-0.11], + [1927,-0.22], + [1928,-0.2], + [1929,-0.36], + [1930,-0.16], + [1931,-0.09], + [1932,-0.15], + [1933,-0.28], + [1934,-0.12], + [1935,-0.19], + [1936,-0.14], + [1937,-0.02], + [1938,0], + [1939,-0.01], + [1940,0.13], + [1941,0.19], + [1942,0.07], + [1943,0.09], + [1944,0.21], + [1945,0.09], + [1946,-0.07], + [1947,-0.02], + [1948,-0.1], + [1949,-0.11], + [1950,-0.17], + [1951,-0.07], + [1952,0.01], + [1953,0.08], + [1954,-0.13], + [1955,-0.14], + [1956,-0.19], + [1957,0.05], + [1958,0.06], + [1959,0.03], + [1960,-0.03], + [1961,0.06], + [1962,0.03], + [1963,0.05], + [1964,-0.2], + [1965,-0.11], + [1966,-0.06], + [1967,-0.02], + [1968,-0.08], + [1969,0.05], + [1970,0.03], + [1971,-0.08], + [1972,0.01], + [1973,0.16], + [1974,-0.07], + [1975,-0.01], + [1976,-0.1], + [1977,0.18], + [1978,0.07], + [1979,0.17], + [1980,0.26], + [1981,0.32], + [1982,0.14], + [1983,0.31], + [1984,0.16], + [1985,0.12], + [1986,0.18], + [1987,0.32], + [1988,0.39], + [1989,0.27], + [1990,0.45], + [1991,0.4], + [1992,0.22], + [1993,0.23], + [1994,0.31], + [1995,0.45], + [1996,0.33], + [1997,0.46], + [1998,0.61], + [1999,0.38], + [2000,0.39], + [2001,0.54], + [2002,0.63], + [2003,0.62], + [2004,0.53], + [2005,0.68], + [2006,0.64], + [2007,0.66], + [2008,0.54], + [2009,0.66], + [2010,0.72], + [2011,0.61], + [2012,0.65], + [2013,0.68], + [2014,0.75], + [2015,0.9], + [2016,1.02], + [2017,0.92], + [2018,0.85], + [2019,0.98], + [2020,1.02], + [2021,0.85], + [2022,0.9] + ] +} diff --git a/data/historical/global/geographic/climate/global-temperature-shift-ukmeto.json b/data/historical/global/geographic/climate/global-temperature-shift-ukmeto.json new file mode 100644 index 0000000..d25b76a --- /dev/null +++ b/data/historical/global/geographic/climate/global-temperature-shift-ukmeto.json @@ -0,0 +1,196 @@ +{ + "metadata" : { + "name" : "Global Averate Temperature Shift", + "description" : "Global average temperature change in degrees celcius.", + "units" : "C", + "year" : "1850-2022", + "notes" : [], + "type" : "historical", + "scope" : "Global", + "categorty" : "climate", + "tags" : ["historical","global","climate","temperature"], + "authors" : [ + "United Kingdom Office of Meteorology (Met Office)" + ], + "sources" : [ + "https://www.metoffice.gov.uk/hadobs/hadcrut5/data/current/download.html", + "https://www.metoffice.gov.uk/hadobs/hadcrut5/data/current/analysis/diagnostics/HadCRUT.5.0.1.0.analysis.summary_series.global.annual.csv" + ] + }, + "data" : [ + ["year","global.temperature.shift.ukmeto"], + [1850,-0.41765878], + [1851,-0.2333498], + [1852,-0.22939907], + [1853,-0.27035445], + [1854,-0.29163003], + [1855,-0.2969512], + [1856,-0.32035372], + [1857,-0.46723005], + [1858,-0.3887657], + [1859,-0.28119546], + [1860,-0.39016518], + [1861,-0.42927712], + [1862,-0.53639776], + [1863,-0.3443432], + [1864,-0.4654367], + [1865,-0.33258784], + [1866,-0.34126064], + [1867,-0.35696334], + [1868,-0.35196072], + [1869,-0.31657043], + [1870,-0.32789087], + [1871,-0.3685807], + [1872,-0.32804197], + [1873,-0.34133235], + [1874,-0.3732512], + [1875,-0.37562594], + [1876,-0.42410994], + [1877,-0.101108834], + [1878,-0.011315193], + [1879,-0.30363432], + [1880,-0.31583208], + [1881,-0.23224552], + [1882,-0.29553008], + [1883,-0.3464744], + [1884,-0.49232006], + [1885,-0.47112358], + [1886,-0.42090362], + [1887,-0.49878576], + [1888,-0.37937889], + [1889,-0.24989556], + [1890,-0.50685817], + [1891,-0.40131494], + [1892,-0.5075585], + [1893,-0.49461925], + [1894,-0.48376393], + [1895,-0.4487516], + [1896,-0.28400728], + [1897,-0.25980017], + [1898,-0.48579213], + [1899,-0.35543364], + [1900,-0.23447904], + [1901,-0.29342857], + [1902,-0.43898427], + [1903,-0.5333264], + [1904,-0.5975614], + [1905,-0.40775132], + [1906,-0.3191393], + [1907,-0.5041577], + [1908,-0.5138707], + [1909,-0.5357649], + [1910,-0.5310242], + [1911,-0.5392051], + [1912,-0.47567302], + [1913,-0.46715254], + [1914,-0.2625924], + [1915,-0.19184391], + [1916,-0.42020997], + [1917,-0.54301953], + [1918,-0.42458433], + [1919,-0.32551822], + [1920,-0.2985808], + [1921,-0.24067703], + [1922,-0.33922812], + [1923,-0.31793055], + [1924,-0.3120622], + [1925,-0.28242525], + [1926,-0.12283547], + [1927,-0.22940508], + [1928,-0.20676155], + [1929,-0.39275664], + [1930,-0.1768054], + [1931,-0.10339768], + [1932,-0.14546166], + [1933,-0.32234442], + [1934,-0.17433685], + [1935,-0.20605922], + [1936,-0.16952093], + [1937,-0.01919893], + [1938,-0.012200732], + [1939,-0.040797167], + [1940,0.07593584], + [1941,0.038129337], + [1942,0.001406091], + [1943,0.006414075], + [1944,0.14410514], + [1945,0.043088365], + [1946,-0.1188128], + [1947,-0.091205545], + [1948,-0.12466127], + [1949,-0.14380224], + [1950,-0.22662179], + [1951,-0.06115397], + [1952,0.015354565], + [1953,0.07763074], + [1954,-0.11675021], + [1955,-0.19730993], + [1956,-0.2631656], + [1957,-0.035334926], + [1958,-0.017632553], + [1959,-0.048004825], + [1960,-0.115487024], + [1961,-0.019997388], + [1962,-0.06405444], + [1963,-0.03680589], + [1964,-0.30586675], + [1965,-0.2043879], + [1966,-0.14888458], + [1967,-0.11751631], + [1968,-0.1686323], + [1969,-0.031366713], + [1970,-0.08510657], + [1971,-0.20593274], + [1972,-0.0938271], + [1973,0.04993336], + [1974,-0.17253734], + [1975,-0.11075424], + [1976,-0.21586166], + [1977,0.10308852], + [1978,0.005255772], + [1979,0.09085813], + [1980,0.19607207], + [1981,0.25001204], + [1982,0.034263328], + [1983,0.22383861], + [1984,0.04800471], + [1985,0.04972978], + [1986,0.09568697], + [1987,0.2430264], + [1988,0.28215173], + [1989,0.17925027], + [1990,0.36056247], + [1991,0.33889654], + [1992,0.124896795], + [1993,0.16565846], + [1994,0.23354977], + [1995,0.37686616], + [1996,0.2766894], + [1997,0.4223085], + [1998,0.57731646], + [1999,0.32448497], + [2000,0.3310848], + [2001,0.48928034], + [2002,0.5434665], + [2003,0.5441702], + [2004,0.46737072], + [2005,0.60686255], + [2006,0.5725527], + [2007,0.5917013], + [2008,0.46564984], + [2009,0.5967817], + [2010,0.68037146], + [2011,0.53769773], + [2012,0.5776071], + [2013,0.6235754], + [2014,0.67287165], + [2015,0.82511437], + [2016,0.93292713], + [2017,0.84517425], + [2018,0.762654], + [2019,0.8910726], + [2020,0.9227938], + [2021,0.7618559], + [2022,0.80124223] + ] +} diff --git a/data/historical/united-kingdom/culture/divorce/uk-divorce-age-median.female.json b/data/historical/united-kingdom/culture/divorce/uk-divorce-age-median.female.json new file mode 100644 index 0000000..5a150ff --- /dev/null +++ b/data/historical/united-kingdom/culture/divorce/uk-divorce-age-median.female.json @@ -0,0 +1,85 @@ +{ + "metadata" : { + "name" : "Median Female Age At Divorce", + "description" : "Median female age at divorce.", + "units" : "years", + "year" : "1950-2012", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage","divorce","female","gender"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.theguardian.com/news/datablog/2010/jan/28/divorce-rates-marriage-ons" + ] + }, + "data" : [ + ["year","uk.divorce.age.median.female"], + [1950,33.8], + [1951,34.4], + [1952,34.7], + [1953,34.6], + [1954,34.6], + [1955,34.5], + [1956,34.7], + [1957,35.4], + [1958,35.6], + [1959,35.5], + [1960,35.3], + [1961,35], + [1962,35], + [1963,34.6], + [1964,34.2], + [1965,34], + [1966,33.7], + [1967,33.4], + [1968,33.2], + [1969,32.6], + [1970,32.4], + [1971,33.6], + [1972,34.4], + [1973,33.4], + [1974,33.5], + [1975,33.2], + [1976,33.1], + [1977,33], + [1978,33], + [1979,32.8], + [1980,32.9], + [1981,33.2], + [1982,33.4], + [1983,33.7], + [1984,34], + [1985,33.1], + [1986,33.6], + [1987,33.7], + [1988,34], + [1989,34], + [1990,34.1], + [1991,34.3], + [1992,34.5], + [1993,34.7], + [1994,34.9], + [1995,35.3], + [1996,35.6], + [1997,36], + [1998,36.3], + [1999,36.9], + [2000,37.3], + [2001,37.7], + [2002,38.2], + [2003,38.7], + [2004,39.2], + [2005,39.8], + [2006,40.1], + [2007,40.5], + [2008,40.8], + [2009,40.9], + [2010,41.1], + [2011,41.6], + [2012,41.8] + ] +} diff --git a/data/historical/united-kingdom/culture/divorce/uk-divorce-age-median.male.json b/data/historical/united-kingdom/culture/divorce/uk-divorce-age-median.male.json new file mode 100644 index 0000000..3fd2c40 --- /dev/null +++ b/data/historical/united-kingdom/culture/divorce/uk-divorce-age-median.male.json @@ -0,0 +1,85 @@ +{ + "metadata" : { + "name" : "Median Male Age At Divorce", + "description" : "median male age at divorce.", + "units" : "years", + "year" : "1950-2012", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage","divorce","male","gender"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.theguardian.com/news/datablog/2010/jan/28/divorce-rates-marriage-ons" + ] + }, + "data" : [ + ["year","uk.divorce.age.median.male"], + [1950,36.6], + [1951,37.2], + [1952,37.7], + [1953,37.6], + [1954,37.7], + [1955,37.7], + [1956,38], + [1957,38.5], + [1958,38.5], + [1959,38.4], + [1960,38.2], + [1961,38], + [1962,38], + [1963,37.6], + [1964,37.1], + [1965,36.9], + [1966,36.5], + [1967,36.3], + [1968,36.1], + [1969,35.6], + [1970,35.3], + [1971,36.6], + [1972,37.4], + [1973,36.2], + [1974,35.9], + [1975,35.6], + [1976,35.4], + [1977,35.4], + [1978,35.5], + [1979,35.3], + [1980,35.2], + [1981,35.4], + [1982,35.6], + [1983,36], + [1984,36.4], + [1985,35.7], + [1986,36.2], + [1987,36.4], + [1988,36.7], + [1989,36.7], + [1990,36.8], + [1991,37], + [1992,37.2], + [1993,37.3], + [1994,37.6], + [1995,37.9], + [1996,38.1], + [1997,38.4], + [1998,38.7], + [1999,39.2], + [2000,39.7], + [2001,40], + [2002,40.4], + [2003,40.9], + [2004,41.4], + [2005,42], + [2006,42.4], + [2007,42.7], + [2008,43], + [2009,43.2], + [2010,43.4], + [2011,43.8], + [2012,44.1] + ] +} diff --git a/data/historical/united-kingdom/culture/divorce/uk-divorce-total.json b/data/historical/united-kingdom/culture/divorce/uk-divorce-total.json new file mode 100644 index 0000000..afff872 --- /dev/null +++ b/data/historical/united-kingdom/culture/divorce/uk-divorce-total.json @@ -0,0 +1,177 @@ +{ + "metadata" : { + "name" : "Total Divorces", + "description" : "Total number of divorces.", + "units" : "divorces", + "year" : "1858-2012", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage","divorce"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.theguardian.com/news/datablog/2010/jan/28/divorce-rates-marriage-ons" + ] + }, + "data" : [ + ["year","uk.divorce.total"], + [1858,24], + [1859,117], + [1860,103], + [1861,196], + [1862,123], + [1863,134], + [1864,168], + [1865,179], + [1866,116], + [1867,119], + [1868,23], + [1869,159], + [1870,154], + [1871,166], + [1872,133], + [1873,215], + [1874,194], + [1875,194], + [1876,208], + [1877,249], + [1878,292], + [1879,358], + [1880,278], + [1881,311], + [1882,289], + [1883,334], + [1884,348], + [1885,396], + [1886,325], + [1887,440], + [1888,338], + [1889,351], + [1890,313], + [1891,369], + [1892,327], + [1893,387], + [1894,369], + [1895,407], + [1896,459], + [1897,503], + [1898,508], + [1899,468], + [1900,512], + [1901,477], + [1902,601], + [1903,606], + [1904,528], + [1905,604], + [1906,546], + [1907,644], + [1908,638], + [1909,694], + [1910,596], + [1911,580], + [1912,587], + [1913,577], + [1914,856], + [1915,680], + [1916,990], + [1917,703], + [1918,1111], + [1919,1654], + [1920,3090], + [1921,3522], + [1922,2588], + [1923,2667], + [1924,2286], + [1925,2605], + [1926,2622], + [1927,3190], + [1928,4018], + [1929,3396], + [1930,3563], + [1931,3764], + [1932,3894], + [1933,4042], + [1934,4287], + [1935,4069], + [1936,5146], + [1937,4886], + [1938,6250], + [1939,8254], + [1940,7755], + [1941,6368], + [1942,7618], + [1943,10012], + [1944,12312], + [1945,15634], + [1946,29829], + [1947,60254], + [1948,43698], + [1949,34856], + [1950,30870], + [1951,28767], + [1952,33922], + [1953,30326], + [1954,28027], + [1955,26816], + [1956,26265], + [1957,23785], + [1958,22654], + [1959,24286], + [1960,23868], + [1961,25394], + [1962,28935], + [1963,32052], + [1964,34868], + [1965,37785], + [1966,39067], + [1967,43093], + [1968,45794], + [1969,51310], + [1970,58239], + [1971,74437], + [1972,119025], + [1973,106003], + [1974,113500], + [1975,120522], + [1976,126694], + [1977,129053], + [1978,143667], + [1979,138706], + [1980,148301], + [1981,145713], + [1982,146698], + [1983,147479], + [1984,144501], + [1985,160300], + [1986,153903], + [1987,151007], + [1988,152633], + [1989,150872], + [1990,153386], + [1991,158745], + [1992,160385], + [1993,165018], + [1994,158175], + [1995,155499], + [1996,157107], + [1997,146689], + [1998,145214], + [1999,144556], + [2000,141135], + [2001,143818], + [2002,147735], + [2003,153065], + [2004,152923], + [2005,141322], + [2006,132140], + [2007,128131], + [2008,121708], + [2009,113949], + [2010,119589], + [2011,117558], + [2012,118140] + ] +} diff --git a/data/historical/united-kingdom/culture/marriage/uk-marriage-rate-female.json b/data/historical/united-kingdom/culture/marriage/uk-marriage-rate-female.json new file mode 100644 index 0000000..da724b6 --- /dev/null +++ b/data/historical/united-kingdom/culture/marriage/uk-marriage-rate-female.json @@ -0,0 +1,114 @@ +{ + "metadata" : { + "name" : "Female Marriage Rate", + "description" : "Marriages per 1,000 unmarried men and women aged 16 years and over.", + "units" : "marriages/1k unmarried men and women", + "year" : "1929-2019", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage","female","gender"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/marriagecohabitationandcivilpartnerships/bulletins/marriagesinenglandandwalesprovisional/2019", + "https://www.ons.gov.uk/visualisations/dvc1857/fig1/datadownload.xlsx" + ] + }, + "data" : [ + ["year","uk.marriage.rate.female"], + [1929,41.9], + [1930,42.0], + [1931,41.6], + [1932,41.0], + [1933,42.6], + [1934,46.1], + [1935,46.6], + [1936,46.9], + [1937,47.4], + [1938,47.8], + [1939,58.3], + [1940,63.4], + [1941,53.2], + [1942,51.0], + [1943,40.9], + [1944,41.6], + [1945,54.7], + [1946,53.6], + [1947,56.6], + [1948,56.4], + [1949,53.7], + [1950,51.7], + [1951,52.1], + [1952,50.9], + [1953,50.5], + [1954,50.3], + [1955,53.1], + [1956,52.9], + [1957,52.3], + [1958,51.1], + [1959,50.8], + [1960,50.9], + [1961,50.9], + [1962,50.3], + [1963,50.3], + [1964,51.3], + [1965,52.8], + [1966,54.6], + [1967,54.8], + [1968,58.1], + [1969,56.7], + [1970,59.5], + [1971,60.5], + [1972,63.5], + [1973,59.4], + [1974,56.5], + [1975,55.2], + [1976,51.2], + [1977,49.8], + [1978,50.2], + [1979,49.2], + [1980,48.1], + [1981,44.7], + [1982,42.5], + [1983,41.8], + [1984,41.6], + [1985,40.5], + [1986,39.8], + [1987,39.6], + [1988,38.8], + [1989,38.1], + [1990,36.1], + [1991,33.2], + [1992,33.4], + [1993,31.8], + [1994,30.6], + [1995,29.4], + [1996,28.5], + [1997,27.5], + [1998,26.6], + [1999,25.8], + [2000,25.9], + [2001,23.7], + [2002,25.1], + [2003,26.2], + [2004,26.0], + [2005,23.3], + [2006,22.0], + [2007,21.4], + [2008,21.0], + [2009,20.5], + [2010,21.3], + [2011,21.3], + [2012,22.5], + [2013,20.4], + [2014,20.9], + [2015,19.8], + [2016,20.1], + [2017,19.5], + [2018,18.6], + [2019,17.2] + ] +} diff --git a/data/historical/united-kingdom/culture/marriage/uk-marriage-rate-male.json b/data/historical/united-kingdom/culture/marriage/uk-marriage-rate-male.json new file mode 100644 index 0000000..77948bc --- /dev/null +++ b/data/historical/united-kingdom/culture/marriage/uk-marriage-rate-male.json @@ -0,0 +1,114 @@ +{ + "metadata" : { + "name" : "Male Marriage Rate", + "description" : "Marriages per 1,000 unmarried men and women aged 16 years and over.", + "units" : "marriages/1k unmarried men and women", + "year" : "1929-2019", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage","male","gender"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/marriagecohabitationandcivilpartnerships/bulletins/marriagesinenglandandwalesprovisional/2019", + "https://www.ons.gov.uk/visualisations/dvc1857/fig1/datadownload.xlsx" + ] + }, + "data" : [ + ["year","uk.marriage.rate.male"], + [1929,55.2], + [1930,55.6], + [1931,53.4], + [1932,52.5], + [1933,54.6], + [1934,59.3], + [1935,59.8], + [1936,60.3], + [1937,60.6], + [1938,61.2], + [1939,74.4], + [1940,80.5], + [1941,68.5], + [1942,66.7], + [1943,54.0], + [1944,54.5], + [1945,72.1], + [1946,68.9], + [1947,73.0], + [1948,72.0], + [1949,68.6], + [1950,66.1], + [1951,69.2], + [1952,67.6], + [1953,67.2], + [1954,67.0], + [1955,70.8], + [1956,70.9], + [1957,70.0], + [1958,68.5], + [1959,68.0], + [1960,67.8], + [1961,67.1], + [1962,65.6], + [1963,65.5], + [1964,66.4], + [1965,68.3], + [1966,70.7], + [1967,71.2], + [1968,75.6], + [1969,73.7], + [1970,77.5], + [1971,80.3], + [1972,84.0], + [1973,78.2], + [1974,74.0], + [1975,71.8], + [1976,66.0], + [1977,63.9], + [1978,64.0], + [1979,62.2], + [1980,60.4], + [1981,55.7], + [1982,52.5], + [1983,51.2], + [1984,50.5], + [1985,48.7], + [1986,48.1], + [1987,47.1], + [1988,45.8], + [1989,44.8], + [1990,42.1], + [1991,39.3], + [1992,39.6], + [1993,37.7], + [1994,36.3], + [1995,34.7], + [1996,33.6], + [1997,32.3], + [1998,31.1], + [1999,30.1], + [2000,30.1], + [2001,27.4], + [2002,28.8], + [2003,29.8], + [2004,29.4], + [2005,26.4], + [2006,24.9], + [2007,24.0], + [2008,23.5], + [2009,22.8], + [2010,23.6], + [2011,23.4], + [2012,24.6], + [2013,22.5], + [2014,23.0], + [2015,21.7], + [2016,21.9], + [2017,21.2], + [2018,20.1], + [2019,18.6] + ] +} diff --git a/data/historical/united-kingdom/culture/marriage/uk-marriage-rate.json b/data/historical/united-kingdom/culture/marriage/uk-marriage-rate.json new file mode 100644 index 0000000..5eca55c --- /dev/null +++ b/data/historical/united-kingdom/culture/marriage/uk-marriage-rate.json @@ -0,0 +1,170 @@ +{ + "metadata" : { + "name" : "Marriage Rate", + "description" : "Marriage rate per-year in the United Kingdom.", + "units" : "marriages/1k population", + "year" : "1862-2009", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage"], + "authors" : [ + "UK Office for National Statistics" + ], + "sources" : [ + "https://www.theguardian.com/news/datablog/2010/feb/11/marriage-rates-uk-data" + ] + }, + "data" : [ + ["year","uk.marriage.rate"], + [1862,54.35], + [1863,56.85], + [1864,58.3], + [1865,59.5], + [1866,59.6], + [1867,56.25], + [1868,54.8], + [1869,54.4], + [1870,55.2], + [1871,57.15], + [1872,59.45], + [1873,60.05], + [1874,58.15], + [1875,57.15], + [1876,56.35], + [1877,53.65], + [1878,51.7], + [1879,48.85], + [1880,50.65], + [1881,51.45], + [1882,52.4], + [1883,52.1], + [1884,50.55], + [1885,48.3], + [1886,47.1], + [1887,47.4], + [1888,47.3], + [1889,48.95], + [1890,50.2], + [1891,50.15], + [1892,49.4], + [1893,46.9], + [1894,47.75], + [1895,47.4], + [1896,49.5], + [1897,50.05], + [1898,50.5], + [1899,51.05], + [1900,49.3], + [1901,48.95], + [1902,48.85], + [1903,48.2], + [1904,46.95], + [1905,47.1], + [1906,48.2], + [1907,48.85], + [1908,46.2], + [1909,45], + [1910,45.75], + [1911,46.65], + [1912,47.85], + [1913,47.95], + [1914,48.6], + [1915,59.35], + [1916,46.1], + [1917,42.8], + [1918,47.7], + [1919,61.55], + [1920,63.1], + [1921,53.1], + [1922,49.15], + [1923,47.5], + [1924,47.4], + [1925,47.1], + [1926,44.15], + [1927,48.35], + [1928,47.3], + [1929,48.55], + [1930,48.8], + [1931,47.5], + [1932,46.75], + [1933,48.6], + [1934,52.7], + [1935,53.2], + [1936,53.6], + [1937,54], + [1938,54.5], + [1939,66.35], + [1940,71.95], + [1941,60.85], + [1942,58.85], + [1943,47.45], + [1944,48.05], + [1945,63.4], + [1946,61.25], + [1947,64.8], + [1948,64.2], + [1949,61.15], + [1950,58.9], + [1951,60.65], + [1952,59.25], + [1953,58.85], + [1954,58.65], + [1955,61.95], + [1956,61.9], + [1957,61.15], + [1958,59.8], + [1959,59.4], + [1960,59.35], + [1961,59], + [1962,57.95], + [1963,57.9], + [1964,58.85], + [1965,60.55], + [1966,62.65], + [1967,63], + [1968,66.85], + [1969,65.2], + [1970,68.5], + [1971,66.4], + [1972,69.45], + [1973,64.7], + [1974,61.35], + [1975,59.7], + [1976,55], + [1977,53.45], + [1978,53.65], + [1979,52.3], + [1980,54.25], + [1981,50.2], + [1982,47.5], + [1983,46.5], + [1984,46.05], + [1985,44.6], + [1986,43.8], + [1987,43.35], + [1988,42.3], + [1989,41.45], + [1990,39.1], + [1991,36.25], + [1992,36.5], + [1993,34.75], + [1994,33.45], + [1995,32], + [1996,31.05], + [1997,29.9], + [1998,28.85], + [1999,27.95], + [2000,28], + [2001,25.55], + [2002,25.6], + [2003,26.5], + [2004,26.15], + [2005,23.2], + [2006,22.15], + [2007,21.3], + [2008,20.7], + [2009,20.25] + ] +} diff --git a/data/historical/united-kingdom/culture/marriage/uk-marriage-total.json b/data/historical/united-kingdom/culture/marriage/uk-marriage-total.json new file mode 100644 index 0000000..8f25cf7 --- /dev/null +++ b/data/historical/united-kingdom/culture/marriage/uk-marriage-total.json @@ -0,0 +1,114 @@ +{ + "metadata" : { + "name" : "Total Marriages", + "description" : "Total marriages by year.", + "units" : "marriages", + "year" : "1929-2019", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.ons.gov.uk/peoplepopulationandcommunity/birthsdeathsandmarriages/marriagecohabitationandcivilpartnerships/bulletins/marriagesinenglandandwalesprovisional/2019", + "https://www.ons.gov.uk/visualisations/dvc1857/fig1/datadownload.xlsx" + ] + }, + "data" : [ + ["year","uk.marriage.total"], + [1929,313000], + [1930,315000], + [1931,312000], + [1932,307000], + [1933,318000], + [1934,342000], + [1935,350000], + [1936,355000], + [1937,359000], + [1938,362000], + [1939,440000], + [1940,471000], + [1941,389000], + [1942,370000], + [1943,296000], + [1944,303000], + [1945,398000], + [1946,386000], + [1947,401000], + [1948,397000], + [1949,375000], + [1950,358000], + [1951,361000], + [1952,349000], + [1953,345000], + [1954,342000], + [1955,358000], + [1956,353000], + [1957,347000], + [1958,340000], + [1959,340000], + [1960,344000], + [1961,347000], + [1962,348000], + [1963,351000], + [1964,359000], + [1965,371000], + [1966,384000], + [1967,386000], + [1968,408000], + [1969,397000], + [1970,415000], + [1971,405000], + [1972,426000], + [1973,400000], + [1974,384000], + [1975,381000], + [1976,359000], + [1977,357000], + [1978,368000], + [1979,369000], + [1980,370000], + [1981,352000], + [1982,342000], + [1983,344000], + [1984,349000], + [1985,346000], + [1986,348000], + [1987,352000], + [1988,348000], + [1989,347000], + [1990,331000], + [1991,307000], + [1992,312000], + [1993,299000], + [1994,291000], + [1995,283000], + [1996,279000], + [1997,273000], + [1998,267000], + [1999,264000], + [2000,268000], + [2001,249000], + [2002,256000], + [2003,270000], + [2004,273000], + [2005,248000], + [2006,239000], + [2007,235000], + [2008,236000], + [2009,232000], + [2010,244000], + [2011,249000], + [2012,264000], + [2013,241000], + [2014,247000], + [2015,239000], + [2016,243000], + [2017,236000], + [2018,228000], + [2019,213000] + ] +} diff --git a/data/historical/united-kingdom/culture/marriage/uk.marriage.duration.median.json b/data/historical/united-kingdom/culture/marriage/uk.marriage.duration.median.json new file mode 100644 index 0000000..706f090 --- /dev/null +++ b/data/historical/united-kingdom/culture/marriage/uk.marriage.duration.median.json @@ -0,0 +1,72 @@ +{ + "metadata" : { + "name" : "Median Duration Of Marriage", + "description" : "Median duration of marriage at time of divorce.", + "units" : "years", + "year" : "1963-2012", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "culture", + "tags" : ["historical","uk","culture","marriage","divorce"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.theguardian.com/news/datablog/2010/jan/28/divorce-rates-marriage-ons" + ] + }, + "data" : [ + ["year","uk.marriage.duration.median"], + [1963,11.5], + [1964,11.3], + [1965,11.2], + [1966,11.1], + [1967,11], + [1968,11], + [1969,10.7], + [1970,10.5], + [1971,11.5], + [1972,12.2], + [1973,11.3], + [1974,10.9], + [1975,10.6], + [1976,10.5], + [1977,10.4], + [1978,10.4], + [1979,10.2], + [1980,10.1], + [1981,10.1], + [1982,10.1], + [1983,10.1], + [1984,10.1], + [1985,8.9], + [1986,9.4], + [1987,9.5], + [1988,9.7], + [1989,9.7], + [1990,9.8], + [1991,9.8], + [1992,9.9], + [1993,9.8], + [1994,9.8], + [1995,9.6], + [1996,9.9], + [1997,10], + [1998,10.2], + [1999,10.5], + [2000,10.7], + [2001,10.9], + [2002,11.1], + [2003,11.3], + [2004,11.5], + [2005,11.6], + [2006,11.6], + [2007,11.7], + [2008,11.5], + [2009,11.4], + [2010,11.4], + [2011,11.5], + [2012,11.5] + ] +} diff --git a/data/historical/united-kingdom/economics/uk-gdp.json b/data/historical/united-kingdom/economics/uk-gdp.json new file mode 100644 index 0000000..50aa4bf --- /dev/null +++ b/data/historical/united-kingdom/economics/uk-gdp.json @@ -0,0 +1,97 @@ +{ + "metadata" : { + "name" : "Gross Domestic Product (GDP)", + "description" : "Gross domestic product (GDP).", + "units" : "£", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United Kingdom", + "categorty" : "economics", + "tags" : ["historical","uk","economics","gdp"], + "authors" : [ + "United Kingdom Office for National Statistics" + ], + "sources" : [ + "https://www.ons.gov.uk/economy/grossdomesticproductgdp/timeseries/abmi/pn2" + ] + }, + "data" : [ + ["year","uk.gdp"], + [1948,405708000000], + [1949,419563000000], + [1950,433771000000], + [1951,449848000000], + [1952,456721000000], + [1953,481605000000], + [1954,502846000000], + [1955,522386000000], + [1956,531117000000], + [1957,541433000000], + [1958,548478000000], + [1959,571635000000], + [1960,607687000000], + [1961,623816000000], + [1962,630346000000], + [1963,660696000000], + [1964,698322000000], + [1965,713043000000], + [1966,724048000000], + [1967,743971000000], + [1968,784435000000], + [1969,799395000000], + [1970,820947000000], + [1971,850391000000], + [1972,887302000000], + [1973,944993000000], + [1974,921527000000], + [1975,907620000000], + [1976,935107000000], + [1977,957434000000], + [1978,996168000000], + [1979,1031645000000], + [1980,1008593000000], + [1981,999157000000], + [1982,1016032000000], + [1983,1055306000000], + [1984,1075379000000], + [1985,1115471000000], + [1986,1144194000000], + [1987,1203771000000], + [1988,1266148000000], + [1989,1293508000000], + [1990,1301766000000], + [1991,1279817000000], + [1992,1280206000000], + [1993,1307157000000], + [1994,1352627000000], + [1995,1381233000000], + [1996,1407583000000], + [1997,1471263000000], + [1998,1517715000000], + [1999,1563460000000], + [2000,1627447000000], + [2001,1662558000000], + [2002,1691998000000], + [2003,1744840000000], + [2004,1785756000000], + [2005,1833406000000], + [2006,1873015000000], + [2007,1921029000000], + [2008,1918064000000], + [2009,1831550000000], + [2010,1876058000000], + [2011,1896087000000], + [2012,1923551000000], + [2013,1958557000000], + [2014,2021225000000], + [2015,2069595000000], + [2016,2114406000000], + [2017,2166073000000], + [2018,2203005000000], + [2019,2238348000000], + [2020,1991439000000], + [2021,2142738000000], + [2022,2229421000000] + ] +} diff --git a/data/historical/united-states/crime/us-crime-assult-rate.json b/data/historical/united-states/crime/us-crime-assult-rate.json new file mode 100644 index 0000000..d0700af --- /dev/null +++ b/data/historical/united-states/crime/us-crime-assult-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Aggrevated Assault Rate", + "description" : "Number of aggrevated assults per 100,000 population.", + "units" : "assults/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","assault"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.assault.rate"], + [1960,86.1], + [1961,85.7], + [1962,88.6], + [1963,92.4], + [1964,106.2], + [1965,111.3], + [1966,120.3], + [1967,130.2], + [1968,143.8], + [1969,154.5], + [1970,164.8], + [1971,178.8], + [1972,188.8], + [1973,200.5], + [1974,215.8], + [1975,231.1], + [1976,233.2], + [1977,247], + [1978,262.1], + [1979,286], + [1980,298.5], + [1981,289.7], + [1982,289.1], + [1983,279.2], + [1984,290.2], + [1985,302.9], + [1986,347.4], + [1987,351.3], + [1988,370.2], + [1989,383.4], + [1990,424.1], + [1991,433.3], + [1992,441.8], + [1993,440.3], + [1994,427.6], + [1995,418.3], + [1996,390.9], + [1997,382.1], + [1998,360.5], + [1999,334.3], + [2000,324], + [2001,318.6], + [2002,309.5], + [2003,295.4], + [2004,288.6], + [2005,290.8], + [2006,287.5], + [2007,283.8], + [2008,276.7], + [2009,264.7], + [2010,252.8], + [2011,241.5], + [2012,242.8], + [2013,229.6], + [2014,229.2], + [2015,238.1], + [2016,248.3], + [2017,249.2], + [2018,248.2], + [2019,250.2] + ] +} diff --git a/data/historical/united-states/crime/us-crime-assult-total.json b/data/historical/united-states/crime/us-crime-assult-total.json new file mode 100644 index 0000000..d5e5035 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-assult-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Aggrevated Assaults", + "description" : "Total number of aggrevated assaults recorded.", + "units" : "assaults", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","assault"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.assult.total"], + [1960,154320], + [1961,156760], + [1962,164570], + [1963,174210], + [1964,203050], + [1965,215330], + [1966,235330], + [1967,257160], + [1968,286700], + [1969,311090], + [1970,334970], + [1971,368760], + [1972,393090], + [1973,420650], + [1974,456210], + [1975,492620], + [1976,500530], + [1977,534350], + [1978,571460], + [1979,629480], + [1980,672650], + [1981,663900], + [1982,669480], + [1983,653290], + [1984,685350], + [1985,723250], + [1986,834322], + [1987,855088], + [1988,910090], + [1989,951710], + [1990,1054860], + [1991,1092740], + [1992,1126970], + [1993,1135610], + [1994,1113180], + [1995,1099210], + [1996,1037050], + [1997,1023201], + [1998,974402], + [1999,911740], + [2000,911706], + [2001,909023], + [2002,891407], + [2003,859030], + [2004,847381], + [2005,862220], + [2006,860853], + [2007,855856], + [2008,842134], + [2009,812514], + [2010,781844], + [2011,752423], + [2012,762009], + [2013,726575], + [2014,731089], + [2015,764057], + [2016,802982], + [2017,810319], + [2018,810982], + [2019,821182] + ] +} diff --git a/data/historical/united-states/crime/us-crime-burglary-rate.json b/data/historical/united-states/crime/us-crime-burglary-rate.json new file mode 100644 index 0000000..c343ebf --- /dev/null +++ b/data/historical/united-states/crime/us-crime-burglary-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Burglary Rate", + "description" : "Number of burglaries per 100,000 population.", + "units" : "burglaries/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","burglary"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.burglary.rate"], + [1960,508.6], + [1961,518.9], + [1962,535.2], + [1963,576.4], + [1964,634.7], + [1965,662.7], + [1966,721], + [1967,826.6], + [1968,932.3], + [1969,984.1], + [1970,1084.9], + [1971,1163.5], + [1972,1140.8], + [1973,1222.5], + [1974,1437.7], + [1975,1532.1], + [1976,1448.2], + [1977,1419.8], + [1978,1434.6], + [1979,1511.9], + [1980,1684.1], + [1981,1649.5], + [1982,1488.8], + [1983,1337.7], + [1984,1263.7], + [1985,1287.3], + [1986,1349.8], + [1987,1329.6], + [1988,1309.2], + [1989,1276.3], + [1990,1235.9], + [1991,1252], + [1992,1168.2], + [1993,1099.2], + [1994,1042], + [1995,987.1], + [1996,945], + [1997,919.6], + [1998,862], + [1999,770.4], + [2000,728.8], + [2001,741.8], + [2002,747], + [2003,741], + [2004,730.3], + [2005,726.9], + [2006,729.4], + [2007,722.5], + [2008,732.1], + [2009,717.7], + [2010,701], + [2011,701.3], + [2012,672.2], + [2013,610.4], + [2014,537.2], + [2015,494.7], + [2016,468.9], + [2017,429.7], + [2018,378], + [2019,340.5] + ] +} diff --git a/data/historical/united-states/crime/us-crime-burglary-total.json b/data/historical/united-states/crime/us-crime-burglary-total.json new file mode 100644 index 0000000..6d2fe85 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-burglary-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Burglaries", + "description" : "Total number of burglaries recorded.", + "units" : "burglaries", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","burglary"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.burglary.total"], + [1960,912100], + [1961,949600], + [1962,994300], + [1963,1086400], + [1964,1213200], + [1965,1282500], + [1966,1410100], + [1967,1632100], + [1968,1858900], + [1969,1981900], + [1970,2205000], + [1971,2399300], + [1972,2375500], + [1973,2565500], + [1974,3039200], + [1975,3265300], + [1976,3108700], + [1977,3071500], + [1978,3128300], + [1979,3327700], + [1980,3795200], + [1981,3779700], + [1982,3447100], + [1983,3129900], + [1984,2984400], + [1985,3073300], + [1986,3241410], + [1987,3236184], + [1988,3218100], + [1989,3168200], + [1990,3073900], + [1991,3157200], + [1992,2979900], + [1993,2834800], + [1994,2712800], + [1995,2593800], + [1996,2506400], + [1997,2460526], + [1998,2329950], + [1999,2100739], + [2000,2050992], + [2001,2116531], + [2002,2151252], + [2003,2154834], + [2004,2144446], + [2005,2155448], + [2006,2183746], + [2007,2176140], + [2008,2228474], + [2009,2203313], + [2010,2168457], + [2011,2185140], + [2012,2109932], + [2013,1931835], + [2014,1713153], + [2015,1587564], + [2016,1516405], + [2017,1397045], + [2018,1235013], + [2019,1117696] + ] +} diff --git a/data/historical/united-states/crime/us-crime-homocide-rate.json b/data/historical/united-states/crime/us-crime-homocide-rate.json new file mode 100644 index 0000000..936024c --- /dev/null +++ b/data/historical/united-states/crime/us-crime-homocide-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Homocide Rate", + "description" : "Number of homocides per 100,000 population.", + "units" : "homocides/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","homocide"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.homocide.rate"], + [1960,5.1], + [1961,4.8], + [1962,4.6], + [1963,4.6], + [1964,4.9], + [1965,5.1], + [1966,5.6], + [1967,6.2], + [1968,6.9], + [1969,7.3], + [1970,7.9], + [1971,8.6], + [1972,9], + [1973,9.4], + [1974,9.8], + [1975,9.6], + [1976,8.7], + [1977,8.8], + [1978,9], + [1979,9.8], + [1980,10.2], + [1981,9.8], + [1982,9.1], + [1983,8.3], + [1984,7.9], + [1985,8], + [1986,8.6], + [1987,8.3], + [1988,8.4], + [1989,8.7], + [1990,9.4], + [1991,9.8], + [1992,9.3], + [1993,9.5], + [1994,9], + [1995,8.2], + [1996,7.4], + [1997,6.8], + [1998,6.3], + [1999,5.7], + [2000,5.5], + [2001,5.6], + [2002,5.6], + [2003,5.7], + [2004,5.5], + [2005,5.6], + [2006,5.7], + [2007,5.6], + [2008,5.4], + [2009,5], + [2010,4.8], + [2011,4.7], + [2012,4.7], + [2013,4.5], + [2014,4.4], + [2015,4.9], + [2016,5.4], + [2017,5.3], + [2018,5], + [2019,5] + ] +} diff --git a/data/historical/united-states/crime/us-crime-homocide-serialkiller-victim-rate.json b/data/historical/united-states/crime/us-crime-homocide-serialkiller-victim-rate.json new file mode 100644 index 0000000..4dc6963 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-homocide-serialkiller-victim-rate.json @@ -0,0 +1,135 @@ +{ + "metadata" : { + "name" : "Serial Killer Victims", + "description" : "Number of serial killer victims per 10 million population.", + "units" : "deaths/10m population", + "year" : "1900-2012", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","homocide","victims"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://robslink.com/SAS/democd80/us_serial_killers_by_year.htm" + ] + }, + "data" : [ + ["year","us.homocide.serialkiller.victim.rate"], + [1900,2.1], + [1901,0.77], + [1902,1.26], + [1903,0.87], + [1904,1.22], + [1905,1.31], + [1906,2.22], + [1907,2.07], + [1908,0.9], + [1909,1.66], + [1910,1.08], + [1911,5.01], + [1912,5.87], + [1913,1.23], + [1914,2.12], + [1915,0.99], + [1916,0.98], + [1917,1.16], + [1918,1.36], + [1919,1.44], + [1920,2.44], + [1921,3.69], + [1922,1.18], + [1923,2.59], + [1924,0.53], + [1925,1.38], + [1926,3.32], + [1927,1.18], + [1928,1.16], + [1929,0.57], + [1930,0.65], + [1931,1.29], + [1932,1.12], + [1933,1.27], + [1934,1.11], + [1935,1.1], + [1936,0.62], + [1937,1.32], + [1938,1.23], + [1939,0.92], + [1940,0.53], + [1941,0.37], + [1942,0.52], + [1943,0.73], + [1944,0.87], + [1945,1.43], + [1946,1.49], + [1947,0.62], + [1948,1.02], + [1949,0.54], + [1950,0.92], + [1951,1.29], + [1952,0.44], + [1953,1.31], + [1954,1.35], + [1955,0.78], + [1956,1.24], + [1957,1.22], + [1958,1.54], + [1959,0.73], + [1960,1.77], + [1961,1.47], + [1962,1.45], + [1963,1.64], + [1964,2.08], + [1965,1.8], + [1966,3.76], + [1967,1.66], + [1968,2.54], + [1969,4.19], + [1970,3.8], + [1971,6.16], + [1972,6.1], + [1973,8.26], + [1974,10.43], + [1975,6.9], + [1976,6.47], + [1977,8.58], + [1978,10.65], + [1979,9.64], + [1980,12.67], + [1981,10.55], + [1982,9.19], + [1983,9.88], + [1984,12.04], + [1985,10.72], + [1986,12.24], + [1987,14.65], + [1988,8.75], + [1989,10.33], + [1990,8.69], + [1991,9.72], + [1992,9.71], + [1993,9.39], + [1994,8.63], + [1995,8.49], + [1996,7.42], + [1997,7.19], + [1998,6.2], + [1999,6.34], + [2000,4.82], + [2001,4.49], + [2002,5.84], + [2003,4.45], + [2004,4.92], + [2005,4.3], + [2006,4.49], + [2007,4.48], + [2008,3.16], + [2009,3.78], + [2010,3.62], + [2011,2.76], + [2012,2.48] + ] +} diff --git a/data/historical/united-states/crime/us-crime-homocide-serialkiller-victim-total.json b/data/historical/united-states/crime/us-crime-homocide-serialkiller-victim-total.json new file mode 100644 index 0000000..2489d94 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-homocide-serialkiller-victim-total.json @@ -0,0 +1,135 @@ +{ + "metadata" : { + "name" : "Serial Killer Victims", + "description" : "Total known victims of serial killers.", + "units" : "deaths", + "year" : "1900-2012", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","homocide","victims"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://robslink.com/SAS/democd80/us_serial_killers_by_year.htm" + ] + }, + "data" : [ + ["year","us.homocide.serialkiller.victim.total"], + [1900,16], + [1901,6], + [1902,10], + [1903,7], + [1904,10], + [1905,11], + [1906,19], + [1907,18], + [1908,8], + [1909,15], + [1910,10], + [1911,47], + [1912,56], + [1913,12], + [1914,21], + [1915,10], + [1916,10], + [1917,12], + [1918,14], + [1919,15], + [1920,26], + [1921,40], + [1922,13], + [1923,29], + [1924,6], + [1925,16], + [1926,39], + [1927,14], + [1928,14], + [1929,7], + [1930,8], + [1931,16], + [1932,14], + [1933,16], + [1934,14], + [1935,14], + [1936,8], + [1937,17], + [1938,16], + [1939,12], + [1940,7], + [1941,5], + [1942,7], + [1943,10], + [1944,12], + [1945,20], + [1946,21], + [1947,9], + [1948,15], + [1949,8], + [1950,14], + [1951,20], + [1952,7], + [1953,21], + [1954,22], + [1955,13], + [1956,21], + [1957,21], + [1958,27], + [1959,13], + [1960,32], + [1961,27], + [1962,27], + [1963,31], + [1964,40], + [1965,35], + [1966,74], + [1967,33], + [1968,51], + [1969,85], + [1970,78], + [1971,128], + [1972,128], + [1973,175], + [1974,223], + [1975,149], + [1976,141], + [1977,189], + [1978,237], + [1979,217], + [1980,288], + [1981,242], + [1982,213], + [1983,231], + [1984,284], + [1985,255], + [1986,294], + [1987,355], + [1988,214], + [1989,255], + [1990,217], + [1991,246], + [1992,249], + [1993,244], + [1994,227], + [1995,226], + [1996,200], + [1997,196], + [1998,171], + [1999,177], + [2000,136], + [2001,128], + [2002,168], + [2003,129], + [2004,144], + [2005,127], + [2006,134], + [2007,135], + [2008,96], + [2009,116], + [2010,112], + [2011,86], + [2012,78] + ] +} diff --git a/data/historical/united-states/crime/us-crime-homocide-total.json b/data/historical/united-states/crime/us-crime-homocide-total.json new file mode 100644 index 0000000..5f64a4c --- /dev/null +++ b/data/historical/united-states/crime/us-crime-homocide-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Homocides", + "description" : "Total number of homocides recorded.", + "units" : "homocides", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","homocide"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.homocide.total"], + [1960,9110], + [1961,8740], + [1962,8530], + [1963,8640], + [1964,9360], + [1965,9960], + [1966,11040], + [1967,12240], + [1968,13800], + [1969,14760], + [1970,16000], + [1971,17780], + [1972,18670], + [1973,19640], + [1974,20710], + [1975,20510], + [1976,18780], + [1977,19120], + [1978,19560], + [1979,21460], + [1980,23040], + [1981,22520], + [1982,21010], + [1983,19310], + [1984,18690], + [1985,18980], + [1986,20613], + [1987,20096], + [1988,20680], + [1989,21500], + [1990,23440], + [1991,24700], + [1992,23760], + [1993,24530], + [1994,23330], + [1995,21610], + [1996,19650], + [1997,18208], + [1998,16914], + [1999,15522], + [2000,15586], + [2001,16037], + [2002,16229], + [2003,16528], + [2004,16148], + [2005,16740], + [2006,17030], + [2007,16929], + [2008,16442], + [2009,15399], + [2010,14772], + [2011,14661], + [2012,14866], + [2013,14319], + [2014,14164], + [2015,15883], + [2016,17413], + [2017,17294], + [2018,16374], + [2019,16425] + ] +} diff --git a/data/historical/united-states/crime/us-crime-property-rate.json b/data/historical/united-states/crime/us-crime-property-rate.json new file mode 100644 index 0000000..f18e3fb --- /dev/null +++ b/data/historical/united-states/crime/us-crime-property-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Property Crime Rate", + "description" : "Number of property crimes per 100,000 population.", + "units" : "crimes/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","property"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.property.rate"], + [1960,1726.3], + [1961,1747.9], + [1962,1857.5], + [1963,2012.1], + [1964,2197.5], + [1965,2248.8], + [1966,2450.9], + [1967,2736.5], + [1968,3071.8], + [1969,3351.3], + [1970,3621], + [1971,3768.8], + [1972,3560.4], + [1973,3737], + [1974,4389.3], + [1975,4810.7], + [1976,4819.5], + [1977,4601.7], + [1978,4642.5], + [1979,5016.6], + [1980,5353.3], + [1981,5263.8], + [1982,5032.5], + [1983,4637.3], + [1984,4492.1], + [1985,4650.5], + [1986,4881.8], + [1987,4940.3], + [1988,5027.1], + [1989,5077.9], + [1990,5088.5], + [1991,5139.7], + [1992,4902.7], + [1993,4737.7], + [1994,4660], + [1995,4591.3], + [1996,4451], + [1997,4316.3], + [1998,4049.1], + [1999,3743.6], + [2000,3618.3], + [2001,3658.1], + [2002,3630.6], + [2003,3591.2], + [2004,3514.1], + [2005,3431.5], + [2006,3334.5], + [2007,3263.5], + [2008,3211.5], + [2009,3036.1], + [2010,2945.9], + [2011,2905.4], + [2012,2868], + [2013,2733.3], + [2014,2574.1], + [2015,2500.5], + [2016,2451.6], + [2017,2362.9], + [2018,2209.8], + [2019,2109.9] + ] +} diff --git a/data/historical/united-states/crime/us-crime-property-total.json b/data/historical/united-states/crime/us-crime-property-total.json new file mode 100644 index 0000000..4c55691 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-property-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Property Crimes", + "description" : "Total number of property crimes recorded.", + "units" : "crimes", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","property"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.property.total"], + [1960,3095700], + [1961,3198600], + [1962,3450700], + [1963,3792500], + [1964,4200400], + [1965,4352000], + [1966,4793300], + [1967,5403500], + [1968,6125200], + [1969,6749000], + [1970,7359200], + [1971,7771700], + [1972,7413900], + [1973,7842200], + [1974,9278700], + [1975,10252700], + [1976,10345500], + [1977,9955000], + [1978,10123400], + [1979,11041500], + [1980,12063700], + [1981,12061900], + [1982,11652000], + [1983,10850500], + [1984,10608500], + [1985,11102600], + [1986,11722700], + [1987,12024700], + [1988,12356900], + [1989,12605400], + [1990,12655500], + [1991,12961100], + [1992,12505900], + [1993,12218800], + [1994,12131900], + [1995,12063900], + [1996,11805300], + [1997,11558175], + [1998,10944590], + [1999,10208334], + [2000,10182586], + [2001,10437480], + [2002,10455277], + [2003,10442862], + [2004,10319386], + [2005,10174754], + [2006,9983568], + [2007,9843481], + [2008,9767915], + [2009,9337060], + [2010,9112625], + [2011,9052743], + [2012,9001992], + [2013,8650761], + [2014,8209010], + [2015,8024115], + [2016,7928530], + [2017,7682988], + [2018,7219084], + [2019,6925677] + ] +} diff --git a/data/historical/united-states/crime/us-crime-rape-rate.json b/data/historical/united-states/crime/us-crime-rape-rate.json new file mode 100644 index 0000000..0386daf --- /dev/null +++ b/data/historical/united-states/crime/us-crime-rape-rate.json @@ -0,0 +1,84 @@ +{ + "metadata" : { + "name" : "Forcible Rape Rate", + "description" : "Number of forcible rapes per 100,000 population.", + "units" : "rapes/100k population", + "year" : "1960-2019", + "notes" : [ + "For the year 2016 and beyond the FBI report includes all genders of rape in the Forcible Rape category. Prior to 2016 rape reports counted were by females only." + ], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","rape"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.rape.rate"], + [1960,9.6], + [1961,9.4], + [1962,9.4], + [1963,9.4], + [1964,11.2], + [1965,12.1], + [1966,13.2], + [1967,14], + [1968,15.9], + [1969,18.5], + [1970,18.7], + [1971,20.5], + [1972,22.5], + [1973,24.5], + [1974,26.2], + [1975,26.3], + [1976,26.6], + [1977,29.4], + [1978,31], + [1979,34.7], + [1980,36.8], + [1981,36], + [1982,34], + [1983,33.7], + [1984,35.7], + [1985,37.1], + [1986,38.1], + [1987,37.4], + [1988,37.6], + [1989,38.1], + [1990,41.2], + [1991,42.3], + [1992,42.8], + [1993,41.1], + [1994,39.3], + [1995,37.1], + [1996,36.3], + [1997,35.9], + [1998,34.4], + [1999,32.8], + [2000,32], + [2001,31.8], + [2002,33.1], + [2003,32.3], + [2004,32.4], + [2005,31.8], + [2006,30.9], + [2007,30], + [2008,29.7], + [2009,29.1], + [2010,27.7], + [2011,27], + [2012,27.1], + [2013,25.9], + [2014,26.6], + [2015,28.4], + [2016,40.9], + [2017,41.7], + [2018,44], + [2019,42.6] + ] +} diff --git a/data/historical/united-states/crime/us-crime-rape-total.json b/data/historical/united-states/crime/us-crime-rape-total.json new file mode 100644 index 0000000..5e14e89 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-rape-total.json @@ -0,0 +1,84 @@ +{ + "metadata" : { + "name" : "Number Of Forcible Rapes", + "description" : "Total number of forcible rapes recorded.", + "units" : "rapes", + "year" : "1960-2019", + "notes" : [ + "For the year 2016 and beyond the FBI report includes all genders of rape in the Forcible Rape category. Prior to 2016 rape reports counted were by females only." + ], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","rape"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.rape.total"], + [1960,17190], + [1961,17220], + [1962,17550], + [1963,17650], + [1964,21420], + [1965,23410], + [1966,25820], + [1967,27620], + [1968,31670], + [1969,37170], + [1970,37990], + [1971,42260], + [1972,46850], + [1973,51400], + [1974,55400], + [1975,56090], + [1976,57080], + [1977,63500], + [1978,67610], + [1979,76390], + [1980,82990], + [1981,82500], + [1982,78770], + [1983,78920], + [1984,84230], + [1985,88670], + [1986,91459], + [1987,91110], + [1988,92490], + [1989,94500], + [1990,102560], + [1991,106590], + [1992,109060], + [1993,106010], + [1994,102220], + [1995,97470], + [1996,96250], + [1997,96153], + [1998,93103], + [1999,89411], + [2000,90178], + [2001,90863], + [2002,95235], + [2003,93883], + [2004,95089], + [2005,94347], + [2006,92757], + [2007,90427], + [2008,90479], + [2009,89241], + [2010,85593], + [2011,84175], + [2012,85141], + [2013,82109], + [2014,84864], + [2015,91261], + [2016,132414], + [2017,135666], + [2018,143765], + [2019,139815] + ] +} diff --git a/data/historical/united-states/crime/us-crime-robbery-rate.json b/data/historical/united-states/crime/us-crime-robbery-rate.json new file mode 100644 index 0000000..04f0e49 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-robbery-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Robbery Rate", + "description" : "Number of robberies per 100,000 population.", + "units" : "robberies/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","robbery"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.robbery.rate"], + [1960,60.1], + [1961,58.3], + [1962,59.7], + [1963,61.8], + [1964,68.2], + [1965,71.7], + [1966,80.8], + [1967,102.8], + [1968,131.8], + [1969,148.4], + [1970,172.1], + [1971,188], + [1972,180.7], + [1973,183.1], + [1974,209.3], + [1975,220.8], + [1976,199.3], + [1977,190.7], + [1978,195.8], + [1979,218.4], + [1980,251.1], + [1981,258.7], + [1982,238.9], + [1983,216.5], + [1984,205.4], + [1985,208.5], + [1986,226], + [1987,212.7], + [1988,220.9], + [1989,233], + [1990,257], + [1991,272.7], + [1992,263.6], + [1993,255.9], + [1994,237.7], + [1995,220.9], + [1996,201.9], + [1997,186.1], + [1998,165.2], + [1999,150.1], + [2000,145], + [2001,148.5], + [2002,146.1], + [2003,142.5], + [2004,136.7], + [2005,140.8], + [2006,149.4], + [2007,147.6], + [2008,145.7], + [2009,133.1], + [2010,119.3], + [2011,113.9], + [2012,113.1], + [2013,109], + [2014,101.3], + [2015,102.2], + [2016,102.9], + [2017,98.6], + [2018,86.1], + [2019,81.6] + ] +} diff --git a/data/historical/united-states/crime/us-crime-robbery-total.json b/data/historical/united-states/crime/us-crime-robbery-total.json new file mode 100644 index 0000000..417537f --- /dev/null +++ b/data/historical/united-states/crime/us-crime-robbery-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Robberies", + "description" : "Total number of robberies recorded.", + "units" : "robberies", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","robbery"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.robbery.total"], + [1960,107840], + [1961,106670], + [1962,110860], + [1963,116470], + [1964,130390], + [1965,138690], + [1966,157990], + [1967,202910], + [1968,262840], + [1969,298850], + [1970,349860], + [1971,387700], + [1972,376290], + [1973,384220], + [1974,442400], + [1975,470500], + [1976,427810], + [1977,412610], + [1978,426930], + [1979,480700], + [1980,565840], + [1981,592910], + [1982,553130], + [1983,506570], + [1984,485010], + [1985,497870], + [1986,542775], + [1987,517704], + [1988,542970], + [1989,578330], + [1990,639270], + [1991,687730], + [1992,672480], + [1993,659870], + [1994,618950], + [1995,580510], + [1996,535590], + [1997,498534], + [1998,446625], + [1999,409371], + [2000,408016], + [2001,423557], + [2002,420806], + [2003,414235], + [2004,401470], + [2005,417438], + [2006,447403], + [2007,445125], + [2008,443574], + [2009,408742], + [2010,369089], + [2011,354772], + [2012,355051], + [2013,345095], + [2014,322905], + [2015,328109], + [2016,332797], + [2017,320596], + [2018,281278], + [2019,267988] + ] +} diff --git a/data/historical/united-states/crime/us-crime-theft-larceny-rate.json b/data/historical/united-states/crime/us-crime-theft-larceny-rate.json new file mode 100644 index 0000000..4aa52c1 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-theft-larceny-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Larceny Rate", + "description" : "Number of larceny thefts per 100,000 population.", + "units" : "thefts/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","theft","larceny"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.theft.larceny.rate"], + [1960,1034.7], + [1961,1045.4], + [1962,1124.8], + [1963,1219.1], + [1964,1315.5], + [1965,1329.3], + [1966,1442.9], + [1967,1575.8], + [1968,1746.6], + [1969,1930.9], + [1970,2079.3], + [1971,2145.5], + [1972,1993.6], + [1973,2071.9], + [1974,2489.5], + [1975,2804.8], + [1976,2921.3], + [1977,2729.9], + [1978,2747.4], + [1979,2999.1], + [1980,3167], + [1981,3139.7], + [1982,3084.9], + [1983,2869], + [1984,2791.3], + [1985,2901.2], + [1986,3022.1], + [1987,3081.3], + [1988,3134.9], + [1989,3171.3], + [1990,3194.8], + [1991,3228.8], + [1992,3103], + [1993,3032.4], + [1994,3026.7], + [1995,3043.8], + [1996,2980.3], + [1997,2891.8], + [1998,2728.1], + [1999,2550.7], + [2000,2477.3], + [2001,2485.7], + [2002,2450.7], + [2003,2416.5], + [2004,2362.3], + [2005,2287.8], + [2006,2206.8], + [2007,2177.8], + [2008,2167], + [2009,2064.5], + [2010,2005.8], + [2011,1974.1], + [2012,1965.4], + [2013,1901.6], + [2014,1821.5], + [2015,1783.6], + [2016,1745.4], + [2017,1695.5], + [2018,1601.6], + [2019,1549.5] + ] +} diff --git a/data/historical/united-states/crime/us-crime-theft-larceny-total.json b/data/historical/united-states/crime/us-crime-theft-larceny-total.json new file mode 100644 index 0000000..907a834 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-theft-larceny-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Larceny Thefts", + "description" : "Total number of larceny thefts recorded.", + "units" : "thefts", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","theft","larceny"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.theft.larceny.total"], + [1960,1855400], + [1961,1913000], + [1962,2089600], + [1963,2297800], + [1964,2514400], + [1965,2572600], + [1966,2822000], + [1967,3111600], + [1968,3482700], + [1969,3888600], + [1970,4225800], + [1971,4424200], + [1972,4151200], + [1973,4347900], + [1974,5262500], + [1975,5977700], + [1976,6270800], + [1977,5905700], + [1978,5991000], + [1979,6601000], + [1980,7136900], + [1981,7194400], + [1982,7142500], + [1983,6712800], + [1984,6591900], + [1985,6926400], + [1986,7257153], + [1987,7499900], + [1988,7705900], + [1989,7872400], + [1990,7945700], + [1991,8142200], + [1992,7915200], + [1993,7820900], + [1994,7879800], + [1995,7997700], + [1996,7904700], + [1997,7743760], + [1998,7373886], + [1999,6955520], + [2000,6971590], + [2001,7092267], + [2002,7057370], + [2003,7026802], + [2004,6937089], + [2005,6783447], + [2006,6607013], + [2007,6568572], + [2008,6588046], + [2009,6338095], + [2010,6204601], + [2011,6151095], + [2012,6168874], + [2013,6018632], + [2014,5809054], + [2015,5723488], + [2016,5644835], + [2017,5513000], + [2018,5232167], + [2019,5086096] + ] +} diff --git a/data/historical/united-states/crime/us-crime-theft-vehicle-rate.json b/data/historical/united-states/crime/us-crime-theft-vehicle-rate.json new file mode 100644 index 0000000..c6fef44 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-theft-vehicle-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Vehicle Theft Rate", + "description" : "Number of vehicle thefts per 100,000 population.", + "units" : "thefts/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","theft","vehicle"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.theft.vehicle.rate"], + [1960,183], + [1961,183.6], + [1962,197.4], + [1963,216.6], + [1964,247.4], + [1965,256.8], + [1966,286.9], + [1967,334.1], + [1968,393], + [1969,436.2], + [1970,456.8], + [1971,459.8], + [1972,426.1], + [1973,442.6], + [1974,462.2], + [1975,473.7], + [1976,450], + [1977,451.9], + [1978,460.5], + [1979,505.6], + [1980,502.2], + [1981,474.7], + [1982,458.9], + [1983,430.8], + [1984,437.1], + [1985,462], + [1986,509.8], + [1987,529.5], + [1988,582.9], + [1989,630.4], + [1990,657.8], + [1991,658.9], + [1992,631.5], + [1993,606.1], + [1994,591.3], + [1995,560.4], + [1996,525.7], + [1997,505.7], + [1998,459], + [1999,422.5], + [2000,412.2], + [2001,430.5], + [2002,432.9], + [2003,433.7], + [2004,421.5], + [2005,416.8], + [2006,398.4], + [2007,363.3], + [2008,314.7], + [2009,259.2], + [2010,239.1], + [2011,230], + [2012,230.4], + [2013,221.3], + [2014,215.4], + [2015,222.2], + [2016,237.3], + [2017,237.7], + [2018,230.2], + [2019,219.9] + ] +} diff --git a/data/historical/united-states/crime/us-crime-theft-vehicle-total.json b/data/historical/united-states/crime/us-crime-theft-vehicle-total.json new file mode 100644 index 0000000..30df879 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-theft-vehicle-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Vehicle Thefts", + "description" : "Total number of vehicle thefts recorded.", + "units" : "thefts", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","theft","vehicle"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.theft.vehicle.total"], + [1960,328200], + [1961,336000], + [1962,366800], + [1963,408300], + [1964,472800], + [1965,496900], + [1966,561200], + [1967,659800], + [1968,783600], + [1969,878500], + [1970,928400], + [1971,948200], + [1972,887200], + [1973,928800], + [1974,977100], + [1975,1009600], + [1976,966000], + [1977,977700], + [1978,1004100], + [1979,1112800], + [1980,1131700], + [1981,1087800], + [1982,1062400], + [1983,1007900], + [1984,1032200], + [1985,1102900], + [1986,1224137], + [1987,1288674], + [1988,1432900], + [1989,1564800], + [1990,1635900], + [1991,1661700], + [1992,1610800], + [1993,1563100], + [1994,1539300], + [1995,1472400], + [1996,1394200], + [1997,1354189], + [1998,1240754], + [1999,1152075], + [2000,1160002], + [2001,1228391], + [2002,1246646], + [2003,1261226], + [2004,1237851], + [2005,1235859], + [2006,1192809], + [2007,1095769], + [2008,958629], + [2009,795652], + [2010,739565], + [2011,716508], + [2012,723186], + [2013,700294], + [2014,686803], + [2015,713063], + [2016,767290], + [2017,772943], + [2018,751904], + [2019,721885] + ] +} diff --git a/data/historical/united-states/crime/us-crime-total-rate.json b/data/historical/united-states/crime/us-crime-total-rate.json new file mode 100644 index 0000000..64cede3 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-total-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Total Crime Rate", + "description" : "Total number of crimes per 100,000 population.", + "units" : "crimes/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.total.rate"], + [1960,1887.2], + [1961,1906.1], + [1962,2019.8], + [1963,2180.3], + [1964,2388.1], + [1965,2449], + [1966,2670.8], + [1967,2989.7], + [1968,3370.2], + [1969,3680], + [1970,3984.5], + [1971,4164.7], + [1972,3961.4], + [1973,4154.4], + [1974,4850.4], + [1975,5298.5], + [1976,5287.3], + [1977,5077.6], + [1978,5140.4], + [1979,5565.5], + [1980,5950], + [1981,5858.2], + [1982,5603.7], + [1983,5175], + [1984,5031.3], + [1985,5207.1], + [1986,5480.4], + [1987,5550], + [1988,5664.2], + [1989,5741], + [1990,5820.3], + [1991,5897.8], + [1992,5660.2], + [1993,5484.4], + [1994,5373.5], + [1995,5274.9], + [1996,5087.6], + [1997,4927.3], + [1998,4615.5], + [1999,4266.5], + [2000,4124.8], + [2001,4162.6], + [2002,4125], + [2003,4067], + [2004,3977.3], + [2005,3900.5], + [2006,3808.1], + [2007,3730.4], + [2008,3669], + [2009,3465.5], + [2010,3350.4], + [2011,3292.5], + [2012,3255.8], + [2013,3112.4], + [2014,2946.1], + [2015,2885.1], + [2016,2849.1], + [2017,2757.8], + [2018,2593.2], + [2019,2489.3] + ] +} diff --git a/data/historical/united-states/crime/us-crime-total.json b/data/historical/united-states/crime/us-crime-total.json new file mode 100644 index 0000000..9fd87ef --- /dev/null +++ b/data/historical/united-states/crime/us-crime-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Total Crimes", + "description" : "Total crimes recorded.", + "units" : "crimes", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.total.total"], + [1960,3384200], + [1961,3488000], + [1962,3752200], + [1963,4109500], + [1964,4564600], + [1965,4739400], + [1966,5223500], + [1967,5903400], + [1968,6720200], + [1969,7410900], + [1970,8098000], + [1971,8588200], + [1972,8248800], + [1973,8718100], + [1974,10253400], + [1975,11292400], + [1976,11349700], + [1977,10984500], + [1978,11209000], + [1979,12249500], + [1980,13408300], + [1981,13423800], + [1982,12974400], + [1983,12108600], + [1984,11881800], + [1985,12431400], + [1986,13211869], + [1987,13508700], + [1988,13923100], + [1989,14251400], + [1990,14475600], + [1991,14872900], + [1992,14438200], + [1993,14144800], + [1994,13989500], + [1995,13862700], + [1996,13493863], + [1997,13194571], + [1998,12475634], + [1999,11634378], + [2000,11608072], + [2001,11876669], + [2002,11878954], + [2003,11826538], + [2004,11679474], + [2005,11565499], + [2006,11401511], + [2007,11251828], + [2008,11160543], + [2009,10762956], + [2010,10363873], + [2011,10258774], + [2012,10219059], + [2013,9850445], + [2014,9395195], + [2015,9258298], + [2016,9214136], + [2017,8966863], + [2018,8471483], + [2019,8171087] + ] +} diff --git a/data/historical/united-states/crime/us-crime-violent-rate.json b/data/historical/united-states/crime/us-crime-violent-rate.json new file mode 100644 index 0000000..bc1bdd7 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-violent-rate.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Violent Crime Rate", + "description" : "Number of violent crimes per 100,000 population.", + "units" : "crimes/100k population", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","violent"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.violent.rate"], + [1960,160.9], + [1961,158.1], + [1962,162.3], + [1963,168.2], + [1964,190.6], + [1965,200.2], + [1966,220], + [1967,253.2], + [1968,298.4], + [1969,328.7], + [1970,363.5], + [1971,396], + [1972,401], + [1973,417.4], + [1974,461.1], + [1975,487.8], + [1976,467.8], + [1977,475.9], + [1978,497.8], + [1979,548.9], + [1980,596.6], + [1981,594.3], + [1982,571.1], + [1983,537.7], + [1984,539.2], + [1985,556.6], + [1986,620.1], + [1987,609.7], + [1988,637.2], + [1989,663.1], + [1990,731.8], + [1991,758.1], + [1992,757.5], + [1993,746.8], + [1994,713.6], + [1995,684.5], + [1996,636.6], + [1997,611], + [1998,566.4], + [1999,523], + [2000,506.5], + [2001,504.5], + [2002,494.4], + [2003,475.8], + [2004,463.2], + [2005,469], + [2006,473.6], + [2007,466.9], + [2008,457.5], + [2009,431.9], + [2010,404.5], + [2011,387.1], + [2012,387.8], + [2013,379.1], + [2014,372], + [2015,384.6], + [2016,397.5], + [2017,394.9], + [2018,383.4], + [2019,379.4] + ] +} diff --git a/data/historical/united-states/crime/us-crime-violent-total.json b/data/historical/united-states/crime/us-crime-violent-total.json new file mode 100644 index 0000000..a7027d5 --- /dev/null +++ b/data/historical/united-states/crime/us-crime-violent-total.json @@ -0,0 +1,82 @@ +{ + "metadata" : { + "name" : "Number Of Violent Crimes", + "description" : "Total number of violent crimes recorded.", + "units" : "crimes", + "year" : "1960-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "crime", + "tags" : ["historical","us","crime","violent"], + "authors" : [ + "The Uniform Crime Reporting (UCR) Program" + ], + "sources" : [ + "https://www.disastercenter.com/crime/uscrime.htm" + ] + }, + "data" : [ + ["year","us.crime.violent.total"], + [1960,288460], + [1961,289390], + [1962,301510], + [1963,316970], + [1964,364220], + [1965,387390], + [1966,430180], + [1967,499930], + [1968,595010], + [1969,661870], + [1970,738820], + [1971,816500], + [1972,834900], + [1973,875910], + [1974,974720], + [1975,1039710], + [1976,1004210], + [1977,1029580], + [1978,1085550], + [1979,1208030], + [1980,1344520], + [1981,1361820], + [1982,1322390], + [1983,1258090], + [1984,1273280], + [1985,1328800], + [1986,1489169], + [1987,1483999], + [1988,1566220], + [1989,1646040], + [1990,1820130], + [1991,1911770], + [1992,1932270], + [1993,1926020], + [1994,1857670], + [1995,1798790], + [1996,1688540], + [1997,1634770], + [1998,1531044], + [1999,1426044], + [2000,1425486], + [2001,1439480], + [2002,1423677], + [2003,1383676], + [2004,1360088], + [2005,1390745], + [2006,1418043], + [2007,1408337], + [2008,1392628], + [2009,1325896], + [2010,1251248], + [2011,1206031], + [2012,1217067], + [2013,1199684], + [2014,1186185], + [2015,1234183], + [2016,1285606], + [2017,1283875], + [2018,1252399], + [2019,1245410] + ] +} diff --git a/data/historical/united-states/culture/divorce/rate/us-divorce-rate-crude.json b/data/historical/united-states/culture/divorce/rate/us-divorce-rate-crude.json new file mode 100644 index 0000000..0d33d90 --- /dev/null +++ b/data/historical/united-states/culture/divorce/rate/us-divorce-rate-crude.json @@ -0,0 +1,180 @@ +{ + "metadata" : { + "name" : "Crude Divorce Rate", + "description" : "Divorces per 1000 population.", + "units" : "divorces/1k population", + "year" : "1867-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce"], + "authors" : [ + "United States Center for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/dvs/state-divorce-rates-90-95-99-19.pdf", + "https://www.cdc.gov/nchs/fastats/marriage-divorce.htm", + "https://worldpopulationreview.com/country-rankings/divorce-rates-by-country", + "https://robslink.com/SAS/democd80/us_divorce_and_marriage.htm", + "https://www.ibisworld.com/us/bed/marriage-rate/29/" + ] + }, + "data" : [ + ["year","us.divorce.rate.crude"], + [1867,0.3], + [1868,0.3], + [1869,0.3], + [1870,0.3], + [1871,0.3], + [1872,0.3], + [1873,0.3], + [1874,0.3], + [1875,0.3], + [1876,0.3], + [1877,0.3], + [1878,0.3], + [1879,0.3], + [1880,0.4], + [1881,0.4], + [1882,0.4], + [1883,0.4], + [1884,0.4], + [1885,0.4], + [1886,0.4], + [1887,0.5], + [1888,0.5], + [1889,0.5], + [1890,0.5], + [1891,0.6], + [1892,0.6], + [1893,0.6], + [1894,0.6], + [1895,0.6], + [1896,0.6], + [1897,0.6], + [1898,0.7], + [1899,0.7], + [1900,0.7], + [1901,0.8], + [1902,0.8], + [1903,0.8], + [1904,0.8], + [1905,0.8], + [1906,0.8], + [1907,0.9], + [1908,0.9], + [1909,0.9], + [1910,0.9], + [1911,1], + [1912,1], + [1913,0.9], + [1914,1], + [1915,1], + [1916,1.1], + [1917,1.2], + [1918,1.1], + [1919,1.3], + [1920,1.6], + [1921,1.5], + [1922,1.4], + [1923,1.5], + [1924,1.5], + [1925,1.5], + [1926,1.6], + [1927,1.6], + [1928,1.7], + [1929,1.7], + [1930,1.6], + [1931,1.5], + [1932,1.3], + [1933,1.3], + [1934,1.6], + [1935,1.7], + [1936,1.8], + [1937,1.9], + [1938,1.9], + [1939,1.9], + [1940,2], + [1941,2.2], + [1942,2.4], + [1943,2.6], + [1944,2.9], + [1945,3.5], + [1946,4.3], + [1947,3.4], + [1948,2.8], + [1949,2.7], + [1950,2.6], + [1951,2.5], + [1952,2.5], + [1953,2.5], + [1954,2.4], + [1955,2.3], + [1956,2.3], + [1957,2.2], + [1958,2.1], + [1959,2.2], + [1960,2.2], + [1961,2.3], + [1962,2.2], + [1963,2.3], + [1964,2.4], + [1965,2.5], + [1966,2.5], + [1967,2.6], + [1968,2.9], + [1969,3.2], + [1970,3.5], + [1971,3.7], + [1972,4.1], + [1973,4.4], + [1974,4.6], + [1975,4.9], + [1976,5], + [1977,5], + [1978,5.1], + [1979,5.3], + [1980,5.2], + [1981,5.3], + [1982,5], + [1983,4.9], + [1984,5], + [1985,5], + [1986,4.9], + [1987,4.8], + [1988,4.8], + [1989,4.7], + [1990,4.7], + [1991,4.7], + [1992,4.7], + [1993,4.6], + [1994,4.6], + [1995,4.4], + [1996,4.3], + [1997,4.3], + [1998,4.2], + [1999,4.272340426], + [2000,4.278723404], + [2001,4.127659574], + [2002,4.060416667], + [2003,3.946808511], + [2004,3.880434783], + [2005,3.864444444], + [2006,3.88], + [2007,3.773333333], + [2008,3.733333333], + [2009,3.708888889], + [2010,3.8], + [2011,3.755555556], + [2012,3.604444444], + [2013,3.445652174], + [2014,3.32826087], + [2015,3.252173913], + [2016,3.166666667], + [2017,3.039130435], + [2018,2.991304348], + [2019,2.902173913], + [2020,2.3] + ] +} diff --git a/data/historical/united-states/culture/divorce/rate/us-divorce-rate-real.json b/data/historical/united-states/culture/divorce/rate/us-divorce-rate-real.json new file mode 100644 index 0000000..b13dba4 --- /dev/null +++ b/data/historical/united-states/culture/divorce/rate/us-divorce-rate-real.json @@ -0,0 +1,180 @@ +{ + "metadata" : { + "name" : "Real Divorce Rate", + "description" : "Crude divorce rate measured against the crude divorce rate.", + "units" : "%", + "year" : "1867-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/dvs/state-divorce-rates-90-95-99-19.pdf", + "https://www.cdc.gov/nchs/fastats/marriage-divorce.htm", + "https://worldpopulationreview.com/country-rankings/divorce-rates-by-country", + "https://robslink.com/SAS/democd80/us_divorce_and_marriage.htm", + "https://www.ibisworld.com/us/bed/marriage-rate/29/" + ] + }, + "data" : [ + ["year","us.divorce.rate.real"], + [1867,0.031], + [1868,0.033], + [1869,0.034], + [1870,0.034], + [1871,0.034], + [1872,0.033], + [1873,0.033], + [1874,0.034], + [1875,0.033], + [1876,0.034], + [1877,0.034], + [1878,0.034], + [1879,0.034], + [1880,0.044], + [1881,0.044], + [1882,0.043], + [1883,0.043], + [1884,0.045], + [1885,0.045], + [1886,0.043], + [1887,0.057], + [1888,0.057], + [1889,0.055], + [1890,0.056], + [1891,0.065], + [1892,0.065], + [1893,0.067], + [1894,0.07], + [1895,0.067], + [1896,0.067], + [1897,0.067], + [1898,0.08], + [1899,0.078], + [1900,0.075], + [1901,0.083], + [1902,0.082], + [1903,0.079], + [1904,0.081], + [1905,0.08], + [1906,0.076], + [1907,0.083], + [1908,0.093], + [1909,0.091], + [1910,0.087], + [1911,0.098], + [1912,0.095], + [1913,0.086], + [1914,0.097], + [1915,0.1], + [1916,0.104], + [1917,0.108], + [1918,0.113], + [1919,0.118], + [1920,0.133], + [1921,0.14], + [1922,0.136], + [1923,0.136], + [1924,0.144], + [1925,0.146], + [1926,0.157], + [1927,0.158], + [1928,0.173], + [1929,0.168], + [1930,0.174], + [1931,0.174], + [1932,0.165], + [1933,0.149], + [1934,0.155], + [1935,0.163], + [1936,0.168], + [1937,0.168], + [1938,0.184], + [1939,0.178], + [1940,0.095], + [1941,0.173], + [1942,0.182], + [1943,0.222], + [1944,0.266], + [1945,0.287], + [1946,0.262], + [1947,0.245], + [1948,0.226], + [1949,0.255], + [1950,0.234], + [1951,0.24], + [1952,0.253], + [1953,0.255], + [1954,0.261], + [1955,0.247], + [1956,0.242], + [1957,0.247], + [1958,0.25], + [1959,0.259], + [1960,0.259], + [1961,0.271], + [1962,0.259], + [1963,0.261], + [1964,0.267], + [1965,0.269], + [1966,0.263], + [1967,0.268], + [1968,0.279], + [1969,0.302], + [1970,0.33], + [1971,0.349], + [1972,0.373], + [1973,0.404], + [1974,0.438], + [1975,0.485], + [1976,0.505], + [1977,0.505], + [1978,0.495], + [1979,0.51], + [1980,0.491], + [1981,0.5], + [1982,0.472], + [1983,0.467], + [1984,0.476], + [1985,0.495], + [1986,0.49], + [1987,0.485], + [1988,0.49], + [1989,0.485], + [1990,0.48], + [1991,0.5], + [1992,0.511], + [1993,0.511], + [1994,0.505], + [1995,0.494], + [1996,0.489], + [1997,0.483], + [1998,0.5], + [1999,0.477], + [2000,0.488], + [2001,0.488], + [2002,0.488], + [2003,0.494], + [2004,0.474], + [2005,0.474], + [2006,0.493], + [2007,0.493], + [2008,0.493], + [2009,0.515], + [2010,0.529], + [2011,0.529], + [2012,0.5], + [2013,0.506713555], + [2014,0.482356648], + [2015,0.471329553], + [2016,0.452380952], + [2017,0.440453686], + [2018,0.460200669], + [2019,0.475766215], + [2020,0.450980392] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-oneparent-father-rate.json b/data/historical/united-states/culture/families/us-families-children-oneparent-father-rate.json new file mode 100644 index 0000000..7361b56 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-oneparent-father-rate.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Rate Of Single-Father Families", + "description" : "Percentage of family units with one or more dependant children under the age of 18 that only have a single-father.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.oneparent.father.rate"], + [1950,0.011267467], + [1951,0.010855773], + [1952,0.010911816], + [1953,0.012754397], + [1954,0.012553229], + [1955,0.011039241], + [1956,0.012551068], + [1957,0.010923331], + [1958,0.011939204], + [1959,0.009254458], + [1960,0.009030751], + [1961,0.007339024], + [1962,0.009668456], + [1963,0.013414589], + [1964,0.00990099], + [1965,0.00917465], + [1966,0.010294771], + [1967,0.012009724], + [1968,0.010620798], + [1969,0.011394504], + [1970,0.011974177], + [1970,0.011686726], + [1971,0.011498645], + [1972,0.012395993], + [1973,0.013053329], + [1974,0.013142857], + [1975,0.016102738], + [1976,0.014779468], + [1977,0.016122077], + [1978,0.017748362], + [1979,0.018734977], + [1980,0.019856876], + [1980,0.01995609], + [1981,0.021327697], + [1982,0.02189475], + [1983,0.023914595], + [1984,0.025736005], + [1985,0.028799177], + [1986,0.029523208], + [1987,0.029939181], + [1988,0.032800752], + [1989,0.03304251], + [1990,0.035708755], + [1991,0.036449492], + [1992,0.039180358], + [1993,0.039811168], + [1994,0.038626609], + [1995,0.041987404], + [1996,0.047598164], + [1997,0.049300447], + [1998,0.051726122], + [1999,0.04928784], + [2000,0.051611039], + [2001,0.05193042], + [2002,0.053297857], + [2003,0.05324177], + [2004,0.053722457], + [2005,0.05581177], + [2006,0.057450776], + [2007,0.05481949], + [2008,0.060544961], + [2009,0.059239512], + [2010,0.063149526], + [2011,0.064090131], + [2011,0.064010357], + [2012,0.069021693], + [2013,0.07302185], + [2014,0.070719496], + [2015,0.068269533], + [2016,0.071097817], + [2017,0.069841362], + [2018,0.072100313], + [2019,0.073655059], + [2020,0.070941908], + [2021,0.079026905], + [2021,0.079245957], + [2022,0.078793774] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-oneparent-father-total.json b/data/historical/united-states/culture/families/us-families-children-oneparent-father-total.json new file mode 100644 index 0000000..b9ba170 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-oneparent-father-total.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Number Of Single-Father Families", + "description" : "Total number of family units with one or more dependant children under the age of 18 that only have a single-father.", + "units" : "single-fathers", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.oenparent.father.total"], + [1950,229], + [1951,231], + [1952,233], + [1953,277], + [1954,283], + [1955,256], + [1956,298], + [1957,265], + [1958,293], + [1959,232], + [1960,232], + [1961,190], + [1962,254], + [1963,361], + [1964,268], + [1965,249], + [1966,278], + [1967,331], + [1968,297], + [1969,323], + [1970,345], + [1970,335], + [1971,331], + [1972,365], + [1973,386], + [1974,391], + [1975,484], + [1976,446], + [1977,486], + [1978,539], + [1979,569], + [1980,616], + [1980,609], + [1981,666], + [1982,679], + [1983,737], + [1984,799], + [1985,896], + [1986,935], + [1987,955], + [1988,1047], + [1989,1068], + [1990,1153], + [1991,1181], + [1992,1283], + [1993,1324], + [1994,1314], + [1995,1440], + [1996,1628], + [1997,1709], + [1998,1798], + [1999,1706], + [2000,1786], + [2001,1836], + [2002,1903], + [2003,1915], + [2004,1931], + [2005,2021], + [2006,2095], + [2007,2015], + [2008,2162], + [2009,2111], + [2010,2224], + [2011,2247], + [2011,2225], + [2012,2415], + [2013,2560], + [2014,2472], + [2015,2388], + [2016,2472], + [2017,2395], + [2018,2484], + [2019,2500], + [2020,2374], + [2021,2667], + [2021,2661], + [2022,2673] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-oneparent-mother-rate.json b/data/historical/united-states/culture/families/us-families-children-oneparent-mother-rate.json new file mode 100644 index 0000000..803dcaf --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-oneparent-mother-rate.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Rate Of Single-Mother Families", + "description" : "Percentage of family units with one or more dependant children under the age of 18 that only have a single-mother.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.oneparent.mother.rate"], + [1950,0.062586105], + [1951,0.07796419], + [1952,0.070903386], + [1953,0.070034073], + [1954,0.071637686], + [1955,0.080638206], + [1956,0.076401466], + [1957,0.076463314], + [1958,0.074243103], + [1959,0.077506083], + [1960,0.081704944], + [1961,0.084398779], + [1962,0.084846409], + [1963,0.082828583], + [1964,0.087224767], + [1965,0.09156227], + [1966,0.0907273], + [1967,0.093755669], + [1968,0.09912745], + [1969,0.10188027], + [1970,0.103116757], + [1970,0.102040816], + [1971,0.116897103], + [1972,0.122193921], + [1973,0.128436644], + [1974,0.137176471], + [1975,0.146521609], + [1976,0.153129867], + [1977,0.158699619], + [1978,0.171424808], + [1979,0.174113464], + [1980,0.175520598], + [1980,0.174984435], + [1981,0.18042079], + [1982,0.189217077], + [1983,0.185540918], + [1984,0.190266057], + [1985,0.193044484], + [1986,0.192769182], + [1987,0.197410496], + [1988,0.196522556], + [1989,0.201689252], + [1990,0.204373006], + [1991,0.21057992], + [1992,0.215079704], + [1993,0.217277566], + [1994,0.224792757], + [1995,0.222037555], + [1996,0.223840014], + [1997,0.227145536], + [1998,0.221317606], + [1999,0.226533383], + [2000,0.218783413], + [2001,0.213208881], + [2002,0.224338328], + [2003,0.226284475], + [2004,0.228716893], + [2005,0.22838364], + [2006,0.23004991], + [2007,0.233560954], + [2008,0.234506707], + [2009,0.235554932], + [2010,0.239053893], + [2011,0.248174558], + [2011,0.247324511], + [2012,0.253479665], + [2013,0.246077928], + [2014,0.2446002], + [2015,0.244460962], + [2016,0.24518968], + [2017,0.240464248], + [2018,0.236735168], + [2019,0.227063815], + [2020,0.223284724], + [2021,0.232873059], + [2021,0.233151672], + [2022,0.233050348] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-oneparent-mother-total.json b/data/historical/united-states/culture/families/us-families-children-oneparent-mother-total.json new file mode 100644 index 0000000..f5bddf3 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-oneparent-mother-total.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Number Of Single-Mother Families", + "description" : "Total number of family units with one or more dependant children under the age of 18 that only have a single-mother.", + "units" : "single-mothers", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.oneparent.mother.total"], + [1950,1272], + [1951,1659], + [1952,1514], + [1953,1521], + [1954,1615], + [1955,1870], + [1956,1814], + [1957,1855], + [1958,1822], + [1959,1943], + [1960,2099], + [1961,2185], + [1962,2229], + [1963,2229], + [1964,2361], + [1965,2485], + [1966,2450], + [1967,2584], + [1968,2772], + [1969,2888], + [1970,2971], + [1970,2925], + [1971,3365], + [1972,3598], + [1973,3798], + [1974,4081], + [1975,4404], + [1976,4621], + [1977,4784], + [1978,5206], + [1979,5288], + [1980,5445], + [1980,5340], + [1981,5634], + [1982,5868], + [1983,5718], + [1984,5907], + [1985,6006], + [1986,6105], + [1987,6297], + [1988,6273], + [1989,6519], + [1990,6599], + [1991,6823], + [1992,7043], + [1993,7226], + [1994,7647], + [1995,7615], + [1996,7656], + [1997,7874], + [1998,7693], + [1999,7841], + [2000,7571], + [2001,7538], + [2002,8010], + [2003,8139], + [2004,8221], + [2005,8270], + [2006,8389], + [2007,8585], + [2008,8374], + [2009,8394], + [2010,8419], + [2011,8701], + [2011,8597], + [2012,8869], + [2013,8627], + [2014,8550], + [2015,8551], + [2016,8525], + [2017,8246], + [2018,8156], + [2019,7707], + [2020,7472], + [2021,7859], + [2021,7829], + [2022,7906] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-oneparent-rate.json b/data/historical/united-states/culture/families/us-families-children-oneparent-rate.json new file mode 100644 index 0000000..50a9921 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-oneparent-rate.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Rate Of One-Parent Families", + "description" : "Percentage of family units with one or more dependant children under the age of 18 that have only one parent.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.oneparnet.rate"], + [1950,0.073804369], + [1951,0.088819963], + [1952,0.081815202], + [1953,0.08278847], + [1954,0.084235273], + [1955,0.091677447], + [1956,0.088952533], + [1957,0.087427865], + [1958,0.086182307], + [1959,0.086760541], + [1960,0.09077462], + [1961,0.091737804], + [1962,0.094514864], + [1963,0.096243172], + [1964,0.097125757], + [1965,0.10073692], + [1966,0.101022071], + [1967,0.105765393], + [1968,0.109748248], + [1969,0.113274773], + [1970,0.113529085], + [1970,0.113727542], + [1971,0.128361009], + [1972,0.134589913], + [1973,0.141489973], + [1974,0.150319328], + [1975,0.162624347], + [1976,0.167909335], + [1977,0.174821695], + [1978,0.189140242], + [1979,0.192848441], + [1980,0.195377474], + [1980,0.194940525], + [1981,0.201748487], + [1982,0.211111828], + [1983,0.209455513], + [1984,0.216002061], + [1985,0.221843662], + [1986,0.22229239], + [1987,0.227349677], + [1988,0.229323308], + [1989,0.234731762], + [1990,0.240081762], + [1991,0.247029413], + [1992,0.254260062], + [1993,0.257088733], + [1994,0.263419366], + [1995,0.264024959], + [1996,0.271438178], + [1997,0.276445983], + [1998,0.273043728], + [1999,0.275821223], + [2000,0.270394452], + [2001,0.265139301], + [2002,0.277636185], + [2003,0.279526246], + [2004,0.28243935], + [2005,0.28419541], + [2006,0.287500686], + [2007,0.288380445], + [2008,0.295051668], + [2009,0.294794444], + [2010,0.302203419], + [2011,0.312264689], + [2011,0.311334868], + [2012,0.322501358], + [2013,0.319099778], + [2014,0.315319697], + [2015,0.312730495], + [2016,0.316287497], + [2017,0.310305611], + [2018,0.308835481], + [2019,0.300718873], + [2020,0.294226632], + [2021,0.311899964], + [2021,0.312397629], + [2022,0.311844122] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-oneparent-total.json b/data/historical/united-states/culture/families/us-families-children-oneparent-total.json new file mode 100644 index 0000000..3325d32 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-oneparent-total.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Number Of One-Parent Families", + "description" : "Total number of family units with one or more dependant children under the age of 18 that have only one parent.", + "units" : "families", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.oneparent.total"], + [1950,1500], + [1951,1890], + [1952,1747], + [1953,1798], + [1954,1899], + [1955,2126], + [1956,2112], + [1957,2121], + [1958,2115], + [1959,2175], + [1960,2332], + [1961,2375], + [1962,2483], + [1963,2590], + [1964,2629], + [1965,2734], + [1966,2728], + [1967,2915], + [1968,3069], + [1969,3211], + [1970,3271], + [1970,3260], + [1971,3695], + [1972,3963], + [1973,4184], + [1974,4472], + [1975,4888], + [1976,5067], + [1977,5270], + [1978,5744], + [1979,5857], + [1980,6061], + [1980,5949], + [1981,6300], + [1982,6547], + [1983,6455], + [1984,6706], + [1985,6902], + [1986,7040], + [1987,7252], + [1988,7320], + [1989,7587], + [1990,7752], + [1991,8004], + [1992,8326], + [1993,8550], + [1994,8961], + [1995,9055], + [1996,9284], + [1997,9583], + [1998,9491], + [1999,9547], + [2000,9357], + [2001,9374], + [2002,9913], + [2003,10054], + [2004,10152], + [2005,10291], + [2006,10484], + [2007,10600], + [2008,10536], + [2009,10505], + [2010,10643], + [2011,10948], + [2011,10822], + [2012,11284], + [2013,11187], + [2014,11022], + [2015,10939], + [2016,10997], + [2017,10641], + [2018,10640], + [2019,10207], + [2020,9846], + [2021,10526], + [2021,10490], + [2022,10579] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-rate.json b/data/historical/united-states/culture/families/us-families-children-rate.json new file mode 100644 index 0000000..d15095e --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-rate.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Rate Of Families With Children", + "description" : "Percentage of all family units with one or more dependant children under the age of 18.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.rate"], + [1950,0.517110653], + [1951,0.532720809], + [1952,0.525832348], + [1953,0.531301221], + [1954,0.546349029], + [1955,0.552787776], + [1956,0.55359183], + [1957,0.557739614], + [1958,0.561630355], + [1959,0.566761621], + [1960,0.569484161], + [1961,0.568501724], + [1962,0.565965789], + [1963,0.571856606], + [1964,0.569373159], + [1965,0.565935441], + [1966,0.556680204], + [1967,0.560023571], + [1968,0.558041149], + [1969,0.557759282], + [1970,0.55852363], + [1970,0.559458985], + [1971,0.55117085], + [1972,0.552480486], + [1973,0.543854487], + [1974,0.540388353], + [1975,0.539506749], + [1976,0.536527691], + [1977,0.531564098], + [1978,0.530787381], + [1979,0.525413466], + [1980,0.520940386], + [1980,0.522318831], + [1981,0.517783415], + [1982,0.50823514], + [1983,0.501979053], + [1984,0.500766166], + [1985,0.496156668], + [1986,0.498285031], + [1987,0.494611651], + [1988,0.490074156], + [1989,0.490939745], + [1990,0.488561053], + [1991,0.488540756], + [1992,0.487487532], + [1993,0.488040033], + [1994,0.496685648], + [1995,0.494856071], + [1996,0.491464781], + [1997,0.493515183], + [1998,0.490406321], + [1999,0.483861047], + [2000,0.480458174], + [2001,0.479279353], + [2002,0.480364326], + [2003,0.47579237], + [2004,0.471600824], + [2005,0.471141586], + [2006,0.471124777], + [2007,0.468689831], + [2008,0.458554313], + [2009,0.451934052], + [2010,0.446741847], + [2011,0.440790053], + [2011,0.442166054], + [2012,0.434613569], + [2013,0.433339102], + [2014,0.429670694], + [2015,0.428055705], + [2016,0.423062883], + [2017,0.414019583], + [2018,0.414644714], + [2019,0.406578664], + [2020,0.399918735], + [2021,0.403148929], + [2021,0.400193071], + [2022,0.402587076] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-total.json b/data/historical/united-states/culture/families/us-families-children-total.json new file mode 100644 index 0000000..9849987 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-total.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Total Number Of Families With Children", + "description" : "Total number of family units with one or more dependant children under the age of 18.", + "units" : "families", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.total"], + [1950,20324], + [1951,21279], + [1952,21353], + [1953,21718], + [1954,22544], + [1955,23190], + [1956,23743], + [1957,24260], + [1958,24541], + [1959,25069], + [1960,25690], + [1961,25889], + [1962,26271], + [1963,26911], + [1964,27068], + [1965,27140], + [1966,27004], + [1967,27561], + [1968,27964], + [1969,28347], + [1970,28812], + [1970,28665], + [1971,28786], + [1972,29445], + [1973,29571], + [1974,29750], + [1975,30057], + [1976,30177], + [1977,30145], + [1978,30369], + [1979,30371], + [1980,31022], + [1980,30517], + [1981,31227], + [1982,31012], + [1983,30818], + [1984,31046], + [1985,31112], + [1986,31670], + [1987,31898], + [1988,31920], + [1989,32322], + [1990,32289], + [1991,32401], + [1992,32746], + [1993,33257], + [1994,34018], + [1995,34296], + [1996,34203], + [1997,34665], + [1998,34760], + [1999,34613], + [2000,34605], + [2001,35355], + [2002,35705], + [2003,35968], + [2004,35944], + [2005,36211], + [2006,36466], + [2007,36757], + [2008,35709], + [2009,35635], + [2010,35218], + [2011,35060], + [2011,34760], + [2012,34989], + [2013,35058], + [2014,34955], + [2015,34979], + [2016,34769], + [2017,34292], + [2018,34452], + [2019,33942], + [2020,33464], + [2021,33748], + [2021,33579], + [2022,33924] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-twoparent-rate.json b/data/historical/united-states/culture/families/us-families-children-twoparent-rate.json new file mode 100644 index 0000000..1982669 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-twoparent-rate.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Rate Of Two Parent Families", + "description" : "Percentage of family units with one or more dependant children under the age of 18 that have two parents.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.twoparent.rate"], + [1950,0.926195631], + [1951,0.911180037], + [1952,0.918184798], + [1953,0.91721153], + [1954,0.915764727], + [1955,0.908322553], + [1956,0.911047467], + [1957,0.912572135], + [1958,0.913817693], + [1959,0.913239459], + [1960,0.90922538], + [1961,0.908262196], + [1962,0.905485136], + [1963,0.903756828], + [1964,0.902874243], + [1965,0.89926308], + [1966,0.898977929], + [1967,0.894234607], + [1968,0.890251752], + [1969,0.886725227], + [1970,0.886470915], + [1970,0.886307343], + [1971,0.871638991], + [1972,0.865410087], + [1973,0.858510027], + [1974,0.849680672], + [1975,0.837375653], + [1976,0.832090665], + [1977,0.825178305], + [1978,0.810859758], + [1979,0.807151559], + [1980,0.804622526], + [1980,0.805059475], + [1981,0.798251513], + [1982,0.788888172], + [1983,0.790544487], + [1984,0.783997939], + [1985,0.778156338], + [1986,0.77770761], + [1987,0.772650323], + [1988,0.770676692], + [1989,0.765268238], + [1990,0.759918238], + [1991,0.752970587], + [1992,0.745739938], + [1993,0.742911267], + [1994,0.73661003], + [1995,0.735975041], + [1996,0.728591059], + [1997,0.723582865], + [1998,0.726956272], + [1999,0.724178777], + [2000,0.729605548], + [2001,0.734832414], + [2002,0.722363815], + [2003,0.720473754], + [2004,0.717588471], + [2005,0.715776974], + [2006,0.712499314], + [2007,0.711646761], + [2008,0.704948332], + [2009,0.705177494], + [2010,0.697796581], + [2011,0.687735311], + [2011,0.688665132], + [2012,0.677470062], + [2013,0.680871698], + [2014,0.684680303], + [2015,0.687269505], + [2016,0.683712503], + [2017,0.689694389], + [2018,0.691164519], + [2019,0.699281127], + [2020,0.705773368], + [2021,0.688100036], + [2021,0.687602371], + [2022,0.688155878] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-children-twoparent-total.json b/data/historical/united-states/culture/families/us-families-children-twoparent-total.json new file mode 100644 index 0000000..a324e8f --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-children-twoparent-total.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Number Of Two Parent Families", + "description" : "Total number of family units with one or more dependant children under the age of 18 that have two parents.", + "units" : "families", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.children.twoparent.total"], + [1950,18824], + [1951,19389], + [1952,19606], + [1953,19920], + [1954,20645], + [1955,21064], + [1956,21631], + [1957,22139], + [1958,22426], + [1959,22894], + [1960,23358], + [1961,23514], + [1962,23788], + [1963,24321], + [1964,24439], + [1965,24406], + [1966,24276], + [1967,24646], + [1968,24895], + [1969,25136], + [1970,25541], + [1970,25406], + [1971,25091], + [1972,25482], + [1973,25387], + [1974,25278], + [1975,25169], + [1976,25110], + [1977,24875], + [1978,24625], + [1979,24514], + [1980,24961], + [1980,24568], + [1981,24927], + [1982,24465], + [1983,24363], + [1984,24340], + [1985,24210], + [1986,24630], + [1987,24646], + [1988,24600], + [1989,24735], + [1990,24537], + [1991,24397], + [1992,24420], + [1993,24707], + [1994,25058], + [1995,25241], + [1996,24920], + [1997,25083], + [1998,25269], + [1999,25066], + [2000,25248], + [2001,25980], + [2002,25792], + [2003,25914], + [2004,25793], + [2005,25919], + [2006,25982], + [2007,26158], + [2008,25173], + [2009,25129], + [2010,24575], + [2011,24112], + [2011,23938], + [2012,23704], + [2013,23870], + [2014,23933], + [2015,24040], + [2016,23772], + [2017,23651], + [2018,23812], + [2019,23735], + [2020,23618], + [2021,23222], + [2021,23089], + [2022,23345] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-married-sh-fathers-rate.json b/data/historical/united-states/culture/families/us-families-married-sh-fathers-rate.json new file mode 100644 index 0000000..a377ed5 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-married-sh-fathers-rate.json @@ -0,0 +1,54 @@ +{ + "metadata" : { + "name" : "Stay-At-Home Fathers", + "description" : "Percentage of family units married with children under age 15 that have a stay-at-home father.", + "units" : "%", + "year" : "1994-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/shp1.xls" + ] + }, + "data" : [ + ["year","us.families.sh.fathers.rate"], + [2022,0.011419016], + [2021,0.009818478], + [2021,0.00982517], + [2020,0.010081118], + [2019,0.008955364], + [2018,0.008894715], + [2017,0.012517581], + [2016,0.009706934], + [2015,0.009218938], + [2014,0.009791638], + [2013,0.009931777], + [2012,0.008859098], + [2011,0.008145707], + [2011,0.008114713], + [2010,0.006956365], + [2009,0.007015051], + [2008,0.006237469], + [2007,0.007019186], + [2006,0.006844008], + [2005,0.006093113], + [2004,0.00634715], + [2003,0.0042225], + [2002,0.004541754], + [2001,0.003533723], + [2000,0.004051758], + [1999,0.00312033], + [1998,0.003933395], + [1997,0.003116906], + [1996,0.002148369], + [1995,0.002785879], + [1994,0.003311403] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-married-sh-fathers-total.json b/data/historical/united-states/culture/families/us-families-married-sh-fathers-total.json new file mode 100644 index 0000000..45b6270 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-married-sh-fathers-total.json @@ -0,0 +1,54 @@ +{ + "metadata" : { + "name" : "Stay-At-Home Fathers", + "description" : "Total number family units married with children under age 15 that have a stay-at-home father.", + "units" : "stay-at-home fathers", + "year" : "1994-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/shp1.xls" + ] + }, + "data" : [ + ["year","us.families.sh.fathers.total"], + [2022,239], + [2021,205], + [2021,204], + [2020,215], + [2019,191], + [2018,190], + [2017,267], + [2016,209], + [2015,199], + [2014,211], + [2013,214], + [2012,189], + [2011,178], + [2011,176], + [2010,154], + [2009,158], + [2008,140], + [2007,165], + [2006,159], + [2005,142], + [2004,147], + [2003,98], + [2002,106], + [2001,81], + [2000,93], + [1999,71], + [1998,90], + [1997,71], + [1996,49], + [1995,64], + [1994,76] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-married-sh-mothers-rate.json b/data/historical/united-states/culture/families/us-families-married-sh-mothers-rate.json new file mode 100644 index 0000000..3a89b3b --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-married-sh-mothers-rate.json @@ -0,0 +1,54 @@ +{ + "metadata" : { + "name" : "Stay-At-Home Mothers", + "description" : "Percentage of family units married with children under age 15 that have a stay-at-home mother.", + "units" : "%", + "year" : "1994-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/shp1.xls" + ] + }, + "data" : [ + ["year","us.families.sh.mothers.rate"], + [2022,0.217343526], + [2021,0.211456487], + [2021,0.211770939], + [2020,0.223988372], + [2019,0.231807952], + [2018,0.23692711], + [2017,0.232770745], + [2016,0.23366309], + [2015,0.241360141], + [2014,0.241449719], + [2013,0.242029053], + [2012,0.238633168], + [2011,0.231145891], + [2011,0.229425054], + [2010,0.226759418], + [2009,0.226213204], + [2008,0.23733571], + [2007,0.236652912], + [2006,0.24302686], + [2005,0.239605235], + [2004,0.240544041], + [2003,0.232151321], + [2002,0.223060114], + [2001,0.215251723], + [2000,0.208469481], + [1999,0.207919487], + [1998,0.199073467], + [1997,0.202686685], + [1996,0.203130481], + [1995,0.193270361], + [1994,0.19776916] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-married-sh-mothers-total.json b/data/historical/united-states/culture/families/us-families-married-sh-mothers-total.json new file mode 100644 index 0000000..ce401cc --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-married-sh-mothers-total.json @@ -0,0 +1,54 @@ +{ + "metadata" : { + "name" : "Stay-At-Home Mothers", + "description" : "Total number family units married with children under age 15 that have a stay-at-home mother.", + "units" : "stay-at-home mothers", + "year" : "1994-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/shp1.xls" + ] + }, + "data" : [ + ["year","us.families.sh.mothers.total"], + [2022,4549], + [2021,4415], + [2021,4397], + [2020,4777], + [2019,4944], + [2018,5061], + [2017,4965], + [2016,5031], + [2015,5210], + [2014,5203], + [2013,5215], + [2012,5091], + [2011,5051], + [2011,4976], + [2010,5020], + [2009,5095], + [2008,5327], + [2007,5563], + [2006,5646], + [2005,5584], + [2004,5571], + [2003,5388], + [2002,5206], + [2001,4934], + [2000,4785], + [1999,4731], + [1998,4555], + [1997,4617], + [1996,4633], + [1995,4440], + [1994,4539] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-married-total.json b/data/historical/united-states/culture/families/us-families-married-total.json new file mode 100644 index 0000000..6911caf --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-married-total.json @@ -0,0 +1,54 @@ +{ + "metadata" : { + "name" : "Married With Children", + "description" : "Total number family units married with children under age 15.", + "units" : "couples", + "year" : "1994-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/shp1.xls" + ] + }, + "data" : [ + ["year","us.families.married.total"], + [2022,20930], + [2021,20879], + [2021,20763], + [2020,21327], + [2019,21328], + [2018,21361], + [2017,21330], + [2016,21531], + [2015,21586], + [2014,21549], + [2013,21547], + [2012,21334], + [2011,21852], + [2011,21689], + [2010,22138], + [2009,22523], + [2008,22445], + [2007,23507], + [2006,23232], + [2005,23305], + [2004,23160], + [2003,23209], + [2002,23339], + [2001,22922], + [2000,22953], + [1999,22754], + [1998,22881], + [1997,22779], + [1996,22808], + [1995,22973], + [1994,22951] + ] +} diff --git a/data/historical/united-states/culture/families/us-families-total.json b/data/historical/united-states/culture/families/us-families-total.json new file mode 100644 index 0000000..ebb4453 --- /dev/null +++ b/data/historical/united-states/culture/families/us-families-total.json @@ -0,0 +1,100 @@ +{ + "metadata" : { + "name" : "Total Number Of Families", + "description" : "Total number of all family units regarless of dependant child status.", + "units" : "families", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","demographics","families","marriage","children"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/families.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/families/fm1.xls" + ] + }, + "data" : [ + ["year","us.families.total"], + [1950,39303], + [1951,39944], + [1952,40608], + [1953,40877], + [1954,41263], + [1955,41951], + [1956,42889], + [1957,43497], + [1958,43696], + [1959,44232], + [1960,45111], + [1961,45539], + [1962,46418], + [1963,47059], + [1964,47540], + [1965,47956], + [1966,48509], + [1967,49214], + [1968,50111], + [1969,50823], + [1970,51586], + [1970,51237], + [1971,52227], + [1972,53296], + [1973,54373], + [1974,55053], + [1975,55712], + [1976,56245], + [1977,56710], + [1978,57215], + [1979,57804], + [1980,59550], + [1980,58426], + [1981,60309], + [1982,61019], + [1983,61393], + [1984,61997], + [1985,62706], + [1986,63558], + [1987,64491], + [1988,65133], + [1989,65837], + [1990,66090], + [1991,66322], + [1992,67173], + [1993,68144], + [1994,68490], + [1995,69305], + [1996,69594], + [1997,70241], + [1998,70880], + [1999,71535], + [2000,72025], + [2001,73767], + [2002,74329], + [2003,75596], + [2004,76217], + [2005,76858], + [2006,77402], + [2007,78425], + [2008,77873], + [2009,78850], + [2010,78833], + [2011,79539], + [2011,78613], + [2012,80506], + [2013,80902], + [2014,81353], + [2015,81716], + [2016,82184], + [2017,82827], + [2018,83088], + [2019,83482], + [2020,83677], + [2021,83711], + [2021,83907], + [2022,84265] + ] +} diff --git a/data/historical/united-states/culture/marriage/age/us-marriage-age-median-female.json b/data/historical/united-states/culture/marriage/age/us-marriage-age-median-female.json new file mode 100644 index 0000000..b573e01 --- /dev/null +++ b/data/historical/united-states/culture/marriage/age/us-marriage-age-median-female.json @@ -0,0 +1,107 @@ +{ + "metadata" : { + "name" : "Median Female Age At First Marriage", + "description" : "Median age at the time of a womans first marriage.", + "units" : "years", + "year" : "1890-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms2.xls" + ] + }, + "data" : [ + ["year","us.marriage.age.median.female"], + [2022,28.2], + [2021,28.6], + [2021,28.6], + [2020,28.1], + [2019,28], + [2018,27.8], + [2017,27.4], + [2016,27.4], + [2015,27.1], + [2014,27], + [2013,26.6], + [2012,26.6], + [2011,26.4], + [2011,26.5], + [2010,26.1], + [2009,25.9], + [2008,25.9], + [2007,25.6], + [2006,25.5], + [2005,25.3], + [2004,25.3], + [2003,25.3], + [2002,25.3], + [2001,25.1], + [2000,25.1], + [1999,25.1], + [1998,25], + [1997,25], + [1996,24.8], + [1995,24.5], + [1994,24.5], + [1993,24.5], + [1992,24.4], + [1991,24.1], + [1990,23.9], + [1989,23.8], + [1988,23.6], + [1987,23.6], + [1986,23.1], + [1985,23.3], + [1984,23], + [1983,22.8], + [1982,22.5], + [1981,22.3], + [1980,22], + [1979,22.1], + [1978,21.8], + [1977,21.6], + [1976,21.3], + [1975,21.1], + [1974,21.1], + [1973,21], + [1972,20.9], + [1971,20.9], + [1970,20.8], + [1969,20.8], + [1968,20.8], + [1967,20.6], + [1966,20.5], + [1965,20.6], + [1964,20.5], + [1963,20.5], + [1962,20.3], + [1961,20.3], + [1960,20.3], + [1959,20.2], + [1958,20.2], + [1957,20.3], + [1956,20.1], + [1955,20.2], + [1954,20.3], + [1953,20.2], + [1952,20.2], + [1951,20.4], + [1950,20.3], + [1949,20.3], + [1948,20.4], + [1947,20.5], + [1940,21.5], + [1930,21.3], + [1920,21.2], + [1910,21.6], + [1900,21.9], + [1890,22] + ] +} diff --git a/data/historical/united-states/culture/marriage/age/us-marriage-age-median-male.json b/data/historical/united-states/culture/marriage/age/us-marriage-age-median-male.json new file mode 100644 index 0000000..a42ab55 --- /dev/null +++ b/data/historical/united-states/culture/marriage/age/us-marriage-age-median-male.json @@ -0,0 +1,107 @@ +{ + "metadata" : { + "name" : "Median Male Age At First Marriage", + "description" : "Median age at the time of a mans first marriage.", + "units" : "years", + "year" : "1890-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms2.xls" + ] + }, + "data" : [ + ["year","us.marriage.age.median.male"], + [2022,30.1], + [2021,30.3], + [2021,30.4], + [2020,30.5], + [2019,29.8], + [2018,29.8], + [2017,29.5], + [2016,29.5], + [2015,29.2], + [2014,29.3], + [2013,29], + [2012,28.6], + [2011,28.4], + [2011,28.7], + [2010,28.2], + [2009,28.1], + [2008,27.6], + [2007,27.5], + [2006,27.5], + [2005,27.1], + [2004,27.4], + [2003,27.1], + [2002,26.9], + [2001,26.9], + [2000,26.8], + [1999,26.9], + [1998,26.7], + [1997,26.8], + [1996,27.1], + [1995,26.9], + [1994,26.7], + [1993,26.5], + [1992,26.5], + [1991,26.3], + [1990,26.1], + [1989,26.2], + [1988,25.9], + [1987,25.8], + [1986,25.7], + [1985,25.5], + [1984,25.4], + [1983,25.4], + [1982,25.2], + [1981,24.8], + [1980,24.7], + [1979,24.4], + [1978,24.2], + [1977,24], + [1976,23.8], + [1975,23.5], + [1974,23.1], + [1973,23.2], + [1972,23.3], + [1971,23.1], + [1970,23.2], + [1969,23.2], + [1968,23.1], + [1967,23.1], + [1966,22.8], + [1965,22.8], + [1964,23.1], + [1963,22.8], + [1962,22.7], + [1961,22.8], + [1960,22.8], + [1959,22.5], + [1958,22.6], + [1957,22.6], + [1956,22.5], + [1955,22.6], + [1954,23], + [1953,22.8], + [1952,23], + [1951,22.9], + [1950,22.8], + [1949,22.7], + [1948,23.3], + [1947,23.7], + [1940,24.3], + [1930,24.3], + [1920,24.6], + [1910,25.1], + [1900,25.9], + [1890,26.1] + ] +} diff --git a/data/historical/united-states/culture/marriage/rate/us-marriage-rate-crude.json b/data/historical/united-states/culture/marriage/rate/us-marriage-rate-crude.json new file mode 100644 index 0000000..c1157f3 --- /dev/null +++ b/data/historical/united-states/culture/marriage/rate/us-marriage-rate-crude.json @@ -0,0 +1,181 @@ +{ + "metadata" : { + "name" : "Crude Marriage Rate", + "description" : "Marriages per 1000 population.", + "units" : "marriages/1k population", + "year" : "1867-2023", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/marriage_rate_2018/marriage_rate_2018.htm", + "https://robslink.com/SAS/democd80/us_divorce_and_marriage.htm", + "https://www.ibisworld.com/us/bed/marriage-rate/29/" + ] + }, + "data" : [ + ["year","us.marriage.rate.crude"], + [1867,9.6], + [1868,9], + [1869,8.9], + [1870,8.8], + [1871,8.8], + [1872,9], + [1873,9], + [1874,8.7], + [1875,9.1], + [1876,8.8], + [1877,8.7], + [1878,8.8], + [1879,8.9], + [1880,9], + [1881,9], + [1882,9.2], + [1883,9.3], + [1884,8.8], + [1885,8.9], + [1886,9.2], + [1887,8.7], + [1888,8.8], + [1889,9.1], + [1890,9], + [1891,9.2], + [1892,9.2], + [1893,9], + [1894,8.6], + [1895,8.9], + [1896,9], + [1897,8.9], + [1898,8.8], + [1899,9], + [1900,9.3], + [1901,9.6], + [1902,9.8], + [1903,10.1], + [1904,9.9], + [1905,10], + [1906,10.5], + [1907,10.8], + [1908,9.7], + [1909,9.9], + [1910,10.3], + [1911,10.2], + [1912,10.5], + [1913,10.5], + [1914,10.3], + [1915,10], + [1916,10.6], + [1917,11.1], + [1918,9.7], + [1919,11], + [1920,12], + [1921,10.7], + [1922,10.3], + [1923,11], + [1924,10.4], + [1925,10.3], + [1926,10.2], + [1927,10.1], + [1928,9.8], + [1929,10.1], + [1930,9.2], + [1931,8.6], + [1932,7.9], + [1933,8.7], + [1934,10.3], + [1935,10.4], + [1936,10.7], + [1937,11.3], + [1938,10.3], + [1939,10.7], + [1940,21.1], + [1941,12.7], + [1942,13.2], + [1943,11.7], + [1944,10.9], + [1945,12.2], + [1946,16.4], + [1947,13.9], + [1948,12.4], + [1949,10.6], + [1950,11.1], + [1951,10.4], + [1952,9.9], + [1953,9.8], + [1954,9.2], + [1955,9.3], + [1956,9.5], + [1957,8.9], + [1958,8.4], + [1959,8.5], + [1960,8.5], + [1961,8.5], + [1962,8.5], + [1963,8.8], + [1964,9], + [1965,9.3], + [1966,9.5], + [1967,9.7], + [1968,10.4], + [1969,10.6], + [1970,10.6], + [1971,10.6], + [1972,11], + [1973,10.9], + [1974,10.5], + [1975,10.1], + [1976,9.9], + [1977,9.9], + [1978,10.3], + [1979,10.4], + [1980,10.6], + [1981,10.6], + [1982,10.6], + [1983,10.5], + [1984,10.5], + [1985,10.1], + [1986,10], + [1987,9.9], + [1988,9.8], + [1989,9.7], + [1990,9.8], + [1991,9.4], + [1992,9.2], + [1993,9], + [1994,9.1], + [1995,8.9], + [1996,8.8], + [1997,8.9], + [1998,8.4], + [1999,8.6], + [2000,8.2], + [2001,8.2], + [2002,8], + [2003,7.7], + [2004,7.8], + [2005,7.6], + [2006,7.5], + [2007,7.3], + [2008,7.1], + [2009,6.8], + [2010,6.8], + [2011,6.8], + [2012,6.8], + [2013,6.8], + [2014,6.9], + [2015,6.9], + [2016,7], + [2017,6.9], + [2018,6.5], + [2019,6.1], + [2020,5.1], + [2021,5], + [2022,4.9], + [2023,4.7] + ] +} diff --git a/data/historical/united-states/culture/marriage/rate/us-marriage-total.json b/data/historical/united-states/culture/marriage/rate/us-marriage-total.json new file mode 100644 index 0000000..d1ad1f4 --- /dev/null +++ b/data/historical/united-states/culture/marriage/rate/us-marriage-total.json @@ -0,0 +1,142 @@ +{ + "metadata" : { + "name" : "Marriages", + "description" : "Total marriages per year.", + "units" : "marriages", + "year" : "1900-2018", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/marriage_rate_2018/marriage_rate_2018.htm", + "https://robslink.com/SAS/democd80/us_divorce_and_marriage.htm" + ] + }, + "data" : [ + ["year","us.marriage.total"], + [1900,709000], + [1901,742000], + [1902,776000], + [1903,818000], + [1904,815000], + [1905,842000], + [1906,895000], + [1907,937000], + [1908,857000], + [1909,897000], + [1910,948000], + [1911,955000], + [1912,1005000], + [1913,1021000], + [1914,1025000], + [1915,1008000], + [1916,1076000], + [1917,1144000], + [1918,1000000], + [1919,1150000], + [1920,1274000], + [1921,1164000], + [1922,1134000], + [1923,1230000], + [1924,1185000], + [1925,1188000], + [1926,1203000], + [1927,1201000], + [1928,1182000], + [1929,1233000], + [1930,1127000], + [1931,1061000], + [1932,982000], + [1933,1098000], + [1934,1302000], + [1935,1327000], + [1936,1369000], + [1937,1451000], + [1938,1331000], + [1939,1404000], + [1940,1596000], + [1941,1696000], + [1942,1772000], + [1943,1577000], + [1944,1452000], + [1945,1613000], + [1946,2291000], + [1947,1992000], + [1948,2197000], + [1949,1580000], + [1950,1667000], + [1951,1595000], + [1952,1539000], + [1953,1546000], + [1954,1490000], + [1955,1531000], + [1956,1585000], + [1957,1518000], + [1958,1451000], + [1959,1494000], + [1960,1523000], + [1961,1548000], + [1962,1577000], + [1963,1654000], + [1964,1725000], + [1965,1800000], + [1966,1857000], + [1967,1927000], + [1968,2069000], + [1969,2145000], + [1970,2159000], + [1971,2190000], + [1972,2282000], + [1973,2284000], + [1974,2230000], + [1975,2153000], + [1976,2155000], + [1977,2178000], + [1978,2282000], + [1979,2331000], + [1980,2390000], + [1981,2422000], + [1982,2456000], + [1983,2446000], + [1984,2477000], + [1985,2413000], + [1986,2407000], + [1987,2403000], + [1988,2396000], + [1989,2403000], + [1990,2443000], + [1991,2371000], + [1992,2362000], + [1993,2334000], + [1994,2362000], + [1995,2366000], + [1996,2344000], + [1997,2384000], + [1998,2244000], + [1999,2358000], + [2000,2315000], + [2001,2326000], + [2002,2290000], + [2003,2245000], + [2004,2279000], + [2005,2249000], + [2006,2193000], + [2007,2197000], + [2008,2157000], + [2009,2080000], + [2010,2096000], + [2011,2118000], + [2012,2131000], + [2013,2081301], + [2014,2140272], + [2015,2221579], + [2016,2251411], + [2017,2236496], + [2018,2132853] + ] +} diff --git a/data/historical/united-states/culture/marriage/remarriage/us-marriage-first-rate.json b/data/historical/united-states/culture/marriage/remarriage/us-marriage-first-rate.json new file mode 100644 index 0000000..5905d43 --- /dev/null +++ b/data/historical/united-states/culture/marriage/remarriage/us-marriage-first-rate.json @@ -0,0 +1,46 @@ +{ + "metadata" : { + "name" : "First Marriage Rate", + "description" : "First marriage rate per 1000 single women aged 15-44.", + "units" : "marriages/1k single women", + "year" : "1921-1989", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","male"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf", + "https://web.archive.org/web/20031206040540/http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf" + ] + }, + "data" : [ + ["year.bin","us.marriage.first.rate"], + ["1921-1923",99], + ["1924-1926",95], + ["1927-1929",94], + ["1930-1932",81], + ["1933-1935",92], + ["1936-1938",98], + ["1939-1941",106], + ["1942-1944",108], + ["1945-1947",143], + ["1948-1950",134], + ["1951-1953",122], + ["1954-1956",120], + ["1957-1959",112], + ["1960-1962",112], + ["1963-1965",109], + ["1966-1968",107], + ["1969-1971",109], + ["1972-1974",103], + ["1975-1977",85], + ["1978-1980",83], + ["1981-1983",84], + ["1984-1986",80], + ["1987-1989",76] + ] +} diff --git a/data/historical/united-states/culture/marriage/remarriage/us-marriage-first-total.json b/data/historical/united-states/culture/marriage/remarriage/us-marriage-first-total.json new file mode 100644 index 0000000..ebf0544 --- /dev/null +++ b/data/historical/united-states/culture/marriage/remarriage/us-marriage-first-total.json @@ -0,0 +1,46 @@ +{ + "metadata" : { + "name" : "First Marriages", + "description" : "Total number first marriages.", + "units" : "marriages", + "year" : "1921-1989", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","male"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf", + "https://web.archive.org/web/20031206040540/http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf" + ] + }, + "data" : [ + ["year.bin","us.marriage.first.total"], + ["1921-1923",990], + ["1924-1926",992], + ["1927-1929",1025], + ["1930-1932",919], + ["1933-1935",1081], + ["1936-1938",1183], + ["1939-1941",1312], + ["1942-1944",1247], + ["1945-1947",1540], + ["1948-1950",1326], + ["1951-1953",1190], + ["1954-1956",1182], + ["1957-1959",1128], + ["1960-1962",1205], + ["1963-1965",1311], + ["1966-1968",1440], + ["1969-1971",1649], + ["1972-1974",1662], + ["1975-1977",1509], + ["1978-1980",1580], + ["1981-1983",1632], + ["1984-1986",1595], + ["1987-1989",1564] + ] +} diff --git a/data/historical/united-states/culture/marriage/remarriage/us-marriage-second-rate.json b/data/historical/united-states/culture/marriage/remarriage/us-marriage-second-rate.json new file mode 100644 index 0000000..9c725db --- /dev/null +++ b/data/historical/united-states/culture/marriage/remarriage/us-marriage-second-rate.json @@ -0,0 +1,46 @@ +{ + "metadata" : { + "name" : "Second Marriage Rate", + "description" : "Second marriage rate per 1000 divorced or widowed women aged 15-54.", + "units" : "marriages/1k divorced or widowed women", + "year" : "1921-1989", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","male"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf", + "https://web.archive.org/web/20031206040540/http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf" + ] + }, + "data" : [ + ["year.bin","us.marriage.second.rate"], + ["1921-1923",98], + ["1924-1926",99], + ["1927-1929",84], + ["1930-1932",61], + ["1933-1935",69], + ["1936-1938",83], + ["1939-1941",103], + ["1942-1944",139], + ["1945-1947",163], + ["1948-1950",135], + ["1951-1953",136], + ["1954-1956",129], + ["1957-1959",129], + ["1960-1962",119], + ["1963-1965",143], + ["1966-1968",166], + ["1969-1971",152], + ["1972-1974",151], + ["1975-1977",134], + ["1978-1980",134], + ["1981-1983",125], + ["1984-1986",115], + ["1987-1989",109] + ] +} diff --git a/data/historical/united-states/culture/marriage/remarriage/us-marriage-second-total.json b/data/historical/united-states/culture/marriage/remarriage/us-marriage-second-total.json new file mode 100644 index 0000000..b303870 --- /dev/null +++ b/data/historical/united-states/culture/marriage/remarriage/us-marriage-second-total.json @@ -0,0 +1,46 @@ +{ + "metadata" : { + "name" : "Second Marriages", + "description" : "Total number second marriages.", + "units" : "marriages", + "year" : "1921-1989", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","male"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf", + "https://web.archive.org/web/20031206040540/http://www.census.gov/population/socdemo/marr-div/p23-180/p23-180.pdf" + ] + }, + "data" : [ + ["year.bin","us.marriage.second.total"], + ["1921-1923",186], + ["1924-1926",200], + ["1927-1929",181], + ["1930-1932",138], + ["1933-1935",162], + ["1936-1938",201], + ["1939-1941",254], + ["1942-1944",354], + ["1945-1947",425], + ["1948-1950",360], + ["1951-1953",370], + ["1954-1956",353], + ["1957-1959",359], + ["1960-1962",345], + ["1963-1965",415], + ["1966-1968",511], + ["1969-1971",515], + ["1972-1974",604], + ["1975-1977",646], + ["1978-1980",754], + ["1981-1983",822], + ["1984-1986",838], + ["1987-1989",837] + ] +} diff --git a/data/historical/united-states/culture/marriage/remarriage/us-remarriage-rate-female.json b/data/historical/united-states/culture/marriage/remarriage/us-remarriage-rate-female.json new file mode 100644 index 0000000..21696af --- /dev/null +++ b/data/historical/united-states/culture/marriage/remarriage/us-remarriage-rate-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Female Remarriage Rate", + "description" : "Number of divorced women who remarry per 1,000 divorced women.", + "units" : "marriages/1k divorced men", + "year" : "1900-2018", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.bgsu.edu/ncfmr/resources/data/family-profiles/schweizer-retreat-remarriage-fp-19-17.html" + ] + }, + "data" : [ + ["year","us.remarriage.rate.female"], + [1950,42.2], + [1960,32.7], + [1970,36.6], + [1980,38.3], + [1990,35.8], + [2010,22.6], + [2017,21.2] + ] +} diff --git a/data/historical/united-states/culture/marriage/remarriage/us-remarriage-rate-male.json b/data/historical/united-states/culture/marriage/remarriage/us-remarriage-rate-male.json new file mode 100644 index 0000000..40b2687 --- /dev/null +++ b/data/historical/united-states/culture/marriage/remarriage/us-remarriage-rate-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Male Remarriage Rate", + "description" : "Number of divorced men who remarry per 1,000 divorced men.", + "units" : "marriages/1k divorced men", + "year" : "1900-2018", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","male"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.bgsu.edu/ncfmr/resources/data/family-profiles/schweizer-retreat-remarriage-fp-19-17.html" + ] + }, + "data" : [ + ["year","us.remarriage.rate.male"], + [1950,90.9], + [1960,88.7], + [1970,116.5], + [1980,108.3], + [1990,84.5], + [2010,43.2], + [2017,38.8] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-divorced-female.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-divorced-female.json new file mode 100644 index 0000000..aa72d7e --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-divorced-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Divorced", + "description" : "Percentage of the female population (aged 15+) who are unmarried and divorced.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.divorced.female"], + [2022,0.106664627], + [2021,0.109837771], + [2021,0.110242263], + [2020,0.107820097], + [2019,0.109211089], + [2018,0.110016688], + [2017,0.109375351], + [2016,0.11179539], + [2015,0.113200655], + [2014,0.112527046], + [2013,0.1120426], + [2012,0.111319942], + [2011,0.109979859], + [2011,0.110069583], + [2010,0.11064562], + [2009,0.107874131], + [2008,0.110822426], + [2007,0.108908444], + [2006,0.10942267], + [2005,0.109562609], + [2004,0.109373801], + [2003,0.108911061], + [2002,0.107014192], + [2001,0.105596249], + [2000,0.102195915], + [1999,0.101817054], + [1998,0.102553435], + [1997,0.103814113], + [1996,0.099225698], + [1995,0.097783448], + [1994,0.097364273], + [1993,0.096513672], + [1990,0.088593522], + [1980,0.066352292], + [1970,0.034938148], + [1960,0.026436764], + [1950,0.024044692] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-divorced-male.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-divorced-male.json new file mode 100644 index 0000000..273b12d --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-divorced-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Divorced", + "description" : "Percentage of the male population (aged 15+) who are unmarried and divorced.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.divorced.male"], + [2022,0.083665217], + [2021,0.085807192], + [2021,0.083712297], + [2020,0.082989715], + [2019,0.083305317], + [2018,0.086927134], + [2017,0.08667038], + [2016,0.085696222], + [2015,0.088593362], + [2014,0.0876889], + [2013,0.090478826], + [2012,0.089224789], + [2011,0.089137946], + [2011,0.089793651], + [2010,0.084810428], + [2009,0.085354773], + [2008,0.084620109], + [2007,0.084145702], + [2006,0.085599568], + [2005,0.08296368], + [2004,0.081600756], + [2003,0.082578936], + [2002,0.081315122], + [2001,0.082948174], + [2000,0.083131292], + [1999,0.083842897], + [1998,0.082384818], + [1997,0.082179335], + [1996,0.078788555], + [1995,0.075564972], + [1994,0.074921462], + [1993,0.071457187], + [1990,0.068326899], + [1980,0.047957826], + [1970,0.022208365], + [1960,0.018349842], + [1950,0.019615025] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-married-female.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-married-female.json new file mode 100644 index 0000000..7534509 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-married-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Married", + "description" : "Percentage of the female population (aged 15+) who are married.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.married.female"], + [2022,0.498652213], + [2021,0.499516391], + [2021,0.499367852], + [2020,0.509253683], + [2019,0.510896027], + [2018,0.508288522], + [2017,0.510348343], + [2016,0.50843497], + [2015,0.511564367], + [2014,0.513832957], + [2013,0.514546753], + [2012,0.517240299], + [2011,0.519505549], + [2011,0.51987523], + [2010,0.524255997], + [2009,0.531783474], + [2008,0.528114123], + [2007,0.537225628], + [2006,0.534493106], + [2005,0.538426538], + [2004,0.540048595], + [2003,0.54049037], + [2002,0.541717914], + [2001,0.545513041], + [2000,0.546963673], + [1999,0.547314555], + [1998,0.548526366], + [1997,0.549413501], + [1996,0.555545076], + [1995,0.56160262], + [1994,0.559299062], + [1993,0.564140625], + [1990,0.568891604], + [1980,0.589062882], + [1970,0.61913947], + [1960,0.659108146], + [1950,0.658068019] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-married-male.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-married-male.json new file mode 100644 index 0000000..9270940 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-married-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Married", + "description" : "Percentage of the male population (aged 15+) who are married.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.married.male"], + [2022,0.5166805], + [2021,0.516702372], + [2021,0.522382057], + [2020,0.532396098], + [2019,0.535593379], + [2018,0.53426391], + [2017,0.538492758], + [2016,0.533760694], + [2015,0.53669684], + [2014,0.538221376], + [2013,0.539940694], + [2012,0.544566514], + [2011,0.547695289], + [2011,0.541799912], + [2010,0.548281019], + [2009,0.555791747], + [2008,0.555515186], + [2007,0.564779874], + [2006,0.563202533], + [2005,0.566721331], + [2004,0.568252035], + [2003,0.571704571], + [2002,0.573568373], + [2001,0.579718518], + [2000,0.57881568], + [1999,0.578541471], + [1998,0.579818637], + [1997,0.578310486], + [1996,0.584787967], + [1995,0.589228691], + [1994,0.58974041], + [1993,0.599162924], + [1990,0.607177424], + [1980,0.632274519], + [1970,0.66765402], + [1960,0.693195958], + [1950,0.675189099] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-never-female.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-never-female.json new file mode 100644 index 0000000..1047549 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-never-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Never Married", + "description" : "Percentage of the female population (aged 15+) who are single-never-married.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.never.female"], + [2022,0.3110402], + [2021,0.308534959], + [2021,0.305535864], + [2020,0.300179198], + [2019,0.295705033], + [2018,0.294974968], + [2017,0.292999408], + [2016,0.2939425], + [2015,0.289006431], + [2014,0.287292775], + [2013,0.286269852], + [2012,0.283785583], + [2011,0.280052131], + [2011,0.279636887], + [2010,0.27369513], + [2009,0.267602095], + [2008,0.267937971], + [2007,0.261502208], + [2006,0.261982562], + [2005,0.258373286], + [2004,0.25555224], + [2003,0.253512775], + [2002,0.251755511], + [2001,0.24729619], + [2000,0.250885596], + [1999,0.251030759], + [1998,0.246958435], + [1997,0.243499944], + [1996,0.240759778], + [1995,0.235108733], + [1994,0.236898262], + [1993,0.229824219], + [1990,0.227548629], + [1980,0.224948284], + [1970,0.220752], + [1960,0.189638894], + [1950,0.19995797] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-never-male.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-never-male.json new file mode 100644 index 0000000..ee5aac1 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-never-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Never Married", + "description" : "Percentage of the male population (aged 15+) who are single-never-married.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.never.male"], + [2022,0.371448588], + [2021,0.370351951], + [2021,0.366210363], + [2020,0.357555199], + [2019,0.354010461], + [2018,0.352047032], + [2017,0.348758555], + [2016,0.35276464], + [2015,0.348257982], + [2014,0.349080121], + [2013,0.343776587], + [2012,0.3423092], + [2011,0.338147805], + [2011,0.343748948], + [2010,0.341637918], + [2009,0.334733341], + [2008,0.334648224], + [2007,0.327533194], + [2006,0.327982808], + [2005,0.325895458], + [2004,0.326084981], + [2003,0.320904173], + [2002,0.320439248], + [2001,0.313276633], + [2000,0.312789728], + [1999,0.312715585], + [1998,0.312401729], + [1997,0.312652882], + [1996,0.311289848], + [1995,0.309977074], + [1994,0.312375992], + [1993,0.303360955], + [1990,0.299113697], + [1980,0.295642305], + [1970,0.281069743], + [1960,0.253413635], + [1950,0.263731433] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-unmarried-female.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-unmarried-female.json new file mode 100644 index 0000000..e7cadfc --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-unmarried-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Unmarried", + "description" : "Percentage of the female population (aged 15+) who are unmarried.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.unmarried.female"], + [2022,0.501347787], + [2021,0.500490936], + [2021,0.500639456], + [2020,0.490746317], + [2019,0.489103973], + [2018,0.491704061], + [2017,0.489644161], + [2016,0.491572568], + [2015,0.488443244], + [2014,0.486167043], + [2013,0.485445485], + [2012,0.482759701], + [2011,0.48050235], + [2011,0.480132768], + [2010,0.475752044], + [2009,0.468216526], + [2008,0.471885877], + [2007,0.462782612], + [2006,0.465515229], + [2005,0.461565036], + [2004,0.459951405], + [2003,0.45950963], + [2002,0.458282086], + [2001,0.454486959], + [2000,0.453036327], + [1999,0.452676324], + [1998,0.451473634], + [1997,0.450586499], + [1996,0.444464355], + [1995,0.438406901], + [1994,0.440700938], + [1993,0.435849609], + [1990,0.431098379], + [1980,0.410948239], + [1970,0.38086053], + [1960,0.340891854], + [1950,0.341931981] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-unmarried-male.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-unmarried-male.json new file mode 100644 index 0000000..01d2334 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-unmarried-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Unmarried", + "description" : "Percentage of the male population (aged 15+) who are unmarried.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.unmarried.male"], + [2022,0.4833195], + [2021,0.483297628], + [2021,0.477625677], + [2020,0.467611683], + [2019,0.464406621], + [2018,0.46573609], + [2017,0.461507242], + [2016,0.4662233], + [2015,0.46330316], + [2014,0.461770451], + [2013,0.460059306], + [2012,0.455425144], + [2011,0.452304711], + [2011,0.458191672], + [2010,0.451718981], + [2009,0.444199681], + [2008,0.444493464], + [2007,0.435220126], + [2006,0.436788623], + [2005,0.433278669], + [2004,0.431747965], + [2003,0.428295429], + [2002,0.426431627], + [2001,0.420281482], + [2000,0.421174622], + [1999,0.421468329], + [1998,0.420191252], + [1997,0.421689514], + [1996,0.415212033], + [1995,0.408918775], + [1994,0.41025959], + [1993,0.400837076], + [1990,0.392811701], + [1980,0.367725481], + [1970,0.33234598], + [1960,0.306804042], + [1950,0.324810901] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-widowed-female.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-widowed-female.json new file mode 100644 index 0000000..a5ed27c --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-widowed-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Widowed", + "description" : "Percentage of the female population (aged 15+) who are unmarried and widowed.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.widowed.female"], + [2022,0.08364296], + [2021,0.082118206], + [2021,0.084861329], + [2020,0.082747022], + [2019,0.084187851], + [2018,0.086712405], + [2017,0.087269402], + [2016,0.085834678], + [2015,0.086236158], + [2014,0.086347221], + [2013,0.087133032], + [2012,0.087654176], + [2011,0.090470361], + [2011,0.090426298], + [2010,0.091411295], + [2009,0.092740301], + [2008,0.09312548], + [2007,0.09237196], + [2006,0.094109998], + [2005,0.09362914], + [2004,0.095025363], + [2003,0.097085793], + [2002,0.099512382], + [2001,0.101594521], + [2000,0.099954817], + [1999,0.099828511], + [1998,0.101961763], + [1997,0.103272442], + [1996,0.104478879], + [1995,0.10551472], + [1994,0.106438404], + [1993,0.109511719], + [1990,0.114956229], + [1980,0.119647663], + [1970,0.125170383], + [1960,0.124816196], + [1950,0.117929319] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/percent/us-marriage-widowed-male.json b/data/historical/united-states/culture/marriage/status/percent/us-marriage-widowed-male.json new file mode 100644 index 0000000..dfb9fd3 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/percent/us-marriage-widowed-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Widowed", + "description" : "Percentage of the male population (aged 15+) who are unmarried and widowed.", + "units" : "%", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.widowed.male"], + [2022,0.028205694], + [2021,0.027138485], + [2021,0.027703016], + [2020,0.027066768], + [2019,0.027090842], + [2018,0.026761925], + [2017,0.026078307], + [2016,0.027762439], + [2015,0.026451816], + [2014,0.02500143], + [2013,0.025803894], + [2012,0.023891155], + [2011,0.02501896], + [2011,0.024649073], + [2010,0.025270635], + [2009,0.024111566], + [2008,0.025225132], + [2007,0.02354123], + [2006,0.023206247], + [2005,0.024419532], + [2004,0.024062227], + [2003,0.024812321], + [2002,0.024677258], + [2001,0.024056675], + [2000,0.025253603], + [1999,0.024909846], + [1998,0.025404705], + [1997,0.026857297], + [1996,0.02513363], + [1995,0.02337673], + [1994,0.022962136], + [1993,0.026018934], + [1990,0.025371105], + [1980,0.024125349], + [1970,0.029067872], + [1960,0.035040565], + [1950,0.041464442] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-divorced-female.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-divorced-female.json new file mode 100644 index 0000000..75e3866 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-divorced-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Divorced", + "description" : "Total number of females (aged 15+) who are unmarried and divorced.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.divorced.female"], + [2022,14641000], + [2021,14990000], + [2021,15085000], + [2020,14681000], + [2019,14804000], + [2018,14833000], + [2017,14591000], + [2016,14831000], + [2015,14874000], + [2014,14614000], + [2013,14434000], + [2012,14215000], + [2011,13924000], + [2011,13762000], + [2010,13760000], + [2009,13308000], + [2008,13564000], + [2007,13218000], + [2006,13127000], + [2005,13003000], + [2004,12829000], + [2003,12673000], + [2002,12268000], + [2001,11980000], + [2000,11309000], + [1999,11162000], + [1998,11093000], + [1997,11116000], + [1996,10521000], + [1995,10270000], + [1994,10129000], + [1993,9883000], + [1990,8845000], + [1980,5966000], + [1970,2717000], + [1960,1708000], + [1950,1373000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-divorced-male.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-divorced-male.json new file mode 100644 index 0000000..138f51e --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-divorced-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Divorced", + "description" : "Total number of males (aged 15+) who are unmarried and divorced.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","divorce","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.divorced.male"], + [2022,10987000], + [2021,11215000], + [2021,10824000], + [2020,10667000], + [2019,10655000], + [2018,11060000], + [2017,10891000], + [2016,10708000], + [2015,10952000], + [2014,10729000], + [2013,10954000], + [2012,10696000], + [2011,10578000], + [2011,10670000], + [2010,9981000], + [2009,9958000], + [2008,9782000], + [2007,9633000], + [2006,9679000], + [2005,9258000], + [2004,8980000], + [2003,8976000], + [2002,8686000], + [2001,8758000], + [2000,8572000], + [1999,8556000], + [1998,8331000], + [1997,8231000], + [1996,7768000], + [1995,7383000], + [1994,7250000], + [1993,6778000], + [1990,6283000], + [1980,3930000], + [1970,1567000], + [1960,1106000], + [1950,1071000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-married-female.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-married-female.json new file mode 100644 index 0000000..07a3f7c --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-married-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Married", + "description" : "Total number of females (aged 15+) who are married.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.married.female"], + [2022,68446000], + [2021,68171000], + [2021,68331000], + [2020,69341000], + [2019,69254000], + [2018,68530000], + [2017,68082000], + [2016,67450000], + [2015,67217000], + [2014,66732000], + [2013,66287000], + [2012,66049000], + [2011,65772000], + [2011,65000000], + [2010,65197000], + [2009,65604000], + [2008,64638000], + [2007,65202000], + [2006,64121000], + [2005,63901000], + [2004,63345000], + [2003,62892000], + [2002,62102000], + [2001,61889000], + [2000,60527000], + [1999,60001000], + [1998,59333000], + [1997,58829000], + [1996,58905000], + [1995,58984000], + [1994,58185000], + [1993,57768000], + [1990,56797000], + [1980,52965000], + [1970,48148000], + [1960,42583000], + [1950,37577000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-married-male.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-married-male.json new file mode 100644 index 0000000..fdda5de --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-married-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Married", + "description" : "Total number of males (aged 15+) who are married.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.married.male"], + [2022,67851000], + [2021,67533000], + [2021,67544000], + [2020,68431000], + [2019,68504000], + [2018,67976000], + [2017,67667000], + [2016,66695000], + [2015,66347000], + [2014,65853000], + [2013,65369000], + [2012,65281000], + [2011,64995000], + [2011,64381000], + [2010,64525000], + [2009,64842000], + [2008,64217000], + [2007,64656000], + [2006,63683000], + [2005,63241000], + [2004,62535000], + [2003,62142000], + [2002,61268000], + [2001,61209000], + [2000,59684000], + [1999,59039000], + [1998,58633000], + [1997,57923000], + [1996,57656000], + [1995,57570000], + [1994,57068000], + [1993,56833000], + [1990,55833000], + [1980,51813000], + [1970,47109000], + [1960,41781000], + [1950,36866000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-never-female.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-never-female.json new file mode 100644 index 0000000..b537e01 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-never-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Never Married", + "description" : "Total number of females (aged 15+) who are single-never-married.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.never.female"], + [2022,42694000], + [2021,42107000], + [2021,41808000], + [2020,40873000], + [2019,40084000], + [2018,39770000], + [2017,39087000], + [2016,38995000], + [2015,37974000], + [2014,37311000], + [2013,36879000], + [2012,36238000], + [2011,35456000], + [2011,34963000], + [2010,34037000], + [2009,33013000], + [2008,32794000], + [2007,31738000], + [2006,31429000], + [2005,30664000], + [2004,29975000], + [2003,29499000], + [2002,28861000], + [2001,28056000], + [2000,27763000], + [1999,27520000], + [1998,26713000], + [1997,26073000], + [1996,25528000], + [1995,24693000], + [1994,24645000], + [1993,23534000], + [1990,22718000], + [1980,20226000], + [1970,17167000], + [1960,12252000], + [1950,11418000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-never-male.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-never-male.json new file mode 100644 index 0000000..edafe8b --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-never-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Never Married", + "description" : "Total number of males (aged 15+) who are single-never-married.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.never.male"], + [2022,48779000], + [2021,48405000], + [2021,47351000], + [2020,45958000], + [2019,45279000], + [2018,44792000], + [2017,43825000], + [2016,44079000], + [2015,43052000], + [2014,42711000], + [2013,41620000], + [2012,41035000], + [2011,40128000], + [2011,40847000], + [2010,40206000], + [2009,39052000], + [2008,38685000], + [2007,37496000], + [2006,37086000], + [2005,36367000], + [2004,35885000], + [2003,34881000], + [2002,34229000], + [2001,33077000], + [2000,32253000], + [1999,31912000], + [1998,31591000], + [1997,31315000], + [1996,30691000], + [1995,30286000], + [1994,30228000], + [1993,28775000], + [1990,27505000], + [1980,24227000], + [1970,19832000], + [1960,15274000], + [1950,14400000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-unmarried-female.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-unmarried-female.json new file mode 100644 index 0000000..698ad36 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-unmarried-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Unmarried", + "description" : "Total number of females (aged 15+) who are unmarried.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.unmarried.female"], + [2022,68816000], + [2021,68304000], + [2021,68505000], + [2020,66821000], + [2019,66300000], + [2018,66294000], + [2017,65320000], + [2016,65213000], + [2015,64179000], + [2014,63139000], + [2013,62538000], + [2012,61646000], + [2011,60834000], + [2011,60031000], + [2010,59165000], + [2009,57762000], + [2008,57756000], + [2007,56167000], + [2006,55846000], + [2005,54779000], + [2004,53950000], + [2003,53469000], + [2002,52537000], + [2001,51562000], + [2000,50133000], + [1999,49626000], + [1998,48835000], + [1997,48247000], + [1996,47127000], + [1995,46045000], + [1994,45847000], + [1993,44631000], + [1990,43040000], + [1980,36950000], + [1970,29618000], + [1960,22024000], + [1950,19525000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-unmarried-male.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-unmarried-male.json new file mode 100644 index 0000000..e82092f --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-unmarried-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Unmarried", + "description" : "Total number of males (aged 15+) who are unmarried.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.unmarried.male"], + [2022,63470000], + [2021,63167000], + [2021,61757000], + [2020,60104000], + [2019,59399000], + [2018,59257000], + [2017,57993000], + [2016,58256000], + [2015,57274000], + [2014,56499000], + [2013,55698000], + [2012,54595000], + [2011,53675000], + [2011,54446000], + [2010,53161000], + [2009,51823000], + [2008,51383000], + [2007,49824000], + [2006,49389000], + [2005,48350000], + [2004,47513000], + [2003,46554000], + [2002,45551000], + [2001,44375000], + [2000,43429000], + [1999,43010000], + [1998,42491000], + [1997,42236000], + [1996,40937000], + [1995,39953000], + [1994,39700000], + [1993,38021000], + [1990,36121000], + [1980,30134000], + [1970,23450000], + [1960,18492000], + [1950,17735000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-widowed-female.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-widowed-female.json new file mode 100644 index 0000000..c1b4aee --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-widowed-female.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Females Widowed", + "description" : "Total number of females (aged 15+) who are unmarried and widowed.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.widowed.female"], + [2022,11481000], + [2021,11207000], + [2021,11612000], + [2020,11267000], + [2019,11412000], + [2018,11691000], + [2017,11642000], + [2016,11387000], + [2015,11331000], + [2014,11214000], + [2013,11225000], + [2012,11193000], + [2011,11454000], + [2011,11306000], + [2010,11368000], + [2009,11441000], + [2008,11398000], + [2007,11211000], + [2006,11290000], + [2005,11112000], + [2004,11146000], + [2003,11297000], + [2002,11408000], + [2001,11526000], + [2000,11061000], + [1999,10944000], + [1998,11029000], + [1997,11058000], + [1996,11078000], + [1995,11082000], + [1994,11073000], + [1993,11214000], + [1990,11477000], + [1980,10758000], + [1970,9734000], + [1960,8064000], + [1950,6734000] + ] +} diff --git a/data/historical/united-states/culture/marriage/status/total/us-marriage-widowed-male.json b/data/historical/united-states/culture/marriage/status/total/us-marriage-widowed-male.json new file mode 100644 index 0000000..22d08b5 --- /dev/null +++ b/data/historical/united-states/culture/marriage/status/total/us-marriage-widowed-male.json @@ -0,0 +1,60 @@ +{ + "metadata" : { + "name" : "Males Widowed", + "description" : "Total number of males (aged 15+) who are unmarried and widowed.", + "units" : "people", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/families/marital.html", + "https://www2.census.gov/programs-surveys/demo/tables/families/time-series/marital/ms1.xls" + ] + }, + "data" : [ + ["year","us.marriage.widowed.male"], + [2022,3704000], + [2021,3547000], + [2021,3582000], + [2020,3479000], + [2019,3465000], + [2018,3405000], + [2017,3277000], + [2016,3469000], + [2015,3270000], + [2014,3059000], + [2013,3124000], + [2012,2864000], + [2011,2969000], + [2011,2929000], + [2010,2974000], + [2009,2813000], + [2008,2916000], + [2007,2695000], + [2006,2624000], + [2005,2725000], + [2004,2648000], + [2003,2697000], + [2002,2636000], + [2001,2540000], + [2000,2604000], + [1999,2542000], + [1998,2569000], + [1997,2690000], + [1996,2478000], + [1995,2284000], + [1994,2222000], + [1993,2468000], + [1990,2333000], + [1980,1977000], + [1970,2051000], + [1960,2112000], + [1950,2264000] + ] +} diff --git a/data/historical/united-states/culture/marriage/us-marriage-rate.json b/data/historical/united-states/culture/marriage/us-marriage-rate.json new file mode 100644 index 0000000..614d0a3 --- /dev/null +++ b/data/historical/united-states/culture/marriage/us-marriage-rate.json @@ -0,0 +1,141 @@ +{ + "metadata" : { + "name" : "Marriage Rate", + "description" : "Marriage rate per-year in the United States.", + "units" : "marriages/1k population", + "year" : "1900-2018", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage"], + "authors" : [ + "United States Center For Desease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/marriage_rate_2018/marriage_rate_2018.htm" + ] + }, + "data" : [ + ["year","us.marriage.rate"], + [1900,9.3], + [1901,9.6], + [1902,9.8], + [1903,10.1], + [1904,9.9], + [1905,10], + [1906,10.5], + [1907,10.8], + [1908,9.7], + [1909,9.9], + [1910,10.3], + [1911,10.2], + [1912,10.5], + [1913,10.5], + [1914,10.3], + [1915,10], + [1916,10.6], + [1917,11.1], + [1918,9.7], + [1919,11], + [1920,12], + [1921,10.7], + [1922,10.3], + [1923,11], + [1924,10.4], + [1925,10.3], + [1926,10.2], + [1927,10.1], + [1928,9.8], + [1929,10.1], + [1930,9.2], + [1931,8.6], + [1932,7.9], + [1933,8.7], + [1934,10.3], + [1935,10.4], + [1936,10.7], + [1937,11.3], + [1938,10.3], + [1939,10.7], + [1940,12.1], + [1941,12.7], + [1942,13.2], + [1943,11.7], + [1944,10.9], + [1945,12.2], + [1946,16.4], + [1947,13.9], + [1948,12.4], + [1949,10.6], + [1950,11.1], + [1951,10.4], + [1952,9.9], + [1953,9.8], + [1954,9.2], + [1955,9.3], + [1956,9.5], + [1957,8.9], + [1958,8.4], + [1959,8.5], + [1960,8.5], + [1961,8.5], + [1962,8.5], + [1963,8.8], + [1964,9], + [1965,9.3], + [1966,9.5], + [1967,9.7], + [1968,10.4], + [1969,10.6], + [1970,10.6], + [1971,10.6], + [1972,10.9], + [1973,10.8], + [1974,10.5], + [1975,10], + [1976,9.9], + [1977,9.9], + [1978,10.3], + [1979,10.4], + [1980,10.6], + [1981,10.6], + [1982,10.6], + [1983,10.5], + [1984,10.5], + [1985,10.1], + [1986,10], + [1987,9.9], + [1988,9.8], + [1989,9.7], + [1990,9.8], + [1991,9.4], + [1992,9.3], + [1993,9], + [1994,9.1], + [1995,8.9], + [1996,8.8], + [1997,8.9], + [1998,8.4], + [1999,8.6], + [2000,8.2], + [2001,8.2], + [2002,8], + [2003,7.7], + [2004,7.8], + [2005,7.6], + [2006,7.5], + [2007,7.3], + [2008,7.1], + [2009,6.8], + [2010,6.8], + [2011,6.8], + [2012,6.8], + [2013,6.8], + [2014,6.9], + [2015,6.9], + [2016,7], + [2017,6.9], + [2018,6.5] + ] +} diff --git a/data/historical/united-states/culture/marriage/us-marriage-total.json b/data/historical/united-states/culture/marriage/us-marriage-total.json new file mode 100644 index 0000000..8ceed72 --- /dev/null +++ b/data/historical/united-states/culture/marriage/us-marriage-total.json @@ -0,0 +1,141 @@ +{ + "metadata" : { + "name" : "Marriages", + "description" : "Marriages per-year in the United States.", + "units" : "marriages", + "year" : "1900-2018", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["historical","us","culture","marriage"], + "authors" : [ + "United States Center For Desease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/marriage_rate_2018/marriage_rate_2018.htm" + ] + }, + "data" : [ + ["year","us.marriage.total"], + [1900,709000], + [1901,742000], + [1902,776000], + [1903,818000], + [1904,815000], + [1905,842000], + [1906,895000], + [1907,937000], + [1908,857000], + [1909,897000], + [1910,948000], + [1911,955000], + [1912,1005000], + [1913,1021000], + [1914,1025000], + [1915,1008000], + [1916,1076000], + [1917,1144000], + [1918,1000000], + [1919,1150000], + [1920,1274000], + [1921,1164000], + [1922,1134000], + [1923,1230000], + [1924,1185000], + [1925,1188000], + [1926,1203000], + [1927,1201000], + [1928,1182000], + [1929,1233000], + [1930,1127000], + [1931,1061000], + [1932,982000], + [1933,1098000], + [1934,1302000], + [1935,1327000], + [1936,1369000], + [1937,1451000], + [1938,1331000], + [1939,1404000], + [1940,1596000], + [1941,1696000], + [1942,1772000], + [1943,1577000], + [1944,1452000], + [1945,1613000], + [1946,2291000], + [1947,1992000], + [1948,2197000], + [1949,1580000], + [1950,1667000], + [1951,1595000], + [1952,1539000], + [1953,1546000], + [1954,1490000], + [1955,1531000], + [1956,1585000], + [1957,1518000], + [1958,1451000], + [1959,1494000], + [1960,1523000], + [1961,1548000], + [1962,1577000], + [1963,1654000], + [1964,1725000], + [1965,1800000], + [1966,1857000], + [1967,1927000], + [1968,2069000], + [1969,2145000], + [1970,2159000], + [1971,2190000], + [1972,2282000], + [1973,2284000], + [1974,2230000], + [1975,2153000], + [1976,2155000], + [1977,2178000], + [1978,2282000], + [1979,2331000], + [1980,2390000], + [1981,2422000], + [1982,2456000], + [1983,2446000], + [1984,2477000], + [1985,2413000], + [1986,2407000], + [1987,2403000], + [1988,2396000], + [1989,2403000], + [1990,2443000], + [1991,2371000], + [1992,2362000], + [1993,2334000], + [1994,2362000], + [1995,2366000], + [1996,2344000], + [1997,2384000], + [1998,2244000], + [1999,2358000], + [2000,2315000], + [2001,2326000], + [2002,2290000], + [2003,2245000], + [2004,2279000], + [2005,2249000], + [2006,2193000], + [2007,2197000], + [2008,2157000], + [2009,2080000], + [2010,2096000], + [2011,2118000], + [2012,2131000], + [2013,2081301], + [2014,2140272], + [2015,2221579], + [2016,2251411], + [2017,2236496], + [2018,2132853] + ] +} diff --git a/data/historical/united-states/culture/religion/importance/us-religion-importance-fairly.json b/data/historical/united-states/culture/religion/importance/us-religion-importance-fairly.json new file mode 100644 index 0000000..b76ce8a --- /dev/null +++ b/data/historical/united-states/culture/religion/importance/us-religion-importance-fairly.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "Religion Is Fairly Important", + "description" : "Percentage of the population who said religion was fairly important.", + "units" : "%", + "year" : "1992-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["yearl","us.religion.importance.fairly"], + [2022,0.26], + [2021,0.27], + [2020,0.25], + [2019,0.26], + [2018,0.23], + [2017,0.23], + [2016,0.22], + [2015,0.26], + [2014,0.27], + [2013,0.22], + [2012,0.23], + [2011,0.26], + [2010,0.26], + [2009,0.25], + [2008,0.26], + [2007,0.26], + [2006,0.27], + [2005,0.25], + [2004,0.24], + [2003,0.24], + [2002,0.27], + [2001,0.28], + [2000,0.29], + [1999,0.29], + [1998,0.27], + [1997,0.27], + [1996,0.28], + [1995,0.29], + [1994,0.29], + [1993,0.29], + [1992,0.29] + ] +} diff --git a/data/historical/united-states/culture/religion/importance/us-religion-importance-noopinion.json b/data/historical/united-states/culture/religion/importance/us-religion-importance-noopinion.json new file mode 100644 index 0000000..2bd0cd6 --- /dev/null +++ b/data/historical/united-states/culture/religion/importance/us-religion-importance-noopinion.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "No Opinion On Religious Importance", + "description" : "Percentage of the population who said they held no opinion on the importance of religion.", + "units" : "%", + "year" : "1992-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["yearl","us.religion.importance.noopinion"], + [2022,0.005], + [2021,0.005], + [2020,0.005], + [2019,0.005], + [2018,0.01], + [2017,0.01], + [2016,0.01], + [2015,0.01], + [2014,0.005], + [2013,0.01], + [2012,0.01], + [2011,0.01], + [2010,0.01], + [2009,0.01], + [2008,0.01], + [2007,0.01], + [2006,0.01], + [2005,0.005], + [2004,0.01], + [2003,0.005], + [2002,0.005], + [2001,0.005], + [2000,0.005], + [1999,0.01], + [1998,0.01], + [1997,0.01], + [1996,0.005], + [1995,0.01], + [1994,0.01], + [1993,0.005], + [1992,0.01] + ] +} diff --git a/data/historical/united-states/culture/religion/importance/us-religion-importance-notvery.json b/data/historical/united-states/culture/religion/importance/us-religion-importance-notvery.json new file mode 100644 index 0000000..4051d88 --- /dev/null +++ b/data/historical/united-states/culture/religion/importance/us-religion-importance-notvery.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "Religion Is Not Very Important", + "description" : "Percentage of the population who said religion was not very important.", + "units" : "%", + "year" : "1992-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["yearl","us.religion.importance.notvery"], + [2022,0.28], + [2021,0.25], + [2020,0.27], + [2019,0.25], + [2018,0.26], + [2017,0.25], + [2016,0.25], + [2015,0.22], + [2014,0.19], + [2013,0.22], + [2012,0.19], + [2011,0.19], + [2010,0.2], + [2009,0.19], + [2008,0.19], + [2007,0.17], + [2006,0.16], + [2005,0.16], + [2004,0.16], + [2003,0.15], + [2002,0.13], + [2001,0.14], + [2000,0.12], + [1999,0.11], + [1998,0.12], + [1997,0.12], + [1996,0.15], + [1995,0.12], + [1994,0.12], + [1993,0.12], + [1992,0.12] + ] +} diff --git a/data/historical/united-states/culture/religion/importance/us-religion-importance-very.json b/data/historical/united-states/culture/religion/importance/us-religion-importance-very.json new file mode 100644 index 0000000..6cc5b14 --- /dev/null +++ b/data/historical/united-states/culture/religion/importance/us-religion-importance-very.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "Religion Is Very Important", + "description" : "Percentage of the population who said religion was very important.", + "units" : "%", + "year" : "1992-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["yearl","us.religon.importance.very"], + [2022,0.46], + [2021,0.49], + [2020,0.48], + [2019,0.49], + [2018,0.5], + [2017,0.51], + [2016,0.53], + [2015,0.52], + [2014,0.53], + [2013,0.56], + [2012,0.58], + [2011,0.55], + [2010,0.54], + [2009,0.56], + [2008,0.54], + [2007,0.56], + [2006,0.57], + [2005,0.59], + [2004,0.59], + [2003,0.61], + [2002,0.6], + [2001,0.58], + [2000,0.59], + [1999,0.59], + [1998,0.61], + [1997,0.6], + [1996,0.57], + [1995,0.58], + [1994,0.58], + [1993,0.59], + [1992,0.58] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-catholic.json b/data/historical/united-states/culture/religion/practice/us-religion-catholic.json new file mode 100644 index 0000000..24987ac --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-catholic.json @@ -0,0 +1,97 @@ +{ + "metadata" : { + "name" : "Catholics", + "description" : "Percentage of the population who identify as catholic.", + "units" : "%", + "year" : "1948-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.catholic"], + [2022,0.23], + [2021,0.22], + [2020,0.22], + [2019,0.22], + [2018,0.22], + [2017,0.21], + [2016,0.22], + [2015,0.23], + [2014,0.23], + [2013,0.24], + [2012,0.23], + [2011,0.23], + [2010,0.21], + [2009,0.22], + [2008,0.22], + [2007,0.23], + [2006,0.22], + [2005,0.23], + [2004,0.24], + [2003,0.24], + [2002,0.24], + [2001,0.25], + [2000,0.25], + [1999,0.27], + [1998,0.27], + [1997,0.26], + [1996,0.25], + [1995,0.27], + [1994,0.24], + [1993,0.26], + [1992,0.26], + [1991,0.25], + [1990,0.25], + [1989,0.25], + [1988,0.26], + [1987,0.28], + [1986,0.27], + [1985,0.28], + [1984,0.28], + [1983,0.29], + [1982,0.29], + [1981,0.28], + [1980,0.28], + [1979,0.29], + [1978,0.29], + [1977,0.27], + [1976,0.28], + [1975,0.27], + [1974,0.28], + [1973,0.27], + [1972,0.27], + [1971,0.26], + [1970,0.26], + [1969,0.27], + [1968,0.25], + [1967,0.25], + [1966,0.25], + [1965,0.24], + [1964,0.23], + [1963,0.24], + [1962,0.24], + [1961,0.23], + [1960,0.25], + [1959,0.24], + [1958,0.23], + [1957,0.24], + [1956,0.25], + [1955,0.22], + [1954,0.22], + [1953,0.23], + [1952,0.26], + [1951,0.24], + [1950,0.25], + [1949,0.22], + [1948,0.22] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-christian-nonspecific.json b/data/historical/united-states/culture/religion/practice/us-religion-christian-nonspecific.json new file mode 100644 index 0000000..ebc08a5 --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-christian-nonspecific.json @@ -0,0 +1,46 @@ +{ + "metadata" : { + "name" : "Christian Non-Specific", + "description" : "Percentage of the population who identify as a non-specific Christian denomination.", + "units" : "%", + "year" : "1999-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.christian.nonspecific"], + [2022,0.11], + [2021,0.1], + [2020,0.09], + [2019,0.1], + [2018,0.1], + [2017,0.09], + [2016,0.1], + [2015,0.09], + [2014,0.1], + [2013,0.1], + [2012,0.1], + [2011,0.1], + [2010,0.08], + [2009,0.09], + [2008,0.08], + [2007,0.05], + [2006,0.06], + [2005,0.07], + [2004,0.07], + [2003,0.07], + [2002,0.07], + [2001,0.04], + [2000,0.05], + [1999,0.02] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-jewish.json b/data/historical/united-states/culture/religion/practice/us-religion-jewish.json new file mode 100644 index 0000000..1ae437b --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-jewish.json @@ -0,0 +1,97 @@ +{ + "metadata" : { + "name" : "Jewish", + "description" : "Percentage of the population who identify as Jewish.", + "units" : "%", + "year" : "1948-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.jewish"], + [2022,0.02], + [2021,0.02], + [2020,0.02], + [2019,0.02], + [2018,0.02], + [2017,0.02], + [2016,0.03], + [2015,0.02], + [2014,0.02], + [2013,0.02], + [2012,0.02], + [2011,0.02], + [2010,0.02], + [2009,0.02], + [2008,0.02], + [2007,0.03], + [2006,0.02], + [2005,0.02], + [2004,0.02], + [2003,0.02], + [2002,0.02], + [2001,0.02], + [2000,0.02], + [1999,0.01], + [1998,0.01], + [1997,0.02], + [1996,0.03], + [1995,0.02], + [1994,0.02], + [1993,0.02], + [1992,0.02], + [1991,0.02], + [1990,0.02], + [1989,0.02], + [1988,0.02], + [1987,0.02], + [1986,0.02], + [1985,0.02], + [1984,0.02], + [1983,0.02], + [1982,0.02], + [1981,0.02], + [1980,0.02], + [1979,0.02], + [1978,0.02], + [1977,0.02], + [1976,0.02], + [1975,0.02], + [1974,0.02], + [1973,0.02], + [1972,0.02], + [1971,0.03], + [1970,0.03], + [1969,0.03], + [1968,0.03], + [1967,0.03], + [1966,0.03], + [1965,0.03], + [1964,0.03], + [1963,0.03], + [1962,0.03], + [1961,0.02], + [1960,0.03], + [1959,0.03], + [1958,0.03], + [1957,0.03], + [1956,0.03], + [1955,0.04], + [1954,0.03], + [1953,0.04], + [1952,0.04], + [1951,0.04], + [1950,0.04], + [1949,0.04], + [1948,0.04] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-mormon.json b/data/historical/united-states/culture/religion/practice/us-religion-mormon.json new file mode 100644 index 0000000..7c77a0a --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-mormon.json @@ -0,0 +1,66 @@ +{ + "metadata" : { + "name" : "Mormons", + "description" : "Percentage of the population who identify as Mormon.", + "units" : "%", + "year" : "1979-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.mormon"], + [2022,0.02], + [2021,0.01], + [2020,0.01], + [2019,0.01], + [2018,0.02], + [2017,0.02], + [2016,0.02], + [2015,0.02], + [2014,0.02], + [2013,0.02], + [2012,0.02], + [2011,0.02], + [2010,0.02], + [2009,0.01], + [2008,0.02], + [2007,0.02], + [2006,0.02], + [2005,0.02], + [2004,0.02], + [2003,0.02], + [2002,0.02], + [2001,0.02], + [2000,0.02], + [1999,0.02], + [1998,0.01], + [1997,0.01], + [1996,0.01], + [1995,0.01], + [1994,0.01], + [1993,0.01], + [1992,0.01], + [1991,0.01], + [1990,0.01], + [1989,0.01], + [1988,0.01], + [1987,0.02], + [1986,0.02], + [1985,0.02], + [1984,0.02], + [1983,0.01], + [1982,0.01], + [1981,null], + [1980,null], + [1979,0.01] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-noanswer.json b/data/historical/united-states/culture/religion/practice/us-religion-noanswer.json new file mode 100644 index 0000000..f2eb33f --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-noanswer.json @@ -0,0 +1,97 @@ +{ + "metadata" : { + "name" : "No Religious Answer Given", + "description" : "Percentage of the population who no answer to the gallup poll questioning about religion.", + "units" : "%", + "year" : "1948-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.noanswer"], + [2022,0.01], + [2021,0.03], + [2020,0.03], + [2019,0.03], + [2018,0.04], + [2017,0.04], + [2016,0.02], + [2015,0.04], + [2014,0.04], + [2013,0.04], + [2012,0.03], + [2011,0.03], + [2010,0.04], + [2009,0.03], + [2008,0.03], + [2007,0.02], + [2006,0.02], + [2005,0.02], + [2004,0.02], + [2003,0.02], + [2002,0.02], + [2001,0.02], + [2000,0.02], + [1999,0.02], + [1998,0.02], + [1997,0.02], + [1996,0.02], + [1995,0.02], + [1994,0.02], + [1993,0.02], + [1992,0.03], + [1991,0.02], + [1990,0.02], + [1989,0.02], + [1988,0.02], + [1987,0.005], + [1986,0.005], + [1985,0.01], + [1984,0.01], + [1983,0.01], + [1982,0.01], + [1981,0.01], + [1980,0.005], + [1979,0.01], + [1978,0.005], + [1977,0.01], + [1976,0.005], + [1975,0.01], + [1974,0.005], + [1973,0.01], + [1972,0.005], + [1971,0.005], + [1970,0.005], + [1969,0.005], + [1968,0.005], + [1967,0.005], + [1966,0.005], + [1965,0.005], + [1964,0.005], + [1963,0.005], + [1962,0.01], + [1961,0.01], + [1960,0.01], + [1959,0.005], + [1958,0.01], + [1957,0.01], + [1956,0.005], + [1955,0.01], + [1954,0.02], + [1953,0.01], + [1952,0.01], + [1951,0.01], + [1950,0.02], + [1949,0.02], + [1948,0.03] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-none.json b/data/historical/united-states/culture/religion/practice/us-religion-none.json new file mode 100644 index 0000000..d23e153 --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-none.json @@ -0,0 +1,97 @@ +{ + "metadata" : { + "name" : "Non-Religiousity", + "description" : "Percentage of the population who identify as non-religious.", + "units" : "%", + "year" : "1948-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.none"], + [2022,0.21], + [2021,0.21], + [2020,0.2], + [2019,0.21], + [2018,0.2], + [2017,0.2], + [2016,0.18], + [2015,0.17], + [2014,0.16], + [2013,0.15], + [2012,0.14], + [2011,0.13], + [2010,0.14], + [2009,0.13], + [2008,0.12], + [2007,0.11], + [2006,0.12], + [2005,0.1], + [2004,0.09], + [2003,0.1], + [2002,0.1], + [2001,0.08], + [2000,0.08], + [1999,0.08], + [1998,0.06], + [1997,0.09], + [1996,0.07], + [1995,0.06], + [1994,0.06], + [1993,0.06], + [1992,0.07], + [1991,0.09], + [1990,0.09], + [1989,0.07], + [1988,0.07], + [1987,0.09], + [1986,0.09], + [1985,0.08], + [1984,0.08], + [1983,0.08], + [1982,0.08], + [1981,0.07], + [1980,0.07], + [1979,0.07], + [1978,0.07], + [1977,0.07], + [1976,0.06], + [1975,0.06], + [1974,0.05], + [1973,0.05], + [1972,0.05], + [1971,0.04], + [1970,0.03], + [1969,0.04], + [1968,0.03], + [1967,0.02], + [1966,0.02], + [1965,0.02], + [1964,0.02], + [1963,0.02], + [1962,0.02], + [1961,0.02], + [1960,0.02], + [1959,0.02], + [1958,0.02], + [1957,0.01], + [1956,0.01], + [1955,0.02], + [1954,null], + [1953,0.01], + [1952,0.01], + [1951,0.01], + [1950,null], + [1949,null], + [1948,0.02] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-other.json b/data/historical/united-states/culture/religion/practice/us-religion-other.json new file mode 100644 index 0000000..4c9e808 --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-other.json @@ -0,0 +1,97 @@ +{ + "metadata" : { + "name" : "Other Religions", + "description" : "Percentage of the population who identify as other/non-mainstream religion.", + "units" : "%", + "year" : "1948-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.other"], + [2022,0.06], + [2021,0.06], + [2020,0.06], + [2019,0.06], + [2018,0.05], + [2017,0.05], + [2016,0.05], + [2015,0.06], + [2014,0.06], + [2013,0.05], + [2012,0.04], + [2011,0.05], + [2010,0.04], + [2009,0.05], + [2008,0.05], + [2007,0.04], + [2006,0.05], + [2005,0.05], + [2004,0.04], + [2003,0.04], + [2002,0.04], + [2001,0.04], + [2000,0.05], + [1999,0.06], + [1998,0.05], + [1997,0.07], + [1996,0.06], + [1995,0.05], + [1994,0.05], + [1993,0.07], + [1992,0.05], + [1991,0.05], + [1990,0.05], + [1989,0.06], + [1988,0.05], + [1987,0.01], + [1986,0.02], + [1985,0.03], + [1984,0.02], + [1983,0.04], + [1982,0.04], + [1981,0.04], + [1980,0.02], + [1979,0.02], + [1978,0.01], + [1977,0.02], + [1976,0.03], + [1975,0.04], + [1974,0.04], + [1973,0.04], + [1972,0.04], + [1971,0.04], + [1970,0.02], + [1969,0.02], + [1968,0.02], + [1967,0.03], + [1966,0.02], + [1965,0.02], + [1964,0.02], + [1963,0.02], + [1962,0.02], + [1961,0.02], + [1960,0.02], + [1959,0.02], + [1958,0.03], + [1957,0.01], + [1956,0.005], + [1955,0.02], + [1954,0.02], + [1953,0.02], + [1952,0.01], + [1951,0.02], + [1950,0.03], + [1949,0.03], + [1948,0.005] + ] +} diff --git a/data/historical/united-states/culture/religion/practice/us-religion-protestant.json b/data/historical/united-states/culture/religion/practice/us-religion-protestant.json new file mode 100644 index 0000000..42ddc50 --- /dev/null +++ b/data/historical/united-states/culture/religion/practice/us-religion-protestant.json @@ -0,0 +1,97 @@ +{ + "metadata" : { + "name" : "Protestants", + "description" : "Percentage of the population who identify as protestant.", + "units" : "%", + "year" : "1948-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Gallup Polling" + ], + "sources" : [ + "https://news.gallup.com/poll/1690/religion.aspx" + ] + }, + "data" : [ + ["year","us.religion.protestant"], + [2022,0.34], + [2021,0.35], + [2020,0.37], + [2019,0.35], + [2018,0.35], + [2017,0.38], + [2016,0.38], + [2015,0.38], + [2014,0.37], + [2013,0.38], + [2012,0.41], + [2011,0.42], + [2010,0.45], + [2009,0.45], + [2008,0.47], + [2007,0.51], + [2006,0.49], + [2005,0.49], + [2004,0.5], + [2003,0.49], + [2002,0.49], + [2001,0.53], + [2000,0.52], + [1999,0.52], + [1998,0.58], + [1997,0.53], + [1996,0.56], + [1995,0.56], + [1994,0.59], + [1993,0.56], + [1992,0.56], + [1991,0.56], + [1990,0.56], + [1989,0.57], + [1988,0.57], + [1987,0.57], + [1986,0.58], + [1985,0.57], + [1984,0.57], + [1983,0.55], + [1982,0.56], + [1981,0.59], + [1980,0.61], + [1979,0.58], + [1978,0.6], + [1977,0.61], + [1976,0.6], + [1975,0.6], + [1974,0.6], + [1973,0.6], + [1972,0.61], + [1971,0.63], + [1970,0.65], + [1969,0.64], + [1968,0.67], + [1967,0.67], + [1966,0.67], + [1965,0.69], + [1964,0.7], + [1963,0.69], + [1962,0.69], + [1961,0.7], + [1960,0.67], + [1959,0.68], + [1958,0.69], + [1957,0.7], + [1956,0.71], + [1955,0.7], + [1954,0.71], + [1953,0.7], + [1952,0.66], + [1951,0.68], + [1950,0.66], + [1949,0.69], + [1948,0.69] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-births-crude-rate.json b/data/historical/united-states/demographics/fertility/us-births-crude-rate.json new file mode 100644 index 0000000..2ea65c0 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-births-crude-rate.json @@ -0,0 +1,158 @@ +{ + "metadata" : { + "name" : "Crude Birth Rate", + "description" : "Number of births per 1,000 population.", + "units" : "births/1k population", + "year" : "1800-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://data.cdc.gov/NCHS/NCHS-Births-and-General-Fertility-Rates-United-Sta/e6fc-ccez", + "https://fred.stlouisfed.org/series/SPDYNCBRTINUSA", + "https://www.statista.com/statistics/1037156/crude-birth-rate-us-1800-2020/" + ] + }, + "data" : [ + ["year","us.births.crude.rate"], + [1800,48.33], + [1805,47.91], + [1810,47.2], + [1815,46.5], + [1820,47.72], + [1825,54.69], + [1830,53.84], + [1835,52.99], + [1840,52.14], + [1845,50.68], + [1850,48.8], + [1855,46.93], + [1860,45.05], + [1865,43.69], + [1870,42.5], + [1875,41.38], + [1880,40.25], + [1885,38.67], + [1890,36.8], + [1895,34.92], + [1900,33.05], + [1905,31.53], + [1909,30], + [1910,30.1], + [1911,29.9], + [1912,29.8], + [1913,29.5], + [1914,29.9], + [1915,29.5], + [1916,29.1], + [1917,28.5], + [1918,28.2], + [1919,26.1], + [1920,27.7], + [1921,28.1], + [1922,26.2], + [1923,26], + [1924,26.1], + [1925,25.1], + [1926,24.2], + [1927,23.5], + [1928,22.2], + [1929,21.2], + [1930,21.3], + [1931,20.2], + [1932,19.5], + [1933,18.4], + [1934,19], + [1935,18.7], + [1936,18.4], + [1937,18.7], + [1938,19.2], + [1939,18.8], + [1940,19.4], + [1941,20.3], + [1942,22.2], + [1943,22.7], + [1944,21.2], + [1945,20.4], + [1946,24.1], + [1947,26.6], + [1948,24.9], + [1949,24.5], + [1950,24.1], + [1951,24.9], + [1952,25.1], + [1953,25.1], + [1954,25.3], + [1955,25], + [1956,25.2], + [1957,25.3], + [1958,24.6], + [1959,24], + [1960,23.7], + [1961,23.3], + [1962,22.4], + [1963,21.7], + [1964,21.1], + [1965,19.4], + [1966,18.4], + [1967,17.8], + [1968,17.6], + [1969,17.9], + [1970,18.4], + [1971,17.2], + [1972,15.6], + [1973,14.8], + [1974,14.8], + [1975,14.6], + [1976,14.6], + [1977,15.1], + [1978,15], + [1979,15.6], + [1980,15.9], + [1981,15.8], + [1982,15.9], + [1983,15.6], + [1984,15.6], + [1985,15.8], + [1986,15.6], + [1987,15.7], + [1988,16], + [1989,16.4], + [1990,16.7], + [1991,16.2], + [1992,15.8], + [1993,15.4], + [1994,15], + [1995,14.6], + [1996,14.4], + [1997,14.2], + [1998,14.3], + [1999,14.2], + [2000,14.4], + [2001,14.1], + [2002,14], + [2003,14.1], + [2004,14], + [2005,14], + [2006,14.3], + [2007,14.3], + [2008,14], + [2009,13.5], + [2010,13], + [2011,12.7], + [2012,12.6], + [2013,12.4], + [2014,12.5], + [2015,12.4], + [2016,12.2], + [2017,11.8], + [2018,11.6], + [2019,11.4], + [2020,10.9] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-births-total.json b/data/historical/united-states/demographics/fertility/us-births-total.json new file mode 100644 index 0000000..47f0c36 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-births-total.json @@ -0,0 +1,132 @@ +{ + "metadata" : { + "name" : "Total Births", + "description" : "Total number of births recorded.", + "units" : "births", + "year" : "1909-2018", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://data.cdc.gov/NCHS/NCHS-Births-and-General-Fertility-Rates-United-Sta/e6fc-ccez" + ] + }, + "data" : [ + ["year","us.births.total"], + [1909,2718000], + [1910,2777000], + [1911,2809000], + [1912,2840000], + [1913,2869000], + [1914,2986000], + [1915,2965000], + [1916,2964000], + [1917,2944000], + [1918,2948000], + [1919,2740000], + [1920,2950000], + [1921,3055000], + [1922,2882000], + [1923,2910000], + [1924,2979000], + [1925,2909000], + [1926,2839000], + [1927,2802000], + [1928,2674000], + [1929,2582000], + [1930,2618000], + [1931,2506000], + [1932,2440000], + [1933,2307000], + [1934,2396000], + [1935,2377000], + [1936,2355000], + [1937,2413000], + [1938,2496000], + [1939,2466000], + [1940,2559000], + [1941,2703000], + [1942,2989000], + [1943,3104000], + [1944,2939000], + [1945,2858000], + [1946,3411000], + [1947,3817000], + [1948,3637000], + [1949,3649000], + [1950,3632000], + [1951,3820000], + [1952,3909000], + [1953,3959000], + [1954,4071000], + [1955,4097000], + [1956,4210000], + [1957,4300000], + [1958,4246000], + [1959,4244796], + [1960,4257850], + [1961,4268326], + [1962,4167362], + [1963,4098020], + [1964,4027490], + [1965,3760358], + [1966,3606274], + [1967,3520959], + [1968,3501564], + [1969,3600206], + [1970,3731386], + [1971,3555970], + [1972,3258411], + [1973,3136965], + [1974,3159958], + [1975,3144198], + [1976,3167788], + [1977,3326632], + [1978,3333279], + [1979,3494398], + [1980,3612258], + [1981,3629238], + [1982,3680537], + [1983,3638933], + [1984,3669141], + [1985,3760561], + [1986,3756547], + [1987,3809394], + [1988,3909510], + [1989,4040958], + [1990,4158212], + [1991,4110907], + [1992,4065014], + [1993,4000240], + [1994,3952767], + [1995,3899589], + [1996,3891494], + [1997,3880894], + [1998,3941553], + [1999,3959417], + [2000,4058814], + [2001,4025933], + [2002,4021726], + [2003,4089950], + [2004,4112052], + [2005,4138349], + [2006,4265555], + [2007,4316233], + [2008,4247694], + [2009,4130665], + [2010,3999386], + [2011,3953590], + [2012,3952841], + [2013,3932181], + [2014,3988076], + [2015,3978497], + [2016,3945875], + [2017,3855500], + [2018,3791712] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-asian-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-asian-rate.json new file mode 100644 index 0000000..79192e5 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-asian-rate.json @@ -0,0 +1,43 @@ +{ + "metadata" : { + "name" : "Asian Fertility Rate", + "description" : "Asian children born per adult woman.", + "units" : "children/woman", + "year" : "1989-2009", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Demographic_history_of_the_United_States" + ] + }, + "data" : [ + ["year","us.fertility.asian.rate"], + [1989,1.95], + [1990,2], + [1991,1.93], + [1992,1.89], + [1993,1.84], + [1994,1.83], + [1995,1.8], + [1996,1.79], + [1997,1.76], + [1998,1.73], + [1999,1.75], + [2000,1.89], + [2001,1.84], + [2002,1.82], + [2003,1.87], + [2004,1.9], + [2005,1.89], + [2006,1.92], + [2007,2.04], + [2008,2.05], + [2009,1.96] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-black-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-black-rate.json new file mode 100644 index 0000000..e53f1b7 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-black-rate.json @@ -0,0 +1,43 @@ +{ + "metadata" : { + "name" : "Black Fertility Rate", + "description" : "Black children born per adult woman.", + "units" : "children/woman", + "year" : "1989-2009", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Demographic_history_of_the_United_States" + ] + }, + "data" : [ + ["year","us.fertility.black.rate"], + [1989,2.42], + [1990,2.55], + [1991,2.53], + [1992,2.48], + [1993,2.41], + [1994,2.31], + [1995,2.19], + [1996,2.14], + [1997,2.14], + [1998,2.16], + [1999,2.13], + [2000,2.18], + [2001,2.1], + [2002,2.05], + [2003,2.03], + [2004,2.02], + [2005,2.02], + [2006,2.12], + [2007,2.13], + [2008,2.11], + [2009,2.03] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-general-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-general-rate.json new file mode 100644 index 0000000..c401232 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-general-rate.json @@ -0,0 +1,132 @@ +{ + "metadata" : { + "name" : "General Fertility Rate", + "description" : "Live births per 1,000 fertile women aged 15-44.", + "units" : "births/1k women 15-44 years", + "year" : "1909-2018", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://data.cdc.gov/NCHS/NCHS-Births-and-General-Fertility-Rates-United-Sta/e6fc-ccez" + ] + }, + "data" : [ + ["year","us.fertility.general.rate"], + [1909,126.8], + [1910,126.8], + [1911,126.3], + [1912,125.8], + [1913,124.7], + [1914,126.6], + [1915,125], + [1916,123.4], + [1917,121], + [1918,119.8], + [1919,111.2], + [1920,117.9], + [1921,119.8], + [1922,111.2], + [1923,110.5], + [1924,110.9], + [1925,106.6], + [1926,102.6], + [1927,99.8], + [1928,93.8], + [1929,89.3], + [1930,89.2], + [1931,84.6], + [1932,81.7], + [1933,76.3], + [1934,78.5], + [1935,77.2], + [1936,75.8], + [1937,77.1], + [1938,79.1], + [1939,77.6], + [1940,79.9], + [1941,83.4], + [1942,91.5], + [1943,94.3], + [1944,88.8], + [1945,85.9], + [1946,101.9], + [1947,113.3], + [1948,107.3], + [1949,107.1], + [1950,106.2], + [1951,111.5], + [1952,113.9], + [1953,115.2], + [1954,118.1], + [1955,118.3], + [1956,121.2], + [1957,122.9], + [1958,120.2], + [1959,118.8], + [1960,118], + [1961,117.1], + [1962,112], + [1963,108.3], + [1964,104.7], + [1965,96.3], + [1966,90.8], + [1967,87.2], + [1968,85.2], + [1969,86.1], + [1970,87.9], + [1971,81.6], + [1972,73.1], + [1973,68.8], + [1974,67.8], + [1975,66], + [1976,65], + [1977,66.8], + [1978,65.5], + [1979,67.2], + [1980,68.4], + [1981,67.3], + [1982,67.3], + [1983,65.7], + [1984,65.5], + [1985,66.3], + [1986,65.4], + [1987,65.8], + [1988,67.3], + [1989,69.2], + [1990,70.9], + [1991,69.3], + [1992,68.4], + [1993,67], + [1994,65.9], + [1995,64.6], + [1996,64.1], + [1997,63.6], + [1998,64.3], + [1999,64.4], + [2000,65.9], + [2001,65.1], + [2002,65], + [2003,66.1], + [2004,66.4], + [2005,66.7], + [2006,68.6], + [2007,69.3], + [2008,68.1], + [2009,66.2], + [2010,64.1], + [2011,63.2], + [2012,63], + [2013,62.5], + [2014,62.9], + [2015,62.5], + [2016,62], + [2017,60.3], + [2018,59.1] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-hispanic-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-hispanic-rate.json new file mode 100644 index 0000000..db499b8 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-hispanic-rate.json @@ -0,0 +1,43 @@ +{ + "metadata" : { + "name" : "Hispanic Fertility Rate", + "description" : "Hispanic children born per adult woman.", + "units" : "children/woman", + "year" : "1989-2009", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Demographic_history_of_the_United_States" + ] + }, + "data" : [ + ["year","us.fertility.hispanic.rate"], + [1989,2.9], + [1990,2.96], + [1991,2.96], + [1992,2.96], + [1993,2.89], + [1994,2.84], + [1995,2.8], + [1996,2.77], + [1997,2.68], + [1998,2.65], + [1999,2.65], + [2000,2.73], + [2001,2.75], + [2002,2.72], + [2003,2.79], + [2004,2.82], + [2005,2.89], + [2006,2.96], + [2007,3], + [2008,2.91], + [2009,2.73] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-native-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-native-rate.json new file mode 100644 index 0000000..b5dc349 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-native-rate.json @@ -0,0 +1,43 @@ +{ + "metadata" : { + "name" : "Native American Fertility Rate", + "description" : "Native American children born per adult woman.", + "units" : "children/woman", + "year" : "1989-2009", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Demographic_history_of_the_United_States" + ] + }, + "data" : [ + ["year","us.fertility.native.rate"], + [1989,2.25], + [1990,2.18], + [1991,2.14], + [1992,2.14], + [1993,2.05], + [1994,1.95], + [1995,1.88], + [1996,1.86], + [1997,1.83], + [1998,1.85], + [1999,1.78], + [2000,1.77], + [2001,1.75], + [2002,1.74], + [2003,1.73], + [2004,1.73], + [2005,1.75], + [2006,1.83], + [2007,1.87], + [2008,1.84], + [2009,1.78] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-rate.json new file mode 100644 index 0000000..8583367 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-rate.json @@ -0,0 +1,96 @@ +{ + "metadata" : { + "name" : "Fertility Rate", + "description" : "Fertility rate as births per-woman per-year in the United States.", + "units" : "births/woman", + "year" : "1950-2023", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility"], + "authors" : [ + "United Nations World Population Prospects" + ], + "sources" : [ + "https://www.macrotrends.net/countries/USA/united-states/fertility-rate" + ] + }, + "data" : [ + ["year","us.fertility.rate"], + [1950,3.148], + [1951,3.203], + [1952,3.257], + [1953,3.311], + [1954,3.365], + [1955,3.419], + [1956,3.474], + [1957,3.528], + [1958,3.582], + [1959,3.512], + [1960,3.443], + [1961,3.373], + [1962,3.304], + [1963,3.234], + [1964,3.096], + [1965,2.958], + [1966,2.819], + [1967,2.681], + [1968,2.543], + [1969,2.44], + [1970,2.337], + [1971,2.235], + [1972,2.132], + [1973,2.029], + [1974,1.978], + [1975,1.926], + [1976,1.875], + [1977,1.823], + [1978,1.772], + [1979,1.778], + [1980,1.785], + [1981,1.791], + [1982,1.798], + [1983,1.804], + [1984,1.826], + [1985,1.848], + [1986,1.871], + [1987,1.893], + [1988,1.915], + [1989,1.938], + [1990,1.961], + [1991,1.984], + [1992,2.007], + [1993,2.03], + [1994,2.023], + [1995,2.016], + [1996,2.01], + [1997,2.003], + [1998,1.996], + [1999,2.005], + [2000,2.014], + [2001,2.024], + [2002,2.033], + [2003,2.042], + [2004,2.045], + [2005,2.047], + [2006,2.05], + [2007,2.052], + [2008,2.055], + [2009,2.019], + [2010,1.983], + [2011,1.947], + [2012,1.911], + [2013,1.875], + [2014,1.855], + [2015,1.835], + [2016,1.816], + [2017,1.796], + [2018,1.776], + [2019,1.778], + [2020,1.779], + [2021,1.781], + [2022,1.782], + [2023,1.784] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-total-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-total-rate.json new file mode 100644 index 0000000..bfc3289 --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-total-rate.json @@ -0,0 +1,107 @@ +{ + "metadata" : { + "name" : "Total Fertility Rate", + "description" : "Children born per adult woman.", + "units" : "children/woman", + "year" : "1940-2023", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.macrotrends.net/countries/USA/united-states/fertility-rate", + "https://en.wikipedia.org/wiki/Demographic_history_of_the_United_States" + ] + }, + "data" : [ + ["year","us.fertility.total.rate"], + [1940,2.3], + [1941,2.4], + [1942,2.62], + [1943,2.72], + [1944,2.58], + [1945,2.49], + [1946,2.94], + [1947,3.27], + [1948,3.11], + [1949,3.11], + [1950,3.148], + [1951,3.203], + [1952,3.257], + [1953,3.311], + [1954,3.365], + [1955,3.419], + [1956,3.474], + [1957,3.528], + [1958,3.582], + [1959,3.512], + [1960,3.443], + [1961,3.373], + [1962,3.304], + [1963,3.234], + [1964,3.096], + [1965,2.958], + [1966,2.819], + [1967,2.681], + [1968,2.543], + [1969,2.44], + [1970,2.337], + [1971,2.235], + [1972,2.132], + [1973,2.029], + [1974,1.978], + [1975,1.926], + [1976,1.875], + [1977,1.823], + [1978,1.772], + [1979,1.778], + [1980,1.785], + [1981,1.791], + [1982,1.798], + [1983,1.804], + [1984,1.826], + [1985,1.848], + [1986,1.871], + [1987,1.893], + [1988,1.915], + [1989,1.938], + [1990,1.961], + [1991,1.984], + [1992,2.007], + [1993,2.03], + [1994,2.023], + [1995,2.016], + [1996,2.01], + [1997,2.003], + [1998,1.996], + [1999,2.005], + [2000,2.014], + [2001,2.024], + [2002,2.033], + [2003,2.042], + [2004,2.045], + [2005,2.047], + [2006,2.05], + [2007,2.052], + [2008,2.055], + [2009,2.019], + [2010,1.983], + [2011,1.947], + [2012,1.911], + [2013,1.875], + [2014,1.855], + [2015,1.835], + [2016,1.816], + [2017,1.796], + [2018,1.776], + [2019,1.778], + [2020,1.779], + [2021,1.781], + [2022,1.782], + [2023,1.784] + ] +} diff --git a/data/historical/united-states/demographics/fertility/us-fertility-white-rate.json b/data/historical/united-states/demographics/fertility/us-fertility-white-rate.json new file mode 100644 index 0000000..e6d8a9e --- /dev/null +++ b/data/historical/united-states/demographics/fertility/us-fertility-white-rate.json @@ -0,0 +1,43 @@ +{ + "metadata" : { + "name" : "White Fertility Rate", + "description" : "White children born per adult woman.", + "units" : "children/woman", + "year" : "1989-2009", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","fertility","births","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Demographic_history_of_the_United_States" + ] + }, + "data" : [ + ["year","us.fertility.white.rate"], + [1989,1.77], + [1990,1.85], + [1991,1.82], + [1992,1.8], + [1993,1.79], + [1994,1.78], + [1995,1.78], + [1996,1.78], + [1997,1.79], + [1998,1.83], + [1999,1.84], + [2000,1.87], + [2001,1.84], + [2002,1.83], + [2003,1.86], + [2004,1.85], + [2005,1.84], + [2006,1.86], + [2007,1.87], + [2008,1.83], + [2009,1.78] + ] +} diff --git a/data/historical/united-states/demographics/us-population.json b/data/historical/united-states/demographics/us-population.json new file mode 100644 index 0000000..eea9ca1 --- /dev/null +++ b/data/historical/united-states/demographics/us-population.json @@ -0,0 +1,133 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Total number of people.", + "units" : "people", + "year" : "1960-2019", + "notes" : [ + "The census numbers don't include Native Americans during 1610, and then again after 1860." + ], + "type" : "historical", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["historical","us","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://people.sc.fsu.edu/~jburkardt/datasets/time_series/us_population_1900s_original.txt", + "https://en.wikipedia.org/wiki/Demographic_history_of_the_United_States" + ] + }, + "data" : [ + ["year","us.population"], + [1610,350], + [1620,2302], + [1630,4646], + [1640,26634], + [1650,50368], + [1660,75058], + [1670,111935], + [1680,151507], + [1690,210372], + [1700,250888], + [1710,331711], + [1720,466185], + [1730,629445], + [1740,905563], + [1750,1170760], + [1760,1593625], + [1770,2148076], + [1780,2780369], + [1790,3929214], + [1800,5308483], + [1810,7239881], + [1820,9638453], + [1830,12866020], + [1840,17069453], + [1850,23191876], + [1860,31443321], + [1870,38558371], + [1880,50189209], + [1890,62979766], + [1900,76212168], + [1910,92228496], + [1920,106021537], + [1930,123202624], + [1940,132164569], + [1950,148281550], + [1951,150598453], + [1952,152941727], + [1953,155451199], + [1954,158205873], + [1955,161136449], + [1956,164063411], + [1957,166949120], + [1958,170147101], + [1959,173324608], + [1960,176188578], + [1961,179087278], + [1962,181917809], + [1963,184649873], + [1964,187277378], + [1965,189703283], + [1966,191830975], + [1967,193782438], + [1968,195743427], + [1969,197859329], + [1970,200328340], + [1971,202907917], + [1972,205238390], + [1973,207314764], + [1974,209277968], + [1975,211274535], + [1976,213270022], + [1977,215437405], + [1978,217881437], + [1979,220463115], + [1980,223140018], + [1981,225654008], + [1982,228001418], + [1983,230389964], + [1984,232766280], + [1985,235146182], + [1986,237512783], + [1987,239853168], + [1988,242287814], + [1989,244954094], + [1990,248083732], + [1991,251560189], + [1992,255175339], + [1993,258779753], + [1994,262273589], + [1995,265660556], + [1996,268984347], + [1997,272395438], + [1998,275835018], + [1999,279181581], + [2000,282398554], + [2001,285470493], + [2002,288350252], + [2003,291109820], + [2004,293947885], + [2005,296842670], + [2006,299753098], + [2007,302743399], + [2008,305694910], + [2009,308512035], + [2010,311182845], + [2011,313876608], + [2012,316651321], + [2013,319375166], + [2014,322033964], + [2015,324607776], + [2016,327210198], + [2017,329791231], + [2018,332140037], + [2019,334319671], + [2020,335942003], + [2021,336997624], + [2022,338289857], + [2023,339996563] + ] +} diff --git a/data/historical/united-states/economics/debt/us-debt-gdp.json b/data/historical/united-states/economics/debt/us-debt-gdp.json new file mode 100644 index 0000000..577ebd1 --- /dev/null +++ b/data/historical/united-states/economics/debt/us-debt-gdp.json @@ -0,0 +1,116 @@ +{ + "metadata" : { + "name" : "Government Debt vs GDP", + "description" : "Government debt expressed as a percentage of national GDP.", + "units" : "%", + "year" : "1929-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","debt"], + "authors" : [ + "United States Department of the Treasury" + ], + "sources" : [ + "https://www.thebalancemoney.com/national-debt-by-year-compared-to-gdp-and-major-events-3306287" + ] + }, + "data" : [ + ["year","us.debt.gdp"], + [1929,0.16], + [1930,0.17], + [1931,0.22], + [1932,0.34], + [1933,0.4], + [1934,0.4], + [1935,0.39], + [1936,0.4], + [1937,0.39], + [1938,0.42], + [1939,0.51], + [1940,0.49], + [1941,0.44], + [1942,0.48], + [1943,0.7], + [1944,0.91], + [1945,1.14], + [1946,1.19], + [1947,1.03], + [1948,0.92], + [1949,0.93], + [1950,0.86], + [1951,0.74], + [1952,0.71], + [1953,0.68], + [1954,0.69], + [1955,0.64], + [1956,0.61], + [1957,0.57], + [1958,0.58], + [1959,0.55], + [1960,0.54], + [1961,0.52], + [1962,0.5], + [1963,0.48], + [1964,0.46], + [1965,0.43], + [1966,0.4], + [1967,0.4], + [1968,0.39], + [1969,0.36], + [1970,0.35], + [1971,0.35], + [1972,0.34], + [1973,0.33], + [1974,0.31], + [1975,0.32], + [1976,0.33], + [1977,0.34], + [1978,0.33], + [1979,0.32], + [1980,0.32], + [1981,0.31], + [1982,0.34], + [1983,0.37], + [1984,0.38], + [1985,0.41], + [1986,0.46], + [1987,0.48], + [1988,0.5], + [1989,0.51], + [1990,0.54], + [1991,0.58], + [1992,0.61], + [1993,0.63], + [1994,0.64], + [1995,0.64], + [1996,0.64], + [1997,0.63], + [1998,0.6], + [1999,0.58], + [2000,0.55], + [2001,0.55], + [2002,0.57], + [2003,0.59], + [2004,0.6], + [2005,0.61], + [2006,0.61], + [2007,0.62], + [2008,0.68], + [2009,0.82], + [2010,0.9], + [2011,0.95], + [2012,0.99], + [2013,0.99], + [2014,1.01], + [2015,1], + [2016,1.05], + [2017,1.04], + [2018,1.05], + [2019,1.07], + [2020,1.29], + [2021,1.24], + [2022,1.23] + ] +} diff --git a/data/historical/united-states/economics/debt/us-debt-total.json b/data/historical/united-states/economics/debt/us-debt-total.json new file mode 100644 index 0000000..05ffe7f --- /dev/null +++ b/data/historical/united-states/economics/debt/us-debt-total.json @@ -0,0 +1,116 @@ +{ + "metadata" : { + "name" : "Total Government Debt", + "description" : "Total government debt in USD.", + "units" : "$", + "year" : "1929-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","debt"], + "authors" : [ + "United States Department of the Treasury" + ], + "sources" : [ + "https://www.thebalancemoney.com/national-debt-by-year-compared-to-gdp-and-major-events-3306287" + ] + }, + "data" : [ + ["year","us.debt.total"], + [1929,17000000000], + [1930,16000000000], + [1931,17000000000], + [1932,20000000000], + [1933,23000000000], + [1934,27000000000], + [1935,29000000000], + [1936,34000000000], + [1937,36000000000], + [1938,37000000000], + [1939,40000000000], + [1940,43000000000], + [1941,49000000000], + [1942,72000000000], + [1943,137000000000], + [1944,201000000000], + [1945,259000000000], + [1946,269000000000], + [1947,258000000000], + [1948,252000000000], + [1949,253000000000], + [1950,257000000000], + [1951,255000000000], + [1952,259000000000], + [1953,266000000000], + [1954,271000000000], + [1955,274000000000], + [1956,273000000000], + [1957,271000000000], + [1958,276000000000], + [1959,285000000000], + [1960,286000000000], + [1961,289000000000], + [1962,298000000000], + [1963,306000000000], + [1964,312000000000], + [1965,317000000000], + [1966,320000000000], + [1967,326000000000], + [1968,348000000000], + [1969,354000000000], + [1970,371000000000], + [1971,398000000000], + [1972,427000000000], + [1973,458000000000], + [1974,475000000000], + [1975,533000000000], + [1976,620000000000], + [1977,699000000000], + [1978,772000000000], + [1979,827000000000], + [1980,908000000000], + [1981,998000000000], + [1982,1142000000000], + [1983,1377000000000], + [1984,1572000000000], + [1985,1823000000000], + [1986,2125000000000], + [1987,2350000000000], + [1988,2602000000000], + [1989,2857000000000], + [1990,3233000000000], + [1991,3665000000000], + [1992,4065000000000], + [1993,4411000000000], + [1994,4693000000000], + [1995,4974000000000], + [1996,5225000000000], + [1997,5413000000000], + [1998,5526000000000], + [1999,5656000000000], + [2000,5674000000000], + [2001,5807000000000], + [2002,6228000000000], + [2003,6783000000000], + [2004,7379000000000], + [2005,7933000000000], + [2006,8507000000000], + [2007,9008000000000], + [2008,10025000000000], + [2009,11910000000000], + [2010,13562000000000], + [2011,14790000000000], + [2012,16066000000000], + [2013,16738000000000], + [2014,17824000000000], + [2015,18151000000000], + [2016,19573000000000], + [2017,20245000000000], + [2018,21516000000000], + [2019,22719000000000], + [2020,27748000000000], + [2021,29617000000000], + [2022,30824000000000] + ] +} diff --git a/data/historical/united-states/economics/gdp/us-gdp.json b/data/historical/united-states/economics/gdp/us-gdp.json new file mode 100644 index 0000000..d67e5f1 --- /dev/null +++ b/data/historical/united-states/economics/gdp/us-gdp.json @@ -0,0 +1,115 @@ +{ + "metadata" : { + "name" : "Gross Domestic Products", + "description" : "Gross Domestic Product.", + "units" : "$", + "year" : "1929-2023", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","gdp"], + "authors" : [ + "United States Bureau of Economic Analysis" + ], + "sources" : [ + "https://usafacts.org/data/topics/economy/economic-indicators/gdp/gross-domestic-product/" + ] + }, + "data" : [ + ["year","us.gdp"], + [2021,23000000000000], + [2020,20890000000000], + [2019,21370000000000], + [2018,20530000000000], + [2017,19480000000000], + [2016,18700000000000], + [2015,18210000000000], + [2014,17550000000000], + [2013,16840000000000], + [2012,16250000000000], + [2011,15600000000000], + [2010,15050000000000], + [2009,14480000000000], + [2008,14710000000000], + [2007,14450000000000], + [2006,13810000000000], + [2005,13040000000000], + [2004,12210000000000], + [2003,11460000000000], + [2002,10940000000000], + [2001,10580000000000], + [2000,10250000000000], + [1999,9630000000000], + [1998,9060000000000], + [1997,8580000000000], + [1996,8070000000000], + [1995,7640000000000], + [1994,7290000000000], + [1993,6860000000000], + [1992,6520000000000], + [1991,6160000000000], + [1990,5960000000000], + [1989,5640000000000], + [1988,5240000000000], + [1987,4860000000000], + [1986,4580000000000], + [1985,4340000000000], + [1984,4040000000000], + [1983,3630000000000], + [1982,3340000000000], + [1981,3210000000000], + [1980,2860000000000], + [1979,2630000000000], + [1978,2350000000000], + [1977,2080000000000], + [1976,1870000000000], + [1975,1680000000000], + [1974,1550000000000], + [1973,1430000000000], + [1972,1280000000000], + [1971,1160000000000], + [1970,1070000000000], + [1969,1020000000000], + [1968,940700000000], + [1967,860000000000], + [1966,813400000000], + [1965,742300000000], + [1964,684500000000], + [1963,637500000000], + [1962,603900000000], + [1961,562200000000], + [1960,542400000000], + [1959,521700000000], + [1958,481200000000], + [1957,474000000000], + [1956,449400000000], + [1955,425500000000], + [1954,390500000000], + [1953,389200000000], + [1952,367300000000], + [1951,346900000000], + [1950,299800000000], + [1949,272500000000], + [1948,274500000000], + [1947,249600000000], + [1946,227500000000], + [1945,228000000000], + [1944,224400000000], + [1943,203100000000], + [1942,166000000000], + [1941,129300000000], + [1940,102900000000], + [1939,93400000000], + [1938,87400000000], + [1937,93000000000], + [1936,84800000000], + [1935,74200000000], + [1934,66800000000], + [1933,57200000000], + [1932,59500000000], + [1931,77400000000], + [1930,92200000000], + [1929,104600000000] + ] +} diff --git a/data/historical/united-states/economics/inflation/us-inflation-cpi-adjustment-2023.json b/data/historical/united-states/economics/inflation/us-inflation-cpi-adjustment-2023.json new file mode 100644 index 0000000..bc1edd7 --- /dev/null +++ b/data/historical/united-states/economics/inflation/us-inflation-cpi-adjustment-2023.json @@ -0,0 +1,132 @@ +{ + "metadata" : { + "name" : "Consumper Price Index (CPI) Inflation Adjustment (2023 Dollars)", + "description" : "Percentage USD dollar inlation cumulated backwards per-year calculated by the Consumer Price Index (CPI)", + "units" : "%", + "year" : "1914-2023", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","inflation","cpi"], + "authors" : [ + "United States Bureau of Labor Statistics" + ], + "sources" : [ + "https://www.calculator.net/inflation-calculator.html" + ] + }, + "data" : [ + ["year","us.inflation.cpi.adjustment.2023"], + [1914,29.96012637], + [1915,29.56105217], + [1916,29.29156973], + [1917,27.21253226], + [1918,23.10062162], + [1919,19.7003425], + [1920,17.08467826], + [1921,14.74087857], + [1922,16.53491707], + [1923,17.60907036], + [1924,17.29771155], + [1925,17.22022056], + [1926,16.81005521], + [1927,16.6535122], + [1928,16.97951896], + [1929,17.1770551], + [1930,17.1770551], + [1931,17.64645068], + [1932,19.37892673], + [1933,21.60415466], + [1934,22.76278018], + [1935,21.9908996], + [1936,21.44198479], + [1937,21.22128344], + [1938,20.45819285], + [1939,20.87783738], + [1940,21.15282409], + [1941,20.99952754], + [1942,19.97862006], + [1943,18.00362265], + [1944,16.98454967], + [1945,16.71049751], + [1946,16.33958885], + [1947,15.06925099], + [1948,13.14369907], + [1949,12.19946081], + [1950,12.31646725], + [1951,12.18366529], + [1952,11.29372015], + [1953,11.0408839], + [1954,10.95108501], + [1955,10.91615332], + [1956,10.94680437], + [1957,10.78290423], + [1958,10.43439542], + [1959,10.15710641], + [1960,10.0555454], + [1961,9.910847038], + [1962,9.805923655], + [1963,9.68964788], + [1964,9.570967878], + [1965,9.450007779], + [1966,9.30210432], + [1967,9.030292515], + [1968,8.786040587], + [1969,8.426240133], + [1970,7.989986851], + [1971,7.54911834], + [1972,7.237889108], + [1973,7.008704472], + [1974,6.602020038], + [1975,5.94615873], + [1976,5.445200302], + [1977,5.149125581], + [1978,4.834859701], + [1979,4.492528992], + [1980,4.039317561], + [1981,3.55636341], + [1982,3.222803272], + [1983,3.035798108], + [1984,2.941094854], + [1985,2.819841662], + [1986,2.723169157], + [1987,2.672131447], + [1988,2.577784533], + [1989,2.476733794], + [1990,2.362619283], + [1991,2.241786965], + [1992,2.15039517], + [1993,2.087154392], + [1994,2.027150731], + [1995,1.975587887], + [1996,1.921591175], + [1997,1.866891261], + [1998,1.824204867], + [1999,1.796361267], + [2000,1.757864045], + [2001,1.700390835], + [2002,1.653594121], + [2003,1.627713477], + [2004,1.591584508], + [2005,1.550043347], + [2006,1.499219796], + [2007,1.452169504], + [2008,1.411929513], + [2009,1.359585472], + [2010,1.364223833], + [2011,1.342211563], + [2012,1.301096901], + [2013,1.274710396], + [2014,1.256243615], + [2015,1.236216901], + [2016,1.234735219], + [2017,1.219371142], + [2018,1.193940216], + [2019,1.165501968], + [2020,1.144781424], + [2021,1.13076], + [2022,1.08], + [2023,1] + ] +} diff --git a/data/historical/united-states/economics/inflation/us-inflation-cpi-cumulative.json b/data/historical/united-states/economics/inflation/us-inflation-cpi-cumulative.json new file mode 100644 index 0000000..86d5a5a --- /dev/null +++ b/data/historical/united-states/economics/inflation/us-inflation-cpi-cumulative.json @@ -0,0 +1,132 @@ +{ + "metadata" : { + "name" : "Cumulative Consumper Price Index (CPI) Inflation", + "description" : "Percentage USD dollar inlation cumulated per-year calculated by the Consumer Price Index (CPI)", + "units" : "%", + "year" : "1913-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","inflation","cpi"], + "authors" : [ + "United States Bureau of Labor Statistics" + ], + "sources" : [ + "https://www.calculator.net/inflation-calculator.html" + ] + }, + "data" : [ + ["year","us.inflation.cpi.cumulative"], + [2013,1], + [1914,1.0135], + [1915,1.0228242], + [1916,1.100967969], + [1917,1.296940267], + [1918,1.520792157], + [1919,1.753625437], + [1920,2.032451881], + [1921,1.811930852], + [1922,1.70140307], + [1923,1.732028325], + [1924,1.739822453], + [1925,1.782274121], + [1926,1.799027497], + [1927,1.76448617], + [1928,1.744194579], + [1929,1.744194579], + [1930,1.697799003], + [1931,1.546015772], + [1932,1.386776147], + [1933,1.316189242], + [1934,1.362387484], + [1935,1.397264603], + [1936,1.411796155], + [1937,1.464456152], + [1938,1.435020583], + [1939,1.416365316], + [1940,1.426704783], + [1941,1.499609397], + [1942,1.664116548], + [1943,1.763963541], + [1944,1.792892543], + [1945,1.833591203], + [1946,1.988162942], + [1947,2.279428813], + [1948,2.455856603], + [1949,2.432525965], + [1950,2.459040498], + [1951,2.652812889], + [1952,2.713562305], + [1953,2.735813516], + [1954,2.744568119], + [1955,2.736883328], + [1956,2.778483955], + [1957,2.871285319], + [1958,2.949671408], + [1959,2.979463089], + [1960,3.02296325], + [1961,3.055308957], + [1962,3.091972665], + [1963,3.130313126], + [1964,3.170381134], + [1965,3.220790194], + [1966,3.317735978], + [1967,3.409969039], + [1968,3.555574717], + [1969,3.749709096], + [1970,3.968692107], + [1971,4.139345868], + [1972,4.274702478], + [1973,4.53802415], + [1974,5.038568214], + [1975,5.50211649], + [1976,5.818488188], + [1977,6.19668992], + [1978,6.668877692], + [1979,7.417125769], + [1980,8.424371449], + [1981,9.296293894], + [1982,9.868945598], + [1983,10.18672565], + [1984,10.62475485], + [1985,11.00193365], + [1986,11.21207058], + [1987,11.62243236], + [1988,12.0966276], + [1989,12.68089472], + [1990,13.36439494], + [1991,13.93238173], + [1992,14.35453289], + [1993,14.77942707], + [1994,15.16517011], + [1995,15.59131139], + [1996,16.04813682], + [1997,16.42366322], + [1998,16.67823], + [1999,17.04348323], + [2000,17.61955297], + [2001,18.11818632], + [2002,18.40626548], + [2003,18.8240877], + [2004,19.32857326], + [2005,19.98381189], + [2006,20.63128739], + [2007,21.21927908], + [2008,22.03622133], + [2009,21.96129818], + [2010,22.32146347], + [2011,23.02682171], + [2012,23.50347692], + [2013,23.84897803], + [2014,24.23533148], + [2015,24.26441387], + [2016,24.57014549], + [2017,25.09348959], + [2018,25.70577073], + [2019,26.17104518], + [2020,26.49556614], + [2021,27.74085775], + [2022,29.96012637] + ] +} diff --git a/data/historical/united-states/economics/inflation/us-inflation-cpi.json b/data/historical/united-states/economics/inflation/us-inflation-cpi.json new file mode 100644 index 0000000..f63b68f --- /dev/null +++ b/data/historical/united-states/economics/inflation/us-inflation-cpi.json @@ -0,0 +1,131 @@ +{ + "metadata" : { + "name" : "Consumper Price Index (CPI) Inflation", + "description" : "Percentage USD dollar inlation per-year calculated by the Consumer Price Index (CPI)", + "units" : "%", + "year" : "1914-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","inflation","cpi"], + "authors" : [ + "United States Bureau of Labor Statistics" + ], + "sources" : [ + "https://www.calculator.net/inflation-calculator.html" + ] + }, + "data" : [ + ["year","us.inflation.cpi"], + [1914,0.0135], + [1915,0.0092], + [1916,0.0764], + [1917,0.178], + [1918,0.1726], + [1919,0.1531], + [1920,0.159], + [1921,-0.1085], + [1922,-0.061], + [1923,0.018], + [1924,0.0045], + [1925,0.0244], + [1926,0.0094], + [1927,-0.0192], + [1928,-0.0115], + [1929,0], + [1930,-0.0266], + [1931,-0.0894], + [1932,-0.103], + [1933,-0.0509], + [1934,0.0351], + [1935,0.0256], + [1936,0.0104], + [1937,0.0373], + [1938,-0.0201], + [1939,-0.013], + [1940,0.0073], + [1941,0.0511], + [1942,0.1097], + [1943,0.06], + [1944,0.0164], + [1945,0.0227], + [1946,0.0843], + [1947,0.1465], + [1948,0.0774], + [1949,-0.0095], + [1950,0.0109], + [1951,0.0788], + [1952,0.0229], + [1953,0.0082], + [1954,0.0032], + [1955,-0.0028], + [1956,0.0152], + [1957,0.0334], + [1958,0.0273], + [1959,0.0101], + [1960,0.0146], + [1961,0.0107], + [1962,0.012], + [1963,0.0124], + [1964,0.0128], + [1965,0.0159], + [1966,0.0301], + [1967,0.0278], + [1968,0.0427], + [1969,0.0546], + [1970,0.0584], + [1971,0.043], + [1972,0.0327], + [1973,0.0616], + [1974,0.1103], + [1975,0.092], + [1976,0.0575], + [1977,0.065], + [1978,0.0762], + [1979,0.1122], + [1980,0.1358], + [1981,0.1035], + [1982,0.0616], + [1983,0.0322], + [1984,0.043], + [1985,0.0355], + [1986,0.0191], + [1987,0.0366], + [1988,0.0408], + [1989,0.0483], + [1990,0.0539], + [1991,0.0425], + [1992,0.0303], + [1993,0.0296], + [1994,0.0261], + [1995,0.0281], + [1996,0.0293], + [1997,0.0234], + [1998,0.0155], + [1999,0.0219], + [2000,0.0338], + [2001,0.0283], + [2002,0.0159], + [2003,0.0227], + [2004,0.0268], + [2005,0.0339], + [2006,0.0324], + [2007,0.0285], + [2008,0.0385], + [2009,-0.0034], + [2010,0.0164], + [2011,0.0316], + [2012,0.0207], + [2013,0.0147], + [2014,0.0162], + [2015,0.0012], + [2016,0.0126], + [2017,0.0213], + [2018,0.0244], + [2019,0.0181], + [2020,0.0124], + [2021,0.047], + [2022,0.08] + ] +} diff --git a/data/historical/united-states/economics/welfare/us-welfare-medicade-perpoverty.json b/data/historical/united-states/economics/welfare/us-welfare-medicade-perpoverty.json new file mode 100644 index 0000000..9a54faf --- /dev/null +++ b/data/historical/united-states/economics/welfare/us-welfare-medicade-perpoverty.json @@ -0,0 +1,81 @@ +{ + "metadata" : { + "name" : "Medicaid Welfare Spending Per-Person In Poverty", + "description" : "Government medicaid welfare spending/cost per-person in poverty (inflation adjusted).", + "units" : "$", + "year" : "1960-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","welfare"], + "authors" : [ + "United States Department of the Treasury" + ], + "sources" : [ + "https://www.federalsafetynet.com/poverty-and-spending-over-the-years.html" + ] + }, + "data" : [ + ["year","us.welfare.medicaid.perpoverty"], + [1962,19], + [1963,41], + [1964,41], + [1965,65], + [1966,197], + [1967,294], + [1968,464], + [1969,596], + [1970,634], + [1971,760], + [1972,1044], + [1973,1046], + [1974,1178], + [1975,1153], + [1976,1428], + [1977,1563], + [1978,1595], + [1979,1586], + [1980,1434], + [1981,1446], + [1982,1306], + [1983,1334], + [1984,1419], + [1985,1579], + [1986,1745], + [1987,1859], + [1988,2026], + [1989,2218], + [1990,2357], + [1991,2733], + [1992,3233], + [1993,3415], + [1994,3733], + [1995,4139], + [1996,4149], + [1997,4333], + [1998,4670], + [1999,5131], + [2000,5625], + [2001,5763], + [2002,6162], + [2003,6326], + [2004,6535], + [2005,6534], + [2006,6375], + [2007,6399], + [2008,6094], + [2009,6964], + [2010,7004], + [2011,6859], + [2012,6085], + [2013,6384], + [2014,7072], + [2015,8863], + [2016,9781], + [2017,9967], + [2018,10517], + [2019,12197], + [2020,12310] + ] +} diff --git a/data/historical/united-states/economics/welfare/us-welfare-poverty-perpoverty.json b/data/historical/united-states/economics/welfare/us-welfare-poverty-perpoverty.json new file mode 100644 index 0000000..8e8dffc --- /dev/null +++ b/data/historical/united-states/economics/welfare/us-welfare-poverty-perpoverty.json @@ -0,0 +1,83 @@ +{ + "metadata" : { + "name" : "Anti-Poverty Welfare Spending Per-Person In Poverty", + "description" : "Government anti-poverty welfare spending/cost per-person in poverty (inflation adjusted).", + "units" : "$", + "year" : "1960-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","welfare"], + "authors" : [ + "United States Department of the Treasury" + ], + "sources" : [ + "https://www.federalsafetynet.com/poverty-and-spending-over-the-years.html" + ] + }, + "data" : [ + ["year","us.welfare.poverty.perpoverty"], + [1960,462], + [1961,498], + [1962,545], + [1963,651], + [1964,690], + [1965,803], + [1966,1106], + [1967,1223], + [1968,1597], + [1969,1789], + [1970,1831], + [1971,2571], + [1972,3131], + [1973,3182], + [1974,3352], + [1975,4204], + [1976,4800], + [1977,4972], + [1978,5187], + [1979,4950], + [1980,4980], + [1981,4742], + [1982,3882], + [1983,4072], + [1984,4159], + [1985,5267], + [1986,4544], + [1987,4525], + [1988,4837], + [1989,4972], + [1990,4747], + [1991,4976], + [1992,5265], + [1993,5434], + [1994,6039], + [1995,6617], + [1996,6493], + [1997,6494], + [1998,6856], + [1999,7320], + [2000,7735], + [2001,7473], + [2002,7914], + [2003,8125], + [2004,7976], + [2005,8368], + [2006,8373], + [2007,8105], + [2008,8364], + [2009,8353], + [2010,8989], + [2011,9260], + [2012,8660], + [2013,8780], + [2014,8462], + [2015,9154], + [2016,9648], + [2017,9424], + [2018,9428], + [2019,10827], + [2020,10425] + ] +} diff --git a/data/historical/united-states/economics/welfare/us-welfare-total-percapita.json b/data/historical/united-states/economics/welfare/us-welfare-total-percapita.json new file mode 100644 index 0000000..e30703f --- /dev/null +++ b/data/historical/united-states/economics/welfare/us-welfare-total-percapita.json @@ -0,0 +1,83 @@ +{ + "metadata" : { + "name" : "Total Welfare Spending Per-Capita", + "description" : "Total government welfare spending/cost per-US Citizen (inflation adjusted).", + "units" : "$", + "year" : "1960-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","welfare"], + "authors" : [ + "United States Department of the Treasury" + ], + "sources" : [ + "https://www.federalsafetynet.com/poverty-and-spending-over-the-years.html" + ] + }, + "data" : [ + ["year","us.welfare.total.percapita"], + [1960,103], + [1961,109], + [1962,114], + [1963,127], + [1964,131], + [1965,139], + [1966,163], + [1967,174], + [1968,205], + [1969,216], + [1970,230], + [1971,321], + [1972,372], + [1973,352], + [1974,374], + [1975,516], + [1976,565], + [1977,575], + [1978,589], + [1979,579], + [1980,648], + [1981,664], + [1982,582], + [1983,620], + [1984,599], + [1985,736], + [1986,617], + [1987,605], + [1988,631], + [1989,637], + [1990,641], + [1991,707], + [1992,780], + [1993,823], + [1994,879], + [1995,914], + [1996,891], + [1997,860], + [1998,872], + [1999,869], + [2000,876], + [2001,874], + [2002,959], + [2003,1013], + [2004,1017], + [2005,1055], + [2006,1030], + [2007,1012], + [2008,1107], + [2009,1198], + [2010,1361], + [2011,1388], + [2012,1296], + [2013,1297], + [2014,1250], + [2015,1240], + [2016,1225], + [2017,1160], + [2018,1111], + [2019,1133], + [2020,1192] + ] +} diff --git a/data/historical/united-states/economics/welfare/us-welfare-total-perpoverty.json b/data/historical/united-states/economics/welfare/us-welfare-total-perpoverty.json new file mode 100644 index 0000000..caf5ee5 --- /dev/null +++ b/data/historical/united-states/economics/welfare/us-welfare-total-perpoverty.json @@ -0,0 +1,83 @@ +{ + "metadata" : { + "name" : "Total Welfare Spending Per-Person In Poverty", + "description" : "Total government welfare spending/cost per-person in poverty (inflation adjusted).", + "units" : "$", + "year" : "1960-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["historical","us","economics","welfare"], + "authors" : [ + "United States Department of the Treasury" + ], + "sources" : [ + "https://www.federalsafetynet.com/poverty-and-spending-over-the-years.html" + ] + }, + "data" : [ + ["year","us.welfare.total.perpoverty"], + [1960,462], + [1961,498], + [1962,565], + [1963,692], + [1964,731], + [1965,869], + [1966,1303], + [1967,1517], + [1968,2060], + [1969,2385], + [1970,2464], + [1971,3332], + [1972,4174], + [1973,4228], + [1974,4530], + [1975,5357], + [1976,6228], + [1977,6534], + [1978,6782], + [1979,6537], + [1980,6414], + [1981,6187], + [1982,5188], + [1983,5406], + [1984,5578], + [1985,6847], + [1986,6290], + [1987,6383], + [1988,6863], + [1989,7190], + [1990,7105], + [1991,7708], + [1992,8498], + [1993,8849], + [1994,9772], + [1995,10756], + [1996,10641], + [1997,10827], + [1998,11526], + [1999,12451], + [2000,13360], + [2001,13236], + [2002,14076], + [2003,14451], + [2004,14511], + [2005,14901], + [2006,14748], + [2007,14504], + [2008,14458], + [2009,15317], + [2010,15992], + [2011,16118], + [2012,14745], + [2013,15164], + [2014,15534], + [2015,18017], + [2016,19430], + [2017,19391], + [2018,19946], + [2019,23024], + [2020,22735] + ] +} diff --git a/data/historical/united-states/health/fertility/us-abortions-rate.json b/data/historical/united-states/health/fertility/us-abortions-rate.json new file mode 100644 index 0000000..0b589d9 --- /dev/null +++ b/data/historical/united-states/health/fertility/us-abortions-rate.json @@ -0,0 +1,71 @@ +{ + "metadata" : { + "name" : "Abortion Rate", + "description" : "Number of abortions per 1000 women aged 15-44.", + "units" : "abortions/1k women 15-44", + "year" : "1973-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","demographics","fertility","births","abortion"], + "authors" : [ + "The Guttmacher Institute" + ], + "sources" : [ + "https://onlinelibrary.wiley.com/doi/10.1363/psrh.12215", + "https://www.guttmacher.org/article/2022/06/long-term-decline-us-abortions-reverses-showing-rising-need-abortion-supreme-court" + ] + }, + "data" : [ + ["year","us.abortion.rate"], + [1973,16.3], + [1974,19.3], + [1975,21.7], + [1976,24.2], + [1977,26.4], + [1978,27.7], + [1979,28.8], + [1980,29.3], + [1981,29.3], + [1982,28.8], + [1983,28.5], + [1984,28.1], + [1985,28], + [1986,27.4], + [1987,26.9], + [1988,27.3], + [1989,26.8], + [1990,27.4], + [1991,26.3], + [1992,25.7], + [1993,25], + [1994,23.7], + [1995,22.5], + [1996,22.4], + [1997,21.9], + [1998,21.5], + [1999,21.4], + [2000,21.3], + [2001,20.9], + [2002,20.5], + [2003,20.2], + [2004,19.7], + [2005,19.4], + [2006,19.9], + [2007,19.5], + [2008,19.4], + [2009,18.5], + [2010,17.7], + [2011,16.9], + [2012,16.1], + [2013,15.2], + [2014,14.6], + [2015,14.2], + [2016,13.7], + [2017,13.5], + [2018,13.8], + [2019,14.2], + [2020,14.4] + ] +} diff --git a/data/historical/united-states/health/fertility/us-abortions-ratio.json b/data/historical/united-states/health/fertility/us-abortions-ratio.json new file mode 100644 index 0000000..64b2f3e --- /dev/null +++ b/data/historical/united-states/health/fertility/us-abortions-ratio.json @@ -0,0 +1,71 @@ +{ + "metadata" : { + "name" : "Abortion Ratio", + "description" : "Percentage of pregnancies that end in abortion.", + "units" : "%", + "year" : "1973-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","demographics","fertility","births","abortion"], + "authors" : [ + "The Guttmacher Institute" + ], + "sources" : [ + "https://onlinelibrary.wiley.com/doi/10.1363/psrh.12215", + "https://www.guttmacher.org/article/2022/06/long-term-decline-us-abortions-reverses-showing-rising-need-abortion-supreme-court" + ] + }, + "data" : [ + ["year","us.abortion.ratio"], + [1973,0.193], + [1974,0.22], + [1975,0.249], + [1976,0.265], + [1977,0.286], + [1978,0.292], + [1979,0.296], + [1980,0.3], + [1981,0.301], + [1982,0.3], + [1983,0.304], + [1984,0.297], + [1985,0.297], + [1986,0.294], + [1987,0.288], + [1988,0.286], + [1989,0.275], + [1990,0.28], + [1991,0.274], + [1992,0.275], + [1993,0.274], + [1994,0.266], + [1995,0.259], + [1996,0.259], + [1997,0.255], + [1998,0.251], + [1999,0.246], + [2000,0.245], + [2001,0.244], + [2002,0.238], + [2003,0.233], + [2004,0.229], + [2005,0.224], + [2006,0.229], + [2007,0.219], + [2008,0.225], + [2009,0.222], + [2010,0.217], + [2011,0.212], + [2012,0.204], + [2013,0.194], + [2014,0.188], + [2015,0.185], + [2016,0.183], + [2017,0.184], + [2018,0.184], + [2019,0.198], + [2020,0.206] + ] +} diff --git a/data/historical/united-states/health/fertility/us-abortions-total.json b/data/historical/united-states/health/fertility/us-abortions-total.json new file mode 100644 index 0000000..645856b --- /dev/null +++ b/data/historical/united-states/health/fertility/us-abortions-total.json @@ -0,0 +1,71 @@ +{ + "metadata" : { + "name" : "Abortions", + "description" : "Total number of reported legal abortions.", + "units" : "abortions", + "year" : "1973-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","demographics","fertility","births","abortion"], + "authors" : [ + "The Guttmacher Institute" + ], + "sources" : [ + "https://onlinelibrary.wiley.com/doi/10.1363/psrh.12215", + "https://www.guttmacher.org/article/2022/06/long-term-decline-us-abortions-reverses-showing-rising-need-abortion-supreme-court" + ] + }, + "data" : [ + ["year","us.abortion.total"], + [1973,744610], + [1974,898570], + [1975,1034170], + [1976,1179300], + [1977,1316700], + [1978,1409600], + [1979,1497670], + [1980,1553890], + [1981,1577340], + [1982,1573920], + [1983,1575000], + [1984,1577180], + [1985,1588550], + [1986,1574000], + [1987,1559110], + [1988,1590750], + [1989,1566900], + [1990,1608600], + [1991,1556510], + [1992,1528930], + [1993,1495000], + [1994,1423000], + [1995,1359440], + [1996,1360160], + [1997,1335000], + [1998,1319000], + [1999,1314780], + [2000,1312990], + [2001,1291000], + [2002,1269000], + [2003,1250000], + [2004,1222100], + [2005,1206200], + [2006,1242000], + [2007,1209640], + [2008,1212350], + [2009,1151600], + [2010,1102670], + [2011,1058490], + [2012,1011000], + [2013,958700], + [2014,926190], + [2015,899500], + [2016,874080], + [2017,862320], + [2018,885800], + [2019,916460], + [2020,930160] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-exobease-female.json b/data/historical/united-states/health/fitness/us-fitness-exobease-female.json new file mode 100644 index 0000000..c7ce8c6 --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-exobease-female.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Female Extreme/Morbid Obesity Rate", + "description" : "Percent of the female population who have a BMI above 40.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness","female","gender"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.exobese.female"], + ["1960–1962",1.4], + ["1971–1974",2], + ["1976–1980",2.2], + ["1988–1994",3.9], + ["1999–2000",6.2], + ["2001–2002",6.5], + ["2003–2004",6.9], + ["2005–2006",7.4], + ["2007–2008",7.3], + ["2009–2010",8.1], + ["2011–2012",8.3], + ["2013–2014",9.9] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-exobease-male.json b/data/historical/united-states/health/fitness/us-fitness-exobease-male.json new file mode 100644 index 0000000..c406b21 --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-exobease-male.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Male Extreme/Morbid Obesity Rate", + "description" : "Percent of the male population who have a BMI above 40.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness","male","gender"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.exobese.male"], + ["1960–1962",0.3], + ["1971–1974",0.6], + ["1976–1980",0.4], + ["1988–1994",1.7], + ["1999–2000",3.1], + ["2001–2002",3.6], + ["2003–2004",2.8], + ["2005–2006",4.2], + ["2007–2008",4.2], + ["2009–2010",4.4], + ["2011–2012",4.4], + ["2013–2014",5.5] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-exobease.json b/data/historical/united-states/health/fitness/us-fitness-exobease.json new file mode 100644 index 0000000..e5b11cc --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-exobease.json @@ -0,0 +1,37 @@ +{ + "metadata" : { + "name" : "Extreme/Morbid Obesity Rate", + "description" : "Percent of the population who have a BMI above 40.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.exobese"], + ["1960–1962",0.9], + ["1971–1974",1.3], + ["1976–1980",1.4], + ["1988–1994",2.8], + ["1999–2000",4.7], + ["2001–2002",5.1], + ["2003–2004",4.8], + ["2005–2006",5.9], + ["2007–2008",5.7], + ["2009–2010",6.3], + ["2011–2012",6.4], + ["2013–2014",7.7], + ["2015-2016",7.7], + ["2017-2018",9.2] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-obese-female.json b/data/historical/united-states/health/fitness/us-fitness-obese-female.json new file mode 100644 index 0000000..3007cc8 --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-obese-female.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Female Obesity Rate", + "description" : "Percent of the female population who have a BMI above 30.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness","female","gender"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.obese.female"], + ["1960–1962",15.8], + ["1971–1974",16.6], + ["1976–1980",17], + ["1988–1994",25.4], + ["1999–2000",33.4], + ["2001–2002",33.2], + ["2003–2004",33.2], + ["2005–2006",35.3], + ["2007–2008",35.4], + ["2009–2010",35.8], + ["2011–2012",36.1], + ["2013–2014",40.4] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-obese-male.json b/data/historical/united-states/health/fitness/us-fitness-obese-male.json new file mode 100644 index 0000000..4251a5b --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-obese-male.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Male Obesity Rate", + "description" : "Percent of the male population who have a BMI above 30.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness","male","gender"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["year.bin","us.fitness.obese.male"], + ["1960–1962",0.107], + ["1971–1974",0.121], + ["1976–1980",0.127], + ["1988–1994",0.202], + ["1999–2000",0.275], + ["2001–2002",0.277], + ["2003–2004",0.311], + ["2005–2006",0.333], + ["2007–2008",0.322], + ["2011–2012",0.335], + ["2009–2010",0.355], + ["2013–2014",0.35] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-obese.json b/data/historical/united-states/health/fitness/us-fitness-obese.json new file mode 100644 index 0000000..3b34d24 --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-obese.json @@ -0,0 +1,37 @@ +{ + "metadata" : { + "name" : "Obesity Rate", + "description" : "Percent of the population who have a BMI above 30.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.obese"], + ["1960–1962",13.4], + ["1971–1974",14.5], + ["1976–1980",15], + ["1988–1994",22.9], + ["1999–2000",30.5], + ["2001–2002",30.5], + ["2003–2004",32.2], + ["2005–2006",34.3], + ["2007–2008",33.7], + ["2009–2010",35.7], + ["2011–2012",34.9], + ["2013–2014",37.7], + ["2015-2016",39.6], + ["2017-2018",42.4] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-overweight-female.json b/data/historical/united-states/health/fitness/us-fitness-overweight-female.json new file mode 100644 index 0000000..363842d --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-overweight-female.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Female Overweight Rate", + "description" : "Percent of the female population who have a BMI above 25.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness","female","gender"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.overweight.female"], + ["1960–1962",24.7], + ["1971–1974",24.3], + ["1976–1980",24.9], + ["1988–1994",25.9], + ["1999–2000",28.6], + ["2001–2002",28.2], + ["2003–2004",28.6], + ["2005–2006",25.5], + ["2007–2008",28.6], + ["2009–2010",27.9], + ["2011–2012",29.7], + ["2013–2014",26.5] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-overweight-male.json b/data/historical/united-states/health/fitness/us-fitness-overweight-male.json new file mode 100644 index 0000000..b53f636 --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-overweight-male.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Male Overweight Rate", + "description" : "Percent of the male population who have a BMI above 25.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness","male","gender"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.obese.male"], + ["1960–1962",10.7], + ["1971–1974",12.1], + ["1976–1980",12.7], + ["1988–1994",20.2], + ["1999–2000",27.5], + ["2001–2002",27.7], + ["2003–2004",31.1], + ["2005–2006",33.3], + ["2007–2008",32.2], + ["2009–2010",35.5], + ["2011–2012",33.5], + ["2013–2014",35] + ] +} diff --git a/data/historical/united-states/health/fitness/us-fitness-overweight.json b/data/historical/united-states/health/fitness/us-fitness-overweight.json new file mode 100644 index 0000000..f5d454d --- /dev/null +++ b/data/historical/united-states/health/fitness/us-fitness-overweight.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Overweight Rate", + "description" : "Percent of the population who have a BMI above 25.", + "units" : "%", + "year" : "1960-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","fitness"], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "https://www.cdc.gov/nchs/data/hestat/obesity_adult_13_14/obesity_adult_13_14.htm", + "https://www.niddk.nih.gov/health-information/health-statistics/overweight-obesity" + ] + }, + "data" : [ + ["age.bin","us.fitness.overweight"], + ["1960–1962",31.5], + ["1971–1974",32.7], + ["1976–1980",32.1], + ["1988–1994",33.1], + ["1999–2000",34], + ["2001–2002",35.1], + ["2003–2004",34.1], + ["2005–2006",32.6], + ["2007–2008",34.3], + ["2009–2010",33], + ["2011–2012",33.6], + ["2013–2014",32.5] + ] +} diff --git a/data/historical/united-states/health/life-expectancy/us-life-expectancy.json b/data/historical/united-states/health/life-expectancy/us-life-expectancy.json new file mode 100644 index 0000000..19ead9b --- /dev/null +++ b/data/historical/united-states/health/life-expectancy/us-life-expectancy.json @@ -0,0 +1,55 @@ +{ + "metadata" : { + "name" : "Life Expectancy", + "description" : "Life expectancy (from birth) in the United States.", + "units" : "years", + "year" : "1860-2020", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","life expectancy"], + "authors" : [ + "Statista" + ], + "sources" : [ + "https://www.statista.com/statistics/1040079/life-expectancy-united-states-all-time/" + ] + }, + "data" : [ + ["year","us.life.expectancy"], + [1860,39.41], + [1865,35.1], + [1870,39.41], + [1875,39.41], + [1880,39.41], + [1885,41.15], + [1890,44.05], + [1895,46.33], + [1900,48.19], + [1905,50.06], + [1910,51.36], + [1915,54.14], + [1920,53.22], + [1925,58.16], + [1930,58.74], + [1935,60.7], + [1940,62.07], + [1945,64.71], + [1950,67.23], + [1955,68.71], + [1960,69.66], + [1965,70.11], + [1970,70.36], + [1975,71.73], + [1980,73.25], + [1985,74.37], + [1990,74.89], + [1995,75.65], + [2000,76.47], + [2005,77.18], + [2010,78.19], + [2015,78.94], + [2020,78.81] + ] +} diff --git a/data/historical/united-states/health/mortality/us-crude-death-rate.json b/data/historical/united-states/health/mortality/us-crude-death-rate.json new file mode 100644 index 0000000..16c9140 --- /dev/null +++ b/data/historical/united-states/health/mortality/us-crude-death-rate.json @@ -0,0 +1,96 @@ +{ + "metadata" : { + "name" : "Crude Death Rate", + "description" : "Annual deaths per 1000 population.", + "units" : "deaths/1k population", + "year" : "1950-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : [], + "authors" : [ + "United States Centers for Disease Control" + ], + "sources" : [ + "['https://www.macrotrends.net/countries/USA/united-states/death-rate', 'https://data.worldbank.org/indicator/SP.DYN.CDRT.IN', 'https://www.cdc.gov/nchs/nvss/mortality/hist293.htm', 'https://api.worldbank.org/v2/en/indicator/SP.DYN.CDRT.IN?downloadformat=excel']" + ] + }, + "data" : [ + ["year","us.death.rate.crude"], + [1950,9.649], + [1951,9.619], + [1952,9.589], + [1953,9.559], + [1954,9.529], + [1955,9.499], + [1956,9.469], + [1957,9.439], + [1958,9.409], + [1959,9.416], + [1960,9.423], + [1961,9.429], + [1962,9.436], + [1963,9.443], + [1964,9.473], + [1965,9.503], + [1966,9.534], + [1967,9.564], + [1968,9.594], + [1969,9.555], + [1970,9.516], + [1971,9.476], + [1972,9.437], + [1973,9.398], + [1974,9.288], + [1975,9.178], + [1976,9.069], + [1977,8.959], + [1978,8.849], + [1979,8.845], + [1980,8.841], + [1981,8.837], + [1982,8.833], + [1983,8.829], + [1984,8.854], + [1985,8.878], + [1986,8.903], + [1987,8.927], + [1988,8.952], + [1989,8.925], + [1990,8.898], + [1991,8.871], + [1992,8.844], + [1993,8.817], + [1994,8.785], + [1995,8.754], + [1996,8.722], + [1997,8.691], + [1998,8.659], + [1999,8.631], + [2000,8.603], + [2001,8.576], + [2002,8.548], + [2003,8.52], + [2004,8.441], + [2005,8.362], + [2006,8.282], + [2007,8.203], + [2008,8.124], + [2009,8.131], + [2010,8.138], + [2011,8.145], + [2012,8.152], + [2013,8.159], + [2014,8.264], + [2015,8.369], + [2016,8.475], + [2017,8.58], + [2018,8.685], + [2019,8.782], + [2020,8.88], + [2021,8.977], + [2022,9.075], + [2023,9.172] + ] +} diff --git a/data/historical/united-states/health/suicide/us-suicide-rate-female.json b/data/historical/united-states/health/suicide/us-suicide-rate-female.json new file mode 100644 index 0000000..5f03662 --- /dev/null +++ b/data/historical/united-states/health/suicide/us-suicide-rate-female.json @@ -0,0 +1,48 @@ +{ + "metadata" : { + "name" : "Female Suicide Rate", + "description" : "Female suicide rate as deaths per 100,000 population in the United States.", + "units" : "deaths/100k population", + "year" : "1950-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","suicide","female"], + "authors" : [ + "Statista" + ], + "sources" : [ + "https://www.statista.com/statistics/187478/death-rate-from-suicide-in-the-us-by-gender-since-1950/" + ] + }, + "data" : [ + ["year","us.suicide.rate.female"], + [1950,5.6], + [1960,5.6], + [1970,7.4], + [1980,5.7], + [1990,4.8], + [1995,4.3], + [2000,4.1], + [2001,4.2], + [2002,4.2], + [2003,4.2], + [2004,4.5], + [2005,4.4], + [2006,4.5], + [2007,4.6], + [2008,4.8], + [2009,4.9], + [2010,5], + [2011,5.2], + [2012,5.4], + [2013,5.5], + [2014,5.8], + [2015,6], + [2016,6], + [2017,6.1], + [2018,6.2], + [2019,6] + ] +} diff --git a/data/historical/united-states/health/suicide/us-suicide-rate-male.json b/data/historical/united-states/health/suicide/us-suicide-rate-male.json new file mode 100644 index 0000000..b4cce0e --- /dev/null +++ b/data/historical/united-states/health/suicide/us-suicide-rate-male.json @@ -0,0 +1,48 @@ +{ + "metadata" : { + "name" : "Male Suicide Rate", + "description" : "Male suicide rate as deaths per 100,000 population in the United States.", + "units" : "deaths/100k population", + "year" : "1950-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","suicide","male"], + "authors" : [ + "Statista" + ], + "sources" : [ + "https://www.statista.com/statistics/187478/death-rate-from-suicide-in-the-us-by-gender-since-1950/" + ] + }, + "data" : [ + ["year","us.suicide.rate.male"], + [1950,21.2], + [1960,20], + [1970,19.8], + [1980,19.9], + [1990,21.5], + [1995,20.3], + [2000,17.7], + [2001,18.2], + [2002,18.5], + [2003,18.1], + [2004,18.1], + [2005,18.1], + [2006,18.1], + [2007,18.5], + [2008,19], + [2009,19.2], + [2010,19.8], + [2011,20], + [2012,20.4], + [2013,20.3], + [2014,20.7], + [2015,21.1], + [2016,21.4], + [2017,22.4], + [2018,22.8], + [2019,22.4] + ] +} diff --git a/data/historical/united-states/health/suicide/us-suicide-rate.json b/data/historical/united-states/health/suicide/us-suicide-rate.json new file mode 100644 index 0000000..0ea262a --- /dev/null +++ b/data/historical/united-states/health/suicide/us-suicide-rate.json @@ -0,0 +1,48 @@ +{ + "metadata" : { + "name" : "Suicide Rate", + "description" : "Suicide rate as deaths per 100,000 population in the United States.", + "units" : "deaths/100k population", + "year" : "1950-2019", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "health", + "tags" : ["historical","us","health","suicide"], + "authors" : [ + "Statista" + ], + "sources" : [ + "https://www.statista.com/statistics/187478/death-rate-from-suicide-in-the-us-by-gender-since-1950/" + ] + }, + "data" : [ + ["year","us.suicide.rate"], + [1950,13.4], + [1960,12.8], + [1970,13.6], + [1980,12.8], + [1990,13.15], + [1995,12.3], + [2000,10.9], + [2001,11.2], + [2002,11.35], + [2003,11.15], + [2004,11.3], + [2005,11.25], + [2006,11.3], + [2007,11.55], + [2008,11.9], + [2009,12.05], + [2010,12.4], + [2011,12.6], + [2012,12.9], + [2013,12.9], + [2014,13.25], + [2015,13.55], + [2016,13.7], + [2017,14.25], + [2018,14.5], + [2019,14.2] + ] +} diff --git a/data/historical/united-states/military/us-millitary-personel-airforce.json b/data/historical/united-states/military/us-millitary-personel-airforce.json new file mode 100644 index 0000000..382a94d --- /dev/null +++ b/data/historical/united-states/military/us-millitary-personel-airforce.json @@ -0,0 +1,86 @@ +{ + "metadata" : { + "name" : "Air Force Personel", + "description" : "Total number of active air force personel.", + "units" : "troops", + "year" : "1950-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "military", + "tags" : ["historical","us","military"], + "authors" : [ + "United States Department of Defence" + ], + "sources" : [ + "https://historyinpieces.com/research/us-military-personnel-1954-2014", + "https://www.infoplease.com/us/military/active-duty-military-personnel-1940-20111", + "https://www.macrotrends.net/countries/USA/united-states/military-army-size" + ] + }, + "data" : [ + ["year","us.military.personel.airforce"], + [1950,411277], + [1954,947918], + [1955,959946], + [1956,909958], + [1957,919835], + [1958,871156], + [1959,840435], + [1960,814752], + [1961,821151], + [1962,884025], + [1963,869431], + [1964,856798], + [1965,824662], + [1966,887353], + [1967,897494], + [1968,904850], + [1969,862353], + [1970,791349], + [1971,755300], + [1972,725838], + [1973,691182], + [1974,643970], + [1975,612751], + [1976,585416], + [1977,570695], + [1978,569712], + [1979,559455], + [1980,557969], + [1981,570302], + [1982,582845], + [1983,592044], + [1984,597125], + [1985,601515], + [1986,608199], + [1987,607035], + [1988,576446], + [1989,570880], + [1990,535233], + [1991,510432], + [1992,470315], + [1993,444351], + [1994,426327], + [1995,400409], + [1996,389001], + [1997,377385], + [1998,367470], + [1999,360590], + [2000,355654], + [2001,353571], + [2002,368251], + [2003,375062], + [2004,376616], + [2005,353696], + [2006,348953], + [2007,333495], + [2008,327379], + [2009,333408], + [2010,334196], + [2011,333370], + [2012,332959], + [2013,326573], + [2014,326259] + ] +} diff --git a/data/historical/united-states/military/us-millitary-personel-army.json b/data/historical/united-states/military/us-millitary-personel-army.json new file mode 100644 index 0000000..86710c5 --- /dev/null +++ b/data/historical/united-states/military/us-millitary-personel-army.json @@ -0,0 +1,88 @@ +{ + "metadata" : { + "name" : "Army Personel", + "description" : "Total number of active army personel.", + "units" : "troops", + "year" : "1940-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "military", + "tags" : ["historical","us","military"], + "authors" : [ + "United States Department of Defence" + ], + "sources" : [ + "https://historyinpieces.com/research/us-military-personnel-1954-2014", + "https://www.infoplease.com/us/military/active-duty-military-personnel-1940-20111", + "https://www.macrotrends.net/countries/USA/united-states/military-army-size" + ] + }, + "data" : [ + ["year","us.military.personel.army"], + [1940,269023], + [1945,8266373], + [1950,593167], + [1954,1404598], + [1955,1109296], + [1956,1025778], + [1957,997994], + [1958,898925], + [1959,861964], + [1960,873078], + [1961,858622], + [1962,1066404], + [1963,975916], + [1964,973238], + [1965,969066], + [1966,1199784], + [1967,1442498], + [1968,1570343], + [1969,1512169], + [1970,1322548], + [1971,1123810], + [1972,810960], + [1973,800973], + [1974,783330], + [1975,784333], + [1976,779417], + [1977,782246], + [1978,771624], + [1979,758852], + [1980,777036], + [1981,781419], + [1982,780391], + [1983,779643], + [1984,780180], + [1985,780787], + [1986,780980], + [1987,780815], + [1988,771847], + [1989,769741], + [1990,732403], + [1991,710821], + [1992,610450], + [1993,572423], + [1994,541343], + [1995,508559], + [1996,491103], + [1997,491707], + [1998,483880], + [1999,479426], + [2000,482170], + [2001,480801], + [2002,486542], + [2003,499301], + [2004,499543], + [2005,492728], + [2006,505402], + [2007,522017], + [2008,543645], + [2009,553044], + [2010,566045], + [2011,565463], + [2012,550064], + [2013,528070], + [2014,515888] + ] +} diff --git a/data/historical/united-states/military/us-millitary-personel-marines.json b/data/historical/united-states/military/us-millitary-personel-marines.json new file mode 100644 index 0000000..77b67dd --- /dev/null +++ b/data/historical/united-states/military/us-millitary-personel-marines.json @@ -0,0 +1,88 @@ +{ + "metadata" : { + "name" : "Marine Corps Personel", + "description" : "Total number of active marine corps personel.", + "units" : "troops", + "year" : "1940-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "military", + "tags" : ["historical","us","military"], + "authors" : [ + "United States Department of Defence" + ], + "sources" : [ + "https://historyinpieces.com/research/us-military-personnel-1954-2014", + "https://www.infoplease.com/us/military/active-duty-military-personnel-1940-20111", + "https://www.macrotrends.net/countries/USA/united-states/military-army-size" + ] + }, + "data" : [ + ["year","us.military.personel.marines"], + [1940,28345], + [1945,469925], + [1950,74279], + [1954,223868], + [1955,205170], + [1956,200780], + [1957,200861], + [1958,189495], + [1959,175571], + [1960,170621], + [1961,176909], + [1962,190962], + [1963,189683], + [1964,189777], + [1965,190213], + [1966,261716], + [1967,285269], + [1968,307252], + [1969,309771], + [1970,259737], + [1971,212369], + [1972,198238], + [1973,196098], + [1974,188802], + [1975,195951], + [1976,192399], + [1977,191707], + [1978,190815], + [1979,185250], + [1980,188469], + [1981,190620], + [1982,192380], + [1983,194089], + [1984,196214], + [1985,198025], + [1986,198814], + [1987,199525], + [1988,197350], + [1989,196956], + [1990,196652], + [1991,194040], + [1992,184529], + [1993,178379], + [1994,174158], + [1995,174639], + [1996,174883], + [1997,173906], + [1998,173142], + [1999,172641], + [2000,173321], + [2001,172934], + [2002,173733], + [2003,177779], + [2004,177480], + [2005,180029], + [2006,180416], + [2007,186492], + [2008,198505], + [2009,202786], + [2010,202441], + [2011,201157], + [2012,198193], + [2013,195848], + [2014,192787] + ] +} diff --git a/data/historical/united-states/military/us-millitary-personel-navy.json b/data/historical/united-states/military/us-millitary-personel-navy.json new file mode 100644 index 0000000..46a8759 --- /dev/null +++ b/data/historical/united-states/military/us-millitary-personel-navy.json @@ -0,0 +1,88 @@ +{ + "metadata" : { + "name" : "Navy Personel", + "description" : "Total number of active navy personel.", + "units" : "troops", + "year" : "1940-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "military", + "tags" : ["historical","us","military"], + "authors" : [ + "United States Department of Defence" + ], + "sources" : [ + "https://historyinpieces.com/research/us-military-personnel-1954-2014", + "https://www.infoplease.com/us/military/active-duty-military-personnel-1940-20111", + "https://www.macrotrends.net/countries/USA/united-states/military-army-size" + ] + }, + "data" : [ + ["year","us.military.personel.navy"], + [1940,160997], + [1945,3319586], + [1950,380739], + [1954,725720], + [1955,660695], + [1956,669925], + [1957,677108], + [1958,641005], + [1959,626340], + [1960,617984], + [1961,627089], + [1962,666428], + [1963,664647], + [1964,667596], + [1965,671448], + [1966,745205], + [1967,751619], + [1968,765457], + [1969,775869], + [1970,692660], + [1971,623248], + [1972,588043], + [1973,564534], + [1974,545903], + [1975,535085], + [1976,524678], + [1977,529895], + [1978,530253], + [1979,523937], + [1980,527153], + [1981,540219], + [1982,552996], + [1983,557573], + [1984,564638], + [1985,570705], + [1986,581119], + [1987,586842], + [1988,592570], + [1989,592652], + [1990,579417], + [1991,570262], + [1992,541883], + [1993,509950], + [1994,468662], + [1995,434617], + [1996,416735], + [1997,395564], + [1998,382338], + [1999,373046], + [2000,373193], + [2001,377810], + [2002,383108], + [2003,382235], + [2004,373197], + [2005,362941], + [2006,350197], + [2007,337547], + [2008,332228], + [2009,329304], + [2010,328303], + [2011,325123], + [2012,318406], + [2013,319838], + [2014,319120] + ] +} diff --git a/data/historical/united-states/military/us-millitary-personel-total.json b/data/historical/united-states/military/us-millitary-personel-total.json new file mode 100644 index 0000000..3d7bc18 --- /dev/null +++ b/data/historical/united-states/military/us-millitary-personel-total.json @@ -0,0 +1,88 @@ +{ + "metadata" : { + "name" : "Total Military Personel", + "description" : "Total number of military personel.", + "units" : "troops", + "year" : "1940-2014", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "military", + "tags" : ["historical","us","military"], + "authors" : [ + "United States Department of Defence" + ], + "sources" : [ + "https://historyinpieces.com/research/us-military-personnel-1954-2014", + "https://www.infoplease.com/us/military/active-duty-military-personnel-1940-20111", + "https://www.macrotrends.net/countries/USA/united-states/military-army-size" + ] + }, + "data" : [ + ["year","us.military.personel.total"], + [1940,458365], + [1945,12055884], + [1950,1459462], + [1954,3302104], + [1955,2935107], + [1956,2806441], + [1957,2795798], + [1958,2600581], + [1959,2504310], + [1960,2476435], + [1961,2483771], + [1962,2807819], + [1963,2699677], + [1964,2687409], + [1965,2655389], + [1966,3094058], + [1967,3376880], + [1968,3547902], + [1969,3460162], + [1970,3066294], + [1971,2714727], + [1972,2323079], + [1973,2252787], + [1974,2162005], + [1975,2128120], + [1976,2081910], + [1977,2074543], + [1978,2062404], + [1979,2027494], + [1980,2050627], + [1981,2082560], + [1982,2108612], + [1983,2123349], + [1984,2138157], + [1985,2151032], + [1986,2169112], + [1987,2174217], + [1988,2138213], + [1989,2130229], + [1990,2043705], + [1991,1985555], + [1992,1807177], + [1993,1704103], + [1994,1610490], + [1995,1518224], + [1996,1471722], + [1997,1438562], + [1998,1406830], + [1999,1385703], + [2000,1384338], + [2001,1385116], + [2002,1411634], + [2003,1434377], + [2004,1426836], + [2005,1389394], + [2006,1384968], + [2007,1379551], + [2008,1401757], + [2009,1418542], + [2010,1430985], + [2011,1425113], + [2012,1399622], + [2013,1370329], + [2014,1354054] + ] +} diff --git a/data/historical/united-states/politics/us-political-trust-movingavg.json b/data/historical/united-states/politics/us-political-trust-movingavg.json new file mode 100644 index 0000000..0a94ef2 --- /dev/null +++ b/data/historical/united-states/politics/us-political-trust-movingavg.json @@ -0,0 +1,72 @@ +{ + "metadata" : { + "name" : "Public Trust In Government (Moving Average)", + "description" : "Percentage of population who say they trust the government to do what is right always/most of the time.", + "units" : "%", + "year" : "1958-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["historical","us","politics","public"], + "authors" : [ + "Pew Research" + ], + "sources" : [ + "https://www.pewresearch.org/politics/2022/06/06/public-trust-in-government-1958-2022/" + ] + }, + "data" : [ + ["year","us.political.trust.movingavg"], + [2022,20], + [2021,21], + [2020,22.5], + [2019,17], + [2017,18.5], + [2015,18], + [2014,18.5], + [2013,20.8], + [2012,19], + [2011,18.8], + [2010,22.2], + [2009,22], + [2008,24.33333333], + [2007,26], + [2006,31], + [2005,32], + [2004,39.33333333], + [2003,39.5], + [2002,43.5], + [2001,49], + [2000,38.2], + [1999,33.75], + [1998,31.11111111], + [1997,28.75], + [1996,28.75], + [1995,22.2], + [1994,20.66666667], + [1993,25], + [1992,26.33333333], + [1991,40.75], + [1990,34.5], + [1989,40], + [1988,41.33333333], + [1987,43], + [1986,43.75], + [1985,42.4], + [1984,42.5], + [1982,39], + [1980,29.66666667], + [1979,28], + [1978,31], + [1977,33], + [1976,35], + [1974,36], + [1972,53], + [1970,54], + [1968,62], + [1966,65], + [1964,77], + [1958,73] + ] +} diff --git a/data/historical/united-states/politics/us-political-trust-raw.json b/data/historical/united-states/politics/us-political-trust-raw.json new file mode 100644 index 0000000..2ef7937 --- /dev/null +++ b/data/historical/united-states/politics/us-political-trust-raw.json @@ -0,0 +1,72 @@ +{ + "metadata" : { + "name" : "Public Trust In Government", + "description" : "Percentage of population who say they trust the government to do what is right always/most of the time.", + "units" : "%", + "year" : "1958-2022", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["historical","us","politics","public"], + "authors" : [ + "Pew Research" + ], + "sources" : [ + "https://www.pewresearch.org/politics/2022/06/06/public-trust-in-government-1958-2022/" + ] + }, + "data" : [ + ["year","us.political.trust.raw"], + [2022,20], + [2021,24], + [2020,23.5], + [2019,17], + [2017,19], + [2015,19], + [2014,19], + [2013,20.4], + [2012,22], + [2011,18.6], + [2010,22], + [2009,21.33333333], + [2008,24.66666667], + [2007,27.5], + [2006,31], + [2005,30.5], + [2004,40.66666667], + [2003,36.5], + [2002,44.5], + [2001,48.5], + [2000,39.4], + [1999,33.125], + [1998,31.11111111], + [1997,29], + [1996,29.75], + [1995,21.4], + [1994,21], + [1993,24.66666667], + [1992,24.66666667], + [1991,43.25], + [1990,33.25], + [1989,39.5], + [1988,41.33333333], + [1987,43.4], + [1986,42.5], + [1985,42.6], + [1984,45], + [1982,33], + [1980,30], + [1979,30], + [1978,29], + [1977,34], + [1976,35], + [1974,36], + [1972,53], + [1970,54], + [1968,62], + [1966,65], + [1964,77], + [1958,73] + ] +} diff --git a/data/historical/united-states/technology/us-internet-usage.json b/data/historical/united-states/technology/us-internet-usage.json new file mode 100644 index 0000000..368774b --- /dev/null +++ b/data/historical/united-states/technology/us-internet-usage.json @@ -0,0 +1,45 @@ +{ + "metadata" : { + "name" : "Internet Access/Usage", + "description" : "Percent of the population who are internet users.", + "units" : "%", + "year" : "2000-2015", + "notes" : [], + "type" : "historical", + "scope" : "United States", + "categorty" : "technology", + "tags" : ["historical","us","technology","internet"], + "authors" : [ + "International Telecommunications Union" + ], + "sources" : [ + "https://www.itu.int/en/ITU-D/Statistics/Pages/stat/default.aspx", + "https://en.wikipedia.org/wiki/Internet_in_the_United_States" + ] + }, + "data" : [ + ["year","us.internet.usage"], + [2000,0.430791626], + [2001,0.490808316], + [2002,0.587854039], + [2003,0.616971171], + [2004,0.647582565], + [2005,0.679680529], + [2006,0.689311933], + [2007,0.75], + [2008,0.74], + [2009,0.71], + [2010,0.7169], + [2011,0.697294608], + [2012,0.747], + [2013,0.714], + [2014,0.73], + [2015,0.745542024], + [2016,0.855444213], + [2017,0.872748892], + [2018,0.884989032], + [2019,0.894302849], + [2020,0.906204702], + [2021,0.917532083] + ] +} diff --git a/data/lifespan/australia/culture/divorce/au-divorce-rate-crude-female.json b/data/lifespan/australia/culture/divorce/au-divorce-rate-crude-female.json new file mode 100644 index 0000000..11cfcda --- /dev/null +++ b/data/lifespan/australia/culture/divorce/au-divorce-rate-crude-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Female Crude Divorce Rate", + "description" : "Age-specific divorce rates reflect the number of people in a specific age group who were granted a divorce during the year, per 1,000 estimated resident population in the same age group", + "units" : "divorces/1k population", + "year" : "2021", + "notes" : [], + "type" : "lifespane", + "scope" : "Australia", + "categorty" : "culture", + "tags" : ["lifespan","au","culture","marriage","divorce","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/people/people-and-communities/marriages-and-divorces-australia/latest-release#data-downloads" + ] + }, + "data" : [ + ["age.bin","au.divorce.rate.crude.female"], + ["16-24",0.6], + ["25-29",5], + ["30-34",8.5], + ["35-39",9.9], + ["40-44",10.4], + ["45-49",10.1], + ["50-54",8.5], + ["55-59",5.6], + ["60-64",3.4], + ["65+",1] + ] +} diff --git a/data/lifespan/australia/culture/divorce/au-divorce-rate-crude-male.json b/data/lifespan/australia/culture/divorce/au-divorce-rate-crude-male.json new file mode 100644 index 0000000..5a60704 --- /dev/null +++ b/data/lifespan/australia/culture/divorce/au-divorce-rate-crude-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Male Crude Divorce Rate", + "description" : "Age-specific divorce rates reflect the number of people in a specific age group who were granted a divorce during the year, per 1,000 estimated resident population in the same age group", + "units" : "divorces/1k population", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "culture", + "tags" : ["lifespan","au","culture","marriage","divorce","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/people/people-and-communities/marriages-and-divorces-australia/latest-release#data-downloads" + ] + }, + "data" : [ + ["age.bin","au.divorce.rate.crude.male"], + ["16-24",0.2], + ["25-29",3.1], + ["30-34",7], + ["35-39",9.1], + ["40-44",10.3], + ["45-49",10.3], + ["50-54",9.7], + ["55-59",7.4], + ["60-64",5], + ["65+",2] + ] +} diff --git a/data/lifespan/australia/culture/marriage/au-marriage-total-female.json b/data/lifespan/australia/culture/marriage/au-marriage-total-female.json new file mode 100644 index 0000000..9c2d095 --- /dev/null +++ b/data/lifespan/australia/culture/marriage/au-marriage-total-female.json @@ -0,0 +1,36 @@ +{ + "metadata" : { + "name" : "Total Female Marriages", + "description" : "Total number of females who married.", + "units" : "marriages", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "culture", + "tags" : ["lifespan","au","culture","marriage","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/people/people-and-communities/marriages-and-divorces-australia/latest-release#data-downloads", + "https://www.abs.gov.au/statistics/people/people-and-communities/marriages-and-divorces-australia/2021/1.%20Marriages_Australia_2021.xlsx" + ] + }, + "data" : [ + ["age.bin","au.marriage.total.female"], + ["16-19",599], + ["20-24",10519], + ["25-29",30746], + ["30-34",23072], + ["35-39",9519], + ["40-44",4738], + ["45-49",3755], + ["50-54",2947], + ["55-59",1850], + ["60-64",1027], + ["65-69",533], + ["70-74",278], + ["75+",207] + ] +} diff --git a/data/lifespan/australia/culture/marriage/au-marriage-total-male.json b/data/lifespan/australia/culture/marriage/au-marriage-total-male.json new file mode 100644 index 0000000..b8aaf87 --- /dev/null +++ b/data/lifespan/australia/culture/marriage/au-marriage-total-male.json @@ -0,0 +1,36 @@ +{ + "metadata" : { + "name" : "Total Male Marriages", + "description" : "Total number of males who married", + "units" : "marriages", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "culture", + "tags" : ["lifespan","au","culture","marriage","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/people/people-and-communities/marriages-and-divorces-australia/latest-release#data-downloads", + "https://www.abs.gov.au/statistics/people/people-and-communities/marriages-and-divorces-australia/2021/1.%20Marriages_Australia_2021.xlsx" + ] + }, + "data" : [ + ["age.bin","au.marriage.total.male"], + ["16-19",196], + ["20-24",6450], + ["25-29",25232], + ["30-34",25109], + ["35-39",12003], + ["40-44",5636], + ["45-49",4150], + ["50-54",3454], + ["55-59",2561], + ["60-64",1698], + ["65-69",904], + ["70-74",549], + ["75+",440] + ] +} diff --git a/data/lifespan/australia/economics/income/au-income-mean-female.json b/data/lifespan/australia/economics/income/au-income-mean-female.json new file mode 100644 index 0000000..93b2608 --- /dev/null +++ b/data/lifespan/australia/economics/income/au-income-mean-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Mean Female Income", + "description" : "Mean/average female income by age group.", + "units" : "$", + "year" : "2020", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "economics", + "tags" : ["lifespan","au","economics","income","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20", + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20/6524055002_DO004.xlsx" + ] + }, + "data" : [ + ["age.bin","au.income.mean.female"], + ["<24",28273], + ["25-34",54395], + ["35-44",65791], + ["45-54",69757], + ["55-64",62162], + ["65+",44770] + ] +} diff --git a/data/lifespan/australia/economics/income/au-income-mean-male.json b/data/lifespan/australia/economics/income/au-income-mean-male.json new file mode 100644 index 0000000..e606ad5 --- /dev/null +++ b/data/lifespan/australia/economics/income/au-income-mean-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Mean Male Income", + "description" : "Mean/average male income by age group.", + "units" : "$", + "year" : "2020", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "economics", + "tags" : ["lifespan","au","economics","income","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20", + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20/6524055002_DO004.xlsx" + ] + }, + "data" : [ + ["age.bin","au.income.mean.male"], + ["<24",32933], + ["25-34",69385], + ["35-44",97763], + ["45-54",107487], + ["55-64",95187], + ["65+",64025] + ] +} diff --git a/data/lifespan/australia/economics/income/au-income-mean.json b/data/lifespan/australia/economics/income/au-income-mean.json new file mode 100644 index 0000000..00623f4 --- /dev/null +++ b/data/lifespan/australia/economics/income/au-income-mean.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Mean Income", + "description" : "Mean/average income by age group.", + "units" : "$", + "year" : "2020", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "economics", + "tags" : ["lifespan","au","economics","income"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20", + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20/6524055002_DO004.xlsx" + ] + }, + "data" : [ + ["age.bin","au.income.mean"], + ["<24",30618], + ["25-34",61990], + ["35-44",82260], + ["45-54",88494], + ["55-64",78766], + ["65+",55338] + ] +} diff --git a/data/lifespan/australia/economics/income/au-income-median-female.json b/data/lifespan/australia/economics/income/au-income-median-female.json new file mode 100644 index 0000000..7c75be8 --- /dev/null +++ b/data/lifespan/australia/economics/income/au-income-median-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Median Female Income", + "description" : "Median female income by age group.", + "units" : "$", + "year" : "2020", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "economics", + "tags" : ["lifespan","au","economics","income","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20", + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20/6524055002_DO004.xlsx" + ] + }, + "data" : [ + ["age.bin","au.income.median.female"], + ["<24",24448], + ["25-34",50414], + ["35-44",56655], + ["45-54",58960], + ["55-64",53838], + ["65+",35265] + ] +} diff --git a/data/lifespan/australia/economics/income/au-income-median-male.json b/data/lifespan/australia/economics/income/au-income-median-male.json new file mode 100644 index 0000000..25d910c --- /dev/null +++ b/data/lifespan/australia/economics/income/au-income-median-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Median Male Income", + "description" : "Median male income by age group.", + "units" : "$", + "year" : "2020", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "economics", + "tags" : ["lifespan","au","economics","income","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20", + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20/6524055002_DO004.xlsx" + ] + }, + "data" : [ + ["age.bin","au.income.median.male"], + ["<24",28620], + ["25-34",63475], + ["35-44",85160], + ["45-54",87484], + ["55-64",76538], + ["65+",47379] + ] +} diff --git a/data/lifespan/australia/economics/income/au-income-median.json b/data/lifespan/australia/economics/income/au-income-median.json new file mode 100644 index 0000000..eb6920c --- /dev/null +++ b/data/lifespan/australia/economics/income/au-income-median.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Median Income", + "description" : "Median income by age group.", + "units" : "$", + "year" : "2020", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "economics", + "tags" : ["lifespan","au","economics","income"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20", + "https://www.abs.gov.au/statistics/labour/earnings-and-working-conditions/personal-income-australia/2015-16-2019-20/6524055002_DO004.xlsx" + ] + }, + "data" : [ + ["age.bin","au.income.median"], + ["<24",26380], + ["25-34",56677], + ["35-44",70669], + ["45-54",71911], + ["55-64",64218], + ["65+",41142] + ] +} diff --git a/data/lifespan/australia/health/drugs/au-substance-use-disorder-female.json b/data/lifespan/australia/health/drugs/au-substance-use-disorder-female.json new file mode 100644 index 0000000..5bc32e7 --- /dev/null +++ b/data/lifespan/australia/health/drugs/au-substance-use-disorder-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Females With A Substance Use Disorder", + "description" : "Percentage of the female population with a 12-month substance use disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","drugs","illness","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.substance.use.disorder.female"], + ["16-24",0.071], + ["25-34",0.052], + ["35-44",0.005], + ["45-54",0.012], + ["55-64",0.007], + ["65-74",0.009], + ["75-85",0] + ] +} diff --git a/data/lifespan/australia/health/drugs/au-substance-use-disorder-male.json b/data/lifespan/australia/health/drugs/au-substance-use-disorder-male.json new file mode 100644 index 0000000..a9c3982 --- /dev/null +++ b/data/lifespan/australia/health/drugs/au-substance-use-disorder-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Males With A Substance Use Disorder", + "description" : "Percentage of the male population with a 12-month substance use disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","drugs","illness","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.substance.use.disorder.male"], + ["16-24",0.133], + ["25-34",0.038], + ["35-44",0.058], + ["45-54",0.043], + ["55-64",0.015], + ["65-74",0.015], + ["75-85",0] + ] +} diff --git a/data/lifespan/australia/health/illness/au-cancer-rate.json b/data/lifespan/australia/health/illness/au-cancer-rate.json new file mode 100644 index 0000000..34f2077 --- /dev/null +++ b/data/lifespan/australia/health/illness/au-cancer-rate.json @@ -0,0 +1,28 @@ +{ + "metadata" : { + "name" : "Cancer Rate", + "description" : "Percentage of the population with cancer.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","illness","cancer"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/health-conditions-and-risks/health-conditions-prevalence/2020-21#cancer" + ] + }, + "data" : [ + ["age.bin","au.cancer.rate"], + ["15-24",0], + ["25-34",0.003], + ["35-44",0.007], + ["45-54",0.014], + ["55-64",0.036], + ["65+",0.056] + ] +} diff --git a/data/lifespan/australia/health/illness/au-diabeties-rate-female.json b/data/lifespan/australia/health/illness/au-diabeties-rate-female.json new file mode 100644 index 0000000..a3d1ae4 --- /dev/null +++ b/data/lifespan/australia/health/illness/au-diabeties-rate-female.json @@ -0,0 +1,28 @@ +{ + "metadata" : { + "name" : "Female Diabetes Rate", + "description" : "Percentage of the female population with diabetes.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","illness","diabetes","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/health-conditions-and-risks/diabetes/2020-21#diabetes-prevalence" + ] + }, + "data" : [ + ["age.bin","au.diabetes.rate.female"], + ["25-34",0.021], + ["35-44",0.014], + ["45-54",0.048], + ["55-64",0.099], + ["65-74",0.109], + ["75+",0.179] + ] +} diff --git a/data/lifespan/australia/health/illness/au-diabeties-rate-male.json b/data/lifespan/australia/health/illness/au-diabeties-rate-male.json new file mode 100644 index 0000000..ed8d6cf --- /dev/null +++ b/data/lifespan/australia/health/illness/au-diabeties-rate-male.json @@ -0,0 +1,28 @@ +{ + "metadata" : { + "name" : "Male Diabetes Rate", + "description" : "Percentage of the male population with diabetes.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","illness","diabetes","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/health-conditions-and-risks/diabetes/2020-21#diabetes-prevalence" + ] + }, + "data" : [ + ["age.bin","au.diabetes.rate.male"], + ["25-34",0.006], + ["35-44",0.039], + ["45-54",0.05], + ["55-64",0.103], + ["65-74",0.196], + ["75+",0.208] + ] +} diff --git a/data/lifespan/australia/health/illness/au-health-condition-1.json b/data/lifespan/australia/health/illness/au-health-condition-1.json new file mode 100644 index 0000000..6d9299c --- /dev/null +++ b/data/lifespan/australia/health/illness/au-health-condition-1.json @@ -0,0 +1,40 @@ +{ + "metadata" : { + "name" : "One Long-Term Health Condition", + "description" : "People with one long-term health condition.", + "units" : "people", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","illness"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.health.conditions.1"], + ["0-4",48010], + ["5-9",140434], + ["10-14",188694], + ["15-19",221454], + ["20-24",261141], + ["25-29",287476], + ["30-34",291959], + ["35-39",302851], + ["40-44",292423], + ["45-49",316015], + ["50-54",340369], + ["55-59",365384], + ["60-64",391595], + ["65-69",382434], + ["70-74",362778], + ["75-79",262231], + ["80-84",175072], + ["85+",161207] + ] +} diff --git a/data/lifespan/australia/health/illness/au-health-condition-2.json b/data/lifespan/australia/health/illness/au-health-condition-2.json new file mode 100644 index 0000000..b2d37b7 --- /dev/null +++ b/data/lifespan/australia/health/illness/au-health-condition-2.json @@ -0,0 +1,40 @@ +{ + "metadata" : { + "name" : "Two Long-Term Health Conditions", + "description" : "People with at two long-term health conditions.", + "units" : "people", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","illness"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.health.conditions.2"], + ["0-4",1292], + ["5-9",6697], + ["10-14",15327], + ["15-19",26863], + ["20-24",44018], + ["25-29",54351], + ["30-34",55764], + ["35-39",60913], + ["40-44",64602], + ["45-49",80229], + ["50-54",100148], + ["55-59",121686], + ["60-64",150388], + ["65-69",166251], + ["70-74",178709], + ["75-79",144942], + ["80-84",106911], + ["85+",111248] + ] +} diff --git a/data/lifespan/australia/health/illness/au-health-condition-3plus.json b/data/lifespan/australia/health/illness/au-health-condition-3plus.json new file mode 100644 index 0000000..c3f6276 --- /dev/null +++ b/data/lifespan/australia/health/illness/au-health-condition-3plus.json @@ -0,0 +1,40 @@ +{ + "metadata" : { + "name" : "Three Or More Long-Term Health Conditions", + "description" : "People with at three or more long-term health conditions.", + "units" : "people", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","illness"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.health.conditions.3plus"], + ["0-4",194], + ["5-9",343], + ["10-14",693], + ["15-19",1534], + ["20-24",3730], + ["25-29",6063], + ["30-34",8580], + ["35-39",12567], + ["40-44",17817], + ["45-49",28021], + ["50-54",41901], + ["55-59",59780], + ["60-64",82324], + ["65-69",97440], + ["70-74",115201], + ["75-79",105812], + ["80-84",86967], + ["85+",103175] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-affective-disorder-female.json b/data/lifespan/australia/health/psychology/au-affective-disorder-female.json new file mode 100644 index 0000000..9d4c94d --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-affective-disorder-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Females With Affective Disorder", + "description" : "Percentage of the female population with 12-month affective disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.affective.disorder.female"], + ["16-24",0.19], + ["25-34",0.128], + ["35-44",0.066], + ["45-54",0.073], + ["55-64",0.049], + ["65-74",0.057], + ["75-85",0.004] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-affective-disorder-male.json b/data/lifespan/australia/health/psychology/au-affective-disorder-male.json new file mode 100644 index 0000000..a9adf6f --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-affective-disorder-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Males With Affective Disorder", + "description" : "Percentage of the male population with 12-month affective disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.affective.disorder.male"], + ["16-24",0.088], + ["25-34",0.096], + ["35-44",0.05], + ["45-54",0.051], + ["55-64",0.063], + ["65-74",0.03], + ["75-85",0] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-anxiety-disorder-female.json b/data/lifespan/australia/health/psychology/au-anxiety-disorder-female.json new file mode 100644 index 0000000..c6adca8 --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-anxiety-disorder-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Females With Anxiety Disorder", + "description" : "Percentage of the female population with 12-month anxiety disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.anxiety.disorder.female"], + ["16-24",0.413], + ["25-34",0.285], + ["35-44",0.181], + ["45-54",0.199], + ["55-64",0.166], + ["65-74",0.097], + ["75-85",0.051] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-anxiety-disorder-male.json b/data/lifespan/australia/health/psychology/au-anxiety-disorder-male.json new file mode 100644 index 0000000..0df60da --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-anxiety-disorder-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Males With Anxiety Disorder", + "description" : "Percentage of the male population with 12-month anxiety disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.anxiety.disorder.male"], + ["16-24",0.214], + ["25-34",0.15], + ["35-44",0.122], + ["45-54",0.111], + ["55-64",0.102], + ["65-74",0.064], + ["75-85",0.045] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-binge-eating-female.json b/data/lifespan/australia/health/psychology/au-binge-eating-female.json new file mode 100644 index 0000000..30af15c --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-binge-eating-female.json @@ -0,0 +1,25 @@ +{ + "metadata" : { + "name" : "Females Who Binge-Eat", + "description" : "Percentage of the female population who binge-eats.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","diet","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.binge.eating.female"], + ["16-34",0.098], + ["35-64",0.07], + ["65-85",0.031] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-binge-eating-male.json b/data/lifespan/australia/health/psychology/au-binge-eating-male.json new file mode 100644 index 0000000..a57a7b6 --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-binge-eating-male.json @@ -0,0 +1,25 @@ +{ + "metadata" : { + "name" : "Males Who Binge-Eat", + "description" : "Percentage of the male population who binge-eats.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","diet","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.binge.eating.male"], + ["16-34",0.038], + ["35-64",0.028], + ["65-85",0.005] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-mental-disorder-female.json b/data/lifespan/australia/health/psychology/au-mental-disorder-female.json new file mode 100644 index 0000000..06ddac4 --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-mental-disorder-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Females With A Mental Disorder", + "description" : "Percentage of the female population with any 12-month mental disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.mental.disorder.female"], + ["16-24",0.466], + ["25-34",0.321], + ["35-44",0.207], + ["45-54",0.243], + ["55-64",0.189], + ["65-74",0.131], + ["75-85",0.049] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-mental-disorder-male.json b/data/lifespan/australia/health/psychology/au-mental-disorder-male.json new file mode 100644 index 0000000..e85ebc3 --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-mental-disorder-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Males With A Mental Disorder", + "description" : "Percentage of the male population with any 12-month mental disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.mental.disorder.male"], + ["16-24",0.312], + ["25-34",0.219], + ["35-44",0.185], + ["45-54",0.165], + ["55-64",0.146], + ["65-74",0.095], + ["75-85",0.028] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-mental-disorder.json b/data/lifespan/australia/health/psychology/au-mental-disorder.json new file mode 100644 index 0000000..7c4e9e2 --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-mental-disorder.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "People With A Mental Disorder", + "description" : "Percentage of the population with any 12-month mental disorder.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.mental.disorder"], + ["16-24",0.396], + ["25-34",0.271], + ["35-44",0.197], + ["45-54",0.21], + ["55-64",0.171], + ["65-74",0.114], + ["75-85",0.037] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-psychological-stress-female.json b/data/lifespan/australia/health/psychology/au-psychological-stress-female.json new file mode 100644 index 0000000..c4daa88 --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-psychological-stress-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Females With High Psychological Stress", + "description" : "Percentage of the female population who experience high or very-high psychological stress acording to the Kessler Psychological Stress Scale (k10).", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","stress","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/mental-health/2017-18" + ] + }, + "data" : [ + ["age.bin","au.psychological.stress.female"], + ["18-24",0.184], + ["25-34",0.147], + ["35-44",0.137], + ["45-54",0.153], + ["55-64",0.169], + ["65-74",0.113], + ["75+",0.097] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-psychological-stress-male.json b/data/lifespan/australia/health/psychology/au-psychological-stress-male.json new file mode 100644 index 0000000..62b3911 --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-psychological-stress-male.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Males With High Psychological Stress", + "description" : "Percentage of the male population who experience high or very-high psychological stress acording to the Kessler Psychological Stress Scale (k10).", + "units" : "%", + "year" : "2018", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","stress","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/mental-health/2017-18" + ] + }, + "data" : [ + ["age.bin","au.psychological.stress.male"], + ["18-24",0.124], + ["25-34",0.118], + ["35-44",0.103], + ["45-54",0.132], + ["55-64",0.121], + ["65-74",0.1], + ["75+",0.075] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-selfharm-female.json b/data/lifespan/australia/health/psychology/au-selfharm-female.json new file mode 100644 index 0000000..b4cb93a --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-selfharm-female.json @@ -0,0 +1,25 @@ +{ + "metadata" : { + "name" : "Females Who Self-Harm", + "description" : "Percentage of the female population who self-harm.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","suicide","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.selfharm.female"], + ["16-34",0.247], + ["35-64",0.066], + ["65-85",0.011] + ] +} diff --git a/data/lifespan/australia/health/psychology/au-selfharm-male.json b/data/lifespan/australia/health/psychology/au-selfharm-male.json new file mode 100644 index 0000000..1761dff --- /dev/null +++ b/data/lifespan/australia/health/psychology/au-selfharm-male.json @@ -0,0 +1,25 @@ +{ + "metadata" : { + "name" : "Males Who Self-Harm", + "description" : "Percentage of the male population who self-harm.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","suicide","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/mental-health/national-study-mental-health-and-wellbeing/2020-21" + ] + }, + "data" : [ + ["age.bin","au.selfharm.male"], + ["16-34",0.124], + ["35-64",0.038], + ["65-85",0.007] + ] +} diff --git a/data/lifespan/australia/health/psychology/au.mental-behavioural-issues-female.json b/data/lifespan/australia/health/psychology/au.mental-behavioural-issues-female.json new file mode 100644 index 0000000..c09942d --- /dev/null +++ b/data/lifespan/australia/health/psychology/au.mental-behavioural-issues-female.json @@ -0,0 +1,30 @@ +{ + "metadata" : { + "name" : "Females With Mental And Behavioural Issues", + "description" : "Percentage of the female population with mental and behavioural issues.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","female","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/health-conditions-and-risks/health-conditions-prevalence/2020-21" + ] + }, + "data" : [ + ["age.bin","au.mental.behavioural.issues.female"], + ["0-14",0.118], + ["15-24",0.327], + ["25-34",0.317], + ["35-44",0.253], + ["45-54",0.25], + ["55-64",0.217], + ["65-74",0.172], + ["75+",0.162] + ] +} diff --git a/data/lifespan/australia/health/psychology/au.mental-behavioural-issues-male.json b/data/lifespan/australia/health/psychology/au.mental-behavioural-issues-male.json new file mode 100644 index 0000000..b1ded2c --- /dev/null +++ b/data/lifespan/australia/health/psychology/au.mental-behavioural-issues-male.json @@ -0,0 +1,30 @@ +{ + "metadata" : { + "name" : "Males With Mental And Behavioural Issues", + "description" : "Percentage of the male population with mental and behavioural issues.", + "units" : "%", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "Australia", + "categorty" : "health", + "tags" : ["lifespan","au","health","psychology","illness","male","gender"], + "authors" : [ + "Australian Bureau Of Statistics" + ], + "sources" : [ + "https://www.abs.gov.au/statistics/health/health-conditions-and-risks/health-conditions-prevalence/2020-21" + ] + }, + "data" : [ + ["age.bin","au.mental.behavioural.issues.male"], + ["0-14",0.14], + ["15-24",0.215], + ["25-34",0.185], + ["35-44",0.188], + ["45-54",0.194], + ["55-64",0.156], + ["65-74",0.141], + ["75+",0.157] + ] +} diff --git a/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-female.json b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-female.json new file mode 100644 index 0000000..084fc40 --- /dev/null +++ b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-female.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "OKCupid Female Looks Distance", + "description" : "Distance in years between actual female age and the ideal female age men want in a partner", + "units" : "years", + "year" : "2014", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "uncategorised", + "tags" : ["lifespan","generic","health","looks","aging","female","gender"], + "authors" : [ + "Christian Rudder / OKCupid" + ], + "sources" : [ + "https://www.dailymail.co.uk/femail/article-2751179/Are-girl-22-Then-don-t-bother-online-dating-Alarming-graph-shows-ages-attractive-opposite-sex.html" + ] + }, + "data" : [ + ["age","okcupid.looks.distance.female"], + [20,0], + [21,1], + [22,1], + [23,2], + [24,3], + [25,4], + [26,4], + [27,6], + [28,8], + [29,9], + [30,10], + [31,11], + [32,12], + [33,13], + [34,14], + [35,15], + [36,16], + [37,15], + [38,18], + [39,19], + [40,19], + [41,20], + [42,22], + [43,20], + [44,23], + [45,21], + [46,26], + [47,27], + [48,25], + [49,29], + [50,28] + ] +} diff --git a/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-male.json b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-male.json new file mode 100644 index 0000000..abb922e --- /dev/null +++ b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-male.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "OKCupid Male Looks Distance", + "description" : "Distance in years between actual male age and the ideal male age women want in a partner", + "units" : "years", + "year" : "2014", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "uncategorised", + "tags" : ["lifespan","generic","health","looks","aging","female","gender"], + "authors" : [ + "Christian Rudder / OKCupid" + ], + "sources" : [ + "https://www.dailymail.co.uk/femail/article-2751179/Are-girl-22-Then-don-t-bother-online-dating-Alarming-graph-shows-ages-attractive-opposite-sex.html" + ] + }, + "data" : [ + ["age","ok.cupid.looks.distance.male"], + [20,3], + [21,2], + [22,2], + [23,2], + [24,1], + [25,1], + [26,1], + [27,1], + [28,1], + [29,0], + [30,0], + [31,0], + [32,1], + [33,1], + [34,2], + [35,1], + [36,1], + [37,1], + [38,1], + [39,1], + [40,2], + [41,3], + [42,3], + [43,4], + [44,5], + [45,5], + [46,8], + [47,8], + [48,8], + [49,4], + [50,4] + ] +} diff --git a/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-female.json b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-female.json new file mode 100644 index 0000000..e0252f5 --- /dev/null +++ b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-female.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "OKCupid Female Preference For Male Age", + "description" : "Female preference for the age of a potential male partner based on online dating photographs", + "units" : "age", + "year" : "2014", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "uncategorised", + "tags" : ["lifespan","generic","health","looks","aging","female","gender"], + "authors" : [ + "Christian Rudder / OKCupid" + ], + "sources" : [ + "https://www.dailymail.co.uk/femail/article-2751179/Are-girl-22-Then-don-t-bother-online-dating-Alarming-graph-shows-ages-attractive-opposite-sex.html" + ] + }, + "data" : [ + ["age","okcupid.looks.preference.female"], + [20,23], + [21,23], + [22,24], + [23,25], + [24,25], + [25,26], + [26,27], + [27,28], + [28,29], + [29,29], + [30,30], + [31,31], + [32,31], + [33,32], + [34,32], + [35,34], + [36,35], + [37,36], + [38,37], + [39,38], + [40,38], + [41,38], + [42,39], + [43,39], + [44,39], + [45,40], + [46,38], + [47,39], + [48,40], + [49,45], + [50,46] + ] +} diff --git a/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-male.json b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-male.json new file mode 100644 index 0000000..0aca612 --- /dev/null +++ b/data/lifespan/generic/dating/okcupid/okcupid-looks-preference-male.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "OKCupid Male Preference For Female Age", + "description" : "Male preference for the age of a potential female partner based on online dating photographs", + "units" : "age", + "year" : "2014", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "uncategorised", + "tags" : ["lifespan","generic","health","looks","aging","male","gender"], + "authors" : [ + "Christian Rudder / OKCupid" + ], + "sources" : [ + "https://www.dailymail.co.uk/femail/article-2751179/Are-girl-22-Then-don-t-bother-online-dating-Alarming-graph-shows-ages-attractive-opposite-sex.html" + ] + }, + "data" : [ + ["age","okcupid.looks.preference.male"], + [20,20], + [21,20], + [22,21], + [23,21], + [24,21], + [25,21], + [26,22], + [27,21], + [28,20], + [29,20], + [30,20], + [31,20], + [32,20], + [33,20], + [34,20], + [35,20], + [36,20], + [37,22], + [38,20], + [39,20], + [40,21], + [41,21], + [42,20], + [43,23], + [44,21], + [45,24], + [46,20], + [47,20], + [48,23], + [49,20], + [50,22] + ] +} diff --git a/data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-female.json b/data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-female.json new file mode 100644 index 0000000..96a6a24 --- /dev/null +++ b/data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-female.json @@ -0,0 +1,50 @@ +{ + "metadata" : { + "name" : "Cumulative Female Facial Aging Trajectory", + "description" : "Cumulative rate of female facial aging, estimated as the average amount of facial shape change in Procrustes distance.", + "units" : "procrustes distance", + "year" : "2019", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","generic","health","looks","aging","female","gender"], + "authors" : [ + "Sonja Windhager", + "Philipp Mitteroecker", + "Ivana Rupić", + "Tomislav Lauc", + "Ozren Polašek", + "Katrin Schaefer" + ], + "sources" : [ + "https://onlinelibrary.wiley.com/doi/full/10.1002/ajpa.23878" + ] + }, + "data" : [ + ["age","aging.facial.trajectory.cumulative.female"], + [43,0.00225666666666667], + [44,0.00446666666666667], + [45,0.00657166666666667], + [46,0.00857166666666667], + [47,0.0108216666666667], + [48,0.0133216666666667], + [49,0.0157966666666667], + [50,0.0182466666666667], + [51,0.0205166666666667], + [52,0.0226066666666667], + [53,0.0250366666666667], + [54,0.0278066666666667], + [55,0.0314066666666667], + [56,0.0361466666666667], + [57,0.0406066666666667], + [58,0.0446066666666667], + [59,0.0480466666666667], + [60,0.0510416666666667], + [61,0.0535916666666667], + [62,0.0558416666666667], + [63,0.0582416666666667], + [64,0.0607916666666667], + [65,0.0644316666666667] + ] +} diff --git a/data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-male.json b/data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-male.json new file mode 100644 index 0000000..07df50b --- /dev/null +++ b/data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-male.json @@ -0,0 +1,50 @@ +{ + "metadata" : { + "name" : "Cumulative Male Facial Aging Trajectory", + "description" : "Cumulative rate of male facial aging, estimated as the average amount of facial shape change in Procrustes distance.", + "units" : "procrustes distance", + "year" : "2019", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","generic","health","looks","aging","male","gender"], + "authors" : [ + "Sonja Windhager", + "Philipp Mitteroecker", + "Ivana Rupić", + "Tomislav Lauc", + "Ozren Polašek", + "Katrin Schaefer" + ], + "sources" : [ + "https://onlinelibrary.wiley.com/doi/full/10.1002/ajpa.23878" + ] + }, + "data" : [ + ["age","aging.facial.trajectory.cumulative.male"], + [43,0.0016], + [44,0.003225], + [45,0.004875], + [46,0.00655], + [47,0.0082625], + [48,0.0100125], + [49,0.0116375], + [50,0.0131375], + [51,0.0143675], + [52,0.0153275], + [53,0.0164325], + [54,0.0176825], + [55,0.0187075], + [56,0.0195075], + [57,0.0203575], + [58,0.0212575], + [59,0.0223575], + [60,0.0235275], + [61,0.0247675], + [62,0.0259725], + [63,0.0271425], + [64,0.0289625], + [65,0.0311891666666667] + ] +} diff --git a/data/lifespan/generic/health/aging/facial-aging-trajectory-female.json b/data/lifespan/generic/health/aging/facial-aging-trajectory-female.json new file mode 100644 index 0000000..0f38a61 --- /dev/null +++ b/data/lifespan/generic/health/aging/facial-aging-trajectory-female.json @@ -0,0 +1,43 @@ +{ + "metadata" : { + "name" : "Female Facial Aging Trajectory", + "description" : "Rate of female facial aging, estimated as the average amount of facial shape change in Procrustes distance per year.", + "units" : "procrustes distance per-year", + "year" : "2019", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","generic","health","looks","aging","female","gender"], + "authors" : [ + "Sonja Windhager", + "Philipp Mitteroecker", + "Ivana Rupić", + "Tomislav Lauc", + "Ozren Polašek", + "Katrin Schaefer" + ], + "sources" : [ + "https://onlinelibrary.wiley.com/doi/full/10.1002/ajpa.23878" + ] + }, + "data" : [ + ["age","aging.facial.trajectory.female"], + [41,0.00235], + [43.5,0.00221], + [45.7,0.002], + [48,0.0025], + [49.7,0.00245], + [51.7,0.00209], + [53.5,0.00277], + [55,0.0036], + [56.3,0.00474], + [57.4,0.00446], + [58.4,0.004], + [59.4,0.00344], + [60.7,0.00255], + [62,0.00225], + [63.5,0.00255], + [65,0.00364] + ] +} diff --git a/data/lifespan/generic/health/aging/facial-aging-trajectory-male.json b/data/lifespan/generic/health/aging/facial-aging-trajectory-male.json new file mode 100644 index 0000000..beccd9b --- /dev/null +++ b/data/lifespan/generic/health/aging/facial-aging-trajectory-male.json @@ -0,0 +1,41 @@ +{ + "metadata" : { + "name" : "Male Facial Aging Trajectory", + "description" : "Rate of male facial aging, estimated as the average amount of facial shape change in Procrustes distance per year.", + "units" : "procrustes distance per-year", + "year" : "2019", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","generic","health","looks","aging","male","gender"], + "authors" : [ + "Sonja Windhager", + "Philipp Mitteroecker", + "Ivana Rupić", + "Tomislav Lauc", + "Ozren Polašek", + "Katrin Schaefer" + ], + "sources" : [ + "https://onlinelibrary.wiley.com/doi/full/10.1002/ajpa.23878" + ] + }, + "data" : [ + ["age","aging.facial.tragectory.male"], + [43,0.0016], + [45.5,0.001675], + [47.5,0.00175], + [49.5,0.0015], + [51.5,0.00096], + [53.5,0.00125], + [55.5,0.0008], + [57.9,0.0009], + [59.4,0.0011], + [61.4,0.00124], + [63,0.00117], + [64,0.00182], + [67,0.00304], + [68.5,0.00325] + ] +} diff --git a/data/lifespan/generic/health/fertility/female/fertility-female-pregnancy.json b/data/lifespan/generic/health/fertility/female/fertility-female-pregnancy.json new file mode 100644 index 0000000..365d081 --- /dev/null +++ b/data/lifespan/generic/health/fertility/female/fertility-female-pregnancy.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Likelyhood Of Becoming Pregnant Within 12 Months", + "description" : "Percentage likelyhood of becoming pregnant over a 12 month period.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","aging","female","gender"], + "authors" : [ + "Blitz Resultes" + ], + "sources" : [ + "https://www.blitzresults.com/en/fertility-by-age/" + ] + }, + "data" : [ + ["age.bin","fertility.female.pregnancy"], + ["20-24",0.86], + ["25-29",0.78], + ["30-34",0.63], + ["35-39",0.52], + ["40-45",0.36], + ["45-50",0.05], + ["50+",0.01] + ] +} diff --git a/data/lifespan/generic/health/fertility/female/fertility-female-sterility.json b/data/lifespan/generic/health/fertility/female/fertility-female-sterility.json new file mode 100644 index 0000000..f076270 --- /dev/null +++ b/data/lifespan/generic/health/fertility/female/fertility-female-sterility.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Likelyhood Of Being Medically Infertile", + "description" : "Percentage likelyhood of medically infertily.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","aging","female","gender"], + "authors" : [ + "Blitz Resultes" + ], + "sources" : [ + "https://www.blitzresults.com/en/fertility-by-age/" + ] + }, + "data" : [ + ["age.bin","fertility.female.sterility"], + ["20-24",0.03], + ["25-29",0.05], + ["30-34",0.08], + ["35-39",0.15], + ["40-45",0.32], + ["45-50",0.69], + ["50+",0.99] + ] +} diff --git a/data/lifespan/generic/health/fertility/male/fertility-male-semen-volume.json b/data/lifespan/generic/health/fertility/male/fertility-male-semen-volume.json new file mode 100644 index 0000000..22ba6f5 --- /dev/null +++ b/data/lifespan/generic/health/fertility/male/fertility-male-semen-volume.json @@ -0,0 +1,33 @@ +{ + "metadata" : { + "name" : "Semen Volume", + "description" : "Average volume of semen per ejaculation.", + "units" : "ml", + "year" : "2007", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","aging","male","gender"], + "authors" : [ + "E Levitas 1", + "E Lunenfeld", + "N Weisz", + "M Friger", + "G Potashnik" + ], + "sources" : [ + "https://pubmed.ncbi.nlm.nih.gov/17430422/" + ] + }, + "data" : [ + ["age.bin","fertility.male.semen.volume"], + ["<25",3.21], + ["25-30",3.38], + ["30-35",3.51], + ["35-40",3.44], + ["40-45",3.25], + ["45-55",2.81], + [">55",2.21] + ] +} diff --git a/data/lifespan/generic/health/fertility/male/fertility-male-sperm-concentration.json b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-concentration.json new file mode 100644 index 0000000..0a6e7c0 --- /dev/null +++ b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-concentration.json @@ -0,0 +1,33 @@ +{ + "metadata" : { + "name" : "Sperm Concentration", + "description" : "Concentration of sperm in millions per millilitre of ejaculate.", + "units" : "million/ml", + "year" : "2007", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","aging","male","gender"], + "authors" : [ + "E Levitas 1", + "E Lunenfeld", + "N Weisz", + "M Friger", + "G Potashnik" + ], + "sources" : [ + "https://pubmed.ncbi.nlm.nih.gov/17430422/" + ] + }, + "data" : [ + ["age.bin","fertility.male.sperm.concentration"], + ["<25",62.32], + ["25-30",64.28], + ["30-35",68.86], + ["35-40",67.51], + ["40-45",73.69], + ["45-55",77.26], + [">55",95.58] + ] +} diff --git a/data/lifespan/generic/health/fertility/male/fertility-male-sperm-motility.json b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-motility.json new file mode 100644 index 0000000..529fe16 --- /dev/null +++ b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-motility.json @@ -0,0 +1,33 @@ +{ + "metadata" : { + "name" : "Sperm Motility", + "description" : "Average swimming strength/ability of the sperm.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "lifesapn", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","aging","male","gender"], + "authors" : [ + "E Levitas 1", + "E Lunenfeld", + "N Weisz", + "M Friger", + "G Potashnik" + ], + "sources" : [ + "https://pubmed.ncbi.nlm.nih.gov/17430422/" + ] + }, + "data" : [ + ["age.bin","fertility.male.sperm.motility"], + ["<25",44.39], + ["25-30",42.34], + ["30-35",41.91], + ["35-40",39.29], + ["40-45",39.05], + ["45-55",37.38], + [">55",24.76] + ] +} diff --git a/data/lifespan/generic/health/fertility/male/fertility-male-sperm-totalcount.json b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-totalcount.json new file mode 100644 index 0000000..e34208e --- /dev/null +++ b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-totalcount.json @@ -0,0 +1,33 @@ +{ + "metadata" : { + "name" : "Total Sperm Count", + "description" : "Total sperm count as a function of semen volume multiplied by sperm concentration.", + "units" : "million sperm", + "year" : "2007", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","aging","male","gender"], + "authors" : [ + "E Levitas 1", + "E Lunenfeld", + "N Weisz", + "M Friger", + "G Potashnik" + ], + "sources" : [ + "https://pubmed.ncbi.nlm.nih.gov/17430422/" + ] + }, + "data" : [ + ["age.bin","fertility.male.sperm.totalcount"], + ["<25",194.41], + ["25-30",208.27], + ["30-35",228.59], + ["35-40",224.74], + ["40-45",225.38], + ["45-55",204.24], + [">55",173.13] + ] +} diff --git a/data/lifespan/generic/health/fertility/male/fertility-male-sperm-totalmotility.json b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-totalmotility.json new file mode 100644 index 0000000..16c4277 --- /dev/null +++ b/data/lifespan/generic/health/fertility/male/fertility-male-sperm-totalmotility.json @@ -0,0 +1,33 @@ +{ + "metadata" : { + "name" : "Total Sperm Motility", + "description" : "Potency of semen as a function of total sperm count multiplied by sperm motility.", + "units" : "index", + "year" : "2007", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","aging","male","gender"], + "authors" : [ + "E Levitas 1", + "E Lunenfeld", + "N Weisz", + "M Friger", + "G Potashnik" + ], + "sources" : [ + "https://pubmed.ncbi.nlm.nih.gov/17430422/" + ] + }, + "data" : [ + ["age.bin","fertility.male.sperm.totalmotility"], + ["<25",92.48], + ["25-30",95.25], + ["30-35",103.34], + ["35-40",97.05], + ["40-45",93.71], + ["45-55",82.89], + [">55",46.68] + ] +} diff --git a/data/lifespan/generic/health/hormones/estrogen-female.json b/data/lifespan/generic/health/hormones/estrogen-female.json new file mode 100644 index 0000000..7821b2b --- /dev/null +++ b/data/lifespan/generic/health/hormones/estrogen-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Female Estrogen Levels", + "description" : "Healthy level of estrogen in females.", + "units" : "pg/mL", + "year" : "2017", + "notes" : [ + "15-44 age bin represents puberty to menapause", + "E2 levels vary widely through the menstrual cycle." + ], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","health","hormones","female","gender"], + "authors" : [ + "Mayo Clinic Laboratories" + ], + "sources" : [ + "https://www.mayocliniclabs.com/test-catalog/overview/81816#Clinical-and-Interpretive" + ] + }, + "data" : [ + ["age.bin","estrogen.free.female"], + [7.1,10], + [10.5,12], + [11.6,30], + [12.3,50], + [14.5,182.5], + ["15-44",182.5], + ["44+",5] + ] +} diff --git a/data/lifespan/generic/health/hormones/estrogen-male.json b/data/lifespan/generic/health/hormones/estrogen-male.json new file mode 100644 index 0000000..6dee6ae --- /dev/null +++ b/data/lifespan/generic/health/hormones/estrogen-male.json @@ -0,0 +1,27 @@ +{ + "metadata" : { + "name" : "Male Estrogen Levels", + "description" : "Healthy level of estrogen in males.", + "units" : "pg/ml", + "year" : "2017", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","health","hormones","male","gender"], + "authors" : [ + "Mayo Clinic Laboratories" + ], + "sources" : [ + "https://www.mayocliniclabs.com/test-catalog/overview/81816#Clinical-and-Interpretive" + ] + }, + "data" : [ + ["age.bin","estrogen.free.male"], + [7.1,6.5], + [12.1,8], + [13.6,13], + [15.1,19], + ["18+",25] + ] +} diff --git a/data/lifespan/generic/health/hormones/testosterone-female.json b/data/lifespan/generic/health/hormones/testosterone-female.json new file mode 100644 index 0000000..bf80c87 --- /dev/null +++ b/data/lifespan/generic/health/hormones/testosterone-female.json @@ -0,0 +1,53 @@ +{ + "metadata" : { + "name" : "Female Testosterone Levels", + "description" : "Healthy level of testosterone in females.", + "units" : "ng/dL", + "year" : "2017", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","health","hormones","female","gender"], + "authors" : [ + "Mayo Clinic Laboratories" + ], + "sources" : [ + "https://www.mayocliniclabs.com/test-catalog/overview/83686#Clinical-and-Interpretive" + ] + }, + "data" : [ + ["age.bin","testosterone.free.female"], + ["0-0.08",0.19], + ["0.08-1",0.19], + ["1-4",0.13], + [5,0.13], + [6,0.14], + [7,0.18], + [8,0.235], + [9,0.295], + [10,0.36], + [11,0.425], + [12,0.485], + [13,0.545], + [14,0.595], + ["15-18",0.61], + [19,0.605], + ["20-25",0.605], + ["25-30",0.595], + ["30-35",0.58], + ["35-40",0.565], + ["40-45",0.555], + ["45-50",0.54], + ["50-55",0.525], + ["55-60",0.515], + ["60-65",0.5], + ["65-70",0.485], + ["70-75",0.475], + ["75-80",0.46], + ["80-85",0.445], + ["85-90",0.43], + ["90-95",0.42], + ["95-100",0.405] + ] +} diff --git a/data/lifespan/generic/health/hormones/testosterone-male.json b/data/lifespan/generic/health/hormones/testosterone-male.json new file mode 100644 index 0000000..db15a6c --- /dev/null +++ b/data/lifespan/generic/health/hormones/testosterone-male.json @@ -0,0 +1,52 @@ +{ + "metadata" : { + "name" : "Male Testosterone Levels", + "description" : "Healthy level of testosterone in males.", + "units" : "ng/dL", + "year" : "2017", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","health","hormones","male","gender"], + "authors" : [ + "Mayo Clinic Laboratories" + ], + "sources" : [ + "https://www.mayocliniclabs.com/test-catalog/overview/83686#Clinical-and-Interpretive" + ] + }, + "data" : [ + ["age.bin","testosterone.free.male"], + ["0-0.08",1.65], + ["0.08-1",1.65], + ["1-8",0.13], + [9,0.29], + [10,0.695], + [11,2.825], + [12,4.705], + [13,6.365], + [14,7.89], + [15,9.66], + [16,11.215], + [17,12.59], + [18,13.6], + [19,13.28], + ["20-25",12.975], + ["25-30",12.425], + ["30-35",11.925], + ["35-40",11.375], + ["40-45",10.78], + ["45-50",10.33], + ["50-55",9.83], + ["55-60",9.285], + ["60-65",8.785], + ["65-70",8.235], + ["70-75",7.74], + ["75-80",7.19], + ["80-85",6.69], + ["85-90",6.15], + ["90-95",5.625], + ["95-100",5.1] + ] +} diff --git a/data/lifespan/generic/health/lifetables/chance-of-death-female.json b/data/lifespan/generic/health/lifetables/chance-of-death-female.json new file mode 100644 index 0000000..77734bd --- /dev/null +++ b/data/lifespan/generic/health/lifetables/chance-of-death-female.json @@ -0,0 +1,143 @@ +{ + "metadata" : { + "name" : "Female Chance Of Death", + "description" : "Female chance of death within 12 months at given age.", + "units" : "%", + "year" : "2020", + "notes" : [], + "type" : "lifepsan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","health","life-expectancy","death","female","gender"], + "authors" : [ + "Felicitie C. Bell", + "Michael L. Miller" + ], + "sources" : [ + "https://www.ssa.gov/OACT/NOTES/as116/as116_Tbl_6_2020.html#wp1085674" + ] + }, + "data" : [ + ["age","chance.of.death.female"], + [0,0.004047], + [1,0.000323], + [2,0.00021], + [3,0.000157], + [4,0.000118], + [5,0.000112], + [6,0.000111], + [7,0.000109], + [8,0.000105], + [9,9.8e-05], + [10,9.2e-05], + [11,9.4e-05], + [12,0.000113], + [13,0.000153], + [14,0.000207], + [15,0.00027], + [16,0.000328], + [17,0.000369], + [18,0.000386], + [19,0.000384], + [20,0.000379], + [21,0.000381], + [22,0.000386], + [23,0.000399], + [24,0.000418], + [25,0.000439], + [26,0.000462], + [27,0.00049], + [28,0.000526], + [29,0.000568], + [30,0.000613], + [31,0.000663], + [32,0.000718], + [33,0.000778], + [34,0.000844], + [35,0.000916], + [36,0.000991], + [37,0.001065], + [38,0.001135], + [39,0.001205], + [40,0.001283], + [41,0.00137], + [42,0.001459], + [43,0.001549], + [44,0.001645], + [45,0.001754], + [46,0.001883], + [47,0.00203], + [48,0.002198], + [49,0.002391], + [50,0.002611], + [51,0.002861], + [52,0.00314], + [53,0.003452], + [54,0.003799], + [55,0.004197], + [56,0.004642], + [57,0.00512], + [58,0.005629], + [59,0.006182], + [60,0.006779], + [61,0.007455], + [62,0.008258], + [63,0.009213], + [64,0.010295], + [65,0.011511], + [66,0.012785], + [67,0.014027], + [68,0.015191], + [69,0.016344], + [70,0.01765], + [71,0.019166], + [72,0.020818], + [73,0.022617], + [74,0.024622], + [75,0.026993], + [76,0.029727], + [77,0.032706], + [78,0.03592], + [79,0.039502], + [80,0.043631], + [81,0.048475], + [82,0.054099], + [83,0.060597], + [84,0.067992], + [85,0.076276], + [86,0.085451], + [87,0.095529], + [88,0.106542], + [89,0.118533], + [90,0.131546], + [91,0.145617], + [92,0.160777], + [93,0.177046], + [94,0.194429], + [95,0.212034], + [96,0.229614], + [97,0.246897], + [98,0.263597], + [99,0.279413], + [100,0.296177], + [101,0.313948], + [102,0.332785], + [103,0.352752], + [104,0.373917], + [105,0.396352], + [106,0.420133], + [107,0.445341], + [108,0.472061], + [109,0.500385], + [110,0.530408], + [111,0.562233], + [112,0.595967], + [113,0.631725], + [114,0.669628], + [115,0.709806], + [116,0.746262], + [117,0.783575], + [118,0.822753], + [119,0.863891] + ] +} diff --git a/data/lifespan/generic/health/lifetables/chance-of-death-male.json b/data/lifespan/generic/health/lifetables/chance-of-death-male.json new file mode 100644 index 0000000..01fa1e0 --- /dev/null +++ b/data/lifespan/generic/health/lifetables/chance-of-death-male.json @@ -0,0 +1,143 @@ +{ + "metadata" : { + "name" : "Male Chance Of Death", + "description" : "Male chance of death within 12 months at given age.", + "units" : "%", + "year" : "2020", + "notes" : [], + "type" : "lifepsan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","health","life-expectancy","death","male","gender"], + "authors" : [ + "Felicitie C. Bell", + "Michael L. Miller" + ], + "sources" : [ + "https://www.ssa.gov/OACT/NOTES/as116/as116_Tbl_6_2020.html#wp1085674" + ] + }, + "data" : [ + ["age","chance.of.death.male"], + [0,0.004818], + [1,0.000369], + [2,0.000249], + [3,0.000207], + [4,0.000161], + [5,0.000147], + [6,0.000143], + [7,0.000138], + [8,0.000125], + [9,0.000105], + [10,8.9e-05], + [11,9.6e-05], + [12,0.000148], + [13,0.000256], + [14,0.000406], + [15,0.000571], + [16,0.000726], + [17,0.000858], + [18,0.000955], + [19,0.001023], + [20,0.001091], + [21,0.001159], + [22,0.001198], + [23,0.001201], + [24,0.00118], + [25,0.001147], + [26,0.001124], + [27,0.001128], + [28,0.001174], + [29,0.001252], + [30,0.001343], + [31,0.001432], + [32,0.001518], + [33,0.001595], + [34,0.00167], + [35,0.00175], + [36,0.001843], + [37,0.001956], + [38,0.002091], + [39,0.002246], + [40,0.002415], + [41,0.002591], + [42,0.002766], + [43,0.002937], + [44,0.003109], + [45,0.003302], + [46,0.003516], + [47,0.003731], + [48,0.003943], + [49,0.004166], + [50,0.004422], + [51,0.004725], + [52,0.00508], + [53,0.005493], + [54,0.005971], + [55,0.006526], + [56,0.007155], + [57,0.007846], + [58,0.008597], + [59,0.009428], + [60,0.010321], + [61,0.011336], + [62,0.01257], + [63,0.014066], + [64,0.015774], + [65,0.017692], + [66,0.019674], + [67,0.021553], + [68,0.023239], + [69,0.024853], + [70,0.026678], + [71,0.02882], + [72,0.031153], + [73,0.033703], + [74,0.036556], + [75,0.039864], + [76,0.043694], + [77,0.048024], + [78,0.052898], + [79,0.058404], + [80,0.064512], + [81,0.071423], + [82,0.079438], + [83,0.088696], + [84,0.099061], + [85,0.11031], + [86,0.122258], + [87,0.134795], + [88,0.147894], + [89,0.161602], + [90,0.175984], + [91,0.191108], + [92,0.20704], + [93,0.223828], + [94,0.24151], + [95,0.259188], + [96,0.276657], + [97,0.293699], + [98,0.310087], + [99,0.325592], + [100,0.341871], + [101,0.358965], + [102,0.376913], + [103,0.395759], + [104,0.415547], + [105,0.436324], + [106,0.45814], + [107,0.481047], + [108,0.505099], + [109,0.530354], + [110,0.556872], + [111,0.584716], + [112,0.613951], + [113,0.644649], + [114,0.676881], + [115,0.710725], + [116,0.746262], + [117,0.783575], + [118,0.822753], + [119,0.863891] + ] +} diff --git a/data/lifespan/generic/health/lifetables/life-expectancy-female.json b/data/lifespan/generic/health/lifetables/life-expectancy-female.json new file mode 100644 index 0000000..82b24c7 --- /dev/null +++ b/data/lifespan/generic/health/lifetables/life-expectancy-female.json @@ -0,0 +1,143 @@ +{ + "metadata" : { + "name" : "Female Life Expectancy", + "description" : "Female life expectancy at given age.", + "units" : "years", + "year" : "2020", + "notes" : [], + "type" : "lifepsan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","health","life-expectancy","death","female","gender"], + "authors" : [ + "Felicitie C. Bell", + "Michael L. Miller" + ], + "sources" : [ + "https://www.ssa.gov/OACT/NOTES/as116/as116_Tbl_6_2020.html#wp1085674" + ] + }, + "data" : [ + ["age","life.expectancy.female"], + [0,81.02], + [1,80.34], + [2,79.37], + [3,78.39], + [4,77.4], + [5,76.41], + [6,75.42], + [7,74.43], + [8,73.43], + [9,72.44], + [10,71.45], + [11,70.45], + [12,69.46], + [13,68.47], + [14,67.48], + [15,66.49], + [16,65.51], + [17,64.53], + [18,63.56], + [19,62.58], + [20,61.6], + [21,60.63], + [22,59.65], + [23,58.67], + [24,57.7], + [25,56.72], + [26,55.74], + [27,54.77], + [28,53.8], + [29,52.83], + [30,51.85], + [31,50.89], + [32,49.92], + [33,48.96], + [34,47.99], + [35,47.03], + [36,46.08], + [37,45.12], + [38,44.17], + [39,43.22], + [40,42.27], + [41,41.32], + [42,40.38], + [43,39.44], + [44,38.5], + [45,37.56], + [46,36.63], + [47,35.69], + [48,34.77], + [49,33.84], + [50,32.92], + [51,32.01], + [52,31.1], + [53,30.19], + [54,29.3], + [55,28.41], + [56,27.52], + [57,26.65], + [58,25.78], + [59,24.93], + [60,24.08], + [61,23.24], + [62,22.41], + [63,21.59], + [64,20.79], + [65,20], + [66,19.23], + [67,18.47], + [68,17.73], + [69,16.99], + [70,16.26], + [71,15.55], + [72,14.84], + [73,14.15], + [74,13.46], + [75,12.79], + [76,12.13], + [77,11.49], + [78,10.86], + [79,10.24], + [80,9.65], + [81,9.06], + [82,8.5], + [83,7.96], + [84,7.44], + [85,6.94], + [86,6.48], + [87,6.03], + [88,5.62], + [89,5.23], + [90,4.86], + [91,4.53], + [92,4.21], + [93,3.92], + [94,3.66], + [95,3.42], + [96,3.21], + [97,3.02], + [98,2.84], + [99,2.68], + [100,2.52], + [101,2.37], + [102,2.23], + [103,2.1], + [104,1.97], + [105,1.84], + [106,1.72], + [107,1.61], + [108,1.5], + [109,1.4], + [110,1.3], + [111,1.21], + [112,1.12], + [113,1.04], + [114,0.96], + [115,0.88], + [116,0.82], + [117,0.76], + [118,0.7], + [119,0.65] + ] +} diff --git a/data/lifespan/generic/health/lifetables/life-expectancy-male.json b/data/lifespan/generic/health/lifetables/life-expectancy-male.json new file mode 100644 index 0000000..5e262a7 --- /dev/null +++ b/data/lifespan/generic/health/lifetables/life-expectancy-male.json @@ -0,0 +1,143 @@ +{ + "metadata" : { + "name" : "Male Life Expectancy", + "description" : "Male life expectancy at given age.", + "units" : "years", + "year" : "2020", + "notes" : [], + "type" : "lifepsan", + "scope" : "Male", + "categorty" : "health", + "tags" : ["lifespan","health","life-expectancy","death","male","gender"], + "authors" : [ + "Felicitie C. Bell", + "Michael L. Miller" + ], + "sources" : [ + "https://www.ssa.gov/OACT/NOTES/as116/as116_Tbl_6_2020.html#wp1085674" + ] + }, + "data" : [ + ["age","life.expectancy.male"], + [0,76], + [1,75.36], + [2,74.39], + [3,73.41], + [4,72.42], + [5,71.44], + [6,70.45], + [7,69.46], + [8,68.47], + [9,67.47], + [10,66.48], + [11,65.49], + [12,64.49], + [13,63.5], + [14,62.52], + [15,61.54], + [16,60.58], + [17,59.62], + [18,58.67], + [19,57.73], + [20,56.79], + [21,55.85], + [22,54.91], + [23,53.98], + [24,53.04], + [25,52.11], + [26,51.16], + [27,50.22], + [28,49.28], + [29,48.34], + [30,47.4], + [31,46.46], + [32,45.52], + [33,44.59], + [34,43.66], + [35,42.74], + [36,41.81], + [37,40.89], + [38,39.96], + [39,39.05], + [40,38.13], + [41,37.23], + [42,36.32], + [43,35.42], + [44,34.52], + [45,33.63], + [46,32.74], + [47,31.85], + [48,30.97], + [49,30.09], + [50,29.21], + [51,28.34], + [52,27.47], + [53,26.61], + [54,25.76], + [55,24.91], + [56,24.07], + [57,23.24], + [58,22.42], + [59,21.61], + [60,20.81], + [61,20.02], + [62,19.24], + [63,18.48], + [64,17.74], + [65,17.02], + [66,16.31], + [67,15.63], + [68,14.96], + [69,14.31], + [70,13.66], + [71,13.02], + [72,12.39], + [73,11.77], + [74,11.17], + [75,10.57], + [76,9.99], + [77,9.42], + [78,8.87], + [79,8.34], + [80,7.83], + [81,7.33], + [82,6.86], + [83,6.41], + [84,5.98], + [85,5.59], + [86,5.22], + [87,4.87], + [88,4.56], + [89,4.26], + [90,3.98], + [91,3.73], + [92,3.49], + [93,3.27], + [94,3.07], + [95,2.89], + [96,2.73], + [97,2.58], + [98,2.45], + [99,2.32], + [100,2.2], + [101,2.09], + [102,1.98], + [103,1.87], + [104,1.77], + [105,1.67], + [106,1.58], + [107,1.49], + [108,1.4], + [109,1.31], + [110,1.23], + [111,1.16], + [112,1.08], + [113,1.01], + [114,0.95], + [115,0.88], + [116,0.82], + [117,0.76], + [118,0.7], + [119,0.65] + ] +} diff --git a/data/lifespan/generic/health/pregancy-complications/female/pregnancy-female-downsyndrome-birth.json b/data/lifespan/generic/health/pregancy-complications/female/pregnancy-female-downsyndrome-birth.json new file mode 100644 index 0000000..c8770bb --- /dev/null +++ b/data/lifespan/generic/health/pregancy-complications/female/pregnancy-female-downsyndrome-birth.json @@ -0,0 +1,40 @@ +{ + "metadata" : { + "name" : "Likely Of Birth With Downsyndrome", + "description" : "Percentage likelyhood of a live birth with downsyndrome by maternal age.", + "units" : "%", + "year" : "1983", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","pregnancy-complication","female","gender"], + "authors" : [ + "Downsyndrome Health Issues" + ], + "sources" : [ + "http://www.ds-health.com/risk.htm" + ] + }, + "data" : [ + ["age.bin","pregnancy.female.downsyndrome.birth"], + ["15-19",0.0008], + ["20-24",0.000714285714285714], + ["25-29",0.000909090909090909], + ["30-31",0.00111111111111111], + [32,0.00133333333333333], + [33,0.0016], + [34,0.002], + [35,0.00285714285714286], + [36,0.00363636363636364], + [37,0.00444444444444444], + [38,0.00571428571428571], + [39,0.00714285714285714], + [40,0.01], + [41,0.0117647058823529], + [42,0.0153846153846154], + [43,0.02], + [44,0.025], + ["45+",0.04] + ] +} diff --git a/data/lifespan/generic/health/pregancy-complications/female/pregnancy-female-downsyndrome-fetus.json b/data/lifespan/generic/health/pregancy-complications/female/pregnancy-female-downsyndrome-fetus.json new file mode 100644 index 0000000..bcbc15f --- /dev/null +++ b/data/lifespan/generic/health/pregancy-complications/female/pregnancy-female-downsyndrome-fetus.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Likely Of Fetus With Downsyndrom", + "description" : "Percentage likelyhood of a fetus with downsyndrome by maternal age.", + "units" : "%", + "year" : "1983", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "health", + "tags" : ["lifespan","generic","health","fertility","complications","female","gender"], + "authors" : [ + "Downsyndrome Health Issues" + ], + "sources" : [ + "http://www.ds-health.com/risk.htm" + ] + }, + "data" : [ + ["age.bin","pregnancy.female.downsyndrome.fetus"], + [33,0.00238095238095238], + [34,0.00307692307692308], + [35,0.004], + [36,0.005], + [37,0.00666666666666667], + [38,0.00833333333333333], + [39,0.01], + [40,0.0133333333333333], + [41,0.0166666666666667], + [42,0.0222222222222222], + [43,0.0285714285714286], + [44,0.0333333333333333], + ["45+",0.05] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-absent-female.json b/data/lifespan/united-states/culture/marriage/us-marriage-absent-female.json new file mode 100644 index 0000000..1f07522 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-absent-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Females Married With An Absent Spouse", + "description" : "Percentage of female population married with an absent spouse by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.absent.female"], + ["18-19",0.005744256], + ["20-24",0.011084568], + ["25-29",0.017682289], + ["30-34",0.015206813], + ["35-39",0.017832098], + ["40-44",0.015692693], + ["45-54",0.014915464], + ["55-64",0.011955872], + ["65-74",0.008476089], + ["75+",0.012197428] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-absent-male.json b/data/lifespan/united-states/culture/marriage/us-marriage-absent-male.json new file mode 100644 index 0000000..390a775 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-absent-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Males Married With An Absent Spouse", + "description" : "Percentage of male population married with an absent spouse by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.absent.male"], + ["18-19",0.00530504], + ["20-24",0.008054697], + ["25-29",0.020135457], + ["30-34",0.019264269], + ["35-39",0.019298777], + ["40-44",0.019765955], + ["45-54",0.016851095], + ["55-64",0.014369847], + ["65-74",0.012434488], + ["75+",0.016581633] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-divorced-female.json b/data/lifespan/united-states/culture/marriage/us-marriage-divorced-female.json new file mode 100644 index 0000000..41c4bbe --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-divorced-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Females Divorced", + "description" : "Percentage of female population divorced by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","divorce","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.divorced.female"], + ["18-19",0.004495504], + ["20-24",0.013951266], + ["25-29",0.0425896], + ["30-34",0.086577453], + ["35-39",0.119915849], + ["40-44",0.144507558], + ["45-54",0.172125343], + ["55-64",0.178468561], + ["65-74",0.149536046], + ["75+",0.069591528] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-divorced-male.json b/data/lifespan/united-states/culture/marriage/us-marriage-divorced-male.json new file mode 100644 index 0000000..2d2cde2 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-divorced-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Males Divorced", + "description" : "Percentage of male population divorced by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","divorce","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.divorced.male"], + ["18-19",0.003375934], + ["20-24",0.004589304], + ["25-29",0.029104887], + ["30-34",0.060764423], + ["35-39",0.088814792], + ["40-44",0.110040319], + ["45-54",0.140640066], + ["55-64",0.145170789], + ["65-74",0.110060631], + ["75+",0.055697279] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-married-female.json b/data/lifespan/united-states/culture/marriage/us-marriage-married-female.json new file mode 100644 index 0000000..04d84c4 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-married-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Females Currently Married", + "description" : "Percentage of female population currently married by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.married.female"], + ["18-19",0.04045954], + ["20-24",0.191973244], + ["25-29",0.475995817], + ["30-34",0.637570965], + ["35-39",0.693548387], + ["40-44",0.70145374], + ["45-54",0.683013189], + ["55-64",0.668604967], + ["65-74",0.559421842], + ["75+",0.323184569] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-married-male.json b/data/lifespan/united-states/culture/marriage/us-marriage-married-male.json new file mode 100644 index 0000000..a7d04ce --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-married-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Males Currently Married", + "description" : "Percentage of male population currently married by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.married.male"], + ["18-19",0.021702435], + ["20-24",0.108176454], + ["25-29",0.34660443], + ["30-34",0.571472487], + ["35-39",0.673436395], + ["40-44",0.680401219], + ["45-54",0.697277194], + ["55-64",0.738810365], + ["65-74",0.780187031], + ["75+",0.697562358] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-never-female.json b/data/lifespan/united-states/culture/marriage/us-marriage-never-female.json new file mode 100644 index 0000000..b851109 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-never-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Females Never Married", + "description" : "Percentage of female population never married by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.never.female"], + ["18-19",0.953046953], + ["20-24",0.792737697], + ["25-29",0.477802072], + ["30-34",0.271492295], + ["35-39",0.177118814], + ["40-44",0.13767209], + ["45-54",0.109719395], + ["55-64",0.071463507], + ["65-74",0.051391863], + ["75+",0.038577912] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-never-male.json b/data/lifespan/united-states/culture/marriage/us-marriage-never-male.json new file mode 100644 index 0000000..ed382c0 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-never-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Males Never Married", + "description" : "Percentage of male population never married by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.never.male"], + ["18-19",0.974198216], + ["20-24",0.886859605], + ["25-29",0.622368662], + ["30-34",0.364893944], + ["35-39",0.234818632], + ["40-44",0.204346543], + ["45-54",0.149042656], + ["55-64",0.090989399], + ["65-74",0.045319083], + ["75+",0.034580499] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-present-female.json b/data/lifespan/united-states/culture/marriage/us-marriage-present-female.json new file mode 100644 index 0000000..7c617a0 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-present-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Females Married With A Present Spouse", + "description" : "Percentage of female population married with a present spouse by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.present.female"], + ["18-19",0.023976024], + ["20-24",0.163210702], + ["25-29",0.423139082], + ["30-34",0.583231955], + ["35-39",0.637347225], + ["40-44",0.650139598], + ["45-54",0.634637514], + ["55-64",0.633824249], + ["65-74",0.537473233], + ["75+",0.303801059] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-present-male.json b/data/lifespan/united-states/culture/marriage/us-marriage-present-male.json new file mode 100644 index 0000000..5a935aa --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-present-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Males Married With A Present Spouse", + "description" : "Percentage of male population married with a present spouse by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.present.male"], + ["18-19",0.010851218], + ["20-24",0.088601667], + ["25-29",0.305967417], + ["30-34",0.527000717], + ["35-39",0.62493685], + ["40-44",0.632215557], + ["45-54",0.655677487], + ["55-64",0.704240283], + ["65-74",0.751824067], + ["75+",0.66935941] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-separated-female.json b/data/lifespan/united-states/culture/marriage/us-marriage-separated-female.json new file mode 100644 index 0000000..cf10757 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-separated-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Females Married But Separated", + "description" : "Percentage of female population married but separated by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.separated.female"], + ["18-19",0.010739261], + ["20-24",0.017677974], + ["25-29",0.035174446], + ["30-34",0.039132198], + ["35-39",0.038369064], + ["40-44",0.03562145], + ["45-54",0.033460211], + ["55-64",0.022824846], + ["65-74",0.01347252], + ["75+",0.007186082] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-separated-male.json b/data/lifespan/united-states/culture/marriage/us-marriage-separated-male.json new file mode 100644 index 0000000..7c88e19 --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-separated-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Males Married But Separated", + "description" : "Percentage of male population married but separated by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.separated.male"], + ["18-19",0.005546178], + ["20-24",0.01152009], + ["25-29",0.020501556], + ["30-34",0.025207501], + ["35-39",0.029200768], + ["40-44",0.028419707], + ["45-54",0.024748611], + ["55-64",0.020200236], + ["65-74",0.015928476], + ["75+",0.011621315] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-widowed-female.json b/data/lifespan/united-states/culture/marriage/us-marriage-widowed-female.json new file mode 100644 index 0000000..81f324e --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-widowed-female.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Females Widowed", + "description" : "Percentage of female population married but widowed by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.widowed.female"], + ["18-19",0.002247752], + ["20-24",0.001337793], + ["25-29",0.003707577], + ["30-34",0.004460665], + ["35-39",0.009416951], + ["40-44",0.016366612], + ["45-54",0.035142073], + ["55-64",0.081462964], + ["65-74",0.23965025], + ["75+",0.568551437] + ] +} diff --git a/data/lifespan/united-states/culture/marriage/us-marriage-widowed-male.json b/data/lifespan/united-states/culture/marriage/us-marriage-widowed-male.json new file mode 100644 index 0000000..72b83ff --- /dev/null +++ b/data/lifespan/united-states/culture/marriage/us-marriage-widowed-male.json @@ -0,0 +1,32 @@ +{ + "metadata" : { + "name" : "Males Widowed", + "description" : "Percentage of male population married but widowed by age", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["lifespan","us","culture","marriage","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www2.census.gov/library/publications/2011/compendia/statab/131ed/tables/12s0057.xls" + ] + }, + "data" : [ + ["age.bin","us.marriage.widowed.male"], + ["18-19",0.000723415], + ["20-24",0.000280978], + ["25-29",0.001922021], + ["30-34",0.002869146], + ["35-39",0.002930181], + ["40-44",0.00511358], + ["45-54",0.013040084], + ["55-64",0.024970554], + ["65-74",0.064433255], + ["75+",0.212159864] + ] +} diff --git a/data/lifespan/united-states/culture/religion/us-religion-christian.json b/data/lifespan/united-states/culture/religion/us-religion-christian.json new file mode 100644 index 0000000..015b6c2 --- /dev/null +++ b/data/lifespan/united-states/culture/religion/us-religion-christian.json @@ -0,0 +1,42 @@ +{ + "metadata" : { + "name" : "Christian", + "description" : "Percentage of the population who identify as a Christian denomination.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Pew Research" + ], + "sources" : [ + "https://www.pewresearch.org/religion/2022/09/13/how-u-s-religious-composition-has-changed-in-recent-decades/" + ] + }, + "data" : [ + ["age.bin","us.religion.christian"], + ["0-4",0.57], + ["5-9",0.59], + ["10-14",0.62], + ["15-19",0.54], + ["20-24",0.49], + ["25-29",0.51], + ["30-34",0.54], + ["35-39",0.58], + ["40-44",0.62], + ["45-49",0.67], + ["50-54",0.71], + ["55-59",0.74], + ["60-64",0.76], + ["65-69",0.78], + ["70-74",0.79], + ["75-79",0.81], + ["80-84",0.83], + ["85-89",0.85], + ["90-94",0.87], + ["95+",0.89] + ] +} diff --git a/data/lifespan/united-states/culture/religion/us-religion-none.json b/data/lifespan/united-states/culture/religion/us-religion-none.json new file mode 100644 index 0000000..e960024 --- /dev/null +++ b/data/lifespan/united-states/culture/religion/us-religion-none.json @@ -0,0 +1,42 @@ +{ + "metadata" : { + "name" : "No Religion", + "description" : "Percentage of the population who identify as non-religious.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Pew Research" + ], + "sources" : [ + "https://www.pewresearch.org/religion/2022/09/13/how-u-s-religious-composition-has-changed-in-recent-decades/" + ] + }, + "data" : [ + ["age.bin","us.religion.none"], + ["0-4",0.37], + ["5-9",0.35], + ["10-14",0.33], + ["15-19",0.39], + ["20-24",0.45], + ["25-29",0.42], + ["30-34",0.38], + ["35-39",0.34], + ["40-44",0.3], + ["45-49",0.27], + ["50-54",0.23], + ["55-59",0.21], + ["60-64",0.19], + ["65-69",0.17], + ["70-74",0.15], + ["75-79",0.14], + ["80-84",0.13], + ["85-89",0.12], + ["90-94",0.1], + ["95+",0.09] + ] +} diff --git a/data/lifespan/united-states/culture/religion/us-religion-other.json b/data/lifespan/united-states/culture/religion/us-religion-other.json new file mode 100644 index 0000000..33dee32 --- /dev/null +++ b/data/lifespan/united-states/culture/religion/us-religion-other.json @@ -0,0 +1,42 @@ +{ + "metadata" : { + "name" : "Other Religion", + "description" : "Percentage of the population who identify as a religion other than Christianity.", + "units" : "%", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "religion", + "tags" : ["historical","us","culture","religion"], + "authors" : [ + "Pew Research" + ], + "sources" : [ + "https://www.pewresearch.org/religion/2022/09/13/how-u-s-religious-composition-has-changed-in-recent-decades/" + ] + }, + "data" : [ + ["age.bin","us.religion.other"], + ["0-4",0.06], + ["5-9",0.06], + ["10-14",0.05], + ["15-19",0.07], + ["20-24",0.06], + ["25-29",0.08], + ["30-34",0.08], + ["35-39",0.08], + ["40-44",0.07], + ["45-49",0.06], + ["50-54",0.06], + ["55-59",0.06], + ["60-64",0.06], + ["65-69",0.06], + ["70-74",0.05], + ["75-79",0.05], + ["80-84",0.04], + ["85-89",0.04], + ["90-94",0.03], + ["95+",0.02] + ] +} diff --git a/data/lifespan/united-states/demographics/us-population-female.json b/data/lifespan/united-states/demographics/us-population-female.json new file mode 100644 index 0000000..36c0f32 --- /dev/null +++ b/data/lifespan/united-states/demographics/us-population-female.json @@ -0,0 +1,41 @@ +{ + "metadata" : { + "name" : "Female Population By Age", + "description" : "Female population size by age group", + "units" : "males", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["lifespan","us","econmics","income","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/popest/2020s-national-detail.html", + "https://www2.census.gov/programs-surveys/popest/tables/2020-2021/national/asrh/nc-est2021-agesex.xlsx" + ] + }, + "data" : [ + ["age.bin","us.population.female"], + ["<5",9202986], + ["5-9",9915390], + ["10-14",10459561], + ["15-19",10541690], + ["20-24",10550759], + ["25-29",11013419], + ["30-34",11428324], + ["35-39",11035485], + ["40-44",10510756], + ["45-49",9905753], + ["50-54",10470724], + ["55-59",10937255], + ["60-64",10902491], + ["65-69",9646107], + ["70-74",8150929], + ["75-79",5432359], + ["80-84",3605202], + ["85+",3799813] + ] +} diff --git a/data/lifespan/united-states/demographics/us-population-male.json b/data/lifespan/united-states/demographics/us-population-male.json new file mode 100644 index 0000000..8604b87 --- /dev/null +++ b/data/lifespan/united-states/demographics/us-population-male.json @@ -0,0 +1,41 @@ +{ + "metadata" : { + "name" : "Male Population By Age", + "description" : "Male population size by age group", + "units" : "males", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["lifespan","us","econmics","income","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/popest/2020s-national-detail.html", + "https://www2.census.gov/programs-surveys/popest/tables/2020-2021/national/asrh/nc-est2021-agesex.xlsx" + ] + }, + "data" : [ + ["age.bin","us.population.male"], + ["<5",9624352], + ["5-9",10376158], + ["10-14",10988223], + ["15-19",11022976], + ["20-24",10973238], + ["25-29",11379058], + ["30-34",11674304], + ["35-39",11263833], + ["40-44",10593780], + ["45-49",9875757], + ["50-54",10436202], + ["55-59",10630059], + ["60-64",10333259], + ["65-69",8748213], + ["70-74",7120873], + ["75-79",4472410], + ["80-84",2696104], + ["85+",2175943] + ] +} diff --git a/data/lifespan/united-states/demographics/us-population.json b/data/lifespan/united-states/demographics/us-population.json new file mode 100644 index 0000000..808abdd --- /dev/null +++ b/data/lifespan/united-states/demographics/us-population.json @@ -0,0 +1,41 @@ +{ + "metadata" : { + "name" : "Population By Age", + "description" : "Population size by age group", + "units" : "people", + "year" : "2021", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["lifespan","us","econmics","income","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/popest/2020s-national-detail.html", + "https://www2.census.gov/programs-surveys/popest/tables/2020-2021/national/asrh/nc-est2021-agesex.xlsx" + ] + }, + "data" : [ + ["age.bin","us.population"], + ["<5",18827338], + ["5-9",20291548], + ["10-14",21447784], + ["15-19",21564666], + ["20-24",21523997], + ["25-29",22392477], + ["30-34",23102628], + ["35-39",22299318], + ["40-44",21104536], + ["45-49",19781510], + ["50-54",20906926], + ["55-59",21567314], + ["60-64",21235750], + ["65-69",18394320], + ["70-74",15271802], + ["75-79",9904769], + ["80-84",6301306], + ["85+",5975756] + ] +} diff --git a/data/lifespan/united-states/economics/income/household/us-income-household-individual-mean.json b/data/lifespan/united-states/economics/income/household/us-income-household-individual-mean.json new file mode 100644 index 0000000..0f40e16 --- /dev/null +++ b/data/lifespan/united-states/economics/income/household/us-income-household-individual-mean.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Individual Household Income", + "description" : "Mean household income per household occupants by age of householder ", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-hinc/hinc-02.html", + "https://www2.census.gov/programs-surveys/cps/tables/hinc-02/2022/hinc02_1_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.household.individual.mean"], + ["15-24",26469], + ["25-29",37416], + ["30-34",36653], + ["35-39",35964], + ["40-44",36957], + ["45-49",41334], + ["50-54",47060], + ["55-59",48956], + ["60-64",51826], + ["65-69",45568], + ["70-74",42544], + ["75+",36479] + ] +} diff --git a/data/lifespan/united-states/economics/income/household/us-income-household-mean-female.json b/data/lifespan/united-states/economics/income/household/us-income-household-mean-female.json new file mode 100644 index 0000000..17e3020 --- /dev/null +++ b/data/lifespan/united-states/economics/income/household/us-income-household-mean-female.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Single Female Householder Mean Income", + "description" : "Mean household income by age of single female householder", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-hinc/hinc-02.html", + "https://www2.census.gov/programs-surveys/cps/tables/hinc-02/2022/hinc02_10_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.household.mean.female"], + ["15-24",30388], + ["25-29",61660], + ["30-34",63116], + ["35-39",73311], + ["40-44",63141], + ["45-49",71796], + ["50-54",61024], + ["55-59",52430], + ["60-64",46431], + ["65-70",43736], + ["70-75",40491], + ["75+",34933] + ] +} diff --git a/data/lifespan/united-states/economics/income/household/us-income-household-mean-male.json b/data/lifespan/united-states/economics/income/household/us-income-household-mean-male.json new file mode 100644 index 0000000..b0d647b --- /dev/null +++ b/data/lifespan/united-states/economics/income/household/us-income-household-mean-male.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Single Male Householder Mean Income", + "description" : "Mean household income by age of single male householder", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-hinc/hinc-02.html", + "https://www2.census.gov/programs-surveys/cps/tables/hinc-02/2022/hinc02_8_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.household.mean.male"], + ["15-24",38976], + ["25-29",60461], + ["30-34",74345], + ["35-39",73226], + ["40-44",63512], + ["45-49",66402], + ["50-54",77044], + ["55-59",63575], + ["60-64",61448], + ["65-70",47691], + ["70-75",48228], + ["75+",44117] + ] +} diff --git a/data/lifespan/united-states/economics/income/household/us-income-household-mean.json b/data/lifespan/united-states/economics/income/household/us-income-household-mean.json new file mode 100644 index 0000000..d179f78 --- /dev/null +++ b/data/lifespan/united-states/economics/income/household/us-income-household-mean.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Household Income", + "description" : "Mean household income by age of householder", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-hinc/hinc-02.html", + "https://www2.census.gov/programs-surveys/cps/tables/hinc-02/2022/hinc02_1_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.household.mean"], + ["15-24",63199], + ["25-29",88296], + ["30-34",103430], + ["35-39",117989], + ["40-44",124721], + ["45-49",130287], + ["50-54",131998], + ["55-59",117851], + ["60-64",109826], + ["65-69",89272], + ["70-74",79860], + ["75+",61547] + ] +} diff --git a/data/lifespan/united-states/economics/income/household/us-income-household-median-female.json b/data/lifespan/united-states/economics/income/household/us-income-household-median-female.json new file mode 100644 index 0000000..42f4b98 --- /dev/null +++ b/data/lifespan/united-states/economics/income/household/us-income-household-median-female.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Single Female Householders Median Income", + "description" : "Median household income by age of single female householder", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-hinc/hinc-02.html", + "https://www2.census.gov/programs-surveys/cps/tables/hinc-02/2022/hinc02_10_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.household.median.female"], + ["15-24",24340], + ["25-29",45553], + ["30-34",49861], + ["35-39",53936], + ["40-44",55356], + ["45-49",49072], + ["50-54",43996], + ["55-59",34801], + ["60-64",30488], + ["65-70",29740], + ["70-75",27257], + ["75+",23404] + ] +} diff --git a/data/lifespan/united-states/economics/income/household/us-income-household-median-male.json b/data/lifespan/united-states/economics/income/household/us-income-household-median-male.json new file mode 100644 index 0000000..fe7645c --- /dev/null +++ b/data/lifespan/united-states/economics/income/household/us-income-household-median-male.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Single Male Householders Median Income", + "description" : "Median household income by age of single male householder", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-hinc/hinc-02.html", + "https://www2.census.gov/programs-surveys/cps/tables/hinc-02/2022/hinc02_8_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.household.median.male"], + ["15-24",32694], + ["25-29",51409], + ["30-34",55696], + ["35-39",54387], + ["40-44",50881], + ["45-49",47327], + ["50-54",48226], + ["55-59",41318], + ["60-64",36104], + ["65-70",29709], + ["70-75",30352], + ["75+",28527] + ] +} diff --git a/data/lifespan/united-states/economics/income/household/us-income-household-median.json b/data/lifespan/united-states/economics/income/household/us-income-household-median.json new file mode 100644 index 0000000..f5a7ec0 --- /dev/null +++ b/data/lifespan/united-states/economics/income/household/us-income-household-median.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median Household Income", + "description" : "Median household income by age of householder", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-hinc/hinc-02.html", + "https://www2.census.gov/programs-surveys/cps/tables/hinc-02/2022/hinc02_1_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.household.median"], + ["15-24",51645], + ["25-29",69866], + ["30-34",79246], + ["35-39",89260], + ["40-44",91123], + ["45-49",98143], + ["50-54",96236], + ["55-59",81866], + ["60-64",71354], + ["65-69",58776], + ["70-74",52678], + ["75+",38239] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-female.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-female.json new file mode 100644 index 0000000..8ea1cd0 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-female.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Female Income", + "description" : "Mean/average individual income for females by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_3_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.female"], + ["15-24",19544], + ["25-29",44527], + ["30-34",49899], + ["35-39",55600], + ["40-44",60435], + ["45-49",62340], + ["50-54",59561], + ["55-59",53417], + ["60-64",48303], + ["65-69",40529], + ["70-74",36121], + ["75+",31737] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-male.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-male.json new file mode 100644 index 0000000..502e4df --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-male.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Male Income", + "description" : "Mean/average individual income for males by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_2_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.mean.male"], + ["15-24",22388], + ["25-29",52796], + ["30-34",68013], + ["35-39",80059], + ["40-44",84312], + ["45-49",89133], + ["50-54",89752], + ["55-59",85135], + ["60-64",84264], + ["65-69",67936], + ["70-74",64550], + ["75+",51739] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-asian.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-asian.json new file mode 100644 index 0000000..408a916 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-asian.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Asian Income", + "description" : "Mean/average individual income for asians by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Asian", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","asian","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_8.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.mean.asian"], + ["15-24",22465], + ["25-29",63927], + ["30-34",79473], + ["35-39",88215], + ["40-44",86651], + ["45-49",102979], + ["50-54",82813], + ["55-59",78173], + ["60-64",61801], + ["65-69",56986], + ["70-74",47135], + ["75+",39466] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-black.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-black.json new file mode 100644 index 0000000..9a5fc27 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-black.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Black Income", + "description" : "Mean/average individual income for blacks by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Black", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","black","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_6.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.mean.black"], + ["15-24",19358], + ["25-29",42490], + ["30-34",41587], + ["35-39",54659], + ["40-44",57154], + ["45-49",60212], + ["50-54",56409], + ["55-59",50115], + ["60-64",47166], + ["65-69",38867], + ["70-74",36842], + ["75+",28056] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-hispanic.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-hispanic.json new file mode 100644 index 0000000..844af5b --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-hispanic.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Hispanic Income", + "description" : "Mean/average individual income for hispanics by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Hispanic", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","hispanic","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_9.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.mean.hispanic"], + ["15-24",21144], + ["25-29",40482], + ["30-34",47468], + ["35-39",50006], + ["40-44",50268], + ["45-49",50250], + ["50-54",59419], + ["55-59",48814], + ["60-64",43285], + ["65-69",34264], + ["70-74",30228], + ["75+",23244] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-white.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-white.json new file mode 100644 index 0000000..c3c995c --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean-race-white.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean White Income", + "description" : "Mean/average individual income for whites by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "White", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","white","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_4.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.mean.white"], + ["15-24",21406], + ["25-29",52101], + ["30-34",64966], + ["35-39",74680], + ["40-44",82356], + ["45-49",84454], + ["50-54",82201], + ["55-59",76155], + ["60-64",73339], + ["65-69",58229], + ["70-74",53518], + ["75+",43761] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-mean.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean.json new file mode 100644 index 0000000..334ac93 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-mean.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Mean Individual Income", + "description" : "Mean/average individual income by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.mean"], + ["15-24",20991], + ["25-29",48781], + ["30-34",59248], + ["35-39",68236], + ["40-44",72766], + ["45-49",76035], + ["50-54",74845], + ["55-59",69246], + ["60-64",66041], + ["65-69",53686], + ["70-74",49365], + ["75+",40506] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-median-female.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-female.json new file mode 100644 index 0000000..22c0ed4 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-female.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median Female Income", + "description" : "Median individual income for females by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Female", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","female","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_3_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.median.female"], + ["15-24",14509], + ["25-29",35695], + ["30-34",39525], + ["35-39",41425], + ["40-44",45244], + ["45-49",45578], + ["50-54",45095], + ["55-59",37490], + ["60-64",31773], + ["65-69",25627], + ["70-74",22805], + ["75+",20113] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-median-male.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-male.json new file mode 100644 index 0000000..770b1d7 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-male.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median Male Income", + "description" : "Median individual income for males by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Male", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","male","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_2_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.median.male"], + ["15-24",16549], + ["25-29",42935], + ["30-34",51502], + ["35-39",60045], + ["40-44",60199], + ["45-49",61640], + ["50-54",60832], + ["55-59",53696], + ["60-64",52123], + ["65-69",41322], + ["70-74",38372], + ["75+",32304] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-asian.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-asian.json new file mode 100644 index 0000000..ab5c98f --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-asian.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median Asian Income", + "description" : "Median individual income for asians by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Asian", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","asians","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_8.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.median.asian"], + ["15-24",13262], + ["25-29",51107], + ["30-34",63003], + ["35-39",65788], + ["40-44",65771], + ["45-49",73693], + ["50-54",55597], + ["55-59",44873], + ["60-64",42428], + ["65-69",22675], + ["70-74",22953], + ["75+",20811] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-black.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-black.json new file mode 100644 index 0000000..9643201 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-black.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median Black Income", + "description" : "Median individual income for blacks by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Black", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","black","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_6.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.median.black"], + ["15-24",15073], + ["25-29",32038], + ["30-34",35621], + ["35-39",40580], + ["40-44",43874], + ["45-49",46516], + ["50-54",41829], + ["55-59",37330], + ["60-64",29314], + ["65-69",23596], + ["70-74",19608], + ["75+",17709] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-hispanic.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-hispanic.json new file mode 100644 index 0000000..0f3ce1c --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-hispanic.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median Asian Income", + "description" : "Median individual income for asians by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "Hispanic", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","asians","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_9.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.median.hispanic"], + ["15-24",17357], + ["25-29",32428], + ["30-34",37338], + ["35-39",37604], + ["40-44",38531], + ["45-49",40033], + ["50-54",41234], + ["55-59",35145], + ["60-64",30908], + ["65-69",22338], + ["70-74",17210], + ["75+",14457] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-white.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-white.json new file mode 100644 index 0000000..fd22645 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-median-race-white.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median White Income", + "description" : "Median individual income for whites by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "White", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age","white","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_4.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.median.white"], + ["15-24",15394], + ["25-29",42946], + ["30-34",50648], + ["35-39",56860], + ["40-44",60283], + ["45-49",60958], + ["50-54",57242], + ["55-59",50840], + ["60-64",46024], + ["65-69",35590], + ["70-74",32414], + ["75+",26645] + ] +} diff --git a/data/lifespan/united-states/economics/income/individual/us-income-individual-median.json b/data/lifespan/united-states/economics/income/individual/us-income-individual-median.json new file mode 100644 index 0000000..bfe7ce4 --- /dev/null +++ b/data/lifespan/united-states/economics/income/individual/us-income-individual-median.json @@ -0,0 +1,35 @@ +{ + "metadata" : { + "name" : "Median Individual Income", + "description" : "Median individual income by age group.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","econmics","income","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.census.gov/data/tables/time-series/demo/income-poverty/cps-pinc/pinc-01.html", + "https://www2.census.gov/programs-surveys/cps/tables/pinc-01/2022/pinc01_1_1_1.xlsx" + ] + }, + "data" : [ + ["age.bin","us.income.individual.median"], + ["15-24",15607], + ["25-29",40151], + ["30-34",45809], + ["35-39",50747], + ["40-44",51771], + ["45-49",52377], + ["50-54",51558], + ["55-59",45950], + ["60-64",41154], + ["65-69",32021], + ["70-74",28780], + ["75+",24367] + ] +} diff --git a/data/lifespan/united-states/economics/us-income-household-median.json b/data/lifespan/united-states/economics/us-income-household-median.json new file mode 100644 index 0000000..adb45f1 --- /dev/null +++ b/data/lifespan/united-states/economics/us-income-household-median.json @@ -0,0 +1,28 @@ +{ + "metadata" : { + "name" : "Median Household Income", + "description" : "Median household income by age in the United States.", + "units" : "$", + "year" : "2021", + "notes" : [], + "type" : "unkown", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","economics","income"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.bankrate.com/personal-finance/median-salary-by-age/#age" + ] + }, + "data" : [ + ["age.bin","us.income.household.median"], + ["15-24",51645], + ["25-34",74862], + ["35-44",90312], + ["45-54",97089], + ["55-65",75842], + ["65+",47620] + ] +} diff --git a/data/lifespan/united-states/economics/us-income-individual-mean.json b/data/lifespan/united-states/economics/us-income-individual-mean.json new file mode 100644 index 0000000..0abfab0 --- /dev/null +++ b/data/lifespan/united-states/economics/us-income-individual-mean.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Income Per-Capita", + "description" : "Income Per-Capita by age in the United States.", + "units" : "$", + "year" : "2022", + "notes" : [], + "type" : "unkown", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["lifespan","us","economics","income"], + "authors" : [ + "Smart Asset" + ], + "sources" : [ + "https://smartasset.com/retirement/the-average-salary-by-age" + ] + }, + "data" : [ + ["age.bin","us.income.individual.mean"], + ["16-19",31668], + ["20-24",36712], + ["25-34",52156], + ["35-44",62244], + ["45-54",63648], + ["55-64",60944], + ["65+",51532] + ] +} diff --git a/data/lifespan/united-states/health/suicide/us-suicide-female.json b/data/lifespan/united-states/health/suicide/us-suicide-female.json new file mode 100644 index 0000000..cfa1d01 --- /dev/null +++ b/data/lifespan/united-states/health/suicide/us-suicide-female.json @@ -0,0 +1,30 @@ +{ + "metadata" : { + "name" : "Female Suicides", + "description" : "Female suicides by age in the United States.", + "units" : "deaths", + "year" : "2016", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "health", + "tags" : ["lifespan","us","health","suicide","female"], + "authors" : [ + "US Center For Disease Control" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Suicide_in_the_United_States" + ] + }, + "data" : [ + ["age.bin","us.suicide.female"], + ["10-14",171], + ["15-24",1148], + ["25-34",1479], + ["35-44",1736], + ["45-54",2239], + ["55-64",2014], + ["65-74",940], + ["75+",510] + ] +} diff --git a/data/lifespan/united-states/health/suicide/us-suicide-gender-ratio.json b/data/lifespan/united-states/health/suicide/us-suicide-gender-ratio.json new file mode 100644 index 0000000..6353cb3 --- /dev/null +++ b/data/lifespan/united-states/health/suicide/us-suicide-gender-ratio.json @@ -0,0 +1,30 @@ +{ + "metadata" : { + "name" : "Suicide Gender Ratio", + "description" : "Suicide gender ratio by age in the United States.", + "units" : "gender ratio", + "year" : "2016", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "health", + "tags" : ["lifespan","us","health","suicide","gender"], + "authors" : [ + "US Center For Disease Control" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Suicide_in_the_United_States" + ] + }, + "data" : [ + ["age.bin","us.suicide.gender.ratio"], + ["10-14",1.5], + ["15-24",4], + ["25-34",4], + ["35-44",3], + ["45-54",2.8], + ["55-64",2.9], + ["65-74",3.7], + ["75+",6.5] + ] +} diff --git a/data/lifespan/united-states/health/suicide/us-suicide-male.json b/data/lifespan/united-states/health/suicide/us-suicide-male.json new file mode 100644 index 0000000..5579e9f --- /dev/null +++ b/data/lifespan/united-states/health/suicide/us-suicide-male.json @@ -0,0 +1,30 @@ +{ + "metadata" : { + "name" : "Male Suicides", + "description" : "Male suicides by age in the United States.", + "units" : "deaths", + "year" : "2016", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "health", + "tags" : ["lifespan","us","health","suicide","male"], + "authors" : [ + "US Center For Disease Control" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Suicide_in_the_United_States" + ] + }, + "data" : [ + ["age.bin","us.suicide.male"], + ["10-14",265], + ["15-24",4575], + ["25-34",5887], + ["35-44",5294], + ["45-54",6198], + ["55-64",5745], + ["65-74",3463], + ["75+",3291] + ] +} diff --git a/data/lifespan/united-states/health/suicide/us-suicide-total.json b/data/lifespan/united-states/health/suicide/us-suicide-total.json new file mode 100644 index 0000000..c08f501 --- /dev/null +++ b/data/lifespan/united-states/health/suicide/us-suicide-total.json @@ -0,0 +1,30 @@ +{ + "metadata" : { + "name" : "Suicides", + "description" : "Suicides by age in the United States.", + "units" : "deaths", + "year" : "2016", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "health", + "tags" : ["lifespan","us","health","suicide"], + "authors" : [ + "US Center For Disease Control" + ], + "sources" : [ + "https://en.wikipedia.org/wiki/Suicide_in_the_United_States" + ] + }, + "data" : [ + ["age.bin","suicide.total"], + ["10-14",436], + ["15-24",5723], + ["25-34",7366], + ["35-44",7030], + ["45-54",8437], + ["55-64",7759], + ["65-74",4403], + ["75+",3801] + ] +} diff --git a/data/lifespan/united-states/health/us-contraceptive-pill-female.json b/data/lifespan/united-states/health/us-contraceptive-pill-female.json new file mode 100644 index 0000000..4a477aa --- /dev/null +++ b/data/lifespan/united-states/health/us-contraceptive-pill-female.json @@ -0,0 +1,29 @@ +{ + "metadata" : { + "name" : "Contraceptive Pill Usage", + "description" : "Percentage of the female population who take the hormonal contraceptive birth control pill.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "lifespan", + "scope" : "United States", + "categorty" : "health", + "tags" : ["lifespan","us","health","pregnancy","fertility","contraceptive","age","female","gender"], + "authors" : [ + "United States Centers for Disease Control (CDC)" + ], + "sources" : [ + "https://www.cdc.gov/nchs/nsfg/nsfg_2017_2019_puf.htm", + "https://www.cdc.gov/nchs/data/nsfg/NSFG-2017-2019-VarEst-Ex1-508.pdf" + ] + }, + "data" : [ + ["age.bin","us.contraceptive.pill.female"], + ["15-19",0.1951], + ["20-24",0.2378], + ["25-29",0.1969], + ["30-34",0.1528], + ["35-39",0.06497], + ["40-49",0.06522] + ] +} diff --git a/data/regional/uk-constituency/demographics/uk-population.json b/data/regional/uk-constituency/demographics/uk-population.json new file mode 100644 index 0000000..c20f37b --- /dev/null +++ b/data/regional/uk-constituency/demographics/uk-population.json @@ -0,0 +1,665 @@ +{ + "metadata" : { + "name" : "Population", + "country" : "United Kingdom", + "description" : "Population by constituency.", + "units" : "people", + "year" : "2020", + "author" : "UK Government", + "tags" : ["country","uk","constituency","demographics","population"], + "source" : [ + "https://en.wikipedia.org/wiki/Constituencies_of_the_Parliament_of_the_United_Kingdom" + ] + }, +--- +uk.constituency.name,uk.population +Aldershot,72617 +Aldridge-Brownhills,60138 +Altrincham and Sale West,73107 +Amber Valley,69976 +Arundel and South Downs,81726 +Ashfield,78204 +Ashford,89553 +Ashton-under-Lyne,67978 +Aylesbury,86665 +Banbury,90116 +Barking,77953 +Barnsley Central,65277 +Barnsley East,69504 +Barrow and Furness,70158 +Basildon and Billericay,69906 +Basingstoke,82928 +Bassetlaw,80024 +Bath,67805 +Batley and Spen,79558 +Battersea,79350 +Beaconsfield,77720 +Beckenham,68662 +Bedford,71581 +Bermondsey and Old Southwark,93248 +Berwick-upon-Tweed,59939 +Bethnal Green and Bow,88262 +Beverley and Holderness,79696 +Bexhill and Battle,81963 +Bexleyheath and Crayford,65466 +Birkenhead,63762 +Birmingham, Edgbaston,68828 +Birmingham, Erdington,66148 +Birmingham, Hall Green,80283 +Birmingham, Hodge Hill,78295 +Birmingham, Ladywood,74912 +Birmingham, Northfield,73694 +Birmingham, Perry Barr,72006 +Birmingham, Selly Oak,82665 +Birmingham, Yardley,74704 +Bishop Auckland,68170 +Blackburn,71234 +Blackley and Broughton,73372 +Blackpool North and Cleveleys,63692 +Blackpool South,57690 +Blaydon,67853 +Blyth Valley,64429 +Bognor Regis and Littlehampton,77446 +Bolsover,75161 +Bolton North East,67564 +Bolton South East,69163 +Bolton West,73191 +Bootle,74832 +Boston and Skegness,69381 +Bosworth,81542 +Bournemouth East,74125 +Bournemouth West,74205 +Bracknell,78978 +Bradford East,73206 +Bradford South,69046 +Bradford West,70694 +Braintree,75208 +Brent Central,84032 +Brent North,83788 +Brentford and Isleworth,85775 +Brentwood and Ongar,75255 +Bridgwater and West Somerset,85327 +Brigg and Goole,65939 +Brighton, Kemptown,69833 +Brighton, Pavilion,79057 +Bristol East,73867 +Bristol North West,76273 +Bristol South,84079 +Bristol West,99253 +Broadland,78151 +Bromley and Chislehurst,66697 +Bromsgrove,75078 +Broxbourne,73182 +Broxtowe,73052 +Buckingham,83146 +Burnley,64345 +Burton,75036 +Bury North,68802 +Bury South,75152 +Bury St Edmunds,89644 +Calder Valley,79287 +Camberwell and Peckham,88971 +Camborne and Redruth,70250 +Cambridge,79951 +Cannock Chase,74813 +Canterbury,80203 +Carlisle,65105 +Carshalton and Wallington,72941 +Castle Point,69608 +Central Devon,74926 +Central Suffolk and North Ipswich,80037 +Charnwood,79534 +Chatham and Aylesford,71642 +Cheadle,74577 +Chelmsford,80394 +Chelsea and Fulham,67110 +Cheltenham,81044 +Chesham and Amersham,72542 +Chesterfield,71034 +Chichester,85499 +Chingford and Woodford Green,65393 +Chippenham,77221 +Chipping Barnet,79960 +Chorley,78177 +Christchurch,71520 +Cities of London and Westminster,63700 +City of Chester,76057 +City of Durham,71271 +Clacton,70930 +Cleethorpes,73689 +Colchester,82625 +Colne Valley,84174 +Congleton,80930 +Copeland,61693 +Corby,86153 +Coventry North East,76006 +Coventry North West,75247 +Coventry South,70979 +Crawley,74207 +Crewe and Nantwich,80321 +Croydon Central,81407 +Croydon North,88468 +Croydon South,83982 +Dagenham and Rainham,71045 +Darlington,66397 +Dartford,82209 +Daventry,77423 +Denton and Reddish,66234 +Derby North,73199 +Derby South,73062 +Derbyshire Dales,65080 +Devizes,73372 +Dewsbury,81253 +Don Valley,75356 +Doncaster Central,71389 +Doncaster North,72362 +Dover,76355 +Dudley North,61936 +Dudley South,60731 +Dulwich and West Norwood,80331 +Ealing Central and Acton,75510 +Ealing North,74473 +Ealing, Southall,64581 +Easington,61182 +East Devon,87168 +East Ham,88319 +East Hampshire,76478 +East Surrey,83148 +East Worthing and Shoreham,75194 +East Yorkshire,80923 +Eastbourne,79307 +Eastleigh,83880 +Eddisbury,73700 +Edmonton,65747 +Ellesmere Port and Neston,70327 +Elmet and Rothwell,80957 +Eltham,64086 +Enfield North,68301 +Enfield, Southgate,65525 +Epping Forest,74304 +Epsom and Ewell,81138 +Erewash,72523 +Erith and Thamesmead,65399 +Esher and Walton,81184 +Exeter,82054 +Fareham,78337 +Faversham and Mid Kent,73403 +Feltham and Heston,80934 +Filton and Bradley Stoke,74016 +Finchley and Golders Green,77573 +Folkestone and Hythe,88272 +Forest of Dean,71438 +Fylde,66847 +Gainsborough,76343 +Garston and Halewood,76116 +Gateshead,64449 +Gedling,71366 +Gillingham and Rainham,73549 +Gloucester,81319 +Gosport,73541 +Grantham and Stamford,81502 +Gravesham,73242 +Great Grimsby,61409 +Great Yarmouth,71957 +Greenwich and Woolwich,79997 +Guildford,77729 +Hackney North and Stoke Newington,92462 +Hackney South and Shoreditch,89387 +Halesowen and Rowley Regis,68300 +Halifax,71887 +Haltemprice and Howden,71083 +Halton,71930 +Hammersmith,74759 +Hampstead and Kilburn,86571 +Harborough,80151 +Harlow,68078 +Harrogate and Knaresborough,77941 +Harrow East,72106 +Harrow West,72464 +Hartlepool,70855 +Harwich and North Essex,74153 +Hastings and Rye,80524 +Havant,72103 +Hayes and Harlington,72357 +Hazel Grove,63346 +Hemel Hempstead,74035 +Hemsworth,73726 +Hendon,82661 +Henley,76646 +Hereford and South Herefordshire,72085 +Hertford and Stortford,81765 +Hertsmere,73971 +Hexham,61324 +Heywood and Middleton,80162 +High Peak,74265 +Hitchin and Harpenden,76323 +Holborn and St Pancras,86061 +Hornchurch and Upminster,80765 +Hornsey and Wood Green,81814 +Horsham,86730 +Houghton and Sunderland South,68835 +Hove,74313 +Huddersfield,65525 +Huntingdon,84657 +Hyndburn,70842 +Ilford North,72973 +Ilford South,84972 +Ipswich,75525 +Isle of Wight,113021 +Islington North,75162 +Islington South and Finsbury,70489 +Jarrow,65103 +Keighley,72778 +Kenilworth and Southam,68154 +Kensington,64609 +Kettering,73164 +Kingston and Surbiton,81975 +Kingston upon Hull East,65745 +Kingston upon Hull North,65515 +Kingston upon Hull West and Hessle,60192 +Kingswood,68972 +Knowsley,84082 +Lancaster and Fleetwood,70059 +Leeds Central,90971 +Leeds East,67286 +Leeds North East,70580 +Leeds North West,67741 +Leeds West,67727 +Leicester East,78433 +Leicester South,77708 +Leicester West,64940 +Leigh,77417 +Lewes,71503 +Lewisham, Deptford,80631 +Lewisham East,67857 +Lewisham West and Penge,74617 +Leyton and Wanstead,64852 +Lichfield,76616 +Lincoln,74942 +Liverpool, Riverside,80310 +Liverpool, Walton,62628 +Liverpool, Wavertree,63458 +Liverpool, West Derby,65640 +Loughborough,79764 +Louth and Horncastle,79634 +Ludlow,69444 +Luton North,68185 +Luton South,69338 +Macclesfield,76216 +Maidenhead,76668 +Maidstone and The Weald,76109 +Makerfield,74190 +Maldon,72438 +Manchester Central,92247 +Manchester, Gorton,76419 +Manchester, Withington,76530 +Mansfield,77131 +Meon Valley,75737 +Meriden,85368 +Mid Bedfordshire,87795 +Mid Derbyshire,67442 +Mid Dorset and North Poole,65427 +Mid Norfolk,82203 +Mid Sussex,85146 +Mid Worcestershire,78220 +Middlesbrough,60764 +Middlesbrough South and East Cleveland,72348 +Milton Keynes North,91545 +Milton Keynes South,96363 +Mitcham and Morden,70021 +Mole Valley,74665 +Morecambe and Lunesdale,67397 +Morley and Outwood,78803 +New Forest East,73549 +New Forest West,70869 +Newark,75850 +Newbury,83414 +Newcastle upon Tyne Central,63796 +Newcastle upon Tyne East,68486 +Newcastle upon Tyne North,68211 +Newcastle-under-Lyme,57845 +Newton Abbot,72529 +Normanton, Pontefract and Castleford,84527 +North Cornwall,69935 +North Devon,75859 +North Dorset,76765 +North Durham,66796 +North East Bedfordshire,90678 +North East Cambridgeshire,83699 +North East Derbyshire,72345 +North East Hampshire,78954 +North East Hertfordshire,76123 +North East Somerset,73692 +North Herefordshire,70252 +North Norfolk,70729 +North Shropshire,83258 +North Somerset,80194 +North Swindon,82441 +North Thanet,72756 +North Tyneside,78902 +North Warwickshire,70271 +North West Cambridgeshire,94909 +North West Durham,72166 +North West Hampshire,83083 +North West Leicestershire,78935 +North West Norfolk,72080 +North Wiltshire,73280 +Northampton North,58768 +Northampton South,62163 +Norwich North,67172 +Norwich South,77845 +Nottingham East,66262 +Nottingham North,66495 +Nottingham South,79485 +Nuneaton,70226 +Old Bexley and Sidcup,66104 +Oldham East and Saddleworth,72120 +Oldham West and Royton,72999 +Orpington,68877 +Oxford East,78303 +Oxford West and Abingdon,76951 +Pendle,65292 +Penistone and Stocksbridge,70925 +Penrith and The Border,67555 +Peterborough,72560 +Plymouth, Moor View,69430 +Plymouth, Sutton and Devonport,77852 +Poole,73989 +Poplar and Limehouse,91836 +Portsmouth North,71299 +Portsmouth South,74186 +Preston,59672 +Pudsey,73212 +Putney,65556 +Rayleigh and Wickford,78930 +Reading East,77152 +Reading West,74137 +Redcar,65864 +Redditch,65391 +Reigate,74242 +Ribble Valley,79247 +Richmond (Yorks),82569 +Richmond Park,82699 +Rochdale,78909 +Rochester and Strood,82056 +Rochford and Southend East,75624 +Romford,72350 +Romsey and Southampton North,68228 +Rossendale and Darwen,72770 +Rother Valley,74804 +Rotherham,61688 +Rugby,72292 +Ruislip, Northwood and Pinner,72816 +Runnymede and Weybridge,77196 +Rushcliffe,77047 +Rutland and Melton,82705 +Saffron Walden,87017 +Salford and Eccles,82202 +Salisbury,74556 +Scarborough and Whitby,74404 +Scunthorpe,61955 +Sedgefield,64325 +Sefton Central,69760 +Selby and Ainsty,78398 +Sevenoaks,71757 +Sheffield, Brightside and Hillsborough,69333 +Sheffield Central,89849 +Sheffield, Hallam,72763 +Sheffield, Heeley,66940 +Sheffield South East,67832 +Sherwood,77888 +Shipley,74029 +Shrewsbury and Atcham,82238 +Sittingbourne and Sheppey,83917 +Skipton and Ripon,78673 +Sleaford and North Hykeham,94761 +Slough,86818 +Solihull,78760 +Somerton and Frome,85866 +South Basildon and East Thurrock,74441 +South Cambridgeshire,87288 +South Derbyshire,79331 +South Dorset,73809 +South East Cambridgeshire,86769 +South East Cornwall,71825 +South Holland and The Deepings,75975 +South Leicestershire,80520 +South Norfolk,86214 +South Northamptonshire,90842 +South Ribble,75351 +South Shields,62793 +South Staffordshire,73668 +South Suffolk,76201 +South Swindon,73118 +South Thanet,73223 +South West Bedfordshire,79926 +South West Devon,72535 +South West Hertfordshire,80499 +South West Norfolk,78455 +South West Surrey,79096 +South West Wiltshire,77969 +Southampton, Itchen,72299 +Southampton, Test,70116 +Southend West,69043 +Southport,70837 +Spelthorne,70929 +St Albans,73727 +St Austell and Newquay,79930 +St Helens North,75593 +St Helens South and Whiston,79061 +St Ives,68795 +Stafford,72572 +Staffordshire Moorlands,65485 +Stalybridge and Hyde,73064 +Stevenage,71562 +Stockport,65391 +Stockton North,66649 +Stockton South,76870 +Stoke-on-Trent Central,55419 +Stoke-on-Trent North,68298 +Stoke-on-Trent South,64491 +Stone,69378 +Stourbridge,69891 +Stratford-on-Avon,74037 +Streatham,84783 +Stretford and Urmston,72372 +Stroud,84537 +Suffolk Coastal,81910 +Sunderland Central,72680 +Surrey Heath,81349 +Sutton and Cheam,71779 +Sutton Coldfield,75638 +Tamworth,71572 +Tatton,69018 +Taunton Deane,88676 +Telford,68921 +Tewkesbury,83958 +The Cotswolds,81939 +The Wrekin,70693 +Thirsk and Malton,80991 +Thornbury and Yate,69492 +Thurrock,79659 +Tiverton and Honiton,82953 +Tonbridge and Malling,79278 +Tooting,76954 +Torbay,75054 +Torridge and West Devon,80403 +Totnes,69863 +Tottenham,75740 +Truro and Falmouth,76719 +Tunbridge Wells,74823 +Twickenham,84906 +Tynemouth,77261 +Uxbridge and South Ruislip,70365 +Vauxhall,88659 +Wakefield,70192 +Wallasey,66310 +Walsall North,67177 +Walsall South,68024 +Walthamstow,70267 +Wansbeck,63339 +Wantage,90867 +Warley,62357 +Warrington North,72235 +Warrington South,86015 +Warwick and Leamington,76362 +Washington and Sunderland West,66278 +Watford,83359 +Waveney,82791 +Wealden,82998 +Weaver Vale,70551 +Wellingborough,80765 +Wells,84124 +Welwyn Hatfield,74892 +Wentworth and Dearne,74536 +West Bromwich East,62046 +West Bromwich West,64517 +West Dorset,81897 +West Ham,97947 +West Lancashire,73347 +West Suffolk,80193 +West Worcestershire,76241 +Westminster North,65519 +Westmorland and Lonsdale,67789 +Weston-Super-Mare,82526 +Wigan,75680 +Wimbledon,68240 +Winchester,75582 +Windsor,75038 +Wirral South,57280 +Wirral West,55550 +Witham,70402 +Witney,83845 +Woking,75424 +Wokingham,83953 +Wolverhampton North East,61660 +Wolverhampton South East,62883 +Wolverhampton South West,60534 +Worcester,73485 +Workington,61370 +Worsley and Eccles South,75219 +Worthing West,78585 +Wycombe,78093 +Wyre and Preston North,74775 +Wyre Forest,78077 +Wythenshawe and Sale East,76313 +Yeovil,82468 +York Central,74899 +York Outer,74673 +Aberdeen North,62489 +Aberdeen South,65719 +Airdrie and Shotts,64011 +Angus,63952 +Argyll and Bute,66525 +Ayr, Carrick and Cumnock,71970 +Banff and Buchan,66655 +Berwickshire, Roxburgh and Selkirk,74518 +Caithness, Sutherland and Easter Ross,46930 +Central Ayrshire,69742 +Coatbridge, Chryston and Bellshill,72943 +Cumbernauld, Kilsyth and Kirkintilloch East,66079 +Dumfries and Galloway,74580 +Dumfriesshire, Clydesdale and Tweeddale,68330 +Dundee East,66210 +Dundee West,64431 +Dunfermline and West Fife,76652 +East Dunbartonshire,66075 +East Kilbride, Strathaven and Lesmahagow,81224 +East Lothian,81600 +East Renfrewshire,72232 +Edinburgh East,69424 +Edinburgh North and Leith,81336 +Edinburgh South,66188 +Edinburgh South West,73501 +Edinburgh West,72507 +Falkirk,84472 +Glasgow Central,69230 +Glasgow East,67381 +Glasgow North,57130 +Glasgow North East,61075 +Glasgow North West,63402 +Glasgow South,70891 +Glasgow South West,64575 +Glenrothes,65672 +Gordon,79629 +Inverclyde,60622 +Inverness, Nairn, Badenoch and Strathspey,78059 +Kilmarnock and Loudoun,74517 +Kirkcaldy and Cowdenbeath,72853 +Lanark and Hamilton East,77659 +Linlithgow and East Falkirk,87044 +Livingston,82285 +Midlothian,70544 +Moray,71035 +Motherwell and Wishaw,68856 +Na h-Eileanan an Iar,21106 +North Ayrshire and Arran,73534 +North East Fife,60905 +Ochil and South Perthshire,78776 +Orkney and Shetland,34211 +Paisley and Renfrewshire North,72007 +Paisley and Renfrewshire South,64385 +Perth and North Perthshire,72600 +Ross, Skye and Lochaber,54230 +Rutherglen and Hamilton West,80918 +Stirling,68473 +West Aberdeenshire and Kincardine,72640 +West Dunbartonshire,66517 +Aberavon,50750 +Aberconwy,44699 +Alyn and Deeside,62789 +Arfon,42215 +Blaenau Gwent,50739 +Brecon and Radnorshire,55490 +Bridgend,63303 +Caerphilly,63166 +Cardiff Central,64037 +Cardiff North,68438 +Cardiff South and Penarth,78837 +Cardiff West,68508 +Carmarthen East and Dinefwr,57419 +Carmarthen West and South Pembrokeshire,59158 +Ceredigion,56250 +Clwyd South,53919 +Clwyd West,57714 +Cynon Valley,51134 +Delyn,54560 +Dwyfor Meirionnydd,44362 +Gower,61762 +Islwyn,55423 +Llanelli,60518 +Merthyr Tydfil and Rhymney,56322 +Monmouth,67098 +Montgomeryshire,48997 +Neath,56419 +Newport East,58554 +Newport West,66657 +Ogmore,57581 +Pontypridd,60327 +Preseli Pembrokeshire,59606 +Rhondda,50262 +Swansea East,58450 +Swansea West,57078 +Torfaen,62330 +Vale of Clwyd,56649 +Vale of Glamorgan,76508 +Wrexham,49737 +Ynys Môn,51925 +Belfast East,66245 +Belfast North,72225 +Belfast South,69984 +Belfast West,65644 +East Antrim,64830 +East Londonderry,69246 +Fermanagh and South Tyrone,72848 +Foyle,74346 +Lagan Valley,75735 +Mid Ulster,70449 +Newry and Armagh,81226 +North Antrim,77134 +North Down,67099 +South Antrim,71711 +South Down,79175 +Strangford,66928 +Upper Bann,82887 +West Tyrone,66259 diff --git a/data/regional/uk-constituency/meta/uk-constituencies.json b/data/regional/uk-constituency/meta/uk-constituencies.json new file mode 100644 index 0000000..e570336 --- /dev/null +++ b/data/regional/uk-constituency/meta/uk-constituencies.json @@ -0,0 +1,665 @@ +{ + "metadata" : { + "name" : "UK Constituency Metadata", + "country" : "United Kingdom", + "description" : "UK Constituency Metadata.", + "units" : "Metadata", + "year" : "2022", + "author" : "UK Government", + "tags" : ["metadata","country","uk","constituency"], + "source" : [ + "https://en.wikipedia.org/wiki/Constituencies_of_the_Parliament_of_the_United_Kingdom" + ] + }, +--- +uk.constituency.name,uk.cinstituency.country,uk.constituency.county,uk.constituency.region +Aldershot,England,Hampshire,South East +Aldridge-Brownhills,England,West Midlands,West Midlands +Altrincham and Sale West,England,Greater Manchester,North West +Amber Valley,England,Derbyshire,East Midlands +Arundel and South Downs,England,West Sussex,South East +Ashfield,England,Nottinghamshire,East Midlands +Ashford,England,Kent,South East +Ashton-under-Lyne,England,Greater Manchester,North West +Aylesbury,England,Buckinghamshire,South East +Banbury,England,Oxfordshire,South East +Barking,England,London (Barking and Dagenham),London +Barnsley Central,England,South Yorkshire,Yorkshire & the Humber +Barnsley East,England,South Yorkshire,Yorkshire & the Humber +Barrow and Furness,England,Cumbria,North West +Basildon and Billericay,England,Essex,Eastern +Basingstoke,England,Hampshire,South East +Bassetlaw,England,Nottinghamshire,East Midlands +Bath,England,Somerset (prev. Avon),South West +Batley and Spen,England,West Yorkshire,Yorkshire & the Humber +Battersea,England,London (Wandsworth),London +Beaconsfield,England,Buckinghamshire,South East +Beckenham,England,London (Bromley),London +Bedford,England,Bedfordshire,Eastern +Bermondsey and Old Southwark,England,London (Southwark),London +Berwick-upon-Tweed,England,Northumberland,North East +Bethnal Green and Bow,England,London (Tower Hamlets),London +Beverley and Holderness,England,East Riding of Yorkshire (prev. Humberside),Yorkshire & the Humber +Bexhill and Battle,England,East Sussex,South East +Bexleyheath and Crayford,England,London (Bexley),London +Birkenhead,England,Merseyside,North West +Birmingham, Edgbaston,England,West Midlands,West Midlands +Birmingham, Erdington,England,West Midlands,West Midlands +Birmingham, Hall Green,England,West Midlands,West Midlands +Birmingham, Hodge Hill,England,West Midlands,West Midlands +Birmingham, Ladywood,England,West Midlands,West Midlands +Birmingham, Northfield,England,West Midlands,West Midlands +Birmingham, Perry Barr,England,West Midlands,West Midlands +Birmingham, Selly Oak,England,West Midlands,West Midlands +Birmingham, Yardley,England,West Midlands,West Midlands +Bishop Auckland,England,County Durham,North East +Blackburn,England,Lancashire,North West +Blackley and Broughton,England,Greater Manchester,North West +Blackpool North and Cleveleys,England,Lancashire,North West +Blackpool South,England,Lancashire,North West +Blaydon,England,Tyne and Wear,North East +Blyth Valley,England,Northumberland,North East +Bognor Regis and Littlehampton,England,West Sussex,South East +Bolsover,England,Derbyshire,East Midlands +Bolton North East,England,Greater Manchester,North West +Bolton South East,England,Greater Manchester,North West +Bolton West,England,Greater Manchester,North West +Bootle,England,Merseyside,North West +Boston and Skegness,England,Lincolnshire,East Midlands +Bosworth,England,Leicestershire,East Midlands +Bournemouth East,England,Dorset,South West +Bournemouth West,England,Dorset,South West +Bracknell,England,Berkshire,South East +Bradford East,England,West Yorkshire,Yorkshire & the Humber +Bradford South,England,West Yorkshire,Yorkshire & the Humber +Bradford West,England,West Yorkshire,Yorkshire & the Humber +Braintree,England,Essex,Eastern +Brent Central,England,London (Brent),London +Brent North,England,London (Brent),London +Brentford and Isleworth,England,London (Hounslow),London +Brentwood and Ongar,England,Essex,Eastern +Bridgwater and West Somerset,England,Somerset,South West +Brigg and Goole,England,East Riding of Yorkshire and Lincolnshire (prev. Humberside),Yorkshire & the Humber +Brighton, Kemptown,England,East Sussex,South East +Brighton, Pavilion,England,East Sussex,South East +Bristol East,England,Bristol (prev. Avon),South West +Bristol North West,England,Bristol (prev. Avon),South West +Bristol South,England,Bristol (prev. Avon),South West +Bristol West,England,Bristol (prev. Avon),South West +Broadland,England,Norfolk,Eastern +Bromley and Chislehurst,England,London (Bromley),London +Bromsgrove,England,Worcestershire,West Midlands +Broxbourne,England,Hertfordshire,Eastern +Broxtowe,England,Nottinghamshire,East Midlands +Buckingham,England,Buckinghamshire,South East +Burnley,England,Lancashire,North West +Burton,England,Staffordshire,West Midlands +Bury North,England,Greater Manchester,North West +Bury South,England,Greater Manchester,North West +Bury St Edmunds,England,Suffolk,Eastern +Calder Valley,England,West Yorkshire,Yorkshire & the Humber +Camberwell and Peckham,England,London (Southwark),London +Camborne and Redruth,England,Cornwall,South West +Cambridge,England,Cambridgeshire,Eastern +Cannock Chase,England,Staffordshire,West Midlands +Canterbury,England,Kent,South East +Carlisle,England,Cumbria,North West +Carshalton and Wallington,England,London (Sutton),London +Castle Point,England,Essex,Eastern +Central Devon,England,Devon,South West +Central Suffolk and North Ipswich,England,Suffolk,Eastern +Charnwood,England,Leicestershire,East Midlands +Chatham and Aylesford,England,Kent,South East +Cheadle,England,Greater Manchester,North West +Chelmsford,England,Essex,Eastern +Chelsea and Fulham,England,London (Hammersmith and Fulham and Kensington and Chelsea),London +Cheltenham,England,Gloucestershire,South West +Chesham and Amersham,England,Buckinghamshire,South East +Chesterfield,England,Derbyshire,East Midlands +Chichester,England,West Sussex,South East +Chingford and Woodford Green,England,London (Redbridge and Waltham Forest),London +Chippenham,England,Wiltshire,South West +Chipping Barnet,England,London (Barnet),London +Chorley,England,Lancashire,North West +Christchurch,England,Dorset,South West +Cities of London and Westminster,England,London (City and Westminster),London +City of Chester,England,Cheshire,North West +City of Durham,England,County Durham,North East +Clacton,England,Essex,Eastern +Cleethorpes,England,Lincolnshire (prev. Humberside),Yorkshire & the Humber +Colchester,England,Essex,Eastern +Colne Valley,England,West Yorkshire,Yorkshire & the Humber +Congleton,England,Cheshire,North West +Copeland,England,Cumbria,North West +Corby,England,Northamptonshire,East Midlands +Coventry North East,England,West Midlands,West Midlands +Coventry North West,England,West Midlands,West Midlands +Coventry South,England,West Midlands,West Midlands +Crawley,England,West Sussex,South East +Crewe and Nantwich,England,Cheshire,North West +Croydon Central,England,London (Croydon),London +Croydon North,England,London (Croydon),London +Croydon South,England,London (Croydon),London +Dagenham and Rainham,England,London (Barking and Dagenham and Havering),London +Darlington,England,County Durham,North East +Dartford,England,Kent,South East +Daventry,England,Northamptonshire,East Midlands +Denton and Reddish,England,Greater Manchester,North West +Derby North,England,Derbyshire,East Midlands +Derby South,England,Derbyshire,East Midlands +Derbyshire Dales,England,Derbyshire,East Midlands +Devizes,England,Wiltshire,South West +Dewsbury,England,West Yorkshire,Yorkshire & the Humber +Don Valley,England,South Yorkshire,Yorkshire & the Humber +Doncaster Central,England,South Yorkshire,Yorkshire & the Humber +Doncaster North,England,South Yorkshire,Yorkshire & the Humber +Dover,England,Kent,South East +Dudley North,England,West Midlands,West Midlands +Dudley South,England,West Midlands,West Midlands +Dulwich and West Norwood,England,London (Lambeth and Southwark),London +Ealing Central and Acton,England,London (Ealing),London +Ealing North,England,London (Ealing),London +Ealing, Southall,England,London (Ealing),London +Easington,England,County Durham,North East +East Devon,England,Devon,South West +East Ham,England,London (Newham),London +East Hampshire,England,Hampshire,South East +East Surrey,England,Surrey,South East +East Worthing and Shoreham,England,West Sussex,South East +East Yorkshire,England,East Riding of Yorkshire (prev. Humberside),Yorkshire & the Humber +Eastbourne,England,East Sussex,South East +Eastleigh,England,Hampshire,South East +Eddisbury,England,Cheshire,North West +Edmonton,England,London (Enfield),London +Ellesmere Port and Neston,England,Cheshire,North West +Elmet and Rothwell,England,West Yorkshire,Yorkshire & the Humber +Eltham,England,London (Greenwich),London +Enfield North,England,London (Enfield),London +Enfield, Southgate,England,London (Enfield),London +Epping Forest,England,Essex,Eastern +Epsom and Ewell,England,Surrey,South East +Erewash,England,Derbyshire,East Midlands +Erith and Thamesmead,England,London (Bexley and Greenwich),London +Esher and Walton,England,Surrey,South East +Exeter,England,Devon,South West +Fareham,England,Hampshire,South East +Faversham and Mid Kent,England,Kent,South East +Feltham and Heston,England,London (Hounslow),London +Filton and Bradley Stoke,England,Gloucestershire (prev. Avon),South West +Finchley and Golders Green,England,London (Barnet),London +Folkestone and Hythe,England,Kent,South East +Forest of Dean,England,Gloucestershire,South West +Fylde,England,Lancashire,North West +Gainsborough,England,Lincolnshire,East Midlands +Garston and Halewood,England,Merseyside,North West +Gateshead,England,Tyne and Wear,North East +Gedling,England,Nottinghamshire,East Midlands +Gillingham and Rainham,England,Kent,South East +Gloucester,England,Gloucestershire,South West +Gosport,England,Hampshire,South East +Grantham and Stamford,England,Lincolnshire,East Midlands +Gravesham,England,Kent,South East +Great Grimsby,England,Lincolnshire (prev. Humberside),Yorkshire & the Humber +Great Yarmouth,England,Norfolk,Eastern +Greenwich and Woolwich,England,London (Greenwich),London +Guildford,England,Surrey,South East +Hackney North and Stoke Newington,England,London (Hackney),London +Hackney South and Shoreditch,England,London (Hackney),London +Halesowen and Rowley Regis,England,West Midlands,West Midlands +Halifax,England,West Yorkshire,Yorkshire & the Humber +Haltemprice and Howden,England,East Riding of Yorkshire (prev. Humberside),Yorkshire & the Humber +Halton,England,Cheshire,North West +Hammersmith,England,London (Hammersmith and Fulham),London +Hampstead and Kilburn,England,London (Brent and Camden),London +Harborough,England,Leicestershire,East Midlands +Harlow,England,Essex,Eastern +Harrogate and Knaresborough,England,North Yorkshire,Yorkshire & the Humber +Harrow East,England,London (Harrow),London +Harrow West,England,London (Harrow),London +Hartlepool,England,County Durham (prev. Cleveland),North East +Harwich and North Essex,England,Essex,Eastern +Hastings and Rye,England,East Sussex,South East +Havant,England,Hampshire,South East +Hayes and Harlington,England,London (Hillingdon),London +Hazel Grove,England,Greater Manchester,North West +Hemel Hempstead,England,Hertfordshire,Eastern +Hemsworth,England,West Yorkshire,Yorkshire & the Humber +Hendon,England,London (Barnet),London +Henley,England,Oxfordshire,South East +Hereford and South Herefordshire,England,Herefordshire,West Midlands +Hertford and Stortford,England,Hertfordshire,Eastern +Hertsmere,England,Hertfordshire,Eastern +Hexham,England,Northumberland,North East +Heywood and Middleton,England,Greater Manchester,North West +High Peak,England,Derbyshire,East Midlands +Hitchin and Harpenden,England,Hertfordshire,Eastern +Holborn and St Pancras,England,London (Camden),London +Hornchurch and Upminster,England,London (Havering),London +Hornsey and Wood Green,England,London (Haringey),London +Horsham,England,West Sussex,South East +Houghton and Sunderland South,England,Tyne and Wear,North East +Hove,England,East Sussex,South East +Huddersfield,England,West Yorkshire,Yorkshire & the Humber +Huntingdon,England,Cambridgeshire,Eastern +Hyndburn,England,Lancashire,North West +Ilford North,England,London (Redbridge),London +Ilford South,England,London (Redbridge),London +Ipswich,England,Suffolk,Eastern +Isle of Wight,England,Isle of Wight,South East +Islington North,England,London (Islington),London +Islington South and Finsbury,England,London (Islington),London +Jarrow,England,Tyne and Wear,North East +Keighley,England,West Yorkshire,Yorkshire & the Humber +Kenilworth and Southam,England,Warwickshire,West Midlands +Kensington,England,London (Kensington and Chelsea),London +Kettering,England,Northamptonshire,East Midlands +Kingston and Surbiton,England,London (Kingston upon Thames),London +Kingston upon Hull East,England,East Riding of Yorkshire (prev. Humberside),Yorkshire & the Humber +Kingston upon Hull North,England,East Riding of Yorkshire (prev. Humberside),Yorkshire & the Humber +Kingston upon Hull West and Hessle,England,East Riding of Yorkshire (prev. Humberside),Yorkshire & the Humber +Kingswood,England,Gloucestershire (prev. Avon),South West +Knowsley,England,Merseyside,North West +Lancaster and Fleetwood,England,Lancashire,North West +Leeds Central,England,West Yorkshire,Yorkshire & the Humber +Leeds East,England,West Yorkshire,Yorkshire & the Humber +Leeds North East,England,West Yorkshire,Yorkshire & the Humber +Leeds North West,England,West Yorkshire,Yorkshire & the Humber +Leeds West,England,West Yorkshire,Yorkshire & the Humber +Leicester East,England,Leicestershire,East Midlands +Leicester South,England,Leicestershire,East Midlands +Leicester West,England,Leicestershire,East Midlands +Leigh,England,Greater Manchester,North West +Lewes,England,East Sussex,South East +Lewisham, Deptford,England,London (Lewisham),London +Lewisham East,England,London (Lewisham),London +Lewisham West and Penge,England,London (Bromley and Lewisham),London +Leyton and Wanstead,England,London (Redbridge and Waltham Forest),London +Lichfield,England,Staffordshire,West Midlands +Lincoln,England,Lincolnshire,East Midlands +Liverpool, Riverside,England,Merseyside,North West +Liverpool, Walton,England,Merseyside,North West +Liverpool, Wavertree,England,Merseyside,North West +Liverpool, West Derby,England,Merseyside,North West +Loughborough,England,Leicestershire,East Midlands +Louth and Horncastle,England,Lincolnshire,East Midlands +Ludlow,England,Shropshire,West Midlands +Luton North,England,Bedfordshire,Eastern +Luton South,England,Bedfordshire,Eastern +Macclesfield,England,Cheshire,North West +Maidenhead,England,Berkshire,South East +Maidstone and The Weald,England,Kent,South East +Makerfield,England,Greater Manchester,North West +Maldon,England,Essex,Eastern +Manchester Central,England,Greater Manchester,North West +Manchester, Gorton,England,Greater Manchester,North West +Manchester, Withington,England,Greater Manchester,North West +Mansfield,England,Nottinghamshire,East Midlands +Meon Valley,England,Hampshire,South East +Meriden,England,West Midlands,West Midlands +Mid Bedfordshire,England,Bedfordshire,Eastern +Mid Derbyshire,England,Derbyshire,East Midlands +Mid Dorset and North Poole,England,Dorset,South West +Mid Norfolk,England,Norfolk,Eastern +Mid Sussex,England,West Sussex,South East +Mid Worcestershire,England,Worcestershire,West Midlands +Middlesbrough,England,North Yorkshire (prev. Cleveland),North East +Middlesbrough South and East Cleveland,England,North Yorkshire (prev. Cleveland),North East +Milton Keynes North,England,Buckinghamshire,South East +Milton Keynes South,England,Buckinghamshire,South East +Mitcham and Morden,England,London (Merton),London +Mole Valley,England,Surrey,South East +Morecambe and Lunesdale,England,Lancashire,North West +Morley and Outwood,England,West Yorkshire,Yorkshire & the Humber +New Forest East,England,Hampshire,South East +New Forest West,England,Hampshire,South East +Newark,England,Nottinghamshire,East Midlands +Newbury,England,Berkshire,South East +Newcastle upon Tyne Central,England,Tyne and Wear,North East +Newcastle upon Tyne East,England,Tyne and Wear,North East +Newcastle upon Tyne North,England,Tyne and Wear,North East +Newcastle-under-Lyme,England,Staffordshire,West Midlands +Newton Abbot,England,Devon,South West +Normanton, Pontefract and Castleford,England,West Yorkshire,Yorkshire & the Humber +North Cornwall,England,Cornwall,South West +North Devon,England,Devon,South West +North Dorset,England,Dorset,South West +North Durham,England,County Durham,North East +North East Bedfordshire,England,Bedfordshire,Eastern +North East Cambridgeshire,England,Cambridgeshire,Eastern +North East Derbyshire,England,Derbyshire,East Midlands +North East Hampshire,England,Hampshire,South East +North East Hertfordshire,England,Hertfordshire,Eastern +North East Somerset,England,Somerset (prev. Avon),South West +North Herefordshire,England,Herefordshire,West Midlands +North Norfolk,England,Norfolk,Eastern +North Shropshire,England,Shropshire,West Midlands +North Somerset,England,Somerset (prev. Avon),South West +North Swindon,England,Wiltshire,South West +North Thanet,England,Kent,South East +North Tyneside,England,Tyne and Wear,North East +North Warwickshire,England,Warwickshire,West Midlands +North West Cambridgeshire,England,Cambridgeshire,Eastern +North West Durham,England,County Durham,North East +North West Hampshire,England,Hampshire,South East +North West Leicestershire,England,Leicestershire,East Midlands +North West Norfolk,England,Norfolk,Eastern +North Wiltshire,England,Wiltshire,South West +Northampton North,England,Northamptonshire,East Midlands +Northampton South,England,Northamptonshire,East Midlands +Norwich North,England,Norfolk,Eastern +Norwich South,England,Norfolk,Eastern +Nottingham East,England,Nottinghamshire,East Midlands +Nottingham North,England,Nottinghamshire,East Midlands +Nottingham South,England,Nottinghamshire,East Midlands +Nuneaton,England,Warwickshire,West Midlands +Old Bexley and Sidcup,England,London (Bexley),London +Oldham East and Saddleworth,England,Greater Manchester,North West +Oldham West and Royton,England,Greater Manchester,North West +Orpington,England,London (Bromley),London +Oxford East,England,Oxfordshire,South East +Oxford West and Abingdon,England,Oxfordshire,South East +Pendle,England,Lancashire,North West +Penistone and Stocksbridge,England,South Yorkshire,Yorkshire & the Humber +Penrith and The Border,England,Cumbria,North West +Peterborough,England,Cambridgeshire,Eastern +Plymouth, Moor View,England,Devon,South West +Plymouth, Sutton and Devonport,England,Devon,South West +Poole,England,Dorset,South West +Poplar and Limehouse,England,London (Tower Hamlets),London +Portsmouth North,England,Hampshire,South East +Portsmouth South,England,Hampshire,South East +Preston,England,Lancashire,North West +Pudsey,England,West Yorkshire,Yorkshire & the Humber +Putney,England,London (Wandsworth),London +Rayleigh and Wickford,England,Essex,Eastern +Reading East,England,Berkshire,South East +Reading West,England,Berkshire,South East +Redcar,England,North Yorkshire (prev. Cleveland),North East +Redditch,England,Worcestershire,West Midlands +Reigate,England,Surrey,South East +Ribble Valley,England,Lancashire,North West +Richmond (Yorks),England,North Yorkshire,Yorkshire & the Humber +Richmond Park,England,London (Kingston upon Thames and Richmond upon Thames),London +Rochdale,England,Greater Manchester,North West +Rochester and Strood,England,Kent,South East +Rochford and Southend East,England,Essex,Eastern +Romford,England,London (Havering),London +Romsey and Southampton North,England,Hampshire,South East +Rossendale and Darwen,England,Lancashire,North West +Rother Valley,England,South Yorkshire,Yorkshire & the Humber +Rotherham,England,South Yorkshire,Yorkshire & the Humber +Rugby,England,Warwickshire,West Midlands +Ruislip, Northwood and Pinner,England,London (Harrow and Hillingdon),London +Runnymede and Weybridge,England,Surrey,South East +Rushcliffe,England,Nottinghamshire,East Midlands +Rutland and Melton,England,Leicestershire and Rutland,East Midlands +Saffron Walden,England,Essex,Eastern +Salford and Eccles,England,Greater Manchester,North West +Salisbury,England,Wiltshire,South West +Scarborough and Whitby,England,North Yorkshire,Yorkshire & the Humber +Scunthorpe,England,Lincolnshire (prev. Humberside),Yorkshire & the Humber +Sedgefield,England,County Durham,North East +Sefton Central,England,Merseyside,North West +Selby and Ainsty,England,North Yorkshire,Yorkshire & the Humber +Sevenoaks,England,Kent,South East +Sheffield, Brightside and Hillsborough,England,South Yorkshire,Yorkshire & the Humber +Sheffield Central,England,South Yorkshire,Yorkshire & the Humber +Sheffield, Hallam,England,South Yorkshire,Yorkshire & the Humber +Sheffield, Heeley,England,South Yorkshire,Yorkshire & the Humber +Sheffield South East,England,South Yorkshire,Yorkshire & the Humber +Sherwood,England,Nottinghamshire,East Midlands +Shipley,England,West Yorkshire,Yorkshire & the Humber +Shrewsbury and Atcham,England,Shropshire,West Midlands +Sittingbourne and Sheppey,England,Kent,South East +Skipton and Ripon,England,North Yorkshire,Yorkshire & the Humber +Sleaford and North Hykeham,England,Lincolnshire,East Midlands +Slough,England,Berkshire,South East +Solihull,England,West Midlands,West Midlands +Somerton and Frome,England,Somerset,South West +South Basildon and East Thurrock,England,Essex,Eastern +South Cambridgeshire,England,Cambridgeshire,Eastern +South Derbyshire,England,Derbyshire,East Midlands +South Dorset,England,Dorset,South West +South East Cambridgeshire,England,Cambridgeshire,Eastern +South East Cornwall,England,Cornwall,South West +South Holland and The Deepings,England,Lincolnshire,East Midlands +South Leicestershire,England,Leicestershire,East Midlands +South Norfolk,England,Norfolk,Eastern +South Northamptonshire,England,Northamptonshire,East Midlands +South Ribble,England,Lancashire,North West +South Shields,England,Tyne and Wear,North East +South Staffordshire,England,Staffordshire,West Midlands +South Suffolk,England,Suffolk,Eastern +South Swindon,England,Wiltshire,South West +South Thanet,England,Kent,South East +South West Bedfordshire,England,Bedfordshire,Eastern +South West Devon,England,Devon,South West +South West Hertfordshire,England,Hertfordshire,Eastern +South West Norfolk,England,Norfolk,Eastern +South West Surrey,England,Surrey,South East +South West Wiltshire,England,Wiltshire,South West +Southampton, Itchen,England,Hampshire,South East +Southampton, Test,England,Hampshire,South East +Southend West,England,Essex,Eastern +Southport,England,Merseyside,North West +Spelthorne,England,Surrey,South East +St Albans,England,Hertfordshire,Eastern +St Austell and Newquay,England,Cornwall,South West +St Helens North,England,Merseyside,North West +St Helens South and Whiston,England,Merseyside,North West +St Ives,England,Cornwall,South West +Stafford,England,Staffordshire,West Midlands +Staffordshire Moorlands,England,Staffordshire,West Midlands +Stalybridge and Hyde,England,Greater Manchester,North West +Stevenage,England,Hertfordshire,Eastern +Stockport,England,Greater Manchester,North West +Stockton North,England,County Durham (prev. Cleveland),North East +Stockton South,England,County Durham and North Yorkshire (prev. Cleveland),North East +Stoke-on-Trent Central,England,Staffordshire,West Midlands +Stoke-on-Trent North,England,Staffordshire,West Midlands +Stoke-on-Trent South,England,Staffordshire,West Midlands +Stone,England,Staffordshire,West Midlands +Stourbridge,England,West Midlands,West Midlands +Stratford-on-Avon,England,Warwickshire,West Midlands +Streatham,England,London (Lambeth),London +Stretford and Urmston,England,Greater Manchester,North West +Stroud,England,Gloucestershire,South West +Suffolk Coastal,England,Suffolk,Eastern +Sunderland Central,England,Tyne and Wear,North East +Surrey Heath,England,Surrey,South East +Sutton and Cheam,England,London (Sutton),London +Sutton Coldfield,England,West Midlands,West Midlands +Tamworth,England,Staffordshire,West Midlands +Tatton,England,Cheshire,North West +Taunton Deane,England,Somerset,South West +Telford,England,Shropshire,West Midlands +Tewkesbury,England,Gloucestershire,South West +The Cotswolds,England,Gloucestershire,South West +The Wrekin,England,Shropshire,West Midlands +Thirsk and Malton,England,North Yorkshire,Yorkshire & the Humber +Thornbury and Yate,England,Gloucestershire (prev. Avon),South West +Thurrock,England,Essex,Eastern +Tiverton and Honiton,England,Devon,South West +Tonbridge and Malling,England,Kent,South East +Tooting,England,London (Wandsworth),London +Torbay,England,Devon,South West +Torridge and West Devon,England,Devon,South West +Totnes,England,Devon,South West +Tottenham,England,London (Haringey),London +Truro and Falmouth,England,Cornwall,South West +Tunbridge Wells,England,Kent,South East +Twickenham,England,London (Richmond upon Thames),London +Tynemouth,England,Tyne and Wear,North East +Uxbridge and South Ruislip,England,London (Hillingdon),London +Vauxhall,England,London (Lambeth),London +Wakefield,England,West Yorkshire,Yorkshire & the Humber +Wallasey,England,Merseyside,North West +Walsall North,England,West Midlands,West Midlands +Walsall South,England,West Midlands,West Midlands +Walthamstow,England,London (Waltham Forest),London +Wansbeck,England,Northumberland,North East +Wantage,England,Oxfordshire,South East +Warley,England,West Midlands,West Midlands +Warrington North,England,Cheshire,North West +Warrington South,England,Cheshire,North West +Warwick and Leamington,England,Warwickshire,West Midlands +Washington and Sunderland West,England,Tyne and Wear,North East +Watford,England,Hertfordshire,Eastern +Waveney,England,Suffolk,Eastern +Wealden,England,East Sussex,South East +Weaver Vale,England,Cheshire,North West +Wellingborough,England,Northamptonshire,East Midlands +Wells,England,Somerset,South West +Welwyn Hatfield,England,Hertfordshire,Eastern +Wentworth and Dearne,England,South Yorkshire,Yorkshire & the Humber +West Bromwich East,England,West Midlands,West Midlands +West Bromwich West,England,West Midlands,West Midlands +West Dorset,England,Dorset,South West +West Ham,England,London (Newham),London +West Lancashire,England,Lancashire,North West +West Suffolk,England,Suffolk,Eastern +West Worcestershire,England,Worcestershire,West Midlands +Westminster North,England,London (Westminster),London +Westmorland and Lonsdale,England,Cumbria,North West +Weston-Super-Mare,England,Somerset (prev. Avon),South West +Wigan,England,Greater Manchester,North West +Wimbledon,England,London (Merton),London +Winchester,England,Hampshire,South East +Windsor,England,Berkshire,South East +Wirral South,England,Merseyside,North West +Wirral West,England,Merseyside,North West +Witham,England,Essex,Eastern +Witney,England,Oxfordshire,South East +Woking,England,Surrey,South East +Wokingham,England,Berkshire,South East +Wolverhampton North East,England,West Midlands,West Midlands +Wolverhampton South East,England,West Midlands,West Midlands +Wolverhampton South West,England,West Midlands,West Midlands +Worcester,England,Worcestershire,West Midlands +Workington,England,Cumbria,North West +Worsley and Eccles South,England,Greater Manchester,North West +Worthing West,England,West Sussex,South East +Wycombe,England,Buckinghamshire,South East +Wyre and Preston North,England,Lancashire,North West +Wyre Forest,England,Worcestershire,West Midlands +Wythenshawe and Sale East,England,Greater Manchester,North West +Yeovil,England,Somerset,South West +York Central,England,North Yorkshire,Yorkshire & the Humber +York Outer,England,North Yorkshire,Yorkshire & the Humber +Aberdeen North,Scotland,Aberdeen City,null +Aberdeen South,Scotland,Aberdeen City,null +Airdrie and Shotts,Scotland,North Lanarkshire,null +Angus,Scotland,Angus,null +Argyll and Bute,Scotland,Argyll and Bute,null +Ayr, Carrick and Cumnock,Scotland,East Ayrshire and South Ayrshire,null +Banff and Buchan,Scotland,Aberdeenshire,null +Berwickshire, Roxburgh and Selkirk,Scotland,Scottish Borders,null +Caithness, Sutherland and Easter Ross,Scotland,Highland,null +Central Ayrshire,Scotland,North Ayrshire and South Ayrshire,null +Coatbridge, Chryston and Bellshill,Scotland,North Lanarkshire,null +Cumbernauld, Kilsyth and Kirkintilloch East,Scotland,East Dunbartonshire and North Lanarkshire,null +Dumfries and Galloway,Scotland,Dumfries and Galloway,null +Dumfriesshire, Clydesdale and Tweeddale,Scotland,Dumfries and Galloway, Scottish Borders and South Lanarkshire,null +Dundee East,Scotland,Angus and Dundee City,null +Dundee West,Scotland,Angus and Dundee City,null +Dunfermline and West Fife,Scotland,Fife,null +East Dunbartonshire,Scotland,East Dunbartonshire,null +East Kilbride, Strathaven and Lesmahagow,Scotland,South Lanarkshire,null +East Lothian,Scotland,East Lothian,null +East Renfrewshire,Scotland,East Renfrewshire,null +Edinburgh East,Scotland,City of Edinburgh,null +Edinburgh North and Leith,Scotland,City of Edinburgh,null +Edinburgh South,Scotland,City of Edinburgh,null +Edinburgh South West,Scotland,City of Edinburgh,null +Edinburgh West,Scotland,City of Edinburgh,null +Falkirk,Scotland,Falkirk,null +Glasgow Central,Scotland,Glasgow City,null +Glasgow East,Scotland,Glasgow City,null +Glasgow North,Scotland,Glasgow City,null +Glasgow North East,Scotland,Glasgow City,null +Glasgow North West,Scotland,Glasgow City,null +Glasgow South,Scotland,Glasgow City,null +Glasgow South West,Scotland,Glasgow City,null +Glenrothes,Scotland,Fife,null +Gordon,Scotland,Aberdeenshire,null +Inverclyde,Scotland,Inverclyde,null +Inverness, Nairn, Badenoch and Strathspey,Scotland,Highland,null +Kilmarnock and Loudoun,Scotland,East Ayrshire,null +Kirkcaldy and Cowdenbeath,Scotland,Fife,null +Lanark and Hamilton East,Scotland,South Lanarkshire,null +Linlithgow and East Falkirk,Scotland,West Lothian and Falkirk,null +Livingston,Scotland,West Lothian,null +Midlothian,Scotland,Midlothian,null +Moray,Scotland,Moray,null +Motherwell and Wishaw,Scotland,North Lanarkshire,null +Na h-Eileanan an Iar,Scotland,Outer Hebrides,null +North Ayrshire and Arran,Scotland,North Ayrshire,null +North East Fife,Scotland,Fife,null +Ochil and South Perthshire,Scotland,Clackmannanshire and Perth and Kinross,null +Orkney and Shetland,Scotland,Orkney Islands and Shetland Islands,null +Paisley and Renfrewshire North,Scotland,Renfrewshire,null +Paisley and Renfrewshire South,Scotland,Renfrewshire,null +Perth and North Perthshire,Scotland,Perth and Kinross,null +Ross, Skye and Lochaber,Scotland,Highland,null +Rutherglen and Hamilton West,Scotland,South Lanarkshire,null +Stirling,Scotland,Stirling,null +West Aberdeenshire and Kincardine,Scotland,Aberdeenshire,null +West Dunbartonshire,Scotland,West Dunbartonshire,null +Aberavon,Wales,Neath Port Talbot,null +Aberconwy,Wales,Conwy,null +Alyn and Deeside,Wales,Flintshire; Wrexham,null +Arfon,Wales,Gwynedd,null +Blaenau Gwent,Wales,Blaenau Gwent,null +Brecon and Radnorshire,Wales,Powys,null +Bridgend,Wales,Bridgend,null +Caerphilly,Wales,Caerphilly; Newport,null +Cardiff Central,Wales,Cardiff,null +Cardiff North,Wales,Cardiff,null +Cardiff South and Penarth,Wales,Cardiff,null +Cardiff West,Wales,Cardiff,null +Carmarthen East and Dinefwr,Wales,Carmarthenshire,null +Carmarthen West and South Pembrokeshire,Wales,Carmarthenshire; Pembrokeshire,null +Ceredigion,Wales,Ceredigion,null +Clwyd South,Wales,Denbighshire; Wrexham,null +Clwyd West,Wales,Conwy; Denbighshire,null +Cynon Valley,Wales,Rhondda Cynon Taf,null +Delyn,Wales,Conwy; Flintshire,null +Dwyfor Meirionnydd,Wales,Gwynedd,null +Gower,Wales,Swansea,null +Islwyn,Wales,Caerphilly,null +Llanelli,Wales,Carmarthenshire; Swansea,null +Merthyr Tydfil and Rhymney,Wales,Caerphilly; Merthyr Tydfil,null +Monmouth,Wales,Monmouthshire,null +Montgomeryshire,Wales,Powys,null +Neath,Wales,Neath Port Talbot,null +Newport East,Wales,Newport,null +Newport West,Wales,Newport,null +Ogmore,Wales,Bridgend; Rhondda Cynon Taf,null +Pontypridd,Wales,Rhondda Cynon Taf,null +Preseli Pembrokeshire,Wales,Pembrokeshire,null +Rhondda,Wales,Rhondda Cynon Taf,null +Swansea East,Wales,Swansea,null +Swansea West,Wales,Swansea,null +Torfaen,Wales,Torfaen,null +Vale of Clwyd,Wales,Denbighshire,null +Vale of Glamorgan,Wales,Vale of Glamorgan,null +Wrexham,Wales,Wrexham,null +Ynys Môn,Wales,Isle of Anglesey,null +Belfast East,Northern Ireland,Belfast; Lisburn and Castlereagh,null +Belfast North,Northern Ireland,Belfast; Antrim and Newtownabbey,null +Belfast South,Northern Ireland,Belfast; Lisburn and Castlereagh,null +Belfast West,Northern Ireland,Belfast; Lisburn and Castlereagh,null +East Antrim,Northern Ireland,Antrim and Newtownabbey; Causeway Coast and Glens; Mid and East Antrim,null +East Londonderry,Northern Ireland,Causeway Coast and Glens; Derry City and Strabane,null +Fermanagh and South Tyrone,Northern Ireland,Armagh City, Banbridge and Craigavon; Fermanagh and Omagh; Mid Ulster,null +Foyle,Northern Ireland,Derry City and Strabane,null +Lagan Valley,Northern Ireland,Armagh City, Banbridge and Craigavon; Lisburn and Castlereagh; Newry, Mourne and Down,null +Mid Ulster,Northern Ireland,Mid Ulster,null +Newry and Armagh,Northern Ireland,Armagh City, Banbridge and Craigavon; Newry, Mourne and Down,null +North Antrim,Northern Ireland,Causeway Coast and Glens; Mid and East Antrim,null +North Down,Northern Ireland,Ards and North Down,null +South Antrim,Northern Ireland,Antrim and Newtownabbey; Lisburn and Castlereagh,null +South Down,Northern Ireland,Armagh City, Banbridge and Craigavon; Newry, Mourne and Down,null +Strangford,Northern Ireland,Ards and North Down; Lisburn and Castlereagh; Newry, Mourne and Down,null +Upper Bann,Northern Ireland,Armagh City, Banbridge and Craigavon,null +West Tyrone,Northern Ireland,Derry City and Strabane; Fermanagh and Omagh,null diff --git a/data/regional/uk-constituency/politics/brexit/uk-election-brexit-leave.json b/data/regional/uk-constituency/politics/brexit/uk-election-brexit-leave.json new file mode 100644 index 0000000..4283d27 --- /dev/null +++ b/data/regional/uk-constituency/politics/brexit/uk-election-brexit-leave.json @@ -0,0 +1,665 @@ +{ + "metadata" : { + "name" : "Brexit Leave Results", + "country" : "United Kingdom", + "description" : "Percentage of the United Kingdom population who voted to leave in the European Union", + "units" : "%", + "year" : "2016", + "author" : "UK Government", + "tags" : ["country","uk","constituency","politics","election","brexit"], + "source" : [ + "https://en.wikipedia.org/wiki/Results_of_the_2016_United_Kingdom_European_Union_membership_referendum" + ] + }, +--- +uk.constituency.name,uk.election.brexit.leave +Boston and Skegness,0.7565 +Walsall North,0.7419 +Clacton,0.7304 +South Basildon and East Thurrock,0.73 +Kingston upon Hull East,0.7283 +Castle Point,0.727 +Stoke-on-Trent North,0.7212 +Doncaster North,0.7165 +Great Yarmouth,0.715 +Great Grimsby,0.7145 +Dudley North,0.7143 +Stoke-on-Trent South,0.7111 +South Holland and The Deepings,0.7107 +Barnsley East,0.7098 +Mansfield,0.7086 +Ashfield,0.7047 +Dudley South,0.7042 +Bolsover,0.7039 +Dagenham and Rainham,0.7035 +Wentworth and Dearne,0.7028 +Thurrock,0.7026 +Hartlepool,0.6957 +Cleethorpes,0.695 +Hornchurch and Upminster,0.6949 +North East Cambridgeshire,0.6935 +Romford,0.6929 +Normanton, Pontefract and Castleford,0.6926 +Louth and Horncastle,0.689 +Cannock Chase,0.6886 +Scunthorpe,0.6868 +West Bromwich West,0.6867 +Don Valley,0.6849 +Rotherham,0.6835 +Bassetlaw,0.6832 +Barnsley Central,0.6819 +West Bromwich East,0.6818 +Wolverhampton South East,0.6814 +Hemsworth,0.6813 +Kingston upon Hull West and Hessle,0.6799 +Blackpool South,0.6781 +Aldridge-Brownhills,0.678 +North Warwickshire,0.6776 +Harlow,0.6773 +Wolverhampton North East,0.6771 +Redcar,0.6767 +Rayleigh and Wickford,0.6765 +Basildon and Billericay,0.6714 +Blackpool North and Cleveleys,0.6691 +Rother Valley,0.6672 +Doncaster Central,0.667 +South West Norfolk,0.6667 +Burnley,0.6661 +Halesowen and Rowley Regis,0.6659 +Plymouth, Moor View,0.6644 +Stockton North,0.6632 +Sheffield South East,0.6632 +Brigg and Goole,0.6623 +Telford,0.6619 +Middlesbrough,0.6608 +Tamworth,0.6599 +Easington,0.6596 +Hyndburn,0.6582 +North West Norfolk,0.6578 +Broxbourne,0.6553 +Gravesham,0.6538 +Sittingbourne and Sheppey,0.6536 +Amber Valley,0.653 +Middlesbrough South and East Cleveland,0.6527 +Bexleyheath and Crayford,0.6526 +South Staffordshire,0.6524 +North Thanet,0.6518 +Makerfield,0.6491 +Stoke-on-Trent Central,0.6485 +Burton,0.6479 +Bognor Regis and Littlehampton,0.6479 +Staffordshire Moorlands,0.6469 +Nuneaton,0.6451 +St Austell and Newquay,0.6406 +Dartford,0.6398 +Chatham and Aylesford,0.6391 +Nottingham North,0.6381 +Portsmouth North,0.6369 +Rochester and Strood,0.6369 +Stourbridge,0.6366 +East Yorkshire,0.6366 +Sherwood,0.6366 +Gillingham and Rainham,0.6358 +Bradford South,0.6356 +Waveney,0.6341 +Leigh,0.6329 +West Suffolk,0.6325 +Erewash,0.6322 +Pendle,0.6315 +Wyre Forest,0.6315 +Bolton South East,0.6303 +Wellingborough,0.6302 +Dover,0.6301 +Birmingham, Erdington,0.63 +Wigan,0.6296 +Wakefield,0.6277 +Peterborough,0.6268 +Havant,0.6262 +Torbay,0.6245 +Houghton and Sunderland South,0.6243 +Old Bexley and Sidcup,0.6243 +Heywood and Middleton,0.6243 +North Antrim,0.6222 +Bridgwater and West Somerset,0.6206 +South Shields,0.6205 +North East Derbyshire,0.6205 +Blaenau Gwent,0.6203 +Gainsborough,0.6196 +Isle of Wight,0.6195 +Washington and Sunderland West,0.6185 +Gosport,0.6182 +Ashton-under-Lyne,0.6181 +Birmingham, Northfield,0.618 +Swansea East,0.6179 +Jarrow,0.6178 +South Thanet,0.6169 +Newcastle-under-Lyme,0.6164 +Folkestone and Hythe,0.6164 +Walsall South,0.6164 +Warley,0.6163 +Sleaford and North Hykeham,0.6158 +Braintree,0.6152 +Leeds East,0.6144 +Derby South,0.6135 +Scarborough and Whitby,0.6132 +Oldham West and Royton,0.6131 +Brentwood and Ongar,0.6119 +Epping Forest,0.6101 +Workington,0.6101 +Grantham and Stamford,0.61 +Redditch,0.6099 +Kettering,0.6099 +Denton and Reddish,0.6098 +Maldon,0.6096 +Rochford and Southend East,0.6092 +Bishop Auckland,0.6089 +Bosworth,0.6083 +Torfaen,0.6078 +North West Leicestershire,0.607 +Penistone and Stocksbridge,0.6065 +Carlisle,0.6064 +Mid Norfolk,0.606 +Blyth Valley,0.6049 +Witham,0.6047 +Rhondda,0.6045 +Hereford and South Herefordshire,0.6042 +South Derbyshire,0.6035 +North Durham,0.603 +Spelthorne,0.603 +Southampton, Itchen,0.6029 +Crewe and Nantwich,0.6029 +Northampton North,0.6027 +North Cornwall,0.6019 +New Forest East,0.6018 +Corby,0.6015 +Aberavon,0.6012 +Birmingham, Yardley,0.601 +Barking,0.5997 +Sheffield, Brightside and Hillsborough,0.5997 +Christchurch,0.5996 +Sunderland Central,0.5994 +Oldham East and Saddleworth,0.5992 +Clwyd South,0.5988 +Yeovil,0.5987 +Ashford,0.5986 +North Shropshire,0.5985 +Morley and Outwood,0.5982 +Worsley and Eccles South,0.5979 +Kingston upon Hull North,0.5979 +Batley and Spen,0.5963 +North Tyneside,0.5952 +South Dorset,0.5945 +Sedgefield,0.5944 +Mid Worcestershire,0.5939 +Newport East,0.5933 +The Wrekin,0.5932 +Chesterfield,0.5929 +Stalybridge and Hyde,0.5929 +Copeland,0.592 +Luton North,0.5915 +Harwich and North Essex,0.59 +Northampton South,0.59 +Islwyn,0.5894 +Rossendale and Darwen,0.5894 +Ogmore,0.589 +Halifax,0.5882 +Gloucester,0.5881 +Meriden,0.5881 +Beverley and Holderness,0.5874 +Ribble Valley,0.5873 +Faversham and Mid Kent,0.5867 +Rugby,0.5862 +Daventry,0.5859 +Crawley,0.5841 +Camborne and Redruth,0.5841 +North Norfolk,0.584 +St Helens North,0.5839 +Coventry North West,0.5837 +Merthyr Tydfil and Rhymney,0.5835 +Ellesmere Port and Neston,0.5834 +Hayes and Harlington,0.5825 +Morecambe and Lunesdale,0.5819 +South Leicestershire,0.5814 +Bolton North East,0.5811 +Darlington,0.581 +South West Bedfordshire,0.5808 +Warrington North,0.5807 +Alyn and Deeside,0.5805 +North Herefordshire,0.5802 +Aldershot,0.579 +Forest of Dean,0.5789 +Ludlow,0.5788 +Charnwood,0.5787 +Tiverton and Honiton,0.5782 +Coventry North East,0.5777 +Stockton South,0.5776 +Bournemouth West,0.5773 +Bexhill and Battle,0.5772 +Halton,0.5767 +Selby and Ainsty,0.5765 +Wrexham,0.5757 +Eastbourne,0.5754 +Orpington,0.5754 +Stone,0.5754 +Lichfield,0.5751 +Stafford,0.5746 +Rochdale,0.5745 +Lincoln,0.5743 +Poole,0.5742 +North Swindon,0.5729 +Barrow and Furness,0.5728 +Weston-Super-Mare,0.572 +Torridge and West Devon,0.5719 +Uxbridge and South Ruislip,0.5719 +Sheffield, Heeley,0.5716 +Dewsbury,0.5715 +Kingswood,0.5712 +Mid Dorset and North Poole,0.5708 +North Devon,0.5704 +Stevenage,0.5704 +North West Cambridgeshire,0.5693 +South West Wiltshire,0.5688 +Newcastle upon Tyne North,0.5683 +Elmet and Rothwell,0.5679 +Chorley,0.5675 +Cynon Valley,0.5673 +Fylde,0.5673 +Norwich North,0.5673 +Llanelli,0.5667 +South Ribble,0.5664 +North Dorset,0.5661 +Vale of Clwyd,0.5656 +Ipswich,0.5652 +Thirsk and Malton,0.5643 +Gedling,0.563 +Wansbeck,0.5629 +Carshalton and Wallington,0.5626 +Gateshead,0.5622 +Blaydon,0.5612 +St Helens South and Whiston,0.5605 +Worthing West,0.5602 +Newton Abbot,0.5601 +Hastings and Rye,0.5594 +Feltham and Heston,0.5593 +Maidstone and The Weald,0.5592 +Montgomeryshire,0.5584 +Newark,0.557 +Preston,0.5567 +Bolton West,0.5555 +Strangford,0.5553 +Fareham,0.5552 +Hemel Hempstead,0.5549 +Bromsgrove,0.5537 +Preseli Pembrokeshire,0.5532 +Berwick-upon-Tweed,0.553 +New Forest West,0.5526 +Haltemprice and Howden,0.5523 +Suffolk Coastal,0.5521 +Penrith and The Border,0.552 +East Antrim,0.5519 +Carmarthen West and South Pembrokeshire,0.5516 +Bradford East,0.5516 +Caerphilly,0.5514 +South East Cornwall,0.551 +South West Devon,0.5508 +Southend West,0.5507 +North West Durham,0.5505 +West Lancashire,0.5495 +Central Suffolk and North Ipswich,0.5489 +Bootle,0.548 +St Ives,0.5477 +North West Hampshire,0.5475 +Richmond (Yorks),0.5471 +Erith and Thamesmead,0.5463 +Luton South,0.546 +Bury South,0.5451 +Delyn,0.5441 +Plymouth, Sutton and Devonport,0.5441 +Wolverhampton South West,0.5437 +Eastleigh,0.5435 +Derby North,0.5425 +East Surrey,0.542 +Wyre and Preston North,0.542 +Broadland,0.541 +Leicester East,0.5406 +Slough,0.5406 +Sevenoaks,0.5404 +South Suffolk,0.5403 +Neath,0.5402 +Bury St Edmunds,0.5399 +Totnes,0.5389 +Rutland and Melton,0.5388 +Blackburn,0.5373 +Bournemouth East,0.5369 +East Worthing and Shoreham,0.5368 +Worcester,0.5368 +Bury North,0.5367 +Newport West,0.5366 +Tewkesbury,0.5365 +Wells,0.5363 +Basingstoke,0.536 +Banff and Buchan,0.5359 +Salford and Eccles,0.5359 +Devizes,0.5353 +Huntingdon,0.5349 +North East Bedfordshire,0.5344 +Solihull,0.5335 +South Northamptonshire,0.5334 +Keighley,0.5333 +Ilford North,0.5331 +Leeds West,0.5327 +Bracknell,0.5324 +Carmarthen East and Dinefwr,0.5321 +Skipton and Ripon,0.5319 +Calder Valley,0.5316 +Lagan Valley,0.5309 +Milton Keynes South,0.5308 +Clwyd West,0.5301 +Taunton Deane,0.5292 +Shrewsbury and Atcham,0.5292 +Mid Bedfordshire,0.5288 +Tonbridge and Malling,0.5286 +Welwyn Hatfield,0.5282 +Wealden,0.5277 +Upper Bann,0.5262 +Congleton,0.5261 +Vale of Glamorgan,0.5255 +West Worcestershire,0.5252 +Broxtowe,0.5251 +Mid Derbyshire,0.5247 +Harborough,0.5237 +Knowsley,0.5234 +Shipley,0.5221 +Hazel Grove,0.5221 +Aberconwy,0.522 +Thornbury and Yate,0.5219 +Liverpool, Walton,0.5217 +Eddisbury,0.5217 +Lancaster and Fleetwood,0.5199 +Bedford,0.5195 +Belfast East,0.5194 +Meon Valley,0.5193 +Brecon and Radnorshire,0.5186 +Surrey Heath,0.5185 +Huddersfield,0.5185 +Eltham,0.5182 +Aylesbury,0.5179 +Portsmouth South,0.5176 +Birkenhead,0.5171 +Sutton Coldfield,0.517 +South Swindon,0.5165 +North East Somerset,0.5163 +Chippenham,0.5159 +Colchester,0.5151 +Reading West,0.5151 +Birmingham, Hodge Hill,0.515 +North East Hertfordshire,0.5143 +Caithness, Sutherland and Easter Ross,0.5134 +Sutton and Cheam,0.5128 +Saffron Walden,0.5124 +Derbyshire Dales,0.5124 +Birmingham, Perry Barr,0.512 +Watford,0.5115 +Warrington South,0.5111 +West Dorset,0.5104 +Stratford-on-Avon,0.51 +Ynys Mon,0.5094 +Central Devon,0.5089 +South Norfolk,0.5088 +Hertsmere,0.5084 +Leicester West,0.5084 +Chichester,0.5073 +Chelmsford,0.5068 +Weaver Vale,0.5055 +High Peak,0.5055 +East Devon,0.5041 +Coventry South,0.5038 +Banbury,0.5035 +Somerton and Frome,0.5033 +Croydon Central,0.5031 +North Wiltshire,0.503 +Bridgend,0.5028 +Loughborough,0.5009 +Colne Valley,0.5006 +Blackley and Broughton,0.5004 +Wallasey,0.4992 +Salisbury,0.4991 +Chingford and Woodford Green,0.4988 +Moray,0.4987 +Runnymede and Weybridge,0.4985 +Bromley and Chislehurst,0.4983 +Liverpool, West Derby,0.4982 +Arundel and South Downs,0.497 +Milton Keynes North,0.4967 +Wythenshawe and Sale East,0.4965 +Belfast North,0.4964 +Ruislip, Northwood and Pinner,0.4954 +Horsham,0.4949 +Southampton, Test,0.4941 +Gower,0.4931 +East Hampshire,0.4927 +Hertford and Stortford,0.4924 +Enfield North,0.4922 +Beaconsfield,0.4901 +Stretford and Urmston,0.4891 +Buckingham,0.4887 +Filton and Bradley Stoke,0.4877 +Pudsey,0.4858 +Wycombe,0.4846 +Angus,0.4824 +Monmouth,0.4806 +Newcastle upon Tyne Central,0.48 +Reigate,0.4798 +East Londonderry,0.4797 +West Ham,0.4797 +Garston and Halewood,0.4796 +The Cotswolds,0.4792 +Newbury,0.4781 +Epsom and Ewell,0.4778 +North Down,0.4764 +Tynemouth,0.4764 +Glenrothes,0.4761 +North Somerset,0.4758 +Harrow East,0.4748 +Dwyfor Meirionnydd,0.4743 +Mole Valley,0.4731 +Birmingham, Edgbaston,0.473 +Macclesfield,0.4718 +Harrogate and Knaresborough,0.4718 +Lewes,0.4714 +Bristol South,0.4714 +Westmorland and Lonsdale,0.4706 +Birmingham, Selly Oak,0.469 +Bristol East,0.468 +Stockport,0.4679 +Bradford West,0.4674 +Windsor,0.4666 +Beckenham,0.4658 +Wirral South,0.4655 +Pontypridd,0.4651 +Nottingham South,0.4647 +Wantage,0.4646 +Mid Sussex,0.4644 +Witney,0.4634 +Southport,0.4629 +East Ham,0.4627 +Ealing North,0.4626 +Kenilworth and Southam,0.4621 +South West Hertfordshire,0.462 +North East Hampshire,0.4618 +Romsey and Southampton North,0.4608 +Leeds Central,0.4596 +Stroud,0.4586 +Truro and Falmouth,0.4585 +Croydon South,0.4581 +Tatton,0.4563 +Edmonton,0.4551 +Ceredigion,0.4537 +Hexham,0.4534 +Canterbury,0.4533 +South East Cambridgeshire,0.453 +Dumfries and Galloway,0.4511 +Harrow West,0.4506 +Maidenhead,0.4503 +Chesham and Amersham,0.4498 +Exeter,0.4483 +Na h-Eileanan an Iar,0.4476 +Wirral West,0.4469 +Mitcham and Morden,0.4469 +York Outer,0.4467 +Tunbridge Wells,0.4465 +Dumfriesshire, Clydesdale and Tweeddale,0.4465 +Gordon,0.4429 +Woking,0.4425 +Ayr, Carrick and Cumnock,0.4411 +Sefton Central,0.4409 +Glasgow East,0.4384 +Cardiff West,0.4382 +Brighton, Kemptown,0.4359 +Ross, Skye and Lochaber,0.4349 +Swansea West,0.434 +City of Durham,0.4334 +Ilford South,0.4331 +Brentford and Isleworth,0.4331 +Kirkcaldy and Cowdenbeath,0.4326 +Livingston,0.4326 +Berwickshire, Roxburgh and Selkirk,0.4326 +Aberdeen North,0.4309 +Henley,0.4309 +Cheltenham,0.429 +Brent Central,0.4289 +Nottingham East,0.4288 +Cardiff South and Penarth,0.4282 +Wokingham,0.4269 +Cheadle,0.4265 +Brent North,0.4261 +Leicester South,0.4244 +North Ayrshire and Arran,0.424 +City of Chester,0.4228 +Falkirk,0.4211 +Linlithgow and East Falkirk,0.4202 +Ealing, Southall,0.4183 +Warwick and Leamington,0.4164 +Central Ayrshire,0.4162 +Bristol North West,0.416 +Hendon,0.4157 +Esher and Walton,0.4157 +Rushcliffe,0.4147 +Fermanagh and South Tyrone,0.4144 +Guildford,0.412 +South Antrim,0.4118 +Croydon North,0.4117 +Chipping Barnet,0.4107 +Newcastle upon Tyne East,0.4107 +Glasgow South West,0.4086 +Kingston and Surbiton,0.4084 +South West Surrey,0.4075 +Dundee West,0.4075 +Glasgow North East,0.4066 +Norwich South,0.4053 +Orkney and Shetland,0.4028 +Inverness, Nairn, Badenoch and Strathspey,0.4013 +Perth and North Perthshire,0.399 +Airdrie and Shotts,0.3984 +Hitchin and Harpenden,0.3979 +Winchester,0.3964 +Mid Ulster,0.3961 +Ochil and South Perthshire,0.395 +Kilmarnock and Loudoun,0.3945 +Argyll and Bute,0.3943 +Dunfermline and West Fife,0.3939 +West Aberdeenshire and Kincardine,0.3917 +Cardiff North,0.3915 +York Central,0.3882 +Coatbridge, Chryston and Bellshill,0.3878 +Altrincham and Sale West,0.3859 +South Cambridgeshire,0.3849 +Dundee East,0.3841 +Reading East,0.3825 +Manchester, Gorton,0.3821 +Oxford West and Abingdon,0.3803 +West Dunbartonshire,0.3801 +Midlothian,0.3794 +Enfield, Southgate,0.3788 +St Albans,0.3783 +Motherwell and Wishaw,0.3771 +Rutherglen and Hamilton West,0.3757 +Leeds North East,0.3742 +Newry and Armagh,0.3706 +Cumbernauld, Kilsyth and Kirkintilloch East,0.3699 +East Kilbride, Strathaven and Lesmahagow,0.3693 +Manchester Central,0.3636 +North East Fife,0.3631 +Inverclyde,0.362 +Lanark and Hamilton East,0.3596 +Arfon,0.3585 +Greenwich and Woolwich,0.3567 +Birmingham, Ladywood,0.356 +Paisley and Renfrewshire North,0.3555 +Leeds North West,0.3541 +East Lothian,0.354 +Lewisham East,0.3537 +Liverpool, Wavertree,0.3526 +Paisley and Renfrewshire South,0.348 +Leyton and Wanstead,0.3476 +Lewisham West and Penge,0.3459 +Poplar and Limehouse,0.3421 +Sheffield, Hallam,0.3401 +Westminster North,0.3365 +Birmingham, Hall Green,0.336 +Walthamstow,0.3349 +Twickenham,0.3332 +West Tyrone,0.3315 +Hove,0.3295 +South Down,0.3276 +Oxford East,0.3253 +Stirling,0.3228 +Aberdeen South,0.3214 +Cardiff Central,0.3201 +Sheffield Central,0.3191 +Bath,0.3172 +Glasgow North West,0.3149 +Camberwell and Peckham,0.3148 +Hammersmith,0.3131 +Kensington,0.312 +Finchley and Golders Green,0.311 +Bethnal Green and Bow,0.3086 +Belfast South,0.3051 +Wimbledon,0.2937 +Ealing Central and Acton,0.2915 +Chelsea and Fulham,0.291 +Edinburgh West,0.2877 +Glasgow Central,0.2875 +Richmond Park,0.2869 +Islington South and Finsbury,0.2828 +Glasgow South,0.2819 +Cities of London and Westminster,0.2805 +Edinburgh South West,0.2786 +Putney,0.2776 +Edinburgh East,0.2764 +Liverpool, Riverside,0.273 +East Dunbartonshire,0.2687 +Holborn and St Pancras,0.2666 +Cambridge,0.2623 +Bermondsey and Old Southwark,0.2605 +Belfast West,0.2594 +Brighton, Pavilion,0.2593 +East Renfrewshire,0.2568 +Tooting,0.2559 +Hornsey and Wood Green,0.2498 +Manchester, Withington,0.2494 +Lewisham, Deptford,0.2443 +Tottenham,0.2378 +Hampstead and Kilburn,0.2373 +Dulwich and West Norwood,0.2294 +Hackney South and Shoreditch,0.2278 +Vauxhall,0.2243 +Edinburgh South,0.2215 +Battersea,0.2205 +Edinburgh North and Leith,0.218 +Foyle,0.2174 +Glasgow North,0.2162 +Islington North,0.2161 +Bristol West,0.2071 +Streatham,0.2054 +Hackney North and Stoke Newington,0.2048 diff --git a/data/regional/uk-constituency/politics/brexit/uk-election-brexit-remain.json b/data/regional/uk-constituency/politics/brexit/uk-election-brexit-remain.json new file mode 100644 index 0000000..9daafc2 --- /dev/null +++ b/data/regional/uk-constituency/politics/brexit/uk-election-brexit-remain.json @@ -0,0 +1,665 @@ +{ + "metadata" : { + "name" : "Brexit Remain Results", + "country" : "United Kingdom", + "description" : "Percentage of the United Kingdom population who voted to remain in the European Union", + "units" : "%", + "year" : "2016", + "author" : "UK Government", + "tags" : ["country","uk","constituency","politics","election","brexit"], + "source" : [ + "https://en.wikipedia.org/wiki/Results_of_the_2016_United_Kingdom_European_Union_membership_referendum" + ] + }, +--- +uk.constituency.name,uk.election.brexit.remain +Boston and Skegness,0.2435 +Walsall North,0.2581 +Clacton,0.2696 +South Basildon and East Thurrock,0.27 +Kingston upon Hull East,0.2717 +Castle Point,0.273 +Stoke-on-Trent North,0.2788 +Doncaster North,0.2835 +Great Yarmouth,0.285 +Great Grimsby,0.2855 +Dudley North,0.2857 +Stoke-on-Trent South,0.2889 +South Holland and The Deepings,0.2893 +Barnsley East,0.2902 +Mansfield,0.2914 +Ashfield,0.2953 +Dudley South,0.2958 +Bolsover,0.2961 +Dagenham and Rainham,0.2965 +Wentworth and Dearne,0.2972 +Thurrock,0.2974 +Hartlepool,0.3043 +Cleethorpes,0.305 +Hornchurch and Upminster,0.3051 +North East Cambridgeshire,0.3065 +Romford,0.3071 +Normanton, Pontefract and Castleford,0.3074 +Louth and Horncastle,0.311 +Cannock Chase,0.3114 +Scunthorpe,0.3132 +West Bromwich West,0.3133 +Don Valley,0.3151 +Rotherham,0.3165 +Bassetlaw,0.3168 +Barnsley Central,0.3181 +West Bromwich East,0.3182 +Wolverhampton South East,0.3186 +Hemsworth,0.3187 +Kingston upon Hull West and Hessle,0.3201 +Blackpool South,0.3219 +Aldridge-Brownhills,0.322 +North Warwickshire,0.3224 +Harlow,0.3227 +Wolverhampton North East,0.3229 +Redcar,0.3233 +Rayleigh and Wickford,0.3235 +Basildon and Billericay,0.3286 +Blackpool North and Cleveleys,0.3309 +Rother Valley,0.3328 +Doncaster Central,0.333 +South West Norfolk,0.3333 +Burnley,0.3339 +Halesowen and Rowley Regis,0.3341 +Plymouth, Moor View,0.3356 +Stockton North,0.3368 +Sheffield South East,0.3368 +Brigg and Goole,0.3377 +Telford,0.3381 +Middlesbrough,0.3392 +Tamworth,0.3401 +Easington,0.3404 +Hyndburn,0.3418 +North West Norfolk,0.3422 +Broxbourne,0.3447 +Gravesham,0.3462 +Sittingbourne and Sheppey,0.3464 +Amber Valley,0.347 +Middlesbrough South and East Cleveland,0.3473 +Bexleyheath and Crayford,0.3474 +South Staffordshire,0.3476 +North Thanet,0.3482 +Makerfield,0.3509 +Stoke-on-Trent Central,0.3515 +Burton,0.3521 +Bognor Regis and Littlehampton,0.3521 +Staffordshire Moorlands,0.3531 +Nuneaton,0.3549 +St Austell and Newquay,0.3594 +Dartford,0.3602 +Chatham and Aylesford,0.3609 +Nottingham North,0.3619 +Portsmouth North,0.3631 +Rochester and Strood,0.3631 +Stourbridge,0.3634 +East Yorkshire,0.3634 +Sherwood,0.3634 +Gillingham and Rainham,0.3642 +Bradford South,0.3644 +Waveney,0.3659 +Leigh,0.3671 +West Suffolk,0.3675 +Erewash,0.3678 +Pendle,0.3685 +Wyre Forest,0.3685 +Bolton South East,0.3697 +Wellingborough,0.3698 +Dover,0.3699 +Birmingham, Erdington,0.37 +Wigan,0.3704 +Wakefield,0.3723 +Peterborough,0.3732 +Havant,0.3738 +Torbay,0.3755 +Houghton and Sunderland South,0.3757 +Old Bexley and Sidcup,0.3757 +Heywood and Middleton,0.3757 +North Antrim,0.3778 +Bridgwater and West Somerset,0.3794 +South Shields,0.3795 +North East Derbyshire,0.3795 +Blaenau Gwent,0.3797 +Gainsborough,0.3804 +Isle of Wight,0.3805 +Washington and Sunderland West,0.3815 +Gosport,0.3818 +Ashton-under-Lyne,0.3819 +Birmingham, Northfield,0.382 +Swansea East,0.3821 +Jarrow,0.3822 +South Thanet,0.3831 +Newcastle-under-Lyme,0.3836 +Folkestone and Hythe,0.3836 +Walsall South,0.3836 +Warley,0.3837 +Sleaford and North Hykeham,0.3842 +Braintree,0.3848 +Leeds East,0.3856 +Derby South,0.3865 +Scarborough and Whitby,0.3868 +Oldham West and Royton,0.3869 +Brentwood and Ongar,0.3881 +Epping Forest,0.3899 +Workington,0.3899 +Grantham and Stamford,0.39 +Redditch,0.3901 +Kettering,0.3901 +Denton and Reddish,0.3902 +Maldon,0.3904 +Rochford and Southend East,0.3908 +Bishop Auckland,0.3911 +Bosworth,0.3917 +Torfaen,0.3922 +North West Leicestershire,0.393 +Penistone and Stocksbridge,0.3935 +Carlisle,0.3936 +Mid Norfolk,0.394 +Blyth Valley,0.3951 +Witham,0.3953 +Rhondda,0.3955 +Hereford and South Herefordshire,0.3958 +South Derbyshire,0.3965 +North Durham,0.397 +Spelthorne,0.397 +Southampton, Itchen,0.3971 +Crewe and Nantwich,0.3971 +Northampton North,0.3973 +North Cornwall,0.3981 +New Forest East,0.3982 +Corby,0.3985 +Aberavon,0.3988 +Birmingham, Yardley,0.399 +Barking,0.4003 +Sheffield, Brightside and Hillsborough,0.4003 +Christchurch,0.4004 +Sunderland Central,0.4006 +Oldham East and Saddleworth,0.4008 +Clwyd South,0.4012 +Yeovil,0.4013 +Ashford,0.4014 +North Shropshire,0.4015 +Morley and Outwood,0.4018 +Worsley and Eccles South,0.4021 +Kingston upon Hull North,0.4021 +Batley and Spen,0.4037 +North Tyneside,0.4048 +South Dorset,0.4055 +Sedgefield,0.4056 +Mid Worcestershire,0.4061 +Newport East,0.4067 +The Wrekin,0.4068 +Chesterfield,0.4071 +Stalybridge and Hyde,0.4071 +Copeland,0.408 +Luton North,0.4085 +Harwich and North Essex,0.41 +Northampton South,0.41 +Islwyn,0.4106 +Rossendale and Darwen,0.4106 +Ogmore,0.411 +Halifax,0.4118 +Gloucester,0.4119 +Meriden,0.4119 +Beverley and Holderness,0.4126 +Ribble Valley,0.4127 +Faversham and Mid Kent,0.4133 +Rugby,0.4138 +Daventry,0.4141 +Crawley,0.4159 +Camborne and Redruth,0.4159 +North Norfolk,0.416 +St Helens North,0.4161 +Coventry North West,0.4163 +Merthyr Tydfil and Rhymney,0.4165 +Ellesmere Port and Neston,0.4166 +Hayes and Harlington,0.4175 +Morecambe and Lunesdale,0.4181 +South Leicestershire,0.4186 +Bolton North East,0.4189 +Darlington,0.419 +South West Bedfordshire,0.4192 +Warrington North,0.4193 +Alyn and Deeside,0.4195 +North Herefordshire,0.4198 +Aldershot,0.421 +Forest of Dean,0.4211 +Ludlow,0.4212 +Charnwood,0.4213 +Tiverton and Honiton,0.4218 +Coventry North East,0.4223 +Stockton South,0.4224 +Bournemouth West,0.4227 +Bexhill and Battle,0.4228 +Halton,0.4233 +Selby and Ainsty,0.4235 +Wrexham,0.4243 +Eastbourne,0.4246 +Orpington,0.4246 +Stone,0.4246 +Lichfield,0.4249 +Stafford,0.4254 +Rochdale,0.4255 +Lincoln,0.4257 +Poole,0.4258 +North Swindon,0.4271 +Barrow and Furness,0.4272 +Weston-Super-Mare,0.428 +Torridge and West Devon,0.4281 +Uxbridge and South Ruislip,0.4281 +Sheffield, Heeley,0.4284 +Dewsbury,0.4285 +Kingswood,0.4288 +Mid Dorset and North Poole,0.4292 +North Devon,0.4296 +Stevenage,0.4296 +North West Cambridgeshire,0.4307 +South West Wiltshire,0.4312 +Newcastle upon Tyne North,0.4317 +Elmet and Rothwell,0.4321 +Chorley,0.4325 +Cynon Valley,0.4327 +Fylde,0.4327 +Norwich North,0.4327 +Llanelli,0.4333 +South Ribble,0.4336 +North Dorset,0.4339 +Vale of Clwyd,0.4344 +Ipswich,0.4348 +Thirsk and Malton,0.4357 +Gedling,0.437 +Wansbeck,0.4371 +Carshalton and Wallington,0.4374 +Gateshead,0.4378 +Blaydon,0.4388 +St Helens South and Whiston,0.4395 +Worthing West,0.4398 +Newton Abbot,0.4399 +Hastings and Rye,0.4406 +Feltham and Heston,0.4407 +Maidstone and The Weald,0.4408 +Montgomeryshire,0.4416 +Newark,0.443 +Preston,0.4433 +Bolton West,0.4445 +Strangford,0.4447 +Fareham,0.4448 +Hemel Hempstead,0.4451 +Bromsgrove,0.4463 +Preseli Pembrokeshire,0.4468 +Berwick-upon-Tweed,0.447 +New Forest West,0.4474 +Haltemprice and Howden,0.4477 +Suffolk Coastal,0.4479 +Penrith and The Border,0.448 +East Antrim,0.4481 +Carmarthen West and South Pembrokeshire,0.4484 +Bradford East,0.4484 +Caerphilly,0.4486 +South East Cornwall,0.449 +South West Devon,0.4492 +Southend West,0.4493 +North West Durham,0.4495 +West Lancashire,0.4505 +Central Suffolk and North Ipswich,0.4511 +Bootle,0.452 +St Ives,0.4523 +North West Hampshire,0.4525 +Richmond (Yorks),0.4529 +Erith and Thamesmead,0.4537 +Luton South,0.454 +Bury South,0.4549 +Delyn,0.4559 +Plymouth, Sutton and Devonport,0.4559 +Wolverhampton South West,0.4563 +Eastleigh,0.4565 +Derby North,0.4575 +East Surrey,0.458 +Wyre and Preston North,0.458 +Broadland,0.459 +Leicester East,0.4594 +Slough,0.4594 +Sevenoaks,0.4596 +South Suffolk,0.4597 +Neath,0.4598 +Bury St Edmunds,0.4601 +Totnes,0.4611 +Rutland and Melton,0.4612 +Blackburn,0.4627 +Bournemouth East,0.4631 +East Worthing and Shoreham,0.4632 +Worcester,0.4632 +Bury North,0.4633 +Newport West,0.4634 +Tewkesbury,0.4635 +Wells,0.4637 +Basingstoke,0.464 +Banff and Buchan,0.4641 +Salford and Eccles,0.4641 +Devizes,0.4647 +Huntingdon,0.4651 +North East Bedfordshire,0.4656 +Solihull,0.4665 +South Northamptonshire,0.4666 +Keighley,0.4667 +Ilford North,0.4669 +Leeds West,0.4673 +Bracknell,0.4676 +Carmarthen East and Dinefwr,0.4679 +Skipton and Ripon,0.4681 +Calder Valley,0.4684 +Lagan Valley,0.4691 +Milton Keynes South,0.4692 +Clwyd West,0.4699 +Taunton Deane,0.4708 +Shrewsbury and Atcham,0.4708 +Mid Bedfordshire,0.4712 +Tonbridge and Malling,0.4714 +Welwyn Hatfield,0.4718 +Wealden,0.4723 +Upper Bann,0.4738 +Congleton,0.4739 +Vale of Glamorgan,0.4745 +West Worcestershire,0.4748 +Broxtowe,0.4749 +Mid Derbyshire,0.4753 +Harborough,0.4763 +Knowsley,0.4766 +Shipley,0.4779 +Hazel Grove,0.4779 +Aberconwy,0.478 +Thornbury and Yate,0.4781 +Liverpool, Walton,0.4783 +Eddisbury,0.4783 +Lancaster and Fleetwood,0.4801 +Bedford,0.4805 +Belfast East,0.4806 +Meon Valley,0.4807 +Brecon and Radnorshire,0.4814 +Surrey Heath,0.4815 +Huddersfield,0.4815 +Eltham,0.4818 +Aylesbury,0.4821 +Portsmouth South,0.4824 +Birkenhead,0.4829 +Sutton Coldfield,0.483 +South Swindon,0.4835 +North East Somerset,0.4837 +Chippenham,0.4841 +Colchester,0.4849 +Reading West,0.4849 +Birmingham, Hodge Hill,0.485 +North East Hertfordshire,0.4857 +Caithness, Sutherland and Easter Ross,0.4866 +Sutton and Cheam,0.4872 +Saffron Walden,0.4876 +Derbyshire Dales,0.4876 +Birmingham, Perry Barr,0.488 +Watford,0.4885 +Warrington South,0.4889 +West Dorset,0.4896 +Stratford-on-Avon,0.49 +Ynys Mon,0.4906 +Central Devon,0.4911 +South Norfolk,0.4912 +Hertsmere,0.4916 +Leicester West,0.4916 +Chichester,0.4927 +Chelmsford,0.4932 +Weaver Vale,0.4945 +High Peak,0.4945 +East Devon,0.4959 +Coventry South,0.4962 +Banbury,0.4965 +Somerton and Frome,0.4967 +Croydon Central,0.4969 +North Wiltshire,0.497 +Bridgend,0.4972 +Loughborough,0.4991 +Colne Valley,0.4994 +Blackley and Broughton,0.4996 +Wallasey,0.5008 +Salisbury,0.5009 +Chingford and Woodford Green,0.5012 +Moray,0.5013 +Runnymede and Weybridge,0.5015 +Bromley and Chislehurst,0.5017 +Liverpool, West Derby,0.5018 +Arundel and South Downs,0.503 +Milton Keynes North,0.5033 +Wythenshawe and Sale East,0.5035 +Belfast North,0.5036 +Ruislip, Northwood and Pinner,0.5046 +Horsham,0.5051 +Southampton, Test,0.5059 +Gower,0.5069 +East Hampshire,0.5073 +Hertford and Stortford,0.5076 +Enfield North,0.5078 +Beaconsfield,0.5099 +Stretford and Urmston,0.5109 +Buckingham,0.5113 +Filton and Bradley Stoke,0.5123 +Pudsey,0.5142 +Wycombe,0.5154 +Angus,0.5176 +Monmouth,0.5194 +Newcastle upon Tyne Central,0.52 +Reigate,0.5202 +East Londonderry,0.5203 +West Ham,0.5203 +Garston and Halewood,0.5204 +The Cotswolds,0.5208 +Newbury,0.5219 +Epsom and Ewell,0.5222 +North Down,0.5236 +Tynemouth,0.5236 +Glenrothes,0.5239 +North Somerset,0.5242 +Harrow East,0.5252 +Dwyfor Meirionnydd,0.5257 +Mole Valley,0.5269 +Birmingham, Edgbaston,0.527 +Macclesfield,0.5282 +Harrogate and Knaresborough,0.5282 +Lewes,0.5286 +Bristol South,0.5286 +Westmorland and Lonsdale,0.5294 +Birmingham, Selly Oak,0.531 +Bristol East,0.532 +Stockport,0.5321 +Bradford West,0.5326 +Windsor,0.5334 +Beckenham,0.5342 +Wirral South,0.5345 +Pontypridd,0.5349 +Nottingham South,0.5353 +Wantage,0.5354 +Mid Sussex,0.5356 +Witney,0.5366 +Southport,0.5371 +East Ham,0.5373 +Ealing North,0.5374 +Kenilworth and Southam,0.5379 +South West Hertfordshire,0.538 +North East Hampshire,0.5382 +Romsey and Southampton North,0.5392 +Leeds Central,0.5404 +Stroud,0.5414 +Truro and Falmouth,0.5415 +Croydon South,0.5419 +Tatton,0.5437 +Edmonton,0.5449 +Ceredigion,0.5463 +Hexham,0.5466 +Canterbury,0.5467 +South East Cambridgeshire,0.547 +Dumfries and Galloway,0.5489 +Harrow West,0.5494 +Maidenhead,0.5497 +Chesham and Amersham,0.5502 +Exeter,0.5517 +Na h-Eileanan an Iar,0.5524 +Wirral West,0.5531 +Mitcham and Morden,0.5531 +York Outer,0.5533 +Tunbridge Wells,0.5535 +Dumfriesshire, Clydesdale and Tweeddale,0.5535 +Gordon,0.5571 +Woking,0.5575 +Ayr, Carrick and Cumnock,0.5589 +Sefton Central,0.5591 +Glasgow East,0.5616 +Cardiff West,0.5618 +Brighton, Kemptown,0.5641 +Ross, Skye and Lochaber,0.5651 +Swansea West,0.566 +City of Durham,0.5666 +Ilford South,0.5669 +Brentford and Isleworth,0.5669 +Kirkcaldy and Cowdenbeath,0.5674 +Livingston,0.5674 +Berwickshire, Roxburgh and Selkirk,0.5674 +Aberdeen North,0.5691 +Henley,0.5691 +Cheltenham,0.571 +Brent Central,0.5711 +Nottingham East,0.5712 +Cardiff South and Penarth,0.5718 +Wokingham,0.5731 +Cheadle,0.5735 +Brent North,0.5739 +Leicester South,0.5756 +North Ayrshire and Arran,0.576 +City of Chester,0.5772 +Falkirk,0.5789 +Linlithgow and East Falkirk,0.5798 +Ealing, Southall,0.5817 +Warwick and Leamington,0.5836 +Central Ayrshire,0.5838 +Bristol North West,0.584 +Hendon,0.5843 +Esher and Walton,0.5843 +Rushcliffe,0.5853 +Fermanagh and South Tyrone,0.5856 +Guildford,0.588 +South Antrim,0.5882 +Croydon North,0.5883 +Chipping Barnet,0.5893 +Newcastle upon Tyne East,0.5893 +Glasgow South West,0.5914 +Kingston and Surbiton,0.5916 +South West Surrey,0.5925 +Dundee West,0.5925 +Glasgow North East,0.5934 +Norwich South,0.5947 +Orkney and Shetland,0.5972 +Inverness, Nairn, Badenoch and Strathspey,0.5987 +Perth and North Perthshire,0.601 +Airdrie and Shotts,0.6016 +Hitchin and Harpenden,0.6021 +Winchester,0.6036 +Mid Ulster,0.6039 +Ochil and South Perthshire,0.605 +Kilmarnock and Loudoun,0.6055 +Argyll and Bute,0.6057 +Dunfermline and West Fife,0.6061 +West Aberdeenshire and Kincardine,0.6083 +Cardiff North,0.6085 +York Central,0.6118 +Coatbridge, Chryston and Bellshill,0.6122 +Altrincham and Sale West,0.6141 +South Cambridgeshire,0.6151 +Dundee East,0.6159 +Reading East,0.6175 +Manchester, Gorton,0.6179 +Oxford West and Abingdon,0.6197 +West Dunbartonshire,0.6199 +Midlothian,0.6206 +Enfield, Southgate,0.6212 +St Albans,0.6217 +Motherwell and Wishaw,0.6229 +Rutherglen and Hamilton West,0.6243 +Leeds North East,0.6258 +Newry and Armagh,0.6294 +Cumbernauld, Kilsyth and Kirkintilloch East,0.6301 +East Kilbride, Strathaven and Lesmahagow,0.6307 +Manchester Central,0.6364 +North East Fife,0.6369 +Inverclyde,0.638 +Lanark and Hamilton East,0.6404 +Arfon,0.6415 +Greenwich and Woolwich,0.6433 +Birmingham, Ladywood,0.644 +Paisley and Renfrewshire North,0.6445 +Leeds North West,0.6459 +East Lothian,0.646 +Lewisham East,0.6463 +Liverpool, Wavertree,0.6474 +Paisley and Renfrewshire South,0.652 +Leyton and Wanstead,0.6524 +Lewisham West and Penge,0.6541 +Poplar and Limehouse,0.6579 +Sheffield, Hallam,0.6599 +Westminster North,0.6635 +Birmingham, Hall Green,0.664 +Walthamstow,0.6651 +Twickenham,0.6668 +West Tyrone,0.6685 +Hove,0.6705 +South Down,0.6724 +Oxford East,0.6747 +Stirling,0.6772 +Aberdeen South,0.6786 +Cardiff Central,0.6799 +Sheffield Central,0.6809 +Bath,0.6828 +Glasgow North West,0.6851 +Camberwell and Peckham,0.6852 +Hammersmith,0.6869 +Kensington,0.688 +Finchley and Golders Green,0.689 +Bethnal Green and Bow,0.6914 +Belfast South,0.6949 +Wimbledon,0.7063 +Ealing Central and Acton,0.7085 +Chelsea and Fulham,0.709 +Edinburgh West,0.7123 +Glasgow Central,0.7125 +Richmond Park,0.7131 +Islington South and Finsbury,0.7172 +Glasgow South,0.7181 +Cities of London and Westminster,0.7195 +Edinburgh South West,0.7214 +Putney,0.7224 +Edinburgh East,0.7236 +Liverpool, Riverside,0.727 +East Dunbartonshire,0.7313 +Holborn and St Pancras,0.7334 +Cambridge,0.7377 +Bermondsey and Old Southwark,0.7395 +Belfast West,0.7406 +Brighton, Pavilion,0.7407 +East Renfrewshire,0.7432 +Tooting,0.7441 +Hornsey and Wood Green,0.7502 +Manchester, Withington,0.7506 +Lewisham, Deptford,0.7557 +Tottenham,0.7622 +Hampstead and Kilburn,0.7627 +Dulwich and West Norwood,0.7706 +Hackney South and Shoreditch,0.7722 +Vauxhall,0.7757 +Edinburgh South,0.7785 +Battersea,0.7795 +Edinburgh North and Leith,0.782 +Foyle,0.7826 +Glasgow North,0.7838 +Islington North,0.7839 +Bristol West,0.7929 +Streatham,0.7946 +Hackney North and Stoke Newington,0.7952 diff --git a/data/regional/united-states/culture/family/us-family-size-average.json b/data/regional/united-states/culture/family/us-family-size-average.json new file mode 100644 index 0000000..5a06b62 --- /dev/null +++ b/data/regional/united-states/culture/family/us-family-size-average.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Average Family Size", + "description" : "Average family size.", + "units" : "people", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","family"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.family.size.average.2019"], + [1001,3.09], + [1003,3.24], + [1005,3.01], + [1007,3.74], + [1009,3.33], + [1011,3.3], + [1013,3.78], + [1015,3.03], + [1017,3.1], + [1019,2.94], + [1021,3.06], + [1023,3.07], + [1025,3.46], + [1027,3.04], + [1029,3.21], + [1031,3.12], + [1033,3.06], + [1035,3.41], + [1037,3.26], + [1039,3], + [1041,3.45], + [1043,3.18], + [1045,3.14], + [1047,3.06], + [1049,3.26], + [1051,3.09], + [1053,3.47], + [1055,3.23], + [1057,2.85], + [1059,3.44], + [1061,3.11], + [1063,4.34], + [1065,3.36], + [1067,3.13], + [1069,3.3], + [1071,3.02], + [1073,3.15], + [1075,2.96], + [1077,2.91], + [1079,3.11], + [1081,3.2], + [1083,3.47], + [1085,2.94], + [1087,2.88], + [1089,2.99], + [1091,3.88], + [1093,3.06], + [1095,3.3], + [1097,3.31], + [1099,3.42], + [1101,3.16], + [1103,3.14], + [1105,4.52], + [1107,3.02], + [1109,3.68], + [1111,3.19], + [1113,3.1], + [1115,3.17], + [1117,3.18], + [1119,3.21], + [1121,3.02], + [1123,3.01], + [1125,3.32], + [1127,3.04], + [1129,3.37], + [1131,3.67], + [1133,3.04], + [2013,3.23], + [2016,4.56], + [2020,3.27], + [2050,4.35], + [2060,3.07], + [2068,3.12], + [2070,3.72], + [2090,3.15], + [2100,2.97], + [2105,3.14], + [2110,3.09], + [2122,3.28], + [2130,3.02], + [2150,3.62], + [2158,4.95], + [2164,3.69], + [2170,3.91], + [2180,3.71], + [2185,3.77], + [2188,4.77], + [2195,3.36], + [2198,3.28], + [2220,2.96], + [2230,2.87], + [2240,3.8], + [2261,3.55], + [2275,2.93], + [2282,3.57], + [2290,3.55], + [4001,4.42], + [4003,2.91], + [4005,3.33], + [4007,2.95], + [4009,3.7], + [4011,3.47], + [4012,2.67], + [4013,3.37], + [4015,2.84], + [4017,3.72], + [4019,3.1], + [4021,3.43], + [4023,3.39], + [4025,2.77], + [4027,3.26], + [5001,2.94], + [5003,3.17], + [5005,2.71], + [5007,3.18], + [5009,2.93], + [5011,3.07], + [5013,3.32], + [5015,3.04], + [5017,3.13], + [5019,2.89], + [5021,2.85], + [5023,2.8], + [5025,3.02], + [5027,3.18], + [5029,3.09], + [5031,3.06], + [5033,3.09], + [5035,3.18], + [5037,2.99], + [5039,2.85], + [5041,2.7], + [5043,2.96], + [5045,3.26], + [5047,3.21], + [5049,2.95], + [5051,3.01], + [5053,3.03], + [5055,3.01], + [5057,3.17], + [5059,2.98], + [5061,3.19], + [5063,3.02], + [5065,3.36], + [5067,3], + [5069,3.06], + [5071,3.23], + [5073,3.01], + [5075,2.97], + [5077,3.06], + [5079,2.59], + [5081,2.81], + [5083,3], + [5085,3.12], + [5087,3.13], + [5089,2.94], + [5091,3.14], + [5093,3.1], + [5095,2.7], + [5097,2.87], + [5099,2.98], + [5101,3.49], + [5103,3.17], + [5105,3.18], + [5107,3.13], + [5109,3.01], + [5111,2.91], + [5113,2.91], + [5115,3.26], + [5117,2.62], + [5119,3.14], + [5121,2.84], + [5123,3.08], + [5125,3.19], + [5127,3.38], + [5129,2.82], + [5131,3.06], + [5133,3.41], + [5135,2.96], + [5137,3.2], + [5139,3.05], + [5141,2.94], + [5143,3.17], + [5145,3.15], + [5147,2.7], + [5149,3.3], + [6001,3.37], + [6003,3.66], + [6005,2.85], + [6007,3.14], + [6009,3.16], + [6011,3.45], + [6013,3.35], + [6015,3.11], + [6017,3.09], + [6019,3.69], + [6021,3.22], + [6023,3.01], + [6025,4.49], + [6027,3.01], + [6029,3.69], + [6031,3.54], + [6033,3.11], + [6035,2.73], + [6037,3.66], + [6039,3.67], + [6041,2.96], + [6043,2.63], + [6045,3.1], + [6047,3.77], + [6049,2.97], + [6051,3.73], + [6053,3.83], + [6055,3.35], + [6057,2.88], + [6059,3.51], + [6061,3.18], + [6063,2.73], + [6065,3.87], + [6067,3.38], + [6069,3.66], + [6071,3.76], + [6073,3.43], + [6075,3.11], + [6077,3.69], + [6079,2.98], + [6081,3.36], + [6083,3.41], + [6085,3.42], + [6087,3.26], + [6089,2.98], + [6091,2.67], + [6093,2.81], + [6095,3.35], + [6097,3.14], + [6099,3.6], + [6101,3.43], + [6103,3.18], + [6105,2.63], + [6107,3.77], + [6109,2.8], + [6111,3.58], + [6113,3.28], + [6115,3.38], + [8001,3.56], + [8003,3.09], + [8005,3.26], + [8007,2.73], + [8009,2.59], + [8011,2.81], + [8013,3.01], + [8014,3.01], + [8015,2.71], + [8017,3.43], + [8019,2.69], + [8021,3.36], + [8023,2.8], + [8025,4.6], + [8027,2.6], + [8029,3.08], + [8031,3.17], + [8033,3.02], + [8035,3.16], + [8037,3.27], + [8039,3.06], + [8041,3.17], + [8043,2.54], + [8045,3.17], + [8047,2.58], + [8049,3.07], + [8051,3.02], + [8053,2.72], + [8055,2.6], + [8057,2.64], + [8059,2.96], + [8061,3.02], + [8063,2.85], + [8065,2.78], + [8067,3.07], + [8069,2.93], + [8071,2.55], + [8073,3.06], + [8075,3.31], + [8077,2.94], + [8079,2.39], + [8081,2.99], + [8083,2.91], + [8085,2.91], + [8087,3.09], + [8089,3], + [8091,2.67], + [8093,3.05], + [8095,3.15], + [8097,2.89], + [8099,3.03], + [8101,3.13], + [8103,3.37], + [8105,2.97], + [8107,2.97], + [8109,2.95], + [8111,2.8], + [8113,2.81], + [8115,3.17], + [8117,3.1], + [8119,2.79], + [8121,2.6], + [8123,3.31], + [8125,2.8], + [9001,3.27], + [9003,3.1], + [9005,2.96], + [9007,2.91], + [9009,3.18], + [9011,2.9], + [9013,2.96], + [9015,2.99], + [10001,3.12], + [10003,3.27], + [10005,2.88], + [11001,3.32], + [12001,3.39], + [12003,3.47], + [12005,3.13], + [12007,3.17], + [12009,3.14], + [12011,3.47], + [12013,3.69], + [12015,2.82], + [12017,2.77], + [12019,3.21], + [12021,3.05], + [12023,3.26], + [12027,3.32], + [12029,2.74], + [12031,3.2], + [12033,3.16], + [12035,3.03], + [12037,2.93], + [12039,3.07], + [12041,3.07], + [12043,3.16], + [12045,2.75], + [12047,2.99], + [12049,3.88], + [12051,3.59], + [12053,2.92], + [12055,2.99], + [12057,3.32], + [12059,3.01], + [12061,3.28], + [12063,2.9], + [12065,2.56], + [12067,4.06], + [12069,3.07], + [12071,3.22], + [12073,3.06], + [12075,3.03], + [12077,3.6], + [12079,3.05], + [12081,3.17], + [12083,3.03], + [12085,3.07], + [12086,3.65], + [12087,2.81], + [12089,2.91], + [12091,3.13], + [12093,3.32], + [12095,3.44], + [12097,3.96], + [12099,3.29], + [12101,3.09], + [12103,3.05], + [12105,3.44], + [12107,3.11], + [12109,3.16], + [12111,3.27], + [12113,3.05], + [12115,2.82], + [12117,3.18], + [12119,2.48], + [12121,3.33], + [12123,2.89], + [12125,2.85], + [12127,3.06], + [12129,3.03], + [12131,2.92], + [12133,3], + [13001,3.17], + [13003,3.54], + [13005,3.21], + [13007,3.04], + [13009,3.19], + [13011,3.35], + [13013,3.47], + [13015,3.23], + [13017,3.39], + [13019,3.14], + [13021,3.31], + [13023,3.44], + [13025,3.4], + [13027,3.16], + [13029,3.21], + [13031,2.96], + [13033,3.24], + [13035,3.04], + [13037,3.14], + [13039,3.03], + [13043,3.19], + [13045,3.17], + [13047,3.18], + [13049,3.79], + [13051,3.18], + [13053,3.24], + [13055,3.09], + [13057,3.23], + [13059,3.01], + [13061,3.22], + [13063,3.67], + [13065,3.17], + [13067,3.19], + [13069,3.33], + [13071,3.42], + [13073,3.75], + [13075,3.27], + [13077,3.18], + [13079,3.24], + [13081,3.26], + [13083,2.78], + [13085,3.19], + [13087,3], + [13089,3.43], + [13091,2.97], + [13093,3.07], + [13095,3.23], + [13097,3.45], + [13099,3.11], + [13101,3.13], + [13103,3.36], + [13105,3.09], + [13107,3.16], + [13109,3.04], + [13111,2.92], + [13113,3.19], + [13115,3.13], + [13117,3.3], + [13119,3.12], + [13121,3.34], + [13123,3.05], + [13125,3.36], + [13127,3.01], + [13129,3.23], + [13131,3.25], + [13133,2.89], + [13135,3.59], + [13137,3.44], + [13139,3.53], + [13141,2.66], + [13143,3.04], + [13145,3.15], + [13147,3.08], + [13149,3.03], + [13151,3.39], + [13153,3.14], + [13155,3.66], + [13157,3.31], + [13159,3.11], + [13161,3.36], + [13163,3.42], + [13165,3.3], + [13167,3.38], + [13169,3.17], + [13171,3.66], + [13173,3.39], + [13175,3.32], + [13177,3.22], + [13179,3], + [13181,2.83], + [13183,3.69], + [13185,3.37], + [13187,3.11], + [13189,3.1], + [13191,2.78], + [13193,3.08], + [13195,3.1], + [13197,2.94], + [13199,3.15], + [13201,2.94], + [13205,3.03], + [13207,3.47], + [13209,3.28], + [13211,3.07], + [13213,3.15], + [13215,3.38], + [13217,3.44], + [13219,3.21], + [13221,3.34], + [13223,3.39], + [13225,3.12], + [13227,3.07], + [13229,3.11], + [13231,3.5], + [13233,3.38], + [13235,3.13], + [13237,2.82], + [13239,3.39], + [13241,3], + [13243,3.46], + [13245,3.52], + [13247,3.36], + [13249,3.29], + [13251,3.32], + [13253,3.12], + [13255,3.19], + [13257,3.11], + [13259,2.87], + [13261,3.07], + [13263,2.76], + [13265,3.35], + [13267,2.73], + [13269,2.91], + [13271,3.24], + [13273,2.98], + [13275,2.99], + [13277,3.03], + [13279,3.33], + [13281,2.66], + [13283,3.18], + [13285,3.39], + [13287,2.75], + [13289,3.65], + [13291,2.71], + [13293,3.33], + [13295,3.1], + [13297,3.25], + [13299,2.98], + [13301,2.93], + [13303,2.92], + [13305,3.23], + [13307,2.95], + [13309,5.85], + [13311,2.91], + [13313,3.42], + [13315,3.17], + [13317,3.26], + [13319,3.53], + [13321,2.95], + [15001,3.41], + [15003,3.62], + [15005,2.33], + [15007,3.66], + [15009,3.48], + [16001,3.22], + [16003,2.78], + [16005,3.33], + [16007,2.87], + [16009,3.09], + [16011,3.54], + [16013,3.58], + [16015,2.67], + [16017,2.93], + [16019,3.41], + [16021,3.22], + [16023,3.31], + [16025,3.5], + [16027,3.54], + [16029,3.26], + [16031,3.4], + [16033,4.13], + [16035,2.76], + [16037,2.93], + [16039,2.97], + [16041,3.5], + [16043,3.18], + [16045,3.13], + [16047,3.3], + [16049,2.98], + [16051,3.67], + [16053,3.46], + [16055,2.98], + [16057,2.95], + [16059,2.83], + [16061,3.07], + [16063,3.68], + [16065,3.52], + [16067,3.24], + [16069,2.88], + [16071,3.31], + [16073,3.11], + [16075,3.15], + [16077,3.67], + [16079,2.78], + [16081,3.72], + [16083,3.23], + [16085,3.16], + [16087,3.04], + [17001,2.94], + [17003,3.72], + [17005,2.85], + [17007,3.31], + [17009,2.84], + [17011,2.88], + [17013,3.51], + [17015,2.73], + [17017,2.98], + [17019,3.08], + [17021,2.8], + [17023,2.68], + [17025,2.67], + [17027,3.02], + [17029,2.86], + [17031,3.39], + [17033,2.65], + [17035,2.99], + [17037,3.19], + [17039,2.94], + [17041,3.14], + [17043,3.25], + [17045,2.72], + [17047,2.87], + [17049,2.99], + [17051,3.1], + [17053,2.9], + [17055,3], + [17057,2.88], + [17059,2.69], + [17061,3.19], + [17063,3.03], + [17065,2.83], + [17067,2.93], + [17069,3.51], + [17071,2.72], + [17073,2.98], + [17075,2.83], + [17077,2.98], + [17079,3.21], + [17081,2.93], + [17083,3.01], + [17085,2.7], + [17087,2.81], + [17089,3.44], + [17091,3.26], + [17093,3.49], + [17095,2.9], + [17097,3.29], + [17099,2.9], + [17101,2.64], + [17103,2.85], + [17105,2.88], + [17107,2.92], + [17109,3.16], + [17111,3.16], + [17113,3.09], + [17115,3.02], + [17117,2.84], + [17119,2.95], + [17121,2.87], + [17123,2.93], + [17125,2.73], + [17127,2.91], + [17129,2.74], + [17131,2.9], + [17133,2.93], + [17135,2.77], + [17137,2.83], + [17139,2.98], + [17141,2.91], + [17143,3.15], + [17145,2.65], + [17147,2.93], + [17149,3.02], + [17151,3.33], + [17153,3.39], + [17155,2.78], + [17157,2.96], + [17159,2.94], + [17161,2.92], + [17163,3.18], + [17165,2.88], + [17167,2.94], + [17169,2.73], + [17171,3.05], + [17173,2.86], + [17175,2.86], + [17177,2.77], + [17179,2.93], + [17181,2.94], + [17183,3.03], + [17185,2.92], + [17187,2.87], + [17189,2.8], + [17191,2.91], + [17193,2.75], + [17195,2.95], + [17197,3.49], + [17199,3.01], + [17201,3.03], + [17203,3.09], + [18001,3.39], + [18003,3.15], + [18005,3.17], + [18007,3.07], + [18009,2.73], + [18011,3.01], + [18013,2.78], + [18015,3.03], + [18017,3.12], + [18019,3.24], + [18021,2.85], + [18023,3.17], + [18025,3.38], + [18027,3.5], + [18029,2.98], + [18031,3.07], + [18033,3.04], + [18035,2.86], + [18037,3.05], + [18039,3.38], + [18041,2.86], + [18043,3.21], + [18045,2.81], + [18047,3.07], + [18049,3.19], + [18051,2.93], + [18053,2.81], + [18055,3.01], + [18057,3.16], + [18059,3.08], + [18061,3.28], + [18063,3.19], + [18065,2.96], + [18067,2.9], + [18069,2.86], + [18071,3.04], + [18073,3.11], + [18075,3.02], + [18077,2.89], + [18079,3.09], + [18081,3.15], + [18083,2.85], + [18085,2.91], + [18087,3.64], + [18089,3.21], + [18091,2.9], + [18093,2.89], + [18095,2.96], + [18097,3.42], + [18099,3.21], + [18101,3.07], + [18103,2.99], + [18105,2.88], + [18107,2.89], + [18109,3.08], + [18111,2.97], + [18113,3.06], + [18115,2.7], + [18117,2.96], + [18119,2.84], + [18121,2.99], + [18123,2.8], + [18125,2.97], + [18127,3.08], + [18129,2.96], + [18131,3.02], + [18133,2.79], + [18135,2.99], + [18137,3.11], + [18139,2.87], + [18141,3.2], + [18143,3.12], + [18145,2.97], + [18147,3], + [18149,3.19], + [18151,2.76], + [18153,2.86], + [18155,2.84], + [18157,3.13], + [18159,2.79], + [18161,3], + [18163,2.96], + [18165,2.76], + [18167,2.96], + [18169,2.78], + [18171,2.75], + [18173,2.92], + [18175,3.05], + [18177,2.93], + [18179,3], + [18181,2.87], + [18183,2.88], + [19001,2.69], + [19003,2.72], + [19005,2.84], + [19007,3.02], + [19009,2.6], + [19011,2.89], + [19013,3.01], + [19015,2.86], + [19017,2.87], + [19019,3.09], + [19021,3.12], + [19023,2.79], + [19025,2.68], + [19027,2.84], + [19029,2.86], + [19031,3.05], + [19033,2.78], + [19035,2.55], + [19037,2.92], + [19039,2.97], + [19041,2.78], + [19043,2.86], + [19045,2.89], + [19047,3.04], + [19049,3.06], + [19051,3.34], + [19053,2.84], + [19055,2.95], + [19057,2.86], + [19059,2.58], + [19061,2.98], + [19063,2.7], + [19065,2.84], + [19067,2.91], + [19069,2.79], + [19071,2.78], + [19073,2.75], + [19075,2.83], + [19077,2.84], + [19079,2.95], + [19081,2.62], + [19083,2.9], + [19085,2.74], + [19087,2.82], + [19089,2.99], + [19091,2.85], + [19093,2.8], + [19095,2.78], + [19097,2.82], + [19099,2.88], + [19101,3.19], + [19103,2.98], + [19105,2.96], + [19107,2.86], + [19109,2.73], + [19111,2.83], + [19113,3.02], + [19115,3.1], + [19117,2.77], + [19119,3.02], + [19121,2.9], + [19123,2.91], + [19125,2.91], + [19127,3.13], + [19129,3.13], + [19131,3], + [19133,2.68], + [19135,2.91], + [19137,2.67], + [19139,3.08], + [19141,2.79], + [19143,2.84], + [19145,2.9], + [19147,2.98], + [19149,2.84], + [19151,2.59], + [19153,3.13], + [19155,3.03], + [19157,2.72], + [19159,2.99], + [19161,2.72], + [19163,3.17], + [19165,2.85], + [19167,3.15], + [19169,2.84], + [19171,3.02], + [19173,2.9], + [19175,2.91], + [19177,3.05], + [19179,2.92], + [19181,2.96], + [19183,2.91], + [19185,2.99], + [19187,2.84], + [19189,2.8], + [19191,2.7], + [19193,3.13], + [19195,2.8], + [19197,2.76], + [20001,2.84], + [20003,3.03], + [20005,3.08], + [20007,3.04], + [20009,3.03], + [20011,3.06], + [20013,3.01], + [20015,3.05], + [20017,3.18], + [20019,2.88], + [20021,3.18], + [20023,2.94], + [20025,2.84], + [20027,2.88], + [20029,2.79], + [20031,2.64], + [20033,2.87], + [20035,3], + [20037,3.04], + [20039,2.55], + [20041,2.99], + [20043,2.87], + [20045,2.97], + [20047,2.63], + [20049,2.83], + [20051,3.02], + [20053,2.78], + [20055,3.46], + [20057,3.48], + [20059,2.98], + [20061,3.11], + [20063,2.62], + [20065,2.61], + [20067,3.5], + [20069,3.35], + [20071,2.83], + [20073,2.71], + [20075,3.88], + [20077,2.96], + [20079,3.03], + [20081,3.52], + [20083,2.84], + [20085,2.86], + [20087,2.91], + [20089,2.62], + [20091,3.12], + [20093,3.74], + [20095,2.83], + [20097,2.95], + [20099,2.91], + [20101,2.9], + [20103,3.24], + [20105,3.1], + [20107,2.58], + [20109,3.07], + [20111,2.94], + [20113,2.75], + [20115,2.86], + [20117,2.96], + [20119,2.95], + [20121,3.03], + [20123,2.87], + [20125,2.96], + [20127,2.88], + [20129,3.46], + [20131,3], + [20133,2.91], + [20135,2.75], + [20137,3.17], + [20139,2.86], + [20141,2.7], + [20143,2.79], + [20145,3.1], + [20147,2.79], + [20149,3.23], + [20151,2.99], + [20153,2.59], + [20155,3.02], + [20157,2.65], + [20159,2.84], + [20161,2.97], + [20163,2.89], + [20165,2.83], + [20167,2.81], + [20169,3.11], + [20171,2.95], + [20173,3.26], + [20175,3.51], + [20177,3.06], + [20179,2.7], + [20181,2.87], + [20183,2.59], + [20185,2.74], + [20187,3.56], + [20189,3.54], + [20191,3], + [20193,2.63], + [20195,2.45], + [20197,3.07], + [20199,2.91], + [20201,2.94], + [20203,2.78], + [20205,2.84], + [20207,2.67], + [20209,3.46], + [21001,3.11], + [21003,3.21], + [21005,3.03], + [21007,3.12], + [21009,3.06], + [21011,2.93], + [21013,3.07], + [21015,3.21], + [21017,2.92], + [21019,3.07], + [21021,3.04], + [21023,3.12], + [21025,2.88], + [21027,3.17], + [21029,3.13], + [21031,2.92], + [21033,2.93], + [21035,2.94], + [21037,3.04], + [21039,2.92], + [21041,3.17], + [21043,3.38], + [21045,3.23], + [21047,3.09], + [21049,2.88], + [21051,2.94], + [21053,3.2], + [21055,3], + [21057,3.3], + [21059,2.94], + [21061,2.89], + [21063,2.68], + [21065,3.17], + [21067,2.99], + [21069,2.89], + [21071,2.84], + [21073,2.94], + [21075,3.11], + [21077,3.38], + [21079,2.96], + [21081,3.11], + [21083,3.33], + [21085,3.21], + [21087,3.06], + [21089,2.92], + [21091,3.01], + [21093,3.06], + [21095,2.84], + [21097,2.93], + [21099,3.16], + [21101,2.92], + [21103,3.1], + [21105,3.15], + [21107,2.91], + [21109,2.86], + [21111,3.1], + [21113,3.14], + [21115,3.24], + [21117,3.2], + [21119,2.75], + [21121,3.18], + [21123,2.87], + [21125,3.14], + [21127,3.35], + [21129,3.15], + [21131,2.87], + [21133,2.76], + [21135,3.11], + [21137,2.93], + [21139,2.98], + [21141,3.13], + [21143,2.66], + [21145,3], + [21147,3.08], + [21149,2.84], + [21151,3.07], + [21153,3], + [21155,3.26], + [21157,2.84], + [21159,3.07], + [21161,3.08], + [21163,3.08], + [21165,3.03], + [21167,3.02], + [21169,2.84], + [21171,2.98], + [21173,3.02], + [21175,2.92], + [21177,3.18], + [21179,3.03], + [21181,2.96], + [21183,3.01], + [21185,3.33], + [21187,3.28], + [21189,3.06], + [21191,3.23], + [21193,2.7], + [21195,2.75], + [21197,2.96], + [21199,3.03], + [21201,2.86], + [21203,3.04], + [21205,3.09], + [21207,3.13], + [21209,2.97], + [21211,3.22], + [21213,2.99], + [21215,2.97], + [21217,3.03], + [21219,3.09], + [21221,2.98], + [21223,2.99], + [21225,2.82], + [21227,3.06], + [21229,3.01], + [21231,3], + [21233,3.12], + [21235,3.21], + [21237,3.11], + [21239,2.97], + [22001,3.31], + [22003,3.15], + [22005,3.36], + [22007,3.35], + [22009,3.03], + [22011,3.31], + [22013,2.92], + [22015,3.04], + [22017,3.25], + [22019,3.16], + [22021,3.11], + [22023,2.88], + [22025,3.05], + [22027,2.99], + [22029,3.21], + [22031,3.07], + [22033,3.44], + [22035,2.9], + [22037,2.7], + [22039,3.31], + [22041,3.15], + [22043,3.47], + [22045,3.21], + [22047,3.36], + [22049,3.01], + [22051,3.24], + [22053,3.22], + [22055,3.22], + [22057,3.1], + [22059,3.29], + [22061,3.09], + [22063,3.36], + [22065,3.07], + [22067,3.28], + [22069,3.64], + [22071,3.66], + [22073,3.39], + [22075,2.96], + [22077,3.08], + [22079,3.19], + [22081,3.37], + [22083,3.25], + [22085,3.21], + [22087,3.76], + [22089,3.13], + [22091,3.21], + [22093,3.25], + [22095,3.27], + [22097,3.35], + [22099,3.2], + [22101,3.49], + [22103,3.28], + [22105,3.32], + [22107,3.36], + [22109,3.35], + [22111,3.74], + [22113,3.21], + [22115,3.25], + [22117,3.06], + [22119,2.96], + [22121,2.99], + [22123,3.27], + [22125,4.12], + [22127,2.77], + [23001,2.82], + [23003,2.79], + [23005,2.94], + [23007,3.01], + [23009,2.72], + [23011,2.8], + [23013,2.79], + [23015,2.64], + [23017,3.2], + [23019,2.85], + [23021,2.84], + [23023,2.7], + [23025,2.81], + [23027,2.67], + [23029,2.72], + [23031,2.87], + [24001,2.91], + [24003,3.16], + [24005,3.2], + [24009,3.24], + [24011,3.14], + [24013,3.13], + [24015,3.26], + [24017,3.28], + [24019,2.96], + [24021,3.13], + [24023,2.8], + [24025,3.14], + [24027,3.26], + [24029,2.83], + [24031,3.35], + [24033,3.53], + [24035,3.09], + [24037,3.23], + [24039,2.83], + [24041,2.66], + [24043,3.05], + [24045,3.16], + [24047,2.88], + [24510,3.42], + [25001,2.77], + [25003,2.78], + [25005,3.06], + [25007,3.27], + [25009,3.19], + [25011,2.86], + [25013,3.16], + [25015,2.89], + [25017,3.12], + [25019,3.31], + [25021,3.17], + [25023,3.23], + [25025,3.19], + [25027,3.15], + [26001,2.52], + [26003,3.4], + [26005,3.07], + [26007,2.74], + [26009,2.73], + [26011,2.79], + [26013,2.9], + [26015,2.9], + [26017,2.87], + [26019,3.11], + [26021,2.93], + [26023,2.96], + [26025,3.02], + [26027,2.86], + [26029,2.75], + [26031,2.72], + [26033,3.05], + [26035,3.05], + [26037,3.07], + [26039,2.64], + [26041,2.66], + [26043,2.74], + [26045,2.98], + [26047,2.8], + [26049,2.98], + [26051,2.8], + [26053,2.77], + [26055,2.92], + [26057,2.83], + [26059,2.95], + [26061,3.23], + [26063,2.8], + [26065,3.1], + [26067,3.12], + [26069,2.65], + [26071,2.69], + [26073,3.05], + [26075,2.98], + [26077,3.08], + [26079,2.89], + [26081,3.18], + [26083,2.23], + [26085,3.22], + [26087,2.99], + [26089,2.78], + [26091,2.97], + [26093,3.07], + [26095,2.94], + [26097,2.44], + [26099,3.1], + [26101,3.07], + [26103,2.91], + [26105,2.88], + [26107,3.1], + [26109,2.73], + [26111,2.9], + [26113,2.9], + [26115,2.99], + [26117,3.02], + [26119,2.5], + [26121,3.04], + [26123,2.99], + [26125,3.1], + [26127,2.98], + [26129,2.71], + [26131,2.68], + [26133,3.02], + [26135,2.64], + [26137,2.85], + [26139,3.15], + [26141,2.61], + [26143,2.6], + [26145,2.92], + [26147,2.95], + [26149,2.97], + [26151,2.82], + [26153,2.83], + [26155,2.92], + [26157,2.82], + [26159,3], + [26161,3.06], + [26163,3.33], + [26165,3.04], + [27001,2.46], + [27003,3.19], + [27005,2.96], + [27007,3.12], + [27009,2.94], + [27011,2.66], + [27013,2.86], + [27015,2.74], + [27017,2.93], + [27019,3.19], + [27021,2.62], + [27023,2.82], + [27025,3.05], + [27027,3.04], + [27029,3.14], + [27031,2.39], + [27033,2.82], + [27035,2.86], + [27037,3.12], + [27039,3.09], + [27041,2.72], + [27043,2.75], + [27045,2.88], + [27047,2.8], + [27049,2.85], + [27051,2.75], + [27053,3.1], + [27055,2.74], + [27057,2.83], + [27059,3.08], + [27061,2.75], + [27063,2.71], + [27065,2.89], + [27067,2.98], + [27069,2.75], + [27071,2.76], + [27073,2.66], + [27075,2.44], + [27077,3.19], + [27079,3], + [27081,2.89], + [27083,2.99], + [27085,2.97], + [27087,3.46], + [27089,2.85], + [27091,2.76], + [27093,3], + [27095,3.03], + [27097,2.93], + [27099,3.11], + [27101,2.78], + [27103,2.91], + [27105,3.15], + [27107,2.92], + [27109,3.02], + [27111,2.83], + [27113,2.98], + [27115,3.15], + [27117,2.91], + [27119,3.1], + [27121,2.69], + [27123,3.29], + [27125,2.92], + [27127,2.95], + [27129,2.9], + [27131,3.07], + [27133,2.82], + [27135,3.07], + [27137,2.82], + [27139,3.32], + [27141,3.22], + [27143,2.96], + [27145,3.08], + [27147,3.03], + [27149,3.25], + [27151,2.73], + [27153,2.97], + [27155,2.49], + [27157,2.85], + [27159,2.94], + [27161,2.9], + [27163,3.16], + [27165,3.12], + [27167,2.69], + [27169,3.01], + [27171,3.22], + [27173,2.79], + [28001,3.47], + [28003,3.09], + [28005,3.01], + [28007,3.24], + [28009,3.33], + [28011,3.17], + [28013,3.1], + [28015,3.15], + [28017,3.3], + [28019,3.31], + [28021,3.73], + [28023,3.06], + [28025,3.32], + [28027,3.29], + [28029,3.62], + [28031,3.32], + [28033,3.33], + [28035,3.25], + [28037,3.2], + [28039,3.78], + [28041,3.1], + [28043,3.16], + [28045,2.83], + [28047,3.14], + [28049,3.32], + [28051,3.79], + [28053,3.3], + [28055,3.01], + [28057,3.04], + [28059,3.36], + [28061,3.01], + [28063,3.72], + [28065,3], + [28067,3.28], + [28069,3.2], + [28071,3.14], + [28073,3.25], + [28075,3.11], + [28077,3.22], + [28079,3.39], + [28081,3.23], + [28083,3.84], + [28085,3.22], + [28087,3.2], + [28089,3.12], + [28091,3.38], + [28093,3.2], + [28095,3.21], + [28097,2.64], + [28099,3.33], + [28101,3.1], + [28103,3.42], + [28105,3.21], + [28107,3.36], + [28109,3.03], + [28111,3.06], + [28113,3.68], + [28115,3.41], + [28117,3.31], + [28119,3.05], + [28121,3.14], + [28123,3.35], + [28125,3.34], + [28127,3.36], + [28129,3.38], + [28131,3.28], + [28133,3.39], + [28135,3.45], + [28137,3.01], + [28139,3.44], + [28141,3.13], + [28143,3.25], + [28145,3.51], + [28147,3.47], + [28149,3.29], + [28151,3.29], + [28153,3.19], + [28155,3.08], + [28157,3.43], + [28159,3.11], + [28161,2.96], + [28163,3.7], + [29001,3.12], + [29003,3.09], + [29005,2.65], + [29007,3.14], + [29009,2.98], + [29011,2.85], + [29013,2.9], + [29015,2.99], + [29017,3.18], + [29019,2.95], + [29021,3.16], + [29023,3.07], + [29025,2.98], + [29027,3.11], + [29029,3.32], + [29031,3.07], + [29033,2.96], + [29035,3.14], + [29037,2.98], + [29039,2.95], + [29041,3.35], + [29043,3.15], + [29045,3.1], + [29047,3.2], + [29049,2.87], + [29051,3], + [29053,3.12], + [29055,3.07], + [29057,2.83], + [29059,3.29], + [29061,3.22], + [29063,3.06], + [29065,2.99], + [29067,3.01], + [29069,2.98], + [29071,2.98], + [29073,2.85], + [29075,3.13], + [29077,2.82], + [29079,3.11], + [29081,2.99], + [29083,2.81], + [29085,3.09], + [29087,2.7], + [29089,3.2], + [29091,3.02], + [29093,2.91], + [29095,3.11], + [29097,3.12], + [29099,3.03], + [29101,2.92], + [29103,3.36], + [29105,2.9], + [29107,2.89], + [29109,3.05], + [29111,2.98], + [29113,3.32], + [29115,2.84], + [29117,2.84], + [29119,3.06], + [29121,3.31], + [29123,2.83], + [29125,2.87], + [29127,2.89], + [29129,3.83], + [29131,2.93], + [29133,2.73], + [29135,3.26], + [29137,2.84], + [29139,2.72], + [29141,3.31], + [29143,2.86], + [29145,3.09], + [29147,2.8], + [29149,3.05], + [29151,3.04], + [29153,2.93], + [29155,3.07], + [29157,2.94], + [29159,3.16], + [29161,2.83], + [29163,3.06], + [29165,3.1], + [29167,2.99], + [29169,3.47], + [29171,3.6], + [29173,2.89], + [29175,3.29], + [29177,3], + [29179,2.75], + [29181,3.26], + [29183,3.13], + [29185,2.75], + [29186,2.87], + [29187,2.9], + [29189,3.03], + [29195,3.31], + [29197,4.05], + [29199,3.39], + [29201,2.97], + [29203,3.11], + [29205,2.9], + [29207,3.1], + [29209,2.86], + [29211,3.67], + [29213,2.84], + [29215,3.01], + [29217,3.01], + [29219,3.09], + [29221,3.02], + [29223,3.03], + [29225,3.22], + [29227,2.78], + [29229,3.11], + [29510,3.07], + [30001,2.92], + [30003,4.31], + [30005,3.61], + [30007,3.12], + [30009,2.96], + [30011,2.61], + [30013,2.88], + [30015,3.04], + [30017,2.9], + [30019,2.59], + [30021,2.72], + [30023,2.79], + [30025,2.82], + [30027,2.83], + [30029,3.14], + [30031,2.91], + [30033,2.92], + [30035,4.21], + [30037,2.69], + [30039,3.42], + [30041,3.18], + [30043,3.01], + [30045,2.82], + [30047,2.96], + [30049,2.93], + [30051,3.36], + [30053,2.99], + [30055,3.07], + [30057,2.88], + [30059,3.48], + [30061,2.99], + [30063,2.92], + [30065,2.69], + [30067,2.61], + [30069,2.81], + [30071,3.2], + [30073,3.35], + [30075,2.44], + [30077,2.63], + [30079,2.88], + [30081,2.93], + [30083,3.23], + [30085,4.56], + [30087,3.46], + [30089,2.88], + [30091,2.8], + [30093,3.04], + [30095,3.01], + [30097,2.95], + [30099,3], + [30101,2.81], + [30103,2.36], + [30105,2.67], + [30107,3.49], + [30109,2.63], + [30111,2.93], + [31001,3.01], + [31003,2.89], + [31005,3.07], + [31007,2.88], + [31009,2.81], + [31011,2.78], + [31013,2.9], + [31015,2.65], + [31017,2.85], + [31019,3.03], + [31021,2.74], + [31023,2.94], + [31025,3.06], + [31027,2.93], + [31029,2.66], + [31031,2.77], + [31033,2.95], + [31035,3], + [31037,3.26], + [31039,3], + [31041,2.68], + [31043,3.12], + [31045,2.84], + [31047,3.12], + [31049,2.68], + [31051,2.97], + [31053,2.85], + [31055,3.19], + [31057,2.95], + [31059,2.7], + [31061,2.61], + [31063,2.72], + [31065,2.75], + [31067,2.98], + [31069,2.77], + [31071,2.66], + [31073,2.58], + [31075,2.89], + [31077,2.9], + [31079,3.13], + [31081,2.86], + [31083,2.86], + [31085,2.8], + [31087,2.95], + [31089,2.83], + [31091,2.58], + [31093,2.92], + [31095,2.87], + [31097,2.77], + [31099,3.04], + [31101,2.65], + [31103,3.19], + [31105,2.8], + [31107,2.88], + [31109,3.05], + [31111,2.86], + [31113,3.31], + [31115,2.5], + [31117,2.76], + [31119,3], + [31121,2.72], + [31123,3.1], + [31125,2.77], + [31127,2.72], + [31129,2.93], + [31131,2.97], + [31133,2.69], + [31135,2.91], + [31137,2.84], + [31139,2.87], + [31141,3.16], + [31143,3.03], + [31145,2.94], + [31147,2.69], + [31149,2.63], + [31151,3.15], + [31153,3.18], + [31155,2.96], + [31157,2.99], + [31159,2.91], + [31161,2.86], + [31163,2.73], + [31165,2.71], + [31167,2.89], + [31169,2.76], + [31171,2.78], + [31173,3.87], + [31175,2.74], + [31177,2.93], + [31179,2.75], + [31181,2.91], + [31183,2.9], + [31185,2.81], + [32001,2.86], + [32003,3.44], + [32005,2.73], + [32007,3.39], + [32009,3.07], + [32011,2.83], + [32013,3.11], + [32015,3.02], + [32017,3], + [32019,3.12], + [32021,3.08], + [32023,2.92], + [32027,3.03], + [32029,2.84], + [32031,3.04], + [32033,2.94], + [32510,2.89], + [33001,2.89], + [33003,2.71], + [33005,2.94], + [33007,2.66], + [33009,2.99], + [33011,3.04], + [33013,2.94], + [33015,2.97], + [33017,2.95], + [33019,2.91], + [34001,3.21], + [34003,3.24], + [34005,3.15], + [34007,3.3], + [34009,2.77], + [34011,3.31], + [34013,3.44], + [34015,3.27], + [34017,3.16], + [34019,3.01], + [34021,3.32], + [34023,3.3], + [34025,3.2], + [34027,3.19], + [34029,3.27], + [34031,3.56], + [34033,3.18], + [34035,3.3], + [34037,3.12], + [34039,3.41], + [34041,3.08], + [35001,3.24], + [35003,3.07], + [35005,3.34], + [35006,3.53], + [35007,2.54], + [35009,3.26], + [35011,4.81], + [35013,3.3], + [35015,3.15], + [35017,2.98], + [35019,4.32], + [35021,3.01], + [35023,3.19], + [35025,3.55], + [35027,3.17], + [35028,2.99], + [35029,3.58], + [35031,4.22], + [35033,3.93], + [35035,3.43], + [35037,3.87], + [35039,4.05], + [35041,3.32], + [35043,3.32], + [35045,3.44], + [35047,2.96], + [35049,3.04], + [35051,2.6], + [35053,5.16], + [35055,3.67], + [35057,3.38], + [35059,3.5], + [35061,3.38], + [36001,3.04], + [36003,2.88], + [36005,3.49], + [36007,2.96], + [36009,2.93], + [36011,2.86], + [36013,2.93], + [36015,2.94], + [36017,2.76], + [36019,2.84], + [36021,2.83], + [36023,2.93], + [36025,2.82], + [36027,3.11], + [36029,2.96], + [36031,2.67], + [36033,2.91], + [36035,2.81], + [36037,3], + [36039,3.31], + [36041,4.7], + [36043,3.09], + [36045,3.04], + [36047,3.37], + [36049,3.08], + [36051,2.88], + [36053,3.18], + [36055,3.02], + [36057,3.02], + [36059,3.45], + [36061,3.01], + [36063,2.95], + [36065,3.05], + [36067,3.03], + [36069,2.92], + [36071,3.5], + [36073,2.73], + [36075,2.91], + [36077,2.89], + [36079,3.26], + [36081,3.51], + [36083,2.95], + [36085,3.33], + [36087,3.74], + [36089,2.83], + [36091,2.89], + [36093,3.64], + [36095,2.91], + [36097,2.9], + [36099,2.83], + [36101,2.93], + [36103,3.5], + [36105,3.21], + [36107,2.9], + [36109,2.79], + [36111,3.01], + [36113,2.87], + [36115,2.92], + [36117,2.9], + [36119,3.3], + [36121,2.84], + [36123,3.32], + [37001,3.04], + [37003,2.98], + [37005,2.62], + [37007,3.12], + [37009,2.64], + [37011,2.62], + [37013,2.98], + [37015,3.01], + [37017,3.06], + [37019,2.8], + [37021,2.97], + [37023,3.01], + [37025,3.33], + [37027,2.94], + [37029,2.99], + [37031,2.78], + [37033,2.79], + [37035,3.03], + [37037,2.92], + [37039,2.66], + [37041,2.8], + [37043,2.65], + [37045,3.28], + [37047,3.07], + [37049,2.86], + [37051,3.25], + [37053,2.9], + [37055,2.79], + [37057,2.92], + [37059,3.05], + [37061,3.34], + [37063,3.04], + [37065,2.96], + [37067,3.18], + [37069,2.98], + [37071,3.14], + [37073,3.02], + [37075,3.18], + [37077,3.1], + [37079,3.17], + [37081,3.11], + [37083,2.95], + [37085,3.44], + [37087,2.79], + [37089,2.83], + [37091,3.2], + [37093,3.61], + [37095,2.74], + [37097,3.1], + [37099,2.86], + [37101,3.31], + [37103,2.91], + [37105,3.3], + [37107,2.97], + [37109,2.92], + [37111,2.82], + [37113,2.67], + [37115,2.95], + [37117,2.95], + [37119,3.29], + [37121,2.89], + [37123,3.23], + [37125,3.01], + [37127,3.06], + [37129,2.95], + [37131,2.74], + [37133,3.19], + [37135,3.08], + [37137,2.74], + [37139,3.13], + [37141,3.37], + [37143,2.71], + [37145,2.98], + [37147,3.04], + [37149,2.85], + [37151,3.02], + [37153,2.93], + [37155,3.5], + [37157,2.96], + [37159,3.09], + [37161,3.06], + [37163,3.31], + [37165,3.13], + [37167,3.03], + [37169,2.79], + [37171,2.98], + [37173,3.18], + [37175,2.65], + [37177,2.52], + [37179,3.36], + [37181,3.17], + [37183,3.16], + [37185,3.27], + [37187,3.39], + [37189,2.77], + [37191,3.06], + [37193,2.89], + [37195,3.14], + [37197,2.91], + [37199,2.8], + [38001,2.83], + [38003,2.6], + [38005,3.64], + [38007,2.78], + [38009,2.61], + [38011,2.86], + [38013,3.12], + [38015,2.92], + [38017,2.94], + [38019,2.66], + [38021,2.83], + [38023,2.71], + [38025,3.17], + [38027,2.66], + [38029,2.66], + [38031,2.92], + [38033,2.82], + [38035,2.84], + [38037,2.83], + [38039,2.72], + [38041,2.79], + [38043,2.73], + [38045,2.8], + [38047,2.7], + [38049,2.77], + [38051,2.49], + [38053,3.78], + [38055,2.66], + [38057,2.7], + [38059,2.74], + [38061,3.87], + [38063,2.61], + [38065,2.88], + [38067,2.69], + [38069,2.72], + [38071,3.01], + [38073,2.77], + [38075,3.12], + [38077,2.74], + [38079,3.8], + [38081,2.58], + [38083,2.49], + [38085,4.57], + [38087,2.74], + [38089,3.11], + [38091,2.85], + [38093,2.83], + [38095,2.71], + [38097,2.88], + [38099,2.76], + [38101,3.02], + [38103,2.64], + [38105,3.04], + [39001,3.05], + [39003,3.02], + [39005,3.07], + [39007,3.11], + [39009,3], + [39011,2.86], + [39013,3.14], + [39015,2.85], + [39017,3.17], + [39019,2.89], + [39021,3], + [39023,2.92], + [39025,3.11], + [39027,2.98], + [39029,2.94], + [39031,3.03], + [39033,2.88], + [39035,3.02], + [39037,2.94], + [39039,2.9], + [39041,3.26], + [39043,2.91], + [39045,3.17], + [39047,2.84], + [39049,3.15], + [39051,2.99], + [39053,3.17], + [39055,3.09], + [39057,2.93], + [39059,2.91], + [39061,3.04], + [39063,2.87], + [39065,3.04], + [39067,2.91], + [39069,2.89], + [39071,3.05], + [39073,2.89], + [39075,4.03], + [39077,3.04], + [39079,2.92], + [39081,2.91], + [39083,2.97], + [39085,2.93], + [39087,3.17], + [39089,3.13], + [39091,2.9], + [39093,3.04], + [39095,2.99], + [39097,3.03], + [39099,2.91], + [39101,2.98], + [39103,3.08], + [39105,3.04], + [39107,2.98], + [39109,3.17], + [39111,2.98], + [39113,2.93], + [39115,2.89], + [39117,3.09], + [39119,3.05], + [39121,2.99], + [39123,2.68], + [39125,2.89], + [39127,3.06], + [39129,3.16], + [39131,3.06], + [39133,3.08], + [39135,2.95], + [39137,2.97], + [39139,2.92], + [39141,2.93], + [39143,2.98], + [39145,2.97], + [39147,2.91], + [39149,3.07], + [39151,2.92], + [39153,3.02], + [39155,2.89], + [39157,3.04], + [39159,3.02], + [39161,2.84], + [39163,3.1], + [39165,3.11], + [39167,2.86], + [39169,3.11], + [39171,2.93], + [39173,3.03], + [39175,2.87], + [40001,3.39], + [40003,3.06], + [40005,2.81], + [40007,3.13], + [40009,3.17], + [40011,2.58], + [40013,3.19], + [40015,3.31], + [40017,3.61], + [40019,3.18], + [40021,3.53], + [40023,3.08], + [40025,2.85], + [40027,3.02], + [40029,3.05], + [40031,3.22], + [40033,3.03], + [40035,2.91], + [40037,3.18], + [40039,3.18], + [40041,3.06], + [40043,3.5], + [40045,3.15], + [40047,3.16], + [40049,3.2], + [40051,3.19], + [40053,3.11], + [40055,2.94], + [40057,2.82], + [40059,3.58], + [40061,3.01], + [40063,3.55], + [40065,3.07], + [40067,3.08], + [40069,3.07], + [40071,3.11], + [40073,3.3], + [40075,3.04], + [40077,2.92], + [40079,3.19], + [40081,3.29], + [40083,3.37], + [40085,3.69], + [40087,3.12], + [40089,3.1], + [40091,2.86], + [40093,2.9], + [40095,3.14], + [40097,2.96], + [40099,3.2], + [40101,3.02], + [40103,2.88], + [40105,3.01], + [40107,3.31], + [40109,3.26], + [40111,3.08], + [40113,3.04], + [40115,3.12], + [40117,3.06], + [40119,3.01], + [40121,2.86], + [40123,3.15], + [40125,3.21], + [40127,3.07], + [40129,3.34], + [40131,3], + [40133,3.15], + [40135,3.16], + [40137,3.13], + [40139,3.74], + [40141,3.07], + [40143,3.18], + [40145,3.12], + [40147,3.05], + [40149,3.09], + [40151,3.13], + [40153,3.15], + [41001,2.8], + [41003,2.86], + [41005,3.07], + [41007,3.04], + [41009,3.06], + [41011,2.86], + [41013,2.84], + [41015,2.64], + [41017,2.92], + [41019,2.82], + [41021,2.87], + [41023,2.65], + [41025,2.58], + [41027,3.17], + [41029,2.93], + [41031,3.24], + [41033,2.79], + [41035,2.86], + [41037,2.54], + [41039,2.92], + [41041,2.8], + [41043,3.06], + [41045,3.28], + [41047,3.34], + [41049,3.1], + [41051,3.08], + [41053,3.18], + [41055,2.7], + [41057,2.95], + [41059,3.19], + [41061,2.85], + [41063,2.62], + [41065,3], + [41067,3.19], + [41069,2.67], + [41071,3.16], + [42001,2.97], + [42003,2.89], + [42005,2.83], + [42007,2.86], + [42009,2.95], + [42011,3.13], + [42013,2.85], + [42015,2.91], + [42017,3.1], + [42019,2.89], + [42021,2.8], + [42023,2.76], + [42025,2.93], + [42027,2.95], + [42029,3.14], + [42031,2.88], + [42033,2.9], + [42035,3.12], + [42037,2.88], + [42039,2.85], + [42041,2.93], + [42043,3.03], + [42045,3.24], + [42047,2.66], + [42049,2.96], + [42051,2.87], + [42053,2.53], + [42055,3.02], + [42057,2.95], + [42059,2.87], + [42061,2.83], + [42063,2.9], + [42065,2.85], + [42067,3.1], + [42069,2.94], + [42071,3.13], + [42073,2.8], + [42075,3.05], + [42077,3.09], + [42079,2.97], + [42081,2.88], + [42083,2.73], + [42085,2.8], + [42087,2.85], + [42089,3.46], + [42091,3.08], + [42093,2.97], + [42095,3.07], + [42097,2.76], + [42099,2.94], + [42101,3.46], + [42103,2.97], + [42105,3.17], + [42107,2.82], + [42109,3.05], + [42111,2.84], + [42113,2.65], + [42115,2.82], + [42117,3], + [42119,3.06], + [42121,2.8], + [42123,2.82], + [42125,2.94], + [42127,3.09], + [42129,2.8], + [42131,2.98], + [42133,3.01], + [44001,2.9], + [44003,2.94], + [44005,2.81], + [44007,3.29], + [44009,2.92], + [45001,3.1], + [45003,3], + [45005,3.14], + [45007,3.07], + [45009,3.2], + [45011,3.23], + [45013,3.01], + [45015,3.22], + [45017,2.98], + [45019,3.14], + [45021,3.83], + [45023,3.28], + [45025,3.05], + [45027,3.05], + [45029,3.13], + [45031,3.14], + [45033,3.54], + [45035,3.43], + [45037,3.18], + [45039,3.11], + [45041,3.21], + [45043,2.95], + [45045,3.18], + [45047,3.04], + [45049,3.52], + [45051,3.03], + [45053,3.21], + [45055,3.2], + [45057,3.21], + [45059,3.04], + [45061,3.27], + [45063,3.07], + [45065,2.58], + [45067,3.35], + [45069,3.15], + [45071,3.12], + [45073,2.87], + [45075,3.42], + [45077,2.95], + [45079,3.22], + [45081,3.28], + [45083,3.14], + [45085,3.05], + [45087,2.9], + [45089,3.01], + [45091,3.11], + [46003,2.76], + [46005,3.03], + [46007,4], + [46009,2.79], + [46011,3.07], + [46013,2.97], + [46015,2.74], + [46017,4.09], + [46019,2.89], + [46021,2.81], + [46023,3.61], + [46025,3.03], + [46027,2.79], + [46029,2.83], + [46031,4.14], + [46033,2.44], + [46035,2.72], + [46037,2.61], + [46039,2.86], + [46041,4.21], + [46043,2.76], + [46045,2.98], + [46047,2.78], + [46049,2.99], + [46051,2.66], + [46053,2.92], + [46055,2.9], + [46057,3.04], + [46059,2.66], + [46061,3.92], + [46063,2.74], + [46065,2.83], + [46067,3.09], + [46069,2.7], + [46071,4.44], + [46073,2.78], + [46075,2.53], + [46077,2.71], + [46079,3.15], + [46081,2.76], + [46083,3.25], + [46085,3.23], + [46087,2.92], + [46089,2.81], + [46091,3.18], + [46093,2.94], + [46095,3.58], + [46097,3.01], + [46099,3], + [46101,2.87], + [46102,5.83], + [46103,3.02], + [46105,2.73], + [46107,2.92], + [46109,3.23], + [46111,2.74], + [46115,3.03], + [46117,2.6], + [46119,2.84], + [46121,4.61], + [46123,2.7], + [46125,2.84], + [46127,2.84], + [46129,2.88], + [46135,2.78], + [46137,4.09], + [47001,2.96], + [47003,3.2], + [47005,3.2], + [47007,3.23], + [47009,3.04], + [47011,3.07], + [47013,2.86], + [47015,3.02], + [47017,3.02], + [47019,2.88], + [47021,3.01], + [47023,3.04], + [47025,2.86], + [47027,3.04], + [47029,3.08], + [47031,3.06], + [47033,3.16], + [47035,2.68], + [47037,3.06], + [47039,3.14], + [47041,3], + [47043,3.29], + [47045,2.85], + [47047,2.97], + [47049,3], + [47051,2.9], + [47053,3.06], + [47055,2.91], + [47057,2.99], + [47059,2.98], + [47061,3.32], + [47063,3.14], + [47065,3.11], + [47067,2.96], + [47069,3.03], + [47071,2.95], + [47073,2.9], + [47075,3.04], + [47077,3.18], + [47079,2.85], + [47081,3.34], + [47083,3.66], + [47085,3.36], + [47087,3.28], + [47089,3.04], + [47091,2.76], + [47093,3], + [47095,2.48], + [47097,2.84], + [47099,3.29], + [47101,3.11], + [47103,2.98], + [47105,3.02], + [47107,3.06], + [47109,3.11], + [47111,3.16], + [47113,3.06], + [47115,2.93], + [47117,3.14], + [47119,3.13], + [47121,2.92], + [47123,2.95], + [47125,3.2], + [47127,2.85], + [47129,2.76], + [47131,2.9], + [47133,2.91], + [47135,3.15], + [47137,2.67], + [47139,2.64], + [47141,2.9], + [47143,3.19], + [47145,3.09], + [47147,3.05], + [47149,3.26], + [47151,2.95], + [47153,3.03], + [47155,3.01], + [47157,3.38], + [47159,3.05], + [47161,3.24], + [47163,2.89], + [47165,3.2], + [47167,3.23], + [47169,3.71], + [47171,2.72], + [47173,2.99], + [47175,3.08], + [47177,3.22], + [47179,2.86], + [47181,3.09], + [47183,2.79], + [47185,3.21], + [47187,3.24], + [47189,3.12], + [48001,3.21], + [48003,3.73], + [48005,3.17], + [48007,3.16], + [48009,3.04], + [48011,3.08], + [48013,3.66], + [48015,3.05], + [48017,3.84], + [48019,3.07], + [48021,3.8], + [48023,2.93], + [48025,3.72], + [48027,3.34], + [48029,3.78], + [48031,3.05], + [48033,3.28], + [48035,2.88], + [48037,3.19], + [48039,3.41], + [48041,3.18], + [48043,2.96], + [48045,2.92], + [48047,3.74], + [48049,3.09], + [48051,3.17], + [48053,3.21], + [48055,3.37], + [48057,3.44], + [48059,3.29], + [48061,3.89], + [48063,3.33], + [48065,3.13], + [48067,3.01], + [48069,3.71], + [48071,3.28], + [48073,3.18], + [48075,3.03], + [48077,3.03], + [48079,3.46], + [48081,2.45], + [48083,3.01], + [48085,3.34], + [48087,3.28], + [48089,3.5], + [48091,3.18], + [48093,2.96], + [48095,3.04], + [48097,3.03], + [48099,3.24], + [48101,3.15], + [48103,3.75], + [48105,3.13], + [48107,3.44], + [48109,4.8], + [48111,3.58], + [48113,3.51], + [48115,3.15], + [48117,3.59], + [48119,3.13], + [48121,3.36], + [48123,3.11], + [48125,3.25], + [48127,3.99], + [48129,2.96], + [48131,3.71], + [48133,3.57], + [48135,3.71], + [48137,3.37], + [48139,3.4], + [48141,3.68], + [48143,3.53], + [48145,3.88], + [48147,3.07], + [48149,3.22], + [48151,3.06], + [48153,3.12], + [48155,2.92], + [48157,3.56], + [48159,3.25], + [48161,3.26], + [48163,4.07], + [48165,4.11], + [48167,3.23], + [48169,3.14], + [48171,3.05], + [48173,3.81], + [48175,3.35], + [48177,3.28], + [48179,3.29], + [48181,3.26], + [48183,3.26], + [48185,3.23], + [48187,3.34], + [48189,3.5], + [48191,3.01], + [48193,3.26], + [48195,3.58], + [48197,3.05], + [48199,3.23], + [48201,3.52], + [48203,3.27], + [48205,2.92], + [48207,3.05], + [48209,3.32], + [48211,3.49], + [48213,3.1], + [48215,4.04], + [48217,3.23], + [48219,3.38], + [48221,3.09], + [48223,3.14], + [48225,3.01], + [48227,3.5], + [48229,4.46], + [48231,3.32], + [48233,3.78], + [48235,3.01], + [48237,2.91], + [48239,3.55], + [48241,3.3], + [48243,2.78], + [48245,3.23], + [48247,3.88], + [48249,3.77], + [48251,3.29], + [48253,2.65], + [48255,3.64], + [48257,3.65], + [48259,3.43], + [48261,3.39], + [48263,2.96], + [48265,2.79], + [48267,2.87], + [48269,4.02], + [48271,3.83], + [48273,3.23], + [48275,3.21], + [48277,3.06], + [48279,3.36], + [48281,3.09], + [48283,3.41], + [48285,2.99], + [48287,3.21], + [48289,3.28], + [48291,3.41], + [48293,3.26], + [48295,3.25], + [48297,3.61], + [48299,2.91], + [48301,3.9], + [48303,3.18], + [48305,3.25], + [48307,3.1], + [48309,3.24], + [48311,3.35], + [48313,3.27], + [48315,2.73], + [48317,4.06], + [48319,3.17], + [48321,3.35], + [48323,3.99], + [48325,3.54], + [48327,2.72], + [48329,3.56], + [48331,3.3], + [48333,3.31], + [48335,3.38], + [48337,3.02], + [48339,3.34], + [48341,3.73], + [48343,3.04], + [48345,3.32], + [48347,3.09], + [48349,3.32], + [48351,3.04], + [48353,3.32], + [48355,3.33], + [48357,3.4], + [48359,3.25], + [48361,3.14], + [48363,3.31], + [48365,3.13], + [48367,3.43], + [48369,3.64], + [48371,3.52], + [48373,3.01], + [48375,3.23], + [48377,4.09], + [48379,3.19], + [48381,3.22], + [48383,4.1], + [48385,3.56], + [48387,3.02], + [48389,4.68], + [48391,3.42], + [48393,2.94], + [48395,3.13], + [48397,3.29], + [48399,3.08], + [48401,3.18], + [48403,2.95], + [48405,2.76], + [48407,3.5], + [48409,3.42], + [48411,3.28], + [48413,3.65], + [48415,3.13], + [48417,3.06], + [48419,3.24], + [48421,3.47], + [48423,3.44], + [48425,2.97], + [48427,4.54], + [48429,3.33], + [48431,3.01], + [48433,3.2], + [48435,3.35], + [48437,3.34], + [48439,3.44], + [48441,3.18], + [48443,2.85], + [48445,3.47], + [48447,2.73], + [48449,3.42], + [48451,3.25], + [48453,3.25], + [48455,2.92], + [48457,3.27], + [48459,3.45], + [48461,3.5], + [48463,3.67], + [48465,3.58], + [48467,3.15], + [48469,3.37], + [48471,3.1], + [48473,3.67], + [48475,3.51], + [48477,3.23], + [48479,4.13], + [48481,3.34], + [48483,2.89], + [48485,3.03], + [48487,2.91], + [48489,4.08], + [48491,3.55], + [48493,3.47], + [48495,3.63], + [48497,3.39], + [48499,3.13], + [48501,3.96], + [48503,2.86], + [48505,3.77], + [48507,3.75], + [49001,3.43], + [49003,3.52], + [49005,3.58], + [49007,3.11], + [49009,3.68], + [49011,3.69], + [49013,3.32], + [49015,3.26], + [49017,3.21], + [49019,2.76], + [49021,3.42], + [49023,3.61], + [49025,3.72], + [49027,3.36], + [49029,3.72], + [49031,4.39], + [49033,4.46], + [49035,3.56], + [49037,4.12], + [49039,3.51], + [49041,3.29], + [49043,3.25], + [49045,3.67], + [49047,4.08], + [49049,3.89], + [49051,3.71], + [49053,3.3], + [49055,3.35], + [49057,3.49], + [50001,2.83], + [50003,2.93], + [50005,2.89], + [50007,2.88], + [50009,2.82], + [50011,3.16], + [50013,2.83], + [50015,2.81], + [50017,2.81], + [50019,2.7], + [50021,2.89], + [50023,2.82], + [50025,2.77], + [50027,2.82], + [51001,2.89], + [51003,3], + [51005,2.78], + [51007,3.16], + [51009,3.07], + [51011,2.95], + [51013,2.97], + [51015,2.83], + [51017,2.81], + [51019,2.91], + [51021,2.72], + [51023,2.92], + [51025,3.01], + [51027,2.96], + [51029,3.08], + [51031,2.9], + [51033,3], + [51035,2.94], + [51036,2.98], + [51037,3.24], + [51041,3.18], + [51043,3.03], + [51045,2.83], + [51047,3.34], + [51049,3.07], + [51051,3.09], + [51053,3.29], + [51057,2.9], + [51059,3.37], + [51061,3.32], + [51063,2.87], + [51065,2.99], + [51067,2.76], + [51069,3.11], + [51071,2.97], + [51073,2.97], + [51075,3.05], + [51077,2.83], + [51079,3.06], + [51081,2.83], + [51083,3.01], + [51085,3.1], + [51087,3.21], + [51089,3.08], + [51091,2.46], + [51093,2.97], + [51095,3.02], + [51097,3.22], + [51099,3.26], + [51101,3.12], + [51103,2.64], + [51105,3.09], + [51107,3.47], + [51109,3.01], + [51111,3.17], + [51113,3.12], + [51115,2.72], + [51117,3.09], + [51119,2.85], + [51121,2.93], + [51125,2.69], + [51127,2.99], + [51131,2.88], + [51133,2.63], + [51135,3.04], + [51137,3.07], + [51139,3.01], + [51141,2.78], + [51143,2.72], + [51145,2.87], + [51147,3.07], + [51149,3.5], + [51153,3.66], + [51155,2.78], + [51157,3.09], + [51159,2.89], + [51161,2.92], + [51163,2.9], + [51165,2.99], + [51167,3.09], + [51169,3.08], + [51171,3.03], + [51173,2.89], + [51175,2.97], + [51177,3.4], + [51179,3.36], + [51181,2.88], + [51183,2.95], + [51185,3], + [51187,3.16], + [51191,2.88], + [51193,2.85], + [51195,2.87], + [51197,2.86], + [51199,3.06], + [51510,3.02], + [51520,3], + [51530,2.81], + [51540,3], + [51550,3.21], + [51570,3.08], + [51580,2.98], + [51590,2.84], + [51595,3.25], + [51600,3.1], + [51610,3.15], + [51620,3.02], + [51630,3.27], + [51640,2.93], + [51650,3.06], + [51660,3.14], + [51670,3], + [51678,2.84], + [51680,3.19], + [51683,3.75], + [51685,4.38], + [51690,2.93], + [51700,3.12], + [51710,3.18], + [51720,3.09], + [51730,3.28], + [51735,3.05], + [51740,3.29], + [51750,3.32], + [51760,3.35], + [51770,3.11], + [51775,2.92], + [51790,2.81], + [51800,3.12], + [51810,3.08], + [51820,3.25], + [51830,2.93], + [51840,3.31], + [53001,3.69], + [53003,2.98], + [53005,3.26], + [53007,3.25], + [53009,2.76], + [53011,3.15], + [53013,2.76], + [53015,3.04], + [53017,3.15], + [53019,2.93], + [53021,3.81], + [53023,2.78], + [53025,3.64], + [53027,2.99], + [53029,2.75], + [53031,2.52], + [53033,3.06], + [53035,2.94], + [53037,2.97], + [53039,2.92], + [53041,3.03], + [53043,2.73], + [53045,3.09], + [53047,2.74], + [53049,2.84], + [53051,2.74], + [53053,3.19], + [53055,2.43], + [53057,3.02], + [53059,2.83], + [53061,3.16], + [53063,2.97], + [53065,3.03], + [53067,2.99], + [53069,2.65], + [53071,2.99], + [53073,3.01], + [53075,2.91], + [53077,3.48], + [54001,3.15], + [54003,3.07], + [54005,3], + [54007,2.89], + [54009,2.67], + [54011,3.08], + [54013,3.02], + [54015,3.1], + [54017,3.43], + [54019,2.95], + [54021,3.14], + [54023,3.18], + [54025,2.88], + [54027,2.96], + [54029,2.98], + [54031,2.72], + [54033,3.03], + [54035,3.1], + [54037,3.1], + [54039,2.88], + [54041,2.96], + [54043,3.04], + [54045,2.82], + [54047,2.69], + [54049,2.89], + [54051,3.09], + [54053,2.86], + [54055,2.86], + [54057,2.97], + [54059,2.85], + [54061,3.21], + [54063,2.9], + [54065,2.89], + [54067,2.95], + [54069,3.06], + [54071,2.61], + [54073,2.86], + [54075,2.92], + [54077,2.95], + [54079,3.05], + [54081,2.78], + [54083,3.05], + [54085,2.88], + [54087,3.06], + [54089,2.6], + [54091,3.03], + [54093,2.64], + [54095,3.47], + [54097,2.91], + [54099,3.37], + [54101,2.63], + [54103,3.26], + [54105,2.9], + [54107,2.94], + [54109,2.74], + [55001,2.55], + [55003,2.95], + [55005,2.88], + [55007,2.53], + [55009,3], + [55011,2.73], + [55013,2.46], + [55015,2.94], + [55017,2.86], + [55019,3.26], + [55021,2.8], + [55023,2.9], + [55025,2.96], + [55027,2.9], + [55029,2.44], + [55031,2.76], + [55033,2.94], + [55035,3.02], + [55037,2.67], + [55039,2.94], + [55041,2.67], + [55043,3], + [55045,2.95], + [55047,2.88], + [55049,2.9], + [55051,2.4], + [55053,2.92], + [55055,2.92], + [55057,2.81], + [55059,3.13], + [55061,2.92], + [55063,2.95], + [55065,2.97], + [55067,2.74], + [55069,2.61], + [55071,2.83], + [55073,2.92], + [55075,2.64], + [55077,2.77], + [55078,3.68], + [55079,3.23], + [55081,3.12], + [55083,2.78], + [55085,2.81], + [55087,3.05], + [55089,2.9], + [55091,2.89], + [55093,2.99], + [55095,2.81], + [55097,2.87], + [55099,2.39], + [55101,2.98], + [55103,2.77], + [55105,3], + [55107,2.71], + [55109,3.03], + [55111,2.95], + [55113,2.45], + [55115,2.9], + [55117,2.94], + [55119,2.81], + [55121,3.02], + [55123,3.12], + [55125,2.4], + [55127,2.94], + [55129,2.62], + [55131,2.95], + [55133,3.01], + [55135,2.77], + [55137,2.79], + [55139,2.9], + [55141,2.82], + [56001,2.91], + [56003,3.25], + [56005,3.14], + [56007,2.86], + [56009,3.03], + [56011,3.07], + [56013,3.24], + [56015,2.91], + [56017,2.61], + [56019,2.7], + [56021,2.95], + [56023,3.42], + [56025,2.98], + [56027,2.83], + [56029,2.83], + [56031,2.54], + [56033,2.78], + [56035,3.68], + [56037,3.32], + [56039,3.01], + [56041,3.23], + [56043,2.89], + [56045,2.82] + ] +} diff --git a/data/regional/united-states/culture/language/us-language-english-only-2017.json b/data/regional/united-states/culture/language/us-language-english-only-2017.json new file mode 100644 index 0000000..15d4bef --- /dev/null +++ b/data/regional/united-states/culture/language/us-language-english-only-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "English Only Speakers", + "description" : "Percent of the population that speaks English only.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","language"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.language.english.only.2017"], + [1001,0.962], + [1003,0.945], + [1005,0.943], + [1007,0.978], + [1009,0.923], + [1011,0.972], + [1013,0.985], + [1015,0.959], + [1017,0.986], + [1019,0.99], + [1021,0.923], + [1023,0.989], + [1025,0.988], + [1027,0.972], + [1029,0.97], + [1031,0.936], + [1033,0.973], + [1035,0.982], + [1037,0.986], + [1039,0.986], + [1041,0.97], + [1043,0.956], + [1045,0.951], + [1047,0.982], + [1049,0.876], + [1051,0.967], + [1053,0.981], + [1055,0.964], + [1057,0.994], + [1059,0.84], + [1061,0.966], + [1063,0.994], + [1065,0.982], + [1067,0.979], + [1069,0.962], + [1071,0.982], + [1073,0.941], + [1075,0.992], + [1077,0.97], + [1079,0.988], + [1081,0.925], + [1083,0.942], + [1085,0.99], + [1087,0.968], + [1089,0.935], + [1091,0.989], + [1093,0.966], + [1095,0.884], + [1097,0.952], + [1099,0.991], + [1101,0.944], + [1103,0.924], + [1105,0.991], + [1107,0.961], + [1109,0.957], + [1111,0.981], + [1113,0.948], + [1115,0.973], + [1117,0.921], + [1119,0.964], + [1121,0.973], + [1123,0.981], + [1125,0.944], + [1127,0.98], + [1129,0.982], + [1131,0.992], + [1133,0.975], + [2013,0.586], + [2016,0.461], + [2020,0.828], + [2050,0.366], + [2060,0.915], + [2068,0.847], + [2070,0.61], + [2090,0.894], + [2100,0.888], + [2105,0.887], + [2110,0.88], + [2122,0.927], + [2130,0.9], + [2150,0.757], + [2158,null], + [2164,0.884], + [2170,0.929], + [2180,0.691], + [2185,0.677], + [2188,0.65], + [2195,0.816], + [2198,0.943], + [2220,0.896], + [2230,0.89], + [2240,0.779], + [2261,0.917], + [2275,0.945], + [2282,0.856], + [2290,0.847], + [4001,0.454], + [4003,0.705], + [4005,0.761], + [4007,0.838], + [4009,0.787], + [4011,0.771], + [4012,0.811], + [4013,0.734], + [4015,0.888], + [4017,0.635], + [4019,0.716], + [4021,0.795], + [4023,0.214], + [4025,0.892], + [4027,0.462], + [5001,0.978], + [5003,0.954], + [5005,0.979], + [5007,0.87], + [5009,0.986], + [5011,0.868], + [5013,0.968], + [5015,0.868], + [5017,0.949], + [5019,0.947], + [5021,0.985], + [5023,0.971], + [5025,0.987], + [5027,0.956], + [5029,0.969], + [5031,0.944], + [5033,0.934], + [5035,0.975], + [5037,0.992], + [5039,0.962], + [5041,0.941], + [5043,0.972], + [5045,0.947], + [5047,0.981], + [5049,0.978], + [5051,0.943], + [5053,0.979], + [5055,0.984], + [5057,0.875], + [5059,0.982], + [5061,0.857], + [5063,0.956], + [5065,0.959], + [5067,0.978], + [5069,0.965], + [5071,0.865], + [5073,0.989], + [5075,0.988], + [5077,0.984], + [5079,0.965], + [5081,0.968], + [5083,0.973], + [5085,0.967], + [5087,0.949], + [5089,0.989], + [5091,0.978], + [5093,0.963], + [5095,0.979], + [5097,0.965], + [5099,0.974], + [5101,0.994], + [5103,0.984], + [5105,0.98], + [5107,0.984], + [5109,0.942], + [5111,0.98], + [5113,0.941], + [5115,0.918], + [5117,0.991], + [5119,0.922], + [5121,0.979], + [5123,0.968], + [5125,0.946], + [5127,0.924], + [5129,0.993], + [5131,0.847], + [5133,0.69], + [5135,0.982], + [5137,0.986], + [5139,0.964], + [5141,0.983], + [5143,0.826], + [5145,0.94], + [5147,0.998], + [5149,0.822], + [6001,0.554], + [6003,0.936], + [6005,0.889], + [6007,0.857], + [6009,0.927], + [6011,0.509], + [6013,0.652], + [6015,0.873], + [6017,0.876], + [6019,0.557], + [6021,0.61], + [6023,0.884], + [6025,0.239], + [6027,0.85], + [6029,0.559], + [6031,0.598], + [6033,0.847], + [6035,0.825], + [6037,0.434], + [6039,0.545], + [6041,0.773], + [6043,0.892], + [6045,0.781], + [6047,0.477], + [6049,0.858], + [6051,0.749], + [6053,0.459], + [6055,0.653], + [6057,0.915], + [6059,0.544], + [6061,0.854], + [6063,0.916], + [6065,0.598], + [6067,0.679], + [6069,0.594], + [6071,0.589], + [6073,0.623], + [6075,0.562], + [6077,0.588], + [6079,0.818], + [6081,0.538], + [6083,0.603], + [6085,0.476], + [6087,0.681], + [6089,0.914], + [6091,0.918], + [6093,0.916], + [6095,0.703], + [6097,0.744], + [6099,0.583], + [6101,0.621], + [6103,0.808], + [6105,0.895], + [6107,0.485], + [6109,0.921], + [6111,0.614], + [6113,0.623], + [6115,0.759], + [8001,0.714], + [8003,0.707], + [8005,0.774], + [8007,0.865], + [8009,0.915], + [8011,0.863], + [8013,0.839], + [8014,0.877], + [8015,0.929], + [8017,0.882], + [8019,0.956], + [8021,0.665], + [8023,0.537], + [8025,0.872], + [8027,0.934], + [8029,0.898], + [8031,0.733], + [8033,0.977], + [8035,0.907], + [8037,0.721], + [8039,0.959], + [8041,0.883], + [8043,0.924], + [8045,0.748], + [8047,0.953], + [8049,0.902], + [8051,0.91], + [8053,0.946], + [8055,0.897], + [8057,0.837], + [8059,0.89], + [8061,0.987], + [8063,0.854], + [8065,0.81], + [8067,0.888], + [8069,0.91], + [8071,0.836], + [8073,0.914], + [8075,0.931], + [8077,0.936], + [8079,0.961], + [8081,0.893], + [8083,0.884], + [8085,0.837], + [8087,0.732], + [8089,0.86], + [8091,0.892], + [8093,0.966], + [8095,0.807], + [8097,0.86], + [8099,0.775], + [8101,0.858], + [8103,0.923], + [8105,0.728], + [8107,0.93], + [8109,0.668], + [8111,0.905], + [8113,0.894], + [8115,0.931], + [8117,0.853], + [8119,0.957], + [8121,0.945], + [8123,0.805], + [8125,0.819], + [9001,0.705], + [9003,0.75], + [9005,0.897], + [9007,0.894], + [9009,0.783], + [9011,0.865], + [9013,0.889], + [9015,0.875], + [10001,0.9], + [10003,0.854], + [10005,0.893], + [11001,0.825], + [12001,0.868], + [12003,0.963], + [12005,0.931], + [12007,0.956], + [12009,0.896], + [12011,0.6], + [12013,0.931], + [12015,0.903], + [12017,0.941], + [12019,0.898], + [12021,0.675], + [12023,0.924], + [12027,0.706], + [12029,0.959], + [12031,0.861], + [12033,0.93], + [12035,0.856], + [12037,0.945], + [12039,0.89], + [12041,0.95], + [12043,0.775], + [12045,0.947], + [12047,0.908], + [12049,0.62], + [12051,0.528], + [12053,0.891], + [12055,0.812], + [12057,0.715], + [12059,0.975], + [12061,0.864], + [12063,0.94], + [12065,0.93], + [12067,0.823], + [12069,0.863], + [12071,0.779], + [12073,0.902], + [12075,0.935], + [12077,0.936], + [12079,0.935], + [12081,0.835], + [12083,0.885], + [12085,0.862], + [12086,0.262], + [12087,0.768], + [12089,0.954], + [12091,0.892], + [12093,0.765], + [12095,0.647], + [12097,0.504], + [12099,0.689], + [12101,0.861], + [12103,0.86], + [12105,0.794], + [12107,0.907], + [12109,0.917], + [12111,0.779], + [12113,0.942], + [12115,0.871], + [12117,0.789], + [12119,0.933], + [12121,0.903], + [12123,0.941], + [12125,0.938], + [12127,0.868], + [12129,0.939], + [12131,0.921], + [12133,0.961], + [13001,0.904], + [13003,0.768], + [13005,0.914], + [13007,0.946], + [13009,0.963], + [13011,0.927], + [13013,0.881], + [13015,0.916], + [13017,0.936], + [13019,0.943], + [13021,0.953], + [13023,0.978], + [13025,0.972], + [13027,0.935], + [13029,0.922], + [13031,0.95], + [13033,0.971], + [13035,0.963], + [13037,0.928], + [13039,0.93], + [13043,0.906], + [13045,0.932], + [13047,0.96], + [13049,0.895], + [13051,0.9], + [13053,0.858], + [13055,0.952], + [13057,0.886], + [13059,0.844], + [13061,0.976], + [13063,0.802], + [13065,0.954], + [13067,0.788], + [13069,0.876], + [13071,0.823], + [13073,0.906], + [13075,0.956], + [13077,0.913], + [13079,0.979], + [13081,0.957], + [13083,0.972], + [13085,0.959], + [13087,0.966], + [13089,0.81], + [13091,0.964], + [13093,0.934], + [13095,0.964], + [13097,0.89], + [13099,0.985], + [13101,0.769], + [13103,0.953], + [13105,0.946], + [13107,0.959], + [13109,0.879], + [13111,0.96], + [13113,0.886], + [13115,0.904], + [13117,0.797], + [13119,0.946], + [13121,0.837], + [13123,0.91], + [13125,0.991], + [13127,0.918], + [13129,0.846], + [13131,0.9], + [13133,0.934], + [13135,0.656], + [13137,0.828], + [13139,0.717], + [13141,0.97], + [13143,0.981], + [13145,0.959], + [13147,0.956], + [13149,0.988], + [13151,0.895], + [13153,0.91], + [13155,0.978], + [13157,0.912], + [13159,0.966], + [13161,0.906], + [13163,0.972], + [13165,0.92], + [13167,0.983], + [13169,0.987], + [13171,0.977], + [13173,0.971], + [13175,0.971], + [13177,0.943], + [13179,0.879], + [13181,0.972], + [13183,0.883], + [13185,0.937], + [13187,0.945], + [13189,0.966], + [13191,0.982], + [13193,0.911], + [13195,0.932], + [13197,0.955], + [13199,0.975], + [13201,0.996], + [13205,0.964], + [13207,0.956], + [13209,0.906], + [13211,0.979], + [13213,0.872], + [13215,0.907], + [13217,0.936], + [13219,0.914], + [13221,0.956], + [13223,0.935], + [13225,0.903], + [13227,0.966], + [13229,0.953], + [13231,0.976], + [13233,0.882], + [13235,0.977], + [13237,0.919], + [13239,0.964], + [13241,0.907], + [13243,0.963], + [13245,0.939], + [13247,0.887], + [13249,0.969], + [13251,0.98], + [13253,0.979], + [13255,0.96], + [13257,0.963], + [13259,0.774], + [13261,0.938], + [13263,0.969], + [13265,0.977], + [13267,0.884], + [13269,0.976], + [13271,0.87], + [13273,0.988], + [13275,0.957], + [13277,0.892], + [13279,0.885], + [13281,0.969], + [13283,0.958], + [13285,0.951], + [13287,0.938], + [13289,0.984], + [13291,0.963], + [13293,0.963], + [13295,0.979], + [13297,0.951], + [13299,0.954], + [13301,0.976], + [13303,0.968], + [13305,0.937], + [13307,0.972], + [13309,0.977], + [13311,0.949], + [13313,0.689], + [13315,0.957], + [13317,0.943], + [13319,0.979], + [13321,0.984], + [15001,0.805], + [15003,0.72], + [15005,0.714], + [15007,0.789], + [15009,0.776], + [16001,0.916], + [16003,0.958], + [16005,0.919], + [16007,0.972], + [16009,0.972], + [16011,0.838], + [16013,0.815], + [16015,0.967], + [16017,0.975], + [16019,0.888], + [16021,0.971], + [16023,0.995], + [16025,0.911], + [16027,0.82], + [16029,0.967], + [16031,0.78], + [16033,0.605], + [16035,0.952], + [16037,0.966], + [16039,0.852], + [16041,0.948], + [16043,0.901], + [16045,0.911], + [16047,0.736], + [16049,0.959], + [16051,0.898], + [16053,0.719], + [16055,0.973], + [16057,0.934], + [16059,0.972], + [16061,0.974], + [16063,0.73], + [16065,0.899], + [16067,0.706], + [16069,0.959], + [16071,0.946], + [16073,0.771], + [16075,0.873], + [16077,0.688], + [16079,0.961], + [16081,0.835], + [16083,0.858], + [16085,0.908], + [16087,0.852], + [17001,0.979], + [17003,0.988], + [17005,0.962], + [17007,0.812], + [17009,0.949], + [17011,0.923], + [17013,0.991], + [17015,0.967], + [17017,0.818], + [17019,0.827], + [17021,0.978], + [17023,0.982], + [17025,0.969], + [17027,0.957], + [17029,0.957], + [17031,0.649], + [17033,0.96], + [17035,0.988], + [17037,0.883], + [17039,0.968], + [17041,0.83], + [17043,0.735], + [17045,0.987], + [17047,0.981], + [17049,0.971], + [17051,0.958], + [17053,0.971], + [17055,0.976], + [17057,0.963], + [17059,0.988], + [17061,0.986], + [17063,0.919], + [17065,0.971], + [17067,0.978], + [17069,0.988], + [17071,0.986], + [17073,0.955], + [17075,0.937], + [17077,0.907], + [17079,0.968], + [17081,0.962], + [17083,0.975], + [17085,0.957], + [17087,0.969], + [17089,0.684], + [17091,0.908], + [17093,0.825], + [17095,0.948], + [17097,0.719], + [17099,0.931], + [17101,0.957], + [17103,0.944], + [17105,0.955], + [17107,0.956], + [17109,0.943], + [17111,0.859], + [17113,0.917], + [17115,0.964], + [17117,0.984], + [17119,0.967], + [17121,0.978], + [17123,0.965], + [17125,0.986], + [17127,0.979], + [17129,0.987], + [17131,0.985], + [17133,0.972], + [17135,0.981], + [17137,0.969], + [17139,0.923], + [17141,0.919], + [17143,0.912], + [17145,0.972], + [17147,0.978], + [17149,0.986], + [17151,0.985], + [17153,0.986], + [17155,0.938], + [17157,0.969], + [17159,0.967], + [17161,0.87], + [17163,0.95], + [17165,0.97], + [17167,0.952], + [17169,0.988], + [17171,0.988], + [17173,0.994], + [17175,0.982], + [17177,0.968], + [17179,0.971], + [17181,0.946], + [17183,0.954], + [17185,0.973], + [17187,0.915], + [17189,0.979], + [17191,0.969], + [17193,0.981], + [17195,0.926], + [17197,0.8], + [17199,0.969], + [17201,0.861], + [17203,0.979], + [18001,0.859], + [18003,0.896], + [18005,0.886], + [18007,0.955], + [18009,0.972], + [18011,0.954], + [18013,0.985], + [18015,0.963], + [18017,0.847], + [18019,0.953], + [18021,0.979], + [18023,0.857], + [18025,0.987], + [18027,0.829], + [18029,0.978], + [18031,0.958], + [18033,0.971], + [18035,0.965], + [18037,0.937], + [18039,0.814], + [18041,0.988], + [18043,0.967], + [18045,0.975], + [18047,0.987], + [18049,0.936], + [18051,0.975], + [18053,0.969], + [18055,0.987], + [18057,0.908], + [18059,0.973], + [18061,0.98], + [18063,0.939], + [18065,0.982], + [18067,0.969], + [18069,0.97], + [18071,0.933], + [18073,0.95], + [18075,0.947], + [18077,0.983], + [18079,0.982], + [18081,0.936], + [18083,0.98], + [18085,0.901], + [18087,0.565], + [18089,0.855], + [18091,0.94], + [18093,0.978], + [18095,0.964], + [18097,0.868], + [18099,0.889], + [18101,0.984], + [18103,0.963], + [18105,0.892], + [18107,0.951], + [18109,0.986], + [18111,0.955], + [18113,0.885], + [18115,0.988], + [18117,0.981], + [18119,0.975], + [18121,0.947], + [18123,0.985], + [18125,0.985], + [18127,0.937], + [18129,0.986], + [18131,0.977], + [18133,0.973], + [18135,0.974], + [18137,0.975], + [18139,0.978], + [18141,0.906], + [18143,0.971], + [18145,0.958], + [18147,0.967], + [18149,0.967], + [18151,0.96], + [18153,0.989], + [18155,0.957], + [18157,0.844], + [18159,0.976], + [18161,0.994], + [18163,0.959], + [18165,0.973], + [18167,0.953], + [18169,0.97], + [18171,0.989], + [18173,0.965], + [18175,0.983], + [18177,0.957], + [18179,0.967], + [18181,0.92], + [18183,0.978], + [19001,0.975], + [19003,0.992], + [19005,0.896], + [19007,0.975], + [19009,0.985], + [19011,0.978], + [19013,0.922], + [19015,0.974], + [19017,0.972], + [19019,0.954], + [19021,0.672], + [19023,0.983], + [19025,0.99], + [19027,0.982], + [19029,0.981], + [19031,0.985], + [19033,0.965], + [19035,0.963], + [19037,0.957], + [19039,0.869], + [19041,0.967], + [19043,0.959], + [19045,0.974], + [19047,0.745], + [19049,0.901], + [19051,0.833], + [19053,0.936], + [19055,0.977], + [19057,0.968], + [19059,0.981], + [19061,0.962], + [19063,0.911], + [19065,0.97], + [19067,0.932], + [19069,0.893], + [19071,0.975], + [19073,0.958], + [19075,0.983], + [19077,0.974], + [19079,0.933], + [19081,0.962], + [19083,0.962], + [19085,0.989], + [19087,0.939], + [19089,0.958], + [19091,0.958], + [19093,0.981], + [19095,0.958], + [19097,0.989], + [19099,0.978], + [19101,0.889], + [19103,0.867], + [19105,0.98], + [19107,0.98], + [19109,0.978], + [19111,0.973], + [19113,0.95], + [19115,0.821], + [19117,0.964], + [19119,0.975], + [19121,0.971], + [19123,0.972], + [19125,0.968], + [19127,0.789], + [19129,0.975], + [19131,0.939], + [19133,0.991], + [19135,0.962], + [19137,0.965], + [19139,0.866], + [19141,0.954], + [19143,0.928], + [19145,0.966], + [19147,0.961], + [19149,0.957], + [19151,0.964], + [19153,0.874], + [19155,0.937], + [19157,0.953], + [19159,0.964], + [19161,0.976], + [19163,0.939], + [19165,0.966], + [19167,0.903], + [19169,0.897], + [19171,0.896], + [19173,0.928], + [19175,0.951], + [19177,0.934], + [19179,0.883], + [19181,0.98], + [19183,0.905], + [19185,0.912], + [19187,0.963], + [19189,0.952], + [19191,0.969], + [19193,0.847], + [19195,0.974], + [19197,0.921], + [20001,0.981], + [20003,0.981], + [20005,0.986], + [20007,0.955], + [20009,0.882], + [20011,0.981], + [20013,0.982], + [20015,0.966], + [20017,0.965], + [20019,0.985], + [20021,0.974], + [20023,0.932], + [20025,0.91], + [20027,0.971], + [20029,0.972], + [20031,0.989], + [20033,0.918], + [20035,0.922], + [20037,0.941], + [20039,0.965], + [20041,0.972], + [20043,0.987], + [20045,0.907], + [20047,0.794], + [20049,0.973], + [20051,0.935], + [20053,0.968], + [20055,0.567], + [20057,0.487], + [20059,0.981], + [20061,0.851], + [20063,0.971], + [20065,0.984], + [20067,0.627], + [20069,0.835], + [20071,0.819], + [20073,0.979], + [20075,0.699], + [20077,0.937], + [20079,0.924], + [20081,0.612], + [20083,0.926], + [20085,0.975], + [20087,0.986], + [20089,0.982], + [20091,0.887], + [20093,0.784], + [20095,0.963], + [20097,0.909], + [20099,0.971], + [20101,0.952], + [20103,0.946], + [20105,0.968], + [20107,0.994], + [20109,0.958], + [20111,0.822], + [20113,0.961], + [20115,0.968], + [20117,0.977], + [20119,0.795], + [20121,0.984], + [20123,0.971], + [20125,0.955], + [20127,0.966], + [20129,0.819], + [20131,0.983], + [20133,0.966], + [20135,0.895], + [20137,0.96], + [20139,0.984], + [20141,0.987], + [20143,0.992], + [20145,0.948], + [20147,0.977], + [20149,0.955], + [20151,0.915], + [20153,0.935], + [20155,0.931], + [20157,0.975], + [20159,0.918], + [20161,0.897], + [20163,0.973], + [20165,0.971], + [20167,0.972], + [20169,0.903], + [20171,0.851], + [20173,0.857], + [20175,0.41], + [20177,0.918], + [20179,0.934], + [20181,0.903], + [20183,0.991], + [20185,0.878], + [20187,0.654], + [20189,0.697], + [20191,0.975], + [20193,0.969], + [20195,0.991], + [20197,0.987], + [20199,0.951], + [20201,0.96], + [20203,0.78], + [20205,0.975], + [20207,0.983], + [20209,0.736], + [21001,0.981], + [21003,0.933], + [21005,0.981], + [21007,0.967], + [21009,0.96], + [21011,0.959], + [21013,0.99], + [21015,0.929], + [21017,0.937], + [21019,0.984], + [21021,0.965], + [21023,0.978], + [21025,0.988], + [21027,0.969], + [21029,0.979], + [21031,0.952], + [21033,0.995], + [21035,0.945], + [21037,0.961], + [21039,0.987], + [21041,0.936], + [21043,0.992], + [21045,0.966], + [21047,0.921], + [21049,0.974], + [21051,0.979], + [21053,0.962], + [21055,0.925], + [21057,0.992], + [21059,0.959], + [21061,0.98], + [21063,0.973], + [21065,0.995], + [21067,0.876], + [21069,0.956], + [21071,0.991], + [21073,0.948], + [21075,0.984], + [21077,0.957], + [21079,0.981], + [21081,0.972], + [21083,0.943], + [21085,0.986], + [21087,0.971], + [21089,0.987], + [21091,0.963], + [21093,0.933], + [21095,0.983], + [21097,0.956], + [21099,0.916], + [21101,0.974], + [21103,0.973], + [21105,0.99], + [21107,0.981], + [21109,0.984], + [21111,0.911], + [21113,0.946], + [21115,0.98], + [21117,0.96], + [21119,0.985], + [21121,0.987], + [21123,0.966], + [21125,0.988], + [21127,0.985], + [21129,0.984], + [21131,0.993], + [21133,0.987], + [21135,0.978], + [21137,0.982], + [21139,0.976], + [21141,0.973], + [21143,0.965], + [21145,0.972], + [21147,0.965], + [21149,0.982], + [21151,0.958], + [21153,0.999], + [21155,0.972], + [21157,0.987], + [21159,0.974], + [21161,0.965], + [21163,0.976], + [21165,0.987], + [21167,0.964], + [21169,0.977], + [21171,0.96], + [21173,0.983], + [21175,0.981], + [21177,0.981], + [21179,0.978], + [21181,0.963], + [21183,0.976], + [21185,0.956], + [21187,0.992], + [21189,0.991], + [21191,0.98], + [21193,0.979], + [21195,0.986], + [21197,0.985], + [21199,0.975], + [21201,0.943], + [21203,0.993], + [21205,0.946], + [21207,0.97], + [21209,0.949], + [21211,0.911], + [21213,0.972], + [21215,0.968], + [21217,0.976], + [21219,0.898], + [21221,0.927], + [21223,0.982], + [21225,0.982], + [21227,0.883], + [21229,0.95], + [21231,0.982], + [21233,0.938], + [21235,0.981], + [21237,0.996], + [21239,0.93], + [22001,0.884], + [22003,0.906], + [22005,0.939], + [22007,0.872], + [22009,0.892], + [22011,0.949], + [22013,0.979], + [22015,0.943], + [22017,0.965], + [22019,0.932], + [22021,0.975], + [22023,0.886], + [22025,0.979], + [22027,0.987], + [22029,0.98], + [22031,0.967], + [22033,0.916], + [22035,0.989], + [22037,0.976], + [22039,0.812], + [22041,0.993], + [22043,0.933], + [22045,0.878], + [22047,0.968], + [22049,0.979], + [22051,0.817], + [22053,0.923], + [22055,0.883], + [22057,0.855], + [22059,0.975], + [22061,0.947], + [22063,0.96], + [22065,0.98], + [22067,0.985], + [22069,0.975], + [22071,0.913], + [22073,0.975], + [22075,0.914], + [22077,0.954], + [22079,0.94], + [22081,0.988], + [22083,0.981], + [22085,0.977], + [22087,0.897], + [22089,0.937], + [22091,0.982], + [22093,0.966], + [22095,0.937], + [22097,0.913], + [22099,0.796], + [22101,0.907], + [22103,0.936], + [22105,0.958], + [22107,0.978], + [22109,0.907], + [22111,0.972], + [22113,0.807], + [22115,0.924], + [22117,0.948], + [22119,0.986], + [22121,0.968], + [22123,0.966], + [22125,0.967], + [22127,0.989], + [23001,0.894], + [23003,0.845], + [23005,0.925], + [23007,0.977], + [23009,0.967], + [23011,0.95], + [23013,0.965], + [23015,0.967], + [23017,0.973], + [23019,0.958], + [23021,0.965], + [23023,0.962], + [23025,0.97], + [23027,0.966], + [23029,0.942], + [23031,0.932], + [24001,0.957], + [24003,0.89], + [24005,0.86], + [24009,0.955], + [24011,0.93], + [24013,0.95], + [24015,0.951], + [24017,0.923], + [24019,0.941], + [24021,0.869], + [24023,0.978], + [24025,0.93], + [24027,0.748], + [24029,0.945], + [24031,0.595], + [24033,0.757], + [24035,0.951], + [24037,0.931], + [24039,0.915], + [24041,0.925], + [24043,0.928], + [24045,0.886], + [24047,0.948], + [24510,0.905], + [25001,0.918], + [25003,0.924], + [25005,0.79], + [25007,0.9], + [25009,0.744], + [25011,0.933], + [25013,0.749], + [25015,0.885], + [25017,0.74], + [25019,0.875], + [25021,0.791], + [25023,0.873], + [25025,0.603], + [25027,0.814], + [26001,0.978], + [26003,0.98], + [26005,0.945], + [26007,0.969], + [26009,0.972], + [26011,0.982], + [26013,0.966], + [26015,0.976], + [26017,0.977], + [26019,0.955], + [26021,0.923], + [26023,0.925], + [26025,0.942], + [26027,0.97], + [26029,0.97], + [26031,0.976], + [26033,0.966], + [26035,0.952], + [26037,0.959], + [26039,0.983], + [26041,0.98], + [26043,0.983], + [26045,0.928], + [26047,0.975], + [26049,0.963], + [26051,0.958], + [26053,0.967], + [26055,0.959], + [26057,0.969], + [26059,0.962], + [26061,0.939], + [26063,0.967], + [26065,0.878], + [26067,0.971], + [26069,0.964], + [26071,0.972], + [26073,0.938], + [26075,0.97], + [26077,0.929], + [26079,0.972], + [26081,0.88], + [26083,0.987], + [26085,0.973], + [26087,0.96], + [26089,0.952], + [26091,0.955], + [26093,0.97], + [26095,0.959], + [26097,0.957], + [26099,0.86], + [26101,0.96], + [26103,0.967], + [26105,0.962], + [26107,0.968], + [26109,0.979], + [26111,0.958], + [26113,0.967], + [26115,0.968], + [26117,0.965], + [26119,0.979], + [26121,0.965], + [26123,0.946], + [26125,0.854], + [26127,0.879], + [26129,0.981], + [26131,0.974], + [26133,0.96], + [26135,0.934], + [26137,0.981], + [26139,0.905], + [26141,0.957], + [26143,0.986], + [26145,0.952], + [26147,0.967], + [26149,0.908], + [26151,0.945], + [26153,0.976], + [26155,0.982], + [26157,0.977], + [26159,0.91], + [26161,0.856], + [26163,0.86], + [26165,0.976], + [27001,0.973], + [27003,0.893], + [27005,0.964], + [27007,0.958], + [27009,0.959], + [27011,0.947], + [27013,0.939], + [27015,0.95], + [27017,0.968], + [27019,0.929], + [27021,0.967], + [27023,0.926], + [27025,0.972], + [27027,0.942], + [27029,0.952], + [27031,0.947], + [27033,0.919], + [27035,0.981], + [27037,0.874], + [27039,0.955], + [27041,0.98], + [27043,0.953], + [27045,0.95], + [27047,0.915], + [27049,0.959], + [27051,0.979], + [27053,0.822], + [27055,0.98], + [27057,0.978], + [27059,0.976], + [27061,0.979], + [27063,0.94], + [27065,0.977], + [27067,0.868], + [27069,0.978], + [27071,0.973], + [27073,0.963], + [27075,0.978], + [27077,0.995], + [27079,0.944], + [27081,0.992], + [27083,0.898], + [27085,0.945], + [27087,0.945], + [27089,0.956], + [27091,0.976], + [27093,0.958], + [27095,0.969], + [27097,0.977], + [27099,0.854], + [27101,0.953], + [27103,0.942], + [27105,0.705], + [27107,0.951], + [27109,0.868], + [27111,0.953], + [27113,0.961], + [27115,0.957], + [27117,0.916], + [27119,0.928], + [27121,0.977], + [27123,0.775], + [27125,0.973], + [27127,0.952], + [27129,0.931], + [27131,0.879], + [27133,0.967], + [27135,0.961], + [27137,0.959], + [27139,0.885], + [27141,0.954], + [27143,0.909], + [27145,0.908], + [27147,0.919], + [27149,0.927], + [27151,0.951], + [27153,0.907], + [27155,0.968], + [27157,0.976], + [27159,0.97], + [27161,0.944], + [27163,0.911], + [27165,0.793], + [27167,0.992], + [27169,0.94], + [27171,0.963], + [27173,0.962], + [28001,0.905], + [28003,0.971], + [28005,0.981], + [28007,0.978], + [28009,0.975], + [28011,0.967], + [28013,0.947], + [28015,0.988], + [28017,0.964], + [28019,0.995], + [28021,0.987], + [28023,0.995], + [28025,0.986], + [28027,0.988], + [28029,0.966], + [28031,0.986], + [28033,0.947], + [28035,0.966], + [28037,0.992], + [28039,0.96], + [28041,0.988], + [28043,0.995], + [28045,0.96], + [28047,0.928], + [28049,0.971], + [28051,0.994], + [28053,0.983], + [28055,0.992], + [28057,0.98], + [28059,0.936], + [28061,0.997], + [28063,0.992], + [28065,0.994], + [28067,0.956], + [28069,0.977], + [28071,0.945], + [28073,0.961], + [28075,0.97], + [28077,0.992], + [28079,0.938], + [28081,0.963], + [28083,0.968], + [28085,0.989], + [28087,0.953], + [28089,0.944], + [28091,0.98], + [28093,0.965], + [28095,0.984], + [28097,0.989], + [28099,0.915], + [28101,0.958], + [28103,0.972], + [28105,0.943], + [28107,0.984], + [28109,0.978], + [28111,0.993], + [28113,0.966], + [28115,0.935], + [28117,0.98], + [28119,0.975], + [28121,0.957], + [28123,0.9], + [28125,0.996], + [28127,0.988], + [28129,0.995], + [28131,0.991], + [28133,0.987], + [28135,0.874], + [28137,0.97], + [28139,0.96], + [28141,0.979], + [28143,0.97], + [28145,0.96], + [28147,0.985], + [28149,0.98], + [28151,0.977], + [28153,0.989], + [28155,0.992], + [28157,0.998], + [28159,0.985], + [28161,0.987], + [28163,0.941], + [29001,0.94], + [29003,0.979], + [29005,0.989], + [29007,0.961], + [29009,0.911], + [29011,0.96], + [29013,0.986], + [29015,0.982], + [29017,0.991], + [29019,0.925], + [29021,0.942], + [29023,0.976], + [29025,0.973], + [29027,0.977], + [29029,0.97], + [29031,0.968], + [29033,0.977], + [29035,0.983], + [29037,0.962], + [29039,0.985], + [29041,0.991], + [29043,0.97], + [29045,0.949], + [29047,0.935], + [29049,0.983], + [29051,0.958], + [29053,0.977], + [29055,0.985], + [29057,0.971], + [29059,0.96], + [29061,0.87], + [29063,0.985], + [29065,0.978], + [29067,0.987], + [29069,0.934], + [29071,0.978], + [29073,0.986], + [29075,0.973], + [29077,0.95], + [29079,0.94], + [29081,0.93], + [29083,0.975], + [29085,0.983], + [29087,0.992], + [29089,0.988], + [29091,0.979], + [29093,0.982], + [29095,0.906], + [29097,0.928], + [29099,0.973], + [29101,0.964], + [29103,0.932], + [29105,0.983], + [29107,0.973], + [29109,0.926], + [29111,0.959], + [29113,0.982], + [29115,0.983], + [29117,0.981], + [29119,0.866], + [29121,0.979], + [29123,0.986], + [29125,0.963], + [29127,0.982], + [29129,0.894], + [29131,0.984], + [29133,0.994], + [29135,0.9], + [29137,0.959], + [29139,0.982], + [29141,0.917], + [29143,0.978], + [29145,0.938], + [29147,0.97], + [29149,0.988], + [29151,0.98], + [29153,0.984], + [29155,0.969], + [29157,0.975], + [29159,0.896], + [29161,0.933], + [29163,0.959], + [29165,0.926], + [29167,0.968], + [29169,0.897], + [29171,0.964], + [29173,0.987], + [29175,0.973], + [29177,0.981], + [29179,0.992], + [29181,0.983], + [29183,0.94], + [29185,0.956], + [29186,0.988], + [29187,0.986], + [29189,0.913], + [29195,0.901], + [29197,0.964], + [29199,0.918], + [29201,0.974], + [29203,0.99], + [29205,0.96], + [29207,0.984], + [29209,0.98], + [29211,0.823], + [29213,0.945], + [29215,0.965], + [29217,0.963], + [29219,0.968], + [29221,0.986], + [29223,0.994], + [29225,0.924], + [29227,0.986], + [29229,0.963], + [29510,0.909], + [30001,0.948], + [30003,0.706], + [30005,0.934], + [30007,0.948], + [30009,0.951], + [30011,0.99], + [30013,0.965], + [30015,0.968], + [30017,0.97], + [30019,0.966], + [30021,0.985], + [30023,0.958], + [30025,0.984], + [30027,0.962], + [30029,0.973], + [30031,0.959], + [30033,0.999], + [30035,0.957], + [30037,0.975], + [30039,0.984], + [30041,0.972], + [30043,0.979], + [30045,0.975], + [30047,0.963], + [30049,0.976], + [30051,0.748], + [30053,0.951], + [30055,0.967], + [30057,0.969], + [30059,0.972], + [30061,0.993], + [30063,0.962], + [30065,0.925], + [30067,0.973], + [30069,0.998], + [30071,0.983], + [30073,0.941], + [30075,0.974], + [30077,0.97], + [30079,0.985], + [30081,0.974], + [30083,0.949], + [30085,0.952], + [30087,0.899], + [30089,0.969], + [30091,0.975], + [30093,0.968], + [30095,0.967], + [30097,0.981], + [30099,0.986], + [30101,0.93], + [30103,0.949], + [30105,0.977], + [30107,0.794], + [30109,0.964], + [30111,0.965], + [31001,0.919], + [31003,0.96], + [31005,0.993], + [31007,0.965], + [31009,0.975], + [31011,0.975], + [31013,0.932], + [31015,0.977], + [31017,0.99], + [31019,0.924], + [31021,0.973], + [31023,0.954], + [31025,0.981], + [31027,0.99], + [31029,0.893], + [31031,0.983], + [31033,0.966], + [31035,0.915], + [31037,0.57], + [31039,0.908], + [31041,0.963], + [31043,0.601], + [31045,0.95], + [31047,0.692], + [31049,0.958], + [31051,0.904], + [31053,0.889], + [31055,0.853], + [31057,0.852], + [31059,0.966], + [31061,0.984], + [31063,0.987], + [31065,0.967], + [31067,0.973], + [31069,0.959], + [31071,0.983], + [31073,0.992], + [31075,1], + [31077,0.977], + [31079,0.784], + [31081,0.97], + [31083,0.968], + [31085,0.947], + [31087,0.986], + [31089,0.958], + [31091,0.978], + [31093,0.984], + [31095,0.962], + [31097,0.909], + [31099,0.959], + [31101,0.944], + [31103,0.975], + [31105,0.949], + [31107,0.957], + [31109,0.885], + [31111,0.96], + [31113,0.98], + [31115,0.998], + [31117,1], + [31119,0.871], + [31121,0.965], + [31123,0.9], + [31125,0.98], + [31127,0.974], + [31129,0.963], + [31131,0.931], + [31133,0.908], + [31135,0.957], + [31137,0.962], + [31139,0.982], + [31141,0.844], + [31143,0.94], + [31145,0.987], + [31147,0.987], + [31149,0.985], + [31151,0.77], + [31153,0.91], + [31155,0.973], + [31157,0.892], + [31159,0.97], + [31161,0.96], + [31163,0.971], + [31165,1], + [31167,0.955], + [31169,0.975], + [31171,0.982], + [31173,0.947], + [31175,0.974], + [31177,0.975], + [31179,0.949], + [31181,0.984], + [31183,0.99], + [31185,0.952], + [32001,0.87], + [32003,0.655], + [32005,0.898], + [32007,0.839], + [32009,0.853], + [32011,0.999], + [32013,0.789], + [32015,0.773], + [32017,0.943], + [32019,0.868], + [32021,0.878], + [32023,0.884], + [32027,0.774], + [32029,0.959], + [32031,0.765], + [32033,0.905], + [32510,0.799], + [33001,0.965], + [33003,0.973], + [33005,0.969], + [33007,0.884], + [33009,0.93], + [33011,0.871], + [33013,0.947], + [33015,0.939], + [33017,0.93], + [33019,0.968], + [34001,0.728], + [34003,0.601], + [34005,0.87], + [34007,0.795], + [34009,0.907], + [34011,0.72], + [34013,0.654], + [34015,0.912], + [34017,0.408], + [34019,0.896], + [34021,0.703], + [34023,0.569], + [34025,0.825], + [34027,0.757], + [34029,0.873], + [34031,0.518], + [34033,0.913], + [34035,0.696], + [34037,0.903], + [34039,0.564], + [34041,0.885], + [35001,0.701], + [35003,0.781], + [35005,0.639], + [35006,0.578], + [35007,0.776], + [35009,0.723], + [35011,0.73], + [35013,0.483], + [35015,0.769], + [35017,0.698], + [35019,0.463], + [35021,0.686], + [35023,0.596], + [35025,0.601], + [35027,0.778], + [35028,0.843], + [35029,0.486], + [35031,0.46], + [35033,0.303], + [35035,0.715], + [35037,0.789], + [35039,0.388], + [35041,0.704], + [35043,0.723], + [35045,0.684], + [35047,0.426], + [35049,0.658], + [35051,0.793], + [35053,0.611], + [35055,0.529], + [35057,0.766], + [35059,0.754], + [35061,0.671], + [36001,0.873], + [36003,0.949], + [36005,0.407], + [36007,0.905], + [36009,0.953], + [36011,0.954], + [36013,0.922], + [36015,0.963], + [36017,0.967], + [36019,0.945], + [36021,0.932], + [36023,0.969], + [36025,0.938], + [36027,0.843], + [36029,0.897], + [36031,0.941], + [36033,0.925], + [36035,0.967], + [36037,0.965], + [36039,0.923], + [36041,0.944], + [36043,0.952], + [36045,0.929], + [36047,0.541], + [36049,0.976], + [36051,0.935], + [36053,0.957], + [36055,0.866], + [36057,0.857], + [36059,0.72], + [36061,0.6], + [36063,0.959], + [36065,0.881], + [36067,0.895], + [36069,0.929], + [36071,0.753], + [36073,0.942], + [36075,0.959], + [36077,0.94], + [36079,0.809], + [36081,0.44], + [36083,0.926], + [36085,0.687], + [36087,0.616], + [36089,0.921], + [36091,0.931], + [36093,0.898], + [36095,0.96], + [36097,0.965], + [36099,0.934], + [36101,0.949], + [36103,0.773], + [36105,0.855], + [36107,0.971], + [36109,0.862], + [36111,0.889], + [36113,0.948], + [36115,0.967], + [36117,0.949], + [36119,0.667], + [36121,0.959], + [36123,0.858], + [37001,0.873], + [37003,0.947], + [37005,0.929], + [37007,0.951], + [37009,0.944], + [37011,0.937], + [37013,0.939], + [37015,0.961], + [37017,0.923], + [37019,0.948], + [37021,0.919], + [37023,0.92], + [37025,0.877], + [37027,0.943], + [37029,0.948], + [37031,0.942], + [37033,0.963], + [37035,0.875], + [37037,0.857], + [37039,0.963], + [37041,0.975], + [37043,0.973], + [37045,0.957], + [37047,0.94], + [37049,0.916], + [37051,0.884], + [37053,0.964], + [37055,0.934], + [37057,0.923], + [37059,0.922], + [37061,0.803], + [37063,0.811], + [37065,0.959], + [37067,0.854], + [37069,0.92], + [37071,0.92], + [37073,0.973], + [37075,0.983], + [37077,0.922], + [37079,0.847], + [37081,0.869], + [37083,0.969], + [37085,0.897], + [37087,0.968], + [37089,0.9], + [37091,0.945], + [37093,0.883], + [37095,0.892], + [37097,0.907], + [37099,0.941], + [37101,0.879], + [37103,0.955], + [37105,0.824], + [37107,0.918], + [37109,0.927], + [37111,0.932], + [37113,0.929], + [37115,0.966], + [37117,0.96], + [37119,0.806], + [37121,0.944], + [37123,0.848], + [37125,0.927], + [37127,0.933], + [37129,0.935], + [37131,0.975], + [37133,0.899], + [37135,0.835], + [37137,0.949], + [37139,0.937], + [37141,0.927], + [37143,0.969], + [37145,0.955], + [37147,0.93], + [37149,0.942], + [37151,0.885], + [37153,0.936], + [37155,0.921], + [37157,0.943], + [37159,0.908], + [37161,0.96], + [37163,0.834], + [37165,0.964], + [37167,0.943], + [37169,0.972], + [37171,0.911], + [37173,0.96], + [37175,0.952], + [37177,0.913], + [37179,0.865], + [37181,0.938], + [37183,0.832], + [37185,0.962], + [37187,0.966], + [37189,0.956], + [37191,0.873], + [37193,0.938], + [37195,0.895], + [37197,0.915], + [37199,0.956], + [38001,0.966], + [38003,0.973], + [38005,0.959], + [38007,0.95], + [38009,0.968], + [38011,0.954], + [38013,0.972], + [38015,0.956], + [38017,0.923], + [38019,0.968], + [38021,0.917], + [38023,0.951], + [38025,0.916], + [38027,0.974], + [38029,0.918], + [38031,0.97], + [38033,0.994], + [38035,0.939], + [38037,0.956], + [38039,0.986], + [38041,0.948], + [38043,0.929], + [38045,0.899], + [38047,0.872], + [38049,0.974], + [38051,0.805], + [38053,0.905], + [38055,0.972], + [38057,0.946], + [38059,0.957], + [38061,0.937], + [38063,0.975], + [38065,0.947], + [38067,0.962], + [38069,0.985], + [38071,0.965], + [38073,0.977], + [38075,0.959], + [38077,0.967], + [38079,0.988], + [38081,0.962], + [38083,0.964], + [38085,0.922], + [38087,0.977], + [38089,0.948], + [38091,0.958], + [38093,0.962], + [38095,0.984], + [38097,0.967], + [38099,0.907], + [38101,0.948], + [38103,0.982], + [38105,0.925], + [39001,0.98], + [39003,0.97], + [39005,0.942], + [39007,0.934], + [39009,0.944], + [39011,0.98], + [39013,0.982], + [39015,0.984], + [39017,0.924], + [39019,0.963], + [39021,0.98], + [39023,0.961], + [39025,0.97], + [39027,0.983], + [39029,0.98], + [39031,0.91], + [39033,0.984], + [39035,0.885], + [39037,0.983], + [39039,0.959], + [39041,0.919], + [39043,0.968], + [39045,0.961], + [39047,0.971], + [39049,0.873], + [39051,0.954], + [39053,0.968], + [39055,0.878], + [39057,0.936], + [39059,0.964], + [39061,0.927], + [39063,0.946], + [39065,0.954], + [39067,0.969], + [39069,0.959], + [39071,0.976], + [39073,0.988], + [39075,0.535], + [39077,0.938], + [39079,0.977], + [39081,0.978], + [39083,0.955], + [39085,0.928], + [39087,0.985], + [39089,0.966], + [39091,0.953], + [39093,0.923], + [39095,0.933], + [39097,0.963], + [39099,0.939], + [39101,0.957], + [39103,0.952], + [39105,0.993], + [39107,0.984], + [39109,0.975], + [39111,0.968], + [39113,0.942], + [39115,0.978], + [39117,0.973], + [39119,0.979], + [39121,0.968], + [39123,0.972], + [39125,0.968], + [39127,0.981], + [39129,0.978], + [39131,0.975], + [39133,0.951], + [39135,0.98], + [39137,0.963], + [39139,0.96], + [39141,0.981], + [39143,0.942], + [39145,0.987], + [39147,0.965], + [39149,0.97], + [39151,0.965], + [39153,0.939], + [39155,0.951], + [39157,0.933], + [39159,0.953], + [39161,0.982], + [39163,0.971], + [39165,0.921], + [39167,0.982], + [39169,0.893], + [39171,0.974], + [39173,0.948], + [39175,0.969], + [40001,0.904], + [40003,0.942], + [40005,0.962], + [40007,0.82], + [40009,0.908], + [40011,0.907], + [40013,0.951], + [40015,0.896], + [40017,0.917], + [40019,0.931], + [40021,0.926], + [40023,0.972], + [40025,0.817], + [40027,0.904], + [40029,0.968], + [40031,0.913], + [40033,0.988], + [40035,0.97], + [40037,0.971], + [40039,0.874], + [40041,0.941], + [40043,0.946], + [40045,0.954], + [40047,0.88], + [40049,0.938], + [40051,0.961], + [40053,0.967], + [40055,0.939], + [40057,0.803], + [40059,0.782], + [40061,0.968], + [40063,0.953], + [40065,0.831], + [40067,0.939], + [40069,0.965], + [40071,0.946], + [40073,0.862], + [40075,0.929], + [40077,0.97], + [40079,0.939], + [40081,0.985], + [40083,0.951], + [40085,0.863], + [40087,0.931], + [40089,0.951], + [40091,0.981], + [40093,0.928], + [40095,0.844], + [40097,0.953], + [40099,0.945], + [40101,0.945], + [40103,0.988], + [40105,0.98], + [40107,0.918], + [40109,0.829], + [40111,0.965], + [40113,0.971], + [40115,0.939], + [40117,0.976], + [40119,0.923], + [40121,0.957], + [40123,0.952], + [40125,0.956], + [40127,0.967], + [40129,0.979], + [40131,0.954], + [40133,0.95], + [40135,0.959], + [40137,0.945], + [40139,0.625], + [40141,0.813], + [40143,0.862], + [40145,0.942], + [40147,0.929], + [40149,0.95], + [40151,0.938], + [40153,0.899], + [41001,0.96], + [41003,0.861], + [41005,0.879], + [41007,0.914], + [41009,0.96], + [41011,0.949], + [41013,0.934], + [41015,0.951], + [41017,0.936], + [41019,0.962], + [41021,0.934], + [41023,0.953], + [41025,0.937], + [41027,0.715], + [41029,0.905], + [41031,0.834], + [41033,0.949], + [41035,0.917], + [41037,0.956], + [41039,0.914], + [41041,0.922], + [41043,0.926], + [41045,0.752], + [41047,0.749], + [41049,0.688], + [41051,0.8], + [41053,0.857], + [41055,0.972], + [41057,0.921], + [41059,0.773], + [41061,0.949], + [41063,0.965], + [41065,0.85], + [41067,0.757], + [41069,0.973], + [41071,0.856], + [42001,0.937], + [42003,0.927], + [42005,0.983], + [42007,0.973], + [42009,0.974], + [42011,0.817], + [42013,0.977], + [42015,0.978], + [42017,0.884], + [42019,0.97], + [42021,0.973], + [42023,0.977], + [42025,0.962], + [42027,0.888], + [42029,0.879], + [42031,0.959], + [42033,0.956], + [42035,0.94], + [42037,0.97], + [42039,0.94], + [42041,0.911], + [42043,0.881], + [42045,0.883], + [42047,0.987], + [42049,0.933], + [42051,0.972], + [42053,0.916], + [42055,0.933], + [42057,0.985], + [42059,0.97], + [42061,0.969], + [42063,0.935], + [42065,0.959], + [42067,0.903], + [42069,0.904], + [42071,0.833], + [42073,0.96], + [42075,0.88], + [42077,0.766], + [42079,0.891], + [42081,0.966], + [42083,0.97], + [42085,0.957], + [42087,0.915], + [42089,0.848], + [42091,0.865], + [42093,0.942], + [42095,0.87], + [42097,0.962], + [42099,0.951], + [42101,0.773], + [42103,0.889], + [42105,0.975], + [42107,0.955], + [42109,0.895], + [42111,0.959], + [42113,0.973], + [42115,0.974], + [42117,0.986], + [42119,0.902], + [42121,0.981], + [42123,0.97], + [42125,0.97], + [42127,0.949], + [42129,0.973], + [42131,0.979], + [42133,0.928], + [44001,0.884], + [44003,0.913], + [44005,0.897], + [44007,0.689], + [44009,0.936], + [45001,0.971], + [45003,0.938], + [45005,0.978], + [45007,0.963], + [45009,0.972], + [45011,0.978], + [45013,0.885], + [45015,0.923], + [45017,0.952], + [45019,0.933], + [45021,0.959], + [45023,0.98], + [45025,0.959], + [45027,0.964], + [45029,0.962], + [45031,0.979], + [45033,0.955], + [45035,0.938], + [45037,0.939], + [45039,0.968], + [45041,0.964], + [45043,0.965], + [45045,0.887], + [45047,0.936], + [45049,0.95], + [45051,0.925], + [45053,0.874], + [45055,0.961], + [45057,0.941], + [45059,0.958], + [45061,0.983], + [45063,0.926], + [45065,0.976], + [45067,0.963], + [45069,0.959], + [45071,0.926], + [45073,0.945], + [45075,0.966], + [45077,0.955], + [45079,0.916], + [45081,0.864], + [45083,0.9], + [45085,0.944], + [45087,0.987], + [45089,0.966], + [45091,0.931], + [46003,0.938], + [46005,0.834], + [46007,0.913], + [46009,0.937], + [46011,0.934], + [46013,0.936], + [46015,0.875], + [46017,0.892], + [46019,0.989], + [46021,0.943], + [46023,0.941], + [46025,0.962], + [46027,0.949], + [46029,0.977], + [46031,0.832], + [46033,0.953], + [46035,0.963], + [46037,0.982], + [46039,0.975], + [46041,0.859], + [46043,0.964], + [46045,0.962], + [46047,0.959], + [46049,0.972], + [46051,0.959], + [46053,0.966], + [46055,0.998], + [46057,0.956], + [46059,0.993], + [46061,0.917], + [46063,0.98], + [46065,0.957], + [46067,0.938], + [46069,0.987], + [46071,0.866], + [46073,0.967], + [46075,0.992], + [46077,0.964], + [46079,0.969], + [46081,0.967], + [46083,0.954], + [46085,0.917], + [46087,0.967], + [46089,0.857], + [46091,0.93], + [46093,0.962], + [46095,0.893], + [46097,0.976], + [46099,0.911], + [46101,0.89], + [46102,null], + [46103,0.958], + [46105,0.972], + [46107,0.983], + [46109,0.97], + [46111,0.982], + [46115,0.942], + [46117,0.973], + [46119,0.983], + [46121,0.851], + [46123,0.949], + [46125,0.973], + [46127,0.974], + [46129,0.929], + [46135,0.938], + [46137,0.753], + [47001,0.952], + [47003,0.882], + [47005,0.98], + [47007,0.955], + [47009,0.965], + [47011,0.927], + [47013,0.99], + [47015,0.983], + [47017,0.982], + [47019,0.984], + [47021,0.967], + [47023,0.969], + [47025,0.979], + [47027,0.981], + [47029,0.982], + [47031,0.961], + [47033,0.915], + [47035,0.963], + [47037,0.832], + [47039,0.985], + [47041,0.92], + [47043,0.97], + [47045,0.965], + [47047,0.971], + [47049,0.984], + [47051,0.967], + [47053,0.983], + [47055,0.978], + [47057,0.965], + [47059,0.977], + [47061,0.994], + [47063,0.903], + [47065,0.935], + [47067,0.985], + [47069,0.962], + [47071,0.971], + [47073,0.981], + [47075,0.965], + [47077,0.977], + [47079,0.977], + [47081,0.979], + [47083,0.986], + [47085,0.973], + [47087,0.985], + [47089,0.958], + [47091,0.981], + [47093,0.937], + [47095,0.978], + [47097,0.972], + [47099,0.939], + [47101,0.957], + [47103,0.977], + [47105,0.911], + [47107,0.964], + [47109,0.979], + [47111,0.963], + [47113,0.951], + [47115,0.989], + [47117,0.958], + [47119,0.94], + [47121,0.983], + [47123,0.959], + [47125,0.906], + [47127,0.982], + [47129,0.978], + [47131,0.968], + [47133,0.983], + [47135,0.957], + [47137,0.996], + [47139,0.979], + [47141,0.936], + [47143,0.958], + [47145,0.978], + [47147,0.938], + [47149,0.895], + [47151,0.992], + [47153,0.981], + [47155,0.935], + [47157,0.907], + [47159,0.977], + [47161,0.978], + [47163,0.971], + [47165,0.936], + [47167,0.972], + [47169,0.98], + [47171,0.95], + [47173,0.983], + [47175,0.959], + [47177,0.94], + [47179,0.957], + [47181,0.975], + [47183,0.98], + [47185,0.983], + [47187,0.918], + [47189,0.948], + [48001,0.845], + [48003,0.571], + [48005,0.822], + [48007,0.844], + [48009,0.949], + [48011,0.901], + [48013,0.611], + [48015,0.798], + [48017,0.477], + [48019,0.891], + [48021,0.716], + [48023,0.958], + [48025,0.623], + [48027,0.809], + [48029,0.599], + [48031,0.87], + [48033,0.852], + [48035,0.858], + [48037,0.938], + [48039,0.74], + [48041,0.764], + [48043,0.63], + [48045,0.753], + [48047,0.38], + [48049,0.921], + [48051,0.852], + [48053,0.837], + [48055,0.654], + [48057,0.715], + [48059,0.949], + [48061,0.266], + [48063,0.788], + [48065,0.935], + [48067,0.964], + [48069,0.493], + [48071,0.818], + [48073,0.798], + [48075,0.846], + [48077,0.946], + [48079,0.532], + [48081,0.888], + [48083,0.943], + [48085,0.732], + [48087,0.738], + [48089,0.764], + [48091,0.818], + [48093,0.779], + [48095,0.668], + [48097,0.842], + [48099,0.857], + [48101,0.762], + [48103,0.501], + [48105,0.491], + [48107,0.682], + [48109,0.346], + [48111,0.613], + [48113,0.574], + [48115,0.62], + [48117,0.474], + [48119,0.962], + [48121,0.769], + [48123,0.803], + [48125,0.828], + [48127,0.353], + [48129,0.944], + [48131,0.436], + [48133,0.902], + [48135,0.551], + [48137,0.558], + [48139,0.815], + [48141,0.282], + [48143,0.816], + [48145,0.821], + [48147,0.907], + [48149,0.814], + [48151,0.792], + [48153,0.617], + [48155,0.83], + [48157,0.616], + [48159,0.874], + [48161,0.872], + [48163,0.4], + [48165,0.409], + [48167,0.799], + [48169,0.527], + [48171,0.803], + [48173,0.658], + [48175,0.856], + [48177,0.628], + [48179,0.794], + [48181,0.889], + [48183,0.834], + [48185,0.816], + [48187,0.773], + [48189,0.634], + [48191,0.713], + [48193,0.896], + [48195,0.594], + [48197,0.851], + [48199,0.952], + [48201,0.563], + [48203,0.908], + [48205,0.802], + [48207,0.755], + [48209,0.75], + [48211,0.719], + [48213,0.897], + [48215,0.157], + [48217,0.835], + [48219,0.694], + [48221,0.9], + [48223,0.86], + [48225,0.921], + [48227,0.708], + [48229,0.242], + [48231,0.86], + [48233,0.878], + [48235,0.83], + [48237,0.868], + [48239,0.786], + [48241,0.938], + [48243,0.594], + [48245,0.773], + [48247,0.291], + [48249,0.532], + [48251,0.842], + [48253,0.804], + [48255,0.696], + [48257,0.833], + [48259,0.872], + [48261,0.218], + [48263,0.885], + [48265,0.837], + [48267,0.823], + [48269,0.772], + [48271,0.491], + [48273,0.579], + [48275,0.775], + [48277,0.916], + [48279,0.61], + [48281,0.881], + [48283,0.356], + [48285,0.827], + [48287,0.811], + [48289,0.87], + [48291,0.811], + [48293,0.82], + [48295,0.765], + [48297,0.715], + [48299,0.927], + [48301,0.838], + [48303,0.774], + [48305,0.698], + [48307,0.802], + [48309,0.809], + [48311,0.78], + [48313,0.816], + [48315,0.968], + [48317,0.647], + [48319,0.781], + [48321,0.722], + [48323,0.069], + [48325,0.655], + [48327,0.764], + [48329,0.669], + [48331,0.856], + [48333,0.858], + [48335,0.75], + [48337,0.892], + [48339,0.79], + [48341,0.51], + [48343,0.931], + [48345,0.904], + [48347,0.834], + [48349,0.766], + [48351,0.972], + [48353,0.746], + [48355,0.622], + [48357,0.525], + [48359,0.884], + [48361,0.946], + [48363,0.86], + [48365,0.922], + [48367,0.914], + [48369,0.495], + [48371,0.446], + [48373,0.869], + [48375,0.677], + [48377,0.149], + [48379,0.932], + [48381,0.88], + [48383,0.395], + [48385,0.878], + [48387,0.942], + [48389,0.373], + [48391,0.717], + [48393,0.936], + [48395,0.839], + [48397,0.84], + [48399,0.91], + [48401,0.864], + [48403,0.968], + [48405,0.935], + [48407,0.895], + [48409,0.626], + [48411,0.769], + [48413,0.568], + [48415,0.749], + [48417,0.945], + [48419,0.827], + [48421,0.649], + [48423,0.826], + [48425,0.883], + [48427,0.036], + [48429,0.81], + [48431,0.718], + [48433,0.873], + [48435,0.499], + [48437,0.736], + [48439,0.716], + [48441,0.832], + [48443,0.474], + [48445,0.626], + [48447,0.862], + [48449,0.608], + [48451,0.741], + [48453,0.684], + [48455,0.923], + [48457,0.911], + [48459,0.933], + [48461,0.666], + [48463,0.477], + [48465,0.316], + [48467,0.92], + [48469,0.761], + [48471,0.835], + [48473,0.739], + [48475,0.626], + [48477,0.843], + [48479,0.094], + [48481,0.754], + [48483,0.797], + [48485,0.859], + [48487,0.833], + [48489,0.404], + [48491,0.79], + [48493,0.754], + [48495,0.623], + [48497,0.85], + [48499,0.929], + [48501,0.478], + [48503,0.863], + [48505,0.096], + [48507,0.244], + [49001,0.914], + [49003,0.927], + [49005,0.884], + [49007,0.943], + [49009,0.959], + [49011,0.907], + [49013,0.906], + [49015,0.929], + [49017,0.908], + [49019,0.936], + [49021,0.925], + [49023,0.955], + [49025,0.967], + [49027,0.857], + [49029,0.947], + [49031,0.959], + [49033,0.951], + [49035,0.795], + [49037,0.594], + [49039,0.901], + [49041,0.938], + [49043,0.869], + [49045,0.923], + [49047,0.891], + [49049,0.861], + [49051,0.889], + [49053,0.907], + [49055,0.901], + [49057,0.873], + [50001,0.946], + [50003,0.961], + [50005,0.971], + [50007,0.902], + [50009,0.94], + [50011,0.964], + [50013,0.954], + [50015,0.96], + [50017,0.967], + [50019,0.949], + [50021,0.954], + [50023,0.965], + [50025,0.958], + [50027,0.959], + [51001,0.889], + [51003,0.886], + [51005,0.982], + [51007,0.984], + [51009,0.964], + [51011,0.988], + [51013,0.705], + [51015,0.972], + [51017,0.966], + [51019,0.963], + [51021,0.988], + [51023,0.97], + [51025,0.966], + [51027,0.981], + [51029,0.973], + [51031,0.971], + [51033,0.948], + [51035,0.969], + [51036,0.976], + [51037,0.978], + [51041,0.891], + [51043,0.931], + [51045,0.985], + [51047,0.901], + [51049,0.977], + [51051,0.991], + [51053,0.96], + [51057,0.97], + [51059,0.617], + [51061,0.915], + [51063,0.977], + [51065,0.964], + [51067,0.966], + [51069,0.907], + [51071,0.978], + [51073,0.964], + [51075,0.954], + [51077,0.956], + [51079,0.932], + [51081,0.944], + [51083,0.963], + [51085,0.958], + [51087,0.851], + [51089,0.944], + [51091,0.995], + [51093,0.967], + [51095,0.927], + [51097,0.975], + [51099,0.959], + [51101,0.982], + [51103,0.957], + [51105,0.976], + [51107,0.686], + [51109,0.954], + [51111,0.948], + [51113,0.964], + [51115,0.988], + [51117,0.979], + [51119,0.981], + [51121,0.899], + [51125,0.955], + [51127,0.971], + [51131,0.912], + [51133,0.98], + [51135,0.965], + [51137,0.944], + [51139,0.976], + [51141,0.959], + [51143,0.963], + [51145,0.975], + [51147,0.942], + [51149,0.916], + [51153,0.676], + [51155,0.977], + [51157,0.941], + [51159,0.892], + [51161,0.935], + [51163,0.968], + [51165,0.913], + [51167,0.98], + [51169,0.986], + [51171,0.925], + [51173,0.978], + [51175,0.986], + [51177,0.898], + [51179,0.865], + [51181,0.985], + [51183,0.963], + [51185,0.983], + [51187,0.954], + [51191,0.98], + [51193,0.946], + [51195,0.979], + [51197,0.981], + [51199,0.896], + [51510,0.667], + [51520,0.987], + [51530,0.981], + [51540,0.845], + [51550,0.924], + [51570,0.9], + [51580,0.973], + [51590,0.95], + [51595,0.938], + [51600,0.663], + [51610,0.81], + [51620,0.981], + [51630,0.89], + [51640,0.893], + [51650,0.931], + [51660,0.753], + [51670,0.901], + [51678,0.948], + [51680,0.928], + [51683,0.602], + [51685,0.537], + [51690,0.938], + [51700,0.893], + [51710,0.892], + [51720,0.952], + [51730,0.926], + [51735,0.962], + [51740,0.95], + [51750,0.952], + [51760,0.908], + [51770,0.906], + [51775,0.961], + [51790,0.962], + [51800,0.952], + [51810,0.879], + [51820,0.941], + [51830,0.852], + [51840,0.825], + [53001,0.451], + [53003,0.971], + [53005,0.797], + [53007,0.751], + [53009,0.95], + [53011,0.851], + [53013,0.919], + [53015,0.927], + [53017,0.725], + [53019,0.961], + [53021,0.508], + [53023,0.955], + [53025,0.635], + [53027,0.91], + [53029,0.919], + [53031,0.956], + [53033,0.733], + [53035,0.93], + [53037,0.91], + [53039,0.889], + [53041,0.911], + [53043,0.976], + [53045,0.916], + [53047,0.823], + [53049,0.89], + [53051,0.965], + [53053,0.858], + [53055,0.929], + [53057,0.833], + [53059,0.959], + [53061,0.8], + [53063,0.928], + [53065,0.964], + [53067,0.887], + [53069,0.974], + [53071,0.815], + [53073,0.881], + [53075,0.856], + [53077,0.599], + [54001,0.985], + [54003,0.949], + [54005,0.997], + [54007,0.991], + [54009,0.986], + [54011,0.974], + [54013,0.982], + [54015,0.996], + [54017,0.987], + [54019,0.98], + [54021,0.948], + [54023,0.983], + [54025,0.979], + [54027,0.991], + [54029,0.979], + [54031,0.926], + [54033,0.981], + [54035,0.995], + [54037,0.938], + [54039,0.977], + [54041,0.982], + [54043,0.993], + [54045,0.992], + [54047,0.982], + [54049,0.977], + [54051,0.986], + [54053,0.993], + [54055,0.971], + [54057,0.982], + [54059,0.996], + [54061,0.93], + [54063,0.991], + [54065,0.979], + [54067,0.988], + [54069,0.978], + [54071,0.994], + [54073,0.992], + [54075,0.985], + [54077,0.969], + [54079,0.986], + [54081,0.97], + [54083,0.99], + [54085,0.996], + [54087,0.984], + [54089,0.986], + [54091,0.986], + [54093,0.992], + [54095,0.984], + [54097,0.988], + [54099,0.987], + [54101,0.994], + [54103,0.995], + [54105,0.992], + [54107,0.982], + [54109,0.996], + [55001,0.948], + [55003,0.969], + [55005,0.962], + [55007,0.961], + [55009,0.894], + [55011,0.974], + [55013,0.973], + [55015,0.944], + [55017,0.972], + [55019,0.831], + [55021,0.953], + [55023,0.974], + [55025,0.881], + [55027,0.954], + [55029,0.962], + [55031,0.975], + [55033,0.956], + [55035,0.935], + [55037,0.978], + [55039,0.935], + [55041,0.953], + [55043,0.956], + [55045,0.959], + [55047,0.891], + [55049,0.961], + [55051,0.961], + [55053,0.929], + [55055,0.935], + [55057,0.964], + [55059,0.887], + [55061,0.972], + [55063,0.929], + [55065,0.922], + [55067,0.967], + [55069,0.978], + [55071,0.945], + [55073,0.918], + [55075,0.972], + [55077,0.956], + [55078,0.95], + [55079,0.836], + [55081,0.922], + [55083,0.973], + [55085,0.972], + [55087,0.933], + [55089,0.942], + [55091,0.955], + [55093,0.967], + [55095,0.979], + [55097,0.942], + [55099,0.964], + [55101,0.916], + [55103,0.961], + [55105,0.919], + [55107,0.97], + [55109,0.964], + [55111,0.928], + [55113,0.96], + [55115,0.968], + [55117,0.901], + [55119,0.945], + [55121,0.912], + [55123,0.886], + [55125,0.976], + [55127,0.897], + [55129,0.98], + [55131,0.961], + [55133,0.928], + [55135,0.961], + [55137,0.922], + [55139,0.94], + [55141,0.95], + [56001,0.892], + [56003,0.941], + [56005,0.95], + [56007,0.856], + [56009,0.937], + [56011,0.981], + [56013,0.915], + [56015,0.941], + [56017,0.97], + [56019,0.961], + [56021,0.937], + [56023,0.963], + [56025,0.932], + [56027,0.968], + [56029,0.951], + [56031,0.934], + [56033,0.96], + [56035,0.943], + [56037,0.894], + [56039,0.829], + [56041,0.925], + [56043,0.933], + [56045,0.965] + ] +} diff --git a/data/regional/united-states/culture/language/us-language-household-asian-2019.json b/data/regional/united-states/culture/language/us-language-household-asian-2019.json new file mode 100644 index 0000000..e0819bd --- /dev/null +++ b/data/regional/united-states/culture/language/us-language-household-asian-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Asian/PI Languages Spoken At Home", + "description" : "Percent of households that speaks an asian or pacific islander language at home.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","language"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.language.household.asian.2019"], + [1001,0.018], + [1003,0.006], + [1005,0.006], + [1007,0], + [1009,0.001], + [1011,0.004], + [1013,0.002], + [1015,0.008], + [1017,0.01], + [1019,0.005], + [1021,0.003], + [1023,0], + [1025,0.004], + [1027,0], + [1029,0], + [1031,0.015], + [1033,0.005], + [1035,0.003], + [1037,0], + [1039,0.006], + [1041,0.014], + [1043,0.004], + [1045,0.014], + [1047,0.003], + [1049,0.004], + [1051,0.008], + [1053,0.002], + [1055,0.006], + [1057,0.006], + [1059,0.002], + [1061,0.004], + [1063,0], + [1065,0.001], + [1067,0.003], + [1069,0.008], + [1071,0.003], + [1073,0.01], + [1075,0.001], + [1077,0.005], + [1079,0.004], + [1081,0.034], + [1083,0.006], + [1085,0], + [1087,0], + [1089,0.016], + [1091,0.003], + [1093,0.006], + [1095,0.003], + [1097,0.015], + [1099,0.001], + [1101,0.022], + [1103,0.002], + [1105,0], + [1107,0], + [1109,0.028], + [1111,0], + [1113,0.016], + [1115,0.007], + [1117,0.015], + [1119,0.008], + [1121,0.004], + [1123,0.002], + [1125,0.014], + [1127,0.006], + [1129,0.005], + [1131,0], + [1133,0.002], + [2013,0.064], + [2016,0.408], + [2020,0.083], + [2050,0.02], + [2060,0.006], + [2068,0.033], + [2070,0.013], + [2090,0.039], + [2100,0.002], + [2105,0.011], + [2110,0.049], + [2122,0.013], + [2130,0.069], + [2150,0.154], + [2158,0.003], + [2164,0.007], + [2170,0.019], + [2180,0.011], + [2185,0.119], + [2188,0.02], + [2195,0.05], + [2198,0.013], + [2220,0.052], + [2230,0], + [2240,0.011], + [2261,0.016], + [2275,0.001], + [2282,0.037], + [2290,0.01], + [4001,0.006], + [4003,0.023], + [4005,0.016], + [4007,0.007], + [4009,0.002], + [4011,0.013], + [4012,0.009], + [4013,0.03], + [4015,0.01], + [4017,0.009], + [4019,0.023], + [4021,0.015], + [4023,0.003], + [4025,0.009], + [4027,0.009], + [5001,0.001], + [5003,0.001], + [5005,0.005], + [5007,0.027], + [5009,0.002], + [5011,0], + [5013,0.003], + [5015,0.008], + [5017,0.006], + [5019,0.005], + [5021,0], + [5023,0.008], + [5025,0], + [5027,0.003], + [5029,0.004], + [5031,0.006], + [5033,0.014], + [5035,0.007], + [5037,0.001], + [5039,0], + [5041,0.009], + [5043,0.001], + [5045,0.01], + [5047,0.005], + [5049,0], + [5051,0.006], + [5053,0], + [5055,0.003], + [5057,0.002], + [5059,0.003], + [5061,0.002], + [5063,0.004], + [5065,0.007], + [5067,0], + [5069,0.006], + [5071,0.004], + [5073,0.003], + [5075,0.001], + [5077,0], + [5079,0], + [5081,0.005], + [5083,0.017], + [5085,0.009], + [5087,0.005], + [5089,0.005], + [5091,0.006], + [5093,0.002], + [5095,0.003], + [5097,0.003], + [5099,0], + [5101,0.002], + [5103,0.002], + [5105,0], + [5107,0], + [5109,0.003], + [5111,0], + [5113,0.003], + [5115,0.009], + [5117,0], + [5119,0.014], + [5121,0.003], + [5123,0.005], + [5125,0.01], + [5127,0.012], + [5129,0.002], + [5131,0.033], + [5133,0.012], + [5135,0.001], + [5137,0.004], + [5139,0.006], + [5141,0.001], + [5143,0.03], + [5145,0.006], + [5147,0], + [5149,0.011], + [6001,0.202], + [6003,0.009], + [6005,0.008], + [6007,0.031], + [6009,0.014], + [6011,0.004], + [6013,0.115], + [6015,0.022], + [6017,0.031], + [6019,0.06], + [6021,0.029], + [6023,0.024], + [6025,0.013], + [6027,0.004], + [6029,0.031], + [6031,0.041], + [6033,0.009], + [6035,0.016], + [6037,0.126], + [6039,0.01], + [6041,0.041], + [6043,0.014], + [6045,0.016], + [6047,0.045], + [6049,0.011], + [6051,0.003], + [6053,0.051], + [6055,0.051], + [6057,0.009], + [6059,0.164], + [6061,0.041], + [6063,0.007], + [6065,0.05], + [6067,0.101], + [6069,0.018], + [6071,0.062], + [6073,0.09], + [6075,0.239], + [6077,0.097], + [6079,0.024], + [6081,0.215], + [6083,0.04], + [6085,0.271], + [6087,0.034], + [6089,0.018], + [6091,0.009], + [6093,0.007], + [6095,0.117], + [6097,0.031], + [6099,0.038], + [6101,0.023], + [6103,0.013], + [6105,0.013], + [6107,0.025], + [6109,0.007], + [6111,0.055], + [6113,0.09], + [6115,0.045], + [8001,0.029], + [8003,0.01], + [8005,0.043], + [8007,0.005], + [8009,0], + [8011,0], + [8013,0.031], + [8014,0.042], + [8015,0.012], + [8017,0.008], + [8019,0.004], + [8021,0.004], + [8023,0.002], + [8025,0.008], + [8027,0], + [8029,0.005], + [8031,0.025], + [8033,0.004], + [8035,0.032], + [8037,0.007], + [8039,0.008], + [8041,0.024], + [8043,0.003], + [8045,0.004], + [8047,0], + [8049,0.003], + [8051,0], + [8053,0.005], + [8055,0.006], + [8057,0], + [8059,0.019], + [8061,0], + [8063,0], + [8065,0.001], + [8067,0.004], + [8069,0.017], + [8071,0.006], + [8073,0.002], + [8075,0.011], + [8077,0.008], + [8079,0], + [8081,0.019], + [8083,0.009], + [8085,0.01], + [8087,0.005], + [8089,0.006], + [8091,0], + [8093,0.001], + [8095,0.004], + [8097,0.005], + [8099,0.009], + [8101,0.004], + [8103,0], + [8105,0], + [8107,0.002], + [8109,0.005], + [8111,0], + [8113,0.014], + [8115,0.011], + [8117,0.011], + [8119,0.001], + [8121,0.004], + [8123,0.012], + [8125,0], + [9001,0.03], + [9003,0.027], + [9005,0.012], + [9007,0.015], + [9009,0.023], + [9011,0.03], + [9013,0.028], + [9015,0.012], + [10001,0.02], + [10003,0.036], + [10005,0.01], + [11001,0.023], + [12001,0.036], + [12003,0.012], + [12005,0.02], + [12007,0.007], + [12009,0.016], + [12011,0.017], + [12013,0.002], + [12015,0.009], + [12017,0.013], + [12019,0.03], + [12021,0.01], + [12023,0.011], + [12027,0.004], + [12029,0.005], + [12031,0.033], + [12033,0.026], + [12035,0.017], + [12037,0.007], + [12039,0.007], + [12041,0.003], + [12043,0], + [12045,0.005], + [12047,0.009], + [12049,0.013], + [12051,0.005], + [12053,0.008], + [12055,0.01], + [12057,0.026], + [12059,0.003], + [12061,0.008], + [12063,0.007], + [12065,0.006], + [12067,0.007], + [12069,0.01], + [12071,0.01], + [12073,0.028], + [12075,0.006], + [12077,0], + [12079,0], + [12081,0.014], + [12083,0.007], + [12085,0.007], + [12086,0.011], + [12087,0.011], + [12089,0.007], + [12091,0.039], + [12093,0.009], + [12095,0.032], + [12097,0.016], + [12099,0.015], + [12101,0.016], + [12103,0.022], + [12105,0.013], + [12107,0.007], + [12109,0.017], + [12111,0.01], + [12113,0.019], + [12115,0.01], + [12117,0.027], + [12119,0.007], + [12121,0.003], + [12123,0.01], + [12125,0.005], + [12127,0.013], + [12129,0.012], + [12131,0.012], + [12133,0.012], + [13001,0.003], + [13003,0], + [13005,0], + [13007,0.008], + [13009,0.018], + [13011,0.004], + [13013,0.026], + [13015,0.007], + [13017,0.002], + [13019,0.007], + [13021,0.011], + [13023,0.005], + [13025,0.005], + [13027,0.001], + [13029,0.011], + [13031,0.013], + [13033,0.006], + [13035,0.005], + [13037,0.005], + [13039,0.013], + [13043,0.001], + [13045,0.01], + [13047,0.011], + [13049,0.004], + [13051,0.02], + [13053,0.016], + [13055,0.003], + [13057,0.014], + [13059,0.03], + [13061,0], + [13063,0.044], + [13065,0], + [13067,0.031], + [13069,0.001], + [13071,0.007], + [13073,0.032], + [13075,0.003], + [13077,0.013], + [13079,0], + [13081,0.004], + [13083,0.02], + [13085,0.004], + [13087,0.004], + [13089,0.035], + [13091,0], + [13093,0], + [13095,0.008], + [13097,0.012], + [13099,0], + [13101,0], + [13103,0.01], + [13105,0.004], + [13107,0.001], + [13109,0.013], + [13111,0], + [13113,0.028], + [13115,0.007], + [13117,0.081], + [13119,0.012], + [13121,0.038], + [13123,0.002], + [13125,0], + [13127,0.01], + [13129,0.002], + [13131,0.004], + [13133,0.002], + [13135,0.08], + [13137,0.024], + [13139,0.013], + [13141,0], + [13143,0.001], + [13145,0.007], + [13147,0.005], + [13149,0.002], + [13151,0.019], + [13153,0.024], + [13155,0.008], + [13157,0.014], + [13159,0.007], + [13161,0.002], + [13163,0.003], + [13165,0.019], + [13167,0.002], + [13169,0.011], + [13171,0.002], + [13173,0], + [13175,0.007], + [13177,0.025], + [13179,0.028], + [13181,0.001], + [13183,0.007], + [13185,0.015], + [13187,0.009], + [13189,0.019], + [13191,0], + [13193,0.004], + [13195,0.003], + [13197,0], + [13199,0.001], + [13201,0.002], + [13205,0.012], + [13207,0.004], + [13209,0.002], + [13211,0.001], + [13213,0.004], + [13215,0.019], + [13217,0.007], + [13219,0.036], + [13221,0.003], + [13223,0.008], + [13225,0.008], + [13227,0.004], + [13229,0], + [13231,0.005], + [13233,0], + [13235,0.006], + [13237,0.005], + [13239,0.005], + [13241,0.001], + [13243,0], + [13245,0.016], + [13247,0.011], + [13249,0], + [13251,0.004], + [13253,0.017], + [13255,0.003], + [13257,0.003], + [13259,0.006], + [13261,0.005], + [13263,0.011], + [13265,0.005], + [13267,0.003], + [13269,0], + [13271,0], + [13273,0.017], + [13275,0], + [13277,0.008], + [13279,0.005], + [13281,0.002], + [13283,0], + [13285,0.014], + [13287,0.004], + [13289,0], + [13291,0.008], + [13293,0.002], + [13295,0.007], + [13297,0.007], + [13299,0.002], + [13301,0], + [13303,0.001], + [13305,0.005], + [13307,0], + [13309,0], + [13311,0.007], + [13313,0.008], + [13315,0], + [13317,0.004], + [13319,0], + [13321,0.012], + [15001,0.173], + [15003,0.301], + [15005,0.205], + [15007,0.192], + [15009,0.188], + [16001,0.017], + [16003,0], + [16005,0.015], + [16007,0.004], + [16009,0.003], + [16011,0.006], + [16013,0.001], + [16015,0.008], + [16017,0.007], + [16019,0.008], + [16021,0.002], + [16023,0], + [16025,0], + [16027,0.009], + [16029,0.004], + [16031,0.011], + [16033,0], + [16035,0.006], + [16037,0], + [16039,0.03], + [16041,0.003], + [16043,0.005], + [16045,0.015], + [16047,0.005], + [16049,0.005], + [16051,0.012], + [16053,0.008], + [16055,0.006], + [16057,0.019], + [16059,0], + [16061,0.009], + [16063,0.007], + [16065,0.038], + [16067,0.004], + [16069,0.01], + [16071,0], + [16073,0.001], + [16075,0.009], + [16077,0.006], + [16079,0.002], + [16081,0.002], + [16083,0.011], + [16085,0], + [16087,0.008], + [17001,0.007], + [17003,0], + [17005,0.002], + [17007,0.015], + [17009,0], + [17011,0.008], + [17013,0.002], + [17015,0.005], + [17017,0.001], + [17019,0.082], + [17021,0.006], + [17023,0.007], + [17025,0.003], + [17027,0.005], + [17029,0.01], + [17031,0.045], + [17033,0.003], + [17035,0.005], + [17037,0.015], + [17039,0.001], + [17041,0.003], + [17043,0.056], + [17045,0.004], + [17047,0.005], + [17049,0.008], + [17051,0.004], + [17053,0.006], + [17055,0.003], + [17057,0.001], + [17059,0.003], + [17061,0.001], + [17063,0.003], + [17065,0], + [17067,0.003], + [17069,0], + [17071,0], + [17073,0.003], + [17075,0.002], + [17077,0.024], + [17079,0.006], + [17081,0.005], + [17083,0.003], + [17085,0.006], + [17087,0.006], + [17089,0.023], + [17091,0.006], + [17093,0.019], + [17095,0.006], + [17097,0.05], + [17099,0.008], + [17101,0.01], + [17103,0.007], + [17105,0.002], + [17107,0.004], + [17109,0.015], + [17111,0.016], + [17113,0.033], + [17115,0.007], + [17117,0.004], + [17119,0.008], + [17121,0.005], + [17123,0.004], + [17125,0.003], + [17127,0.001], + [17129,0.006], + [17131,0.01], + [17133,0.01], + [17135,0.001], + [17137,0.004], + [17139,0.002], + [17141,0.002], + [17143,0.022], + [17145,0.004], + [17147,0.006], + [17149,0.004], + [17151,0.013], + [17153,0.002], + [17155,0.001], + [17157,0.005], + [17159,0.006], + [17161,0.018], + [17163,0.012], + [17165,0.004], + [17167,0.013], + [17169,0.001], + [17171,0.003], + [17173,0.003], + [17175,0.004], + [17177,0.007], + [17179,0.01], + [17181,0.011], + [17183,0.006], + [17185,0.008], + [17187,0.02], + [17189,0.004], + [17191,0.002], + [17193,0.004], + [17195,0.006], + [17197,0.029], + [17199,0.006], + [17201,0.016], + [17203,0.007], + [18001,0.006], + [18003,0.027], + [18005,0.033], + [18007,0.001], + [18009,0.002], + [18011,0.02], + [18013,0.014], + [18015,0.005], + [18017,0.011], + [18019,0.006], + [18021,0.004], + [18023,0.003], + [18025,0.003], + [18027,0.002], + [18029,0.004], + [18031,0.009], + [18033,0.004], + [18035,0.012], + [18037,0], + [18039,0.008], + [18041,0.001], + [18043,0.009], + [18045,0.002], + [18047,0.008], + [18049,0.001], + [18051,0.005], + [18053,0.004], + [18055,0.002], + [18057,0.037], + [18059,0.008], + [18061,0.004], + [18063,0.012], + [18065,0.002], + [18067,0.007], + [18069,0.004], + [18071,0.022], + [18073,0.002], + [18075,0.006], + [18077,0.008], + [18079,0.002], + [18081,0.017], + [18083,0.009], + [18085,0.01], + [18087,0], + [18089,0.011], + [18091,0.004], + [18093,0.006], + [18095,0.005], + [18097,0.02], + [18099,0.006], + [18101,0.005], + [18103,0.004], + [18105,0.047], + [18107,0.001], + [18109,0.006], + [18111,0], + [18113,0.006], + [18115,0.002], + [18117,0.001], + [18119,0.005], + [18121,0], + [18123,0.002], + [18125,0.002], + [18127,0.014], + [18129,0.002], + [18131,0.006], + [18133,0.01], + [18135,0.002], + [18137,0.003], + [18139,0], + [18141,0.018], + [18143,0.012], + [18145,0.007], + [18147,0.004], + [18149,0.003], + [18151,0.005], + [18153,0.004], + [18155,0.005], + [18157,0.052], + [18159,0], + [18161,0.016], + [18163,0.009], + [18165,0.004], + [18167,0.011], + [18169,0.002], + [18171,0.002], + [18173,0.019], + [18175,0.004], + [18177,0.011], + [18179,0.004], + [18181,0.001], + [18183,0.004], + [19001,0.006], + [19003,0], + [19005,0.002], + [19007,0.005], + [19009,0.003], + [19011,0], + [19013,0.012], + [19015,0], + [19017,0.005], + [19019,0], + [19021,0.07], + [19023,0.004], + [19025,0.004], + [19027,0.001], + [19029,0.003], + [19031,0.003], + [19033,0.005], + [19035,0.005], + [19037,0.003], + [19039,0.002], + [19041,0.006], + [19043,0.004], + [19045,0.005], + [19047,0.015], + [19049,0.026], + [19051,0.002], + [19053,0.001], + [19055,0.003], + [19057,0.007], + [19059,0.007], + [19061,0.01], + [19063,0.006], + [19065,0.001], + [19067,0.019], + [19069,0.001], + [19071,0.002], + [19073,0.007], + [19075,0.001], + [19077,0.007], + [19079,0.024], + [19081,0.002], + [19083,0], + [19085,0.005], + [19087,0.018], + [19089,0.005], + [19091,0.005], + [19093,0.001], + [19095,0.004], + [19097,0.002], + [19099,0.005], + [19101,0.013], + [19103,0.056], + [19105,0.008], + [19107,0.002], + [19109,0.003], + [19111,0.002], + [19113,0.013], + [19115,0.036], + [19117,0], + [19119,0.002], + [19121,0.01], + [19123,0.02], + [19125,0.011], + [19127,0.028], + [19129,0.006], + [19131,0.005], + [19133,0], + [19135,0], + [19137,0], + [19139,0.008], + [19141,0.01], + [19143,0.002], + [19145,0.008], + [19147,0.002], + [19149,0.006], + [19151,0.013], + [19153,0.028], + [19155,0.008], + [19157,0.008], + [19159,0.005], + [19161,0], + [19163,0.017], + [19165,0.002], + [19167,0.006], + [19169,0.074], + [19171,0.001], + [19173,0.002], + [19175,0.008], + [19177,0.001], + [19179,0.008], + [19181,0.004], + [19183,0.009], + [19185,0.004], + [19187,0.01], + [19189,0.01], + [19191,0.004], + [19193,0.023], + [19195,0.004], + [19197,0.01], + [20001,0.009], + [20003,0.001], + [20005,0.005], + [20007,0.011], + [20009,0.003], + [20011,0.005], + [20013,0.003], + [20015,0.011], + [20017,0.011], + [20019,0], + [20021,0.002], + [20023,0], + [20025,0.011], + [20027,0.014], + [20029,0], + [20031,0.001], + [20033,0], + [20035,0.008], + [20037,0.013], + [20039,0.007], + [20041,0.004], + [20043,0], + [20045,0.043], + [20047,0.015], + [20049,0.007], + [20051,0.017], + [20053,0.007], + [20055,0.028], + [20057,0.013], + [20059,0], + [20061,0.048], + [20063,0.005], + [20065,0.003], + [20067,0.004], + [20069,0], + [20071,0], + [20073,0.007], + [20075,0], + [20077,0], + [20079,0.007], + [20081,0.002], + [20083,0.013], + [20085,0.002], + [20087,0], + [20089,0], + [20091,0.031], + [20093,0.016], + [20095,0.001], + [20097,0.003], + [20099,0.001], + [20101,0.017], + [20103,0.013], + [20105,0], + [20107,0.005], + [20109,0], + [20111,0.027], + [20113,0.002], + [20115,0.008], + [20117,0.002], + [20119,0.011], + [20121,0.006], + [20123,0.002], + [20125,0.003], + [20127,0.008], + [20129,0.006], + [20131,0.001], + [20133,0.003], + [20135,0], + [20137,0.015], + [20139,0.002], + [20141,0.002], + [20143,0], + [20145,0], + [20147,0.017], + [20149,0.007], + [20151,0], + [20153,0], + [20155,0.004], + [20157,0], + [20159,0.006], + [20161,0.038], + [20163,0.005], + [20165,0.004], + [20167,0.005], + [20169,0.017], + [20171,0], + [20173,0.032], + [20175,0.015], + [20177,0.009], + [20179,0], + [20181,0.011], + [20183,0.001], + [20185,0.011], + [20187,0.004], + [20189,0.01], + [20191,0.003], + [20193,0.011], + [20195,0], + [20197,0.005], + [20199,0], + [20201,0.001], + [20203,0.015], + [20205,0.001], + [20207,0], + [20209,0.027], + [21001,0.003], + [21003,0.003], + [21005,0.001], + [21007,0.006], + [21009,0.005], + [21011,0.006], + [21013,0], + [21015,0.017], + [21017,0.004], + [21019,0.003], + [21021,0.005], + [21023,0.003], + [21025,0.004], + [21027,0.003], + [21029,0.003], + [21031,0.002], + [21033,0], + [21035,0.015], + [21037,0.008], + [21039,0.008], + [21041,0.004], + [21043,0], + [21045,0.001], + [21047,0.011], + [21049,0.002], + [21051,0], + [21053,0], + [21055,0], + [21057,0], + [21059,0.011], + [21061,0.003], + [21063,0], + [21065,0], + [21067,0.029], + [21069,0], + [21071,0.003], + [21073,0.009], + [21075,0.004], + [21077,0.004], + [21079,0.005], + [21081,0], + [21083,0.006], + [21085,0.003], + [21087,0.001], + [21089,0.003], + [21091,0.005], + [21093,0.019], + [21095,0.004], + [21097,0.002], + [21099,0.008], + [21101,0.004], + [21103,0.001], + [21105,0.008], + [21107,0.008], + [21109,0], + [21111,0.016], + [21113,0.008], + [21115,0.008], + [21117,0.01], + [21119,0.002], + [21121,0.004], + [21123,0.002], + [21125,0.002], + [21127,0.005], + [21129,0], + [21131,0.001], + [21133,0.001], + [21135,0.002], + [21137,0], + [21139,0], + [21141,0.003], + [21143,0.001], + [21145,0.008], + [21147,0], + [21149,0.002], + [21151,0.007], + [21153,0.004], + [21155,0.002], + [21157,0.007], + [21159,0], + [21161,0.016], + [21163,0.01], + [21165,0.003], + [21167,0.003], + [21169,0.002], + [21171,0], + [21173,0.002], + [21175,0.014], + [21177,0.006], + [21179,0.006], + [21181,0], + [21183,0.002], + [21185,0.006], + [21187,0.006], + [21189,0], + [21191,0.002], + [21193,0.006], + [21195,0.004], + [21197,0.002], + [21199,0.002], + [21201,0], + [21203,0], + [21205,0.004], + [21207,0.004], + [21209,0.014], + [21211,0.006], + [21213,0.004], + [21215,0.001], + [21217,0.003], + [21219,0], + [21221,0.007], + [21223,0], + [21225,0.004], + [21227,0.026], + [21229,0.003], + [21231,0.001], + [21233,0.001], + [21235,0.003], + [21237,0.004], + [21239,0.005], + [22001,0.001], + [22003,0.01], + [22005,0.008], + [22007,0.001], + [22009,0.005], + [22011,0.013], + [22013,0], + [22015,0.016], + [22017,0.008], + [22019,0.01], + [22021,0.006], + [22023,0.005], + [22025,0], + [22027,0.002], + [22029,0], + [22031,0], + [22033,0.023], + [22035,0], + [22037,0.001], + [22039,0], + [22041,0.002], + [22043,0.003], + [22045,0.018], + [22047,0.002], + [22049,0.004], + [22051,0.027], + [22053,0.006], + [22055,0.012], + [22057,0.009], + [22059,0], + [22061,0.011], + [22063,0.004], + [22065,0.003], + [22067,0.005], + [22069,0.003], + [22071,0.018], + [22073,0.008], + [22075,0.037], + [22077,0.002], + [22079,0.01], + [22081,0], + [22083,0.005], + [22085,0.005], + [22087,0.015], + [22089,0.008], + [22091,0.002], + [22093,0.001], + [22095,0.003], + [22097,0.001], + [22099,0.006], + [22101,0.015], + [22103,0.011], + [22105,0.008], + [22107,0.003], + [22109,0.01], + [22111,0.002], + [22113,0.021], + [22115,0.031], + [22117,0.006], + [22119,0.004], + [22121,0.002], + [22123,0], + [22125,0.004], + [22127,0], + [23001,0.007], + [23003,0.004], + [23005,0.014], + [23007,0.003], + [23009,0.012], + [23011,0.009], + [23013,0.006], + [23015,0.004], + [23017,0.004], + [23019,0.009], + [23021,0.006], + [23023,0.01], + [23025,0.004], + [23027,0.004], + [23029,0.005], + [23031,0.009], + [24001,0.011], + [24003,0.029], + [24005,0.03], + [24009,0.012], + [24011,0.006], + [24013,0.01], + [24015,0.012], + [24017,0.023], + [24019,0.008], + [24021,0.029], + [24023,0.006], + [24025,0.018], + [24027,0.113], + [24029,0.003], + [24031,0.103], + [24033,0.03], + [24035,0.013], + [24037,0.021], + [24039,0.014], + [24041,0.008], + [24043,0.012], + [24045,0.014], + [24047,0.015], + [24510,0.018], + [25001,0.007], + [25003,0.008], + [25005,0.012], + [25007,0.002], + [25009,0.021], + [25011,0.012], + [25013,0.016], + [25015,0.024], + [25017,0.075], + [25019,0.01], + [25021,0.078], + [25023,0.008], + [25025,0.07], + [25027,0.03], + [26001,0.007], + [26003,0.001], + [26005,0.004], + [26007,0.007], + [26009,0.003], + [26011,0.004], + [26013,0.004], + [26015,0.005], + [26017,0.004], + [26019,0.002], + [26021,0.012], + [26023,0.01], + [26025,0.021], + [26027,0.007], + [26029,0.004], + [26031,0.004], + [26033,0.01], + [26035,0.001], + [26037,0.012], + [26039,0.001], + [26041,0.003], + [26043,0.007], + [26045,0.013], + [26047,0.004], + [26049,0.007], + [26051,0], + [26053,0.006], + [26055,0.006], + [26057,0.006], + [26059,0.004], + [26061,0.028], + [26063,0.005], + [26065,0.044], + [26067,0.005], + [26069,0.005], + [26071,0.008], + [26073,0.016], + [26075,0.007], + [26077,0.014], + [26079,0.004], + [26081,0.021], + [26083,0], + [26085,0.003], + [26087,0.004], + [26089,0.003], + [26091,0.005], + [26093,0.007], + [26095,0.002], + [26097,0.005], + [26099,0.019], + [26101,0.003], + [26103,0.007], + [26105,0.002], + [26107,0.007], + [26109,0.003], + [26111,0.015], + [26113,0.001], + [26115,0.005], + [26117,0.004], + [26119,0.002], + [26121,0.005], + [26123,0.002], + [26125,0.045], + [26127,0.002], + [26129,0.003], + [26131,0], + [26133,0.001], + [26135,0.003], + [26137,0.004], + [26139,0.02], + [26141,0.005], + [26143,0.003], + [26145,0.006], + [26147,0.004], + [26149,0.002], + [26151,0.004], + [26153,0.003], + [26155,0.004], + [26157,0.002], + [26159,0.006], + [26161,0.063], + [26163,0.014], + [26165,0.005], + [27001,0.003], + [27003,0.027], + [27005,0.004], + [27007,0.006], + [27009,0.006], + [27011,0], + [27013,0.013], + [27015,0.005], + [27017,0.009], + [27019,0.026], + [27021,0.005], + [27023,0.008], + [27025,0.008], + [27027,0.01], + [27029,0.006], + [27031,0.01], + [27033,0.04], + [27035,0.007], + [27037,0.03], + [27039,0.007], + [27041,0.003], + [27043,0.006], + [27045,0.004], + [27047,0.015], + [27049,0.008], + [27051,0], + [27053,0.043], + [27055,0.002], + [27057,0.006], + [27059,0.007], + [27061,0.002], + [27063,0.016], + [27065,0.008], + [27067,0.009], + [27069,0.003], + [27071,0.004], + [27073,0.005], + [27075,0.003], + [27077,0.002], + [27079,0.005], + [27081,0], + [27083,0.019], + [27085,0.005], + [27087,0.005], + [27089,0.003], + [27091,0.004], + [27093,0.002], + [27095,0.003], + [27097,0.004], + [27099,0.031], + [27101,0.01], + [27103,0.008], + [27105,0.059], + [27107,0.007], + [27109,0.039], + [27111,0.003], + [27113,0.006], + [27115,0.005], + [27117,0.004], + [27119,0.01], + [27121,0.001], + [27123,0.083], + [27125,0], + [27127,0.018], + [27129,0.004], + [27131,0.01], + [27133,0.004], + [27135,0.027], + [27137,0.007], + [27139,0.043], + [27141,0.013], + [27143,0.002], + [27145,0.017], + [27147,0.005], + [27149,0.018], + [27151,0.009], + [27153,0.003], + [27155,0.003], + [27157,0.003], + [27159,0.005], + [27161,0.006], + [27163,0.034], + [27165,0.009], + [27167,0.001], + [27169,0.01], + [27171,0.01], + [27173,0.003], + [28001,0.002], + [28003,0.004], + [28005,0.003], + [28007,0.003], + [28009,0], + [28011,0.006], + [28013,0.002], + [28015,0], + [28017,0.001], + [28019,0.001], + [28021,0], + [28023,0], + [28025,0.005], + [28027,0.001], + [28029,0], + [28031,0], + [28033,0.008], + [28035,0.012], + [28037,0], + [28039,0.008], + [28041,0], + [28043,0.003], + [28045,0.009], + [28047,0.026], + [28049,0.004], + [28051,0], + [28053,0.001], + [28055,0], + [28057,0], + [28059,0.018], + [28061,0.002], + [28063,0.012], + [28065,0], + [28067,0.003], + [28069,0], + [28071,0.016], + [28073,0.008], + [28075,0.003], + [28077,0.004], + [28079,0.001], + [28081,0.008], + [28083,0.004], + [28085,0.001], + [28087,0.014], + [28089,0.009], + [28091,0.007], + [28093,0], + [28095,0.001], + [28097,0.006], + [28099,0.004], + [28101,0.007], + [28103,0], + [28105,0.035], + [28107,0.004], + [28109,0.005], + [28111,0.002], + [28113,0.005], + [28115,0.001], + [28117,0.008], + [28119,0.003], + [28121,0.013], + [28123,0.001], + [28125,0], + [28127,0.002], + [28129,0.01], + [28131,0.003], + [28133,0], + [28135,0.003], + [28137,0.003], + [28139,0.001], + [28141,0], + [28143,0.01], + [28145,0], + [28147,0], + [28149,0.001], + [28151,0.001], + [28153,0.002], + [28155,0.006], + [28157,0.003], + [28159,0], + [28161,0.004], + [28163,0.002], + [29001,0.027], + [29003,0], + [29005,0.004], + [29007,0], + [29009,0.011], + [29011,0.001], + [29013,0.003], + [29015,0.002], + [29017,0.004], + [29019,0.031], + [29021,0.008], + [29023,0.004], + [29025,0.005], + [29027,0.009], + [29029,0], + [29031,0.013], + [29033,0.004], + [29035,0.003], + [29037,0.005], + [29039,0], + [29041,0], + [29043,0.006], + [29045,0.003], + [29047,0.017], + [29049,0.004], + [29051,0.009], + [29053,0.007], + [29055,0.002], + [29057,0.019], + [29059,0.003], + [29061,0.006], + [29063,0.004], + [29065,0], + [29067,0], + [29069,0.003], + [29071,0.002], + [29073,0.002], + [29075,0.005], + [29077,0.017], + [29079,0.009], + [29081,0.001], + [29083,0.004], + [29085,0.002], + [29087,0.001], + [29089,0.008], + [29091,0], + [29093,0.007], + [29095,0.015], + [29097,0.009], + [29099,0.006], + [29101,0.022], + [29103,0], + [29105,0.007], + [29107,0.004], + [29109,0.001], + [29111,0], + [29113,0.004], + [29115,0.005], + [29117,0.006], + [29119,0.017], + [29121,0.004], + [29123,0.005], + [29125,0.015], + [29127,0.009], + [29129,0], + [29131,0.001], + [29133,0.001], + [29135,0.001], + [29137,0.003], + [29139,0.003], + [29141,0.008], + [29143,0.003], + [29145,0.009], + [29147,0.008], + [29149,0.002], + [29151,0.001], + [29153,0.005], + [29155,0.001], + [29157,0.007], + [29159,0.006], + [29161,0.029], + [29163,0.005], + [29165,0.021], + [29167,0.001], + [29169,0.019], + [29171,0], + [29173,0.001], + [29175,0.008], + [29177,0.003], + [29179,0.002], + [29181,0.006], + [29183,0.016], + [29185,0.003], + [29186,0.004], + [29187,0.006], + [29189,0.028], + [29195,0.007], + [29197,0.001], + [29199,0], + [29201,0.002], + [29203,0], + [29205,0.004], + [29207,0], + [29209,0.003], + [29211,0.003], + [29213,0.012], + [29215,0.003], + [29217,0.004], + [29219,0.006], + [29221,0.002], + [29223,0.015], + [29225,0.005], + [29227,0], + [29229,0.005], + [29510,0.024], + [30001,0], + [30003,0.003], + [30005,0.007], + [30007,0], + [30009,0.011], + [30011,0], + [30013,0.008], + [30015,0.004], + [30017,0.002], + [30019,0.005], + [30021,0.003], + [30023,0.01], + [30025,0.038], + [30027,0], + [30029,0.006], + [30031,0.009], + [30033,0], + [30035,0.003], + [30037,0.006], + [30039,0], + [30041,0.005], + [30043,0], + [30045,0], + [30047,0.006], + [30049,0.005], + [30051,0], + [30053,0.003], + [30055,0], + [30057,0], + [30059,0], + [30061,0.002], + [30063,0.016], + [30065,0.019], + [30067,0.002], + [30069,0], + [30071,0.002], + [30073,0], + [30075,0], + [30077,0], + [30079,0], + [30081,0.005], + [30083,0], + [30085,0.002], + [30087,0.002], + [30089,0.009], + [30091,0.002], + [30093,0.001], + [30095,0.004], + [30097,0.008], + [30099,0.001], + [30101,0.007], + [30103,0.057], + [30105,0.005], + [30107,0.003], + [30109,0.028], + [30111,0.007], + [31001,0.008], + [31003,0.005], + [31005,0], + [31007,0.021], + [31009,0], + [31011,0], + [31013,0.016], + [31015,0.004], + [31017,0.007], + [31019,0.013], + [31021,0.006], + [31023,0.005], + [31025,0.001], + [31027,0], + [31029,0.003], + [31031,0], + [31033,0], + [31035,0], + [31037,0.012], + [31039,0.001], + [31041,0.001], + [31043,0.018], + [31045,0.002], + [31047,0.005], + [31049,0.006], + [31051,0.001], + [31053,0.004], + [31055,0.023], + [31057,0], + [31059,0.002], + [31061,0.007], + [31063,0.002], + [31065,0], + [31067,0.006], + [31069,0.003], + [31071,0.007], + [31073,0.003], + [31075,0], + [31077,0], + [31079,0.014], + [31081,0.004], + [31083,0], + [31085,0], + [31087,0], + [31089,0.001], + [31091,0], + [31093,0.004], + [31095,0.003], + [31097,0.024], + [31099,0.002], + [31101,0.007], + [31103,0], + [31105,0], + [31107,0.003], + [31109,0.031], + [31111,0.002], + [31113,0], + [31115,0], + [31117,0], + [31119,0.012], + [31121,0.007], + [31123,0.008], + [31125,0], + [31127,0.011], + [31129,0.009], + [31131,0.006], + [31133,0], + [31135,0], + [31137,0], + [31139,0.001], + [31141,0.007], + [31143,0.001], + [31145,0], + [31147,0], + [31149,0], + [31151,0.013], + [31153,0.021], + [31155,0.004], + [31157,0.004], + [31159,0], + [31161,0.001], + [31163,0.003], + [31165,0], + [31167,0.003], + [31169,0], + [31171,0.014], + [31173,0.007], + [31175,0], + [31177,0.002], + [31179,0.003], + [31181,0.003], + [31183,0.003], + [31185,0.002], + [32001,0.023], + [32003,0.082], + [32005,0.009], + [32007,0.012], + [32009,0], + [32011,0.005], + [32013,0.008], + [32015,0.001], + [32017,0.014], + [32019,0.012], + [32021,0.014], + [32023,0.016], + [32027,0.005], + [32029,0.007], + [32031,0.039], + [32033,0.005], + [32510,0.018], + [33001,0.008], + [33003,0.005], + [33005,0.012], + [33007,0.006], + [33009,0.019], + [33011,0.025], + [33013,0.011], + [33015,0.016], + [33017,0.028], + [33019,0.011], + [34001,0.042], + [34003,0.117], + [34005,0.031], + [34007,0.035], + [34009,0.007], + [34011,0.006], + [34013,0.03], + [34015,0.019], + [34017,0.082], + [34019,0.02], + [34021,0.056], + [34023,0.1], + [34025,0.031], + [34027,0.055], + [34029,0.013], + [34031,0.025], + [34033,0.006], + [34035,0.09], + [34037,0.014], + [34039,0.031], + [34041,0.017], + [35001,0.018], + [35003,0], + [35005,0.004], + [35006,0.012], + [35007,0.008], + [35009,0.012], + [35011,0], + [35013,0.011], + [35015,0.003], + [35017,0.005], + [35019,0], + [35021,0], + [35023,0.002], + [35025,0.004], + [35027,0.006], + [35028,0.056], + [35029,0.007], + [35031,0.012], + [35033,0], + [35035,0.013], + [35037,0.002], + [35039,0.007], + [35041,0.004], + [35043,0.015], + [35045,0.005], + [35047,0.004], + [35049,0.008], + [35051,0.008], + [35053,0.033], + [35055,0], + [35057,0.007], + [35059,0.001], + [35061,0.005], + [36001,0.035], + [36003,0.007], + [36005,0.015], + [36007,0.024], + [36009,0.003], + [36011,0.004], + [36013,0.004], + [36015,0.01], + [36017,0.004], + [36019,0.007], + [36021,0.005], + [36023,0.006], + [36025,0.008], + [36027,0.022], + [36029,0.016], + [36031,0.004], + [36033,0.002], + [36035,0.008], + [36037,0.003], + [36039,0.006], + [36041,0], + [36043,0.006], + [36045,0.015], + [36047,0.078], + [36049,0], + [36051,0.01], + [36053,0.004], + [36055,0.022], + [36057,0.007], + [36059,0.05], + [36061,0.084], + [36063,0.007], + [36065,0.025], + [36067,0.02], + [36069,0.008], + [36071,0.018], + [36073,0.004], + [36075,0.007], + [36077,0.007], + [36079,0.013], + [36081,0.157], + [36083,0.017], + [36085,0.06], + [36087,0.043], + [36089,0.008], + [36091,0.015], + [36093,0.015], + [36095,0.004], + [36097,0.005], + [36099,0.01], + [36101,0.013], + [36103,0.021], + [36105,0.008], + [36107,0.007], + [36109,0.087], + [36111,0.012], + [36113,0.006], + [36115,0.005], + [36117,0.007], + [36119,0.041], + [36121,0.006], + [36123,0.005], + [37001,0.011], + [37003,0.006], + [37005,0.005], + [37007,0.005], + [37009,0.007], + [37011,0], + [37013,0.002], + [37015,0.007], + [37017,0.001], + [37019,0.004], + [37021,0.008], + [37023,0.02], + [37025,0.023], + [37027,0.006], + [37029,0.009], + [37031,0.01], + [37033,0.006], + [37035,0.024], + [37037,0.013], + [37039,0.005], + [37041,0], + [37043,0.004], + [37045,0.007], + [37047,0.006], + [37049,0.018], + [37051,0.027], + [37053,0.004], + [37055,0.003], + [37057,0.013], + [37059,0.004], + [37061,0.004], + [37063,0.029], + [37065,0.003], + [37067,0.014], + [37069,0.004], + [37071,0.009], + [37073,0.002], + [37075,0.002], + [37077,0.004], + [37079,0], + [37081,0.027], + [37083,0.004], + [37085,0.013], + [37087,0.004], + [37089,0.011], + [37091,0.005], + [37093,0.014], + [37095,0], + [37097,0.019], + [37099,0.003], + [37101,0.01], + [37103,0.002], + [37105,0.012], + [37107,0.01], + [37109,0.007], + [37111,0.006], + [37113,0.002], + [37115,0.003], + [37117,0.004], + [37119,0.032], + [37121,0.002], + [37123,0.01], + [37125,0.011], + [37127,0.005], + [37129,0.01], + [37131,0.006], + [37133,0.03], + [37135,0.055], + [37137,0.009], + [37139,0.01], + [37141,0.007], + [37143,0.005], + [37145,0.004], + [37147,0.014], + [37149,0.006], + [37151,0.007], + [37153,0.009], + [37155,0.004], + [37157,0.003], + [37159,0.009], + [37161,0.001], + [37163,0.006], + [37165,0.005], + [37167,0.013], + [37169,0.003], + [37171,0.004], + [37173,0.005], + [37175,0.002], + [37177,0.005], + [37179,0.016], + [37181,0.006], + [37183,0.039], + [37185,0.002], + [37187,0.003], + [37189,0.01], + [37191,0.012], + [37193,0.005], + [37195,0.009], + [37197,0.002], + [37199,0.005], + [38001,0.019], + [38003,0.014], + [38005,0.002], + [38007,0], + [38009,0.003], + [38011,0], + [38013,0.01], + [38015,0.008], + [38017,0.014], + [38019,0], + [38021,0], + [38023,0.017], + [38025,0.015], + [38027,0], + [38029,0.012], + [38031,0], + [38033,0], + [38035,0.015], + [38037,0.007], + [38039,0], + [38041,0], + [38043,0], + [38045,0.001], + [38047,0], + [38049,0.005], + [38051,0.007], + [38053,0.004], + [38055,0], + [38057,0.014], + [38059,0.002], + [38061,0.002], + [38063,0.001], + [38065,0.004], + [38067,0.001], + [38069,0.002], + [38071,0], + [38073,0.021], + [38075,0.004], + [38077,0.004], + [38079,0.002], + [38081,0.004], + [38083,0], + [38085,0.003], + [38087,0], + [38089,0.005], + [38091,0], + [38093,0.004], + [38095,0.001], + [38097,0.002], + [38099,0.004], + [38101,0.02], + [38103,0.002], + [38105,0.009], + [39001,0.002], + [39003,0.005], + [39005,0.007], + [39007,0.004], + [39009,0.022], + [39011,0.004], + [39013,0.005], + [39015,0.004], + [39017,0.02], + [39019,0.002], + [39021,0.004], + [39023,0.004], + [39025,0.007], + [39027,0.003], + [39029,0.001], + [39031,0.004], + [39033,0.006], + [39035,0.018], + [39037,0.004], + [39039,0.001], + [39041,0.038], + [39043,0.006], + [39045,0.006], + [39047,0.003], + [39049,0.03], + [39051,0.004], + [39053,0.008], + [39055,0.004], + [39057,0.022], + [39059,0.005], + [39061,0.017], + [39063,0.018], + [39065,0.006], + [39067,0.002], + [39069,0.004], + [39071,0.004], + [39073,0.003], + [39075,0.001], + [39077,0.002], + [39079,0.002], + [39081,0.006], + [39083,0.004], + [39085,0.008], + [39087,0.001], + [39089,0.005], + [39091,0.011], + [39093,0.007], + [39095,0.013], + [39097,0.007], + [39099,0.004], + [39101,0.006], + [39103,0.007], + [39105,0], + [39107,0.006], + [39109,0.007], + [39111,0.004], + [39113,0.018], + [39115,0.006], + [39117,0.005], + [39119,0.003], + [39121,0], + [39123,0.002], + [39125,0.002], + [39127,0.001], + [39129,0.002], + [39131,0.004], + [39133,0.012], + [39135,0.003], + [39137,0.002], + [39139,0.005], + [39141,0.007], + [39143,0.003], + [39145,0.005], + [39147,0.007], + [39149,0.009], + [39151,0.006], + [39153,0.014], + [39155,0.004], + [39157,0.001], + [39159,0.037], + [39161,0.003], + [39163,0.008], + [39165,0.031], + [39167,0.003], + [39169,0.006], + [39171,0.005], + [39173,0.008], + [39175,0.006], + [40001,0.008], + [40003,0], + [40005,0.006], + [40007,0], + [40009,0.003], + [40011,0], + [40013,0.011], + [40015,0.001], + [40017,0.024], + [40019,0.012], + [40021,0.006], + [40023,0.004], + [40025,0], + [40027,0.035], + [40029,0.004], + [40031,0.028], + [40033,0.001], + [40035,0.005], + [40037,0.004], + [40039,0.017], + [40041,0.011], + [40043,0.003], + [40045,0], + [40047,0.021], + [40049,0.001], + [40051,0.005], + [40053,0.006], + [40055,0], + [40057,0.013], + [40059,0], + [40061,0.004], + [40063,0], + [40065,0.024], + [40067,0], + [40069,0.004], + [40071,0.003], + [40073,0.002], + [40075,0.009], + [40077,0.005], + [40079,0.008], + [40081,0.002], + [40083,0.003], + [40085,0.007], + [40087,0.001], + [40089,0.012], + [40091,0.001], + [40093,0], + [40095,0.006], + [40097,0.009], + [40099,0.003], + [40101,0.006], + [40103,0], + [40105,0.003], + [40107,0.003], + [40109,0.023], + [40111,0.005], + [40113,0.003], + [40115,0.007], + [40117,0.001], + [40119,0.026], + [40121,0.007], + [40123,0.005], + [40125,0.01], + [40127,0.008], + [40129,0], + [40131,0.011], + [40133,0.003], + [40135,0.005], + [40137,0.002], + [40139,0.011], + [40141,0], + [40143,0.022], + [40145,0.013], + [40147,0.017], + [40149,0], + [40151,0.016], + [40153,0.003], + [41001,0.008], + [41003,0.062], + [41005,0.032], + [41007,0.009], + [41009,0.013], + [41011,0.011], + [41013,0.008], + [41015,0.002], + [41017,0.009], + [41019,0.009], + [41021,0.014], + [41023,0.004], + [41025,0.004], + [41027,0.012], + [41029,0.012], + [41031,0.004], + [41033,0.006], + [41035,0.006], + [41037,0.012], + [41039,0.025], + [41041,0.011], + [41043,0.011], + [41045,0.005], + [41047,0.023], + [41049,0.004], + [41051,0.055], + [41053,0.015], + [41055,0], + [41057,0.006], + [41059,0.007], + [41061,0.015], + [41063,0.009], + [41065,0.007], + [41067,0.077], + [41069,0.002], + [41071,0.008], + [42001,0.004], + [42003,0.021], + [42005,0.003], + [42007,0.004], + [42009,0.002], + [42011,0.009], + [42013,0.004], + [42015,0.007], + [42017,0.023], + [42019,0.011], + [42021,0.003], + [42023,0.006], + [42025,0.004], + [42027,0.051], + [42029,0.028], + [42031,0.006], + [42033,0.003], + [42035,0.007], + [42037,0.005], + [42039,0.005], + [42041,0.024], + [42043,0.019], + [42045,0.034], + [42047,0], + [42049,0.009], + [42051,0.004], + [42053,0.003], + [42055,0.007], + [42057,0.002], + [42059,0.005], + [42061,0.004], + [42063,0.007], + [42065,0.004], + [42067,0.002], + [42069,0.011], + [42071,0.013], + [42073,0.003], + [42075,0.008], + [42077,0.022], + [42079,0.007], + [42081,0.006], + [42083,0.008], + [42085,0.005], + [42087,0], + [42089,0.014], + [42091,0.045], + [42093,0.016], + [42095,0.014], + [42097,0.004], + [42099,0.004], + [42101,0.049], + [42103,0.008], + [42105,0.003], + [42107,0.005], + [42109,0.005], + [42111,0.003], + [42113,0.001], + [42115,0.005], + [42117,0.004], + [42119,0.005], + [42121,0.002], + [42123,0.003], + [42125,0.006], + [42127,0.006], + [42129,0.005], + [42131,0.005], + [42133,0.008], + [44001,0.01], + [44003,0.019], + [44005,0.015], + [44007,0.027], + [44009,0.016], + [45001,0], + [45003,0.007], + [45005,0.01], + [45007,0.004], + [45009,0.002], + [45011,0], + [45013,0.011], + [45015,0.019], + [45017,0.002], + [45019,0.011], + [45021,0.004], + [45023,0.003], + [45025,0.002], + [45027,0.003], + [45029,0.001], + [45031,0.001], + [45033,0], + [45035,0.013], + [45037,0.003], + [45039,0], + [45041,0.008], + [45043,0.007], + [45045,0.018], + [45047,0.004], + [45049,0.003], + [45051,0.011], + [45053,0.007], + [45055,0.005], + [45057,0.012], + [45059,0.005], + [45061,0], + [45063,0.012], + [45065,0.001], + [45067,0.004], + [45069,0.001], + [45071,0.001], + [45073,0.005], + [45075,0.005], + [45077,0.013], + [45079,0.021], + [45081,0], + [45083,0.014], + [45085,0.011], + [45087,0.001], + [45089,0.004], + [45091,0.013], + [46003,0], + [46005,0.058], + [46007,0.004], + [46009,0.002], + [46011,0.024], + [46013,0.02], + [46015,0], + [46017,0], + [46019,0], + [46021,0], + [46023,0.002], + [46025,0.005], + [46027,0.021], + [46029,0.002], + [46031,0.001], + [46033,0.003], + [46035,0.002], + [46037,0.001], + [46039,0.002], + [46041,0], + [46043,0], + [46045,0], + [46047,0.012], + [46049,0], + [46051,0.003], + [46053,0.013], + [46055,0], + [46057,0.002], + [46059,0.013], + [46061,0], + [46063,0], + [46065,0], + [46067,0], + [46069,0], + [46071,0], + [46073,0], + [46075,0], + [46077,0.002], + [46079,0.012], + [46081,0.01], + [46083,0.007], + [46085,0.006], + [46087,0], + [46089,0.003], + [46091,0], + [46093,0.005], + [46095,0], + [46097,0], + [46099,0.01], + [46101,0.022], + [46102,0], + [46103,0.01], + [46105,0], + [46107,0.024], + [46109,0.002], + [46111,0.003], + [46115,0], + [46117,0], + [46119,0], + [46121,0.011], + [46123,0.01], + [46125,0.002], + [46127,0.01], + [46129,0], + [46135,0.001], + [46137,0.001], + [47001,0.01], + [47003,0.001], + [47005,0.001], + [47007,0.001], + [47009,0.007], + [47011,0.007], + [47013,0.001], + [47015,0], + [47017,0.003], + [47019,0.003], + [47021,0.003], + [47023,0.003], + [47025,0.007], + [47027,0.001], + [47029,0.004], + [47031,0.008], + [47033,0.005], + [47035,0.006], + [47037,0.021], + [47039,0], + [47041,0.003], + [47043,0.004], + [47045,0.008], + [47047,0.006], + [47049,0.002], + [47051,0.003], + [47053,0.002], + [47055,0.003], + [47057,0.002], + [47059,0.004], + [47061,0.002], + [47063,0.009], + [47065,0.013], + [47067,0], + [47069,0.012], + [47071,0.003], + [47073,0.006], + [47075,0.003], + [47077,0.003], + [47079,0.006], + [47081,0.001], + [47083,0.005], + [47085,0.005], + [47087,0.001], + [47089,0.005], + [47091,0.006], + [47093,0.014], + [47095,0.005], + [47097,0.001], + [47099,0.002], + [47101,0.006], + [47103,0.008], + [47105,0.003], + [47107,0.004], + [47109,0.002], + [47111,0.003], + [47113,0.008], + [47115,0.001], + [47117,0.004], + [47119,0.009], + [47121,0.005], + [47123,0.002], + [47125,0.022], + [47127,0.005], + [47129,0.001], + [47131,0.003], + [47133,0.008], + [47135,0.004], + [47137,0], + [47139,0.001], + [47141,0.006], + [47143,0.003], + [47145,0.005], + [47147,0.007], + [47149,0.025], + [47151,0.001], + [47153,0], + [47155,0.008], + [47157,0.017], + [47159,0.003], + [47161,0.008], + [47163,0.004], + [47165,0.008], + [47167,0.006], + [47169,0.003], + [47171,0.005], + [47173,0.006], + [47175,0.001], + [47177,0.005], + [47179,0.011], + [47181,0.01], + [47183,0.002], + [47185,0.004], + [47187,0.032], + [47189,0.009], + [48001,0.006], + [48003,0.005], + [48005,0.008], + [48007,0.017], + [48009,0.003], + [48011,0], + [48013,0], + [48015,0.001], + [48017,0.007], + [48019,0.007], + [48021,0.005], + [48023,0.016], + [48025,0.005], + [48027,0.036], + [48029,0.023], + [48031,0.017], + [48033,0], + [48035,0.007], + [48037,0.01], + [48039,0.046], + [48041,0.05], + [48043,0.004], + [48045,0], + [48047,0], + [48049,0.007], + [48051,0], + [48053,0.002], + [48055,0], + [48057,0.06], + [48059,0.002], + [48061,0.005], + [48063,0.008], + [48065,0.002], + [48067,0.004], + [48069,0.012], + [48071,0.008], + [48073,0.007], + [48075,0.011], + [48077,0.006], + [48079,0], + [48081,0], + [48083,0.007], + [48085,0.092], + [48087,0], + [48089,0.001], + [48091,0.008], + [48093,0.002], + [48095,0], + [48097,0.011], + [48099,0.024], + [48101,0], + [48103,0.02], + [48105,0], + [48107,0.009], + [48109,0.022], + [48111,0.013], + [48113,0.041], + [48115,0], + [48117,0.004], + [48119,0.005], + [48121,0.054], + [48123,0.001], + [48125,0], + [48127,0.01], + [48129,0.003], + [48131,0], + [48133,0.009], + [48135,0.008], + [48137,0], + [48139,0.006], + [48141,0.012], + [48143,0.004], + [48145,0.001], + [48147,0.002], + [48149,0.007], + [48151,0.004], + [48153,0], + [48155,0], + [48157,0.114], + [48159,0], + [48161,0], + [48163,0.005], + [48165,0.004], + [48167,0.024], + [48169,0.023], + [48171,0.003], + [48173,0], + [48175,0.004], + [48177,0.003], + [48179,0.005], + [48181,0.009], + [48183,0.01], + [48185,0.002], + [48187,0.018], + [48189,0.004], + [48191,0.007], + [48193,0.004], + [48195,0], + [48197,0], + [48199,0.005], + [48201,0.05], + [48203,0.004], + [48205,0.028], + [48207,0.008], + [48209,0.015], + [48211,0], + [48213,0.007], + [48215,0.01], + [48217,0.004], + [48219,0.002], + [48221,0.001], + [48223,0.004], + [48225,0.008], + [48227,0.006], + [48229,0.015], + [48231,0.008], + [48233,0.003], + [48235,0], + [48237,0], + [48239,0.012], + [48241,0.006], + [48243,0], + [48245,0.025], + [48247,0], + [48249,0], + [48251,0.008], + [48253,0.001], + [48255,0.017], + [48257,0.012], + [48259,0.008], + [48261,0], + [48263,0], + [48265,0.005], + [48267,0], + [48269,0], + [48271,0], + [48273,0.022], + [48275,0.001], + [48277,0.005], + [48279,0.007], + [48281,0.014], + [48283,0], + [48285,0.004], + [48287,0.006], + [48289,0.007], + [48291,0.005], + [48293,0.01], + [48295,0.003], + [48297,0.004], + [48299,0.009], + [48301,0], + [48303,0.017], + [48305,0], + [48307,0], + [48309,0.011], + [48311,0], + [48313,0.007], + [48315,0.007], + [48317,0], + [48319,0.004], + [48321,0.018], + [48323,0.002], + [48325,0.005], + [48327,0], + [48329,0.016], + [48331,0.006], + [48333,0], + [48335,0], + [48337,0], + [48339,0.02], + [48341,0.038], + [48343,0.004], + [48345,0], + [48347,0.008], + [48349,0.008], + [48351,0.006], + [48353,0.003], + [48355,0.016], + [48357,0], + [48359,0.008], + [48361,0.009], + [48363,0.004], + [48365,0], + [48367,0.004], + [48369,0.004], + [48371,0.006], + [48373,0.007], + [48375,0.038], + [48377,0.023], + [48379,0.006], + [48381,0.014], + [48383,0.003], + [48385,0], + [48387,0], + [48389,0.01], + [48391,0.008], + [48393,0], + [48395,0.002], + [48397,0.022], + [48399,0.001], + [48401,0.002], + [48403,0.002], + [48405,0], + [48407,0], + [48409,0.009], + [48411,0.002], + [48413,0.002], + [48415,0.004], + [48417,0.007], + [48419,0.003], + [48421,0], + [48423,0.011], + [48425,0.003], + [48427,0.001], + [48429,0.005], + [48431,0], + [48433,0], + [48435,0.013], + [48437,0], + [48439,0.035], + [48441,0.018], + [48443,0], + [48445,0], + [48447,0], + [48449,0.004], + [48451,0.01], + [48453,0.041], + [48455,0.002], + [48457,0.011], + [48459,0.004], + [48461,0.005], + [48463,0.009], + [48465,0.009], + [48467,0.002], + [48469,0.008], + [48471,0.014], + [48473,0.009], + [48475,0.014], + [48477,0.007], + [48479,0.007], + [48481,0.003], + [48483,0.001], + [48485,0.019], + [48487,0.012], + [48489,0], + [48491,0.044], + [48493,0.003], + [48495,0], + [48497,0.006], + [48499,0.004], + [48501,0], + [48503,0.003], + [48505,0], + [48507,0], + [49001,0], + [49003,0.01], + [49005,0.022], + [49007,0.004], + [49009,0], + [49011,0.027], + [49013,0.013], + [49015,0.009], + [49017,0.002], + [49019,0.005], + [49021,0.014], + [49023,0.003], + [49025,0.01], + [49027,0.018], + [49029,0.008], + [49031,0.008], + [49033,0], + [49035,0.043], + [49037,0.008], + [49039,0.017], + [49041,0.001], + [49043,0.014], + [49045,0.007], + [49047,0.007], + [49049,0.031], + [49051,0.006], + [49053,0.015], + [49055,0.024], + [49057,0.018], + [50001,0.014], + [50003,0.008], + [50005,0.007], + [50007,0.018], + [50009,0.005], + [50011,0.002], + [50013,0.007], + [50015,0.005], + [50017,0.002], + [50019,0.001], + [50021,0.008], + [50023,0.007], + [50025,0.007], + [50027,0.005], + [51001,0.004], + [51003,0.027], + [51005,0], + [51007,0], + [51009,0.008], + [51011,0.001], + [51013,0.065], + [51015,0.004], + [51017,0.008], + [51019,0.01], + [51021,0.005], + [51023,0.003], + [51025,0.004], + [51027,0.004], + [51029,0.001], + [51031,0.01], + [51033,0.003], + [51035,0], + [51036,0.007], + [51037,0.005], + [51041,0.023], + [51043,0.009], + [51045,0], + [51047,0.01], + [51049,0.016], + [51051,0], + [51053,0.007], + [51057,0.009], + [51059,0.13], + [51061,0.014], + [51063,0], + [51065,0.011], + [51067,0.004], + [51069,0.008], + [51071,0.001], + [51073,0.008], + [51075,0.017], + [51077,0.006], + [51079,0.016], + [51081,0], + [51083,0.005], + [51085,0.011], + [51087,0.049], + [51089,0.006], + [51091,0], + [51093,0.011], + [51095,0.021], + [51097,0], + [51099,0.012], + [51101,0.004], + [51103,0.003], + [51105,0.003], + [51107,0.105], + [51109,0.008], + [51111,0.021], + [51113,0.01], + [51115,0.007], + [51117,0.002], + [51119,0.005], + [51121,0.046], + [51125,0.005], + [51127,0.013], + [51131,0.008], + [51133,0.003], + [51135,0], + [51137,0.001], + [51139,0.003], + [51141,0.008], + [51143,0.004], + [51145,0.002], + [51147,0.003], + [51149,0.015], + [51153,0.05], + [51155,0.003], + [51157,0.007], + [51159,0.005], + [51161,0.019], + [51163,0.004], + [51165,0.005], + [51167,0.003], + [51169,0.002], + [51171,0.006], + [51173,0.004], + [51175,0.001], + [51177,0.021], + [51179,0.032], + [51181,0.004], + [51183,0.003], + [51185,0.004], + [51187,0.014], + [51191,0.004], + [51193,0.008], + [51195,0.002], + [51197,0.004], + [51199,0.042], + [51510,0.041], + [51520,0], + [51530,0.004], + [51540,0.039], + [51550,0.024], + [51570,0.037], + [51580,0.013], + [51590,0.004], + [51595,0.003], + [51600,0.136], + [51610,0.068], + [51620,0.004], + [51630,0.02], + [51640,0.006], + [51650,0.02], + [51660,0.024], + [51670,0.016], + [51678,0.013], + [51680,0.018], + [51683,0.031], + [51685,0.056], + [51690,0.005], + [51700,0.024], + [51710,0.029], + [51720,0.006], + [51730,0.007], + [51735,0.019], + [51740,0.012], + [51750,0.006], + [51760,0.012], + [51770,0.014], + [51775,0.005], + [51790,0.01], + [51800,0.012], + [51810,0.056], + [51820,0.012], + [51830,0.012], + [51840,0.018], + [53001,0.006], + [53003,0.012], + [53005,0.024], + [53007,0.005], + [53009,0.013], + [53011,0.04], + [53013,0.018], + [53015,0.015], + [53017,0.009], + [53019,0.009], + [53021,0.016], + [53023,0.018], + [53025,0.008], + [53027,0.01], + [53029,0.049], + [53031,0.012], + [53033,0.126], + [53035,0.045], + [53037,0.02], + [53039,0.008], + [53041,0.009], + [53043,0.011], + [53045,0.013], + [53047,0.005], + [53049,0.016], + [53051,0.004], + [53053,0.063], + [53055,0.008], + [53057,0.019], + [53059,0.006], + [53061,0.082], + [53063,0.019], + [53065,0.009], + [53067,0.052], + [53069,0.023], + [53071,0.009], + [53073,0.026], + [53075,0.073], + [53077,0.01], + [54001,0.012], + [54003,0.009], + [54005,0], + [54007,0], + [54009,0.005], + [54011,0.01], + [54013,0], + [54015,0.007], + [54017,0.004], + [54019,0.002], + [54021,0.017], + [54023,0.001], + [54025,0.004], + [54027,0], + [54029,0.005], + [54031,0.013], + [54033,0.004], + [54035,0.003], + [54037,0.013], + [54039,0.007], + [54041,0.003], + [54043,0.004], + [54045,0.002], + [54047,0.001], + [54049,0.005], + [54051,0.005], + [54053,0.004], + [54055,0.006], + [54057,0.009], + [54059,0.001], + [54061,0.022], + [54063,0], + [54065,0], + [54067,0.003], + [54069,0.007], + [54071,0.001], + [54073,0], + [54075,0], + [54077,0.003], + [54079,0.005], + [54081,0.01], + [54083,0.004], + [54085,0], + [54087,0], + [54089,0], + [54091,0.006], + [54093,0.001], + [54095,0.003], + [54097,0.003], + [54099,0.001], + [54101,0.001], + [54103,0.002], + [54105,0], + [54107,0.004], + [54109,0.003], + [55001,0.006], + [55003,0.007], + [55005,0.007], + [55007,0.004], + [55009,0.019], + [55011,0], + [55013,0.005], + [55015,0.018], + [55017,0.01], + [55019,0.003], + [55021,0.005], + [55023,0.004], + [55025,0.036], + [55027,0.004], + [55029,0.005], + [55031,0.007], + [55033,0.017], + [55035,0.029], + [55037,0], + [55039,0.008], + [55041,0.005], + [55043,0.006], + [55045,0.005], + [55047,0], + [55049,0.003], + [55051,0.002], + [55053,0.002], + [55055,0.003], + [55057,0.004], + [55059,0.013], + [55061,0.004], + [55063,0.022], + [55065,0], + [55067,0.001], + [55069,0.006], + [55071,0.017], + [55073,0.03], + [55075,0.004], + [55077,0.003], + [55078,0], + [55079,0.022], + [55081,0.007], + [55083,0.003], + [55085,0.003], + [55087,0.019], + [55089,0.01], + [55091,0.004], + [55093,0.006], + [55095,0.006], + [55097,0.013], + [55099,0.017], + [55101,0.008], + [55103,0.012], + [55105,0.008], + [55107,0.002], + [55109,0.006], + [55111,0.005], + [55113,0.004], + [55115,0.003], + [55117,0.031], + [55119,0], + [55121,0.003], + [55123,0.004], + [55125,0.001], + [55127,0.008], + [55129,0.003], + [55131,0.007], + [55133,0.019], + [55135,0.001], + [55137,0.002], + [55139,0.019], + [55141,0.011], + [56001,0.026], + [56003,0.006], + [56005,0.004], + [56007,0.007], + [56009,0.005], + [56011,0.005], + [56013,0.007], + [56015,0.006], + [56017,0.012], + [56019,0], + [56021,0.011], + [56023,0.006], + [56025,0.013], + [56027,0], + [56029,0.016], + [56031,0], + [56033,0.009], + [56035,0], + [56037,0.008], + [56039,0.005], + [56041,0.01], + [56043,0.003], + [56045,0.009] + ] +} diff --git a/data/regional/united-states/culture/language/us-language-household-english-limited-2019.json b/data/regional/united-states/culture/language/us-language-household-english-limited-2019.json new file mode 100644 index 0000000..768ed67 --- /dev/null +++ b/data/regional/united-states/culture/language/us-language-household-english-limited-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Households That Speak Limited English", + "description" : "Percent of households that speak limited English.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","language"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.language.household.english.limited.2019"], + [1001,0.007], + [1003,0.012], + [1005,0.016], + [1007,0.006], + [1009,0.018], + [1011,0.014], + [1013,0.003], + [1015,0.009], + [1017,0.009], + [1019,0.011], + [1021,0.015], + [1023,0], + [1025,0.001], + [1027,0.001], + [1029,0.002], + [1031,0.012], + [1033,0.006], + [1035,0], + [1037,0.002], + [1039,0.001], + [1041,0.011], + [1043,0.006], + [1045,0.015], + [1047,0.001], + [1049,0.022], + [1051,0.012], + [1053,0.003], + [1055,0.008], + [1057,0.001], + [1059,0.039], + [1061,0.003], + [1063,0.002], + [1065,0], + [1067,0.002], + [1069,0.005], + [1071,0.004], + [1073,0.014], + [1075,0], + [1077,0.009], + [1079,0.003], + [1081,0.019], + [1083,0.006], + [1085,0], + [1087,0], + [1089,0.015], + [1091,0.002], + [1093,0.006], + [1095,0.046], + [1097,0.011], + [1099,0], + [1101,0.016], + [1103,0.02], + [1105,0.003], + [1107,0.002], + [1109,0.028], + [1111,0.008], + [1113,0.018], + [1115,0.006], + [1117,0.015], + [1119,0.017], + [1121,0.006], + [1123,0.005], + [1125,0.013], + [1127,0.008], + [1129,0.005], + [1131,0.008], + [1133,0.012], + [2013,0.027], + [2016,0.067], + [2020,0.028], + [2050,0.064], + [2060,0.006], + [2068,0], + [2070,0.046], + [2090,0.01], + [2100,0.003], + [2105,0.008], + [2110,0.019], + [2122,0.004], + [2130,0.035], + [2150,0.063], + [2158,0.035], + [2164,0.007], + [2170,0.008], + [2180,0.014], + [2185,0.056], + [2188,0.031], + [2195,0.02], + [2198,0], + [2220,0.021], + [2230,0], + [2240,0.028], + [2261,0.002], + [2275,0.002], + [2282,0.023], + [2290,0.02], + [4001,0.179], + [4003,0.04], + [4005,0.029], + [4007,0.021], + [4009,0.021], + [4011,0.026], + [4012,0.035], + [4013,0.039], + [4015,0.014], + [4017,0.058], + [4019,0.042], + [4021,0.023], + [4023,0.18], + [4025,0.013], + [4027,0.1], + [5001,0.005], + [5003,0.007], + [5005,0.004], + [5007,0.03], + [5009,0], + [5011,0.031], + [5013,0.002], + [5015,0.022], + [5017,0.003], + [5019,0.015], + [5021,0], + [5023,0.001], + [5025,0.001], + [5027,0.002], + [5029,0.006], + [5031,0.014], + [5033,0.017], + [5035,0.01], + [5037,0.001], + [5039,0], + [5041,0.027], + [5043,0], + [5045,0.006], + [5047,0], + [5049,0.007], + [5051,0.016], + [5053,0.002], + [5055,0.004], + [5057,0.017], + [5059,0.012], + [5061,0.02], + [5063,0.01], + [5065,0], + [5067,0], + [5069,0.007], + [5071,0.035], + [5073,0.007], + [5075,0], + [5077,0.012], + [5079,0.002], + [5081,0.001], + [5083,0.004], + [5085,0.003], + [5087,0.017], + [5089,0.001], + [5091,0.004], + [5093,0.006], + [5095,0], + [5097,0.013], + [5099,0], + [5101,0.002], + [5103,0.002], + [5105,0], + [5107,0], + [5109,0.007], + [5111,0.006], + [5113,0.013], + [5115,0.034], + [5117,0.002], + [5119,0.017], + [5121,0.004], + [5123,0], + [5125,0.009], + [5127,0.023], + [5129,0.002], + [5131,0.031], + [5133,0.097], + [5135,0], + [5137,0.001], + [5139,0.006], + [5141,0], + [5143,0.045], + [5145,0.009], + [5147,0], + [5149,0.04], + [6001,0.086], + [6003,0.017], + [6005,0.005], + [6007,0.023], + [6009,0.006], + [6011,0.104], + [6013,0.062], + [6015,0.013], + [6017,0.014], + [6019,0.101], + [6021,0.085], + [6023,0.014], + [6025,0.239], + [6027,0.023], + [6029,0.095], + [6031,0.131], + [6033,0.023], + [6035,0.008], + [6037,0.127], + [6039,0.106], + [6041,0.041], + [6043,0.012], + [6045,0.035], + [6047,0.131], + [6049,0.041], + [6051,0.037], + [6053,0.124], + [6055,0.06], + [6057,0.008], + [6059,0.087], + [6061,0.019], + [6063,0.011], + [6065,0.081], + [6067,0.065], + [6069,0.085], + [6071,0.067], + [6073,0.063], + [6075,0.112], + [6077,0.083], + [6079,0.026], + [6081,0.083], + [6083,0.081], + [6085,0.106], + [6087,0.059], + [6089,0.011], + [6091,0], + [6093,0.009], + [6095,0.047], + [6097,0.042], + [6099,0.084], + [6101,0.086], + [6103,0.035], + [6105,0.005], + [6107,0.169], + [6109,0.01], + [6111,0.061], + [6113,0.062], + [6115,0.041], + [8001,0.052], + [8003,0.052], + [8005,0.044], + [8007,0.003], + [8009,0.026], + [8011,0.016], + [8013,0.018], + [8014,0.016], + [8015,0.007], + [8017,0], + [8019,0.015], + [8021,0.051], + [8023,0.122], + [8025,0.017], + [8027,0.03], + [8029,0.012], + [8031,0.046], + [8033,0], + [8035,0.009], + [8037,0.059], + [8039,0.003], + [8041,0.017], + [8043,0.003], + [8045,0.054], + [8047,0.003], + [8049,0.004], + [8051,0.006], + [8053,0], + [8055,0], + [8057,0.032], + [8059,0.014], + [8061,0.013], + [8063,0.05], + [8065,0.044], + [8067,0.006], + [8069,0.015], + [8071,0.023], + [8073,0.005], + [8075,0.004], + [8077,0.01], + [8079,0], + [8081,0.023], + [8083,0.012], + [8085,0.038], + [8087,0.065], + [8089,0.025], + [8091,0.002], + [8093,0.001], + [8095,0.051], + [8097,0.025], + [8099,0.059], + [8101,0.013], + [8103,0.013], + [8105,0.052], + [8107,0.008], + [8109,0.055], + [8111,0.017], + [8113,0.036], + [8115,0.013], + [8117,0.046], + [8119,0.002], + [8121,0.008], + [8123,0.03], + [8125,0.045], + [9001,0.072], + [9003,0.061], + [9005,0.015], + [9007,0.021], + [9009,0.054], + [9011,0.03], + [9013,0.015], + [9015,0.028], + [10001,0.025], + [10003,0.024], + [10005,0.025], + [11001,0.034], + [12001,0.024], + [12003,0.008], + [12005,0.015], + [12007,0.003], + [12009,0.017], + [12011,0.097], + [12013,0.012], + [12015,0.019], + [12017,0.016], + [12019,0.014], + [12021,0.066], + [12023,0.007], + [12027,0.113], + [12029,0.009], + [12031,0.031], + [12033,0.016], + [12035,0.041], + [12037,0.005], + [12039,0.021], + [12041,0.015], + [12043,0.082], + [12045,0.007], + [12047,0.024], + [12049,0.102], + [12051,0.159], + [12053,0.016], + [12055,0.033], + [12057,0.07], + [12059,0.002], + [12061,0.026], + [12063,0.009], + [12065,0.008], + [12067,0.026], + [12069,0.024], + [12071,0.046], + [12073,0.011], + [12075,0.019], + [12077,0.001], + [12079,0.015], + [12081,0.031], + [12083,0.018], + [12085,0.025], + [12086,0.251], + [12087,0.052], + [12089,0.011], + [12091,0.02], + [12093,0.052], + [12095,0.077], + [12097,0.118], + [12099,0.071], + [12101,0.021], + [12103,0.028], + [12105,0.04], + [12107,0.027], + [12109,0.008], + [12111,0.04], + [12113,0.009], + [12115,0.027], + [12117,0.033], + [12119,0.004], + [12121,0.014], + [12123,0.015], + [12125,0], + [12127,0.018], + [12129,0.001], + [12131,0.012], + [12133,0.009], + [13001,0.012], + [13003,0.079], + [13005,0.032], + [13007,0], + [13009,0.009], + [13011,0.007], + [13013,0.024], + [13015,0.019], + [13017,0.009], + [13019,0.01], + [13021,0.009], + [13023,0.006], + [13025,0.006], + [13027,0.004], + [13029,0.015], + [13031,0.007], + [13033,0.014], + [13035,0.002], + [13037,0.005], + [13039,0.002], + [13043,0.035], + [13045,0.014], + [13047,0.005], + [13049,0.005], + [13051,0.016], + [13053,0.019], + [13055,0.015], + [13057,0.022], + [13059,0.037], + [13061,0], + [13063,0.049], + [13065,0.008], + [13067,0.034], + [13069,0.029], + [13071,0.064], + [13073,0.022], + [13075,0.01], + [13077,0.018], + [13079,0.002], + [13081,0.006], + [13083,0.004], + [13085,0.007], + [13087,0.004], + [13089,0.048], + [13091,0.007], + [13093,0.009], + [13095,0.008], + [13097,0.018], + [13099,0], + [13101,0.044], + [13103,0.012], + [13105,0.016], + [13107,0.009], + [13109,0.053], + [13111,0.005], + [13113,0.014], + [13115,0.029], + [13117,0.03], + [13119,0.012], + [13121,0.028], + [13123,0.033], + [13125,0], + [13127,0.016], + [13129,0.047], + [13131,0.017], + [13133,0.006], + [13135,0.089], + [13137,0.031], + [13139,0.058], + [13141,0], + [13143,0], + [13145,0.001], + [13147,0.009], + [13149,0.009], + [13151,0.011], + [13153,0.017], + [13155,0.004], + [13157,0.009], + [13159,0.019], + [13161,0.019], + [13163,0.009], + [13165,0.038], + [13167,0], + [13169,0.002], + [13171,0], + [13173,0], + [13175,0.004], + [13177,0.006], + [13179,0.025], + [13181,0.002], + [13183,0.019], + [13185,0.007], + [13187,0.009], + [13189,0.013], + [13191,0.002], + [13193,0.01], + [13195,0.015], + [13197,0], + [13199,0], + [13201,0], + [13205,0.01], + [13207,0.012], + [13209,0.04], + [13211,0.003], + [13213,0.022], + [13215,0.016], + [13217,0.012], + [13219,0.02], + [13221,0.001], + [13223,0.003], + [13225,0.007], + [13227,0.007], + [13229,0.005], + [13231,0], + [13233,0.027], + [13235,0.005], + [13237,0.001], + [13239,0.024], + [13241,0.027], + [13243,0], + [13245,0.014], + [13247,0.035], + [13249,0], + [13251,0.007], + [13253,0.005], + [13255,0.01], + [13257,0.007], + [13259,0], + [13261,0.025], + [13263,0.004], + [13265,0.015], + [13267,0.021], + [13269,0.007], + [13271,0.003], + [13273,0], + [13275,0.013], + [13277,0.025], + [13279,0.014], + [13281,0], + [13283,0.003], + [13285,0.019], + [13287,0.004], + [13289,0.017], + [13291,0.011], + [13293,0.003], + [13295,0.004], + [13297,0.007], + [13299,0.007], + [13301,0.004], + [13303,0.004], + [13305,0.01], + [13307,0.037], + [13309,0], + [13311,0.007], + [13313,0.066], + [13315,0.021], + [13317,0.003], + [13319,0.005], + [13321,0.008], + [15001,0.034], + [15003,0.072], + [15005,0], + [15007,0.036], + [15009,0.044], + [16001,0.016], + [16003,0.003], + [16005,0.014], + [16007,0.007], + [16009,0.006], + [16011,0.019], + [16013,0.057], + [16015,0.002], + [16017,0.003], + [16019,0.015], + [16021,0], + [16023,0.001], + [16025,0.02], + [16027,0.028], + [16029,0.017], + [16031,0.056], + [16033,0.269], + [16035,0.005], + [16037,0.005], + [16039,0.032], + [16041,0.012], + [16043,0.034], + [16045,0.035], + [16047,0.056], + [16049,0.008], + [16051,0.02], + [16053,0.1], + [16055,0.007], + [16057,0.005], + [16059,0.005], + [16061,0.005], + [16063,0.075], + [16065,0.009], + [16067,0.079], + [16069,0.005], + [16071,0.022], + [16073,0.075], + [16075,0.017], + [16077,0.087], + [16079,0.014], + [16081,0.033], + [16083,0.026], + [16085,0.005], + [16087,0.041], + [17001,0.002], + [17003,0], + [17005,0.002], + [17007,0.024], + [17009,0.024], + [17011,0.011], + [17013,0], + [17015,0.007], + [17017,0.072], + [17019,0.041], + [17021,0.003], + [17023,0.001], + [17025,0.008], + [17027,0.003], + [17029,0.007], + [17031,0.077], + [17033,0.004], + [17035,0.001], + [17037,0.022], + [17039,0.001], + [17041,0.017], + [17043,0.043], + [17045,0.002], + [17047,0.014], + [17049,0.007], + [17051,0.003], + [17053,0.002], + [17055,0.001], + [17057,0.002], + [17059,0.003], + [17061,0.002], + [17063,0.003], + [17065,0], + [17067,0.005], + [17069,0], + [17071,0], + [17073,0.009], + [17075,0.011], + [17077,0.018], + [17079,0], + [17081,0.003], + [17083,0.004], + [17085,0.009], + [17087,0], + [17089,0.05], + [17091,0.013], + [17093,0.017], + [17095,0.009], + [17097,0.048], + [17099,0.012], + [17101,0.005], + [17103,0.007], + [17105,0.004], + [17107,0.004], + [17109,0.003], + [17111,0.021], + [17113,0.019], + [17115,0.003], + [17117,0.003], + [17119,0.004], + [17121,0.003], + [17123,0.003], + [17125,0], + [17127,0], + [17129,0], + [17131,0.001], + [17133,0.006], + [17135,0.003], + [17137,0.005], + [17139,0.007], + [17141,0.015], + [17143,0.012], + [17145,0.007], + [17147,0.002], + [17149,0], + [17151,0], + [17153,0.006], + [17155,0.008], + [17157,0.003], + [17159,0.005], + [17161,0.024], + [17163,0.009], + [17165,0.004], + [17167,0.005], + [17169,0.043], + [17171,0.002], + [17173,0], + [17175,0], + [17177,0.004], + [17179,0.004], + [17181,0.001], + [17183,0.009], + [17185,0.011], + [17187,0.039], + [17189,0.002], + [17191,0.013], + [17193,0.007], + [17195,0.013], + [17197,0.036], + [17199,0.004], + [17201,0.022], + [17203,0.003], + [18001,0.017], + [18003,0.023], + [18005,0.018], + [18007,0.004], + [18009,0], + [18011,0.011], + [18013,0], + [18015,0.002], + [18017,0.045], + [18019,0.012], + [18021,0.001], + [18023,0.044], + [18025,0.002], + [18027,0.026], + [18029,0.001], + [18031,0.002], + [18033,0.008], + [18035,0.005], + [18037,0.018], + [18039,0.033], + [18041,0.001], + [18043,0.001], + [18045,0.004], + [18047,0.005], + [18049,0.002], + [18051,0.002], + [18053,0.004], + [18055,0.003], + [18057,0.015], + [18059,0.005], + [18061,0], + [18063,0.01], + [18065,0], + [18067,0.006], + [18069,0.007], + [18071,0.024], + [18073,0.011], + [18075,0.003], + [18077,0.005], + [18079,0.003], + [18081,0.008], + [18083,0.006], + [18085,0.02], + [18087,0.058], + [18089,0.023], + [18091,0.007], + [18093,0.004], + [18095,0.004], + [18097,0.039], + [18099,0.039], + [18101,0], + [18103,0.004], + [18105,0.024], + [18107,0.015], + [18109,0], + [18111,0.016], + [18113,0.026], + [18115,0], + [18117,0.004], + [18119,0.006], + [18121,0.035], + [18123,0.002], + [18125,0.002], + [18127,0.007], + [18129,0.006], + [18131,0.001], + [18133,0.019], + [18135,0.007], + [18137,0.003], + [18139,0.005], + [18141,0.017], + [18143,0], + [18145,0.006], + [18147,0.004], + [18149,0.007], + [18151,0.001], + [18153,0.005], + [18155,0], + [18157,0.032], + [18159,0.007], + [18161,0.01], + [18163,0.007], + [18165,0.009], + [18167,0.007], + [18169,0.004], + [18171,0.003], + [18173,0.006], + [18175,0.001], + [18177,0.012], + [18179,0.006], + [18181,0.011], + [18183,0], + [19001,0.002], + [19003,0.001], + [19005,0.033], + [19007,0.003], + [19009,0.003], + [19011,0.003], + [19013,0.02], + [19015,0.003], + [19017,0.006], + [19019,0.006], + [19021,0.128], + [19023,0.003], + [19025,0.001], + [19027,0.003], + [19029,0.011], + [19031,0.001], + [19033,0.01], + [19035,0], + [19037,0.008], + [19039,0.012], + [19041,0.017], + [19043,0.008], + [19045,0.001], + [19047,0.084], + [19049,0.021], + [19051,0.016], + [19053,0.011], + [19055,0.002], + [19057,0.008], + [19059,0.006], + [19061,0.008], + [19063,0.017], + [19065,0.001], + [19067,0.019], + [19069,0.03], + [19071,0.006], + [19073,0.003], + [19075,0.002], + [19077,0.007], + [19079,0.021], + [19081,0.013], + [19083,0.012], + [19085,0.001], + [19087,0.01], + [19089,0.01], + [19091,0.017], + [19093,0.001], + [19095,0.007], + [19097,0.002], + [19099,0.01], + [19101,0.015], + [19103,0.047], + [19105,0.009], + [19107,0.004], + [19109,0.005], + [19111,0.003], + [19113,0.016], + [19115,0.064], + [19117,0.011], + [19119,0.007], + [19121,0.01], + [19123,0.005], + [19125,0.004], + [19127,0.065], + [19129,0.001], + [19131,0], + [19133,0.001], + [19135,0], + [19137,0.013], + [19139,0.018], + [19141,0.022], + [19143,0.025], + [19145,0.011], + [19147,0.021], + [19149,0.022], + [19151,0.005], + [19153,0.03], + [19155,0.014], + [19157,0.004], + [19159,0.003], + [19161,0.006], + [19163,0.015], + [19165,0.002], + [19167,0.03], + [19169,0.033], + [19171,0.02], + [19173,0.021], + [19175,0.01], + [19177,0.006], + [19179,0.028], + [19181,0.003], + [19183,0.013], + [19185,0.009], + [19187,0.003], + [19189,0.014], + [19191,0.002], + [19193,0.039], + [19195,0], + [19197,0.044], + [20001,0.001], + [20003,0.005], + [20005,0.002], + [20007,0.016], + [20009,0.012], + [20011,0], + [20013,0.002], + [20015,0.005], + [20017,0.006], + [20019,0.001], + [20021,0.001], + [20023,0.005], + [20025,0], + [20027,0.003], + [20029,0.002], + [20031,0.001], + [20033,0], + [20035,0.018], + [20037,0.009], + [20039,0.019], + [20041,0.003], + [20043,0], + [20045,0.016], + [20047,0.049], + [20049,0], + [20051,0.017], + [20053,0], + [20055,0.141], + [20057,0.135], + [20059,0.007], + [20061,0.025], + [20063,0.001], + [20065,0.003], + [20067,0.087], + [20069,0.038], + [20071,0.046], + [20073,0.002], + [20075,0.117], + [20077,0.014], + [20079,0.015], + [20081,0.072], + [20083,0.031], + [20085,0.011], + [20087,0], + [20089,0], + [20091,0.026], + [20093,0.039], + [20095,0], + [20097,0], + [20099,0.002], + [20101,0.007], + [20103,0.011], + [20105,0.005], + [20107,0], + [20109,0.02], + [20111,0.041], + [20113,0.001], + [20115,0.008], + [20117,0.007], + [20119,0.05], + [20121,0.002], + [20123,0], + [20125,0.013], + [20127,0.011], + [20129,0.071], + [20131,0.001], + [20133,0.004], + [20135,0.046], + [20137,0.003], + [20139,0.001], + [20141,0], + [20143,0.004], + [20145,0], + [20147,0.008], + [20149,0.012], + [20151,0.012], + [20153,0.013], + [20155,0.007], + [20157,0.002], + [20159,0.009], + [20161,0.022], + [20163,0.003], + [20165,0.007], + [20167,0.019], + [20169,0.014], + [20171,0.044], + [20173,0.028], + [20175,0.2], + [20177,0.012], + [20179,0.004], + [20181,0.004], + [20183,0], + [20185,0.027], + [20187,0.05], + [20189,0.112], + [20191,0.002], + [20193,0.014], + [20195,0], + [20197,0.002], + [20199,0.024], + [20201,0.016], + [20203,0.039], + [20205,0.001], + [20207,0], + [20209,0.087], + [21001,0], + [21003,0.004], + [21005,0], + [21007,0], + [21009,0.003], + [21011,0.004], + [21013,0.001], + [21015,0.021], + [21017,0.024], + [21019,0.001], + [21021,0.007], + [21023,0], + [21025,0.004], + [21027,0.008], + [21029,0.001], + [21031,0.016], + [21033,0], + [21035,0.021], + [21037,0.004], + [21039,0], + [21041,0.038], + [21043,0.001], + [21045,0.007], + [21047,0.013], + [21049,0.009], + [21051,0.005], + [21053,0.009], + [21055,0.02], + [21057,0.003], + [21059,0.012], + [21061,0], + [21063,0], + [21065,0], + [21067,0.03], + [21069,0.003], + [21071,0.003], + [21073,0.015], + [21075,0.004], + [21077,0.014], + [21079,0], + [21081,0], + [21083,0.018], + [21085,0.001], + [21087,0.005], + [21089,0], + [21091,0], + [21093,0.01], + [21095,0.002], + [21097,0], + [21099,0.009], + [21101,0.005], + [21103,0.001], + [21105,0], + [21107,0], + [21109,0.001], + [21111,0.026], + [21113,0.018], + [21115,0.005], + [21117,0.012], + [21119,0], + [21121,0], + [21123,0.005], + [21125,0], + [21127,0], + [21129,0], + [21131,0], + [21133,0.003], + [21135,0.002], + [21137,0.007], + [21139,0], + [21141,0.004], + [21143,0], + [21145,0.007], + [21147,0], + [21149,0.002], + [21151,0.007], + [21153,0], + [21155,0.002], + [21157,0.001], + [21159,0], + [21161,0.008], + [21163,0.003], + [21165,0], + [21167,0.002], + [21169,0.005], + [21171,0.009], + [21173,0.002], + [21175,0], + [21177,0], + [21179,0.004], + [21181,0.01], + [21183,0.013], + [21185,0.006], + [21187,0], + [21189,0], + [21191,0.006], + [21193,0], + [21195,0.002], + [21197,0.004], + [21199,0.002], + [21201,0.005], + [21203,0], + [21205,0.005], + [21207,0.015], + [21209,0.015], + [21211,0.02], + [21213,0.01], + [21215,0.004], + [21217,0.003], + [21219,0.017], + [21221,0.007], + [21223,0.01], + [21225,0.006], + [21227,0.031], + [21229,0.014], + [21231,0], + [21233,0.01], + [21235,0.004], + [21237,0], + [21239,0.016], + [22001,0.017], + [22003,0.008], + [22005,0.019], + [22007,0.025], + [22009,0.012], + [22011,0.004], + [22013,0.005], + [22015,0.014], + [22017,0.007], + [22019,0.016], + [22021,0.001], + [22023,0.041], + [22025,0], + [22027,0.003], + [22029,0], + [22031,0.012], + [22033,0.023], + [22035,0], + [22037,0.002], + [22039,0.025], + [22041,0], + [22043,0], + [22045,0.021], + [22047,0.005], + [22049,0.019], + [22051,0.055], + [22053,0.005], + [22055,0.018], + [22057,0.019], + [22059,0.002], + [22061,0.019], + [22063,0.01], + [22065,0.004], + [22067,0.006], + [22069,0.002], + [22071,0.02], + [22073,0.006], + [22075,0.018], + [22077,0.018], + [22079,0.013], + [22081,0], + [22083,0.007], + [22085,0.006], + [22087,0.016], + [22089,0.006], + [22091,0.008], + [22093,0.004], + [22095,0.012], + [22097,0.031], + [22099,0.027], + [22101,0.028], + [22103,0.016], + [22105,0.011], + [22107,0.004], + [22109,0.022], + [22111,0.006], + [22113,0.027], + [22115,0.013], + [22117,0.014], + [22119,0.006], + [22121,0.015], + [22123,0.011], + [22125,0.008], + [22127,0.007], + [23001,0.017], + [23003,0.025], + [23005,0.016], + [23007,0.002], + [23009,0.005], + [23011,0.005], + [23013,0.003], + [23015,0.003], + [23017,0.001], + [23019,0.003], + [23021,0.002], + [23023,0.003], + [23025,0.006], + [23027,0.001], + [23029,0.004], + [23031,0.011], + [24001,0.003], + [24003,0.016], + [24005,0.026], + [24009,0.001], + [24011,0.018], + [24013,0.005], + [24015,0.013], + [24017,0.012], + [24019,0.016], + [24021,0.022], + [24023,0.003], + [24025,0.012], + [24027,0.031], + [24029,0.01], + [24031,0.069], + [24033,0.06], + [24035,0.007], + [24037,0.007], + [24039,0.012], + [24041,0.021], + [24043,0.013], + [24045,0.034], + [24047,0.006], + [24510,0.02], + [25001,0.015], + [25003,0.015], + [25005,0.053], + [25007,0.018], + [25009,0.066], + [25011,0.011], + [25013,0.068], + [25015,0.017], + [25017,0.056], + [25019,0.021], + [25021,0.048], + [25023,0.027], + [25025,0.128], + [25027,0.047], + [26001,0.004], + [26003,0], + [26005,0.009], + [26007,0.003], + [26009,0.002], + [26011,0], + [26013,0.003], + [26015,0.003], + [26017,0.007], + [26019,0.001], + [26021,0.007], + [26023,0.015], + [26025,0.011], + [26027,0.005], + [26029,0.003], + [26031,0.001], + [26033,0.003], + [26035,0.004], + [26037,0.008], + [26039,0.001], + [26041,0.001], + [26043,0.004], + [26045,0.011], + [26047,0.001], + [26049,0.005], + [26051,0.003], + [26053,0.001], + [26055,0.004], + [26057,0.004], + [26059,0.003], + [26061,0.023], + [26063,0.003], + [26065,0.027], + [26067,0.004], + [26069,0.008], + [26071,0.001], + [26073,0.015], + [26075,0.005], + [26077,0.009], + [26079,0.001], + [26081,0.027], + [26083,0.002], + [26085,0.002], + [26087,0.007], + [26089,0.005], + [26091,0.01], + [26093,0.003], + [26095,0], + [26097,0.016], + [26099,0.032], + [26101,0.004], + [26103,0.005], + [26105,0.005], + [26107,0.002], + [26109,0.001], + [26111,0.004], + [26113,0.003], + [26115,0.003], + [26117,0.005], + [26119,0], + [26121,0.003], + [26123,0.002], + [26125,0.026], + [26127,0.011], + [26129,0.002], + [26131,0.002], + [26133,0.007], + [26135,0.006], + [26137,0], + [26139,0.015], + [26141,0.007], + [26143,0.002], + [26145,0.009], + [26147,0.004], + [26149,0.013], + [26151,0.007], + [26153,0], + [26155,0.002], + [26157,0.001], + [26159,0.016], + [26161,0.027], + [26163,0.025], + [26165,0.003], + [27001,0.001], + [27003,0.021], + [27005,0.004], + [27007,0.002], + [27009,0.011], + [27011,0.008], + [27013,0.011], + [27015,0.007], + [27017,0.003], + [27019,0.009], + [27021,0.001], + [27023,0.014], + [27025,0.004], + [27027,0.012], + [27029,0.005], + [27031,0.004], + [27033,0.022], + [27035,0.001], + [27037,0.027], + [27039,0.009], + [27041,0.003], + [27043,0.011], + [27045,0.011], + [27047,0.019], + [27049,0.009], + [27051,0.006], + [27053,0.037], + [27055,0.002], + [27057,0.008], + [27059,0.002], + [27061,0.004], + [27063,0.007], + [27065,0.002], + [27067,0.039], + [27069,0.002], + [27071,0.007], + [27073,0.005], + [27075,0.002], + [27077,0.002], + [27079,0.008], + [27081,0.002], + [27083,0.027], + [27085,0.006], + [27087,0.008], + [27089,0.005], + [27091,0.005], + [27093,0.008], + [27095,0.004], + [27097,0.003], + [27099,0.074], + [27101,0.02], + [27103,0.022], + [27105,0.11], + [27107,0.014], + [27109,0.028], + [27111,0.009], + [27113,0.004], + [27115,0.003], + [27117,0.041], + [27119,0.015], + [27121,0.006], + [27123,0.055], + [27125,0.004], + [27127,0.006], + [27129,0.004], + [27131,0.033], + [27133,0.004], + [27135,0.007], + [27137,0.004], + [27139,0.024], + [27141,0.006], + [27143,0.026], + [27145,0.025], + [27147,0.006], + [27149,0.013], + [27151,0.018], + [27153,0.018], + [27155,0.01], + [27157,0.009], + [27159,0.011], + [27161,0.014], + [27163,0.011], + [27165,0.045], + [27167,0.002], + [27169,0.006], + [27171,0.004], + [27173,0.012], + [28001,0.015], + [28003,0.002], + [28005,0.004], + [28007,0], + [28009,0.002], + [28011,0.003], + [28013,0.015], + [28015,0], + [28017,0.004], + [28019,0], + [28021,0.002], + [28023,0], + [28025,0], + [28027,0.002], + [28029,0.008], + [28031,0], + [28033,0.009], + [28035,0.008], + [28037,0], + [28039,0.009], + [28041,0.013], + [28043,0.003], + [28045,0.009], + [28047,0.016], + [28049,0.005], + [28051,0], + [28053,0], + [28055,0], + [28057,0.001], + [28059,0.012], + [28061,0], + [28063,0.008], + [28065,0.003], + [28067,0.01], + [28069,0.003], + [28071,0.013], + [28073,0.003], + [28075,0.007], + [28077,0], + [28079,0.004], + [28081,0.009], + [28083,0.006], + [28085,0.003], + [28087,0.008], + [28089,0.009], + [28091,0.009], + [28093,0.008], + [28095,0.002], + [28097,0.013], + [28099,0.011], + [28101,0.004], + [28103,0.006], + [28105,0.019], + [28107,0.001], + [28109,0.007], + [28111,0], + [28113,0.01], + [28115,0.024], + [28117,0.001], + [28119,0], + [28121,0.003], + [28123,0.039], + [28125,0.003], + [28127,0], + [28129,0], + [28131,0], + [28133,0], + [28135,0.005], + [28137,0.008], + [28139,0.001], + [28141,0.005], + [28143,0.006], + [28145,0.009], + [28147,0.006], + [28149,0.012], + [28151,0.009], + [28153,0.004], + [28155,0.005], + [28157,0], + [28159,0.007], + [28161,0.011], + [28163,0.007], + [29001,0.022], + [29003,0], + [29005,0.002], + [29007,0.006], + [29009,0.016], + [29011,0.004], + [29013,0.004], + [29015,0.005], + [29017,0], + [29019,0.019], + [29021,0.021], + [29023,0.005], + [29025,0.009], + [29027,0.005], + [29029,0.002], + [29031,0.005], + [29033,0.003], + [29035,0], + [29037,0.005], + [29039,0], + [29041,0], + [29043,0.007], + [29045,0.005], + [29047,0.012], + [29049,0], + [29051,0.007], + [29053,0.001], + [29055,0.003], + [29057,0.003], + [29059,0.013], + [29061,0.004], + [29063,0], + [29065,0], + [29067,0.004], + [29069,0.014], + [29071,0.002], + [29073,0.001], + [29075,0.004], + [29077,0.009], + [29079,0.016], + [29081,0.009], + [29083,0.005], + [29085,0], + [29087,0], + [29089,0.002], + [29091,0.003], + [29093,0], + [29095,0.019], + [29097,0.014], + [29099,0.003], + [29101,0.004], + [29103,0], + [29105,0.002], + [29107,0.002], + [29109,0.015], + [29111,0], + [29113,0.005], + [29115,0.001], + [29117,0.003], + [29119,0.036], + [29121,0.005], + [29123,0], + [29125,0.012], + [29127,0], + [29129,0.006], + [29131,0.001], + [29133,0.009], + [29135,0.015], + [29137,0.006], + [29139,0.001], + [29141,0.009], + [29143,0], + [29145,0.012], + [29147,0.011], + [29149,0], + [29151,0.006], + [29153,0], + [29155,0.002], + [29157,0.006], + [29159,0.016], + [29161,0.018], + [29163,0.001], + [29165,0.016], + [29167,0.003], + [29169,0.009], + [29171,0.006], + [29173,0], + [29175,0.001], + [29177,0.002], + [29179,0], + [29181,0], + [29183,0.007], + [29185,0.002], + [29186,0.006], + [29187,0.003], + [29189,0.017], + [29195,0.031], + [29197,0.003], + [29199,0.012], + [29201,0.002], + [29203,0], + [29205,0], + [29207,0], + [29209,0.004], + [29211,0.052], + [29213,0.01], + [29215,0.002], + [29217,0.007], + [29219,0.004], + [29221,0], + [29223,0.002], + [29225,0.002], + [29227,0], + [29229,0.001], + [29510,0.023], + [30001,0.01], + [30003,0.005], + [30005,0.001], + [30007,0], + [30009,0.01], + [30011,0], + [30013,0.004], + [30015,0], + [30017,0.003], + [30019,0.008], + [30021,0.005], + [30023,0], + [30025,0.038], + [30027,0.001], + [30029,0.003], + [30031,0.004], + [30033,0], + [30035,0.003], + [30037,0.037], + [30039,0], + [30041,0.003], + [30043,0.003], + [30045,0], + [30047,0.004], + [30049,0.001], + [30051,0.008], + [30053,0.001], + [30055,0], + [30057,0.005], + [30059,0], + [30061,0], + [30063,0.008], + [30065,0.008], + [30067,0.006], + [30069,0.005], + [30071,0], + [30073,0.001], + [30075,0], + [30077,0.002], + [30079,0], + [30081,0.003], + [30083,0.009], + [30085,0.003], + [30087,0.002], + [30089,0], + [30091,0.002], + [30093,0.008], + [30095,0.003], + [30097,0], + [30099,0.002], + [30101,0.012], + [30103,0], + [30105,0], + [30107,0.006], + [30109,0.006], + [30111,0.004], + [31001,0.021], + [31003,0.006], + [31005,0], + [31007,0.014], + [31009,0.009], + [31011,0.001], + [31013,0], + [31015,0.006], + [31017,0.007], + [31019,0.022], + [31021,0], + [31023,0.009], + [31025,0.001], + [31027,0.008], + [31029,0.004], + [31031,0.008], + [31033,0], + [31035,0.017], + [31037,0.191], + [31039,0.025], + [31041,0.012], + [31043,0.106], + [31045,0.002], + [31047,0.069], + [31049,0.018], + [31051,0.019], + [31053,0.042], + [31055,0.035], + [31057,0.005], + [31059,0.002], + [31061,0.002], + [31063,0.002], + [31065,0.008], + [31067,0.006], + [31069,0.003], + [31071,0], + [31073,0], + [31075,0], + [31077,0.004], + [31079,0.064], + [31081,0], + [31083,0.001], + [31085,0.012], + [31087,0], + [31089,0.011], + [31091,0], + [31093,0.003], + [31095,0.015], + [31097,0.053], + [31099,0.006], + [31101,0.006], + [31103,0], + [31105,0.016], + [31107,0.008], + [31109,0.028], + [31111,0.002], + [31113,0.043], + [31115,0], + [31117,0], + [31119,0.033], + [31121,0.003], + [31123,0.009], + [31125,0.009], + [31127,0.001], + [31129,0], + [31131,0.018], + [31133,0], + [31135,0.011], + [31137,0.011], + [31139,0], + [31141,0.046], + [31143,0.011], + [31145,0.013], + [31147,0.001], + [31149,0.003], + [31151,0.078], + [31153,0.009], + [31155,0.008], + [31157,0.02], + [31159,0.003], + [31161,0.002], + [31163,0], + [31165,0.035], + [31167,0.016], + [31169,0.005], + [31171,0], + [31173,0.011], + [31175,0.011], + [31177,0.001], + [31179,0.008], + [31181,0.005], + [31183,0.014], + [31185,0.004], + [32001,0.04], + [32003,0.071], + [32005,0.017], + [32007,0.019], + [32009,0.02], + [32011,0], + [32013,0.042], + [32015,0.038], + [32017,0.014], + [32019,0.015], + [32021,0], + [32023,0.017], + [32027,0.01], + [32029,0], + [32031,0.039], + [32033,0.024], + [32510,0.034], + [33001,0.003], + [33003,0.001], + [33005,0.009], + [33007,0.008], + [33009,0.009], + [33011,0.028], + [33013,0.009], + [33015,0.007], + [33017,0.013], + [33019,0.003], + [34001,0.055], + [34003,0.088], + [34005,0.019], + [34007,0.048], + [34009,0.01], + [34011,0.078], + [34013,0.101], + [34015,0.012], + [34017,0.15], + [34019,0.017], + [34021,0.074], + [34023,0.083], + [34025,0.033], + [34027,0.045], + [34029,0.018], + [34031,0.13], + [34033,0.02], + [34035,0.044], + [34037,0.016], + [34039,0.12], + [34041,0.025], + [35001,0.043], + [35003,0.014], + [35005,0.064], + [35006,0.045], + [35007,0.031], + [35009,0.049], + [35011,0.013], + [35013,0.101], + [35015,0.035], + [35017,0.012], + [35019,0.155], + [35021,0.019], + [35023,0.051], + [35025,0.061], + [35027,0.019], + [35028,0.03], + [35029,0.125], + [35031,0.077], + [35033,0.06], + [35035,0.056], + [35037,0.043], + [35039,0.021], + [35041,0.056], + [35043,0.043], + [35045,0.047], + [35047,0.103], + [35049,0.037], + [35051,0.008], + [35053,0.124], + [35055,0.054], + [35057,0.03], + [35059,0.06], + [35061,0.044], + [36001,0.027], + [36003,0.005], + [36005,0.179], + [36007,0.016], + [36009,0.011], + [36011,0.009], + [36013,0.016], + [36015,0.004], + [36017,0.004], + [36019,0.004], + [36021,0.016], + [36023,0.003], + [36025,0.009], + [36027,0.024], + [36029,0.024], + [36031,0.005], + [36033,0.004], + [36035,0.004], + [36037,0.006], + [36039,0.012], + [36041,0.002], + [36043,0.007], + [36045,0.008], + [36047,0.147], + [36049,0.004], + [36051,0.005], + [36053,0.004], + [36055,0.035], + [36057,0.027], + [36059,0.055], + [36061,0.092], + [36063,0.011], + [36065,0.028], + [36067,0.022], + [36069,0.011], + [36071,0.034], + [36073,0.017], + [36075,0.004], + [36077,0.009], + [36079,0.027], + [36081,0.189], + [36083,0.016], + [36085,0.061], + [36087,0.082], + [36089,0.009], + [36091,0.008], + [36093,0.02], + [36095,0.005], + [36097,0.006], + [36099,0.013], + [36101,0.008], + [36103,0.032], + [36105,0.037], + [36107,0.003], + [36109,0.026], + [36111,0.02], + [36113,0.005], + [36115,0.001], + [36117,0.009], + [36119,0.076], + [36121,0.005], + [36123,0.016], + [37001,0.025], + [37003,0.009], + [37005,0.024], + [37007,0.022], + [37009,0.008], + [37011,0.01], + [37013,0.013], + [37015,0.002], + [37017,0.02], + [37019,0.01], + [37021,0.025], + [37023,0.022], + [37025,0.017], + [37027,0.011], + [37029,0.003], + [37031,0.006], + [37033,0.007], + [37035,0.026], + [37037,0.028], + [37039,0.006], + [37041,0.008], + [37043,0.01], + [37045,0.003], + [37047,0.013], + [37049,0.016], + [37051,0.023], + [37053,0.003], + [37055,0.018], + [37057,0.018], + [37059,0.011], + [37061,0.058], + [37063,0.047], + [37065,0.009], + [37067,0.023], + [37069,0.018], + [37071,0.013], + [37073,0.007], + [37075,0.006], + [37077,0.012], + [37079,0.045], + [37081,0.025], + [37083,0.006], + [37085,0.015], + [37087,0.006], + [37089,0.027], + [37091,0.007], + [37093,0.034], + [37095,0.035], + [37097,0.018], + [37099,0.019], + [37101,0.022], + [37103,0], + [37105,0.043], + [37107,0.025], + [37109,0.015], + [37111,0.009], + [37113,0.014], + [37115,0], + [37117,0.004], + [37119,0.048], + [37121,0.01], + [37123,0.02], + [37125,0.009], + [37127,0.008], + [37129,0.011], + [37131,0.002], + [37133,0.011], + [37135,0.028], + [37137,0.011], + [37139,0.011], + [37141,0.016], + [37143,0.007], + [37145,0.009], + [37147,0.015], + [37149,0.009], + [37151,0.024], + [37153,0.022], + [37155,0.02], + [37157,0.005], + [37159,0.022], + [37161,0.004], + [37163,0.042], + [37165,0.004], + [37167,0.004], + [37169,0.006], + [37171,0.019], + [37173,0.007], + [37175,0.014], + [37177,0.003], + [37179,0.019], + [37181,0.003], + [37183,0.026], + [37185,0.007], + [37187,0.003], + [37189,0.003], + [37191,0.039], + [37193,0.007], + [37195,0.017], + [37197,0.017], + [37199,0.016], + [38001,0.016], + [38003,0], + [38005,0.009], + [38007,0.005], + [38009,0.001], + [38011,0], + [38013,0], + [38015,0.009], + [38017,0.017], + [38019,0.016], + [38021,0.004], + [38023,0], + [38025,0.024], + [38027,0.041], + [38029,0.011], + [38031,0.008], + [38033,0], + [38035,0.015], + [38037,0.004], + [38039,0], + [38041,0.001], + [38043,0.003], + [38045,0.007], + [38047,0.011], + [38049,0.005], + [38051,0.024], + [38053,0.033], + [38055,0.002], + [38057,0.039], + [38059,0.012], + [38061,0.009], + [38063,0.001], + [38065,0.015], + [38067,0.005], + [38069,0.003], + [38071,0.011], + [38073,0.001], + [38075,0.006], + [38077,0.003], + [38079,0], + [38081,0.003], + [38083,0.004], + [38085,0.004], + [38087,0], + [38089,0.013], + [38091,0], + [38093,0.005], + [38095,0.042], + [38097,0.003], + [38099,0.004], + [38101,0.01], + [38103,0], + [38105,0.007], + [39001,0.001], + [39003,0.004], + [39005,0.011], + [39007,0.007], + [39009,0.011], + [39011,0.004], + [39013,0.001], + [39015,0], + [39017,0.021], + [39019,0.001], + [39021,0.004], + [39023,0.007], + [39025,0.004], + [39027,0.003], + [39029,0.003], + [39031,0.011], + [39033,0.006], + [39035,0.029], + [39037,0.001], + [39039,0.008], + [39041,0.006], + [39043,0.005], + [39045,0.007], + [39047,0], + [39049,0.03], + [39051,0.01], + [39053,0.004], + [39055,0.012], + [39057,0.009], + [39059,0.005], + [39061,0.014], + [39063,0.014], + [39065,0.006], + [39067,0.002], + [39069,0.009], + [39071,0.003], + [39073,0], + [39075,0.088], + [39077,0.005], + [39079,0], + [39081,0.002], + [39083,0.005], + [39085,0.014], + [39087,0.001], + [39089,0.004], + [39091,0.003], + [39093,0.015], + [39095,0.011], + [39097,0.007], + [39099,0.012], + [39101,0.006], + [39103,0.005], + [39105,0.003], + [39107,0.005], + [39109,0.005], + [39111,0.004], + [39113,0.014], + [39115,0.001], + [39117,0.004], + [39119,0.004], + [39121,0.001], + [39123,0.002], + [39125,0.005], + [39127,0.002], + [39129,0.002], + [39131,0.003], + [39133,0.009], + [39135,0.001], + [39137,0.008], + [39139,0.006], + [39141,0.004], + [39143,0.006], + [39145,0.001], + [39147,0.007], + [39149,0.011], + [39151,0.006], + [39153,0.014], + [39155,0.006], + [39157,0.009], + [39159,0.006], + [39161,0.006], + [39163,0], + [39165,0.012], + [39167,0.002], + [39169,0.023], + [39171,0.003], + [39173,0.014], + [39175,0.006], + [40001,0.008], + [40003,0.012], + [40005,0.006], + [40007,0.059], + [40009,0.01], + [40011,0.015], + [40013,0.01], + [40015,0.022], + [40017,0.014], + [40019,0.01], + [40021,0.015], + [40023,0.003], + [40025,0.035], + [40027,0.016], + [40029,0.004], + [40031,0.016], + [40033,0.002], + [40035,0.005], + [40037,0.006], + [40039,0.032], + [40041,0.009], + [40043,0.021], + [40045,0.001], + [40047,0.026], + [40049,0.005], + [40051,0.003], + [40053,0.007], + [40055,0.006], + [40057,0.025], + [40059,0.058], + [40061,0.009], + [40063,0.005], + [40065,0.031], + [40067,0.016], + [40069,0.002], + [40071,0.016], + [40073,0.029], + [40075,0.01], + [40077,0], + [40079,0.018], + [40081,0.002], + [40083,0.004], + [40085,0.032], + [40087,0.009], + [40089,0.009], + [40091,0.003], + [40093,0.026], + [40095,0.038], + [40097,0.006], + [40099,0.013], + [40101,0.006], + [40103,0.012], + [40105,0.003], + [40107,0.001], + [40109,0.037], + [40111,0.001], + [40113,0.001], + [40115,0.008], + [40117,0.001], + [40119,0.018], + [40121,0.01], + [40123,0.004], + [40125,0.006], + [40127,0.004], + [40129,0.009], + [40131,0.009], + [40133,0.006], + [40135,0.007], + [40137,0.008], + [40139,0.135], + [40141,0.036], + [40143,0.03], + [40145,0.01], + [40147,0.006], + [40149,0.004], + [40151,0.005], + [40153,0.029], + [41001,0.002], + [41003,0.029], + [41005,0.016], + [41007,0.012], + [41009,0.006], + [41011,0.005], + [41013,0.007], + [41015,0.004], + [41017,0.007], + [41019,0.007], + [41021,0], + [41023,0.004], + [41025,0.002], + [41027,0.05], + [41029,0.02], + [41031,0.014], + [41033,0.005], + [41035,0.014], + [41037,0.003], + [41039,0.013], + [41041,0.008], + [41043,0.009], + [41045,0.024], + [41047,0.045], + [41049,0.062], + [41051,0.038], + [41053,0.02], + [41055,0], + [41057,0.014], + [41059,0.041], + [41061,0.006], + [41063,0.005], + [41065,0.02], + [41067,0.039], + [41069,0], + [41071,0.024], + [42001,0.014], + [42003,0.013], + [42005,0.003], + [42007,0.005], + [42009,0.004], + [42011,0.047], + [42013,0.004], + [42015,0.003], + [42017,0.026], + [42019,0.005], + [42021,0.003], + [42023,0.008], + [42025,0.01], + [42027,0.021], + [42029,0.02], + [42031,0.004], + [42033,0.002], + [42035,0.009], + [42037,0.004], + [42039,0.006], + [42041,0.016], + [42043,0.026], + [42045,0.027], + [42047,0.001], + [42049,0.016], + [42051,0.003], + [42053,0.002], + [42055,0.015], + [42057,0.002], + [42059,0.001], + [42061,0.003], + [42063,0.005], + [42065,0.003], + [42067,0.02], + [42069,0.025], + [42071,0.032], + [42073,0.007], + [42075,0.025], + [42077,0.063], + [42079,0.028], + [42081,0.005], + [42083,0.002], + [42085,0.005], + [42087,0.011], + [42089,0.021], + [42091,0.024], + [42093,0.011], + [42095,0.03], + [42097,0.006], + [42099,0.004], + [42101,0.068], + [42103,0.013], + [42105,0.005], + [42107,0.005], + [42109,0.009], + [42111,0.003], + [42113,0], + [42115,0.003], + [42117,0.002], + [42119,0.015], + [42121,0.001], + [42123,0.006], + [42125,0.003], + [42127,0.004], + [42129,0.003], + [42131,0.002], + [42133,0.015], + [44001,0.02], + [44003,0.013], + [44005,0.018], + [44007,0.084], + [44009,0.011], + [45001,0.003], + [45003,0.014], + [45005,0], + [45007,0.006], + [45009,0.003], + [45011,0.002], + [45013,0.02], + [45015,0.019], + [45017,0.009], + [45019,0.018], + [45021,0.016], + [45023,0], + [45025,0.013], + [45027,0.004], + [45029,0.004], + [45031,0.005], + [45033,0.016], + [45035,0.009], + [45037,0.005], + [45039,0], + [45041,0.007], + [45043,0.008], + [45045,0.029], + [45047,0.009], + [45049,0.008], + [45051,0.016], + [45053,0.029], + [45055,0.006], + [45057,0.006], + [45059,0.007], + [45061,0.005], + [45063,0.014], + [45065,0.001], + [45067,0.004], + [45069,0.003], + [45071,0.021], + [45073,0.009], + [45075,0.006], + [45077,0.013], + [45079,0.016], + [45081,0.04], + [45083,0.02], + [45085,0.006], + [45087,0], + [45089,0.001], + [45091,0.009], + [46003,0.026], + [46005,0.06], + [46007,0.012], + [46009,0.002], + [46011,0.018], + [46013,0.03], + [46015,0.001], + [46017,0.005], + [46019,0.001], + [46021,0], + [46023,0.003], + [46025,0.014], + [46027,0.002], + [46029,0.004], + [46031,0.004], + [46033,0.014], + [46035,0.015], + [46037,0.002], + [46039,0.013], + [46041,0], + [46043,0.038], + [46045,0.008], + [46047,0.007], + [46049,0], + [46051,0.03], + [46053,0.001], + [46055,0.01], + [46057,0.026], + [46059,0.013], + [46061,0.006], + [46063,0], + [46065,0.005], + [46067,0.008], + [46069,0], + [46071,0.021], + [46073,0.004], + [46075,0], + [46077,0], + [46079,0.016], + [46081,0.006], + [46083,0.007], + [46085,0.002], + [46087,0.014], + [46089,0.011], + [46091,0.016], + [46093,0.003], + [46095,0], + [46097,0], + [46099,0.024], + [46101,0.004], + [46102,0.022], + [46103,0.005], + [46105,0], + [46107,0], + [46109,0.003], + [46111,0.013], + [46115,0.005], + [46117,0.003], + [46119,0], + [46121,0.02], + [46123,0.015], + [46125,0.007], + [46127,0.008], + [46129,0.007], + [46135,0.006], + [46137,0.001], + [47001,0.009], + [47003,0.028], + [47005,0.003], + [47007,0.004], + [47009,0.008], + [47011,0.015], + [47013,0.001], + [47015,0.005], + [47017,0.003], + [47019,0.003], + [47021,0.005], + [47023,0.002], + [47025,0.002], + [47027,0.008], + [47029,0], + [47031,0.008], + [47033,0.004], + [47035,0.003], + [47037,0.049], + [47039,0], + [47041,0.001], + [47043,0.001], + [47045,0], + [47047,0.006], + [47049,0], + [47051,0.006], + [47053,0.005], + [47055,0.006], + [47057,0.015], + [47059,0.003], + [47061,0], + [47063,0.027], + [47065,0.016], + [47067,0], + [47069,0], + [47071,0], + [47073,0.005], + [47075,0.014], + [47077,0.009], + [47079,0], + [47081,0.002], + [47083,0.007], + [47085,0.002], + [47087,0.002], + [47089,0.01], + [47091,0.001], + [47093,0.013], + [47095,0], + [47097,0.016], + [47099,0.004], + [47101,0.006], + [47103,0.002], + [47105,0.023], + [47107,0.007], + [47109,0.001], + [47111,0.021], + [47113,0.011], + [47115,0.001], + [47117,0.009], + [47119,0.008], + [47121,0], + [47123,0.009], + [47125,0.012], + [47127,0.016], + [47129,0.003], + [47131,0.005], + [47133,0], + [47135,0.002], + [47137,0.004], + [47139,0.008], + [47141,0.012], + [47143,0.014], + [47145,0.004], + [47147,0.014], + [47149,0.026], + [47151,0], + [47153,0.016], + [47155,0.023], + [47157,0.018], + [47159,0.004], + [47161,0.002], + [47163,0.003], + [47165,0.01], + [47167,0.004], + [47169,0.016], + [47171,0.003], + [47173,0.004], + [47175,0.001], + [47177,0.02], + [47179,0.005], + [47181,0.002], + [47183,0.005], + [47185,0.001], + [47187,0.012], + [47189,0.012], + [48001,0.032], + [48003,0.102], + [48005,0.027], + [48007,0.028], + [48009,0.021], + [48011,0.01], + [48013,0.071], + [48015,0.03], + [48017,0.081], + [48019,0.013], + [48021,0.025], + [48023,0.006], + [48025,0.028], + [48027,0.03], + [48029,0.068], + [48031,0.017], + [48033,0], + [48035,0.024], + [48037,0.008], + [48039,0.04], + [48041,0.056], + [48043,0.076], + [48045,0.017], + [48047,0.087], + [48049,0.02], + [48051,0.015], + [48053,0.02], + [48055,0.073], + [48057,0.072], + [48059,0.006], + [48061,0.162], + [48063,0.031], + [48065,0], + [48067,0.003], + [48069,0.154], + [48071,0.059], + [48073,0.054], + [48075,0.035], + [48077,0.001], + [48079,0.096], + [48081,0.028], + [48083,0.01], + [48085,0.051], + [48087,0.067], + [48089,0.034], + [48091,0.022], + [48093,0.039], + [48095,0.025], + [48097,0.028], + [48099,0.02], + [48101,0.033], + [48103,0.068], + [48105,0], + [48107,0.078], + [48109,0.366], + [48111,0.139], + [48113,0.108], + [48115,0.07], + [48117,0.114], + [48119,0], + [48121,0.034], + [48123,0.024], + [48125,0], + [48127,0.118], + [48129,0.005], + [48131,0.094], + [48133,0.024], + [48135,0.097], + [48137,0.077], + [48139,0.027], + [48141,0.231], + [48143,0.015], + [48145,0.007], + [48147,0.011], + [48149,0.015], + [48151,0.056], + [48153,0.061], + [48155,0.026], + [48157,0.063], + [48159,0.017], + [48161,0.021], + [48163,0.107], + [48165,0.14], + [48167,0.031], + [48169,0.049], + [48171,0.025], + [48173,0.144], + [48175,0.057], + [48177,0.079], + [48179,0.043], + [48181,0.018], + [48183,0.031], + [48185,0.035], + [48187,0.033], + [48189,0.065], + [48191,0.041], + [48193,0.007], + [48195,0.165], + [48197,0.057], + [48199,0.001], + [48201,0.119], + [48203,0.012], + [48205,0.047], + [48207,0.053], + [48209,0.036], + [48211,0.079], + [48213,0.017], + [48215,0.207], + [48217,0.02], + [48219,0.051], + [48221,0.026], + [48223,0.019], + [48225,0.027], + [48227,0.022], + [48229,0.424], + [48231,0.014], + [48233,0.017], + [48235,0], + [48237,0.032], + [48239,0.027], + [48241,0.008], + [48243,0.158], + [48245,0.051], + [48247,0.146], + [48249,0.093], + [48251,0.027], + [48253,0.052], + [48255,0.086], + [48257,0.025], + [48259,0.015], + [48261,0.497], + [48263,0.011], + [48265,0.021], + [48267,0.059], + [48269,0.013], + [48271,0.042], + [48273,0.038], + [48275,0.089], + [48277,0.01], + [48279,0.049], + [48281,0.011], + [48283,0.158], + [48285,0.027], + [48287,0.047], + [48289,0.024], + [48291,0.038], + [48293,0.05], + [48295,0.047], + [48297,0.05], + [48299,0.013], + [48301,0.067], + [48303,0.027], + [48305,0.049], + [48307,0.042], + [48309,0.062], + [48311,0.019], + [48313,0.032], + [48315,0.019], + [48317,0.068], + [48319,0.063], + [48321,0.072], + [48323,0.266], + [48325,0.027], + [48327,0.108], + [48329,0.05], + [48331,0.026], + [48333,0.035], + [48335,0.042], + [48337,0.025], + [48339,0.034], + [48341,0.151], + [48343,0.004], + [48345,0], + [48347,0.03], + [48349,0.051], + [48351,0], + [48353,0.049], + [48355,0.043], + [48357,0.09], + [48359,0.019], + [48361,0.008], + [48363,0.039], + [48365,0.01], + [48367,0.02], + [48369,0.119], + [48371,0.098], + [48373,0.021], + [48375,0.075], + [48377,0.323], + [48379,0.021], + [48381,0.018], + [48383,0.102], + [48385,0.027], + [48387,0.006], + [48389,0.105], + [48391,0.024], + [48393,0], + [48395,0.034], + [48397,0.016], + [48399,0.009], + [48401,0.026], + [48403,0.003], + [48405,0.019], + [48407,0.007], + [48409,0.044], + [48411,0.072], + [48413,0.078], + [48415,0.022], + [48417,0.002], + [48419,0.043], + [48421,0.076], + [48423,0.039], + [48425,0.013], + [48427,0.35], + [48429,0.015], + [48431,0.048], + [48433,0.026], + [48435,0.107], + [48437,0.098], + [48439,0.063], + [48441,0.024], + [48443,0.01], + [48445,0.107], + [48447,0.003], + [48449,0.068], + [48451,0.035], + [48453,0.06], + [48455,0.012], + [48457,0.001], + [48459,0.013], + [48461,0.104], + [48463,0.098], + [48465,0.123], + [48467,0.021], + [48469,0.029], + [48471,0.027], + [48473,0.069], + [48475,0.076], + [48477,0.021], + [48479,0.253], + [48481,0.054], + [48483,0.05], + [48485,0.024], + [48487,0.027], + [48489,0.144], + [48491,0.029], + [48493,0.035], + [48495,0.097], + [48497,0.043], + [48499,0.011], + [48501,0.152], + [48503,0.07], + [48505,0.292], + [48507,0.12], + [49001,0.021], + [49003,0.014], + [49005,0.022], + [49007,0.008], + [49009,0], + [49011,0.011], + [49013,0.016], + [49015,0.011], + [49017,0.011], + [49019,0.024], + [49021,0.019], + [49023,0.015], + [49025,0.007], + [49027,0.012], + [49029,0], + [49031,0], + [49033,0.041], + [49035,0.033], + [49037,0.074], + [49039,0.008], + [49041,0.007], + [49043,0.013], + [49045,0.012], + [49047,0.021], + [49049,0.017], + [49051,0.022], + [49053,0.013], + [49055,0.032], + [49057,0.015], + [50001,0.005], + [50003,0.003], + [50005,0.003], + [50007,0.015], + [50009,0.011], + [50011,0.006], + [50013,0.006], + [50015,0.001], + [50017,0.003], + [50019,0.009], + [50021,0.004], + [50023,0.008], + [50025,0.006], + [50027,0.003], + [51001,0.027], + [51003,0.016], + [51005,0], + [51007,0.01], + [51009,0.002], + [51011,0.003], + [51013,0.046], + [51015,0.004], + [51017,0.008], + [51019,0.005], + [51021,0], + [51023,0.004], + [51025,0.002], + [51027,0.002], + [51029,0.002], + [51031,0.01], + [51033,0.005], + [51035,0.005], + [51036,0.002], + [51037,0.001], + [51041,0.026], + [51043,0.01], + [51045,0.001], + [51047,0.017], + [51049,0.003], + [51051,0], + [51053,0.012], + [51057,0.002], + [51059,0.068], + [51061,0.015], + [51063,0], + [51065,0.009], + [51067,0.005], + [51069,0.013], + [51071,0.001], + [51073,0.001], + [51075,0.009], + [51077,0.01], + [51079,0.007], + [51081,0.001], + [51083,0.012], + [51085,0.007], + [51087,0.029], + [51089,0.014], + [51091,0], + [51093,0.008], + [51095,0.014], + [51097,0.001], + [51099,0.008], + [51101,0.003], + [51103,0.008], + [51105,0], + [51107,0.041], + [51109,0.009], + [51111,0.003], + [51113,0.005], + [51115,0], + [51117,0.005], + [51119,0], + [51121,0.016], + [51125,0.014], + [51127,0.002], + [51131,0.005], + [51133,0], + [51135,0.006], + [51137,0.013], + [51139,0], + [51141,0.003], + [51143,0.008], + [51145,0], + [51147,0.001], + [51149,0.004], + [51153,0.059], + [51155,0.006], + [51157,0.009], + [51159,0.005], + [51161,0.007], + [51163,0.006], + [51165,0.012], + [51167,0], + [51169,0.001], + [51171,0.014], + [51173,0.004], + [51175,0.003], + [51177,0.023], + [51179,0.023], + [51181,0], + [51183,0.005], + [51185,0.002], + [51187,0.014], + [51191,0.001], + [51193,0.021], + [51195,0.001], + [51197,0.002], + [51199,0.02], + [51510,0.058], + [51520,0.001], + [51530,0.011], + [51540,0.013], + [51550,0.01], + [51570,0.019], + [51580,0], + [51590,0.009], + [51595,0.022], + [51600,0.061], + [51610,0.021], + [51620,0.002], + [51630,0.028], + [51640,0.011], + [51650,0.007], + [51660,0.089], + [51670,0.014], + [51678,0], + [51680,0.013], + [51683,0.095], + [51685,0.057], + [51690,0.007], + [51700,0.022], + [51710,0.019], + [51720,0], + [51730,0.008], + [51735,0.003], + [51740,0.009], + [51750,0.003], + [51760,0.024], + [51770,0.022], + [51775,0.001], + [51790,0.011], + [51800,0.009], + [51810,0.019], + [51820,0.02], + [51830,0.009], + [51840,0.047], + [53001,0.179], + [53003,0.003], + [53005,0.033], + [53007,0.048], + [53009,0.009], + [53011,0.028], + [53013,0.022], + [53015,0.012], + [53017,0.061], + [53019,0.005], + [53021,0.139], + [53023,0], + [53025,0.083], + [53027,0.019], + [53029,0.011], + [53031,0.01], + [53033,0.056], + [53035,0.01], + [53037,0.009], + [53039,0.012], + [53041,0.011], + [53043,0.004], + [53045,0.021], + [53047,0.034], + [53049,0.019], + [53051,0.002], + [53053,0.029], + [53055,0.013], + [53057,0.027], + [53059,0.005], + [53061,0.04], + [53063,0.012], + [53065,0.004], + [53067,0.021], + [53069,0.007], + [53071,0.035], + [53073,0.016], + [53075,0.039], + [53077,0.084], + [54001,0.002], + [54003,0.006], + [54005,0], + [54007,0.001], + [54009,0.006], + [54011,0.004], + [54013,0], + [54015,0], + [54017,0], + [54019,0.002], + [54021,0.017], + [54023,0.008], + [54025,0.002], + [54027,0], + [54029,0.005], + [54031,0.024], + [54033,0.001], + [54035,0.002], + [54037,0.005], + [54039,0.005], + [54041,0], + [54043,0], + [54045,0], + [54047,0], + [54049,0.003], + [54051,0], + [54053,0], + [54055,0.006], + [54057,0.018], + [54059,0.002], + [54061,0.011], + [54063,0.003], + [54065,0], + [54067,0], + [54069,0.001], + [54071,0], + [54073,0], + [54075,0], + [54077,0.006], + [54079,0.001], + [54081,0.007], + [54083,0], + [54085,0], + [54087,0], + [54089,0], + [54091,0.01], + [54093,0.001], + [54095,0], + [54097,0.001], + [54099,0.001], + [54101,0], + [54103,0], + [54105,0.004], + [54107,0.001], + [54109,0], + [55001,0.01], + [55003,0.004], + [55005,0.015], + [55007,0.002], + [55009,0.022], + [55011,0.005], + [55013,0.001], + [55015,0.007], + [55017,0.003], + [55019,0.033], + [55021,0.006], + [55023,0.001], + [55025,0.021], + [55027,0.008], + [55029,0.004], + [55031,0.003], + [55033,0.012], + [55035,0.012], + [55037,0.003], + [55039,0.011], + [55041,0.004], + [55043,0.006], + [55045,0.006], + [55047,0.008], + [55049,0.003], + [55051,0.001], + [55053,0.007], + [55055,0.006], + [55057,0.005], + [55059,0.024], + [55061,0.007], + [55063,0.012], + [55065,0.016], + [55067,0.008], + [55069,0], + [55071,0.015], + [55073,0.013], + [55075,0.002], + [55077,0.007], + [55078,0], + [55079,0.034], + [55081,0.011], + [55083,0.004], + [55085,0.002], + [55087,0.01], + [55089,0.005], + [55091,0.004], + [55093,0.006], + [55095,0.002], + [55097,0.009], + [55099,0.004], + [55101,0.016], + [55103,0.02], + [55105,0.008], + [55107,0.004], + [55109,0.002], + [55111,0.01], + [55113,0.004], + [55115,0.002], + [55117,0.013], + [55119,0.011], + [55121,0.022], + [55123,0.009], + [55125,0.003], + [55127,0.016], + [55129,0.004], + [55131,0.005], + [55133,0.009], + [55135,0.006], + [55137,0.006], + [55139,0.011], + [55141,0.004], + [56001,0.017], + [56003,0.011], + [56005,0.006], + [56007,0.019], + [56009,0.006], + [56011,0.022], + [56013,0.001], + [56015,0.006], + [56017,0.001], + [56019,0], + [56021,0.011], + [56023,0.006], + [56025,0.007], + [56027,0.008], + [56029,0.01], + [56031,0.012], + [56033,0.007], + [56035,0.003], + [56037,0.019], + [56039,0.057], + [56041,0.006], + [56043,0.012], + [56045,0] + ] +} diff --git a/data/regional/united-states/culture/language/us-language-household-eurpean-2019.json b/data/regional/united-states/culture/language/us-language-household-eurpean-2019.json new file mode 100644 index 0000000..c722c1b --- /dev/null +++ b/data/regional/united-states/culture/language/us-language-household-eurpean-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Other European Language Spoken At Home", + "description" : "Percent of households that speak a european language other than English or Spanish at home.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","language"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.language.household.european.2019"], + [1001,0.003], + [1003,0.018], + [1005,0.011], + [1007,0.005], + [1009,0.009], + [1011,0.016], + [1013,0.006], + [1015,0.008], + [1017,0.005], + [1019,0.001], + [1021,0.008], + [1023,0.007], + [1025,0.002], + [1027,0.005], + [1029,0.006], + [1031,0.014], + [1033,0.008], + [1035,0.002], + [1037,0], + [1039,0.001], + [1041,0.003], + [1043,0.005], + [1045,0.016], + [1047,0.006], + [1049,0.002], + [1051,0.01], + [1053,0.001], + [1055,0.008], + [1057,0.005], + [1059,0.003], + [1061,0.001], + [1063,0], + [1065,0.005], + [1067,0.004], + [1069,0.01], + [1071,0.001], + [1073,0.014], + [1075,0.002], + [1077,0.009], + [1079,0.001], + [1081,0.016], + [1083,0.014], + [1085,0], + [1087,0.007], + [1089,0.024], + [1091,0.003], + [1093,0.003], + [1095,0.012], + [1097,0.011], + [1099,0.004], + [1101,0.011], + [1103,0.012], + [1105,0.004], + [1107,0.004], + [1109,0.012], + [1111,0.01], + [1113,0.02], + [1115,0.005], + [1117,0.02], + [1119,0], + [1121,0.01], + [1123,0.003], + [1125,0.017], + [1127,0.002], + [1129,0.002], + [1131,0.002], + [1133,0.004], + [2013,0.01], + [2016,0.027], + [2020,0.033], + [2050,0.012], + [2060,0.006], + [2068,0.023], + [2070,0.005], + [2090,0.031], + [2100,0.056], + [2105,0.03], + [2110,0.023], + [2122,0.035], + [2130,0.017], + [2150,0.013], + [2158,0], + [2164,0.007], + [2170,0.033], + [2180,0.031], + [2185,0.027], + [2188,0.029], + [2195,0.019], + [2198,0.006], + [2220,0.026], + [2230,0.043], + [2240,0.065], + [2261,0.017], + [2275,0.004], + [2282,0], + [2290,0.011], + [4001,0.003], + [4003,0.021], + [4005,0.025], + [4007,0.023], + [4009,0.011], + [4011,0], + [4012,0.006], + [4013,0.034], + [4015,0.014], + [4017,0.013], + [4019,0.026], + [4021,0.019], + [4023,0.01], + [4025,0.023], + [4027,0.011], + [5001,0.004], + [5003,0.002], + [5005,0.01], + [5007,0.011], + [5009,0.011], + [5011,0.008], + [5013,0.014], + [5015,0.009], + [5017,0.009], + [5019,0.004], + [5021,0.003], + [5023,0.007], + [5025,0.002], + [5027,0.008], + [5029,0.006], + [5031,0.015], + [5033,0.009], + [5035,0.008], + [5037,0.001], + [5039,0.004], + [5041,0], + [5043,0.002], + [5045,0.017], + [5047,0.009], + [5049,0.002], + [5051,0.02], + [5053,0.009], + [5055,0.006], + [5057,0.005], + [5059,0.006], + [5061,0.007], + [5063,0.006], + [5065,0.025], + [5067,0.003], + [5069,0.014], + [5071,0.01], + [5073,0.003], + [5075,0.007], + [5077,0.003], + [5079,0.001], + [5081,0.002], + [5083,0.008], + [5085,0.007], + [5087,0.005], + [5089,0.015], + [5091,0.003], + [5093,0.005], + [5095,0.005], + [5097,0.003], + [5099,0.001], + [5101,0.004], + [5103,0.009], + [5105,0.003], + [5107,0.008], + [5109,0.001], + [5111,0.007], + [5113,0.013], + [5115,0.008], + [5117,0.007], + [5119,0.017], + [5121,0.008], + [5123,0.009], + [5125,0.008], + [5127,0], + [5129,0], + [5131,0.008], + [5133,0], + [5135,0.004], + [5137,0.012], + [5139,0.003], + [5141,0.006], + [5143,0.018], + [5145,0.012], + [5147,0], + [5149,0.006], + [6001,0.091], + [6003,0], + [6005,0.02], + [6007,0.023], + [6009,0.018], + [6011,0.011], + [6013,0.073], + [6015,0.03], + [6017,0.035], + [6019,0.038], + [6021,0.014], + [6023,0.019], + [6025,0.006], + [6027,0.033], + [6029,0.019], + [6031,0.028], + [6033,0.017], + [6035,0.014], + [6037,0.072], + [6039,0.021], + [6041,0.082], + [6043,0.015], + [6045,0.019], + [6047,0.054], + [6049,0.004], + [6051,0.027], + [6053,0.038], + [6055,0.044], + [6057,0.034], + [6059,0.059], + [6061,0.054], + [6063,0.026], + [6065,0.028], + [6067,0.079], + [6069,0.028], + [6071,0.021], + [6073,0.046], + [6075,0.082], + [6077,0.055], + [6079,0.029], + [6081,0.09], + [6083,0.039], + [6085,0.115], + [6087,0.045], + [6089,0.025], + [6091,0.014], + [6093,0.018], + [6095,0.032], + [6097,0.037], + [6099,0.054], + [6101,0.12], + [6103,0.012], + [6105,0.014], + [6107,0.02], + [6109,0.025], + [6111,0.043], + [6113,0.075], + [6115,0.023], + [8001,0.026], + [8003,0.011], + [8005,0.047], + [8007,0.018], + [8009,0.007], + [8011,0.004], + [8013,0.048], + [8014,0.034], + [8015,0.019], + [8017,0.017], + [8019,0.035], + [8021,0.013], + [8023,0.01], + [8025,0.016], + [8027,0.021], + [8029,0.017], + [8031,0.033], + [8033,0.008], + [8035,0.044], + [8037,0.039], + [8039,0.02], + [8041,0.036], + [8043,0.016], + [8045,0.027], + [8047,0.061], + [8049,0.012], + [8051,0.032], + [8053,0], + [8055,0.015], + [8057,0], + [8059,0.029], + [8061,0.013], + [8063,0.015], + [8065,0.022], + [8067,0.022], + [8069,0.03], + [8071,0.028], + [8073,0.013], + [8075,0.007], + [8077,0.012], + [8079,0.016], + [8081,0.019], + [8083,0.015], + [8085,0.014], + [8087,0.018], + [8089,0.005], + [8091,0.039], + [8093,0.009], + [8095,0.001], + [8097,0.068], + [8099,0.002], + [8101,0.016], + [8103,0.004], + [8105,0.016], + [8107,0.009], + [8109,0.033], + [8111,0.08], + [8113,0.043], + [8115,0.005], + [8117,0.029], + [8119,0.032], + [8121,0.013], + [8123,0.014], + [8125,0.007], + [9001,0.12], + [9003,0.1], + [9005,0.061], + [9007,0.068], + [9009,0.068], + [9011,0.047], + [9013,0.056], + [9015,0.032], + [10001,0.04], + [10003,0.039], + [10005,0.029], + [11001,0.056], + [12001,0.043], + [12003,0.012], + [12005,0.024], + [12007,0.02], + [12009,0.035], + [12011,0.126], + [12013,0.011], + [12015,0.051], + [12017,0.024], + [12019,0.031], + [12021,0.078], + [12023,0.019], + [12027,0.013], + [12029,0.015], + [12031,0.04], + [12033,0.02], + [12035,0.083], + [12037,0.012], + [12039,0.017], + [12041,0.01], + [12043,0.025], + [12045,0.024], + [12047,0.014], + [12049,0.014], + [12051,0.009], + [12053,0.034], + [12055,0.024], + [12057,0.046], + [12059,0.007], + [12061,0.039], + [12063,0.011], + [12065,0.019], + [12067,0.03], + [12069,0.029], + [12071,0.05], + [12073,0.034], + [12075,0.011], + [12077,0.006], + [12079,0.011], + [12081,0.046], + [12083,0.025], + [12085,0.038], + [12086,0.075], + [12087,0.045], + [12089,0.031], + [12091,0.037], + [12093,0.011], + [12095,0.077], + [12097,0.047], + [12099,0.104], + [12101,0.042], + [12103,0.057], + [12105,0.032], + [12107,0.01], + [12109,0.04], + [12111,0.08], + [12113,0.028], + [12115,0.055], + [12117,0.052], + [12119,0.021], + [12121,0.009], + [12123,0.017], + [12125,0], + [12127,0.033], + [12129,0.024], + [12131,0.028], + [12133,0.011], + [13001,0.012], + [13003,0], + [13005,0], + [13007,0.006], + [13009,0.01], + [13011,0.009], + [13013,0.023], + [13015,0.014], + [13017,0.003], + [13019,0.003], + [13021,0.019], + [13023,0], + [13025,0.028], + [13027,0.008], + [13029,0.043], + [13031,0.014], + [13033,0.008], + [13035,0.01], + [13037,0.003], + [13039,0.02], + [13043,0.004], + [13045,0.016], + [13047,0.014], + [13049,0.01], + [13051,0.035], + [13053,0.041], + [13055,0.001], + [13057,0.028], + [13059,0.027], + [13061,0.017], + [13063,0.019], + [13065,0.014], + [13067,0.06], + [13069,0.012], + [13071,0.008], + [13073,0.038], + [13075,0.013], + [13077,0.025], + [13079,0.005], + [13081,0.007], + [13083,0.01], + [13085,0.01], + [13087,0.006], + [13089,0.043], + [13091,0.01], + [13093,0], + [13095,0.009], + [13097,0.027], + [13099,0], + [13101,0], + [13103,0.014], + [13105,0.009], + [13107,0.009], + [13109,0.004], + [13111,0.014], + [13113,0.041], + [13115,0.012], + [13117,0.075], + [13119,0.014], + [13121,0.052], + [13123,0.008], + [13125,0.003], + [13127,0.021], + [13129,0.011], + [13131,0.006], + [13133,0.012], + [13135,0.067], + [13137,0.007], + [13139,0.019], + [13141,0.004], + [13143,0.007], + [13145,0.03], + [13147,0.01], + [13149,0.007], + [13151,0.035], + [13153,0.024], + [13155,0.004], + [13157,0.013], + [13159,0.003], + [13161,0.002], + [13163,0.003], + [13165,0.009], + [13167,0.01], + [13169,0], + [13171,0.01], + [13173,0.001], + [13175,0.006], + [13177,0.015], + [13179,0.031], + [13181,0.004], + [13183,0.029], + [13185,0.012], + [13187,0.01], + [13189,0.014], + [13191,0.017], + [13193,0.027], + [13195,0.012], + [13197,0.005], + [13199,0.003], + [13201,0.005], + [13205,0.003], + [13207,0.012], + [13209,0.003], + [13211,0.008], + [13213,0.005], + [13215,0.027], + [13217,0.021], + [13219,0.023], + [13221,0.005], + [13223,0.021], + [13225,0.009], + [13227,0.008], + [13229,0.012], + [13231,0.003], + [13233,0.008], + [13235,0.003], + [13237,0.015], + [13239,0.027], + [13241,0.019], + [13243,0.002], + [13245,0.022], + [13247,0.018], + [13249,0.004], + [13251,0.008], + [13253,0], + [13255,0.011], + [13257,0.011], + [13259,0.003], + [13261,0.008], + [13263,0.002], + [13265,0.007], + [13267,0.012], + [13269,0.029], + [13271,0.001], + [13273,0], + [13275,0.013], + [13277,0.012], + [13279,0.004], + [13281,0.012], + [13283,0.002], + [13285,0.015], + [13287,0.009], + [13289,0.01], + [13291,0.016], + [13293,0.014], + [13295,0.006], + [13297,0.021], + [13299,0.012], + [13301,0.008], + [13303,0.009], + [13305,0.007], + [13307,0.011], + [13309,0], + [13311,0.019], + [13313,0.01], + [13315,0], + [13317,0.005], + [13319,0.005], + [13321,0.001], + [15001,0.024], + [15003,0.02], + [15005,0], + [15007,0.017], + [15009,0.022], + [16001,0.025], + [16003,0.019], + [16005,0.022], + [16007,0.005], + [16009,0.016], + [16011,0.011], + [16013,0.007], + [16015,0.019], + [16017,0.012], + [16019,0.015], + [16021,0.029], + [16023,0.007], + [16025,0], + [16027,0.017], + [16029,0.002], + [16031,0.022], + [16033,0], + [16035,0.013], + [16037,0.002], + [16039,0.023], + [16041,0.007], + [16043,0.008], + [16045,0.021], + [16047,0.01], + [16049,0.017], + [16051,0.007], + [16053,0.006], + [16055,0.016], + [16057,0.023], + [16059,0.012], + [16061,0.012], + [16063,0.013], + [16065,0.036], + [16067,0.006], + [16069,0.013], + [16071,0], + [16073,0.001], + [16075,0.006], + [16077,0.005], + [16079,0.009], + [16081,0.023], + [16083,0.035], + [16085,0.013], + [16087,0.008], + [17001,0.008], + [17003,0], + [17005,0.01], + [17007,0.021], + [17009,0.019], + [17011,0.017], + [17013,0.011], + [17015,0.016], + [17017,0.017], + [17019,0.051], + [17021,0.01], + [17023,0.01], + [17025,0.011], + [17027,0.016], + [17029,0.017], + [17031,0.099], + [17033,0.016], + [17035,0.005], + [17037,0.027], + [17039,0.005], + [17041,0.086], + [17043,0.115], + [17045,0.006], + [17047,0.009], + [17049,0.012], + [17051,0.015], + [17053,0.008], + [17055,0.005], + [17057,0.008], + [17059,0.005], + [17061,0.005], + [17063,0.023], + [17065,0.017], + [17067,0.013], + [17069,0.004], + [17071,0.005], + [17073,0.009], + [17075,0.01], + [17077,0.034], + [17079,0.008], + [17081,0.021], + [17083,0.009], + [17085,0.01], + [17087,0.01], + [17089,0.039], + [17091,0.02], + [17093,0.038], + [17095,0.019], + [17097,0.079], + [17099,0.018], + [17101,0.017], + [17103,0.013], + [17105,0.009], + [17107,0.014], + [17109,0.011], + [17111,0.045], + [17113,0.026], + [17115,0.012], + [17117,0.008], + [17119,0.014], + [17121,0.009], + [17123,0.014], + [17125,0.005], + [17127,0.001], + [17129,0.005], + [17131,0.001], + [17133,0.02], + [17135,0.005], + [17137,0.022], + [17139,0.076], + [17141,0.016], + [17143,0.027], + [17145,0.024], + [17147,0.017], + [17149,0.005], + [17151,0.013], + [17153,0.005], + [17155,0.012], + [17157,0.014], + [17159,0.015], + [17161,0.03], + [17163,0.025], + [17165,0.012], + [17167,0.022], + [17169,0.047], + [17171,0.009], + [17173,0.005], + [17175,0.008], + [17177,0.012], + [17179,0.009], + [17181,0.007], + [17183,0.01], + [17185,0.021], + [17187,0.013], + [17189,0.011], + [17191,0.022], + [17193,0.007], + [17195,0.018], + [17197,0.053], + [17199,0.006], + [17201,0.029], + [17203,0.01], + [18001,0.081], + [18003,0.028], + [18005,0.046], + [18007,0.003], + [18009,0.009], + [18011,0.015], + [18013,0.003], + [18015,0.009], + [18017,0.008], + [18019,0.009], + [18021,0.009], + [18023,0.005], + [18025,0], + [18027,0.116], + [18029,0.009], + [18031,0.023], + [18033,0.016], + [18035,0.011], + [18037,0.011], + [18039,0.055], + [18041,0.005], + [18043,0.009], + [18045,0.019], + [18047,0.014], + [18049,0.015], + [18051,0.005], + [18053,0.006], + [18055,0.01], + [18057,0.033], + [18059,0.019], + [18061,0.007], + [18063,0.029], + [18065,0.006], + [18067,0.01], + [18069,0.023], + [18071,0.011], + [18073,0.023], + [18075,0.015], + [18077,0.006], + [18079,0.004], + [18081,0.022], + [18083,0.013], + [18085,0.036], + [18087,0.317], + [18089,0.036], + [18091,0.024], + [18093,0.008], + [18095,0.011], + [18097,0.022], + [18099,0.034], + [18101,0.001], + [18103,0.019], + [18105,0.034], + [18107,0.006], + [18109,0.004], + [18111,0.003], + [18113,0.03], + [18115,0], + [18117,0.011], + [18119,0.012], + [18121,0.055], + [18123,0.003], + [18125,0.005], + [18127,0.02], + [18129,0.001], + [18131,0.007], + [18133,0.014], + [18135,0.01], + [18137,0.011], + [18139,0.017], + [18141,0.026], + [18143,0.012], + [18145,0.009], + [18147,0.008], + [18149,0.02], + [18151,0.007], + [18153,0.002], + [18155,0.028], + [18157,0.035], + [18159,0.009], + [18161,0.007], + [18163,0.011], + [18165,0.014], + [18167,0.02], + [18169,0.015], + [18171,0.001], + [18173,0.014], + [18175,0.007], + [18177,0.014], + [18179,0.023], + [18181,0.018], + [18183,0.022], + [19001,0.014], + [19003,0.003], + [19005,0.024], + [19007,0.016], + [19009,0.011], + [19011,0.013], + [19013,0.04], + [19015,0.007], + [19017,0.013], + [19019,0.017], + [19021,0.006], + [19023,0.015], + [19025,0.007], + [19027,0.002], + [19029,0.006], + [19031,0.006], + [19033,0.016], + [19035,0.007], + [19037,0.013], + [19039,0.013], + [19041,0.004], + [19043,0.016], + [19045,0.007], + [19047,0.008], + [19049,0.038], + [19051,0.097], + [19053,0.047], + [19055,0.008], + [19057,0.014], + [19059,0.015], + [19061,0.013], + [19063,0.002], + [19065,0.017], + [19067,0.023], + [19069,0.003], + [19071,0.006], + [19073,0.004], + [19075,0.02], + [19077,0.008], + [19079,0.011], + [19081,0.007], + [19083,0.006], + [19085,0.008], + [19087,0.006], + [19089,0.025], + [19091,0.008], + [19093,0.003], + [19095,0.026], + [19097,0.005], + [19099,0.016], + [19101,0.027], + [19103,0.05], + [19105,0.006], + [19107,0.008], + [19109,0.009], + [19111,0.005], + [19113,0.022], + [19115,0.008], + [19117,0.036], + [19119,0.017], + [19121,0.012], + [19123,0.007], + [19125,0.014], + [19127,0.006], + [19129,0.017], + [19131,0.023], + [19133,0.003], + [19135,0.019], + [19137,0.01], + [19139,0.013], + [19141,0.007], + [19143,0.012], + [19145,0.002], + [19147,0.012], + [19149,0.013], + [19151,0.006], + [19153,0.031], + [19155,0.009], + [19157,0.012], + [19159,0.012], + [19161,0.01], + [19163,0.02], + [19165,0.006], + [19167,0.011], + [19169,0.031], + [19171,0.012], + [19173,0.003], + [19175,0.021], + [19177,0.039], + [19179,0.015], + [19181,0.013], + [19183,0.036], + [19185,0.055], + [19187,0.005], + [19189,0.009], + [19191,0.018], + [19193,0.011], + [19195,0.007], + [19197,0.004], + [20001,0.005], + [20003,0.026], + [20005,0.007], + [20007,0.015], + [20009,0.008], + [20011,0.016], + [20013,0.006], + [20015,0.014], + [20017,0.011], + [20019,0.005], + [20021,0.009], + [20023,0.02], + [20025,0.015], + [20027,0.017], + [20029,0.01], + [20031,0.001], + [20033,0.003], + [20035,0.006], + [20037,0.009], + [20039,0.003], + [20041,0.017], + [20043,0.007], + [20045,0.028], + [20047,0.015], + [20049,0.008], + [20051,0.031], + [20053,0.01], + [20055,0.02], + [20057,0.009], + [20059,0.006], + [20061,0.04], + [20063,0.008], + [20065,0.008], + [20067,0.007], + [20069,0.06], + [20071,0.008], + [20073,0.008], + [20075,0.011], + [20077,0.011], + [20079,0.013], + [20081,0.111], + [20083,0.025], + [20085,0.01], + [20087,0.01], + [20089,0.007], + [20091,0.032], + [20093,0.017], + [20095,0.029], + [20097,0.028], + [20099,0.018], + [20101,0.005], + [20103,0.015], + [20105,0.002], + [20107,0.003], + [20109,0.016], + [20111,0.009], + [20113,0.015], + [20115,0.012], + [20117,0.022], + [20119,0.05], + [20121,0.007], + [20123,0.013], + [20125,0.005], + [20127,0.012], + [20129,0.017], + [20131,0.018], + [20133,0.005], + [20135,0.017], + [20137,0.002], + [20139,0.011], + [20141,0.007], + [20143,0.007], + [20145,0.013], + [20147,0.013], + [20149,0.014], + [20151,0.014], + [20153,0.014], + [20155,0.024], + [20157,0.009], + [20159,0.008], + [20161,0.04], + [20163,0.006], + [20165,0.032], + [20167,0.02], + [20169,0.018], + [20171,0.025], + [20173,0.016], + [20175,0.012], + [20177,0.011], + [20179,0.021], + [20181,0.018], + [20183,0.014], + [20185,0.002], + [20187,0.014], + [20189,0.019], + [20191,0.004], + [20193,0.006], + [20195,0], + [20197,0.007], + [20199,0.011], + [20201,0.008], + [20203,0], + [20205,0.011], + [20207,0.003], + [20209,0.016], + [21001,0.009], + [21003,0.032], + [21005,0.009], + [21007,0.017], + [21009,0.012], + [21011,0.013], + [21013,0.001], + [21015,0.028], + [21017,0.009], + [21019,0.007], + [21021,0.005], + [21023,0.011], + [21025,0.004], + [21027,0.015], + [21029,0.01], + [21031,0.007], + [21033,0.005], + [21035,0.007], + [21037,0.019], + [21039,0.013], + [21041,0.006], + [21043,0.002], + [21045,0.015], + [21047,0.03], + [21049,0.011], + [21051,0.001], + [21053,0.007], + [21055,0.052], + [21057,0.018], + [21059,0.012], + [21061,0.009], + [21063,0.016], + [21065,0], + [21067,0.03], + [21069,0.022], + [21071,0.005], + [21073,0.02], + [21075,0.008], + [21077,0], + [21079,0.007], + [21081,0.002], + [21083,0.006], + [21085,0.012], + [21087,0.006], + [21089,0.004], + [21091,0.009], + [21093,0.03], + [21095,0.005], + [21097,0.009], + [21099,0.045], + [21101,0.007], + [21103,0.011], + [21105,0.002], + [21107,0.006], + [21109,0.003], + [21111,0.027], + [21113,0.021], + [21115,0.011], + [21117,0.016], + [21119,0.006], + [21121,0.002], + [21123,0.005], + [21125,0.008], + [21127,0.004], + [21129,0.004], + [21131,0.009], + [21133,0.004], + [21135,0.011], + [21137,0.016], + [21139,0.003], + [21141,0.012], + [21143,0.012], + [21145,0.009], + [21147,0.016], + [21149,0], + [21151,0.009], + [21153,0.001], + [21155,0.01], + [21157,0.003], + [21159,0.004], + [21161,0.014], + [21163,0.013], + [21165,0], + [21167,0.012], + [21169,0.019], + [21171,0.014], + [21173,0.002], + [21175,0.005], + [21177,0.008], + [21179,0.004], + [21181,0.037], + [21183,0.002], + [21185,0.017], + [21187,0.001], + [21189,0], + [21191,0.003], + [21193,0.003], + [21195,0.007], + [21197,0.003], + [21199,0.009], + [21201,0.05], + [21203,0.005], + [21205,0.027], + [21207,0.012], + [21209,0.012], + [21211,0.012], + [21213,0.013], + [21215,0.003], + [21217,0.008], + [21219,0.05], + [21221,0.019], + [21223,0.005], + [21225,0.004], + [21227,0.034], + [21229,0.01], + [21231,0.008], + [21233,0.005], + [21235,0.01], + [21237,0], + [21239,0.009], + [22001,0.16], + [22003,0.074], + [22005,0.018], + [22007,0.184], + [22009,0.159], + [22011,0.034], + [22013,0.016], + [22015,0.012], + [22017,0.014], + [22019,0.049], + [22021,0], + [22023,0.073], + [22025,0.003], + [22027,0.005], + [22029,0.006], + [22031,0.012], + [22033,0.022], + [22035,0.01], + [22037,0.015], + [22039,0.289], + [22041,0.007], + [22043,0.031], + [22045,0.099], + [22047,0.036], + [22049,0.015], + [22051,0.028], + [22053,0.108], + [22055,0.091], + [22057,0.171], + [22059,0.005], + [22061,0.011], + [22063,0.016], + [22065,0.009], + [22067,0.002], + [22069,0.006], + [22071,0.023], + [22073,0.008], + [22075,0.031], + [22077,0.045], + [22079,0.027], + [22081,0.006], + [22083,0.007], + [22085,0.015], + [22087,0.019], + [22089,0.03], + [22091,0.017], + [22093,0.021], + [22095,0.02], + [22097,0.123], + [22099,0.25], + [22101,0.036], + [22103,0.024], + [22105,0.017], + [22107,0.006], + [22109,0.083], + [22111,0.006], + [22113,0.208], + [22115,0.03], + [22117,0.033], + [22119,0.011], + [22121,0.015], + [22123,0.007], + [22125,0.008], + [22127,0.003], + [23001,0.115], + [23003,0.187], + [23005,0.044], + [23007,0.019], + [23009,0.024], + [23011,0.042], + [23013,0.026], + [23015,0.03], + [23017,0.031], + [23019,0.036], + [23021,0.021], + [23023,0.048], + [23025,0.035], + [23027,0.036], + [23029,0.027], + [23031,0.075], + [24001,0.016], + [24003,0.036], + [24005,0.053], + [24009,0.026], + [24011,0.019], + [24013,0.025], + [24015,0.022], + [24017,0.022], + [24019,0.011], + [24021,0.044], + [24023,0.021], + [24025,0.033], + [24027,0.081], + [24029,0.014], + [24031,0.117], + [24033,0.043], + [24035,0.026], + [24037,0.026], + [24039,0.017], + [24041,0.028], + [24043,0.024], + [24045,0.041], + [24047,0.024], + [24510,0.035], + [25001,0.061], + [25003,0.038], + [25005,0.177], + [25007,0.095], + [25009,0.076], + [25011,0.04], + [25013,0.067], + [25015,0.059], + [25017,0.133], + [25019,0.053], + [25021,0.108], + [25023,0.103], + [25025,0.127], + [25027,0.074], + [26001,0.009], + [26003,0.007], + [26005,0.014], + [26007,0.023], + [26009,0.011], + [26011,0.007], + [26013,0.003], + [26015,0.012], + [26017,0.013], + [26019,0.02], + [26021,0.029], + [26023,0.023], + [26025,0.012], + [26027,0.01], + [26029,0.021], + [26031,0.018], + [26033,0.013], + [26035,0.034], + [26037,0.016], + [26039,0.013], + [26041,0.012], + [26043,0.014], + [26045,0.029], + [26047,0.014], + [26049,0.013], + [26051,0.023], + [26053,0.012], + [26055,0.023], + [26057,0.015], + [26059,0.019], + [26061,0.027], + [26063,0.025], + [26065,0.037], + [26067,0.01], + [26069,0.018], + [26071,0.014], + [26073,0.023], + [26075,0.013], + [26077,0.029], + [26079,0.011], + [26081,0.027], + [26083,0.006], + [26085,0.013], + [26087,0.015], + [26089,0.025], + [26091,0.013], + [26093,0.017], + [26095,0.017], + [26097,0.033], + [26099,0.068], + [26101,0.012], + [26103,0.011], + [26105,0.011], + [26107,0.015], + [26109,0.015], + [26111,0.017], + [26113,0.01], + [26115,0.016], + [26117,0.015], + [26119,0.012], + [26121,0.01], + [26123,0.019], + [26125,0.062], + [26127,0.013], + [26129,0.013], + [26131,0.015], + [26133,0.022], + [26135,0.038], + [26137,0.015], + [26139,0.018], + [26141,0.033], + [26143,0.013], + [26145,0.018], + [26147,0.02], + [26149,0.036], + [26151,0.025], + [26153,0.014], + [26155,0.01], + [26157,0.019], + [26159,0.012], + [26161,0.057], + [26163,0.039], + [26165,0.015], + [27001,0.012], + [27003,0.03], + [27005,0.011], + [27007,0.013], + [27009,0.016], + [27011,0.017], + [27013,0.023], + [27015,0.021], + [27017,0.019], + [27019,0.02], + [27021,0.014], + [27023,0.009], + [27025,0.009], + [27027,0.022], + [27029,0.023], + [27031,0.037], + [27033,0.016], + [27035,0.012], + [27037,0.033], + [27039,0.011], + [27041,0.013], + [27043,0.007], + [27045,0.031], + [27047,0.01], + [27049,0.015], + [27051,0.01], + [27053,0.042], + [27055,0.014], + [27057,0.015], + [27059,0.015], + [27061,0.013], + [27063,0.028], + [27065,0.015], + [27067,0.015], + [27069,0.011], + [27071,0.016], + [27073,0.017], + [27075,0.01], + [27077,0.005], + [27079,0.014], + [27081,0.009], + [27083,0.013], + [27085,0.011], + [27087,0.023], + [27089,0.019], + [27091,0.012], + [27093,0.007], + [27095,0.012], + [27097,0.016], + [27099,0.013], + [27101,0.013], + [27103,0.013], + [27105,0.006], + [27107,0.016], + [27109,0.033], + [27111,0.016], + [27113,0.015], + [27115,0.022], + [27117,0.009], + [27119,0.021], + [27121,0.011], + [27123,0.032], + [27125,0.016], + [27127,0.009], + [27129,0.009], + [27131,0.017], + [27133,0.016], + [27135,0.016], + [27137,0.015], + [27139,0.039], + [27141,0.018], + [27143,0.015], + [27145,0.021], + [27147,0.012], + [27149,0.013], + [27151,0.015], + [27153,0.033], + [27155,0.01], + [27157,0.014], + [27159,0.013], + [27161,0.003], + [27163,0.029], + [27165,0.002], + [27167,0.007], + [27169,0.023], + [27171,0.013], + [27173,0.012], + [28001,0.005], + [28003,0.004], + [28005,0.012], + [28007,0.001], + [28009,0.008], + [28011,0.005], + [28013,0], + [28015,0], + [28017,0.005], + [28019,0], + [28021,0.019], + [28023,0.005], + [28025,0.003], + [28027,0.003], + [28029,0.003], + [28031,0.005], + [28033,0.007], + [28035,0.007], + [28037,0.001], + [28039,0.003], + [28041,0], + [28043,0.006], + [28045,0.015], + [28047,0.015], + [28049,0.007], + [28051,0.007], + [28053,0], + [28055,0], + [28057,0.007], + [28059,0.009], + [28061,0.005], + [28063,0.009], + [28065,0.013], + [28067,0.003], + [28069,0], + [28071,0.016], + [28073,0.01], + [28075,0.01], + [28077,0.004], + [28079,0.007], + [28081,0.004], + [28083,0.002], + [28085,0.009], + [28087,0.01], + [28089,0.027], + [28091,0.001], + [28093,0.008], + [28095,0.002], + [28097,0.003], + [28099,0.002], + [28101,0.002], + [28103,0.002], + [28105,0.015], + [28107,0], + [28109,0.009], + [28111,0.007], + [28113,0.012], + [28115,0.01], + [28117,0.002], + [28119,0], + [28121,0.012], + [28123,0.004], + [28125,0], + [28127,0.011], + [28129,0], + [28131,0.009], + [28133,0.002], + [28135,0.001], + [28137,0.003], + [28139,0.003], + [28141,0], + [28143,0.006], + [28145,0.001], + [28147,0.007], + [28149,0.019], + [28151,0.01], + [28153,0], + [28155,0.001], + [28157,0], + [28159,0], + [28161,0.01], + [28163,0.003], + [29001,0.035], + [29003,0.014], + [29005,0.003], + [29007,0.014], + [29009,0.012], + [29011,0.01], + [29013,0.009], + [29015,0.021], + [29017,0.01], + [29019,0.028], + [29021,0.011], + [29023,0.012], + [29025,0.011], + [29027,0.008], + [29029,0.021], + [29031,0.009], + [29033,0.013], + [29035,0], + [29037,0.01], + [29039,0.017], + [29041,0.012], + [29043,0.014], + [29045,0.035], + [29047,0.02], + [29049,0.011], + [29051,0.019], + [29053,0.01], + [29055,0.006], + [29057,0.017], + [29059,0.033], + [29061,0.07], + [29063,0.007], + [29065,0.018], + [29067,0.003], + [29069,0.013], + [29071,0.012], + [29073,0.015], + [29075,0.016], + [29077,0.015], + [29079,0.025], + [29081,0.02], + [29083,0.014], + [29085,0.01], + [29087,0.004], + [29089,0.003], + [29091,0.016], + [29093,0.011], + [29095,0.016], + [29097,0.008], + [29099,0.015], + [29101,0.01], + [29103,0.023], + [29105,0.013], + [29107,0.016], + [29109,0.017], + [29111,0.015], + [29113,0.009], + [29115,0.006], + [29117,0.009], + [29119,0.017], + [29121,0.011], + [29123,0.013], + [29125,0.013], + [29127,0.006], + [29129,0.019], + [29131,0.013], + [29133,0.003], + [29135,0.038], + [29137,0.018], + [29139,0.006], + [29141,0.057], + [29143,0.009], + [29145,0.015], + [29147,0.017], + [29149,0.009], + [29151,0.016], + [29153,0], + [29155,0.015], + [29157,0.024], + [29159,0.039], + [29161,0.032], + [29163,0.013], + [29165,0.025], + [29167,0.026], + [29169,0.048], + [29171,0.027], + [29173,0.009], + [29175,0.006], + [29177,0.017], + [29179,0.015], + [29181,0.014], + [29183,0.025], + [29185,0.007], + [29186,0.013], + [29187,0.006], + [29189,0.039], + [29195,0.009], + [29197,0.029], + [29199,0.084], + [29201,0.011], + [29203,0.001], + [29205,0.021], + [29207,0.006], + [29209,0.012], + [29211,0.008], + [29213,0.014], + [29215,0.013], + [29217,0.016], + [29219,0.011], + [29221,0.013], + [29223,0.007], + [29225,0.027], + [29227,0.015], + [29229,0.033], + [29510,0.029], + [30001,0.013], + [30003,0.008], + [30005,0.019], + [30007,0.022], + [30009,0.032], + [30011,0.021], + [30013,0.016], + [30015,0.009], + [30017,0.028], + [30019,0.018], + [30021,0.002], + [30023,0.007], + [30025,0.001], + [30027,0.013], + [30029,0.015], + [30031,0.023], + [30033,0], + [30035,0.001], + [30037,0.031], + [30039,0.007], + [30041,0.008], + [30043,0.011], + [30045,0.017], + [30047,0.007], + [30049,0.013], + [30051,0.162], + [30053,0.029], + [30055,0.021], + [30057,0.006], + [30059,0.016], + [30061,0.001], + [30063,0.023], + [30065,0.034], + [30067,0.016], + [30069,0.025], + [30071,0.002], + [30073,0.043], + [30075,0.014], + [30077,0.02], + [30079,0.073], + [30081,0.022], + [30083,0.006], + [30085,0.011], + [30087,0.018], + [30089,0.014], + [30091,0.004], + [30093,0.016], + [30095,0.011], + [30097,0.003], + [30099,0.02], + [30101,0.041], + [30103,0.02], + [30105,0.011], + [30107,0.069], + [30109,0], + [30111,0.017], + [31001,0.006], + [31003,0.01], + [31005,0], + [31007,0], + [31009,0.014], + [31011,0.007], + [31013,0.01], + [31015,0.006], + [31017,0.025], + [31019,0.015], + [31021,0.007], + [31023,0.027], + [31025,0.008], + [31027,0.003], + [31029,0.01], + [31031,0.003], + [31033,0.01], + [31035,0.019], + [31037,0.016], + [31039,0.004], + [31041,0.009], + [31043,0.014], + [31045,0.009], + [31047,0.004], + [31049,0.01], + [31051,0.002], + [31053,0.013], + [31055,0.026], + [31057,0], + [31059,0.02], + [31061,0.014], + [31063,0], + [31065,0.001], + [31067,0.011], + [31069,0.001], + [31071,0.014], + [31073,0.006], + [31075,0], + [31077,0.018], + [31079,0.011], + [31081,0.007], + [31083,0.005], + [31085,0], + [31087,0.006], + [31089,0.014], + [31091,0], + [31093,0.016], + [31095,0.012], + [31097,0], + [31099,0.004], + [31101,0.025], + [31103,0], + [31105,0.011], + [31107,0.016], + [31109,0.029], + [31111,0.011], + [31113,0.006], + [31115,0], + [31117,0.005], + [31119,0.006], + [31121,0.023], + [31123,0.007], + [31125,0.015], + [31127,0.007], + [31129,0.019], + [31131,0.004], + [31133,0.05], + [31135,0.034], + [31137,0.01], + [31139,0.005], + [31141,0.009], + [31143,0.009], + [31145,0.011], + [31147,0.01], + [31149,0.005], + [31151,0.011], + [31153,0.022], + [31155,0.021], + [31157,0.012], + [31159,0.024], + [31161,0.013], + [31163,0.012], + [31165,0.004], + [31167,0.009], + [31169,0.017], + [31171,0], + [31173,0.001], + [31175,0.014], + [31177,0.009], + [31179,0.035], + [31181,0.009], + [31183,0], + [31185,0.021], + [32001,0.019], + [32003,0.038], + [32005,0.027], + [32007,0.015], + [32009,0], + [32011,0], + [32013,0.015], + [32015,0.039], + [32017,0], + [32019,0.021], + [32021,0.011], + [32023,0.014], + [32027,0.003], + [32029,0.069], + [32031,0.031], + [32033,0.019], + [32510,0.027], + [33001,0.036], + [33003,0.02], + [33005,0.024], + [33007,0.127], + [33009,0.048], + [33011,0.072], + [33013,0.045], + [33015,0.045], + [33017,0.039], + [33019,0.027], + [34001,0.071], + [34003,0.124], + [34005,0.058], + [34007,0.044], + [34009,0.031], + [34011,0.027], + [34013,0.118], + [34015,0.04], + [34017,0.12], + [34019,0.063], + [34021,0.096], + [34023,0.167], + [34025,0.084], + [34027,0.092], + [34029,0.056], + [34031,0.091], + [34033,0.022], + [34035,0.111], + [34037,0.049], + [34039,0.127], + [34041,0.056], + [35001,0.022], + [35003,0.032], + [35005,0.006], + [35006,0.003], + [35007,0.012], + [35009,0.007], + [35011,0.034], + [35013,0.01], + [35015,0.002], + [35017,0.009], + [35019,0], + [35021,0], + [35023,0.005], + [35025,0.005], + [35027,0.001], + [35028,0.039], + [35029,0.002], + [35031,0.005], + [35033,0.024], + [35035,0.026], + [35037,0.008], + [35039,0.006], + [35041,0.017], + [35043,0.014], + [35045,0.006], + [35047,0.016], + [35049,0.026], + [35051,0.012], + [35053,0.037], + [35055,0.02], + [35057,0.016], + [35059,0.004], + [35061,0.006], + [36001,0.059], + [36003,0.025], + [36005,0.059], + [36007,0.041], + [36009,0.027], + [36011,0.024], + [36013,0.025], + [36015,0.023], + [36017,0.021], + [36019,0.04], + [36021,0.046], + [36023,0.024], + [36025,0.039], + [36027,0.058], + [36029,0.044], + [36031,0.035], + [36033,0.036], + [36035,0.017], + [36037,0.016], + [36039,0.05], + [36041,0.021], + [36043,0.038], + [36045,0.025], + [36047,0.192], + [36049,0.021], + [36051,0.025], + [36053,0.023], + [36055,0.054], + [36057,0.042], + [36059,0.115], + [36061,0.095], + [36063,0.029], + [36065,0.049], + [36067,0.047], + [36069,0.028], + [36071,0.086], + [36073,0.023], + [36075,0.024], + [36077,0.033], + [36079,0.09], + [36081,0.17], + [36083,0.036], + [36085,0.147], + [36087,0.192], + [36089,0.038], + [36091,0.036], + [36093,0.049], + [36095,0.035], + [36097,0.022], + [36099,0.051], + [36101,0.029], + [36103,0.073], + [36105,0.057], + [36107,0.015], + [36109,0.059], + [36111,0.048], + [36113,0.036], + [36115,0.024], + [36117,0.025], + [36119,0.105], + [36121,0.014], + [36123,0.083], + [37001,0.013], + [37003,0.016], + [37005,0.002], + [37007,0.004], + [37009,0.004], + [37011,0.012], + [37013,0.007], + [37015,0.008], + [37017,0.016], + [37019,0.017], + [37021,0.023], + [37023,0.005], + [37025,0.025], + [37027,0.011], + [37029,0.017], + [37031,0.023], + [37033,0.006], + [37035,0.012], + [37037,0.022], + [37039,0.009], + [37041,0.012], + [37043,0.007], + [37045,0.007], + [37047,0.004], + [37049,0.016], + [37051,0.033], + [37053,0.007], + [37055,0.016], + [37057,0.008], + [37059,0.01], + [37061,0.005], + [37063,0.035], + [37065,0.003], + [37067,0.02], + [37069,0.01], + [37071,0.013], + [37073,0.019], + [37075,0], + [37077,0.011], + [37079,0.019], + [37081,0.029], + [37083,0.008], + [37085,0.019], + [37087,0.007], + [37089,0.018], + [37091,0.004], + [37093,0.013], + [37095,0], + [37097,0.019], + [37099,0.01], + [37101,0.015], + [37103,0.005], + [37105,0.01], + [37107,0.005], + [37109,0.011], + [37111,0.005], + [37113,0.012], + [37115,0.013], + [37117,0.007], + [37119,0.043], + [37121,0.006], + [37123,0.005], + [37125,0.02], + [37127,0.005], + [37129,0.025], + [37131,0.005], + [37133,0.024], + [37135,0.048], + [37137,0.014], + [37139,0.016], + [37141,0.018], + [37143,0.013], + [37145,0.014], + [37147,0.011], + [37149,0.021], + [37151,0.009], + [37153,0.003], + [37155,0.006], + [37157,0.007], + [37159,0.008], + [37161,0.011], + [37163,0.003], + [37165,0.004], + [37167,0.01], + [37169,0.008], + [37171,0.007], + [37173,0.007], + [37175,0.019], + [37177,0], + [37179,0.038], + [37181,0.01], + [37183,0.048], + [37185,0.004], + [37187,0.006], + [37189,0.015], + [37191,0.021], + [37193,0.007], + [37195,0.012], + [37197,0.01], + [37199,0.009], + [38001,0], + [38003,0.02], + [38005,0.015], + [38007,0.05], + [38009,0.011], + [38011,0.013], + [38013,0.01], + [38015,0.035], + [38017,0.032], + [38019,0.024], + [38021,0.048], + [38023,0.016], + [38025,0.05], + [38027,0.025], + [38029,0.098], + [38031,0.022], + [38033,0.012], + [38035,0.031], + [38037,0.048], + [38039,0.022], + [38041,0.021], + [38043,0.043], + [38045,0.061], + [38047,0.138], + [38049,0.021], + [38051,0.217], + [38053,0.042], + [38055,0.03], + [38057,0.088], + [38059,0.03], + [38061,0.012], + [38063,0.022], + [38065,0.038], + [38067,0.019], + [38069,0.012], + [38071,0.023], + [38073,0.019], + [38075,0.026], + [38077,0.012], + [38079,0.013], + [38081,0.028], + [38083,0.055], + [38085,0.006], + [38087,0.006], + [38089,0.03], + [38091,0.03], + [38093,0.019], + [38095,0.003], + [38097,0.012], + [38099,0.02], + [38101,0.028], + [38103,0.009], + [38105,0.028], + [39001,0.008], + [39003,0.014], + [39005,0.028], + [39007,0.03], + [39009,0.014], + [39011,0.011], + [39013,0.013], + [39015,0.005], + [39017,0.025], + [39019,0.018], + [39021,0.007], + [39023,0.012], + [39025,0.016], + [39027,0.012], + [39029,0.013], + [39031,0.057], + [39033,0.01], + [39035,0.053], + [39037,0.009], + [39039,0.013], + [39041,0.04], + [39043,0.019], + [39045,0.017], + [39047,0.009], + [39049,0.038], + [39051,0.014], + [39053,0.02], + [39055,0.089], + [39057,0.026], + [39059,0.025], + [39061,0.028], + [39063,0.015], + [39065,0.031], + [39067,0.025], + [39069,0.015], + [39071,0.014], + [39073,0.006], + [39075,0.395], + [39077,0.02], + [39079,0.017], + [39081,0.018], + [39083,0.026], + [39085,0.043], + [39087,0.005], + [39089,0.018], + [39091,0.013], + [39093,0.023], + [39095,0.021], + [39097,0.029], + [39099,0.026], + [39101,0.021], + [39103,0.032], + [39105,0.003], + [39107,0.007], + [39109,0.012], + [39111,0.012], + [39113,0.016], + [39115,0.013], + [39117,0.029], + [39119,0.009], + [39121,0.012], + [39123,0.01], + [39125,0.002], + [39127,0.008], + [39129,0.009], + [39131,0.018], + [39133,0.024], + [39135,0.011], + [39137,0.007], + [39139,0.025], + [39141,0.009], + [39143,0.006], + [39145,0.004], + [39147,0.01], + [39149,0.018], + [39151,0.022], + [39153,0.033], + [39155,0.033], + [39157,0.047], + [39159,0.029], + [39161,0.006], + [39163,0.029], + [39165,0.035], + [39167,0.006], + [39169,0.064], + [39171,0.006], + [39173,0.02], + [39175,0.008], + [40001,0.001], + [40003,0.007], + [40005,0.006], + [40007,0.001], + [40009,0.001], + [40011,0.009], + [40013,0.011], + [40015,0.011], + [40017,0.012], + [40019,0.008], + [40021,0.007], + [40023,0.001], + [40025,0.01], + [40027,0.018], + [40029,0.017], + [40031,0.028], + [40033,0.007], + [40035,0.001], + [40037,0.006], + [40039,0.006], + [40041,0.004], + [40043,0.001], + [40045,0.018], + [40047,0.008], + [40049,0.008], + [40051,0.004], + [40053,0.007], + [40055,0.007], + [40057,0.004], + [40059,0], + [40061,0.004], + [40063,0.004], + [40065,0.016], + [40067,0.002], + [40069,0.008], + [40071,0.008], + [40073,0.006], + [40075,0.014], + [40077,0.004], + [40079,0.004], + [40081,0.005], + [40083,0.004], + [40085,0.005], + [40087,0.006], + [40089,0.007], + [40091,0.001], + [40093,0.002], + [40095,0.008], + [40097,0.017], + [40099,0.006], + [40101,0.007], + [40103,0.006], + [40105,0.006], + [40107,0.022], + [40109,0.016], + [40111,0.006], + [40113,0.005], + [40115,0.005], + [40117,0.001], + [40119,0.02], + [40121,0.008], + [40123,0.01], + [40125,0.011], + [40127,0.006], + [40129,0.001], + [40131,0.01], + [40133,0.01], + [40135,0.005], + [40137,0.007], + [40139,0.006], + [40141,0.006], + [40143,0.017], + [40145,0.009], + [40147,0.01], + [40149,0.011], + [40151,0.006], + [40153,0.006], + [41001,0.017], + [41003,0.034], + [41005,0.041], + [41007,0.019], + [41009,0.012], + [41011,0.014], + [41013,0.019], + [41015,0.027], + [41017,0.023], + [41019,0.015], + [41021,0], + [41023,0.022], + [41025,0.012], + [41027,0.013], + [41029,0.016], + [41031,0.013], + [41033,0.012], + [41035,0.012], + [41037,0.009], + [41039,0.022], + [41041,0.011], + [41043,0.014], + [41045,0.005], + [41047,0.029], + [41049,0.009], + [41051,0.049], + [41053,0.018], + [41055,0.015], + [41057,0.011], + [41059,0.007], + [41061,0.013], + [41063,0.003], + [41065,0.011], + [41067,0.056], + [41069,0.009], + [41071,0.023], + [42001,0.013], + [42003,0.04], + [42005,0.021], + [42007,0.023], + [42009,0.018], + [42011,0.033], + [42013,0.019], + [42015,0.016], + [42017,0.071], + [42019,0.02], + [42021,0.016], + [42023,0.007], + [42025,0.029], + [42027,0.051], + [42029,0.05], + [42031,0.021], + [42033,0.014], + [42035,0.034], + [42037,0.018], + [42039,0.034], + [42041,0.044], + [42043,0.036], + [42045,0.058], + [42047,0.013], + [42049,0.029], + [42051,0.022], + [42053,0.008], + [42055,0.023], + [42057,0.01], + [42059,0.02], + [42061,0.017], + [42063,0.033], + [42065,0.029], + [42067,0.04], + [42069,0.04], + [42071,0.067], + [42073,0.034], + [42075,0.03], + [42077,0.039], + [42079,0.027], + [42081,0.021], + [42083,0.012], + [42085,0.03], + [42087,0.069], + [42089,0.056], + [42091,0.062], + [42093,0.031], + [42095,0.045], + [42097,0.023], + [42099,0.036], + [42101,0.066], + [42103,0.056], + [42105,0.019], + [42107,0.024], + [42109,0.073], + [42111,0.019], + [42113,0.01], + [42115,0.02], + [42117,0.007], + [42119,0.049], + [42121,0.013], + [42123,0.023], + [42125,0.019], + [42127,0.031], + [42129,0.019], + [42131,0.014], + [42133,0.023], + [44001,0.136], + [44003,0.059], + [44005,0.064], + [44007,0.109], + [44009,0.042], + [45001,0.011], + [45003,0.012], + [45005,0.005], + [45007,0.013], + [45009,0.014], + [45011,0.001], + [45013,0.02], + [45015,0.025], + [45017,0.011], + [45019,0.024], + [45021,0.01], + [45023,0.005], + [45025,0.006], + [45027,0.012], + [45029,0.003], + [45031,0.006], + [45033,0.005], + [45035,0.024], + [45037,0.005], + [45039,0.005], + [45041,0.013], + [45043,0.011], + [45045,0.026], + [45047,0.005], + [45049,0.009], + [45051,0.021], + [45053,0.012], + [45055,0.008], + [45057,0.012], + [45059,0.015], + [45061,0.002], + [45063,0.016], + [45065,0.013], + [45067,0.005], + [45069,0.004], + [45071,0.009], + [45073,0.011], + [45075,0.008], + [45077,0.017], + [45079,0.028], + [45081,0.009], + [45083,0.027], + [45085,0.017], + [45087,0.002], + [45089,0.006], + [45091,0.024], + [46003,0.005], + [46005,0.037], + [46007,0.014], + [46009,0.027], + [46011,0.029], + [46013,0.027], + [46015,0.053], + [46017,0], + [46019,0.01], + [46021,0.045], + [46023,0.012], + [46025,0.011], + [46027,0.017], + [46029,0.012], + [46031,0.01], + [46033,0.011], + [46035,0.002], + [46037,0.011], + [46039,0.012], + [46041,0.004], + [46043,0.047], + [46045,0.036], + [46047,0.015], + [46049,0], + [46051,0.021], + [46053,0.016], + [46055,0.01], + [46057,0.014], + [46059,0.017], + [46061,0.044], + [46063,0.015], + [46065,0.012], + [46067,0.053], + [46069,0], + [46071,0.008], + [46073,0.014], + [46075,0.022], + [46077,0.012], + [46079,0.01], + [46081,0.008], + [46083,0.022], + [46085,0.001], + [46087,0.011], + [46089,0.08], + [46091,0.014], + [46093,0.012], + [46095,0.006], + [46097,0.04], + [46099,0.025], + [46101,0.002], + [46102,0.01], + [46103,0.014], + [46105,0.018], + [46107,0.012], + [46109,0.005], + [46111,0.015], + [46115,0.017], + [46117,0.019], + [46119,0.019], + [46121,0.004], + [46123,0.036], + [46125,0.016], + [46127,0.017], + [46129,0.023], + [46135,0.016], + [46137,0.004], + [47001,0.016], + [47003,0.009], + [47005,0.01], + [47007,0.004], + [47009,0.012], + [47011,0.015], + [47013,0.005], + [47015,0.011], + [47017,0.005], + [47019,0.005], + [47021,0.01], + [47023,0.006], + [47025,0.005], + [47027,0], + [47029,0.006], + [47031,0.008], + [47033,0.001], + [47035,0.014], + [47037,0.031], + [47039,0.001], + [47041,0.001], + [47043,0.006], + [47045,0.009], + [47047,0.009], + [47049,0.008], + [47051,0.007], + [47053,0.011], + [47055,0.006], + [47057,0.005], + [47059,0.008], + [47061,0.001], + [47063,0.004], + [47065,0.015], + [47067,0.01], + [47069,0.006], + [47071,0.007], + [47073,0.004], + [47075,0.012], + [47077,0.004], + [47079,0.005], + [47081,0.007], + [47083,0.007], + [47085,0.004], + [47087,0.011], + [47089,0.016], + [47091,0.006], + [47093,0.018], + [47095,0.001], + [47097,0.003], + [47099,0.019], + [47101,0.007], + [47103,0.005], + [47105,0.01], + [47107,0.007], + [47109,0.007], + [47111,0.002], + [47113,0.007], + [47115,0.002], + [47117,0.009], + [47119,0.007], + [47121,0.004], + [47123,0.007], + [47125,0.026], + [47127,0.024], + [47129,0.006], + [47131,0.01], + [47133,0.008], + [47135,0.024], + [47137,0], + [47139,0.006], + [47141,0.009], + [47143,0.008], + [47145,0.013], + [47147,0.009], + [47149,0.015], + [47151,0.001], + [47153,0.009], + [47155,0.016], + [47157,0.018], + [47159,0.002], + [47161,0.014], + [47163,0.009], + [47165,0.019], + [47167,0.006], + [47169,0.002], + [47171,0.008], + [47173,0.012], + [47175,0.014], + [47177,0.009], + [47179,0.016], + [47181,0.01], + [47183,0.005], + [47185,0.007], + [47187,0.031], + [47189,0.018], + [48001,0.005], + [48003,0.012], + [48005,0.007], + [48007,0.005], + [48009,0.001], + [48011,0], + [48013,0.012], + [48015,0.021], + [48017,0], + [48019,0.016], + [48021,0.023], + [48023,0.007], + [48025,0.012], + [48027,0.03], + [48029,0.022], + [48031,0.01], + [48033,0.026], + [48035,0.012], + [48037,0.004], + [48039,0.02], + [48041,0.03], + [48043,0.018], + [48045,0.007], + [48047,0], + [48049,0.007], + [48051,0.025], + [48053,0.007], + [48055,0.01], + [48057,0.001], + [48059,0.015], + [48061,0.004], + [48063,0.007], + [48065,0.01], + [48067,0.006], + [48069,0], + [48071,0.017], + [48073,0.005], + [48075,0], + [48077,0.002], + [48079,0.007], + [48081,0.002], + [48083,0.001], + [48085,0.075], + [48087,0.028], + [48089,0.018], + [48091,0.028], + [48093,0.008], + [48095,0.003], + [48097,0.009], + [48099,0.042], + [48101,0.023], + [48103,0], + [48105,0], + [48107,0.002], + [48109,0], + [48111,0.055], + [48113,0.034], + [48115,0.012], + [48117,0.003], + [48119,0.004], + [48121,0.046], + [48123,0.011], + [48125,0.017], + [48127,0], + [48129,0.004], + [48131,0.01], + [48133,0.005], + [48135,0.009], + [48137,0.016], + [48139,0.008], + [48141,0.012], + [48143,0.013], + [48145,0.017], + [48147,0.014], + [48149,0.035], + [48151,0.019], + [48153,0], + [48155,0], + [48157,0.088], + [48159,0.022], + [48161,0.014], + [48163,0], + [48165,0.249], + [48167,0.022], + [48169,0], + [48171,0.055], + [48173,0.042], + [48175,0.021], + [48177,0.004], + [48179,0.007], + [48181,0.007], + [48183,0.007], + [48185,0.012], + [48187,0.02], + [48189,0.008], + [48191,0], + [48193,0.006], + [48195,0], + [48197,0.001], + [48199,0.009], + [48201,0.039], + [48203,0.004], + [48205,0.021], + [48207,0.003], + [48209,0.017], + [48211,0.014], + [48213,0.01], + [48215,0.005], + [48217,0.009], + [48219,0.002], + [48221,0.009], + [48223,0.014], + [48225,0.001], + [48227,0.006], + [48229,0.007], + [48231,0.008], + [48233,0.006], + [48235,0], + [48237,0.003], + [48239,0.011], + [48241,0.015], + [48243,0.028], + [48245,0.022], + [48247,0], + [48249,0.01], + [48251,0.01], + [48253,0.003], + [48255,0.026], + [48257,0.007], + [48259,0.017], + [48261,0], + [48263,0], + [48265,0.01], + [48267,0.003], + [48269,0], + [48271,0], + [48273,0.004], + [48275,0.039], + [48277,0.015], + [48279,0.003], + [48281,0.027], + [48283,0], + [48285,0.045], + [48287,0.03], + [48289,0.004], + [48291,0.01], + [48293,0.004], + [48295,0.006], + [48297,0.027], + [48299,0.009], + [48301,0], + [48303,0.019], + [48305,0.019], + [48307,0.014], + [48309,0.013], + [48311,0.026], + [48313,0.012], + [48315,0.003], + [48317,0.025], + [48319,0.035], + [48321,0.002], + [48323,0], + [48325,0.008], + [48327,0], + [48329,0.01], + [48331,0.01], + [48333,0.004], + [48335,0.004], + [48337,0.009], + [48339,0.027], + [48341,0.012], + [48343,0.008], + [48345,0], + [48347,0.01], + [48349,0.009], + [48351,0.012], + [48353,0.009], + [48355,0.012], + [48357,0], + [48359,0], + [48361,0.019], + [48363,0.012], + [48365,0.009], + [48367,0.012], + [48369,0.012], + [48371,0.005], + [48373,0.009], + [48375,0.007], + [48377,0], + [48379,0.006], + [48381,0.013], + [48383,0.003], + [48385,0.005], + [48387,0.003], + [48389,0.003], + [48391,0.009], + [48393,0], + [48395,0.014], + [48397,0.025], + [48399,0.003], + [48401,0.011], + [48403,0.004], + [48405,0.002], + [48407,0.005], + [48409,0.006], + [48411,0.009], + [48413,0], + [48415,0.003], + [48417,0], + [48419,0.003], + [48421,0.002], + [48423,0.01], + [48425,0], + [48427,0], + [48429,0.004], + [48431,0], + [48433,0], + [48435,0.008], + [48437,0.001], + [48439,0.03], + [48441,0.022], + [48443,0.024], + [48445,0.033], + [48447,0], + [48449,0.01], + [48451,0.01], + [48453,0.04], + [48455,0.005], + [48457,0.02], + [48459,0.002], + [48461,0], + [48463,0.004], + [48465,0.007], + [48467,0.007], + [48469,0.01], + [48471,0.01], + [48473,0.013], + [48475,0.001], + [48477,0.014], + [48479,0.003], + [48481,0.011], + [48483,0.002], + [48485,0.014], + [48487,0.001], + [48489,0.002], + [48491,0.044], + [48493,0.026], + [48495,0], + [48497,0.007], + [48499,0.007], + [48501,0.034], + [48503,0.005], + [48505,0.003], + [48507,0], + [49001,0.002], + [49003,0.015], + [49005,0.026], + [49007,0.013], + [49009,0], + [49011,0.032], + [49013,0.006], + [49015,0.018], + [49017,0.053], + [49019,0.013], + [49021,0.019], + [49023,0.006], + [49025,0.02], + [49027,0.009], + [49029,0.027], + [49031,0.011], + [49033,0], + [49035,0.046], + [49037,0.02], + [49039,0.012], + [49041,0.015], + [49043,0.032], + [49045,0.02], + [49047,0.01], + [49049,0.04], + [49051,0.019], + [49053,0.02], + [49055,0.019], + [49057,0.02], + [50001,0.03], + [50003,0.033], + [50005,0.034], + [50007,0.068], + [50009,0.091], + [50011,0.041], + [50013,0.049], + [50015,0.036], + [50017,0.035], + [50019,0.08], + [50021,0.028], + [50023,0.037], + [50025,0.026], + [50027,0.033], + [51001,0.029], + [51003,0.042], + [51005,0.005], + [51007,0.011], + [51009,0.012], + [51011,0.002], + [51013,0.083], + [51015,0.011], + [51017,0], + [51019,0.019], + [51021,0.002], + [51023,0.02], + [51025,0.011], + [51027,0.007], + [51029,0.01], + [51031,0.009], + [51033,0.024], + [51035,0.007], + [51036,0.012], + [51037,0.011], + [51041,0.029], + [51043,0.018], + [51045,0.001], + [51047,0.028], + [51049,0.032], + [51051,0.004], + [51053,0.011], + [51057,0.012], + [51059,0.098], + [51061,0.024], + [51063,0.012], + [51065,0.033], + [51067,0.01], + [51069,0.017], + [51071,0.004], + [51073,0.022], + [51075,0.027], + [51077,0.007], + [51079,0.022], + [51081,0.016], + [51083,0.013], + [51085,0.012], + [51087,0.048], + [51089,0.01], + [51091,0], + [51093,0.022], + [51095,0.041], + [51097,0], + [51099,0.015], + [51101,0.014], + [51103,0.032], + [51105,0.002], + [51107,0.107], + [51109,0.024], + [51111,0.01], + [51113,0.014], + [51115,0.034], + [51117,0.007], + [51119,0.017], + [51121,0.038], + [51125,0.022], + [51127,0.026], + [51131,0.019], + [51133,0.02], + [51135,0], + [51137,0.013], + [51139,0.012], + [51141,0.014], + [51143,0.015], + [51145,0.016], + [51147,0.018], + [51149,0.031], + [51153,0.066], + [51155,0.008], + [51157,0.026], + [51159,0.001], + [51161,0.023], + [51163,0.019], + [51165,0.023], + [51167,0.004], + [51169,0.01], + [51171,0.018], + [51173,0.011], + [51175,0.009], + [51177,0.021], + [51179,0.037], + [51181,0.013], + [51183,0.015], + [51185,0.003], + [51187,0.025], + [51191,0.005], + [51193,0.015], + [51195,0.01], + [51197,0.005], + [51199,0.044], + [51510,0.073], + [51520,0.019], + [51530,0], + [51540,0.052], + [51550,0.028], + [51570,0.033], + [51580,0.012], + [51590,0.015], + [51595,0.001], + [51600,0.075], + [51610,0.077], + [51620,0.002], + [51630,0.046], + [51640,0.007], + [51650,0.013], + [51660,0.053], + [51670,0.03], + [51678,0.007], + [51680,0.015], + [51683,0.05], + [51685,0.092], + [51690,0.028], + [51700,0.035], + [51710,0.026], + [51720,0.023], + [51730,0.017], + [51735,0.026], + [51740,0.008], + [51750,0.025], + [51760,0.023], + [51770,0.032], + [51775,0.021], + [51790,0.024], + [51800,0.019], + [51810,0.032], + [51820,0.013], + [51830,0.037], + [51840,0.02], + [53001,0.013], + [53003,0.011], + [53005,0.032], + [53007,0.018], + [53009,0.016], + [53011,0.054], + [53013,0.013], + [53015,0.017], + [53017,0.022], + [53019,0.019], + [53021,0.024], + [53023,0.022], + [53025,0.021], + [53027,0.017], + [53029,0.023], + [53031,0.033], + [53033,0.073], + [53035,0.02], + [53037,0.018], + [53039,0.013], + [53041,0.013], + [53043,0.01], + [53045,0.01], + [53047,0.007], + [53049,0.007], + [53051,0.009], + [53053,0.035], + [53055,0.023], + [53057,0.025], + [53059,0.007], + [53061,0.058], + [53063,0.031], + [53065,0.014], + [53067,0.034], + [53069,0.008], + [53071,0.022], + [53073,0.039], + [53075,0.051], + [53077,0.012], + [54001,0.012], + [54003,0.018], + [54005,0.001], + [54007,0.003], + [54009,0.019], + [54011,0.008], + [54013,0.018], + [54015,0.004], + [54017,0.006], + [54019,0.009], + [54021,0.002], + [54023,0.01], + [54025,0.013], + [54027,0.008], + [54029,0.016], + [54031,0.01], + [54033,0.007], + [54035,0.009], + [54037,0.028], + [54039,0.011], + [54041,0.005], + [54043,0.002], + [54045,0.002], + [54047,0.004], + [54049,0.013], + [54051,0.005], + [54053,0.004], + [54055,0.009], + [54057,0.007], + [54059,0.003], + [54061,0.035], + [54063,0.006], + [54065,0.008], + [54067,0.005], + [54069,0.013], + [54071,0.008], + [54073,0.009], + [54075,0.012], + [54077,0.004], + [54079,0.01], + [54081,0.011], + [54083,0.003], + [54085,0.007], + [54087,0.013], + [54089,0.003], + [54091,0.004], + [54093,0.007], + [54095,0.005], + [54097,0.007], + [54099,0.007], + [54101,0.004], + [54103,0.004], + [54105,0.016], + [54107,0.008], + [54109,0], + [55001,0.024], + [55003,0.018], + [55005,0.015], + [55007,0.016], + [55009,0.017], + [55011,0.014], + [55013,0.012], + [55015,0.013], + [55017,0.013], + [55019,0.083], + [55021,0.024], + [55023,0.023], + [55025,0.03], + [55027,0.019], + [55029,0.027], + [55031,0.014], + [55033,0.014], + [55035,0.016], + [55037,0.011], + [55039,0.019], + [55041,0.013], + [55043,0.026], + [55045,0.014], + [55047,0.04], + [55049,0.018], + [55051,0.019], + [55053,0.026], + [55055,0.015], + [55057,0.021], + [55059,0.032], + [55061,0.011], + [55063,0.022], + [55065,0.035], + [55067,0.012], + [55069,0.017], + [55071,0.014], + [55073,0.021], + [55075,0.014], + [55077,0.02], + [55078,0.005], + [55079,0.034], + [55081,0.029], + [55083,0.015], + [55085,0.013], + [55087,0.016], + [55089,0.034], + [55091,0.025], + [55093,0.016], + [55095,0.012], + [55097,0.024], + [55099,0.023], + [55101,0.024], + [55103,0.022], + [55105,0.016], + [55107,0.021], + [55109,0.018], + [55111,0.029], + [55113,0.01], + [55115,0.013], + [55117,0.021], + [55119,0.027], + [55121,0.021], + [55123,0.053], + [55125,0.018], + [55127,0.019], + [55129,0.017], + [55131,0.022], + [55133,0.033], + [55135,0.015], + [55137,0.022], + [55139,0.017], + [55141,0.017], + [56001,0.035], + [56003,0.014], + [56005,0.002], + [56007,0.019], + [56009,0.016], + [56011,0.024], + [56013,0.016], + [56015,0.013], + [56017,0.004], + [56019,0.029], + [56021,0.014], + [56023,0.005], + [56025,0.017], + [56027,0], + [56029,0.019], + [56031,0.009], + [56033,0.013], + [56035,0.032], + [56037,0.02], + [56039,0.031], + [56041,0.016], + [56043,0.016], + [56045,0.002] + ] +} diff --git a/data/regional/united-states/culture/language/us-language-household-nonenglish-2010.json b/data/regional/united-states/culture/language/us-language-household-nonenglish-2010.json new file mode 100644 index 0000000..1a42999 --- /dev/null +++ b/data/regional/united-states/culture/language/us-language-household-nonenglish-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Non-English Spoken At Home", + "description" : "Percent of the population that speaks a language other than English at home.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","language"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.language.household.nonenglish.2010"], + [1001,0.037], + [1003,0.055], + [1005,0.047], + [1007,0.015], + [1009,0.072], + [1011,0.038], + [1013,0.016], + [1015,0.045], + [1017,0.016], + [1019,0.014], + [1021,0.06], + [1023,0.016], + [1025,0.011], + [1027,0.028], + [1029,0.018], + [1031,0.063], + [1033,0.026], + [1035,0.01], + [1037,0.014], + [1039,0.022], + [1041,0.046], + [1043,0.042], + [1045,0.062], + [1047,0.014], + [1049,0.104], + [1051,0.037], + [1053,0.016], + [1055,0.03], + [1057,0.014], + [1059,0.116], + [1061,0.03], + [1063,0.013], + [1065,0.018], + [1067,0.034], + [1069,0.041], + [1071,0.029], + [1073,0.057], + [1075,0.01], + [1077,0.028], + [1079,0.021], + [1081,0.066], + [1083,0.057], + [1085,0.008], + [1087,0.028], + [1089,0.067], + [1091,0.009], + [1093,0.028], + [1095,0.102], + [1097,0.048], + [1099,0.023], + [1101,0.054], + [1103,0.067], + [1105,0.009], + [1107,0.015], + [1109,0.057], + [1111,0.029], + [1113,0.037], + [1115,0.028], + [1117,0.075], + [1119,0.005], + [1121,0.025], + [1123,0.027], + [1125,0.059], + [1127,0.014], + [1129,0.009], + [1131,0.007], + [1133,0.02], + [2013,0.807], + [2016,0.641], + [2020,0.163], + [2050,0.687], + [2060,0.036], + [2068,0.042], + [2070,0.351], + [2090,0.109], + [2100,0.015], + [2105,0.144], + [2110,0.109], + [2122,0.1], + [2130,0.111], + [2150,0.238], + [2158,0.581], + [2164,0.147], + [2170,0.057], + [2180,0.279], + [2185,0.486], + [2188,0.351], + [2195,0.066], + [2198,0.05], + [2220,0.116], + [2230,0.201], + [2240,0.157], + [2261,0.076], + [2275,0.063], + [2282,0.133], + [2290,0.191], + [4001,0.615], + [4003,0.27], + [4005,0.252], + [4007,0.169], + [4009,0.223], + [4011,0.236], + [4012,0.177], + [4013,0.265], + [4015,0.107], + [4017,0.366], + [4019,0.282], + [4021,0.233], + [4023,0.811], + [4025,0.112], + [4027,0.502], + [5001,0.03], + [5003,0.04], + [5005,0.027], + [5007,0.148], + [5009,0.023], + [5011,0.112], + [5013,0.039], + [5015,0.114], + [5017,0.043], + [5019,0.042], + [5021,0.012], + [5023,0.022], + [5025,0.008], + [5027,0.032], + [5029,0.027], + [5031,0.047], + [5033,0.059], + [5035,0.024], + [5037,0.01], + [5039,0.016], + [5041,0.031], + [5043,0.037], + [5045,0.047], + [5047,0.028], + [5049,0.006], + [5051,0.067], + [5053,0.022], + [5055,0.021], + [5057,0.107], + [5059,0.022], + [5061,0.093], + [5063,0.048], + [5065,0.02], + [5067,0.016], + [5069,0.032], + [5071,0.129], + [5073,0.01], + [5075,0.007], + [5077,0.028], + [5079,0.029], + [5081,0.01], + [5083,0.028], + [5085,0.026], + [5087,0.045], + [5089,0.017], + [5091,0.035], + [5093,0.04], + [5095,0.021], + [5097,0.027], + [5099,0.01], + [5101,0.018], + [5103,0.012], + [5105,0.007], + [5107,0.01], + [5109,0.041], + [5111,0.027], + [5113,0.05], + [5115,0.067], + [5117,0.01], + [5119,0.077], + [5121,0.016], + [5123,0.042], + [5125,0.037], + [5127,0.082], + [5129,0.023], + [5131,0.128], + [5133,0.267], + [5135,0.022], + [5137,0.013], + [5139,0.039], + [5141,0.015], + [5143,0.17], + [5145,0.035], + [5147,0.002], + [5149,0.177], + [6001,0.426], + [6003,0.125], + [6005,0.084], + [6007,0.146], + [6009,0.065], + [6011,0.457], + [6013,0.324], + [6015,0.167], + [6017,0.118], + [6019,0.426], + [6021,0.326], + [6023,0.092], + [6025,0.73], + [6027,0.158], + [6029,0.41], + [6031,0.426], + [6033,0.132], + [6035,0.169], + [6037,0.564], + [6039,0.42], + [6041,0.231], + [6043,0.073], + [6045,0.2], + [6047,0.515], + [6049,0.139], + [6051,0.241], + [6053,0.519], + [6055,0.335], + [6057,0.066], + [6059,0.444], + [6061,0.139], + [6063,0.076], + [6065,0.395], + [6067,0.302], + [6069,0.399], + [6071,0.405], + [6073,0.363], + [6075,0.454], + [6077,0.386], + [6079,0.167], + [6081,0.447], + [6083,0.387], + [6085,0.507], + [6087,0.299], + [6089,0.085], + [6091,0.06], + [6093,0.105], + [6095,0.294], + [6097,0.24], + [6099,0.402], + [6101,0.345], + [6103,0.196], + [6105,0.061], + [6107,0.468], + [6109,0.071], + [6111,0.374], + [6113,0.342], + [6115,0.256], + [8001,0.272], + [8003,0.258], + [8005,0.217], + [8007,0.075], + [8009,0.047], + [8011,0.188], + [8013,0.162], + [8014,0.124], + [8015,0.063], + [8017,0.074], + [8019,0.039], + [8021,0.396], + [8023,0.527], + [8025,0.137], + [8027,0.013], + [8029,0.111], + [8031,0.277], + [8033,0.035], + [8035,0.091], + [8037,0.307], + [8039,0.047], + [8041,0.115], + [8043,0.143], + [8045,0.247], + [8047,0.068], + [8049,0.095], + [8051,0.1], + [8053,0.132], + [8055,0.184], + [8057,0.042], + [8059,0.108], + [8061,0.027], + [8063,0.149], + [8065,0.299], + [8067,0.098], + [8069,0.087], + [8071,0.149], + [8073,0.082], + [8075,0.091], + [8077,0.091], + [8079,0.034], + [8081,0.11], + [8083,0.134], + [8085,0.136], + [8087,0.259], + [8089,0.193], + [8091,0.066], + [8093,0.044], + [8095,0.161], + [8097,0.162], + [8099,0.246], + [8101,0.141], + [8103,0.082], + [8105,0.269], + [8107,0.06], + [8109,0.358], + [8111,0.046], + [8113,0.106], + [8115,0.073], + [8117,0.153], + [8119,0.053], + [8121,0.062], + [8123,0.189], + [8125,0.155], + [9001,0.274], + [9003,0.239], + [9005,0.088], + [9007,0.117], + [9009,0.198], + [9011,0.134], + [9013,0.099], + [9015,0.119], + [10001,0.093], + [10003,0.141], + [10005,0.096], + [11001,0.146], + [12001,0.136], + [12003,0.023], + [12005,0.077], + [12007,0.03], + [12009,0.098], + [12011,0.366], + [12013,0.064], + [12015,0.093], + [12017,0.065], + [12019,0.093], + [12021,0.306], + [12023,0.058], + [12027,0.285], + [12029,0.037], + [12031,0.126], + [12033,0.082], + [12035,0.15], + [12037,0.069], + [12039,0.09], + [12041,0.034], + [12043,0.226], + [12045,0.053], + [12047,0.082], + [12049,0.403], + [12051,0.417], + [12053,0.11], + [12055,0.179], + [12057,0.254], + [12059,0.045], + [12061,0.143], + [12063,0.049], + [12065,0.065], + [12067,0.088], + [12069,0.118], + [12071,0.21], + [12073,0.089], + [12075,0.065], + [12077,0.053], + [12079,0.064], + [12081,0.161], + [12083,0.116], + [12085,0.14], + [12086,0.719], + [12087,0.224], + [12089,0.043], + [12091,0.089], + [12093,0.228], + [12095,0.326], + [12097,0.445], + [12099,0.269], + [12101,0.131], + [12103,0.128], + [12105,0.182], + [12107,0.087], + [12109,0.08], + [12111,0.199], + [12113,0.07], + [12115,0.124], + [12117,0.182], + [12119,0.087], + [12121,0.068], + [12123,0.042], + [12125,0.087], + [12127,0.127], + [12129,0.036], + [12131,0.07], + [12133,0.056], + [13001,0.097], + [13003,0.179], + [13005,0.06], + [13007,0.003], + [13009,0.044], + [13011,0.052], + [13013,0.107], + [13015,0.072], + [13017,0.064], + [13019,0.042], + [13021,0.051], + [13023,0.034], + [13025,0.02], + [13027,0.048], + [13029,0.067], + [13031,0.06], + [13033,0.014], + [13035,0.03], + [13037,0.07], + [13039,0.053], + [13043,0.094], + [13045,0.074], + [13047,0.031], + [13049,0.015], + [13051,0.075], + [13053,0.138], + [13055,0.038], + [13057,0.119], + [13059,0.134], + [13061,0.008], + [13063,0.204], + [13065,0.008], + [13067,0.195], + [13069,0.098], + [13071,0.162], + [13073,0.096], + [13075,0.068], + [13077,0.075], + [13079,0.035], + [13081,0.036], + [13083,0.026], + [13085,0.042], + [13087,0.028], + [13089,0.181], + [13091,0.032], + [13093,0.042], + [13095,0.036], + [13097,0.103], + [13099,0.009], + [13101,0.236], + [13103,0.034], + [13105,0.047], + [13107,0.054], + [13109,0.126], + [13111,0.04], + [13113,0.108], + [13115,0.092], + [13117,0.165], + [13119,0.04], + [13121,0.159], + [13123,0.078], + [13125,0.006], + [13127,0.08], + [13129,0.135], + [13131,0.083], + [13133,0.035], + [13135,0.322], + [13137,0.118], + [13139,0.25], + [13141,0.018], + [13143,0.019], + [13145,0.043], + [13147,0.034], + [13149,0.025], + [13151,0.1], + [13153,0.076], + [13155,0.065], + [13157,0.075], + [13159,0.042], + [13161,0.09], + [13163,0.027], + [13165,0.061], + [13167,0.029], + [13169,0.029], + [13171,0.021], + [13173,0.04], + [13175,0.037], + [13177,0.055], + [13179,0.111], + [13181,0.024], + [13183,0.079], + [13185,0.066], + [13187,0.057], + [13189,0.024], + [13191,0.023], + [13193,0.06], + [13195,0.038], + [13197,0.076], + [13199,0.016], + [13201,0.015], + [13205,0.042], + [13207,0.026], + [13209,0.064], + [13211,0.03], + [13213,0.121], + [13215,0.091], + [13217,0.063], + [13219,0.071], + [13221,0.046], + [13223,0.055], + [13225,0.072], + [13227,0.044], + [13229,0.047], + [13231,0.022], + [13233,0.11], + [13235,0.022], + [13237,0.076], + [13239,0.017], + [13241,0.086], + [13243,0.017], + [13245,0.064], + [13247,0.118], + [13249,0.084], + [13251,0.01], + [13253,0.015], + [13255,0.046], + [13257,0.038], + [13259,0.011], + [13261,0.062], + [13263,0.021], + [13265,0.031], + [13267,0.111], + [13269,0.013], + [13271,0.12], + [13273,0.037], + [13275,0.032], + [13277,0.119], + [13279,0.118], + [13281,0.033], + [13283,0.027], + [13285,0.05], + [13287,0.036], + [13289,0.013], + [13291,0.047], + [13293,0.028], + [13295,0.025], + [13297,0.054], + [13299,0.051], + [13301,0.009], + [13303,0.023], + [13305,0.06], + [13307,0.058], + [13309,0.023], + [13311,0.024], + [13313,0.299], + [13315,0.024], + [13317,0.034], + [13319,0.02], + [13321,0.023], + [15001,0.191], + [15003,0.281], + [15005,0.257], + [15007,0.192], + [15009,0.198], + [16001,0.09], + [16003,0.015], + [16005,0.064], + [16007,0.033], + [16009,0.031], + [16011,0.155], + [16013,0.185], + [16015,0.035], + [16017,0.033], + [16019,0.099], + [16021,0.05], + [16023,0.023], + [16025,0.118], + [16027,0.189], + [16029,0.039], + [16031,0.179], + [16033,0.424], + [16035,0.046], + [16037,0.027], + [16039,0.126], + [16041,0.064], + [16043,0.128], + [16045,0.084], + [16047,0.148], + [16049,0.031], + [16051,0.096], + [16053,0.178], + [16055,0.038], + [16057,0.062], + [16059,0.028], + [16061,0.051], + [16063,0.199], + [16065,0.097], + [16067,0.244], + [16069,0.053], + [16071,0.025], + [16073,0.198], + [16075,0.095], + [16077,0.25], + [16079,0.015], + [16081,0.148], + [16083,0.121], + [16085,0.031], + [16087,0.156], + [17001,0.024], + [17003,0.043], + [17005,0.022], + [17007,0.189], + [17009,0.07], + [17011,0.072], + [17013,0.026], + [17015,0.037], + [17017,0.161], + [17019,0.151], + [17021,0.031], + [17023,0.018], + [17025,0.019], + [17027,0.036], + [17029,0.04], + [17031,0.337], + [17033,0.041], + [17035,0.01], + [17037,0.115], + [17039,0.027], + [17041,0.168], + [17043,0.261], + [17045,0.019], + [17047,0.008], + [17049,0.023], + [17051,0.03], + [17053,0.028], + [17055,0.013], + [17057,0.048], + [17059,0.01], + [17061,0.019], + [17063,0.07], + [17065,0.012], + [17067,0.02], + [17069,0.012], + [17071,0.038], + [17073,0.039], + [17075,0.065], + [17077,0.081], + [17079,0.01], + [17081,0.031], + [17083,0.019], + [17085,0.048], + [17087,0.023], + [17089,0.301], + [17091,0.075], + [17093,0.16], + [17095,0.039], + [17097,0.272], + [17099,0.064], + [17101,0.039], + [17103,0.036], + [17105,0.04], + [17107,0.031], + [17109,0.056], + [17111,0.143], + [17113,0.077], + [17115,0.03], + [17117,0.021], + [17119,0.037], + [17121,0.022], + [17123,0.032], + [17125,0.025], + [17127,0.031], + [17129,0.013], + [17131,0.017], + [17133,0.036], + [17135,0.032], + [17137,0.025], + [17139,0.083], + [17141,0.072], + [17143,0.065], + [17145,0.039], + [17147,0.019], + [17149,0.03], + [17151,0.017], + [17153,0.047], + [17155,0.036], + [17157,0.032], + [17159,0.021], + [17161,0.106], + [17163,0.047], + [17165,0.024], + [17167,0.047], + [17169,0.039], + [17171,0.018], + [17173,0.023], + [17175,0.008], + [17177,0.042], + [17179,0.025], + [17181,0.059], + [17183,0.046], + [17185,0.018], + [17187,0.08], + [17189,0.025], + [17191,0.018], + [17193,0.017], + [17195,0.07], + [17197,0.192], + [17199,0.026], + [17201,0.12], + [17203,0.026], + [18001,0.161], + [18003,0.086], + [18005,0.078], + [18007,0.042], + [18009,0.009], + [18011,0.043], + [18013,0.028], + [18015,0.029], + [18017,0.116], + [18019,0.05], + [18021,0.025], + [18023,0.115], + [18025,0.014], + [18027,0.163], + [18029,0.025], + [18031,0.031], + [18033,0.037], + [18035,0.031], + [18037,0.071], + [18039,0.173], + [18041,0.024], + [18043,0.031], + [18045,0.025], + [18047,0.018], + [18049,0.065], + [18051,0.018], + [18053,0.034], + [18055,0.017], + [18057,0.092], + [18059,0.026], + [18061,0.021], + [18063,0.055], + [18065,0.019], + [18067,0.038], + [18069,0.019], + [18071,0.059], + [18073,0.032], + [18075,0.028], + [18077,0.03], + [18079,0.031], + [18081,0.044], + [18083,0.028], + [18085,0.108], + [18087,0.379], + [18089,0.145], + [18091,0.059], + [18093,0.021], + [18095,0.031], + [18097,0.114], + [18099,0.119], + [18101,0.018], + [18103,0.048], + [18105,0.092], + [18107,0.045], + [18109,0.016], + [18111,0.048], + [18113,0.117], + [18115,0.023], + [18117,0.051], + [18119,0.023], + [18121,0.08], + [18123,0.017], + [18125,0.02], + [18127,0.074], + [18129,0.023], + [18131,0.016], + [18133,0.036], + [18135,0.034], + [18137,0.038], + [18139,0.031], + [18141,0.096], + [18143,0.019], + [18145,0.045], + [18147,0.032], + [18149,0.028], + [18151,0.043], + [18153,0.019], + [18155,0.024], + [18157,0.133], + [18159,0.026], + [18161,0.027], + [18163,0.04], + [18165,0.013], + [18167,0.049], + [18169,0.031], + [18171,0.029], + [18173,0.04], + [18175,0.028], + [18177,0.043], + [18179,0.028], + [18181,0.064], + [18183,0.036], + [19001,0.023], + [19003,0.019], + [19005,0.078], + [19007,0.015], + [19009,0.015], + [19011,0.022], + [19013,0.071], + [19015,0.023], + [19017,0.026], + [19019,0.043], + [19021,0.259], + [19023,0.024], + [19025,0.023], + [19027,0.023], + [19029,0.025], + [19031,0.021], + [19033,0.045], + [19035,0.022], + [19037,0.045], + [19039,0.093], + [19041,0.036], + [19043,0.035], + [19045,0.02], + [19047,0.204], + [19049,0.093], + [19051,0.163], + [19053,0.054], + [19055,0.015], + [19057,0.033], + [19059,0.024], + [19061,0.034], + [19063,0.061], + [19065,0.037], + [19067,0.052], + [19069,0.089], + [19071,0.021], + [19073,0.031], + [19075,0.03], + [19077,0.021], + [19079,0.053], + [19081,0.035], + [19083,0.041], + [19085,0.023], + [19087,0.064], + [19089,0.036], + [19091,0.031], + [19093,0.031], + [19095,0.036], + [19097,0.019], + [19099,0.029], + [19101,0.101], + [19103,0.114], + [19105,0.024], + [19107,0.016], + [19109,0.024], + [19111,0.033], + [19113,0.047], + [19115,0.142], + [19117,0.061], + [19119,0.029], + [19121,0.014], + [19123,0.023], + [19125,0.028], + [19127,0.163], + [19129,0.037], + [19131,0.036], + [19133,0.029], + [19135,0.022], + [19137,0.051], + [19139,0.141], + [19141,0.039], + [19143,0.044], + [19145,0.046], + [19147,0.014], + [19149,0.031], + [19151,0.02], + [19153,0.116], + [19155,0.058], + [19157,0.043], + [19159,0.063], + [19161,0.031], + [19163,0.061], + [19165,0.024], + [19167,0.083], + [19169,0.086], + [19171,0.116], + [19173,0.048], + [19175,0.017], + [19177,0.047], + [19179,0.088], + [19181,0.025], + [19183,0.097], + [19185,0.064], + [19187,0.04], + [19189,0.059], + [19191,0.036], + [19193,0.137], + [19195,0.026], + [19197,0.073], + [20001,0.01], + [20003,0.034], + [20005,0.019], + [20007,0.02], + [20009,0.113], + [20011,0.013], + [20013,0.032], + [20015,0.034], + [20017,0.033], + [20019,0.036], + [20021,0.03], + [20023,0.021], + [20025,0.028], + [20027,0.038], + [20029,0.025], + [20031,0.017], + [20033,0.036], + [20035,0.072], + [20037,0.056], + [20039,0.023], + [20041,0.015], + [20043,0.015], + [20045,0.09], + [20047,0.141], + [20049,0.024], + [20051,0.063], + [20053,0.043], + [20055,0.414], + [20057,0.437], + [20059,0.031], + [20061,0.117], + [20063,0.027], + [20065,0.018], + [20067,0.343], + [20069,0.191], + [20071,0.13], + [20073,0.015], + [20075,0.227], + [20077,0.04], + [20079,0.08], + [20081,0.243], + [20083,0.045], + [20085,0.036], + [20087,0.02], + [20089,0.016], + [20091,0.109], + [20093,0.268], + [20095,0.023], + [20097,0.042], + [20099,0.035], + [20101,0.051], + [20103,0.064], + [20105,0.023], + [20107,0.02], + [20109,0.029], + [20111,0.181], + [20113,0.042], + [20115,0.05], + [20117,0.032], + [20119,0.136], + [20121,0.02], + [20123,0.03], + [20125,0.038], + [20127,0.024], + [20129,0.117], + [20131,0.017], + [20133,0.024], + [20135,0.04], + [20137,0.043], + [20139,0.031], + [20141,0.011], + [20143,0.015], + [20145,0.071], + [20147,0.022], + [20149,0.045], + [20151,0.041], + [20153,0.037], + [20155,0.064], + [20157,0.021], + [20159,0.087], + [20161,0.086], + [20163,0.026], + [20165,0.048], + [20167,0.054], + [20169,0.087], + [20171,0.171], + [20173,0.128], + [20175,0.517], + [20177,0.084], + [20179,0.014], + [20181,0.07], + [20183,0.009], + [20185,0.09], + [20187,0.313], + [20189,0.277], + [20191,0.026], + [20193,0.053], + [20195,0.055], + [20197,0.017], + [20199,0.036], + [20201,0.036], + [20203,0.208], + [20205,0.017], + [20207,0.014], + [20209,0.236], + [21001,0.037], + [21003,0.044], + [21005,0.035], + [21007,0.022], + [21009,0.042], + [21011,0.013], + [21013,0.015], + [21015,0.06], + [21017,0.056], + [21019,0.021], + [21021,0.042], + [21023,0.015], + [21025,0.015], + [21027,0.027], + [21029,0.021], + [21031,0.021], + [21033,0.027], + [21035,0.054], + [21037,0.025], + [21039,0.014], + [21041,0.079], + [21043,0.005], + [21045,0.036], + [21047,0.071], + [21049,0.033], + [21051,0.019], + [21053,0.024], + [21055,0.076], + [21057,0.051], + [21059,0.028], + [21061,0.027], + [21063,0.036], + [21065,0.022], + [21067,0.106], + [21069,0.049], + [21071,0.01], + [21073,0.044], + [21075,0.037], + [21077,0.041], + [21079,0.022], + [21081,0.028], + [21083,0.069], + [21085,0.006], + [21087,0.024], + [21089,0.017], + [21091,0.019], + [21093,0.062], + [21095,0.014], + [21097,0.022], + [21099,0.063], + [21101,0.032], + [21103,0.032], + [21105,0.008], + [21107,0.03], + [21109,0.005], + [21111,0.075], + [21113,0.042], + [21115,0.004], + [21117,0.043], + [21119,0.01], + [21121,0.019], + [21123,0.033], + [21125,0.015], + [21127,0.018], + [21129,0.018], + [21131,0.002], + [21133,0.01], + [21135,0.032], + [21137,0.012], + [21139,0.02], + [21141,0.055], + [21143,0.025], + [21145,0.028], + [21147,0.018], + [21149,0.01], + [21151,0.037], + [21153,0.005], + [21155,0.039], + [21157,0.014], + [21159,0.014], + [21161,0.045], + [21163,0.028], + [21165,0.015], + [21167,0.019], + [21169,0.014], + [21171,0.026], + [21173,0.017], + [21175,0.037], + [21177,0.019], + [21179,0.029], + [21181,0.041], + [21183,0.021], + [21185,0.046], + [21187,0.016], + [21189,0.002], + [21191,0.011], + [21193,0.008], + [21195,0.012], + [21197,0.006], + [21199,0.018], + [21201,0], + [21203,0.002], + [21205,0.041], + [21207,0.014], + [21209,0.039], + [21211,0.079], + [21213,0.034], + [21215,0.014], + [21217,0.049], + [21219,0.06], + [21221,0.023], + [21223,0.033], + [21225,0.032], + [21227,0.093], + [21229,0.035], + [21231,0.024], + [21233,0.04], + [21235,0.019], + [21237,0.005], + [21239,0.083], + [22001,0.164], + [22003,0.09], + [22005,0.065], + [22007,0.148], + [22009,0.127], + [22011,0.042], + [22013,0.008], + [22015,0.06], + [22017,0.039], + [22019,0.076], + [22021,0.017], + [22023,0.1], + [22025,0.015], + [22027,0.027], + [22029,0.015], + [22031,0.028], + [22033,0.078], + [22035,0.023], + [22037,0.024], + [22039,0.223], + [22041,0.01], + [22043,0.044], + [22045,0.136], + [22047,0.043], + [22049,0.017], + [22051,0.154], + [22053,0.135], + [22055,0.162], + [22057,0.194], + [22059,0.018], + [22061,0.034], + [22063,0.039], + [22065,0.02], + [22067,0.019], + [22069,0.025], + [22071,0.097], + [22073,0.028], + [22075,0.074], + [22077,0.051], + [22079,0.045], + [22081,0.009], + [22083,0.007], + [22085,0.027], + [22087,0.079], + [22089,0.067], + [22091,0.015], + [22093,0.04], + [22095,0.067], + [22097,0.123], + [22099,0.232], + [22101,0.094], + [22103,0.061], + [22105,0.052], + [22107,0.024], + [22109,0.12], + [22111,0.032], + [22113,0.227], + [22115,0.081], + [22117,0.027], + [22119,0.03], + [22121,0.055], + [22123,0.055], + [22125,0.024], + [22127,0.024], + [23001,0.132], + [23003,0.202], + [23005,0.081], + [23007,0.037], + [23009,0.03], + [23011,0.056], + [23013,0.026], + [23015,0.022], + [23017,0.039], + [23019,0.051], + [23021,0.031], + [23023,0.044], + [23025,0.042], + [23027,0.016], + [23029,0.048], + [23031,0.078], + [24001,0.038], + [24003,0.099], + [24005,0.123], + [24009,0.049], + [24011,0.066], + [24013,0.052], + [24015,0.064], + [24017,0.064], + [24019,0.04], + [24021,0.117], + [24023,0.043], + [24025,0.072], + [24027,0.214], + [24029,0.066], + [24031,0.375], + [24033,0.196], + [24035,0.058], + [24037,0.068], + [24039,0.079], + [24041,0.065], + [24043,0.064], + [24045,0.093], + [24047,0.068], + [24510,0.091], + [25001,0.075], + [25003,0.07], + [25005,0.208], + [25007,0.106], + [25009,0.233], + [25011,0.059], + [25013,0.232], + [25015,0.112], + [25017,0.237], + [25019,0.151], + [25021,0.182], + [25023,0.112], + [25025,0.368], + [25027,0.172], + [26001,0.022], + [26003,0.045], + [26005,0.061], + [26007,0.04], + [26009,0.026], + [26011,0.023], + [26013,0.045], + [26015,0.029], + [26017,0.038], + [26019,0.036], + [26021,0.075], + [26023,0.079], + [26025,0.061], + [26027,0.043], + [26029,0.041], + [26031,0.017], + [26033,0.042], + [26035,0.038], + [26037,0.041], + [26039,0.017], + [26041,0.029], + [26043,0.03], + [26045,0.055], + [26047,0.036], + [26049,0.037], + [26051,0.029], + [26053,0.058], + [26055,0.032], + [26057,0.037], + [26059,0.047], + [26061,0.07], + [26063,0.04], + [26065,0.114], + [26067,0.042], + [26069,0.034], + [26071,0.035], + [26073,0.055], + [26075,0.04], + [26077,0.061], + [26079,0.02], + [26081,0.113], + [26083,0.038], + [26085,0.019], + [26087,0.041], + [26089,0.054], + [26091,0.056], + [26093,0.043], + [26095,0.047], + [26097,0.028], + [26099,0.131], + [26101,0.042], + [26103,0.035], + [26105,0.05], + [26107,0.034], + [26109,0.034], + [26111,0.046], + [26113,0.031], + [26115,0.036], + [26117,0.038], + [26119,0.022], + [26121,0.045], + [26123,0.055], + [26125,0.141], + [26127,0.11], + [26129,0.021], + [26131,0.059], + [26133,0.047], + [26135,0.085], + [26137,0.021], + [26139,0.096], + [26141,0.04], + [26143,0.023], + [26145,0.052], + [26147,0.036], + [26149,0.091], + [26151,0.038], + [26153,0.015], + [26155,0.023], + [26157,0.03], + [26159,0.089], + [26161,0.141], + [26163,0.12], + [26165,0.032], + [27001,0.032], + [27003,0.1], + [27005,0.039], + [27007,0.059], + [27009,0.034], + [27011,0.043], + [27013,0.06], + [27015,0.055], + [27017,0.048], + [27019,0.087], + [27021,0.031], + [27023,0.06], + [27025,0.031], + [27027,0.06], + [27029,0.039], + [27031,0.046], + [27033,0.087], + [27035,0.02], + [27037,0.111], + [27039,0.048], + [27041,0.027], + [27043,0.043], + [27045,0.058], + [27047,0.059], + [27049,0.044], + [27051,0.028], + [27053,0.162], + [27055,0.026], + [27057,0.025], + [27059,0.03], + [27061,0.028], + [27063,0.039], + [27065,0.026], + [27067,0.113], + [27069,0.037], + [27071,0.033], + [27073,0.031], + [27075,0.034], + [27077,0.018], + [27079,0.055], + [27081,0.032], + [27083,0.091], + [27085,0.071], + [27087,0.042], + [27089,0.086], + [27091,0.043], + [27093,0.041], + [27095,0.048], + [27097,0.031], + [27099,0.106], + [27101,0.031], + [27103,0.061], + [27105,0.232], + [27107,0.049], + [27109,0.122], + [27111,0.051], + [27113,0.044], + [27115,0.043], + [27117,0.047], + [27119,0.073], + [27121,0.025], + [27123,0.193], + [27125,0.038], + [27127,0.056], + [27129,0.06], + [27131,0.109], + [27133,0.043], + [27135,0.04], + [27137,0.039], + [27139,0.117], + [27141,0.041], + [27143,0.078], + [27145,0.066], + [27147,0.069], + [27149,0.04], + [27151,0.045], + [27153,0.077], + [27155,0.033], + [27157,0.038], + [27159,0.027], + [27161,0.056], + [27163,0.089], + [27165,0.18], + [27167,0.023], + [27169,0.044], + [27171,0.043], + [27173,0.044], + [28001,0.021], + [28003,0.028], + [28005,0.007], + [28007,0.02], + [28009,0.017], + [28011,0.019], + [28013,0.045], + [28015,0.008], + [28017,0.029], + [28019,0.018], + [28021,0.007], + [28023,0.008], + [28025,0.016], + [28027,0.02], + [28029,0.025], + [28031,0.019], + [28033,0.059], + [28035,0.042], + [28037,0.011], + [28039,0.024], + [28041,0.038], + [28043,0.019], + [28045,0.036], + [28047,0.073], + [28049,0.033], + [28051,0.007], + [28053,0.016], + [28055,0], + [28057,0.013], + [28059,0.057], + [28061,0.009], + [28063,0], + [28065,0.018], + [28067,0.046], + [28069,0.041], + [28071,0.052], + [28073,0.033], + [28075,0.033], + [28077,0.021], + [28079,0.075], + [28081,0.031], + [28083,0.044], + [28085,0.012], + [28087,0.031], + [28089,0.057], + [28091,0.016], + [28093,0.039], + [28095,0.02], + [28097,0.007], + [28099,0.11], + [28101,0.051], + [28103,0.017], + [28105,0.05], + [28107,0.016], + [28109,0.025], + [28111,0.002], + [28113,0.025], + [28115,0.051], + [28117,0.027], + [28119,0.004], + [28121,0.036], + [28123,0.092], + [28125,0.017], + [28127,0.029], + [28129,0.011], + [28131,0.015], + [28133,0.024], + [28135,0.055], + [28137,0.024], + [28139,0.044], + [28141,0.044], + [28143,0.055], + [28145,0.046], + [28147,0.026], + [28149,0.041], + [28151,0.036], + [28153,0.012], + [28155,0.019], + [28157,0.012], + [28159,0.011], + [28161,0.006], + [28163,0.048], + [29001,0.039], + [29003,0.023], + [29005,0.02], + [29007,0.046], + [29009,0.083], + [29011,0.021], + [29013,0.02], + [29015,0.026], + [29017,0.006], + [29019,0.081], + [29021,0.047], + [29023,0.029], + [29025,0.018], + [29027,0.02], + [29029,0.036], + [29031,0.036], + [29033,0.015], + [29035,0.01], + [29037,0.038], + [29039,0.031], + [29041,0.008], + [29043,0.038], + [29045,0.017], + [29047,0.069], + [29049,0.024], + [29051,0.047], + [29053,0.022], + [29055,0.017], + [29057,0.029], + [29059,0.059], + [29061,0.072], + [29063,0.047], + [29065,0.013], + [29067,0.017], + [29069,0.046], + [29071,0.02], + [29073,0.03], + [29075,0.065], + [29077,0.05], + [29079,0.047], + [29081,0.035], + [29083,0.028], + [29085,0.006], + [29087,0.023], + [29089,0.02], + [29091,0.032], + [29093,0.004], + [29095,0.086], + [29097,0.068], + [29099,0.035], + [29101,0.048], + [29103,0.014], + [29105,0.03], + [29107,0.024], + [29109,0.07], + [29111,0.082], + [29113,0.02], + [29115,0.028], + [29117,0.01], + [29119,0.113], + [29121,0.026], + [29123,0.039], + [29125,0.025], + [29127,0.016], + [29129,0.054], + [29131,0.025], + [29133,0.035], + [29135,0.057], + [29137,0.019], + [29139,0.015], + [29141,0.081], + [29143,0.018], + [29145,0.063], + [29147,0.052], + [29149,0.01], + [29151,0.014], + [29153,0.011], + [29155,0.017], + [29157,0.032], + [29159,0.101], + [29161,0.058], + [29163,0.05], + [29165,0.064], + [29167,0.059], + [29169,0.129], + [29171,0.028], + [29173,0.009], + [29175,0.018], + [29177,0.019], + [29179,0.011], + [29181,0.012], + [29183,0.062], + [29185,0.017], + [29186,0.014], + [29187,0.026], + [29189,0.082], + [29195,0.082], + [29197,0.009], + [29199,0.11], + [29201,0.021], + [29203,0.017], + [29205,0.017], + [29207,0.011], + [29209,0.023], + [29211,0.14], + [29213,0.05], + [29215,0.018], + [29217,0.024], + [29219,0.041], + [29221,0.015], + [29223,0.006], + [29225,0.051], + [29227,0.004], + [29229,0.027], + [29510,0.089], + [30001,0.064], + [30003,0.26], + [30005,0.045], + [30007,0.012], + [30009,0.023], + [30011,0.017], + [30013,0.049], + [30015,0.008], + [30017,0.023], + [30019,0.008], + [30021,0.024], + [30023,0.035], + [30025,0.017], + [30027,0.02], + [30029,0.026], + [30031,0.046], + [30033,0.018], + [30035,0.114], + [30037,0.008], + [30039,0.012], + [30041,0.076], + [30043,0.026], + [30045,0.067], + [30047,0.071], + [30049,0.038], + [30051,0.298], + [30053,0.026], + [30055,0.019], + [30057,0.038], + [30059,0.044], + [30061,0.013], + [30063,0.044], + [30065,0.025], + [30067,0.045], + [30069,0.025], + [30071,0.024], + [30073,0.124], + [30075,0.013], + [30077,0.055], + [30079,0.029], + [30081,0.034], + [30083,0.043], + [30085,0.045], + [30087,0.095], + [30089,0.035], + [30091,0.026], + [30093,0.053], + [30095,0.019], + [30097,0.029], + [30099,0.077], + [30101,0.115], + [30103,0.041], + [30105,0.019], + [30107,0.169], + [30109,0.014], + [30111,0.042], + [31001,0.071], + [31003,0.031], + [31005,0.045], + [31007,0.033], + [31009,0], + [31011,0.008], + [31013,0.067], + [31015,0.015], + [31017,0.008], + [31019,0.065], + [31021,0.03], + [31023,0.061], + [31025,0.025], + [31027,0.028], + [31029,0.081], + [31031,0.059], + [31033,0.056], + [31035,0.075], + [31037,0.359], + [31039,0.095], + [31041,0.016], + [31043,0.337], + [31045,0.018], + [31047,0.305], + [31049,0.029], + [31051,0.081], + [31053,0.094], + [31055,0.123], + [31057,0.009], + [31059,0.032], + [31061,0.015], + [31063,0.009], + [31065,0.022], + [31067,0.031], + [31069,0.051], + [31071,0.05], + [31073,0.033], + [31075,0.005], + [31077,0.012], + [31079,0.185], + [31081,0.036], + [31083,0.02], + [31085,0.059], + [31087,0.008], + [31089,0.023], + [31091,0.013], + [31093,0.023], + [31095,0.021], + [31097,0.087], + [31099,0.045], + [31101,0.038], + [31103,0], + [31105,0.074], + [31107,0.031], + [31109,0.104], + [31111,0.04], + [31113,0], + [31115,0.003], + [31117,0.026], + [31119,0.126], + [31121,0.028], + [31123,0.105], + [31125,0.028], + [31127,0.023], + [31129,0.012], + [31131,0.038], + [31133,0.05], + [31135,0.026], + [31137,0.053], + [31139,0.017], + [31141,0.132], + [31143,0.026], + [31145,0.026], + [31147,0.017], + [31149,0.006], + [31151,0.198], + [31153,0.078], + [31155,0.052], + [31157,0.125], + [31159,0.028], + [31161,0.026], + [31163,0.022], + [31165,0.014], + [31167,0.037], + [31169,0.012], + [31171,0.011], + [31173,0.062], + [31175,0.03], + [31177,0.026], + [31179,0.035], + [31181,0.021], + [31183,0], + [31185,0.056], + [32001,0.104], + [32003,0.321], + [32005,0.083], + [32007,0.158], + [32009,0.138], + [32011,0.026], + [32013,0.194], + [32015,0.197], + [32017,0.046], + [32019,0.122], + [32021,0.071], + [32023,0.129], + [32027,0.201], + [32029,0.05], + [32031,0.222], + [32033,0.061], + [32510,0.177], + [33001,0.045], + [33003,0.026], + [33005,0.034], + [33007,0.129], + [33009,0.076], + [33011,0.128], + [33013,0.054], + [33015,0.065], + [33017,0.071], + [33019,0.029], + [34001,0.237], + [34003,0.367], + [34005,0.119], + [34007,0.184], + [34009,0.091], + [34011,0.243], + [34013,0.326], + [34015,0.083], + [34017,0.579], + [34019,0.102], + [34021,0.262], + [34023,0.395], + [34025,0.171], + [34027,0.235], + [34029,0.117], + [34031,0.461], + [34033,0.073], + [34035,0.278], + [34037,0.096], + [34039,0.405], + [34041,0.115], + [35001,0.31], + [35003,0.162], + [35005,0.366], + [35006,0.448], + [35007,0.209], + [35009,0.237], + [35011,0.267], + [35013,0.518], + [35015,0.31], + [35017,0.335], + [35019,0.562], + [35021,0.49], + [35023,0.402], + [35025,0.347], + [35027,0.232], + [35028,0.12], + [35029,0.486], + [35031,0.568], + [35033,0.611], + [35035,0.298], + [35037,0.288], + [35039,0.626], + [35041,0.264], + [35043,0.292], + [35045,0.344], + [35047,0.604], + [35049,0.35], + [35051,0.171], + [35053,0.417], + [35055,0.457], + [35057,0.266], + [35059,0.194], + [35061,0.329], + [36001,0.12], + [36003,0.04], + [36005,0.56], + [36007,0.09], + [36009,0.057], + [36011,0.041], + [36013,0.071], + [36015,0.048], + [36017,0.047], + [36019,0.063], + [36021,0.077], + [36023,0.044], + [36025,0.061], + [36027,0.145], + [36029,0.096], + [36031,0.062], + [36033,0.085], + [36035,0.04], + [36037,0.042], + [36039,0.066], + [36041,0.024], + [36043,0.058], + [36045,0.078], + [36047,0.459], + [36049,0.03], + [36051,0.048], + [36053,0.044], + [36055,0.123], + [36057,0.124], + [36059,0.273], + [36061,0.4], + [36063,0.06], + [36065,0.108], + [36067,0.095], + [36069,0.056], + [36071,0.225], + [36073,0.06], + [36075,0.046], + [36077,0.064], + [36079,0.159], + [36081,0.562], + [36083,0.071], + [36085,0.296], + [36087,0.356], + [36089,0.059], + [36091,0.056], + [36093,0.097], + [36095,0.034], + [36097,0.037], + [36099,0.064], + [36101,0.042], + [36103,0.198], + [36105,0.143], + [36107,0.031], + [36109,0.16], + [36111,0.116], + [36113,0.048], + [36115,0.043], + [36117,0.057], + [36119,0.311], + [36121,0.057], + [36123,0.113], + [37001,0.114], + [37003,0.046], + [37005,0.102], + [37007,0.028], + [37009,0.05], + [37011,0.067], + [37013,0.063], + [37015,0.013], + [37017,0.059], + [37019,0.057], + [37021,0.078], + [37023,0.078], + [37025,0.095], + [37027,0.045], + [37029,0.026], + [37031,0.049], + [37033,0.029], + [37035,0.103], + [37037,0.128], + [37039,0.04], + [37041,0.048], + [37043,0.022], + [37045,0.041], + [37047,0.05], + [37049,0.072], + [37051,0.106], + [37053,0.039], + [37055,0.078], + [37057,0.073], + [37059,0.067], + [37061,0.181], + [37063,0.188], + [37065,0.039], + [37067,0.134], + [37069,0.082], + [37071,0.07], + [37073,0.018], + [37075,0.04], + [37077,0.079], + [37079,0.121], + [37081,0.118], + [37083,0.03], + [37085,0.107], + [37087,0.039], + [37089,0.106], + [37091,0.044], + [37093,0.119], + [37095,0.066], + [37097,0.077], + [37099,0.084], + [37101,0.12], + [37103,0.044], + [37105,0.172], + [37107,0.067], + [37109,0.078], + [37111,0.048], + [37113,0.058], + [37115,0.029], + [37117,0.031], + [37119,0.174], + [37121,0.037], + [37123,0.129], + [37125,0.069], + [37127,0.077], + [37129,0.076], + [37131,0.023], + [37133,0.101], + [37135,0.153], + [37137,0.041], + [37139,0.065], + [37141,0.067], + [37143,0.022], + [37145,0.048], + [37147,0.072], + [37149,0.056], + [37151,0.101], + [37153,0.053], + [37155,0.088], + [37157,0.055], + [37159,0.082], + [37161,0.043], + [37163,0.146], + [37165,0.03], + [37167,0.057], + [37169,0.031], + [37171,0.094], + [37173,0.054], + [37175,0.054], + [37177,0.053], + [37179,0.121], + [37181,0.067], + [37183,0.159], + [37185,0.041], + [37187,0.016], + [37189,0.049], + [37191,0.097], + [37193,0.052], + [37195,0.095], + [37197,0.084], + [37199,0.05], + [38001,0.027], + [38003,0.039], + [38005,0.026], + [38007,0.053], + [38009,0.04], + [38011,0.027], + [38013,0.038], + [38015,0.049], + [38017,0.06], + [38019,0.024], + [38021,0.065], + [38023,0.038], + [38025,0.044], + [38027,0.021], + [38029,0.104], + [38031,0.027], + [38033,0.023], + [38035,0.056], + [38037,0.081], + [38039,0.02], + [38041,0.04], + [38043,0.068], + [38045,0.076], + [38047,0.147], + [38049,0.046], + [38051,0.258], + [38053,0.067], + [38055,0.039], + [38057,0.08], + [38059,0.069], + [38061,0.059], + [38063,0.029], + [38065,0.036], + [38067,0.049], + [38069,0.047], + [38071,0.044], + [38073,0.026], + [38075,0.013], + [38077,0.036], + [38079,0.012], + [38081,0.024], + [38083,0.064], + [38085,0.138], + [38087,0.016], + [38089,0.053], + [38091,0.027], + [38093,0.049], + [38095,0.017], + [38097,0.034], + [38099,0.089], + [38101,0.058], + [38103,0.044], + [38105,0.035], + [39001,0.03], + [39003,0.028], + [39005,0.066], + [39007,0.049], + [39009,0.052], + [39011,0.019], + [39013,0.019], + [39015,0.019], + [39017,0.065], + [39019,0.034], + [39021,0.022], + [39023,0.035], + [39025,0.034], + [39027,0.026], + [39029,0.021], + [39031,0.055], + [39033,0.022], + [39035,0.112], + [39037,0.018], + [39039,0.043], + [39041,0.07], + [39043,0.037], + [39045,0.039], + [39047,0.027], + [39049,0.111], + [39051,0.045], + [39053,0.022], + [39055,0.116], + [39057,0.058], + [39059,0.03], + [39061,0.064], + [39063,0.047], + [39065,0.033], + [39067,0.017], + [39069,0.047], + [39071,0.021], + [39073,0.016], + [39075,0.438], + [39077,0.056], + [39079,0.031], + [39081,0.025], + [39083,0.053], + [39085,0.076], + [39087,0.011], + [39089,0.031], + [39091,0.039], + [39093,0.078], + [39095,0.063], + [39097,0.043], + [39099,0.067], + [39101,0.027], + [39103,0.05], + [39105,0.008], + [39107,0.02], + [39109,0.026], + [39111,0.016], + [39113,0.05], + [39115,0.016], + [39117,0.026], + [39119,0.026], + [39121,0.019], + [39123,0.034], + [39125,0.032], + [39127,0.015], + [39129,0.017], + [39131,0.012], + [39133,0.04], + [39135,0.019], + [39137,0.038], + [39139,0.039], + [39141,0.027], + [39143,0.056], + [39145,0.021], + [39147,0.03], + [39149,0.029], + [39151,0.036], + [39153,0.057], + [39155,0.049], + [39157,0.053], + [39159,0.044], + [39161,0.026], + [39163,0.018], + [39165,0.064], + [39167,0.015], + [39169,0.102], + [39171,0.028], + [39173,0.044], + [39175,0.029], + [40001,0.065], + [40003,0.052], + [40005,0.042], + [40007,0.139], + [40009,0.072], + [40011,0.148], + [40013,0.047], + [40015,0.078], + [40017,0.077], + [40019,0.049], + [40021,0.071], + [40023,0.04], + [40025,0.191], + [40027,0.09], + [40029,0.048], + [40031,0.113], + [40033,0.048], + [40035,0.038], + [40037,0.033], + [40039,0.113], + [40041,0.042], + [40043,0.054], + [40045,0.042], + [40047,0.086], + [40049,0.051], + [40051,0.038], + [40053,0.026], + [40055,0.085], + [40057,0.157], + [40059,0.147], + [40061,0.03], + [40063,0.076], + [40065,0.151], + [40067,0.05], + [40069,0.039], + [40071,0.063], + [40073,0.114], + [40075,0.054], + [40077,0.037], + [40079,0.063], + [40081,0.027], + [40083,0.042], + [40085,0.064], + [40087,0.056], + [40089,0.05], + [40091,0.023], + [40093,0.048], + [40095,0.121], + [40097,0.037], + [40099,0.039], + [40101,0.045], + [40103,0.033], + [40105,0.018], + [40107,0.072], + [40109,0.149], + [40111,0.025], + [40113,0.032], + [40115,0.054], + [40117,0.023], + [40119,0.077], + [40121,0.037], + [40123,0.049], + [40125,0.034], + [40127,0.02], + [40129,0.042], + [40131,0.044], + [40133,0.055], + [40135,0.044], + [40137,0.051], + [40139,0.343], + [40141,0.146], + [40143,0.112], + [40145,0.052], + [40147,0.055], + [40149,0.046], + [40151,0.037], + [40153,0.088], + [41001,0.009], + [41003,0.11], + [41005,0.112], + [41007,0.078], + [41009,0.044], + [41011,0.046], + [41013,0.058], + [41015,0.044], + [41017,0.065], + [41019,0.045], + [41021,0.1], + [41023,0.029], + [41025,0.028], + [41027,0.27], + [41029,0.087], + [41031,0.17], + [41033,0.045], + [41035,0.082], + [41037,0.033], + [41039,0.1], + [41041,0.069], + [41043,0.067], + [41045,0.249], + [41047,0.243], + [41049,0.267], + [41051,0.191], + [41053,0.119], + [41055,0.047], + [41057,0.059], + [41059,0.2], + [41061,0.05], + [41063,0.039], + [41065,0.151], + [41067,0.227], + [41069,0.017], + [41071,0.137], + [42001,0.063], + [42003,0.068], + [42005,0.018], + [42007,0.045], + [42009,0.023], + [42011,0.162], + [42013,0.027], + [42015,0.025], + [42017,0.105], + [42019,0.034], + [42021,0.034], + [42023,0.016], + [42025,0.043], + [42027,0.092], + [42029,0.114], + [42031,0.028], + [42033,0.032], + [42035,0.044], + [42037,0.032], + [42039,0.057], + [42041,0.076], + [42043,0.103], + [42045,0.109], + [42047,0.022], + [42049,0.061], + [42051,0.029], + [42053,0.045], + [42055,0.065], + [42057,0.012], + [42059,0.027], + [42061,0.033], + [42063,0.046], + [42065,0.028], + [42067,0.051], + [42069,0.074], + [42071,0.156], + [42073,0.043], + [42075,0.09], + [42077,0.204], + [42079,0.071], + [42081,0.031], + [42083,0.029], + [42085,0.047], + [42087,0.092], + [42089,0.14], + [42091,0.118], + [42093,0.073], + [42095,0.125], + [42097,0.038], + [42099,0.034], + [42101,0.209], + [42103,0.094], + [42105,0.026], + [42107,0.05], + [42109,0.065], + [42111,0.036], + [42113,0.015], + [42115,0.028], + [42117,0.023], + [42119,0.112], + [42121,0.022], + [42123,0.034], + [42125,0.03], + [42127,0.056], + [42129,0.033], + [42131,0.028], + [42133,0.067], + [44001,0.133], + [44003,0.075], + [44005,0.083], + [44007,0.296], + [44009,0.065], + [45001,0.029], + [45003,0.056], + [45005,0.025], + [45007,0.039], + [45009,0.02], + [45011,0.034], + [45013,0.133], + [45015,0.074], + [45017,0.029], + [45019,0.072], + [45021,0.045], + [45023,0.012], + [45025,0.041], + [45027,0.028], + [45029,0.032], + [45031,0.031], + [45033,0.023], + [45035,0.053], + [45037,0.067], + [45039,0.016], + [45041,0.036], + [45043,0.036], + [45045,0.113], + [45047,0.064], + [45049,0.042], + [45051,0.082], + [45053,0.148], + [45055,0.048], + [45057,0.05], + [45059,0.042], + [45061,0.025], + [45063,0.065], + [45065,0.021], + [45067,0.029], + [45069,0.026], + [45071,0.072], + [45073,0.045], + [45075,0.032], + [45077,0.052], + [45079,0.079], + [45081,0.122], + [45083,0.085], + [45085,0.04], + [45087,0.022], + [45089,0.015], + [45091,0.06], + [46003,0.078], + [46005,0.077], + [46007,0.212], + [46009,0.097], + [46011,0.06], + [46013,0.049], + [46015,0.043], + [46017,0.15], + [46019,0.034], + [46021,0.082], + [46023,0.108], + [46025,0.105], + [46027,0.058], + [46029,0.026], + [46031,0.155], + [46033,0.037], + [46035,0.025], + [46037,0.051], + [46039,0.037], + [46041,0.149], + [46043,0.08], + [46045,0.13], + [46047,0.038], + [46049,0.135], + [46051,0.064], + [46053,0.032], + [46055,0.059], + [46057,0.044], + [46059,0.015], + [46061,0.124], + [46063,0.036], + [46065,0.079], + [46067,0.132], + [46069,0.018], + [46071,0.155], + [46073,0.051], + [46075,0.029], + [46077,0.036], + [46079,0.026], + [46081,0.029], + [46083,0.035], + [46085,0.075], + [46087,0.036], + [46089,0.24], + [46091,0.039], + [46093,0.028], + [46095,0.159], + [46097,0.017], + [46099,0.089], + [46101,0.056], + [46102,0.222], + [46103,0.053], + [46105,0.015], + [46107,0.029], + [46109,0.052], + [46111,0.069], + [46115,0.064], + [46117,0.023], + [46119,0.033], + [46121,0.279], + [46123,0.027], + [46125,0.025], + [46127,0.043], + [46129,0.06], + [46135,0.072], + [46137,0.248], + [47001,0.038], + [47003,0.108], + [47005,0.016], + [47007,0.037], + [47009,0.041], + [47011,0.053], + [47013,0.017], + [47015,0.023], + [47017,0.015], + [47019,0.018], + [47021,0.034], + [47023,0.026], + [47025,0.016], + [47027,0.005], + [47029,0.027], + [47031,0.047], + [47033,0.074], + [47035,0.038], + [47037,0.147], + [47039,0.019], + [47041,0.057], + [47043,0.031], + [47045,0.022], + [47047,0.036], + [47049,0.016], + [47051,0.033], + [47053,0.029], + [47055,0.017], + [47057,0.02], + [47059,0.041], + [47061,0.007], + [47063,0.096], + [47065,0.06], + [47067,0.014], + [47069,0.025], + [47071,0.017], + [47073,0.025], + [47075,0.044], + [47077,0.02], + [47079,0.043], + [47081,0.02], + [47083,0.01], + [47085,0.011], + [47087,0.008], + [47089,0.03], + [47091,0.021], + [47093,0.056], + [47095,0.018], + [47097,0.027], + [47099,0.035], + [47101,0.015], + [47103,0.025], + [47105,0.067], + [47107,0.038], + [47109,0.028], + [47111,0.031], + [47113,0.045], + [47115,0.024], + [47117,0.047], + [47119,0.053], + [47121,0.01], + [47123,0.033], + [47125,0.084], + [47127,0.012], + [47129,0.027], + [47131,0.04], + [47133,0.017], + [47135,0.01], + [47137,0.046], + [47139,0.012], + [47141,0.064], + [47143,0.034], + [47145,0.023], + [47147,0.057], + [47149,0.091], + [47151,0.011], + [47153,0.018], + [47155,0.054], + [47157,0.085], + [47159,0.024], + [47161,0.023], + [47163,0.026], + [47165,0.049], + [47167,0.024], + [47169,0.041], + [47171,0.049], + [47173,0.014], + [47175,0.008], + [47177,0.074], + [47179,0.046], + [47181,0.026], + [47183,0.043], + [47185,0.025], + [47187,0.077], + [47189,0.038], + [48001,0.118], + [48003,0.362], + [48005,0.176], + [48007,0.182], + [48009,0.057], + [48011,0.074], + [48013,0.409], + [48015,0.18], + [48017,0.429], + [48019,0.124], + [48021,0.246], + [48023,0.082], + [48025,0.388], + [48027,0.177], + [48029,0.432], + [48031,0.13], + [48033,0.098], + [48035,0.124], + [48037,0.07], + [48039,0.248], + [48041,0.208], + [48043,0.349], + [48045,0.178], + [48047,0.662], + [48049,0.099], + [48051,0.146], + [48053,0.151], + [48055,0.321], + [48057,0.263], + [48059,0.061], + [48061,0.737], + [48063,0.191], + [48065,0.076], + [48067,0.038], + [48069,0.49], + [48071,0.158], + [48073,0.148], + [48075,0.193], + [48077,0.033], + [48079,0.409], + [48081,0.15], + [48083,0.046], + [48085,0.246], + [48087,0.272], + [48089,0.202], + [48091,0.18], + [48093,0.181], + [48095,0.443], + [48097,0.137], + [48099,0.131], + [48101,0.114], + [48103,0.446], + [48105,0.46], + [48107,0.34], + [48109,0.665], + [48111,0.315], + [48113,0.388], + [48115,0.378], + [48117,0.514], + [48119,0.036], + [48121,0.21], + [48123,0.2], + [48125,0.194], + [48127,0.699], + [48129,0.062], + [48131,0.707], + [48133,0.092], + [48135,0.398], + [48137,0.464], + [48139,0.184], + [48141,0.748], + [48143,0.16], + [48145,0.169], + [48147,0.081], + [48149,0.183], + [48151,0.167], + [48153,0.362], + [48155,0.123], + [48157,0.37], + [48159,0.103], + [48161,0.101], + [48163,0.642], + [48165,0.495], + [48167,0.185], + [48169,0.469], + [48171,0.235], + [48173,0.212], + [48175,0.223], + [48177,0.403], + [48179,0.179], + [48181,0.099], + [48183,0.149], + [48185,0.163], + [48187,0.248], + [48189,0.372], + [48191,0.231], + [48193,0.075], + [48195,0.337], + [48197,0.113], + [48199,0.042], + [48201,0.417], + [48203,0.094], + [48205,0.172], + [48207,0.172], + [48209,0.229], + [48211,0.164], + [48213,0.093], + [48215,0.848], + [48217,0.153], + [48219,0.3], + [48221,0.087], + [48223,0.135], + [48225,0.096], + [48227,0.302], + [48229,0.779], + [48231,0.113], + [48233,0.159], + [48235,0.223], + [48237,0.105], + [48239,0.23], + [48241,0.062], + [48243,0.347], + [48245,0.17], + [48247,0.846], + [48249,0.556], + [48251,0.136], + [48253,0.187], + [48255,0.477], + [48257,0.138], + [48259,0.161], + [48261,0.361], + [48263,0.083], + [48265,0.183], + [48267,0.225], + [48269,0.019], + [48271,0.488], + [48273,0.504], + [48275,0.224], + [48277,0.07], + [48279,0.374], + [48281,0.153], + [48283,0.611], + [48285,0.18], + [48287,0.189], + [48289,0.089], + [48291,0.15], + [48293,0.155], + [48295,0.235], + [48297,0.275], + [48299,0.083], + [48301,0], + [48303,0.218], + [48305,0.345], + [48307,0.206], + [48309,0.182], + [48311,0.446], + [48313,0.213], + [48315,0.03], + [48317,0.299], + [48319,0.105], + [48321,0.269], + [48323,0.938], + [48325,0.362], + [48327,0.243], + [48329,0.288], + [48331,0.15], + [48333,0.139], + [48335,0.277], + [48337,0.074], + [48339,0.184], + [48341,0.494], + [48343,0.058], + [48345,0.048], + [48347,0.152], + [48349,0.195], + [48351,0.041], + [48353,0.223], + [48355,0.407], + [48357,0.393], + [48359,0.087], + [48361,0.057], + [48363,0.138], + [48365,0.051], + [48367,0.083], + [48369,0.48], + [48371,0.549], + [48373,0.125], + [48375,0.289], + [48377,0.846], + [48379,0.053], + [48381,0.106], + [48383,0.456], + [48385,0.21], + [48387,0.053], + [48389,0.763], + [48391,0.304], + [48393,0.043], + [48395,0.134], + [48397,0.153], + [48399,0.134], + [48401,0.129], + [48403,0.03], + [48405,0.06], + [48407,0.07], + [48409,0.36], + [48411,0.212], + [48413,0.328], + [48415,0.254], + [48417,0.089], + [48419,0.132], + [48421,0.319], + [48423,0.153], + [48425,0.183], + [48427,0.96], + [48429,0.155], + [48431,0.259], + [48433,0.043], + [48435,0.483], + [48437,0.288], + [48439,0.268], + [48441,0.145], + [48443,0.517], + [48445,0.379], + [48447,0.073], + [48449,0.34], + [48451,0.249], + [48453,0.317], + [48455,0.067], + [48457,0.034], + [48459,0.058], + [48461,0.283], + [48463,0.548], + [48465,0.728], + [48467,0.084], + [48469,0.256], + [48471,0.185], + [48473,0.222], + [48475,0.349], + [48477,0.114], + [48479,0.924], + [48481,0.262], + [48483,0.16], + [48485,0.127], + [48487,0.142], + [48489,0.486], + [48491,0.199], + [48493,0.261], + [48495,0.427], + [48497,0.134], + [48499,0.074], + [48501,0.499], + [48503,0.115], + [48505,0.877], + [48507,0.726], + [49001,0.078], + [49003,0.076], + [49005,0.141], + [49007,0.082], + [49009,0.037], + [49011,0.089], + [49013,0.041], + [49015,0.04], + [49017,0.054], + [49019,0.113], + [49021,0.066], + [49023,0.052], + [49025,0.032], + [49027,0.133], + [49029,0.029], + [49031,0.031], + [49033,0.025], + [49035,0.193], + [49037,0.465], + [49039,0.111], + [49041,0.06], + [49043,0.104], + [49045,0.095], + [49047,0.062], + [49049,0.127], + [49051,0.141], + [49053,0.098], + [49055,0.077], + [49057,0.128], + [50001,0.052], + [50003,0.042], + [50005,0.03], + [50007,0.085], + [50009,0.079], + [50011,0.048], + [50013,0.038], + [50015,0.043], + [50017,0.025], + [50019,0.067], + [50021,0.035], + [50023,0.046], + [50025,0.049], + [50027,0.038], + [51001,0.087], + [51003,0.112], + [51005,0.021], + [51007,0.052], + [51009,0.028], + [51011,0.015], + [51013,0.29], + [51015,0.028], + [51017,0.014], + [51019,0.034], + [51021,0.018], + [51023,0.02], + [51025,0.025], + [51027,0.023], + [51029,0.018], + [51031,0.024], + [51033,0.055], + [51035,0.027], + [51036,0.01], + [51037,0.008], + [51041,0.101], + [51043,0.077], + [51045,0.007], + [51047,0.09], + [51049,0.093], + [51051,0.012], + [51053,0.029], + [51057,0.026], + [51059,0.359], + [51061,0.091], + [51063,0.025], + [51065,0.039], + [51067,0.036], + [51069,0.086], + [51071,0.022], + [51073,0.025], + [51075,0.065], + [51077,0.031], + [51079,0.063], + [51081,0.032], + [51083,0.017], + [51085,0.043], + [51087,0.132], + [51089,0.049], + [51091,0], + [51093,0.037], + [51095,0.089], + [51097,0.032], + [51099,0.029], + [51101,0.02], + [51103,0.026], + [51105,0.022], + [51107,0.282], + [51109,0.031], + [51111,0.032], + [51113,0.025], + [51115,0.014], + [51117,0.031], + [51119,0.018], + [51121,0.098], + [51125,0.041], + [51127,0.021], + [51131,0.064], + [51133,0.023], + [51135,0.056], + [51137,0.058], + [51139,0.036], + [51141,0.028], + [51143,0.033], + [51145,0.037], + [51147,0.077], + [51149,0.071], + [51153,0.297], + [51155,0.02], + [51157,0.032], + [51159,0.036], + [51161,0.069], + [51163,0.019], + [51165,0.073], + [51167,0.015], + [51169,0.015], + [51171,0.071], + [51173,0.02], + [51175,0.015], + [51177,0.094], + [51179,0.127], + [51181,0.033], + [51183,0.03], + [51185,0.02], + [51187,0.058], + [51191,0.017], + [51193,0.066], + [51195,0.021], + [51197,0.014], + [51199,0.082], + [51510,0.29], + [51520,0.022], + [51530,0.014], + [51540,0.153], + [51550,0.067], + [51570,0.069], + [51580,0.016], + [51590,0.045], + [51595,0.049], + [51600,0.304], + [51610,0.223], + [51620,0.016], + [51630,0.132], + [51640,0.115], + [51650,0.071], + [51660,0.187], + [51670,0.063], + [51678,0.081], + [51680,0.063], + [51683,0.341], + [51685,0.436], + [51690,0.062], + [51700,0.094], + [51710,0.095], + [51720,0.013], + [51730,0.046], + [51735,0.077], + [51740,0.044], + [51750,0.062], + [51760,0.096], + [51770,0.077], + [51775,0.064], + [51790,0.042], + [51800,0.046], + [51810,0.117], + [51820,0.04], + [51830,0.079], + [51840,0.196], + [53001,0.486], + [53003,0.037], + [53005,0.179], + [53007,0.216], + [53009,0.075], + [53011,0.138], + [53013,0.027], + [53015,0.078], + [53017,0.257], + [53019,0.043], + [53021,0.484], + [53023,0.061], + [53025,0.323], + [53027,0.088], + [53029,0.077], + [53031,0.055], + [53033,0.243], + [53035,0.095], + [53037,0.09], + [53039,0.091], + [53041,0.083], + [53043,0.032], + [53045,0.075], + [53047,0.157], + [53049,0.09], + [53051,0.036], + [53053,0.137], + [53055,0.056], + [53057,0.152], + [53059,0.043], + [53061,0.176], + [53063,0.069], + [53065,0.046], + [53067,0.1], + [53069,0.034], + [53071,0.195], + [53073,0.114], + [53075,0.115], + [53077,0.385], + [54001,0.011], + [54003,0.044], + [54005,0.005], + [54007,0.008], + [54009,0.024], + [54011,0.025], + [54013,0.003], + [54015,0.009], + [54017,0.009], + [54019,0.014], + [54021,0.075], + [54023,0.008], + [54025,0.013], + [54027,0.01], + [54029,0.026], + [54031,0.051], + [54033,0.018], + [54035,0.007], + [54037,0.058], + [54039,0.021], + [54041,0.008], + [54043,0.008], + [54045,0.011], + [54047,0.01], + [54049,0.022], + [54051,0.019], + [54053,0.009], + [54055,0.027], + [54057,0.015], + [54059,0.01], + [54061,0.056], + [54063,0.03], + [54065,0.013], + [54067,0.006], + [54069,0.029], + [54071,0.016], + [54073,0.009], + [54075,0.011], + [54077,0.025], + [54079,0.02], + [54081,0.039], + [54083,0.019], + [54085,0.008], + [54087,0.014], + [54089,0.011], + [54091,0.014], + [54093,0.004], + [54095,0.016], + [54097,0.018], + [54099,0.011], + [54101,0.004], + [54103,0.01], + [54105,0.006], + [54107,0.018], + [54109,0.014], + [55001,0.052], + [55003,0.046], + [55005,0.041], + [55007,0.043], + [55009,0.095], + [55011,0.034], + [55013,0.025], + [55015,0.063], + [55017,0.038], + [55019,0.134], + [55021,0.041], + [55023,0.025], + [55025,0.111], + [55027,0.055], + [55029,0.04], + [55031,0.034], + [55033,0.047], + [55035,0.059], + [55037,0.024], + [55039,0.054], + [55041,0.049], + [55043,0.038], + [55045,0.041], + [55047,0.065], + [55049,0.029], + [55051,0.041], + [55053,0.073], + [55055,0.071], + [55057,0.044], + [55059,0.113], + [55061,0.039], + [55063,0.058], + [55065,0.041], + [55067,0.031], + [55069,0.025], + [55071,0.057], + [55073,0.083], + [55075,0.028], + [55077,0.029], + [55078,0.118], + [55079,0.157], + [55081,0.081], + [55083,0.027], + [55085,0.026], + [55087,0.069], + [55089,0.064], + [55091,0.046], + [55093,0.029], + [55095,0.029], + [55097,0.064], + [55099,0.027], + [55101,0.096], + [55103,0.047], + [55105,0.079], + [55107,0.034], + [55109,0.042], + [55111,0.06], + [55113,0.051], + [55115,0.043], + [55117,0.092], + [55119,0.037], + [55121,0.075], + [55123,0.095], + [55125,0.05], + [55127,0.109], + [55129,0.026], + [55131,0.051], + [55133,0.071], + [55135,0.032], + [55137,0.072], + [55139,0.058], + [55141,0.047], + [56001,0.106], + [56003,0.059], + [56005,0.062], + [56007,0.091], + [56009,0.035], + [56011,0.024], + [56013,0.079], + [56015,0.047], + [56017,0.027], + [56019,0.028], + [56021,0.08], + [56023,0.045], + [56025,0.049], + [56027,0.016], + [56029,0.04], + [56031,0.037], + [56033,0.042], + [56035,0.063], + [56037,0.089], + [56039,0.144], + [56041,0.046], + [56043,0.083], + [56045,0.021] + ] +} diff --git a/data/regional/united-states/culture/language/us-language-household-other-2019.json b/data/regional/united-states/culture/language/us-language-household-other-2019.json new file mode 100644 index 0000000..c480f1c --- /dev/null +++ b/data/regional/united-states/culture/language/us-language-household-other-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Other Languages Spoken At Home", + "description" : "Percent of households that speak other non-european non-asian languages at home.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","language"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.language.household.other.2019"], + [1001,0.002], + [1003,0], + [1005,0], + [1007,0], + [1009,0.002], + [1011,0], + [1013,0], + [1015,0.001], + [1017,0], + [1019,0.001], + [1021,0], + [1023,0], + [1025,0], + [1027,0], + [1029,0.001], + [1031,0.002], + [1033,0.001], + [1035,0], + [1037,0], + [1039,0.001], + [1041,0], + [1043,0.001], + [1045,0.001], + [1047,0.002], + [1049,0], + [1051,0.002], + [1053,0.001], + [1055,0.002], + [1057,0], + [1059,0.006], + [1061,0.001], + [1063,0.003], + [1065,0], + [1067,0.002], + [1069,0.002], + [1071,0.001], + [1073,0.005], + [1075,0], + [1077,0.003], + [1079,0], + [1081,0.006], + [1083,0.004], + [1085,0], + [1087,0.003], + [1089,0.006], + [1091,0], + [1093,0.005], + [1095,0.001], + [1097,0.005], + [1099,0], + [1101,0.006], + [1103,0.002], + [1105,0], + [1107,0], + [1109,0.001], + [1111,0], + [1113,0.004], + [1115,0.002], + [1117,0.004], + [1119,0.016], + [1121,0.005], + [1123,0.001], + [1125,0.003], + [1127,0], + [1129,0], + [1131,0.009], + [1133,0.001], + [2013,0.025], + [2016,0.072], + [2020,0.026], + [2050,0.656], + [2060,0.054], + [2068,0.018], + [2070,0.52], + [2090,0.027], + [2100,0.039], + [2105,0.076], + [2110,0.021], + [2122,0.017], + [2130,0.024], + [2150,0.021], + [2158,0.66], + [2164,0.131], + [2170,0.01], + [2180,0.387], + [2185,0.507], + [2188,0.509], + [2195,0.009], + [2198,0.044], + [2220,0.017], + [2230,0.011], + [2240,0.051], + [2261,0.015], + [2275,0.01], + [2282,0.064], + [2290,0.206], + [4001,0.637], + [4003,0.004], + [4005,0.169], + [4007,0.074], + [4009,0.073], + [4011,0.034], + [4012,0.01], + [4013,0.016], + [4015,0.007], + [4017,0.324], + [4019,0.015], + [4021,0.016], + [4023,0], + [4025,0.004], + [4027,0.005], + [5001,0.001], + [5003,0], + [5005,0], + [5007,0.003], + [5009,0.003], + [5011,0], + [5013,0], + [5015,0], + [5017,0], + [5019,0.001], + [5021,0], + [5023,0.001], + [5025,0], + [5027,0], + [5029,0], + [5031,0.005], + [5033,0], + [5035,0.001], + [5037,0], + [5039,0], + [5041,0.004], + [5043,0.003], + [5045,0.006], + [5047,0], + [5049,0.001], + [5051,0], + [5053,0], + [5055,0], + [5057,0], + [5059,0.002], + [5061,0], + [5063,0], + [5065,0.002], + [5067,0], + [5069,0.004], + [5071,0.002], + [5073,0], + [5075,0], + [5077,0], + [5079,0], + [5081,0], + [5083,0], + [5085,0.002], + [5087,0], + [5089,0], + [5091,0.002], + [5093,0], + [5095,0], + [5097,0], + [5099,0], + [5101,0.003], + [5103,0.003], + [5105,0], + [5107,0.004], + [5109,0.001], + [5111,0], + [5113,0], + [5115,0.002], + [5117,0.004], + [5119,0.005], + [5121,0], + [5123,0], + [5125,0.002], + [5127,0.003], + [5129,0.003], + [5131,0.002], + [5133,0.007], + [5135,0], + [5137,0], + [5139,0], + [5141,0], + [5143,0.003], + [5145,0.004], + [5147,0], + [5149,0], + [6001,0.017], + [6003,0.04], + [6005,0.005], + [6007,0.008], + [6009,0.004], + [6011,0], + [6013,0.014], + [6015,0.012], + [6017,0.005], + [6019,0.009], + [6021,0.002], + [6023,0.009], + [6025,0.004], + [6027,0.017], + [6029,0.008], + [6031,0.006], + [6033,0.002], + [6035,0.004], + [6037,0.014], + [6039,0.009], + [6041,0.009], + [6043,0.007], + [6045,0.003], + [6047,0.004], + [6049,0], + [6051,0.011], + [6053,0.009], + [6055,0.004], + [6057,0.004], + [6059,0.013], + [6061,0.008], + [6063,0], + [6065,0.009], + [6067,0.011], + [6069,0.007], + [6071,0.011], + [6073,0.018], + [6075,0.012], + [6077,0.008], + [6079,0.005], + [6081,0.012], + [6083,0.007], + [6085,0.015], + [6087,0.006], + [6089,0.004], + [6091,0], + [6093,0.003], + [6095,0.005], + [6097,0.007], + [6099,0.023], + [6101,0.002], + [6103,0.005], + [6105,0.001], + [6107,0.004], + [6109,0.001], + [6111,0.01], + [6113,0.007], + [6115,0.006], + [8001,0.007], + [8003,0.037], + [8005,0.029], + [8007,0.004], + [8009,0.002], + [8011,0], + [8013,0.007], + [8014,0.006], + [8015,0], + [8017,0], + [8019,0.01], + [8021,0.001], + [8023,0], + [8025,0.001], + [8027,0.017], + [8029,0.008], + [8031,0.016], + [8033,0], + [8035,0.006], + [8037,0.004], + [8039,0], + [8041,0.006], + [8043,0.001], + [8045,0.001], + [8047,0.003], + [8049,0], + [8051,0.003], + [8053,0], + [8055,0], + [8057,0], + [8059,0.005], + [8061,0], + [8063,0], + [8065,0], + [8067,0.019], + [8069,0.006], + [8071,0.002], + [8073,0.007], + [8075,0.001], + [8077,0.002], + [8079,0], + [8081,0.005], + [8083,0.04], + [8085,0.002], + [8087,0.031], + [8089,0], + [8091,0.002], + [8093,0.004], + [8095,0], + [8097,0.004], + [8099,0.004], + [8101,0.002], + [8103,0], + [8105,0.003], + [8107,0.005], + [8109,0], + [8111,0], + [8113,0], + [8115,0], + [8117,0.009], + [8119,0.002], + [8121,0.003], + [8123,0.004], + [8125,0], + [9001,0.012], + [9003,0.014], + [9005,0.004], + [9007,0.005], + [9009,0.014], + [9011,0.005], + [9013,0.004], + [9015,0.004], + [10001,0.007], + [10003,0.014], + [10005,0.003], + [11001,0.023], + [12001,0.006], + [12003,0.011], + [12005,0.005], + [12007,0.002], + [12009,0.005], + [12011,0.015], + [12013,0], + [12015,0.005], + [12017,0.002], + [12019,0.005], + [12021,0.005], + [12023,0.001], + [12027,0.001], + [12029,0.001], + [12031,0.011], + [12033,0.003], + [12035,0.003], + [12037,0.001], + [12039,0.002], + [12041,0.001], + [12043,0.014], + [12045,0], + [12047,0], + [12049,0], + [12051,0.018], + [12053,0.002], + [12055,0.001], + [12057,0.01], + [12059,0.002], + [12061,0.005], + [12063,0.001], + [12065,0.008], + [12067,0], + [12069,0.003], + [12071,0.003], + [12073,0.011], + [12075,0.002], + [12077,0.009], + [12079,0], + [12081,0.004], + [12083,0.003], + [12085,0.004], + [12086,0.008], + [12087,0.002], + [12089,0.006], + [12091,0.001], + [12093,0.003], + [12095,0.011], + [12097,0.011], + [12099,0.013], + [12101,0.006], + [12103,0.007], + [12105,0.004], + [12107,0.001], + [12109,0.005], + [12111,0.008], + [12113,0.002], + [12115,0.006], + [12117,0.01], + [12119,0.001], + [12121,0.003], + [12123,0], + [12125,0], + [12127,0.006], + [12129,0.001], + [12131,0.003], + [12133,0.004], + [13001,0.002], + [13003,0], + [13005,0], + [13007,0], + [13009,0], + [13011,0], + [13013,0.003], + [13015,0.001], + [13017,0.002], + [13019,0], + [13021,0.004], + [13023,0], + [13025,0.002], + [13027,0.004], + [13029,0.003], + [13031,0.004], + [13033,0], + [13035,0.002], + [13037,0], + [13039,0.003], + [13043,0], + [13045,0.003], + [13047,0], + [13049,0], + [13051,0.008], + [13053,0.002], + [13055,0.004], + [13057,0.006], + [13059,0.013], + [13061,0], + [13063,0.022], + [13065,0.009], + [13067,0.021], + [13069,0.002], + [13071,0], + [13073,0.008], + [13075,0], + [13077,0.004], + [13079,0], + [13081,0], + [13083,0], + [13085,0.003], + [13087,0], + [13089,0.034], + [13091,0], + [13093,0], + [13095,0.003], + [13097,0.012], + [13099,0], + [13101,0.006], + [13103,0.001], + [13105,0], + [13107,0.001], + [13109,0], + [13111,0], + [13113,0.01], + [13115,0.003], + [13117,0.009], + [13119,0.003], + [13121,0.016], + [13123,0.008], + [13125,0], + [13127,0.003], + [13129,0], + [13131,0], + [13133,0], + [13135,0.028], + [13137,0.003], + [13139,0.002], + [13141,0], + [13143,0], + [13145,0], + [13147,0.008], + [13149,0], + [13151,0.006], + [13153,0.005], + [13155,0], + [13157,0.001], + [13159,0], + [13161,0.001], + [13163,0], + [13165,0], + [13167,0], + [13169,0.002], + [13171,0.007], + [13173,0.001], + [13175,0], + [13177,0.009], + [13179,0.006], + [13181,0], + [13183,0], + [13185,0.002], + [13187,0], + [13189,0.003], + [13191,0], + [13193,0], + [13195,0], + [13197,0.006], + [13199,0], + [13201,0], + [13205,0.002], + [13207,0.003], + [13209,0], + [13211,0.004], + [13213,0], + [13215,0.004], + [13217,0.006], + [13219,0.003], + [13221,0], + [13223,0.011], + [13225,0], + [13227,0], + [13229,0], + [13231,0], + [13233,0.006], + [13235,0], + [13237,0.001], + [13239,0], + [13241,0.002], + [13243,0], + [13245,0.004], + [13247,0.007], + [13249,0], + [13251,0], + [13253,0.003], + [13255,0.002], + [13257,0], + [13259,0], + [13261,0.007], + [13263,0], + [13265,0], + [13267,0.002], + [13269,0], + [13271,0], + [13273,0.001], + [13275,0.002], + [13277,0.001], + [13279,0], + [13281,0], + [13283,0], + [13285,0.001], + [13287,0], + [13289,0], + [13291,0], + [13293,0], + [13295,0], + [13297,0.002], + [13299,0], + [13301,0], + [13303,0], + [13305,0], + [13307,0], + [13309,0], + [13311,0.001], + [13313,0.002], + [13315,0], + [13317,0], + [13319,0], + [13321,0], + [15001,0.041], + [15003,0.007], + [15005,0.026], + [15007,0.009], + [15009,0.006], + [16001,0.009], + [16003,0], + [16005,0.011], + [16007,0.009], + [16009,0.008], + [16011,0.02], + [16013,0.002], + [16015,0], + [16017,0], + [16019,0.003], + [16021,0.005], + [16023,0], + [16025,0], + [16027,0.002], + [16029,0], + [16031,0.006], + [16033,0], + [16035,0.008], + [16037,0], + [16039,0.003], + [16041,0.006], + [16043,0], + [16045,0.004], + [16047,0.001], + [16049,0.01], + [16051,0.008], + [16053,0.001], + [16055,0.003], + [16057,0.013], + [16059,0.007], + [16061,0.018], + [16063,0.003], + [16065,0.003], + [16067,0], + [16069,0.017], + [16071,0.004], + [16073,0.006], + [16075,0.01], + [16077,0.006], + [16079,0.016], + [16081,0], + [16083,0.008], + [16085,0], + [16087,0], + [17001,0.002], + [17003,0], + [17005,0.006], + [17007,0.003], + [17009,0], + [17011,0.001], + [17013,0], + [17015,0.002], + [17017,0.002], + [17019,0.01], + [17021,0.001], + [17023,0.001], + [17025,0], + [17027,0], + [17029,0.004], + [17031,0.02], + [17033,0.002], + [17035,0], + [17037,0.009], + [17039,0], + [17041,0], + [17043,0.011], + [17045,0], + [17047,0.005], + [17049,0.001], + [17051,0.003], + [17053,0], + [17055,0], + [17057,0], + [17059,0], + [17061,0], + [17063,0.002], + [17065,0], + [17067,0.001], + [17069,0], + [17071,0.001], + [17073,0], + [17075,0.001], + [17077,0.007], + [17079,0], + [17081,0.001], + [17083,0.001], + [17085,0.001], + [17087,0], + [17089,0.006], + [17091,0.002], + [17093,0.007], + [17095,0.004], + [17097,0.007], + [17099,0.001], + [17101,0], + [17103,0.001], + [17105,0.003], + [17107,0.001], + [17109,0.005], + [17111,0.004], + [17113,0.002], + [17115,0.002], + [17117,0], + [17119,0.004], + [17121,0.002], + [17123,0.001], + [17125,0], + [17127,0.001], + [17129,0.002], + [17131,0.002], + [17133,0.003], + [17135,0], + [17137,0], + [17139,0], + [17141,0], + [17143,0.005], + [17145,0], + [17147,0.002], + [17149,0], + [17151,0], + [17153,0], + [17155,0], + [17157,0.003], + [17159,0.002], + [17161,0.01], + [17163,0.005], + [17165,0.003], + [17167,0.006], + [17169,0], + [17171,0], + [17173,0], + [17175,0], + [17177,0.001], + [17179,0.002], + [17181,0], + [17183,0.003], + [17185,0.002], + [17187,0.004], + [17189,0.001], + [17191,0], + [17193,0.001], + [17195,0.004], + [17197,0.011], + [17199,0.003], + [17201,0.01], + [17203,0], + [18001,0], + [18003,0.005], + [18005,0.002], + [18007,0], + [18009,0.005], + [18011,0.002], + [18013,0], + [18015,0.001], + [18017,0.002], + [18019,0.002], + [18021,0], + [18023,0], + [18025,0.001], + [18027,0], + [18029,0.002], + [18031,0.003], + [18033,0.002], + [18035,0.001], + [18037,0.001], + [18039,0.003], + [18041,0.001], + [18043,0.002], + [18045,0.003], + [18047,0.002], + [18049,0], + [18051,0.001], + [18053,0.002], + [18055,0], + [18057,0.007], + [18059,0.001], + [18061,0.003], + [18063,0.006], + [18065,0], + [18067,0.001], + [18069,0.001], + [18071,0.003], + [18073,0.001], + [18075,0.001], + [18077,0], + [18079,0], + [18081,0.007], + [18083,0.001], + [18085,0.001], + [18087,0.002], + [18089,0.007], + [18091,0.003], + [18093,0], + [18095,0.002], + [18097,0.014], + [18099,0.001], + [18101,0], + [18103,0.002], + [18105,0.01], + [18107,0], + [18109,0.002], + [18111,0], + [18113,0.008], + [18115,0.002], + [18117,0.004], + [18119,0.002], + [18121,0], + [18123,0], + [18125,0], + [18127,0.004], + [18129,0], + [18131,0], + [18133,0], + [18135,0], + [18137,0], + [18139,0], + [18141,0.008], + [18143,0.001], + [18145,0], + [18147,0.002], + [18149,0], + [18151,0.001], + [18153,0], + [18155,0.001], + [18157,0.007], + [18159,0], + [18161,0], + [18163,0.003], + [18165,0.008], + [18167,0.009], + [18169,0], + [18171,0.002], + [18173,0.001], + [18175,0.001], + [18177,0], + [18179,0], + [18181,0], + [18183,0.005], + [19001,0], + [19003,0], + [19005,0.012], + [19007,0], + [19009,0], + [19011,0], + [19013,0.008], + [19015,0], + [19017,0], + [19019,0.003], + [19021,0.006], + [19023,0], + [19025,0.003], + [19027,0], + [19029,0], + [19031,0.003], + [19033,0], + [19035,0], + [19037,0.001], + [19039,0], + [19041,0.001], + [19043,0.004], + [19045,0.003], + [19047,0.029], + [19049,0.009], + [19051,0], + [19053,0.001], + [19055,0.002], + [19057,0.003], + [19059,0.002], + [19061,0.006], + [19063,0.001], + [19065,0.003], + [19067,0.009], + [19069,0], + [19071,0], + [19073,0.01], + [19075,0], + [19077,0], + [19079,0.002], + [19081,0.001], + [19083,0.001], + [19085,0], + [19087,0.007], + [19089,0], + [19091,0], + [19093,0.001], + [19095,0], + [19097,0], + [19099,0.005], + [19101,0.006], + [19103,0.023], + [19105,0], + [19107,0], + [19109,0.001], + [19111,0.001], + [19113,0.008], + [19115,0.003], + [19117,0], + [19119,0], + [19121,0], + [19123,0], + [19125,0.002], + [19127,0.004], + [19129,0], + [19131,0], + [19133,0.004], + [19135,0], + [19137,0], + [19139,0.008], + [19141,0.003], + [19143,0], + [19145,0.003], + [19147,0.003], + [19149,0.001], + [19151,0], + [19153,0.018], + [19155,0.001], + [19157,0], + [19159,0.001], + [19161,0], + [19163,0.004], + [19165,0], + [19167,0.001], + [19169,0.006], + [19171,0.044], + [19173,0], + [19175,0.006], + [19177,0], + [19179,0.012], + [19181,0], + [19183,0], + [19185,0.003], + [19187,0.003], + [19189,0], + [19191,0.002], + [19193,0.011], + [19195,0.001], + [19197,0], + [20001,0], + [20003,0], + [20005,0], + [20007,0], + [20009,0], + [20011,0], + [20013,0.008], + [20015,0.005], + [20017,0], + [20019,0.008], + [20021,0.001], + [20023,0], + [20025,0], + [20027,0.001], + [20029,0], + [20031,0.001], + [20033,0], + [20035,0.002], + [20037,0.001], + [20039,0], + [20041,0], + [20043,0.002], + [20045,0.012], + [20047,0], + [20049,0], + [20051,0.004], + [20053,0], + [20055,0.013], + [20057,0.018], + [20059,0.002], + [20061,0.019], + [20063,0], + [20065,0.003], + [20067,0], + [20069,0], + [20071,0], + [20073,0], + [20075,0], + [20077,0.005], + [20079,0.001], + [20081,0.004], + [20083,0], + [20085,0.017], + [20087,0], + [20089,0], + [20091,0.014], + [20093,0], + [20095,0], + [20097,0.002], + [20099,0], + [20101,0], + [20103,0.002], + [20105,0], + [20107,0], + [20109,0.004], + [20111,0.005], + [20113,0], + [20115,0], + [20117,0], + [20119,0], + [20121,0.001], + [20123,0], + [20125,0.004], + [20127,0], + [20129,0], + [20131,0], + [20133,0.001], + [20135,0], + [20137,0], + [20139,0], + [20141,0.012], + [20143,0], + [20145,0], + [20147,0], + [20149,0], + [20151,0], + [20153,0.014], + [20155,0.001], + [20157,0.005], + [20159,0], + [20161,0.011], + [20163,0.003], + [20165,0], + [20167,0], + [20169,0.002], + [20171,0], + [20173,0.009], + [20175,0.029], + [20177,0.002], + [20179,0.01], + [20181,0], + [20183,0.001], + [20185,0], + [20187,0], + [20189,0], + [20191,0.004], + [20193,0], + [20195,0], + [20197,0.002], + [20199,0], + [20201,0], + [20203,0], + [20205,0.001], + [20207,0.001], + [20209,0.007], + [21001,0.002], + [21003,0], + [21005,0], + [21007,0.003], + [21009,0], + [21011,0], + [21013,0], + [21015,0.006], + [21017,0], + [21019,0.001], + [21021,0.006], + [21023,0], + [21025,0.002], + [21027,0], + [21029,0.003], + [21031,0.005], + [21033,0], + [21035,0.02], + [21037,0.001], + [21039,0.001], + [21041,0], + [21043,0], + [21045,0.002], + [21047,0.004], + [21049,0], + [21051,0], + [21053,0], + [21055,0], + [21057,0], + [21059,0.002], + [21061,0.003], + [21063,0.001], + [21065,0], + [21067,0.016], + [21069,0], + [21071,0.001], + [21073,0.002], + [21075,0.002], + [21077,0], + [21079,0], + [21081,0.001], + [21083,0.004], + [21085,0.001], + [21087,0], + [21089,0], + [21091,0], + [21093,0.003], + [21095,0.001], + [21097,0], + [21099,0], + [21101,0.001], + [21103,0.001], + [21105,0.009], + [21107,0], + [21109,0], + [21111,0.011], + [21113,0.008], + [21115,0.002], + [21117,0.003], + [21119,0.003], + [21121,0], + [21123,0], + [21125,0.001], + [21127,0], + [21129,0], + [21131,0], + [21133,0], + [21135,0], + [21137,0], + [21139,0], + [21141,0], + [21143,0.009], + [21145,0.001], + [21147,0], + [21149,0], + [21151,0.007], + [21153,0], + [21155,0], + [21157,0], + [21159,0], + [21161,0], + [21163,0], + [21165,0], + [21167,0.001], + [21169,0], + [21171,0.003], + [21173,0], + [21175,0], + [21177,0], + [21179,0.001], + [21181,0], + [21183,0.001], + [21185,0.002], + [21187,0], + [21189,0], + [21191,0.005], + [21193,0], + [21195,0], + [21197,0.005], + [21199,0], + [21201,0], + [21203,0.001], + [21205,0.004], + [21207,0], + [21209,0.001], + [21211,0.002], + [21213,0.001], + [21215,0], + [21217,0], + [21219,0], + [21221,0.001], + [21223,0], + [21225,0], + [21227,0.014], + [21229,0], + [21231,0], + [21233,0], + [21235,0], + [21237,0], + [21239,0], + [22001,0.002], + [22003,0.01], + [22005,0.004], + [22007,0], + [22009,0.002], + [22011,0.001], + [22013,0.001], + [22015,0.003], + [22017,0.002], + [22019,0.002], + [22021,0], + [22023,0], + [22025,0], + [22027,0], + [22029,0], + [22031,0], + [22033,0.005], + [22035,0], + [22037,0.001], + [22039,0.004], + [22041,0], + [22043,0], + [22045,0], + [22047,0.002], + [22049,0.002], + [22051,0.011], + [22053,0.002], + [22055,0.004], + [22057,0], + [22059,0], + [22061,0.009], + [22063,0.004], + [22065,0], + [22067,0], + [22069,0.007], + [22071,0.004], + [22073,0.003], + [22075,0.012], + [22077,0], + [22079,0.006], + [22081,0], + [22083,0.002], + [22085,0.001], + [22087,0.007], + [22089,0.002], + [22091,0], + [22093,0.001], + [22095,0.002], + [22097,0.003], + [22099,0], + [22101,0.002], + [22103,0.003], + [22105,0.002], + [22107,0.005], + [22109,0.003], + [22111,0], + [22113,0.001], + [22115,0.01], + [22117,0.001], + [22119,0.001], + [22121,0], + [22123,0.006], + [22125,0], + [22127,0], + [23001,0.009], + [23003,0.004], + [23005,0.014], + [23007,0], + [23009,0.002], + [23011,0.002], + [23013,0.002], + [23015,0.001], + [23017,0.003], + [23019,0.005], + [23021,0.001], + [23023,0.001], + [23025,0.001], + [23027,0.002], + [23029,0.03], + [23031,0.003], + [24001,0.001], + [24003,0.012], + [24005,0.026], + [24009,0.001], + [24011,0.006], + [24013,0.002], + [24015,0.001], + [24017,0.012], + [24019,0.002], + [24021,0.015], + [24023,0.001], + [24025,0.007], + [24027,0.03], + [24029,0.004], + [24031,0.049], + [24033,0.048], + [24035,0.002], + [24037,0.003], + [24039,0.01], + [24041,0.002], + [24043,0.008], + [24045,0.008], + [24047,0.008], + [24510,0.016], + [25001,0.006], + [25003,0.004], + [25005,0.008], + [25007,0.004], + [25009,0.011], + [25011,0.004], + [25013,0.008], + [25015,0.009], + [25017,0.019], + [25019,0.01], + [25021,0.019], + [25023,0.005], + [25025,0.025], + [25027,0.02], + [26001,0.002], + [26003,0.008], + [26005,0.001], + [26007,0.002], + [26009,0.002], + [26011,0.003], + [26013,0.027], + [26015,0.001], + [26017,0.004], + [26019,0.003], + [26021,0.004], + [26023,0.01], + [26025,0.003], + [26027,0.004], + [26029,0.005], + [26031,0.008], + [26033,0.011], + [26035,0.002], + [26037,0.003], + [26039,0.002], + [26041,0.006], + [26043,0.002], + [26045,0.005], + [26047,0.007], + [26049,0.009], + [26051,0], + [26053,0.01], + [26055,0.001], + [26057,0.001], + [26059,0.005], + [26061,0.022], + [26063,0.002], + [26065,0.016], + [26067,0.001], + [26069,0.005], + [26071,0.006], + [26073,0.017], + [26075,0.002], + [26077,0.011], + [26079,0.001], + [26081,0.01], + [26083,0.006], + [26085,0.001], + [26087,0.002], + [26089,0.002], + [26091,0.002], + [26093,0.004], + [26095,0.006], + [26097,0.012], + [26099,0.04], + [26101,0.006], + [26103,0.01], + [26105,0.002], + [26107,0.005], + [26109,0.004], + [26111,0.003], + [26113,0.001], + [26115,0.007], + [26117,0.001], + [26119,0.001], + [26121,0.003], + [26123,0.003], + [26125,0.028], + [26127,0.002], + [26129,0.005], + [26131,0.018], + [26133,0.001], + [26135,0.004], + [26137,0.004], + [26139,0.003], + [26141,0], + [26143,0.002], + [26145,0.004], + [26147,0.003], + [26149,0.002], + [26151,0.003], + [26153,0], + [26155,0.002], + [26157,0.002], + [26159,0.002], + [26161,0.018], + [26163,0.043], + [26165,0.003], + [27001,0.011], + [27003,0.032], + [27005,0.014], + [27007,0.027], + [27009,0.021], + [27011,0.001], + [27013,0.021], + [27015,0.001], + [27017,0.02], + [27019,0.006], + [27021,0.019], + [27023,0.005], + [27025,0.001], + [27027,0.014], + [27029,0.013], + [27031,0.02], + [27033,0.003], + [27035,0.006], + [27037,0.026], + [27039,0], + [27041,0.002], + [27043,0], + [27045,0.001], + [27047,0.003], + [27049,0.004], + [27051,0.001], + [27053,0.044], + [27055,0.002], + [27057,0.006], + [27059,0.005], + [27061,0.009], + [27063,0], + [27065,0.001], + [27067,0.03], + [27069,0.006], + [27071,0.016], + [27073,0.004], + [27075,0.007], + [27077,0], + [27079,0.002], + [27081,0.004], + [27083,0.018], + [27085,0.002], + [27087,0.058], + [27089,0.004], + [27091,0.001], + [27093,0.002], + [27095,0.015], + [27097,0.001], + [27099,0.026], + [27101,0.001], + [27103,0.015], + [27105,0.03], + [27107,0.009], + [27109,0.034], + [27111,0.009], + [27113,0.002], + [27115,0.008], + [27117,0.013], + [27119,0.013], + [27121,0.001], + [27123,0.04], + [27125,0.005], + [27127,0.009], + [27129,0.001], + [27131,0.024], + [27133,0], + [27135,0.002], + [27137,0.012], + [27139,0.021], + [27141,0.013], + [27143,0.003], + [27145,0.032], + [27147,0.017], + [27149,0.004], + [27151,0.001], + [27153,0.008], + [27155,0.015], + [27157,0], + [27159,0.022], + [27161,0.015], + [27163,0.015], + [27165,0.004], + [27167,0], + [27169,0.004], + [27171,0.006], + [27173,0.009], + [28001,0.001], + [28003,0.002], + [28005,0], + [28007,0], + [28009,0], + [28011,0.002], + [28013,0.002], + [28015,0], + [28017,0], + [28019,0.002], + [28021,0], + [28023,0], + [28025,0], + [28027,0.006], + [28029,0.001], + [28031,0.003], + [28033,0.004], + [28035,0.001], + [28037,0.002], + [28039,0.001], + [28041,0.001], + [28043,0.001], + [28045,0.003], + [28047,0.005], + [28049,0.003], + [28051,0], + [28053,0.001], + [28055,0], + [28057,0.002], + [28059,0.002], + [28061,0], + [28063,0.001], + [28065,0.001], + [28067,0.004], + [28069,0.016], + [28071,0.013], + [28073,0.005], + [28075,0.004], + [28077,0.001], + [28079,0.024], + [28081,0.003], + [28083,0], + [28085,0], + [28087,0.002], + [28089,0.006], + [28091,0.001], + [28093,0.002], + [28095,0], + [28097,0], + [28099,0.075], + [28101,0.025], + [28103,0], + [28105,0.005], + [28107,0.003], + [28109,0], + [28111,0.005], + [28113,0.001], + [28115,0], + [28117,0], + [28119,0], + [28121,0.003], + [28123,0.005], + [28125,0], + [28127,0], + [28129,0], + [28131,0], + [28133,0], + [28135,0], + [28137,0.002], + [28139,0.004], + [28141,0.001], + [28143,0.009], + [28145,0.006], + [28147,0], + [28149,0.005], + [28151,0.002], + [28153,0], + [28155,0], + [28157,0], + [28159,0.008], + [28161,0.001], + [28163,0], + [29001,0.002], + [29003,0], + [29005,0], + [29007,0.001], + [29009,0], + [29011,0], + [29013,0.003], + [29015,0], + [29017,0], + [29019,0.011], + [29021,0.008], + [29023,0.001], + [29025,0], + [29027,0.002], + [29029,0], + [29031,0.006], + [29033,0.005], + [29035,0], + [29037,0.002], + [29039,0], + [29041,0], + [29043,0.002], + [29045,0], + [29047,0.011], + [29049,0.002], + [29051,0.006], + [29053,0.002], + [29055,0], + [29057,0], + [29059,0], + [29061,0], + [29063,0], + [29065,0], + [29067,0], + [29069,0], + [29071,0.001], + [29073,0.001], + [29075,0.001], + [29077,0.003], + [29079,0.001], + [29081,0.005], + [29083,0.002], + [29085,0], + [29087,0], + [29089,0], + [29091,0], + [29093,0], + [29095,0.01], + [29097,0.004], + [29099,0.002], + [29101,0.008], + [29103,0], + [29105,0], + [29107,0], + [29109,0], + [29111,0.008], + [29113,0], + [29115,0], + [29117,0], + [29119,0.007], + [29121,0.003], + [29123,0], + [29125,0], + [29127,0], + [29129,0], + [29131,0], + [29133,0.004], + [29135,0], + [29137,0], + [29139,0.006], + [29141,0.001], + [29143,0], + [29145,0.003], + [29147,0.003], + [29149,0.008], + [29151,0.002], + [29153,0], + [29155,0.001], + [29157,0], + [29159,0], + [29161,0.012], + [29163,0], + [29165,0.016], + [29167,0.003], + [29169,0.001], + [29171,0], + [29173,0.002], + [29175,0], + [29177,0], + [29179,0.001], + [29181,0.001], + [29183,0.003], + [29185,0.002], + [29186,0], + [29187,0], + [29189,0.01], + [29195,0], + [29197,0.002], + [29199,0], + [29201,0.001], + [29203,0.006], + [29205,0], + [29207,0.003], + [29209,0], + [29211,0.008], + [29213,0.001], + [29215,0], + [29217,0.001], + [29219,0.002], + [29221,0], + [29223,0], + [29225,0.005], + [29227,0], + [29229,0.002], + [29510,0.015], + [30001,0], + [30003,0.32], + [30005,0.079], + [30007,0.01], + [30009,0.001], + [30011,0], + [30013,0.001], + [30015,0.003], + [30017,0.001], + [30019,0], + [30021,0], + [30023,0.003], + [30025,0], + [30027,0.006], + [30029,0.003], + [30031,0.006], + [30033,0.005], + [30035,0.014], + [30037,0], + [30039,0.003], + [30041,0.013], + [30043,0.006], + [30045,0], + [30047,0.026], + [30049,0.002], + [30051,0], + [30053,0.007], + [30055,0], + [30057,0], + [30059,0.006], + [30061,0], + [30063,0.008], + [30065,0.012], + [30067,0.001], + [30069,0], + [30071,0.005], + [30073,0.008], + [30075,0], + [30077,0], + [30079,0], + [30081,0.006], + [30083,0.002], + [30085,0.05], + [30087,0.096], + [30089,0.003], + [30091,0], + [30093,0.015], + [30095,0.001], + [30097,0], + [30099,0], + [30101,0.001], + [30103,0], + [30105,0.004], + [30107,0.011], + [30109,0], + [30111,0.008], + [31001,0.001], + [31003,0], + [31005,0], + [31007,0], + [31009,0], + [31011,0], + [31013,0.006], + [31015,0.002], + [31017,0], + [31019,0.005], + [31021,0.002], + [31023,0.006], + [31025,0], + [31027,0], + [31029,0], + [31031,0.004], + [31033,0.003], + [31035,0], + [31037,0.035], + [31039,0], + [31041,0], + [31043,0.055], + [31045,0], + [31047,0.061], + [31049,0], + [31051,0.001], + [31053,0.002], + [31055,0.014], + [31057,0], + [31059,0], + [31061,0], + [31063,0.002], + [31065,0], + [31067,0], + [31069,0], + [31071,0], + [31073,0], + [31075,0.007], + [31077,0.002], + [31079,0.017], + [31081,0.002], + [31083,0.003], + [31085,0], + [31087,0], + [31089,0.003], + [31091,0], + [31093,0], + [31095,0], + [31097,0.001], + [31099,0], + [31101,0.001], + [31103,0], + [31105,0], + [31107,0.011], + [31109,0.012], + [31111,0.005], + [31113,0], + [31115,0], + [31117,0], + [31119,0.001], + [31121,0], + [31123,0], + [31125,0], + [31127,0], + [31129,0], + [31131,0.003], + [31133,0.013], + [31135,0], + [31137,0], + [31139,0], + [31141,0.001], + [31143,0.007], + [31145,0], + [31147,0.001], + [31149,0], + [31151,0.017], + [31153,0.006], + [31155,0], + [31157,0.003], + [31159,0.002], + [31161,0.006], + [31163,0], + [31165,0], + [31167,0.007], + [31169,0.001], + [31171,0], + [31173,0.029], + [31175,0.002], + [31177,0], + [31179,0], + [31181,0], + [31183,0], + [31185,0.001], + [32001,0.01], + [32003,0.014], + [32005,0.008], + [32007,0.01], + [32009,0], + [32011,0.043], + [32013,0.017], + [32015,0.01], + [32017,0.004], + [32019,0.006], + [32021,0.045], + [32023,0.004], + [32027,0.002], + [32029,0.012], + [32031,0.005], + [32033,0.004], + [32510,0.007], + [33001,0.002], + [33003,0.002], + [33005,0.002], + [33007,0.003], + [33009,0.005], + [33011,0.01], + [33013,0.006], + [33015,0.004], + [33017,0.004], + [33019,0.008], + [34001,0.006], + [34003,0.024], + [34005,0.013], + [34007,0.009], + [34009,0.004], + [34011,0.003], + [34013,0.032], + [34015,0.008], + [34017,0.03], + [34019,0.006], + [34021,0.017], + [34023,0.029], + [34025,0.012], + [34027,0.009], + [34029,0.012], + [34031,0.027], + [34033,0.004], + [34035,0.017], + [34037,0.006], + [34039,0.018], + [34041,0.01], + [35001,0.027], + [35003,0], + [35005,0.005], + [35006,0.25], + [35007,0.003], + [35009,0.002], + [35011,0], + [35013,0.009], + [35015,0.006], + [35017,0.014], + [35019,0.017], + [35021,0], + [35023,0.002], + [35025,0.004], + [35027,0.001], + [35028,0.006], + [35029,0.009], + [35031,0.619], + [35033,0.017], + [35035,0.021], + [35037,0.002], + [35039,0.078], + [35041,0.003], + [35043,0.068], + [35045,0.27], + [35047,0.008], + [35049,0.015], + [35051,0.002], + [35053,0.072], + [35055,0.042], + [35057,0.002], + [35059,0.004], + [35061,0.019], + [36001,0.011], + [36003,0.003], + [36005,0.044], + [36007,0.007], + [36009,0.007], + [36011,0.003], + [36013,0.001], + [36015,0.001], + [36017,0.002], + [36019,0.005], + [36021,0.004], + [36023,0.003], + [36025,0.001], + [36027,0.013], + [36029,0.014], + [36031,0.004], + [36033,0.027], + [36035,0.002], + [36037,0.001], + [36039,0.001], + [36041,0.003], + [36043,0.002], + [36045,0.007], + [36047,0.034], + [36049,0.001], + [36051,0.003], + [36053,0.007], + [36055,0.011], + [36057,0.004], + [36059,0.016], + [36061,0.019], + [36063,0.004], + [36065,0.008], + [36067,0.014], + [36069,0.005], + [36071,0.01], + [36073,0.005], + [36075,0.003], + [36077,0.004], + [36079,0.01], + [36081,0.02], + [36083,0.008], + [36085,0.032], + [36087,0.021], + [36089,0.007], + [36091,0.004], + [36093,0.006], + [36095,0.004], + [36097,0], + [36099,0.001], + [36101,0.003], + [36103,0.008], + [36105,0.004], + [36107,0.001], + [36109,0.006], + [36111,0.005], + [36113,0.001], + [36115,0.001], + [36117,0.001], + [36119,0.019], + [36121,0], + [36123,0], + [37001,0.003], + [37003,0], + [37005,0], + [37007,0], + [37009,0], + [37011,0], + [37013,0.001], + [37015,0], + [37017,0], + [37019,0.001], + [37021,0.001], + [37023,0.005], + [37025,0.007], + [37027,0.002], + [37029,0.006], + [37031,0.003], + [37033,0], + [37035,0.002], + [37037,0.001], + [37039,0.001], + [37041,0.006], + [37043,0], + [37045,0.002], + [37047,0.001], + [37049,0.003], + [37051,0.007], + [37053,0], + [37055,0.001], + [37057,0.001], + [37059,0.002], + [37061,0.001], + [37063,0.017], + [37065,0.002], + [37067,0.005], + [37069,0.005], + [37071,0.003], + [37073,0.004], + [37075,0.017], + [37077,0.004], + [37079,0.001], + [37081,0.013], + [37083,0.002], + [37085,0.003], + [37087,0.003], + [37089,0.004], + [37091,0.001], + [37093,0.005], + [37095,0], + [37097,0.002], + [37099,0.016], + [37101,0.006], + [37103,0], + [37105,0.001], + [37107,0.001], + [37109,0.002], + [37111,0], + [37113,0.001], + [37115,0], + [37117,0.001], + [37119,0.013], + [37121,0.002], + [37123,0.003], + [37125,0.001], + [37127,0.004], + [37129,0.004], + [37131,0], + [37133,0.004], + [37135,0.007], + [37137,0.001], + [37139,0.001], + [37141,0.002], + [37143,0], + [37145,0.004], + [37147,0.004], + [37149,0.002], + [37151,0.002], + [37153,0], + [37155,0.004], + [37157,0.002], + [37159,0.002], + [37161,0.002], + [37163,0.005], + [37165,0.001], + [37167,0.001], + [37169,0], + [37171,0.001], + [37173,0.026], + [37175,0], + [37177,0], + [37179,0.006], + [37181,0.005], + [37183,0.014], + [37185,0.001], + [37187,0], + [37189,0.002], + [37191,0.004], + [37193,0.002], + [37195,0.003], + [37197,0], + [37199,0], + [38001,0.004], + [38003,0.004], + [38005,0.115], + [38007,0], + [38009,0.001], + [38011,0.012], + [38013,0], + [38015,0.007], + [38017,0.025], + [38019,0.005], + [38021,0.003], + [38023,0.004], + [38025,0.026], + [38027,0.045], + [38029,0], + [38031,0], + [38033,0], + [38035,0.018], + [38037,0.001], + [38039,0], + [38041,0.004], + [38043,0], + [38045,0.003], + [38047,0.004], + [38049,0.003], + [38051,0.002], + [38053,0.032], + [38055,0.02], + [38057,0], + [38059,0.006], + [38061,0.043], + [38063,0.016], + [38065,0], + [38067,0.004], + [38069,0], + [38071,0.002], + [38073,0.011], + [38075,0], + [38077,0], + [38079,0.025], + [38081,0.03], + [38083,0], + [38085,0.098], + [38087,0], + [38089,0.006], + [38091,0], + [38093,0], + [38095,0.01], + [38097,0.002], + [38099,0.001], + [38101,0.009], + [38103,0], + [38105,0.015], + [39001,0.001], + [39003,0.003], + [39005,0.003], + [39007,0.002], + [39009,0.018], + [39011,0], + [39013,0], + [39015,0.001], + [39017,0.009], + [39019,0], + [39021,0], + [39023,0.002], + [39025,0.002], + [39027,0.002], + [39029,0.003], + [39031,0.001], + [39033,0.001], + [39035,0.017], + [39037,0.002], + [39039,0.001], + [39041,0.007], + [39043,0.002], + [39045,0.01], + [39047,0], + [39049,0.034], + [39051,0.004], + [39053,0.001], + [39055,0.004], + [39057,0.013], + [39059,0.002], + [39061,0.012], + [39063,0.007], + [39065,0.007], + [39067,0.006], + [39069,0.003], + [39071,0], + [39073,0.001], + [39075,0.001], + [39077,0], + [39079,0.003], + [39081,0], + [39083,0], + [39085,0.005], + [39087,0], + [39089,0.004], + [39091,0.002], + [39093,0.005], + [39095,0.012], + [39097,0.003], + [39099,0.005], + [39101,0.001], + [39103,0.003], + [39105,0], + [39107,0.002], + [39109,0.004], + [39111,0], + [39113,0.009], + [39115,0.002], + [39117,0], + [39119,0.003], + [39121,0.003], + [39123,0.002], + [39125,0.002], + [39127,0], + [39129,0.002], + [39131,0.003], + [39133,0.011], + [39135,0], + [39137,0.001], + [39139,0.003], + [39141,0.001], + [39143,0.001], + [39145,0], + [39147,0.003], + [39149,0], + [39151,0.003], + [39153,0.008], + [39155,0.003], + [39157,0.002], + [39159,0.005], + [39161,0.001], + [39163,0.005], + [39165,0.004], + [39167,0.002], + [39169,0.002], + [39171,0], + [39173,0.007], + [39175,0], + [40001,0.074], + [40003,0.002], + [40005,0.012], + [40007,0.002], + [40009,0], + [40011,0.007], + [40013,0.016], + [40015,0.03], + [40017,0.005], + [40019,0.004], + [40021,0.04], + [40023,0.013], + [40025,0], + [40027,0.007], + [40029,0.014], + [40031,0.011], + [40033,0.015], + [40035,0.006], + [40037,0.007], + [40039,0.012], + [40041,0.029], + [40043,0.018], + [40045,0], + [40047,0.009], + [40049,0.003], + [40051,0.002], + [40053,0], + [40055,0.002], + [40057,0.003], + [40059,0.002], + [40061,0.004], + [40063,0.042], + [40065,0.005], + [40067,0], + [40069,0.008], + [40071,0.009], + [40073,0], + [40075,0.012], + [40077,0.011], + [40079,0.003], + [40081,0.005], + [40083,0.001], + [40085,0], + [40087,0.003], + [40089,0.013], + [40091,0.009], + [40093,0.005], + [40095,0.001], + [40097,0.025], + [40099,0.01], + [40101,0.01], + [40103,0.007], + [40105,0], + [40107,0.032], + [40109,0.01], + [40111,0.015], + [40113,0.006], + [40115,0.01], + [40117,0.004], + [40119,0.017], + [40121,0.005], + [40123,0.016], + [40125,0.011], + [40127,0.018], + [40129,0], + [40131,0.007], + [40133,0.031], + [40135,0.022], + [40137,0.002], + [40139,0.017], + [40141,0.002], + [40143,0.009], + [40145,0.004], + [40147,0.006], + [40149,0], + [40151,0], + [40153,0.002], + [41001,0.001], + [41003,0.013], + [41005,0.005], + [41007,0.004], + [41009,0.001], + [41011,0.001], + [41013,0], + [41015,0], + [41017,0.002], + [41019,0.002], + [41021,0], + [41023,0.002], + [41025,0.006], + [41027,0], + [41029,0.003], + [41031,0.022], + [41033,0.001], + [41035,0.007], + [41037,0.001], + [41039,0.004], + [41041,0.002], + [41043,0.002], + [41045,0.001], + [41047,0.003], + [41049,0.002], + [41051,0.012], + [41053,0.009], + [41055,0.005], + [41057,0.005], + [41059,0.005], + [41061,0.004], + [41063,0.002], + [41065,0.003], + [41067,0.011], + [41069,0.002], + [41071,0.002], + [42001,0], + [42003,0.007], + [42005,0], + [42007,0.002], + [42009,0.001], + [42011,0.005], + [42013,0], + [42015,0.003], + [42017,0.006], + [42019,0.001], + [42021,0.003], + [42023,0.001], + [42025,0], + [42027,0.01], + [42029,0.005], + [42031,0], + [42033,0], + [42035,0.002], + [42037,0.004], + [42039,0.001], + [42041,0.007], + [42043,0.009], + [42045,0.019], + [42047,0], + [42049,0.01], + [42051,0.003], + [42053,0], + [42055,0.002], + [42057,0.001], + [42059,0.001], + [42061,0.001], + [42063,0.001], + [42065,0.001], + [42067,0.002], + [42069,0.004], + [42071,0.009], + [42073,0.002], + [42075,0.006], + [42077,0.02], + [42079,0.004], + [42081,0.003], + [42083,0.001], + [42085,0.002], + [42087,0.003], + [42089,0.01], + [42091,0.01], + [42093,0.001], + [42095,0.006], + [42097,0.001], + [42099,0.001], + [42101,0.019], + [42103,0.01], + [42105,0.004], + [42107,0.002], + [42109,0.001], + [42111,0.002], + [42113,0.003], + [42115,0], + [42117,0.001], + [42119,0], + [42121,0.001], + [42123,0.002], + [42125,0.002], + [42127,0.001], + [42129,0.002], + [42131,0], + [42133,0.003], + [44001,0.001], + [44003,0.004], + [44005,0.005], + [44007,0.014], + [44009,0.004], + [45001,0.002], + [45003,0.001], + [45005,0.001], + [45007,0.002], + [45009,0.001], + [45011,0], + [45013,0.005], + [45015,0.003], + [45017,0], + [45019,0.003], + [45021,0], + [45023,0], + [45025,0], + [45027,0.003], + [45029,0], + [45031,0.001], + [45033,0.011], + [45035,0.002], + [45037,0.004], + [45039,0], + [45041,0.003], + [45043,0.001], + [45045,0.005], + [45047,0.001], + [45049,0.002], + [45051,0.004], + [45053,0], + [45055,0], + [45057,0.001], + [45059,0], + [45061,0], + [45063,0.003], + [45065,0.001], + [45067,0], + [45069,0.002], + [45071,0.004], + [45073,0.002], + [45075,0.003], + [45077,0.002], + [45079,0.008], + [45081,0.001], + [45083,0.002], + [45085,0.003], + [45087,0], + [45089,0.001], + [45091,0.003], + [46003,0], + [46005,0], + [46007,0.158], + [46009,0.007], + [46011,0.016], + [46013,0.025], + [46015,0.006], + [46017,0.161], + [46019,0.001], + [46021,0.003], + [46023,0.047], + [46025,0.001], + [46027,0.012], + [46029,0.008], + [46031,0.256], + [46033,0.001], + [46035,0.002], + [46037,0.001], + [46039,0.006], + [46041,0.236], + [46043,0], + [46045,0.005], + [46047,0.035], + [46049,0], + [46051,0], + [46053,0.014], + [46055,0], + [46057,0.002], + [46059,0], + [46061,0.002], + [46063,0.013], + [46065,0.014], + [46067,0], + [46069,0], + [46071,0.176], + [46073,0.02], + [46075,0], + [46077,0], + [46079,0], + [46081,0.002], + [46083,0.006], + [46085,0.084], + [46087,0.006], + [46089,0], + [46091,0.006], + [46093,0.008], + [46095,0.086], + [46097,0], + [46099,0.026], + [46101,0.03], + [46102,0.469], + [46103,0.012], + [46105,0.003], + [46107,0], + [46109,0.011], + [46111,0], + [46115,0.004], + [46117,0.012], + [46119,0], + [46121,0.133], + [46123,0.009], + [46125,0.002], + [46127,0.005], + [46129,0.007], + [46135,0.009], + [46137,0.366], + [47001,0.005], + [47003,0.008], + [47005,0.002], + [47007,0], + [47009,0.003], + [47011,0.003], + [47013,0.001], + [47015,0.003], + [47017,0.002], + [47019,0.002], + [47021,0.001], + [47023,0], + [47025,0], + [47027,0], + [47029,0.001], + [47031,0], + [47033,0.001], + [47035,0.003], + [47037,0.026], + [47039,0], + [47041,0], + [47043,0.001], + [47045,0.005], + [47047,0.005], + [47049,0.001], + [47051,0.002], + [47053,0.001], + [47055,0], + [47057,0], + [47059,0.001], + [47061,0], + [47063,0.001], + [47065,0.002], + [47067,0], + [47069,0.001], + [47071,0], + [47073,0], + [47075,0.003], + [47077,0], + [47079,0.001], + [47081,0], + [47083,0], + [47085,0.004], + [47087,0.001], + [47089,0.001], + [47091,0], + [47093,0.005], + [47095,0], + [47097,0.001], + [47099,0], + [47101,0.003], + [47103,0], + [47105,0], + [47107,0.001], + [47109,0.002], + [47111,0], + [47113,0.003], + [47115,0], + [47117,0.002], + [47119,0.001], + [47121,0], + [47123,0], + [47125,0.007], + [47127,0], + [47129,0.002], + [47131,0.004], + [47133,0], + [47135,0], + [47137,0], + [47139,0], + [47141,0.004], + [47143,0], + [47145,0], + [47147,0.004], + [47149,0.013], + [47151,0], + [47153,0], + [47155,0.003], + [47157,0.01], + [47159,0.004], + [47161,0], + [47163,0.001], + [47165,0.004], + [47167,0.001], + [47169,0], + [47171,0], + [47173,0], + [47175,0.003], + [47177,0.002], + [47179,0.005], + [47181,0], + [47183,0.002], + [47185,0.003], + [47187,0.004], + [47189,0.01], + [48001,0.004], + [48003,0], + [48005,0.001], + [48007,0], + [48009,0], + [48011,0.004], + [48013,0], + [48015,0.001], + [48017,0], + [48019,0], + [48021,0.001], + [48023,0], + [48025,0.002], + [48027,0.008], + [48029,0.006], + [48031,0], + [48033,0.022], + [48035,0.002], + [48037,0.002], + [48039,0.008], + [48041,0.011], + [48043,0], + [48045,0], + [48047,0], + [48049,0.001], + [48051,0], + [48053,0.003], + [48055,0.002], + [48057,0.002], + [48059,0], + [48061,0.001], + [48063,0], + [48065,0], + [48067,0], + [48069,0.007], + [48071,0.002], + [48073,0], + [48075,0], + [48077,0.003], + [48079,0], + [48081,0], + [48083,0], + [48085,0.021], + [48087,0], + [48089,0], + [48091,0.001], + [48093,0], + [48095,0.004], + [48097,0.003], + [48099,0.004], + [48101,0], + [48103,0], + [48105,0], + [48107,0], + [48109,0], + [48111,0], + [48113,0.021], + [48115,0], + [48117,0.003], + [48119,0.002], + [48121,0.014], + [48123,0], + [48125,0], + [48127,0], + [48129,0], + [48131,0], + [48133,0], + [48135,0.008], + [48137,0], + [48139,0.003], + [48141,0.004], + [48143,0], + [48145,0.003], + [48147,0.001], + [48149,0], + [48151,0], + [48153,0], + [48155,0], + [48157,0.033], + [48159,0.004], + [48161,0.008], + [48163,0], + [48165,0.003], + [48167,0.007], + [48169,0], + [48171,0.001], + [48173,0], + [48175,0], + [48177,0.001], + [48179,0.004], + [48181,0.002], + [48183,0.002], + [48185,0.001], + [48187,0.002], + [48189,0.003], + [48191,0], + [48193,0], + [48195,0], + [48197,0.005], + [48199,0.01], + [48201,0.018], + [48203,0.002], + [48205,0], + [48207,0], + [48209,0.005], + [48211,0], + [48213,0], + [48215,0.001], + [48217,0.004], + [48219,0.003], + [48221,0], + [48223,0], + [48225,0], + [48227,0.005], + [48229,0], + [48231,0.002], + [48233,0], + [48235,0], + [48237,0], + [48239,0], + [48241,0.002], + [48243,0], + [48245,0.007], + [48247,0], + [48249,0], + [48251,0.003], + [48253,0], + [48255,0], + [48257,0.007], + [48259,0], + [48261,0], + [48263,0], + [48265,0.001], + [48267,0.004], + [48269,0], + [48271,0], + [48273,0.005], + [48275,0], + [48277,0.006], + [48279,0], + [48281,0], + [48283,0], + [48285,0], + [48287,0.001], + [48289,0], + [48291,0.001], + [48293,0.003], + [48295,0], + [48297,0], + [48299,0], + [48301,0], + [48303,0.009], + [48305,0], + [48307,0], + [48309,0.003], + [48311,0], + [48313,0], + [48315,0], + [48317,0], + [48319,0], + [48321,0], + [48323,0.005], + [48325,0], + [48327,0], + [48329,0.008], + [48331,0.002], + [48333,0], + [48335,0], + [48337,0], + [48339,0.006], + [48341,0.019], + [48343,0], + [48345,0], + [48347,0.003], + [48349,0.002], + [48351,0.003], + [48353,0.004], + [48355,0.004], + [48357,0], + [48359,0], + [48361,0.001], + [48363,0], + [48365,0], + [48367,0.002], + [48369,0], + [48371,0.003], + [48373,0.009], + [48375,0.016], + [48377,0], + [48379,0], + [48381,0.007], + [48383,0], + [48385,0.003], + [48387,0.001], + [48389,0], + [48391,0], + [48393,0], + [48395,0.017], + [48397,0.013], + [48399,0.001], + [48401,0.003], + [48403,0.002], + [48405,0], + [48407,0], + [48409,0], + [48411,0], + [48413,0], + [48415,0], + [48417,0], + [48419,0], + [48421,0], + [48423,0.003], + [48425,0], + [48427,0], + [48429,0.007], + [48431,0], + [48433,0.005], + [48435,0.016], + [48437,0], + [48439,0.018], + [48441,0.006], + [48443,0], + [48445,0], + [48447,0.003], + [48449,0.001], + [48451,0.006], + [48453,0.012], + [48455,0], + [48457,0], + [48459,0.001], + [48461,0], + [48463,0], + [48465,0], + [48467,0.004], + [48469,0.002], + [48471,0.023], + [48473,0], + [48475,0], + [48477,0.004], + [48479,0], + [48481,0.003], + [48483,0.005], + [48485,0.007], + [48487,0.001], + [48489,0], + [48491,0.007], + [48493,0], + [48495,0], + [48497,0.001], + [48499,0.002], + [48501,0], + [48503,0.002], + [48505,0], + [48507,0], + [49001,0.006], + [49003,0.001], + [49005,0.007], + [49007,0.003], + [49009,0], + [49011,0.003], + [49013,0.017], + [49015,0.003], + [49017,0.028], + [49019,0.042], + [49021,0.013], + [49023,0.003], + [49025,0.014], + [49027,0.003], + [49029,0.004], + [49031,0.009], + [49033,0], + [49035,0.01], + [49037,0.395], + [49039,0.004], + [49041,0.007], + [49043,0.001], + [49045,0.007], + [49047,0.034], + [49049,0.005], + [49051,0.003], + [49053,0.005], + [49055,0], + [49057,0.002], + [50001,0.003], + [50003,0.004], + [50005,0.002], + [50007,0.012], + [50009,0], + [50011,0.002], + [50013,0.002], + [50015,0.003], + [50017,0.002], + [50019,0.001], + [50021,0.001], + [50023,0.002], + [50025,0.003], + [50027,0.004], + [51001,0.003], + [51003,0.006], + [51005,0], + [51007,0], + [51009,0.003], + [51011,0.001], + [51013,0.042], + [51015,0], + [51017,0], + [51019,0.006], + [51021,0], + [51023,0], + [51025,0], + [51027,0.007], + [51029,0.004], + [51031,0.001], + [51033,0.001], + [51035,0.001], + [51036,0.001], + [51037,0], + [51041,0.008], + [51043,0.002], + [51045,0], + [51047,0.005], + [51049,0.004], + [51051,0], + [51053,0.001], + [51057,0.004], + [51059,0.047], + [51061,0.003], + [51063,0.002], + [51065,0.005], + [51067,0.001], + [51069,0.003], + [51071,0.002], + [51073,0.001], + [51075,0.003], + [51077,0.001], + [51079,0], + [51081,0.003], + [51083,0.003], + [51085,0.003], + [51087,0.016], + [51089,0], + [51091,0], + [51093,0.006], + [51095,0.008], + [51097,0], + [51099,0.004], + [51101,0], + [51103,0], + [51105,0.001], + [51107,0.023], + [51109,0.006], + [51111,0.003], + [51113,0], + [51115,0], + [51117,0.001], + [51119,0], + [51121,0.009], + [51125,0.004], + [51127,0], + [51131,0], + [51133,0.007], + [51135,0.005], + [51137,0.001], + [51139,0.002], + [51141,0.002], + [51143,0.001], + [51145,0], + [51147,0], + [51149,0.002], + [51153,0.045], + [51155,0.003], + [51157,0.003], + [51159,0], + [51161,0.006], + [51163,0], + [51165,0.007], + [51167,0], + [51169,0.005], + [51171,0.003], + [51173,0.002], + [51175,0.004], + [51177,0.006], + [51179,0.014], + [51181,0.005], + [51183,0.012], + [51185,0.002], + [51187,0.005], + [51191,0.002], + [51193,0.002], + [51195,0], + [51197,0.001], + [51199,0.007], + [51510,0.078], + [51520,0.001], + [51530,0], + [51540,0.018], + [51550,0.007], + [51570,0.007], + [51580,0], + [51590,0.001], + [51595,0], + [51600,0.023], + [51610,0.017], + [51620,0], + [51630,0.016], + [51640,0], + [51650,0.006], + [51660,0.024], + [51670,0.006], + [51678,0], + [51680,0.007], + [51683,0.023], + [51685,0.019], + [51690,0.001], + [51700,0.008], + [51710,0.009], + [51720,0], + [51730,0.01], + [51735,0], + [51740,0.002], + [51750,0.004], + [51760,0.009], + [51770,0.007], + [51775,0.006], + [51790,0.007], + [51800,0.003], + [51810,0.005], + [51820,0.004], + [51830,0.014], + [51840,0.009], + [53001,0.023], + [53003,0.002], + [53005,0.006], + [53007,0.002], + [53009,0.006], + [53011,0.005], + [53013,0], + [53015,0.002], + [53017,0.004], + [53019,0.01], + [53021,0.004], + [53023,0], + [53025,0.001], + [53027,0.004], + [53029,0.003], + [53031,0], + [53033,0.025], + [53035,0.002], + [53037,0.007], + [53039,0.001], + [53041,0.001], + [53043,0.001], + [53045,0.005], + [53047,0.014], + [53049,0.002], + [53051,0.01], + [53053,0.008], + [53055,0.002], + [53057,0.004], + [53059,0], + [53061,0.017], + [53063,0.006], + [53065,0.002], + [53067,0.004], + [53069,0.004], + [53071,0.002], + [53073,0.004], + [53075,0.015], + [53077,0.006], + [54001,0], + [54003,0.006], + [54005,0], + [54007,0], + [54009,0], + [54011,0.002], + [54013,0.004], + [54015,0], + [54017,0], + [54019,0.001], + [54021,0.001], + [54023,0.001], + [54025,0], + [54027,0], + [54029,0], + [54031,0.008], + [54033,0.001], + [54035,0.001], + [54037,0.007], + [54039,0.004], + [54041,0], + [54043,0], + [54045,0], + [54047,0.003], + [54049,0.001], + [54051,0], + [54053,0], + [54055,0.005], + [54057,0], + [54059,0.002], + [54061,0.016], + [54063,0], + [54065,0.001], + [54067,0], + [54069,0.002], + [54071,0], + [54073,0], + [54075,0.003], + [54077,0], + [54079,0], + [54081,0.003], + [54083,0.001], + [54085,0], + [54087,0], + [54089,0], + [54091,0.001], + [54093,0.001], + [54095,0], + [54097,0.001], + [54099,0.001], + [54101,0], + [54103,0.006], + [54105,0], + [54107,0.002], + [54109,0], + [55001,0], + [55003,0.012], + [55005,0.01], + [55007,0.02], + [55009,0.006], + [55011,0], + [55013,0.011], + [55015,0], + [55017,0.002], + [55019,0.002], + [55021,0.001], + [55023,0.001], + [55025,0.008], + [55027,0], + [55029,0], + [55031,0.005], + [55033,0.003], + [55035,0.003], + [55037,0.002], + [55039,0.002], + [55041,0.019], + [55043,0.002], + [55045,0.003], + [55047,0], + [55049,0.003], + [55051,0.007], + [55053,0.016], + [55055,0.001], + [55057,0.003], + [55059,0.003], + [55061,0], + [55063,0.003], + [55065,0.003], + [55067,0.008], + [55069,0], + [55071,0.001], + [55073,0.001], + [55075,0.001], + [55077,0.002], + [55078,0.045], + [55079,0.011], + [55081,0.004], + [55083,0.002], + [55085,0.002], + [55087,0.004], + [55089,0.004], + [55091,0], + [55093,0.005], + [55095,0.003], + [55097,0.001], + [55099,0.004], + [55101,0.003], + [55103,0], + [55105,0.002], + [55107,0], + [55109,0.003], + [55111,0.004], + [55113,0.022], + [55115,0.003], + [55117,0.003], + [55119,0], + [55121,0.003], + [55123,0], + [55125,0.003], + [55127,0.001], + [55129,0.005], + [55131,0.001], + [55133,0.002], + [55135,0], + [55137,0], + [55139,0.003], + [55141,0.002], + [56001,0.014], + [56003,0], + [56005,0.001], + [56007,0.006], + [56009,0.001], + [56011,0], + [56013,0.05], + [56015,0.009], + [56017,0.007], + [56019,0.003], + [56021,0.003], + [56023,0.001], + [56025,0.004], + [56027,0], + [56029,0], + [56031,0], + [56033,0.008], + [56035,0], + [56037,0.003], + [56039,0.005], + [56041,0.002], + [56043,0], + [56045,0] + ] +} diff --git a/data/regional/united-states/culture/language/us-language-household-spanish-2019.json b/data/regional/united-states/culture/language/us-language-household-spanish-2019.json new file mode 100644 index 0000000..795eb89 --- /dev/null +++ b/data/regional/united-states/culture/language/us-language-household-spanish-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Spanish Spoken At Home", + "description" : "Percent of households that speak spanish at home.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "culture", + "tags" : ["regional","us","counties","culture","language"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.language.household.spanish.2019"], + [1001,0.029], + [1003,0.046], + [1005,0.052], + [1007,0.019], + [1009,0.066], + [1011,0.036], + [1013,0.014], + [1015,0.031], + [1017,0.014], + [1019,0.02], + [1021,0.061], + [1023,0.015], + [1025,0.006], + [1027,0.017], + [1029,0.027], + [1031,0.052], + [1033,0.021], + [1035,0.004], + [1037,0.005], + [1039,0.013], + [1041,0.011], + [1043,0.03], + [1045,0.048], + [1047,0.006], + [1049,0.091], + [1051,0.022], + [1053,0.011], + [1055,0.023], + [1057,0.007], + [1059,0.103], + [1061,0.03], + [1063,0.004], + [1065,0.009], + [1067,0.014], + [1069,0.023], + [1071,0.014], + [1073,0.032], + [1075,0.008], + [1077,0.021], + [1079,0.014], + [1081,0.033], + [1083,0.043], + [1085,0.006], + [1087,0.015], + [1089,0.035], + [1091,0.002], + [1093,0.023], + [1095,0.083], + [1097,0.024], + [1099,0.003], + [1101,0.024], + [1103,0.058], + [1105,0.018], + [1107,0.007], + [1109,0.021], + [1111,0.016], + [1113,0.046], + [1115,0.025], + [1117,0.045], + [1119,0.01], + [1121,0.016], + [1123,0.017], + [1125,0.032], + [1127,0.015], + [1129,0.012], + [1131,0.008], + [1133,0.02], + [2013,0.015], + [2016,0.094], + [2020,0.063], + [2050,0.02], + [2060,0.035], + [2068,0.026], + [2070,0.034], + [2090,0.04], + [2100,0.059], + [2105,0.02], + [2110,0.049], + [2122,0.042], + [2130,0.028], + [2150,0.07], + [2158,0.001], + [2164,0.002], + [2170,0.028], + [2180,0.014], + [2185,0.019], + [2188,0.011], + [2195,0.071], + [2198,0.021], + [2220,0.059], + [2230,0.051], + [2240,0.033], + [2261,0.053], + [2275,0.059], + [2282,0.027], + [2290,0.004], + [4001,0.044], + [4003,0.246], + [4005,0.078], + [4007,0.118], + [4009,0.204], + [4011,0.286], + [4012,0.144], + [4013,0.188], + [4015,0.083], + [4017,0.079], + [4019,0.243], + [4021,0.178], + [4023,0.771], + [4025,0.084], + [4027,0.488], + [5001,0.015], + [5003,0.039], + [5005,0.015], + [5007,0.09], + [5009,0.012], + [5011,0.135], + [5013,0.027], + [5015,0.08], + [5017,0.036], + [5019,0.032], + [5021,0.01], + [5023,0.022], + [5025,0.007], + [5027,0.021], + [5029,0.029], + [5031,0.039], + [5033,0.054], + [5035,0.023], + [5037,0.005], + [5039,0.017], + [5041,0.044], + [5043,0.028], + [5045,0.036], + [5047,0.017], + [5049,0.007], + [5051,0.045], + [5053,0.021], + [5055,0.017], + [5057,0.083], + [5059,0.025], + [5061,0.082], + [5063,0.042], + [5065,0.017], + [5067,0.015], + [5069,0.025], + [5071,0.098], + [5073,0.009], + [5075,0.015], + [5077,0.021], + [5079,0.044], + [5081,0.016], + [5083,0.025], + [5085,0.038], + [5087,0.034], + [5089,0.015], + [5091,0.022], + [5093,0.03], + [5095,0.012], + [5097,0.025], + [5099,0.002], + [5101,0.006], + [5103,0.028], + [5105,0.021], + [5107,0.005], + [5109,0.04], + [5111,0.022], + [5113,0.051], + [5115,0.061], + [5117,0.008], + [5119,0.044], + [5121,0.021], + [5123,0.02], + [5125,0.036], + [5127,0.04], + [5129,0.006], + [5131,0.095], + [5133,0.224], + [5135,0.01], + [5137,0.015], + [5139,0.029], + [5141,0.011], + [5143,0.117], + [5145,0.049], + [5147,0.006], + [5149,0.14], + [6001,0.147], + [6003,0.091], + [6005,0.059], + [6007,0.106], + [6009,0.051], + [6011,0.442], + [6013,0.164], + [6015,0.075], + [6017,0.069], + [6019,0.356], + [6021,0.319], + [6023,0.077], + [6025,0.774], + [6027,0.102], + [6029,0.378], + [6031,0.359], + [6033,0.125], + [6035,0.046], + [6037,0.346], + [6039,0.403], + [6041,0.097], + [6043,0.054], + [6045,0.151], + [6047,0.442], + [6049,0.1], + [6051,0.139], + [6053,0.416], + [6055,0.217], + [6057,0.046], + [6059,0.216], + [6061,0.072], + [6063,0.075], + [6065,0.331], + [6067,0.139], + [6069,0.355], + [6071,0.345], + [6073,0.231], + [6075,0.101], + [6077,0.262], + [6079,0.132], + [6081,0.162], + [6083,0.301], + [6085,0.159], + [6087,0.222], + [6089,0.054], + [6091,0.143], + [6093,0.054], + [6095,0.158], + [6097,0.161], + [6099,0.336], + [6101,0.212], + [6103,0.166], + [6105,0.061], + [6107,0.478], + [6109,0.045], + [6111,0.271], + [6113,0.221], + [6115,0.191], + [8001,0.22], + [8003,0.289], + [8005,0.113], + [8007,0.073], + [8009,0.076], + [8011,0.145], + [8013,0.086], + [8014,0.062], + [8015,0.041], + [8017,0.09], + [8019,0.051], + [8021,0.424], + [8023,0.561], + [8025,0.142], + [8027,0.035], + [8029,0.087], + [8031,0.154], + [8033,0.049], + [8035,0.054], + [8037,0.212], + [8039,0.056], + [8041,0.089], + [8043,0.024], + [8045,0.208], + [8047,0.033], + [8049,0.036], + [8051,0.068], + [8053,0.021], + [8055,0.12], + [8057,0.097], + [8059,0.075], + [8061,0.031], + [8063,0.11], + [8065,0.174], + [8067,0.084], + [8069,0.067], + [8071,0.17], + [8073,0.056], + [8075,0.066], + [8077,0.065], + [8079,0.022], + [8081,0.119], + [8083,0.085], + [8085,0.146], + [8087,0.23], + [8089,0.144], + [8091,0.097], + [8093,0.017], + [8095,0.229], + [8097,0.073], + [8099,0.239], + [8101,0.171], + [8103,0.067], + [8105,0.302], + [8107,0.044], + [8109,0.274], + [8111,0.156], + [8113,0.12], + [8115,0.062], + [8117,0.109], + [8119,0.026], + [8121,0.037], + [8123,0.178], + [8125,0.144], + [9001,0.156], + [9003,0.141], + [9005,0.044], + [9007,0.052], + [9009,0.137], + [9011,0.077], + [9013,0.04], + [9015,0.094], + [10001,0.058], + [10003,0.072], + [10005,0.06], + [11001,0.088], + [12001,0.079], + [12003,0.024], + [12005,0.048], + [12007,0.017], + [12009,0.075], + [12011,0.276], + [12013,0.034], + [12015,0.047], + [12017,0.043], + [12019,0.086], + [12021,0.184], + [12023,0.043], + [12027,0.274], + [12029,0.024], + [12031,0.077], + [12033,0.033], + [12035,0.078], + [12037,0.031], + [12039,0.077], + [12041,0.043], + [12043,0.143], + [12045,0.021], + [12047,0.05], + [12049,0.317], + [12051,0.459], + [12053,0.09], + [12055,0.147], + [12057,0.234], + [12059,0.031], + [12061,0.075], + [12063,0.026], + [12065,0.036], + [12067,0.15], + [12069,0.112], + [12071,0.149], + [12073,0.058], + [12075,0.059], + [12077,0.011], + [12079,0.05], + [12081,0.105], + [12083,0.093], + [12085,0.086], + [12086,0.678], + [12087,0.168], + [12089,0.042], + [12091,0.083], + [12093,0.156], + [12095,0.271], + [12097,0.472], + [12099,0.175], + [12101,0.103], + [12103,0.07], + [12105,0.17], + [12107,0.067], + [12109,0.048], + [12111,0.15], + [12113,0.045], + [12115,0.059], + [12117,0.175], + [12119,0.028], + [12121,0.079], + [12123,0.044], + [12125,0.016], + [12127,0.105], + [12129,0.019], + [12131,0.053], + [12133,0.023], + [13001,0.079], + [13003,0.184], + [13005,0.082], + [13007,0.041], + [13009,0.018], + [13011,0.049], + [13013,0.082], + [13015,0.066], + [13017,0.044], + [13019,0.052], + [13021,0.025], + [13023,0.011], + [13025,0.015], + [13027,0.035], + [13029,0.057], + [13031,0.035], + [13033,0.036], + [13035,0.02], + [13037,0.044], + [13039,0.038], + [13043,0.087], + [13045,0.05], + [13047,0.022], + [13049,0.023], + [13051,0.073], + [13053,0.053], + [13055,0.031], + [13057,0.078], + [13059,0.085], + [13061,0.029], + [13063,0.099], + [13065,0.04], + [13067,0.105], + [13069,0.095], + [13071,0.138], + [13073,0.058], + [13075,0.034], + [13077,0.064], + [13079,0.016], + [13081,0.058], + [13083,0.018], + [13085,0.041], + [13087,0.021], + [13089,0.066], + [13091,0.028], + [13093,0.051], + [13095,0.026], + [13097,0.081], + [13099,0.01], + [13101,0.208], + [13103,0.036], + [13105,0.033], + [13107,0.032], + [13109,0.095], + [13111,0.013], + [13113,0.061], + [13115,0.075], + [13117,0.08], + [13119,0.035], + [13121,0.058], + [13123,0.071], + [13125,0.001], + [13127,0.051], + [13129,0.121], + [13131,0.071], + [13133,0.051], + [13135,0.174], + [13137,0.092], + [13139,0.206], + [13141,0.008], + [13143,0.014], + [13145,0.033], + [13147,0.028], + [13149,0.016], + [13151,0.062], + [13153,0.062], + [13155,0.034], + [13157,0.066], + [13159,0.033], + [13161,0.073], + [13163,0.038], + [13165,0.058], + [13167,0.009], + [13169,0.015], + [13171,0.013], + [13173,0.019], + [13175,0.025], + [13177,0.023], + [13179,0.1], + [13181,0.017], + [13183,0.083], + [13185,0.041], + [13187,0.044], + [13189,0.027], + [13191,0.014], + [13193,0.035], + [13195,0.047], + [13197,0.074], + [13199,0.01], + [13201,0.003], + [13205,0.032], + [13207,0.028], + [13209,0.055], + [13211,0.027], + [13213,0.085], + [13215,0.063], + [13217,0.043], + [13219,0.036], + [13221,0.026], + [13223,0.044], + [13225,0.049], + [13227,0.023], + [13229,0.03], + [13231,0.018], + [13233,0.083], + [13235,0.023], + [13237,0.048], + [13239,0.034], + [13241,0.067], + [13243,0.002], + [13245,0.045], + [13247,0.085], + [13249,0.012], + [13251,0.022], + [13253,0.003], + [13255,0.034], + [13257,0.029], + [13259,0.014], + [13261,0.045], + [13263,0.024], + [13265,0.032], + [13267,0.122], + [13269,0.019], + [13271,0.01], + [13273,0.011], + [13275,0.043], + [13277,0.097], + [13279,0.088], + [13281,0.036], + [13283,0.037], + [13285,0.031], + [13287,0.054], + [13289,0.017], + [13291,0.029], + [13293,0.015], + [13295,0.016], + [13297,0.033], + [13299,0.031], + [13301,0.011], + [13303,0.017], + [13305,0.046], + [13307,0.076], + [13309,0.005], + [13311,0.022], + [13313,0.229], + [13315,0.04], + [13317,0.03], + [13319,0.022], + [13321,0.02], + [15001,0.036], + [15003,0.031], + [15005,0], + [15007,0.015], + [15009,0.041], + [16001,0.05], + [16003,0.028], + [16005,0.053], + [16007,0.042], + [16009,0.027], + [16011,0.133], + [16013,0.141], + [16015,0.037], + [16017,0.023], + [16019,0.101], + [16021,0.01], + [16023,0.016], + [16025,0.02], + [16027,0.162], + [16029,0.046], + [16031,0.207], + [16033,0.407], + [16035,0.028], + [16037,0.027], + [16039,0.116], + [16041,0.066], + [16043,0.114], + [16045,0.074], + [16047,0.179], + [16049,0.03], + [16051,0.102], + [16053,0.246], + [16055,0.025], + [16057,0.026], + [16059,0.015], + [16061,0.011], + [16063,0.222], + [16065,0.1], + [16067,0.28], + [16069,0.02], + [16071,0.036], + [16073,0.185], + [16075,0.11], + [16077,0.275], + [16079,0.043], + [16081,0.131], + [16083,0.1], + [16085,0.045], + [16087,0.106], + [17001,0.011], + [17003,0.009], + [17005,0.034], + [17007,0.158], + [17009,0.025], + [17011,0.057], + [17013,0.01], + [17015,0.016], + [17017,0.133], + [17019,0.053], + [17021,0.008], + [17023,0.012], + [17025,0.015], + [17027,0.031], + [17029,0.019], + [17031,0.176], + [17033,0.013], + [17035,0.014], + [17037,0.074], + [17039,0.024], + [17041,0.059], + [17043,0.093], + [17045,0.009], + [17047,0.023], + [17049,0.031], + [17051,0.026], + [17053,0.026], + [17055,0.012], + [17057,0.015], + [17059,0.008], + [17061,0.01], + [17063,0.064], + [17065,0.009], + [17067,0.006], + [17069,0.003], + [17071,0.016], + [17073,0.038], + [17075,0.047], + [17077,0.034], + [17079,0.012], + [17081,0.013], + [17083,0.014], + [17085,0.02], + [17087,0.006], + [17089,0.22], + [17091,0.079], + [17093,0.127], + [17095,0.029], + [17097,0.151], + [17099,0.056], + [17101,0.05], + [17103,0.027], + [17105,0.027], + [17107,0.019], + [17109,0.016], + [17111,0.085], + [17113,0.032], + [17115,0.02], + [17117,0.011], + [17119,0.024], + [17121,0.008], + [17123,0.021], + [17125,0.009], + [17127,0.028], + [17129,0.015], + [17131,0.012], + [17133,0.01], + [17135,0.008], + [17137,0.018], + [17139,0.006], + [17141,0.057], + [17143,0.037], + [17145,0.018], + [17147,0.017], + [17149,0.014], + [17151,0.016], + [17153,0.008], + [17155,0.048], + [17157,0.013], + [17159,0.025], + [17161,0.075], + [17163,0.034], + [17165,0.014], + [17167,0.025], + [17169,0.005], + [17171,0.012], + [17173,0.005], + [17175,0.019], + [17177,0.028], + [17179,0.017], + [17181,0.027], + [17183,0.035], + [17185,0.027], + [17187,0.06], + [17189,0.007], + [17191,0.016], + [17193,0.011], + [17195,0.059], + [17197,0.115], + [17199,0.022], + [17201,0.087], + [17203,0.011], + [18001,0.037], + [18003,0.055], + [18005,0.046], + [18007,0.03], + [18009,0.009], + [18011,0.031], + [18013,0.016], + [18015,0.022], + [18017,0.125], + [18019,0.046], + [18021,0.018], + [18023,0.105], + [18025,0.011], + [18027,0.035], + [18029,0.016], + [18031,0.012], + [18033,0.016], + [18035,0.019], + [18037,0.049], + [18039,0.113], + [18041,0.012], + [18043,0.026], + [18045,0.016], + [18047,0.002], + [18049,0.036], + [18051,0.014], + [18053,0.025], + [18055,0.01], + [18057,0.035], + [18059,0.021], + [18061,0.016], + [18063,0.028], + [18065,0.007], + [18067,0.026], + [18069,0.034], + [18071,0.048], + [18073,0.041], + [18075,0.014], + [18077,0.014], + [18079,0.02], + [18081,0.034], + [18083,0.015], + [18085,0.057], + [18087,0.032], + [18089,0.11], + [18091,0.038], + [18093,0.015], + [18095,0.026], + [18097,0.07], + [18099,0.075], + [18101,0.006], + [18103,0.019], + [18105,0.031], + [18107,0.036], + [18109,0.013], + [18111,0.041], + [18113,0.078], + [18115,0.031], + [18117,0.008], + [18119,0.012], + [18121,0.028], + [18123,0.005], + [18125,0.008], + [18127,0.045], + [18129,0.012], + [18131,0.016], + [18133,0.008], + [18135,0.034], + [18137,0.023], + [18139,0.011], + [18141,0.054], + [18143,0.019], + [18145,0.031], + [18147,0.023], + [18149,0.018], + [18151,0.026], + [18153,0.009], + [18155,0.015], + [18157,0.059], + [18159,0.025], + [18161,0.008], + [18163,0.021], + [18165,0.011], + [18167,0.019], + [18169,0.037], + [18171,0.007], + [18173,0.019], + [18175,0.016], + [18177,0.024], + [18179,0.019], + [18181,0.056], + [18183,0.011], + [19001,0.024], + [19003,0.025], + [19005,0.062], + [19007,0.005], + [19009,0.008], + [19011,0.023], + [19013,0.032], + [19015,0.023], + [19017,0.013], + [19019,0.017], + [19021,0.214], + [19023,0.01], + [19025,0.01], + [19027,0.026], + [19029,0.018], + [19031,0.02], + [19033,0.031], + [19035,0.033], + [19037,0.029], + [19039,0.074], + [19041,0.028], + [19043,0.021], + [19045,0.017], + [19047,0.201], + [19049,0.047], + [19051,0.01], + [19053,0.03], + [19055,0.02], + [19057,0.017], + [19059,0.018], + [19061,0.028], + [19063,0.062], + [19065,0.029], + [19067,0.03], + [19069,0.094], + [19071,0.027], + [19073,0.027], + [19075,0.016], + [19077,0.021], + [19079,0.05], + [19081,0.032], + [19083,0.027], + [19085,0.009], + [19087,0.045], + [19089,0.007], + [19091,0.033], + [19093,0.016], + [19095,0.018], + [19097,0.013], + [19099,0.02], + [19101,0.031], + [19103,0.042], + [19105,0.016], + [19107,0.018], + [19109,0.02], + [19111,0.026], + [19113,0.025], + [19115,0.123], + [19117,0.017], + [19119,0.023], + [19121,0.017], + [19123,0.01], + [19125,0.014], + [19127,0.135], + [19129,0.028], + [19131,0.023], + [19133,0.007], + [19135,0.002], + [19137,0.035], + [19139,0.103], + [19141,0.038], + [19143,0.063], + [19145,0.014], + [19147,0.028], + [19149,0.05], + [19151,0.022], + [19153,0.054], + [19155,0.051], + [19157,0.028], + [19159,0.021], + [19161,0.022], + [19163,0.034], + [19165,0.032], + [19167,0.084], + [19169,0.032], + [19171,0.053], + [19173,0.049], + [19175,0.02], + [19177,0.015], + [19179,0.06], + [19181,0.017], + [19183,0.037], + [19185,0.01], + [19187,0.024], + [19189,0.023], + [19191,0.026], + [19193,0.111], + [19195,0.009], + [19197,0.081], + [20001,0.009], + [20003,0.005], + [20005,0.002], + [20007,0.035], + [20009,0.063], + [20011,0.004], + [20013,0.012], + [20015,0.025], + [20017,0.03], + [20019,0.002], + [20021,0.011], + [20023,0.061], + [20025,0.047], + [20027,0.011], + [20029,0.035], + [20031,0.011], + [20033,0.057], + [20035,0.058], + [20037,0.031], + [20039,0.042], + [20041,0.012], + [20043,0.014], + [20045,0.046], + [20047,0.144], + [20049,0.032], + [20051,0.034], + [20053,0.02], + [20055,0.365], + [20057,0.436], + [20059,0.017], + [20061,0.125], + [20063,0.02], + [20065,0.012], + [20067,0.352], + [20069,0.124], + [20071,0.17], + [20073,0.006], + [20075,0.228], + [20077,0.061], + [20079,0.048], + [20081,0.23], + [20083,0.063], + [20085,0.02], + [20087,0.016], + [20089,0.011], + [20091,0.05], + [20093,0.192], + [20095,0.017], + [20097,0.031], + [20099,0.012], + [20101,0.049], + [20103,0.031], + [20105,0.012], + [20107,0.009], + [20109,0.031], + [20111,0.116], + [20113,0.029], + [20115,0.019], + [20117,0.014], + [20119,0.17], + [20121,0.01], + [20123,0.025], + [20125,0.037], + [20127,0.045], + [20129,0.159], + [20131,0.022], + [20133,0.028], + [20135,0.086], + [20137,0.015], + [20139,0.013], + [20141,0.013], + [20143,0.023], + [20145,0.029], + [20147,0.008], + [20149,0.047], + [20151,0.07], + [20153,0.043], + [20155,0.041], + [20157,0.011], + [20159,0.053], + [20161,0.057], + [20163,0.013], + [20165,0], + [20167,0.032], + [20169,0.059], + [20171,0.108], + [20173,0.091], + [20175,0.476], + [20177,0.06], + [20179,0.032], + [20181,0.096], + [20183,0.004], + [20185,0.087], + [20187,0.322], + [20189,0.279], + [20191,0.028], + [20193,0.036], + [20195,0.006], + [20197,0.011], + [20199,0.024], + [20201,0.022], + [20203,0.244], + [20205,0.012], + [20207,0.01], + [20209,0.188], + [21001,0.019], + [21003,0.018], + [21005,0.011], + [21007,0.006], + [21009,0.029], + [21011,0.026], + [21013,0.004], + [21015,0.034], + [21017,0.058], + [21019,0.012], + [21021,0.029], + [21023,0.028], + [21025,0.005], + [21027,0.017], + [21029,0.016], + [21031,0.026], + [21033,0.018], + [21035,0.022], + [21037,0.022], + [21039,0.01], + [21041,0.066], + [21043,0.01], + [21045,0.013], + [21047,0.06], + [21049,0.026], + [21051,0.013], + [21053,0.026], + [21055,0.017], + [21057,0.013], + [21059,0.026], + [21061,0.009], + [21063,0.014], + [21065,0.004], + [21067,0.059], + [21069,0.018], + [21071,0.004], + [21073,0.03], + [21075,0.007], + [21077,0.047], + [21079,0.014], + [21081,0.029], + [21083,0.04], + [21085,0.013], + [21087,0.014], + [21089,0.007], + [21091,0.013], + [21093,0.037], + [21095,0.016], + [21097,0.026], + [21099,0.009], + [21101,0.016], + [21103,0.019], + [21105,0.04], + [21107,0.011], + [21109,0.01], + [21111,0.041], + [21113,0.032], + [21115,0.009], + [21117,0.024], + [21119,0.005], + [21121,0.003], + [21123,0.015], + [21125,0.011], + [21127,0.004], + [21129,0.006], + [21131,0.006], + [21133,0.014], + [21135,0.014], + [21137,0.009], + [21139,0.018], + [21141,0.019], + [21143,0.009], + [21145,0.015], + [21147,0.007], + [21149,0.006], + [21151,0.025], + [21153,0], + [21155,0.033], + [21157,0.012], + [21159,0.013], + [21161,0.025], + [21163,0.023], + [21165,0.008], + [21167,0.025], + [21169,0.017], + [21171,0.051], + [21173,0.018], + [21175,0.007], + [21177,0.016], + [21179,0.017], + [21181,0.02], + [21183,0.025], + [21185,0.036], + [21187,0.01], + [21189,0.021], + [21191,0.036], + [21193,0.024], + [21195,0.003], + [21197,0.012], + [21199,0.02], + [21201,0.007], + [21203,0.018], + [21205,0.026], + [21207,0.023], + [21209,0.035], + [21211,0.067], + [21213,0.023], + [21215,0.023], + [21217,0.009], + [21219,0.022], + [21221,0.025], + [21223,0.01], + [21225,0.013], + [21227,0.042], + [21229,0.04], + [21231,0.021], + [21233,0.047], + [21235,0.011], + [21237,0.046], + [21239,0.042], + [22001,0.016], + [22003,0.022], + [22005,0.048], + [22007,0.018], + [22009,0.009], + [22011,0.039], + [22013,0.006], + [22015,0.042], + [22017,0.025], + [22019,0.032], + [22021,0.016], + [22023,0.069], + [22025,0.004], + [22027,0.005], + [22029,0.016], + [22031,0.025], + [22033,0.038], + [22035,0.011], + [22037,0.009], + [22039,0.005], + [22041,0.003], + [22043,0.005], + [22045,0.039], + [22047,0.015], + [22049,0.029], + [22051,0.112], + [22053,0.015], + [22055,0.033], + [22057,0.036], + [22059,0.015], + [22061,0.022], + [22063,0.029], + [22065,0.028], + [22067,0.009], + [22069,0.01], + [22071,0.051], + [22073,0.018], + [22075,0.049], + [22077,0.02], + [22079,0.034], + [22081,0.005], + [22083,0.013], + [22085,0.016], + [22087,0.062], + [22089,0.049], + [22091,0.018], + [22093,0.015], + [22095,0.059], + [22097,0.012], + [22099,0.02], + [22101,0.053], + [22103,0.052], + [22105,0.034], + [22107,0.029], + [22109,0.043], + [22111,0.026], + [22113,0.027], + [22115,0.06], + [22117,0.02], + [22119,0.013], + [22121,0.029], + [22123,0.032], + [22125,0.012], + [22127,0.016], + [23001,0.014], + [23003,0.007], + [23005,0.016], + [23007,0.008], + [23009,0.012], + [23011,0.011], + [23013,0.014], + [23015,0.009], + [23017,0.008], + [23019,0.012], + [23021,0.016], + [23023,0.01], + [23025,0.011], + [23027,0.01], + [23029,0.015], + [23031,0.015], + [24001,0.022], + [24003,0.058], + [24005,0.042], + [24009,0.03], + [24011,0.046], + [24013,0.026], + [24015,0.031], + [24017,0.048], + [24019,0.038], + [24021,0.07], + [24023,0.009], + [24025,0.041], + [24027,0.053], + [24029,0.025], + [24031,0.145], + [24033,0.127], + [24035,0.028], + [24037,0.038], + [24039,0.015], + [24041,0.05], + [24043,0.039], + [24045,0.048], + [24047,0.019], + [24510,0.039], + [25001,0.022], + [25003,0.037], + [25005,0.059], + [25007,0.016], + [25009,0.162], + [25011,0.03], + [25013,0.193], + [25015,0.037], + [25017,0.064], + [25019,0.041], + [25021,0.037], + [25023,0.03], + [25025,0.188], + [25027,0.088], + [26001,0.016], + [26003,0.015], + [26005,0.048], + [26007,0.011], + [26009,0.014], + [26011,0.011], + [26013,0.014], + [26015,0.017], + [26017,0.015], + [26019,0.023], + [26021,0.041], + [26023,0.032], + [26025,0.032], + [26027,0.028], + [26029,0.009], + [26031,0.017], + [26033,0.01], + [26035,0.009], + [26037,0.022], + [26039,0.013], + [26041,0.009], + [26043,0.01], + [26045,0.042], + [26047,0.013], + [26049,0.017], + [26051,0.006], + [26053,0.005], + [26055,0.022], + [26057,0.029], + [26059,0.014], + [26061,0.018], + [26063,0.017], + [26065,0.042], + [26067,0.023], + [26069,0.022], + [26071,0.009], + [26073,0.022], + [26075,0.015], + [26077,0.035], + [26079,0.025], + [26081,0.068], + [26083,0.005], + [26085,0.016], + [26087,0.028], + [26089,0.033], + [26091,0.043], + [26093,0.016], + [26095,0.007], + [26097,0.008], + [26099,0.017], + [26101,0.016], + [26103,0.01], + [26105,0.028], + [26107,0.018], + [26109,0.008], + [26111,0.013], + [26113,0.017], + [26115,0.017], + [26117,0.021], + [26119,0.01], + [26121,0.023], + [26123,0.039], + [26125,0.031], + [26127,0.086], + [26129,0.008], + [26131,0.002], + [26133,0.011], + [26135,0.014], + [26137,0.003], + [26139,0.07], + [26141,0.013], + [26143,0.013], + [26145,0.029], + [26147,0.015], + [26149,0.051], + [26151,0.026], + [26153,0.003], + [26155,0.011], + [26157,0.012], + [26159,0.074], + [26161,0.036], + [26163,0.041], + [26165,0.011], + [27001,0.008], + [27003,0.031], + [27005,0.011], + [27007,0.013], + [27009,0.019], + [27011,0.016], + [27013,0.024], + [27015,0.034], + [27017,0.008], + [27019,0.038], + [27021,0.011], + [27023,0.065], + [27025,0.019], + [27027,0.028], + [27029,0.008], + [27031,0.038], + [27033,0.048], + [27035,0.009], + [27037,0.048], + [27039,0.04], + [27041,0.011], + [27043,0.041], + [27045,0.015], + [27047,0.055], + [27049,0.025], + [27051,0.015], + [27053,0.05], + [27055,0.018], + [27057,0.013], + [27059,0.016], + [27061,0.013], + [27063,0.031], + [27065,0.009], + [27067,0.083], + [27069,0.023], + [27071,0.009], + [27073,0.017], + [27075,0.003], + [27077,0.014], + [27079,0.044], + [27081,0.009], + [27083,0.05], + [27085,0.034], + [27087,0.01], + [27089,0.023], + [27091,0.027], + [27093,0.031], + [27095,0.011], + [27097,0.015], + [27099,0.079], + [27101,0.04], + [27103,0.037], + [27105,0.188], + [27107,0.029], + [27109,0.032], + [27111,0.022], + [27113,0.029], + [27115,0.02], + [27117,0.062], + [27119,0.034], + [27121,0.02], + [27123,0.049], + [27125,0.032], + [27127,0.014], + [27129,0.061], + [27131,0.061], + [27133,0.02], + [27135,0.007], + [27137,0.013], + [27139,0.046], + [27141,0.025], + [27143,0.066], + [27145,0.029], + [27147,0.052], + [27149,0.049], + [27151,0.036], + [27153,0.042], + [27155,0.03], + [27157,0.024], + [27159,0.01], + [27161,0.035], + [27163,0.032], + [27165,0.168], + [27167,0.011], + [27169,0.02], + [27171,0.025], + [27173,0.028], + [28001,0.022], + [28003,0.033], + [28005,0.01], + [28007,0.015], + [28009,0.029], + [28011,0.026], + [28013,0.039], + [28015,0], + [28017,0.027], + [28019,0.005], + [28021,0.001], + [28023,0.007], + [28025,0.007], + [28027,0.004], + [28029,0.021], + [28031,0.009], + [28033,0.039], + [28035,0.025], + [28037,0], + [28039,0.042], + [28041,0.04], + [28043,0.004], + [28045,0.031], + [28047,0.042], + [28049,0.021], + [28051,0.01], + [28053,0.02], + [28055,0], + [28057,0.011], + [28059,0.049], + [28061,0], + [28063,0.021], + [28065,0.004], + [28067,0.031], + [28069,0.002], + [28071,0.029], + [28073,0.024], + [28075,0.018], + [28077,0.011], + [28079,0.021], + [28081,0.022], + [28083,0.019], + [28085,0.008], + [28087,0.018], + [28089,0.024], + [28091,0.034], + [28093,0.056], + [28095,0.017], + [28097,0.015], + [28099,0.021], + [28101,0.014], + [28103,0.006], + [28105,0.013], + [28107,0.013], + [28109,0.029], + [28111,0.006], + [28113,0.031], + [28115,0.06], + [28117,0.022], + [28119,0.002], + [28121,0.027], + [28123,0.084], + [28125,0.004], + [28127,0.009], + [28129,0.027], + [28131,0.018], + [28133,0.012], + [28135,0.008], + [28137,0.022], + [28139,0.019], + [28141,0.02], + [28143,0.017], + [28145,0.025], + [28147,0.009], + [28149,0.024], + [28151,0.023], + [28153,0.014], + [28155,0.004], + [28157,0], + [28159,0.015], + [28161,0.023], + [28163,0.024], + [29001,0.018], + [29003,0.013], + [29005,0.011], + [29007,0.023], + [29009,0.056], + [29011,0.015], + [29013,0.009], + [29015,0.009], + [29017,0.004], + [29019,0.028], + [29021,0.045], + [29023,0.023], + [29025,0.011], + [29027,0.013], + [29029,0.029], + [29031,0.016], + [29033,0.013], + [29035,0.007], + [29037,0.025], + [29039,0.019], + [29041,0.002], + [29043,0.026], + [29045,0.014], + [29047,0.038], + [29049,0.009], + [29051,0.024], + [29053,0.007], + [29055,0.014], + [29057,0.01], + [29059,0.015], + [29061,0.01], + [29063,0.002], + [29065,0.015], + [29067,0.011], + [29069,0.07], + [29071,0.014], + [29073,0.009], + [29075,0.005], + [29077,0.028], + [29079,0.027], + [29081,0.024], + [29083,0.017], + [29085,0.007], + [29087,0.011], + [29089,0.011], + [29091,0.011], + [29093,0.024], + [29095,0.057], + [29097,0.05], + [29099,0.016], + [29101,0.021], + [29103,0.017], + [29105,0.02], + [29107,0.012], + [29109,0.055], + [29111,0.007], + [29113,0.014], + [29115,0.014], + [29117,0.009], + [29119,0.075], + [29121,0.013], + [29123,0.011], + [29125,0.005], + [29127,0.003], + [29129,0.016], + [29131,0.024], + [29133,0.013], + [29135,0.032], + [29137,0.008], + [29139,0.015], + [29141,0.007], + [29143,0.037], + [29145,0.036], + [29147,0.023], + [29149,0.004], + [29151,0.006], + [29153,0.015], + [29155,0.04], + [29157,0.016], + [29159,0.054], + [29161,0.012], + [29163,0.019], + [29165,0.035], + [29167,0.003], + [29169,0.063], + [29171,0.015], + [29173,0.009], + [29175,0.014], + [29177,0.006], + [29179,0.007], + [29181,0.004], + [29183,0.029], + [29185,0.004], + [29186,0.016], + [29187,0.011], + [29189,0.024], + [29195,0.056], + [29197,0.015], + [29199,0.009], + [29201,0.02], + [29203,0.007], + [29205,0.008], + [29207,0.013], + [29209,0.018], + [29211,0.116], + [29213,0.04], + [29215,0.004], + [29217,0.013], + [29219,0.028], + [29221,0.009], + [29223,0.005], + [29225,0.016], + [29227,0.003], + [29229,0.004], + [29510,0.033], + [30001,0.036], + [30003,0.022], + [30005,0.016], + [30007,0.02], + [30009,0.015], + [30011,0], + [30013,0.016], + [30015,0.006], + [30017,0.01], + [30019,0.008], + [30021,0.009], + [30023,0.013], + [30025,0.016], + [30027,0.016], + [30029,0.021], + [30031,0.025], + [30033,0], + [30035,0.009], + [30037,0.046], + [30039,0.023], + [30041,0.011], + [30043,0.017], + [30045,0.001], + [30047,0.023], + [30049,0.023], + [30051,0], + [30053,0.022], + [30055,0.007], + [30057,0.027], + [30059,0.043], + [30061,0.012], + [30063,0.022], + [30065,0.002], + [30067,0.013], + [30069,0], + [30071,0.027], + [30073,0.001], + [30075,0], + [30077,0.006], + [30079,0.008], + [30081,0.019], + [30083,0.05], + [30085,0.01], + [30087,0.034], + [30089,0.01], + [30091,0.016], + [30093,0.013], + [30095,0.02], + [30097,0.009], + [30099,0.004], + [30101,0.046], + [30103,0.003], + [30105,0.02], + [30107,0.013], + [30109,0.074], + [30111,0.024], + [31001,0.07], + [31003,0.033], + [31005,0.03], + [31007,0.057], + [31009,0.019], + [31011,0.013], + [31013,0.073], + [31015,0.003], + [31017,0.011], + [31019,0.063], + [31021,0.021], + [31023,0.041], + [31025,0.021], + [31027,0.019], + [31029,0.093], + [31031,0.013], + [31033,0.033], + [31035,0.058], + [31037,0.299], + [31039,0.078], + [31041,0.033], + [31043,0.276], + [31045,0.015], + [31047,0.227], + [31049,0.039], + [31051,0.074], + [31053,0.088], + [31055,0.08], + [31057,0.078], + [31059,0.02], + [31061,0.02], + [31063,0.011], + [31065,0.042], + [31067,0.023], + [31069,0.024], + [31071,0.006], + [31073,0.038], + [31075,0], + [31077,0.031], + [31079,0.183], + [31081,0.019], + [31083,0.026], + [31085,0.055], + [31087,0.009], + [31089,0.033], + [31091,0.019], + [31093,0.025], + [31095,0.039], + [31097,0.077], + [31099,0.033], + [31101,0.035], + [31103,0.036], + [31105,0.039], + [31107,0.032], + [31109,0.05], + [31111,0.042], + [31113,0.052], + [31115,0], + [31117,0], + [31119,0.104], + [31121,0.046], + [31123,0.102], + [31125,0.01], + [31127,0.032], + [31129,0.012], + [31131,0.053], + [31133,0.012], + [31135,0.042], + [31137,0.037], + [31139,0.007], + [31141,0.133], + [31143,0.039], + [31145,0.016], + [31147,0.005], + [31149,0.016], + [31151,0.171], + [31153,0.054], + [31155,0.018], + [31157,0.11], + [31159,0.028], + [31161,0.043], + [31163,0.032], + [31165,0.042], + [31167,0.041], + [31169,0.016], + [31171,0.014], + [31173,0.014], + [31175,0.02], + [31177,0.024], + [31179,0.041], + [31181,0.025], + [31183,0.035], + [31185,0.029], + [32001,0.118], + [32003,0.213], + [32005,0.081], + [32007,0.134], + [32009,0.067], + [32011,0.019], + [32013,0.177], + [32015,0.235], + [32017,0.029], + [32019,0.112], + [32021,0.063], + [32023,0.084], + [32027,0.116], + [32029,0.01], + [32031,0.161], + [32033,0.057], + [32510,0.164], + [33001,0.006], + [33003,0.01], + [33005,0.007], + [33007,0.013], + [33009,0.01], + [33011,0.05], + [33013,0.014], + [33015,0.026], + [33017,0.017], + [33019,0.007], + [34001,0.148], + [34003,0.158], + [34005,0.055], + [34007,0.13], + [34009,0.047], + [34011,0.244], + [34013,0.196], + [34015,0.046], + [34017,0.363], + [34019,0.054], + [34021,0.132], + [34023,0.169], + [34025,0.076], + [34027,0.11], + [34029,0.056], + [34031,0.344], + [34033,0.067], + [34035,0.11], + [34037,0.054], + [34039,0.267], + [34041,0.063], + [35001,0.267], + [35003,0.192], + [35005,0.35], + [35006,0.263], + [35007,0.298], + [35009,0.296], + [35011,0.329], + [35013,0.53], + [35015,0.236], + [35017,0.344], + [35019,0.61], + [35021,0.332], + [35023,0.512], + [35025,0.378], + [35027,0.194], + [35028,0.09], + [35029,0.521], + [35031,0.085], + [35033,0.798], + [35035,0.218], + [35037,0.284], + [35039,0.641], + [35041,0.315], + [35043,0.217], + [35045,0.125], + [35047,0.685], + [35049,0.307], + [35051,0.201], + [35053,0.364], + [35055,0.45], + [35057,0.283], + [35059,0.222], + [35061,0.362], + [36001,0.035], + [36003,0.009], + [36005,0.51], + [36007,0.029], + [36009,0.012], + [36011,0.025], + [36013,0.051], + [36015,0.017], + [36017,0.025], + [36019,0.017], + [36021,0.031], + [36023,0.012], + [36025,0.035], + [36027,0.085], + [36029,0.042], + [36031,0.019], + [36033,0.011], + [36035,0.014], + [36037,0.026], + [36039,0.025], + [36041,0.006], + [36043,0.013], + [36045,0.046], + [36047,0.165], + [36049,0.008], + [36051,0.025], + [36053,0.011], + [36055,0.067], + [36057,0.112], + [36059,0.124], + [36061,0.187], + [36063,0.019], + [36065,0.037], + [36067,0.039], + [36069,0.033], + [36071,0.158], + [36073,0.035], + [36075,0.019], + [36077,0.029], + [36079,0.104], + [36081,0.229], + [36083,0.035], + [36085,0.124], + [36087,0.136], + [36089,0.014], + [36091,0.019], + [36093,0.046], + [36095,0.024], + [36097,0.012], + [36099,0.021], + [36101,0.013], + [36103,0.128], + [36105,0.097], + [36107,0.014], + [36109,0.033], + [36111,0.053], + [36113,0.017], + [36115,0.019], + [36117,0.034], + [36119,0.195], + [36121,0.023], + [36123,0.012], + [37001,0.083], + [37003,0.039], + [37005,0.071], + [37007,0.052], + [37009,0.036], + [37011,0.045], + [37013,0.057], + [37015,0.019], + [37017,0.066], + [37019,0.035], + [37021,0.052], + [37023,0.053], + [37025,0.079], + [37027,0.037], + [37029,0.044], + [37031,0.038], + [37033,0.032], + [37035,0.082], + [37037,0.097], + [37039,0.025], + [37041,0.015], + [37043,0.031], + [37045,0.03], + [37047,0.054], + [37049,0.05], + [37051,0.089], + [37053,0.053], + [37055,0.055], + [37057,0.053], + [37059,0.052], + [37061,0.154], + [37063,0.093], + [37065,0.031], + [37067,0.091], + [37069,0.059], + [37071,0.056], + [37073,0.009], + [37075,0.024], + [37077,0.057], + [37079,0.119], + [37081,0.06], + [37083,0.02], + [37085,0.086], + [37087,0.024], + [37089,0.067], + [37091,0.033], + [37093,0.1], + [37095,0.082], + [37097,0.061], + [37099,0.039], + [37101,0.096], + [37103,0.023], + [37105,0.138], + [37107,0.064], + [37109,0.059], + [37111,0.049], + [37113,0.048], + [37115,0.007], + [37117,0.037], + [37119,0.097], + [37121,0.038], + [37123,0.104], + [37125,0.052], + [37127,0.042], + [37129,0.037], + [37131,0.019], + [37133,0.088], + [37135,0.066], + [37137,0.04], + [37139,0.039], + [37141,0.058], + [37143,0.01], + [37145,0.035], + [37147,0.046], + [37149,0.04], + [37151,0.089], + [37153,0.046], + [37155,0.059], + [37157,0.043], + [37159,0.072], + [37161,0.038], + [37163,0.131], + [37165,0.031], + [37167,0.033], + [37169,0.025], + [37171,0.07], + [37173,0.029], + [37175,0.025], + [37177,0.047], + [37179,0.084], + [37181,0.054], + [37183,0.076], + [37185,0.027], + [37187,0.025], + [37189,0.028], + [37191,0.093], + [37193,0.043], + [37195,0.072], + [37197,0.068], + [37199,0.04], + [38001,0.008], + [38003,0.005], + [38005,0.006], + [38007,0.013], + [38009,0.038], + [38011,0.033], + [38013,0.019], + [38015,0.013], + [38017,0.014], + [38019,0.013], + [38021,0.033], + [38023,0], + [38025,0.046], + [38027,0.004], + [38029,0.001], + [38031,0.006], + [38033,0.005], + [38035,0.021], + [38037,0.008], + [38039,0.01], + [38041,0.026], + [38043,0.049], + [38045,0.016], + [38047,0], + [38049,0.01], + [38051,0.036], + [38053,0.094], + [38055,0.011], + [38057,0.029], + [38059,0.031], + [38061,0.054], + [38063,0.033], + [38065,0.011], + [38067,0.019], + [38069,0.007], + [38071,0.015], + [38073,0.003], + [38075,0.007], + [38077,0.023], + [38079,0.015], + [38081,0.026], + [38083,0.001], + [38085,0.014], + [38087,0.018], + [38089,0.03], + [38091,0], + [38093,0.018], + [38095,0.042], + [38097,0.014], + [38099,0.058], + [38101,0.032], + [38103,0.016], + [38105,0.057], + [39001,0.003], + [39003,0.016], + [39005,0.01], + [39007,0.029], + [39009,0.016], + [39011,0.017], + [39013,0.007], + [39015,0.015], + [39017,0.034], + [39019,0.011], + [39021,0.014], + [39023,0.029], + [39025,0.018], + [39027,0.017], + [39029,0.016], + [39031,0.012], + [39033,0.012], + [39035,0.049], + [39037,0.011], + [39039,0.05], + [39041,0.02], + [39043,0.022], + [39045,0.023], + [39047,0.015], + [39049,0.04], + [39051,0.038], + [39053,0.005], + [39055,0.015], + [39057,0.021], + [39059,0.013], + [39061,0.029], + [39063,0.036], + [39065,0.015], + [39067,0.002], + [39069,0.049], + [39071,0.004], + [39073,0.008], + [39075,0.007], + [39077,0.033], + [39079,0.009], + [39081,0.011], + [39083,0.012], + [39085,0.032], + [39087,0.009], + [39089,0.017], + [39091,0.01], + [39093,0.059], + [39095,0.035], + [39097,0.014], + [39099,0.032], + [39101,0.024], + [39103,0.015], + [39105,0.011], + [39107,0.01], + [39109,0.012], + [39111,0.004], + [39113,0.022], + [39115,0.007], + [39117,0.015], + [39119,0.01], + [39121,0.005], + [39123,0.024], + [39125,0.03], + [39127,0.021], + [39129,0.015], + [39131,0.001], + [39133,0.015], + [39135,0.017], + [39137,0.05], + [39139,0.015], + [39141,0.014], + [39143,0.037], + [39145,0.007], + [39147,0.03], + [39149,0.013], + [39151,0.015], + [39153,0.017], + [39155,0.012], + [39157,0.02], + [39159,0.013], + [39161,0.016], + [39163,0.01], + [39165,0.023], + [39167,0.016], + [39169,0.02], + [39171,0.025], + [39173,0.032], + [39175,0.035], + [40001,0.027], + [40003,0.026], + [40005,0.015], + [40007,0.164], + [40009,0.109], + [40011,0.044], + [40013,0.042], + [40015,0.049], + [40017,0.06], + [40019,0.049], + [40021,0.043], + [40023,0.031], + [40025,0.17], + [40027,0.057], + [40029,0.023], + [40031,0.058], + [40033,0.023], + [40035,0.024], + [40037,0.026], + [40039,0.126], + [40041,0.021], + [40043,0.031], + [40045,0.042], + [40047,0.092], + [40049,0.062], + [40051,0.035], + [40053,0.028], + [40055,0.107], + [40057,0.223], + [40059,0.179], + [40061,0.03], + [40063,0.034], + [40065,0.156], + [40067,0.07], + [40069,0.034], + [40071,0.053], + [40073,0.119], + [40075,0.078], + [40077,0.014], + [40079,0.044], + [40081,0.011], + [40083,0.036], + [40085,0.097], + [40087,0.055], + [40089,0.032], + [40091,0.006], + [40093,0.062], + [40095,0.133], + [40097,0.022], + [40099,0.043], + [40101,0.03], + [40103,0.023], + [40105,0.016], + [40107,0.024], + [40109,0.108], + [40111,0.017], + [40113,0.017], + [40115,0.039], + [40117,0.01], + [40119,0.029], + [40121,0.034], + [40123,0.028], + [40125,0.032], + [40127,0.017], + [40129,0.043], + [40131,0.034], + [40133,0.026], + [40135,0.026], + [40137,0.053], + [40139,0.344], + [40141,0.191], + [40143,0.087], + [40145,0.042], + [40147,0.043], + [40149,0.051], + [40151,0.038], + [40153,0.095], + [41001,0.017], + [41003,0.06], + [41005,0.055], + [41007,0.047], + [41009,0.032], + [41011,0.033], + [41013,0.052], + [41015,0.039], + [41017,0.051], + [41019,0.025], + [41021,0.044], + [41023,0.038], + [41025,0.044], + [41027,0.184], + [41029,0.076], + [41031,0.119], + [41033,0.033], + [41035,0.067], + [41037,0.05], + [41039,0.05], + [41041,0.042], + [41043,0.059], + [41045,0.244], + [41047,0.179], + [41049,0.293], + [41051,0.079], + [41053,0.099], + [41055,0.021], + [41057,0.066], + [41059,0.199], + [41061,0.03], + [41063,0.03], + [41065,0.116], + [41067,0.107], + [41069,0.036], + [41071,0.103], + [42001,0.049], + [42003,0.019], + [42005,0.007], + [42007,0.016], + [42009,0.012], + [42011,0.153], + [42013,0.006], + [42015,0.014], + [42017,0.042], + [42019,0.015], + [42021,0.014], + [42023,0.022], + [42025,0.028], + [42027,0.025], + [42029,0.05], + [42031,0.008], + [42033,0.009], + [42035,0.013], + [42037,0.013], + [42039,0.01], + [42041,0.026], + [42043,0.057], + [42045,0.03], + [42047,0.008], + [42049,0.028], + [42051,0.014], + [42053,0.005], + [42055,0.041], + [42057,0.008], + [42059,0.01], + [42061,0.01], + [42063,0.007], + [42065,0.008], + [42067,0.047], + [42069,0.055], + [42071,0.081], + [42073,0.014], + [42075,0.095], + [42077,0.185], + [42079,0.081], + [42081,0.014], + [42083,0.013], + [42085,0.008], + [42087,0.014], + [42089,0.111], + [42091,0.041], + [42093,0.022], + [42095,0.092], + [42097,0.017], + [42099,0.015], + [42101,0.109], + [42103,0.069], + [42105,0.01], + [42107,0.029], + [42109,0.029], + [42111,0.011], + [42113,0.003], + [42115,0.013], + [42117,0.007], + [42119,0.028], + [42121,0.007], + [42123,0.013], + [42125,0.011], + [42127,0.028], + [42129,0.011], + [42131,0.011], + [42133,0.051], + [44001,0.014], + [44003,0.037], + [44005,0.033], + [44007,0.179], + [44009,0.022], + [45001,0.013], + [45003,0.044], + [45005,0.011], + [45007,0.031], + [45009,0.008], + [45011,0.023], + [45013,0.073], + [45015,0.048], + [45017,0.037], + [45019,0.042], + [45021,0.04], + [45023,0.02], + [45025,0.035], + [45027,0.032], + [45029,0.023], + [45031,0.018], + [45033,0.02], + [45035,0.038], + [45037,0.046], + [45039,0.018], + [45041,0.016], + [45043,0.021], + [45045,0.072], + [45047,0.041], + [45049,0.011], + [45051,0.042], + [45053,0.087], + [45055,0.044], + [45057,0.038], + [45059,0.041], + [45061,0.03], + [45063,0.045], + [45065,0.003], + [45067,0.021], + [45069,0.011], + [45071,0.057], + [45073,0.042], + [45075,0.024], + [45077,0.029], + [45079,0.05], + [45081,0.1], + [45083,0.056], + [45085,0.049], + [45087,0.012], + [45089,0.012], + [45091,0.044], + [46003,0.083], + [46005,0.062], + [46007,0.013], + [46009,0.02], + [46011,0.019], + [46013,0.021], + [46015,0.012], + [46017,0.005], + [46019,0.002], + [46021,0.001], + [46023,0.012], + [46025,0.035], + [46027,0.016], + [46029,0.012], + [46031,0.005], + [46033,0.041], + [46035,0.038], + [46037,0.007], + [46039,0.018], + [46041,0.008], + [46043,0.016], + [46045,0.01], + [46047,0.01], + [46049,0], + [46051,0.042], + [46053,0.003], + [46055,0.006], + [46057,0.056], + [46059,0.008], + [46061,0.007], + [46063,0.034], + [46065,0.019], + [46067,0.013], + [46069,0.003], + [46071,0], + [46073,0.012], + [46075,0], + [46077,0.032], + [46079,0.026], + [46081,0.011], + [46083,0.015], + [46085,0.018], + [46087,0.028], + [46089,0.015], + [46091,0.029], + [46093,0.035], + [46095,0.011], + [46097,0.011], + [46099,0.038], + [46101,0.02], + [46102,0.01], + [46103,0.023], + [46105,0.01], + [46107,0.005], + [46109,0.017], + [46111,0.023], + [46115,0.012], + [46117,0.008], + [46119,0], + [46121,0.003], + [46123,0.014], + [46125,0.013], + [46127,0.021], + [46129,0.013], + [46135,0.023], + [46137,0.007], + [47001,0.026], + [47003,0.073], + [47005,0.009], + [47007,0.013], + [47009,0.022], + [47011,0.046], + [47013,0.013], + [47015,0.007], + [47017,0.013], + [47019,0.016], + [47021,0.036], + [47023,0.023], + [47025,0.012], + [47027,0.026], + [47029,0.017], + [47031,0.021], + [47033,0.066], + [47035,0.016], + [47037,0.07], + [47039,0.007], + [47041,0.059], + [47043,0.021], + [47045,0.018], + [47047,0.015], + [47049,0.008], + [47051,0.019], + [47053,0.021], + [47055,0.021], + [47057,0.031], + [47059,0.021], + [47061,0.004], + [47063,0.083], + [47065,0.04], + [47067,0.03], + [47069,0.009], + [47071,0.018], + [47073,0.016], + [47075,0.034], + [47077,0.023], + [47079,0.02], + [47081,0.009], + [47083,0.011], + [47085,0.012], + [47087,0.023], + [47089,0.026], + [47091,0.02], + [47093,0.029], + [47095,0.005], + [47097,0.028], + [47099,0.017], + [47101,0.021], + [47103,0.026], + [47105,0.053], + [47107,0.036], + [47109,0.015], + [47111,0.027], + [47113,0.029], + [47115,0.012], + [47117,0.037], + [47119,0.049], + [47121,0.008], + [47123,0.031], + [47125,0.074], + [47127,0], + [47129,0.01], + [47131,0.03], + [47133,0.011], + [47135,0.009], + [47137,0.006], + [47139,0.019], + [47141,0.038], + [47143,0.028], + [47145,0.02], + [47147,0.046], + [47149,0.063], + [47151,0.011], + [47153,0.03], + [47155,0.041], + [47157,0.049], + [47159,0.015], + [47161,0.014], + [47163,0.017], + [47165,0.036], + [47167,0.03], + [47169,0.02], + [47171,0.038], + [47173,0.014], + [47175,0.021], + [47177,0.055], + [47179,0.026], + [47181,0.008], + [47183,0.017], + [47185,0.007], + [47187,0.044], + [47189,0.03], + [48001,0.096], + [48003,0.486], + [48005,0.154], + [48007,0.185], + [48009,0.061], + [48011,0.082], + [48013,0.437], + [48015,0.187], + [48017,0.454], + [48019,0.094], + [48021,0.221], + [48023,0.055], + [48025,0.496], + [48027,0.168], + [48029,0.425], + [48031,0.078], + [48033,0.093], + [48035,0.137], + [48037,0.032], + [48039,0.218], + [48041,0.171], + [48043,0.352], + [48045,0.216], + [48047,0.855], + [48049,0.129], + [48051,0.157], + [48053,0.15], + [48055,0.396], + [48057,0.307], + [48059,0.07], + [48061,0.754], + [48063,0.16], + [48065,0.079], + [48067,0.026], + [48069,0.569], + [48071,0.176], + [48073,0.167], + [48075,0.262], + [48077,0.056], + [48079,0.513], + [48081,0.139], + [48083,0.098], + [48085,0.119], + [48087,0.201], + [48089,0.219], + [48091,0.19], + [48093,0.202], + [48095,0.118], + [48097,0.115], + [48099,0.108], + [48101,0.218], + [48103,0.455], + [48105,0.49], + [48107,0.435], + [48109,0.684], + [48111,0.3], + [48113,0.292], + [48115,0.468], + [48117,0.598], + [48119,0.062], + [48121,0.135], + [48123,0.223], + [48125,0.166], + [48127,0.847], + [48129,0.042], + [48131,0.786], + [48133,0.075], + [48135,0.496], + [48137,0.508], + [48139,0.174], + [48141,0.742], + [48143,0.12], + [48145,0.134], + [48147,0.055], + [48149,0.137], + [48151,0.238], + [48153,0.437], + [48155,0.143], + [48157,0.187], + [48159,0.086], + [48161,0.102], + [48163,0.701], + [48165,0.374], + [48167,0.168], + [48169,0.277], + [48171,0.118], + [48173,0.34], + [48175,0.254], + [48177,0.361], + [48179,0.175], + [48181,0.082], + [48183,0.13], + [48185,0.17], + [48187,0.258], + [48189,0.458], + [48191,0.238], + [48193,0.071], + [48195,0.4], + [48197,0.19], + [48199,0.049], + [48201,0.328], + [48203,0.072], + [48205,0.172], + [48207,0.183], + [48209,0.271], + [48211,0.291], + [48213,0.085], + [48215,0.865], + [48217,0.149], + [48219,0.386], + [48221,0.073], + [48223,0.114], + [48225,0.062], + [48227,0.268], + [48229,0.664], + [48231,0.106], + [48233,0.125], + [48235,0.176], + [48237,0.089], + [48239,0.213], + [48241,0.042], + [48243,0.326], + [48245,0.152], + [48247,0.853], + [48249,0.637], + [48251,0.127], + [48253,0.187], + [48255,0.341], + [48257,0.162], + [48259,0.127], + [48261,0.904], + [48263,0.154], + [48265,0.14], + [48267,0.237], + [48269,0.208], + [48271,0.396], + [48273,0.517], + [48275,0.295], + [48277,0.065], + [48279,0.428], + [48281,0.128], + [48283,0.783], + [48285,0.131], + [48287,0.141], + [48289,0.094], + [48291,0.174], + [48293,0.152], + [48295,0.242], + [48297,0.3], + [48299,0.052], + [48301,0.167], + [48303,0.23], + [48305,0.34], + [48307,0.249], + [48309,0.182], + [48311,0.196], + [48313,0.134], + [48315,0.033], + [48317,0.351], + [48319,0.202], + [48321,0.295], + [48323,0.961], + [48325,0.397], + [48327,0.327], + [48329,0.326], + [48331,0.172], + [48333,0.115], + [48335,0.34], + [48337,0.095], + [48339,0.176], + [48341,0.439], + [48343,0.064], + [48345,0.147], + [48347,0.127], + [48349,0.183], + [48351,0.026], + [48353,0.308], + [48355,0.441], + [48357,0.402], + [48359,0.084], + [48361,0.052], + [48363,0.135], + [48365,0.055], + [48367,0.085], + [48369,0.495], + [48371,0.646], + [48373,0.105], + [48375,0.269], + [48377,0.779], + [48379,0.055], + [48381,0.111], + [48383,0.53], + [48385,0.131], + [48387,0.054], + [48389,0.605], + [48391,0.367], + [48393,0.047], + [48395,0.138], + [48397,0.118], + [48399,0.17], + [48401,0.105], + [48403,0.037], + [48405,0.05], + [48407,0.12], + [48409,0.455], + [48411,0.217], + [48413,0.444], + [48415,0.307], + [48417,0.082], + [48419,0.135], + [48421,0.335], + [48423,0.129], + [48425,0.108], + [48427,0.985], + [48429,0.172], + [48431,0.459], + [48433,0.176], + [48435,0.567], + [48437,0.311], + [48439,0.201], + [48441,0.187], + [48443,0.512], + [48445,0.415], + [48447,0.102], + [48449,0.327], + [48451,0.302], + [48453,0.221], + [48455,0.064], + [48457,0.084], + [48459,0.064], + [48461,0.431], + [48463,0.574], + [48465,0.725], + [48467,0.066], + [48469,0.261], + [48471,0.097], + [48473,0.227], + [48475,0.461], + [48477,0.11], + [48479,0.927], + [48481,0.258], + [48483,0.193], + [48485,0.11], + [48487,0.186], + [48489,0.776], + [48491,0.156], + [48493,0.242], + [48495,0.534], + [48497,0.145], + [48499,0.067], + [48501,0.603], + [48503,0.13], + [48505,0.928], + [48507,0.919], + [49001,0.117], + [49003,0.081], + [49005,0.086], + [49007,0.054], + [49009,0], + [49011,0.092], + [49013,0.065], + [49015,0.089], + [49017,0.097], + [49019,0.063], + [49021,0.075], + [49023,0.032], + [49025,0.017], + [49027,0.121], + [49029,0.057], + [49031,0.041], + [49033,0.055], + [49035,0.132], + [49037,0.031], + [49039,0.07], + [49041,0.063], + [49043,0.094], + [49045,0.073], + [49047,0.063], + [49049,0.136], + [49051,0.111], + [49053,0.084], + [49055,0.091], + [49057,0.124], + [50001,0.015], + [50003,0.013], + [50005,0.011], + [50007,0.016], + [50009,0.002], + [50011,0.01], + [50013,0.024], + [50015,0.012], + [50017,0.014], + [50019,0.008], + [50021,0.028], + [50023,0.013], + [50025,0.015], + [50027,0.015], + [51001,0.055], + [51003,0.04], + [51005,0.014], + [51007,0.03], + [51009,0.02], + [51011,0.021], + [51013,0.119], + [51015,0.019], + [51017,0], + [51019,0.02], + [51021,0.011], + [51023,0.018], + [51025,0.022], + [51027,0.006], + [51029,0.016], + [51031,0.023], + [51033,0.049], + [51035,0.021], + [51036,0.019], + [51037,0.004], + [51041,0.07], + [51043,0.04], + [51045,0.005], + [51047,0.086], + [51049,0.003], + [51051,0.004], + [51053,0.04], + [51057,0.014], + [51059,0.123], + [51061,0.064], + [51063,0.016], + [51065,0.019], + [51067,0.029], + [51069,0.073], + [51071,0.018], + [51073,0.021], + [51075,0.02], + [51077,0.039], + [51079,0.03], + [51081,0.024], + [51083,0.027], + [51085,0.027], + [51087,0.044], + [51089,0.052], + [51091,0.008], + [51093,0.026], + [51095,0.04], + [51097,0.012], + [51099,0.039], + [51101,0.016], + [51103,0.014], + [51105,0.009], + [51107,0.107], + [51109,0.029], + [51111,0.023], + [51113,0.012], + [51115,0.015], + [51117,0.015], + [51119,0.023], + [51121,0.035], + [51125,0.026], + [51127,0.034], + [51131,0.05], + [51133,0.021], + [51135,0.033], + [51137,0.034], + [51139,0.011], + [51141,0.032], + [51143,0.024], + [51145,0.012], + [51147,0.018], + [51149,0.058], + [51153,0.176], + [51155,0.015], + [51157,0.038], + [51159,0.057], + [51161,0.029], + [51163,0.025], + [51165,0.052], + [51167,0.016], + [51169,0.005], + [51171,0.053], + [51173,0.022], + [51175,0.009], + [51177,0.072], + [51179,0.104], + [51181,0.002], + [51183,0.019], + [51185,0.004], + [51187,0.044], + [51191,0.009], + [51193,0.033], + [51195,0.006], + [51197,0.008], + [51199,0.051], + [51510,0.115], + [51520,0.007], + [51530,0.04], + [51540,0.049], + [51550,0.056], + [51570,0.05], + [51580,0.006], + [51590,0.034], + [51595,0.047], + [51600,0.141], + [51610,0.074], + [51620,0.029], + [51630,0.028], + [51640,0.103], + [51650,0.043], + [51660,0.17], + [51670,0.057], + [51678,0.013], + [51680,0.034], + [51683,0.252], + [51685,0.278], + [51690,0.051], + [51700,0.059], + [51710,0.055], + [51720,0], + [51730,0.038], + [51735,0.025], + [51740,0.033], + [51750,0.022], + [51760,0.043], + [51770,0.045], + [51775,0.017], + [51790,0.015], + [51800,0.031], + [51810,0.06], + [51820,0.042], + [51830,0.034], + [51840,0.129], + [53001,0.452], + [53003,0.023], + [53005,0.145], + [53007,0.196], + [53009,0.029], + [53011,0.057], + [53013,0.076], + [53015,0.049], + [53017,0.223], + [53019,0.021], + [53021,0.411], + [53023,0], + [53025,0.289], + [53027,0.058], + [53029,0.04], + [53031,0.025], + [53033,0.062], + [53035,0.028], + [53037,0.055], + [53039,0.072], + [53041,0.06], + [53043,0.014], + [53045,0.06], + [53047,0.135], + [53049,0.062], + [53051,0.018], + [53053,0.06], + [53055,0.05], + [53057,0.108], + [53059,0.031], + [53061,0.069], + [53063,0.031], + [53065,0.023], + [53067,0.052], + [53069,0.02], + [53071,0.151], + [53073,0.064], + [53075,0.058], + [53077,0.351], + [54001,0.015], + [54003,0.034], + [54005,0.007], + [54007,0.005], + [54009,0.01], + [54011,0.01], + [54013,0.007], + [54015,0.006], + [54017,0], + [54019,0.021], + [54021,0.011], + [54023,0.026], + [54025,0.019], + [54027,0.006], + [54029,0.008], + [54031,0.034], + [54033,0.012], + [54035,0.005], + [54037,0.046], + [54039,0.01], + [54041,0.012], + [54043,0.002], + [54045,0.006], + [54047,0.001], + [54049,0.019], + [54051,0.012], + [54053,0.004], + [54055,0.015], + [54057,0.035], + [54059,0.007], + [54061,0.026], + [54063,0.003], + [54065,0.008], + [54067,0.011], + [54069,0.006], + [54071,0.013], + [54073,0.024], + [54075,0.007], + [54077,0.009], + [54079,0.01], + [54081,0.017], + [54083,0.008], + [54085,0.006], + [54087,0.006], + [54089,0.001], + [54091,0.011], + [54093,0.002], + [54095,0.011], + [54097,0.011], + [54099,0.009], + [54101,0], + [54103,0.002], + [54105,0.024], + [54107,0.012], + [54109,0.001], + [55001,0.02], + [55003,0.011], + [55005,0.016], + [55007,0.014], + [55009,0.064], + [55011,0.021], + [55013,0.014], + [55015,0.039], + [55017,0.009], + [55019,0.036], + [55021,0.03], + [55023,0.007], + [55025,0.046], + [55027,0.028], + [55029,0.025], + [55031,0.012], + [55033,0.022], + [55035,0.03], + [55037,0.016], + [55039,0.037], + [55041,0.018], + [55043,0.019], + [55045,0.026], + [55047,0.042], + [55049,0.013], + [55051,0.016], + [55053,0.029], + [55055,0.05], + [55057,0.022], + [55059,0.081], + [55061,0.023], + [55063,0.034], + [55065,0.033], + [55067,0.02], + [55069,0.012], + [55071,0.03], + [55073,0.021], + [55075,0.02], + [55077,0.019], + [55078,0.011], + [55079,0.1], + [55081,0.039], + [55083,0.016], + [55085,0.011], + [55087,0.034], + [55089,0.024], + [55091,0.011], + [55093,0.014], + [55095,0.012], + [55097,0.022], + [55099,0.015], + [55101,0.073], + [55103,0.023], + [55105,0.052], + [55107,0.01], + [55109,0.022], + [55111,0.03], + [55113,0.015], + [55115,0.016], + [55117,0.036], + [55119,0.016], + [55121,0.049], + [55123,0.011], + [55125,0.01], + [55127,0.068], + [55129,0.008], + [55131,0.022], + [55133,0.032], + [55135,0.025], + [55137,0.046], + [55139,0.034], + [55141,0.017], + [56001,0.051], + [56003,0.046], + [56005,0.045], + [56007,0.145], + [56009,0.086], + [56011,0.015], + [56013,0.036], + [56015,0.047], + [56017,0.024], + [56019,0.021], + [56021,0.058], + [56023,0.043], + [56025,0.052], + [56027,0.04], + [56029,0.031], + [56031,0.085], + [56033,0.024], + [56035,0.023], + [56037,0.093], + [56039,0.141], + [56041,0.048], + [56043,0.078], + [56045,0.008] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-median-2017.json b/data/regional/united-states/demographics/age/us-age-median-2017.json new file mode 100644 index 0000000..78bb4e5 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-median-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Age", + "description" : "Median age of the population.", + "units" : "years", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.median.2017"], + [1001,37.8], + [1003,42.6], + [1005,39.7], + [1007,39.8], + [1009,40.9], + [1011,40.8], + [1013,40.7], + [1015,39.1], + [1017,43], + [1019,46.1], + [1021,38.9], + [1023,45.8], + [1025,42.2], + [1027,43.8], + [1029,41.7], + [1031,39.3], + [1033,42.5], + [1035,44.5], + [1037,45.9], + [1039,43.4], + [1041,41.4], + [1043,40.6], + [1045,37.1], + [1047,39.3], + [1049,39], + [1051,38.5], + [1053,39.6], + [1055,40.9], + [1057,43.6], + [1059,37.7], + [1061,42.7], + [1063,42], + [1065,39.8], + [1067,43.5], + [1069,39.6], + [1071,43], + [1073,37.6], + [1075,44.5], + [1077,41.5], + [1079,42], + [1081,31], + [1083,39.1], + [1085,40.7], + [1087,38], + [1089,38.2], + [1091,42.1], + [1093,44.1], + [1095,38.8], + [1097,37.3], + [1099,41.7], + [1101,35.9], + [1103,40.1], + [1105,37.6], + [1107,42.1], + [1109,31.4], + [1111,42.7], + [1113,35.3], + [1115,40.1], + [1117,38.5], + [1119,35.9], + [1121,40.6], + [1123,43.3], + [1125,32.3], + [1127,42.3], + [1129,43.5], + [1131,40.5], + [1133,44.6], + [2013,42.7], + [2016,37.7], + [2020,33.1], + [2050,26.9], + [2060,41.8], + [2068,38.4], + [2070,30.1], + [2090,31], + [2100,45], + [2105,48.9], + [2110,38], + [2122,40.6], + [2130,39.5], + [2150,33.1], + [2158,"NA"], + [2164,32.3], + [2170,34.9], + [2180,27.9], + [2185,34.6], + [2188,26.6], + [2195,41.7], + [2198,41], + [2220,38.9], + [2230,42.9], + [2240,36.6], + [2261,40], + [2275,49.1], + [2282,39.4], + [2290,34.7], + [4001,34.2], + [4003,40.5], + [4005,30.6], + [4007,49.3], + [4009,33.1], + [4011,33.4], + [4012,56], + [4013,36], + [4015,50.4], + [4017,35.9], + [4019,38.2], + [4021,38.5], + [4023,36.6], + [4025,52.2], + [4027,34.1], + [5001,40.9], + [5003,41.8], + [5005,51.8], + [5007,35.2], + [5009,42.2], + [5011,40.6], + [5013,45.2], + [5015,44.6], + [5017,43.3], + [5019,33.8], + [5021,43.4], + [5023,48.9], + [5025,42.6], + [5027,36.2], + [5029,41.2], + [5031,34], + [5033,38.7], + [5035,35], + [5037,40.7], + [5039,43.7], + [5041,40.2], + [5043,36.5], + [5045,32.3], + [5047,41.4], + [5049,48.1], + [5051,44.7], + [5053,39.9], + [5055,37.7], + [5057,38.9], + [5059,41.7], + [5061,38.5], + [5063,39.8], + [5065,48], + [5067,40.5], + [5069,39], + [5071,37.8], + [5073,45.8], + [5075,42], + [5077,41.9], + [5079,38.6], + [5081,42.5], + [5083,42.2], + [5085,35.8], + [5087,42.5], + [5089,51.8], + [5091,38.5], + [5093,36.1], + [5095,46.1], + [5097,50], + [5099,43.8], + [5101,48.8], + [5103,42.8], + [5105,43.7], + [5107,38.2], + [5109,41.8], + [5111,39.7], + [5113,43.8], + [5115,34.9], + [5117,45.7], + [5119,36.7], + [5121,42.2], + [5123,38.4], + [5125,39], + [5127,41.2], + [5129,47.3], + [5131,37.3], + [5133,35], + [5135,47.3], + [5137,49.5], + [5139,39.7], + [5141,47.6], + [5143,31.5], + [5145,36.3], + [5147,45.3], + [5149,39.7], + [6001,37.3], + [6003,44.9], + [6005,50.6], + [6007,36.9], + [6009,51.6], + [6011,34.7], + [6013,39.2], + [6015,38.7], + [6017,45.5], + [6019,31.8], + [6021,36.8], + [6023,37.7], + [6025,32.2], + [6027,45.6], + [6029,31.3], + [6031,31.5], + [6033,45.8], + [6035,36.2], + [6037,36], + [6039,33.7], + [6041,46.1], + [6043,51.1], + [6045,42.4], + [6047,30.8], + [6049,47.8], + [6051,38.3], + [6053,33.9], + [6055,40.8], + [6057,49.8], + [6059,37.5], + [6061,41.6], + [6063,52.1], + [6065,35], + [6067,35.9], + [6069,35.4], + [6071,32.9], + [6073,35.4], + [6075,38.3], + [6077,33.9], + [6079,39], + [6081,39.6], + [6083,33.7], + [6085,37], + [6087,37.3], + [6089,41.8], + [6091,55], + [6093,47.9], + [6095,37.7], + [6097,41.4], + [6099,33.9], + [6101,35.7], + [6103,41.1], + [6105,51.4], + [6107,30.6], + [6109,48.6], + [6111,37.5], + [6113,30.9], + [6115,32.4], + [8001,33.4], + [8003,30.3], + [8005,36.4], + [8007,49.8], + [8009,47.6], + [8011,40.4], + [8013,36.2], + [8014,37.8], + [8015,49.9], + [8017,35.8], + [8019,47.2], + [8021,38.2], + [8023,51], + [8025,38.2], + [8027,58.2], + [8029,47.8], + [8031,34.4], + [8033,49.4], + [8035,38.1], + [8037,36.5], + [8039,45.6], + [8041,34], + [8043,44.8], + [8045,36.2], + [8047,45.2], + [8049,44.1], + [8051,34.5], + [8053,57.2], + [8055,54.9], + [8057,49.2], + [8059,40.4], + [8061,41.1], + [8063,38.4], + [8065,39.3], + [8067,39.7], + [8069,35.7], + [8071,46], + [8073,38.5], + [8075,37.5], + [8077,38.9], + [8079,58.5], + [8081,37.7], + [8083,44.1], + [8085,44.7], + [8087,36.6], + [8089,40.2], + [8091,53.7], + [8093,50.6], + [8095,38.5], + [8097,43.3], + [8099,37.4], + [8101,38.8], + [8103,35.9], + [8105,40.7], + [8107,39.9], + [8109,48.8], + [8111,46.9], + [8113,42], + [8115,48.4], + [8117,39.2], + [8119,49.8], + [8121,42.2], + [8123,34.2], + [8125,35.8], + [9001,40.2], + [9003,40.4], + [9005,46.9], + [9007,45.1], + [9009,40.1], + [9011,41], + [9013,37.9], + [9015,41], + [10001,37.3], + [10003,37.8], + [10005,48.3], + [11001,33.9], + [12001,31.2], + [12003,37.1], + [12005,39.6], + [12007,40.9], + [12009,47.1], + [12011,40.1], + [12013,40.3], + [12015,58.1], + [12017,55.9], + [12019,39.4], + [12021,49.7], + [12023,40.7], + [12027,40.7], + [12029,47.6], + [12031,36], + [12033,37], + [12035,50.3], + [12037,44.3], + [12039,40.7], + [12041,42.8], + [12043,45.8], + [12045,44.3], + [12047,41.1], + [12049,34.9], + [12051,33.7], + [12053,48.9], + [12055,53.1], + [12057,36.8], + [12059,42.2], + [12061,52.2], + [12063,41.5], + [12065,46], + [12067,39.2], + [12069,46.6], + [12071,47.8], + [12073,30.5], + [12075,46.4], + [12077,36.9], + [12079,42.4], + [12081,47.6], + [12083,48.5], + [12085,51.6], + [12086,39.5], + [12087,46.7], + [12089,44.9], + [12091,36.7], + [12093,41], + [12095,34.7], + [12097,35.7], + [12099,44.4], + [12101,44.5], + [12103,47.6], + [12105,40.4], + [12107,44.8], + [12109,43.1], + [12111,44.6], + [12113,39.5], + [12115,55.1], + [12117,39.1], + [12119,66.4], + [12121,41.7], + [12123,41.4], + [12125,39.8], + [12127,46.4], + [12129,40.7], + [12131,43.2], + [12133,41.9], + [13001,39.3], + [13003,34.9], + [13005,37.6], + [13007,43.6], + [13009,35.1], + [13011,40.3], + [13013,35.1], + [13015,37.5], + [13017,39], + [13019,39.5], + [13021,36], + [13023,37.4], + [13025,40.3], + [13027,43.2], + [13029,34.8], + [13031,28.1], + [13033,37.4], + [13035,38.4], + [13037,38.4], + [13039,31.6], + [13043,37.9], + [13045,34.4], + [13047,39.6], + [13049,41.4], + [13051,34.9], + [13053,23.7], + [13055,40.3], + [13057,38], + [13059,27.3], + [13061,44.6], + [13063,32.4], + [13065,37.6], + [13067,36.4], + [13069,35.9], + [13071,36], + [13073,36.4], + [13075,37], + [13077,37.9], + [13079,44.2], + [13081,38.3], + [13083,41.8], + [13085,43.3], + [13087,37.9], + [13089,35.5], + [13091,41.2], + [13093,43.5], + [13095,35], + [13097,36.3], + [13099,40.5], + [13101,38.1], + [13103,36.2], + [13105,42.3], + [13107,37.2], + [13109,37.3], + [13111,50.8], + [13113,43.5], + [13115,38.3], + [13117,38.2], + [13119,41.1], + [13121,35.2], + [13123,46], + [13125,42.9], + [13127,40.8], + [13129,37], + [13131,39.7], + [13133,48.9], + [13135,34.9], + [13137,39.5], + [13139,36], + [13141,44.3], + [13143,40.7], + [13145,43.2], + [13147,43], + [13149,41.9], + [13151,36.7], + [13153,35.1], + [13155,39.7], + [13157,38.7], + [13159,42.2], + [13161,36.3], + [13163,38.6], + [13165,40.6], + [13167,41.6], + [13169,39.7], + [13171,38.1], + [13173,33.8], + [13175,38.3], + [13177,36.9], + [13179,27.9], + [13181,47.9], + [13183,31.6], + [13185,30.1], + [13187,37.3], + [13189,37.8], + [13191,49.2], + [13193,40.6], + [13195,41], + [13197,43.3], + [13199,42], + [13201,43.1], + [13205,38.8], + [13207,43.3], + [13209,39.4], + [13211,44.2], + [13213,37.6], + [13215,33.7], + [13217,36.2], + [13219,40.1], + [13221,42.5], + [13223,35.6], + [13225,35.8], + [13227,44.9], + [13229,39.4], + [13231,40.5], + [13233,37.1], + [13235,43.1], + [13237,45.6], + [13239,52.6], + [13241,48.8], + [13243,44.3], + [13245,33.7], + [13247,37.3], + [13249,36.9], + [13251,41.2], + [13253,44], + [13255,38.9], + [13257,42.3], + [13259,37], + [13261,35.2], + [13263,49.9], + [13265,43.3], + [13267,36.9], + [13269,43.8], + [13271,41], + [13273,40.7], + [13275,39.6], + [13277,35.5], + [13279,36.1], + [13281,53.3], + [13283,40.8], + [13285,36.2], + [13287,40.2], + [13289,46.3], + [13291,53.8], + [13293,41.5], + [13295,41.4], + [13297,38.9], + [13299,38.9], + [13301,44.2], + [13303,40.3], + [13305,38.2], + [13307,43.5], + [13309,38.2], + [13311,45.1], + [13313,35.4], + [13315,39.4], + [13317,45.5], + [13319,42.5], + [13321,42.1], + [15001,42.1], + [15003,37.6], + [15005,57.6], + [15007,42.1], + [15009,40.9], + [16001,36.4], + [16003,52.8], + [16005,33.2], + [16007,39.3], + [16009,46.5], + [16011,33.3], + [16013,42.8], + [16015,53.2], + [16017,47.7], + [16019,32.6], + [16021,43.7], + [16023,46.4], + [16025,47], + [16027,33.2], + [16029,36.9], + [16031,31.8], + [16033,29.7], + [16035,50.3], + [16037,53.4], + [16039,31.4], + [16041,32.6], + [16043,36.7], + [16045,45.2], + [16047,37.3], + [16049,49.5], + [16051,31.3], + [16053,32.6], + [16055,39.7], + [16057,28.3], + [16059,52.9], + [16061,48.1], + [16063,33.1], + [16065,23.5], + [16067,35.4], + [16069,41.3], + [16071,39.5], + [16073,38.6], + [16075,38.8], + [16077,34.8], + [16079,47.2], + [16081,36.4], + [16083,34.6], + [16085,50.2], + [16087,46.1], + [17001,41.5], + [17003,42.3], + [17005,40.4], + [17007,38.3], + [17009,38.7], + [17011,43.7], + [17013,46.5], + [17015,47.4], + [17017,40.2], + [17019,29.7], + [17021,42.7], + [17023,43], + [17025,44], + [17027,40.4], + [17029,34.3], + [17031,36.4], + [17033,42.5], + [17035,41.9], + [17037,30.7], + [17039,42.8], + [17041,37.9], + [17043,39.1], + [17045,44.5], + [17047,43.6], + [17049,39.1], + [17051,41.4], + [17053,43.2], + [17055,42.3], + [17057,42.5], + [17059,44.8], + [17061,42.7], + [17063,37.5], + [17065,43.6], + [17067,46], + [17069,46.8], + [17071,49.2], + [17073,42.7], + [17075,44.3], + [17077,31.1], + [17079,43], + [17081,40.9], + [17083,42.5], + [17085,49.4], + [17087,42.5], + [17089,36.6], + [17091,37.7], + [17093,34.5], + [17095,42.2], + [17097,38], + [17099,41.8], + [17101,41.2], + [17103,42.7], + [17105,41.6], + [17107,40.6], + [17109,31.3], + [17111,39.9], + [17113,32.7], + [17115,41], + [17117,43.1], + [17119,40], + [17121,41.8], + [17123,46.3], + [17125,45.5], + [17127,43.8], + [17129,42.3], + [17131,44.8], + [17133,42.3], + [17135,42.4], + [17137,41.2], + [17139,39.9], + [17141,41.9], + [17143,37], + [17145,41.8], + [17147,43], + [17149,42.4], + [17151,52.2], + [17153,43.3], + [17155,47.5], + [17157,41.5], + [17159,42.3], + [17161,40], + [17163,38], + [17165,42], + [17167,40.1], + [17169,46.6], + [17171,43.7], + [17173,44.6], + [17175,45], + [17177,44.7], + [17179,40.8], + [17181,43.5], + [17183,40.2], + [17185,42.8], + [17187,39.1], + [17189,43], + [17191,43.4], + [17193,43.8], + [17195,42.9], + [17197,37.3], + [17199,40.9], + [17201,39.6], + [17203,39.9], + [18001,33.3], + [18003,35.7], + [18005,38.1], + [18007,40.9], + [18009,43.7], + [18011,38.4], + [18013,49.3], + [18015,42.3], + [18017,40.5], + [18019,38.8], + [18021,40.9], + [18023,38.2], + [18025,43.7], + [18027,34.6], + [18029,42.7], + [18031,38.8], + [18033,39.1], + [18035,35.4], + [18037,40.2], + [18039,35.4], + [18041,42.4], + [18043,39.9], + [18045,43], + [18047,42.3], + [18049,41.9], + [18051,40.5], + [18053,39.9], + [18055,42.8], + [18057,36.6], + [18059,40.2], + [18061,42.7], + [18063,37.6], + [18065,42.2], + [18067,41.5], + [18069,40.3], + [18071,38.2], + [18073,39], + [18075,39.8], + [18077,40.6], + [18079,39.6], + [18081,37.3], + [18083,38.1], + [18085,38], + [18087,31.5], + [18089,38.6], + [18091,40.2], + [18093,42.6], + [18095,40.2], + [18097,34.3], + [18099,39.8], + [18101,42], + [18103,39.9], + [18105,28.8], + [18107,40.5], + [18109,41.5], + [18111,42.5], + [18113,38.5], + [18115,46.8], + [18117,41.3], + [18119,44.6], + [18121,42.2], + [18123,41.9], + [18125,43.9], + [18127,39.4], + [18129,42.5], + [18131,41.8], + [18133,37.8], + [18135,42.1], + [18137,40.6], + [18139,41.6], + [18141,36.5], + [18143,40.7], + [18145,41.3], + [18147,43.2], + [18149,41.7], + [18151,42.7], + [18153,41.4], + [18155,40], + [18157,28.1], + [18159,44.5], + [18161,43.3], + [18163,37.9], + [18165,43.2], + [18167,36.1], + [18169,42], + [18171,44.6], + [18173,40.5], + [18175,41.2], + [18177,41.1], + [18179,39.8], + [18181,42], + [18183,41], + [19001,45.7], + [19003,47.7], + [19005,45], + [19007,45.1], + [19009,48.3], + [19011,42.1], + [19013,34.9], + [19015,41.4], + [19017,39.2], + [19019,38.7], + [19021,35.1], + [19023,43.7], + [19025,45.1], + [19027,41.7], + [19029,44.6], + [19031,41.9], + [19033,44.5], + [19035,46.3], + [19037,44.2], + [19039,40.7], + [19041,42.2], + [19043,46.5], + [19045,42.2], + [19047,37.6], + [19049,35.1], + [19051,37.5], + [19053,36.5], + [19055,43.4], + [19057,42.5], + [19059,48.7], + [19061,38.6], + [19063,42.5], + [19065,43.7], + [19067,44.6], + [19069,42.4], + [19071,46], + [19073,45.7], + [19075,42.4], + [19077,45.7], + [19079,42.6], + [19081,44.5], + [19083,44.4], + [19085,44], + [19087,40.4], + [19089,41.8], + [19091,43], + [19093,44.7], + [19095,41.8], + [19097,44.6], + [19099,42.6], + [19101,40.9], + [19103,29.9], + [19105,43.6], + [19107,44], + [19109,45.8], + [19111,43.3], + [19113,37.4], + [19115,41], + [19117,44.8], + [19119,38], + [19121,40.8], + [19123,39.7], + [19125,39.5], + [19127,38.5], + [19129,42.1], + [19131,43.7], + [19133,46.7], + [19135,42.2], + [19137,44.5], + [19139,38.1], + [19141,43.3], + [19143,44], + [19145,44.4], + [19147,42.3], + [19149,40.5], + [19151,47.2], + [19153,35.2], + [19155,39.6], + [19157,40.7], + [19159,45], + [19161,45.9], + [19163,38.1], + [19165,46.9], + [19167,33.3], + [19169,25.9], + [19171,43.2], + [19173,43.3], + [19175,40.1], + [19177,44], + [19179,39.5], + [19181,38.2], + [19183,40.8], + [19185,43.3], + [19187,39.6], + [19189,42.5], + [19191,41], + [19193,35.6], + [19195,44.4], + [19197,44.3], + [20001,41.6], + [20003,42.2], + [20005,35.9], + [20007,43.4], + [20009,39.6], + [20011,39.3], + [20013,42.2], + [20015,38.1], + [20017,45], + [20019,48.7], + [20021,41.4], + [20023,47.8], + [20025,44.2], + [20027,43], + [20029,41.8], + [20031,44], + [20033,49.5], + [20035,38.2], + [20037,32.5], + [20039,51.3], + [20041,41.2], + [20043,39.4], + [20045,29.2], + [20047,44.8], + [20049,50.8], + [20051,32], + [20053,43.7], + [20055,30.6], + [20057,31.1], + [20059,40], + [20061,26.4], + [20063,48.5], + [20065,50.8], + [20067,32.6], + [20069,35.9], + [20071,48.7], + [20073,48.6], + [20075,33.4], + [20077,42.5], + [20079,39.2], + [20081,36.1], + [20083,46.8], + [20085,41.4], + [20087,44], + [20089,51.9], + [20091,37.3], + [20093,34.8], + [20095,45.5], + [20097,40.8], + [20099,41], + [20101,41.5], + [20103,37.3], + [20105,46.6], + [20107,43.6], + [20109,40.4], + [20111,32.9], + [20113,40.8], + [20115,45], + [20117,44], + [20119,37.7], + [20121,41.7], + [20123,43.7], + [20125,40.3], + [20127,47.9], + [20129,39.5], + [20131,40.4], + [20133,39.7], + [20135,47.2], + [20137,43.5], + [20139,43.4], + [20141,47.4], + [20143,42.4], + [20145,44.5], + [20147,44.3], + [20149,35.2], + [20151,39.2], + [20153,50.3], + [20155,40.1], + [20157,50.9], + [20159,38.5], + [20161,24.9], + [20163,43.6], + [20165,47.9], + [20167,48.7], + [20169,37.9], + [20171,40.5], + [20173,35], + [20175,29.5], + [20177,38.9], + [20179,44.7], + [20181,38.5], + [20183,51.6], + [20185,42.7], + [20187,39.3], + [20189,35.1], + [20191,40.7], + [20193,36.3], + [20195,49.4], + [20197,43.4], + [20199,40.6], + [20201,46.2], + [20203,41.2], + [20205,44], + [20207,48.6], + [20209,33.7], + [21001,40.8], + [21003,40.6], + [21005,40.5], + [21007,43.3], + [21009,40.3], + [21011,39.9], + [21013,41.6], + [21015,37.1], + [21017,42.1], + [21019,41.9], + [21021,40.2], + [21023,40.7], + [21025,41.2], + [21027,43.3], + [21029,39.8], + [21031,41.2], + [21033,42.6], + [21035,34.7], + [21037,38], + [21039,42.2], + [21041,37.2], + [21043,41.1], + [21045,43.1], + [21047,28.4], + [21049,42.3], + [21051,39.2], + [21053,41.7], + [21055,43.2], + [21057,45.1], + [21059,39], + [21061,43.1], + [21063,42], + [21065,42.6], + [21067,34.3], + [21069,40.9], + [21071,41.4], + [21073,40.7], + [21075,43.1], + [21077,39], + [21079,42.4], + [21081,36.5], + [21083,40.3], + [21085,40.2], + [21087,44.4], + [21089,43.3], + [21091,40.2], + [21093,36.1], + [21095,41.4], + [21097,41.8], + [21099,40.6], + [21101,40.4], + [21103,41.3], + [21105,48.3], + [21107,41.3], + [21109,41], + [21111,38], + [21113,37.4], + [21115,41.9], + [21117,36.9], + [21119,41.4], + [21121,39.7], + [21123,40.8], + [21125,39.6], + [21127,40.9], + [21129,44.2], + [21131,41.9], + [21133,41.8], + [21135,42.1], + [21137,40.6], + [21139,45.8], + [21141,40.7], + [21143,49.2], + [21145,42.1], + [21147,39.2], + [21149,41.5], + [21151,34], + [21153,42], + [21155,39.7], + [21157,44.8], + [21159,39], + [21161,40.7], + [21163,37.8], + [21165,46.2], + [21167,42.8], + [21169,43.1], + [21171,41.8], + [21173,39], + [21175,41.3], + [21177,42], + [21179,38.9], + [21181,41.6], + [21183,40.7], + [21185,39], + [21187,42.2], + [21189,41.8], + [21191,41.2], + [21193,41.2], + [21195,41.9], + [21197,39], + [21199,42], + [21201,47.1], + [21203,42.2], + [21205,30.7], + [21207,43.4], + [21209,36.2], + [21211,38.8], + [21213,39.8], + [21215,40.7], + [21217,38.4], + [21219,36.8], + [21221,45.5], + [21223,41.9], + [21225,37.5], + [21227,32.7], + [21229,41.2], + [21231,42], + [21233,41], + [21235,37], + [21237,41.8], + [21239,42.3], + [22001,35.8], + [22003,38.2], + [22005,35.3], + [22007,39.5], + [22009,38.1], + [22011,37.5], + [22013,42.3], + [22015,34.9], + [22017,37.1], + [22019,36.1], + [22021,39.9], + [22023,43.2], + [22025,38], + [22027,42.2], + [22029,37.7], + [22031,39.4], + [22033,33.4], + [22035,33.8], + [22037,42.4], + [22039,35.4], + [22041,38], + [22043,37.7], + [22045,36], + [22047,38.4], + [22049,40.5], + [22051,39], + [22053,38.1], + [22055,34.5], + [22057,37.1], + [22059,38.2], + [22061,27.6], + [22063,35.9], + [22065,35.1], + [22067,39.6], + [22069,33.6], + [22071,35.9], + [22073,35.1], + [22075,35.9], + [22077,42.7], + [22079,37.3], + [22081,39.9], + [22083,38.2], + [22085,41.3], + [22087,33.6], + [22089,37.2], + [22091,38.3], + [22093,38.9], + [22095,36.5], + [22097,36.2], + [22099,37.1], + [22101,38], + [22103,39.8], + [22105,34.9], + [22107,44], + [22109,35.5], + [22111,41.7], + [22113,36.9], + [22115,30.1], + [22117,39.9], + [22119,40.6], + [22121,35.6], + [22123,41], + [22125,40.5], + [22127,40.9], + [23001,40.7], + [23003,47.2], + [23005,42.1], + [23007,45.4], + [23009,48.1], + [23011,44.2], + [23013,47.8], + [23015,50.5], + [23017,46.3], + [23019,41.8], + [23021,50.7], + [23023,45.9], + [23025,45.8], + [23027,45.7], + [23029,47.6], + [23031,44.7], + [24001,41.5], + [24003,38.5], + [24005,39.2], + [24009,40.8], + [24011,40.1], + [24013,42.4], + [24015,40.3], + [24017,38.1], + [24019,44.4], + [24021,39.3], + [24023,45.4], + [24025,40.6], + [24027,38.7], + [24029,46.9], + [24031,38.8], + [24033,36.5], + [24035,44.1], + [24037,36.5], + [24039,37], + [24041,49.7], + [24043,40.6], + [24045,35.8], + [24047,49.7], + [24510,35], + [25001,52.4], + [25003,46.5], + [25005,40.9], + [25007,45.9], + [25009,40.8], + [25011,45.9], + [25013,38.7], + [25015,36.1], + [25017,38.5], + [25019,39.8], + [25021,41], + [25023,42.6], + [25025,32.6], + [25027,40.1], + [26001,57.9], + [26003,49.3], + [26005,39.7], + [26007,47.6], + [26009,50.4], + [26011,49.3], + [26013,43.4], + [26015,42.7], + [26017,42.9], + [26019,48.9], + [26021,42], + [26023,41.2], + [26025,39.9], + [26027,44.7], + [26029,47.7], + [26031,50.1], + [26033,39.7], + [26035,46.9], + [26037,40.4], + [26039,50], + [26041,46.9], + [26043,46.4], + [26045,40.9], + [26047,45], + [26049,40.1], + [26051,49.5], + [26053,48.7], + [26055,42.8], + [26057,39], + [26059,42], + [26061,32.9], + [26063,48.5], + [26065,31.7], + [26067,38.7], + [26069,52.6], + [26071,53.8], + [26073,27.4], + [26075,41], + [26077,34.1], + [26079,44.6], + [26081,35], + [26083,55.1], + [26085,52.1], + [26087,43.6], + [26089,53.3], + [26091,41.6], + [26093,42.9], + [26095,44.2], + [26097,51.8], + [26099,41], + [26101,48.7], + [26103,39.1], + [26105,46], + [26107,36.4], + [26109,48], + [26111,41.5], + [26113,43.4], + [26115,42.2], + [26117,40.5], + [26119,55.3], + [26121,39.1], + [26123,42.6], + [26125,41], + [26127,42.7], + [26129,49.7], + [26131,57.1], + [26133,43.5], + [26135,51.8], + [26137,44.9], + [26139,34.9], + [26141,54.3], + [26143,55.3], + [26145,40.8], + [26147,43.2], + [26149,39.4], + [26151,44.8], + [26153,51.1], + [26155,42], + [26157,44.1], + [26159,41.6], + [26161,33.4], + [26163,37.9], + [26165,41.9], + [27001,54.5], + [27003,38.2], + [27005,41.8], + [27007,33.4], + [27009,35.6], + [27011,49], + [27013,30.6], + [27015,42.5], + [27017,40.7], + [27019,37.2], + [27021,48.7], + [27023,43], + [27025,40.9], + [27027,32.6], + [27029,42.7], + [27031,52.1], + [27033,43.3], + [27035,44.1], + [27037,37.7], + [27039,38], + [27041,44.3], + [27043,46.8], + [27045,42.5], + [27047,44.3], + [27049,42.9], + [27051,45.3], + [27053,36.3], + [27055,45.4], + [27057,48.6], + [27059,39.5], + [27061,45.9], + [27063,44], + [27065,44.5], + [27067,39.5], + [27069,47.9], + [27071,48.6], + [27073,50], + [27075,50.3], + [27077,51.1], + [27079,41.4], + [27081,45.9], + [27083,35.6], + [27085,40.4], + [27087,35.7], + [27089,43.4], + [27091,45.2], + [27093,42.2], + [27095,40.1], + [27097,41.7], + [27099,39.3], + [27101,48.1], + [27103,36.3], + [27105,36], + [27107,44.3], + [27109,37.1], + [27111,46.6], + [27113,39.5], + [27115,44.5], + [27117,42.4], + [27119,38.7], + [27121,45.9], + [27123,34.8], + [27125,42.2], + [27127,43.5], + [27129,44.4], + [27131,36.6], + [27133,40.9], + [27135,41.4], + [27137,41], + [27139,36], + [27141,35.9], + [27143,41.6], + [27145,34.1], + [27147,39.3], + [27149,33.1], + [27151,44.1], + [27153,43.7], + [27155,48.6], + [27157,45], + [27159,41.7], + [27161,39.6], + [27163,39.2], + [27165,39.9], + [27167,44.3], + [27169,34.5], + [27171,36.2], + [27173,42.6], + [28001,40.3], + [28003,40.1], + [28005,46.4], + [28007,39.9], + [28009,42], + [28011,35], + [28013,40.5], + [28015,46], + [28017,37], + [28019,44.3], + [28021,33.8], + [28023,41.8], + [28025,39.4], + [28027,34], + [28029,38.2], + [28031,37.5], + [28033,36.6], + [28035,32], + [28037,42.5], + [28039,36.5], + [28041,39], + [28043,40.3], + [28045,43.2], + [28047,35.9], + [28049,34.2], + [28051,34.5], + [28053,36.4], + [28055,38.8], + [28057,39.8], + [28059,38.3], + [28061,40.8], + [28063,34.9], + [28065,43.6], + [28067,37.1], + [28069,41.7], + [28071,29.3], + [28073,34.7], + [28075,37.7], + [28077,40.4], + [28079,35.8], + [28081,37], + [28083,33.1], + [28085,37.8], + [28087,36.6], + [28089,37], + [28091,39.9], + [28093,39.9], + [28095,41], + [28097,42.6], + [28099,36.7], + [28101,37.2], + [28103,36], + [28105,25.4], + [28107,37], + [28109,41], + [28111,40.7], + [28113,37], + [28115,36.8], + [28117,39.5], + [28119,37.9], + [28121,37.2], + [28123,36.5], + [28125,39.6], + [28127,38.9], + [28129,40.1], + [28131,37.4], + [28133,34.9], + [28135,34.7], + [28137,37.7], + [28139,38.6], + [28141,42.6], + [28143,32.9], + [28145,37.9], + [28147,40.3], + [28149,38.2], + [28151,36.7], + [28153,37.4], + [28155,39.9], + [28157,37.3], + [28159,42], + [28161,41.8], + [28163,35.7], + [29001,27.3], + [29003,42.5], + [29005,47.8], + [29007,39.6], + [29009,43.2], + [29011,40.6], + [29013,41.6], + [29015,53.2], + [29017,43.9], + [29019,30.6], + [29021,37.1], + [29023,40.3], + [29025,42.9], + [29027,38.3], + [29029,51], + [29031,36.3], + [29033,42.8], + [29035,41.3], + [29037,39.5], + [29039,44], + [29041,45.7], + [29043,37.6], + [29045,43.8], + [29047,36.8], + [29049,41.1], + [29051,38.2], + [29053,39.2], + [29055,41.6], + [29057,46.7], + [29059,43.5], + [29061,41.3], + [29063,40.5], + [29065,44.1], + [29067,47.3], + [29069,39.4], + [29071,40.7], + [29073,45.9], + [29075,41.3], + [29077,35.7], + [29079,40.9], + [29081,42.8], + [29083,44], + [29085,54.8], + [29087,48.4], + [29089,38.9], + [29091,40.2], + [29093,45.3], + [29095,36.6], + [29097,35.9], + [29099,38.8], + [29101,29.9], + [29103,43.7], + [29105,40.1], + [29107,42.2], + [29109,39.7], + [29111,40.1], + [29113,37.3], + [29115,42.5], + [29117,40.7], + [29119,38.3], + [29121,43], + [29123,41.7], + [29125,44.4], + [29127,39.2], + [29129,43.6], + [29131,41.1], + [29133,39.4], + [29135,38.6], + [29137,45.2], + [29139,43.9], + [29141,46.4], + [29143,41.3], + [29145,39.4], + [29147,29], + [29149,46.3], + [29151,40.1], + [29153,51.1], + [29155,37.7], + [29157,40.5], + [29159,37.9], + [29161,34.8], + [29163,39.2], + [29165,38.2], + [29167,37.5], + [29169,27.6], + [29171,46.7], + [29173,44.7], + [29175,39.2], + [29177,41.8], + [29179,46], + [29181,42.5], + [29183,38], + [29185,50], + [29186,43], + [29187,39.2], + [29189,40.3], + [29195,37.9], + [29197,40.6], + [29199,37.2], + [29201,40], + [29203,44.8], + [29205,41.9], + [29207,42.1], + [29209,52.7], + [29211,41.5], + [29213,41.9], + [29215,42.3], + [29217,40.7], + [29219,40.9], + [29221,40.6], + [29223,46.9], + [29225,37.4], + [29227,47.5], + [29229,42], + [29510,35.2], + [30001,43], + [30003,29.9], + [30005,34], + [30007,46.3], + [30009,50], + [30011,51.6], + [30013,38.4], + [30015,40.9], + [30017,41], + [30019,45.5], + [30021,41.9], + [30023,47.4], + [30025,38.1], + [30027,45.7], + [30029,42.3], + [30031,33.4], + [30033,43.8], + [30035,31], + [30037,54], + [30039,53.1], + [30041,34.4], + [30043,47.9], + [30045,51.7], + [30047,41.8], + [30049,41.1], + [30051,48.4], + [30053,52.1], + [30055,49.1], + [30057,53], + [30059,43.9], + [30061,52.1], + [30063,35.4], + [30065,49.1], + [30067,46.4], + [30069,51.7], + [30071,46.4], + [30073,40.5], + [30075,51.4], + [30077,45.6], + [30079,51], + [30081,48.5], + [30083,38], + [30085,30.2], + [30087,36.5], + [30089,52.7], + [30091,46.9], + [30093,39.9], + [30095,46.5], + [30097,50.1], + [30099,44.5], + [30101,41.9], + [30103,49.2], + [30105,44.4], + [30107,39.4], + [30109,49.4], + [30111,38.3], + [31001,37.9], + [31003,45.9], + [31005,43.3], + [31007,48.1], + [31009,46.8], + [31011,45], + [31013,40.5], + [31015,52.1], + [31017,48.9], + [31019,32.9], + [31021,46.6], + [31023,43.5], + [31025,41.9], + [31027,44.1], + [31029,44.4], + [31031,43.8], + [31033,40.7], + [31035,43.5], + [31037,33.7], + [31039,44], + [31041,43.5], + [31043,33.8], + [31045,34], + [31047,35.8], + [31049,46.1], + [31051,42.2], + [31053,39.1], + [31055,34.3], + [31057,43.6], + [31059,47.5], + [31061,50.7], + [31063,45.5], + [31065,46.1], + [31067,44.2], + [31069,51.7], + [31071,51.4], + [31073,49.5], + [31075,48.6], + [31077,45.9], + [31079,35.8], + [31081,42.3], + [31083,49.5], + [31085,42.7], + [31087,47.1], + [31089,44.1], + [31091,58], + [31093,43.3], + [31095,45.7], + [31097,41.1], + [31099,40.6], + [31101,49.7], + [31103,50.2], + [31105,46], + [31107,47.2], + [31109,33.2], + [31111,40.4], + [31113,38.9], + [31115,52.8], + [31117,48.5], + [31119,36.9], + [31121,43.5], + [31123,42.9], + [31125,45.4], + [31127,38], + [31129,49.4], + [31131,41.7], + [31133,50.1], + [31135,43.3], + [31137,42.1], + [31139,41.7], + [31141,38.3], + [31143,45.5], + [31145,40.8], + [31147,47.6], + [31149,51.9], + [31151,36], + [31153,34.2], + [31155,41], + [31157,39.5], + [31159,38.3], + [31161,46.1], + [31163,49.3], + [31165,51.6], + [31167,41], + [31169,48.2], + [31171,42.1], + [31173,28.1], + [31175,46], + [31177,41.2], + [31179,31.7], + [31181,46.1], + [31183,50.2], + [31185,40.9], + [32001,38.9], + [32003,36.9], + [32005,50.8], + [32007,34.1], + [32009,48], + [32011,47.3], + [32013,35.6], + [32015,37.8], + [32017,41.6], + [32019,43.8], + [32021,46.7], + [32023,51.6], + [32027,43.1], + [32029,54.7], + [32031,38], + [32033,39.4], + [32510,43], + [33001,46.7], + [33003,51.4], + [33005,42.5], + [33007,48], + [33009,42.9], + [33011,40.5], + [33013,42.8], + [33015,44.1], + [33017,37], + [33019,46.1], + [34001,41.1], + [34003,41.6], + [34005,41.4], + [34007,38.5], + [34009,48.7], + [34011,36.8], + [34013,37.3], + [34015,39.9], + [34017,34.9], + [34019,45.9], + [34021,38.6], + [34023,38.1], + [34025,42.8], + [34027,42.3], + [34029,42.9], + [34031,36.7], + [34033,41.9], + [34035,41.3], + [34037,44.1], + [34039,38.3], + [34041,43.5], + [35001,37.1], + [35003,60.2], + [35005,35.3], + [35006,36.4], + [35007,48.8], + [35009,30.8], + [35011,42.6], + [35013,32.9], + [35015,35.9], + [35017,45.9], + [35019,41.7], + [35021,58.4], + [35023,42.6], + [35025,31.7], + [35027,50.9], + [35028,43], + [35029,39], + [35031,31.6], + [35033,47], + [35035,35.6], + [35037,46.1], + [35039,40.7], + [35041,29.7], + [35043,39.6], + [35045,34.6], + [35047,42.9], + [35049,45.3], + [35051,55.9], + [35053,40], + [35055,47.7], + [35057,44], + [35059,40.2], + [35061,39], + [36001,37.8], + [36003,38.6], + [36005,33.6], + [36007,39.6], + [36009,41.7], + [36011,42.5], + [36013,42.3], + [36015,41.2], + [36017,44.4], + [36019,39.4], + [36021,47.4], + [36023,36.2], + [36025,47], + [36027,41.8], + [36029,40.3], + [36031,46.7], + [36033,40.5], + [36035,43.4], + [36037,43.2], + [36039,45.6], + [36041,53.7], + [36043,43.7], + [36045,31.9], + [36047,34.8], + [36049,41.8], + [36051,40.4], + [36053,41.3], + [36055,38.6], + [36057,41.1], + [36059,41.5], + [36061,37.1], + [36063,43], + [36065,41], + [36067,38.8], + [36069,43.4], + [36071,36.9], + [36073,42.8], + [36075,39.8], + [36077,42], + [36079,43.8], + [36081,38.3], + [36083,39.9], + [36085,39.9], + [36087,36.2], + [36089,38], + [36091,42.3], + [36093,39.8], + [36095,44.1], + [36097,45.7], + [36099,42.2], + [36101,42.4], + [36103,41], + [36105,42.6], + [36107,44], + [36109,30.4], + [36111,43.6], + [36113,46.2], + [36115,43.6], + [36117,43.6], + [36119,40.6], + [36121,41.8], + [36123,41.7], + [37001,39.7], + [37003,42.8], + [37005,49.2], + [37007,40.4], + [37009,47.2], + [37011,44.5], + [37013,45.4], + [37015,45], + [37017,42.8], + [37019,51.9], + [37021,41.9], + [37023,43.6], + [37025,37.9], + [37027,44.1], + [37029,40.8], + [37031,47.4], + [37033,45.4], + [37035,41.2], + [37037,46.3], + [37039,50.8], + [37041,44.7], + [37043,50.7], + [37045,41.7], + [37047,41.9], + [37049,36.2], + [37051,31], + [37053,42.9], + [37055,46], + [37057,42.1], + [37059,44.6], + [37061,40], + [37063,35], + [37065,40.3], + [37067,38.2], + [37069,40.9], + [37071,40.1], + [37073,45], + [37075,45], + [37077,42.5], + [37079,40.4], + [37081,37.2], + [37083,42.7], + [37085,33.9], + [37087,47.5], + [37089,46.9], + [37091,42.4], + [37093,31.9], + [37095,42.7], + [37097,40.4], + [37099,37.2], + [37101,37.9], + [37103,45.5], + [37105,37.9], + [37107,41.9], + [37109,42.7], + [37111,43.3], + [37113,49.3], + [37115,44.2], + [37117,46], + [37119,34.9], + [37121,47.1], + [37123,42.8], + [37125,44.7], + [37127,41.4], + [37129,38.7], + [37131,48.6], + [37133,26], + [37135,34.2], + [37137,51], + [37139,38.1], + [37141,42.6], + [37143,48.9], + [37145,43], + [37147,32], + [37149,52.1], + [37151,41.5], + [37153,40.2], + [37155,35.9], + [37157,44.4], + [37159,40.1], + [37161,44.5], + [37163,40.2], + [37165,39.3], + [37167,42.4], + [37169,45.3], + [37171,43.4], + [37173,41.1], + [37175,50.6], + [37177,47.1], + [37179,38], + [37181,40.6], + [37183,35.8], + [37185,47.2], + [37187,43.5], + [37189,30.6], + [37191,37.3], + [37193,44.1], + [37195,40.4], + [37197,43.5], + [37199,46.8], + [38001,45.3], + [38003,44.5], + [38005,30.7], + [38007,44.4], + [38009,45.2], + [38011,42.2], + [38013,35.7], + [38015,36.6], + [38017,32.2], + [38019,50.1], + [38021,43.6], + [38023,50.9], + [38025,41.2], + [38027,45.8], + [38029,52.1], + [38031,46.4], + [38033,42.4], + [38035,29.5], + [38037,52.2], + [38039,50.9], + [38041,47.3], + [38043,44.3], + [38045,47.8], + [38047,52.9], + [38049,42.8], + [38051,53.5], + [38053,30.8], + [38055,46.7], + [38057,44.7], + [38059,38.2], + [38061,34.2], + [38063,52.5], + [38065,50.1], + [38067,48.2], + [38069,46.1], + [38071,42.4], + [38073,44.4], + [38075,39.3], + [38077,37.8], + [38079,30.6], + [38081,46.3], + [38083,52], + [38085,26.9], + [38087,52], + [38089,34.3], + [38091,49.8], + [38093,39.7], + [38095,49.4], + [38097,41.4], + [38099,44.6], + [38101,31], + [38103,51.8], + [38105,31.3], + [39001,42.2], + [39003,38.6], + [39005,40.4], + [39007,42.5], + [39009,28.6], + [39011,41.1], + [39013,44.2], + [39015,41.6], + [39017,36.4], + [39019,45], + [39021,42.1], + [39023,41.2], + [39025,39.9], + [39027,39.8], + [39029,43.8], + [39031,41.4], + [39033,43], + [39035,40.4], + [39037,41.8], + [39039,40], + [39041,38.4], + [39043,44.6], + [39045,39.2], + [39047,41.1], + [39049,34], + [39051,40.2], + [39053,40.6], + [39055,44.4], + [39057,38.1], + [39059,42.4], + [39061,36.9], + [39063,38.9], + [39065,35.6], + [39067,46], + [39069,41.2], + [39071,40.3], + [39073,42.7], + [39075,30.8], + [39077,39.2], + [39079,40.2], + [39081,44.7], + [39083,38.9], + [39085,43.5], + [39087,41.5], + [39089,39.9], + [39091,41], + [39093,41.5], + [39095,37.9], + [39097,40.4], + [39099,43.5], + [39101,40.8], + [39103,41.9], + [39105,42.8], + [39107,39.8], + [39109,41.5], + [39111,45.8], + [39113,39.3], + [39115,44.2], + [39117,41.8], + [39119,40.2], + [39121,48.7], + [39123,48.3], + [39125,41.5], + [39127,39.9], + [39129,39.4], + [39131,41], + [39133,37.8], + [39135,42.3], + [39137,39.6], + [39139,41.4], + [39141,40.5], + [39143,41.7], + [39145,39.8], + [39147,39.5], + [39149,39.3], + [39151,41.8], + [39153,40.8], + [39155,44], + [39157,40.9], + [39159,38.3], + [39161,41.4], + [39163,41.9], + [39165,39.1], + [39167,43.8], + [39169,38.7], + [39171,41.4], + [39173,34.6], + [39175,41.3], + [40001,37.2], + [40003,43.8], + [40005,40.8], + [40007,40.5], + [40009,35.1], + [40011,42.1], + [40013,37.8], + [40015,37.1], + [40017,35.8], + [40019,38.1], + [40021,35], + [40023,42.5], + [40025,44.6], + [40027,33.6], + [40029,41.8], + [40031,32.6], + [40033,41.1], + [40035,42.5], + [40037,40.3], + [40039,30.7], + [40041,46.5], + [40043,40.6], + [40045,44.1], + [40047,35.7], + [40049,39.2], + [40051,38.6], + [40053,44], + [40055,39.6], + [40057,42.4], + [40059,38.9], + [40061,40.3], + [40063,39.8], + [40065,34.2], + [40067,42.4], + [40069,39.4], + [40071,38.6], + [40073,36.6], + [40075,43.1], + [40077,40.8], + [40079,39.6], + [40081,41], + [40083,37.8], + [40085,40], + [40087,38.3], + [40089,39], + [40091,47], + [40093,41.7], + [40095,43.2], + [40097,40.3], + [40099,42.2], + [40101,37.7], + [40103,41.5], + [40105,42.3], + [40107,40], + [40109,34.4], + [40111,39.2], + [40113,42], + [40115,38.2], + [40117,41.7], + [40119,27.2], + [40121,41], + [40123,35.5], + [40125,37.6], + [40127,44.6], + [40129,41], + [40131,38.7], + [40133,39.2], + [40135,40.7], + [40137,40.5], + [40139,32.5], + [40141,40.9], + [40143,35.4], + [40145,38.5], + [40147,40.1], + [40149,38.6], + [40151,33.8], + [40153,36], + [41001,47.9], + [41003,32.8], + [41005,41.4], + [41007,44.1], + [41009,43.3], + [41011,48.3], + [41013,48], + [41015,55.6], + [41017,42.1], + [41019,47], + [41021,47], + [41023,53], + [41025,46.2], + [41027,39], + [41029,43], + [41031,40.6], + [41033,47.6], + [41035,42.6], + [41037,48.8], + [41039,39.4], + [41041,50.9], + [41043,39.7], + [41045,36.1], + [41047,36.2], + [41049,39.2], + [41051,36.8], + [41053,37.3], + [41055,51.7], + [41057,48], + [41059,36.1], + [41061,39.8], + [41063,52.7], + [41065,40.9], + [41067,36.4], + [41069,57.9], + [41071,38.2], + [42001,43.3], + [42003,40.9], + [42005,46], + [42007,44.9], + [42009,45.9], + [42011,39.9], + [42013,43.1], + [42015,44.4], + [42017,43.6], + [42019,43.1], + [42021,45], + [42023,50.8], + [42025,45.7], + [42027,31.3], + [42029,40.3], + [42031,41.3], + [42033,44.2], + [42035,38.5], + [42037,40.5], + [42039,42.8], + [42041,40.5], + [42043,39.6], + [42045,39], + [42047,46.7], + [42049,39], + [42051,44.6], + [42053,39.2], + [42055,41.3], + [42057,44.6], + [42059,42], + [42061,42.9], + [42063,39.7], + [42065,43.9], + [42067,42.8], + [42069,42.2], + [42071,38.5], + [42073,44.9], + [42075,41.2], + [42077,39.4], + [42079,43], + [42081,41], + [42083,42.5], + [42085,44.4], + [42087,43.6], + [42089,42.6], + [42091,41.2], + [42093,43], + [42095,42], + [42097,44.3], + [42099,43], + [42101,34.1], + [42103,47], + [42105,46.7], + [42107,44.2], + [42109,39.7], + [42111,45.9], + [42113,53.1], + [42115,47.8], + [42117,44], + [42119,39.4], + [42121,46], + [42123,46.7], + [42125,44.4], + [42127,47.7], + [42129,46.6], + [42131,44], + [42133,41], + [44001,44.1], + [44003,43.7], + [44005,44.6], + [44007,37.3], + [44009,44.1], + [45001,43.7], + [45003,41], + [45005,40.6], + [45007,40.5], + [45009,41.8], + [45011,40.6], + [45013,44], + [45015,35.8], + [45017,45.9], + [45019,37.2], + [45021,38.9], + [45023,41.8], + [45025,41.9], + [45027,43.6], + [45029,42.2], + [45031,41.2], + [45033,37.4], + [45035,36.2], + [45037,42.6], + [45039,45.4], + [45041,38.8], + [45043,48.5], + [45045,38], + [45047,39.3], + [45049,39.9], + [45051,44.4], + [45053,38.1], + [45055,41.8], + [45057,42], + [45059,40.8], + [45061,41.7], + [45063,38.9], + [45065,52.8], + [45067,40], + [45069,39.9], + [45071,41.5], + [45073,45], + [45075,39.5], + [45077,36.2], + [45079,33], + [45081,40.6], + [45083,38.3], + [45085,36], + [45087,43.7], + [45089,41.7], + [45091,38.3], + [46003,39.9], + [46005,37.9], + [46007,28.8], + [46009,43.5], + [46011,26.7], + [46013,37.3], + [46015,40.5], + [46017,25.3], + [46019,40.1], + [46021,51.7], + [46023,36], + [46025,41.3], + [46027,25], + [46029,38.3], + [46031,28.8], + [46033,53.8], + [46035,38.2], + [46037,48.4], + [46039,44.7], + [46041,28], + [46043,47.5], + [46045,44.4], + [46047,50.9], + [46049,48.1], + [46051,43.7], + [46053,45.8], + [46055,45.3], + [46057,35.2], + [46059,47.4], + [46061,36.2], + [46063,39.8], + [46065,38.3], + [46067,44.3], + [46069,50], + [46071,31.6], + [46073,48.6], + [46075,53], + [46077,46.8], + [46079,42], + [46081,41.4], + [46083,34.4], + [46085,36], + [46087,40.7], + [46089,50.5], + [46091,41.3], + [46093,36.1], + [46095,32.8], + [46097,42], + [46099,34.7], + [46101,40.3], + [46102,"NA"], + [46103,37.8], + [46105,47], + [46107,52.6], + [46109,38.2], + [46111,45.3], + [46115,44.1], + [46117,43.4], + [46119,44.9], + [46121,24.4], + [46123,46.5], + [46125,43.7], + [46127,41.1], + [46129,44.4], + [46135,42.1], + [46137,30.5], + [47001,43.3], + [47003,37.2], + [47005,46.5], + [47007,44.5], + [47009,43.2], + [47011,39.2], + [47013,43.5], + [47015,41.7], + [47017,43], + [47019,44.4], + [47021,40.5], + [47023,36.2], + [47025,42.7], + [47027,47.6], + [47029,44.7], + [47031,40.2], + [47033,40], + [47035,50.5], + [47037,34.3], + [47039,45.7], + [47041,40.9], + [47043,39.5], + [47045,40.5], + [47047,44.8], + [47049,44.8], + [47051,41.5], + [47053,40.3], + [47055,43.1], + [47057,44.2], + [47059,44.3], + [47061,43], + [47063,40.3], + [47065,39.5], + [47067,44.6], + [47069,40.5], + [47071,45.3], + [47073,44.2], + [47075,40], + [47077,41.2], + [47079,45.3], + [47081,40.9], + [47083,43.6], + [47085,42.1], + [47087,46.9], + [47089,43.2], + [47091,45.7], + [47093,37.3], + [47095,40.2], + [47097,38], + [47099,39.6], + [47101,44.7], + [47103,43.3], + [47105,47.1], + [47107,42.6], + [47109,42.7], + [47111,38.6], + [47113,37.9], + [47115,43.2], + [47117,39.3], + [47119,38.9], + [47121,44.4], + [47123,43], + [47125,30.5], + [47127,45.1], + [47129,41.2], + [47131,42.6], + [47133,42.6], + [47135,43.5], + [47137,49.8], + [47139,44.9], + [47141,36], + [47143,40.7], + [47145,46.5], + [47147,38.7], + [47149,33.1], + [47151,38.7], + [47153,43], + [47155,42.4], + [47157,35.3], + [47159,41.2], + [47161,43.6], + [47163,44.7], + [47165,39.6], + [47167,37.3], + [47169,37.5], + [47171,45.9], + [47173,42], + [47175,47.2], + [47177,40.1], + [47179,39.8], + [47181,41.9], + [47183,38.1], + [47185,43.4], + [47187,39], + [47189,40.2], + [48001,39.1], + [48003,31.6], + [48005,36.8], + [48007,49.6], + [48009,44.8], + [48011,45.9], + [48013,35.4], + [48015,40.9], + [48017,35.2], + [48019,52], + [48021,38.8], + [48023,48.1], + [48025,35.2], + [48027,30.6], + [48029,33.3], + [48031,49.5], + [48033,42.1], + [48035,46.5], + [48037,38.2], + [48039,35.6], + [48041,25.8], + [48043,43.1], + [48045,46.4], + [48047,31.8], + [48049,41], + [48051,42.9], + [48053,44], + [48055,35.8], + [48057,37.7], + [48059,43.3], + [48061,31.4], + [48063,36.8], + [48065,41.1], + [48067,42.9], + [48069,34.4], + [48071,35.4], + [48073,38], + [48075,32.8], + [48077,46], + [48079,33.5], + [48081,49.1], + [48083,46.6], + [48085,36.5], + [48087,39.8], + [48089,43.4], + [48091,42.2], + [48093,44.4], + [48095,41.9], + [48097,40.5], + [48099,31.2], + [48101,47.6], + [48103,32.1], + [48105,35.5], + [48107,37.7], + [48109,41.2], + [48111,32.1], + [48113,33.3], + [48115,33.1], + [48117,31.8], + [48119,43.7], + [48121,34.9], + [48123,41.2], + [48125,43.2], + [48127,33.5], + [48129,41.9], + [48131,36.8], + [48133,43], + [48135,30.3], + [48137,49.1], + [48139,36], + [48141,31.9], + [48143,30], + [48145,39.2], + [48147,41.9], + [48149,47.2], + [48151,44], + [48153,37.1], + [48155,48.6], + [48157,35.8], + [48159,42.9], + [48161,40.6], + [48163,31.3], + [48165,28.1], + [48167,37.6], + [48169,40.1], + [48171,50.2], + [48173,38.3], + [48175,46.4], + [48177,36.9], + [48179,36.7], + [48181,40.2], + [48183,35.4], + [48185,40.4], + [48187,36.7], + [48189,33], + [48191,43.2], + [48193,46.4], + [48195,34.9], + [48197,43.6], + [48199,39.3], + [48201,33.1], + [48203,37.7], + [48205,39.8], + [48207,43.4], + [48209,31.3], + [48211,35.1], + [48213,43.8], + [48215,28.9], + [48217,42.5], + [48219,33.4], + [48221,46.8], + [48223,39.6], + [48225,44.6], + [48227,36.7], + [48229,38.8], + [48231,37.9], + [48233,36.9], + [48235,45.5], + [48237,40.6], + [48239,39.2], + [48241,40.4], + [48243,55.3], + [48245,36], + [48247,35.4], + [48249,34.5], + [48251,36.9], + [48253,38.6], + [48255,35.3], + [48257,35.7], + [48259,42.4], + [48261,29.8], + [48263,46.7], + [48265,47.8], + [48267,52.6], + [48269,32.7], + [48271,41.1], + [48273,27.9], + [48275,40.6], + [48277,40.4], + [48279,35.6], + [48281,41.8], + [48283,33.9], + [48285,43.9], + [48287,41.3], + [48289,44.7], + [48291,35.8], + [48293,39.5], + [48295,35], + [48297,42.3], + [48299,57.1], + [48301,57.5], + [48303,30.7], + [48305,38.1], + [48307,43.5], + [48309,33.2], + [48311,42], + [48313,35.2], + [48315,49.8], + [48317,31.7], + [48319,48.9], + [48321,37.2], + [48323,29.6], + [48325,38.8], + [48327,49.1], + [48329,31.8], + [48331,41.5], + [48333,47.3], + [48335,34.6], + [48337,44], + [48339,36.7], + [48341,30.5], + [48343,42.9], + [48345,37.6], + [48347,30.6], + [48349,38.9], + [48351,43.5], + [48353,38.8], + [48355,35.1], + [48357,31.7], + [48359,29.9], + [48361,37.7], + [48363,41], + [48365,38.7], + [48367,39.6], + [48369,34.1], + [48371,36.2], + [48373,43.4], + [48375,33.6], + [48377,41.4], + [48379,47.6], + [48381,35.6], + [48383,33], + [48385,54.3], + [48387,45.6], + [48389,35.4], + [48391,42.3], + [48393,37.8], + [48395,41.4], + [48397,37.2], + [48399,41.1], + [48401,38.5], + [48403,52.1], + [48405,48.9], + [48407,44.2], + [48409,35.1], + [48411,40.9], + [48413,35.2], + [48415,35.6], + [48417,42], + [48419,37.4], + [48421,39.8], + [48423,36.6], + [48425,40.6], + [48427,28.8], + [48429,39.2], + [48431,42.4], + [48433,51.9], + [48435,40.2], + [48437,35.6], + [48439,34.2], + [48441,32.2], + [48443,47.3], + [48445,34.6], + [48447,48.2], + [48449,34], + [48451,34], + [48453,33.6], + [48455,48.5], + [48457,43], + [48459,40.7], + [48461,33.7], + [48463,33.8], + [48465,31.7], + [48467,43.3], + [48469,35.7], + [48471,35.2], + [48473,28.8], + [48475,33.6], + [48477,42], + [48479,28.4], + [48481,37.3], + [48483,39.4], + [48485,34.2], + [48487,37.2], + [48489,33.4], + [48491,35.8], + [48493,40.4], + [48495,32.6], + [48497,38.5], + [48499,48.1], + [48501,31.7], + [48503,41.5], + [48505,29.4], + [48507,30.8], + [49001,33.3], + [49003,32.3], + [49005,25], + [49007,36.4], + [49009,47.3], + [49011,30.6], + [49013,30.3], + [49015,35], + [49017,41.2], + [49019,39.8], + [49021,29.1], + [49023,30.7], + [49025,42.2], + [49027,35.5], + [49029,32.4], + [49031,40.6], + [49033,34.3], + [49035,32.4], + [49037,31.6], + [49039,31.7], + [49041,34.9], + [49043,38.8], + [49045,31.1], + [49047,30.1], + [49049,24.5], + [49051,33.3], + [49053,35.9], + [49055,40.4], + [49057,32.3], + [50001,43.4], + [50003,46.6], + [50005,43.7], + [50007,36.6], + [50009,50], + [50011,39.9], + [50013,48.1], + [50015,40.5], + [50017,45.7], + [50019,45.4], + [50021,46.4], + [50023,43.5], + [50025,46.8], + [50027,47.4], + [51001,46], + [51003,38.6], + [51005,46.9], + [51007,46.5], + [51009,43.9], + [51011,43.5], + [51013,34.4], + [51015,44.6], + [51017,47.3], + [51019,45.9], + [51021,45.3], + [51023,47.2], + [51025,43.4], + [51027,46.3], + [51029,42.7], + [51031,42.8], + [51033,40.2], + [51035,47], + [51036,49.8], + [51037,45.2], + [51041,38.8], + [51043,46], + [51045,47.5], + [51047,38.8], + [51049,44.5], + [51051,43.9], + [51053,42.9], + [51057,44.8], + [51059,37.9], + [51061,41.6], + [51063,46], + [51065,42.6], + [51067,46], + [51069,40.5], + [51071,44.4], + [51073,44.6], + [51075,48.4], + [51077,47.4], + [51079,39.6], + [51081,41.1], + [51083,45.9], + [51085,42.6], + [51087,38.3], + [51089,46.8], + [51091,60.5], + [51093,44.4], + [51095,45.9], + [51097,45.1], + [51099,37.1], + [51101,41.3], + [51103,56.3], + [51105,43.8], + [51107,35.8], + [51109,44.5], + [51111,45.4], + [51113,45.2], + [51115,52.6], + [51117,47.9], + [51119,53.5], + [51121,28.2], + [51125,49.7], + [51127,44], + [51131,48.4], + [51133,56.5], + [51135,41.3], + [51137,41.9], + [51139,45], + [51141,49.2], + [51143,46.4], + [51145,44.6], + [51147,30.8], + [51149,37.1], + [51153,34.7], + [51155,46.2], + [51157,49.5], + [51159,44], + [51161,43.7], + [51163,48.6], + [51165,41.8], + [51167,44.8], + [51169,46.3], + [51171,44.2], + [51173,44.6], + [51175,45.8], + [51177,37.7], + [51179,35.2], + [51181,49.3], + [51183,40.4], + [51185,44.3], + [51187,40.6], + [51191,45.5], + [51193,47.6], + [51195,40.3], + [51197,44.4], + [51199,39.6], + [51510,36.4], + [51520,42.3], + [51530,36.4], + [51540,30.9], + [51550,36.6], + [51570,40.1], + [51580,44.2], + [51590,40.6], + [51595,35.9], + [51600,39], + [51610,39.7], + [51620,38.7], + [51630,29.9], + [51640,46.6], + [51650,35.8], + [51660,24.8], + [51670,36.5], + [51678,21.6], + [51680,28.3], + [51683,33.5], + [51685,34.1], + [51690,41.5], + [51700,33.2], + [51710,30.4], + [51720,37.2], + [51730,38.3], + [51735,42.2], + [51740,35.2], + [51750,22.7], + [51760,33.5], + [51770,38.4], + [51775,41.1], + [51790,42], + [51800,38.1], + [51810,35.6], + [51820,40], + [51830,24.5], + [51840,37.6], + [53001,28.4], + [53003,44.7], + [53005,35.6], + [53007,39.9], + [53009,50.5], + [53011,38], + [53013,50], + [53015,41.4], + [53017,37.3], + [53019,49], + [53021,29.9], + [53023,46.7], + [53025,32.6], + [53027,43.5], + [53029,44.1], + [53031,57.1], + [53033,37.2], + [53035,39.1], + [53037,33.3], + [53039,45.9], + [53041,42.8], + [53043,48.6], + [53045,45.9], + [53047,43.1], + [53049,52.7], + [53051,50.2], + [53053,36], + [53055,55.7], + [53057,41.4], + [53059,46], + [53061,37.8], + [53063,37.4], + [53065,46.4], + [53067,38.9], + [53069,53.3], + [53071,37.3], + [53073,36.9], + [53075,24.5], + [53077,32.7], + [54001,40.9], + [54003,38.8], + [54005,42.5], + [54007,44.9], + [54009,46.2], + [54011,38.3], + [54013,47.9], + [54015,43.6], + [54017,44.5], + [54019,43.3], + [54021,38], + [54023,46.3], + [54025,45.4], + [54027,45.4], + [54029,46.1], + [54031,44.9], + [54033,42], + [54035,43], + [54037,40.2], + [54039,43.1], + [54041,42.8], + [54043,42.7], + [54045,43], + [54047,44], + [54049,41.3], + [54051,44.9], + [54053,44], + [54055,42.7], + [54057,43.5], + [54059,42.1], + [54061,30.9], + [54063,47.7], + [54065,47], + [54067,44.9], + [54069,43.5], + [54071,49.9], + [54073,43.4], + [54075,48.6], + [54077,42.6], + [54079,41.6], + [54081,42], + [54083,43.1], + [54085,45.8], + [54087,44.8], + [54089,47.3], + [54091,43.2], + [54093,48.1], + [54095,46.5], + [54097,41.8], + [54099,43.3], + [54101,46.2], + [54103,45.9], + [54105,43.4], + [54107,43], + [54109,43.8], + [55001,52.6], + [55003,41.7], + [55005,44.2], + [55007,51.6], + [55009,37], + [55011,45.7], + [55013,52.1], + [55015,39.8], + [55017,41.2], + [55019,37.5], + [55021,42.4], + [55023,45.7], + [55025,34.8], + [55027,42.4], + [55029,52.3], + [55031,41.3], + [55033,34.2], + [55035,34.3], + [55037,51.9], + [55039,41.2], + [55041,46.2], + [55043,35.6], + [55045,42.8], + [55047,45.5], + [55049,42.5], + [55051,53.8], + [55053,42.1], + [55055,40.1], + [55057,45.2], + [55059,37.9], + [55061,43.9], + [55063,35.5], + [55065,41.6], + [55067,47.6], + [55069,46.9], + [55071,44.5], + [55073,40.7], + [55075,47.7], + [55077,49.4], + [55078,31.4], + [55079,34.6], + [55081,39.5], + [55083,46.3], + [55085,50.6], + [55087,37.9], + [55089,43.9], + [55091,45.8], + [55093,36.6], + [55095,44.8], + [55097,36.6], + [55099,51.3], + [55101,40.1], + [55103,44.8], + [55105,39.3], + [55107,48.6], + [55109,38.3], + [55111,41.3], + [55113,49.7], + [55115,44.9], + [55117,41.3], + [55119,43.4], + [55121,40.5], + [55123,42.3], + [55125,53.4], + [55127,39.4], + [55129,50.4], + [55131,42.6], + [55133,43.1], + [55135,44.9], + [55137,48.8], + [55139,38], + [55141,43.8], + [56001,27.1], + [56003,41.2], + [56005,33.2], + [56007,38.2], + [56009,40], + [56011,42.2], + [56013,38.3], + [56015,43.7], + [56017,49.7], + [56019,45], + [56021,36.8], + [56023,39.1], + [56025,36.3], + [56027,40.4], + [56029,44.2], + [56031,46.7], + [56033,42.1], + [56035,37.5], + [56037,34], + [56039,39], + [56041,35.1], + [56043,43.4], + [56045,42.2] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-median-2019.json b/data/regional/united-states/demographics/age/us-age-median-2019.json new file mode 100644 index 0000000..be5018a --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-median-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Age", + "description" : "Median age of the population.", + "units" : "years", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.median_age_2019"], + [1001,38.2], + [1003,43], + [1005,40.4], + [1007,40.9], + [1009,40.7], + [1011,40.2], + [1013,40.8], + [1015,39.6], + [1017,42], + [1019,46.5], + [1021,38.7], + [1023,46.3], + [1025,42.5], + [1027,43.3], + [1029,43.1], + [1031,39.3], + [1033,42.4], + [1035,44.8], + [1037,48.4], + [1039,43.3], + [1041,41.7], + [1043,40.8], + [1045,37.3], + [1047,39.6], + [1049,39.5], + [1051,38.7], + [1053,40], + [1055,41.4], + [1057,43.7], + [1059,38.6], + [1061,43.2], + [1063,40.9], + [1065,40.5], + [1067,44.4], + [1069,40.1], + [1071,43.1], + [1073,37.7], + [1075,44.8], + [1077,41], + [1079,42.4], + [1081,31.9], + [1083,39.7], + [1085,42], + [1087,38.6], + [1089,38.5], + [1091,42.2], + [1093,44.3], + [1095,38.8], + [1097,37.9], + [1099,43.3], + [1101,36.4], + [1103,40.6], + [1105,36.9], + [1107,42.2], + [1109,31.2], + [1111,43.4], + [1113,36.3], + [1115,40.3], + [1117,39.3], + [1119,35.6], + [1121,41.3], + [1123,44.7], + [1125,33], + [1127,42.1], + [1129,43.7], + [1131,40.5], + [1133,45.2], + [2013,42.5], + [2016,38.6], + [2020,33.6], + [2050,27.3], + [2060,42.9], + [2068,42.1], + [2070,30.2], + [2090,31.3], + [2100,44.7], + [2105,49.6], + [2110,38.1], + [2122,40.8], + [2130,39.7], + [2150,33.9], + [2158,24.1], + [2164,34.8], + [2170,35.2], + [2180,28.3], + [2185,35.2], + [2188,27.8], + [2195,42.8], + [2198,41.3], + [2220,39.5], + [2230,40.4], + [2240,36.8], + [2261,38.1], + [2275,49.4], + [2282,36.9], + [2290,35.2], + [4001,35], + [4003,41.1], + [4005,30.7], + [4007,50.2], + [4009,33.6], + [4011,34.5], + [4012,56.5], + [4013,36.4], + [4015,51.6], + [4017,37.3], + [4019,38.5], + [4021,39.3], + [4023,36.7], + [4025,53.4], + [4027,34.6], + [5001,40.7], + [5003,41.7], + [5005,52.2], + [5007,35.4], + [5009,42.3], + [5011,40.6], + [5013,44.5], + [5015,45], + [5017,43.3], + [5019,33.7], + [5021,42.8], + [5023,49.4], + [5025,42.9], + [5027,35.7], + [5029,42.5], + [5031,34.2], + [5033,38.6], + [5035,35.2], + [5037,40.9], + [5039,43.9], + [5041,40.1], + [5043,37.4], + [5045,32.8], + [5047,41.2], + [5049,48.4], + [5051,45], + [5053,41], + [5055,38], + [5057,40.4], + [5059,41.3], + [5061,39.2], + [5063,39.3], + [5065,47.9], + [5067,39.7], + [5069,38.7], + [5071,38.4], + [5073,47], + [5075,40.8], + [5077,42.5], + [5079,39], + [5081,42.9], + [5083,42], + [5085,36.2], + [5087,42.7], + [5089,52.2], + [5091,39.5], + [5093,36.6], + [5095,47.3], + [5097,50.4], + [5099,44.3], + [5101,49], + [5103,43], + [5105,43.7], + [5107,38.9], + [5109,43.1], + [5111,40.1], + [5113,43.9], + [5115,35.3], + [5117,47.2], + [5119,37.2], + [5121,41.1], + [5123,38.8], + [5125,39.6], + [5127,40.7], + [5129,47.9], + [5131,37.6], + [5133,35.3], + [5135,47.6], + [5137,50.1], + [5139,40.3], + [5141,48], + [5143,32], + [5145,36.9], + [5147,45.5], + [5149,40.3], + [6001,37.6], + [6003,52.2], + [6005,50.5], + [6007,37.1], + [6009,52], + [6011,35.3], + [6013,39.7], + [6015,39.5], + [6017,45.9], + [6019,32.2], + [6021,36.4], + [6023,38.4], + [6025,32.4], + [6027,45.8], + [6029,31.6], + [6031,31.8], + [6033,45.6], + [6035,36.6], + [6037,36.5], + [6039,34.1], + [6041,46.8], + [6043,51.7], + [6045,43.1], + [6047,31.1], + [6049,47.8], + [6051,37.7], + [6053,34.4], + [6055,41.3], + [6057,50.5], + [6059,38.1], + [6061,42], + [6063,52.3], + [6065,35.6], + [6067,36.2], + [6069,35.7], + [6071,33.3], + [6073,35.8], + [6075,38.2], + [6077,34.3], + [6079,39.2], + [6081,39.7], + [6083,33.8], + [6085,37.1], + [6087,37.8], + [6089,41.5], + [6091,54.8], + [6093,47.8], + [6095,38.1], + [6097,42.1], + [6099,34.1], + [6101,35.7], + [6103,41], + [6105,52.5], + [6107,31], + [6109,48.4], + [6111,38.1], + [6113,31], + [6115,32.8], + [8001,33.8], + [8003,31.8], + [8005,36.6], + [8007,50.9], + [8009,46], + [8011,40.2], + [8013,36.6], + [8014,37.8], + [8015,49.2], + [8017,39.4], + [8019,48.1], + [8021,38.8], + [8023,51.9], + [8025,35.4], + [8027,59.7], + [8029,47.3], + [8031,34.5], + [8033,48.8], + [8035,38.7], + [8037,37], + [8039,46.1], + [8041,34.2], + [8043,45.1], + [8045,36.5], + [8047,49], + [8049,42.9], + [8051,34.5], + [8053,56.1], + [8055,55], + [8057,51.6], + [8059,40.3], + [8061,42.5], + [8063,38.3], + [8065,36.7], + [8067,40.4], + [8069,36], + [8071,45.9], + [8073,38], + [8075,38.2], + [8077,39.7], + [8079,56.1], + [8081,36.6], + [8083,45.2], + [8085,45.2], + [8087,36.2], + [8089,39.9], + [8091,54.1], + [8093,50.7], + [8095,37.1], + [8097,41.8], + [8099,38.3], + [8101,39.3], + [8103,36.9], + [8105,42.1], + [8107,40.2], + [8109,49], + [8111,51.2], + [8113,41.8], + [8115,44.1], + [8117,39.1], + [8119,50], + [8121,41.6], + [8123,34.4], + [8125,37.8], + [9001,40.6], + [9003,40.4], + [9005,47.3], + [9007,45.7], + [9009,40.3], + [9011,41.4], + [9013,37.7], + [9015,41.2], + [10001,37.7], + [10003,38.4], + [10005,49.6], + [11001,34], + [12001,31.6], + [12003,37.7], + [12005,39.8], + [12007,39.7], + [12009,47.3], + [12011,40.4], + [12013,41.6], + [12015,59.1], + [12017,56.5], + [12019,39.7], + [12021,50.8], + [12023,40.4], + [12027,40.9], + [12029,46.5], + [12031,36.2], + [12033,37.2], + [12035,51.3], + [12037,46.4], + [12039,40.8], + [12041,42.1], + [12043,47.9], + [12045,44.9], + [12047,40.9], + [12049,35.4], + [12051,34], + [12053,49], + [12055,53.5], + [12057,37.2], + [12059,42.7], + [12061,53.5], + [12063,41.7], + [12065,48], + [12067,37.3], + [12069,46.9], + [12071,48.5], + [12073,31], + [12075,46.9], + [12077,40.7], + [12079,43.5], + [12081,48.3], + [12083,48.7], + [12085,52.2], + [12086,39.9], + [12087,47.7], + [12089,45.3], + [12091,36.9], + [12093,41.1], + [12095,35.1], + [12097,35.9], + [12099,44.8], + [12101,44.5], + [12103,48.1], + [12105,40.2], + [12107,45.1], + [12109,43.7], + [12111,45.1], + [12113,39.9], + [12115,56.1], + [12117,39.2], + [12119,67.4], + [12121,43.3], + [12123,42], + [12125,39.3], + [12127,46.6], + [12129,40.6], + [12131,44], + [12133,41.5], + [13001,40.3], + [13003,36.4], + [13005,36.7], + [13007,46.1], + [13009,35.5], + [13011,41.1], + [13013,35.7], + [13015,38.1], + [13017,39.9], + [13019,39.6], + [13021,36.4], + [13023,35.8], + [13025,41.1], + [13027,42], + [13029,34.6], + [13031,28.8], + [13033,37.4], + [13035,38.6], + [13037,39.6], + [13039,32.8], + [13043,38.7], + [13045,34.8], + [13047,40.4], + [13049,41.2], + [13051,35.6], + [13053,24.5], + [13055,39.4], + [13057,38.7], + [13059,28], + [13061,49.8], + [13063,32.5], + [13065,39.9], + [13067,36.7], + [13069,36.3], + [13071,36.8], + [13073,36.9], + [13075,37.3], + [13077,39], + [13079,44.4], + [13081,38.5], + [13083,42.6], + [13085,43.6], + [13087,37.8], + [13089,35.8], + [13091,41.8], + [13093,43.2], + [13095,35.6], + [13097,36.5], + [13099,39.9], + [13101,40.6], + [13103,36], + [13105,42.6], + [13107,36.9], + [13109,37.6], + [13111,52.1], + [13113,43.4], + [13115,38.3], + [13117,38.5], + [13119,41.2], + [13121,35.5], + [13123,47.2], + [13125,42.7], + [13127,41.6], + [13129,38.4], + [13131,40.3], + [13133,50.2], + [13135,35.3], + [13137,39.7], + [13139,36.7], + [13141,45.6], + [13143,40.4], + [13145,42.9], + [13147,44.1], + [13149,41.9], + [13151,36.9], + [13153,35.4], + [13155,39.7], + [13157,38.1], + [13159,43], + [13161,36.6], + [13163,40], + [13165,44.3], + [13167,41.8], + [13169,40.4], + [13171,37.8], + [13173,35.6], + [13175,38.9], + [13177,37.2], + [13179,28.4], + [13181,47.1], + [13183,32.9], + [13185,30.5], + [13187,37], + [13189,37.7], + [13191,49.4], + [13193,40.3], + [13195,41.1], + [13197,44.6], + [13199,42.3], + [13201,43.5], + [13205,39], + [13207,42.9], + [13209,40], + [13211,44.6], + [13213,38.2], + [13215,34], + [13217,36.4], + [13219,40.4], + [13221,42.4], + [13223,36], + [13225,37.9], + [13227,45.4], + [13229,39.4], + [13231,40.4], + [13233,37], + [13235,43.1], + [13237,46.2], + [13239,47.3], + [13241,49.2], + [13243,41], + [13245,34.1], + [13247,38.1], + [13249,37.8], + [13251,41.4], + [13253,44.9], + [13255,39.2], + [13257,41.8], + [13259,35.4], + [13261,35.7], + [13263,50.1], + [13265,44.2], + [13267,37.3], + [13269,45.2], + [13271,41.5], + [13273,41.1], + [13275,40.4], + [13277,36.2], + [13279,36.4], + [13281,54], + [13283,40.1], + [13285,36.4], + [13287,40.3], + [13289,45.7], + [13291,54.3], + [13293,42.1], + [13295,41.4], + [13297,38.7], + [13299,39.5], + [13301,45.1], + [13303,41.5], + [13305,38.9], + [13307,45.1], + [13309,38.8], + [13311,46.1], + [13313,36], + [13315,39.8], + [13317,45.1], + [13319,42.6], + [13321,41.6], + [15001,42.7], + [15003,37.9], + [15005,57.4], + [15007,42.6], + [15009,41.2], + [16001,37], + [16003,55.2], + [16005,33.8], + [16007,39.6], + [16009,46.2], + [16011,33.6], + [16013,43.2], + [16015,54], + [16017,47.9], + [16019,32.9], + [16021,43.5], + [16023,45.2], + [16025,44.5], + [16027,33.6], + [16029,36.9], + [16031,32.9], + [16033,33.2], + [16035,50.4], + [16037,53], + [16039,32.3], + [16041,32.8], + [16043,37.6], + [16045,44.6], + [16047,38.7], + [16049,50.2], + [16051,31.5], + [16053,32.7], + [16055,40.2], + [16057,28.7], + [16059,52.1], + [16061,48.6], + [16063,35.1], + [16065,23.5], + [16067,35.2], + [16069,40.8], + [16071,38.6], + [16073,38.9], + [16075,40.4], + [16077,38.3], + [16079,47.3], + [16081,37.2], + [16083,34.7], + [16085,50.6], + [16087,45.4], + [17001,41.5], + [17003,45.3], + [17005,41.6], + [17007,38.5], + [17009,38.9], + [17011,44.4], + [17013,46.8], + [17015,48.3], + [17017,40], + [17019,30.1], + [17021,43.4], + [17023,42.3], + [17025,42.6], + [17027,40.6], + [17029,35.7], + [17031,36.8], + [17033,41.8], + [17035,42.5], + [17037,31.1], + [17039,43.6], + [17041,37.8], + [17043,39.3], + [17045,45.2], + [17047,43.5], + [17049,39.4], + [17051,41.9], + [17053,43.4], + [17055,42.8], + [17057,43.2], + [17059,45.6], + [17061,42.5], + [17063,37.9], + [17065,43.6], + [17067,46], + [17069,46.8], + [17071,50], + [17073,43.1], + [17075,44.4], + [17077,31.9], + [17079,43.1], + [17081,40.9], + [17083,42.9], + [17085,49.9], + [17087,43.7], + [17089,37.3], + [17091,37.7], + [17093,35.2], + [17095,42.1], + [17097,38.4], + [17099,41.9], + [17101,42.4], + [17103,43.2], + [17105,42], + [17107,40.1], + [17109,33], + [17111,40.2], + [17113,33.1], + [17115,41.1], + [17117,43.7], + [17119,40.2], + [17121,42.2], + [17123,46], + [17125,45.2], + [17127,43.5], + [17129,43.2], + [17131,44.9], + [17133,42], + [17135,43.3], + [17137,40.8], + [17139,40.7], + [17141,42.4], + [17143,37.5], + [17145,42.2], + [17147,42.9], + [17149,42], + [17151,52.5], + [17153,44], + [17155,48.1], + [17157,41.6], + [17159,42], + [17161,40.1], + [17163,38.6], + [17165,42.2], + [17167,40.3], + [17169,46.3], + [17171,44.6], + [17173,45.1], + [17175,45.1], + [17177,45.3], + [17179,41], + [17181,43.7], + [17183,40.4], + [17185,43.8], + [17187,39.8], + [17189,43.9], + [17191,43.4], + [17193,44.3], + [17195,43.4], + [17197,37.9], + [17199,41.2], + [17201,39.7], + [17203,40.5], + [18001,33.5], + [18003,35.9], + [18005,37.8], + [18007,40.5], + [18009,44], + [18011,38.1], + [18013,50], + [18015,42.9], + [18017,40.8], + [18019,39.1], + [18021,41.5], + [18023,37.8], + [18025,43], + [18027,34.4], + [18029,42.5], + [18031,39.2], + [18033,39.1], + [18035,35.6], + [18037,40.3], + [18039,35.6], + [18041,42.8], + [18043,39.8], + [18045,43.4], + [18047,42.2], + [18049,41.3], + [18051,40.3], + [18053,40.3], + [18055,43.1], + [18057,37.1], + [18059,39.8], + [18061,42.3], + [18063,37.7], + [18065,42.1], + [18067,41.7], + [18069,40.7], + [18071,38.5], + [18073,40.3], + [18075,39.7], + [18077,40.8], + [18079,39.8], + [18081,37.5], + [18083,37.9], + [18085,38.5], + [18087,31.1], + [18089,39.1], + [18091,40.3], + [18093,43.1], + [18095,40.4], + [18097,34.3], + [18099,40], + [18101,42.7], + [18103,40.1], + [18105,29.6], + [18107,40.2], + [18109,41.5], + [18111,43.1], + [18113,38.7], + [18115,47.4], + [18117,42.4], + [18119,45.2], + [18121,43.2], + [18123,42], + [18125,43.7], + [18127,39.5], + [18129,42.6], + [18131,41.6], + [18133,37.9], + [18135,42.6], + [18137,40.7], + [18139,41.7], + [18141,36.6], + [18143,41.5], + [18145,40.8], + [18147,44], + [18149,41.5], + [18151,43.7], + [18153,41], + [18155,40.5], + [18157,28.2], + [18159,45.1], + [18161,43.5], + [18163,38.3], + [18165,42.9], + [18167,36.2], + [18169,42.3], + [18171,44.4], + [18173,41.2], + [18175,41.6], + [18177,40.6], + [18179,40.3], + [18181,42], + [18183,41.8], + [19001,45.4], + [19003,47.3], + [19005,44.4], + [19007,45.7], + [19009,48.1], + [19011,42.6], + [19013,35.2], + [19015,41.8], + [19017,39.8], + [19019,39.1], + [19021,35], + [19023,43.9], + [19025,44.6], + [19027,42], + [19029,44.9], + [19031,42.7], + [19033,44.3], + [19035,46.3], + [19037,44.5], + [19039,40.5], + [19041,42.9], + [19043,47.3], + [19045,42.2], + [19047,38.7], + [19049,35.4], + [19051,36.8], + [19053,36.4], + [19055,43.8], + [19057,42.9], + [19059,48.4], + [19061,38.6], + [19063,42.9], + [19065,43.8], + [19067,44.1], + [19069,42.7], + [19071,46.2], + [19073,44.5], + [19075,42.6], + [19077,45.5], + [19079,42.6], + [19081,44.2], + [19083,44.7], + [19085,44], + [19087,39.7], + [19089,41.5], + [19091,42.9], + [19093,43.7], + [19095,41.7], + [19097,44.3], + [19099,42.1], + [19101,42.9], + [19103,30.3], + [19105,43.1], + [19107,43.7], + [19109,45.5], + [19111,43.1], + [19113,37.7], + [19115,41.9], + [19117,44.2], + [19119,38], + [19121,40.7], + [19123,39.3], + [19125,39.4], + [19127,38.7], + [19129,42.5], + [19131,43.6], + [19133,46], + [19135,43], + [19137,44.2], + [19139,38.1], + [19141,41.9], + [19143,44], + [19145,44.1], + [19147,41.4], + [19149,40], + [19151,47.6], + [19153,35.5], + [19155,39.7], + [19157,40.5], + [19159,44], + [19161,46.1], + [19163,38.3], + [19165,46.4], + [19167,33.4], + [19169,26.6], + [19171,42.6], + [19173,42.3], + [19175,40.3], + [19177,45.4], + [19179,39.6], + [19181,38.3], + [19183,40.3], + [19185,43.2], + [19187,39], + [19189,41.8], + [19191,41.5], + [19193,35.8], + [19195,43.9], + [19197,43.5], + [20001,41.9], + [20003,40.8], + [20005,36.6], + [20007,43.6], + [20009,39.9], + [20011,39.1], + [20013,42.1], + [20015,38.6], + [20017,44.8], + [20019,47.9], + [20021,41.3], + [20023,45.6], + [20025,45.3], + [20027,42.5], + [20029,40.8], + [20031,43.8], + [20033,48.1], + [20035,38.8], + [20037,32.5], + [20039,50.6], + [20041,41.3], + [20043,41], + [20045,29.8], + [20047,45.7], + [20049,52.3], + [20051,32.5], + [20053,42.1], + [20055,30.8], + [20057,32.2], + [20059,40], + [20061,26.4], + [20063,48.2], + [20065,50.4], + [20067,32.6], + [20069,36], + [20071,42.2], + [20073,48.6], + [20075,35.8], + [20077,42.4], + [20079,39.2], + [20081,36.9], + [20083,47.6], + [20085,41.2], + [20087,43.3], + [20089,52.8], + [20091,37.6], + [20093,34.7], + [20095,45.4], + [20097,41.6], + [20099,41], + [20101,40.7], + [20103,37.8], + [20105,46.5], + [20107,44.4], + [20109,39.7], + [20111,33.4], + [20113,40.8], + [20115,44.5], + [20117,42.8], + [20119,37.9], + [20121,42.1], + [20123,43.1], + [20125,40.3], + [20127,46.6], + [20129,40.5], + [20131,39.9], + [20133,40.2], + [20135,50], + [20137,42.7], + [20139,43.8], + [20141,46.7], + [20143,43], + [20145,43], + [20147,44.3], + [20149,35.4], + [20151,38.5], + [20153,48.8], + [20155,40.3], + [20157,50.7], + [20159,38.9], + [20161,25.1], + [20163,44.7], + [20165,46.6], + [20167,49.1], + [20169,38.6], + [20171,39.7], + [20173,35.4], + [20175,29.4], + [20177,39.1], + [20179,44.9], + [20181,39.3], + [20183,51.4], + [20185,44.1], + [20187,35.3], + [20189,35.1], + [20191,41.2], + [20193,36], + [20195,49.4], + [20197,43.8], + [20199,41.8], + [20201,45.4], + [20203,42.3], + [20205,43.7], + [20207,47.4], + [20209,33.7], + [21001,41.8], + [21003,40.7], + [21005,41.4], + [21007,43.6], + [21009,40.5], + [21011,40.6], + [21013,41.7], + [21015,37.5], + [21017,41.8], + [21019,42.3], + [21021,40.3], + [21023,41.4], + [21025,42.2], + [21027,43.1], + [21029,40.4], + [21031,41.3], + [21033,44], + [21035,35.6], + [21037,38.2], + [21039,42.8], + [21041,38.5], + [21043,41.6], + [21045,42.6], + [21047,28.3], + [21049,42.3], + [21051,39.6], + [21053,41.9], + [21055,43.6], + [21057,46], + [21059,38.9], + [21061,44.3], + [21063,41.4], + [21065,43.5], + [21067,34.6], + [21069,41.4], + [21071,42.2], + [21073,40.9], + [21075,43.5], + [21077,38.8], + [21079,43], + [21081,36.3], + [21083,39.7], + [21085,40.3], + [21087,44.6], + [21089,43.4], + [21091,39.9], + [21093,37], + [21095,41.3], + [21097,42.2], + [21099,40.5], + [21101,41.2], + [21103,41.4], + [21105,48], + [21107,41.8], + [21109,42.2], + [21111,38.3], + [21113,37.8], + [21115,41.8], + [21117,37.1], + [21119,43.2], + [21121,40], + [21123,40.9], + [21125,40], + [21127,41.2], + [21129,43.6], + [21131,42.3], + [21133,42.4], + [21135,42.8], + [21137,41.3], + [21139,46], + [21141,40.7], + [21143,50.6], + [21145,42.2], + [21147,39.4], + [21149,42.4], + [21151,34.1], + [21153,42.3], + [21155,39.3], + [21157,44.9], + [21159,39.5], + [21161,40.6], + [21163,38.6], + [21165,44.6], + [21167,43.2], + [21169,43.9], + [21171,41.4], + [21173,39.7], + [21175,42], + [21177,42.4], + [21179,39.8], + [21181,41.1], + [21183,40.3], + [21185,38.9], + [21187,42.8], + [21189,43.4], + [21191,40.6], + [21193,41.2], + [21195,42.5], + [21197,38.6], + [21199,42], + [21201,42.9], + [21203,42.7], + [21205,30.6], + [21207,43.3], + [21209,36.2], + [21211,39.4], + [21213,39], + [21215,42.1], + [21217,37.6], + [21219,37.8], + [21221,46.2], + [21223,43.4], + [21225,38.1], + [21227,32.8], + [21229,40.7], + [21231,42.5], + [21233,41], + [21235,36.6], + [21237,41.8], + [21239,42.5], + [22001,36.7], + [22003,38.2], + [22005,35.7], + [22007,40.9], + [22009,38.2], + [22011,37.4], + [22013,41.9], + [22015,35.3], + [22017,37.7], + [22019,36.1], + [22021,39.8], + [22023,44.1], + [22025,38.1], + [22027,42], + [22029,37.7], + [22031,39.3], + [22033,34], + [22035,33.9], + [22037,42.9], + [22039,35.7], + [22041,38.4], + [22043,38.1], + [22045,36.5], + [22047,38.4], + [22049,40.9], + [22051,39.4], + [22053,37.8], + [22055,35.2], + [22057,37.8], + [22059,38.8], + [22061,28.3], + [22063,36.6], + [22065,35.2], + [22067,39.9], + [22069,33.7], + [22071,36.8], + [22073,35.7], + [22075,36.5], + [22077,43.1], + [22079,37.4], + [22081,39.4], + [22083,38.8], + [22085,41.1], + [22087,34.2], + [22089,37.9], + [22091,39.4], + [22093,39.2], + [22095,36.8], + [22097,36.7], + [22099,37.7], + [22101,39], + [22103,40.2], + [22105,35.3], + [22107,43.4], + [22109,35.8], + [22111,42.1], + [22113,38], + [22115,30.4], + [22117,39.4], + [22119,41.4], + [22121,36.3], + [22123,40.3], + [22125,41.4], + [22127,41.1], + [23001,41], + [23003,48], + [23005,42.2], + [23007,46.3], + [23009,48.8], + [23011,44.4], + [23013,48.4], + [23015,51], + [23017,47], + [23019,42], + [23021,51.5], + [23023,46.9], + [23025,46.4], + [23027,46.2], + [23029,48.1], + [23031,45.2], + [24001,41.7], + [24003,38.3], + [24005,39.4], + [24009,40.7], + [24011,39.7], + [24013,42.4], + [24015,40.8], + [24017,38.4], + [24019,44.6], + [24021,39.1], + [24023,46.2], + [24025,40.9], + [24027,38.8], + [24029,48.1], + [24031,39.2], + [24033,37.1], + [24035,44.4], + [24037,36.7], + [24039,36.2], + [24041,50.5], + [24043,40.5], + [24045,36.1], + [24047,50.4], + [24510,35.4], + [25001,53.3], + [25003,47.1], + [25005,41], + [25007,47.1], + [25009,40.9], + [25011,46.7], + [25013,39], + [25015,36.5], + [25017,38.5], + [25019,40.3], + [25021,40.9], + [25023,42.7], + [25025,32.8], + [25027,40.2], + [26001,58.2], + [26003,49.5], + [26005,39.8], + [26007,48.1], + [26009,51.3], + [26011,50], + [26013,45.5], + [26015,42.5], + [26017,43.4], + [26019,50.2], + [26021,42.1], + [26023,41.2], + [26025,39.8], + [26027,45.2], + [26029,48.6], + [26031,51.1], + [26033,40.5], + [26035,47.2], + [26037,40.6], + [26039,50.8], + [26041,47.4], + [26043,46.7], + [26045,40.9], + [26047,45.5], + [26049,40.5], + [26051,50.1], + [26053,49.3], + [26055,42.8], + [26057,39.5], + [26059,42.3], + [26061,33], + [26063,49.2], + [26065,32], + [26067,38.7], + [26069,52.9], + [26071,54.3], + [26073,28.1], + [26075,41.2], + [26077,34.4], + [26079,44.4], + [26081,35.3], + [26083,57.5], + [26085,53.2], + [26087,44.1], + [26089,54.1], + [26091,41.9], + [26093,43.5], + [26095,44.7], + [26097,52.8], + [26099,40.9], + [26101,49.3], + [26103,39.1], + [26105,46.2], + [26107,36.9], + [26109,48.8], + [26111,41.8], + [26113,43.5], + [26115,42.6], + [26117,40.7], + [26119,56.1], + [26121,39.3], + [26123,42.4], + [26125,40.9], + [26127,43.2], + [26129,50.4], + [26131,58.6], + [26133,43.8], + [26135,51.8], + [26137,44.9], + [26139,35.2], + [26141,55], + [26143,56.2], + [26145,40.9], + [26147,43.8], + [26149,39.6], + [26151,45.2], + [26153,52.1], + [26155,42.4], + [26157,44.6], + [26159,41.6], + [26161,33.6], + [26163,37.9], + [26165,41.6], + [27001,55.5], + [27003,38.5], + [27005,41.9], + [27007,34], + [27009,36], + [27011,49], + [27013,31], + [27015,42.3], + [27017,41], + [27019,37.9], + [27021,48.9], + [27023,41.6], + [27025,41.3], + [27027,32.6], + [27029,42.3], + [27031,52.6], + [27033,42.9], + [27035,44.5], + [27037,37.9], + [27039,38.4], + [27041,44.2], + [27043,45.8], + [27045,42.3], + [27047,44], + [27049,42.2], + [27051,44.9], + [27053,36.5], + [27055,45.3], + [27057,48.7], + [27059,40], + [27061,46.3], + [27063,44.8], + [27065,45], + [27067,39.3], + [27069,48.1], + [27071,49.5], + [27073,50.4], + [27075,50.8], + [27077,50.9], + [27079,41], + [27081,45.4], + [27083,35.8], + [27085,40.7], + [27087,35.7], + [27089,43.7], + [27091,45.3], + [27093,42.2], + [27095,40.5], + [27097,41.7], + [27099,38.8], + [27101,48.1], + [27103,36.3], + [27105,35.7], + [27107,43.8], + [27109,37.2], + [27111,46.8], + [27113,39.6], + [27115,45], + [27117,42.1], + [27119,38.7], + [27121,45.8], + [27123,35], + [27125,42.7], + [27127,42.6], + [27129,43.8], + [27131,36.5], + [27133,40.8], + [27135,41.6], + [27137,41.1], + [27139,36.5], + [27141,36], + [27143,41.7], + [27145,34.4], + [27147,39], + [27149,33.1], + [27151,43.9], + [27153,43.9], + [27155,47.5], + [27157,45.2], + [27159,41.5], + [27161,40.5], + [27163,39.5], + [27165,39.9], + [27167,43.3], + [27169,35.2], + [27171,37], + [27173,42.4], + [28001,41.4], + [28003,39.7], + [28005,47.1], + [28007,39.8], + [28009,41.5], + [28011,35.6], + [28013,41.4], + [28015,47.6], + [28017,37.8], + [28019,44], + [28021,33.9], + [28023,42.2], + [28025,39.5], + [28027,34.8], + [28029,38.5], + [28031,37.3], + [28033,36.8], + [28035,32.5], + [28037,42.5], + [28039,36.4], + [28041,40.4], + [28043,39.2], + [28045,44.4], + [28047,36.2], + [28049,34.8], + [28051,34.7], + [28053,38.3], + [28055,42.2], + [28057,39.9], + [28059,38.8], + [28061,41], + [28063,40.5], + [28065,44], + [28067,37.5], + [28069,41.4], + [28071,30.5], + [28073,35.9], + [28075,37.8], + [28077,39.9], + [28079,36.9], + [28081,37.5], + [28083,34], + [28085,38.9], + [28087,37.1], + [28089,37.2], + [28091,40.8], + [28093,40.4], + [28095,41.1], + [28097,41.6], + [28099,37.3], + [28101,37], + [28103,37], + [28105,26.1], + [28107,38.3], + [28109,40.9], + [28111,41.9], + [28113,37.2], + [28115,36.6], + [28117,39.2], + [28119,38.7], + [28121,37.8], + [28123,36.4], + [28125,41.2], + [28127,39.5], + [28129,41.5], + [28131,38.7], + [28133,35.6], + [28135,36.8], + [28137,38.2], + [28139,38.8], + [28141,42.5], + [28143,33.6], + [28145,37.9], + [28147,39.8], + [28149,39.1], + [28151,37.2], + [28153,40.2], + [28155,40.5], + [28157,37.8], + [28159,42.3], + [28161,42.5], + [28163,36.1], + [29001,27.6], + [29003,42.4], + [29005,48.5], + [29007,39.7], + [29009,43.7], + [29011,41.3], + [29013,41.6], + [29015,53.6], + [29017,44], + [29019,31.2], + [29021,37.8], + [29023,41.3], + [29025,42.3], + [29027,38.6], + [29029,51.5], + [29031,36.5], + [29033,43.4], + [29035,41.7], + [29037,39.8], + [29039,44.7], + [29041,45.7], + [29043,37.9], + [29045,44], + [29047,37.1], + [29049,41], + [29051,38.6], + [29053,38.7], + [29055,41.9], + [29057,46.2], + [29059,44], + [29061,41.1], + [29063,40.4], + [29065,44.7], + [29067,47.3], + [29069,40], + [29071,40.7], + [29073,46.2], + [29075,40.4], + [29077,36], + [29079,40.8], + [29081,43.3], + [29083,44.1], + [29085,55], + [29087,48.5], + [29089,39.1], + [29091,40.9], + [29093,45.7], + [29095,36.8], + [29097,36.2], + [29099,39.2], + [29101,30.5], + [29103,44.1], + [29105,40.3], + [29107,42.3], + [29109,39.4], + [29111,40.6], + [29113,37.1], + [29115,41.8], + [29117,40], + [29119,37.8], + [29121,43.3], + [29123,42.2], + [29125,46], + [29127,38.9], + [29129,42.9], + [29131,40.7], + [29133,41.4], + [29135,38], + [29137,46.5], + [29139,44.5], + [29141,46], + [29143,42], + [29145,39.9], + [29147,29.7], + [29149,46.4], + [29151,40.8], + [29153,51.6], + [29155,37.9], + [29157,40.7], + [29159,37.8], + [29161,35.3], + [29163,38.9], + [29165,38.2], + [29167,37.6], + [29169,27.6], + [29171,45.8], + [29173,45], + [29175,39.4], + [29177,42.2], + [29179,46.5], + [29181,42.3], + [29183,38.6], + [29185,50.3], + [29186,43.3], + [29187,39.4], + [29189,40.3], + [29195,37.9], + [29197,40.1], + [29199,37.3], + [29201,40], + [29203,45.8], + [29205,42.3], + [29207,41.4], + [29209,53.6], + [29211,42.1], + [29213,42.2], + [29215,43.2], + [29217,40.8], + [29219,41], + [29221,40.8], + [29223,47.5], + [29225,36.7], + [29227,48.1], + [29229,41.7], + [29510,35.8], + [30001,43], + [30003,30.7], + [30005,33.8], + [30007,47.3], + [30009,50.5], + [30011,47.8], + [30013,38.3], + [30015,41.9], + [30017,41.4], + [30019,49.2], + [30021,41], + [30023,48.6], + [30025,39.3], + [30027,45.3], + [30029,42.2], + [30031,33.4], + [30033,45.8], + [30035,31.9], + [30037,56.9], + [30039,54.3], + [30041,34.3], + [30043,47.6], + [30045,51.7], + [30047,42.3], + [30049,40.8], + [30051,46.5], + [30053,52.4], + [30055,46.6], + [30057,53], + [30059,48], + [30061,51.7], + [30063,36], + [30065,50.1], + [30067,46.3], + [30069,51.8], + [30071,49], + [30073,40.7], + [30075,53.4], + [30077,45.5], + [30079,48.7], + [30081,49.1], + [30083,38.6], + [30085,30.2], + [30087,36.8], + [30089,53.9], + [30091,46.3], + [30093,40], + [30095,46.8], + [30097,52], + [30099,44.4], + [30101,43.1], + [30103,56.8], + [30105,44.3], + [30107,41.1], + [30109,47.1], + [30111,38.4], + [31001,37.7], + [31003,44.9], + [31005,45.5], + [31007,48.9], + [31009,53.2], + [31011,44.8], + [31013,39.4], + [31015,54.3], + [31017,49.4], + [31019,33.5], + [31021,45.7], + [31023,43.3], + [31025,41.7], + [31027,42.7], + [31029,43.5], + [31031,43.1], + [31033,40.4], + [31035,42.5], + [31037,33.7], + [31039,42.6], + [31041,43.1], + [31043,33.4], + [31045,34.9], + [31047,35.7], + [31049,48.7], + [31051,40.8], + [31053,38.9], + [31055,34.7], + [31057,43.3], + [31059,47], + [31061,50.8], + [31063,45.2], + [31065,46.9], + [31067,43.8], + [31069,50.4], + [31071,50.9], + [31073,53.4], + [31075,38.8], + [31077,45.5], + [31079,35.9], + [31081,41.9], + [31083,45.3], + [31085,45.7], + [31087,46.2], + [31089,42.8], + [31091,53.3], + [31093,43.1], + [31095,46.5], + [31097,40.9], + [31099,39.6], + [31101,49.3], + [31103,45.3], + [31105,46.3], + [31107,45.6], + [31109,33.5], + [31111,41.1], + [31113,38.6], + [31115,53.2], + [31117,54.8], + [31119,36.6], + [31121,43.6], + [31123,42.3], + [31125,44.8], + [31127,39.3], + [31129,49.2], + [31131,41.4], + [31133,50], + [31135,42.9], + [31137,42.4], + [31139,41.6], + [31141,38.4], + [31143,45.1], + [31145,40.7], + [31147,47.7], + [31149,46.2], + [31151,35.5], + [31153,34.6], + [31155,41.2], + [31157,39.5], + [31159,38], + [31161,46.7], + [31163,49.7], + [31165,44.1], + [31167,42.1], + [31169,46.5], + [31171,41.8], + [31173,27.5], + [31175,46.2], + [31177,41.2], + [31179,32], + [31181,45.1], + [31183,49.4], + [31185,39.9], + [32001,39.7], + [32003,37.3], + [32005,52], + [32007,34.1], + [32009,55.4], + [32011,47.7], + [32013,36], + [32015,37.4], + [32017,44.4], + [32019,43.7], + [32021,52.9], + [32023,53.1], + [32027,42.1], + [32029,50.9], + [32031,38.4], + [32033,39.8], + [32510,42.4], + [33001,47.4], + [33003,52.3], + [33005,43.1], + [33007,48.2], + [33009,43.2], + [33011,40.7], + [33013,42.8], + [33015,44.5], + [33017,36.9], + [33019,46.3], + [34001,41.7], + [34003,41.9], + [34005,41.6], + [34007,38.8], + [34009,49.6], + [34011,37.6], + [34013,37.6], + [34015,40.5], + [34017,35.3], + [34019,46.3], + [34021,38.8], + [34023,38.6], + [34025,43.3], + [34027,42.8], + [34029,42.7], + [34031,37.2], + [34033,42.1], + [34035,41.7], + [34037,44.7], + [34039,38.7], + [34041,44.4], + [35001,37.6], + [35003,58.1], + [35005,35.7], + [35006,37.3], + [35007,50.2], + [35009,31.5], + [35011,35.4], + [35013,33.1], + [35015,35.2], + [35017,46.4], + [35019,43.1], + [35021,58.5], + [35023,43.1], + [35025,31.8], + [35027,50.9], + [35028,42.3], + [35029,37.1], + [35031,32.4], + [35033,55.2], + [35035,35.8], + [35037,43.4], + [35039,41.3], + [35041,30], + [35043,40.1], + [35045,35.4], + [35047,44], + [35049,46.3], + [35051,55.7], + [35053,39.4], + [35055,48.8], + [35057,43.6], + [35059,39.8], + [35061,38.9], + [36001,37.8], + [36003,39.1], + [36005,34.2], + [36007,39.9], + [36009,42], + [36011,42.9], + [36013,42.6], + [36015,41.3], + [36017,44.9], + [36019,39.5], + [36021,48.2], + [36023,36.4], + [36025,47.9], + [36027,42.2], + [36029,40.3], + [36031,47.7], + [36033,39.9], + [36035,43.9], + [36037,43.1], + [36039,45.9], + [36041,55.3], + [36043,44.2], + [36045,32.5], + [36047,35.2], + [36049,42.2], + [36051,41.3], + [36053,41.9], + [36055,38.9], + [36057,41], + [36059,41.7], + [36061,37.5], + [36063,43.2], + [36065,41], + [36067,39.1], + [36069,43.7], + [36071,37], + [36073,43], + [36075,40.3], + [36077,42.3], + [36079,44.2], + [36081,39], + [36083,39.8], + [36085,40.1], + [36087,36], + [36089,39], + [36091,42.8], + [36093,39.7], + [36095,45.4], + [36097,46.4], + [36099,42.1], + [36101,42.9], + [36103,41.5], + [36105,42.8], + [36107,44.5], + [36109,31.1], + [36111,44], + [36113,46.8], + [36115,44.2], + [36117,43.8], + [36119,40.9], + [36121,42.2], + [36123,41], + [37001,39.1], + [37003,43.7], + [37005,50.1], + [37007,40.9], + [37009,48.3], + [37011,45.2], + [37013,46.2], + [37015,45.4], + [37017,44.5], + [37019,53.8], + [37021,42.2], + [37023,44.1], + [37025,37.9], + [37027,44.6], + [37029,41], + [37031,48.6], + [37033,45.7], + [37035,41.4], + [37037,46.7], + [37039,51.5], + [37041,46], + [37043,52.2], + [37045,41.8], + [37047,41.9], + [37049,37], + [37051,31.3], + [37053,42.8], + [37055,46.5], + [37057,42.5], + [37059,45.2], + [37061,40.5], + [37063,35.4], + [37065,41.7], + [37067,38.4], + [37069,41.4], + [37071,40.1], + [37073,46.5], + [37075,46.2], + [37077,42.7], + [37079,40.7], + [37081,37.1], + [37083,43.4], + [37085,34.4], + [37087,47.6], + [37089,47.4], + [37091,42.2], + [37093,32.8], + [37095,40.9], + [37097,40.6], + [37099,37.7], + [37101,38.4], + [37103,48.5], + [37105,38.6], + [37107,42.7], + [37109,43.3], + [37111,43.9], + [37113,50.1], + [37115,44], + [37117,46.3], + [37119,35.1], + [37121,47], + [37123,43.6], + [37125,44.3], + [37127,41.7], + [37129,39.1], + [37131,49.6], + [37133,26.4], + [37135,34.8], + [37137,52.4], + [37139,38.6], + [37141,42.7], + [37143,49.8], + [37145,43.7], + [37147,32.5], + [37149,52.7], + [37151,41.7], + [37153,40.5], + [37155,36.6], + [37157,44.7], + [37159,40.2], + [37161,45], + [37163,40.3], + [37165,39.3], + [37167,42.2], + [37169,46.2], + [37171,44.1], + [37173,41.9], + [37175,51.1], + [37177,46.2], + [37179,38.2], + [37181,40.9], + [37183,36.2], + [37185,48], + [37187,46.1], + [37189,31.9], + [37191,37.8], + [37193,44.9], + [37195,40.5], + [37197,44.4], + [37199,47.6], + [38001,45.6], + [38003,45.1], + [38005,30.5], + [38007,43.7], + [38009,45], + [38011,41], + [38013,36.8], + [38015,37], + [38017,32.5], + [38019,49.5], + [38021,41.9], + [38023,51.1], + [38025,39], + [38027,45.8], + [38029,50.9], + [38031,44.8], + [38033,45], + [38035,29.7], + [38037,50.1], + [38039,51.1], + [38041,46.5], + [38043,47.8], + [38045,47.9], + [38047,52], + [38049,43.2], + [38051,53.5], + [38053,30.1], + [38055,46], + [38057,44], + [38059,37.8], + [38061,33.2], + [38063,52.4], + [38065,47], + [38067,48.1], + [38069,45.8], + [38071,40.7], + [38073,46.6], + [38075,39], + [38077,37.3], + [38079,31.4], + [38081,45.2], + [38083,50.9], + [38085,28.2], + [38087,47.7], + [38089,34.2], + [38091,50.3], + [38093,40.5], + [38095,47.6], + [38097,41.2], + [38099,44.2], + [38101,31.6], + [38103,51.6], + [38105,31.3], + [39001,42], + [39003,39.2], + [39005,40.4], + [39007,42.5], + [39009,29.6], + [39011,41.1], + [39013,44.6], + [39015,42.1], + [39017,36.7], + [39019,45.5], + [39021,41.9], + [39023,41.1], + [39025,40], + [39027,39.4], + [39029,44.1], + [39031,41.3], + [39033,43], + [39035,40.4], + [39037,41.9], + [39039,40.4], + [39041,38.8], + [39043,44.8], + [39045,39.2], + [39047,41.4], + [39049,34.1], + [39051,41.1], + [39053,40.7], + [39055,44.8], + [39057,38.3], + [39059,42.2], + [39061,36.8], + [39063,39.3], + [39065,35.9], + [39067,46.3], + [39069,41.1], + [39071,40.8], + [39073,43.1], + [39075,31.5], + [39077,39.8], + [39079,40.1], + [39081,44.8], + [39083,39.4], + [39085,43.8], + [39087,41.8], + [39089,39.7], + [39091,41.4], + [39093,41.8], + [39095,37.8], + [39097,40.8], + [39099,43.5], + [39101,41.3], + [39103,42.2], + [39105,43.6], + [39107,39.6], + [39109,41.3], + [39111,46.5], + [39113,39.2], + [39115,44.5], + [39117,42.2], + [39119,40.3], + [39121,50.4], + [39123,49.3], + [39125,42.1], + [39127,40.2], + [39129,39.7], + [39131,40.8], + [39133,38], + [39135,42.7], + [39137,39.8], + [39139,41.1], + [39141,41], + [39143,42.2], + [39145,39.9], + [39147,39.9], + [39149,39.5], + [39151,42.1], + [39153,41], + [39155,44.3], + [39157,41], + [39159,38], + [39161,41.2], + [39163,42.9], + [39165,39.4], + [39167,44.3], + [39169,38.7], + [39171,41.4], + [39173,34.9], + [39175,42.1], + [40001,37.2], + [40003,44.2], + [40005,40.2], + [40007,39], + [40009,35.9], + [40011,43.5], + [40013,37.2], + [40015,37.7], + [40017,35.9], + [40019,38.2], + [40021,35.3], + [40023,42], + [40025,43.8], + [40027,34.2], + [40029,42], + [40031,33], + [40033,43.5], + [40035,42.1], + [40037,40.3], + [40039,31.4], + [40041,46.7], + [40043,39.2], + [40045,44.1], + [40047,35.8], + [40049,39.3], + [40051,39.2], + [40053,42.6], + [40055,40.4], + [40057,40.6], + [40059,39.7], + [40061,41], + [40063,39.4], + [40065,34.1], + [40067,41.5], + [40069,40.1], + [40071,38.4], + [40073,37.7], + [40075,42.9], + [40077,41.3], + [40079,39.4], + [40081,41.2], + [40083,38.5], + [40085,39.4], + [40087,38.5], + [40089,38.8], + [40091,47.8], + [40093,41.1], + [40095,42.8], + [40097,40.6], + [40099,42.9], + [40101,37.9], + [40103,41.2], + [40105,42.4], + [40107,40.2], + [40109,34.6], + [40111,39], + [40113,42.5], + [40115,38], + [40117,41.9], + [40119,27.3], + [40121,40.3], + [40123,35.7], + [40125,37.7], + [40127,44.5], + [40129,40.6], + [40131,39.1], + [40133,38.8], + [40135,40.8], + [40137,40.7], + [40139,33], + [40141,42.7], + [40143,35.7], + [40145,38.8], + [40147,40.2], + [40149,39.1], + [40151,33.4], + [40153,36.5], + [41001,48], + [41003,33], + [41005,41.5], + [41007,44.2], + [41009,43.3], + [41011,48.6], + [41013,47.5], + [41015,56.3], + [41017,42.4], + [41019,47.1], + [41021,50.1], + [41023,52.9], + [41025,45.9], + [41027,39.3], + [41029,42.6], + [41031,40.8], + [41033,47.7], + [41035,42.2], + [41037,48.6], + [41039,39.4], + [41041,51.6], + [41043,39.6], + [41045,36.1], + [41047,36.6], + [41049,38.9], + [41051,37.2], + [41053,37], + [41055,51.4], + [41057,48.1], + [41059,36.5], + [41061,40.2], + [41063,52.6], + [41065,40.8], + [41067,36.7], + [41069,59], + [41071,38.3], + [42001,43.9], + [42003,40.8], + [42005,46.6], + [42007,45.1], + [42009,46.5], + [42011,39.9], + [42013,43.4], + [42015,44.5], + [42017,43.9], + [42019,43.3], + [42021,45.4], + [42023,52], + [42025,46.2], + [42027,32.3], + [42029,40.4], + [42031,41.5], + [42033,45], + [42035,38.6], + [42037,41], + [42039,43.2], + [42041,40.6], + [42043,39.7], + [42045,39], + [42047,47.4], + [42049,39.7], + [42051,45], + [42053,43.3], + [42055,41.6], + [42057,45.4], + [42059,42.2], + [42061,43.7], + [42063,40.2], + [42065,43.9], + [42067,42.9], + [42069,42.1], + [42071,38.6], + [42073,45.2], + [42075,41], + [42077,39.1], + [42079,42.8], + [42081,41.5], + [42083,43.2], + [42085,44.7], + [42087,44], + [42089,42.9], + [42091,41.2], + [42093,43.3], + [42095,42.2], + [42097,44.5], + [42099,43.3], + [42101,34.4], + [42103,48.2], + [42105,47.2], + [42107,44.4], + [42109,40.2], + [42111,46.1], + [42113,53.7], + [42115,48.4], + [42117,44.6], + [42119,39.5], + [42121,46.9], + [42123,47.4], + [42125,44.5], + [42127,48.2], + [42129,47], + [42131,44.7], + [42133,41], + [44001,44.3], + [44003,43.9], + [44005,45.2], + [44007,37.4], + [44009,44.6], + [45001,44.3], + [45003,41], + [45005,41.9], + [45007,40.8], + [45009,41.7], + [45011,41.3], + [45013,45.5], + [45015,36.1], + [45017,45.5], + [45019,37.8], + [45021,39.3], + [45023,42], + [45025,42.4], + [45027,45.1], + [45029,42.5], + [45031,41.4], + [45033,37.7], + [45035,37], + [45037,42.9], + [45039,46.4], + [45041,39.2], + [45043,49.5], + [45045,38.2], + [45047,39.5], + [45049,40], + [45051,45.9], + [45053,40.3], + [45055,41.1], + [45057,42.1], + [45059,40.7], + [45061,41.8], + [45063,39.1], + [45065,55.2], + [45067,40.7], + [45069,40.3], + [45071,42], + [45073,45.7], + [45075,40.3], + [45077,36.2], + [45079,33.4], + [45081,41.8], + [45083,38.2], + [45085,36.4], + [45087,44], + [45089,43], + [45091,38.7], + [46003,37.8], + [46005,38.1], + [46007,28.6], + [46009,42.3], + [46011,27], + [46013,37], + [46015,40.9], + [46017,25.8], + [46019,40.1], + [46021,50.9], + [46023,35.8], + [46025,41.4], + [46027,24.9], + [46029,39.1], + [46031,28.7], + [46033,54.8], + [46035,38.6], + [46037,47.7], + [46039,42.8], + [46041,26.9], + [46043,46.7], + [46045,42.4], + [46047,53.6], + [46049,47], + [46051,42.9], + [46053,45.4], + [46055,44.1], + [46057,35], + [46059,47.4], + [46061,36.7], + [46063,42.3], + [46065,38], + [46067,43], + [46069,53.3], + [46071,32.2], + [46073,51.6], + [46075,53.5], + [46077,45.1], + [46079,43.2], + [46081,42.1], + [46083,34.9], + [46085,35.5], + [46087,39.3], + [46089,50.2], + [46091,39.8], + [46093,36.5], + [46095,32.9], + [46097,44], + [46099,34.9], + [46101,39.9], + [46102,25.8], + [46103,39], + [46105,47.5], + [46107,49.2], + [46109,38.1], + [46111,42.6], + [46115,43.5], + [46117,44.5], + [46119,46.8], + [46121,23.8], + [46123,45.1], + [46125,42], + [46127,40], + [46129,42.8], + [46135,41.8], + [46137,33.1], + [47001,43.3], + [47003,37.9], + [47005,47.9], + [47007,44.1], + [47009,43.7], + [47011,39.5], + [47013,44.1], + [47015,42], + [47017,42.5], + [47019,45.4], + [47021,40.3], + [47023,37.7], + [47025,43.1], + [47027,47.3], + [47029,45.2], + [47031,39.7], + [47033,40.7], + [47035,51], + [47037,34.3], + [47039,46.4], + [47041,41.1], + [47043,39.1], + [47045,40.5], + [47047,45.8], + [47049,45.2], + [47051,42.2], + [47053,39.9], + [47055,43.9], + [47057,45], + [47059,44.7], + [47061,43.4], + [47063,40.7], + [47065,39.7], + [47067,44.5], + [47069,40.3], + [47071,45.3], + [47073,44.9], + [47075,42], + [47077,41.5], + [47079,45.8], + [47081,41.1], + [47083,43.9], + [47085,42], + [47087,46.8], + [47089,43.9], + [47091,46], + [47093,37.4], + [47095,41.5], + [47097,38.3], + [47099,39.3], + [47101,43.3], + [47103,42.6], + [47105,47.6], + [47107,42.6], + [47109,43.5], + [47111,39.4], + [47113,38.7], + [47115,43.4], + [47117,38.9], + [47119,39.1], + [47121,46], + [47123,43.9], + [47125,30.8], + [47127,45], + [47129,41.6], + [47131,42.6], + [47133,43], + [47135,43.2], + [47137,50.1], + [47139,45.6], + [47141,36.4], + [47143,38.9], + [47145,46.4], + [47147,39], + [47149,33.5], + [47151,39.4], + [47153,44.1], + [47155,42.9], + [47157,35.6], + [47159,40.3], + [47161,44.2], + [47163,45.1], + [47165,39.8], + [47167,37.5], + [47169,35.1], + [47171,46.5], + [47173,43], + [47175,46.9], + [47177,40], + [47179,40.2], + [47181,43], + [47183,38.6], + [47185,43.2], + [47187,39.1], + [47189,40.4], + [48001,39.3], + [48003,30.8], + [48005,37.5], + [48007,50.6], + [48009,44.5], + [48011,46], + [48013,35.4], + [48015,40.7], + [48017,33.3], + [48019,52.2], + [48021,38.4], + [48023,45.9], + [48025,35.3], + [48027,31], + [48029,33.6], + [48031,50.4], + [48033,41.7], + [48035,46.6], + [48037,38], + [48039,35.8], + [48041,26.5], + [48043,43.7], + [48045,46.4], + [48047,29.7], + [48049,41.5], + [48051,43.3], + [48053,44.6], + [48055,35.9], + [48057,37.7], + [48059,44.2], + [48061,31.7], + [48063,37.6], + [48065,40.6], + [48067,43.3], + [48069,34.8], + [48071,35.2], + [48073,37.9], + [48075,34.5], + [48077,46.6], + [48079,35.1], + [48081,48.1], + [48083,47.2], + [48085,36.9], + [48087,39.6], + [48089,42.9], + [48091,42.2], + [48093,44.8], + [48095,45.3], + [48097,40.7], + [48099,31.8], + [48101,37.1], + [48103,32.7], + [48105,38.8], + [48107,38.4], + [48109,34.4], + [48111,31.7], + [48113,33.4], + [48115,33.5], + [48117,31.9], + [48119,44.3], + [48121,35.5], + [48123,41], + [48125,46], + [48127,34.3], + [48129,41.4], + [48131,36.1], + [48133,41.2], + [48135,30.4], + [48137,49.1], + [48139,36.2], + [48141,32.2], + [48143,30.4], + [48145,39], + [48147,41.3], + [48149,47], + [48151,44.6], + [48153,37.2], + [48155,51.2], + [48157,36.3], + [48159,43.2], + [48161,41.5], + [48163,31.2], + [48165,27.8], + [48167,37.7], + [48169,41.1], + [48171,50], + [48173,30.8], + [48175,46.1], + [48177,36.3], + [48179,36.5], + [48181,39.9], + [48183,35.6], + [48185,40.4], + [48187,37], + [48189,33.4], + [48191,44.6], + [48193,45.8], + [48195,35.1], + [48197,43.5], + [48199,39.2], + [48201,33.5], + [48203,38.7], + [48205,38.1], + [48207,43.5], + [48209,32], + [48211,36.4], + [48213,43.9], + [48215,29.2], + [48217,42.1], + [48219,33.8], + [48221,47], + [48223,39.2], + [48225,44.5], + [48227,36.5], + [48229,37], + [48231,38], + [48233,38], + [48235,42.7], + [48237,39.6], + [48239,37.7], + [48241,40.5], + [48243,55.8], + [48245,36.2], + [48247,32.4], + [48249,34.6], + [48251,36.8], + [48253,38.2], + [48255,35.4], + [48257,35.5], + [48259,41.4], + [48261,39.7], + [48263,51], + [48265,47.4], + [48267,52.1], + [48269,40], + [48271,49.8], + [48273,28.3], + [48275,39.5], + [48277,40.7], + [48279,36.4], + [48281,43.1], + [48283,36.5], + [48285,43.4], + [48287,41.1], + [48289,44.3], + [48291,35.5], + [48293,39.9], + [48295,34.7], + [48297,42.2], + [48299,57.4], + [48301,55.2], + [48303,30.8], + [48305,37.3], + [48307,44.6], + [48309,33.3], + [48311,38.2], + [48313,35.2], + [48315,50.6], + [48317,32.7], + [48319,46.3], + [48321,38.2], + [48323,29.6], + [48325,39], + [48327,51.8], + [48329,31.7], + [48331,41.7], + [48333,52.1], + [48335,33.9], + [48337,44.6], + [48339,37.1], + [48341,30.8], + [48343,43], + [48345,41.3], + [48347,30.9], + [48349,38.1], + [48351,44.3], + [48353,37.5], + [48355,35.5], + [48357,32.3], + [48359,35.9], + [48361,37.9], + [48363,40.6], + [48365,39.2], + [48367,39.7], + [48369,33.4], + [48371,35.9], + [48373,43.7], + [48375,33.9], + [48377,41.9], + [48379,48.4], + [48381,35.9], + [48383,30], + [48385,47.4], + [48387,45.9], + [48389,35.8], + [48391,43.3], + [48393,43.2], + [48395,41.5], + [48397,37.5], + [48399,40.8], + [48401,38.2], + [48403,53], + [48405,49.3], + [48407,44.9], + [48409,35.5], + [48411,42.4], + [48413,36.2], + [48415,36.4], + [48417,43], + [48419,38], + [48421,40.1], + [48423,36.6], + [48425,41], + [48427,28.8], + [48429,39.4], + [48431,40.8], + [48433,47.1], + [48435,38.6], + [48437,35.9], + [48439,34.4], + [48441,32.5], + [48443,55.2], + [48445,34.6], + [48447,52.3], + [48449,34.1], + [48451,34.1], + [48453,34.2], + [48455,48.6], + [48457,42.4], + [48459,41.4], + [48461,39.6], + [48463,33.7], + [48465,31.8], + [48467,42.8], + [48469,35.9], + [48471,35.3], + [48473,28.9], + [48475,33.9], + [48477,41.5], + [48479,28.8], + [48481,37.3], + [48483,39.6], + [48485,34.5], + [48487,39.4], + [48489,33], + [48491,36.3], + [48493,40.2], + [48495,33.1], + [48497,38.3], + [48499,47.9], + [48501,30.3], + [48503,41.1], + [48505,29.5], + [48507,32.9], + [49001,33], + [49003,32.6], + [49005,25.2], + [49007,37.5], + [49009,42.5], + [49011,31.1], + [49013,31.5], + [49015,36.2], + [49017,41.9], + [49019,40.2], + [49021,29.1], + [49023,30.1], + [49025,41.9], + [49027,35.4], + [49029,32.2], + [49031,44.5], + [49033,34.3], + [49035,32.8], + [49037,32.2], + [49039,32.6], + [49041,35.4], + [49043,39.5], + [49045,31.4], + [49047,30.6], + [49049,24.8], + [49051,34], + [49053,37.1], + [49055,40.4], + [49057,32.7], + [50001,43.5], + [50003,46.7], + [50005,44.7], + [50007,36.5], + [50009,50.9], + [50011,40.4], + [50013,48.2], + [50015,40.8], + [50017,46.6], + [50019,45.8], + [50021,46.5], + [50023,43.7], + [50025,47.6], + [50027,48], + [51001,45.9], + [51003,39.1], + [51005,48.1], + [51007,45.1], + [51009,44.8], + [51011,42.6], + [51013,34.7], + [51015,45.1], + [51017,47.8], + [51019,46.3], + [51021,46.4], + [51023,47.2], + [51025,43.3], + [51027,46.8], + [51029,43.5], + [51031,43], + [51033,40.1], + [51035,47.6], + [51036,50.8], + [51037,46.2], + [51041,38.9], + [51043,47], + [51045,46.3], + [51047,39.2], + [51049,45.6], + [51051,44.7], + [51053,43.2], + [51057,46.3], + [51059,38], + [51061,41.3], + [51063,47.2], + [51065,43.4], + [51067,47.2], + [51069,40.7], + [51071,44.7], + [51073,44.9], + [51075,48.3], + [51077,48.1], + [51079,39.6], + [51081,40.7], + [51083,46.5], + [51085,42.7], + [51087,38.8], + [51089,47.6], + [51091,60.9], + [51093,44.3], + [51095,46.5], + [51097,46.7], + [51099,37.4], + [51101,40.3], + [51103,57.3], + [51105,44.9], + [51107,36.2], + [51109,44.8], + [51111,45.3], + [51113,45.6], + [51115,54.5], + [51117,48.4], + [51119,53.9], + [51121,29], + [51125,51.4], + [51127,43.3], + [51131,49], + [51133,58.9], + [51135,40.6], + [51137,42], + [51139,45.4], + [51141,49.9], + [51143,47.2], + [51145,45.1], + [51147,31.5], + [51149,37], + [51153,35.2], + [51155,47], + [51157,50.1], + [51159,47.3], + [51161,43.8], + [51163,49], + [51165,41.5], + [51167,45.7], + [51169,47.3], + [51171,44.5], + [51173,45], + [51175,46.9], + [51177,38.2], + [51179,35.5], + [51181,49.8], + [51183,41], + [51185,45.2], + [51187,41.3], + [51191,46.3], + [51193,48.6], + [51195,41.4], + [51197,45.3], + [51199,39.6], + [51510,36.8], + [51520,42.2], + [51530,35.5], + [51540,31.6], + [51550,36.9], + [51570,40.6], + [51580,42.4], + [51590,40.9], + [51595,35.4], + [51600,38.2], + [51610,38.7], + [51620,39.4], + [51630,30.4], + [51640,45], + [51650,36.2], + [51660,25.4], + [51670,36.2], + [51678,22.3], + [51680,28.3], + [51683,34.2], + [51685,34.7], + [51690,40.9], + [51700,33.5], + [51710,30.7], + [51720,37.5], + [51730,38.1], + [51735,42.4], + [51740,35.3], + [51750,23.4], + [51760,34], + [51770,38.5], + [51775,41.2], + [51790,42.8], + [51800,38], + [51810,36.2], + [51820,39.2], + [51830,24.9], + [51840,38.1], + [53001,27.9], + [53003,45], + [53005,35.8], + [53007,40.1], + [53009,50.8], + [53011,38.4], + [53013,50.2], + [53015,41.3], + [53017,37.1], + [53019,50.3], + [53021,30.3], + [53023,46.1], + [53025,32.9], + [53027,44], + [53029,44.2], + [53031,58.3], + [53033,37], + [53035,39.1], + [53037,33.8], + [53039,46.9], + [53041,43.1], + [53043,48.4], + [53045,45.6], + [53047,42.6], + [53049,53.6], + [53051,51], + [53053,36.1], + [53055,56.6], + [53057,41.5], + [53059,46.6], + [53061,38], + [53063,37.6], + [53065,46.9], + [53067,39], + [53069,55.1], + [53071,37.5], + [53073,37.3], + [53075,24.7], + [53077,33], + [54001,41.7], + [54003,38.8], + [54005,43.5], + [54007,45.9], + [54009,46.6], + [54011,38.8], + [54013,48.1], + [54015,44.1], + [54017,45.3], + [54019,44.3], + [54021,39.2], + [54023,46.2], + [54025,45.5], + [54027,47.2], + [54029,46.8], + [54031,45.7], + [54033,42.2], + [54035,43.7], + [54037,41.1], + [54039,43.4], + [54041,43.8], + [54043,43.2], + [54045,43.8], + [54047,45], + [54049,41.1], + [54051,45.7], + [54053,44.2], + [54055,43.1], + [54057,44.5], + [54059,42.8], + [54061,31.7], + [54063,48], + [54065,47.9], + [54067,45.1], + [54069,43.6], + [54071,50.8], + [54073,43.6], + [54075,49.1], + [54077,42.7], + [54079,41.8], + [54081,42.2], + [54083,43.7], + [54085,46.8], + [54087,45.8], + [54089,49.1], + [54091,44.1], + [54093,49.3], + [54095,47], + [54097,41.7], + [54099,44.1], + [54101,47.2], + [54103,46], + [54105,45.4], + [54107,43.5], + [54109,44.6], + [55001,53.8], + [55003,42], + [55005,44.2], + [55007,52.2], + [55009,37.4], + [55011,46.6], + [55013,52.8], + [55015,40.6], + [55017,41.2], + [55019,37.4], + [55021,42.4], + [55023,46.3], + [55025,35.1], + [55027,42.5], + [55029,53], + [55031,42.2], + [55033,34.7], + [55035,34.5], + [55037,53.6], + [55039,41.6], + [55041,46.7], + [55043,36], + [55045,43.2], + [55047,45.3], + [55049,42.8], + [55051,54.9], + [55053,41.7], + [55055,41.1], + [55057,45.4], + [55059,38.5], + [55061,44.3], + [55063,35.9], + [55065,41.8], + [55067,48.7], + [55069,47.7], + [55071,44.9], + [55073,40.7], + [55075,48.7], + [55077,50], + [55078,32], + [55079,34.9], + [55081,39.9], + [55083,46.9], + [55085,51.3], + [55087,38.3], + [55089,44], + [55091,46.4], + [55093,36.8], + [55095,45.6], + [55097,37], + [55099,51.6], + [55101,40.2], + [55103,45.3], + [55105,39.5], + [55107,49], + [55109,38.9], + [55111,41.1], + [55113,50.3], + [55115,45.2], + [55117,41.5], + [55119,43.7], + [55121,40.5], + [55123,41.7], + [55125,54.6], + [55127,40], + [55129,51.2], + [55131,43.2], + [55133,43.2], + [55135,45.5], + [55137,49.2], + [55139,38.3], + [55141,44.1], + [56001,27.6], + [56003,41.6], + [56005,34], + [56007,38.6], + [56009,40], + [56011,42.7], + [56013,38.7], + [56015,44.1], + [56017,46.6], + [56019,45.4], + [56021,37], + [56023,39.7], + [56025,36.9], + [56027,45.5], + [56029,44.5], + [56031,49.2], + [56033,42.3], + [56035,39.4], + [56037,35.3], + [56039,39.3], + [56041,35.8], + [56043,42.9], + [56045,43.1] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-over18-2019.json b/data/regional/united-states/demographics/age/us-age-over18-2019.json new file mode 100644 index 0000000..274c844 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-over18-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Over 18", + "description" : "Percent of the population over age 18.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.over18.2019"], + [1001,0.762], + [1003,0.783], + [1005,0.791], + [1007,0.794], + [1009,0.768], + [1011,0.792], + [1013,0.775], + [1015,0.782], + [1017,0.79], + [1019,0.798], + [1021,0.759], + [1023,0.799], + [1025,0.781], + [1027,0.792], + [1029,0.773], + [1031,0.763], + [1033,0.789], + [1035,0.79], + [1037,0.833], + [1039,0.781], + [1041,0.776], + [1043,0.774], + [1045,0.769], + [1047,0.759], + [1049,0.754], + [1051,0.775], + [1053,0.776], + [1055,0.784], + [1057,0.789], + [1059,0.749], + [1061,0.78], + [1063,0.774], + [1065,0.767], + [1067,0.79], + [1069,0.767], + [1071,0.788], + [1073,0.771], + [1075,0.78], + [1077,0.802], + [1079,0.783], + [1081,0.787], + [1083,0.772], + [1085,0.775], + [1087,0.826], + [1089,0.78], + [1091,0.772], + [1093,0.79], + [1095,0.75], + [1097,0.764], + [1099,0.777], + [1101,0.765], + [1103,0.77], + [1105,0.784], + [1107,0.801], + [1109,0.806], + [1111,0.784], + [1113,0.756], + [1115,0.772], + [1117,0.763], + [1119,0.807], + [1121,0.785], + [1123,0.791], + [1125,0.79], + [1127,0.778], + [1129,0.771], + [1131,0.759], + [1133,0.793], + [2013,0.857], + [2016,0.828], + [2020,0.755], + [2050,0.647], + [2060,0.794], + [2068,0.884], + [2070,0.689], + [2090,0.758], + [2100,0.745], + [2105,0.849], + [2110,0.785], + [2122,0.773], + [2130,0.78], + [2150,0.743], + [2158,0.596], + [2164,0.768], + [2170,0.731], + [2180,0.656], + [2185,0.738], + [2188,0.647], + [2195,0.801], + [2198,0.766], + [2220,0.783], + [2230,0.856], + [2240,0.729], + [2261,0.767], + [2275,0.813], + [2282,0.769], + [2290,0.723], + [4001,0.727], + [4003,0.782], + [4005,0.793], + [4007,0.8], + [4009,0.729], + [4011,0.724], + [4012,0.837], + [4013,0.758], + [4015,0.825], + [4017,0.73], + [4019,0.789], + [4021,0.77], + [4023,0.727], + [4025,0.835], + [4027,0.746], + [5001,0.771], + [5003,0.77], + [5005,0.825], + [5007,0.735], + [5009,0.769], + [5011,0.761], + [5013,0.814], + [5015,0.782], + [5017,0.777], + [5019,0.81], + [5021,0.783], + [5023,0.809], + [5025,0.778], + [5027,0.789], + [5029,0.769], + [5031,0.751], + [5033,0.753], + [5035,0.727], + [5037,0.763], + [5039,0.785], + [5041,0.744], + [5043,0.779], + [5045,0.768], + [5047,0.762], + [5049,0.793], + [5051,0.797], + [5053,0.775], + [5055,0.755], + [5057,0.743], + [5059,0.795], + [5061,0.74], + [5063,0.76], + [5065,0.822], + [5067,0.798], + [5069,0.779], + [5071,0.758], + [5073,0.805], + [5075,0.775], + [5077,0.818], + [5079,0.849], + [5081,0.778], + [5083,0.781], + [5085,0.741], + [5087,0.765], + [5089,0.82], + [5091,0.762], + [5093,0.737], + [5095,0.79], + [5097,0.816], + [5099,0.772], + [5101,0.802], + [5103,0.772], + [5105,0.775], + [5107,0.742], + [5109,0.783], + [5111,0.762], + [5113,0.767], + [5115,0.771], + [5117,0.799], + [5119,0.767], + [5121,0.766], + [5123,0.77], + [5125,0.765], + [5127,0.745], + [5129,0.799], + [5131,0.759], + [5133,0.714], + [5135,0.789], + [5137,0.805], + [5139,0.758], + [5141,0.802], + [5143,0.755], + [5145,0.766], + [5147,0.785], + [5149,0.756], + [6001,0.792], + [6003,0.807], + [6005,0.848], + [6007,0.799], + [6009,0.828], + [6011,0.728], + [6013,0.771], + [6015,0.785], + [6017,0.799], + [6019,0.715], + [6021,0.732], + [6023,0.808], + [6025,0.713], + [6027,0.799], + [6029,0.709], + [6031,0.728], + [6033,0.791], + [6035,0.851], + [6037,0.78], + [6039,0.724], + [6041,0.798], + [6043,0.837], + [6045,0.786], + [6047,0.704], + [6049,0.803], + [6051,0.813], + [6053,0.737], + [6055,0.791], + [6057,0.828], + [6059,0.778], + [6061,0.776], + [6063,0.833], + [6065,0.745], + [6067,0.762], + [6069,0.74], + [6071,0.734], + [6073,0.782], + [6075,0.866], + [6077,0.727], + [6079,0.822], + [6081,0.792], + [6083,0.777], + [6085,0.778], + [6087,0.806], + [6089,0.784], + [6091,0.841], + [6093,0.797], + [6095,0.776], + [6097,0.802], + [6099,0.728], + [6101,0.739], + [6103,0.761], + [6105,0.829], + [6107,0.69], + [6109,0.834], + [6111,0.768], + [6113,0.788], + [6115,0.724], + [8001,0.73], + [8003,0.756], + [8005,0.762], + [8007,0.826], + [8009,0.79], + [8011,0.848], + [8013,0.806], + [8014,0.768], + [8015,0.849], + [8017,0.7], + [8019,0.841], + [8021,0.734], + [8023,0.817], + [8025,0.877], + [8027,0.85], + [8029,0.801], + [8031,0.802], + [8033,0.78], + [8035,0.734], + [8037,0.781], + [8039,0.783], + [8041,0.757], + [8043,0.842], + [8045,0.746], + [8047,0.864], + [8049,0.826], + [8051,0.827], + [8053,0.839], + [8055,0.839], + [8057,0.853], + [8059,0.8], + [8061,0.736], + [8063,0.759], + [8065,0.819], + [8067,0.809], + [8069,0.802], + [8071,0.823], + [8073,0.799], + [8075,0.795], + [8077,0.782], + [8079,0.883], + [8081,0.744], + [8083,0.781], + [8085,0.782], + [8087,0.74], + [8089,0.759], + [8091,0.841], + [8093,0.844], + [8095,0.734], + [8097,0.839], + [8099,0.745], + [8101,0.773], + [8103,0.758], + [8105,0.769], + [8107,0.817], + [8109,0.782], + [8111,0.871], + [8113,0.82], + [8115,0.748], + [8117,0.838], + [8119,0.824], + [8121,0.772], + [8123,0.737], + [8125,0.734], + [9001,0.773], + [9003,0.788], + [9005,0.815], + [9007,0.82], + [9009,0.796], + [9011,0.804], + [9013,0.824], + [9015,0.8], + [10001,0.769], + [10003,0.783], + [10005,0.812], + [11001,0.821], + [12001,0.82], + [12003,0.761], + [12005,0.786], + [12007,0.802], + [12009,0.816], + [12011,0.787], + [12013,0.798], + [12015,0.877], + [12017,0.852], + [12019,0.765], + [12021,0.826], + [12023,0.783], + [12027,0.805], + [12029,0.819], + [12031,0.773], + [12033,0.791], + [12035,0.828], + [12037,0.839], + [12039,0.781], + [12041,0.792], + [12043,0.846], + [12045,0.837], + [12047,0.809], + [12049,0.738], + [12051,0.73], + [12053,0.815], + [12055,0.828], + [12057,0.775], + [12059,0.805], + [12061,0.836], + [12063,0.814], + [12065,0.837], + [12067,0.78], + [12069,0.807], + [12071,0.822], + [12073,0.813], + [12075,0.803], + [12077,0.835], + [12079,0.812], + [12081,0.814], + [12083,0.813], + [12085,0.835], + [12086,0.795], + [12087,0.849], + [12089,0.801], + [12091,0.778], + [12093,0.784], + [12095,0.776], + [12097,0.754], + [12099,0.808], + [12101,0.796], + [12103,0.836], + [12105,0.777], + [12107,0.786], + [12109,0.782], + [12111,0.8], + [12113,0.779], + [12115,0.856], + [12117,0.788], + [12119,0.927], + [12121,0.783], + [12123,0.802], + [12125,0.809], + [12127,0.823], + [12129,0.788], + [12131,0.796], + [12133,0.806], + [13001,0.752], + [13003,0.73], + [13005,0.744], + [13007,0.791], + [13009,0.811], + [13011,0.768], + [13013,0.737], + [13015,0.756], + [13017,0.749], + [13019,0.757], + [13021,0.754], + [13023,0.787], + [13025,0.762], + [13027,0.778], + [13029,0.707], + [13031,0.8], + [13033,0.739], + [13035,0.795], + [13037,0.824], + [13039,0.759], + [13043,0.749], + [13045,0.761], + [13047,0.769], + [13049,0.806], + [13051,0.785], + [13053,0.787], + [13055,0.775], + [13057,0.751], + [13059,0.826], + [13061,0.809], + [13063,0.72], + [13065,0.742], + [13067,0.761], + [13069,0.755], + [13071,0.738], + [13073,0.745], + [13075,0.744], + [13077,0.752], + [13079,0.787], + [13081,0.757], + [13083,0.809], + [13085,0.797], + [13087,0.755], + [13089,0.767], + [13091,0.803], + [13093,0.823], + [13095,0.759], + [13097,0.739], + [13099,0.748], + [13101,0.779], + [13103,0.734], + [13105,0.781], + [13107,0.75], + [13109,0.736], + [13111,0.833], + [13113,0.767], + [13115,0.767], + [13117,0.721], + [13119,0.781], + [13121,0.778], + [13123,0.805], + [13125,0.772], + [13127,0.779], + [13129,0.754], + [13131,0.753], + [13133,0.81], + [13135,0.728], + [13137,0.776], + [13139,0.744], + [13141,0.861], + [13143,0.758], + [13145,0.781], + [13147,0.793], + [13149,0.773], + [13151,0.74], + [13153,0.743], + [13155,0.78], + [13157,0.746], + [13159,0.767], + [13161,0.733], + [13163,0.764], + [13165,0.776], + [13167,0.807], + [13169,0.766], + [13171,0.791], + [13173,0.748], + [13175,0.753], + [13177,0.735], + [13179,0.718], + [13181,0.808], + [13183,0.718], + [13185,0.76], + [13187,0.817], + [13189,0.747], + [13191,0.832], + [13193,0.808], + [13195,0.77], + [13197,0.784], + [13199,0.783], + [13201,0.77], + [13205,0.77], + [13207,0.793], + [13209,0.793], + [13211,0.773], + [13213,0.751], + [13215,0.752], + [13217,0.736], + [13219,0.734], + [13221,0.776], + [13223,0.734], + [13225,0.788], + [13227,0.797], + [13229,0.75], + [13231,0.765], + [13233,0.741], + [13235,0.829], + [13237,0.796], + [13239,0.802], + [13241,0.834], + [13243,0.745], + [13245,0.769], + [13247,0.751], + [13249,0.762], + [13251,0.784], + [13253,0.794], + [13255,0.762], + [13257,0.776], + [13259,0.878], + [13261,0.77], + [13263,0.828], + [13265,0.85], + [13267,0.795], + [13269,0.796], + [13271,0.833], + [13273,0.767], + [13275,0.761], + [13277,0.751], + [13279,0.734], + [13281,0.876], + [13283,0.784], + [13285,0.753], + [13287,0.757], + [13289,0.806], + [13291,0.837], + [13293,0.767], + [13295,0.781], + [13297,0.75], + [13299,0.764], + [13301,0.792], + [13303,0.786], + [13305,0.753], + [13307,0.757], + [13309,0.83], + [13311,0.803], + [13313,0.738], + [13315,0.812], + [13317,0.786], + [13319,0.77], + [13321,0.775], + [15001,0.783], + [15003,0.788], + [15005,0.985], + [15007,0.78], + [15009,0.781], + [16001,0.76], + [16003,0.829], + [16005,0.737], + [16007,0.736], + [16009,0.774], + [16011,0.69], + [16013,0.778], + [16015,0.829], + [16017,0.8], + [16019,0.691], + [16021,0.764], + [16023,0.769], + [16025,0.741], + [16027,0.711], + [16029,0.707], + [16031,0.679], + [16033,0.71], + [16035,0.839], + [16037,0.839], + [16039,0.749], + [16041,0.675], + [16043,0.736], + [16045,0.768], + [16047,0.725], + [16049,0.804], + [16051,0.662], + [16053,0.692], + [16055,0.77], + [16057,0.813], + [16059,0.81], + [16061,0.774], + [16063,0.704], + [16065,0.727], + [16067,0.715], + [16069,0.788], + [16071,0.703], + [16073,0.738], + [16075,0.735], + [16077,0.697], + [16079,0.798], + [16081,0.748], + [16083,0.723], + [16085,0.83], + [16087,0.767], + [17001,0.774], + [17003,0.767], + [17005,0.809], + [17007,0.748], + [17009,0.828], + [17011,0.786], + [17013,0.791], + [17015,0.806], + [17017,0.756], + [17019,0.811], + [17021,0.795], + [17023,0.769], + [17025,0.773], + [17027,0.788], + [17029,0.82], + [17031,0.78], + [17033,0.802], + [17035,0.771], + [17037,0.784], + [17039,0.784], + [17041,0.75], + [17043,0.771], + [17045,0.797], + [17047,0.768], + [17049,0.763], + [17051,0.793], + [17053,0.773], + [17055,0.779], + [17057,0.802], + [17059,0.795], + [17061,0.792], + [17063,0.746], + [17065,0.778], + [17067,0.789], + [17069,0.828], + [17071,0.815], + [17073,0.776], + [17075,0.782], + [17077,0.816], + [17079,0.768], + [17081,0.778], + [17083,0.792], + [17085,0.809], + [17087,0.819], + [17089,0.741], + [17091,0.769], + [17093,0.712], + [17095,0.802], + [17097,0.755], + [17099,0.784], + [17101,0.819], + [17103,0.802], + [17105,0.785], + [17107,0.807], + [17109,0.829], + [17111,0.762], + [17113,0.784], + [17115,0.777], + [17117,0.787], + [17119,0.78], + [17121,0.77], + [17123,0.795], + [17125,0.793], + [17127,0.775], + [17129,0.781], + [17131,0.784], + [17133,0.776], + [17135,0.8], + [17137,0.811], + [17139,0.749], + [17141,0.773], + [17143,0.762], + [17145,0.81], + [17147,0.775], + [17149,0.774], + [17151,0.851], + [17153,0.781], + [17155,0.805], + [17157,0.808], + [17159,0.77], + [17161,0.777], + [17163,0.764], + [17165,0.783], + [17167,0.776], + [17169,0.812], + [17171,0.781], + [17173,0.787], + [17175,0.784], + [17177,0.784], + [17179,0.772], + [17181,0.788], + [17183,0.762], + [17185,0.778], + [17187,0.781], + [17189,0.784], + [17191,0.773], + [17193,0.784], + [17195,0.777], + [17197,0.747], + [17199,0.781], + [17201,0.764], + [17203,0.757], + [18001,0.687], + [18003,0.742], + [18005,0.76], + [18007,0.751], + [18009,0.784], + [18011,0.735], + [18013,0.822], + [18015,0.777], + [18017,0.767], + [18019,0.773], + [18021,0.77], + [18023,0.738], + [18025,0.771], + [18027,0.707], + [18029,0.772], + [18031,0.757], + [18033,0.756], + [18035,0.815], + [18037,0.753], + [18039,0.723], + [18041,0.779], + [18043,0.772], + [18045,0.779], + [18047,0.761], + [18049,0.764], + [18051,0.763], + [18053,0.792], + [18055,0.78], + [18057,0.726], + [18059,0.765], + [18061,0.774], + [18063,0.747], + [18065,0.795], + [18067,0.773], + [18069,0.785], + [18071,0.755], + [18073,0.764], + [18075,0.747], + [18077,0.794], + [18079,0.768], + [18081,0.751], + [18083,0.786], + [18085,0.759], + [18087,0.672], + [18089,0.763], + [18091,0.784], + [18093,0.781], + [18095,0.782], + [18097,0.753], + [18099,0.746], + [18101,0.777], + [18103,0.786], + [18105,0.842], + [18107,0.773], + [18109,0.771], + [18111,0.786], + [18113,0.748], + [18115,0.808], + [18117,0.769], + [18119,0.788], + [18121,0.785], + [18123,0.786], + [18125,0.771], + [18127,0.778], + [18129,0.776], + [18131,0.771], + [18133,0.805], + [18135,0.77], + [18137,0.762], + [18139,0.774], + [18141,0.763], + [18143,0.776], + [18145,0.772], + [18147,0.779], + [18149,0.764], + [18151,0.795], + [18153,0.803], + [18155,0.749], + [18157,0.794], + [18159,0.792], + [18161,0.786], + [18163,0.783], + [18165,0.779], + [18167,0.795], + [18169,0.793], + [18171,0.78], + [18173,0.76], + [18175,0.771], + [18177,0.779], + [18179,0.754], + [18181,0.766], + [18183,0.769], + [19001,0.786], + [19003,0.791], + [19005,0.769], + [19007,0.781], + [19009,0.794], + [19011,0.764], + [19013,0.783], + [19015,0.783], + [19017,0.777], + [19019,0.733], + [19021,0.741], + [19023,0.767], + [19025,0.788], + [19027,0.755], + [19029,0.778], + [19031,0.769], + [19033,0.794], + [19035,0.785], + [19037,0.771], + [19039,0.754], + [19041,0.774], + [19043,0.787], + [19045,0.772], + [19047,0.752], + [19049,0.721], + [19051,0.706], + [19053,0.783], + [19055,0.76], + [19057,0.773], + [19059,0.811], + [19061,0.771], + [19063,0.792], + [19065,0.79], + [19067,0.774], + [19069,0.769], + [19071,0.782], + [19073,0.772], + [19075,0.769], + [19077,0.772], + [19079,0.771], + [19081,0.779], + [19083,0.79], + [19085,0.77], + [19087,0.781], + [19089,0.746], + [19091,0.767], + [19093,0.765], + [19095,0.77], + [19097,0.778], + [19099,0.776], + [19101,0.842], + [19103,0.799], + [19105,0.786], + [19107,0.772], + [19109,0.78], + [19111,0.782], + [19113,0.765], + [19115,0.774], + [19117,0.768], + [19119,0.717], + [19121,0.752], + [19123,0.76], + [19125,0.767], + [19127,0.748], + [19129,0.761], + [19131,0.766], + [19133,0.795], + [19135,0.764], + [19137,0.771], + [19139,0.751], + [19141,0.763], + [19143,0.766], + [19145,0.801], + [19147,0.763], + [19149,0.75], + [19151,0.784], + [19153,0.75], + [19155,0.765], + [19157,0.804], + [19159,0.759], + [19161,0.777], + [19163,0.761], + [19165,0.777], + [19167,0.729], + [19169,0.834], + [19171,0.76], + [19173,0.767], + [19175,0.775], + [19177,0.767], + [19179,0.773], + [19181,0.752], + [19183,0.753], + [19185,0.748], + [19187,0.787], + [19189,0.783], + [19191,0.815], + [19193,0.738], + [19195,0.79], + [19197,0.76], + [20001,0.774], + [20003,0.74], + [20005,0.765], + [20007,0.761], + [20009,0.763], + [20011,0.744], + [20013,0.748], + [20015,0.743], + [20017,0.771], + [20019,0.777], + [20021,0.763], + [20023,0.787], + [20025,0.753], + [20027,0.76], + [20029,0.764], + [20031,0.785], + [20033,0.778], + [20035,0.762], + [20037,0.781], + [20039,0.81], + [20041,0.762], + [20043,0.809], + [20045,0.815], + [20047,0.772], + [20049,0.784], + [20051,0.78], + [20053,0.816], + [20055,0.693], + [20057,0.697], + [20059,0.759], + [20061,0.691], + [20063,0.785], + [20065,0.796], + [20067,0.688], + [20069,0.706], + [20071,0.739], + [20073,0.786], + [20075,0.724], + [20077,0.753], + [20079,0.755], + [20081,0.713], + [20083,0.783], + [20085,0.75], + [20087,0.77], + [20089,0.808], + [20091,0.754], + [20093,0.713], + [20095,0.777], + [20097,0.765], + [20099,0.762], + [20101,0.753], + [20103,0.762], + [20105,0.774], + [20107,0.773], + [20109,0.753], + [20111,0.776], + [20113,0.772], + [20115,0.784], + [20117,0.76], + [20119,0.749], + [20121,0.754], + [20123,0.777], + [20125,0.763], + [20127,0.784], + [20129,0.746], + [20131,0.734], + [20133,0.752], + [20135,0.785], + [20137,0.806], + [20139,0.767], + [20141,0.789], + [20143,0.771], + [20145,0.815], + [20147,0.776], + [20149,0.705], + [20151,0.745], + [20153,0.795], + [20155,0.773], + [20157,0.792], + [20159,0.771], + [20161,0.834], + [20163,0.779], + [20165,0.782], + [20167,0.792], + [20169,0.765], + [20171,0.733], + [20173,0.741], + [20175,0.684], + [20177,0.762], + [20179,0.763], + [20181,0.764], + [20183,0.805], + [20185,0.768], + [20187,0.701], + [20189,0.706], + [20191,0.754], + [20193,0.773], + [20195,0.823], + [20197,0.762], + [20199,0.74], + [20201,0.776], + [20203,0.749], + [20205,0.76], + [20207,0.783], + [20209,0.721], + [21001,0.805], + [21003,0.762], + [21005,0.761], + [21007,0.78], + [21009,0.761], + [21011,0.741], + [21013,0.787], + [21015,0.736], + [21017,0.774], + [21019,0.787], + [21021,0.8], + [21023,0.761], + [21025,0.796], + [21027,0.771], + [21029,0.779], + [21031,0.774], + [21033,0.777], + [21035,0.819], + [21037,0.788], + [21039,0.772], + [21041,0.742], + [21043,0.777], + [21045,0.773], + [21047,0.729], + [21049,0.776], + [21051,0.787], + [21053,0.772], + [21055,0.775], + [21057,0.779], + [21059,0.756], + [21061,0.814], + [21063,0.816], + [21065,0.784], + [21067,0.791], + [21069,0.755], + [21071,0.784], + [21073,0.791], + [21075,0.781], + [21077,0.753], + [21079,0.776], + [21081,0.733], + [21083,0.759], + [21085,0.761], + [21087,0.789], + [21089,0.785], + [21091,0.748], + [21093,0.754], + [21095,0.771], + [21097,0.77], + [21099,0.751], + [21101,0.771], + [21103,0.765], + [21105,0.808], + [21107,0.77], + [21109,0.775], + [21111,0.777], + [21113,0.756], + [21115,0.775], + [21117,0.76], + [21119,0.799], + [21121,0.766], + [21123,0.774], + [21125,0.769], + [21127,0.762], + [21129,0.796], + [21131,0.785], + [21133,0.784], + [21135,0.777], + [21137,0.763], + [21139,0.791], + [21141,0.764], + [21143,0.861], + [21145,0.779], + [21147,0.774], + [21149,0.763], + [21151,0.791], + [21153,0.771], + [21155,0.757], + [21157,0.795], + [21159,0.801], + [21161,0.773], + [21163,0.771], + [21165,0.791], + [21167,0.779], + [21169,0.77], + [21171,0.774], + [21173,0.761], + [21175,0.814], + [21177,0.796], + [21179,0.761], + [21181,0.762], + [21183,0.752], + [21185,0.744], + [21187,0.775], + [21189,0.798], + [21191,0.767], + [21193,0.777], + [21195,0.793], + [21197,0.759], + [21199,0.777], + [21201,0.761], + [21203,0.779], + [21205,0.811], + [21207,0.774], + [21209,0.746], + [21211,0.767], + [21213,0.755], + [21215,0.77], + [21217,0.774], + [21219,0.733], + [21221,0.78], + [21223,0.781], + [21225,0.808], + [21227,0.773], + [21229,0.767], + [21231,0.79], + [21233,0.768], + [21235,0.749], + [21237,0.769], + [21239,0.777], + [22001,0.738], + [22003,0.776], + [22005,0.73], + [22007,0.78], + [22009,0.764], + [22011,0.752], + [22013,0.774], + [22015,0.751], + [22017,0.761], + [22019,0.75], + [22021,0.767], + [22023,0.774], + [22025,0.782], + [22027,0.819], + [22029,0.762], + [22031,0.755], + [22033,0.772], + [22035,0.821], + [22037,0.818], + [22039,0.751], + [22041,0.745], + [22043,0.793], + [22045,0.737], + [22047,0.789], + [22049,0.786], + [22051,0.779], + [22053,0.746], + [22055,0.762], + [22057,0.766], + [22059,0.765], + [22061,0.799], + [22063,0.741], + [22065,0.761], + [22067,0.757], + [22069,0.761], + [22071,0.799], + [22073,0.749], + [22075,0.739], + [22077,0.777], + [22079,0.751], + [22081,0.754], + [22083,0.764], + [22085,0.763], + [22087,0.732], + [22089,0.754], + [22091,0.787], + [22093,0.771], + [22095,0.752], + [22097,0.732], + [22099,0.757], + [22101,0.758], + [22103,0.759], + [22105,0.754], + [22107,0.762], + [22109,0.745], + [22111,0.779], + [22113,0.744], + [22115,0.749], + [22117,0.759], + [22119,0.774], + [22121,0.761], + [22123,0.771], + [22125,0.837], + [22127,0.794], + [23001,0.782], + [23003,0.816], + [23005,0.812], + [23007,0.819], + [23009,0.827], + [23011,0.806], + [23013,0.819], + [23015,0.833], + [23017,0.813], + [23019,0.817], + [23021,0.827], + [23023,0.81], + [23025,0.807], + [23027,0.812], + [23029,0.81], + [23031,0.81], + [24001,0.826], + [24003,0.776], + [24005,0.784], + [24009,0.767], + [24011,0.763], + [24013,0.781], + [24015,0.772], + [24017,0.759], + [24019,0.788], + [24021,0.766], + [24023,0.812], + [24025,0.776], + [24027,0.756], + [24029,0.842], + [24031,0.767], + [24033,0.777], + [24035,0.783], + [24037,0.756], + [24039,0.827], + [24041,0.816], + [24043,0.781], + [24045,0.781], + [24047,0.827], + [24510,0.793], + [25001,0.847], + [25003,0.829], + [25005,0.792], + [25007,0.815], + [25009,0.786], + [25011,0.825], + [25013,0.783], + [25015,0.852], + [25017,0.8], + [25019,0.793], + [25021,0.789], + [25023,0.783], + [25025,0.832], + [25027,0.787], + [26001,0.87], + [26003,0.849], + [26005,0.756], + [26007,0.813], + [26009,0.817], + [26011,0.819], + [26013,0.821], + [26015,0.777], + [26017,0.796], + [26019,0.815], + [26021,0.781], + [26023,0.769], + [26025,0.77], + [26027,0.791], + [26029,0.807], + [26031,0.833], + [26033,0.817], + [26035,0.802], + [26037,0.774], + [26039,0.819], + [26041,0.8], + [26043,0.802], + [26045,0.789], + [26047,0.805], + [26049,0.773], + [26051,0.808], + [26053,0.844], + [26055,0.796], + [26057,0.801], + [26059,0.78], + [26061,0.798], + [26063,0.807], + [26065,0.801], + [26067,0.769], + [26069,0.835], + [26071,0.84], + [26073,0.826], + [26075,0.783], + [26077,0.783], + [26079,0.79], + [26081,0.756], + [26083,0.852], + [26085,0.836], + [26087,0.791], + [26089,0.837], + [26091,0.788], + [26093,0.783], + [26095,0.835], + [26097,0.843], + [26099,0.788], + [26101,0.825], + [26103,0.82], + [26105,0.795], + [26107,0.814], + [26109,0.815], + [26111,0.785], + [26113,0.768], + [26115,0.784], + [26117,0.775], + [26119,0.851], + [26121,0.767], + [26123,0.774], + [26125,0.788], + [26127,0.77], + [26129,0.815], + [26131,0.876], + [26133,0.773], + [26135,0.808], + [26137,0.789], + [26139,0.758], + [26141,0.838], + [26143,0.847], + [26145,0.785], + [26147,0.789], + [26149,0.753], + [26151,0.783], + [26153,0.827], + [26155,0.786], + [26157,0.793], + [26159,0.765], + [26161,0.812], + [26163,0.762], + [26165,0.767], + [27001,0.833], + [27003,0.76], + [27005,0.756], + [27007,0.748], + [27009,0.747], + [27011,0.793], + [27013,0.802], + [27015,0.783], + [27017,0.774], + [27019,0.73], + [27021,0.789], + [27023,0.767], + [27025,0.771], + [27027,0.756], + [27029,0.752], + [27031,0.847], + [27033,0.757], + [27035,0.782], + [27037,0.755], + [27039,0.737], + [27041,0.785], + [27043,0.78], + [27045,0.756], + [27047,0.781], + [27049,0.776], + [27051,0.776], + [27053,0.779], + [27055,0.783], + [27057,0.789], + [27059,0.762], + [27061,0.79], + [27063,0.784], + [27065,0.785], + [27067,0.756], + [27069,0.785], + [27071,0.817], + [27073,0.806], + [27075,0.824], + [27077,0.788], + [27079,0.76], + [27081,0.767], + [27083,0.745], + [27085,0.768], + [27087,0.684], + [27089,0.772], + [27091,0.782], + [27093,0.757], + [27095,0.759], + [27097,0.766], + [27099,0.75], + [27101,0.785], + [27103,0.78], + [27105,0.728], + [27107,0.764], + [27109,0.754], + [27111,0.783], + [27113,0.766], + [27115,0.801], + [27117,0.745], + [27119,0.759], + [27121,0.79], + [27123,0.767], + [27125,0.755], + [27127,0.757], + [27129,0.77], + [27131,0.781], + [27133,0.745], + [27135,0.756], + [27137,0.809], + [27139,0.721], + [27141,0.734], + [27143,0.763], + [27145,0.769], + [27147,0.749], + [27149,0.788], + [27151,0.774], + [27153,0.762], + [27155,0.803], + [27157,0.785], + [27159,0.747], + [27161,0.767], + [27163,0.754], + [27165,0.755], + [27167,0.773], + [27169,0.819], + [27171,0.719], + [27173,0.77], + [28001,0.792], + [28003,0.767], + [28005,0.793], + [28007,0.747], + [28009,0.785], + [28011,0.751], + [28013,0.762], + [28015,0.808], + [28017,0.75], + [28019,0.781], + [28021,0.783], + [28023,0.776], + [28025,0.769], + [28027,0.727], + [28029,0.768], + [28031,0.752], + [28033,0.741], + [28035,0.768], + [28037,0.763], + [28039,0.735], + [28041,0.806], + [28043,0.762], + [28045,0.79], + [28047,0.759], + [28049,0.755], + [28051,0.741], + [28053,0.732], + [28055,0.854], + [28057,0.782], + [28059,0.764], + [28061,0.773], + [28063,0.767], + [28065,0.799], + [28067,0.746], + [28069,0.811], + [28071,0.816], + [28073,0.749], + [28075,0.763], + [28077,0.755], + [28079,0.734], + [28081,0.746], + [28083,0.722], + [28085,0.761], + [28087,0.763], + [28089,0.748], + [28091,0.77], + [28093,0.787], + [28095,0.773], + [28097,0.773], + [28099,0.724], + [28101,0.747], + [28103,0.749], + [28105,0.826], + [28107,0.749], + [28109,0.775], + [28111,0.768], + [28113,0.737], + [28115,0.734], + [28117,0.774], + [28119,0.764], + [28121,0.765], + [28123,0.734], + [28125,0.756], + [28127,0.76], + [28129,0.762], + [28131,0.783], + [28133,0.771], + [28135,0.801], + [28137,0.769], + [28139,0.756], + [28141,0.782], + [28143,0.705], + [28145,0.749], + [28147,0.767], + [28149,0.76], + [28151,0.739], + [28153,0.753], + [28155,0.763], + [28157,0.786], + [28159,0.776], + [28161,0.774], + [28163,0.777], + [29001,0.814], + [29003,0.769], + [29005,0.807], + [29007,0.769], + [29009,0.773], + [29011,0.762], + [29013,0.763], + [29015,0.826], + [29017,0.782], + [29019,0.797], + [29021,0.773], + [29023,0.765], + [29025,0.762], + [29027,0.788], + [29029,0.819], + [29031,0.786], + [29033,0.773], + [29035,0.761], + [29037,0.757], + [29039,0.759], + [29041,0.772], + [29043,0.745], + [29045,0.772], + [29047,0.757], + [29049,0.759], + [29051,0.775], + [29053,0.783], + [29055,0.77], + [29057,0.792], + [29059,0.764], + [29061,0.743], + [29063,0.833], + [29065,0.772], + [29067,0.783], + [29069,0.744], + [29071,0.769], + [29073,0.793], + [29075,0.752], + [29077,0.791], + [29079,0.767], + [29081,0.755], + [29083,0.779], + [29085,0.83], + [29087,0.796], + [29089,0.78], + [29091,0.761], + [29093,0.792], + [29095,0.763], + [29097,0.749], + [29099,0.766], + [29101,0.785], + [29103,0.761], + [29105,0.755], + [29107,0.77], + [29109,0.746], + [29111,0.775], + [29113,0.745], + [29115,0.763], + [29117,0.781], + [29119,0.746], + [29121,0.763], + [29123,0.771], + [29125,0.799], + [29127,0.761], + [29129,0.756], + [29131,0.762], + [29133,0.789], + [29135,0.754], + [29137,0.786], + [29139,0.777], + [29141,0.771], + [29143,0.766], + [29145,0.76], + [29147,0.84], + [29149,0.773], + [29151,0.769], + [29153,0.801], + [29155,0.74], + [29157,0.763], + [29159,0.752], + [29161,0.789], + [29163,0.781], + [29165,0.762], + [29167,0.769], + [29169,0.78], + [29171,0.767], + [29173,0.787], + [29175,0.781], + [29177,0.772], + [29179,0.801], + [29181,0.77], + [29183,0.764], + [29185,0.805], + [29186,0.782], + [29187,0.79], + [29189,0.779], + [29195,0.769], + [29197,0.737], + [29199,0.712], + [29201,0.762], + [29203,0.781], + [29205,0.758], + [29207,0.776], + [29209,0.833], + [29211,0.777], + [29213,0.788], + [29215,0.784], + [29217,0.758], + [29219,0.762], + [29221,0.772], + [29223,0.785], + [29225,0.73], + [29227,0.798], + [29229,0.745], + [29510,0.806], + [30001,0.824], + [30003,0.661], + [30005,0.701], + [30007,0.805], + [30009,0.823], + [30011,0.784], + [30013,0.775], + [30015,0.763], + [30017,0.78], + [30019,0.772], + [30021,0.788], + [30023,0.841], + [30025,0.751], + [30027,0.791], + [30029,0.78], + [30031,0.8], + [30033,0.795], + [30035,0.684], + [30037,0.856], + [30039,0.811], + [30041,0.723], + [30043,0.789], + [30045,0.796], + [30047,0.761], + [30049,0.784], + [30051,0.773], + [30053,0.818], + [30055,0.765], + [30057,0.847], + [30059,0.808], + [30061,0.816], + [30063,0.81], + [30065,0.802], + [30067,0.824], + [30069,0.799], + [30071,0.766], + [30073,0.755], + [30075,0.838], + [30077,0.85], + [30079,0.772], + [30081,0.807], + [30083,0.747], + [30085,0.665], + [30087,0.714], + [30089,0.822], + [30091,0.797], + [30093,0.798], + [30095,0.778], + [30097,0.811], + [30099,0.759], + [30101,0.81], + [30103,0.841], + [30105,0.78], + [30107,0.749], + [30109,0.732], + [30111,0.764], + [31001,0.762], + [31003,0.765], + [31005,0.721], + [31007,0.774], + [31009,0.782], + [31011,0.767], + [31013,0.745], + [31015,0.797], + [31017,0.801], + [31019,0.765], + [31021,0.775], + [31023,0.763], + [31025,0.759], + [31027,0.746], + [31029,0.769], + [31031,0.768], + [31033,0.765], + [31035,0.753], + [31037,0.702], + [31039,0.754], + [31041,0.764], + [31043,0.709], + [31045,0.821], + [31047,0.726], + [31049,0.804], + [31051,0.75], + [31053,0.76], + [31055,0.743], + [31057,0.761], + [31059,0.799], + [31061,0.814], + [31063,0.804], + [31065,0.777], + [31067,0.774], + [31069,0.799], + [31071,0.802], + [31073,0.825], + [31075,0.762], + [31077,0.765], + [31079,0.726], + [31081,0.763], + [31083,0.758], + [31085,0.787], + [31087,0.771], + [31089,0.756], + [31091,0.834], + [31093,0.758], + [31095,0.781], + [31097,0.814], + [31099,0.749], + [31101,0.799], + [31103,0.738], + [31105,0.785], + [31107,0.759], + [31109,0.771], + [31111,0.763], + [31113,0.724], + [31115,0.846], + [31117,0.846], + [31119,0.749], + [31121,0.777], + [31123,0.763], + [31125,0.779], + [31127,0.79], + [31129,0.791], + [31131,0.76], + [31133,0.791], + [31135,0.752], + [31137,0.763], + [31139,0.749], + [31141,0.738], + [31143,0.771], + [31145,0.772], + [31147,0.786], + [31149,0.812], + [31151,0.752], + [31153,0.724], + [31155,0.757], + [31157,0.751], + [31159,0.767], + [31161,0.778], + [31163,0.793], + [31165,0.792], + [31167,0.749], + [31169,0.772], + [31171,0.803], + [31173,0.641], + [31175,0.777], + [31177,0.754], + [31179,0.798], + [31181,0.772], + [31183,0.799], + [31185,0.77], + [32001,0.772], + [32003,0.766], + [32005,0.83], + [32007,0.726], + [32009,0.834], + [32011,0.77], + [32013,0.729], + [32015,0.73], + [32017,0.819], + [32019,0.784], + [32021,0.815], + [32023,0.829], + [32027,0.832], + [32029,0.821], + [32031,0.782], + [32033,0.795], + [32510,0.795], + [33001,0.813], + [33003,0.839], + [33005,0.82], + [33007,0.835], + [33009,0.836], + [33011,0.793], + [33013,0.806], + [33015,0.803], + [33017,0.813], + [33019,0.811], + [34001,0.785], + [34003,0.787], + [34005,0.789], + [34007,0.771], + [34009,0.824], + [34011,0.762], + [34013,0.762], + [34015,0.779], + [34017,0.795], + [34019,0.801], + [34021,0.786], + [34023,0.781], + [34025,0.786], + [34027,0.786], + [34029,0.761], + [34031,0.761], + [34033,0.783], + [34035,0.778], + [34037,0.799], + [34039,0.765], + [34041,0.8], + [35001,0.779], + [35003,0.847], + [35005,0.732], + [35006,0.763], + [35007,0.816], + [35009,0.734], + [35011,0.658], + [35013,0.752], + [35015,0.735], + [35017,0.798], + [35019,0.809], + [35021,0.862], + [35023,0.779], + [35025,0.699], + [35027,0.816], + [35028,0.772], + [35029,0.736], + [35031,0.71], + [35033,0.884], + [35035,0.766], + [35037,0.773], + [35039,0.765], + [35041,0.756], + [35043,0.764], + [35045,0.731], + [35047,0.81], + [35049,0.816], + [35051,0.842], + [35053,0.772], + [35055,0.82], + [35057,0.789], + [35059,0.798], + [35061,0.763], + [36001,0.815], + [36003,0.798], + [36005,0.75], + [36007,0.805], + [36009,0.777], + [36011,0.801], + [36013,0.795], + [36015,0.784], + [36017,0.792], + [36019,0.82], + [36021,0.824], + [36023,0.808], + [36025,0.829], + [36027,0.809], + [36029,0.796], + [36031,0.836], + [36033,0.801], + [36035,0.796], + [36037,0.797], + [36039,0.833], + [36041,0.862], + [36043,0.793], + [36045,0.758], + [36047,0.77], + [36049,0.769], + [36051,0.821], + [36053,0.806], + [36055,0.79], + [36057,0.771], + [36059,0.783], + [36061,0.856], + [36063,0.798], + [36065,0.787], + [36067,0.786], + [36069,0.796], + [36071,0.744], + [36073,0.803], + [36075,0.788], + [36077,0.838], + [36079,0.799], + [36081,0.798], + [36083,0.805], + [36085,0.781], + [36087,0.72], + [36089,0.796], + [36091,0.797], + [36093,0.784], + [36095,0.822], + [36097,0.807], + [36099,0.8], + [36101,0.783], + [36103,0.786], + [36105,0.788], + [36107,0.789], + [36109,0.851], + [36111,0.821], + [36113,0.816], + [36115,0.81], + [36117,0.785], + [36119,0.778], + [36121,0.801], + [36123,0.778], + [37001,0.776], + [37003,0.797], + [37005,0.826], + [37007,0.806], + [37009,0.819], + [37011,0.853], + [37013,0.796], + [37015,0.825], + [37017,0.791], + [37019,0.844], + [37021,0.813], + [37023,0.811], + [37025,0.742], + [37027,0.796], + [37029,0.773], + [37031,0.822], + [37033,0.812], + [37035,0.776], + [37037,0.795], + [37039,0.83], + [37041,0.793], + [37043,0.825], + [37045,0.78], + [37047,0.787], + [37049,0.782], + [37051,0.753], + [37053,0.779], + [37055,0.807], + [37057,0.778], + [37059,0.787], + [37061,0.757], + [37063,0.789], + [37065,0.772], + [37067,0.768], + [37069,0.778], + [37071,0.773], + [37073,0.796], + [37075,0.794], + [37077,0.793], + [37079,0.795], + [37081,0.776], + [37083,0.785], + [37085,0.736], + [37087,0.817], + [37089,0.808], + [37091,0.81], + [37093,0.724], + [37095,0.791], + [37097,0.768], + [37099,0.832], + [37101,0.743], + [37103,0.811], + [37105,0.756], + [37107,0.775], + [37109,0.786], + [37111,0.795], + [37113,0.816], + [37115,0.817], + [37117,0.795], + [37119,0.762], + [37121,0.813], + [37123,0.776], + [37125,0.787], + [37127,0.778], + [37129,0.813], + [37131,0.823], + [37133,0.756], + [37135,0.803], + [37137,0.848], + [37139,0.777], + [37141,0.777], + [37143,0.811], + [37145,0.788], + [37147,0.785], + [37149,0.836], + [37151,0.772], + [37153,0.772], + [37155,0.748], + [37157,0.795], + [37159,0.776], + [37161,0.793], + [37163,0.755], + [37165,0.771], + [37167,0.783], + [37169,0.807], + [37171,0.786], + [37173,0.77], + [37175,0.84], + [37177,0.861], + [37179,0.727], + [37181,0.761], + [37183,0.758], + [37185,0.817], + [37187,0.797], + [37189,0.87], + [37191,0.762], + [37193,0.794], + [37195,0.769], + [37197,0.788], + [37199,0.814], + [38001,0.778], + [38003,0.811], + [38005,0.653], + [38007,0.786], + [38009,0.788], + [38011,0.755], + [38013,0.727], + [38015,0.768], + [38017,0.776], + [38019,0.786], + [38021,0.766], + [38023,0.803], + [38025,0.76], + [38027,0.785], + [38029,0.809], + [38031,0.786], + [38033,0.778], + [38035,0.792], + [38037,0.793], + [38039,0.788], + [38041,0.797], + [38043,0.786], + [38045,0.789], + [38047,0.797], + [38049,0.762], + [38051,0.826], + [38053,0.684], + [38055,0.785], + [38057,0.774], + [38059,0.783], + [38061,0.73], + [38063,0.817], + [38065,0.737], + [38067,0.793], + [38069,0.787], + [38071,0.768], + [38073,0.793], + [38075,0.752], + [38077,0.785], + [38079,0.662], + [38081,0.803], + [38083,0.836], + [38085,0.641], + [38087,0.801], + [38089,0.741], + [38091,0.804], + [38093,0.8], + [38095,0.777], + [38097,0.778], + [38099,0.772], + [38101,0.763], + [38103,0.786], + [38105,0.719], + [39001,0.759], + [39003,0.768], + [39005,0.773], + [39007,0.778], + [39009,0.853], + [39011,0.758], + [39013,0.81], + [39015,0.77], + [39017,0.764], + [39019,0.791], + [39021,0.775], + [39023,0.774], + [39025,0.767], + [39027,0.766], + [39029,0.795], + [39031,0.764], + [39033,0.781], + [39035,0.791], + [39037,0.761], + [39039,0.77], + [39041,0.733], + [39043,0.795], + [39045,0.759], + [39047,0.763], + [39049,0.766], + [39051,0.762], + [39053,0.77], + [39055,0.768], + [39057,0.794], + [39059,0.778], + [39061,0.769], + [39063,0.777], + [39065,0.768], + [39067,0.79], + [39069,0.765], + [39071,0.76], + [39073,0.779], + [39075,0.683], + [39077,0.757], + [39079,0.759], + [39081,0.807], + [39083,0.772], + [39085,0.798], + [39087,0.78], + [39089,0.767], + [39091,0.766], + [39093,0.778], + [39095,0.769], + [39097,0.794], + [39099,0.798], + [39101,0.789], + [39103,0.774], + [39105,0.784], + [39107,0.743], + [39109,0.768], + [39111,0.791], + [39113,0.778], + [39115,0.789], + [39117,0.768], + [39119,0.771], + [39121,0.815], + [39123,0.812], + [39125,0.763], + [39127,0.763], + [39129,0.783], + [39131,0.768], + [39133,0.811], + [39135,0.774], + [39137,0.745], + [39139,0.783], + [39141,0.785], + [39143,0.773], + [39145,0.782], + [39147,0.78], + [39149,0.749], + [39151,0.784], + [39153,0.789], + [39155,0.794], + [39157,0.771], + [39159,0.753], + [39161,0.766], + [39163,0.774], + [39165,0.75], + [39167,0.803], + [39169,0.756], + [39171,0.773], + [39173,0.796], + [39175,0.769], + [40001,0.73], + [40003,0.808], + [40005,0.776], + [40007,0.738], + [40009,0.75], + [40011,0.794], + [40013,0.765], + [40015,0.748], + [40017,0.738], + [40019,0.748], + [40021,0.777], + [40023,0.757], + [40025,0.744], + [40027,0.783], + [40029,0.754], + [40031,0.763], + [40033,0.772], + [40035,0.779], + [40037,0.761], + [40039,0.747], + [40041,0.795], + [40043,0.726], + [40045,0.768], + [40047,0.748], + [40049,0.749], + [40051,0.759], + [40053,0.756], + [40055,0.797], + [40057,0.758], + [40059,0.741], + [40061,0.759], + [40063,0.779], + [40065,0.746], + [40067,0.756], + [40069,0.763], + [40071,0.75], + [40073,0.73], + [40075,0.763], + [40077,0.784], + [40079,0.757], + [40081,0.757], + [40083,0.767], + [40085,0.753], + [40087,0.743], + [40089,0.745], + [40091,0.799], + [40093,0.743], + [40095,0.767], + [40097,0.764], + [40099,0.767], + [40101,0.755], + [40103,0.756], + [40105,0.77], + [40107,0.77], + [40109,0.744], + [40111,0.762], + [40113,0.779], + [40115,0.75], + [40117,0.762], + [40119,0.809], + [40121,0.778], + [40123,0.765], + [40125,0.761], + [40127,0.778], + [40129,0.744], + [40131,0.762], + [40133,0.75], + [40135,0.763], + [40137,0.767], + [40139,0.713], + [40141,0.763], + [40143,0.747], + [40145,0.755], + [40147,0.762], + [40149,0.749], + [40151,0.794], + [40153,0.748], + [41001,0.804], + [41003,0.836], + [41005,0.783], + [41007,0.809], + [41009,0.786], + [41011,0.815], + [41013,0.802], + [41015,0.854], + [41017,0.797], + [41019,0.806], + [41021,0.801], + [41023,0.821], + [41025,0.794], + [41027,0.759], + [41029,0.793], + [41031,0.765], + [41033,0.804], + [41035,0.783], + [41037,0.812], + [41039,0.814], + [41041,0.831], + [41043,0.773], + [41045,0.746], + [41047,0.752], + [41049,0.725], + [41051,0.81], + [41053,0.772], + [41055,0.831], + [41057,0.809], + [41059,0.746], + [41061,0.78], + [41063,0.817], + [41065,0.775], + [41067,0.768], + [41069,0.83], + [41071,0.775], + [42001,0.797], + [42003,0.812], + [42005,0.808], + [42007,0.806], + [42009,0.803], + [42011,0.775], + [42013,0.796], + [42015,0.78], + [42017,0.794], + [42019,0.798], + [42021,0.807], + [42023,0.834], + [42025,0.806], + [42027,0.85], + [42029,0.771], + [42031,0.811], + [42033,0.814], + [42035,0.798], + [42037,0.823], + [42039,0.791], + [42041,0.797], + [42043,0.775], + [42045,0.779], + [42047,0.806], + [42049,0.785], + [42051,0.807], + [42053,0.893], + [42055,0.775], + [42057,0.799], + [42059,0.807], + [42061,0.818], + [42063,0.82], + [42065,0.788], + [42067,0.774], + [42069,0.796], + [42071,0.763], + [42073,0.801], + [42075,0.771], + [42077,0.773], + [42079,0.803], + [42081,0.795], + [42083,0.802], + [42085,0.804], + [42087,0.775], + [42089,0.802], + [42091,0.783], + [42093,0.798], + [42095,0.799], + [42097,0.804], + [42099,0.784], + [42101,0.781], + [42103,0.819], + [42105,0.792], + [42107,0.802], + [42109,0.791], + [42111,0.817], + [42113,0.883], + [42115,0.812], + [42117,0.801], + [42119,0.821], + [42121,0.804], + [42123,0.805], + [42125,0.804], + [42127,0.833], + [42129,0.815], + [42131,0.804], + [42133,0.778], + [44001,0.809], + [44003,0.81], + [44005,0.829], + [44007,0.793], + [44009,0.832], + [45001,0.794], + [45003,0.782], + [45005,0.812], + [45007,0.77], + [45009,0.799], + [45011,0.759], + [45013,0.81], + [45015,0.76], + [45017,0.806], + [45019,0.802], + [45021,0.768], + [45023,0.775], + [45025,0.778], + [45027,0.805], + [45029,0.776], + [45031,0.776], + [45033,0.746], + [45035,0.752], + [45037,0.817], + [45039,0.807], + [45041,0.762], + [45043,0.813], + [45045,0.768], + [45047,0.77], + [45049,0.784], + [45051,0.817], + [45053,0.791], + [45055,0.765], + [45057,0.783], + [45059,0.78], + [45061,0.804], + [45063,0.767], + [45065,0.878], + [45067,0.77], + [45069,0.794], + [45071,0.782], + [45073,0.798], + [45075,0.779], + [45077,0.81], + [45079,0.785], + [45081,0.781], + [45083,0.767], + [45085,0.758], + [45087,0.785], + [45089,0.788], + [45091,0.756], + [46003,0.733], + [46005,0.73], + [46007,0.642], + [46009,0.807], + [46011,0.796], + [46013,0.765], + [46015,0.748], + [46017,0.621], + [46019,0.753], + [46021,0.791], + [46023,0.703], + [46025,0.74], + [46027,0.831], + [46029,0.762], + [46031,0.636], + [46033,0.841], + [46035,0.778], + [46037,0.776], + [46039,0.762], + [46041,0.63], + [46043,0.754], + [46045,0.752], + [46047,0.828], + [46049,0.777], + [46051,0.78], + [46053,0.765], + [46055,0.727], + [46057,0.685], + [46059,0.784], + [46061,0.688], + [46063,0.77], + [46065,0.767], + [46067,0.752], + [46069,0.808], + [46071,0.684], + [46073,0.79], + [46075,0.818], + [46077,0.777], + [46079,0.794], + [46081,0.823], + [46083,0.718], + [46085,0.706], + [46087,0.726], + [46089,0.786], + [46091,0.735], + [46093,0.768], + [46095,0.682], + [46097,0.751], + [46099,0.747], + [46101,0.744], + [46102,0.629], + [46103,0.767], + [46105,0.785], + [46107,0.784], + [46109,0.728], + [46111,0.76], + [46115,0.757], + [46117,0.772], + [46119,0.773], + [46121,0.582], + [46123,0.77], + [46125,0.76], + [46127,0.758], + [46129,0.769], + [46135,0.788], + [46137,0.697], + [47001,0.788], + [47003,0.746], + [47005,0.805], + [47007,0.809], + [47009,0.796], + [47011,0.779], + [47013,0.793], + [47015,0.787], + [47017,0.786], + [47019,0.813], + [47021,0.778], + [47023,0.775], + [47025,0.81], + [47027,0.797], + [47029,0.794], + [47031,0.76], + [47033,0.761], + [47035,0.822], + [47037,0.789], + [47039,0.786], + [47041,0.782], + [47043,0.766], + [47045,0.761], + [47047,0.804], + [47049,0.789], + [47051,0.797], + [47053,0.759], + [47055,0.791], + [47057,0.796], + [47059,0.806], + [47061,0.783], + [47063,0.767], + [47065,0.791], + [47067,0.789], + [47069,0.81], + [47071,0.793], + [47073,0.798], + [47075,0.773], + [47077,0.772], + [47079,0.793], + [47081,0.788], + [47083,0.785], + [47085,0.79], + [47087,0.819], + [47089,0.801], + [47091,0.831], + [47093,0.789], + [47095,0.857], + [47097,0.77], + [47099,0.749], + [47101,0.781], + [47103,0.776], + [47105,0.803], + [47107,0.788], + [47109,0.78], + [47111,0.757], + [47113,0.774], + [47115,0.788], + [47117,0.763], + [47119,0.766], + [47121,0.795], + [47123,0.785], + [47125,0.731], + [47127,0.799], + [47129,0.806], + [47131,0.781], + [47133,0.78], + [47135,0.779], + [47137,0.817], + [47139,0.802], + [47141,0.791], + [47143,0.768], + [47145,0.811], + [47147,0.758], + [47149,0.752], + [47151,0.758], + [47153,0.797], + [47155,0.795], + [47157,0.749], + [47159,0.768], + [47161,0.787], + [47163,0.805], + [47165,0.763], + [47167,0.754], + [47169,0.811], + [47171,0.827], + [47173,0.782], + [47175,0.812], + [47177,0.763], + [47179,0.807], + [47181,0.817], + [47183,0.807], + [47185,0.777], + [47187,0.726], + [47189,0.762], + [48001,0.805], + [48003,0.685], + [48005,0.743], + [48007,0.812], + [48009,0.783], + [48011,0.769], + [48013,0.725], + [48015,0.76], + [48017,0.71], + [48019,0.829], + [48021,0.745], + [48023,0.791], + [48025,0.788], + [48027,0.722], + [48029,0.743], + [48031,0.817], + [48033,0.708], + [48035,0.787], + [48037,0.763], + [48039,0.735], + [48041,0.794], + [48043,0.808], + [48045,0.837], + [48047,0.735], + [48049,0.778], + [48051,0.778], + [48053,0.786], + [48055,0.759], + [48057,0.753], + [48059,0.776], + [48061,0.692], + [48063,0.736], + [48065,0.754], + [48067,0.774], + [48069,0.709], + [48071,0.72], + [48073,0.744], + [48075,0.823], + [48077,0.796], + [48079,0.729], + [48081,0.791], + [48083,0.786], + [48085,0.737], + [48087,0.749], + [48089,0.765], + [48091,0.773], + [48093,0.777], + [48095,0.848], + [48097,0.761], + [48099,0.768], + [48101,0.688], + [48103,0.694], + [48105,0.757], + [48107,0.731], + [48109,0.712], + [48111,0.685], + [48113,0.736], + [48115,0.74], + [48117,0.687], + [48119,0.767], + [48121,0.749], + [48123,0.774], + [48125,0.799], + [48127,0.706], + [48129,0.8], + [48131,0.743], + [48133,0.791], + [48135,0.698], + [48137,0.852], + [48139,0.732], + [48141,0.725], + [48143,0.791], + [48145,0.787], + [48147,0.788], + [48149,0.795], + [48151,0.774], + [48153,0.732], + [48155,0.819], + [48157,0.723], + [48159,0.758], + [48161,0.772], + [48163,0.761], + [48165,0.64], + [48167,0.756], + [48169,0.842], + [48171,0.799], + [48173,0.773], + [48175,0.783], + [48177,0.73], + [48179,0.744], + [48181,0.763], + [48183,0.741], + [48185,0.775], + [48187,0.746], + [48189,0.728], + [48191,0.778], + [48193,0.792], + [48195,0.702], + [48197,0.792], + [48199,0.753], + [48201,0.732], + [48203,0.746], + [48205,0.785], + [48207,0.816], + [48209,0.769], + [48211,0.684], + [48213,0.785], + [48215,0.671], + [48217,0.767], + [48219,0.739], + [48221,0.789], + [48223,0.751], + [48225,0.804], + [48227,0.779], + [48229,0.755], + [48231,0.761], + [48233,0.743], + [48235,0.738], + [48237,0.788], + [48239,0.745], + [48241,0.759], + [48243,0.832], + [48245,0.76], + [48247,0.68], + [48249,0.72], + [48251,0.739], + [48253,0.825], + [48255,0.792], + [48257,0.723], + [48259,0.763], + [48261,0.704], + [48263,0.754], + [48265,0.807], + [48267,0.787], + [48269,0.705], + [48271,0.872], + [48273,0.757], + [48275,0.733], + [48277,0.762], + [48279,0.721], + [48281,0.778], + [48283,0.798], + [48285,0.763], + [48287,0.778], + [48289,0.774], + [48291,0.739], + [48293,0.775], + [48295,0.735], + [48297,0.8], + [48299,0.85], + [48301,0.745], + [48303,0.76], + [48305,0.729], + [48307,0.775], + [48309,0.753], + [48311,0.711], + [48313,0.786], + [48315,0.821], + [48317,0.689], + [48319,0.762], + [48321,0.742], + [48323,0.685], + [48325,0.768], + [48327,0.874], + [48329,0.716], + [48331,0.756], + [48333,0.808], + [48335,0.802], + [48337,0.771], + [48339,0.735], + [48341,0.685], + [48343,0.77], + [48345,0.745], + [48347,0.768], + [48349,0.738], + [48351,0.798], + [48353,0.74], + [48355,0.752], + [48357,0.689], + [48359,0.664], + [48361,0.752], + [48363,0.766], + [48365,0.764], + [48367,0.752], + [48369,0.707], + [48371,0.754], + [48373,0.797], + [48375,0.725], + [48377,0.741], + [48379,0.805], + [48381,0.759], + [48383,0.673], + [48385,0.743], + [48387,0.799], + [48389,0.778], + [48391,0.768], + [48393,0.73], + [48395,0.762], + [48397,0.728], + [48399,0.767], + [48401,0.774], + [48403,0.813], + [48405,0.802], + [48407,0.779], + [48409,0.73], + [48411,0.792], + [48413,0.736], + [48415,0.749], + [48417,0.766], + [48419,0.738], + [48421,0.774], + [48423,0.754], + [48425,0.775], + [48427,0.67], + [48429,0.774], + [48431,0.656], + [48433,0.73], + [48435,0.736], + [48437,0.748], + [48439,0.735], + [48441,0.752], + [48443,0.849], + [48445,0.725], + [48447,0.84], + [48449,0.711], + [48451,0.762], + [48453,0.78], + [48455,0.796], + [48457,0.807], + [48459,0.761], + [48461,0.738], + [48463,0.729], + [48465,0.715], + [48467,0.768], + [48469,0.745], + [48471,0.851], + [48473,0.758], + [48475,0.724], + [48477,0.781], + [48479,0.668], + [48481,0.74], + [48483,0.744], + [48485,0.776], + [48487,0.776], + [48489,0.759], + [48491,0.74], + [48493,0.755], + [48495,0.701], + [48497,0.752], + [48499,0.806], + [48501,0.67], + [48503,0.757], + [48505,0.665], + [48507,0.705], + [49001,0.672], + [49003,0.681], + [49005,0.695], + [49007,0.738], + [49009,0.78], + [49011,0.675], + [49013,0.661], + [49015,0.702], + [49017,0.761], + [49019,0.79], + [49021,0.713], + [49023,0.654], + [49025,0.764], + [49027,0.688], + [49029,0.644], + [49031,0.757], + [49033,0.705], + [49035,0.725], + [49037,0.692], + [49039,0.742], + [49041,0.702], + [49043,0.752], + [49045,0.669], + [49047,0.666], + [49049,0.662], + [49051,0.683], + [49053,0.734], + [49055,0.725], + [49057,0.715], + [50001,0.828], + [50003,0.81], + [50005,0.804], + [50007,0.821], + [50009,0.824], + [50011,0.777], + [50013,0.824], + [50015,0.796], + [50017,0.815], + [50019,0.806], + [50021,0.821], + [50023,0.81], + [50025,0.82], + [50027,0.818], + [51001,0.788], + [51003,0.798], + [51005,0.811], + [51007,0.786], + [51009,0.804], + [51011,0.787], + [51013,0.822], + [51015,0.809], + [51017,0.832], + [51019,0.798], + [51021,0.838], + [51023,0.805], + [51025,0.833], + [51027,0.82], + [51029,0.816], + [51031,0.801], + [51033,0.77], + [51035,0.811], + [51036,0.845], + [51037,0.778], + [51041,0.761], + [51043,0.793], + [51045,0.813], + [51047,0.753], + [51049,0.802], + [51051,0.804], + [51053,0.795], + [51057,0.798], + [51059,0.764], + [51061,0.766], + [51063,0.805], + [51065,0.798], + [51067,0.808], + [51069,0.769], + [51071,0.793], + [51073,0.804], + [51075,0.822], + [51077,0.831], + [51079,0.759], + [51081,0.843], + [51083,0.796], + [51085,0.779], + [51087,0.771], + [51089,0.805], + [51091,0.883], + [51093,0.791], + [51095,0.799], + [51097,0.806], + [51099,0.747], + [51101,0.774], + [51103,0.847], + [51105,0.815], + [51107,0.715], + [51109,0.796], + [51111,0.818], + [51113,0.794], + [51115,0.853], + [51117,0.811], + [51119,0.838], + [51121,0.845], + [51125,0.814], + [51127,0.794], + [51131,0.801], + [51133,0.851], + [51135,0.806], + [51137,0.779], + [51139,0.797], + [51141,0.824], + [51143,0.809], + [51145,0.817], + [51147,0.839], + [51149,0.782], + [51153,0.727], + [51155,0.822], + [51157,0.825], + [51159,0.833], + [51161,0.798], + [51163,0.823], + [51165,0.778], + [51167,0.809], + [51169,0.816], + [51171,0.788], + [51173,0.806], + [51175,0.806], + [51177,0.75], + [51179,0.738], + [51181,0.827], + [51183,0.843], + [51185,0.807], + [51187,0.779], + [51191,0.817], + [51193,0.812], + [51195,0.806], + [51197,0.801], + [51199,0.761], + [51510,0.818], + [51520,0.787], + [51530,0.793], + [51540,0.844], + [51550,0.758], + [51570,0.772], + [51580,0.795], + [51590,0.782], + [51595,0.713], + [51600,0.777], + [51610,0.751], + [51620,0.748], + [51630,0.79], + [51640,0.783], + [51650,0.789], + [51660,0.837], + [51670,0.743], + [51678,0.91], + [51680,0.808], + [51683,0.731], + [51685,0.744], + [51690,0.759], + [51700,0.768], + [51710,0.803], + [51720,0.763], + [51730,0.786], + [51735,0.779], + [51740,0.766], + [51750,0.894], + [51760,0.824], + [51770,0.781], + [51775,0.809], + [51790,0.81], + [51800,0.757], + [51810,0.777], + [51820,0.767], + [51830,0.896], + [51840,0.771], + [53001,0.648], + [53003,0.796], + [53005,0.732], + [53007,0.763], + [53009,0.828], + [53011,0.757], + [53013,0.805], + [53015,0.771], + [53017,0.738], + [53019,0.834], + [53021,0.672], + [53023,0.76], + [53025,0.704], + [53027,0.795], + [53029,0.817], + [53031,0.875], + [53033,0.796], + [53035,0.794], + [53037,0.828], + [53039,0.805], + [53041,0.784], + [53043,0.786], + [53045,0.805], + [53047,0.77], + [53049,0.837], + [53051,0.808], + [53053,0.765], + [53055,0.868], + [53057,0.78], + [53059,0.809], + [53061,0.773], + [53063,0.778], + [53065,0.785], + [53067,0.784], + [53069,0.836], + [53071,0.789], + [53073,0.804], + [53075,0.849], + [53077,0.702], + [54001,0.8], + [54003,0.765], + [54005,0.785], + [54007,0.803], + [54009,0.825], + [54011,0.802], + [54013,0.803], + [54015,0.775], + [54017,0.843], + [54019,0.793], + [54021,0.85], + [54023,0.811], + [54025,0.803], + [54027,0.808], + [54029,0.809], + [54031,0.794], + [54033,0.786], + [54035,0.785], + [54037,0.775], + [54039,0.799], + [54041,0.788], + [54043,0.775], + [54045,0.795], + [54047,0.795], + [54049,0.8], + [54051,0.804], + [54053,0.786], + [54055,0.795], + [54057,0.799], + [54059,0.777], + [54061,0.836], + [54063,0.804], + [54065,0.815], + [54067,0.796], + [54069,0.809], + [54071,0.817], + [54073,0.805], + [54075,0.827], + [54077,0.807], + [54079,0.775], + [54081,0.792], + [54083,0.809], + [54085,0.802], + [54087,0.786], + [54089,0.832], + [54091,0.797], + [54093,0.84], + [54095,0.803], + [54097,0.794], + [54099,0.791], + [54101,0.799], + [54103,0.794], + [54105,0.787], + [54107,0.789], + [54109,0.792], + [55001,0.855], + [55003,0.778], + [55005,0.784], + [55007,0.826], + [55009,0.761], + [55011,0.796], + [55013,0.822], + [55015,0.757], + [55017,0.778], + [55019,0.705], + [55021,0.784], + [55023,0.796], + [55025,0.794], + [55027,0.793], + [55029,0.838], + [55031,0.801], + [55033,0.802], + [55035,0.797], + [55037,0.843], + [55039,0.786], + [55041,0.8], + [55043,0.794], + [55045,0.776], + [55047,0.777], + [55049,0.771], + [55051,0.86], + [55053,0.781], + [55055,0.786], + [55057,0.799], + [55059,0.768], + [55061,0.786], + [55063,0.801], + [55065,0.756], + [55067,0.807], + [55069,0.814], + [55071,0.793], + [55073,0.77], + [55075,0.81], + [55077,0.805], + [55078,0.673], + [55079,0.759], + [55081,0.746], + [55083,0.798], + [55085,0.828], + [55087,0.763], + [55089,0.785], + [55091,0.791], + [55093,0.791], + [55095,0.788], + [55097,0.806], + [55099,0.826], + [55101,0.767], + [55103,0.783], + [55105,0.766], + [55107,0.794], + [55109,0.748], + [55111,0.771], + [55113,0.805], + [55115,0.784], + [55117,0.777], + [55119,0.763], + [55121,0.751], + [55123,0.739], + [55125,0.835], + [55127,0.789], + [55129,0.809], + [55131,0.778], + [55133,0.783], + [55135,0.795], + [55137,0.815], + [55139,0.794], + [55141,0.784], + [56001,0.838], + [56003,0.746], + [56005,0.723], + [56007,0.766], + [56009,0.751], + [56011,0.754], + [56013,0.747], + [56015,0.797], + [56017,0.802], + [56019,0.779], + [56021,0.769], + [56023,0.728], + [56025,0.759], + [56027,0.806], + [56029,0.794], + [56031,0.819], + [56033,0.786], + [56035,0.764], + [56037,0.735], + [56039,0.809], + [56041,0.708], + [56043,0.754], + [56045,0.79] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-over65-2010.json b/data/regional/united-states/demographics/age/us-age-over65-2010.json new file mode 100644 index 0000000..07363c1 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-over65-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Over 65", + "description" : "Percent of the population over age 65.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.over65.2010"], + [1001,0.12], + [1003,0.168], + [1005,0.142], + [1007,0.127], + [1009,0.147], + [1011,0.135], + [1013,0.167], + [1015,0.143], + [1017,0.167], + [1019,0.179], + [1021,0.136], + [1023,0.182], + [1025,0.162], + [1027,0.176], + [1029,0.158], + [1031,0.144], + [1033,0.174], + [1035,0.179], + [1037,0.171], + [1039,0.184], + [1041,0.159], + [1043,0.159], + [1045,0.135], + [1047,0.141], + [1049,0.139], + [1051,0.119], + [1053,0.152], + [1055,0.158], + [1057,0.179], + [1059,0.152], + [1061,0.174], + [1063,0.161], + [1065,0.15], + [1067,0.176], + [1069,0.145], + [1071,0.165], + [1073,0.131], + [1075,0.188], + [1077,0.168], + [1079,0.146], + [1081,0.091], + [1083,0.123], + [1085,0.146], + [1087,0.141], + [1089,0.122], + [1091,0.163], + [1093,0.183], + [1095,0.149], + [1097,0.129], + [1099,0.157], + [1101,0.12], + [1103,0.141], + [1105,0.167], + [1107,0.169], + [1109,0.128], + [1111,0.17], + [1113,0.127], + [1115,0.131], + [1117,0.106], + [1119,0.15], + [1121,0.141], + [1123,0.173], + [1125,0.108], + [1127,0.163], + [1129,0.147], + [1131,0.15], + [1133,0.177], + [2013,0.049], + [2016,0.035], + [2020,0.072], + [2050,0.061], + [2060,0.083], + [2068,0.075], + [2070,0.076], + [2090,0.065], + [2100,0.138], + [2105,0.134], + [2110,0.084], + [2122,0.113], + [2130,0.101], + [2150,0.067], + [2158,0.054], + [2164,0.078], + [2170,0.079], + [2180,0.064], + [2185,0.043], + [2188,0.06], + [2195,0.115], + [2198,0.101], + [2220,0.114], + [2230,0.091], + [2240,0.094], + [2261,0.083], + [2275,0.158], + [2282,0.097], + [2290,0.102], + [4001,0.116], + [4003,0.173], + [4005,0.089], + [4007,0.232], + [4009,0.114], + [4011,0.12], + [4012,0.326], + [4013,0.121], + [4015,0.233], + [4017,0.133], + [4019,0.154], + [4021,0.139], + [4023,0.131], + [4025,0.241], + [4027,0.157], + [5001,0.164], + [5003,0.162], + [5005,0.281], + [5007,0.122], + [5009,0.181], + [5011,0.177], + [5013,0.172], + [5015,0.187], + [5017,0.182], + [5019,0.148], + [5021,0.2], + [5023,0.236], + [5025,0.163], + [5027,0.16], + [5029,0.169], + [5031,0.122], + [5033,0.133], + [5035,0.108], + [5037,0.154], + [5039,0.182], + [5041,0.151], + [5043,0.148], + [5045,0.1], + [5047,0.166], + [5049,0.224], + [5051,0.209], + [5053,0.145], + [5055,0.143], + [5057,0.15], + [5059,0.157], + [5061,0.153], + [5063,0.156], + [5065,0.236], + [5067,0.159], + [5069,0.132], + [5071,0.147], + [5073,0.194], + [5075,0.181], + [5077,0.154], + [5079,0.124], + [5081,0.171], + [5083,0.172], + [5085,0.112], + [5087,0.156], + [5089,0.238], + [5091,0.138], + [5093,0.122], + [5095,0.189], + [5097,0.224], + [5099,0.177], + [5101,0.204], + [5103,0.17], + [5105,0.167], + [5107,0.15], + [5109,0.174], + [5111,0.159], + [5113,0.195], + [5115,0.131], + [5117,0.197], + [5119,0.12], + [5121,0.187], + [5123,0.122], + [5125,0.148], + [5127,0.17], + [5129,0.213], + [5131,0.131], + [5133,0.126], + [5135,0.239], + [5137,0.228], + [5139,0.156], + [5141,0.227], + [5143,0.097], + [5145,0.141], + [5147,0.178], + [5149,0.154], + [6001,0.111], + [6003,0.141], + [6005,0.206], + [6007,0.154], + [6009,0.21], + [6011,0.116], + [6013,0.124], + [6015,0.135], + [6017,0.146], + [6019,0.1], + [6021,0.133], + [6023,0.132], + [6025,0.104], + [6027,0.191], + [6029,0.09], + [6031,0.079], + [6033,0.177], + [6035,0.1], + [6037,0.109], + [6039,0.114], + [6041,0.167], + [6043,0.209], + [6045,0.154], + [6047,0.094], + [6049,0.197], + [6051,0.097], + [6053,0.107], + [6055,0.151], + [6057,0.194], + [6059,0.116], + [6061,0.154], + [6063,0.208], + [6065,0.118], + [6067,0.112], + [6069,0.097], + [6071,0.089], + [6073,0.114], + [6075,0.136], + [6077,0.104], + [6079,0.152], + [6081,0.134], + [6083,0.128], + [6085,0.111], + [6087,0.111], + [6089,0.169], + [6091,0.209], + [6093,0.196], + [6095,0.113], + [6097,0.139], + [6099,0.107], + [6101,0.127], + [6103,0.159], + [6105,0.201], + [6107,0.094], + [6109,0.204], + [6111,0.117], + [6113,0.098], + [6115,0.101], + [8001,0.083], + [8003,0.113], + [8005,0.101], + [8007,0.175], + [8009,0.24], + [8011,0.137], + [8013,0.1], + [8014,0.099], + [8015,0.198], + [8017,0.179], + [8019,0.125], + [8021,0.152], + [8023,0.229], + [8025,0.105], + [8027,0.224], + [8029,0.202], + [8031,0.104], + [8033,0.188], + [8035,0.071], + [8037,0.056], + [8039,0.095], + [8041,0.1], + [8043,0.176], + [8045,0.084], + [8047,0.094], + [8049,0.102], + [8051,0.088], + [8053,0.174], + [8055,0.252], + [8057,0.184], + [8059,0.126], + [8061,0.215], + [8063,0.16], + [8065,0.089], + [8067,0.116], + [8069,0.119], + [8071,0.177], + [8073,0.168], + [8075,0.146], + [8077,0.149], + [8079,0.23], + [8081,0.105], + [8083,0.167], + [8085,0.178], + [8087,0.141], + [8089,0.184], + [8091,0.175], + [8093,0.116], + [8095,0.207], + [8097,0.115], + [8099,0.146], + [8101,0.153], + [8103,0.124], + [8105,0.162], + [8107,0.081], + [8109,0.146], + [8111,0.123], + [8113,0.07], + [8115,0.239], + [8117,0.077], + [8119,0.129], + [8121,0.193], + [8123,0.096], + [8125,0.162], + [9001,0.135], + [9003,0.146], + [9005,0.16], + [9007,0.155], + [9009,0.144], + [9011,0.142], + [9013,0.119], + [9015,0.128], + [10001,0.135], + [10003,0.123], + [10005,0.208], + [11001,0.114], + [12001,0.108], + [12003,0.109], + [12005,0.145], + [12007,0.144], + [12009,0.204], + [12011,0.143], + [12013,0.154], + [12015,0.341], + [12017,0.319], + [12019,0.117], + [12021,0.264], + [12023,0.154], + [12027,0.179], + [12029,0.193], + [12031,0.111], + [12033,0.144], + [12035,0.245], + [12037,0.174], + [12039,0.136], + [12041,0.169], + [12043,0.215], + [12045,0.163], + [12047,0.131], + [12049,0.129], + [12051,0.115], + [12053,0.258], + [12055,0.322], + [12057,0.118], + [12059,0.172], + [12061,0.272], + [12063,0.157], + [12065,0.165], + [12067,0.122], + [12069,0.242], + [12071,0.235], + [12073,0.094], + [12075,0.194], + [12077,0.106], + [12079,0.158], + [12081,0.233], + [12083,0.258], + [12085,0.273], + [12086,0.141], + [12087,0.171], + [12089,0.162], + [12091,0.139], + [12093,0.17], + [12095,0.097], + [12097,0.11], + [12099,0.216], + [12101,0.207], + [12103,0.212], + [12105,0.18], + [12107,0.189], + [12109,0.157], + [12111,0.199], + [12113,0.129], + [12115,0.312], + [12117,0.12], + [12119,0.434], + [12121,0.189], + [12123,0.156], + [12125,0.1], + [12127,0.211], + [12129,0.108], + [12131,0.162], + [12133,0.154], + [13001,0.135], + [13003,0.106], + [13005,0.133], + [13007,0.154], + [13009,0.12], + [13011,0.125], + [13013,0.093], + [13015,0.106], + [13017,0.14], + [13019,0.138], + [13021,0.127], + [13023,0.151], + [13025,0.123], + [13027,0.158], + [13029,0.09], + [13031,0.091], + [13033,0.119], + [13035,0.126], + [13037,0.119], + [13039,0.09], + [13043,0.144], + [13045,0.11], + [13047,0.135], + [13049,0.127], + [13051,0.124], + [13053,0.037], + [13055,0.146], + [13057,0.092], + [13059,0.085], + [13061,0.196], + [13063,0.066], + [13065,0.128], + [13067,0.087], + [13069,0.111], + [13071,0.129], + [13073,0.102], + [13075,0.135], + [13077,0.104], + [13079,0.132], + [13081,0.14], + [13083,0.144], + [13085,0.14], + [13087,0.139], + [13089,0.09], + [13091,0.138], + [13093,0.138], + [13095,0.121], + [13097,0.085], + [13099,0.163], + [13101,0.099], + [13103,0.091], + [13105,0.168], + [13107,0.14], + [13109,0.137], + [13111,0.219], + [13113,0.127], + [13115,0.142], + [13117,0.089], + [13119,0.169], + [13121,0.091], + [13123,0.177], + [13125,0.151], + [13127,0.15], + [13129,0.116], + [13131,0.141], + [13133,0.21], + [13135,0.068], + [13137,0.153], + [13139,0.111], + [13141,0.156], + [13143,0.14], + [13145,0.132], + [13147,0.18], + [13149,0.132], + [13151,0.084], + [13153,0.104], + [13155,0.156], + [13157,0.119], + [13159,0.127], + [13161,0.124], + [13163,0.148], + [13165,0.151], + [13167,0.139], + [13169,0.125], + [13171,0.136], + [13173,0.11], + [13175,0.142], + [13177,0.083], + [13179,0.063], + [13181,0.175], + [13183,0.073], + [13185,0.098], + [13187,0.127], + [13189,0.136], + [13191,0.173], + [13193,0.124], + [13195,0.133], + [13197,0.139], + [13199,0.158], + [13201,0.183], + [13205,0.131], + [13207,0.139], + [13209,0.129], + [13211,0.155], + [13213,0.108], + [13215,0.116], + [13217,0.098], + [13219,0.109], + [13221,0.142], + [13223,0.072], + [13225,0.114], + [13227,0.163], + [13229,0.14], + [13231,0.123], + [13233,0.133], + [13235,0.157], + [13237,0.181], + [13239,0.22], + [13241,0.213], + [13243,0.178], + [13245,0.113], + [13247,0.106], + [13249,0.131], + [13251,0.149], + [13253,0.19], + [13255,0.133], + [13257,0.166], + [13259,0.142], + [13261,0.126], + [13263,0.163], + [13265,0.205], + [13267,0.116], + [13269,0.149], + [13271,0.136], + [13273,0.149], + [13275,0.151], + [13277,0.128], + [13279,0.137], + [13281,0.292], + [13283,0.137], + [13285,0.124], + [13287,0.157], + [13289,0.162], + [13291,0.266], + [13293,0.157], + [13295,0.15], + [13297,0.12], + [13299,0.152], + [13301,0.179], + [13303,0.136], + [13305,0.128], + [13307,0.15], + [13309,0.119], + [13311,0.175], + [13313,0.112], + [13315,0.143], + [13317,0.186], + [13319,0.157], + [13321,0.145], + [15001,0.145], + [15003,0.145], + [15005,0.289], + [15007,0.149], + [15009,0.128], + [16001,0.105], + [16003,0.208], + [16005,0.112], + [16007,0.184], + [16009,0.183], + [16011,0.114], + [16013,0.116], + [16015,0.159], + [16017,0.171], + [16019,0.109], + [16021,0.167], + [16023,0.175], + [16025,0.159], + [16027,0.108], + [16029,0.158], + [16031,0.129], + [16033,0.131], + [16035,0.224], + [16037,0.187], + [16039,0.1], + [16041,0.128], + [16043,0.139], + [16045,0.186], + [16047,0.151], + [16049,0.212], + [16051,0.096], + [16053,0.112], + [16055,0.145], + [16057,0.104], + [16059,0.222], + [16061,0.218], + [16063,0.11], + [16065,0.056], + [16067,0.148], + [16069,0.18], + [16071,0.167], + [16073,0.14], + [16075,0.153], + [16077,0.121], + [16079,0.199], + [16081,0.065], + [16083,0.139], + [16085,0.168], + [16087,0.205], + [17001,0.175], + [17003,0.17], + [17005,0.15], + [17007,0.117], + [17009,0.124], + [17011,0.181], + [17013,0.201], + [17015,0.212], + [17017,0.157], + [17019,0.1], + [17021,0.175], + [17023,0.18], + [17025,0.179], + [17027,0.145], + [17029,0.138], + [17031,0.119], + [17033,0.168], + [17035,0.166], + [17037,0.098], + [17039,0.167], + [17041,0.158], + [17043,0.116], + [17045,0.187], + [17047,0.177], + [17049,0.152], + [17051,0.162], + [17053,0.187], + [17055,0.184], + [17057,0.181], + [17059,0.205], + [17061,0.172], + [17063,0.111], + [17065,0.198], + [17067,0.198], + [17069,0.203], + [17071,0.209], + [17073,0.171], + [17075,0.189], + [17077,0.116], + [17079,0.174], + [17081,0.162], + [17083,0.157], + [17085,0.213], + [17087,0.172], + [17089,0.096], + [17091,0.134], + [17093,0.073], + [17095,0.184], + [17097,0.104], + [17099,0.164], + [17101,0.159], + [17103,0.157], + [17105,0.158], + [17107,0.157], + [17109,0.142], + [17111,0.101], + [17113,0.102], + [17115,0.164], + [17117,0.171], + [17119,0.143], + [17121,0.176], + [17123,0.195], + [17125,0.191], + [17127,0.184], + [17129,0.156], + [17131,0.183], + [17133,0.141], + [17135,0.173], + [17137,0.167], + [17139,0.176], + [17141,0.152], + [17143,0.139], + [17145,0.157], + [17147,0.162], + [17149,0.191], + [17151,0.216], + [17153,0.182], + [17155,0.178], + [17157,0.16], + [17159,0.192], + [17161,0.162], + [17163,0.125], + [17165,0.184], + [17167,0.139], + [17169,0.185], + [17171,0.18], + [17173,0.189], + [17175,0.199], + [17177,0.188], + [17179,0.156], + [17181,0.182], + [17183,0.163], + [17185,0.178], + [17187,0.17], + [17189,0.17], + [17191,0.194], + [17193,0.21], + [17195,0.175], + [17197,0.093], + [17199,0.163], + [17201,0.138], + [17203,0.148], + [18001,0.138], + [18003,0.119], + [18005,0.14], + [18007,0.157], + [18009,0.178], + [18011,0.117], + [18013,0.172], + [18015,0.158], + [18017,0.151], + [18019,0.128], + [18021,0.151], + [18023,0.144], + [18025,0.15], + [18027,0.141], + [18029,0.131], + [18031,0.144], + [18033,0.131], + [18035,0.147], + [18037,0.145], + [18039,0.121], + [18041,0.167], + [18043,0.13], + [18045,0.177], + [18047,0.141], + [18049,0.165], + [18051,0.153], + [18053,0.162], + [18055,0.16], + [18057,0.086], + [18059,0.128], + [18061,0.138], + [18063,0.107], + [18065,0.162], + [18067,0.162], + [18069,0.147], + [18071,0.143], + [18073,0.14], + [18075,0.154], + [18077,0.146], + [18079,0.126], + [18081,0.123], + [18083,0.158], + [18085,0.135], + [18087,0.116], + [18089,0.133], + [18091,0.142], + [18093,0.164], + [18095,0.154], + [18097,0.106], + [18099,0.147], + [18101,0.157], + [18103,0.14], + [18105,0.102], + [18107,0.155], + [18109,0.129], + [18111,0.166], + [18113,0.125], + [18115,0.166], + [18117,0.158], + [18119,0.148], + [18121,0.156], + [18123,0.152], + [18125,0.169], + [18127,0.124], + [18129,0.144], + [18131,0.167], + [18133,0.135], + [18135,0.171], + [18137,0.149], + [18139,0.158], + [18141,0.133], + [18143,0.134], + [18145,0.139], + [18147,0.15], + [18149,0.153], + [18151,0.149], + [18153,0.148], + [18155,0.146], + [18157,0.095], + [18159,0.172], + [18161,0.145], + [18163,0.144], + [18165,0.169], + [18167,0.135], + [18169,0.181], + [18171,0.166], + [18173,0.133], + [18175,0.135], + [18177,0.164], + [18179,0.157], + [18181,0.172], + [18183,0.14], + [19001,0.214], + [19003,0.213], + [19005,0.196], + [19007,0.201], + [19009,0.232], + [19011,0.154], + [19013,0.138], + [19015,0.159], + [19017,0.173], + [19019,0.153], + [19021,0.151], + [19023,0.198], + [19025,0.237], + [19027,0.186], + [19029,0.21], + [19031,0.167], + [19033,0.179], + [19035,0.216], + [19037,0.191], + [19039,0.167], + [19041,0.184], + [19043,0.193], + [19045,0.168], + [19047,0.163], + [19049,0.098], + [19051,0.171], + [19053,0.181], + [19055,0.166], + [19057,0.176], + [19059,0.223], + [19061,0.153], + [19063,0.188], + [19065,0.194], + [19067,0.2], + [19069,0.191], + [19071,0.196], + [19073,0.209], + [19075,0.188], + [19077,0.199], + [19079,0.181], + [19081,0.191], + [19083,0.21], + [19085,0.178], + [19087,0.16], + [19089,0.193], + [19091,0.206], + [19093,0.207], + [19095,0.172], + [19097,0.186], + [19099,0.165], + [19101,0.148], + [19103,0.086], + [19105,0.172], + [19107,0.192], + [19109,0.219], + [19111,0.169], + [19113,0.13], + [19115,0.15], + [19117,0.202], + [19119,0.168], + [19121,0.148], + [19123,0.161], + [19125,0.156], + [19127,0.164], + [19129,0.134], + [19131,0.217], + [19133,0.237], + [19135,0.186], + [19137,0.199], + [19139,0.137], + [19141,0.204], + [19143,0.197], + [19145,0.199], + [19147,0.213], + [19149,0.166], + [19151,0.221], + [19153,0.108], + [19155,0.143], + [19157,0.184], + [19159,0.236], + [19161,0.221], + [19163,0.131], + [19165,0.209], + [19167,0.143], + [19169,0.1], + [19171,0.184], + [19173,0.21], + [19175,0.181], + [19177,0.198], + [19179,0.164], + [19181,0.133], + [19183,0.173], + [19185,0.221], + [19187,0.167], + [19189,0.193], + [19191,0.168], + [19193,0.128], + [19195,0.183], + [19197,0.209], + [20001,0.183], + [20003,0.202], + [20005,0.154], + [20007,0.204], + [20009,0.169], + [20011,0.173], + [20013,0.183], + [20015,0.126], + [20017,0.212], + [20019,0.244], + [20021,0.16], + [20023,0.263], + [20025,0.22], + [20027,0.204], + [20029,0.204], + [20031,0.172], + [20033,0.241], + [20035,0.158], + [20037,0.14], + [20039,0.273], + [20041,0.181], + [20043,0.162], + [20045,0.089], + [20047,0.191], + [20049,0.243], + [20051,0.135], + [20053,0.189], + [20055,0.084], + [20057,0.1], + [20059,0.141], + [20061,0.076], + [20063,0.24], + [20065,0.256], + [20067,0.105], + [20069,0.127], + [20071,0.209], + [20073,0.222], + [20075,0.136], + [20077,0.217], + [20079,0.171], + [20081,0.107], + [20083,0.207], + [20085,0.154], + [20087,0.154], + [20089,0.28], + [20091,0.109], + [20093,0.135], + [20095,0.2], + [20097,0.189], + [20099,0.166], + [20101,0.211], + [20103,0.111], + [20105,0.203], + [20107,0.193], + [20109,0.208], + [20111,0.125], + [20113,0.183], + [20115,0.209], + [20117,0.211], + [20119,0.172], + [20121,0.131], + [20123,0.21], + [20125,0.174], + [20127,0.223], + [20129,0.17], + [20131,0.201], + [20133,0.174], + [20135,0.246], + [20137,0.186], + [20139,0.17], + [20141,0.252], + [20143,0.175], + [20145,0.174], + [20147,0.202], + [20149,0.123], + [20151,0.189], + [20153,0.267], + [20155,0.17], + [20157,0.27], + [20159,0.179], + [20161,0.073], + [20163,0.198], + [20165,0.241], + [20167,0.228], + [20169,0.144], + [20171,0.182], + [20173,0.114], + [20175,0.085], + [20177,0.144], + [20179,0.22], + [20181,0.191], + [20183,0.264], + [20185,0.21], + [20187,0.156], + [20189,0.131], + [20191,0.157], + [20193,0.154], + [20195,0.234], + [20197,0.158], + [20199,0.204], + [20201,0.232], + [20203,0.179], + [20205,0.193], + [20207,0.227], + [20209,0.107], + [21001,0.153], + [21003,0.147], + [21005,0.12], + [21007,0.176], + [21009,0.154], + [21011,0.147], + [21013,0.157], + [21015,0.095], + [21017,0.153], + [21019,0.166], + [21021,0.162], + [21023,0.137], + [21025,0.134], + [21027,0.156], + [21029,0.112], + [21031,0.158], + [21033,0.178], + [21035,0.151], + [21037,0.128], + [21039,0.189], + [21041,0.129], + [21043,0.149], + [21045,0.161], + [21047,0.103], + [21049,0.142], + [21051,0.121], + [21053,0.166], + [21055,0.181], + [21057,0.191], + [21059,0.146], + [21061,0.166], + [21063,0.144], + [21065,0.153], + [21067,0.105], + [21069,0.148], + [21071,0.136], + [21073,0.14], + [21075,0.18], + [21077,0.114], + [21079,0.146], + [21081,0.107], + [21083,0.166], + [21085,0.151], + [21087,0.173], + [21089,0.17], + [21091,0.14], + [21093,0.11], + [21095,0.143], + [21097,0.149], + [21099,0.149], + [21101,0.142], + [21103,0.142], + [21105,0.208], + [21107,0.154], + [21109,0.138], + [21111,0.134], + [21113,0.113], + [21115,0.141], + [21117,0.112], + [21119,0.134], + [21121,0.146], + [21123,0.156], + [21125,0.129], + [21127,0.142], + [21129,0.132], + [21131,0.142], + [21133,0.142], + [21135,0.147], + [21137,0.149], + [21139,0.181], + [21141,0.157], + [21143,0.21], + [21145,0.168], + [21147,0.123], + [21149,0.169], + [21151,0.112], + [21153,0.129], + [21155,0.13], + [21157,0.193], + [21159,0.112], + [21161,0.151], + [21163,0.104], + [21165,0.159], + [21167,0.159], + [21169,0.163], + [21171,0.171], + [21173,0.128], + [21175,0.13], + [21177,0.162], + [21179,0.117], + [21181,0.156], + [21183,0.154], + [21185,0.092], + [21187,0.145], + [21189,0.168], + [21191,0.123], + [21193,0.134], + [21195,0.137], + [21197,0.13], + [21199,0.162], + [21201,0.187], + [21203,0.148], + [21205,0.123], + [21207,0.174], + [21209,0.093], + [21211,0.12], + [21213,0.143], + [21215,0.102], + [21217,0.16], + [21219,0.142], + [21221,0.19], + [21223,0.129], + [21225,0.137], + [21227,0.109], + [21229,0.159], + [21231,0.16], + [21233,0.151], + [21235,0.143], + [21237,0.156], + [21239,0.13], + [22001,0.128], + [22003,0.129], + [22005,0.089], + [22007,0.134], + [22009,0.144], + [22011,0.13], + [22013,0.185], + [22015,0.12], + [22017,0.136], + [22019,0.126], + [22021,0.148], + [22023,0.129], + [22025,0.144], + [22027,0.16], + [22029,0.145], + [22031,0.144], + [22033,0.109], + [22035,0.125], + [22037,0.13], + [22039,0.132], + [22041,0.163], + [22043,0.121], + [22045,0.122], + [22047,0.12], + [22049,0.167], + [22051,0.136], + [22053,0.145], + [22055,0.103], + [22057,0.125], + [22059,0.148], + [22061,0.113], + [22063,0.099], + [22065,0.119], + [22067,0.154], + [22069,0.135], + [22071,0.109], + [22073,0.123], + [22075,0.112], + [22077,0.155], + [22079,0.137], + [22081,0.152], + [22083,0.144], + [22085,0.172], + [22087,0.092], + [22089,0.099], + [22091,0.141], + [22093,0.129], + [22095,0.103], + [22097,0.137], + [22099,0.117], + [22101,0.129], + [22103,0.127], + [22105,0.114], + [22107,0.173], + [22109,0.112], + [22111,0.165], + [22113,0.129], + [22115,0.094], + [22117,0.145], + [22119,0.167], + [22121,0.11], + [22123,0.168], + [22125,0.102], + [22127,0.144], + [23001,0.141], + [23003,0.19], + [23005,0.143], + [23007,0.168], + [23009,0.183], + [23011,0.155], + [23013,0.191], + [23015,0.215], + [23017,0.17], + [23019,0.145], + [23021,0.203], + [23023,0.164], + [23025,0.163], + [23027,0.162], + [23029,0.196], + [23031,0.154], + [24001,0.178], + [24003,0.118], + [24005,0.146], + [24009,0.109], + [24011,0.133], + [24013,0.13], + [24015,0.117], + [24017,0.095], + [24019,0.177], + [24021,0.111], + [24023,0.174], + [24025,0.125], + [24027,0.101], + [24029,0.218], + [24031,0.123], + [24033,0.094], + [24035,0.149], + [24037,0.103], + [24039,0.138], + [24041,0.237], + [24043,0.143], + [24045,0.13], + [24047,0.232], + [24510,0.117], + [25001,0.25], + [25003,0.186], + [25005,0.142], + [25007,0.163], + [25009,0.141], + [25011,0.152], + [25013,0.142], + [25015,0.127], + [25017,0.131], + [25019,0.121], + [25021,0.145], + [25023,0.139], + [25025,0.105], + [25027,0.128], + [26001,0.314], + [26003,0.206], + [26005,0.13], + [26007,0.195], + [26009,0.221], + [26011,0.203], + [26013,0.173], + [26015,0.146], + [26017,0.162], + [26019,0.206], + [26021,0.163], + [26023,0.147], + [26025,0.148], + [26027,0.16], + [26029,0.186], + [26031,0.215], + [26033,0.146], + [26035,0.199], + [26037,0.129], + [26039,0.208], + [26041,0.191], + [26043,0.19], + [26045,0.14], + [26047,0.166], + [26049,0.137], + [26051,0.228], + [26053,0.214], + [26055,0.15], + [26057,0.148], + [26059,0.157], + [26061,0.15], + [26063,0.217], + [26065,0.105], + [26067,0.113], + [26069,0.261], + [26071,0.263], + [26073,0.097], + [26075,0.142], + [26077,0.123], + [26079,0.165], + [26081,0.111], + [26083,0.24], + [26085,0.237], + [26087,0.133], + [26089,0.234], + [26091,0.146], + [26093,0.12], + [26095,0.179], + [26097,0.224], + [26099,0.143], + [26101,0.207], + [26103,0.147], + [26105,0.192], + [26107,0.154], + [26109,0.191], + [26111,0.148], + [26113,0.174], + [26115,0.134], + [26117,0.141], + [26119,0.27], + [26121,0.136], + [26123,0.155], + [26125,0.132], + [26127,0.17], + [26129,0.22], + [26131,0.264], + [26133,0.17], + [26135,0.235], + [26137,0.17], + [26139,0.118], + [26141,0.262], + [26143,0.28], + [26145,0.153], + [26147,0.145], + [26149,0.149], + [26151,0.176], + [26153,0.212], + [26155,0.143], + [26157,0.158], + [26159,0.138], + [26161,0.101], + [26163,0.127], + [26165,0.159], + [27001,0.272], + [27003,0.097], + [27005,0.173], + [27007,0.129], + [27009,0.119], + [27011,0.251], + [27013,0.118], + [27015,0.189], + [27017,0.15], + [27019,0.085], + [27021,0.211], + [27023,0.193], + [27025,0.116], + [27027,0.12], + [27029,0.186], + [27031,0.203], + [27033,0.212], + [27035,0.185], + [27037,0.1], + [27039,0.122], + [27041,0.196], + [27043,0.218], + [27045,0.192], + [27047,0.202], + [27049,0.164], + [27051,0.222], + [27053,0.114], + [27055,0.174], + [27057,0.208], + [27059,0.124], + [27061,0.19], + [27063,0.199], + [27065,0.164], + [27067,0.162], + [27069,0.226], + [27071,0.196], + [27073,0.238], + [27075,0.223], + [27077,0.203], + [27079,0.144], + [27081,0.245], + [27083,0.136], + [27085,0.153], + [27087,0.158], + [27089,0.192], + [27091,0.207], + [27093,0.165], + [27095,0.161], + [27097,0.16], + [27099,0.174], + [27101,0.224], + [27103,0.12], + [27105,0.16], + [27107,0.214], + [27109,0.126], + [27111,0.21], + [27113,0.159], + [27115,0.163], + [27117,0.198], + [27119,0.165], + [27121,0.213], + [27123,0.12], + [27125,0.171], + [27127,0.197], + [27129,0.194], + [27131,0.123], + [27133,0.189], + [27135,0.144], + [27137,0.159], + [27139,0.077], + [27141,0.083], + [27143,0.163], + [27145,0.121], + [27147,0.144], + [27149,0.164], + [27151,0.201], + [27153,0.174], + [27155,0.263], + [27157,0.17], + [27159,0.211], + [27161,0.147], + [27163,0.105], + [27165,0.19], + [27167,0.178], + [27169,0.134], + [27171,0.096], + [27173,0.195], + [28001,0.158], + [28003,0.159], + [28005,0.182], + [28007,0.172], + [28009,0.154], + [28011,0.12], + [28013,0.165], + [28015,0.171], + [28017,0.144], + [28019,0.174], + [28021,0.121], + [28023,0.164], + [28025,0.143], + [28027,0.122], + [28029,0.137], + [28031,0.151], + [28033,0.101], + [28035,0.116], + [28037,0.162], + [28039,0.128], + [28041,0.112], + [28043,0.15], + [28045,0.152], + [28047,0.117], + [28049,0.108], + [28051,0.126], + [28053,0.125], + [28055,0.144], + [28057,0.158], + [28059,0.124], + [28061,0.16], + [28063,0.129], + [28065,0.166], + [28067,0.144], + [28069,0.156], + [28071,0.105], + [28073,0.108], + [28075,0.141], + [28077,0.149], + [28079,0.13], + [28081,0.13], + [28083,0.119], + [28085,0.142], + [28087,0.129], + [28089,0.104], + [28091,0.147], + [28093,0.127], + [28095,0.158], + [28097,0.172], + [28099,0.135], + [28101,0.149], + [28103,0.134], + [28105,0.092], + [28107,0.127], + [28109,0.146], + [28111,0.141], + [28113,0.142], + [28115,0.128], + [28117,0.157], + [28119,0.141], + [28121,0.115], + [28123,0.124], + [28125,0.144], + [28127,0.14], + [28129,0.153], + [28131,0.121], + [28133,0.102], + [28135,0.118], + [28137,0.124], + [28139,0.146], + [28141,0.18], + [28143,0.095], + [28145,0.145], + [28147,0.158], + [28149,0.128], + [28151,0.123], + [28153,0.139], + [28155,0.157], + [28157,0.138], + [28159,0.165], + [28161,0.165], + [28163,0.119], + [29001,0.125], + [29003,0.155], + [29005,0.216], + [29007,0.16], + [29009,0.176], + [29011,0.172], + [29013,0.177], + [29015,0.259], + [29017,0.167], + [29019,0.093], + [29021,0.14], + [29023,0.17], + [29025,0.167], + [29027,0.123], + [29029,0.217], + [29031,0.143], + [29033,0.191], + [29035,0.166], + [29037,0.136], + [29039,0.224], + [29041,0.214], + [29043,0.122], + [29045,0.177], + [29047,0.112], + [29049,0.157], + [29051,0.123], + [29053,0.154], + [29055,0.163], + [29057,0.205], + [29059,0.17], + [29061,0.171], + [29063,0.137], + [29065,0.19], + [29067,0.198], + [29069,0.165], + [29071,0.138], + [29073,0.201], + [29075,0.205], + [29077,0.14], + [29079,0.205], + [29081,0.207], + [29083,0.195], + [29085,0.296], + [29087,0.212], + [29089,0.159], + [29091,0.171], + [29093,0.179], + [29095,0.125], + [29097,0.134], + [29099,0.112], + [29101,0.107], + [29103,0.2], + [29105,0.156], + [29107,0.165], + [29109,0.163], + [29111,0.163], + [29113,0.109], + [29115,0.19], + [29117,0.182], + [29119,0.125], + [29121,0.194], + [29123,0.177], + [29125,0.179], + [29127,0.157], + [29129,0.202], + [29131,0.157], + [29133,0.152], + [29135,0.138], + [29137,0.186], + [29139,0.187], + [29141,0.221], + [29143,0.161], + [29145,0.152], + [29147,0.132], + [29149,0.198], + [29151,0.15], + [29153,0.234], + [29155,0.147], + [29157,0.156], + [29159,0.147], + [29161,0.136], + [29163,0.156], + [29165,0.112], + [29167,0.161], + [29169,0.072], + [29171,0.216], + [29173,0.165], + [29175,0.142], + [29177,0.148], + [29179,0.201], + [29181,0.188], + [29183,0.112], + [29185,0.234], + [29186,0.16], + [29187,0.143], + [29189,0.15], + [29195,0.158], + [29197,0.196], + [29199,0.181], + [29201,0.15], + [29203,0.173], + [29205,0.194], + [29207,0.178], + [29209,0.244], + [29211,0.17], + [29213,0.177], + [29215,0.18], + [29217,0.164], + [29219,0.146], + [29221,0.134], + [29223,0.214], + [29225,0.131], + [29227,0.237], + [29229,0.175], + [29510,0.11], + [30001,0.169], + [30003,0.1], + [30005,0.135], + [30007,0.178], + [30009,0.188], + [30011,0.232], + [30013,0.156], + [30015,0.173], + [30017,0.175], + [30019,0.248], + [30021,0.179], + [30023,0.192], + [30025,0.174], + [30027,0.215], + [30029,0.144], + [30031,0.095], + [30033,0.206], + [30035,0.106], + [30037,0.214], + [30039,0.245], + [30041,0.127], + [30043,0.141], + [30045,0.208], + [30047,0.168], + [30049,0.138], + [30051,0.198], + [30053,0.205], + [30055,0.22], + [30057,0.21], + [30059,0.226], + [30061,0.219], + [30063,0.114], + [30065,0.188], + [30067,0.166], + [30069,0.209], + [30071,0.203], + [30073,0.189], + [30075,0.227], + [30077,0.164], + [30079,0.26], + [30081,0.192], + [30083,0.149], + [30085,0.108], + [30087,0.115], + [30089,0.215], + [30091,0.231], + [30093,0.164], + [30095,0.164], + [30097,0.207], + [30099,0.208], + [30101,0.139], + [30103,0.238], + [30105,0.207], + [30107,0.207], + [30109,0.239], + [30111,0.141], + [31001,0.154], + [31003,0.21], + [31005,0.204], + [31007,0.197], + [31009,0.199], + [31011,0.211], + [31013,0.151], + [31015,0.265], + [31017,0.241], + [31019,0.121], + [31021,0.231], + [31023,0.191], + [31025,0.143], + [31027,0.204], + [31029,0.204], + [31031,0.208], + [31033,0.159], + [31035,0.179], + [31037,0.136], + [31039,0.208], + [31041,0.209], + [31043,0.114], + [31045,0.163], + [31047,0.139], + [31049,0.237], + [31051,0.178], + [31053,0.184], + [31055,0.106], + [31057,0.23], + [31059,0.223], + [31061,0.239], + [31063,0.19], + [31065,0.227], + [31067,0.194], + [31069,0.272], + [31071,0.271], + [31073,0.211], + [31075,0.194], + [31077,0.23], + [31079,0.134], + [31081,0.164], + [31083,0.235], + [31085,0.198], + [31087,0.229], + [31089,0.205], + [31091,0.262], + [31093,0.187], + [31095,0.22], + [31097,0.176], + [31099,0.183], + [31101,0.212], + [31103,0.256], + [31105,0.221], + [31107,0.227], + [31109,0.109], + [31111,0.156], + [31113,0.182], + [31115,0.217], + [31117,0.18], + [31119,0.147], + [31121,0.18], + [31123,0.195], + [31125,0.191], + [31127,0.18], + [31129,0.261], + [31131,0.189], + [31133,0.26], + [31135,0.203], + [31137,0.19], + [31139,0.179], + [31141,0.149], + [31143,0.198], + [31145,0.187], + [31147,0.229], + [31149,0.233], + [31151,0.146], + [31153,0.085], + [31155,0.155], + [31157,0.168], + [31159,0.152], + [31161,0.222], + [31163,0.234], + [31165,0.214], + [31167,0.141], + [31169,0.258], + [31171,0.209], + [31173,0.119], + [31175,0.236], + [31177,0.14], + [31179,0.137], + [31181,0.237], + [31183,0.189], + [31185,0.182], + [32001,0.152], + [32003,0.113], + [32005,0.202], + [32007,0.085], + [32009,0.258], + [32011,0.129], + [32013,0.102], + [32015,0.118], + [32017,0.181], + [32019,0.158], + [32021,0.225], + [32023,0.234], + [32027,0.13], + [32029,0.184], + [32031,0.121], + [32033,0.149], + [32510,0.165], + [33001,0.167], + [33003,0.206], + [33005,0.147], + [33007,0.194], + [33009,0.155], + [33011,0.119], + [33013,0.137], + [33015,0.127], + [33017,0.119], + [33019,0.165], + [34001,0.142], + [34003,0.151], + [34005,0.139], + [34007,0.128], + [34009,0.216], + [34011,0.126], + [34013,0.115], + [34015,0.124], + [34017,0.104], + [34019,0.127], + [34021,0.126], + [34023,0.123], + [34025,0.138], + [34027,0.138], + [34029,0.21], + [34031,0.12], + [34033,0.15], + [34035,0.124], + [34037,0.12], + [34039,0.126], + [34041,0.141], + [35001,0.122], + [35003,0.279], + [35005,0.142], + [35006,0.128], + [35007,0.201], + [35009,0.114], + [35011,0.229], + [35013,0.124], + [35015,0.14], + [35017,0.213], + [35019,0.155], + [35021,0.292], + [35023,0.167], + [35025,0.108], + [35027,0.22], + [35028,0.15], + [35029,0.196], + [35031,0.095], + [35033,0.187], + [35035,0.15], + [35037,0.206], + [35039,0.141], + [35041,0.119], + [35043,0.121], + [35045,0.108], + [35047,0.152], + [35049,0.151], + [35051,0.306], + [35053,0.142], + [35055,0.171], + [35057,0.142], + [35059,0.179], + [35061,0.127], + [36001,0.139], + [36003,0.152], + [36005,0.105], + [36007,0.164], + [36009,0.155], + [36011,0.153], + [36013,0.166], + [36015,0.157], + [36017,0.166], + [36019,0.133], + [36021,0.182], + [36023,0.131], + [36025,0.194], + [36027,0.135], + [36029,0.157], + [36031,0.181], + [36033,0.133], + [36035,0.16], + [36037,0.156], + [36039,0.173], + [36041,0.234], + [36043,0.168], + [36045,0.112], + [36047,0.115], + [36049,0.15], + [36051,0.137], + [36053,0.139], + [36055,0.139], + [36057,0.166], + [36059,0.153], + [36061,0.135], + [36063,0.159], + [36065,0.163], + [36067,0.14], + [36069,0.154], + [36071,0.11], + [36073,0.144], + [36075,0.126], + [36077,0.165], + [36079,0.125], + [36081,0.128], + [36083,0.136], + [36085,0.127], + [36087,0.134], + [36089,0.139], + [36091,0.137], + [36093,0.149], + [36095,0.159], + [36097,0.17], + [36099,0.155], + [36101,0.159], + [36103,0.135], + [36105,0.148], + [36107,0.157], + [36109,0.108], + [36111,0.148], + [36113,0.171], + [36115,0.154], + [36117,0.143], + [36119,0.147], + [36121,0.136], + [36123,0.166], + [37001,0.146], + [37003,0.151], + [37005,0.207], + [37007,0.143], + [37009,0.202], + [37011,0.174], + [37013,0.184], + [37015,0.172], + [37017,0.156], + [37019,0.214], + [37021,0.16], + [37023,0.161], + [37025,0.113], + [37027,0.154], + [37029,0.129], + [37031,0.19], + [37033,0.158], + [37035,0.141], + [37037,0.183], + [37039,0.229], + [37041,0.197], + [37043,0.236], + [37045,0.15], + [37047,0.152], + [37049,0.153], + [37051,0.095], + [37053,0.129], + [37055,0.152], + [37057,0.144], + [37059,0.166], + [37061,0.142], + [37063,0.098], + [37065,0.143], + [37067,0.13], + [37069,0.127], + [37071,0.132], + [37073,0.15], + [37075,0.197], + [37077,0.124], + [37079,0.125], + [37081,0.123], + [37083,0.162], + [37085,0.104], + [37087,0.21], + [37089,0.224], + [37091,0.158], + [37093,0.074], + [37095,0.151], + [37097,0.128], + [37099,0.151], + [37101,0.102], + [37103,0.173], + [37105,0.137], + [37107,0.16], + [37109,0.132], + [37111,0.164], + [37113,0.238], + [37115,0.177], + [37117,0.175], + [37119,0.088], + [37121,0.209], + [37123,0.157], + [37125,0.226], + [37127,0.14], + [37129,0.139], + [37131,0.196], + [37133,0.075], + [37135,0.096], + [37137,0.217], + [37139,0.136], + [37141,0.151], + [37143,0.215], + [37145,0.152], + [37147,0.099], + [37149,0.243], + [37151,0.141], + [37153,0.143], + [37155,0.112], + [37157,0.162], + [37159,0.144], + [37161,0.173], + [37163,0.143], + [37165,0.136], + [37167,0.157], + [37169,0.16], + [37171,0.166], + [37173,0.166], + [37175,0.258], + [37177,0.168], + [37179,0.097], + [37181,0.141], + [37183,0.085], + [37185,0.189], + [37187,0.182], + [37189,0.124], + [37191,0.131], + [37193,0.17], + [37195,0.142], + [37197,0.163], + [37199,0.206], + [38001,0.242], + [38003,0.196], + [38005,0.128], + [38007,0.193], + [38009,0.215], + [38011,0.22], + [38013,0.209], + [38015,0.134], + [38017,0.097], + [38019,0.256], + [38021,0.221], + [38023,0.266], + [38025,0.174], + [38027,0.246], + [38029,0.274], + [38031,0.227], + [38033,0.213], + [38035,0.103], + [38037,0.269], + [38039,0.263], + [38041,0.258], + [38043,0.21], + [38045,0.247], + [38047,0.28], + [38049,0.207], + [38051,0.34], + [38053,0.142], + [38055,0.217], + [38057,0.158], + [38059,0.146], + [38061,0.137], + [38063,0.274], + [38065,0.167], + [38067,0.201], + [38069,0.236], + [38071,0.181], + [38073,0.199], + [38075,0.203], + [38077,0.149], + [38079,0.1], + [38081,0.19], + [38083,0.3], + [38085,0.071], + [38087,0.186], + [38089,0.16], + [38091,0.223], + [38093,0.171], + [38095,0.246], + [38097,0.187], + [38099,0.201], + [38101,0.13], + [38103,0.29], + [38105,0.149], + [39001,0.148], + [39003,0.148], + [39005,0.158], + [39007,0.156], + [39009,0.101], + [39011,0.154], + [39013,0.176], + [39015,0.144], + [39017,0.115], + [39019,0.167], + [39021,0.144], + [39023,0.162], + [39025,0.118], + [39027,0.135], + [39029,0.165], + [39031,0.162], + [39033,0.178], + [39035,0.155], + [39037,0.169], + [39039,0.15], + [39041,0.095], + [39043,0.173], + [39045,0.124], + [39047,0.15], + [39049,0.099], + [39051,0.141], + [39053,0.16], + [39055,0.155], + [39057,0.136], + [39059,0.16], + [39061,0.133], + [39063,0.143], + [39065,0.134], + [39067,0.182], + [39069,0.154], + [39071,0.152], + [39073,0.153], + [39075,0.113], + [39077,0.136], + [39079,0.141], + [39081,0.183], + [39083,0.148], + [39085,0.161], + [39087,0.156], + [39089,0.133], + [39091,0.147], + [39093,0.143], + [39095,0.131], + [39097,0.124], + [39099,0.179], + [39101,0.142], + [39103,0.131], + [39105,0.157], + [39107,0.154], + [39109,0.153], + [39111,0.194], + [39113,0.151], + [39115,0.173], + [39117,0.134], + [39119,0.153], + [39121,0.208], + [39123,0.19], + [39125,0.148], + [39127,0.129], + [39129,0.128], + [39131,0.147], + [39133,0.129], + [39135,0.152], + [39137,0.143], + [39139,0.163], + [39141,0.135], + [39143,0.153], + [39145,0.155], + [39147,0.148], + [39149,0.129], + [39151,0.162], + [39153,0.146], + [39155,0.174], + [39157,0.164], + [39159,0.095], + [39161,0.163], + [39163,0.14], + [39165,0.108], + [39167,0.175], + [39169,0.146], + [39171,0.16], + [39173,0.123], + [39175,0.163], + [40001,0.129], + [40003,0.202], + [40005,0.161], + [40007,0.155], + [40009,0.127], + [40011,0.144], + [40013,0.157], + [40015,0.147], + [40017,0.109], + [40019,0.149], + [40021,0.135], + [40023,0.181], + [40025,0.214], + [40027,0.102], + [40029,0.178], + [40031,0.102], + [40033,0.17], + [40035,0.174], + [40037,0.15], + [40039,0.134], + [40041,0.206], + [40043,0.199], + [40045,0.191], + [40047,0.153], + [40049,0.173], + [40051,0.137], + [40053,0.213], + [40055,0.174], + [40057,0.173], + [40059,0.186], + [40061,0.176], + [40063,0.172], + [40065,0.129], + [40067,0.191], + [40069,0.166], + [40071,0.17], + [40073,0.15], + [40075,0.184], + [40077,0.174], + [40079,0.152], + [40081,0.153], + [40083,0.126], + [40085,0.172], + [40087,0.132], + [40089,0.155], + [40091,0.219], + [40093,0.192], + [40095,0.199], + [40097,0.157], + [40099,0.175], + [40101,0.147], + [40103,0.167], + [40105,0.18], + [40107,0.167], + [40109,0.12], + [40111,0.158], + [40113,0.153], + [40115,0.17], + [40117,0.164], + [40119,0.104], + [40121,0.175], + [40123,0.149], + [40125,0.143], + [40127,0.202], + [40129,0.177], + [40131,0.134], + [40133,0.161], + [40135,0.149], + [40137,0.173], + [40139,0.102], + [40141,0.177], + [40143,0.121], + [40145,0.125], + [40147,0.178], + [40149,0.171], + [40151,0.172], + [40153,0.142], + [41001,0.22], + [41003,0.12], + [41005,0.136], + [41007,0.166], + [41009,0.139], + [41011,0.214], + [41013,0.2], + [41015,0.28], + [41017,0.149], + [41019,0.21], + [41021,0.222], + [41023,0.236], + [41025,0.189], + [41027,0.126], + [41029,0.176], + [41031,0.153], + [41033,0.223], + [41035,0.171], + [41037,0.204], + [41039,0.15], + [41041,0.217], + [41043,0.154], + [41045,0.15], + [41047,0.129], + [41049,0.127], + [41051,0.105], + [41053,0.148], + [41055,0.218], + [41057,0.209], + [41059,0.127], + [41061,0.167], + [41063,0.232], + [41065,0.176], + [41067,0.1], + [41069,0.291], + [41071,0.134], + [42001,0.157], + [42003,0.168], + [42005,0.184], + [42007,0.186], + [42009,0.19], + [42011,0.145], + [42013,0.177], + [42015,0.178], + [42017,0.146], + [42019,0.151], + [42021,0.188], + [42023,0.214], + [42025,0.178], + [42027,0.113], + [42029,0.128], + [42031,0.164], + [42033,0.175], + [42035,0.162], + [42037,0.161], + [42039,0.166], + [42041,0.156], + [42043,0.137], + [42045,0.143], + [42047,0.19], + [42049,0.146], + [42051,0.18], + [42053,0.184], + [42055,0.165], + [42057,0.171], + [42059,0.153], + [42061,0.162], + [42063,0.157], + [42065,0.183], + [42067,0.168], + [42069,0.177], + [42071,0.15], + [42073,0.188], + [42075,0.17], + [42077,0.148], + [42079,0.179], + [42081,0.165], + [42083,0.17], + [42085,0.185], + [42087,0.185], + [42089,0.128], + [42091,0.151], + [42093,0.186], + [42095,0.157], + [42097,0.185], + [42099,0.137], + [42101,0.121], + [42103,0.162], + [42105,0.195], + [42107,0.181], + [42109,0.155], + [42111,0.186], + [42113,0.242], + [42115,0.181], + [42117,0.18], + [42119,0.148], + [42121,0.18], + [42123,0.187], + [42125,0.175], + [42127,0.19], + [42129,0.189], + [42131,0.16], + [42133,0.14], + [44001,0.167], + [44003,0.157], + [44005,0.17], + [44007,0.135], + [44009,0.15], + [45001,0.165], + [45003,0.154], + [45005,0.132], + [45007,0.151], + [45009,0.16], + [45011,0.14], + [45013,0.204], + [45015,0.1], + [45017,0.163], + [45019,0.128], + [45021,0.134], + [45023,0.146], + [45025,0.135], + [45027,0.168], + [45029,0.156], + [45031,0.143], + [45033,0.13], + [45035,0.101], + [45037,0.131], + [45039,0.149], + [45041,0.132], + [45043,0.198], + [45045,0.128], + [45047,0.151], + [45049,0.134], + [45051,0.171], + [45053,0.112], + [45055,0.143], + [45057,0.153], + [45059,0.15], + [45061,0.135], + [45063,0.122], + [45065,0.239], + [45067,0.147], + [45069,0.131], + [45071,0.159], + [45073,0.19], + [45075,0.148], + [45077,0.134], + [45079,0.098], + [45081,0.161], + [45083,0.134], + [45085,0.13], + [45087,0.165], + [45089,0.146], + [45091,0.113], + [46003,0.199], + [46005,0.173], + [46007,0.112], + [46009,0.191], + [46011,0.099], + [46013,0.161], + [46015,0.174], + [46017,0.072], + [46019,0.157], + [46021,0.252], + [46023,0.177], + [46025,0.218], + [46027,0.102], + [46029,0.149], + [46031,0.104], + [46033,0.215], + [46035,0.169], + [46037,0.229], + [46039,0.192], + [46041,0.097], + [46043,0.242], + [46045,0.217], + [46047,0.231], + [46049,0.237], + [46051,0.185], + [46053,0.237], + [46055,0.217], + [46057,0.173], + [46059,0.253], + [46061,0.14], + [46063,0.145], + [46065,0.134], + [46067,0.25], + [46069,0.226], + [46071,0.134], + [46073,0.251], + [46075,0.206], + [46077,0.218], + [46079,0.169], + [46081,0.166], + [46083,0.09], + [46085,0.146], + [46087,0.19], + [46089,0.298], + [46091,0.191], + [46093,0.119], + [46095,0.135], + [46097,0.223], + [46099,0.111], + [46101,0.152], + [46102,0.059], + [46103,0.135], + [46105,0.231], + [46107,0.269], + [46109,0.173], + [46111,0.203], + [46115,0.201], + [46117,0.158], + [46119,0.192], + [46121,0.062], + [46123,0.21], + [46125,0.19], + [46127,0.14], + [46129,0.24], + [46135,0.163], + [46137,0.07], + [47001,0.174], + [47003,0.129], + [47005,0.199], + [47007,0.154], + [47009,0.161], + [47011,0.141], + [47013,0.172], + [47015,0.161], + [47017,0.179], + [47019,0.171], + [47021,0.109], + [47023,0.146], + [47025,0.16], + [47027,0.201], + [47029,0.167], + [47031,0.158], + [47033,0.164], + [47035,0.26], + [47037,0.104], + [47039,0.207], + [47041,0.158], + [47043,0.133], + [47045,0.144], + [47047,0.149], + [47049,0.17], + [47051,0.173], + [47053,0.165], + [47055,0.167], + [47057,0.16], + [47059,0.174], + [47061,0.175], + [47063,0.159], + [47065,0.147], + [47067,0.17], + [47069,0.14], + [47071,0.185], + [47073,0.165], + [47075,0.137], + [47077,0.148], + [47079,0.197], + [47081,0.139], + [47083,0.178], + [47085,0.173], + [47087,0.177], + [47089,0.162], + [47091,0.177], + [47093,0.131], + [47095,0.137], + [47097,0.123], + [47099,0.161], + [47101,0.162], + [47103,0.166], + [47105,0.215], + [47107,0.169], + [47109,0.173], + [47111,0.141], + [47113,0.132], + [47115,0.159], + [47117,0.131], + [47119,0.129], + [47121,0.16], + [47123,0.164], + [47125,0.08], + [47127,0.184], + [47129,0.137], + [47131,0.168], + [47133,0.168], + [47135,0.187], + [47137,0.225], + [47139,0.171], + [47141,0.146], + [47143,0.157], + [47145,0.186], + [47147,0.118], + [47149,0.082], + [47151,0.137], + [47153,0.156], + [47155,0.155], + [47157,0.103], + [47159,0.136], + [47161,0.167], + [47163,0.186], + [47165,0.126], + [47167,0.111], + [47169,0.135], + [47171,0.197], + [47173,0.138], + [47175,0.17], + [47177,0.151], + [47179,0.153], + [47181,0.159], + [47183,0.153], + [47185,0.175], + [47187,0.097], + [47189,0.122], + [48001,0.126], + [48003,0.112], + [48005,0.136], + [48007,0.242], + [48009,0.16], + [48011,0.207], + [48013,0.127], + [48015,0.156], + [48017,0.141], + [48019,0.201], + [48021,0.115], + [48023,0.251], + [48025,0.108], + [48027,0.087], + [48029,0.103], + [48031,0.182], + [48033,0.207], + [48035,0.211], + [48037,0.142], + [48039,0.096], + [48041,0.072], + [48043,0.166], + [48045,0.219], + [48047,0.17], + [48049,0.173], + [48051,0.175], + [48053,0.186], + [48055,0.118], + [48057,0.151], + [48059,0.182], + [48061,0.111], + [48063,0.161], + [48065,0.172], + [48067,0.191], + [48069,0.134], + [48071,0.094], + [48073,0.15], + [48075,0.151], + [48077,0.178], + [48079,0.149], + [48081,0.26], + [48083,0.217], + [48085,0.077], + [48087,0.179], + [48089,0.194], + [48091,0.155], + [48093,0.209], + [48095,0.137], + [48097,0.159], + [48099,0.075], + [48101,0.238], + [48103,0.113], + [48105,0.147], + [48107,0.175], + [48109,0.148], + [48111,0.094], + [48113,0.088], + [48115,0.14], + [48117,0.115], + [48119,0.198], + [48121,0.069], + [48123,0.183], + [48125,0.197], + [48127,0.142], + [48129,0.212], + [48131,0.16], + [48133,0.199], + [48135,0.102], + [48137,0.218], + [48139,0.1], + [48141,0.103], + [48143,0.126], + [48145,0.161], + [48147,0.17], + [48149,0.215], + [48151,0.222], + [48153,0.178], + [48155,0.239], + [48157,0.073], + [48159,0.187], + [48161,0.166], + [48163,0.112], + [48165,0.09], + [48167,0.113], + [48169,0.109], + [48171,0.265], + [48173,0.131], + [48175,0.19], + [48177,0.151], + [48179,0.16], + [48181,0.155], + [48183,0.135], + [48185,0.138], + [48187,0.116], + [48189,0.122], + [48191,0.226], + [48193,0.247], + [48195,0.136], + [48197,0.195], + [48199,0.135], + [48201,0.081], + [48203,0.133], + [48205,0.125], + [48207,0.218], + [48209,0.085], + [48211,0.129], + [48213,0.191], + [48215,0.093], + [48217,0.183], + [48219,0.128], + [48221,0.213], + [48223,0.155], + [48225,0.192], + [48227,0.132], + [48229,0.136], + [48231,0.139], + [48233,0.147], + [48235,0.182], + [48237,0.149], + [48239,0.164], + [48241,0.166], + [48243,0.232], + [48245,0.127], + [48247,0.149], + [48249,0.131], + [48251,0.115], + [48253,0.137], + [48255,0.14], + [48257,0.103], + [48259,0.167], + [48261,0.142], + [48263,0.257], + [48265,0.248], + [48267,0.228], + [48269,0.133], + [48271,0.243], + [48273,0.115], + [48275,0.212], + [48277,0.166], + [48279,0.159], + [48281,0.158], + [48283,0.124], + [48285,0.212], + [48287,0.158], + [48289,0.215], + [48291,0.112], + [48293,0.161], + [48295,0.147], + [48297,0.192], + [48299,0.311], + [48301,0.146], + [48303,0.11], + [48305,0.158], + [48307,0.199], + [48309,0.125], + [48311,0.264], + [48313,0.139], + [48315,0.215], + [48317,0.123], + [48319,0.244], + [48321,0.143], + [48323,0.106], + [48325,0.135], + [48327,0.269], + [48329,0.11], + [48331,0.174], + [48333,0.235], + [48335,0.131], + [48337,0.197], + [48339,0.104], + [48341,0.096], + [48343,0.194], + [48345,0.271], + [48347,0.118], + [48349,0.144], + [48351,0.162], + [48353,0.166], + [48355,0.12], + [48357,0.103], + [48359,0.124], + [48361,0.14], + [48363,0.163], + [48365,0.156], + [48367,0.122], + [48369,0.119], + [48371,0.117], + [48373,0.19], + [48375,0.109], + [48377,0.178], + [48379,0.204], + [48381,0.125], + [48383,0.104], + [48385,0.258], + [48387,0.211], + [48389,0.12], + [48391,0.195], + [48393,0.16], + [48395,0.167], + [48397,0.096], + [48399,0.195], + [48401,0.14], + [48403,0.268], + [48405,0.231], + [48407,0.173], + [48409,0.129], + [48411,0.192], + [48413,0.127], + [48415,0.141], + [48417,0.174], + [48419,0.157], + [48421,0.133], + [48423,0.142], + [48425,0.148], + [48427,0.103], + [48429,0.182], + [48431,0.164], + [48433,0.237], + [48435,0.139], + [48437,0.171], + [48439,0.089], + [48441,0.132], + [48443,0.208], + [48445,0.144], + [48447,0.246], + [48449,0.115], + [48451,0.138], + [48453,0.073], + [48455,0.224], + [48457,0.19], + [48459,0.157], + [48461,0.147], + [48463,0.148], + [48465,0.124], + [48467,0.18], + [48469,0.134], + [48471,0.103], + [48473,0.102], + [48475,0.148], + [48477,0.184], + [48479,0.078], + [48481,0.146], + [48483,0.184], + [48485,0.131], + [48487,0.156], + [48489,0.117], + [48491,0.089], + [48493,0.126], + [48495,0.118], + [48497,0.123], + [48499,0.242], + [48501,0.114], + [48503,0.184], + [48505,0.104], + [48507,0.121], + [49001,0.126], + [49003,0.111], + [49005,0.077], + [49007,0.136], + [49009,0.19], + [49011,0.082], + [49013,0.107], + [49015,0.125], + [49017,0.161], + [49019,0.136], + [49021,0.098], + [49023,0.102], + [49025,0.195], + [49027,0.142], + [49029,0.105], + [49031,0.213], + [49033,0.152], + [49035,0.087], + [49037,0.109], + [49039,0.115], + [49041,0.145], + [49043,0.076], + [49045,0.075], + [49047,0.092], + [49049,0.065], + [49051,0.086], + [49053,0.173], + [49055,0.153], + [49057,0.101], + [50001,0.139], + [50003,0.188], + [50005,0.153], + [50007,0.113], + [50009,0.193], + [50011,0.122], + [50013,0.14], + [50015,0.133], + [50017,0.148], + [50019,0.177], + [50021,0.166], + [50023,0.145], + [50025,0.161], + [50027,0.178], + [51001,0.191], + [51003,0.143], + [51005,0.203], + [51007,0.158], + [51009,0.165], + [51011,0.174], + [51013,0.087], + [51015,0.161], + [51017,0.222], + [51019,0.162], + [51021,0.174], + [51023,0.164], + [51025,0.165], + [51027,0.161], + [51029,0.143], + [51031,0.158], + [51033,0.131], + [51035,0.194], + [51036,0.167], + [51037,0.187], + [51041,0.104], + [51043,0.163], + [51045,0.171], + [51047,0.122], + [51049,0.161], + [51051,0.167], + [51053,0.137], + [51057,0.174], + [51059,0.098], + [51061,0.127], + [51063,0.176], + [51065,0.157], + [51067,0.176], + [51069,0.127], + [51071,0.18], + [51073,0.147], + [51075,0.149], + [51077,0.21], + [51079,0.127], + [51081,0.126], + [51083,0.194], + [51085,0.131], + [51087,0.124], + [51089,0.197], + [51091,0.249], + [51093,0.146], + [51095,0.207], + [51097,0.173], + [51099,0.102], + [51101,0.124], + [51103,0.312], + [51105,0.16], + [51107,0.065], + [51109,0.145], + [51111,0.172], + [51113,0.175], + [51115,0.255], + [51117,0.207], + [51119,0.252], + [51121,0.098], + [51125,0.199], + [51127,0.121], + [51131,0.224], + [51133,0.301], + [51135,0.171], + [51137,0.181], + [51139,0.177], + [51141,0.215], + [51143,0.172], + [51145,0.121], + [51147,0.139], + [51149,0.104], + [51153,0.068], + [51155,0.179], + [51157,0.191], + [51159,0.182], + [51161,0.172], + [51163,0.207], + [51165,0.157], + [51167,0.164], + [51169,0.197], + [51171,0.185], + [51173,0.182], + [51175,0.152], + [51177,0.099], + [51179,0.073], + [51181,0.159], + [51183,0.145], + [51185,0.172], + [51187,0.127], + [51191,0.177], + [51193,0.209], + [51195,0.141], + [51197,0.178], + [51199,0.121], + [51510,0.091], + [51520,0.19], + [51530,0.161], + [51540,0.092], + [51550,0.104], + [51570,0.196], + [51580,0.187], + [51590,0.191], + [51595,0.169], + [51600,0.137], + [51610,0.105], + [51620,0.172], + [51630,0.099], + [51640,0.202], + [51650,0.123], + [51660,0.082], + [51670,0.149], + [51678,0.153], + [51680,0.14], + [51683,0.069], + [51685,0.056], + [51690,0.192], + [51700,0.106], + [51710,0.094], + [51720,0.147], + [51730,0.15], + [51735,0.156], + [51740,0.132], + [51750,0.084], + [51760,0.111], + [51770,0.143], + [51775,0.171], + [51790,0.198], + [51800,0.115], + [51810,0.106], + [51820,0.17], + [51830,0.134], + [51840,0.14], + [53001,0.102], + [53003,0.193], + [53005,0.118], + [53007,0.154], + [53009,0.241], + [53011,0.115], + [53013,0.23], + [53015,0.154], + [53017,0.142], + [53019,0.189], + [53021,0.073], + [53023,0.223], + [53025,0.118], + [53027,0.163], + [53029,0.184], + [53031,0.263], + [53033,0.109], + [53035,0.133], + [53037,0.127], + [53039,0.178], + [53041,0.173], + [53043,0.208], + [53045,0.183], + [53047,0.172], + [53049,0.248], + [53051,0.191], + [53053,0.11], + [53055,0.232], + [53057,0.161], + [53059,0.144], + [53061,0.103], + [53063,0.129], + [53065,0.173], + [53067,0.13], + [53069,0.255], + [53071,0.149], + [53073,0.132], + [53075,0.095], + [53077,0.116], + [54001,0.166], + [54003,0.114], + [54005,0.142], + [54007,0.175], + [54009,0.191], + [54011,0.16], + [54013,0.182], + [54015,0.157], + [54017,0.162], + [54019,0.169], + [54021,0.137], + [54023,0.183], + [54025,0.193], + [54027,0.163], + [54029,0.188], + [54031,0.166], + [54033,0.165], + [54035,0.177], + [54037,0.118], + [54039,0.167], + [54041,0.179], + [54043,0.151], + [54045,0.152], + [54047,0.165], + [54049,0.169], + [54051,0.176], + [54053,0.17], + [54055,0.18], + [54057,0.173], + [54059,0.135], + [54061,0.102], + [54063,0.196], + [54065,0.183], + [54067,0.171], + [54069,0.185], + [54071,0.218], + [54073,0.161], + [54075,0.193], + [54077,0.157], + [54079,0.144], + [54081,0.161], + [54083,0.178], + [54085,0.172], + [54087,0.172], + [54089,0.193], + [54091,0.162], + [54093,0.21], + [54095,0.185], + [54097,0.167], + [54099,0.165], + [54101,0.175], + [54103,0.195], + [54105,0.156], + [54107,0.169], + [54109,0.151], + [55001,0.235], + [55003,0.159], + [55005,0.182], + [55007,0.207], + [55009,0.116], + [55011,0.181], + [55013,0.231], + [55015,0.115], + [55017,0.143], + [55019,0.156], + [55021,0.146], + [55023,0.184], + [55025,0.103], + [55027,0.149], + [55029,0.225], + [55031,0.144], + [55033,0.121], + [55035,0.126], + [55037,0.21], + [55039,0.15], + [55041,0.203], + [55043,0.156], + [55045,0.149], + [55047,0.192], + [55049,0.138], + [55051,0.254], + [55053,0.162], + [55055,0.132], + [55057,0.175], + [55059,0.112], + [55061,0.165], + [55063,0.133], + [55065,0.154], + [55067,0.2], + [55069,0.183], + [55071,0.168], + [55073,0.142], + [55075,0.198], + [55077,0.211], + [55078,0.114], + [55079,0.115], + [55081,0.139], + [55083,0.16], + [55085,0.217], + [55087,0.118], + [55089,0.153], + [55091,0.179], + [55093,0.104], + [55095,0.16], + [55097,0.128], + [55099,0.21], + [55101,0.132], + [55103,0.18], + [55105,0.136], + [55107,0.201], + [55109,0.1], + [55111,0.15], + [55113,0.207], + [55115,0.183], + [55117,0.146], + [55119,0.161], + [55121,0.158], + [55123,0.167], + [55125,0.259], + [55127,0.135], + [55129,0.212], + [55131,0.135], + [55133,0.143], + [55135,0.181], + [55137,0.199], + [55139,0.134], + [55141,0.171], + [56001,0.087], + [56003,0.181], + [56005,0.057], + [56007,0.129], + [56009,0.128], + [56011,0.162], + [56013,0.145], + [56015,0.189], + [56017,0.226], + [56019,0.185], + [56021,0.125], + [56023,0.124], + [56025,0.124], + [56027,0.207], + [56029,0.175], + [56031,0.207], + [56033,0.156], + [56035,0.101], + [56037,0.083], + [56039,0.099], + [56041,0.089], + [56043,0.177], + [56045,0.159] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-over65-2017.json b/data/regional/united-states/demographics/age/us-age-over65-2017.json new file mode 100644 index 0000000..f012fa8 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-over65-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Over 65", + "description" : "Percent of the population over age 65.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.over65.2017"], + [1001,0.143], + [1003,0.19], + [1005,0.174], + [1007,0.151], + [1009,0.174], + [1011,0.152], + [1013,0.185], + [1015,0.165], + [1017,0.186], + [1019,0.21], + [1021,0.155], + [1023,0.215], + [1025,0.185], + [1027,0.195], + [1029,0.185], + [1031,0.16], + [1033,0.189], + [1035,0.211], + [1037,0.21], + [1039,0.203], + [1041,0.179], + [1043,0.178], + [1045,0.158], + [1047,0.163], + [1049,0.16], + [1051,0.141], + [1053,0.17], + [1055,0.178], + [1057,0.2], + [1059,0.163], + [1061,0.19], + [1063,0.194], + [1065,0.181], + [1067,0.21], + [1069,0.165], + [1071,0.187], + [1073,0.146], + [1075,0.206], + [1077,0.189], + [1079,0.168], + [1081,0.108], + [1083,0.143], + [1085,0.174], + [1087,0.178], + [1089,0.14], + [1091,0.187], + [1093,0.204], + [1095,0.166], + [1097,0.149], + [1099,0.186], + [1101,0.137], + [1103,0.163], + [1105,0.185], + [1107,0.181], + [1109,0.143], + [1111,0.197], + [1113,0.13], + [1115,0.155], + [1117,0.137], + [1119,0.164], + [1121,0.165], + [1123,0.199], + [1125,0.121], + [1127,0.183], + [1129,0.173], + [1131,0.178], + [1133,0.206], + [2013,0.082], + [2016,0.055], + [2020,0.094], + [2050,0.071], + [2060,0.097], + [2068,0.076], + [2070,0.081], + [2090,0.087], + [2100,0.225], + [2105,0.19], + [2110,0.113], + [2122,0.148], + [2130,0.135], + [2150,0.088], + [2158,null], + [2164,0.075], + [2170,0.101], + [2180,0.073], + [2185,0.061], + [2188,0.072], + [2195,0.167], + [2198,0.138], + [2220,0.139], + [2230,0.113], + [2240,0.122], + [2261,0.118], + [2275,0.224], + [2282,0.139], + [2290,0.126], + [4001,0.138], + [4003,0.204], + [4005,0.111], + [4007,0.27], + [4009,0.129], + [4011,0.118], + [4012,0.373], + [4013,0.141], + [4015,0.28], + [4017,0.163], + [4019,0.181], + [4021,0.186], + [4023,0.163], + [4025,0.289], + [4027,0.176], + [5001,0.181], + [5003,0.187], + [5005,0.305], + [5007,0.13], + [5009,0.198], + [5011,0.184], + [5013,0.21], + [5015,0.215], + [5017,0.192], + [5019,0.156], + [5021,0.209], + [5023,0.26], + [5025,0.195], + [5027,0.166], + [5029,0.185], + [5031,0.131], + [5033,0.156], + [5035,0.128], + [5037,0.176], + [5039,0.206], + [5041,0.176], + [5043,0.164], + [5045,0.115], + [5047,0.187], + [5049,0.25], + [5051,0.226], + [5053,0.17], + [5055,0.153], + [5057,0.171], + [5059,0.18], + [5061,0.17], + [5063,0.169], + [5065,0.248], + [5067,0.163], + [5069,0.159], + [5071,0.158], + [5073,0.223], + [5075,0.193], + [5077,0.178], + [5079,0.143], + [5081,0.199], + [5083,0.188], + [5085,0.127], + [5087,0.182], + [5089,0.27], + [5091,0.157], + [5093,0.138], + [5095,0.22], + [5097,0.258], + [5099,0.195], + [5101,0.239], + [5103,0.186], + [5105,0.189], + [5107,0.169], + [5109,0.193], + [5111,0.172], + [5113,0.216], + [5115,0.147], + [5117,0.227], + [5119,0.14], + [5121,0.199], + [5123,0.146], + [5125,0.168], + [5127,0.194], + [5129,0.249], + [5131,0.148], + [5133,0.14], + [5135,0.256], + [5137,0.258], + [5139,0.168], + [5141,0.251], + [5143,0.109], + [5145,0.154], + [5147,0.216], + [5149,0.165], + [6001,0.128], + [6003,0.275], + [6005,0.256], + [6007,0.173], + [6009,0.257], + [6011,0.134], + [6013,0.146], + [6015,0.159], + [6017,0.189], + [6019,0.114], + [6021,0.149], + [6023,0.161], + [6025,0.121], + [6027,0.218], + [6029,0.102], + [6031,0.095], + [6033,0.212], + [6035,0.127], + [6037,0.125], + [6039,0.131], + [6041,0.203], + [6043,0.26], + [6045,0.197], + [6047,0.107], + [6049,0.246], + [6051,0.137], + [6053,0.124], + [6055,0.174], + [6057,0.244], + [6059,0.135], + [6061,0.182], + [6063,0.258], + [6065,0.135], + [6067,0.13], + [6069,0.117], + [6071,0.106], + [6073,0.129], + [6075,0.149], + [6077,0.12], + [6079,0.181], + [6081,0.151], + [6083,0.143], + [6085,0.126], + [6087,0.142], + [6089,0.194], + [6091,0.264], + [6093,0.234], + [6095,0.142], + [6097,0.174], + [6099,0.123], + [6101,0.146], + [6103,0.185], + [6105,0.255], + [6107,0.107], + [6109,0.241], + [6111,0.141], + [6113,0.115], + [6115,0.116], + [8001,0.096], + [8003,0.125], + [8005,0.12], + [8007,0.233], + [8009,0.252], + [8011,0.169], + [8013,0.126], + [8014,0.125], + [8015,0.241], + [8017,0.128], + [8019,0.179], + [8021,0.175], + [8023,0.263], + [8025,0.133], + [8027,0.335], + [8029,0.24], + [8031,0.112], + [8033,0.244], + [8035,0.104], + [8037,0.094], + [8039,0.142], + [8041,0.118], + [8043,0.205], + [8045,0.114], + [8047,0.15], + [8049,0.157], + [8051,0.118], + [8053,0.267], + [8055,0.303], + [8057,0.213], + [8059,0.151], + [8061,0.213], + [8063,0.174], + [8065,0.112], + [8067,0.15], + [8069,0.142], + [8071,0.223], + [8073,0.172], + [8075,0.166], + [8077,0.173], + [8079,0.324], + [8081,0.132], + [8083,0.201], + [8085,0.218], + [8087,0.152], + [8089,0.193], + [8091,0.264], + [8093,0.182], + [8095,0.174], + [8097,0.166], + [8099,0.167], + [8101,0.174], + [8103,0.137], + [8105,0.183], + [8107,0.131], + [8109,0.198], + [8111,0.17], + [8113,0.113], + [8115,0.25], + [8117,0.113], + [8119,0.192], + [8121,0.193], + [8123,0.114], + [8125,0.176], + [9001,0.149], + [9003,0.162], + [9005,0.192], + [9007,0.184], + [9009,0.162], + [9011,0.167], + [9013,0.143], + [9015,0.152], + [10001,0.158], + [10003,0.142], + [10005,0.252], + [11001,0.119], + [12001,0.128], + [12003,0.136], + [12005,0.163], + [12007,0.174], + [12009,0.227], + [12011,0.156], + [12013,0.177], + [12015,0.383], + [12017,0.355], + [12019,0.145], + [12021,0.302], + [12023,0.176], + [12027,0.208], + [12029,0.225], + [12031,0.13], + [12033,0.158], + [12035,0.287], + [12037,0.207], + [12039,0.16], + [12041,0.201], + [12043,0.251], + [12045,0.191], + [12047,0.162], + [12049,0.151], + [12051,0.131], + [12053,0.275], + [12055,0.345], + [12057,0.135], + [12059,0.192], + [12061,0.308], + [12063,0.181], + [12065,0.212], + [12067,0.139], + [12069,0.261], + [12071,0.27], + [12073,0.119], + [12075,0.235], + [12077,0.131], + [12079,0.191], + [12081,0.26], + [12083,0.28], + [12085,0.297], + [12086,0.153], + [12087,0.206], + [12089,0.204], + [12091,0.151], + [12093,0.193], + [12095,0.111], + [12097,0.125], + [12099,0.23], + [12101,0.223], + [12103,0.234], + [12105,0.198], + [12107,0.217], + [12109,0.186], + [12111,0.228], + [12113,0.149], + [12115,0.348], + [12117,0.144], + [12119,0.542], + [12121,0.199], + [12123,0.185], + [12125,0.14], + [12127,0.234], + [12129,0.134], + [12131,0.189], + [12133,0.173], + [13001,0.162], + [13003,0.125], + [13005,0.148], + [13007,0.19], + [13009,0.144], + [13011,0.165], + [13013,0.115], + [13015,0.13], + [13017,0.158], + [13019,0.164], + [13021,0.144], + [13023,0.169], + [13025,0.15], + [13027,0.189], + [13029,0.101], + [13031,0.106], + [13033,0.141], + [13035,0.147], + [13037,0.14], + [13039,0.117], + [13043,0.167], + [13045,0.127], + [13047,0.162], + [13049,0.143], + [13051,0.14], + [13053,0.037], + [13055,0.166], + [13057,0.123], + [13059,0.099], + [13061,0.217], + [13063,0.084], + [13065,0.152], + [13067,0.11], + [13069,0.13], + [13071,0.142], + [13073,0.123], + [13075,0.151], + [13077,0.128], + [13079,0.17], + [13081,0.169], + [13083,0.177], + [13085,0.191], + [13087,0.156], + [13089,0.111], + [13091,0.163], + [13093,0.175], + [13095,0.142], + [13097,0.107], + [13099,0.185], + [13101,0.109], + [13103,0.11], + [13105,0.193], + [13107,0.153], + [13109,0.159], + [13111,0.27], + [13113,0.165], + [13115,0.159], + [13117,0.111], + [13119,0.19], + [13121,0.108], + [13123,0.225], + [13125,0.17], + [13127,0.182], + [13129,0.136], + [13131,0.165], + [13133,0.271], + [13135,0.089], + [13137,0.18], + [13139,0.138], + [13141,0.206], + [13143,0.158], + [13145,0.169], + [13147,0.206], + [13149,0.159], + [13151,0.106], + [13153,0.119], + [13155,0.182], + [13157,0.143], + [13159,0.164], + [13161,0.15], + [13163,0.169], + [13165,0.156], + [13167,0.173], + [13169,0.161], + [13171,0.162], + [13173,0.126], + [13175,0.163], + [13177,0.112], + [13179,0.08], + [13181,0.217], + [13183,0.082], + [13185,0.111], + [13187,0.162], + [13189,0.163], + [13191,0.234], + [13193,0.153], + [13195,0.16], + [13197,0.18], + [13199,0.19], + [13201,0.208], + [13205,0.152], + [13207,0.171], + [13209,0.156], + [13211,0.184], + [13213,0.134], + [13215,0.122], + [13217,0.12], + [13219,0.142], + [13221,0.177], + [13223,0.097], + [13225,0.144], + [13227,0.206], + [13229,0.163], + [13231,0.15], + [13233,0.152], + [13235,0.186], + [13237,0.221], + [13239,0.321], + [13241,0.261], + [13243,0.231], + [13245,0.128], + [13247,0.13], + [13249,0.164], + [13251,0.17], + [13253,0.218], + [13255,0.168], + [13257,0.187], + [13259,0.152], + [13261,0.155], + [13263,0.225], + [13265,0.213], + [13267,0.132], + [13269,0.183], + [13271,0.161], + [13273,0.177], + [13275,0.167], + [13277,0.14], + [13279,0.153], + [13281,0.336], + [13283,0.191], + [13285,0.139], + [13287,0.189], + [13289,0.205], + [13291,0.316], + [13293,0.177], + [13295,0.176], + [13297,0.147], + [13299,0.165], + [13301,0.205], + [13303,0.162], + [13305,0.147], + [13307,0.191], + [13309,0.135], + [13311,0.207], + [13313,0.131], + [13315,0.163], + [13317,0.221], + [13319,0.178], + [13321,0.177], + [15001,0.185], + [15003,0.164], + [15005,0.14], + [15007,0.18], + [15009,0.161], + [16001,0.13], + [16003,0.271], + [16005,0.13], + [16007,0.2], + [16009,0.218], + [16011,0.132], + [16013,0.165], + [16015,0.233], + [16017,0.22], + [16019,0.124], + [16021,0.206], + [16023,0.2], + [16025,0.208], + [16027,0.128], + [16029,0.171], + [16031,0.132], + [16033,0.107], + [16035,0.257], + [16037,0.294], + [16039,0.124], + [16041,0.134], + [16043,0.163], + [16045,0.208], + [16047,0.167], + [16049,0.252], + [16051,0.107], + [16053,0.125], + [16055,0.174], + [16057,0.12], + [16059,0.276], + [16061,0.24], + [16063,0.126], + [16065,0.063], + [16067,0.156], + [16069,0.191], + [16071,0.189], + [16073,0.169], + [16075,0.169], + [16077,0.15], + [16079,0.219], + [16081,0.094], + [16083,0.148], + [16085,0.246], + [16087,0.237], + [17001,0.191], + [17003,0.199], + [17005,0.17], + [17007,0.143], + [17009,0.137], + [17011,0.205], + [17013,0.226], + [17015,0.238], + [17017,0.164], + [17019,0.116], + [17021,0.187], + [17023,0.187], + [17025,0.196], + [17027,0.158], + [17029,0.155], + [17031,0.135], + [17033,0.183], + [17035,0.185], + [17037,0.115], + [17039,0.181], + [17041,0.168], + [17043,0.14], + [17045,0.205], + [17047,0.199], + [17049,0.165], + [17051,0.177], + [17053,0.187], + [17055,0.196], + [17057,0.192], + [17059,0.229], + [17061,0.185], + [17063,0.131], + [17065,0.208], + [17067,0.22], + [17069,0.206], + [17071,0.242], + [17073,0.192], + [17075,0.205], + [17077,0.137], + [17079,0.184], + [17081,0.178], + [17083,0.18], + [17085,0.256], + [17087,0.194], + [17089,0.121], + [17091,0.155], + [17093,0.093], + [17095,0.199], + [17097,0.128], + [17099,0.177], + [17101,0.169], + [17103,0.18], + [17105,0.176], + [17107,0.172], + [17109,0.16], + [17111,0.129], + [17113,0.118], + [17115,0.184], + [17117,0.188], + [17119,0.161], + [17121,0.189], + [17123,0.222], + [17125,0.216], + [17127,0.204], + [17129,0.184], + [17131,0.206], + [17133,0.163], + [17135,0.189], + [17137,0.189], + [17139,0.183], + [17141,0.174], + [17143,0.155], + [17145,0.176], + [17147,0.184], + [17149,0.199], + [17151,0.279], + [17153,0.207], + [17155,0.215], + [17157,0.175], + [17159,0.197], + [17161,0.179], + [17163,0.143], + [17165,0.192], + [17167,0.161], + [17169,0.206], + [17171,0.193], + [17173,0.21], + [17175,0.211], + [17177,0.208], + [17179,0.173], + [17181,0.195], + [17183,0.18], + [17185,0.193], + [17187,0.181], + [17189,0.19], + [17191,0.207], + [17193,0.212], + [17195,0.194], + [17197,0.117], + [17199,0.177], + [17201,0.161], + [17203,0.164], + [18001,0.148], + [18003,0.135], + [18005,0.154], + [18007,0.17], + [18009,0.201], + [18011,0.126], + [18013,0.23], + [18015,0.183], + [18017,0.168], + [18019,0.145], + [18021,0.168], + [18023,0.157], + [18025,0.183], + [18027,0.148], + [18029,0.159], + [18031,0.158], + [18033,0.151], + [18035,0.163], + [18037,0.161], + [18039,0.136], + [18041,0.188], + [18043,0.148], + [18045,0.193], + [18047,0.165], + [18049,0.182], + [18051,0.164], + [18053,0.18], + [18055,0.185], + [18057,0.11], + [18059,0.152], + [18061,0.166], + [18063,0.127], + [18065,0.18], + [18067,0.182], + [18069,0.162], + [18071,0.155], + [18073,0.163], + [18075,0.171], + [18077,0.162], + [18079,0.152], + [18081,0.139], + [18083,0.169], + [18085,0.153], + [18087,0.13], + [18089,0.152], + [18091,0.163], + [18093,0.187], + [18095,0.173], + [18097,0.117], + [18099,0.165], + [18101,0.178], + [18103,0.166], + [18105,0.118], + [18107,0.171], + [18109,0.154], + [18111,0.176], + [18113,0.144], + [18115,0.201], + [18117,0.182], + [18119,0.18], + [18121,0.178], + [18123,0.174], + [18125,0.192], + [18127,0.149], + [18129,0.171], + [18131,0.181], + [18133,0.155], + [18135,0.189], + [18137,0.167], + [18139,0.176], + [18141,0.147], + [18143,0.159], + [18145,0.158], + [18147,0.181], + [18149,0.169], + [18151,0.182], + [18153,0.167], + [18155,0.173], + [18157,0.106], + [18159,0.193], + [18161,0.18], + [18163,0.157], + [18165,0.188], + [18167,0.151], + [18169,0.195], + [18171,0.193], + [18173,0.161], + [18175,0.16], + [18177,0.182], + [18179,0.173], + [18181,0.189], + [18183,0.168], + [19001,0.219], + [19003,0.223], + [19005,0.214], + [19007,0.221], + [19009,0.241], + [19011,0.172], + [19013,0.151], + [19015,0.169], + [19017,0.189], + [19019,0.171], + [19021,0.142], + [19023,0.214], + [19025,0.224], + [19027,0.191], + [19029,0.219], + [19031,0.185], + [19033,0.201], + [19035,0.227], + [19037,0.195], + [19039,0.172], + [19041,0.2], + [19043,0.216], + [19045,0.186], + [19047,0.168], + [19049,0.113], + [19051,0.175], + [19053,0.184], + [19055,0.182], + [19057,0.191], + [19059,0.243], + [19061,0.165], + [19063,0.196], + [19065,0.209], + [19067,0.214], + [19069,0.202], + [19071,0.215], + [19073,0.213], + [19075,0.2], + [19077,0.217], + [19079,0.194], + [19081,0.21], + [19083,0.209], + [19085,0.188], + [19087,0.177], + [19089,0.201], + [19091,0.203], + [19093,0.217], + [19095,0.178], + [19097,0.198], + [19099,0.184], + [19101,0.191], + [19103,0.103], + [19105,0.191], + [19107,0.209], + [19109,0.225], + [19111,0.191], + [19113,0.147], + [19115,0.167], + [19117,0.209], + [19119,0.174], + [19121,0.162], + [19123,0.174], + [19125,0.17], + [19127,0.173], + [19129,0.167], + [19131,0.217], + [19133,0.242], + [19135,0.189], + [19137,0.206], + [19139,0.154], + [19141,0.205], + [19143,0.203], + [19145,0.206], + [19147,0.211], + [19149,0.178], + [19151,0.223], + [19153,0.121], + [19155,0.162], + [19157,0.194], + [19159,0.239], + [19161,0.224], + [19163,0.149], + [19165,0.222], + [19167,0.146], + [19169,0.11], + [19171,0.191], + [19173,0.214], + [19175,0.193], + [19177,0.208], + [19179,0.169], + [19181,0.149], + [19183,0.184], + [19185,0.222], + [19187,0.173], + [19189,0.2], + [19191,0.187], + [19193,0.141], + [19195,0.195], + [19197,0.214], + [20001,0.196], + [20003,0.212], + [20005,0.166], + [20007,0.211], + [20009,0.178], + [20011,0.186], + [20013,0.188], + [20015,0.14], + [20017,0.235], + [20019,0.25], + [20021,0.18], + [20023,0.267], + [20025,0.215], + [20027,0.227], + [20029,0.205], + [20031,0.199], + [20033,0.249], + [20035,0.173], + [20037,0.149], + [20039,0.272], + [20041,0.186], + [20043,0.178], + [20045,0.108], + [20047,0.197], + [20049,0.283], + [20051,0.142], + [20053,0.203], + [20055,0.099], + [20057,0.104], + [20059,0.159], + [20061,0.078], + [20063,0.264], + [20065,0.257], + [20067,0.114], + [20069,0.147], + [20071,0.22], + [20073,0.244], + [20075,0.121], + [20077,0.215], + [20079,0.184], + [20081,0.138], + [20083,0.219], + [20085,0.178], + [20087,0.178], + [20089,0.284], + [20091,0.131], + [20093,0.138], + [20095,0.214], + [20097,0.199], + [20099,0.181], + [20101,0.2], + [20103,0.132], + [20105,0.229], + [20107,0.212], + [20109,0.206], + [20111,0.138], + [20113,0.189], + [20115,0.226], + [20117,0.209], + [20119,0.173], + [20121,0.165], + [20123,0.227], + [20125,0.188], + [20127,0.24], + [20129,0.174], + [20131,0.196], + [20133,0.185], + [20135,0.246], + [20137,0.197], + [20139,0.189], + [20141,0.241], + [20143,0.187], + [20145,0.198], + [20147,0.217], + [20149,0.134], + [20151,0.182], + [20153,0.263], + [20155,0.184], + [20157,0.272], + [20159,0.178], + [20161,0.083], + [20163,0.211], + [20165,0.245], + [20167,0.236], + [20169,0.162], + [20171,0.17], + [20173,0.132], + [20175,0.095], + [20177,0.166], + [20179,0.225], + [20181,0.19], + [20183,0.269], + [20185,0.205], + [20187,0.186], + [20189,0.129], + [20191,0.174], + [20193,0.16], + [20195,0.227], + [20197,0.181], + [20199,0.206], + [20201,0.239], + [20203,0.197], + [20205,0.205], + [20207,0.233], + [20209,0.115], + [21001,0.169], + [21003,0.165], + [21005,0.145], + [21007,0.194], + [21009,0.169], + [21011,0.159], + [21013,0.179], + [21015,0.121], + [21017,0.18], + [21019,0.183], + [21021,0.178], + [21023,0.153], + [21025,0.154], + [21027,0.183], + [21029,0.143], + [21031,0.175], + [21033,0.195], + [21035,0.164], + [21037,0.144], + [21039,0.2], + [21041,0.149], + [21043,0.174], + [21045,0.193], + [21047,0.114], + [21049,0.169], + [21051,0.138], + [21053,0.185], + [21055,0.196], + [21057,0.205], + [21059,0.162], + [21061,0.193], + [21063,0.177], + [21065,0.176], + [21067,0.122], + [21069,0.166], + [21071,0.163], + [21073,0.162], + [21075,0.187], + [21077,0.132], + [21079,0.172], + [21081,0.13], + [21083,0.176], + [21085,0.163], + [21087,0.2], + [21089,0.197], + [21091,0.163], + [21093,0.127], + [21095,0.167], + [21097,0.171], + [21099,0.161], + [21101,0.161], + [21103,0.161], + [21105,0.234], + [21107,0.171], + [21109,0.158], + [21111,0.149], + [21113,0.138], + [21115,0.167], + [21117,0.131], + [21119,0.161], + [21121,0.165], + [21123,0.169], + [21125,0.152], + [21127,0.165], + [21129,0.172], + [21131,0.162], + [21133,0.173], + [21135,0.172], + [21137,0.171], + [21139,0.201], + [21141,0.174], + [21143,0.241], + [21145,0.186], + [21147,0.145], + [21149,0.187], + [21151,0.129], + [21153,0.154], + [21155,0.157], + [21157,0.212], + [21159,0.141], + [21161,0.17], + [21163,0.13], + [21165,0.205], + [21167,0.177], + [21169,0.181], + [21171,0.182], + [21173,0.15], + [21175,0.151], + [21177,0.181], + [21179,0.141], + [21181,0.167], + [21183,0.176], + [21185,0.12], + [21187,0.176], + [21189,0.165], + [21191,0.148], + [21193,0.151], + [21195,0.167], + [21197,0.142], + [21199,0.18], + [21201,0.22], + [21203,0.17], + [21205,0.13], + [21207,0.189], + [21209,0.111], + [21211,0.143], + [21213,0.156], + [21215,0.127], + [21217,0.171], + [21219,0.156], + [21221,0.221], + [21223,0.17], + [21225,0.152], + [21227,0.122], + [21229,0.171], + [21231,0.19], + [21233,0.166], + [21235,0.156], + [21237,0.183], + [21239,0.165], + [22001,0.141], + [22003,0.142], + [22005,0.107], + [22007,0.159], + [22009,0.157], + [22011,0.149], + [22013,0.193], + [22015,0.131], + [22017,0.154], + [22019,0.139], + [22021,0.172], + [22023,0.156], + [22025,0.159], + [22027,0.182], + [22029,0.161], + [22031,0.165], + [22033,0.128], + [22035,0.13], + [22037,0.16], + [22039,0.145], + [22041,0.172], + [22043,0.14], + [22045,0.137], + [22047,0.144], + [22049,0.189], + [22051,0.156], + [22053,0.156], + [22055,0.118], + [22057,0.142], + [22059,0.16], + [22061,0.126], + [22063,0.122], + [22065,0.132], + [22067,0.172], + [22069,0.154], + [22071,0.129], + [22073,0.136], + [22075,0.119], + [22077,0.187], + [22079,0.152], + [22081,0.178], + [22083,0.162], + [22085,0.192], + [22087,0.103], + [22089,0.118], + [22091,0.175], + [22093,0.154], + [22095,0.126], + [22097,0.151], + [22099,0.135], + [22101,0.149], + [22103,0.154], + [22105,0.133], + [22107,0.219], + [22109,0.129], + [22111,0.19], + [22113,0.143], + [22115,0.109], + [22117,0.168], + [22119,0.184], + [22121,0.126], + [22123,0.183], + [22125,0.132], + [22127,0.17], + [23001,0.163], + [23003,0.22], + [23005,0.168], + [23007,0.202], + [23009,0.223], + [23011,0.182], + [23013,0.229], + [23015,0.258], + [23017,0.198], + [23019,0.169], + [23021,0.246], + [23023,0.2], + [23025,0.195], + [23027,0.203], + [23029,0.227], + [23031,0.186], + [24001,0.193], + [24003,0.138], + [24005,0.161], + [24009,0.136], + [24011,0.154], + [24013,0.156], + [24015,0.144], + [24017,0.114], + [24019,0.201], + [24021,0.134], + [24023,0.208], + [24025,0.149], + [24027,0.126], + [24029,0.251], + [24031,0.141], + [24033,0.118], + [24035,0.178], + [24037,0.119], + [24039,0.153], + [24041,0.269], + [24043,0.16], + [24045,0.147], + [24047,0.262], + [24510,0.128], + [25001,0.285], + [25003,0.215], + [25005,0.16], + [25007,0.212], + [25009,0.159], + [25011,0.194], + [25013,0.157], + [25015,0.153], + [25017,0.144], + [25019,0.147], + [25021,0.16], + [25023,0.167], + [25025,0.113], + [25027,0.145], + [26001,0.351], + [26003,0.236], + [26005,0.152], + [26007,0.22], + [26009,0.257], + [26011,0.232], + [26013,0.2], + [26015,0.174], + [26017,0.188], + [26019,0.244], + [26021,0.184], + [26023,0.172], + [26025,0.166], + [26027,0.194], + [26029,0.222], + [26031,0.253], + [26033,0.167], + [26035,0.225], + [26037,0.155], + [26039,0.24], + [26041,0.22], + [26043,0.211], + [26045,0.169], + [26047,0.202], + [26049,0.161], + [26051,0.254], + [26053,0.242], + [26055,0.178], + [26057,0.163], + [26059,0.18], + [26061,0.163], + [26063,0.238], + [26065,0.124], + [26067,0.135], + [26069,0.284], + [26071,0.289], + [26073,0.114], + [26075,0.162], + [26077,0.138], + [26079,0.194], + [26081,0.125], + [26083,0.313], + [26085,0.268], + [26087,0.164], + [26089,0.279], + [26091,0.173], + [26093,0.152], + [26095,0.205], + [26097,0.258], + [26099,0.159], + [26101,0.238], + [26103,0.172], + [26105,0.217], + [26107,0.173], + [26109,0.222], + [26111,0.169], + [26113,0.195], + [26115,0.163], + [26117,0.163], + [26119,0.301], + [26121,0.155], + [26123,0.18], + [26125,0.155], + [26127,0.198], + [26129,0.243], + [26131,0.333], + [26133,0.197], + [26135,0.262], + [26137,0.197], + [26139,0.137], + [26141,0.293], + [26143,0.305], + [26145,0.177], + [26147,0.172], + [26149,0.167], + [26151,0.2], + [26153,0.247], + [26155,0.169], + [26157,0.188], + [26159,0.165], + [26161,0.125], + [26163,0.144], + [26165,0.178], + [27001,0.314], + [27003,0.125], + [27005,0.194], + [27007,0.147], + [27009,0.132], + [27011,0.252], + [27013,0.128], + [27015,0.201], + [27017,0.165], + [27019,0.104], + [27021,0.243], + [27023,0.203], + [27025,0.14], + [27027,0.127], + [27029,0.197], + [27031,0.261], + [27033,0.222], + [27035,0.21], + [27037,0.126], + [27039,0.137], + [27041,0.216], + [27043,0.223], + [27045,0.201], + [27047,0.217], + [27049,0.181], + [27051,0.231], + [27053,0.129], + [27055,0.2], + [27057,0.24], + [27059,0.145], + [27061,0.214], + [27063,0.204], + [27065,0.193], + [27067,0.175], + [27069,0.234], + [27071,0.222], + [27073,0.254], + [27075,0.244], + [27077,0.22], + [27079,0.165], + [27081,0.245], + [27083,0.147], + [27085,0.177], + [27087,0.17], + [27089,0.201], + [27091,0.222], + [27093,0.184], + [27095,0.175], + [27097,0.18], + [27099,0.183], + [27101,0.246], + [27103,0.147], + [27105,0.155], + [27107,0.213], + [27109,0.142], + [27111,0.225], + [27113,0.172], + [27115,0.189], + [27117,0.204], + [27119,0.174], + [27121,0.229], + [27123,0.134], + [27125,0.19], + [27127,0.209], + [27129,0.201], + [27131,0.144], + [27133,0.195], + [27135,0.157], + [27137,0.177], + [27139,0.096], + [27141,0.103], + [27143,0.175], + [27145,0.138], + [27147,0.162], + [27149,0.172], + [27151,0.213], + [27153,0.202], + [27155,0.254], + [27157,0.201], + [27159,0.211], + [27161,0.164], + [27163,0.133], + [27165,0.194], + [27167,0.184], + [27169,0.155], + [27171,0.115], + [27173,0.197], + [28001,0.173], + [28003,0.175], + [28005,0.215], + [28007,0.183], + [28009,0.173], + [28011,0.142], + [28013,0.177], + [28015,0.214], + [28017,0.159], + [28019,0.204], + [28021,0.158], + [28023,0.19], + [28025,0.169], + [28027,0.137], + [28029,0.159], + [28031,0.159], + [28033,0.121], + [28035,0.127], + [28037,0.183], + [28039,0.142], + [28041,0.125], + [28043,0.168], + [28045,0.186], + [28047,0.136], + [28049,0.126], + [28051,0.138], + [28053,0.15], + [28055,0.173], + [28057,0.167], + [28059,0.145], + [28061,0.187], + [28063,0.145], + [28065,0.203], + [28067,0.157], + [28069,0.183], + [28071,0.112], + [28073,0.123], + [28075,0.157], + [28077,0.168], + [28079,0.145], + [28081,0.139], + [28083,0.131], + [28085,0.159], + [28087,0.145], + [28089,0.121], + [28091,0.168], + [28093,0.157], + [28095,0.184], + [28097,0.198], + [28099,0.152], + [28101,0.158], + [28103,0.152], + [28105,0.103], + [28107,0.146], + [28109,0.176], + [28111,0.17], + [28113,0.159], + [28115,0.141], + [28117,0.173], + [28119,0.155], + [28121,0.14], + [28123,0.143], + [28125,0.162], + [28127,0.162], + [28129,0.178], + [28131,0.14], + [28133,0.119], + [28135,0.139], + [28137,0.152], + [28139,0.159], + [28141,0.199], + [28143,0.107], + [28145,0.16], + [28147,0.182], + [28149,0.151], + [28151,0.141], + [28153,0.16], + [28155,0.17], + [28157,0.159], + [28159,0.189], + [28161,0.187], + [28163,0.13], + [29001,0.14], + [29003,0.178], + [29005,0.246], + [29007,0.169], + [29009,0.194], + [29011,0.189], + [29013,0.189], + [29015,0.29], + [29017,0.188], + [29019,0.109], + [29021,0.149], + [29023,0.179], + [29025,0.194], + [29027,0.149], + [29029,0.264], + [29031,0.157], + [29033,0.204], + [29035,0.188], + [29037,0.157], + [29039,0.229], + [29041,0.232], + [29043,0.145], + [29045,0.199], + [29047,0.132], + [29049,0.173], + [29051,0.147], + [29053,0.168], + [29055,0.182], + [29057,0.226], + [29059,0.194], + [29061,0.198], + [29063,0.16], + [29065,0.208], + [29067,0.228], + [29069,0.176], + [29071,0.159], + [29073,0.216], + [29075,0.194], + [29077,0.155], + [29079,0.209], + [29081,0.215], + [29083,0.206], + [29085,0.331], + [29087,0.234], + [29089,0.172], + [29091,0.189], + [29093,0.207], + [29095,0.14], + [29097,0.145], + [29099,0.136], + [29101,0.118], + [29103,0.212], + [29105,0.17], + [29107,0.18], + [29109,0.174], + [29111,0.18], + [29113,0.126], + [29115,0.202], + [29117,0.197], + [29119,0.147], + [29121,0.213], + [29123,0.182], + [29125,0.201], + [29127,0.17], + [29129,0.202], + [29131,0.177], + [29133,0.167], + [29135,0.155], + [29137,0.213], + [29139,0.198], + [29141,0.232], + [29143,0.178], + [29145,0.172], + [29147,0.142], + [29149,0.229], + [29151,0.165], + [29153,0.262], + [29155,0.158], + [29157,0.17], + [29159,0.156], + [29161,0.153], + [29163,0.169], + [29165,0.135], + [29167,0.175], + [29169,0.08], + [29171,0.234], + [29173,0.198], + [29175,0.157], + [29177,0.172], + [29179,0.216], + [29181,0.194], + [29183,0.137], + [29185,0.264], + [29186,0.18], + [29187,0.155], + [29189,0.169], + [29195,0.178], + [29197,0.194], + [29199,0.186], + [29201,0.171], + [29203,0.204], + [29205,0.202], + [29207,0.193], + [29209,0.29], + [29211,0.196], + [29213,0.202], + [29215,0.196], + [29217,0.178], + [29219,0.172], + [29221,0.156], + [29223,0.223], + [29225,0.149], + [29227,0.24], + [29229,0.189], + [29510,0.121], + [30001,0.21], + [30003,0.115], + [30005,0.147], + [30007,0.221], + [30009,0.237], + [30011,0.262], + [30013,0.174], + [30015,0.187], + [30017,0.186], + [30019,0.237], + [30021,0.173], + [30023,0.217], + [30025,0.161], + [30027,0.225], + [30029,0.175], + [30031,0.114], + [30033,0.208], + [30035,0.113], + [30037,0.225], + [30039,0.275], + [30041,0.138], + [30043,0.191], + [30045,0.23], + [30047,0.202], + [30049,0.166], + [30051,0.224], + [30053,0.26], + [30055,0.245], + [30057,0.273], + [30059,0.228], + [30061,0.268], + [30063,0.141], + [30065,0.229], + [30067,0.202], + [30069,0.221], + [30071,0.212], + [30073,0.195], + [30075,0.226], + [30077,0.19], + [30079,0.264], + [30081,0.234], + [30083,0.135], + [30085,0.104], + [30087,0.144], + [30089,0.274], + [30091,0.219], + [30093,0.175], + [30095,0.202], + [30097,0.264], + [30099,0.22], + [30101,0.158], + [30103,0.209], + [30105,0.213], + [30107,0.19], + [30109,0.257], + [30111,0.157], + [31001,0.168], + [31003,0.225], + [31005,0.219], + [31007,0.172], + [31009,0.241], + [31011,0.218], + [31013,0.168], + [31015,0.266], + [31017,0.258], + [31019,0.132], + [31021,0.238], + [31023,0.199], + [31025,0.16], + [31027,0.209], + [31029,0.21], + [31031,0.214], + [31033,0.174], + [31035,0.193], + [31037,0.125], + [31039,0.213], + [31041,0.214], + [31043,0.13], + [31045,0.175], + [31047,0.147], + [31049,0.249], + [31051,0.194], + [31053,0.186], + [31055,0.119], + [31057,0.215], + [31059,0.232], + [31061,0.264], + [31063,0.241], + [31065,0.234], + [31067,0.204], + [31069,0.258], + [31071,0.275], + [31073,0.228], + [31075,0.233], + [31077,0.247], + [31079,0.141], + [31081,0.183], + [31083,0.258], + [31085,0.178], + [31087,0.243], + [31089,0.211], + [31091,0.358], + [31093,0.208], + [31095,0.232], + [31097,0.183], + [31099,0.187], + [31101,0.259], + [31103,0.249], + [31105,0.243], + [31107,0.238], + [31109,0.126], + [31111,0.177], + [31113,0.194], + [31115,0.259], + [31117,0.181], + [31119,0.152], + [31121,0.201], + [31123,0.197], + [31125,0.202], + [31127,0.189], + [31129,0.267], + [31131,0.189], + [31133,0.271], + [31135,0.222], + [31137,0.197], + [31139,0.186], + [31141,0.163], + [31143,0.205], + [31145,0.192], + [31147,0.231], + [31149,0.275], + [31151,0.141], + [31153,0.106], + [31155,0.174], + [31157,0.179], + [31159,0.167], + [31161,0.255], + [31163,0.253], + [31165,0.229], + [31167,0.16], + [31169,0.255], + [31171,0.207], + [31173,0.12], + [31175,0.247], + [31177,0.166], + [31179,0.147], + [31181,0.226], + [31183,0.257], + [31185,0.192], + [32001,0.177], + [32003,0.137], + [32005,0.254], + [32007,0.099], + [32009,0.281], + [32011,0.144], + [32013,0.116], + [32015,0.155], + [32017,0.216], + [32019,0.202], + [32021,0.215], + [32023,0.283], + [32027,0.151], + [32029,0.318], + [32031,0.15], + [32033,0.158], + [32510,0.194], + [33001,0.203], + [33003,0.253], + [33005,0.18], + [33007,0.219], + [33009,0.188], + [33011,0.144], + [33013,0.166], + [33015,0.16], + [33017,0.139], + [33019,0.195], + [34001,0.163], + [34003,0.164], + [34005,0.159], + [34007,0.146], + [34009,0.245], + [34011,0.142], + [34013,0.128], + [34015,0.145], + [34017,0.112], + [34019,0.165], + [34021,0.141], + [34023,0.138], + [34025,0.161], + [34027,0.158], + [34029,0.221], + [34031,0.136], + [34033,0.172], + [34035,0.144], + [34037,0.154], + [34039,0.136], + [34041,0.165], + [35001,0.147], + [35003,0.392], + [35005,0.151], + [35006,0.147], + [35007,0.248], + [35009,0.117], + [35011,0.187], + [35013,0.144], + [35015,0.141], + [35017,0.247], + [35019,0.236], + [35021,0.311], + [35023,0.204], + [35025,0.108], + [35027,0.269], + [35028,0.172], + [35029,0.204], + [35031,0.111], + [35033,0.217], + [35035,0.164], + [35037,0.24], + [35039,0.174], + [35041,0.13], + [35043,0.157], + [35045,0.131], + [35047,0.191], + [35049,0.208], + [35051,0.345], + [35053,0.177], + [35055,0.231], + [35057,0.192], + [35059,0.19], + [35061,0.16], + [36001,0.156], + [36003,0.174], + [36005,0.118], + [36007,0.179], + [36009,0.177], + [36011,0.174], + [36013,0.185], + [36015,0.173], + [36017,0.192], + [36019,0.154], + [36021,0.216], + [36023,0.154], + [36025,0.228], + [36027,0.16], + [36029,0.169], + [36031,0.214], + [36033,0.155], + [36035,0.182], + [36037,0.176], + [36039,0.203], + [36041,0.276], + [36043,0.19], + [36045,0.122], + [36047,0.128], + [36049,0.167], + [36051,0.161], + [36053,0.163], + [36055,0.159], + [36057,0.179], + [36059,0.168], + [36061,0.153], + [36063,0.177], + [36065,0.177], + [36067,0.157], + [36069,0.182], + [36071,0.13], + [36073,0.165], + [36075,0.148], + [36077,0.193], + [36079,0.156], + [36081,0.143], + [36083,0.156], + [36085,0.151], + [36087,0.151], + [36089,0.158], + [36091,0.165], + [36093,0.162], + [36095,0.194], + [36097,0.194], + [36099,0.177], + [36101,0.179], + [36103,0.156], + [36105,0.175], + [36107,0.185], + [36109,0.127], + [36111,0.18], + [36113,0.203], + [36115,0.177], + [36117,0.172], + [36119,0.16], + [36121,0.161], + [36123,0.19], + [37001,0.162], + [37003,0.188], + [37005,0.25], + [37007,0.166], + [37009,0.233], + [37011,0.206], + [37013,0.221], + [37015,0.201], + [37017,0.192], + [37019,0.281], + [37021,0.184], + [37023,0.188], + [37025,0.126], + [37027,0.184], + [37029,0.16], + [37031,0.228], + [37033,0.194], + [37035,0.166], + [37037,0.227], + [37039,0.274], + [37041,0.226], + [37043,0.288], + [37045,0.175], + [37047,0.185], + [37049,0.174], + [37051,0.11], + [37053,0.154], + [37055,0.193], + [37057,0.17], + [37059,0.193], + [37061,0.166], + [37063,0.116], + [37065,0.177], + [37067,0.148], + [37069,0.155], + [37071,0.153], + [37073,0.186], + [37075,0.228], + [37077,0.157], + [37079,0.147], + [37081,0.141], + [37083,0.19], + [37085,0.115], + [37087,0.237], + [37089,0.247], + [37091,0.182], + [37093,0.087], + [37095,0.176], + [37097,0.149], + [37099,0.184], + [37101,0.124], + [37103,0.204], + [37105,0.154], + [37107,0.186], + [37109,0.163], + [37111,0.189], + [37113,0.275], + [37115,0.206], + [37117,0.21], + [37119,0.104], + [37121,0.237], + [37123,0.188], + [37125,0.238], + [37127,0.169], + [37129,0.162], + [37131,0.237], + [37133,0.085], + [37135,0.123], + [37137,0.268], + [37139,0.156], + [37141,0.173], + [37143,0.258], + [37145,0.179], + [37147,0.12], + [37149,0.283], + [37151,0.165], + [37153,0.167], + [37155,0.137], + [37157,0.189], + [37159,0.164], + [37161,0.201], + [37163,0.164], + [37165,0.162], + [37167,0.18], + [37169,0.193], + [37171,0.192], + [37173,0.19], + [37175,0.286], + [37177,0.22], + [37179,0.117], + [37181,0.168], + [37183,0.105], + [37185,0.229], + [37187,0.22], + [37189,0.148], + [37191,0.15], + [37193,0.2], + [37195,0.166], + [37197,0.187], + [37199,0.241], + [38001,0.229], + [38003,0.207], + [38005,0.128], + [38007,0.183], + [38009,0.22], + [38011,0.197], + [38013,0.153], + [38015,0.147], + [38017,0.109], + [38019,0.264], + [38021,0.21], + [38023,0.267], + [38025,0.159], + [38027,0.215], + [38029,0.287], + [38031,0.221], + [38033,0.2], + [38035,0.115], + [38037,0.276], + [38039,0.297], + [38041,0.253], + [38043,0.199], + [38045,0.246], + [38047,0.291], + [38049,0.195], + [38051,0.321], + [38053,0.091], + [38055,0.22], + [38057,0.173], + [38059,0.151], + [38061,0.111], + [38063,0.271], + [38065,0.248], + [38067,0.215], + [38069,0.227], + [38071,0.188], + [38073,0.206], + [38075,0.177], + [38077,0.163], + [38079,0.106], + [38081,0.212], + [38083,0.269], + [38085,0.072], + [38087,0.242], + [38089,0.128], + [38091,0.211], + [38093,0.178], + [38095,0.244], + [38097,0.188], + [38099,0.206], + [38101,0.118], + [38103,0.274], + [38105,0.094], + [39001,0.166], + [39003,0.163], + [39005,0.177], + [39007,0.176], + [39009,0.117], + [39011,0.17], + [39013,0.192], + [39015,0.171], + [39017,0.136], + [39019,0.195], + [39021,0.172], + [39023,0.183], + [39025,0.146], + [39027,0.158], + [39029,0.187], + [39031,0.18], + [39033,0.198], + [39035,0.17], + [39037,0.186], + [39039,0.171], + [39041,0.122], + [39043,0.202], + [39045,0.148], + [39047,0.167], + [39049,0.112], + [39051,0.163], + [39053,0.176], + [39055,0.185], + [39057,0.159], + [39059,0.182], + [39061,0.145], + [39063,0.159], + [39065,0.15], + [39067,0.201], + [39069,0.172], + [39071,0.174], + [39073,0.18], + [39075,0.127], + [39077,0.157], + [39079,0.16], + [39081,0.201], + [39083,0.167], + [39085,0.184], + [39087,0.179], + [39089,0.154], + [39091,0.166], + [39093,0.168], + [39095,0.15], + [39097,0.145], + [39099,0.196], + [39101,0.166], + [39103,0.161], + [39105,0.18], + [39107,0.166], + [39109,0.176], + [39111,0.217], + [39113,0.17], + [39115,0.196], + [39117,0.158], + [39119,0.168], + [39121,0.251], + [39123,0.228], + [39125,0.173], + [39127,0.156], + [39129,0.149], + [39131,0.168], + [39133,0.149], + [39135,0.176], + [39137,0.16], + [39139,0.185], + [39141,0.154], + [39143,0.174], + [39145,0.171], + [39147,0.166], + [39149,0.15], + [39151,0.181], + [39153,0.166], + [39155,0.199], + [39157,0.184], + [39159,0.113], + [39161,0.179], + [39163,0.159], + [39165,0.132], + [39167,0.196], + [39169,0.165], + [39171,0.177], + [39173,0.141], + [39175,0.18], + [40001,0.15], + [40003,0.186], + [40005,0.185], + [40007,0.183], + [40009,0.128], + [40011,0.182], + [40013,0.173], + [40015,0.16], + [40017,0.123], + [40019,0.158], + [40021,0.155], + [40023,0.197], + [40025,0.239], + [40027,0.121], + [40029,0.199], + [40031,0.116], + [40033,0.188], + [40035,0.193], + [40037,0.168], + [40039,0.132], + [40041,0.237], + [40043,0.191], + [40045,0.209], + [40047,0.152], + [40049,0.173], + [40051,0.152], + [40053,0.208], + [40055,0.177], + [40057,0.183], + [40059,0.174], + [40061,0.196], + [40063,0.186], + [40065,0.142], + [40067,0.197], + [40069,0.179], + [40071,0.184], + [40073,0.152], + [40075,0.192], + [40077,0.206], + [40079,0.172], + [40081,0.173], + [40083,0.143], + [40085,0.186], + [40087,0.147], + [40089,0.172], + [40091,0.242], + [40093,0.195], + [40095,0.217], + [40097,0.175], + [40099,0.188], + [40101,0.159], + [40103,0.181], + [40105,0.187], + [40107,0.17], + [40109,0.128], + [40111,0.173], + [40113,0.18], + [40115,0.178], + [40117,0.183], + [40119,0.116], + [40121,0.191], + [40123,0.16], + [40125,0.156], + [40127,0.221], + [40129,0.188], + [40131,0.153], + [40133,0.172], + [40135,0.176], + [40137,0.182], + [40139,0.109], + [40141,0.192], + [40143,0.133], + [40145,0.151], + [40147,0.188], + [40149,0.172], + [40151,0.161], + [40153,0.141], + [41001,0.249], + [41003,0.146], + [41005,0.165], + [41007,0.201], + [41009,0.175], + [41011,0.244], + [41013,0.242], + [41015,0.323], + [41017,0.185], + [41019,0.241], + [41021,0.251], + [41023,0.275], + [41025,0.222], + [41027,0.146], + [41029,0.205], + [41031,0.182], + [41033,0.249], + [41035,0.197], + [41037,0.237], + [41039,0.177], + [41041,0.259], + [41043,0.176], + [41045,0.16], + [41047,0.146], + [41049,0.153], + [41051,0.123], + [41053,0.169], + [41055,0.257], + [41057,0.237], + [41059,0.146], + [41061,0.188], + [41063,0.273], + [41065,0.194], + [41067,0.121], + [41069,0.335], + [41071,0.159], + [42001,0.186], + [42003,0.177], + [42005,0.204], + [42007,0.2], + [42009,0.215], + [42011,0.163], + [42013,0.194], + [42015,0.199], + [42017,0.171], + [42019,0.173], + [42021,0.209], + [42023,0.249], + [42025,0.197], + [42027,0.129], + [42029,0.15], + [42031,0.183], + [42033,0.192], + [42035,0.176], + [42037,0.179], + [42039,0.189], + [42041,0.174], + [42043,0.157], + [42045,0.154], + [42047,0.207], + [42049,0.163], + [42051,0.196], + [42053,0.213], + [42055,0.185], + [42057,0.201], + [42059,0.174], + [42061,0.191], + [42063,0.176], + [42065,0.197], + [42067,0.191], + [42069,0.189], + [42071,0.167], + [42073,0.207], + [42075,0.185], + [42077,0.159], + [42079,0.191], + [42081,0.179], + [42083,0.182], + [42085,0.202], + [42087,0.205], + [42089,0.157], + [42091,0.167], + [42093,0.201], + [42095,0.178], + [42097,0.2], + [42099,0.169], + [42101,0.129], + [42103,0.205], + [42105,0.222], + [42107,0.194], + [42109,0.173], + [42111,0.209], + [42113,0.269], + [42115,0.214], + [42117,0.202], + [42119,0.168], + [42121,0.204], + [42123,0.213], + [42125,0.192], + [42127,0.224], + [42129,0.211], + [42131,0.191], + [42133,0.163], + [44001,0.191], + [44003,0.176], + [44005,0.201], + [44007,0.145], + [44009,0.185], + [45001,0.201], + [45003,0.178], + [45005,0.182], + [45007,0.172], + [45009,0.195], + [45011,0.166], + [45013,0.249], + [45015,0.127], + [45017,0.209], + [45019,0.15], + [45021,0.156], + [45023,0.174], + [45025,0.166], + [45027,0.21], + [45029,0.188], + [45031,0.171], + [45033,0.155], + [45035,0.125], + [45037,0.172], + [45039,0.188], + [45041,0.154], + [45043,0.252], + [45045,0.146], + [45047,0.174], + [45049,0.169], + [45051,0.213], + [45053,0.159], + [45055,0.171], + [45057,0.196], + [45059,0.172], + [45061,0.168], + [45063,0.146], + [45065,0.31], + [45067,0.176], + [45069,0.165], + [45071,0.183], + [45073,0.219], + [45075,0.179], + [45077,0.155], + [45079,0.116], + [45081,0.182], + [45083,0.154], + [45085,0.151], + [45087,0.191], + [45089,0.184], + [45091,0.134], + [46003,0.201], + [46005,0.165], + [46007,0.118], + [46009,0.207], + [46011,0.108], + [46013,0.162], + [46015,0.17], + [46017,0.078], + [46019,0.186], + [46021,0.229], + [46023,0.181], + [46025,0.205], + [46027,0.111], + [46029,0.16], + [46031,0.105], + [46033,0.269], + [46035,0.175], + [46037,0.249], + [46039,0.211], + [46041,0.096], + [46043,0.24], + [46045,0.205], + [46047,0.256], + [46049,0.242], + [46051,0.2], + [46053,0.241], + [46055,0.23], + [46057,0.163], + [46059,0.25], + [46061,0.145], + [46063,0.187], + [46065,0.156], + [46067,0.232], + [46069,0.24], + [46071,0.142], + [46073,0.259], + [46075,0.228], + [46077,0.222], + [46079,0.193], + [46081,0.19], + [46083,0.111], + [46085,0.151], + [46087,0.185], + [46089,0.305], + [46091,0.2], + [46093,0.139], + [46095,0.152], + [46097,0.202], + [46099,0.121], + [46101,0.175], + [46102,null], + [46103,0.16], + [46105,0.216], + [46107,0.286], + [46109,0.187], + [46111,0.196], + [46115,0.204], + [46117,0.187], + [46119,0.198], + [46121,0.069], + [46123,0.214], + [46125,0.201], + [46127,0.166], + [46129,0.233], + [46135,0.176], + [46137,0.087], + [47001,0.192], + [47003,0.146], + [47005,0.231], + [47007,0.178], + [47009,0.189], + [47011,0.161], + [47013,0.198], + [47015,0.178], + [47017,0.196], + [47019,0.202], + [47021,0.138], + [47023,0.165], + [47025,0.188], + [47027,0.237], + [47029,0.2], + [47031,0.17], + [47033,0.18], + [47035,0.295], + [47037,0.114], + [47039,0.227], + [47041,0.175], + [47043,0.152], + [47045,0.165], + [47047,0.193], + [47049,0.205], + [47051,0.188], + [47053,0.175], + [47055,0.19], + [47057,0.192], + [47059,0.203], + [47061,0.202], + [47063,0.176], + [47065,0.165], + [47067,0.189], + [47069,0.172], + [47071,0.215], + [47073,0.193], + [47075,0.166], + [47077,0.172], + [47079,0.221], + [47081,0.161], + [47083,0.203], + [47085,0.192], + [47087,0.214], + [47089,0.191], + [47091,0.214], + [47093,0.148], + [47095,0.155], + [47097,0.149], + [47099,0.175], + [47101,0.209], + [47103,0.187], + [47105,0.25], + [47107,0.189], + [47109,0.198], + [47111,0.156], + [47113,0.155], + [47115,0.188], + [47117,0.153], + [47119,0.15], + [47121,0.197], + [47123,0.196], + [47125,0.087], + [47127,0.211], + [47129,0.161], + [47131,0.192], + [47133,0.194], + [47135,0.202], + [47137,0.262], + [47139,0.198], + [47141,0.163], + [47143,0.178], + [47145,0.218], + [47147,0.137], + [47149,0.097], + [47151,0.158], + [47153,0.188], + [47155,0.181], + [47157,0.122], + [47159,0.159], + [47161,0.193], + [47163,0.207], + [47165,0.148], + [47167,0.134], + [47169,0.155], + [47171,0.222], + [47173,0.17], + [47175,0.214], + [47177,0.168], + [47179,0.171], + [47181,0.182], + [47183,0.172], + [47185,0.196], + [47187,0.12], + [47189,0.147], + [48001,0.141], + [48003,0.102], + [48005,0.153], + [48007,0.259], + [48009,0.187], + [48011,0.208], + [48013,0.139], + [48015,0.18], + [48017,0.143], + [48019,0.255], + [48021,0.138], + [48023,0.239], + [48025,0.117], + [48027,0.1], + [48029,0.114], + [48031,0.237], + [48033,0.236], + [48035,0.241], + [48037,0.158], + [48039,0.111], + [48041,0.085], + [48043,0.202], + [48045,0.231], + [48047,0.148], + [48049,0.192], + [48051,0.201], + [48053,0.215], + [48055,0.132], + [48057,0.165], + [48059,0.195], + [48061,0.125], + [48063,0.178], + [48065,0.174], + [48067,0.21], + [48069,0.145], + [48071,0.107], + [48073,0.168], + [48075,0.152], + [48077,0.214], + [48079,0.149], + [48081,0.267], + [48083,0.222], + [48085,0.101], + [48087,0.184], + [48089,0.2], + [48091,0.175], + [48093,0.238], + [48095,0.173], + [48097,0.179], + [48099,0.092], + [48101,0.256], + [48103,0.114], + [48105,0.142], + [48107,0.172], + [48109,0.197], + [48111,0.108], + [48113,0.1], + [48115,0.144], + [48117,0.12], + [48119,0.199], + [48121,0.092], + [48123,0.189], + [48125,0.226], + [48127,0.147], + [48129,0.234], + [48131,0.18], + [48133,0.219], + [48135,0.095], + [48137,0.285], + [48139,0.12], + [48141,0.114], + [48143,0.138], + [48145,0.17], + [48147,0.188], + [48149,0.237], + [48151,0.235], + [48153,0.185], + [48155,0.266], + [48157,0.097], + [48159,0.2], + [48161,0.19], + [48163,0.123], + [48165,0.086], + [48167,0.132], + [48169,0.113], + [48171,0.287], + [48173,0.139], + [48175,0.21], + [48177,0.159], + [48179,0.158], + [48181,0.172], + [48183,0.145], + [48185,0.16], + [48187,0.131], + [48189,0.129], + [48191,0.227], + [48193,0.254], + [48195,0.155], + [48197,0.2], + [48199,0.158], + [48201,0.096], + [48203,0.156], + [48205,0.139], + [48207,0.212], + [48209,0.102], + [48211,0.124], + [48213,0.213], + [48215,0.104], + [48217,0.202], + [48219,0.135], + [48221,0.24], + [48223,0.176], + [48225,0.209], + [48227,0.125], + [48229,0.163], + [48231,0.156], + [48233,0.153], + [48235,0.177], + [48237,0.16], + [48239,0.166], + [48241,0.184], + [48243,0.312], + [48245,0.137], + [48247,0.186], + [48249,0.143], + [48251,0.135], + [48253,0.147], + [48255,0.143], + [48257,0.118], + [48259,0.186], + [48261,0.147], + [48263,0.279], + [48265,0.267], + [48267,0.301], + [48269,0.073], + [48271,0.176], + [48273,0.127], + [48275,0.184], + [48277,0.184], + [48279,0.16], + [48281,0.177], + [48283,0.157], + [48285,0.225], + [48287,0.173], + [48289,0.235], + [48291,0.128], + [48293,0.178], + [48295,0.149], + [48297,0.198], + [48299,0.355], + [48301,0.243], + [48303,0.118], + [48305,0.168], + [48307,0.213], + [48309,0.136], + [48311,0.265], + [48313,0.15], + [48315,0.245], + [48317,0.121], + [48319,0.259], + [48321,0.157], + [48323,0.112], + [48325,0.159], + [48327,0.272], + [48329,0.102], + [48331,0.196], + [48333,0.275], + [48335,0.144], + [48337,0.221], + [48339,0.123], + [48341,0.098], + [48343,0.208], + [48345,0.288], + [48347,0.132], + [48349,0.164], + [48351,0.191], + [48353,0.175], + [48355,0.133], + [48357,0.101], + [48359,0.138], + [48361,0.15], + [48363,0.187], + [48365,0.173], + [48367,0.148], + [48369,0.131], + [48371,0.125], + [48373,0.188], + [48375,0.116], + [48377,0.219], + [48379,0.235], + [48381,0.139], + [48383,0.111], + [48385,0.341], + [48387,0.233], + [48389,0.128], + [48391,0.211], + [48393,0.207], + [48395,0.181], + [48397,0.117], + [48399,0.204], + [48401,0.159], + [48403,0.299], + [48405,0.245], + [48407,0.203], + [48409,0.141], + [48411,0.219], + [48413,0.161], + [48415,0.146], + [48417,0.181], + [48419,0.165], + [48421,0.14], + [48423,0.156], + [48425,0.182], + [48427,0.111], + [48429,0.19], + [48431,0.16], + [48433,0.261], + [48435,0.168], + [48437,0.176], + [48439,0.105], + [48441,0.139], + [48443,0.312], + [48445,0.149], + [48447,0.263], + [48449,0.134], + [48451,0.146], + [48453,0.089], + [48455,0.261], + [48457,0.211], + [48459,0.172], + [48461,0.135], + [48463,0.164], + [48465,0.139], + [48467,0.199], + [48469,0.15], + [48471,0.12], + [48473,0.114], + [48475,0.14], + [48477,0.203], + [48479,0.088], + [48481,0.159], + [48483,0.182], + [48485,0.139], + [48487,0.166], + [48489,0.131], + [48491,0.112], + [48493,0.145], + [48495,0.112], + [48497,0.146], + [48499,0.269], + [48501,0.111], + [48503,0.197], + [48505,0.127], + [48507,0.133], + [49001,0.138], + [49003,0.122], + [49005,0.087], + [49007,0.157], + [49009,0.17], + [49011,0.094], + [49013,0.107], + [49015,0.152], + [49017,0.199], + [49019,0.165], + [49021,0.119], + [49023,0.115], + [49025,0.219], + [49027,0.159], + [49029,0.111], + [49031,0.256], + [49033,0.169], + [49035,0.1], + [49037,0.128], + [49039,0.13], + [49041,0.156], + [49043,0.106], + [49045,0.086], + [49047,0.093], + [49049,0.072], + [49051,0.098], + [49053,0.199], + [49055,0.19], + [49057,0.111], + [50001,0.177], + [50003,0.214], + [50005,0.184], + [50007,0.136], + [50009,0.239], + [50011,0.145], + [50013,0.183], + [50015,0.156], + [50017,0.188], + [50019,0.209], + [50021,0.201], + [50023,0.178], + [50025,0.202], + [50027,0.212], + [51001,0.214], + [51003,0.167], + [51005,0.231], + [51007,0.185], + [51009,0.195], + [51011,0.195], + [51013,0.098], + [51015,0.192], + [51017,0.178], + [51019,0.198], + [51021,0.205], + [51023,0.206], + [51025,0.197], + [51027,0.2], + [51029,0.176], + [51031,0.187], + [51033,0.154], + [51035,0.223], + [51036,0.22], + [51037,0.211], + [51041,0.134], + [51043,0.197], + [51045,0.213], + [51047,0.146], + [51049,0.204], + [51051,0.201], + [51053,0.162], + [51057,0.206], + [51059,0.122], + [51061,0.153], + [51063,0.209], + [51065,0.18], + [51067,0.214], + [51069,0.157], + [51071,0.206], + [51073,0.177], + [51075,0.2], + [51077,0.228], + [51079,0.156], + [51081,0.148], + [51083,0.223], + [51085,0.16], + [51087,0.142], + [51089,0.225], + [51091,0.388], + [51093,0.174], + [51095,0.236], + [51097,0.218], + [51099,0.121], + [51101,0.148], + [51103,0.346], + [51105,0.19], + [51107,0.083], + [51109,0.182], + [51111,0.204], + [51113,0.202], + [51115,0.296], + [51117,0.242], + [51119,0.299], + [51121,0.115], + [51125,0.244], + [51127,0.159], + [51131,0.252], + [51133,0.352], + [51135,0.183], + [51137,0.197], + [51139,0.204], + [51141,0.246], + [51143,0.204], + [51145,0.165], + [51147,0.155], + [51149,0.126], + [51153,0.087], + [51155,0.214], + [51157,0.244], + [51159,0.207], + [51161,0.198], + [51163,0.243], + [51165,0.181], + [51167,0.193], + [51169,0.222], + [51171,0.205], + [51173,0.205], + [51175,0.181], + [51177,0.127], + [51179,0.094], + [51181,0.198], + [51183,0.164], + [51185,0.198], + [51187,0.148], + [51191,0.209], + [51193,0.236], + [51195,0.163], + [51197,0.2], + [51199,0.147], + [51510,0.105], + [51520,0.198], + [51530,0.177], + [51540,0.104], + [51550,0.121], + [51570,0.203], + [51580,0.217], + [51590,0.197], + [51595,0.168], + [51600,0.143], + [51610,0.125], + [51620,0.185], + [51630,0.105], + [51640,0.23], + [51650,0.141], + [51660,0.087], + [51670,0.155], + [51678,0.15], + [51680,0.139], + [51683,0.088], + [51685,0.074], + [51690,0.193], + [51700,0.121], + [51710,0.103], + [51720,0.169], + [51730,0.163], + [51735,0.185], + [51740,0.14], + [51750,0.085], + [51760,0.121], + [51770,0.154], + [51775,0.185], + [51790,0.203], + [51800,0.134], + [51810,0.127], + [51820,0.186], + [51830,0.146], + [51840,0.152], + [53001,0.107], + [53003,0.216], + [53005,0.137], + [53007,0.176], + [53009,0.274], + [53011,0.141], + [53013,0.269], + [53015,0.182], + [53017,0.162], + [53019,0.229], + [53021,0.084], + [53023,0.231], + [53025,0.129], + [53027,0.196], + [53029,0.227], + [53031,0.33], + [53033,0.125], + [53035,0.164], + [53037,0.15], + [53039,0.217], + [53041,0.199], + [53043,0.247], + [53045,0.217], + [53047,0.203], + [53049,0.287], + [53051,0.243], + [53053,0.129], + [53055,0.306], + [53057,0.191], + [53059,0.185], + [53061,0.123], + [53063,0.15], + [53065,0.212], + [53067,0.157], + [53069,0.318], + [53071,0.166], + [53073,0.159], + [53075,0.098], + [53077,0.129], + [54001,0.186], + [54003,0.137], + [54005,0.176], + [54007,0.205], + [54009,0.218], + [54011,0.174], + [54013,0.223], + [54015,0.188], + [54017,0.194], + [54019,0.19], + [54021,0.155], + [54023,0.229], + [54025,0.219], + [54027,0.202], + [54029,0.212], + [54031,0.2], + [54033,0.181], + [54035,0.19], + [54037,0.146], + [54039,0.188], + [54041,0.195], + [54043,0.174], + [54045,0.176], + [54047,0.191], + [54049,0.185], + [54051,0.201], + [54053,0.194], + [54055,0.202], + [54057,0.2], + [54059,0.166], + [54061,0.113], + [54063,0.245], + [54065,0.213], + [54067,0.206], + [54069,0.202], + [54071,0.251], + [54073,0.179], + [54075,0.232], + [54077,0.182], + [54079,0.167], + [54081,0.188], + [54083,0.202], + [54085,0.211], + [54087,0.2], + [54089,0.225], + [54091,0.185], + [54093,0.24], + [54095,0.207], + [54097,0.188], + [54099,0.192], + [54101,0.213], + [54103,0.218], + [54105,0.183], + [54107,0.191], + [54109,0.187], + [55001,0.274], + [55003,0.176], + [55005,0.205], + [55007,0.251], + [55009,0.134], + [55011,0.207], + [55013,0.268], + [55015,0.136], + [55017,0.164], + [55019,0.161], + [55021,0.165], + [55023,0.21], + [55025,0.123], + [55027,0.163], + [55029,0.271], + [55031,0.169], + [55033,0.147], + [55035,0.144], + [55037,0.241], + [55039,0.169], + [55041,0.221], + [55043,0.163], + [55045,0.17], + [55047,0.209], + [55049,0.168], + [55051,0.286], + [55053,0.178], + [55055,0.154], + [55057,0.196], + [55059,0.128], + [55061,0.188], + [55063,0.149], + [55065,0.171], + [55067,0.222], + [55069,0.201], + [55071,0.188], + [55073,0.162], + [55075,0.22], + [55077,0.233], + [55078,0.125], + [55079,0.126], + [55081,0.158], + [55083,0.191], + [55085,0.243], + [55087,0.135], + [55089,0.181], + [55091,0.207], + [55093,0.132], + [55095,0.188], + [55097,0.15], + [55099,0.239], + [55101,0.152], + [55103,0.207], + [55105,0.153], + [55107,0.228], + [55109,0.125], + [55111,0.171], + [55113,0.238], + [55115,0.2], + [55117,0.165], + [55119,0.178], + [55121,0.17], + [55123,0.183], + [55125,0.294], + [55127,0.158], + [55129,0.245], + [55131,0.163], + [55133,0.17], + [55135,0.196], + [55137,0.228], + [55139,0.15], + [55141,0.192], + [56001,0.103], + [56003,0.2], + [56005,0.077], + [56007,0.149], + [56009,0.146], + [56011,0.179], + [56013,0.166], + [56015,0.209], + [56017,0.25], + [56019,0.212], + [56021,0.146], + [56023,0.153], + [56025,0.133], + [56027,0.19], + [56029,0.204], + [56031,0.23], + [56033,0.187], + [56035,0.153], + [56037,0.097], + [56039,0.127], + [56041,0.117], + [56043,0.2], + [56045,0.182] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-over65-2019.json b/data/regional/united-states/demographics/age/us-age-over65-2019.json new file mode 100644 index 0000000..e465b3d --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-over65-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Over 65", + "description" : "Percent of the population over age 65.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.over65.2019"], + [1001,0.15], + [1003,0.2], + [1005,0.186], + [1007,0.159], + [1009,0.179], + [1011,0.16], + [1013,0.197], + [1015,0.172], + [1017,0.192], + [1019,0.224], + [1021,0.16], + [1023,0.226], + [1025,0.194], + [1027,0.202], + [1029,0.194], + [1031,0.165], + [1033,0.194], + [1035,0.222], + [1037,0.226], + [1039,0.208], + [1041,0.188], + [1043,0.182], + [1045,0.164], + [1047,0.174], + [1049,0.167], + [1051,0.149], + [1053,0.177], + [1055,0.187], + [1057,0.208], + [1059,0.169], + [1061,0.2], + [1063,0.213], + [1065,0.188], + [1067,0.221], + [1069,0.172], + [1071,0.195], + [1073,0.154], + [1075,0.215], + [1077,0.197], + [1079,0.181], + [1081,0.116], + [1083,0.151], + [1085,0.184], + [1087,0.193], + [1089,0.147], + [1091,0.193], + [1093,0.211], + [1095,0.168], + [1097,0.158], + [1099,0.193], + [1101,0.146], + [1103,0.171], + [1105,0.191], + [1107,0.185], + [1109,0.148], + [1111,0.204], + [1113,0.139], + [1115,0.163], + [1117,0.149], + [1119,0.175], + [1121,0.175], + [1123,0.21], + [1125,0.129], + [1127,0.19], + [1129,0.184], + [1131,0.19], + [1133,0.213], + [2013,0.094], + [2016,0.061], + [2020,0.105], + [2050,0.072], + [2060,0.099], + [2068,0.093], + [2070,0.101], + [2090,0.098], + [2100,0.251], + [2105,0.205], + [2110,0.125], + [2122,0.165], + [2130,0.149], + [2150,0.098], + [2158,0.055], + [2164,0.078], + [2170,0.113], + [2180,0.07], + [2185,0.069], + [2188,0.075], + [2195,0.22], + [2198,0.16], + [2220,0.152], + [2230,0.117], + [2240,0.136], + [2261,0.123], + [2275,0.227], + [2282,0.145], + [2290,0.143], + [4001,0.15], + [4003,0.217], + [4005,0.12], + [4007,0.284], + [4009,0.137], + [4011,0.124], + [4012,0.386], + [4013,0.148], + [4015,0.296], + [4017,0.174], + [4019,0.192], + [4021,0.199], + [4023,0.173], + [4025,0.306], + [4027,0.185], + [5001,0.19], + [5003,0.199], + [5005,0.308], + [5007,0.133], + [5009,0.203], + [5011,0.183], + [5013,0.212], + [5015,0.226], + [5017,0.2], + [5019,0.162], + [5021,0.211], + [5023,0.268], + [5025,0.205], + [5027,0.171], + [5029,0.189], + [5031,0.135], + [5033,0.164], + [5035,0.136], + [5037,0.183], + [5039,0.222], + [5041,0.187], + [5043,0.17], + [5045,0.122], + [5047,0.192], + [5049,0.255], + [5051,0.233], + [5053,0.178], + [5055,0.157], + [5057,0.179], + [5059,0.187], + [5061,0.176], + [5063,0.172], + [5065,0.25], + [5067,0.175], + [5069,0.168], + [5071,0.162], + [5073,0.233], + [5075,0.193], + [5077,0.188], + [5079,0.151], + [5081,0.206], + [5083,0.198], + [5085,0.132], + [5087,0.189], + [5089,0.281], + [5091,0.164], + [5093,0.145], + [5095,0.228], + [5097,0.268], + [5099,0.203], + [5101,0.255], + [5103,0.196], + [5105,0.199], + [5107,0.181], + [5109,0.202], + [5111,0.178], + [5113,0.224], + [5115,0.153], + [5117,0.234], + [5119,0.15], + [5121,0.199], + [5123,0.161], + [5125,0.175], + [5127,0.207], + [5129,0.253], + [5131,0.156], + [5133,0.139], + [5135,0.259], + [5137,0.267], + [5139,0.172], + [5141,0.256], + [5143,0.114], + [5145,0.161], + [5147,0.227], + [5149,0.174], + [6001,0.135], + [6003,0.299], + [6005,0.267], + [6007,0.18], + [6009,0.275], + [6011,0.144], + [6013,0.154], + [6015,0.172], + [6017,0.205], + [6019,0.12], + [6021,0.159], + [6023,0.173], + [6025,0.126], + [6027,0.228], + [6029,0.107], + [6031,0.1], + [6033,0.223], + [6035,0.142], + [6037,0.133], + [6039,0.138], + [6041,0.216], + [6043,0.275], + [6045,0.212], + [6047,0.11], + [6049,0.27], + [6051,0.143], + [6053,0.132], + [6055,0.186], + [6057,0.265], + [6059,0.144], + [6061,0.191], + [6063,0.271], + [6065,0.141], + [6067,0.137], + [6069,0.125], + [6071,0.113], + [6073,0.137], + [6075,0.154], + [6077,0.125], + [6079,0.194], + [6081,0.158], + [6083,0.15], + [6085,0.132], + [6087,0.158], + [6089,0.202], + [6091,0.293], + [6093,0.247], + [6095,0.152], + [6097,0.19], + [6099,0.128], + [6101,0.15], + [6103,0.193], + [6105,0.269], + [6107,0.112], + [6109,0.256], + [6111,0.151], + [6113,0.121], + [6115,0.123], + [8001,0.101], + [8003,0.132], + [8005,0.127], + [8007,0.255], + [8009,0.26], + [8011,0.179], + [8013,0.137], + [8014,0.133], + [8015,0.25], + [8017,0.165], + [8019,0.194], + [8021,0.186], + [8023,0.273], + [8025,0.134], + [8027,0.36], + [8029,0.253], + [8031,0.115], + [8033,0.276], + [8035,0.114], + [8037,0.107], + [8039,0.155], + [8041,0.125], + [8043,0.212], + [8045,0.127], + [8047,0.179], + [8049,0.167], + [8051,0.13], + [8053,0.245], + [8055,0.312], + [8057,0.283], + [8059,0.16], + [8061,0.247], + [8063,0.183], + [8065,0.106], + [8067,0.165], + [8069,0.151], + [8071,0.237], + [8073,0.174], + [8075,0.171], + [8077,0.186], + [8079,0.268], + [8081,0.138], + [8083,0.215], + [8085,0.231], + [8087,0.154], + [8089,0.201], + [8091,0.277], + [8093,0.2], + [8095,0.173], + [8097,0.178], + [8099,0.174], + [8101,0.182], + [8103,0.152], + [8105,0.194], + [8107,0.146], + [8109,0.224], + [8111,0.248], + [8113,0.135], + [8115,0.231], + [8117,0.128], + [8119,0.211], + [8121,0.201], + [8123,0.119], + [8125,0.182], + [9001,0.155], + [9003,0.168], + [9005,0.206], + [9007,0.197], + [9009,0.17], + [9011,0.177], + [9013,0.153], + [9015,0.161], + [10001,0.166], + [10003,0.152], + [10005,0.27], + [11001,0.121], + [12001,0.137], + [12003,0.137], + [12005,0.17], + [12007,0.178], + [12009,0.234], + [12011,0.163], + [12013,0.192], + [12015,0.396], + [12017,0.363], + [12019,0.154], + [12021,0.316], + [12023,0.183], + [12027,0.217], + [12029,0.227], + [12031,0.137], + [12033,0.166], + [12035,0.3], + [12037,0.227], + [12039,0.173], + [12041,0.203], + [12043,0.269], + [12045,0.207], + [12047,0.17], + [12049,0.158], + [12051,0.131], + [12053,0.275], + [12055,0.352], + [12057,0.139], + [12059,0.198], + [12061,0.323], + [12063,0.193], + [12065,0.229], + [12067,0.138], + [12069,0.265], + [12071,0.281], + [12073,0.129], + [12075,0.241], + [12077,0.153], + [12079,0.201], + [12081,0.27], + [12083,0.286], + [12085,0.306], + [12086,0.16], + [12087,0.221], + [12089,0.215], + [12091,0.157], + [12093,0.198], + [12095,0.116], + [12097,0.13], + [12099,0.236], + [12101,0.225], + [12103,0.243], + [12105,0.202], + [12107,0.227], + [12109,0.197], + [12111,0.238], + [12113,0.158], + [12115,0.36], + [12117,0.152], + [12119,0.567], + [12121,0.205], + [12123,0.197], + [12125,0.15], + [12127,0.242], + [12129,0.146], + [12131,0.195], + [12133,0.172], + [13001,0.168], + [13003,0.136], + [13005,0.154], + [13007,0.237], + [13009,0.154], + [13011,0.165], + [13013,0.123], + [13015,0.137], + [13017,0.167], + [13019,0.176], + [13021,0.152], + [13023,0.177], + [13025,0.16], + [13027,0.189], + [13029,0.105], + [13031,0.111], + [13033,0.15], + [13035,0.154], + [13037,0.151], + [13039,0.127], + [13043,0.175], + [13045,0.134], + [13047,0.172], + [13049,0.149], + [13051,0.149], + [13053,0.032], + [13055,0.173], + [13057,0.134], + [13059,0.106], + [13061,0.258], + [13063,0.09], + [13065,0.155], + [13067,0.119], + [13069,0.137], + [13071,0.153], + [13073,0.132], + [13075,0.159], + [13077,0.135], + [13079,0.18], + [13081,0.182], + [13083,0.189], + [13085,0.2], + [13087,0.16], + [13089,0.119], + [13091,0.175], + [13093,0.192], + [13095,0.153], + [13097,0.114], + [13099,0.19], + [13101,0.161], + [13103,0.114], + [13105,0.203], + [13107,0.157], + [13109,0.164], + [13111,0.285], + [13113,0.177], + [13115,0.165], + [13117,0.117], + [13119,0.193], + [13121,0.114], + [13123,0.241], + [13125,0.165], + [13127,0.197], + [13129,0.144], + [13131,0.177], + [13133,0.284], + [13135,0.096], + [13137,0.185], + [13139,0.146], + [13141,0.224], + [13143,0.158], + [13145,0.181], + [13147,0.218], + [13149,0.166], + [13151,0.113], + [13153,0.124], + [13155,0.187], + [13157,0.144], + [13159,0.175], + [13161,0.151], + [13163,0.18], + [13165,0.178], + [13167,0.181], + [13169,0.174], + [13171,0.167], + [13173,0.138], + [13175,0.172], + [13177,0.125], + [13179,0.088], + [13181,0.232], + [13183,0.091], + [13185,0.119], + [13187,0.168], + [13189,0.173], + [13191,0.257], + [13193,0.165], + [13195,0.167], + [13197,0.207], + [13199,0.199], + [13201,0.216], + [13205,0.161], + [13207,0.181], + [13209,0.166], + [13211,0.195], + [13213,0.144], + [13215,0.13], + [13217,0.127], + [13219,0.15], + [13221,0.189], + [13223,0.104], + [13225,0.155], + [13227,0.214], + [13229,0.168], + [13231,0.155], + [13233,0.154], + [13235,0.199], + [13237,0.235], + [13239,0.249], + [13241,0.275], + [13243,0.216], + [13245,0.136], + [13247,0.14], + [13249,0.16], + [13251,0.183], + [13253,0.228], + [13255,0.177], + [13257,0.197], + [13259,0.149], + [13261,0.167], + [13263,0.235], + [13265,0.252], + [13267,0.139], + [13269,0.195], + [13271,0.175], + [13273,0.188], + [13275,0.176], + [13277,0.145], + [13279,0.162], + [13281,0.344], + [13283,0.207], + [13285,0.145], + [13287,0.195], + [13289,0.219], + [13291,0.325], + [13293,0.18], + [13295,0.183], + [13297,0.152], + [13299,0.169], + [13301,0.216], + [13303,0.177], + [13305,0.156], + [13307,0.2], + [13309,0.141], + [13311,0.221], + [13313,0.137], + [13315,0.166], + [13317,0.229], + [13319,0.187], + [13321,0.188], + [15001,0.202], + [15003,0.173], + [15005,0.167], + [15007,0.193], + [15009,0.175], + [16001,0.14], + [16003,0.295], + [16005,0.138], + [16007,0.206], + [16009,0.222], + [16011,0.137], + [16013,0.178], + [16015,0.249], + [16017,0.238], + [16019,0.131], + [16021,0.213], + [16023,0.208], + [16025,0.188], + [16027,0.134], + [16029,0.167], + [16031,0.138], + [16033,0.148], + [16035,0.267], + [16037,0.328], + [16039,0.13], + [16041,0.138], + [16043,0.17], + [16045,0.212], + [16047,0.167], + [16049,0.269], + [16051,0.11], + [16053,0.126], + [16055,0.185], + [16057,0.13], + [16059,0.293], + [16061,0.247], + [16063,0.13], + [16065,0.066], + [16067,0.158], + [16069,0.196], + [16071,0.192], + [16073,0.18], + [16075,0.179], + [16077,0.157], + [16079,0.223], + [16081,0.109], + [16083,0.151], + [16085,0.275], + [16087,0.246], + [17001,0.2], + [17003,0.213], + [17005,0.183], + [17007,0.156], + [17009,0.145], + [17011,0.216], + [17013,0.233], + [17015,0.249], + [17017,0.173], + [17019,0.124], + [17021,0.194], + [17023,0.193], + [17025,0.2], + [17027,0.166], + [17029,0.165], + [17031,0.143], + [17033,0.188], + [17035,0.193], + [17037,0.122], + [17039,0.188], + [17041,0.176], + [17043,0.15], + [17045,0.217], + [17047,0.209], + [17049,0.171], + [17051,0.188], + [17053,0.188], + [17055,0.201], + [17057,0.201], + [17059,0.235], + [17061,0.191], + [17063,0.136], + [17065,0.215], + [17067,0.228], + [17069,0.248], + [17071,0.248], + [17073,0.203], + [17075,0.212], + [17077,0.148], + [17079,0.19], + [17081,0.186], + [17083,0.191], + [17085,0.272], + [17087,0.209], + [17089,0.132], + [17091,0.163], + [17093,0.101], + [17095,0.208], + [17097,0.137], + [17099,0.185], + [17101,0.187], + [17103,0.189], + [17105,0.189], + [17107,0.18], + [17109,0.172], + [17111,0.14], + [17113,0.127], + [17115,0.194], + [17117,0.196], + [17119,0.168], + [17121,0.193], + [17123,0.228], + [17125,0.221], + [17127,0.208], + [17129,0.194], + [17131,0.211], + [17133,0.172], + [17135,0.196], + [17137,0.196], + [17139,0.189], + [17141,0.182], + [17143,0.165], + [17145,0.185], + [17147,0.191], + [17149,0.206], + [17151,0.274], + [17153,0.218], + [17155,0.227], + [17157,0.185], + [17159,0.201], + [17161,0.188], + [17163,0.152], + [17165,0.199], + [17167,0.172], + [17169,0.22], + [17171,0.199], + [17173,0.221], + [17175,0.219], + [17177,0.221], + [17179,0.183], + [17181,0.205], + [17183,0.187], + [17185,0.202], + [17187,0.186], + [17189,0.199], + [17191,0.213], + [17193,0.216], + [17195,0.203], + [17197,0.126], + [17199,0.186], + [17201,0.17], + [17203,0.174], + [18001,0.151], + [18003,0.142], + [18005,0.16], + [18007,0.175], + [18009,0.21], + [18011,0.129], + [18013,0.243], + [18015,0.191], + [18017,0.174], + [18019,0.154], + [18021,0.178], + [18023,0.162], + [18025,0.192], + [18027,0.152], + [18029,0.17], + [18031,0.165], + [18033,0.158], + [18035,0.169], + [18037,0.169], + [18039,0.143], + [18041,0.196], + [18043,0.157], + [18045,0.195], + [18047,0.175], + [18049,0.189], + [18051,0.172], + [18053,0.187], + [18055,0.193], + [18057,0.119], + [18059,0.159], + [18061,0.172], + [18063,0.133], + [18065,0.186], + [18067,0.191], + [18069,0.169], + [18071,0.159], + [18073,0.173], + [18075,0.173], + [18077,0.174], + [18079,0.159], + [18081,0.144], + [18083,0.175], + [18085,0.162], + [18087,0.134], + [18089,0.161], + [18091,0.173], + [18093,0.198], + [18095,0.179], + [18097,0.123], + [18099,0.173], + [18101,0.191], + [18103,0.173], + [18105,0.126], + [18107,0.178], + [18109,0.163], + [18111,0.189], + [18113,0.152], + [18115,0.21], + [18117,0.189], + [18119,0.19], + [18121,0.191], + [18123,0.182], + [18125,0.197], + [18127,0.159], + [18129,0.182], + [18131,0.189], + [18133,0.164], + [18135,0.197], + [18137,0.173], + [18139,0.179], + [18141,0.154], + [18143,0.166], + [18145,0.167], + [18147,0.193], + [18149,0.178], + [18151,0.196], + [18153,0.173], + [18155,0.177], + [18157,0.111], + [18159,0.203], + [18161,0.188], + [18163,0.164], + [18165,0.194], + [18167,0.16], + [18169,0.204], + [18171,0.201], + [18173,0.17], + [18175,0.167], + [18177,0.188], + [18179,0.179], + [18181,0.195], + [18183,0.176], + [19001,0.221], + [19003,0.228], + [19005,0.223], + [19007,0.227], + [19009,0.243], + [19011,0.181], + [19013,0.16], + [19015,0.177], + [19017,0.196], + [19019,0.178], + [19021,0.151], + [19023,0.223], + [19025,0.228], + [19027,0.197], + [19029,0.226], + [19031,0.193], + [19033,0.211], + [19035,0.235], + [19037,0.201], + [19039,0.179], + [19041,0.205], + [19043,0.23], + [19045,0.193], + [19047,0.17], + [19049,0.119], + [19051,0.174], + [19053,0.196], + [19055,0.191], + [19057,0.203], + [19059,0.255], + [19061,0.173], + [19063,0.205], + [19065,0.21], + [19067,0.217], + [19069,0.208], + [19071,0.223], + [19073,0.223], + [19075,0.205], + [19077,0.221], + [19079,0.202], + [19081,0.218], + [19083,0.213], + [19085,0.194], + [19087,0.184], + [19089,0.202], + [19091,0.208], + [19093,0.219], + [19095,0.184], + [19097,0.204], + [19099,0.189], + [19101,0.216], + [19103,0.113], + [19105,0.202], + [19107,0.215], + [19109,0.231], + [19111,0.199], + [19113,0.155], + [19115,0.183], + [19117,0.214], + [19119,0.179], + [19121,0.171], + [19123,0.181], + [19125,0.175], + [19127,0.177], + [19129,0.18], + [19131,0.217], + [19133,0.243], + [19135,0.196], + [19137,0.209], + [19139,0.161], + [19141,0.205], + [19143,0.21], + [19145,0.216], + [19147,0.215], + [19149,0.181], + [19151,0.227], + [19153,0.128], + [19155,0.17], + [19157,0.202], + [19159,0.24], + [19161,0.232], + [19163,0.158], + [19165,0.227], + [19167,0.152], + [19169,0.118], + [19171,0.195], + [19173,0.22], + [19175,0.2], + [19177,0.221], + [19179,0.174], + [19181,0.155], + [19183,0.187], + [19185,0.217], + [19187,0.18], + [19189,0.209], + [19191,0.2], + [19193,0.147], + [19195,0.202], + [19197,0.22], + [20001,0.202], + [20003,0.211], + [20005,0.169], + [20007,0.216], + [20009,0.188], + [20011,0.194], + [20013,0.195], + [20015,0.148], + [20017,0.242], + [20019,0.261], + [20021,0.19], + [20023,0.265], + [20025,0.236], + [20027,0.231], + [20029,0.21], + [20031,0.208], + [20033,0.261], + [20035,0.181], + [20037,0.152], + [20039,0.274], + [20041,0.195], + [20043,0.189], + [20045,0.118], + [20047,0.211], + [20049,0.289], + [20051,0.15], + [20053,0.206], + [20055,0.106], + [20057,0.106], + [20059,0.165], + [20061,0.081], + [20063,0.266], + [20065,0.265], + [20067,0.129], + [20069,0.148], + [20071,0.205], + [20073,0.247], + [20075,0.135], + [20077,0.223], + [20079,0.192], + [20081,0.142], + [20083,0.22], + [20085,0.188], + [20087,0.185], + [20089,0.296], + [20091,0.141], + [20093,0.146], + [20095,0.218], + [20097,0.213], + [20099,0.185], + [20101,0.184], + [20103,0.141], + [20105,0.237], + [20107,0.221], + [20109,0.202], + [20111,0.148], + [20113,0.195], + [20115,0.231], + [20117,0.213], + [20119,0.173], + [20121,0.17], + [20123,0.236], + [20125,0.192], + [20127,0.243], + [20129,0.21], + [20131,0.197], + [20133,0.192], + [20135,0.253], + [20137,0.205], + [20139,0.196], + [20141,0.244], + [20143,0.199], + [20145,0.203], + [20147,0.228], + [20149,0.141], + [20151,0.189], + [20153,0.269], + [20155,0.193], + [20157,0.274], + [20159,0.186], + [20161,0.089], + [20163,0.221], + [20165,0.249], + [20167,0.236], + [20169,0.172], + [20171,0.181], + [20173,0.14], + [20175,0.094], + [20177,0.176], + [20179,0.235], + [20181,0.188], + [20183,0.273], + [20185,0.211], + [20187,0.171], + [20189,0.146], + [20191,0.183], + [20193,0.163], + [20195,0.253], + [20197,0.195], + [20199,0.222], + [20201,0.238], + [20203,0.188], + [20205,0.21], + [20207,0.244], + [20209,0.12], + [21001,0.186], + [21003,0.173], + [21005,0.154], + [21007,0.207], + [21009,0.171], + [21011,0.162], + [21013,0.186], + [21015,0.129], + [21017,0.189], + [21019,0.189], + [21021,0.186], + [21023,0.161], + [21025,0.165], + [21027,0.193], + [21029,0.153], + [21031,0.181], + [21033,0.209], + [21035,0.168], + [21037,0.152], + [21039,0.206], + [21041,0.151], + [21043,0.183], + [21045,0.199], + [21047,0.121], + [21049,0.175], + [21051,0.148], + [21053,0.191], + [21055,0.202], + [21057,0.215], + [21059,0.167], + [21061,0.202], + [21063,0.19], + [21065,0.186], + [21067,0.13], + [21069,0.175], + [21071,0.175], + [21073,0.17], + [21075,0.201], + [21077,0.137], + [21079,0.179], + [21081,0.136], + [21083,0.182], + [21085,0.172], + [21087,0.201], + [21089,0.203], + [21091,0.169], + [21093,0.137], + [21095,0.179], + [21097,0.174], + [21099,0.164], + [21101,0.172], + [21103,0.17], + [21105,0.243], + [21107,0.18], + [21109,0.17], + [21111,0.157], + [21113,0.147], + [21115,0.177], + [21117,0.14], + [21119,0.176], + [21121,0.171], + [21123,0.171], + [21125,0.161], + [21127,0.171], + [21129,0.174], + [21131,0.174], + [21133,0.185], + [21135,0.179], + [21137,0.178], + [21139,0.21], + [21141,0.182], + [21143,0.267], + [21145,0.194], + [21147,0.153], + [21149,0.192], + [21151,0.134], + [21153,0.168], + [21155,0.165], + [21157,0.217], + [21159,0.157], + [21161,0.175], + [21163,0.14], + [21165,0.202], + [21167,0.185], + [21169,0.188], + [21171,0.184], + [21173,0.158], + [21175,0.165], + [21177,0.186], + [21179,0.153], + [21181,0.169], + [21183,0.176], + [21185,0.127], + [21187,0.179], + [21189,0.19], + [21191,0.155], + [21193,0.163], + [21195,0.181], + [21197,0.155], + [21199,0.187], + [21201,0.215], + [21203,0.178], + [21205,0.136], + [21207,0.197], + [21209,0.119], + [21211,0.153], + [21213,0.164], + [21215,0.135], + [21217,0.174], + [21219,0.156], + [21221,0.222], + [21223,0.171], + [21225,0.162], + [21227,0.127], + [21229,0.179], + [21231,0.201], + [21233,0.174], + [21235,0.158], + [21237,0.191], + [21239,0.177], + [22001,0.149], + [22003,0.147], + [22005,0.114], + [22007,0.174], + [22009,0.167], + [22011,0.154], + [22013,0.203], + [22015,0.138], + [22017,0.165], + [22019,0.146], + [22021,0.181], + [22023,0.16], + [22025,0.168], + [22027,0.189], + [22029,0.169], + [22031,0.172], + [22033,0.137], + [22035,0.14], + [22037,0.171], + [22039,0.151], + [22041,0.177], + [22043,0.147], + [22045,0.145], + [22047,0.152], + [22049,0.201], + [22051,0.166], + [22053,0.161], + [22055,0.127], + [22057,0.15], + [22059,0.167], + [22061,0.134], + [22063,0.129], + [22065,0.139], + [22067,0.182], + [22069,0.161], + [22071,0.141], + [22073,0.145], + [22075,0.13], + [22077,0.202], + [22079,0.159], + [22081,0.187], + [22083,0.172], + [22085,0.201], + [22087,0.111], + [22089,0.13], + [22091,0.189], + [22093,0.167], + [22095,0.137], + [22097,0.158], + [22099,0.147], + [22101,0.161], + [22103,0.164], + [22105,0.14], + [22107,0.238], + [22109,0.139], + [22111,0.202], + [22113,0.15], + [22115,0.117], + [22117,0.175], + [22119,0.193], + [22121,0.133], + [22123,0.187], + [22125,0.141], + [22127,0.183], + [23001,0.173], + [23003,0.234], + [23005,0.178], + [23007,0.215], + [23009,0.24], + [23011,0.194], + [23013,0.243], + [23015,0.271], + [23017,0.212], + [23019,0.18], + [23021,0.259], + [23023,0.218], + [23025,0.207], + [23027,0.218], + [23029,0.238], + [23031,0.199], + [24001,0.198], + [24003,0.144], + [24005,0.168], + [24009,0.145], + [24011,0.16], + [24013,0.164], + [24015,0.152], + [24017,0.122], + [24019,0.21], + [24021,0.141], + [24023,0.22], + [24025,0.158], + [24027,0.134], + [24029,0.262], + [24031,0.15], + [24033,0.129], + [24035,0.184], + [24037,0.125], + [24039,0.162], + [24041,0.285], + [24043,0.168], + [24045,0.155], + [24047,0.273], + [24510,0.136], + [25001,0.298], + [25003,0.226], + [25005,0.166], + [25007,0.233], + [25009,0.167], + [25011,0.211], + [25013,0.165], + [25015,0.166], + [25017,0.15], + [25019,0.146], + [25021,0.166], + [25023,0.176], + [25025,0.118], + [25027,0.153], + [26001,0.358], + [26003,0.247], + [26005,0.161], + [26007,0.227], + [26009,0.267], + [26011,0.243], + [26013,0.217], + [26015,0.18], + [26017,0.196], + [26019,0.258], + [26021,0.193], + [26023,0.182], + [26025,0.173], + [26027,0.203], + [26029,0.237], + [26031,0.268], + [26033,0.177], + [26035,0.232], + [26037,0.165], + [26039,0.249], + [26041,0.234], + [26043,0.22], + [26045,0.179], + [26047,0.217], + [26049,0.17], + [26051,0.263], + [26053,0.256], + [26055,0.192], + [26057,0.172], + [26059,0.191], + [26061,0.17], + [26063,0.247], + [26065,0.131], + [26067,0.145], + [26069,0.291], + [26071,0.3], + [26073,0.122], + [26075,0.172], + [26077,0.146], + [26079,0.198], + [26081,0.133], + [26083,0.351], + [26085,0.277], + [26087,0.176], + [26089,0.3], + [26091,0.183], + [26093,0.165], + [26095,0.214], + [26097,0.273], + [26099,0.166], + [26101,0.25], + [26103,0.184], + [26105,0.231], + [26107,0.181], + [26109,0.236], + [26111,0.18], + [26113,0.203], + [26115,0.175], + [26117,0.171], + [26119,0.314], + [26121,0.165], + [26123,0.188], + [26125,0.164], + [26127,0.204], + [26129,0.252], + [26131,0.354], + [26133,0.206], + [26135,0.27], + [26137,0.207], + [26139,0.146], + [26141,0.306], + [26143,0.319], + [26145,0.187], + [26147,0.182], + [26149,0.174], + [26151,0.21], + [26153,0.265], + [26155,0.178], + [26157,0.198], + [26159,0.176], + [26161,0.134], + [26163,0.151], + [26165,0.186], + [27001,0.325], + [27003,0.135], + [27005,0.202], + [27007,0.156], + [27009,0.138], + [27011,0.256], + [27013,0.134], + [27015,0.208], + [27017,0.17], + [27019,0.114], + [27021,0.253], + [27023,0.209], + [27025,0.149], + [27027,0.129], + [27029,0.203], + [27031,0.273], + [27033,0.227], + [27035,0.22], + [27037,0.136], + [27039,0.144], + [27041,0.224], + [27043,0.227], + [27045,0.205], + [27047,0.22], + [27049,0.19], + [27051,0.233], + [27053,0.137], + [27055,0.208], + [27057,0.248], + [27059,0.155], + [27061,0.226], + [27063,0.216], + [27065,0.202], + [27067,0.183], + [27069,0.239], + [27071,0.244], + [27073,0.267], + [27075,0.257], + [27077,0.235], + [27079,0.171], + [27081,0.246], + [27083,0.155], + [27085,0.183], + [27087,0.175], + [27089,0.21], + [27091,0.229], + [27093,0.194], + [27095,0.181], + [27097,0.19], + [27099,0.184], + [27101,0.253], + [27103,0.157], + [27105,0.16], + [27107,0.214], + [27109,0.151], + [27111,0.233], + [27113,0.179], + [27115,0.201], + [27117,0.207], + [27119,0.18], + [27121,0.237], + [27123,0.141], + [27125,0.2], + [27127,0.211], + [27129,0.205], + [27131,0.151], + [27133,0.198], + [27135,0.167], + [27137,0.188], + [27139,0.104], + [27141,0.109], + [27143,0.181], + [27145,0.146], + [27147,0.17], + [27149,0.168], + [27151,0.218], + [27153,0.209], + [27155,0.248], + [27157,0.212], + [27159,0.21], + [27161,0.174], + [27163,0.144], + [27165,0.2], + [27167,0.188], + [27169,0.164], + [27171,0.122], + [27173,0.202], + [28001,0.183], + [28003,0.182], + [28005,0.228], + [28007,0.19], + [28009,0.174], + [28011,0.15], + [28013,0.184], + [28015,0.229], + [28017,0.168], + [28019,0.214], + [28021,0.16], + [28023,0.2], + [28025,0.179], + [28027,0.146], + [28029,0.168], + [28031,0.17], + [28033,0.126], + [28035,0.133], + [28037,0.193], + [28039,0.147], + [28041,0.134], + [28043,0.174], + [28045,0.197], + [28047,0.145], + [28049,0.136], + [28051,0.145], + [28053,0.163], + [28055,0.162], + [28057,0.173], + [28059,0.156], + [28061,0.197], + [28063,0.154], + [28065,0.218], + [28067,0.164], + [28069,0.194], + [28071,0.121], + [28073,0.131], + [28075,0.166], + [28077,0.175], + [28079,0.159], + [28081,0.145], + [28083,0.138], + [28085,0.167], + [28087,0.155], + [28089,0.128], + [28091,0.18], + [28093,0.17], + [28095,0.19], + [28097,0.207], + [28099,0.157], + [28101,0.161], + [28103,0.159], + [28105,0.11], + [28107,0.154], + [28109,0.184], + [28111,0.172], + [28113,0.166], + [28115,0.147], + [28117,0.176], + [28119,0.166], + [28121,0.147], + [28123,0.149], + [28125,0.182], + [28127,0.172], + [28129,0.189], + [28131,0.16], + [28133,0.129], + [28135,0.146], + [28137,0.161], + [28139,0.157], + [28141,0.205], + [28143,0.118], + [28145,0.164], + [28147,0.191], + [28149,0.161], + [28151,0.154], + [28153,0.168], + [28155,0.179], + [28157,0.169], + [28159,0.2], + [28161,0.197], + [28163,0.127], + [29001,0.144], + [29003,0.187], + [29005,0.254], + [29007,0.173], + [29009,0.202], + [29011,0.201], + [29013,0.193], + [29015,0.303], + [29017,0.196], + [29019,0.119], + [29021,0.158], + [29023,0.185], + [29025,0.193], + [29027,0.158], + [29029,0.277], + [29031,0.162], + [29033,0.214], + [29035,0.196], + [29037,0.165], + [29039,0.233], + [29041,0.237], + [29043,0.152], + [29045,0.206], + [29047,0.138], + [29049,0.175], + [29051,0.16], + [29053,0.172], + [29055,0.192], + [29057,0.232], + [29059,0.205], + [29061,0.204], + [29063,0.166], + [29065,0.215], + [29067,0.239], + [29069,0.178], + [29071,0.169], + [29073,0.223], + [29075,0.196], + [29077,0.161], + [29079,0.217], + [29081,0.223], + [29083,0.214], + [29085,0.335], + [29087,0.249], + [29089,0.185], + [29091,0.196], + [29093,0.219], + [29095,0.146], + [29097,0.152], + [29099,0.145], + [29101,0.123], + [29103,0.215], + [29105,0.175], + [29107,0.184], + [29109,0.178], + [29111,0.184], + [29113,0.133], + [29115,0.205], + [29117,0.199], + [29119,0.153], + [29121,0.22], + [29123,0.188], + [29125,0.213], + [29127,0.174], + [29129,0.211], + [29131,0.188], + [29133,0.176], + [29135,0.156], + [29137,0.228], + [29139,0.204], + [29141,0.234], + [29143,0.185], + [29145,0.177], + [29147,0.148], + [29149,0.232], + [29151,0.172], + [29153,0.274], + [29155,0.165], + [29157,0.182], + [29159,0.164], + [29161,0.158], + [29163,0.17], + [29165,0.143], + [29167,0.178], + [29169,0.083], + [29171,0.239], + [29173,0.209], + [29175,0.164], + [29177,0.18], + [29179,0.227], + [29181,0.206], + [29183,0.147], + [29185,0.272], + [29186,0.19], + [29187,0.162], + [29189,0.177], + [29195,0.18], + [29197,0.193], + [29199,0.183], + [29201,0.178], + [29203,0.21], + [29205,0.206], + [29207,0.197], + [29209,0.303], + [29211,0.2], + [29213,0.213], + [29215,0.205], + [29217,0.187], + [29219,0.176], + [29221,0.162], + [29223,0.231], + [29225,0.155], + [29227,0.247], + [29229,0.194], + [29510,0.131], + [30001,0.213], + [30003,0.121], + [30005,0.151], + [30007,0.234], + [30009,0.25], + [30011,0.226], + [30013,0.183], + [30015,0.2], + [30017,0.191], + [30019,0.245], + [30021,0.186], + [30023,0.228], + [30025,0.178], + [30027,0.232], + [30029,0.187], + [30031,0.122], + [30033,0.231], + [30035,0.118], + [30037,0.254], + [30039,0.291], + [30041,0.145], + [30043,0.205], + [30045,0.227], + [30047,0.214], + [30049,0.18], + [30051,0.251], + [30053,0.277], + [30055,0.251], + [30057,0.289], + [30059,0.24], + [30061,0.281], + [30063,0.15], + [30065,0.259], + [30067,0.218], + [30069,0.223], + [30071,0.223], + [30073,0.2], + [30075,0.274], + [30077,0.2], + [30079,0.28], + [30081,0.251], + [30083,0.147], + [30085,0.111], + [30087,0.148], + [30089,0.3], + [30091,0.232], + [30093,0.187], + [30095,0.22], + [30097,0.302], + [30099,0.227], + [30101,0.169], + [30103,0.287], + [30105,0.222], + [30107,0.202], + [30109,0.223], + [30111,0.165], + [31001,0.177], + [31003,0.229], + [31005,0.251], + [31007,0.215], + [31009,0.277], + [31011,0.222], + [31013,0.172], + [31015,0.301], + [31017,0.27], + [31019,0.139], + [31021,0.237], + [31023,0.205], + [31025,0.17], + [31027,0.213], + [31029,0.219], + [31031,0.207], + [31033,0.185], + [31035,0.199], + [31037,0.126], + [31039,0.217], + [31041,0.219], + [31043,0.134], + [31045,0.183], + [31047,0.156], + [31049,0.235], + [31051,0.2], + [31053,0.19], + [31055,0.126], + [31057,0.215], + [31059,0.231], + [31061,0.271], + [31063,0.253], + [31065,0.245], + [31067,0.205], + [31069,0.277], + [31071,0.285], + [31073,0.261], + [31075,0.211], + [31077,0.253], + [31079,0.146], + [31081,0.195], + [31083,0.247], + [31085,0.186], + [31087,0.253], + [31089,0.215], + [31091,0.326], + [31093,0.211], + [31095,0.236], + [31097,0.182], + [31099,0.19], + [31101,0.267], + [31103,0.241], + [31105,0.246], + [31107,0.245], + [31109,0.135], + [31111,0.189], + [31113,0.201], + [31115,0.245], + [31117,0.299], + [31119,0.155], + [31121,0.207], + [31123,0.201], + [31125,0.204], + [31127,0.197], + [31129,0.266], + [31131,0.191], + [31133,0.279], + [31135,0.23], + [31137,0.2], + [31139,0.189], + [31141,0.173], + [31143,0.218], + [31145,0.2], + [31147,0.241], + [31149,0.251], + [31151,0.144], + [31153,0.114], + [31155,0.183], + [31157,0.187], + [31159,0.17], + [31161,0.253], + [31163,0.267], + [31165,0.221], + [31167,0.175], + [31169,0.254], + [31171,0.212], + [31173,0.119], + [31175,0.254], + [31177,0.178], + [31179,0.155], + [31181,0.224], + [31183,0.239], + [31185,0.197], + [32001,0.187], + [32003,0.145], + [32005,0.274], + [32007,0.11], + [32009,0.285], + [32011,0.18], + [32013,0.134], + [32015,0.141], + [32017,0.219], + [32019,0.209], + [32021,0.305], + [32023,0.297], + [32027,0.157], + [32029,0.286], + [32031,0.16], + [32033,0.165], + [32510,0.198], + [33001,0.214], + [33003,0.27], + [33005,0.194], + [33007,0.231], + [33009,0.2], + [33011,0.152], + [33013,0.176], + [33015,0.172], + [33017,0.146], + [33019,0.208], + [34001,0.175], + [34003,0.17], + [34005,0.166], + [34007,0.154], + [34009,0.258], + [34011,0.149], + [34013,0.134], + [34015,0.154], + [34017,0.117], + [34019,0.179], + [34021,0.149], + [34023,0.147], + [34025,0.171], + [34027,0.167], + [34029,0.224], + [34031,0.143], + [34033,0.183], + [34035,0.153], + [34037,0.167], + [34039,0.142], + [34041,0.176], + [35001,0.158], + [35003,0.37], + [35005,0.155], + [35006,0.156], + [35007,0.27], + [35009,0.122], + [35011,0.197], + [35013,0.153], + [35015,0.143], + [35017,0.266], + [35019,0.218], + [35021,0.39], + [35023,0.212], + [35025,0.111], + [35027,0.281], + [35028,0.175], + [35029,0.205], + [35031,0.119], + [35033,0.304], + [35035,0.17], + [35037,0.243], + [35039,0.187], + [35041,0.139], + [35043,0.171], + [35045,0.143], + [35047,0.206], + [35049,0.231], + [35051,0.355], + [35053,0.189], + [35055,0.253], + [35057,0.201], + [35059,0.197], + [35061,0.172], + [36001,0.165], + [36003,0.184], + [36005,0.125], + [36007,0.187], + [36009,0.187], + [36011,0.184], + [36013,0.196], + [36015,0.184], + [36017,0.202], + [36019,0.164], + [36021,0.231], + [36023,0.16], + [36025,0.24], + [36027,0.171], + [36029,0.176], + [36031,0.228], + [36033,0.166], + [36035,0.19], + [36037,0.183], + [36039,0.216], + [36041,0.303], + [36043,0.201], + [36045,0.132], + [36047,0.136], + [36049,0.179], + [36051,0.172], + [36053,0.176], + [36055,0.169], + [36057,0.183], + [36059,0.175], + [36061,0.162], + [36063,0.186], + [36065,0.184], + [36067,0.166], + [36069,0.194], + [36071,0.137], + [36073,0.174], + [36075,0.158], + [36077,0.206], + [36079,0.167], + [36081,0.153], + [36083,0.165], + [36085,0.159], + [36087,0.155], + [36089,0.169], + [36091,0.176], + [36093,0.168], + [36095,0.21], + [36097,0.208], + [36099,0.186], + [36101,0.189], + [36103,0.165], + [36105,0.185], + [36107,0.197], + [36109,0.139], + [36111,0.192], + [36113,0.216], + [36115,0.189], + [36117,0.184], + [36119,0.167], + [36121,0.174], + [36123,0.201], + [37001,0.166], + [37003,0.195], + [37005,0.265], + [37007,0.179], + [37009,0.247], + [37011,0.217], + [37013,0.233], + [37015,0.219], + [37017,0.21], + [37019,0.305], + [37021,0.194], + [37023,0.197], + [37025,0.13], + [37027,0.193], + [37029,0.175], + [37031,0.242], + [37033,0.207], + [37035,0.175], + [37037,0.24], + [37039,0.289], + [37041,0.242], + [37043,0.301], + [37045,0.182], + [37047,0.195], + [37049,0.187], + [37051,0.116], + [37053,0.158], + [37055,0.207], + [37057,0.178], + [37059,0.202], + [37061,0.179], + [37063,0.126], + [37065,0.19], + [37067,0.156], + [37069,0.164], + [37071,0.158], + [37073,0.198], + [37075,0.232], + [37077,0.166], + [37079,0.158], + [37081,0.148], + [37083,0.201], + [37085,0.122], + [37087,0.243], + [37089,0.254], + [37091,0.194], + [37093,0.096], + [37095,0.194], + [37097,0.156], + [37099,0.193], + [37101,0.13], + [37103,0.228], + [37105,0.161], + [37107,0.195], + [37109,0.17], + [37111,0.199], + [37113,0.283], + [37115,0.218], + [37117,0.223], + [37119,0.109], + [37121,0.244], + [37123,0.197], + [37125,0.238], + [37127,0.178], + [37129,0.172], + [37131,0.251], + [37133,0.089], + [37135,0.134], + [37137,0.291], + [37139,0.165], + [37141,0.177], + [37143,0.271], + [37145,0.19], + [37147,0.128], + [37149,0.302], + [37151,0.174], + [37153,0.174], + [37155,0.147], + [37157,0.199], + [37159,0.172], + [37161,0.211], + [37163,0.174], + [37165,0.174], + [37167,0.187], + [37169,0.203], + [37171,0.201], + [37173,0.19], + [37175,0.299], + [37177,0.2], + [37179,0.123], + [37181,0.179], + [37183,0.113], + [37185,0.246], + [37187,0.236], + [37189,0.155], + [37191,0.16], + [37193,0.21], + [37195,0.175], + [37197,0.195], + [37199,0.253], + [38001,0.244], + [38003,0.219], + [38005,0.133], + [38007,0.214], + [38009,0.229], + [38011,0.206], + [38013,0.169], + [38015,0.156], + [38017,0.116], + [38019,0.271], + [38021,0.204], + [38023,0.266], + [38025,0.167], + [38027,0.249], + [38029,0.295], + [38031,0.225], + [38033,0.207], + [38035,0.123], + [38037,0.291], + [38039,0.297], + [38041,0.243], + [38043,0.213], + [38045,0.256], + [38047,0.28], + [38049,0.202], + [38051,0.312], + [38053,0.087], + [38055,0.229], + [38057,0.183], + [38059,0.16], + [38061,0.113], + [38063,0.273], + [38065,0.235], + [38067,0.225], + [38069,0.238], + [38071,0.192], + [38073,0.214], + [38075,0.174], + [38077,0.173], + [38079,0.113], + [38081,0.222], + [38083,0.297], + [38085,0.078], + [38087,0.265], + [38089,0.13], + [38091,0.233], + [38093,0.189], + [38095,0.226], + [38097,0.194], + [38099,0.209], + [38101,0.122], + [38103,0.266], + [38105,0.091], + [39001,0.175], + [39003,0.172], + [39005,0.183], + [39007,0.185], + [39009,0.126], + [39011,0.179], + [39013,0.203], + [39015,0.181], + [39017,0.144], + [39019,0.208], + [39021,0.181], + [39023,0.19], + [39025,0.157], + [39027,0.166], + [39029,0.198], + [39031,0.19], + [39033,0.204], + [39035,0.177], + [39037,0.191], + [39039,0.182], + [39041,0.132], + [39043,0.213], + [39045,0.154], + [39047,0.173], + [39049,0.117], + [39051,0.173], + [39053,0.185], + [39055,0.198], + [39057,0.168], + [39059,0.191], + [39061,0.151], + [39063,0.166], + [39065,0.156], + [39067,0.209], + [39069,0.18], + [39071,0.18], + [39073,0.185], + [39075,0.133], + [39077,0.167], + [39079,0.168], + [39081,0.21], + [39083,0.177], + [39085,0.195], + [39087,0.184], + [39089,0.161], + [39091,0.176], + [39093,0.178], + [39095,0.158], + [39097,0.152], + [39099,0.204], + [39101,0.173], + [39103,0.173], + [39105,0.193], + [39107,0.173], + [39109,0.184], + [39111,0.233], + [39113,0.176], + [39115,0.207], + [39117,0.166], + [39119,0.175], + [39121,0.267], + [39123,0.244], + [39125,0.182], + [39127,0.162], + [39129,0.155], + [39131,0.176], + [39133,0.159], + [39135,0.187], + [39137,0.169], + [39139,0.192], + [39141,0.161], + [39143,0.185], + [39145,0.178], + [39147,0.175], + [39149,0.16], + [39151,0.19], + [39153,0.175], + [39155,0.21], + [39157,0.192], + [39159,0.12], + [39161,0.185], + [39163,0.17], + [39165,0.14], + [39167,0.205], + [39169,0.173], + [39171,0.185], + [39173,0.148], + [39175,0.188], + [40001,0.152], + [40003,0.192], + [40005,0.187], + [40007,0.187], + [40009,0.135], + [40011,0.181], + [40013,0.177], + [40015,0.163], + [40017,0.129], + [40019,0.164], + [40021,0.163], + [40023,0.203], + [40025,0.243], + [40027,0.13], + [40029,0.206], + [40031,0.122], + [40033,0.194], + [40035,0.196], + [40037,0.174], + [40039,0.134], + [40041,0.244], + [40043,0.186], + [40045,0.225], + [40047,0.159], + [40049,0.177], + [40051,0.159], + [40053,0.211], + [40055,0.175], + [40057,0.187], + [40059,0.187], + [40061,0.198], + [40063,0.188], + [40065,0.148], + [40067,0.201], + [40069,0.191], + [40071,0.189], + [40073,0.156], + [40075,0.195], + [40077,0.211], + [40079,0.175], + [40081,0.179], + [40083,0.151], + [40085,0.193], + [40087,0.152], + [40089,0.177], + [40091,0.252], + [40093,0.197], + [40095,0.223], + [40097,0.182], + [40099,0.192], + [40101,0.164], + [40103,0.188], + [40105,0.192], + [40107,0.175], + [40109,0.134], + [40111,0.182], + [40113,0.193], + [40115,0.18], + [40117,0.188], + [40119,0.123], + [40121,0.195], + [40123,0.164], + [40125,0.16], + [40127,0.226], + [40129,0.202], + [40131,0.159], + [40133,0.177], + [40135,0.181], + [40137,0.192], + [40139,0.11], + [40141,0.196], + [40143,0.14], + [40145,0.16], + [40147,0.193], + [40149,0.176], + [40151,0.167], + [40153,0.15], + [41001,0.259], + [41003,0.155], + [41005,0.176], + [41007,0.214], + [41009,0.183], + [41011,0.255], + [41013,0.248], + [41015,0.337], + [41017,0.196], + [41019,0.252], + [41021,0.253], + [41023,0.292], + [41025,0.239], + [41027,0.156], + [41029,0.215], + [41031,0.193], + [41033,0.257], + [41035,0.207], + [41037,0.246], + [41039,0.188], + [41041,0.279], + [41043,0.183], + [41045,0.164], + [41047,0.153], + [41049,0.156], + [41051,0.13], + [41053,0.175], + [41055,0.261], + [41057,0.249], + [41059,0.153], + [41061,0.201], + [41063,0.282], + [41065,0.202], + [41067,0.13], + [41069,0.358], + [41071,0.168], + [42001,0.198], + [42003,0.185], + [42005,0.216], + [42007,0.209], + [42009,0.222], + [42011,0.169], + [42013,0.203], + [42015,0.208], + [42017,0.181], + [42019,0.182], + [42021,0.22], + [42023,0.268], + [42025,0.207], + [42027,0.138], + [42029,0.159], + [42031,0.191], + [42033,0.201], + [42035,0.183], + [42037,0.189], + [42039,0.2], + [42041,0.181], + [42043,0.165], + [42045,0.16], + [42047,0.215], + [42049,0.174], + [42051,0.206], + [42053,0.219], + [42055,0.192], + [42057,0.21], + [42059,0.185], + [42061,0.205], + [42063,0.188], + [42065,0.206], + [42067,0.199], + [42069,0.196], + [42071,0.175], + [42073,0.215], + [42075,0.191], + [42077,0.165], + [42079,0.196], + [42081,0.19], + [42083,0.19], + [42085,0.212], + [42087,0.211], + [42089,0.168], + [42091,0.174], + [42093,0.206], + [42095,0.186], + [42097,0.209], + [42099,0.18], + [42101,0.134], + [42103,0.219], + [42105,0.235], + [42107,0.2], + [42109,0.183], + [42111,0.218], + [42113,0.276], + [42115,0.229], + [42117,0.215], + [42119,0.177], + [42121,0.216], + [42123,0.223], + [42125,0.201], + [42127,0.235], + [42129,0.221], + [42131,0.205], + [42133,0.171], + [44001,0.194], + [44003,0.184], + [44005,0.217], + [44007,0.15], + [44009,0.199], + [45001,0.211], + [45003,0.187], + [45005,0.197], + [45007,0.177], + [45009,0.21], + [45011,0.177], + [45013,0.264], + [45015,0.134], + [45017,0.22], + [45019,0.159], + [45021,0.163], + [45023,0.182], + [45025,0.179], + [45027,0.228], + [45029,0.198], + [45031,0.184], + [45033,0.159], + [45035,0.135], + [45037,0.184], + [45039,0.205], + [45041,0.163], + [45043,0.27], + [45045,0.154], + [45047,0.181], + [45049,0.18], + [45051,0.232], + [45053,0.182], + [45055,0.18], + [45057,0.204], + [45059,0.179], + [45061,0.181], + [45063,0.154], + [45065,0.334], + [45067,0.19], + [45069,0.174], + [45071,0.192], + [45073,0.228], + [45075,0.19], + [45077,0.161], + [45079,0.123], + [45081,0.192], + [45083,0.159], + [45085,0.159], + [45087,0.196], + [45089,0.2], + [45091,0.14], + [46003,0.189], + [46005,0.17], + [46007,0.116], + [46009,0.205], + [46011,0.117], + [46013,0.171], + [46015,0.177], + [46017,0.072], + [46019,0.199], + [46021,0.251], + [46023,0.182], + [46025,0.211], + [46027,0.119], + [46029,0.169], + [46031,0.109], + [46033,0.29], + [46035,0.18], + [46037,0.256], + [46039,0.213], + [46041,0.096], + [46043,0.235], + [46045,0.193], + [46047,0.276], + [46049,0.267], + [46051,0.205], + [46053,0.245], + [46055,0.21], + [46057,0.158], + [46059,0.243], + [46061,0.149], + [46063,0.175], + [46065,0.168], + [46067,0.231], + [46069,0.262], + [46071,0.143], + [46073,0.296], + [46075,0.231], + [46077,0.227], + [46079,0.21], + [46081,0.211], + [46083,0.122], + [46085,0.156], + [46087,0.187], + [46089,0.295], + [46091,0.208], + [46093,0.151], + [46095,0.151], + [46097,0.198], + [46099,0.127], + [46101,0.19], + [46102,0.068], + [46103,0.174], + [46105,0.24], + [46107,0.278], + [46109,0.194], + [46111,0.199], + [46115,0.205], + [46117,0.216], + [46119,0.245], + [46121,0.074], + [46123,0.222], + [46125,0.206], + [46127,0.174], + [46129,0.24], + [46135,0.184], + [46137,0.094], + [47001,0.197], + [47003,0.15], + [47005,0.238], + [47007,0.179], + [47009,0.2], + [47011,0.168], + [47013,0.204], + [47015,0.184], + [47017,0.199], + [47019,0.212], + [47021,0.146], + [47023,0.169], + [47025,0.194], + [47027,0.237], + [47029,0.209], + [47031,0.172], + [47033,0.186], + [47035,0.302], + [47037,0.12], + [47039,0.234], + [47041,0.181], + [47043,0.155], + [47045,0.172], + [47047,0.207], + [47049,0.21], + [47051,0.194], + [47053,0.177], + [47055,0.198], + [47057,0.202], + [47059,0.212], + [47061,0.205], + [47063,0.179], + [47065,0.172], + [47067,0.205], + [47069,0.179], + [47071,0.224], + [47073,0.206], + [47075,0.179], + [47077,0.179], + [47079,0.228], + [47081,0.168], + [47083,0.209], + [47085,0.193], + [47087,0.22], + [47089,0.196], + [47091,0.224], + [47093,0.154], + [47095,0.155], + [47097,0.153], + [47099,0.176], + [47101,0.205], + [47103,0.189], + [47105,0.258], + [47107,0.194], + [47109,0.206], + [47111,0.157], + [47113,0.164], + [47115,0.195], + [47117,0.157], + [47119,0.155], + [47121,0.217], + [47123,0.207], + [47125,0.091], + [47127,0.205], + [47129,0.174], + [47131,0.198], + [47133,0.201], + [47135,0.205], + [47137,0.269], + [47139,0.205], + [47141,0.166], + [47143,0.18], + [47145,0.222], + [47147,0.145], + [47149,0.102], + [47151,0.165], + [47153,0.2], + [47155,0.193], + [47157,0.131], + [47159,0.164], + [47161,0.196], + [47163,0.215], + [47165,0.156], + [47167,0.141], + [47169,0.139], + [47171,0.232], + [47173,0.181], + [47175,0.225], + [47177,0.172], + [47179,0.179], + [47181,0.187], + [47183,0.18], + [47185,0.201], + [47187,0.127], + [47189,0.154], + [48001,0.143], + [48003,0.1], + [48005,0.159], + [48007,0.274], + [48009,0.195], + [48011,0.215], + [48013,0.143], + [48015,0.187], + [48017,0.139], + [48019,0.264], + [48021,0.146], + [48023,0.242], + [48025,0.12], + [48027,0.106], + [48029,0.118], + [48031,0.25], + [48033,0.272], + [48035,0.246], + [48037,0.164], + [48039,0.116], + [48041,0.089], + [48043,0.224], + [48045,0.255], + [48047,0.146], + [48049,0.195], + [48051,0.204], + [48053,0.219], + [48055,0.137], + [48057,0.174], + [48059,0.206], + [48061,0.132], + [48063,0.185], + [48065,0.183], + [48067,0.219], + [48069,0.152], + [48071,0.109], + [48073,0.17], + [48075,0.138], + [48077,0.228], + [48079,0.158], + [48081,0.285], + [48083,0.247], + [48085,0.107], + [48087,0.17], + [48089,0.216], + [48091,0.179], + [48093,0.24], + [48095,0.2], + [48097,0.182], + [48099,0.098], + [48101,0.208], + [48103,0.136], + [48105,0.15], + [48107,0.182], + [48109,0.148], + [48111,0.107], + [48113,0.105], + [48115,0.147], + [48117,0.125], + [48119,0.201], + [48121,0.099], + [48123,0.194], + [48125,0.238], + [48127,0.169], + [48129,0.232], + [48131,0.176], + [48133,0.224], + [48135,0.095], + [48137,0.306], + [48139,0.126], + [48141,0.119], + [48143,0.14], + [48145,0.179], + [48147,0.185], + [48149,0.246], + [48151,0.228], + [48153,0.186], + [48155,0.271], + [48157,0.106], + [48159,0.217], + [48161,0.196], + [48163,0.124], + [48165,0.088], + [48167,0.139], + [48169,0.137], + [48171,0.293], + [48173,0.099], + [48175,0.22], + [48177,0.164], + [48179,0.158], + [48181,0.175], + [48183,0.151], + [48185,0.169], + [48187,0.136], + [48189,0.133], + [48191,0.223], + [48193,0.245], + [48195,0.154], + [48197,0.214], + [48199,0.165], + [48201,0.102], + [48203,0.165], + [48205,0.15], + [48207,0.22], + [48209,0.107], + [48211,0.132], + [48213,0.22], + [48215,0.108], + [48217,0.205], + [48219,0.143], + [48221,0.247], + [48223,0.183], + [48225,0.213], + [48227,0.129], + [48229,0.153], + [48231,0.158], + [48233,0.163], + [48235,0.169], + [48237,0.171], + [48239,0.174], + [48241,0.194], + [48243,0.34], + [48245,0.142], + [48247,0.142], + [48249,0.149], + [48251,0.138], + [48253,0.152], + [48255,0.14], + [48257,0.118], + [48259,0.189], + [48261,0.254], + [48263,0.281], + [48265,0.271], + [48267,0.29], + [48269,0.105], + [48271,0.247], + [48273,0.13], + [48275,0.183], + [48277,0.189], + [48279,0.165], + [48281,0.188], + [48283,0.17], + [48285,0.233], + [48287,0.188], + [48289,0.242], + [48291,0.13], + [48293,0.187], + [48295,0.171], + [48297,0.203], + [48299,0.364], + [48301,0.255], + [48303,0.122], + [48305,0.169], + [48307,0.218], + [48309,0.141], + [48311,0.183], + [48313,0.152], + [48315,0.259], + [48317,0.121], + [48319,0.244], + [48321,0.163], + [48323,0.115], + [48325,0.165], + [48327,0.314], + [48329,0.103], + [48331,0.203], + [48333,0.308], + [48335,0.154], + [48337,0.224], + [48339,0.128], + [48341,0.107], + [48343,0.215], + [48345,0.314], + [48347,0.142], + [48349,0.168], + [48351,0.201], + [48353,0.176], + [48355,0.141], + [48357,0.105], + [48359,0.148], + [48361,0.156], + [48363,0.194], + [48365,0.187], + [48367,0.153], + [48369,0.135], + [48371,0.127], + [48373,0.185], + [48375,0.122], + [48377,0.241], + [48379,0.246], + [48381,0.147], + [48383,0.082], + [48385,0.286], + [48387,0.244], + [48389,0.127], + [48391,0.216], + [48393,0.256], + [48395,0.19], + [48397,0.121], + [48399,0.206], + [48401,0.164], + [48403,0.305], + [48405,0.264], + [48407,0.221], + [48409,0.146], + [48411,0.231], + [48413,0.188], + [48415,0.151], + [48417,0.192], + [48419,0.174], + [48421,0.133], + [48423,0.162], + [48425,0.183], + [48427,0.112], + [48429,0.195], + [48431,0.127], + [48433,0.203], + [48435,0.181], + [48437,0.184], + [48439,0.11], + [48441,0.142], + [48443,0.327], + [48445,0.151], + [48447,0.28], + [48449,0.14], + [48451,0.151], + [48453,0.095], + [48455,0.262], + [48457,0.216], + [48459,0.179], + [48461,0.167], + [48463,0.167], + [48465,0.141], + [48467,0.2], + [48469,0.158], + [48471,0.127], + [48473,0.116], + [48475,0.138], + [48477,0.21], + [48479,0.092], + [48481,0.166], + [48483,0.192], + [48485,0.145], + [48487,0.185], + [48489,0.137], + [48491,0.118], + [48493,0.154], + [48495,0.115], + [48497,0.149], + [48499,0.267], + [48501,0.115], + [48503,0.204], + [48505,0.138], + [48507,0.138], + [49001,0.142], + [49003,0.127], + [49005,0.091], + [49007,0.168], + [49009,0.126], + [49011,0.098], + [49013,0.114], + [49015,0.164], + [49017,0.218], + [49019,0.177], + [49021,0.125], + [49023,0.117], + [49025,0.225], + [49027,0.167], + [49029,0.114], + [49031,0.246], + [49033,0.211], + [49035,0.106], + [49037,0.137], + [49039,0.137], + [49041,0.16], + [49043,0.118], + [49045,0.089], + [49047,0.102], + [49049,0.076], + [49051,0.111], + [49053,0.209], + [49055,0.205], + [49057,0.114], + [50001,0.192], + [50003,0.225], + [50005,0.2], + [50007,0.146], + [50009,0.253], + [50011,0.156], + [50013,0.2], + [50015,0.167], + [50017,0.205], + [50019,0.221], + [50021,0.213], + [50023,0.19], + [50025,0.219], + [50027,0.227], + [51001,0.227], + [51003,0.18], + [51005,0.238], + [51007,0.192], + [51009,0.206], + [51011,0.203], + [51013,0.105], + [51015,0.205], + [51017,0.224], + [51019,0.209], + [51021,0.225], + [51023,0.219], + [51025,0.209], + [51027,0.214], + [51029,0.193], + [51031,0.196], + [51033,0.16], + [51035,0.238], + [51036,0.239], + [51037,0.219], + [51041,0.144], + [51043,0.207], + [51045,0.213], + [51047,0.154], + [51049,0.219], + [51051,0.214], + [51053,0.171], + [51057,0.222], + [51059,0.131], + [51061,0.162], + [51063,0.225], + [51065,0.194], + [51067,0.228], + [51069,0.168], + [51071,0.213], + [51073,0.186], + [51075,0.216], + [51077,0.24], + [51079,0.166], + [51081,0.148], + [51083,0.234], + [51085,0.172], + [51087,0.15], + [51089,0.236], + [51091,0.389], + [51093,0.186], + [51095,0.246], + [51097,0.231], + [51099,0.128], + [51101,0.157], + [51103,0.362], + [51105,0.208], + [51107,0.09], + [51109,0.196], + [51111,0.215], + [51113,0.216], + [51115,0.312], + [51117,0.251], + [51119,0.311], + [51121,0.122], + [51125,0.26], + [51127,0.165], + [51131,0.26], + [51133,0.367], + [51135,0.19], + [51137,0.197], + [51139,0.209], + [51141,0.262], + [51143,0.218], + [51145,0.177], + [51147,0.161], + [51149,0.134], + [51153,0.095], + [51155,0.225], + [51157,0.258], + [51159,0.212], + [51161,0.211], + [51163,0.255], + [51165,0.188], + [51167,0.207], + [51169,0.235], + [51171,0.212], + [51173,0.213], + [51175,0.194], + [51177,0.137], + [51179,0.101], + [51181,0.217], + [51183,0.173], + [51185,0.215], + [51187,0.156], + [51191,0.222], + [51193,0.248], + [51195,0.177], + [51197,0.207], + [51199,0.157], + [51510,0.113], + [51520,0.204], + [51530,0.184], + [51540,0.113], + [51550,0.13], + [51570,0.204], + [51580,0.202], + [51590,0.203], + [51595,0.168], + [51600,0.149], + [51610,0.129], + [51620,0.193], + [51630,0.108], + [51640,0.224], + [51650,0.15], + [51660,0.09], + [51670,0.155], + [51678,0.156], + [51680,0.141], + [51683,0.097], + [51685,0.085], + [51690,0.187], + [51700,0.127], + [51710,0.109], + [51720,0.164], + [51730,0.167], + [51735,0.196], + [51740,0.145], + [51750,0.087], + [51760,0.128], + [51770,0.161], + [51775,0.19], + [51790,0.21], + [51800,0.142], + [51810,0.137], + [51820,0.176], + [51830,0.157], + [51840,0.159], + [53001,0.109], + [53003,0.228], + [53005,0.145], + [53007,0.186], + [53009,0.288], + [53011,0.15], + [53013,0.283], + [53015,0.188], + [53017,0.172], + [53019,0.254], + [53021,0.09], + [53023,0.247], + [53025,0.135], + [53027,0.21], + [53029,0.24], + [53031,0.353], + [53033,0.13], + [53035,0.174], + [53037,0.157], + [53039,0.236], + [53041,0.207], + [53043,0.255], + [53045,0.225], + [53047,0.211], + [53049,0.303], + [53051,0.257], + [53053,0.135], + [53055,0.329], + [53057,0.203], + [53059,0.199], + [53061,0.131], + [53063,0.158], + [53065,0.225], + [53067,0.168], + [53069,0.33], + [53071,0.176], + [53073,0.169], + [53075,0.102], + [53077,0.135], + [54001,0.194], + [54003,0.145], + [54005,0.191], + [54007,0.224], + [54009,0.228], + [54011,0.182], + [54013,0.235], + [54015,0.201], + [54017,0.206], + [54019,0.204], + [54021,0.166], + [54023,0.239], + [54025,0.226], + [54027,0.218], + [54029,0.226], + [54031,0.219], + [54033,0.19], + [54035,0.199], + [54037,0.155], + [54039,0.2], + [54041,0.202], + [54043,0.187], + [54045,0.194], + [54047,0.208], + [54049,0.191], + [54051,0.214], + [54053,0.204], + [54055,0.213], + [54057,0.213], + [54059,0.181], + [54061,0.122], + [54063,0.248], + [54065,0.228], + [54067,0.218], + [54069,0.212], + [54071,0.265], + [54073,0.186], + [54075,0.248], + [54077,0.195], + [54079,0.179], + [54081,0.2], + [54083,0.211], + [54085,0.229], + [54087,0.213], + [54089,0.242], + [54091,0.198], + [54093,0.253], + [54095,0.218], + [54097,0.198], + [54099,0.204], + [54101,0.227], + [54103,0.228], + [54105,0.196], + [54107,0.199], + [54109,0.208], + [55001,0.287], + [55003,0.189], + [55005,0.214], + [55007,0.269], + [55009,0.144], + [55011,0.216], + [55013,0.28], + [55015,0.143], + [55017,0.175], + [55019,0.164], + [55021,0.174], + [55023,0.226], + [55025,0.132], + [55027,0.172], + [55029,0.29], + [55031,0.18], + [55033,0.152], + [55035,0.151], + [55037,0.256], + [55039,0.179], + [55041,0.228], + [55043,0.169], + [55045,0.181], + [55047,0.216], + [55049,0.18], + [55051,0.301], + [55053,0.185], + [55055,0.164], + [55057,0.201], + [55059,0.136], + [55061,0.198], + [55063,0.158], + [55065,0.182], + [55067,0.233], + [55069,0.21], + [55071,0.199], + [55073,0.171], + [55075,0.232], + [55077,0.241], + [55078,0.13], + [55079,0.132], + [55081,0.165], + [55083,0.201], + [55085,0.256], + [55087,0.143], + [55089,0.192], + [55091,0.219], + [55093,0.143], + [55095,0.201], + [55097,0.161], + [55099,0.251], + [55101,0.161], + [55103,0.22], + [55105,0.161], + [55107,0.237], + [55109,0.136], + [55111,0.18], + [55113,0.253], + [55115,0.207], + [55117,0.175], + [55119,0.188], + [55121,0.177], + [55123,0.19], + [55125,0.305], + [55127,0.171], + [55129,0.257], + [55131,0.175], + [55133,0.181], + [55135,0.204], + [55137,0.238], + [55139,0.159], + [55141,0.201], + [56001,0.113], + [56003,0.21], + [56005,0.092], + [56007,0.163], + [56009,0.166], + [56011,0.191], + [56013,0.179], + [56015,0.216], + [56017,0.24], + [56019,0.229], + [56021,0.155], + [56023,0.167], + [56025,0.144], + [56027,0.228], + [56029,0.222], + [56031,0.239], + [56033,0.205], + [56035,0.178], + [56037,0.114], + [56039,0.14], + [56041,0.13], + [56043,0.211], + [56045,0.194] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-over85-2019.json b/data/regional/united-states/demographics/age/us-age-over85-2019.json new file mode 100644 index 0000000..65f68a8 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-over85-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Over 85", + "description" : "Percent of the population over age 85.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.over85.2019"], + [1001,0.016], + [1003,0.019], + [1005,0.016], + [1007,0.02], + [1009,0.018], + [1011,0.017], + [1013,0.026], + [1015,0.018], + [1017,0.019], + [1019,0.02], + [1021,0.014], + [1023,0.023], + [1025,0.024], + [1027,0.021], + [1029,0.03], + [1031,0.017], + [1033,0.022], + [1035,0.025], + [1037,0.023], + [1039,0.022], + [1041,0.019], + [1043,0.015], + [1045,0.016], + [1047,0.016], + [1049,0.014], + [1051,0.014], + [1053,0.018], + [1055,0.019], + [1057,0.023], + [1059,0.02], + [1061,0.022], + [1063,0.019], + [1065,0.021], + [1067,0.025], + [1069,0.018], + [1071,0.018], + [1073,0.019], + [1075,0.028], + [1077,0.024], + [1079,0.016], + [1081,0.011], + [1083,0.016], + [1085,0.019], + [1087,0.022], + [1089,0.016], + [1091,0.022], + [1093,0.022], + [1095,0.016], + [1097,0.017], + [1099,0.028], + [1101,0.016], + [1103,0.019], + [1105,0.013], + [1107,0.026], + [1109,0.015], + [1111,0.016], + [1113,0.012], + [1115,0.013], + [1117,0.013], + [1119,0.019], + [1121,0.016], + [1123,0.019], + [1125,0.013], + [1127,0.022], + [1129,0.01], + [1131,0.021], + [1133,0.02], + [2013,0.01], + [2016,0.002], + [2020,0.009], + [2050,0.006], + [2060,0.01], + [2068,0], + [2070,0.008], + [2090,0.006], + [2100,0.006], + [2105,0.007], + [2110,0.013], + [2122,0.015], + [2130,0.014], + [2150,0.005], + [2158,0.002], + [2164,0.006], + [2170,0.009], + [2180,0.003], + [2185,0.004], + [2188,0.005], + [2195,0.014], + [2198,0.007], + [2220,0.017], + [2230,0.005], + [2240,0.004], + [2261,0.005], + [2275,0.017], + [2282,0.008], + [2290,0.012], + [4001,0.013], + [4003,0.022], + [4005,0.01], + [4007,0.029], + [4009,0.017], + [4011,0.008], + [4012,0.028], + [4013,0.017], + [4015,0.028], + [4017,0.017], + [4019,0.022], + [4021,0.015], + [4023,0.02], + [4025,0.032], + [4027,0.019], + [5001,0.023], + [5003,0.026], + [5005,0.034], + [5007,0.015], + [5009,0.028], + [5011,0.021], + [5013,0.019], + [5015,0.021], + [5017,0.027], + [5019,0.024], + [5021,0.023], + [5023,0.031], + [5025,0.022], + [5027,0.026], + [5029,0.029], + [5031,0.014], + [5033,0.017], + [5035,0.013], + [5037,0.012], + [5039,0.024], + [5041,0.024], + [5043,0.018], + [5045,0.013], + [5047,0.024], + [5049,0.033], + [5051,0.029], + [5053,0.011], + [5055,0.015], + [5057,0.024], + [5059,0.016], + [5061,0.022], + [5063,0.023], + [5065,0.026], + [5067,0.024], + [5069,0.023], + [5071,0.017], + [5073,0.02], + [5075,0.027], + [5077,0.03], + [5079,0.017], + [5081,0.013], + [5083,0.019], + [5085,0.012], + [5087,0.017], + [5089,0.021], + [5091,0.016], + [5093,0.015], + [5095,0.027], + [5097,0.027], + [5099,0.015], + [5101,0.022], + [5103,0.025], + [5105,0.02], + [5107,0.025], + [5109,0.017], + [5111,0.018], + [5113,0.021], + [5115,0.019], + [5117,0.028], + [5119,0.021], + [5121,0.023], + [5123,0.013], + [5125,0.016], + [5127,0.015], + [5129,0.027], + [5131,0.017], + [5133,0.015], + [5135,0.029], + [5137,0.023], + [5139,0.018], + [5141,0.037], + [5143,0.013], + [5145,0.018], + [5147,0.024], + [5149,0.021], + [6001,0.017], + [6003,0.022], + [6005,0.033], + [6007,0.023], + [6009,0.03], + [6011,0.015], + [6013,0.02], + [6015,0.022], + [6017,0.021], + [6019,0.016], + [6021,0.02], + [6023,0.021], + [6025,0.017], + [6027,0.029], + [6029,0.012], + [6031,0.01], + [6033,0.02], + [6035,0.015], + [6037,0.018], + [6039,0.015], + [6041,0.025], + [6043,0.023], + [6045,0.021], + [6047,0.012], + [6049,0.023], + [6051,0.004], + [6053,0.019], + [6055,0.024], + [6057,0.033], + [6059,0.019], + [6061,0.023], + [6063,0.021], + [6065,0.017], + [6067,0.018], + [6069,0.015], + [6071,0.012], + [6073,0.018], + [6075,0.025], + [6077,0.015], + [6079,0.024], + [6081,0.023], + [6083,0.023], + [6085,0.018], + [6087,0.016], + [6089,0.023], + [6091,0.014], + [6093,0.023], + [6095,0.018], + [6097,0.022], + [6099,0.015], + [6101,0.02], + [6103,0.024], + [6105,0.022], + [6107,0.014], + [6109,0.03], + [6111,0.02], + [6113,0.017], + [6115,0.012], + [8001,0.01], + [8003,0.012], + [8005,0.015], + [8007,0.01], + [8009,0.04], + [8011,0.026], + [8013,0.016], + [8014,0.013], + [8015,0.027], + [8017,0.029], + [8019,0.009], + [8021,0.013], + [8023,0.016], + [8025,0.018], + [8027,0.015], + [8029,0.028], + [8031,0.015], + [8033,0.035], + [8035,0.01], + [8037,0.003], + [8039,0.013], + [8041,0.013], + [8043,0.021], + [8045,0.014], + [8047,0.015], + [8049,0.017], + [8051,0.013], + [8053,0.023], + [8055,0.037], + [8057,0.008], + [8059,0.019], + [8061,0.03], + [8063,0.029], + [8065,0.013], + [8067,0.016], + [8069,0.017], + [8071,0.024], + [8073,0.031], + [8075,0.031], + [8077,0.025], + [8079,0.024], + [8081,0.008], + [8083,0.026], + [8085,0.019], + [8087,0.015], + [8089,0.023], + [8091,0.024], + [8093,0.012], + [8095,0.022], + [8097,0.012], + [8099,0.023], + [8101,0.022], + [8103,0.02], + [8105,0.022], + [8107,0.012], + [8109,0.013], + [8111,0.02], + [8113,0.004], + [8115,0.05], + [8117,0.002], + [8119,0.009], + [8121,0.025], + [8123,0.012], + [8125,0.031], + [9001,0.024], + [9003,0.026], + [9005,0.03], + [9007,0.029], + [9009,0.026], + [9011,0.022], + [9013,0.019], + [9015,0.022], + [10001,0.016], + [10003,0.018], + [10005,0.024], + [11001,0.016], + [12001,0.018], + [12003,0.014], + [12005,0.019], + [12007,0.019], + [12009,0.031], + [12011,0.024], + [12013,0.029], + [12015,0.054], + [12017,0.043], + [12019,0.012], + [12021,0.043], + [12023,0.02], + [12027,0.021], + [12029,0.021], + [12031,0.015], + [12033,0.018], + [12035,0.029], + [12037,0.026], + [12039,0.018], + [12041,0.028], + [12043,0.027], + [12045,0.019], + [12047,0.015], + [12049,0.018], + [12051,0.016], + [12053,0.034], + [12055,0.048], + [12057,0.016], + [12059,0.018], + [12061,0.048], + [12063,0.021], + [12065,0.026], + [12067,0.009], + [12069,0.029], + [12071,0.033], + [12073,0.014], + [12075,0.026], + [12077,0.014], + [12079,0.019], + [12081,0.034], + [12083,0.032], + [12085,0.05], + [12086,0.023], + [12087,0.02], + [12089,0.017], + [12091,0.017], + [12093,0.025], + [12095,0.013], + [12097,0.013], + [12099,0.04], + [12101,0.025], + [12103,0.037], + [12105,0.021], + [12107,0.02], + [12109,0.021], + [12111,0.028], + [12113,0.014], + [12115,0.055], + [12117,0.021], + [12119,0.044], + [12121,0.021], + [12123,0.012], + [12125,0.012], + [12127,0.032], + [12129,0.012], + [12131,0.018], + [12133,0.018], + [13001,0.016], + [13003,0.009], + [13005,0.01], + [13007,0.017], + [13009,0.015], + [13011,0.012], + [13013,0.01], + [13015,0.012], + [13017,0.018], + [13019,0.019], + [13021,0.02], + [13023,0.017], + [13025,0.011], + [13027,0.013], + [13029,0.011], + [13031,0.01], + [13033,0.015], + [13035,0.01], + [13037,0.018], + [13039,0.007], + [13043,0.019], + [13045,0.011], + [13047,0.013], + [13049,0.013], + [13051,0.017], + [13053,0.002], + [13055,0.018], + [13057,0.009], + [13059,0.01], + [13061,0.029], + [13063,0.007], + [13065,0.013], + [13067,0.011], + [13069,0.011], + [13071,0.013], + [13073,0.012], + [13075,0.014], + [13077,0.011], + [13079,0.01], + [13081,0.019], + [13083,0.022], + [13085,0.016], + [13087,0.014], + [13089,0.013], + [13091,0.011], + [13093,0.021], + [13095,0.016], + [13097,0.011], + [13099,0.033], + [13101,0.028], + [13103,0.009], + [13105,0.024], + [13107,0.012], + [13109,0.017], + [13111,0.026], + [13113,0.018], + [13115,0.02], + [13117,0.009], + [13119,0.02], + [13121,0.012], + [13123,0.016], + [13125,0.017], + [13127,0.025], + [13129,0.013], + [13131,0.016], + [13133,0.021], + [13135,0.008], + [13137,0.013], + [13139,0.013], + [13141,0.019], + [13143,0.014], + [13145,0.013], + [13147,0.022], + [13149,0.021], + [13151,0.011], + [13153,0.014], + [13155,0.016], + [13157,0.012], + [13159,0.016], + [13161,0.011], + [13163,0.018], + [13165,0.017], + [13167,0.027], + [13169,0.016], + [13171,0.019], + [13173,0.028], + [13175,0.017], + [13177,0.008], + [13179,0.006], + [13181,0.01], + [13183,0.005], + [13185,0.013], + [13187,0.013], + [13189,0.016], + [13191,0.013], + [13193,0.018], + [13195,0.017], + [13197,0.013], + [13199,0.021], + [13201,0.024], + [13205,0.015], + [13207,0.019], + [13209,0.01], + [13211,0.014], + [13213,0.009], + [13215,0.017], + [13217,0.012], + [13219,0.013], + [13221,0.013], + [13223,0.008], + [13225,0.02], + [13227,0.012], + [13229,0.011], + [13231,0.017], + [13233,0.013], + [13235,0.012], + [13237,0.012], + [13239,0.023], + [13241,0.028], + [13243,0.05], + [13245,0.013], + [13247,0.013], + [13249,0.017], + [13251,0.018], + [13253,0.031], + [13255,0.016], + [13257,0.019], + [13259,0.024], + [13261,0.021], + [13263,0.016], + [13265,0.038], + [13267,0.014], + [13269,0.032], + [13271,0.023], + [13273,0.025], + [13275,0.02], + [13277,0.015], + [13279,0.024], + [13281,0.044], + [13283,0.016], + [13285,0.016], + [13287,0.019], + [13289,0.01], + [13291,0.03], + [13293,0.017], + [13295,0.018], + [13297,0.016], + [13299,0.022], + [13301,0.028], + [13303,0.02], + [13305,0.014], + [13307,0.012], + [13309,0.009], + [13311,0.021], + [13313,0.014], + [13315,0.019], + [13317,0.03], + [13319,0.026], + [13321,0.014], + [15001,0.023], + [15003,0.029], + [15005,0.061], + [15007,0.023], + [15009,0.02], + [16001,0.014], + [16003,0.019], + [16005,0.015], + [16007,0.025], + [16009,0.02], + [16011,0.016], + [16013,0.019], + [16015,0.023], + [16017,0.019], + [16019,0.015], + [16021,0.023], + [16023,0.04], + [16025,0.012], + [16027,0.013], + [16029,0.017], + [16031,0.017], + [16033,0], + [16035,0.024], + [16037,0.054], + [16039,0.012], + [16041,0.013], + [16043,0.02], + [16045,0.014], + [16047,0.025], + [16049,0.031], + [16051,0.007], + [16053,0.016], + [16055,0.018], + [16057,0.013], + [16059,0.044], + [16061,0.015], + [16063,0.022], + [16065,0.009], + [16067,0.022], + [16069,0.031], + [16071,0.031], + [16073,0.022], + [16075,0.013], + [16077,0.016], + [16079,0.023], + [16081,0.011], + [16083,0.016], + [16085,0.051], + [16087,0.025], + [17001,0.028], + [17003,0.019], + [17005,0.023], + [17007,0.016], + [17009,0.022], + [17011,0.027], + [17013,0.023], + [17015,0.026], + [17017,0.021], + [17019,0.018], + [17021,0.03], + [17023,0.026], + [17025,0.027], + [17027,0.024], + [17029,0.024], + [17031,0.019], + [17033,0.025], + [17035,0.029], + [17037,0.016], + [17039,0.024], + [17041,0.024], + [17043,0.019], + [17045,0.032], + [17047,0.028], + [17049,0.026], + [17051,0.022], + [17053,0.041], + [17055,0.022], + [17057,0.031], + [17059,0.022], + [17061,0.025], + [17063,0.016], + [17065,0.027], + [17067,0.037], + [17069,0.023], + [17071,0.027], + [17073,0.028], + [17075,0.032], + [17077,0.021], + [17079,0.028], + [17081,0.024], + [17083,0.024], + [17085,0.033], + [17087,0.027], + [17089,0.014], + [17091,0.024], + [17093,0.01], + [17095,0.028], + [17097,0.018], + [17099,0.028], + [17101,0.025], + [17103,0.025], + [17105,0.032], + [17107,0.038], + [17109,0.029], + [17111,0.016], + [17113,0.018], + [17115,0.027], + [17117,0.03], + [17119,0.023], + [17121,0.029], + [17123,0.038], + [17125,0.031], + [17127,0.026], + [17129,0.024], + [17131,0.03], + [17133,0.024], + [17135,0.027], + [17137,0.03], + [17139,0.029], + [17141,0.029], + [17143,0.023], + [17145,0.028], + [17147,0.021], + [17149,0.029], + [17151,0.051], + [17153,0.019], + [17155,0.025], + [17157,0.031], + [17159,0.033], + [17161,0.024], + [17163,0.019], + [17165,0.03], + [17167,0.021], + [17169,0.026], + [17171,0.022], + [17173,0.032], + [17175,0.028], + [17177,0.033], + [17179,0.026], + [17181,0.028], + [17183,0.024], + [17185,0.03], + [17187,0.022], + [17189,0.023], + [17191,0.031], + [17193,0.036], + [17195,0.032], + [17197,0.014], + [17199,0.02], + [17201,0.023], + [17203,0.027], + [18001,0.024], + [18003,0.018], + [18005,0.018], + [18007,0.019], + [18009,0.029], + [18011,0.016], + [18013,0.017], + [18015,0.027], + [18017,0.024], + [18019,0.015], + [18021,0.021], + [18023,0.023], + [18025,0.017], + [18027,0.02], + [18029,0.017], + [18031,0.015], + [18033,0.021], + [18035,0.022], + [18037,0.018], + [18039,0.02], + [18041,0.026], + [18043,0.021], + [18045,0.022], + [18047,0.017], + [18049,0.021], + [18051,0.022], + [18053,0.025], + [18055,0.019], + [18057,0.014], + [18059,0.015], + [18061,0.014], + [18063,0.016], + [18065,0.02], + [18067,0.026], + [18069,0.02], + [18071,0.023], + [18073,0.017], + [18075,0.02], + [18077,0.018], + [18079,0.012], + [18081,0.014], + [18083,0.017], + [18085,0.015], + [18087,0.012], + [18089,0.021], + [18091,0.017], + [18093,0.023], + [18095,0.023], + [18097,0.016], + [18099,0.025], + [18101,0.025], + [18103,0.019], + [18105,0.018], + [18107,0.017], + [18109,0.017], + [18111,0.017], + [18113,0.018], + [18115,0.014], + [18117,0.021], + [18119,0.017], + [18121,0.016], + [18123,0.024], + [18125,0.023], + [18127,0.019], + [18129,0.021], + [18131,0.021], + [18133,0.019], + [18135,0.028], + [18137,0.02], + [18139,0.019], + [18141,0.024], + [18143,0.023], + [18145,0.024], + [18147,0.025], + [18149,0.017], + [18151,0.021], + [18153,0.021], + [18155,0.015], + [18157,0.014], + [18159,0.026], + [18161,0.017], + [18163,0.024], + [18165,0.023], + [18167,0.022], + [18169,0.03], + [18171,0.015], + [18173,0.018], + [18175,0.015], + [18177,0.027], + [18179,0.032], + [18181,0.027], + [18183,0.024], + [19001,0.04], + [19003,0.032], + [19005,0.035], + [19007,0.036], + [19009,0.048], + [19011,0.025], + [19013,0.022], + [19015,0.026], + [19017,0.027], + [19019,0.026], + [19021,0.031], + [19023,0.033], + [19025,0.042], + [19027,0.041], + [19029,0.04], + [19031,0.029], + [19033,0.035], + [19035,0.05], + [19037,0.025], + [19039,0.023], + [19041,0.039], + [19043,0.035], + [19045,0.029], + [19047,0.022], + [19049,0.016], + [19051,0.028], + [19053,0.032], + [19055,0.032], + [19057,0.03], + [19059,0.037], + [19061,0.025], + [19063,0.034], + [19065,0.033], + [19067,0.038], + [19069,0.028], + [19071,0.032], + [19073,0.039], + [19075,0.031], + [19077,0.027], + [19079,0.042], + [19081,0.041], + [19083,0.039], + [19085,0.025], + [19087,0.029], + [19089,0.038], + [19091,0.034], + [19093,0.033], + [19095,0.027], + [19097,0.031], + [19099,0.023], + [19101,0.025], + [19103,0.015], + [19105,0.034], + [19107,0.032], + [19109,0.041], + [19111,0.027], + [19113,0.022], + [19115,0.023], + [19117,0.029], + [19119,0.034], + [19121,0.023], + [19123,0.029], + [19125,0.027], + [19127,0.024], + [19129,0.024], + [19131,0.041], + [19133,0.037], + [19135,0.027], + [19137,0.029], + [19139,0.024], + [19141,0.046], + [19143,0.048], + [19145,0.035], + [19147,0.043], + [19149,0.036], + [19151,0.036], + [19153,0.015], + [19155,0.024], + [19157,0.029], + [19159,0.049], + [19161,0.036], + [19163,0.021], + [19165,0.044], + [19167,0.024], + [19169,0.017], + [19171,0.032], + [19173,0.037], + [19175,0.034], + [19177,0.024], + [19179,0.022], + [19181,0.018], + [19183,0.034], + [19185,0.032], + [19187,0.029], + [19189,0.03], + [19191,0.032], + [19193,0.02], + [19195,0.032], + [19197,0.044], + [20001,0.033], + [20003,0.021], + [20005,0.028], + [20007,0.027], + [20009,0.03], + [20011,0.032], + [20013,0.031], + [20015,0.019], + [20017,0.032], + [20019,0.023], + [20021,0.025], + [20023,0.06], + [20025,0.027], + [20027,0.043], + [20029,0.03], + [20031,0.032], + [20033,0.037], + [20035,0.03], + [20037,0.021], + [20039,0.051], + [20041,0.024], + [20043,0.032], + [20045,0.014], + [20047,0.036], + [20049,0.031], + [20051,0.018], + [20053,0.031], + [20055,0.016], + [20057,0.016], + [20059,0.02], + [20061,0.01], + [20063,0.043], + [20065,0.054], + [20067,0.018], + [20069,0.018], + [20071,0.049], + [20073,0.03], + [20075,0.027], + [20077,0.041], + [20079,0.035], + [20081,0.006], + [20083,0.035], + [20085,0.017], + [20087,0.022], + [20089,0.041], + [20091,0.019], + [20093,0.009], + [20095,0.03], + [20097,0.042], + [20099,0.026], + [20101,0.034], + [20103,0.013], + [20105,0.043], + [20107,0.031], + [20109,0.051], + [20111,0.018], + [20113,0.046], + [20115,0.038], + [20117,0.043], + [20119,0.032], + [20121,0.019], + [20123,0.041], + [20125,0.028], + [20127,0.044], + [20129,0.03], + [20131,0.046], + [20133,0.033], + [20135,0.045], + [20137,0.057], + [20139,0.022], + [20141,0.05], + [20143,0.027], + [20145,0.011], + [20147,0.029], + [20149,0.019], + [20151,0.023], + [20153,0.034], + [20155,0.028], + [20157,0.051], + [20159,0.03], + [20161,0.016], + [20163,0.036], + [20165,0.052], + [20167,0.032], + [20169,0.023], + [20171,0.036], + [20173,0.018], + [20175,0.013], + [20177,0.023], + [20179,0.037], + [20181,0.03], + [20183,0.053], + [20185,0.033], + [20187,0.023], + [20189,0.02], + [20191,0.03], + [20193,0.019], + [20195,0.06], + [20197,0.026], + [20199,0.048], + [20201,0.044], + [20203,0.033], + [20205,0.031], + [20207,0.037], + [20209,0.014], + [21001,0.013], + [21003,0.021], + [21005,0.014], + [21007,0.024], + [21009,0.022], + [21011,0.02], + [21013,0.016], + [21015,0.013], + [21017,0.015], + [21019,0.026], + [21021,0.023], + [21023,0.023], + [21025,0.015], + [21027,0.016], + [21029,0.016], + [21031,0.022], + [21033,0.031], + [21035,0.02], + [21037,0.018], + [21039,0.026], + [21041,0.019], + [21043,0.019], + [21045,0.02], + [21047,0.014], + [21049,0.019], + [21051,0.01], + [21053,0.022], + [21055,0.021], + [21057,0.021], + [21059,0.02], + [21061,0.021], + [21063,0.015], + [21065,0.018], + [21067,0.015], + [21069,0.018], + [21071,0.014], + [21073,0.018], + [21075,0.02], + [21077,0.011], + [21079,0.017], + [21081,0.01], + [21083,0.02], + [21085,0.016], + [21087,0.02], + [21089,0.02], + [21091,0.015], + [21093,0.015], + [21095,0.017], + [21097,0.015], + [21099,0.017], + [21101,0.021], + [21103,0.017], + [21105,0.041], + [21107,0.013], + [21109,0.009], + [21111,0.02], + [21113,0.014], + [21115,0.018], + [21117,0.016], + [21119,0.013], + [21121,0.015], + [21123,0.015], + [21125,0.013], + [21127,0.016], + [21129,0.016], + [21131,0.015], + [21133,0.01], + [21135,0.018], + [21137,0.014], + [21139,0.019], + [21141,0.017], + [21143,0.02], + [21145,0.027], + [21147,0.007], + [21149,0.018], + [21151,0.016], + [21153,0.023], + [21155,0.017], + [21157,0.024], + [21159,0.016], + [21161,0.024], + [21163,0.008], + [21165,0.007], + [21167,0.019], + [21169,0.011], + [21171,0.02], + [21173,0.013], + [21175,0.014], + [21177,0.016], + [21179,0.019], + [21181,0.016], + [21183,0.016], + [21185,0.01], + [21187,0.019], + [21189,0.021], + [21191,0.017], + [21193,0.013], + [21195,0.016], + [21197,0.013], + [21199,0.022], + [21201,0.023], + [21203,0.021], + [21205,0.013], + [21207,0.018], + [21209,0.012], + [21211,0.015], + [21213,0.014], + [21215,0.01], + [21217,0.023], + [21219,0.015], + [21221,0.019], + [21223,0.018], + [21225,0.017], + [21227,0.011], + [21229,0.018], + [21231,0.019], + [21233,0.017], + [21235,0.018], + [21237,0.018], + [21239,0.019], + [22001,0.017], + [22003,0.013], + [22005,0.011], + [22007,0.019], + [22009,0.017], + [22011,0.017], + [22013,0.023], + [22015,0.015], + [22017,0.022], + [22019,0.016], + [22021,0.016], + [22023,0.02], + [22025,0.016], + [22027,0.022], + [22029,0.015], + [22031,0.017], + [22033,0.015], + [22035,0.01], + [22037,0.012], + [22039,0.012], + [22041,0.013], + [22043,0.011], + [22045,0.017], + [22047,0.015], + [22049,0.018], + [22051,0.02], + [22053,0.023], + [22055,0.015], + [22057,0.016], + [22059,0.016], + [22061,0.016], + [22063,0.012], + [22065,0.016], + [22067,0.018], + [22069,0.018], + [22071,0.017], + [22073,0.017], + [22075,0.014], + [22077,0.024], + [22079,0.018], + [22081,0.029], + [22083,0.022], + [22085,0.018], + [22087,0.009], + [22089,0.013], + [22091,0.024], + [22093,0.015], + [22095,0.014], + [22097,0.018], + [22099,0.018], + [22101,0.019], + [22103,0.016], + [22105,0.01], + [22107,0.026], + [22109,0.015], + [22111,0.021], + [22113,0.021], + [22115,0.011], + [22117,0.012], + [22119,0.023], + [22121,0.009], + [22123,0.022], + [22125,0.007], + [22127,0.022], + [23001,0.021], + [23003,0.034], + [23005,0.024], + [23007,0.03], + [23009,0.029], + [23011,0.026], + [23013,0.031], + [23015,0.032], + [23017,0.027], + [23019,0.021], + [23021,0.034], + [23023,0.027], + [23025,0.022], + [23027,0.022], + [23029,0.025], + [23031,0.027], + [24001,0.027], + [24003,0.016], + [24005,0.025], + [24009,0.016], + [24011,0.019], + [24013,0.022], + [24015,0.015], + [24017,0.012], + [24019,0.021], + [24021,0.018], + [24023,0.025], + [24025,0.018], + [24027,0.015], + [24029,0.038], + [24031,0.02], + [24033,0.012], + [24035,0.019], + [24037,0.013], + [24039,0.018], + [24041,0.041], + [24043,0.021], + [24045,0.016], + [24047,0.029], + [24510,0.017], + [25001,0.042], + [25003,0.031], + [25005,0.025], + [25007,0.023], + [25009,0.026], + [25011,0.024], + [25013,0.024], + [25015,0.021], + [25017,0.022], + [25019,0.019], + [25021,0.025], + [25023,0.021], + [25025,0.016], + [25027,0.021], + [26001,0.039], + [26003,0.036], + [26005,0.016], + [26007,0.036], + [26009,0.027], + [26011,0.021], + [26013,0.021], + [26015,0.024], + [26017,0.023], + [26019,0.029], + [26021,0.028], + [26023,0.017], + [26025,0.022], + [26027,0.017], + [26029,0.025], + [26031,0.028], + [26033,0.022], + [26035,0.023], + [26037,0.018], + [26039,0.02], + [26041,0.028], + [26043,0.028], + [26045,0.019], + [26047,0.024], + [26049,0.02], + [26051,0.023], + [26053,0.045], + [26055,0.031], + [26057,0.026], + [26059,0.021], + [26061,0.024], + [26063,0.035], + [26065,0.017], + [26067,0.017], + [26069,0.03], + [26071,0.047], + [26073,0.016], + [26075,0.021], + [26077,0.018], + [26079,0.018], + [26081,0.018], + [26083,0.026], + [26085,0.023], + [26087,0.016], + [26089,0.034], + [26091,0.021], + [26093,0.015], + [26095,0.031], + [26097,0.024], + [26099,0.022], + [26101,0.03], + [26103,0.023], + [26105,0.019], + [26107,0.018], + [26109,0.03], + [26111,0.028], + [26113,0.014], + [26115,0.02], + [26117,0.018], + [26119,0.03], + [26121,0.02], + [26123,0.019], + [26125,0.021], + [26127,0.02], + [26129,0.027], + [26131,0.034], + [26133,0.022], + [26135,0.021], + [26137,0.025], + [26139,0.021], + [26141,0.035], + [26143,0.03], + [26145,0.025], + [26147,0.022], + [26149,0.019], + [26151,0.023], + [26153,0.032], + [26155,0.019], + [26157,0.021], + [26159,0.018], + [26161,0.016], + [26163,0.02], + [26165,0.023], + [27001,0.031], + [27003,0.013], + [27005,0.023], + [27007,0.018], + [27009,0.024], + [27011,0.041], + [27013,0.019], + [27015,0.033], + [27017,0.026], + [27019,0.013], + [27021,0.019], + [27023,0.044], + [27025,0.018], + [27027,0.021], + [27029,0.03], + [27031,0.026], + [27033,0.044], + [27035,0.026], + [27037,0.016], + [27039,0.019], + [27041,0.03], + [27043,0.042], + [27045,0.036], + [27047,0.036], + [27049,0.031], + [27051,0.033], + [27053,0.019], + [27055,0.03], + [27057,0.026], + [27059,0.019], + [27061,0.029], + [27063,0.035], + [27065,0.024], + [27067,0.027], + [27069,0.044], + [27071,0.043], + [27073,0.046], + [27075,0.036], + [27077,0.032], + [27079,0.021], + [27081,0.055], + [27083,0.027], + [27085,0.024], + [27087,0.019], + [27089,0.031], + [27091,0.042], + [27093,0.027], + [27095,0.023], + [27097,0.028], + [27099,0.032], + [27101,0.042], + [27103,0.023], + [27105,0.03], + [27107,0.039], + [27109,0.022], + [27111,0.034], + [27113,0.022], + [27115,0.019], + [27117,0.041], + [27119,0.029], + [27121,0.036], + [27123,0.021], + [27125,0.035], + [27127,0.039], + [27129,0.037], + [27131,0.02], + [27133,0.04], + [27135,0.023], + [27137,0.026], + [27139,0.013], + [27141,0.012], + [27143,0.029], + [27145,0.021], + [27147,0.025], + [27149,0.037], + [27151,0.038], + [27153,0.025], + [27155,0.06], + [27157,0.022], + [27159,0.033], + [27161,0.026], + [27163,0.016], + [27165,0.043], + [27167,0.042], + [27169,0.019], + [27171,0.014], + [27173,0.035], + [28001,0.02], + [28003,0.02], + [28005,0.025], + [28007,0.022], + [28009,0.018], + [28011,0.017], + [28013,0.024], + [28015,0.031], + [28017,0.018], + [28019,0.023], + [28021,0.017], + [28023,0.019], + [28025,0.03], + [28027,0.02], + [28029,0.018], + [28031,0.021], + [28033,0.011], + [28035,0.018], + [28037,0.016], + [28039,0.016], + [28041,0.012], + [28043,0.024], + [28045,0.017], + [28047,0.014], + [28049,0.018], + [28051,0.016], + [28053,0.022], + [28055,0.01], + [28057,0.023], + [28059,0.014], + [28061,0.016], + [28063,0.023], + [28065,0.018], + [28067,0.02], + [28069,0.01], + [28071,0.015], + [28073,0.013], + [28075,0.023], + [28077,0.017], + [28079,0.015], + [28081,0.015], + [28083,0.019], + [28085,0.013], + [28087,0.016], + [28089,0.016], + [28091,0.025], + [28093,0.011], + [28095,0.021], + [28097,0.021], + [28099,0.016], + [28101,0.02], + [28103,0.026], + [28105,0.012], + [28107,0.012], + [28109,0.021], + [28111,0.015], + [28113,0.017], + [28115,0.023], + [28117,0.019], + [28119,0.018], + [28121,0.015], + [28123,0.014], + [28125,0.025], + [28127,0.019], + [28129,0.019], + [28131,0.01], + [28133,0.015], + [28135,0.016], + [28137,0.018], + [28139,0.015], + [28141,0.022], + [28143,0.008], + [28145,0.015], + [28147,0.019], + [28149,0.018], + [28151,0.015], + [28153,0.015], + [28155,0.02], + [28157,0.017], + [28159,0.032], + [28161,0.014], + [28163,0.019], + [29001,0.024], + [29003,0.024], + [29005,0.041], + [29007,0.023], + [29009,0.02], + [29011,0.025], + [29013,0.02], + [29015,0.029], + [29017,0.018], + [29019,0.013], + [29021,0.02], + [29023,0.021], + [29025,0.026], + [29027,0.014], + [29029,0.027], + [29031,0.025], + [29033,0.027], + [29035,0.007], + [29037,0.02], + [29039,0.023], + [29041,0.04], + [29043,0.015], + [29045,0.019], + [29047,0.017], + [29049,0.018], + [29051,0.018], + [29053,0.024], + [29055,0.019], + [29057,0.028], + [29059,0.028], + [29061,0.022], + [29063,0.022], + [29065,0.025], + [29067,0.029], + [29069,0.018], + [29071,0.018], + [29073,0.026], + [29075,0.036], + [29077,0.021], + [29079,0.04], + [29081,0.032], + [29083,0.02], + [29085,0.029], + [29087,0.041], + [29089,0.022], + [29091,0.027], + [29093,0.028], + [29095,0.018], + [29097,0.017], + [29099,0.013], + [29101,0.016], + [29103,0.029], + [29105,0.016], + [29107,0.02], + [29109,0.026], + [29111,0.028], + [29113,0.017], + [29115,0.023], + [29117,0.033], + [29119,0.018], + [29121,0.035], + [29123,0.023], + [29125,0.031], + [29127,0.024], + [29129,0.052], + [29131,0.026], + [29133,0.017], + [29135,0.02], + [29137,0.025], + [29139,0.024], + [29141,0.03], + [29143,0.024], + [29145,0.02], + [29147,0.019], + [29149,0.024], + [29151,0.027], + [29153,0.02], + [29155,0.021], + [29157,0.025], + [29159,0.024], + [29161,0.019], + [29163,0.019], + [29165,0.015], + [29167,0.02], + [29169,0.012], + [29171,0.027], + [29173,0.014], + [29175,0.019], + [29177,0.018], + [29179,0.027], + [29181,0.018], + [29183,0.016], + [29185,0.031], + [29186,0.024], + [29187,0.017], + [29189,0.027], + [29195,0.031], + [29197,0.018], + [29199,0.036], + [29201,0.022], + [29203,0.019], + [29205,0.027], + [29207,0.022], + [29209,0.033], + [29211,0.034], + [29213,0.024], + [29215,0.024], + [29217,0.02], + [29219,0.011], + [29221,0.012], + [29223,0.027], + [29225,0.017], + [29227,0.061], + [29229,0.02], + [29510,0.016], + [30001,0.024], + [30003,0.011], + [30005,0.021], + [30007,0.018], + [30009,0.034], + [30011,0.027], + [30013,0.026], + [30015,0.029], + [30017,0.025], + [30019,0.058], + [30021,0.014], + [30023,0.02], + [30025,0.036], + [30027,0.035], + [30029,0.017], + [30031,0.011], + [30033,0.025], + [30035,0.013], + [30037,0.034], + [30039,0.034], + [30041,0.015], + [30043,0.016], + [30045,0.017], + [30047,0.016], + [30049,0.022], + [30051,0.061], + [30053,0.026], + [30055,0.045], + [30057,0.035], + [30059,0.042], + [30061,0.019], + [30063,0.014], + [30065,0.02], + [30067,0.026], + [30069,0.022], + [30071,0.022], + [30073,0.036], + [30075,0.044], + [30077,0.014], + [30079,0.034], + [30081,0.022], + [30083,0.023], + [30085,0.012], + [30087,0.01], + [30089,0.017], + [30091,0.039], + [30093,0.019], + [30095,0.019], + [30097,0.036], + [30099,0.027], + [30101,0.027], + [30103,0.015], + [30105,0.019], + [30107,0.024], + [30109,0.045], + [30111,0.023], + [31001,0.027], + [31003,0.043], + [31005,0.016], + [31007,0.018], + [31009,0.04], + [31011,0.046], + [31013,0.023], + [31015,0.047], + [31017,0.033], + [31019,0.019], + [31021,0.036], + [31023,0.032], + [31025,0.019], + [31027,0.046], + [31029,0.045], + [31031,0.034], + [31033,0.034], + [31035,0.032], + [31037,0.019], + [31039,0.038], + [31041,0.032], + [31043,0.017], + [31045,0.027], + [31047,0.026], + [31049,0.038], + [31051,0.029], + [31053,0.031], + [31055,0.016], + [31057,0.055], + [31059,0.043], + [31061,0.045], + [31063,0.023], + [31065,0.043], + [31067,0.038], + [31069,0.032], + [31071,0.042], + [31073,0.027], + [31075,0.037], + [31077,0.051], + [31079,0.025], + [31081,0.028], + [31083,0.041], + [31085,0.028], + [31087,0.033], + [31089,0.04], + [31091,0.062], + [31093,0.034], + [31095,0.039], + [31097,0.027], + [31099,0.036], + [31101,0.028], + [31103,0.024], + [31105,0.025], + [31107,0.04], + [31109,0.017], + [31111,0.028], + [31113,0.023], + [31115,0.012], + [31117,0.048], + [31119,0.028], + [31121,0.026], + [31123,0.029], + [31125,0.041], + [31127,0.031], + [31129,0.037], + [31131,0.036], + [31133,0.054], + [31135,0.04], + [31137,0.035], + [31139,0.021], + [31141,0.022], + [31143,0.036], + [31145,0.033], + [31147,0.042], + [31149,0.065], + [31151,0.024], + [31153,0.012], + [31155,0.027], + [31157,0.029], + [31159,0.021], + [31161,0.048], + [31163,0.052], + [31165,0.036], + [31167,0.03], + [31169,0.057], + [31171,0.002], + [31173,0.016], + [31175,0.035], + [31177,0.024], + [31179,0.026], + [31181,0.031], + [31183,0.008], + [31185,0.031], + [32001,0.016], + [32003,0.013], + [32005,0.024], + [32007,0.008], + [32009,0.02], + [32011,0.029], + [32013,0.008], + [32015,0.026], + [32017,0.016], + [32019,0.013], + [32021,0.015], + [32023,0.026], + [32027,0.008], + [32029,0.004], + [32031,0.014], + [32033,0.015], + [32510,0.025], + [33001,0.027], + [33003,0.036], + [33005,0.026], + [33007,0.03], + [33009,0.027], + [33011,0.019], + [33013,0.026], + [33015,0.019], + [33017,0.018], + [33019,0.023], + [34001,0.021], + [34003,0.027], + [34005,0.023], + [34007,0.02], + [34009,0.033], + [34011,0.02], + [34013,0.019], + [34015,0.019], + [34017,0.015], + [34019,0.02], + [34021,0.023], + [34023,0.022], + [34025,0.023], + [34027,0.025], + [34029,0.032], + [34031,0.019], + [34033,0.026], + [34035,0.023], + [34037,0.017], + [34039,0.021], + [34041,0.026], + [35001,0.018], + [35003,0.068], + [35005,0.023], + [35006,0.018], + [35007,0.029], + [35009,0.016], + [35011,0.025], + [35013,0.015], + [35015,0.021], + [35017,0.033], + [35019,0.024], + [35021,0.057], + [35023,0.026], + [35025,0.013], + [35027,0.026], + [35028,0.023], + [35029,0.018], + [35031,0.014], + [35033,0.044], + [35035,0.017], + [35037,0.024], + [35039,0.023], + [35041,0.018], + [35043,0.016], + [35045,0.018], + [35047,0.024], + [35049,0.022], + [35051,0.04], + [35053,0.029], + [35055,0.019], + [35057,0.008], + [35059,0.035], + [35061,0.017], + [36001,0.025], + [36003,0.023], + [36005,0.016], + [36007,0.03], + [36009,0.023], + [36011,0.027], + [36013,0.028], + [36015,0.03], + [36017,0.021], + [36019,0.019], + [36021,0.027], + [36023,0.021], + [36025,0.027], + [36027,0.022], + [36029,0.027], + [36031,0.029], + [36033,0.015], + [36035,0.027], + [36037,0.026], + [36039,0.028], + [36041,0.034], + [36043,0.027], + [36045,0.016], + [36047,0.018], + [36049,0.027], + [36051,0.021], + [36053,0.022], + [36055,0.024], + [36057,0.029], + [36059,0.03], + [36061,0.024], + [36063,0.025], + [36065,0.029], + [36067,0.026], + [36069,0.024], + [36071,0.018], + [36073,0.022], + [36075,0.018], + [36077,0.026], + [36079,0.016], + [36081,0.021], + [36083,0.022], + [36085,0.019], + [36087,0.022], + [36089,0.023], + [36091,0.019], + [36093,0.028], + [36095,0.022], + [36097,0.025], + [36099,0.022], + [36101,0.022], + [36103,0.022], + [36105,0.015], + [36107,0.023], + [36109,0.019], + [36111,0.023], + [36113,0.029], + [36115,0.023], + [36117,0.021], + [36119,0.027], + [36121,0.018], + [36123,0.022], + [37001,0.021], + [37003,0.023], + [37005,0.026], + [37007,0.021], + [37009,0.024], + [37011,0.022], + [37013,0.026], + [37015,0.028], + [37017,0.02], + [37019,0.019], + [37021,0.026], + [37023,0.023], + [37025,0.014], + [37027,0.02], + [37029,0.02], + [37031,0.023], + [37033,0.024], + [37035,0.017], + [37037,0.034], + [37039,0.027], + [37041,0.038], + [37043,0.017], + [37045,0.019], + [37047,0.018], + [37049,0.021], + [37051,0.012], + [37053,0.015], + [37055,0.014], + [37057,0.017], + [37059,0.017], + [37061,0.022], + [37063,0.015], + [37065,0.02], + [37067,0.018], + [37069,0.015], + [37071,0.018], + [37073,0.02], + [37075,0.038], + [37077,0.014], + [37079,0.016], + [37081,0.018], + [37083,0.024], + [37085,0.011], + [37087,0.026], + [37089,0.033], + [37091,0.023], + [37093,0.011], + [37095,0.007], + [37097,0.015], + [37099,0.015], + [37101,0.012], + [37103,0.021], + [37105,0.018], + [37107,0.025], + [37109,0.017], + [37111,0.018], + [37113,0.033], + [37115,0.019], + [37117,0.025], + [37119,0.012], + [37121,0.032], + [37123,0.02], + [37125,0.031], + [37127,0.019], + [37129,0.019], + [37131,0.027], + [37133,0.008], + [37135,0.013], + [37137,0.033], + [37139,0.022], + [37141,0.017], + [37143,0.025], + [37145,0.019], + [37147,0.011], + [37149,0.04], + [37151,0.018], + [37153,0.015], + [37155,0.015], + [37157,0.023], + [37159,0.019], + [37161,0.024], + [37163,0.015], + [37165,0.021], + [37167,0.021], + [37169,0.022], + [37171,0.026], + [37173,0.024], + [37175,0.041], + [37177,0.015], + [37179,0.011], + [37181,0.019], + [37183,0.012], + [37185,0.03], + [37187,0.021], + [37189,0.014], + [37191,0.016], + [37193,0.02], + [37195,0.02], + [37197,0.021], + [37199,0.025], + [38001,0.053], + [38003,0.034], + [38005,0.014], + [38007,0.053], + [38009,0.032], + [38011,0.029], + [38013,0.025], + [38015,0.027], + [38017,0.018], + [38019,0.044], + [38021,0.048], + [38023,0.059], + [38025,0.024], + [38027,0.05], + [38029,0.048], + [38031,0.057], + [38033,0.034], + [38035,0.018], + [38037,0.051], + [38039,0.054], + [38041,0.047], + [38043,0.019], + [38045,0.042], + [38047,0.047], + [38049,0.027], + [38051,0.071], + [38053,0.008], + [38055,0.028], + [38057,0.024], + [38059,0.024], + [38061,0.018], + [38063,0.057], + [38065,0.016], + [38067,0.036], + [38069,0.045], + [38071,0.023], + [38073,0.049], + [38075,0.029], + [38077,0.027], + [38079,0.014], + [38081,0.031], + [38083,0.036], + [38085,0.002], + [38087,0.028], + [38089,0.021], + [38091,0.02], + [38093,0.037], + [38095,0.034], + [38097,0.038], + [38099,0.036], + [38101,0.017], + [38103,0.054], + [38105,0.016], + [39001,0.014], + [39003,0.023], + [39005,0.021], + [39007,0.023], + [39009,0.017], + [39011,0.026], + [39013,0.027], + [39015,0.022], + [39017,0.017], + [39019,0.023], + [39021,0.019], + [39023,0.025], + [39025,0.017], + [39027,0.019], + [39029,0.023], + [39031,0.025], + [39033,0.022], + [39035,0.027], + [39037,0.022], + [39039,0.024], + [39041,0.013], + [39043,0.027], + [39045,0.016], + [39047,0.019], + [39049,0.014], + [39051,0.022], + [39053,0.02], + [39055,0.023], + [39057,0.019], + [39059,0.02], + [39061,0.022], + [39063,0.022], + [39065,0.023], + [39067,0.023], + [39069,0.026], + [39071,0.017], + [39073,0.023], + [39075,0.022], + [39077,0.021], + [39079,0.013], + [39081,0.024], + [39083,0.023], + [39085,0.026], + [39087,0.016], + [39089,0.017], + [39091,0.018], + [39093,0.023], + [39095,0.021], + [39097,0.016], + [39099,0.032], + [39101,0.024], + [39103,0.019], + [39105,0.022], + [39107,0.022], + [39109,0.022], + [39111,0.021], + [39113,0.023], + [39115,0.02], + [39117,0.016], + [39119,0.023], + [39121,0.034], + [39123,0.03], + [39125,0.019], + [39127,0.015], + [39129,0.015], + [39131,0.018], + [39133,0.018], + [39135,0.02], + [39137,0.025], + [39139,0.028], + [39141,0.016], + [39143,0.021], + [39145,0.019], + [39147,0.027], + [39149,0.02], + [39151,0.026], + [39153,0.025], + [39155,0.029], + [39157,0.027], + [39159,0.014], + [39161,0.023], + [39163,0.016], + [39165,0.017], + [39167,0.024], + [39169,0.023], + [39171,0.023], + [39173,0.017], + [39175,0.025], + [40001,0.012], + [40003,0.032], + [40005,0.017], + [40007,0.025], + [40009,0.016], + [40011,0.022], + [40013,0.018], + [40015,0.015], + [40017,0.014], + [40019,0.021], + [40021,0.014], + [40023,0.022], + [40025,0.026], + [40027,0.014], + [40029,0.025], + [40031,0.015], + [40033,0.019], + [40035,0.026], + [40037,0.019], + [40039,0.024], + [40041,0.022], + [40043,0.023], + [40045,0.027], + [40047,0.022], + [40049,0.021], + [40051,0.019], + [40053,0.031], + [40055,0.042], + [40057,0.026], + [40059,0.032], + [40061,0.021], + [40063,0.027], + [40065,0.016], + [40067,0.024], + [40069,0.025], + [40071,0.024], + [40073,0.02], + [40075,0.018], + [40077,0.023], + [40079,0.017], + [40081,0.015], + [40083,0.014], + [40085,0.02], + [40087,0.013], + [40089,0.017], + [40091,0.029], + [40093,0.03], + [40095,0.02], + [40097,0.02], + [40099,0.025], + [40101,0.021], + [40103,0.027], + [40105,0.018], + [40107,0.019], + [40109,0.016], + [40111,0.018], + [40113,0.018], + [40115,0.021], + [40117,0.02], + [40119,0.015], + [40121,0.025], + [40123,0.018], + [40125,0.018], + [40127,0.022], + [40129,0.023], + [40131,0.017], + [40133,0.022], + [40135,0.016], + [40137,0.026], + [40139,0.01], + [40141,0.027], + [40143,0.018], + [40145,0.012], + [40147,0.025], + [40149,0.024], + [40151,0.035], + [40153,0.014], + [41001,0.032], + [41003,0.018], + [41005,0.02], + [41007,0.02], + [41009,0.02], + [41011,0.027], + [41013,0.014], + [41015,0.047], + [41017,0.019], + [41019,0.029], + [41021,0.034], + [41023,0.032], + [41025,0.02], + [41027,0.02], + [41029,0.027], + [41031,0.021], + [41033,0.026], + [41035,0.023], + [41037,0.029], + [41039,0.022], + [41041,0.026], + [41043,0.022], + [41045,0.023], + [41047,0.018], + [41049,0.019], + [41051,0.016], + [41053,0.025], + [41055,0.017], + [41057,0.032], + [41059,0.019], + [41061,0.022], + [41063,0.027], + [41065,0.028], + [41067,0.016], + [41069,0.038], + [41071,0.021], + [42001,0.025], + [42003,0.03], + [42005,0.028], + [42007,0.03], + [42009,0.031], + [42011,0.023], + [42013,0.029], + [42015,0.031], + [42017,0.024], + [42019,0.027], + [42021,0.034], + [42023,0.044], + [42025,0.028], + [42027,0.018], + [42029,0.021], + [42031,0.022], + [42033,0.027], + [42035,0.029], + [42037,0.026], + [42039,0.02], + [42041,0.026], + [42043,0.022], + [42045,0.025], + [42047,0.024], + [42049,0.025], + [42051,0.029], + [42053,0.018], + [42055,0.027], + [42057,0.022], + [42059,0.025], + [42061,0.022], + [42063,0.026], + [42065,0.027], + [42067,0.033], + [42069,0.03], + [42071,0.027], + [42073,0.031], + [42075,0.027], + [42077,0.025], + [42079,0.031], + [42081,0.027], + [42083,0.029], + [42085,0.035], + [42087,0.029], + [42089,0.016], + [42091,0.027], + [42093,0.036], + [42095,0.028], + [42097,0.033], + [42099,0.016], + [42101,0.018], + [42103,0.023], + [42105,0.03], + [42107,0.029], + [42109,0.022], + [42111,0.033], + [42113,0.039], + [42115,0.025], + [42117,0.028], + [42119,0.033], + [42121,0.021], + [42123,0.029], + [42125,0.027], + [42127,0.031], + [42129,0.032], + [42131,0.023], + [42133,0.021], + [44001,0.026], + [44003,0.028], + [44005,0.028], + [44007,0.023], + [44009,0.026], + [45001,0.019], + [45003,0.023], + [45005,0.014], + [45007,0.018], + [45009,0.03], + [45011,0.024], + [45013,0.024], + [45015,0.011], + [45017,0.011], + [45019,0.019], + [45021,0.016], + [45023,0.02], + [45025,0.015], + [45027,0.019], + [45029,0.021], + [45031,0.018], + [45033,0.017], + [45035,0.012], + [45037,0.018], + [45039,0.021], + [45041,0.016], + [45043,0.02], + [45045,0.015], + [45047,0.024], + [45049,0.024], + [45051,0.018], + [45053,0.016], + [45055,0.02], + [45057,0.019], + [45059,0.022], + [45061,0.014], + [45063,0.017], + [45065,0.021], + [45067,0.015], + [45069,0.015], + [45071,0.023], + [45073,0.022], + [45075,0.022], + [45077,0.015], + [45079,0.012], + [45081,0.02], + [45083,0.018], + [45085,0.017], + [45087,0.019], + [45089,0.015], + [45091,0.012], + [46003,0.038], + [46005,0.034], + [46007,0.008], + [46009,0.044], + [46011,0.012], + [46013,0.025], + [46015,0.037], + [46017,0.004], + [46019,0.035], + [46021,0.018], + [46023,0.035], + [46025,0.04], + [46027,0.019], + [46029,0.027], + [46031,0.014], + [46033,0.02], + [46035,0.032], + [46037,0.042], + [46039,0.031], + [46041,0.005], + [46043,0.061], + [46045,0.033], + [46047,0.038], + [46049,0.08], + [46051,0.027], + [46053,0.043], + [46055,0.045], + [46057,0.019], + [46059,0.048], + [46061,0.01], + [46063,0.005], + [46065,0.022], + [46067,0.057], + [46069,0.049], + [46071,0.016], + [46073,0.049], + [46075,0.034], + [46077,0.044], + [46079,0.022], + [46081,0.025], + [46083,0.016], + [46085,0.021], + [46087,0.036], + [46089,0.077], + [46091,0.028], + [46093,0.019], + [46095,0.02], + [46097,0.039], + [46099,0.017], + [46101,0.021], + [46102,0.003], + [46103,0.022], + [46105,0.051], + [46107,0.057], + [46109,0.021], + [46111,0.029], + [46115,0.035], + [46117,0.017], + [46119,0.028], + [46121,0.008], + [46123,0.032], + [46125,0.038], + [46127,0.023], + [46129,0.035], + [46135,0.026], + [46137,0.011], + [47001,0.024], + [47003,0.016], + [47005,0.03], + [47007,0.015], + [47009,0.02], + [47011,0.018], + [47013,0.017], + [47015,0.025], + [47017,0.027], + [47019,0.024], + [47021,0.011], + [47023,0.018], + [47025,0.023], + [47027,0.008], + [47029,0.019], + [47031,0.018], + [47033,0.026], + [47035,0.025], + [47037,0.013], + [47039,0.024], + [47041,0.021], + [47043,0.017], + [47045,0.023], + [47047,0.017], + [47049,0.019], + [47051,0.021], + [47053,0.023], + [47055,0.021], + [47057,0.015], + [47059,0.019], + [47061,0.009], + [47063,0.017], + [47065,0.023], + [47067,0.02], + [47069,0.02], + [47071,0.023], + [47073,0.021], + [47075,0.025], + [47077,0.017], + [47079,0.024], + [47081,0.014], + [47083,0.017], + [47085,0.017], + [47087,0.016], + [47089,0.02], + [47091,0.022], + [47093,0.019], + [47095,0.017], + [47097,0.013], + [47099,0.021], + [47101,0.012], + [47103,0.02], + [47105,0.023], + [47107,0.02], + [47109,0.021], + [47111,0.017], + [47113,0.018], + [47115,0.015], + [47117,0.016], + [47119,0.016], + [47121,0.014], + [47123,0.016], + [47125,0.01], + [47127,0.023], + [47129,0.016], + [47131,0.027], + [47133,0.021], + [47135,0.021], + [47137,0.015], + [47139,0.016], + [47141,0.019], + [47143,0.019], + [47145,0.021], + [47147,0.011], + [47149,0.01], + [47151,0.017], + [47153,0.011], + [47155,0.022], + [47157,0.015], + [47159,0.016], + [47161,0.014], + [47163,0.025], + [47165,0.017], + [47167,0.013], + [47169,0.016], + [47171,0.023], + [47173,0.015], + [47175,0.016], + [47177,0.02], + [47179,0.02], + [47181,0.019], + [47183,0.025], + [47185,0.022], + [47187,0.012], + [47189,0.013], + [48001,0.015], + [48003,0.012], + [48005,0.02], + [48007,0.031], + [48009,0.023], + [48011,0.017], + [48013,0.015], + [48015,0.021], + [48017,0.012], + [48019,0.02], + [48021,0.013], + [48023,0.027], + [48025,0.014], + [48027,0.011], + [48029,0.014], + [48031,0.023], + [48033,0.031], + [48035,0.03], + [48037,0.02], + [48039,0.012], + [48041,0.01], + [48043,0.016], + [48045,0.025], + [48047,0.008], + [48049,0.022], + [48051,0.022], + [48053,0.023], + [48055,0.019], + [48057,0.026], + [48059,0.025], + [48061,0.016], + [48063,0.017], + [48065,0.021], + [48067,0.024], + [48069,0.022], + [48071,0.011], + [48073,0.021], + [48075,0.026], + [48077,0.028], + [48079,0.009], + [48081,0.027], + [48083,0.019], + [48085,0.009], + [48087,0.039], + [48089,0.024], + [48091,0.02], + [48093,0.017], + [48095,0.024], + [48097,0.018], + [48099,0.012], + [48101,0.021], + [48103,0.009], + [48105,0.015], + [48107,0.016], + [48109,0.032], + [48111,0.011], + [48113,0.012], + [48115,0.025], + [48117,0.018], + [48119,0.024], + [48121,0.009], + [48123,0.025], + [48125,0.018], + [48127,0.021], + [48129,0.023], + [48131,0.021], + [48133,0.035], + [48135,0.011], + [48137,0.022], + [48139,0.011], + [48141,0.015], + [48143,0.021], + [48145,0.027], + [48147,0.023], + [48149,0.03], + [48151,0.025], + [48153,0.033], + [48155,0.048], + [48157,0.009], + [48159,0.018], + [48161,0.021], + [48163,0.011], + [48165,0.009], + [48167,0.014], + [48169,0.012], + [48171,0.043], + [48173,0.009], + [48175,0.012], + [48177,0.017], + [48179,0.023], + [48181,0.021], + [48183,0.022], + [48185,0.017], + [48187,0.013], + [48189,0.022], + [48191,0.034], + [48193,0.051], + [48195,0.022], + [48197,0.029], + [48199,0.016], + [48201,0.01], + [48203,0.019], + [48205,0.012], + [48207,0.03], + [48209,0.008], + [48211,0.015], + [48213,0.022], + [48215,0.013], + [48217,0.02], + [48219,0.02], + [48221,0.023], + [48223,0.017], + [48225,0.025], + [48227,0.015], + [48229,0.013], + [48231,0.015], + [48233,0.018], + [48235,0.031], + [48237,0.014], + [48239,0.028], + [48241,0.023], + [48243,0.019], + [48245,0.018], + [48247,0.015], + [48249,0.016], + [48251,0.012], + [48253,0.018], + [48255,0.022], + [48257,0.011], + [48259,0.028], + [48261,0.065], + [48263,0.037], + [48265,0.037], + [48267,0.033], + [48269,0], + [48271,0.043], + [48273,0.018], + [48275,0.027], + [48277,0.021], + [48279,0.029], + [48281,0.02], + [48283,0.014], + [48285,0.037], + [48287,0.021], + [48289,0.028], + [48291,0.01], + [48293,0.019], + [48295,0.021], + [48297,0.026], + [48299,0.035], + [48301,0], + [48303,0.014], + [48305,0.022], + [48307,0.036], + [48309,0.019], + [48311,0.03], + [48313,0.018], + [48315,0.014], + [48317,0.007], + [48319,0.016], + [48321,0.024], + [48323,0.011], + [48325,0.02], + [48327,0.03], + [48329,0.015], + [48331,0.025], + [48333,0.053], + [48335,0.019], + [48337,0.023], + [48339,0.012], + [48341,0.015], + [48343,0.029], + [48345,0.028], + [48347,0.015], + [48349,0.019], + [48351,0.017], + [48353,0.025], + [48355,0.015], + [48357,0.013], + [48359,0.011], + [48361,0.016], + [48363,0.022], + [48365,0.022], + [48367,0.014], + [48369,0.013], + [48371,0.018], + [48373,0.016], + [48375,0.017], + [48377,0.011], + [48379,0.015], + [48381,0.015], + [48383,0.019], + [48385,0.019], + [48387,0.023], + [48389,0.017], + [48391,0.025], + [48393,0.029], + [48395,0.027], + [48397,0.011], + [48399,0.029], + [48401,0.018], + [48403,0.031], + [48405,0.025], + [48407,0.02], + [48409,0.014], + [48411,0.024], + [48413,0.026], + [48415,0.022], + [48417,0.021], + [48419,0.02], + [48421,0.012], + [48423,0.018], + [48425,0.024], + [48427,0.012], + [48429,0.033], + [48431,0.016], + [48433,0.039], + [48435,0.032], + [48437,0.031], + [48439,0.012], + [48441,0.018], + [48443,0.017], + [48445,0.016], + [48447,0.031], + [48449,0.013], + [48451,0.021], + [48453,0.01], + [48455,0.027], + [48457,0.024], + [48459,0.015], + [48461,0.019], + [48463,0.013], + [48465,0.023], + [48467,0.019], + [48469,0.021], + [48471,0.017], + [48473,0.012], + [48475,0.015], + [48477,0.035], + [48479,0.012], + [48481,0.023], + [48483,0.026], + [48485,0.02], + [48487,0.016], + [48489,0.015], + [48491,0.012], + [48493,0.021], + [48495,0.014], + [48497,0.015], + [48499,0.029], + [48501,0.012], + [48503,0.032], + [48505,0.018], + [48507,0.018], + [49001,0.015], + [49003,0.015], + [49005,0.01], + [49007,0.017], + [49009,0.016], + [49011,0.01], + [49013,0.012], + [49015,0.018], + [49017,0.031], + [49019,0.019], + [49021,0.008], + [49023,0.015], + [49025,0.026], + [49027,0.024], + [49029,0.008], + [49031,0.033], + [49033,0.024], + [49035,0.011], + [49037,0.017], + [49039,0.014], + [49041,0.016], + [49043,0.007], + [49045,0.007], + [49047,0.014], + [49049,0.008], + [49051,0.009], + [49053,0.024], + [49055,0.016], + [49057,0.013], + [50001,0.025], + [50003,0.033], + [50005,0.021], + [50007,0.019], + [50009,0.028], + [50011,0.02], + [50013,0.011], + [50015,0.021], + [50017,0.021], + [50019,0.024], + [50021,0.025], + [50023,0.022], + [50025,0.026], + [50027,0.023], + [51001,0.03], + [51003,0.025], + [51005,0.034], + [51007,0.025], + [51009,0.023], + [51011,0.022], + [51013,0.013], + [51015,0.021], + [51017,0.028], + [51019,0.022], + [51021,0.024], + [51023,0.021], + [51025,0.031], + [51027,0.015], + [51029,0.017], + [51031,0.027], + [51033,0.016], + [51035,0.023], + [51036,0.021], + [51037,0.031], + [51041,0.015], + [51043,0.035], + [51045,0.003], + [51047,0.014], + [51049,0.027], + [51051,0.027], + [51053,0.013], + [51057,0.024], + [51059,0.014], + [51061,0.018], + [51063,0.028], + [51065,0.019], + [51067,0.019], + [51069,0.019], + [51071,0.035], + [51073,0.016], + [51075,0.021], + [51077,0.024], + [51079,0.013], + [51081,0.009], + [51083,0.034], + [51085,0.02], + [51087,0.022], + [51089,0.026], + [51091,0.025], + [51093,0.016], + [51095,0.03], + [51097,0.015], + [51099,0.016], + [51101,0.017], + [51103,0.054], + [51105,0.019], + [51107,0.009], + [51109,0.016], + [51111,0.029], + [51113,0.02], + [51115,0.03], + [51117,0.031], + [51119,0.03], + [51121,0.013], + [51125,0.02], + [51127,0.01], + [51131,0.045], + [51133,0.037], + [51135,0.028], + [51137,0.016], + [51139,0.016], + [51141,0.028], + [51143,0.019], + [51145,0.016], + [51147,0.026], + [51149,0.008], + [51153,0.008], + [51155,0.018], + [51157,0.032], + [51159,0.027], + [51161,0.024], + [51163,0.034], + [51165,0.028], + [51167,0.022], + [51169,0.027], + [51171,0.027], + [51173,0.023], + [51175,0.018], + [51177,0.013], + [51179,0.008], + [51181,0.027], + [51183,0.018], + [51185,0.022], + [51187,0.015], + [51191,0.023], + [51193,0.026], + [51195,0.021], + [51197,0.026], + [51199,0.018], + [51510,0.015], + [51520,0.031], + [51530,0.019], + [51540,0.015], + [51550,0.013], + [51570,0.031], + [51580,0.026], + [51590,0.032], + [51595,0.039], + [51600,0.021], + [51610,0.01], + [51620,0.028], + [51630,0.012], + [51640,0.042], + [51650,0.02], + [51660,0.015], + [51670,0.023], + [51678,0.02], + [51680,0.023], + [51683,0.01], + [51685,0.008], + [51690,0.028], + [51700,0.015], + [51710,0.014], + [51720,0.012], + [51730,0.021], + [51735,0.022], + [51740,0.02], + [51750,0.015], + [51760,0.018], + [51770,0.027], + [51775,0.031], + [51790,0.038], + [51800,0.016], + [51810,0.016], + [51820,0.025], + [51830,0.014], + [51840,0.02], + [53001,0.012], + [53003,0.021], + [53005,0.016], + [53007,0.025], + [53009,0.033], + [53011,0.017], + [53013,0.03], + [53015,0.022], + [53017,0.02], + [53019,0.028], + [53021,0.009], + [53023,0.027], + [53025,0.014], + [53027,0.024], + [53029,0.022], + [53031,0.029], + [53033,0.017], + [53035,0.016], + [53037,0.016], + [53039,0.014], + [53041,0.023], + [53043,0.022], + [53045,0.021], + [53047,0.017], + [53049,0.026], + [53051,0.023], + [53053,0.015], + [53055,0.023], + [53057,0.022], + [53059,0.016], + [53061,0.015], + [53063,0.018], + [53065,0.02], + [53067,0.017], + [53069,0.024], + [53071,0.03], + [53073,0.02], + [53075,0.013], + [53077,0.017], + [54001,0.019], + [54003,0.012], + [54005,0.017], + [54007,0.023], + [54009,0.022], + [54011,0.022], + [54013,0.021], + [54015,0.011], + [54017,0.013], + [54019,0.026], + [54021,0.015], + [54023,0.028], + [54025,0.028], + [54027,0.026], + [54029,0.035], + [54031,0.024], + [54033,0.025], + [54035,0.03], + [54037,0.012], + [54039,0.025], + [54041,0.027], + [54043,0.015], + [54045,0.022], + [54047,0.019], + [54049,0.028], + [54051,0.025], + [54053,0.021], + [54055,0.027], + [54057,0.023], + [54059,0.012], + [54061,0.013], + [54063,0.031], + [54065,0.017], + [54067,0.024], + [54069,0.035], + [54071,0.041], + [54073,0.029], + [54075,0.026], + [54077,0.021], + [54079,0.018], + [54081,0.024], + [54083,0.025], + [54085,0.023], + [54087,0.019], + [54089,0.028], + [54091,0.028], + [54093,0.026], + [54095,0.019], + [54097,0.022], + [54099,0.026], + [54101,0.028], + [54103,0.024], + [54105,0.009], + [54107,0.024], + [54109,0.025], + [55001,0.025], + [55003,0.019], + [55005,0.027], + [55007,0.02], + [55009,0.018], + [55011,0.028], + [55013,0.023], + [55015,0.016], + [55017,0.025], + [55019,0.025], + [55021,0.023], + [55023,0.036], + [55025,0.016], + [55027,0.027], + [55029,0.031], + [55031,0.019], + [55033,0.02], + [55035,0.02], + [55037,0.033], + [55039,0.026], + [55041,0.024], + [55043,0.026], + [55045,0.027], + [55047,0.029], + [55049,0.022], + [55051,0.037], + [55053,0.02], + [55055,0.018], + [55057,0.023], + [55059,0.018], + [55061,0.024], + [55063,0.024], + [55065,0.028], + [55067,0.032], + [55069,0.024], + [55071,0.027], + [55073,0.025], + [55075,0.031], + [55077,0.028], + [55078,0.007], + [55079,0.02], + [55081,0.022], + [55083,0.019], + [55085,0.032], + [55087,0.018], + [55089,0.025], + [55091,0.026], + [55093,0.017], + [55095,0.024], + [55097,0.018], + [55099,0.031], + [55101,0.02], + [55103,0.032], + [55105,0.019], + [55107,0.031], + [55109,0.014], + [55111,0.025], + [55113,0.02], + [55115,0.022], + [55117,0.024], + [55119,0.025], + [55121,0.024], + [55123,0.028], + [55125,0.03], + [55127,0.021], + [55129,0.027], + [55131,0.023], + [55133,0.024], + [55135,0.033], + [55137,0.028], + [55139,0.022], + [55141,0.03], + [56001,0.012], + [56003,0.019], + [56005,0.005], + [56007,0.012], + [56009,0.018], + [56011,0.017], + [56013,0.014], + [56015,0.021], + [56017,0.034], + [56019,0.01], + [56021,0.02], + [56023,0.024], + [56025,0.02], + [56027,0.023], + [56029,0.021], + [56031,0.021], + [56033,0.026], + [56035,0.019], + [56037,0.011], + [56039,0.015], + [56041,0.015], + [56043,0.023], + [56045,0.021] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-under18-2010.json b/data/regional/united-states/demographics/age/us-age-under18-2010.json new file mode 100644 index 0000000..5300469 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-under18-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Under 18", + "description" : "Percent of the population under age 18.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.under18.2010"], + [1001,0.268], + [1003,0.23], + [1005,0.219], + [1007,0.227], + [1009,0.246], + [1011,0.223], + [1013,0.241], + [1015,0.229], + [1017,0.225], + [1019,0.214], + [1021,0.251], + [1023,0.227], + [1025,0.247], + [1027,0.226], + [1029,0.237], + [1031,0.242], + [1033,0.221], + [1035,0.23], + [1037,0.205], + [1039,0.226], + [1041,0.238], + [1043,0.232], + [1045,0.248], + [1047,0.265], + [1049,0.258], + [1051,0.236], + [1053,0.226], + [1055,0.23], + [1057,0.223], + [1059,0.248], + [1061,0.224], + [1063,0.243], + [1065,0.248], + [1067,0.226], + [1069,0.245], + [1071,0.225], + [1073,0.235], + [1075,0.222], + [1077,0.216], + [1079,0.232], + [1081,0.225], + [1083,0.24], + [1085,0.242], + [1087,0.206], + [1089,0.237], + [1091,0.247], + [1093,0.217], + [1095,0.25], + [1097,0.251], + [1099,0.253], + [1101,0.245], + [1103,0.24], + [1105,0.241], + [1107,0.233], + [1109,0.203], + [1111,0.239], + [1113,0.255], + [1115,0.237], + [1117,0.256], + [1119,0.223], + [1121,0.234], + [1123,0.222], + [1125,0.215], + [1127,0.225], + [1129,0.255], + [1131,0.27], + [1133,0.216], + [2013,0.118], + [2016,0.147], + [2020,0.26], + [2050,0.365], + [2060,0.226], + [2068,0.225], + [2070,0.329], + [2090,0.256], + [2100,0.199], + [2105,0.197], + [2110,0.235], + [2122,0.237], + [2130,0.239], + [2150,0.286], + [2158,0.416], + [2164,0.302], + [2170,0.289], + [2180,0.343], + [2185,0.239], + [2188,0.353], + [2195,0.234], + [2198,0.256], + [2220,0.235], + [2230,0.157], + [2240,0.263], + [2261,0.244], + [2275,0.22], + [2282,0.245], + [2290,0.278], + [4001,0.317], + [4003,0.23], + [4005,0.236], + [4007,0.214], + [4009,0.284], + [4011,0.292], + [4012,0.18], + [4013,0.264], + [4015,0.206], + [4017,0.298], + [4019,0.23], + [4021,0.265], + [4023,0.307], + [4025,0.191], + [4027,0.282], + [5001,0.233], + [5003,0.244], + [5005,0.181], + [5007,0.279], + [5009,0.233], + [5011,0.233], + [5013,0.205], + [5015,0.225], + [5017,0.231], + [5019,0.195], + [5021,0.223], + [5023,0.199], + [5025,0.248], + [5027,0.228], + [5029,0.242], + [5031,0.25], + [5033,0.264], + [5035,0.291], + [5037,0.251], + [5039,0.236], + [5041,0.26], + [5043,0.236], + [5045,0.245], + [5047,0.244], + [5049,0.212], + [5051,0.209], + [5053,0.242], + [5055,0.252], + [5057,0.26], + [5059,0.233], + [5061,0.263], + [5063,0.24], + [5065,0.192], + [5067,0.207], + [5069,0.238], + [5071,0.248], + [5073,0.232], + [5075,0.229], + [5077,0.207], + [5079,0.194], + [5081,0.238], + [5083,0.246], + [5085,0.275], + [5087,0.242], + [5089,0.179], + [5091,0.243], + [5093,0.282], + [5095,0.226], + [5097,0.211], + [5099,0.237], + [5101,0.208], + [5103,0.235], + [5105,0.23], + [5107,0.281], + [5109,0.247], + [5111,0.242], + [5113,0.238], + [5115,0.231], + [5117,0.215], + [5119,0.241], + [5121,0.232], + [5123,0.236], + [5125,0.244], + [5127,0.257], + [5129,0.204], + [5131,0.254], + [5133,0.295], + [5135,0.215], + [5137,0.206], + [5139,0.242], + [5141,0.205], + [5143,0.254], + [5145,0.239], + [5147,0.23], + [5149,0.263], + [6001,0.226], + [6003,0.218], + [6005,0.168], + [6007,0.21], + [6009,0.196], + [6011,0.299], + [6013,0.248], + [6015,0.215], + [6017,0.227], + [6019,0.298], + [6021,0.28], + [6023,0.201], + [6025,0.293], + [6027,0.21], + [6029,0.303], + [6031,0.278], + [6033,0.211], + [6035,0.18], + [6037,0.245], + [6039,0.284], + [6041,0.207], + [6043,0.178], + [6045,0.222], + [6047,0.315], + [6049,0.219], + [6051,0.21], + [6053,0.267], + [6055,0.231], + [6057,0.193], + [6059,0.245], + [6061,0.244], + [6063,0.18], + [6065,0.283], + [6067,0.256], + [6069,0.291], + [6071,0.292], + [6073,0.234], + [6075,0.134], + [6077,0.293], + [6079,0.189], + [6081,0.222], + [6083,0.231], + [6085,0.241], + [6087,0.211], + [6089,0.224], + [6091,0.17], + [6093,0.208], + [6095,0.246], + [6097,0.22], + [6099,0.286], + [6101,0.276], + [6103,0.255], + [6105,0.183], + [6107,0.326], + [6109,0.175], + [6111,0.257], + [6113,0.227], + [6115,0.291], + [8001,0.286], + [8003,0.248], + [8005,0.258], + [8007,0.199], + [8009,0.215], + [8011,0.169], + [8013,0.213], + [8014,0.262], + [8015,0.168], + [8017,0.245], + [8019,0.173], + [8021,0.283], + [8023,0.209], + [8025,0.135], + [8027,0.172], + [8029,0.221], + [8031,0.215], + [8033,0.224], + [8035,0.305], + [8037,0.245], + [8039,0.254], + [8041,0.261], + [8043,0.175], + [8045,0.27], + [8047,0.176], + [8049,0.203], + [8051,0.181], + [8053,0.199], + [8055,0.177], + [8057,0.187], + [8059,0.223], + [8061,0.225], + [8063,0.222], + [8065,0.249], + [8067,0.205], + [8069,0.214], + [8071,0.209], + [8073,0.205], + [8075,0.2], + [8077,0.235], + [8079,0.142], + [8081,0.271], + [8083,0.235], + [8085,0.247], + [8087,0.28], + [8089,0.247], + [8091,0.18], + [8093,0.192], + [8095,0.253], + [8097,0.175], + [8099,0.271], + [8101,0.245], + [8103,0.243], + [8105,0.252], + [8107,0.209], + [8109,0.232], + [8111,0.183], + [8113,0.197], + [8115,0.193], + [8117,0.174], + [8119,0.205], + [8121,0.234], + [8123,0.278], + [8125,0.264], + [9001,0.248], + [9003,0.228], + [9005,0.216], + [9007,0.212], + [9009,0.224], + [9011,0.217], + [9013,0.202], + [9015,0.223], + [10001,0.249], + [10003,0.232], + [10005,0.204], + [11001,0.168], + [12001,0.179], + [12003,0.26], + [12005,0.22], + [12007,0.198], + [12009,0.198], + [12011,0.224], + [12013,0.214], + [12015,0.143], + [12017,0.159], + [12019,0.263], + [12021,0.195], + [12023,0.225], + [12027,0.225], + [12029,0.191], + [12031,0.235], + [12033,0.216], + [12035,0.199], + [12037,0.171], + [12039,0.242], + [12041,0.214], + [12043,0.188], + [12045,0.162], + [12047,0.197], + [12049,0.277], + [12051,0.278], + [12053,0.198], + [12055,0.182], + [12057,0.239], + [12059,0.215], + [12061,0.188], + [12063,0.199], + [12065,0.186], + [12067,0.201], + [12069,0.208], + [12071,0.195], + [12073,0.196], + [12075,0.211], + [12077,0.212], + [12079,0.218], + [12081,0.205], + [12083,0.194], + [12085,0.176], + [12086,0.219], + [12087,0.151], + [12089,0.217], + [12091,0.223], + [12093,0.24], + [12095,0.236], + [12097,0.262], + [12099,0.204], + [12101,0.212], + [12103,0.178], + [12105,0.235], + [12107,0.226], + [12109,0.231], + [12111,0.223], + [12113,0.239], + [12115,0.157], + [12117,0.23], + [12119,0.091], + [12121,0.227], + [12123,0.197], + [12125,0.194], + [12127,0.189], + [12129,0.225], + [12131,0.206], + [12133,0.212], + [13001,0.257], + [13003,0.29], + [13005,0.255], + [13007,0.232], + [13009,0.205], + [13011,0.252], + [13013,0.282], + [13015,0.268], + [13017,0.265], + [13019,0.256], + [13021,0.258], + [13023,0.226], + [13025,0.266], + [13027,0.237], + [13029,0.293], + [13031,0.205], + [13033,0.282], + [13035,0.225], + [13037,0.197], + [13039,0.27], + [13043,0.256], + [13045,0.254], + [13047,0.249], + [13049,0.217], + [13051,0.226], + [13053,0.271], + [13055,0.225], + [13057,0.275], + [13059,0.175], + [13061,0.225], + [13063,0.289], + [13065,0.271], + [13067,0.256], + [13069,0.262], + [13071,0.277], + [13073,0.273], + [13075,0.272], + [13077,0.274], + [13079,0.227], + [13081,0.261], + [13083,0.216], + [13085,0.228], + [13087,0.254], + [13089,0.239], + [13091,0.233], + [13093,0.212], + [13095,0.257], + [13097,0.283], + [13099,0.264], + [13101,0.293], + [13103,0.285], + [13105,0.233], + [13107,0.254], + [13109,0.258], + [13111,0.191], + [13113,0.264], + [13115,0.243], + [13117,0.304], + [13119,0.224], + [13121,0.239], + [13123,0.22], + [13125,0.264], + [13127,0.242], + [13129,0.27], + [13131,0.257], + [13133,0.206], + [13135,0.291], + [13137,0.239], + [13139,0.279], + [13141,0.182], + [13143,0.251], + [13145,0.238], + [13147,0.223], + [13149,0.258], + [13151,0.293], + [13153,0.268], + [13155,0.243], + [13157,0.265], + [13159,0.25], + [13161,0.276], + [13163,0.252], + [13165,0.268], + [13167,0.209], + [13169,0.261], + [13171,0.211], + [13173,0.275], + [13175,0.258], + [13177,0.28], + [13179,0.302], + [13181,0.206], + [13183,0.306], + [13185,0.247], + [13187,0.208], + [13189,0.26], + [13191,0.215], + [13193,0.221], + [13195,0.244], + [13197,0.24], + [13199,0.237], + [13201,0.234], + [13205,0.248], + [13207,0.225], + [13209,0.228], + [13211,0.248], + [13213,0.269], + [13215,0.256], + [13217,0.289], + [13219,0.284], + [13221,0.239], + [13223,0.303], + [13225,0.228], + [13227,0.226], + [13229,0.261], + [13231,0.271], + [13233,0.266], + [13235,0.215], + [13237,0.217], + [13239,0.205], + [13241,0.211], + [13243,0.224], + [13245,0.246], + [13247,0.269], + [13249,0.3], + [13251,0.253], + [13253,0.23], + [13255,0.253], + [13257,0.227], + [13259,0.157], + [13261,0.253], + [13263,0.213], + [13265,0.188], + [13267,0.212], + [13269,0.245], + [13271,0.201], + [13273,0.247], + [13275,0.249], + [13277,0.258], + [13279,0.28], + [13281,0.157], + [13283,0.249], + [13285,0.266], + [13287,0.247], + [13289,0.206], + [13291,0.178], + [13293,0.236], + [13295,0.236], + [13297,0.27], + [13299,0.236], + [13301,0.235], + [13303,0.238], + [13305,0.248], + [13307,0.254], + [13309,0.189], + [13311,0.228], + [13313,0.285], + [13315,0.193], + [13317,0.222], + [13319,0.243], + [13321,0.246], + [15001,0.228], + [15003,0.221], + [15005,0], + [15007,0.227], + [15009,0.231], + [16001,0.264], + [16003,0.192], + [16005,0.274], + [16007,0.273], + [16009,0.237], + [16011,0.33], + [16013,0.243], + [16015,0.215], + [16017,0.217], + [16019,0.315], + [16021,0.256], + [16023,0.282], + [16025,0.215], + [16027,0.315], + [16029,0.29], + [16031,0.331], + [16033,0.314], + [16035,0.178], + [16037,0.196], + [16039,0.284], + [16041,0.352], + [16043,0.314], + [16045,0.245], + [16047,0.295], + [16049,0.209], + [16051,0.355], + [16053,0.311], + [16055,0.247], + [16057,0.187], + [16059,0.199], + [16061,0.222], + [16063,0.326], + [16065,0.26], + [16067,0.294], + [16069,0.217], + [16071,0.299], + [16073,0.292], + [16075,0.287], + [16077,0.309], + [16079,0.208], + [16081,0.297], + [16083,0.274], + [16085,0.198], + [16087,0.247], + [17001,0.23], + [17003,0.229], + [17005,0.205], + [17007,0.29], + [17009,0.161], + [17011,0.233], + [17013,0.219], + [17015,0.205], + [17017,0.249], + [17019,0.194], + [17021,0.223], + [17023,0.228], + [17025,0.229], + [17027,0.227], + [17029,0.185], + [17031,0.237], + [17033,0.205], + [17035,0.235], + [17037,0.223], + [17039,0.231], + [17041,0.259], + [17043,0.248], + [17045,0.222], + [17047,0.229], + [17049,0.247], + [17051,0.225], + [17053,0.238], + [17055,0.227], + [17057,0.209], + [17059,0.212], + [17061,0.23], + [17063,0.273], + [17065,0.228], + [17067,0.22], + [17069,0.203], + [17071,0.204], + [17073,0.24], + [17075,0.236], + [17077,0.178], + [17079,0.227], + [17081,0.221], + [17083,0.228], + [17085,0.208], + [17087,0.194], + [17089,0.29], + [17091,0.253], + [17093,0.314], + [17095,0.206], + [17097,0.274], + [17099,0.23], + [17101,0.191], + [17103,0.215], + [17105,0.225], + [17107,0.2], + [17109,0.161], + [17111,0.273], + [17113,0.227], + [17115,0.228], + [17117,0.226], + [17119,0.227], + [17121,0.234], + [17123,0.217], + [17125,0.22], + [17127,0.228], + [17129,0.236], + [17131,0.226], + [17133,0.245], + [17135,0.212], + [17137,0.213], + [17139,0.249], + [17141,0.248], + [17143,0.241], + [17145,0.207], + [17147,0.24], + [17149,0.226], + [17151,0.182], + [17153,0.228], + [17155,0.213], + [17157,0.198], + [17159,0.222], + [17161,0.225], + [17163,0.254], + [17165,0.229], + [17167,0.237], + [17169,0.209], + [17171,0.238], + [17173,0.226], + [17175,0.235], + [17177,0.227], + [17179,0.235], + [17181,0.215], + [17183,0.244], + [17185,0.222], + [17187,0.221], + [17189,0.221], + [17191,0.226], + [17193,0.209], + [17195,0.235], + [17197,0.291], + [17199,0.221], + [17201,0.249], + [17203,0.258], + [18001,0.312], + [18003,0.27], + [18005,0.252], + [18007,0.258], + [18009,0.228], + [18011,0.281], + [18013,0.208], + [18015,0.246], + [18017,0.259], + [18019,0.237], + [18021,0.24], + [18023,0.266], + [18025,0.233], + [18027,0.288], + [18029,0.25], + [18031,0.255], + [18033,0.264], + [18035,0.2], + [18037,0.255], + [18039,0.284], + [18041,0.24], + [18043,0.24], + [18045,0.242], + [18047,0.261], + [18049,0.248], + [18051,0.243], + [18053,0.217], + [18055,0.238], + [18057,0.302], + [18059,0.262], + [18061,0.236], + [18063,0.274], + [18065,0.223], + [18067,0.237], + [18069,0.237], + [18071,0.246], + [18073,0.257], + [18075,0.266], + [18077,0.226], + [18079,0.264], + [18081,0.264], + [18083,0.213], + [18085,0.256], + [18087,0.345], + [18089,0.257], + [18091,0.228], + [18093,0.236], + [18095,0.231], + [18097,0.251], + [18099,0.269], + [18101,0.24], + [18103,0.227], + [18105,0.163], + [18107,0.24], + [18109,0.252], + [18111,0.23], + [18113,0.27], + [18115,0.212], + [18117,0.246], + [18119,0.232], + [18121,0.214], + [18123,0.214], + [18125,0.224], + [18127,0.243], + [18129,0.237], + [18131,0.239], + [18133,0.211], + [18135,0.244], + [18137,0.263], + [18139,0.248], + [18141,0.247], + [18143,0.24], + [18145,0.244], + [18147,0.242], + [18149,0.244], + [18151,0.229], + [18153,0.214], + [18155,0.256], + [18157,0.207], + [18159,0.232], + [18161,0.251], + [18163,0.222], + [18165,0.231], + [18167,0.214], + [18169,0.227], + [18171,0.235], + [18173,0.259], + [18175,0.252], + [18177,0.23], + [18179,0.25], + [18181,0.242], + [18183,0.246], + [19001,0.225], + [19003,0.211], + [19005,0.231], + [19007,0.225], + [19009,0.219], + [19011,0.255], + [19013,0.217], + [19015,0.239], + [19017,0.227], + [19019,0.271], + [19021,0.25], + [19023,0.236], + [19025,0.212], + [19027,0.249], + [19029,0.228], + [19031,0.245], + [19033,0.215], + [19035,0.212], + [19037,0.244], + [19039,0.253], + [19041,0.23], + [19043,0.232], + [19045,0.236], + [19047,0.264], + [19049,0.291], + [19051,0.291], + [19053,0.227], + [19055,0.252], + [19057,0.232], + [19059,0.194], + [19061,0.238], + [19063,0.23], + [19065,0.225], + [19067,0.239], + [19069,0.238], + [19071,0.228], + [19073,0.231], + [19075,0.238], + [19077,0.239], + [19079,0.24], + [19081,0.234], + [19083,0.231], + [19085,0.241], + [19087,0.232], + [19089,0.252], + [19091,0.23], + [19093,0.24], + [19095,0.246], + [19097,0.232], + [19099,0.228], + [19101,0.182], + [19103,0.198], + [19105,0.224], + [19107,0.232], + [19109,0.229], + [19111,0.222], + [19113,0.245], + [19115,0.258], + [19117,0.244], + [19119,0.277], + [19121,0.272], + [19123,0.243], + [19125,0.251], + [19127,0.253], + [19129,0.254], + [19131,0.247], + [19133,0.222], + [19135,0.242], + [19137,0.234], + [19139,0.261], + [19141,0.236], + [19143,0.231], + [19145,0.22], + [19147,0.22], + [19149,0.26], + [19151,0.215], + [19153,0.255], + [19155,0.241], + [19157,0.209], + [19159,0.242], + [19161,0.225], + [19163,0.246], + [19165,0.236], + [19167,0.268], + [19169,0.178], + [19171,0.256], + [19173,0.234], + [19175,0.234], + [19177,0.241], + [19179,0.228], + [19181,0.26], + [19183,0.252], + [19185,0.234], + [19187,0.221], + [19189,0.217], + [19191,0.204], + [19193,0.266], + [19195,0.231], + [19197,0.233], + [20001,0.235], + [20003,0.254], + [20005,0.242], + [20007,0.225], + [20009,0.245], + [20011,0.256], + [20013,0.254], + [20015,0.269], + [20017,0.22], + [20019,0.207], + [20021,0.249], + [20023,0.213], + [20025,0.252], + [20027,0.237], + [20029,0.224], + [20031,0.243], + [20033,0.23], + [20035,0.244], + [20037,0.223], + [20039,0.187], + [20041,0.248], + [20043,0.223], + [20045,0.191], + [20047,0.237], + [20049,0.213], + [20051,0.21], + [20053,0.187], + [20055,0.32], + [20057,0.309], + [20059,0.26], + [20061,0.309], + [20063,0.223], + [20065,0.191], + [20067,0.314], + [20069,0.304], + [20071,0.213], + [20073,0.221], + [20075,0.284], + [20077,0.237], + [20079,0.255], + [20081,0.312], + [20083,0.24], + [20085,0.265], + [20087,0.247], + [20089,0.188], + [20091,0.263], + [20093,0.298], + [20095,0.242], + [20097,0.215], + [20099,0.244], + [20101,0.225], + [20103,0.251], + [20105,0.241], + [20107,0.232], + [20109,0.228], + [20111,0.236], + [20113,0.235], + [20115,0.226], + [20117,0.231], + [20119,0.29], + [20121,0.27], + [20123,0.214], + [20125,0.237], + [20127,0.215], + [20129,0.27], + [20131,0.262], + [20133,0.247], + [20135,0.224], + [20137,0.2], + [20139,0.248], + [20141,0.211], + [20143,0.254], + [20145,0.219], + [20147,0.242], + [20149,0.297], + [20151,0.228], + [20153,0.189], + [20155,0.236], + [20157,0.193], + [20159,0.239], + [20161,0.185], + [20163,0.236], + [20165,0.194], + [20167,0.213], + [20169,0.251], + [20171,0.25], + [20173,0.272], + [20175,0.32], + [20177,0.248], + [20179,0.236], + [20181,0.225], + [20183,0.201], + [20185,0.234], + [20187,0.291], + [20189,0.306], + [20191,0.262], + [20193,0.233], + [20195,0.2], + [20197,0.254], + [20199,0.252], + [20201,0.229], + [20203,0.272], + [20205,0.244], + [20207,0.199], + [20209,0.282], + [21001,0.225], + [21003,0.245], + [21005,0.254], + [21007,0.222], + [21009,0.242], + [21011,0.247], + [21013,0.217], + [21015,0.283], + [21017,0.241], + [21019,0.214], + [21021,0.217], + [21023,0.254], + [21025,0.232], + [21027,0.242], + [21029,0.253], + [21031,0.231], + [21033,0.222], + [21035,0.18], + [21037,0.228], + [21039,0.226], + [21041,0.251], + [21043,0.235], + [21045,0.236], + [21047,0.285], + [21049,0.235], + [21051,0.22], + [21053,0.239], + [21055,0.227], + [21057,0.222], + [21059,0.244], + [21061,0.218], + [21063,0.204], + [21065,0.228], + [21067,0.212], + [21069,0.244], + [21071,0.225], + [21073,0.216], + [21075,0.201], + [21077,0.268], + [21079,0.231], + [21081,0.281], + [21083,0.244], + [21085,0.239], + [21087,0.226], + [21089,0.226], + [21091,0.26], + [21093,0.26], + [21095,0.228], + [21097,0.243], + [21099,0.25], + [21101,0.235], + [21103,0.248], + [21105,0.215], + [21107,0.232], + [21109,0.236], + [21111,0.232], + [21113,0.258], + [21115,0.225], + [21117,0.25], + [21119,0.216], + [21121,0.247], + [21123,0.238], + [21125,0.243], + [21127,0.232], + [21129,0.195], + [21131,0.214], + [21133,0.221], + [21135,0.239], + [21137,0.247], + [21139,0.205], + [21141,0.246], + [21143,0.154], + [21145,0.224], + [21147,0.225], + [21149,0.233], + [21151,0.215], + [21153,0.24], + [21155,0.247], + [21157,0.208], + [21159,0.213], + [21161,0.244], + [21163,0.273], + [21165,0.232], + [21167,0.236], + [21169,0.24], + [21171,0.232], + [21173,0.245], + [21175,0.204], + [21177,0.217], + [21179,0.26], + [21181,0.242], + [21183,0.249], + [21185,0.278], + [21187,0.246], + [21189,0.223], + [21191,0.247], + [21193,0.217], + [21195,0.219], + [21197,0.246], + [21199,0.228], + [21201,0.215], + [21203,0.232], + [21205,0.196], + [21207,0.223], + [21209,0.269], + [21211,0.248], + [21213,0.246], + [21215,0.257], + [21217,0.223], + [21219,0.272], + [21221,0.225], + [21223,0.251], + [21225,0.23], + [21227,0.228], + [21229,0.232], + [21231,0.226], + [21233,0.234], + [21235,0.239], + [21237,0.24], + [21239,0.241], + [22001,0.273], + [22003,0.229], + [22005,0.287], + [22007,0.246], + [22009,0.244], + [22011,0.261], + [22013,0.233], + [22015,0.257], + [22017,0.246], + [22019,0.254], + [22021,0.234], + [22023,0.242], + [22025,0.226], + [22027,0.197], + [22029,0.251], + [22031,0.249], + [22033,0.236], + [22035,0.257], + [22037,0.207], + [22039,0.27], + [22041,0.256], + [22043,0.231], + [22045,0.271], + [22047,0.225], + [22049,0.228], + [22051,0.225], + [22053,0.266], + [22055,0.245], + [22057,0.246], + [22059,0.237], + [22061,0.206], + [22063,0.276], + [22065,0.25], + [22067,0.247], + [22069,0.243], + [22071,0.213], + [22073,0.263], + [22075,0.275], + [22077,0.24], + [22079,0.258], + [22081,0.254], + [22083,0.255], + [22085,0.244], + [22087,0.256], + [22089,0.269], + [22091,0.247], + [22093,0.258], + [22095,0.269], + [22097,0.272], + [22099,0.264], + [22101,0.254], + [22103,0.257], + [22105,0.251], + [22107,0.253], + [22109,0.26], + [22111,0.23], + [22113,0.267], + [22115,0.277], + [22117,0.252], + [22119,0.236], + [22121,0.249], + [22123,0.246], + [22125,0.174], + [22127,0.225], + [23001,0.226], + [23003,0.2], + [23005,0.209], + [23007,0.197], + [23009,0.183], + [23011,0.207], + [23013,0.194], + [23015,0.188], + [23017,0.213], + [23019,0.197], + [23021,0.192], + [23023,0.21], + [23025,0.214], + [23027,0.21], + [23029,0.2], + [23031,0.214], + [24001,0.18], + [24003,0.233], + [24005,0.22], + [24009,0.262], + [24011,0.252], + [24013,0.247], + [24015,0.251], + [24017,0.265], + [24019,0.217], + [24021,0.253], + [24023,0.221], + [24025,0.247], + [24027,0.26], + [24029,0.176], + [24031,0.24], + [24033,0.239], + [24035,0.238], + [24037,0.262], + [24039,0.169], + [24041,0.195], + [24043,0.229], + [24045,0.224], + [24047,0.183], + [24510,0.215], + [25001,0.173], + [25003,0.195], + [25005,0.223], + [25007,0.192], + [25009,0.232], + [25011,0.197], + [25013,0.237], + [25015,0.169], + [25017,0.213], + [25019,0.207], + [25021,0.227], + [25023,0.241], + [25025,0.175], + [25027,0.234], + [26001,0.146], + [26003,0.171], + [26005,0.262], + [26007,0.209], + [26009,0.211], + [26011,0.201], + [26013,0.202], + [26015,0.244], + [26017,0.222], + [26019,0.21], + [26021,0.234], + [26023,0.239], + [26025,0.242], + [26027,0.234], + [26029,0.22], + [26031,0.204], + [26033,0.201], + [26035,0.209], + [26037,0.247], + [26039,0.199], + [26041,0.209], + [26043,0.214], + [26045,0.233], + [26047,0.226], + [26049,0.25], + [26051,0.201], + [26053,0.169], + [26055,0.221], + [26057,0.215], + [26059,0.238], + [26061,0.206], + [26063,0.207], + [26065,0.209], + [26067,0.245], + [26069,0.176], + [26071,0.171], + [26073,0.18], + [26075,0.232], + [26077,0.227], + [26079,0.227], + [26081,0.262], + [26083,0.179], + [26085,0.179], + [26087,0.242], + [26089,0.195], + [26091,0.232], + [26093,0.255], + [26095,0.179], + [26097,0.187], + [26099,0.23], + [26101,0.191], + [26103,0.187], + [26105,0.217], + [26107,0.2], + [26109,0.21], + [26111,0.237], + [26113,0.242], + [26115,0.241], + [26117,0.241], + [26119,0.168], + [26121,0.248], + [26123,0.25], + [26125,0.235], + [26127,0.249], + [26129,0.204], + [26131,0.158], + [26133,0.247], + [26135,0.202], + [26137,0.229], + [26139,0.261], + [26141,0.175], + [26143,0.161], + [26145,0.234], + [26147,0.237], + [26149,0.259], + [26151,0.236], + [26153,0.199], + [26155,0.241], + [26157,0.235], + [26159,0.255], + [26161,0.209], + [26163,0.254], + [26165,0.243], + [27001,0.18], + [27003,0.26], + [27005,0.246], + [27007,0.25], + [27009,0.247], + [27011,0.21], + [27013,0.193], + [27015,0.22], + [27017,0.236], + [27019,0.299], + [27021,0.217], + [27023,0.234], + [27025,0.257], + [27027,0.233], + [27029,0.25], + [27031,0.168], + [27033,0.239], + [27035,0.23], + [27037,0.264], + [27039,0.29], + [27041,0.219], + [27043,0.22], + [27045,0.243], + [27047,0.22], + [27049,0.237], + [27051,0.214], + [27053,0.227], + [27055,0.231], + [27057,0.219], + [27059,0.259], + [27061,0.218], + [27063,0.226], + [27065,0.24], + [27067,0.24], + [27069,0.216], + [27071,0.209], + [27073,0.211], + [27075,0.19], + [27077,0.201], + [27079,0.255], + [27081,0.223], + [27083,0.242], + [27085,0.253], + [27087,0.293], + [27089,0.236], + [27091,0.222], + [27093,0.254], + [27095,0.253], + [27097,0.246], + [27099,0.252], + [27101,0.222], + [27103,0.226], + [27105,0.256], + [27107,0.243], + [27109,0.253], + [27111,0.217], + [27113,0.238], + [27115,0.222], + [27117,0.249], + [27119,0.238], + [27121,0.213], + [27123,0.233], + [27125,0.246], + [27127,0.25], + [27129,0.232], + [27131,0.236], + [27133,0.258], + [27135,0.263], + [27137,0.198], + [27139,0.302], + [27141,0.291], + [27143,0.256], + [27145,0.232], + [27147,0.264], + [27149,0.209], + [27151,0.223], + [27153,0.249], + [27155,0.219], + [27157,0.233], + [27159,0.24], + [27161,0.236], + [27163,0.267], + [27165,0.25], + [27167,0.239], + [27169,0.194], + [27171,0.3], + [27173,0.237], + [28001,0.223], + [28003,0.243], + [28005,0.225], + [28007,0.26], + [28009,0.247], + [28011,0.253], + [28013,0.25], + [28015,0.215], + [28017,0.263], + [28019,0.243], + [28021,0.236], + [28023,0.247], + [28025,0.257], + [28027,0.293], + [28029,0.251], + [28031,0.26], + [28033,0.283], + [28035,0.236], + [28037,0.252], + [28039,0.268], + [28041,0.219], + [28043,0.246], + [28045,0.239], + [28047,0.245], + [28049,0.265], + [28051,0.29], + [28053,0.288], + [28055,0.2], + [28057,0.231], + [28059,0.255], + [28061,0.242], + [28063,0.236], + [28065,0.236], + [28067,0.256], + [28069,0.233], + [28071,0.185], + [28073,0.262], + [28075,0.25], + [28077,0.253], + [28079,0.309], + [28081,0.267], + [28083,0.271], + [28085,0.261], + [28087,0.252], + [28089,0.269], + [28091,0.256], + [28093,0.234], + [28095,0.246], + [28097,0.244], + [28099,0.287], + [28101,0.26], + [28103,0.271], + [28105,0.183], + [28107,0.269], + [28109,0.246], + [28111,0.254], + [28113,0.272], + [28115,0.27], + [28117,0.233], + [28119,0.262], + [28121,0.251], + [28123,0.27], + [28125,0.255], + [28127,0.264], + [28129,0.258], + [28131,0.244], + [28133,0.243], + [28135,0.227], + [28137,0.258], + [28139,0.254], + [28141,0.232], + [28143,0.298], + [28145,0.258], + [28147,0.264], + [28149,0.259], + [28151,0.28], + [28153,0.262], + [28155,0.252], + [28157,0.23], + [28159,0.249], + [28161,0.238], + [28163,0.252], + [29001,0.194], + [29003,0.241], + [29005,0.208], + [29007,0.249], + [29009,0.243], + [29011,0.259], + [29013,0.25], + [29015,0.18], + [29017,0.236], + [29019,0.211], + [29021,0.235], + [29023,0.233], + [29025,0.255], + [29027,0.226], + [29029,0.191], + [29031,0.219], + [29033,0.236], + [29035,0.242], + [29037,0.265], + [29039,0.237], + [29041,0.226], + [29043,0.274], + [29045,0.241], + [29047,0.258], + [29049,0.246], + [29051,0.236], + [29053,0.226], + [29055,0.243], + [29057,0.226], + [29059,0.248], + [29061,0.267], + [29063,0.179], + [29065,0.233], + [29067,0.224], + [29069,0.253], + [29071,0.247], + [29073,0.221], + [29075,0.245], + [29077,0.212], + [29079,0.24], + [29081,0.248], + [29083,0.223], + [29085,0.173], + [29087,0.198], + [29089,0.215], + [29091,0.249], + [29093,0.226], + [29095,0.246], + [29097,0.258], + [29099,0.251], + [29101,0.229], + [29103,0.25], + [29105,0.25], + [29107,0.245], + [29109,0.263], + [29111,0.235], + [29113,0.28], + [29115,0.247], + [29117,0.219], + [29119,0.281], + [29121,0.243], + [29123,0.24], + [29125,0.235], + [29127,0.239], + [29129,0.254], + [29131,0.248], + [29133,0.222], + [29135,0.252], + [29137,0.233], + [29139,0.233], + [29141,0.22], + [29143,0.238], + [29145,0.254], + [29147,0.182], + [29149,0.223], + [29151,0.247], + [29153,0.2], + [29155,0.275], + [29157,0.251], + [29159,0.256], + [29161,0.217], + [29163,0.222], + [29165,0.246], + [29167,0.246], + [29169,0.24], + [29171,0.233], + [29173,0.234], + [29175,0.231], + [29177,0.25], + [29179,0.229], + [29181,0.235], + [29183,0.258], + [29185,0.2], + [29186,0.233], + [29187,0.22], + [29189,0.234], + [29195,0.231], + [29197,0.257], + [29199,0.281], + [29201,0.251], + [29203,0.234], + [29205,0.251], + [29207,0.228], + [29209,0.187], + [29211,0.242], + [29213,0.221], + [29215,0.22], + [29217,0.249], + [29219,0.25], + [29221,0.241], + [29223,0.208], + [29225,0.277], + [29227,0.205], + [29229,0.259], + [29510,0.212], + [30001,0.201], + [30003,0.332], + [30005,0.3], + [30007,0.225], + [30009,0.197], + [30011,0.175], + [30013,0.229], + [30015,0.267], + [30017,0.227], + [30019,0.21], + [30021,0.208], + [30023,0.189], + [30025,0.235], + [30027,0.202], + [30029,0.234], + [30031,0.209], + [30033,0.231], + [30035,0.316], + [30037,0.217], + [30039,0.17], + [30041,0.268], + [30043,0.231], + [30045,0.206], + [30047,0.253], + [30049,0.227], + [30051,0.22], + [30053,0.198], + [30055,0.209], + [30057,0.177], + [30059,0.193], + [30061,0.179], + [30063,0.2], + [30065,0.206], + [30067,0.197], + [30069,0.229], + [30071,0.231], + [30073,0.25], + [30075,0.208], + [30077,0.173], + [30079,0.177], + [30081,0.219], + [30083,0.234], + [30085,0.318], + [30087,0.296], + [30089,0.206], + [30091,0.194], + [30093,0.21], + [30095,0.23], + [30097,0.23], + [30099,0.233], + [30101,0.207], + [30103,0.187], + [30105,0.232], + [30107,0.237], + [30109,0.213], + [30111,0.237], + [31001,0.24], + [31003,0.235], + [31005,0.272], + [31007,0.223], + [31009,0.245], + [31011,0.237], + [31013,0.252], + [31015,0.215], + [31017,0.217], + [31019,0.24], + [31021,0.225], + [31023,0.248], + [31025,0.253], + [31027,0.254], + [31029,0.238], + [31031,0.221], + [31033,0.239], + [31035,0.252], + [31037,0.291], + [31039,0.25], + [31041,0.236], + [31043,0.301], + [31045,0.192], + [31047,0.286], + [31049,0.21], + [31051,0.256], + [31053,0.239], + [31055,0.261], + [31057,0.222], + [31059,0.238], + [31061,0.216], + [31063,0.216], + [31065,0.233], + [31067,0.23], + [31069,0.186], + [31071,0.21], + [31073,0.224], + [31075,0.187], + [31077,0.235], + [31079,0.273], + [31081,0.256], + [31083,0.215], + [31085,0.231], + [31087,0.214], + [31089,0.235], + [31091,0.213], + [31093,0.246], + [31095,0.213], + [31097,0.189], + [31099,0.242], + [31101,0.216], + [31103,0.217], + [31105,0.224], + [31107,0.241], + [31109,0.231], + [31111,0.25], + [31113,0.252], + [31115,0.223], + [31117,0.28], + [31119,0.25], + [31121,0.248], + [31123,0.24], + [31125,0.235], + [31127,0.216], + [31129,0.212], + [31131,0.241], + [31133,0.22], + [31135,0.247], + [31137,0.246], + [31139,0.259], + [31141,0.264], + [31143,0.244], + [31145,0.23], + [31147,0.215], + [31149,0.202], + [31151,0.244], + [31153,0.288], + [31155,0.259], + [31157,0.248], + [31159,0.237], + [31161,0.236], + [31163,0.224], + [31165,0.223], + [31167,0.275], + [31169,0.214], + [31171,0.229], + [31173,0.355], + [31175,0.221], + [31177,0.252], + [31179,0.194], + [31181,0.226], + [31183,0.246], + [31185,0.224], + [32001,0.252], + [32003,0.25], + [32005,0.202], + [32007,0.291], + [32009,0.169], + [32011,0.242], + [32013,0.274], + [32015,0.276], + [32017,0.269], + [32019,0.249], + [32021,0.183], + [32023,0.207], + [32027,0.196], + [32029,0.175], + [32031,0.236], + [32033,0.217], + [32510,0.214], + [33001,0.208], + [33003,0.186], + [33005,0.196], + [33007,0.189], + [33009,0.184], + [33011,0.235], + [33013,0.218], + [33015,0.228], + [33017,0.206], + [33019,0.21], + [34001,0.233], + [34003,0.226], + [34005,0.232], + [34007,0.244], + [34009,0.189], + [34011,0.24], + [34013,0.249], + [34015,0.244], + [34017,0.207], + [34019,0.235], + [34021,0.226], + [34023,0.229], + [34025,0.238], + [34027,0.239], + [34029,0.234], + [34031,0.249], + [34033,0.235], + [34035,0.25], + [34037,0.24], + [34039,0.245], + [34041,0.236], + [35001,0.24], + [35003,0.158], + [35005,0.28], + [35006,0.251], + [35007,0.206], + [35009,0.284], + [35011,0.223], + [35013,0.267], + [35015,0.261], + [35017,0.219], + [35019,0.218], + [35021,0.132], + [35023,0.258], + [35025,0.294], + [35027,0.19], + [35028,0.242], + [35029,0.265], + [35031,0.313], + [35033,0.213], + [35035,0.25], + [35037,0.218], + [35039,0.246], + [35041,0.266], + [35043,0.267], + [35045,0.29], + [35047,0.22], + [35049,0.21], + [35051,0.161], + [35053,0.239], + [35055,0.206], + [35057,0.241], + [35059,0.204], + [35061,0.264], + [36001,0.199], + [36003,0.216], + [36005,0.266], + [36007,0.202], + [36009,0.234], + [36011,0.216], + [36013,0.218], + [36015,0.224], + [36017,0.227], + [36019,0.193], + [36021,0.203], + [36023,0.211], + [36025,0.196], + [36027,0.222], + [36029,0.216], + [36031,0.193], + [36033,0.208], + [36035,0.222], + [36037,0.221], + [36039,0.193], + [36041,0.164], + [36043,0.222], + [36045,0.255], + [36047,0.237], + [36049,0.247], + [36051,0.202], + [36053,0.218], + [36055,0.227], + [36057,0.235], + [36059,0.233], + [36061,0.148], + [36063,0.215], + [36065,0.219], + [36067,0.23], + [36069,0.225], + [36071,0.272], + [36073,0.222], + [36075,0.231], + [36077,0.187], + [36079,0.237], + [36081,0.207], + [36083,0.213], + [36085,0.233], + [36087,0.281], + [36089,0.213], + [36091,0.227], + [36093,0.229], + [36095,0.199], + [36097,0.212], + [36099,0.213], + [36101,0.234], + [36103,0.24], + [36105,0.227], + [36107,0.234], + [36109,0.164], + [36111,0.202], + [36113,0.206], + [36115,0.211], + [36117,0.238], + [36119,0.24], + [36121,0.206], + [36123,0.245], + [37001,0.235], + [37003,0.227], + [37005,0.2], + [37007,0.221], + [37009,0.194], + [37011,0.172], + [37013,0.22], + [37015,0.208], + [37017,0.231], + [37019,0.188], + [37021,0.205], + [37023,0.222], + [37025,0.274], + [37027,0.226], + [37029,0.256], + [37031,0.189], + [37033,0.206], + [37035,0.238], + [37037,0.218], + [37039,0.193], + [37041,0.224], + [37043,0.187], + [37045,0.234], + [37047,0.233], + [37049,0.234], + [37051,0.268], + [37053,0.237], + [37055,0.2], + [37057,0.239], + [37059,0.236], + [37061,0.254], + [37063,0.225], + [37065,0.245], + [37067,0.244], + [37069,0.245], + [37071,0.239], + [37073,0.238], + [37075,0.216], + [37077,0.223], + [37079,0.232], + [37081,0.234], + [37083,0.231], + [37085,0.278], + [37087,0.195], + [37089,0.206], + [37091,0.211], + [37093,0.302], + [37095,0.185], + [37097,0.255], + [37099,0.177], + [37101,0.278], + [37103,0.217], + [37105,0.257], + [37107,0.241], + [37109,0.236], + [37111,0.217], + [37113,0.193], + [37115,0.197], + [37117,0.222], + [37119,0.254], + [37121,0.195], + [37123,0.243], + [37125,0.217], + [37127,0.239], + [37129,0.199], + [37131,0.208], + [37133,0.253], + [37135,0.209], + [37137,0.179], + [37139,0.226], + [37141,0.228], + [37143,0.206], + [37145,0.231], + [37147,0.225], + [37149,0.192], + [37151,0.245], + [37153,0.244], + [37155,0.268], + [37157,0.222], + [37159,0.238], + [37161,0.225], + [37163,0.257], + [37165,0.251], + [37167,0.227], + [37169,0.222], + [37171,0.234], + [37173,0.234], + [37175,0.176], + [37177,0.18], + [37179,0.302], + [37181,0.254], + [37183,0.26], + [37185,0.203], + [37187,0.23], + [37189,0.138], + [37191,0.249], + [37193,0.224], + [37195,0.247], + [37197,0.233], + [37199,0.2], + [38001,0.19], + [38003,0.206], + [38005,0.336], + [38007,0.176], + [38009,0.19], + [38011,0.215], + [38013,0.208], + [38015,0.226], + [38017,0.218], + [38019,0.197], + [38021,0.23], + [38023,0.171], + [38025,0.22], + [38027,0.209], + [38029,0.214], + [38031,0.218], + [38033,0.24], + [38035,0.201], + [38037,0.188], + [38039,0.19], + [38041,0.189], + [38043,0.215], + [38045,0.211], + [38047,0.211], + [38049,0.219], + [38051,0.183], + [38053,0.266], + [38055,0.197], + [38057,0.214], + [38059,0.239], + [38061,0.238], + [38063,0.179], + [38065,0.222], + [38067,0.216], + [38069,0.215], + [38071,0.22], + [38073,0.235], + [38075,0.216], + [38077,0.224], + [38079,0.334], + [38081,0.228], + [38083,0.16], + [38085,0.365], + [38087,0.201], + [38089,0.214], + [38091,0.213], + [38093,0.205], + [38095,0.192], + [38097,0.223], + [38099,0.222], + [38101,0.235], + [38103,0.182], + [38105,0.231], + [39001,0.25], + [39003,0.239], + [39005,0.239], + [39007,0.237], + [39009,0.158], + [39011,0.254], + [39013,0.197], + [39015,0.246], + [39017,0.252], + [39019,0.23], + [39021,0.25], + [39023,0.236], + [39025,0.256], + [39027,0.244], + [39029,0.219], + [39031,0.241], + [39033,0.231], + [39035,0.227], + [39037,0.249], + [39039,0.246], + [39041,0.29], + [39043,0.222], + [39045,0.263], + [39047,0.247], + [39049,0.239], + [39051,0.258], + [39053,0.238], + [39055,0.26], + [39057,0.217], + [39059,0.24], + [39061,0.236], + [39063,0.236], + [39065,0.236], + [39067,0.219], + [39069,0.251], + [39071,0.254], + [39073,0.238], + [39075,0.343], + [39077,0.263], + [39079,0.245], + [39081,0.202], + [39083,0.241], + [39085,0.222], + [39087,0.235], + [39089,0.247], + [39091,0.253], + [39093,0.239], + [39095,0.24], + [39097,0.226], + [39099,0.215], + [39101,0.221], + [39103,0.254], + [39105,0.228], + [39107,0.264], + [39109,0.242], + [39111,0.215], + [39113,0.23], + [39115,0.234], + [39117,0.258], + [39119,0.24], + [39121,0.191], + [39123,0.207], + [39125,0.252], + [39127,0.262], + [39129,0.236], + [39131,0.248], + [39133,0.209], + [39135,0.242], + [39137,0.267], + [39139,0.225], + [39141,0.225], + [39143,0.244], + [39145,0.228], + [39147,0.236], + [39149,0.273], + [39151,0.229], + [39153,0.228], + [39155,0.222], + [39157,0.237], + [39159,0.272], + [39161,0.249], + [39163,0.248], + [39165,0.275], + [39167,0.209], + [39169,0.254], + [39171,0.237], + [39173,0.217], + [39175,0.243], + [40001,0.28], + [40003,0.18], + [40005,0.236], + [40007,0.261], + [40009,0.241], + [40011,0.214], + [40013,0.234], + [40015,0.253], + [40017,0.269], + [40019,0.258], + [40021,0.241], + [40023,0.242], + [40025,0.255], + [40027,0.231], + [40029,0.255], + [40031,0.251], + [40033,0.246], + [40035,0.227], + [40037,0.249], + [40039,0.233], + [40041,0.224], + [40043,0.254], + [40045,0.248], + [40047,0.247], + [40049,0.244], + [40051,0.251], + [40053,0.227], + [40055,0.198], + [40057,0.258], + [40059,0.252], + [40061,0.255], + [40063,0.222], + [40065,0.261], + [40067,0.242], + [40069,0.245], + [40071,0.253], + [40073,0.266], + [40075,0.234], + [40077,0.24], + [40079,0.247], + [40081,0.255], + [40083,0.25], + [40085,0.243], + [40087,0.266], + [40089,0.259], + [40091,0.21], + [40093,0.232], + [40095,0.239], + [40097,0.255], + [40099,0.239], + [40101,0.247], + [40103,0.247], + [40105,0.242], + [40107,0.233], + [40109,0.252], + [40111,0.246], + [40113,0.243], + [40115,0.247], + [40117,0.246], + [40119,0.189], + [40121,0.221], + [40123,0.234], + [40125,0.25], + [40127,0.224], + [40129,0.251], + [40131,0.261], + [40133,0.257], + [40135,0.258], + [40137,0.24], + [40139,0.288], + [40141,0.247], + [40143,0.256], + [40145,0.266], + [40147,0.234], + [40149,0.258], + [40151,0.188], + [40153,0.243], + [41001,0.203], + [41003,0.178], + [41005,0.237], + [41007,0.205], + [41009,0.235], + [41011,0.189], + [41013,0.219], + [41015,0.157], + [41017,0.23], + [41019,0.205], + [41021,0.189], + [41023,0.192], + [41025,0.224], + [41027,0.26], + [41029,0.218], + [41031,0.253], + [41033,0.204], + [41035,0.223], + [41037,0.193], + [41039,0.198], + [41041,0.173], + [41043,0.241], + [41045,0.256], + [41047,0.264], + [41049,0.286], + [41051,0.205], + [41053,0.243], + [41055,0.198], + [41057,0.198], + [41059,0.266], + [41061,0.225], + [41063,0.188], + [41065,0.232], + [41067,0.256], + [41069,0.18], + [41071,0.25], + [42001,0.221], + [42003,0.198], + [42005,0.206], + [42007,0.205], + [42009,0.216], + [42011,0.239], + [42013,0.211], + [42015,0.227], + [42017,0.23], + [42019,0.224], + [42021,0.197], + [42023,0.194], + [42025,0.208], + [42027,0.159], + [42029,0.249], + [42031,0.194], + [42033,0.2], + [42035,0.207], + [42037,0.187], + [42039,0.224], + [42041,0.207], + [42043,0.232], + [42045,0.233], + [42047,0.208], + [42049,0.227], + [42051,0.203], + [42053,0.124], + [42055,0.239], + [42057,0.231], + [42059,0.199], + [42061,0.201], + [42063,0.19], + [42065,0.216], + [42067,0.24], + [42069,0.205], + [42071,0.248], + [42073,0.212], + [42075,0.23], + [42077,0.237], + [42079,0.202], + [42081,0.209], + [42083,0.211], + [42085,0.216], + [42087,0.231], + [42089,0.239], + [42091,0.229], + [42093,0.212], + [42095,0.219], + [42097,0.206], + [42099,0.233], + [42101,0.225], + [42103,0.233], + [42105,0.223], + [42107,0.201], + [42109,0.224], + [42111,0.195], + [42113,0.16], + [42115,0.211], + [42117,0.205], + [42119,0.185], + [42121,0.215], + [42123,0.208], + [42125,0.205], + [42127,0.19], + [42129,0.199], + [42131,0.217], + [42133,0.235], + [44001,0.204], + [44003,0.206], + [44005,0.198], + [44007,0.22], + [44009,0.201], + [45001,0.228], + [45003,0.23], + [45005,0.223], + [45007,0.24], + [45009,0.223], + [45011,0.256], + [45013,0.212], + [45015,0.253], + [45017,0.217], + [45019,0.207], + [45021,0.247], + [45023,0.239], + [45025,0.247], + [45027,0.223], + [45029,0.244], + [45031,0.243], + [45033,0.267], + [45035,0.271], + [45037,0.214], + [45039,0.227], + [45041,0.246], + [45043,0.216], + [45045,0.242], + [45047,0.237], + [45049,0.241], + [45051,0.201], + [45053,0.248], + [45055,0.245], + [45057,0.233], + [45059,0.232], + [45061,0.222], + [45063,0.245], + [45065,0.145], + [45067,0.244], + [45069,0.219], + [45071,0.228], + [45073,0.211], + [45075,0.232], + [45077,0.204], + [45079,0.228], + [45081,0.23], + [45083,0.244], + [45085,0.255], + [45087,0.228], + [45089,0.236], + [45091,0.255], + [46003,0.268], + [46005,0.242], + [46007,0.347], + [46009,0.197], + [46011,0.189], + [46013,0.232], + [46015,0.258], + [46017,0.392], + [46019,0.25], + [46021,0.19], + [46023,0.296], + [46025,0.237], + [46027,0.175], + [46029,0.248], + [46031,0.343], + [46033,0.198], + [46035,0.235], + [46037,0.218], + [46039,0.236], + [46041,0.34], + [46043,0.229], + [46045,0.24], + [46047,0.188], + [46049,0.235], + [46051,0.231], + [46053,0.226], + [46055,0.223], + [46057,0.306], + [46059,0.208], + [46061,0.325], + [46063,0.233], + [46065,0.237], + [46067,0.237], + [46069,0.224], + [46071,0.329], + [46073,0.21], + [46075,0.224], + [46077,0.219], + [46079,0.217], + [46081,0.196], + [46083,0.297], + [46085,0.295], + [46087,0.259], + [46089,0.218], + [46091,0.223], + [46093,0.252], + [46095,0.323], + [46097,0.241], + [46099,0.251], + [46101,0.261], + [46102,0.393], + [46103,0.246], + [46105,0.214], + [46107,0.196], + [46109,0.284], + [46111,0.218], + [46115,0.249], + [46117,0.243], + [46119,0.226], + [46121,0.401], + [46123,0.234], + [46125,0.238], + [46127,0.262], + [46129,0.221], + [46135,0.222], + [46137,0.391], + [47001,0.219], + [47003,0.268], + [47005,0.205], + [47007,0.215], + [47009,0.223], + [47011,0.23], + [47013,0.22], + [47015,0.225], + [47017,0.219], + [47019,0.201], + [47021,0.249], + [47023,0.233], + [47025,0.21], + [47027,0.209], + [47029,0.215], + [47031,0.244], + [47033,0.245], + [47035,0.191], + [47037,0.218], + [47039,0.215], + [47041,0.229], + [47043,0.25], + [47045,0.249], + [47047,0.231], + [47049,0.231], + [47051,0.218], + [47053,0.25], + [47055,0.221], + [47057,0.223], + [47059,0.212], + [47061,0.231], + [47063,0.236], + [47065,0.216], + [47067,0.219], + [47069,0.212], + [47071,0.217], + [47073,0.223], + [47075,0.256], + [47077,0.243], + [47079,0.217], + [47081,0.225], + [47083,0.236], + [47085,0.232], + [47087,0.204], + [47089,0.221], + [47091,0.184], + [47093,0.219], + [47095,0.167], + [47097,0.243], + [47099,0.251], + [47101,0.238], + [47103,0.233], + [47105,0.203], + [47107,0.226], + [47109,0.235], + [47111,0.25], + [47113,0.24], + [47115,0.218], + [47117,0.247], + [47119,0.243], + [47121,0.215], + [47123,0.229], + [47125,0.28], + [47127,0.222], + [47129,0.21], + [47131,0.229], + [47133,0.232], + [47135,0.226], + [47137,0.192], + [47139,0.221], + [47141,0.215], + [47143,0.234], + [47145,0.208], + [47147,0.257], + [47149,0.262], + [47151,0.253], + [47153,0.236], + [47155,0.221], + [47157,0.264], + [47159,0.242], + [47161,0.229], + [47163,0.206], + [47165,0.253], + [47167,0.272], + [47169,0.246], + [47171,0.202], + [47173,0.239], + [47175,0.209], + [47177,0.243], + [47179,0.202], + [47181,0.196], + [47183,0.201], + [47185,0.225], + [47187,0.293], + [47189,0.251], + [48001,0.196], + [48003,0.292], + [48005,0.267], + [48007,0.195], + [48009,0.241], + [48011,0.223], + [48013,0.286], + [48015,0.251], + [48017,0.309], + [48019,0.196], + [48021,0.262], + [48023,0.206], + [48025,0.219], + [48027,0.284], + [48029,0.271], + [48031,0.219], + [48033,0.215], + [48035,0.229], + [48037,0.243], + [48039,0.278], + [48041,0.204], + [48043,0.203], + [48045,0.221], + [48047,0.278], + [48049,0.239], + [48051,0.235], + [48053,0.232], + [48055,0.264], + [48057,0.265], + [48059,0.238], + [48061,0.33], + [48063,0.271], + [48065,0.257], + [48067,0.232], + [48069,0.313], + [48071,0.285], + [48073,0.259], + [48075,0.214], + [48077,0.227], + [48079,0.294], + [48081,0.211], + [48083,0.222], + [48085,0.287], + [48087,0.276], + [48089,0.238], + [48091,0.237], + [48093,0.242], + [48095,0.141], + [48097,0.256], + [48099,0.279], + [48101,0.233], + [48103,0.295], + [48105,0.267], + [48107,0.288], + [48109,0.278], + [48111,0.299], + [48113,0.276], + [48115,0.247], + [48117,0.322], + [48119,0.227], + [48121,0.275], + [48123,0.224], + [48125,0.201], + [48127,0.3], + [48129,0.206], + [48131,0.261], + [48133,0.224], + [48135,0.29], + [48137,0.208], + [48139,0.29], + [48141,0.301], + [48143,0.223], + [48145,0.217], + [48147,0.221], + [48149,0.219], + [48151,0.226], + [48153,0.289], + [48155,0.208], + [48157,0.297], + [48159,0.245], + [48161,0.234], + [48163,0.247], + [48165,0.348], + [48167,0.255], + [48169,0.197], + [48171,0.203], + [48173,0.287], + [48175,0.229], + [48177,0.271], + [48179,0.247], + [48181,0.241], + [48183,0.255], + [48185,0.228], + [48187,0.277], + [48189,0.288], + [48191,0.259], + [48193,0.213], + [48195,0.303], + [48197,0.246], + [48199,0.258], + [48201,0.28], + [48203,0.259], + [48205,0.226], + [48207,0.208], + [48209,0.247], + [48211,0.293], + [48213,0.227], + [48215,0.347], + [48217,0.243], + [48219,0.272], + [48221,0.213], + [48223,0.256], + [48225,0.208], + [48227,0.224], + [48229,0.301], + [48231,0.249], + [48233,0.263], + [48235,0.23], + [48237,0.22], + [48239,0.254], + [48241,0.249], + [48243,0.198], + [48245,0.239], + [48247,0.29], + [48249,0.288], + [48251,0.273], + [48253,0.185], + [48255,0.2], + [48257,0.288], + [48259,0.242], + [48261,0.245], + [48263,0.229], + [48265,0.202], + [48267,0.204], + [48269,0.238], + [48271,0.201], + [48273,0.251], + [48275,0.253], + [48277,0.243], + [48279,0.293], + [48281,0.248], + [48283,0.217], + [48285,0.231], + [48287,0.262], + [48289,0.223], + [48291,0.256], + [48293,0.236], + [48295,0.276], + [48297,0.204], + [48299,0.159], + [48301,0.11], + [48303,0.243], + [48305,0.278], + [48307,0.246], + [48309,0.254], + [48311,0.168], + [48313,0.22], + [48315,0.19], + [48317,0.303], + [48319,0.212], + [48321,0.264], + [48323,0.338], + [48325,0.258], + [48327,0.196], + [48329,0.274], + [48331,0.265], + [48333,0.243], + [48335,0.194], + [48337,0.23], + [48339,0.276], + [48341,0.32], + [48343,0.233], + [48345,0.218], + [48347,0.233], + [48349,0.271], + [48351,0.232], + [48353,0.259], + [48355,0.259], + [48357,0.316], + [48359,0.34], + [48361,0.251], + [48363,0.25], + [48365,0.247], + [48367,0.255], + [48369,0.313], + [48371,0.246], + [48373,0.211], + [48375,0.278], + [48377,0.29], + [48379,0.217], + [48381,0.249], + [48383,0.3], + [48385,0.199], + [48387,0.214], + [48389,0.228], + [48391,0.241], + [48393,0.254], + [48395,0.253], + [48397,0.3], + [48399,0.251], + [48401,0.232], + [48403,0.196], + [48405,0.21], + [48407,0.24], + [48409,0.282], + [48411,0.21], + [48413,0.319], + [48415,0.25], + [48417,0.247], + [48419,0.264], + [48421,0.302], + [48423,0.257], + [48425,0.265], + [48427,0.339], + [48429,0.239], + [48431,0.244], + [48433,0.228], + [48435,0.275], + [48437,0.261], + [48439,0.28], + [48441,0.245], + [48443,0.222], + [48445,0.259], + [48447,0.223], + [48449,0.306], + [48451,0.235], + [48453,0.239], + [48455,0.209], + [48457,0.2], + [48459,0.247], + [48461,0.273], + [48463,0.289], + [48465,0.298], + [48467,0.241], + [48469,0.267], + [48471,0.167], + [48473,0.247], + [48475,0.274], + [48477,0.221], + [48479,0.352], + [48481,0.268], + [48483,0.253], + [48485,0.231], + [48487,0.256], + [48489,0.268], + [48491,0.287], + [48493,0.264], + [48495,0.297], + [48497,0.261], + [48499,0.203], + [48501,0.317], + [48503,0.24], + [48505,0.343], + [48507,0.313], + [49001,0.339], + [49003,0.34], + [49005,0.316], + [49007,0.267], + [49009,0.229], + [49011,0.344], + [49013,0.339], + [49015,0.318], + [49017,0.267], + [49019,0.23], + [49021,0.302], + [49023,0.374], + [49025,0.243], + [49027,0.325], + [49029,0.354], + [49031,0.301], + [49033,0.311], + [49035,0.291], + [49037,0.34], + [49039,0.3], + [49041,0.317], + [49043,0.277], + [49045,0.361], + [49047,0.333], + [49049,0.352], + [49051,0.339], + [49053,0.302], + [49055,0.302], + [49057,0.3], + [50001,0.204], + [50003,0.205], + [50005,0.218], + [50007,0.2], + [50009,0.19], + [50011,0.247], + [50013,0.203], + [50015,0.223], + [50017,0.209], + [50019,0.213], + [50021,0.193], + [50023,0.207], + [50025,0.199], + [50027,0.199], + [51001,0.209], + [51003,0.215], + [51005,0.212], + [51007,0.222], + [51009,0.215], + [51011,0.222], + [51013,0.157], + [51015,0.214], + [51017,0.17], + [51019,0.223], + [51021,0.179], + [51023,0.224], + [51025,0.193], + [51027,0.187], + [51029,0.192], + [51031,0.22], + [51033,0.24], + [51035,0.207], + [51036,0.179], + [51037,0.23], + [51041,0.261], + [51043,0.23], + [51045,0.214], + [51047,0.259], + [51049,0.228], + [51051,0.209], + [51053,0.228], + [51057,0.22], + [51059,0.243], + [51061,0.252], + [51063,0.219], + [51065,0.23], + [51067,0.208], + [51069,0.251], + [51071,0.217], + [51073,0.221], + [51075,0.203], + [51077,0.19], + [51079,0.249], + [51081,0.164], + [51083,0.22], + [51085,0.25], + [51087,0.242], + [51089,0.205], + [51091,0.149], + [51093,0.228], + [51095,0.215], + [51097,0.208], + [51099,0.277], + [51101,0.247], + [51103,0.161], + [51105,0.202], + [51107,0.306], + [51109,0.221], + [51111,0.193], + [51113,0.223], + [51115,0.182], + [51117,0.195], + [51119,0.161], + [51121,0.16], + [51125,0.193], + [51127,0.223], + [51131,0.197], + [51133,0.164], + [51135,0.206], + [51137,0.229], + [51139,0.216], + [51141,0.193], + [51143,0.212], + [51145,0.231], + [51147,0.174], + [51149,0.225], + [51153,0.289], + [51155,0.195], + [51157,0.199], + [51159,0.172], + [51161,0.218], + [51163,0.191], + [51165,0.237], + [51167,0.204], + [51169,0.193], + [51171,0.22], + [51173,0.209], + [51175,0.211], + [51177,0.278], + [51179,0.288], + [51181,0.211], + [51183,0.168], + [51185,0.204], + [51187,0.242], + [51191,0.196], + [51193,0.2], + [51195,0.208], + [51197,0.209], + [51199,0.264], + [51510,0.171], + [51520,0.208], + [51530,0.214], + [51540,0.149], + [51550,0.259], + [51570,0.223], + [51580,0.213], + [51590,0.215], + [51595,0.258], + [51600,0.204], + [51610,0.247], + [51620,0.238], + [51630,0.197], + [51640,0.219], + [51650,0.228], + [51660,0.15], + [51670,0.251], + [51678,0.101], + [51680,0.196], + [51683,0.284], + [51685,0.284], + [51690,0.214], + [51700,0.243], + [51710,0.208], + [51720,0.218], + [51730,0.207], + [51735,0.244], + [51740,0.237], + [51750,0.131], + [51760,0.186], + [51770,0.218], + [51775,0.199], + [51790,0.194], + [51800,0.262], + [51810,0.24], + [51820,0.233], + [51830,0.1], + [51840,0.222], + [53001,0.348], + [53003,0.218], + [53005,0.272], + [53007,0.249], + [53009,0.182], + [53011,0.265], + [53013,0.202], + [53015,0.241], + [53017,0.272], + [53019,0.198], + [53021,0.342], + [53023,0.2], + [53025,0.305], + [53027,0.216], + [53029,0.208], + [53031,0.149], + [53033,0.214], + [53035,0.225], + [53037,0.183], + [53039,0.221], + [53041,0.231], + [53043,0.227], + [53045,0.204], + [53047,0.235], + [53049,0.179], + [53051,0.216], + [53053,0.249], + [53055,0.158], + [53057,0.237], + [53059,0.222], + [53061,0.244], + [53063,0.232], + [53065,0.241], + [53067,0.23], + [53069,0.185], + [53071,0.225], + [53073,0.21], + [53075,0.151], + [53077,0.304], + [54001,0.217], + [54003,0.252], + [54005,0.228], + [54007,0.207], + [54009,0.19], + [54011,0.196], + [54013,0.199], + [54015,0.236], + [54017,0.204], + [54019,0.205], + [54021,0.145], + [54023,0.214], + [54025,0.201], + [54027,0.225], + [54029,0.201], + [54031,0.215], + [54033,0.22], + [54035,0.226], + [54037,0.237], + [54039,0.206], + [54041,0.207], + [54043,0.227], + [54045,0.204], + [54047,0.2], + [54049,0.199], + [54051,0.208], + [54053,0.217], + [54055,0.205], + [54057,0.208], + [54059,0.22], + [54061,0.159], + [54063,0.21], + [54065,0.205], + [54067,0.212], + [54069,0.19], + [54071,0.19], + [54073,0.204], + [54075,0.179], + [54077,0.195], + [54079,0.237], + [54081,0.208], + [54083,0.194], + [54085,0.211], + [54087,0.217], + [54089,0.181], + [54091,0.208], + [54093,0.192], + [54095,0.209], + [54097,0.206], + [54099,0.224], + [54101,0.216], + [54103,0.209], + [54105,0.21], + [54107,0.218], + [54109,0.215], + [55001,0.164], + [55003,0.232], + [55005,0.221], + [55007,0.19], + [55009,0.249], + [55011,0.222], + [55013,0.199], + [55015,0.27], + [55017,0.236], + [55019,0.291], + [55021,0.233], + [55023,0.224], + [55025,0.217], + [55027,0.221], + [55029,0.183], + [55031,0.214], + [55033,0.207], + [55035,0.211], + [55037,0.175], + [55039,0.227], + [55041,0.22], + [55043,0.213], + [55045,0.243], + [55047,0.23], + [55049,0.249], + [55051,0.166], + [55053,0.226], + [55055,0.237], + [55057,0.213], + [55059,0.257], + [55061,0.236], + [55063,0.213], + [55065,0.258], + [55067,0.211], + [55069,0.219], + [55071,0.224], + [55073,0.245], + [55075,0.205], + [55077,0.2], + [55078,0.326], + [55079,0.249], + [55081,0.261], + [55083,0.224], + [55085,0.184], + [55087,0.251], + [55089,0.236], + [55091,0.228], + [55093,0.223], + [55095,0.238], + [55097,0.208], + [55099,0.191], + [55101,0.248], + [55103,0.233], + [55105,0.251], + [55107,0.225], + [55109,0.271], + [55111,0.238], + [55113,0.209], + [55115,0.228], + [55117,0.239], + [55119,0.246], + [55121,0.242], + [55123,0.265], + [55125,0.178], + [55127,0.235], + [55129,0.203], + [55131,0.245], + [55133,0.241], + [55135,0.226], + [55137,0.197], + [55139,0.216], + [55141,0.227], + [56001,0.166], + [56003,0.258], + [56005,0.281], + [56007,0.236], + [56009,0.254], + [56011,0.238], + [56013,0.255], + [56015,0.204], + [56017,0.2], + [56019,0.221], + [56021,0.244], + [56023,0.282], + [56025,0.239], + [56027,0.189], + [56029,0.21], + [56031,0.204], + [56033,0.223], + [56035,0.237], + [56037,0.271], + [56039,0.191], + [56041,0.302], + [56043,0.255], + [56045,0.218] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-under5-2010.json b/data/regional/united-states/demographics/age/us-age-under5-2010.json new file mode 100644 index 0000000..89c090c --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-under5-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Under 5", + "description" : "Percent of the population under age 5.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.under5.2010"], + [1001,0.066], + [1003,0.061], + [1005,0.062], + [1007,0.06], + [1009,0.063], + [1011,0.068], + [1013,0.065], + [1015,0.061], + [1017,0.057], + [1019,0.053], + [1021,0.069], + [1023,0.054], + [1025,0.057], + [1027,0.057], + [1029,0.063], + [1031,0.066], + [1033,0.058], + [1035,0.059], + [1037,0.049], + [1039,0.06], + [1041,0.06], + [1043,0.061], + [1045,0.073], + [1047,0.073], + [1049,0.071], + [1051,0.061], + [1053,0.062], + [1055,0.059], + [1057,0.058], + [1059,0.071], + [1061,0.059], + [1063,0.061], + [1065,0.061], + [1067,0.054], + [1069,0.066], + [1071,0.056], + [1073,0.067], + [1075,0.059], + [1077,0.056], + [1079,0.063], + [1081,0.062], + [1083,0.065], + [1085,0.066], + [1087,0.054], + [1089,0.062], + [1091,0.062], + [1093,0.056], + [1095,0.07], + [1097,0.068], + [1099,0.06], + [1101,0.069], + [1103,0.063], + [1105,0.064], + [1107,0.06], + [1109,0.056], + [1111,0.06], + [1113,0.076], + [1115,0.066], + [1117,0.067], + [1119,0.055], + [1121,0.06], + [1123,0.058], + [1125,0.06], + [1127,0.058], + [1129,0.06], + [1131,0.061], + [1133,0.054], + [2013,0.039], + [2016,0.037], + [2020,0.075], + [2050,0.106], + [2060,0.048], + [2068,0.062], + [2070,0.093], + [2090,0.081], + [2100,0.051], + [2105,0.058], + [2110,0.063], + [2122,0.063], + [2130,0.067], + [2150,0.085], + [2158,0.121], + [2164,0.085], + [2170,0.078], + [2180,0.107], + [2185,0.079], + [2188,0.117], + [2195,0.06], + [2198,0.075], + [2220,0.07], + [2230,0.051], + [2240,0.069], + [2261,0.064], + [2275,0.054], + [2282,0.06], + [2290,0.079], + [4001,0.083], + [4003,0.065], + [4005,0.067], + [4007,0.057], + [4009,0.086], + [4011,0.078], + [4012,0.05], + [4013,0.074], + [4015,0.055], + [4017,0.081], + [4019,0.064], + [4021,0.08], + [4023,0.078], + [4025,0.05], + [4027,0.077], + [5001,0.06], + [5003,0.065], + [5005,0.049], + [5007,0.081], + [5009,0.061], + [5011,0.067], + [5013,0.049], + [5015,0.059], + [5017,0.069], + [5019,0.054], + [5021,0.056], + [5023,0.053], + [5025,0.068], + [5027,0.06], + [5029,0.066], + [5031,0.073], + [5033,0.069], + [5035,0.08], + [5037,0.063], + [5039,0.058], + [5041,0.076], + [5043,0.063], + [5045,0.07], + [5047,0.066], + [5049,0.056], + [5051,0.056], + [5053,0.061], + [5055,0.068], + [5057,0.078], + [5059,0.063], + [5061,0.074], + [5063,0.067], + [5065,0.047], + [5067,0.056], + [5069,0.064], + [5071,0.07], + [5073,0.059], + [5075,0.058], + [5077,0.057], + [5079,0.05], + [5081,0.06], + [5083,0.06], + [5085,0.07], + [5087,0.062], + [5089,0.046], + [5091,0.072], + [5093,0.076], + [5095,0.06], + [5097,0.053], + [5099,0.066], + [5101,0.052], + [5103,0.069], + [5105,0.058], + [5107,0.076], + [5109,0.065], + [5111,0.065], + [5113,0.061], + [5115,0.067], + [5117,0.052], + [5119,0.07], + [5121,0.061], + [5123,0.067], + [5125,0.066], + [5127,0.065], + [5129,0.05], + [5131,0.072], + [5133,0.089], + [5135,0.054], + [5137,0.056], + [5139,0.066], + [5141,0.051], + [5143,0.075], + [5145,0.066], + [5147,0.06], + [5149,0.072], + [6001,0.065], + [6003,0.06], + [6005,0.038], + [6007,0.056], + [6009,0.044], + [6011,0.086], + [6013,0.064], + [6015,0.06], + [6017,0.053], + [6019,0.085], + [6021,0.077], + [6023,0.057], + [6025,0.078], + [6027,0.058], + [6029,0.087], + [6031,0.084], + [6033,0.056], + [6035,0.047], + [6037,0.066], + [6039,0.079], + [6041,0.055], + [6043,0.042], + [6045,0.061], + [6047,0.087], + [6049,0.056], + [6051,0.063], + [6053,0.078], + [6055,0.06], + [6057,0.044], + [6059,0.064], + [6061,0.06], + [6063,0.044], + [6065,0.074], + [6067,0.071], + [6069,0.074], + [6071,0.078], + [6073,0.066], + [6075,0.044], + [6077,0.079], + [6079,0.049], + [6081,0.065], + [6083,0.065], + [6085,0.07], + [6087,0.057], + [6089,0.058], + [6091,0.045], + [6093,0.055], + [6095,0.065], + [6097,0.058], + [6099,0.077], + [6101,0.076], + [6103,0.069], + [6105,0.045], + [6107,0.093], + [6109,0.042], + [6111,0.067], + [6113,0.063], + [6115,0.086], + [8001,0.085], + [8003,0.078], + [8005,0.071], + [8007,0.049], + [8009,0.056], + [8011,0.044], + [8013,0.056], + [8014,0.071], + [8015,0.043], + [8017,0.071], + [8019,0.049], + [8021,0.079], + [8023,0.05], + [8025,0.031], + [8027,0.032], + [8029,0.057], + [8031,0.073], + [8033,0.066], + [8035,0.077], + [8037,0.075], + [8039,0.05], + [8041,0.073], + [8043,0.045], + [8045,0.08], + [8047,0.052], + [8049,0.056], + [8051,0.051], + [8053,0.071], + [8055,0.041], + [8057,0.044], + [8059,0.057], + [8061,0.05], + [8063,0.067], + [8065,0.077], + [8067,0.056], + [8069,0.059], + [8071,0.056], + [8073,0.056], + [8075,0.052], + [8077,0.068], + [8079,0.028], + [8081,0.078], + [8083,0.063], + [8085,0.064], + [8087,0.077], + [8089,0.063], + [8091,0.041], + [8093,0.049], + [8095,0.063], + [8097,0.044], + [8099,0.077], + [8101,0.066], + [8103,0.074], + [8105,0.066], + [8107,0.055], + [8109,0.069], + [8111,0.052], + [8113,0.062], + [8115,0.051], + [8117,0.055], + [8119,0.047], + [8121,0.057], + [8123,0.079], + [8125,0.077], + [9001,0.062], + [9003,0.057], + [9005,0.048], + [9007,0.05], + [9009,0.056], + [9011,0.055], + [9013,0.046], + [9015,0.055], + [10001,0.069], + [10003,0.062], + [10005,0.058], + [11001,0.054], + [12001,0.053], + [12003,0.071], + [12005,0.063], + [12007,0.059], + [12009,0.049], + [12011,0.059], + [12013,0.062], + [12015,0.035], + [12017,0.039], + [12019,0.062], + [12021,0.052], + [12023,0.063], + [12027,0.065], + [12029,0.053], + [12031,0.069], + [12033,0.063], + [12035,0.05], + [12037,0.051], + [12039,0.069], + [12041,0.054], + [12043,0.056], + [12045,0.041], + [12047,0.052], + [12049,0.08], + [12051,0.08], + [12053,0.049], + [12055,0.05], + [12057,0.065], + [12059,0.057], + [12061,0.047], + [12063,0.052], + [12065,0.053], + [12067,0.055], + [12069,0.055], + [12071,0.053], + [12073,0.056], + [12075,0.056], + [12077,0.055], + [12079,0.063], + [12081,0.057], + [12083,0.052], + [12085,0.042], + [12086,0.06], + [12087,0.044], + [12089,0.054], + [12091,0.064], + [12093,0.066], + [12095,0.065], + [12097,0.066], + [12099,0.054], + [12101,0.055], + [12103,0.046], + [12105,0.065], + [12107,0.063], + [12109,0.053], + [12111,0.059], + [12113,0.061], + [12115,0.039], + [12117,0.055], + [12119,0.024], + [12121,0.062], + [12123,0.057], + [12125,0.053], + [12127,0.049], + [12129,0.057], + [12131,0.061], + [12133,0.058], + [13001,0.072], + [13003,0.085], + [13005,0.074], + [13007,0.064], + [13009,0.061], + [13011,0.062], + [13013,0.084], + [13015,0.07], + [13017,0.079], + [13019,0.069], + [13021,0.074], + [13023,0.058], + [13025,0.072], + [13027,0.067], + [13029,0.073], + [13031,0.06], + [13033,0.076], + [13035,0.06], + [13037,0.055], + [13039,0.079], + [13043,0.072], + [13045,0.071], + [13047,0.064], + [13049,0.06], + [13051,0.07], + [13053,0.095], + [13055,0.061], + [13057,0.074], + [13059,0.06], + [13061,0.064], + [13063,0.085], + [13065,0.077], + [13067,0.07], + [13069,0.073], + [13071,0.083], + [13073,0.067], + [13075,0.076], + [13077,0.073], + [13079,0.058], + [13081,0.072], + [13083,0.055], + [13085,0.057], + [13087,0.067], + [13089,0.073], + [13091,0.062], + [13093,0.057], + [13095,0.076], + [13097,0.074], + [13099,0.065], + [13101,0.089], + [13103,0.07], + [13105,0.065], + [13107,0.073], + [13109,0.077], + [13111,0.048], + [13113,0.046], + [13115,0.068], + [13117,0.077], + [13119,0.058], + [13121,0.068], + [13123,0.059], + [13125,0.065], + [13127,0.067], + [13129,0.074], + [13131,0.076], + [13133,0.056], + [13135,0.077], + [13137,0.067], + [13139,0.079], + [13141,0.046], + [13143,0.064], + [13145,0.055], + [13147,0.061], + [13149,0.063], + [13151,0.068], + [13153,0.073], + [13155,0.063], + [13157,0.071], + [13159,0.068], + [13161,0.079], + [13163,0.069], + [13165,0.074], + [13167,0.055], + [13169,0.066], + [13171,0.059], + [13173,0.089], + [13175,0.071], + [13177,0.066], + [13179,0.103], + [13181,0.053], + [13183,0.094], + [13185,0.076], + [13187,0.059], + [13189,0.071], + [13191,0.055], + [13193,0.058], + [13195,0.061], + [13197,0.065], + [13199,0.065], + [13201,0.069], + [13205,0.074], + [13207,0.055], + [13209,0.061], + [13211,0.057], + [13213,0.071], + [13215,0.074], + [13217,0.076], + [13219,0.059], + [13221,0.059], + [13223,0.079], + [13225,0.066], + [13227,0.059], + [13229,0.07], + [13231,0.057], + [13233,0.08], + [13235,0.059], + [13237,0.063], + [13239,0.053], + [13241,0.05], + [13243,0.065], + [13245,0.074], + [13247,0.068], + [13249,0.063], + [13251,0.068], + [13253,0.057], + [13255,0.072], + [13257,0.062], + [13259,0.045], + [13261,0.072], + [13263,0.053], + [13265,0.056], + [13267,0.059], + [13269,0.061], + [13271,0.057], + [13273,0.072], + [13275,0.068], + [13277,0.074], + [13279,0.082], + [13281,0.037], + [13283,0.072], + [13285,0.071], + [13287,0.067], + [13289,0.058], + [13291,0.043], + [13293,0.062], + [13295,0.061], + [13297,0.069], + [13299,0.069], + [13301,0.069], + [13303,0.066], + [13305,0.072], + [13307,0.059], + [13309,0.055], + [13311,0.059], + [13313,0.079], + [13315,0.052], + [13317,0.06], + [13319,0.069], + [13321,0.066], + [15001,0.064], + [15003,0.064], + [15005,0], + [15007,0.064], + [15009,0.065], + [16001,0.072], + [16003,0.048], + [16005,0.084], + [16007,0.068], + [16009,0.065], + [16011,0.097], + [16013,0.066], + [16015,0.044], + [16017,0.052], + [16019,0.096], + [16021,0.063], + [16023,0.074], + [16025,0.056], + [16027,0.091], + [16029,0.079], + [16031,0.093], + [16033,0.084], + [16035,0.043], + [16037,0.05], + [16039,0.093], + [16041,0.095], + [16043,0.088], + [16045,0.066], + [16047,0.083], + [16049,0.053], + [16051,0.108], + [16053,0.095], + [16055,0.065], + [16057,0.057], + [16059,0.054], + [16061,0.062], + [16063,0.086], + [16065,0.096], + [16067,0.084], + [16069,0.056], + [16071,0.076], + [16073,0.077], + [16075,0.077], + [16077,0.092], + [16079,0.049], + [16081,0.097], + [16083,0.082], + [16085,0.052], + [16087,0.056], + [17001,0.063], + [17003,0.071], + [17005,0.054], + [17007,0.069], + [17009,0.043], + [17011,0.058], + [17013,0.054], + [17015,0.047], + [17017,0.068], + [17019,0.058], + [17021,0.06], + [17023,0.057], + [17025,0.062], + [17027,0.058], + [17029,0.052], + [17031,0.066], + [17033,0.051], + [17035,0.066], + [17037,0.063], + [17039,0.058], + [17041,0.07], + [17043,0.062], + [17045,0.057], + [17047,0.054], + [17049,0.066], + [17051,0.058], + [17053,0.058], + [17055,0.06], + [17057,0.052], + [17059,0.059], + [17061,0.059], + [17063,0.073], + [17065,0.059], + [17067,0.059], + [17069,0.056], + [17071,0.047], + [17073,0.06], + [17075,0.055], + [17077,0.052], + [17079,0.057], + [17081,0.063], + [17083,0.056], + [17085,0.053], + [17087,0.045], + [17089,0.077], + [17091,0.068], + [17093,0.088], + [17095,0.052], + [17097,0.067], + [17099,0.058], + [17101,0.052], + [17103,0.057], + [17105,0.057], + [17107,0.053], + [17109,0.046], + [17111,0.064], + [17113,0.063], + [17115,0.063], + [17117,0.059], + [17119,0.061], + [17121,0.065], + [17123,0.054], + [17125,0.052], + [17127,0.062], + [17129,0.058], + [17131,0.059], + [17133,0.059], + [17135,0.057], + [17137,0.055], + [17139,0.067], + [17141,0.059], + [17143,0.068], + [17145,0.053], + [17147,0.056], + [17149,0.062], + [17151,0.046], + [17153,0.058], + [17155,0.052], + [17157,0.051], + [17159,0.06], + [17161,0.064], + [17163,0.068], + [17165,0.058], + [17167,0.063], + [17169,0.056], + [17171,0.06], + [17173,0.057], + [17175,0.053], + [17177,0.059], + [17179,0.064], + [17181,0.058], + [17183,0.067], + [17185,0.06], + [17187,0.058], + [17189,0.057], + [17191,0.062], + [17193,0.06], + [17195,0.06], + [17197,0.072], + [17199,0.061], + [17201,0.067], + [17203,0.065], + [18001,0.093], + [18003,0.075], + [18005,0.068], + [18007,0.07], + [18009,0.059], + [18011,0.069], + [18013,0.051], + [18015,0.061], + [18017,0.068], + [18019,0.066], + [18021,0.058], + [18023,0.075], + [18025,0.061], + [18027,0.084], + [18029,0.062], + [18031,0.065], + [18033,0.067], + [18035,0.054], + [18037,0.066], + [18039,0.081], + [18041,0.062], + [18043,0.061], + [18045,0.059], + [18047,0.063], + [18049,0.065], + [18051,0.065], + [18053,0.058], + [18055,0.06], + [18057,0.079], + [18059,0.063], + [18061,0.061], + [18063,0.07], + [18065,0.054], + [18067,0.062], + [18069,0.06], + [18071,0.065], + [18073,0.065], + [18075,0.07], + [18077,0.058], + [18079,0.066], + [18081,0.069], + [18083,0.059], + [18085,0.069], + [18087,0.101], + [18089,0.067], + [18091,0.059], + [18093,0.059], + [18095,0.062], + [18097,0.075], + [18099,0.069], + [18101,0.065], + [18103,0.057], + [18105,0.047], + [18107,0.065], + [18109,0.062], + [18111,0.057], + [18113,0.073], + [18115,0.049], + [18117,0.062], + [18119,0.056], + [18121,0.057], + [18123,0.06], + [18125,0.06], + [18127,0.06], + [18129,0.057], + [18131,0.059], + [18133,0.051], + [18135,0.059], + [18137,0.066], + [18139,0.059], + [18141,0.066], + [18143,0.061], + [18145,0.061], + [18147,0.059], + [18149,0.064], + [18151,0.055], + [18153,0.054], + [18155,0.074], + [18157,0.064], + [18159,0.052], + [18161,0.059], + [18163,0.065], + [18165,0.055], + [18167,0.058], + [18169,0.059], + [18171,0.058], + [18173,0.064], + [18175,0.06], + [18177,0.063], + [18179,0.065], + [18181,0.06], + [18183,0.063], + [19001,0.058], + [19003,0.058], + [19005,0.066], + [19007,0.063], + [19009,0.055], + [19011,0.063], + [19013,0.065], + [19015,0.059], + [19017,0.058], + [19019,0.075], + [19021,0.072], + [19023,0.066], + [19025,0.057], + [19027,0.07], + [19029,0.066], + [19031,0.062], + [19033,0.058], + [19035,0.056], + [19037,0.066], + [19039,0.074], + [19041,0.065], + [19043,0.062], + [19045,0.063], + [19047,0.074], + [19049,0.087], + [19051,0.085], + [19053,0.063], + [19055,0.064], + [19057,0.065], + [19059,0.049], + [19061,0.064], + [19063,0.064], + [19065,0.06], + [19067,0.064], + [19069,0.063], + [19071,0.063], + [19073,0.056], + [19075,0.063], + [19077,0.056], + [19079,0.062], + [19081,0.06], + [19083,0.06], + [19085,0.062], + [19087,0.058], + [19089,0.072], + [19091,0.064], + [19093,0.069], + [19095,0.061], + [19097,0.057], + [19099,0.059], + [19101,0.045], + [19103,0.062], + [19105,0.059], + [19107,0.058], + [19109,0.058], + [19111,0.058], + [19113,0.067], + [19115,0.059], + [19117,0.062], + [19119,0.08], + [19121,0.07], + [19123,0.068], + [19125,0.067], + [19127,0.071], + [19129,0.064], + [19131,0.062], + [19133,0.054], + [19135,0.065], + [19137,0.055], + [19139,0.072], + [19141,0.064], + [19143,0.062], + [19145,0.058], + [19147,0.062], + [19149,0.066], + [19151,0.059], + [19153,0.076], + [19155,0.068], + [19157,0.053], + [19159,0.065], + [19161,0.058], + [19163,0.068], + [19165,0.056], + [19167,0.078], + [19169,0.054], + [19171,0.063], + [19173,0.059], + [19175,0.066], + [19177,0.065], + [19179,0.066], + [19181,0.064], + [19183,0.064], + [19185,0.062], + [19187,0.059], + [19189,0.055], + [19191,0.051], + [19193,0.078], + [19195,0.054], + [19197,0.065], + [20001,0.066], + [20003,0.069], + [20005,0.065], + [20007,0.063], + [20009,0.072], + [20011,0.074], + [20013,0.073], + [20015,0.066], + [20017,0.054], + [20019,0.049], + [20021,0.065], + [20023,0.051], + [20025,0.065], + [20027,0.068], + [20029,0.065], + [20031,0.057], + [20033,0.053], + [20035,0.068], + [20037,0.064], + [20039,0.051], + [20041,0.065], + [20043,0.057], + [20045,0.056], + [20047,0.059], + [20049,0.059], + [20051,0.065], + [20053,0.053], + [20055,0.096], + [20057,0.096], + [20059,0.071], + [20061,0.111], + [20063,0.067], + [20065,0.055], + [20067,0.09], + [20069,0.085], + [20071,0.065], + [20073,0.06], + [20075,0.094], + [20077,0.067], + [20079,0.068], + [20081,0.081], + [20083,0.059], + [20085,0.067], + [20087,0.057], + [20089,0.048], + [20091,0.072], + [20093,0.078], + [20095,0.058], + [20097,0.052], + [20099,0.069], + [20101,0.049], + [20103,0.068], + [20105,0.064], + [20107,0.056], + [20109,0.055], + [20111,0.07], + [20113,0.062], + [20115,0.053], + [20117,0.065], + [20119,0.074], + [20121,0.065], + [20123,0.059], + [20125,0.069], + [20127,0.052], + [20129,0.066], + [20131,0.065], + [20133,0.069], + [20135,0.054], + [20137,0.05], + [20139,0.062], + [20141,0.054], + [20143,0.057], + [20145,0.055], + [20147,0.062], + [20149,0.085], + [20151,0.066], + [20153,0.052], + [20155,0.066], + [20157,0.051], + [20159,0.062], + [20161,0.068], + [20163,0.063], + [20165,0.049], + [20167,0.057], + [20169,0.072], + [20171,0.076], + [20173,0.079], + [20175,0.1], + [20177,0.07], + [20179,0.067], + [20181,0.067], + [20183,0.049], + [20185,0.057], + [20187,0.082], + [20189,0.085], + [20191,0.067], + [20193,0.066], + [20195,0.045], + [20197,0.066], + [20199,0.055], + [20201,0.058], + [20203,0.074], + [20205,0.065], + [20207,0.054], + [20209,0.087], + [21001,0.063], + [21003,0.067], + [21005,0.067], + [21007,0.052], + [21009,0.065], + [21011,0.071], + [21013,0.055], + [21015,0.076], + [21017,0.062], + [21019,0.059], + [21021,0.053], + [21023,0.067], + [21025,0.061], + [21027,0.061], + [21029,0.063], + [21031,0.063], + [21033,0.061], + [21035,0.052], + [21037,0.064], + [21039,0.063], + [21041,0.074], + [21043,0.063], + [21045,0.062], + [21047,0.098], + [21049,0.063], + [21051,0.059], + [21053,0.063], + [21055,0.067], + [21057,0.064], + [21059,0.069], + [21061,0.055], + [21063,0.057], + [21065,0.058], + [21067,0.065], + [21069,0.064], + [21071,0.062], + [21073,0.061], + [21075,0.059], + [21077,0.07], + [21079,0.062], + [21081,0.078], + [21083,0.066], + [21085,0.063], + [21087,0.06], + [21089,0.058], + [21091,0.065], + [21093,0.076], + [21095,0.065], + [21097,0.061], + [21099,0.065], + [21101,0.067], + [21103,0.061], + [21105,0.058], + [21107,0.065], + [21109,0.061], + [21111,0.066], + [21113,0.073], + [21115,0.058], + [21117,0.072], + [21119,0.058], + [21121,0.068], + [21123,0.062], + [21125,0.065], + [21127,0.067], + [21129,0.047], + [21131,0.057], + [21133,0.062], + [21135,0.062], + [21137,0.066], + [21139,0.057], + [21141,0.064], + [21143,0.041], + [21145,0.06], + [21147,0.059], + [21149,0.058], + [21151,0.061], + [21153,0.06], + [21155,0.067], + [21157,0.053], + [21159,0.057], + [21161,0.068], + [21163,0.077], + [21165,0.055], + [21167,0.06], + [21169,0.064], + [21171,0.059], + [21173,0.068], + [21175,0.052], + [21177,0.056], + [21179,0.069], + [21181,0.063], + [21183,0.071], + [21185,0.057], + [21187,0.064], + [21189,0.055], + [21191,0.062], + [21193,0.059], + [21195,0.059], + [21197,0.068], + [21199,0.061], + [21201,0.061], + [21203,0.057], + [21205,0.058], + [21207,0.06], + [21209,0.075], + [21211,0.066], + [21213,0.067], + [21215,0.065], + [21217,0.064], + [21219,0.079], + [21221,0.057], + [21223,0.063], + [21225,0.061], + [21227,0.064], + [21229,0.059], + [21231,0.061], + [21233,0.068], + [21235,0.061], + [21237,0.065], + [21239,0.058], + [22001,0.076], + [22003,0.065], + [22005,0.078], + [22007,0.063], + [22009,0.067], + [22011,0.069], + [22013,0.059], + [22015,0.074], + [22017,0.07], + [22019,0.072], + [22021,0.062], + [22023,0.058], + [22025,0.063], + [22027,0.053], + [22029,0.069], + [22031,0.067], + [22033,0.067], + [22035,0.073], + [22037,0.054], + [22039,0.075], + [22041,0.075], + [22043,0.064], + [22045,0.075], + [22047,0.062], + [22049,0.067], + [22051,0.066], + [22053,0.073], + [22055,0.071], + [22057,0.071], + [22059,0.064], + [22061,0.061], + [22063,0.076], + [22065,0.067], + [22067,0.069], + [22069,0.067], + [22071,0.064], + [22073,0.073], + [22075,0.069], + [22077,0.062], + [22079,0.07], + [22081,0.073], + [22083,0.071], + [22085,0.068], + [22087,0.079], + [22089,0.07], + [22091,0.074], + [22093,0.069], + [22095,0.073], + [22097,0.076], + [22099,0.073], + [22101,0.069], + [22103,0.065], + [22105,0.072], + [22107,0.07], + [22109,0.073], + [22111,0.065], + [22113,0.074], + [22115,0.092], + [22117,0.068], + [22119,0.064], + [22121,0.07], + [22123,0.066], + [22125,0.04], + [22127,0.063], + [23001,0.064], + [23003,0.049], + [23005,0.052], + [23007,0.049], + [23009,0.048], + [23011,0.052], + [23013,0.048], + [23015,0.047], + [23017,0.051], + [23019,0.052], + [23021,0.044], + [23023,0.054], + [23025,0.052], + [23027,0.053], + [23029,0.051], + [23031,0.052], + [24001,0.047], + [24003,0.064], + [24005,0.06], + [24009,0.056], + [24011,0.07], + [24013,0.054], + [24015,0.064], + [24017,0.064], + [24019,0.062], + [24021,0.064], + [24023,0.052], + [24025,0.061], + [24027,0.06], + [24029,0.049], + [24031,0.066], + [24033,0.068], + [24035,0.057], + [24037,0.072], + [24039,0.048], + [24041,0.049], + [24043,0.061], + [24045,0.062], + [24047,0.045], + [24510,0.066], + [25001,0.041], + [25003,0.047], + [25005,0.057], + [25007,0.053], + [25009,0.059], + [25011,0.048], + [25013,0.06], + [25015,0.039], + [25017,0.057], + [25019,0.067], + [25021,0.056], + [25023,0.058], + [25025,0.055], + [25027,0.059], + [26001,0.03], + [26003,0.039], + [26005,0.067], + [26007,0.051], + [26009,0.049], + [26011,0.047], + [26013,0.047], + [26015,0.06], + [26017,0.058], + [26019,0.053], + [26021,0.061], + [26023,0.066], + [26025,0.064], + [26027,0.058], + [26029,0.053], + [26031,0.047], + [26033,0.052], + [26035,0.057], + [26037,0.059], + [26039,0.047], + [26041,0.054], + [26043,0.05], + [26045,0.057], + [26047,0.052], + [26049,0.064], + [26051,0.049], + [26053,0.047], + [26055,0.056], + [26057,0.054], + [26059,0.06], + [26061,0.058], + [26063,0.049], + [26065,0.057], + [26067,0.064], + [26069,0.04], + [26071,0.042], + [26073,0.052], + [26075,0.059], + [26077,0.063], + [26079,0.061], + [26081,0.073], + [26083,0.045], + [26085,0.045], + [26087,0.052], + [26089,0.043], + [26091,0.057], + [26093,0.055], + [26095,0.046], + [26097,0.042], + [26099,0.058], + [26101,0.043], + [26103,0.052], + [26105,0.057], + [26107,0.052], + [26109,0.049], + [26111,0.056], + [26113,0.06], + [26115,0.057], + [26117,0.061], + [26119,0.039], + [26121,0.066], + [26123,0.062], + [26125,0.057], + [26127,0.067], + [26129,0.048], + [26131,0.035], + [26133,0.062], + [26135,0.05], + [26137,0.059], + [26139,0.067], + [26141,0.04], + [26143,0.039], + [26145,0.059], + [26147,0.057], + [26149,0.069], + [26151,0.058], + [26153,0.048], + [26155,0.056], + [26157,0.056], + [26159,0.064], + [26161,0.056], + [26163,0.065], + [26165,0.068], + [27001,0.048], + [27003,0.068], + [27005,0.067], + [27007,0.076], + [27009,0.074], + [27011,0.055], + [27013,0.06], + [27015,0.061], + [27017,0.063], + [27019,0.074], + [27021,0.061], + [27023,0.067], + [27025,0.061], + [27027,0.069], + [27029,0.07], + [27031,0.042], + [27033,0.06], + [27035,0.064], + [27037,0.07], + [27039,0.074], + [27041,0.06], + [27043,0.057], + [27045,0.069], + [27047,0.061], + [27049,0.063], + [27051,0.062], + [27053,0.066], + [27055,0.059], + [27057,0.062], + [27059,0.072], + [27061,0.055], + [27063,0.059], + [27065,0.06], + [27067,0.069], + [27069,0.049], + [27071,0.048], + [27073,0.052], + [27075,0.054], + [27077,0.052], + [27079,0.067], + [27081,0.065], + [27083,0.072], + [27085,0.067], + [27087,0.089], + [27089,0.058], + [27091,0.058], + [27093,0.07], + [27095,0.071], + [27097,0.068], + [27099,0.072], + [27101,0.06], + [27103,0.065], + [27105,0.079], + [27107,0.06], + [27109,0.075], + [27111,0.058], + [27113,0.068], + [27115,0.058], + [27117,0.069], + [27119,0.066], + [27121,0.059], + [27123,0.069], + [27125,0.069], + [27127,0.067], + [27129,0.057], + [27131,0.063], + [27133,0.071], + [27135,0.064], + [27137,0.055], + [27139,0.082], + [27141,0.077], + [27143,0.069], + [27145,0.065], + [27147,0.073], + [27149,0.062], + [27151,0.057], + [27153,0.068], + [27155,0.049], + [27157,0.061], + [27159,0.066], + [27161,0.064], + [27163,0.064], + [27165,0.069], + [27167,0.056], + [27169,0.053], + [27171,0.086], + [27173,0.063], + [28001,0.062], + [28003,0.067], + [28005,0.067], + [28007,0.075], + [28009,0.066], + [28011,0.075], + [28013,0.071], + [28015,0.06], + [28017,0.073], + [28019,0.064], + [28021,0.062], + [28023,0.065], + [28025,0.07], + [28027,0.081], + [28029,0.073], + [28031,0.073], + [28033,0.072], + [28035,0.072], + [28037,0.068], + [28039,0.073], + [28041,0.057], + [28043,0.066], + [28045,0.063], + [28047,0.074], + [28049,0.073], + [28051,0.087], + [28053,0.091], + [28055,0.05], + [28057,0.062], + [28059,0.068], + [28061,0.065], + [28063,0.062], + [28065,0.065], + [28067,0.075], + [28069,0.067], + [28071,0.054], + [28073,0.076], + [28075,0.071], + [28077,0.073], + [28079,0.08], + [28081,0.073], + [28083,0.08], + [28085,0.073], + [28087,0.07], + [28089,0.074], + [28091,0.075], + [28093,0.066], + [28095,0.067], + [28097,0.068], + [28099,0.084], + [28101,0.07], + [28103,0.073], + [28105,0.057], + [28107,0.074], + [28109,0.069], + [28111,0.071], + [28113,0.076], + [28115,0.073], + [28117,0.065], + [28119,0.069], + [28121,0.07], + [28123,0.081], + [28125,0.068], + [28127,0.073], + [28129,0.068], + [28131,0.066], + [28133,0.072], + [28135,0.067], + [28137,0.068], + [28139,0.071], + [28141,0.06], + [28143,0.089], + [28145,0.071], + [28147,0.071], + [28149,0.069], + [28151,0.076], + [28153,0.073], + [28155,0.066], + [28157,0.066], + [28159,0.072], + [28161,0.068], + [28163,0.074], + [29001,0.056], + [29003,0.058], + [29005,0.051], + [29007,0.068], + [29009,0.064], + [29011,0.067], + [29013,0.066], + [29015,0.043], + [29017,0.062], + [29019,0.062], + [29021,0.069], + [29023,0.064], + [29025,0.063], + [29027,0.059], + [29029,0.049], + [29031,0.062], + [29033,0.057], + [29035,0.07], + [29037,0.068], + [29039,0.06], + [29041,0.062], + [29043,0.074], + [29045,0.069], + [29047,0.073], + [29049,0.063], + [29051,0.066], + [29053,0.061], + [29055,0.067], + [29057,0.052], + [29059,0.068], + [29061,0.074], + [29063,0.046], + [29065,0.062], + [29067,0.059], + [29069,0.069], + [29071,0.064], + [29073,0.055], + [29075,0.067], + [29077,0.062], + [29079,0.07], + [29081,0.073], + [29083,0.06], + [29085,0.046], + [29087,0.057], + [29089,0.059], + [29091,0.071], + [29093,0.058], + [29095,0.071], + [29097,0.076], + [29099,0.068], + [29101,0.068], + [29103,0.064], + [29105,0.071], + [29107,0.063], + [29109,0.069], + [29111,0.064], + [29113,0.077], + [29115,0.067], + [29117,0.06], + [29119,0.073], + [29121,0.068], + [29123,0.065], + [29125,0.061], + [29127,0.069], + [29129,0.069], + [29131,0.065], + [29133,0.062], + [29135,0.069], + [29137,0.061], + [29139,0.063], + [29141,0.061], + [29143,0.066], + [29145,0.067], + [29147,0.052], + [29149,0.057], + [29151,0.064], + [29153,0.051], + [29155,0.077], + [29157,0.066], + [29159,0.075], + [29161,0.062], + [29163,0.061], + [29165,0.064], + [29167,0.064], + [29169,0.075], + [29171,0.06], + [29173,0.063], + [29175,0.063], + [29177,0.062], + [29179,0.059], + [29181,0.059], + [29183,0.067], + [29185,0.05], + [29186,0.056], + [29187,0.061], + [29189,0.059], + [29195,0.064], + [29197,0.066], + [29199,0.079], + [29201,0.07], + [29203,0.061], + [29205,0.069], + [29207,0.06], + [29209,0.044], + [29211,0.063], + [29213,0.061], + [29215,0.062], + [29217,0.069], + [29219,0.071], + [29221,0.066], + [29223,0.052], + [29225,0.075], + [29227,0.045], + [29229,0.068], + [29510,0.066], + [30001,0.053], + [30003,0.105], + [30005,0.089], + [30007,0.058], + [30009,0.041], + [30011,0.034], + [30013,0.068], + [30015,0.071], + [30017,0.062], + [30019,0.056], + [30021,0.061], + [30023,0.045], + [30025,0.075], + [30027,0.054], + [30029,0.063], + [30031,0.064], + [30033,0.066], + [30035,0.092], + [30037,0.031], + [30039,0.038], + [30041,0.078], + [30043,0.051], + [30045,0.047], + [30047,0.074], + [30049,0.062], + [30051,0.054], + [30053,0.048], + [30055,0.056], + [30057,0.045], + [30059,0.047], + [30061,0.047], + [30063,0.058], + [30065,0.045], + [30067,0.052], + [30069,0.051], + [30071,0.056], + [30073,0.071], + [30075,0.038], + [30077,0.043], + [30079,0.049], + [30081,0.053], + [30083,0.065], + [30085,0.096], + [30087,0.08], + [30089,0.051], + [30091,0.045], + [30093,0.058], + [30095,0.06], + [30097,0.055], + [30099,0.053], + [30101,0.053], + [30103,0.05], + [30105,0.056], + [30107,0.071], + [30109,0.052], + [30111,0.068], + [31001,0.067], + [31003,0.065], + [31005,0.076], + [31007,0.052], + [31009,0.046], + [31011,0.061], + [31013,0.069], + [31015,0.047], + [31017,0.047], + [31019,0.072], + [31021,0.057], + [31023,0.059], + [31025,0.063], + [31027,0.069], + [31029,0.071], + [31031,0.054], + [31033,0.066], + [31035,0.062], + [31037,0.093], + [31039,0.062], + [31041,0.062], + [31043,0.09], + [31045,0.054], + [31047,0.079], + [31049,0.058], + [31051,0.067], + [31053,0.068], + [31055,0.078], + [31057,0.052], + [31059,0.056], + [31061,0.056], + [31063,0.054], + [31065,0.052], + [31067,0.062], + [31069,0.051], + [31071,0.043], + [31073,0.057], + [31075,0.062], + [31077,0.069], + [31079,0.081], + [31081,0.058], + [31083,0.053], + [31085,0.048], + [31087,0.055], + [31089,0.064], + [31091,0.048], + [31093,0.063], + [31095,0.056], + [31097,0.053], + [31099,0.068], + [31101,0.056], + [31103,0.051], + [31105,0.064], + [31107,0.06], + [31109,0.071], + [31111,0.071], + [31113,0.071], + [31115,0.06], + [31117,0.085], + [31119,0.074], + [31121,0.06], + [31123,0.064], + [31125,0.062], + [31127,0.06], + [31129,0.052], + [31131,0.064], + [31133,0.053], + [31135,0.065], + [31137,0.065], + [31139,0.062], + [31141,0.074], + [31143,0.06], + [31145,0.061], + [31147,0.051], + [31149,0.056], + [31151,0.071], + [31153,0.084], + [31155,0.067], + [31157,0.072], + [31159,0.061], + [31161,0.06], + [31163,0.058], + [31165,0.049], + [31167,0.076], + [31169,0.058], + [31171,0.051], + [31173,0.106], + [31175,0.058], + [31177,0.059], + [31179,0.054], + [31181,0.061], + [31183,0.059], + [31185,0.064], + [32001,0.067], + [32003,0.071], + [32005,0.049], + [32007,0.084], + [32009,0.05], + [32011,0.072], + [32013,0.077], + [32015,0.078], + [32017,0.059], + [32019,0.065], + [32021,0.047], + [32023,0.05], + [32027,0.051], + [32029,0.043], + [32031,0.066], + [32033,0.063], + [32510,0.058], + [33001,0.051], + [33003,0.041], + [33005,0.048], + [33007,0.044], + [33009,0.046], + [33011,0.059], + [33013,0.052], + [33015,0.051], + [33017,0.055], + [33019,0.053], + [34001,0.06], + [34003,0.056], + [34005,0.058], + [34007,0.065], + [34009,0.047], + [34011,0.069], + [34013,0.069], + [34015,0.06], + [34017,0.067], + [34019,0.047], + [34021,0.059], + [34023,0.062], + [34025,0.055], + [34027,0.056], + [34029,0.067], + [34031,0.068], + [34033,0.058], + [34035,0.059], + [34037,0.053], + [34039,0.067], + [34041,0.056], + [35001,0.068], + [35003,0.041], + [35005,0.08], + [35006,0.07], + [35007,0.053], + [35009,0.089], + [35011,0.056], + [35013,0.074], + [35015,0.071], + [35017,0.06], + [35019,0.057], + [35021,0.04], + [35023,0.067], + [35025,0.091], + [35027,0.048], + [35028,0.053], + [35029,0.073], + [35031,0.086], + [35033,0.051], + [35035,0.075], + [35037,0.057], + [35039,0.067], + [35041,0.079], + [35043,0.069], + [35045,0.084], + [35047,0.055], + [35049,0.057], + [35051,0.047], + [35053,0.067], + [35055,0.055], + [35057,0.057], + [35059,0.056], + [35061,0.069], + [36001,0.05], + [36003,0.054], + [36005,0.074], + [36007,0.052], + [36009,0.063], + [36011,0.053], + [36013,0.056], + [36015,0.059], + [36017,0.054], + [36019,0.05], + [36021,0.048], + [36023,0.055], + [36025,0.05], + [36027,0.051], + [36029,0.053], + [36031,0.047], + [36033,0.055], + [36035,0.055], + [36037,0.056], + [36039,0.047], + [36041,0.035], + [36043,0.056], + [36045,0.083], + [36047,0.071], + [36049,0.066], + [36051,0.049], + [36053,0.053], + [36055,0.058], + [36057,0.061], + [36059,0.055], + [36061,0.048], + [36063,0.053], + [36065,0.057], + [36067,0.059], + [36069,0.054], + [36071,0.071], + [36073,0.053], + [36075,0.058], + [36077,0.044], + [36079,0.051], + [36081,0.059], + [36083,0.055], + [36085,0.06], + [36087,0.076], + [36089,0.059], + [36091,0.055], + [36093,0.06], + [36095,0.046], + [36097,0.048], + [36099,0.056], + [36101,0.059], + [36103,0.058], + [36105,0.06], + [36107,0.058], + [36109,0.043], + [36111,0.049], + [36113,0.049], + [36115,0.053], + [36117,0.059], + [36119,0.06], + [36121,0.05], + [36123,0.062], + [37001,0.063], + [37003,0.059], + [37005,0.052], + [37007,0.058], + [37009,0.053], + [37011,0.043], + [37013,0.058], + [37015,0.055], + [37017,0.061], + [37019,0.054], + [37021,0.057], + [37023,0.056], + [37025,0.073], + [37027,0.056], + [37029,0.06], + [37031,0.049], + [37033,0.05], + [37035,0.063], + [37037,0.062], + [37039,0.05], + [37041,0.059], + [37043,0.047], + [37045,0.059], + [37047,0.06], + [37049,0.074], + [37051,0.083], + [37053,0.056], + [37055,0.054], + [37057,0.061], + [37059,0.057], + [37061,0.073], + [37063,0.074], + [37065,0.066], + [37067,0.068], + [37069,0.066], + [37071,0.064], + [37073,0.057], + [37075,0.057], + [37077,0.057], + [37079,0.065], + [37081,0.063], + [37083,0.06], + [37085,0.081], + [37087,0.049], + [37089,0.056], + [37091,0.057], + [37093,0.097], + [37095,0.05], + [37097,0.063], + [37099,0.051], + [37101,0.076], + [37103,0.061], + [37105,0.073], + [37107,0.064], + [37109,0.059], + [37111,0.058], + [37113,0.052], + [37115,0.045], + [37117,0.057], + [37119,0.074], + [37121,0.049], + [37123,0.062], + [37125,0.057], + [37127,0.061], + [37129,0.058], + [37131,0.054], + [37133,0.096], + [37135,0.051], + [37137,0.046], + [37139,0.066], + [37141,0.059], + [37143,0.055], + [37145,0.06], + [37147,0.067], + [37149,0.045], + [37151,0.063], + [37153,0.066], + [37155,0.076], + [37157,0.056], + [37159,0.065], + [37161,0.057], + [37163,0.069], + [37165,0.069], + [37167,0.059], + [37169,0.053], + [37171,0.059], + [37173,0.063], + [37175,0.046], + [37177,0.053], + [37179,0.073], + [37181,0.068], + [37183,0.073], + [37185,0.057], + [37187,0.065], + [37189,0.038], + [37191,0.071], + [37193,0.058], + [37195,0.067], + [37197,0.059], + [37199,0.048], + [38001,0.05], + [38003,0.053], + [38005,0.098], + [38007,0.052], + [38009,0.054], + [38011,0.066], + [38013,0.059], + [38015,0.066], + [38017,0.07], + [38019,0.046], + [38021,0.066], + [38023,0.047], + [38025,0.06], + [38027,0.053], + [38029,0.048], + [38031,0.053], + [38033,0.051], + [38035,0.065], + [38037,0.046], + [38039,0.05], + [38041,0.049], + [38043,0.054], + [38045,0.053], + [38047,0.047], + [38049,0.054], + [38051,0.053], + [38053,0.081], + [38055,0.05], + [38057,0.056], + [38059,0.07], + [38061,0.066], + [38063,0.043], + [38065,0.057], + [38067,0.056], + [38069,0.055], + [38071,0.064], + [38073,0.056], + [38075,0.053], + [38077,0.063], + [38079,0.101], + [38081,0.054], + [38083,0.033], + [38085,0.114], + [38087,0.055], + [38089,0.062], + [38091,0.051], + [38093,0.056], + [38095,0.047], + [38097,0.063], + [38099,0.061], + [38101,0.078], + [38103,0.049], + [38105,0.069], + [39001,0.067], + [39003,0.064], + [39005,0.062], + [39007,0.062], + [39009,0.041], + [39011,0.067], + [39013,0.051], + [39015,0.063], + [39017,0.068], + [39019,0.058], + [39021,0.063], + [39023,0.063], + [39025,0.069], + [39027,0.064], + [39029,0.055], + [39031,0.062], + [39033,0.058], + [39035,0.058], + [39037,0.067], + [39039,0.064], + [39041,0.075], + [39043,0.054], + [39045,0.064], + [39047,0.071], + [39049,0.071], + [39051,0.065], + [39053,0.063], + [39055,0.056], + [39057,0.056], + [39059,0.061], + [39061,0.066], + [39063,0.064], + [39065,0.064], + [39067,0.059], + [39069,0.065], + [39071,0.067], + [39073,0.059], + [39075,0.095], + [39077,0.068], + [39079,0.066], + [39081,0.051], + [39083,0.063], + [39085,0.055], + [39087,0.062], + [39089,0.064], + [39091,0.066], + [39093,0.06], + [39095,0.067], + [39097,0.058], + [39099,0.054], + [39101,0.058], + [39103,0.06], + [39105,0.058], + [39107,0.071], + [39109,0.062], + [39111,0.055], + [39113,0.062], + [39115,0.059], + [39117,0.064], + [39119,0.061], + [39121,0.051], + [39123,0.049], + [39125,0.069], + [39127,0.066], + [39129,0.058], + [39131,0.065], + [39133,0.051], + [39135,0.062], + [39137,0.074], + [39139,0.06], + [39141,0.059], + [39143,0.063], + [39145,0.061], + [39147,0.063], + [39149,0.071], + [39151,0.058], + [39153,0.058], + [39155,0.055], + [39157,0.061], + [39159,0.069], + [39161,0.066], + [39163,0.061], + [39165,0.067], + [39167,0.052], + [39169,0.068], + [39171,0.06], + [39173,0.055], + [39175,0.064], + [40001,0.072], + [40003,0.05], + [40005,0.065], + [40007,0.068], + [40009,0.077], + [40011,0.066], + [40013,0.067], + [40015,0.069], + [40017,0.074], + [40019,0.071], + [40021,0.067], + [40023,0.07], + [40025,0.078], + [40027,0.066], + [40029,0.066], + [40031,0.076], + [40033,0.065], + [40035,0.057], + [40037,0.063], + [40039,0.07], + [40041,0.057], + [40043,0.062], + [40045,0.064], + [40047,0.076], + [40049,0.067], + [40051,0.068], + [40053,0.058], + [40055,0.051], + [40057,0.081], + [40059,0.08], + [40061,0.07], + [40063,0.057], + [40065,0.076], + [40067,0.069], + [40069,0.072], + [40071,0.072], + [40073,0.075], + [40075,0.058], + [40077,0.06], + [40079,0.068], + [40081,0.066], + [40083,0.067], + [40085,0.065], + [40087,0.07], + [40089,0.069], + [40091,0.053], + [40093,0.065], + [40095,0.067], + [40097,0.07], + [40099,0.068], + [40101,0.069], + [40103,0.071], + [40105,0.059], + [40107,0.063], + [40109,0.077], + [40111,0.066], + [40113,0.061], + [40115,0.071], + [40117,0.064], + [40119,0.058], + [40121,0.063], + [40123,0.069], + [40125,0.069], + [40127,0.062], + [40129,0.07], + [40131,0.063], + [40133,0.066], + [40135,0.066], + [40137,0.066], + [40139,0.088], + [40141,0.062], + [40143,0.074], + [40145,0.07], + [40147,0.065], + [40149,0.069], + [40151,0.06], + [40153,0.073], + [41001,0.053], + [41003,0.044], + [41005,0.057], + [41007,0.056], + [41009,0.057], + [41011,0.051], + [41013,0.054], + [41015,0.038], + [41017,0.061], + [41019,0.052], + [41021,0.05], + [41023,0.045], + [41025,0.054], + [41027,0.067], + [41029,0.059], + [41031,0.071], + [41033,0.051], + [41035,0.06], + [41037,0.046], + [41039,0.052], + [41041,0.049], + [41043,0.066], + [41045,0.074], + [41047,0.075], + [41049,0.071], + [41051,0.063], + [41053,0.065], + [41055,0.053], + [41057,0.054], + [41059,0.074], + [41061,0.063], + [41063,0.053], + [41065,0.065], + [41067,0.072], + [41069,0.048], + [41071,0.065], + [42001,0.055], + [42003,0.052], + [42005,0.052], + [42007,0.053], + [42009,0.053], + [42011,0.061], + [42013,0.057], + [42015,0.06], + [42017,0.055], + [42019,0.054], + [42021,0.05], + [42023,0.043], + [42025,0.053], + [42027,0.044], + [42029,0.062], + [42031,0.051], + [42033,0.05], + [42035,0.056], + [42037,0.048], + [42039,0.057], + [42041,0.054], + [42043,0.063], + [42045,0.061], + [42047,0.048], + [42049,0.06], + [42051,0.05], + [42053,0.024], + [42055,0.066], + [42057,0.062], + [42059,0.05], + [42061,0.054], + [42063,0.051], + [42065,0.057], + [42067,0.063], + [42069,0.054], + [42071,0.068], + [42073,0.053], + [42075,0.063], + [42077,0.061], + [42079,0.052], + [42081,0.056], + [42083,0.055], + [42085,0.051], + [42087,0.063], + [42089,0.051], + [42091,0.059], + [42093,0.057], + [42095,0.055], + [42097,0.056], + [42099,0.06], + [42101,0.066], + [42103,0.049], + [42105,0.056], + [42107,0.052], + [42109,0.061], + [42111,0.048], + [42113,0.04], + [42115,0.05], + [42117,0.053], + [42119,0.047], + [42121,0.056], + [42123,0.05], + [42125,0.051], + [42127,0.041], + [42129,0.048], + [42131,0.054], + [42133,0.061], + [44001,0.044], + [44003,0.049], + [44005,0.049], + [44007,0.06], + [44009,0.045], + [45001,0.06], + [45003,0.063], + [45005,0.059], + [45007,0.064], + [45009,0.059], + [45011,0.066], + [45013,0.068], + [45015,0.075], + [45017,0.06], + [45019,0.065], + [45021,0.067], + [45023,0.066], + [45025,0.064], + [45027,0.059], + [45029,0.066], + [45031,0.063], + [45033,0.074], + [45035,0.071], + [45037,0.052], + [45039,0.06], + [45041,0.067], + [45043,0.056], + [45045,0.069], + [45047,0.068], + [45049,0.064], + [45051,0.057], + [45053,0.075], + [45055,0.067], + [45057,0.068], + [45059,0.065], + [45061,0.058], + [45063,0.067], + [45065,0.041], + [45067,0.068], + [45069,0.058], + [45071,0.065], + [45073,0.056], + [45075,0.067], + [45077,0.054], + [45079,0.064], + [45081,0.069], + [45083,0.067], + [45085,0.074], + [45087,0.058], + [45089,0.06], + [45091,0.069], + [46003,0.072], + [46005,0.075], + [46007,0.1], + [46009,0.053], + [46011,0.06], + [46013,0.069], + [46015,0.07], + [46017,0.118], + [46019,0.075], + [46021,0.04], + [46023,0.085], + [46025,0.066], + [46027,0.052], + [46029,0.075], + [46031,0.101], + [46033,0.048], + [46035,0.071], + [46037,0.058], + [46039,0.062], + [46041,0.095], + [46043,0.055], + [46045,0.056], + [46047,0.047], + [46049,0.061], + [46051,0.059], + [46053,0.059], + [46055,0.061], + [46057,0.094], + [46059,0.055], + [46061,0.095], + [46063,0.052], + [46065,0.068], + [46067,0.057], + [46069,0.051], + [46071,0.09], + [46073,0.069], + [46075,0.071], + [46077,0.058], + [46079,0.057], + [46081,0.057], + [46083,0.098], + [46085,0.075], + [46087,0.073], + [46089,0.051], + [46091,0.059], + [46093,0.081], + [46095,0.095], + [46097,0.065], + [46099,0.076], + [46101,0.076], + [46102,0.118], + [46103,0.073], + [46105,0.054], + [46107,0.055], + [46109,0.082], + [46111,0.051], + [46115,0.06], + [46117,0.06], + [46119,0.057], + [46121,0.126], + [46123,0.061], + [46125,0.064], + [46127,0.068], + [46129,0.063], + [46135,0.059], + [46137,0.126], + [47001,0.056], + [47003,0.076], + [47005,0.051], + [47007,0.05], + [47009,0.056], + [47011,0.061], + [47013,0.057], + [47015,0.058], + [47017,0.058], + [47019,0.053], + [47021,0.063], + [47023,0.057], + [47025,0.051], + [47027,0.061], + [47029,0.056], + [47031,0.066], + [47033,0.066], + [47035,0.05], + [47037,0.071], + [47039,0.057], + [47041,0.061], + [47043,0.066], + [47045,0.064], + [47047,0.065], + [47049,0.058], + [47051,0.053], + [47053,0.065], + [47055,0.058], + [47057,0.059], + [47059,0.053], + [47061,0.058], + [47063,0.065], + [47065,0.061], + [47067,0.056], + [47069,0.055], + [47071,0.054], + [47073,0.056], + [47075,0.065], + [47077,0.066], + [47079,0.059], + [47081,0.056], + [47083,0.056], + [47085,0.056], + [47087,0.048], + [47089,0.058], + [47091,0.049], + [47093,0.061], + [47095,0.045], + [47097,0.067], + [47099,0.067], + [47101,0.06], + [47103,0.065], + [47105,0.053], + [47107,0.057], + [47109,0.059], + [47111,0.068], + [47113,0.068], + [47115,0.056], + [47117,0.064], + [47119,0.072], + [47121,0.051], + [47123,0.06], + [47125,0.089], + [47127,0.047], + [47129,0.052], + [47131,0.055], + [47133,0.06], + [47135,0.058], + [47137,0.046], + [47139,0.054], + [47141,0.06], + [47143,0.063], + [47145,0.05], + [47147,0.07], + [47149,0.073], + [47151,0.066], + [47153,0.061], + [47155,0.059], + [47157,0.072], + [47159,0.061], + [47161,0.052], + [47163,0.052], + [47165,0.065], + [47167,0.067], + [47169,0.063], + [47171,0.051], + [47173,0.067], + [47175,0.051], + [47177,0.065], + [47179,0.054], + [47181,0.05], + [47183,0.054], + [47185,0.058], + [47187,0.067], + [47189,0.064], + [48001,0.054], + [48003,0.083], + [48005,0.075], + [48007,0.051], + [48009,0.052], + [48011,0.056], + [48013,0.074], + [48015,0.065], + [48017,0.095], + [48019,0.045], + [48021,0.068], + [48023,0.061], + [48025,0.061], + [48027,0.091], + [48029,0.076], + [48031,0.052], + [48033,0.044], + [48035,0.056], + [48037,0.064], + [48039,0.079], + [48041,0.064], + [48043,0.059], + [48045,0.063], + [48047,0.086], + [48049,0.062], + [48051,0.062], + [48053,0.058], + [48055,0.069], + [48057,0.071], + [48059,0.058], + [48061,0.088], + [48063,0.072], + [48065,0.059], + [48067,0.058], + [48069,0.087], + [48071,0.069], + [48073,0.071], + [48075,0.06], + [48077,0.056], + [48079,0.079], + [48081,0.05], + [48083,0.056], + [48085,0.075], + [48087,0.084], + [48089,0.064], + [48091,0.057], + [48093,0.067], + [48095,0.039], + [48097,0.07], + [48099,0.089], + [48101,0.052], + [48103,0.077], + [48105,0.08], + [48107,0.083], + [48109,0.075], + [48111,0.093], + [48113,0.081], + [48115,0.076], + [48117,0.095], + [48119,0.059], + [48121,0.075], + [48123,0.062], + [48125,0.054], + [48127,0.082], + [48129,0.055], + [48131,0.072], + [48133,0.06], + [48135,0.088], + [48137,0.057], + [48139,0.073], + [48141,0.081], + [48143,0.063], + [48145,0.06], + [48147,0.058], + [48149,0.056], + [48151,0.055], + [48153,0.076], + [48155,0.043], + [48157,0.075], + [48159,0.066], + [48161,0.062], + [48163,0.07], + [48165,0.104], + [48167,0.069], + [48169,0.059], + [48171,0.05], + [48173,0.064], + [48175,0.053], + [48177,0.077], + [48179,0.073], + [48181,0.065], + [48183,0.075], + [48185,0.059], + [48187,0.07], + [48189,0.083], + [48191,0.065], + [48193,0.055], + [48195,0.083], + [48197,0.065], + [48199,0.067], + [48201,0.082], + [48203,0.071], + [48205,0.058], + [48207,0.053], + [48209,0.067], + [48211,0.086], + [48213,0.059], + [48215,0.096], + [48217,0.065], + [48219,0.076], + [48221,0.057], + [48223,0.069], + [48225,0.057], + [48227,0.065], + [48229,0.07], + [48231,0.066], + [48233,0.072], + [48235,0.043], + [48237,0.054], + [48239,0.073], + [48241,0.068], + [48243,0.038], + [48245,0.068], + [48247,0.087], + [48249,0.082], + [48251,0.071], + [48253,0.047], + [48255,0.056], + [48257,0.075], + [48259,0.053], + [48261,0.065], + [48263,0.047], + [48265,0.052], + [48267,0.051], + [48269,0.038], + [48271,0.053], + [48273,0.077], + [48275,0.075], + [48277,0.064], + [48279,0.081], + [48281,0.062], + [48283,0.06], + [48285,0.064], + [48287,0.065], + [48289,0.061], + [48291,0.069], + [48293,0.065], + [48295,0.077], + [48297,0.05], + [48299,0.043], + [48301,0.037], + [48303,0.072], + [48305,0.074], + [48307,0.065], + [48309,0.071], + [48311,0.04], + [48313,0.06], + [48315,0.052], + [48317,0.082], + [48319,0.05], + [48321,0.07], + [48323,0.088], + [48325,0.065], + [48327,0.057], + [48329,0.08], + [48331,0.069], + [48333,0.06], + [48335,0.052], + [48337,0.063], + [48339,0.073], + [48341,0.093], + [48343,0.065], + [48345,0.052], + [48347,0.069], + [48349,0.073], + [48351,0.058], + [48353,0.074], + [48355,0.071], + [48357,0.093], + [48359,0.049], + [48361,0.066], + [48363,0.068], + [48365,0.065], + [48367,0.063], + [48369,0.089], + [48371,0.076], + [48373,0.058], + [48375,0.085], + [48377,0.073], + [48379,0.053], + [48381,0.068], + [48383,0.082], + [48385,0.049], + [48387,0.056], + [48389,0.066], + [48391,0.06], + [48393,0.079], + [48395,0.07], + [48397,0.073], + [48399,0.067], + [48401,0.064], + [48403,0.05], + [48405,0.054], + [48407,0.061], + [48409,0.073], + [48411,0.058], + [48413,0.099], + [48415,0.075], + [48417,0.065], + [48419,0.075], + [48421,0.071], + [48423,0.071], + [48425,0.058], + [48427,0.09], + [48429,0.065], + [48431,0.077], + [48433,0.055], + [48435,0.075], + [48437,0.078], + [48439,0.079], + [48441,0.075], + [48443,0.066], + [48445,0.079], + [48447,0.057], + [48449,0.091], + [48451,0.07], + [48453,0.074], + [48455,0.056], + [48457,0.052], + [48459,0.064], + [48461,0.074], + [48463,0.077], + [48465,0.083], + [48467,0.06], + [48469,0.075], + [48471,0.048], + [48473,0.073], + [48475,0.076], + [48477,0.06], + [48479,0.098], + [48481,0.073], + [48483,0.072], + [48485,0.068], + [48487,0.071], + [48489,0.071], + [48491,0.079], + [48493,0.062], + [48495,0.089], + [48497,0.067], + [48499,0.052], + [48501,0.093], + [48503,0.065], + [48505,0.104], + [48507,0.09], + [49001,0.093], + [49003,0.099], + [49005,0.102], + [49007,0.08], + [49009,0.063], + [49011,0.102], + [49013,0.107], + [49015,0.093], + [49017,0.073], + [49019,0.065], + [49021,0.093], + [49023,0.103], + [49025,0.07], + [49027,0.088], + [49029,0.095], + [49031,0.071], + [49033,0.096], + [49035,0.088], + [49037,0.091], + [49039,0.08], + [49041,0.087], + [49043,0.068], + [49045,0.102], + [49047,0.106], + [49049,0.113], + [49051,0.099], + [49053,0.09], + [49055,0.072], + [49057,0.09], + [50001,0.048], + [50003,0.051], + [50005,0.055], + [50007,0.05], + [50009,0.04], + [50011,0.063], + [50013,0.046], + [50015,0.061], + [50017,0.051], + [50019,0.052], + [50021,0.046], + [50023,0.052], + [50025,0.048], + [50027,0.047], + [51001,0.059], + [51003,0.056], + [51005,0.048], + [51007,0.059], + [51009,0.054], + [51011,0.054], + [51013,0.057], + [51015,0.052], + [51017,0.033], + [51019,0.049], + [51021,0.042], + [51023,0.049], + [51025,0.047], + [51027,0.046], + [51029,0.054], + [51031,0.055], + [51033,0.07], + [51035,0.053], + [51036,0.042], + [51037,0.055], + [51041,0.063], + [51043,0.052], + [51045,0.05], + [51047,0.07], + [51049,0.062], + [51051,0.055], + [51053,0.057], + [51057,0.058], + [51059,0.067], + [51061,0.058], + [51063,0.055], + [51065,0.062], + [51067,0.056], + [51069,0.063], + [51071,0.053], + [51073,0.05], + [51075,0.047], + [51077,0.045], + [51079,0.071], + [51081,0.041], + [51083,0.055], + [51085,0.055], + [51087,0.067], + [51089,0.054], + [51091,0.028], + [51093,0.052], + [51095,0.052], + [51097,0.052], + [51099,0.076], + [51101,0.063], + [51103,0.04], + [51105,0.052], + [51107,0.088], + [51109,0.061], + [51111,0.053], + [51113,0.057], + [51115,0.039], + [51117,0.048], + [51119,0.04], + [51121,0.047], + [51125,0.048], + [51127,0.053], + [51131,0.055], + [51133,0.043], + [51135,0.056], + [51137,0.06], + [51139,0.055], + [51141,0.05], + [51143,0.052], + [51145,0.051], + [51147,0.043], + [51149,0.055], + [51153,0.083], + [51155,0.049], + [51157,0.045], + [51159,0.043], + [51161,0.05], + [51163,0.047], + [51165,0.061], + [51167,0.054], + [51169,0.051], + [51171,0.059], + [51173,0.054], + [51175,0.051], + [51177,0.067], + [51179,0.068], + [51181,0.053], + [51183,0.043], + [51185,0.052], + [51187,0.065], + [51191,0.05], + [51193,0.053], + [51195,0.056], + [51197,0.054], + [51199,0.058], + [51510,0.071], + [51520,0.062], + [51530,0.062], + [51540,0.053], + [51550,0.065], + [51570,0.054], + [51580,0.058], + [51590,0.063], + [51595,0.069], + [51600,0.057], + [51610,0.063], + [51620,0.074], + [51630,0.065], + [51640,0.059], + [51650,0.065], + [51660,0.05], + [51670,0.077], + [51678,0.026], + [51680,0.061], + [51683,0.084], + [51685,0.091], + [51690,0.062], + [51700,0.074], + [51710,0.068], + [51720,0.061], + [51730,0.065], + [51735,0.044], + [51740,0.074], + [51750,0.036], + [51760,0.063], + [51770,0.072], + [51775,0.048], + [51790,0.057], + [51800,0.07], + [51810,0.067], + [51820,0.073], + [51830,0.031], + [51840,0.068], + [53001,0.108], + [53003,0.058], + [53005,0.075], + [53007,0.068], + [53009,0.047], + [53011,0.069], + [53013,0.053], + [53015,0.064], + [53017,0.073], + [53019,0.051], + [53021,0.106], + [53023,0.042], + [53025,0.091], + [53027,0.059], + [53029,0.058], + [53031,0.036], + [53033,0.062], + [53035,0.059], + [53037,0.05], + [53039,0.055], + [53041,0.061], + [53043,0.052], + [53045,0.054], + [53047,0.068], + [53049,0.048], + [53051,0.054], + [53053,0.07], + [53055,0.034], + [53057,0.065], + [53059,0.055], + [53061,0.066], + [53063,0.064], + [53065,0.053], + [53067,0.061], + [53069,0.04], + [53071,0.06], + [53073,0.056], + [53075,0.044], + [53077,0.088], + [54001,0.057], + [54003,0.07], + [54005,0.062], + [54007,0.054], + [54009,0.047], + [54011,0.058], + [54013,0.054], + [54015,0.061], + [54017,0.048], + [54019,0.057], + [54021,0.042], + [54023,0.053], + [54025,0.052], + [54027,0.053], + [54029,0.05], + [54031,0.057], + [54033,0.058], + [54035,0.058], + [54037,0.063], + [54039,0.056], + [54041,0.057], + [54043,0.06], + [54045,0.051], + [54047,0.054], + [54049,0.055], + [54051,0.053], + [54053,0.058], + [54055,0.057], + [54057,0.054], + [54059,0.06], + [54061,0.046], + [54063,0.056], + [54065,0.048], + [54067,0.06], + [54069,0.051], + [54071,0.05], + [54073,0.047], + [54075,0.045], + [54077,0.054], + [54079,0.06], + [54081,0.06], + [54083,0.051], + [54085,0.055], + [54087,0.055], + [54089,0.045], + [54091,0.057], + [54093,0.046], + [54095,0.051], + [54097,0.059], + [54099,0.057], + [54101,0.059], + [54103,0.051], + [54105,0.053], + [54107,0.058], + [54109,0.056], + [55001,0.041], + [55003,0.062], + [55005,0.06], + [55007,0.044], + [55009,0.069], + [55011,0.057], + [55013,0.051], + [55015,0.07], + [55017,0.066], + [55019,0.084], + [55021,0.06], + [55023,0.057], + [55025,0.062], + [55027,0.057], + [55029,0.046], + [55031,0.059], + [55033,0.055], + [55035,0.059], + [55037,0.042], + [55039,0.059], + [55041,0.054], + [55043,0.058], + [55045,0.064], + [55047,0.058], + [55049,0.068], + [55051,0.036], + [55053,0.061], + [55055,0.063], + [55057,0.055], + [55059,0.066], + [55061,0.057], + [55063,0.059], + [55065,0.071], + [55067,0.052], + [55069,0.051], + [55071,0.056], + [55073,0.065], + [55075,0.05], + [55077,0.052], + [55078,0.097], + [55079,0.073], + [55081,0.072], + [55083,0.056], + [55085,0.047], + [55087,0.066], + [55089,0.053], + [55091,0.063], + [55093,0.059], + [55095,0.061], + [55097,0.056], + [55099,0.044], + [55101,0.065], + [55103,0.065], + [55105,0.065], + [55107,0.055], + [55109,0.073], + [55111,0.064], + [55113,0.059], + [55115,0.058], + [55117,0.062], + [55119,0.066], + [55121,0.065], + [55123,0.071], + [55125,0.045], + [55127,0.061], + [55129,0.055], + [55131,0.062], + [55133,0.055], + [55135,0.056], + [55137,0.048], + [55139,0.059], + [55141,0.06], + [56001,0.056], + [56003,0.067], + [56005,0.088], + [56007,0.071], + [56009,0.07], + [56011,0.071], + [56013,0.078], + [56015,0.053], + [56017,0.052], + [56019,0.067], + [56021,0.073], + [56023,0.08], + [56025,0.071], + [56027,0.039], + [56029,0.058], + [56031,0.049], + [56033,0.064], + [56035,0.07], + [56037,0.084], + [56039,0.06], + [56041,0.084], + [56043,0.07], + [56045,0.057] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-under5-2017.json b/data/regional/united-states/demographics/age/us-age-under5-2017.json new file mode 100644 index 0000000..22f7458 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-under5-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Under 5", + "description" : "Percent of the population under age 5.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.under5.2017"], + [1001,0.057], + [1003,0.057], + [1005,0.055], + [1007,0.057], + [1009,0.061], + [1011,0.058], + [1013,0.059], + [1015,0.057], + [1017,0.061], + [1019,0.045], + [1021,0.065], + [1023,0.05], + [1025,0.055], + [1027,0.05], + [1029,0.059], + [1031,0.062], + [1033,0.057], + [1035,0.063], + [1037,0.035], + [1039,0.058], + [1041,0.057], + [1043,0.06], + [1045,0.066], + [1047,0.062], + [1049,0.06], + [1051,0.058], + [1053,0.058], + [1055,0.056], + [1057,0.055], + [1059,0.06], + [1061,0.055], + [1063,0.06], + [1065,0.063], + [1067,0.054], + [1069,0.061], + [1071,0.053], + [1073,0.065], + [1075,0.048], + [1077,0.051], + [1079,0.055], + [1081,0.059], + [1083,0.058], + [1085,0.063], + [1087,0.049], + [1089,0.058], + [1091,0.061], + [1093,0.051], + [1095,0.067], + [1097,0.066], + [1099,0.059], + [1101,0.068], + [1103,0.059], + [1105,0.058], + [1107,0.056], + [1109,0.056], + [1111,0.056], + [1113,0.074], + [1115,0.06], + [1117,0.06], + [1119,0.053], + [1121,0.054], + [1123,0.054], + [1125,0.06], + [1127,0.062], + [1129,0.036], + [1131,0.05], + [1133,0.05], + [2013,0.029], + [2016,0.043], + [2020,0.074], + [2050,0.105], + [2060,0.052], + [2068,0.035], + [2070,0.098], + [2090,0.078], + [2100,0.065], + [2105,0.053], + [2110,0.059], + [2122,0.063], + [2130,0.062], + [2150,0.08], + [2158,null], + [2164,0.067], + [2170,0.073], + [2180,0.099], + [2185,0.076], + [2188,0.103], + [2195,0.067], + [2198,0.06], + [2220,0.051], + [2230,0.039], + [2240,0.072], + [2261,0.058], + [2275,0.046], + [2282,0.07], + [2290,0.079], + [4001,0.072], + [4003,0.061], + [4005,0.058], + [4007,0.057], + [4009,0.075], + [4011,0.074], + [4012,0.046], + [4013,0.067], + [4015,0.045], + [4017,0.074], + [4019,0.059], + [4021,0.061], + [4023,0.071], + [4025,0.043], + [4027,0.074], + [5001,0.065], + [5003,0.054], + [5005,0.043], + [5007,0.072], + [5009,0.061], + [5011,0.063], + [5013,0.057], + [5015,0.055], + [5017,0.062], + [5019,0.052], + [5021,0.057], + [5023,0.048], + [5025,0.049], + [5027,0.06], + [5029,0.059], + [5031,0.07], + [5033,0.062], + [5035,0.077], + [5037,0.062], + [5039,0.048], + [5041,0.067], + [5043,0.061], + [5045,0.063], + [5047,0.055], + [5049,0.048], + [5051,0.054], + [5053,0.056], + [5055,0.063], + [5057,0.074], + [5059,0.051], + [5061,0.064], + [5063,0.064], + [5065,0.047], + [5067,0.057], + [5069,0.06], + [5071,0.067], + [5073,0.049], + [5075,0.055], + [5077,0.052], + [5079,0.043], + [5081,0.051], + [5083,0.056], + [5085,0.069], + [5087,0.06], + [5089,0.044], + [5091,0.066], + [5093,0.072], + [5095,0.06], + [5097,0.047], + [5099,0.061], + [5101,0.044], + [5103,0.064], + [5105,0.059], + [5107,0.073], + [5109,0.057], + [5111,0.065], + [5113,0.061], + [5115,0.063], + [5117,0.054], + [5119,0.069], + [5121,0.057], + [5123,0.063], + [5125,0.06], + [5127,0.064], + [5129,0.046], + [5131,0.066], + [5133,0.081], + [5135,0.05], + [5137,0.046], + [5139,0.066], + [5141,0.047], + [5143,0.072], + [5145,0.065], + [5147,0.058], + [5149,0.064], + [6001,0.06], + [6003,0.019], + [6005,0.039], + [6007,0.055], + [6009,0.042], + [6011,0.072], + [6013,0.058], + [6015,0.06], + [6017,0.046], + [6019,0.081], + [6021,0.073], + [6023,0.055], + [6025,0.084], + [6027,0.057], + [6029,0.082], + [6031,0.079], + [6033,0.056], + [6035,0.045], + [6037,0.063], + [6039,0.076], + [6041,0.048], + [6043,0.043], + [6045,0.059], + [6047,0.08], + [6049,0.042], + [6051,0.035], + [6053,0.076], + [6055,0.053], + [6057,0.043], + [6059,0.06], + [6061,0.054], + [6063,0.044], + [6065,0.067], + [6067,0.066], + [6069,0.066], + [6071,0.073], + [6073,0.065], + [6075,0.045], + [6077,0.073], + [6079,0.049], + [6081,0.059], + [6083,0.064], + [6085,0.063], + [6087,0.054], + [6089,0.059], + [6091,0.037], + [6093,0.052], + [6095,0.061], + [6097,0.052], + [6099,0.073], + [6101,0.069], + [6103,0.061], + [6105,0.044], + [6107,0.086], + [6109,0.045], + [6111,0.062], + [6113,0.058], + [6115,0.081], + [8001,0.075], + [8003,0.068], + [8005,0.064], + [8007,0.049], + [8009,0.053], + [8011,0.037], + [8013,0.048], + [8014,0.058], + [8015,0.036], + [8017,0.089], + [8019,0.041], + [8021,0.072], + [8023,0.047], + [8025,0.032], + [8027,0.031], + [8029,0.051], + [8031,0.064], + [8033,0.036], + [8035,0.062], + [8037,0.059], + [8039,0.041], + [8041,0.069], + [8043,0.038], + [8045,0.07], + [8047,0.041], + [8049,0.039], + [8051,0.046], + [8053,0.035], + [8055,0.01], + [8057,0.065], + [8059,0.053], + [8061,0.108], + [8063,0.063], + [8065,0.049], + [8067,0.051], + [8069,0.054], + [8071,0.045], + [8073,0.056], + [8075,0.075], + [8077,0.059], + [8079,0.016], + [8081,0.062], + [8083,0.061], + [8085,0.056], + [8087,0.072], + [8089,0.06], + [8091,0.027], + [8093,0.038], + [8095,0.064], + [8097,0.044], + [8099,0.067], + [8101,0.059], + [8103,0.06], + [8105,0.061], + [8107,0.042], + [8109,0.052], + [8111,0.053], + [8113,0.044], + [8115,0.072], + [8117,0.043], + [8119,0.039], + [8121,0.05], + [8123,0.073], + [8125,0.077], + [9001,0.056], + [9003,0.053], + [9005,0.042], + [9007,0.043], + [9009,0.052], + [9011,0.05], + [9013,0.04], + [9015,0.05], + [10001,0.063], + [10003,0.059], + [10005,0.053], + [11001,0.065], + [12001,0.054], + [12003,0.059], + [12005,0.063], + [12007,0.052], + [12009,0.047], + [12011,0.058], + [12013,0.047], + [12015,0.031], + [12017,0.038], + [12019,0.056], + [12021,0.047], + [12023,0.058], + [12027,0.054], + [12029,0.047], + [12031,0.068], + [12033,0.061], + [12035,0.041], + [12037,0.048], + [12039,0.059], + [12041,0.05], + [12043,0.036], + [12045,0.047], + [12047,0.043], + [12049,0.066], + [12051,0.073], + [12053,0.045], + [12055,0.048], + [12057,0.064], + [12059,0.045], + [12061,0.043], + [12063,0.05], + [12065,0.044], + [12067,0.058], + [12069,0.05], + [12071,0.048], + [12073,0.052], + [12075,0.05], + [12077,0.048], + [12079,0.053], + [12081,0.05], + [12083,0.05], + [12085,0.041], + [12086,0.058], + [12087,0.046], + [12089,0.053], + [12091,0.067], + [12093,0.058], + [12095,0.062], + [12097,0.065], + [12099,0.051], + [12101,0.052], + [12103,0.045], + [12105,0.059], + [12107,0.057], + [12109,0.051], + [12111,0.053], + [12113,0.057], + [12115,0.037], + [12117,0.053], + [12119,0.02], + [12121,0.053], + [12123,0.051], + [12125,0.053], + [12127,0.047], + [12129,0.049], + [12131,0.06], + [12133,0.053], + [13001,0.072], + [13003,0.07], + [13005,0.067], + [13007,0.039], + [13009,0.049], + [13011,0.051], + [13013,0.072], + [13015,0.065], + [13017,0.068], + [13019,0.058], + [13021,0.07], + [13023,0.053], + [13025,0.06], + [13027,0.056], + [13029,0.07], + [13031,0.056], + [13033,0.072], + [13035,0.059], + [13037,0.036], + [13039,0.075], + [13043,0.06], + [13045,0.064], + [13047,0.055], + [13049,0.056], + [13051,0.066], + [13053,0.086], + [13055,0.055], + [13057,0.062], + [13059,0.055], + [13061,0.067], + [13063,0.078], + [13065,0.088], + [13067,0.065], + [13069,0.067], + [13071,0.072], + [13073,0.064], + [13075,0.066], + [13077,0.063], + [13079,0.053], + [13081,0.066], + [13083,0.048], + [13085,0.056], + [13087,0.067], + [13089,0.072], + [13091,0.053], + [13093,0.039], + [13095,0.07], + [13097,0.064], + [13099,0.064], + [13101,0.053], + [13103,0.068], + [13105,0.06], + [13107,0.067], + [13109,0.074], + [13111,0.04], + [13113,0.044], + [13115,0.062], + [13117,0.063], + [13119,0.061], + [13121,0.062], + [13123,0.054], + [13125,0.047], + [13127,0.06], + [13129,0.063], + [13131,0.068], + [13133,0.059], + [13135,0.069], + [13137,0.059], + [13139,0.067], + [13141,0.03], + [13143,0.061], + [13145,0.048], + [13147,0.055], + [13149,0.057], + [13151,0.059], + [13153,0.068], + [13155,0.045], + [13157,0.065], + [13159,0.057], + [13161,0.066], + [13163,0.069], + [13165,0.071], + [13167,0.058], + [13169,0.054], + [13171,0.055], + [13173,0.07], + [13175,0.067], + [13177,0.063], + [13179,0.102], + [13181,0.055], + [13183,0.079], + [13185,0.071], + [13187,0.043], + [13189,0.071], + [13191,0.044], + [13193,0.044], + [13195,0.059], + [13197,0.053], + [13199,0.057], + [13201,0.059], + [13205,0.061], + [13207,0.052], + [13209,0.053], + [13211,0.054], + [13213,0.062], + [13215,0.074], + [13217,0.065], + [13219,0.052], + [13221,0.055], + [13223,0.065], + [13225,0.055], + [13227,0.047], + [13229,0.061], + [13231,0.048], + [13233,0.067], + [13235,0.03], + [13237,0.05], + [13239,0.041], + [13241,0.044], + [13243,0.071], + [13245,0.069], + [13247,0.06], + [13249,0.054], + [13251,0.062], + [13253,0.056], + [13255,0.065], + [13257,0.056], + [13259,0.034], + [13261,0.063], + [13263,0.039], + [13265,0.04], + [13267,0.056], + [13269,0.051], + [13271,0.04], + [13273,0.066], + [13275,0.064], + [13277,0.07], + [13279,0.073], + [13281,0.037], + [13283,0.069], + [13285,0.066], + [13287,0.063], + [13289,0.053], + [13291,0.034], + [13293,0.062], + [13295,0.056], + [13297,0.062], + [13299,0.067], + [13301,0.051], + [13303,0.058], + [13305,0.07], + [13307,0.035], + [13309,0.043], + [13311,0.044], + [13313,0.069], + [13315,0.052], + [13317,0.053], + [13319,0.056], + [13321,0.061], + [15001,0.062], + [15003,0.065], + [15005,0.023], + [15007,0.063], + [15009,0.062], + [16001,0.061], + [16003,0.04], + [16005,0.075], + [16007,0.074], + [16009,0.058], + [16011,0.081], + [16013,0.055], + [16015,0.03], + [16017,0.047], + [16019,0.087], + [16021,0.06], + [16023,0.04], + [16025,0.074], + [16027,0.079], + [16029,0.073], + [16031,0.086], + [16033,0.108], + [16035,0.036], + [16037,0.033], + [16039,0.08], + [16041,0.085], + [16043,0.065], + [16045,0.054], + [16047,0.068], + [16049,0.049], + [16051,0.091], + [16053,0.09], + [16055,0.06], + [16057,0.056], + [16059,0.044], + [16061,0.055], + [16063,0.073], + [16065,0.1], + [16067,0.079], + [16069,0.061], + [16071,0.064], + [16073,0.067], + [16075,0.065], + [16077,0.082], + [16079,0.059], + [16081,0.076], + [16083,0.076], + [16085,0.043], + [16087,0.046], + [17001,0.061], + [17003,0.072], + [17005,0.045], + [17007,0.058], + [17009,0.041], + [17011,0.053], + [17013,0.051], + [17015,0.05], + [17017,0.064], + [17019,0.056], + [17021,0.051], + [17023,0.059], + [17025,0.057], + [17027,0.055], + [17029,0.046], + [17031,0.063], + [17033,0.051], + [17035,0.059], + [17037,0.059], + [17039,0.056], + [17041,0.067], + [17043,0.059], + [17045,0.052], + [17047,0.061], + [17049,0.067], + [17051,0.054], + [17053,0.054], + [17055,0.058], + [17057,0.049], + [17059,0.055], + [17061,0.053], + [17063,0.063], + [17065,0.055], + [17067,0.054], + [17069,0.031], + [17071,0.049], + [17073,0.056], + [17075,0.053], + [17077,0.055], + [17079,0.059], + [17081,0.063], + [17083,0.048], + [17085,0.042], + [17087,0.046], + [17089,0.066], + [17091,0.061], + [17093,0.073], + [17095,0.053], + [17097,0.059], + [17099,0.055], + [17101,0.052], + [17103,0.051], + [17105,0.057], + [17107,0.051], + [17109,0.041], + [17111,0.056], + [17113,0.061], + [17115,0.061], + [17117,0.05], + [17119,0.059], + [17121,0.063], + [17123,0.054], + [17125,0.048], + [17127,0.051], + [17129,0.053], + [17131,0.05], + [17133,0.054], + [17135,0.051], + [17137,0.052], + [17139,0.065], + [17141,0.054], + [17143,0.07], + [17145,0.05], + [17147,0.058], + [17149,0.059], + [17151,0.043], + [17153,0.052], + [17155,0.044], + [17157,0.049], + [17159,0.066], + [17161,0.064], + [17163,0.064], + [17165,0.06], + [17167,0.059], + [17169,0.041], + [17171,0.049], + [17173,0.054], + [17175,0.056], + [17177,0.056], + [17179,0.06], + [17181,0.058], + [17183,0.066], + [17185,0.062], + [17187,0.06], + [17189,0.054], + [17191,0.064], + [17193,0.059], + [17195,0.058], + [17197,0.06], + [17199,0.059], + [17201,0.063], + [17203,0.06], + [18001,0.094], + [18003,0.071], + [18005,0.066], + [18007,0.06], + [18009,0.052], + [18011,0.064], + [18013,0.038], + [18015,0.052], + [18017,0.061], + [18019,0.064], + [18021,0.058], + [18023,0.068], + [18025,0.053], + [18027,0.079], + [18029,0.053], + [18031,0.064], + [18033,0.06], + [18035,0.05], + [18037,0.064], + [18039,0.076], + [18041,0.05], + [18043,0.059], + [18045,0.056], + [18047,0.054], + [18049,0.06], + [18051,0.061], + [18053,0.055], + [18055,0.053], + [18057,0.069], + [18059,0.056], + [18061,0.057], + [18063,0.061], + [18065,0.05], + [18067,0.061], + [18069,0.056], + [18071,0.067], + [18073,0.059], + [18075,0.072], + [18077,0.056], + [18079,0.059], + [18081,0.065], + [18083,0.057], + [18085,0.065], + [18087,0.093], + [18089,0.062], + [18091,0.06], + [18093,0.054], + [18095,0.058], + [18097,0.074], + [18099,0.062], + [18101,0.064], + [18103,0.054], + [18105,0.044], + [18107,0.061], + [18109,0.057], + [18111,0.051], + [18113,0.065], + [18115,0.048], + [18117,0.059], + [18119,0.054], + [18121,0.061], + [18123,0.058], + [18125,0.056], + [18127,0.055], + [18129,0.056], + [18131,0.052], + [18133,0.049], + [18135,0.061], + [18137,0.058], + [18139,0.053], + [18141,0.065], + [18143,0.06], + [18145,0.057], + [18147,0.055], + [18149,0.055], + [18151,0.054], + [18153,0.053], + [18155,0.069], + [18157,0.061], + [18159,0.047], + [18161,0.059], + [18163,0.062], + [18165,0.054], + [18167,0.058], + [18169,0.05], + [18171,0.056], + [18173,0.057], + [18175,0.056], + [18177,0.059], + [18179,0.064], + [18181,0.061], + [18183,0.057], + [19001,0.053], + [19003,0.06], + [19005,0.062], + [19007,0.058], + [19009,0.053], + [19011,0.059], + [19013,0.063], + [19015,0.06], + [19017,0.057], + [19019,0.068], + [19021,0.077], + [19023,0.055], + [19025,0.06], + [19027,0.062], + [19029,0.055], + [19031,0.052], + [19033,0.054], + [19035,0.056], + [19037,0.057], + [19039,0.065], + [19041,0.064], + [19043,0.057], + [19045,0.059], + [19047,0.071], + [19049,0.08], + [19051,0.084], + [19053,0.054], + [19055,0.064], + [19057,0.061], + [19059,0.049], + [19061,0.063], + [19063,0.053], + [19065,0.056], + [19067,0.053], + [19069,0.052], + [19071,0.059], + [19073,0.053], + [19075,0.056], + [19077,0.052], + [19079,0.061], + [19081,0.051], + [19083,0.05], + [19085,0.056], + [19087,0.058], + [19089,0.064], + [19091,0.058], + [19093,0.06], + [19095,0.06], + [19097,0.058], + [19099,0.058], + [19101,0.049], + [19103,0.062], + [19105,0.051], + [19107,0.06], + [19109,0.057], + [19111,0.059], + [19113,0.063], + [19115,0.054], + [19117,0.058], + [19119,0.074], + [19121,0.06], + [19123,0.063], + [19125,0.06], + [19127,0.069], + [19129,0.055], + [19131,0.058], + [19133,0.049], + [19135,0.056], + [19137,0.058], + [19139,0.064], + [19141,0.06], + [19143,0.064], + [19145,0.054], + [19147,0.06], + [19149,0.062], + [19151,0.054], + [19153,0.072], + [19155,0.064], + [19157,0.05], + [19159,0.058], + [19161,0.056], + [19163,0.066], + [19165,0.054], + [19167,0.075], + [19169,0.047], + [19171,0.062], + [19173,0.054], + [19175,0.057], + [19177,0.062], + [19179,0.062], + [19181,0.06], + [19183,0.068], + [19185,0.071], + [19187,0.058], + [19189,0.053], + [19191,0.045], + [19193,0.073], + [19195,0.056], + [19197,0.057], + [20001,0.063], + [20003,0.061], + [20005,0.059], + [20007,0.077], + [20009,0.064], + [20011,0.071], + [20013,0.074], + [20015,0.06], + [20017,0.057], + [20019,0.052], + [20021,0.054], + [20023,0.053], + [20025,0.067], + [20027,0.063], + [20029,0.068], + [20031,0.053], + [20033,0.055], + [20035,0.063], + [20037,0.059], + [20039,0.059], + [20041,0.065], + [20043,0.053], + [20045,0.054], + [20047,0.053], + [20049,0.053], + [20051,0.065], + [20053,0.053], + [20055,0.09], + [20057,0.097], + [20059,0.06], + [20061,0.122], + [20063,0.058], + [20065,0.052], + [20067,0.083], + [20069,0.074], + [20071,0.062], + [20073,0.045], + [20075,0.083], + [20077,0.068], + [20079,0.065], + [20081,0.072], + [20083,0.063], + [20085,0.065], + [20087,0.052], + [20089,0.046], + [20091,0.066], + [20093,0.063], + [20095,0.052], + [20097,0.063], + [20099,0.065], + [20101,0.072], + [20103,0.065], + [20105,0.05], + [20107,0.054], + [20109,0.058], + [20111,0.06], + [20113,0.059], + [20115,0.054], + [20117,0.062], + [20119,0.069], + [20121,0.06], + [20123,0.063], + [20125,0.066], + [20127,0.051], + [20129,0.057], + [20131,0.074], + [20133,0.068], + [20135,0.069], + [20137,0.052], + [20139,0.058], + [20141,0.061], + [20143,0.055], + [20145,0.052], + [20147,0.056], + [20149,0.081], + [20151,0.079], + [20153,0.053], + [20155,0.057], + [20157,0.052], + [20159,0.064], + [20161,0.06], + [20163,0.064], + [20165,0.052], + [20167,0.059], + [20169,0.067], + [20171,0.069], + [20173,0.074], + [20175,0.091], + [20177,0.066], + [20179,0.053], + [20181,0.071], + [20183,0.052], + [20185,0.06], + [20187,0.072], + [20189,0.08], + [20191,0.062], + [20193,0.07], + [20195,0.046], + [20197,0.065], + [20199,0.066], + [20201,0.063], + [20203,0.057], + [20205,0.065], + [20207,0.057], + [20209,0.083], + [21001,0.053], + [21003,0.06], + [21005,0.062], + [21007,0.052], + [21009,0.064], + [21011,0.067], + [21013,0.06], + [21015,0.068], + [21017,0.06], + [21019,0.058], + [21021,0.052], + [21023,0.066], + [21025,0.061], + [21027,0.055], + [21029,0.053], + [21031,0.059], + [21033,0.052], + [21035,0.051], + [21037,0.058], + [21039,0.068], + [21041,0.077], + [21043,0.061], + [21045,0.06], + [21047,0.094], + [21049,0.061], + [21051,0.06], + [21053,0.062], + [21055,0.056], + [21057,0.061], + [21059,0.068], + [21061,0.044], + [21063,0.047], + [21065,0.054], + [21067,0.062], + [21069,0.072], + [21071,0.063], + [21073,0.049], + [21075,0.06], + [21077,0.063], + [21079,0.055], + [21081,0.072], + [21083,0.068], + [21085,0.062], + [21087,0.051], + [21089,0.054], + [21091,0.064], + [21093,0.068], + [21095,0.065], + [21097,0.054], + [21099,0.067], + [21101,0.062], + [21103,0.059], + [21105,0.046], + [21107,0.061], + [21109,0.062], + [21111,0.064], + [21113,0.066], + [21115,0.061], + [21117,0.067], + [21119,0.054], + [21121,0.062], + [21123,0.051], + [21125,0.06], + [21127,0.064], + [21129,0.051], + [21131,0.06], + [21133,0.058], + [21135,0.056], + [21137,0.065], + [21139,0.052], + [21141,0.063], + [21143,0.032], + [21145,0.061], + [21147,0.062], + [21149,0.056], + [21151,0.058], + [21153,0.062], + [21155,0.059], + [21157,0.054], + [21159,0.051], + [21161,0.062], + [21163,0.053], + [21165,0.055], + [21167,0.06], + [21169,0.064], + [21171,0.061], + [21173,0.065], + [21175,0.047], + [21177,0.05], + [21179,0.067], + [21181,0.064], + [21183,0.058], + [21185,0.049], + [21187,0.048], + [21189,0.076], + [21191,0.055], + [21193,0.064], + [21195,0.057], + [21197,0.065], + [21199,0.058], + [21201,0.043], + [21203,0.054], + [21205,0.055], + [21207,0.062], + [21209,0.067], + [21211,0.066], + [21213,0.065], + [21215,0.053], + [21217,0.068], + [21219,0.075], + [21221,0.055], + [21223,0.053], + [21225,0.054], + [21227,0.064], + [21229,0.06], + [21231,0.06], + [21233,0.061], + [21235,0.072], + [21237,0.061], + [21239,0.055], + [22001,0.073], + [22003,0.064], + [22005,0.072], + [22007,0.054], + [22009,0.067], + [22011,0.066], + [22013,0.061], + [22015,0.072], + [22017,0.071], + [22019,0.07], + [22021,0.057], + [22023,0.053], + [22025,0.058], + [22027,0.05], + [22029,0.063], + [22031,0.063], + [22033,0.066], + [22035,0.073], + [22037,0.049], + [22039,0.069], + [22041,0.07], + [22043,0.059], + [22045,0.073], + [22047,0.059], + [22049,0.059], + [22051,0.064], + [22053,0.069], + [22055,0.07], + [22057,0.065], + [22059,0.063], + [22061,0.057], + [22063,0.069], + [22065,0.073], + [22067,0.072], + [22069,0.065], + [22071,0.06], + [22073,0.071], + [22075,0.071], + [22077,0.062], + [22079,0.068], + [22081,0.066], + [22083,0.063], + [22085,0.063], + [22087,0.077], + [22089,0.063], + [22091,0.057], + [22093,0.061], + [22095,0.065], + [22097,0.075], + [22099,0.067], + [22101,0.069], + [22103,0.059], + [22105,0.072], + [22107,0.068], + [22109,0.073], + [22111,0.06], + [22113,0.07], + [22115,0.086], + [22117,0.061], + [22119,0.064], + [22121,0.069], + [22123,0.057], + [22125,0.041], + [22127,0.054], + [23001,0.061], + [23003,0.048], + [23005,0.049], + [23007,0.045], + [23009,0.044], + [23011,0.05], + [23013,0.044], + [23015,0.039], + [23017,0.045], + [23019,0.047], + [23021,0.04], + [23023,0.051], + [23025,0.046], + [23027,0.046], + [23029,0.048], + [23031,0.047], + [24001,0.046], + [24003,0.062], + [24005,0.059], + [24009,0.054], + [24011,0.061], + [24013,0.051], + [24015,0.057], + [24017,0.061], + [24019,0.059], + [24021,0.059], + [24023,0.048], + [24025,0.056], + [24027,0.06], + [24029,0.043], + [24031,0.064], + [24033,0.066], + [24035,0.051], + [24037,0.065], + [24039,0.048], + [24041,0.046], + [24043,0.058], + [24045,0.06], + [24047,0.043], + [24510,0.066], + [25001,0.037], + [25003,0.043], + [25005,0.053], + [25007,0.044], + [25009,0.056], + [25011,0.045], + [25013,0.057], + [25015,0.036], + [25017,0.055], + [25019,0.05], + [25021,0.054], + [25023,0.053], + [25025,0.055], + [25027,0.055], + [26001,0.03], + [26003,0.035], + [26005,0.062], + [26007,0.046], + [26009,0.043], + [26011,0.044], + [26013,0.048], + [26015,0.056], + [26017,0.05], + [26019,0.046], + [26021,0.059], + [26023,0.06], + [26025,0.062], + [26027,0.05], + [26029,0.046], + [26031,0.04], + [26033,0.049], + [26035,0.054], + [26037,0.055], + [26039,0.043], + [26041,0.051], + [26043,0.049], + [26045,0.055], + [26047,0.048], + [26049,0.06], + [26051,0.049], + [26053,0.037], + [26055,0.054], + [26057,0.049], + [26059,0.057], + [26061,0.052], + [26063,0.049], + [26065,0.056], + [26067,0.057], + [26069,0.043], + [26071,0.038], + [26073,0.047], + [26075,0.057], + [26077,0.061], + [26079,0.051], + [26081,0.069], + [26083,0.041], + [26085,0.043], + [26087,0.049], + [26089,0.041], + [26091,0.054], + [26093,0.051], + [26095,0.041], + [26097,0.037], + [26099,0.055], + [26101,0.038], + [26103,0.049], + [26105,0.052], + [26107,0.048], + [26109,0.045], + [26111,0.054], + [26113,0.065], + [26115,0.053], + [26117,0.058], + [26119,0.036], + [26121,0.061], + [26123,0.058], + [26125,0.055], + [26127,0.058], + [26129,0.045], + [26131,0.022], + [26133,0.056], + [26135,0.049], + [26137,0.055], + [26139,0.064], + [26141,0.037], + [26143,0.035], + [26145,0.057], + [26147,0.051], + [26149,0.067], + [26151,0.053], + [26153,0.041], + [26155,0.052], + [26157,0.05], + [26159,0.061], + [26161,0.051], + [26163,0.065], + [26165,0.061], + [27001,0.037], + [27003,0.063], + [27005,0.064], + [27007,0.076], + [27009,0.073], + [27011,0.056], + [27013,0.056], + [27015,0.058], + [27017,0.055], + [27019,0.065], + [27021,0.056], + [27023,0.068], + [27025,0.056], + [27027,0.071], + [27029,0.062], + [27031,0.041], + [27033,0.066], + [27035,0.056], + [27037,0.066], + [27039,0.065], + [27041,0.054], + [27043,0.057], + [27045,0.064], + [27047,0.056], + [27049,0.057], + [27051,0.06], + [27053,0.065], + [27055,0.052], + [27057,0.055], + [27059,0.061], + [27061,0.052], + [27063,0.061], + [27065,0.05], + [27067,0.067], + [27069,0.056], + [27071,0.045], + [27073,0.048], + [27075,0.05], + [27077,0.041], + [27079,0.059], + [27081,0.061], + [27083,0.072], + [27085,0.058], + [27087,0.087], + [27089,0.061], + [27091,0.052], + [27093,0.062], + [27095,0.064], + [27097,0.061], + [27099,0.064], + [27101,0.052], + [27103,0.057], + [27105,0.081], + [27107,0.054], + [27109,0.07], + [27111,0.057], + [27113,0.066], + [27115,0.049], + [27117,0.069], + [27119,0.067], + [27121,0.058], + [27123,0.07], + [27125,0.07], + [27127,0.058], + [27129,0.061], + [27131,0.056], + [27133,0.065], + [27135,0.06], + [27137,0.052], + [27139,0.072], + [27141,0.067], + [27143,0.059], + [27145,0.064], + [27147,0.066], + [27149,0.053], + [27151,0.059], + [27153,0.067], + [27155,0.052], + [27157,0.056], + [27159,0.066], + [27161,0.057], + [27163,0.061], + [27165,0.072], + [27167,0.053], + [27169,0.048], + [27171,0.073], + [27173,0.06], + [28001,0.062], + [28003,0.057], + [28005,0.056], + [28007,0.068], + [28009,0.038], + [28011,0.07], + [28013,0.061], + [28015,0.047], + [28017,0.07], + [28019,0.057], + [28021,0.057], + [28023,0.056], + [28025,0.057], + [28027,0.084], + [28029,0.062], + [28031,0.071], + [28033,0.062], + [28035,0.067], + [28037,0.056], + [28039,0.077], + [28041,0.048], + [28043,0.064], + [28045,0.056], + [28047,0.068], + [28049,0.067], + [28051,0.071], + [28053,0.068], + [28055,0.067], + [28057,0.054], + [28059,0.058], + [28061,0.064], + [28063,0.102], + [28065,0.047], + [28067,0.071], + [28069,0.045], + [28071,0.052], + [28073,0.063], + [28075,0.062], + [28077,0.062], + [28079,0.068], + [28081,0.07], + [28083,0.076], + [28085,0.064], + [28087,0.066], + [28089,0.065], + [28091,0.061], + [28093,0.06], + [28095,0.059], + [28097,0.061], + [28099,0.07], + [28101,0.065], + [28103,0.07], + [28105,0.052], + [28107,0.073], + [28109,0.057], + [28111,0.06], + [28113,0.071], + [28115,0.069], + [28117,0.061], + [28119,0.065], + [28121,0.063], + [28123,0.075], + [28125,0.051], + [28127,0.06], + [28129,0.057], + [28131,0.054], + [28133,0.06], + [28135,0.052], + [28137,0.057], + [28139,0.062], + [28141,0.057], + [28143,0.09], + [28145,0.067], + [28147,0.06], + [28149,0.064], + [28151,0.077], + [28153,0.069], + [28155,0.06], + [28157,0.055], + [28159,0.054], + [28161,0.064], + [28163,0.068], + [29001,0.047], + [29003,0.054], + [29005,0.052], + [29007,0.062], + [29009,0.058], + [29011,0.058], + [29013,0.059], + [29015,0.04], + [29017,0.054], + [29019,0.06], + [29021,0.064], + [29023,0.062], + [29025,0.056], + [29027,0.055], + [29029,0.045], + [29031,0.057], + [29033,0.061], + [29035,0.056], + [29037,0.06], + [29039,0.063], + [29041,0.063], + [29043,0.064], + [29045,0.058], + [29047,0.066], + [29049,0.053], + [29051,0.061], + [29053,0.057], + [29055,0.058], + [29057,0.046], + [29059,0.062], + [29061,0.063], + [29063,0.042], + [29065,0.057], + [29067,0.054], + [29069,0.071], + [29071,0.061], + [29073,0.05], + [29075,0.071], + [29077,0.061], + [29079,0.07], + [29081,0.062], + [29083,0.056], + [29085,0.041], + [29087,0.054], + [29089,0.061], + [29091,0.064], + [29093,0.048], + [29095,0.068], + [29097,0.07], + [29099,0.061], + [29101,0.064], + [29103,0.059], + [29105,0.064], + [29107,0.056], + [29109,0.065], + [29111,0.056], + [29113,0.066], + [29115,0.056], + [29117,0.059], + [29119,0.067], + [29121,0.062], + [29123,0.057], + [29125,0.046], + [29127,0.064], + [29129,0.059], + [29131,0.064], + [29133,0.057], + [29135,0.066], + [29137,0.053], + [29139,0.063], + [29141,0.06], + [29143,0.063], + [29145,0.062], + [29147,0.044], + [29149,0.057], + [29151,0.056], + [29153,0.044], + [29155,0.074], + [29157,0.059], + [29159,0.068], + [29161,0.058], + [29163,0.06], + [29165,0.062], + [29167,0.06], + [29169,0.07], + [29171,0.063], + [29173,0.049], + [29175,0.061], + [29177,0.058], + [29179,0.047], + [29181,0.062], + [29183,0.062], + [29185,0.046], + [29186,0.049], + [29187,0.054], + [29189,0.058], + [29195,0.063], + [29197,0.074], + [29199,0.081], + [29201,0.065], + [29203,0.054], + [29205,0.06], + [29207,0.056], + [29209,0.039], + [29211,0.055], + [29213,0.059], + [29215,0.057], + [29217,0.061], + [29219,0.064], + [29221,0.059], + [29223,0.052], + [29225,0.072], + [29227,0.056], + [29229,0.066], + [29510,0.065], + [30001,0.046], + [30003,0.092], + [30005,0.084], + [30007,0.045], + [30009,0.038], + [30011,0.049], + [30013,0.067], + [30015,0.048], + [30017,0.064], + [30019,0.054], + [30021,0.063], + [30023,0.034], + [30025,0.082], + [30027,0.055], + [30029,0.06], + [30031,0.06], + [30033,0.077], + [30035,0.09], + [30037,0.019], + [30039,0.039], + [30041,0.088], + [30043,0.042], + [30045,0.039], + [30047,0.064], + [30049,0.057], + [30051,0.055], + [30053,0.043], + [30055,0.072], + [30057,0.039], + [30059,0.076], + [30061,0.048], + [30063,0.051], + [30065,0.052], + [30067,0.053], + [30069,0.033], + [30071,0.07], + [30073,0.068], + [30075,0.051], + [30077,0.036], + [30079,0.05], + [30081,0.045], + [30083,0.068], + [30085,0.088], + [30087,0.074], + [30089,0.047], + [30091,0.063], + [30093,0.061], + [30095,0.047], + [30097,0.043], + [30099,0.065], + [30101,0.048], + [30103,0.041], + [30105,0.057], + [30107,0.077], + [30109,0.059], + [30111,0.065], + [31001,0.066], + [31003,0.064], + [31005,0.026], + [31007,0.065], + [31009,0.054], + [31011,0.065], + [31013,0.065], + [31015,0.061], + [31017,0.045], + [31019,0.069], + [31021,0.052], + [31023,0.062], + [31025,0.059], + [31027,0.065], + [31029,0.046], + [31031,0.074], + [31033,0.066], + [31035,0.062], + [31037,0.09], + [31039,0.061], + [31041,0.059], + [31043,0.085], + [31045,0.053], + [31047,0.083], + [31049,0.05], + [31051,0.065], + [31053,0.066], + [31055,0.076], + [31057,0.057], + [31059,0.045], + [31061,0.047], + [31063,0.052], + [31065,0.051], + [31067,0.058], + [31069,0.053], + [31071,0.043], + [31073,0.035], + [31075,0.072], + [31077,0.058], + [31079,0.075], + [31081,0.056], + [31083,0.063], + [31085,0.047], + [31087,0.059], + [31089,0.064], + [31091,0.016], + [31093,0.06], + [31095,0.057], + [31097,0.043], + [31099,0.061], + [31101,0.043], + [31103,0.06], + [31105,0.063], + [31107,0.064], + [31109,0.066], + [31111,0.06], + [31113,0.085], + [31115,0.054], + [31117,0.072], + [31119,0.073], + [31121,0.06], + [31123,0.052], + [31125,0.055], + [31127,0.053], + [31129,0.049], + [31131,0.065], + [31133,0.054], + [31135,0.064], + [31137,0.062], + [31139,0.063], + [31141,0.072], + [31143,0.049], + [31145,0.057], + [31147,0.051], + [31149,0.042], + [31151,0.064], + [31153,0.076], + [31155,0.062], + [31157,0.067], + [31159,0.063], + [31161,0.048], + [31163,0.047], + [31165,0.065], + [31167,0.065], + [31169,0.059], + [31171,0.028], + [31173,0.093], + [31175,0.06], + [31177,0.056], + [31179,0.051], + [31181,0.049], + [31183,0.052], + [31185,0.059], + [32001,0.072], + [32003,0.064], + [32005,0.04], + [32007,0.072], + [32009,0.023], + [32011,0.047], + [32013,0.076], + [32015,0.076], + [32017,0.038], + [32019,0.056], + [32021,0.046], + [32023,0.041], + [32027,0.041], + [32029,0.032], + [32031,0.061], + [32033,0.054], + [32510,0.052], + [33001,0.045], + [33003,0.038], + [33005,0.046], + [33007,0.039], + [33009,0.042], + [33011,0.054], + [33013,0.048], + [33015,0.046], + [33017,0.049], + [33019,0.048], + [34001,0.058], + [34003,0.053], + [34005,0.052], + [34007,0.062], + [34009,0.047], + [34011,0.066], + [34013,0.066], + [34015,0.055], + [34017,0.07], + [34019,0.04], + [34021,0.057], + [34023,0.059], + [34025,0.051], + [34027,0.05], + [34029,0.069], + [34031,0.068], + [34033,0.055], + [34035,0.053], + [34037,0.046], + [34039,0.063], + [34041,0.047], + [35001,0.06], + [35003,0.037], + [35005,0.07], + [35006,0.07], + [35007,0.05], + [35009,0.083], + [35011,0.037], + [35013,0.069], + [35015,0.073], + [35017,0.059], + [35019,0.047], + [35021,0.044], + [35023,0.065], + [35025,0.081], + [35027,0.048], + [35028,0.054], + [35029,0.074], + [35031,0.081], + [35033,0.052], + [35035,0.069], + [35037,0.061], + [35039,0.068], + [35041,0.072], + [35043,0.056], + [35045,0.072], + [35047,0.049], + [35049,0.047], + [35051,0.045], + [35053,0.03], + [35055,0.045], + [35057,0.049], + [35059,0.063], + [35061,0.059], + [36001,0.051], + [36003,0.052], + [36005,0.074], + [36007,0.052], + [36009,0.058], + [36011,0.05], + [36013,0.054], + [36015,0.059], + [36017,0.053], + [36019,0.049], + [36021,0.043], + [36023,0.051], + [36025,0.041], + [36027,0.047], + [36029,0.054], + [36031,0.04], + [36033,0.049], + [36035,0.05], + [36037,0.051], + [36039,0.045], + [36041,0.032], + [36043,0.052], + [36045,0.081], + [36047,0.074], + [36049,0.062], + [36051,0.045], + [36053,0.047], + [36055,0.056], + [36057,0.062], + [36059,0.055], + [36061,0.05], + [36063,0.052], + [36065,0.058], + [36067,0.057], + [36069,0.051], + [36071,0.066], + [36073,0.051], + [36075,0.054], + [36077,0.042], + [36079,0.045], + [36081,0.063], + [36083,0.053], + [36085,0.058], + [36087,0.076], + [36089,0.054], + [36091,0.052], + [36093,0.059], + [36095,0.044], + [36097,0.049], + [36099,0.054], + [36101,0.057], + [36103,0.054], + [36105,0.056], + [36107,0.052], + [36109,0.042], + [36111,0.045], + [36113,0.045], + [36115,0.049], + [36117,0.055], + [36119,0.057], + [36121,0.051], + [36123,0.06], + [37001,0.058], + [37003,0.047], + [37005,0.049], + [37007,0.049], + [37009,0.045], + [37011,0.037], + [37013,0.052], + [37015,0.044], + [37017,0.054], + [37019,0.044], + [37021,0.051], + [37023,0.048], + [37025,0.064], + [37027,0.05], + [37029,0.044], + [37031,0.044], + [37033,0.047], + [37035,0.057], + [37037,0.05], + [37039,0.042], + [37041,0.053], + [37043,0.039], + [37045,0.055], + [37047,0.055], + [37049,0.068], + [37051,0.077], + [37053,0.056], + [37055,0.047], + [37057,0.054], + [37059,0.049], + [37061,0.065], + [37063,0.068], + [37065,0.06], + [37067,0.062], + [37069,0.056], + [37071,0.06], + [37073,0.043], + [37075,0.04], + [37077,0.049], + [37079,0.053], + [37081,0.06], + [37083,0.052], + [37085,0.076], + [37087,0.047], + [37089,0.049], + [37091,0.047], + [37093,0.089], + [37095,0.053], + [37097,0.056], + [37099,0.046], + [37101,0.065], + [37103,0.048], + [37105,0.066], + [37107,0.058], + [37109,0.052], + [37111,0.045], + [37113,0.05], + [37115,0.044], + [37117,0.052], + [37119,0.069], + [37121,0.047], + [37123,0.057], + [37125,0.055], + [37127,0.056], + [37129,0.052], + [37131,0.046], + [37133,0.092], + [37135,0.047], + [37137,0.04], + [37139,0.064], + [37141,0.057], + [37143,0.046], + [37145,0.055], + [37147,0.06], + [37149,0.035], + [37151,0.057], + [37153,0.059], + [37155,0.069], + [37157,0.052], + [37159,0.057], + [37161,0.05], + [37163,0.064], + [37165,0.063], + [37167,0.056], + [37169,0.046], + [37171,0.053], + [37173,0.063], + [37175,0.04], + [37177,0.026], + [37179,0.06], + [37181,0.063], + [37183,0.064], + [37185,0.045], + [37187,0.05], + [37189,0.034], + [37191,0.067], + [37193,0.049], + [37195,0.061], + [37197,0.053], + [37199,0.048], + [38001,0.045], + [38003,0.053], + [38005,0.104], + [38007,0.086], + [38009,0.058], + [38011,0.068], + [38013,0.092], + [38015,0.069], + [38017,0.071], + [38019,0.065], + [38021,0.053], + [38023,0.049], + [38025,0.066], + [38027,0.07], + [38029,0.048], + [38031,0.053], + [38033,0.077], + [38035,0.067], + [38037,0.056], + [38039,0.062], + [38041,0.064], + [38043,0.065], + [38045,0.054], + [38047,0.047], + [38049,0.058], + [38051,0.047], + [38053,0.098], + [38055,0.055], + [38057,0.063], + [38059,0.063], + [38061,0.076], + [38063,0.051], + [38065,0.051], + [38067,0.055], + [38069,0.068], + [38071,0.063], + [38073,0.053], + [38075,0.077], + [38077,0.054], + [38079,0.1], + [38081,0.049], + [38083,0.056], + [38085,0.107], + [38087,0.079], + [38089,0.078], + [38091,0.05], + [38093,0.057], + [38095,0.048], + [38097,0.058], + [38099,0.065], + [38101,0.077], + [38103,0.054], + [38105,0.084], + [39001,0.062], + [39003,0.062], + [39005,0.059], + [39007,0.056], + [39009,0.04], + [39011,0.064], + [39013,0.05], + [39015,0.057], + [39017,0.062], + [39019,0.047], + [39021,0.054], + [39023,0.059], + [39025,0.059], + [39027,0.062], + [39029,0.053], + [39031,0.062], + [39033,0.057], + [39035,0.058], + [39037,0.06], + [39039,0.057], + [39041,0.064], + [39043,0.053], + [39045,0.059], + [39047,0.063], + [39049,0.072], + [39051,0.059], + [39053,0.064], + [39055,0.053], + [39057,0.056], + [39059,0.06], + [39061,0.066], + [39063,0.06], + [39065,0.062], + [39067,0.05], + [39069,0.059], + [39071,0.063], + [39073,0.055], + [39075,0.087], + [39077,0.062], + [39079,0.064], + [39081,0.05], + [39083,0.059], + [39085,0.05], + [39087,0.057], + [39089,0.06], + [39091,0.061], + [39093,0.057], + [39095,0.064], + [39097,0.051], + [39099,0.052], + [39101,0.059], + [39103,0.054], + [39105,0.053], + [39107,0.07], + [39109,0.059], + [39111,0.054], + [39113,0.062], + [39115,0.049], + [39117,0.056], + [39119,0.061], + [39121,0.049], + [39123,0.043], + [39125,0.059], + [39127,0.061], + [39129,0.056], + [39131,0.06], + [39133,0.046], + [39135,0.056], + [39137,0.067], + [39139,0.058], + [39141,0.054], + [39143,0.057], + [39145,0.055], + [39147,0.052], + [39149,0.064], + [39151,0.056], + [39153,0.057], + [39155,0.052], + [39157,0.062], + [39159,0.061], + [39161,0.058], + [39163,0.054], + [39165,0.059], + [39167,0.05], + [39169,0.067], + [39171,0.058], + [39173,0.053], + [39175,0.056], + [40001,0.07], + [40003,0.057], + [40005,0.059], + [40007,0.057], + [40009,0.079], + [40011,0.071], + [40013,0.065], + [40015,0.07], + [40017,0.069], + [40019,0.069], + [40021,0.064], + [40023,0.067], + [40025,0.063], + [40027,0.057], + [40029,0.061], + [40031,0.073], + [40033,0.054], + [40035,0.056], + [40037,0.063], + [40039,0.075], + [40041,0.05], + [40043,0.071], + [40045,0.063], + [40047,0.077], + [40049,0.069], + [40051,0.06], + [40053,0.061], + [40055,0.059], + [40057,0.041], + [40059,0.077], + [40061,0.062], + [40063,0.055], + [40065,0.081], + [40067,0.066], + [40069,0.064], + [40071,0.069], + [40073,0.071], + [40075,0.065], + [40077,0.057], + [40079,0.061], + [40081,0.061], + [40083,0.06], + [40085,0.063], + [40087,0.062], + [40089,0.07], + [40091,0.055], + [40093,0.069], + [40095,0.058], + [40097,0.061], + [40099,0.061], + [40101,0.068], + [40103,0.058], + [40105,0.055], + [40107,0.062], + [40109,0.078], + [40111,0.064], + [40113,0.053], + [40115,0.07], + [40117,0.061], + [40119,0.055], + [40121,0.06], + [40123,0.069], + [40125,0.064], + [40127,0.059], + [40129,0.065], + [40131,0.059], + [40133,0.066], + [40135,0.058], + [40137,0.06], + [40139,0.079], + [40141,0.061], + [40143,0.073], + [40145,0.062], + [40147,0.063], + [40149,0.067], + [40151,0.062], + [40153,0.072], + [41001,0.051], + [41003,0.042], + [41005,0.055], + [41007,0.055], + [41009,0.052], + [41011,0.049], + [41013,0.045], + [41015,0.038], + [41017,0.053], + [41019,0.052], + [41021,0.055], + [41023,0.045], + [41025,0.054], + [41027,0.066], + [41029,0.057], + [41031,0.064], + [41033,0.048], + [41035,0.061], + [41037,0.053], + [41039,0.05], + [41041,0.049], + [41043,0.061], + [41045,0.07], + [41047,0.068], + [41049,0.074], + [41051,0.058], + [41053,0.058], + [41055,0.035], + [41057,0.049], + [41059,0.07], + [41061,0.058], + [41063,0.045], + [41065,0.064], + [41067,0.064], + [41069,0.04], + [41071,0.058], + [42001,0.05], + [42003,0.053], + [42005,0.05], + [42007,0.052], + [42009,0.049], + [42011,0.059], + [42013,0.055], + [42015,0.059], + [42017,0.049], + [42019,0.051], + [42021,0.049], + [42023,0.045], + [42025,0.046], + [42027,0.041], + [42029,0.056], + [42031,0.05], + [42033,0.046], + [42035,0.054], + [42037,0.046], + [42039,0.054], + [42041,0.054], + [42043,0.063], + [42045,0.06], + [42047,0.05], + [42049,0.057], + [42051,0.05], + [42053,0.02], + [42055,0.059], + [42057,0.052], + [42059,0.051], + [42061,0.048], + [42063,0.048], + [42065,0.056], + [42067,0.055], + [42069,0.053], + [42071,0.067], + [42073,0.051], + [42075,0.061], + [42077,0.059], + [42079,0.05], + [42081,0.056], + [42083,0.05], + [42085,0.049], + [42087,0.061], + [42089,0.045], + [42091,0.056], + [42093,0.054], + [42095,0.05], + [42097,0.053], + [42099,0.057], + [42101,0.069], + [42103,0.037], + [42105,0.052], + [42107,0.048], + [42109,0.056], + [42111,0.045], + [42113,0.031], + [42115,0.045], + [42117,0.053], + [42119,0.044], + [42121,0.053], + [42123,0.05], + [42125,0.051], + [42127,0.04], + [42129,0.046], + [42131,0.049], + [42133,0.057], + [44001,0.039], + [44003,0.049], + [44005,0.044], + [44007,0.057], + [44009,0.037], + [45001,0.053], + [45003,0.058], + [45005,0.05], + [45007,0.059], + [45009,0.049], + [45011,0.066], + [45013,0.057], + [45015,0.066], + [45017,0.049], + [45019,0.061], + [45021,0.059], + [45023,0.059], + [45025,0.057], + [45027,0.049], + [45029,0.057], + [45031,0.058], + [45033,0.069], + [45035,0.062], + [45037,0.04], + [45039,0.048], + [45041,0.064], + [45043,0.048], + [45045,0.064], + [45047,0.062], + [45049,0.055], + [45051,0.051], + [45053,0.06], + [45055,0.057], + [45057,0.059], + [45059,0.058], + [45061,0.056], + [45063,0.06], + [45065,0.031], + [45067,0.062], + [45069,0.053], + [45071,0.06], + [45073,0.053], + [45075,0.058], + [45077,0.05], + [45079,0.059], + [45081,0.064], + [45083,0.061], + [45085,0.068], + [45087,0.054], + [45089,0.051], + [45091,0.063], + [46003,0.068], + [46005,0.088], + [46007,0.087], + [46009,0.046], + [46011,0.061], + [46013,0.063], + [46015,0.066], + [46017,0.106], + [46019,0.062], + [46021,0.044], + [46023,0.089], + [46025,0.085], + [46027,0.052], + [46029,0.063], + [46031,0.104], + [46033,0.039], + [46035,0.058], + [46037,0.056], + [46039,0.057], + [46041,0.117], + [46043,0.064], + [46045,0.066], + [46047,0.046], + [46049,0.07], + [46051,0.053], + [46053,0.061], + [46055,0.053], + [46057,0.094], + [46059,0.058], + [46061,0.087], + [46063,0.08], + [46065,0.072], + [46067,0.074], + [46069,0.066], + [46071,0.104], + [46073,0.066], + [46075,0.02], + [46077,0.061], + [46079,0.074], + [46081,0.046], + [46083,0.078], + [46085,0.084], + [46087,0.076], + [46089,0.065], + [46091,0.082], + [46093,0.064], + [46095,0.078], + [46097,0.057], + [46099,0.078], + [46101,0.066], + [46102,null], + [46103,0.068], + [46105,0.05], + [46107,0.057], + [46109,0.081], + [46111,0.071], + [46115,0.06], + [46117,0.066], + [46119,0.061], + [46121,0.124], + [46123,0.057], + [46125,0.06], + [46127,0.056], + [46129,0.067], + [46135,0.058], + [46137,0.077], + [47001,0.053], + [47003,0.067], + [47005,0.05], + [47007,0.043], + [47009,0.051], + [47011,0.057], + [47013,0.051], + [47015,0.052], + [47017,0.059], + [47019,0.044], + [47021,0.054], + [47023,0.059], + [47025,0.048], + [47027,0.053], + [47029,0.051], + [47031,0.063], + [47033,0.061], + [47035,0.049], + [47037,0.069], + [47039,0.054], + [47041,0.053], + [47043,0.062], + [47045,0.06], + [47047,0.053], + [47049,0.056], + [47051,0.048], + [47053,0.067], + [47055,0.058], + [47057,0.048], + [47059,0.046], + [47061,0.058], + [47063,0.061], + [47065,0.058], + [47067,0.051], + [47069,0.049], + [47071,0.052], + [47073,0.05], + [47075,0.06], + [47077,0.057], + [47079,0.05], + [47081,0.055], + [47083,0.053], + [47085,0.052], + [47087,0.043], + [47089,0.05], + [47091,0.043], + [47093,0.058], + [47095,0.042], + [47097,0.057], + [47099,0.069], + [47101,0.05], + [47103,0.051], + [47105,0.052], + [47107,0.052], + [47109,0.054], + [47111,0.07], + [47113,0.063], + [47115,0.058], + [47117,0.058], + [47119,0.067], + [47121,0.05], + [47123,0.056], + [47125,0.086], + [47127,0.05], + [47129,0.047], + [47131,0.057], + [47133,0.056], + [47135,0.067], + [47137,0.044], + [47139,0.045], + [47141,0.057], + [47143,0.058], + [47145,0.044], + [47147,0.065], + [47149,0.066], + [47151,0.061], + [47153,0.053], + [47155,0.054], + [47157,0.072], + [47159,0.057], + [47161,0.055], + [47163,0.05], + [47165,0.061], + [47167,0.062], + [47169,0.053], + [47171,0.042], + [47173,0.056], + [47175,0.049], + [47177,0.06], + [47179,0.052], + [47181,0.042], + [47183,0.052], + [47185,0.058], + [47187,0.06], + [47189,0.06], + [48001,0.051], + [48003,0.091], + [48005,0.069], + [48007,0.05], + [48009,0.048], + [48011,0.053], + [48013,0.072], + [48015,0.061], + [48017,0.074], + [48019,0.042], + [48021,0.065], + [48023,0.052], + [48025,0.059], + [48027,0.088], + [48029,0.072], + [48031,0.041], + [48033,0.125], + [48035,0.055], + [48037,0.064], + [48039,0.071], + [48041,0.062], + [48043,0.055], + [48045,0.042], + [48047,0.081], + [48049,0.056], + [48051,0.059], + [48053,0.053], + [48055,0.061], + [48057,0.067], + [48059,0.053], + [48061,0.086], + [48063,0.074], + [48065,0.064], + [48067,0.058], + [48069,0.081], + [48071,0.07], + [48073,0.07], + [48075,0.064], + [48077,0.046], + [48079,0.078], + [48081,0.026], + [48083,0.058], + [48085,0.064], + [48087,0.067], + [48089,0.062], + [48091,0.058], + [48093,0.058], + [48095,0.027], + [48097,0.067], + [48099,0.072], + [48101,0.101], + [48103,0.083], + [48105,0.1], + [48107,0.071], + [48109,0.076], + [48111,0.093], + [48113,0.076], + [48115,0.069], + [48117,0.091], + [48119,0.063], + [48121,0.066], + [48123,0.067], + [48125,0.051], + [48127,0.097], + [48129,0.05], + [48131,0.069], + [48133,0.052], + [48135,0.091], + [48137,0.05], + [48139,0.067], + [48141,0.079], + [48143,0.059], + [48145,0.06], + [48147,0.051], + [48149,0.049], + [48151,0.061], + [48153,0.064], + [48155,0.035], + [48157,0.07], + [48159,0.058], + [48161,0.059], + [48163,0.064], + [48165,0.104], + [48167,0.065], + [48169,0.043], + [48171,0.049], + [48173,0.039], + [48175,0.05], + [48177,0.073], + [48179,0.073], + [48181,0.063], + [48183,0.077], + [48185,0.054], + [48187,0.065], + [48189,0.073], + [48191,0.034], + [48193,0.054], + [48195,0.069], + [48197,0.044], + [48199,0.065], + [48201,0.077], + [48203,0.066], + [48205,0.053], + [48207,0.043], + [48209,0.062], + [48211,0.069], + [48213,0.057], + [48215,0.096], + [48217,0.06], + [48219,0.069], + [48221,0.057], + [48223,0.066], + [48225,0.051], + [48227,0.064], + [48229,0.057], + [48231,0.062], + [48233,0.069], + [48235,0.049], + [48237,0.057], + [48239,0.071], + [48241,0.059], + [48243,0.025], + [48245,0.069], + [48247,0.068], + [48249,0.079], + [48251,0.066], + [48253,0.045], + [48255,0.055], + [48257,0.071], + [48259,0.052], + [48261,0.071], + [48263,0.091], + [48265,0.051], + [48267,0.058], + [48269,0.073], + [48271,0.03], + [48273,0.069], + [48275,0.078], + [48277,0.066], + [48279,0.072], + [48281,0.056], + [48283,0.08], + [48285,0.06], + [48287,0.054], + [48289,0.062], + [48291,0.069], + [48293,0.064], + [48295,0.075], + [48297,0.053], + [48299,0.038], + [48301,0], + [48303,0.068], + [48305,0.067], + [48307,0.059], + [48309,0.07], + [48311,0.075], + [48313,0.044], + [48315,0.046], + [48317,0.09], + [48319,0.057], + [48321,0.07], + [48323,0.095], + [48325,0.058], + [48327,0.022], + [48329,0.086], + [48331,0.063], + [48333,0.032], + [48335,0.052], + [48337,0.058], + [48339,0.068], + [48341,0.088], + [48343,0.063], + [48345,0.056], + [48347,0.068], + [48349,0.072], + [48351,0.052], + [48353,0.065], + [48355,0.069], + [48357,0.086], + [48359,0.056], + [48361,0.068], + [48363,0.065], + [48365,0.062], + [48367,0.061], + [48369,0.077], + [48371,0.069], + [48373,0.054], + [48375,0.082], + [48377,0.075], + [48379,0.048], + [48381,0.065], + [48383,0.067], + [48385,0.068], + [48387,0.042], + [48389,0.062], + [48391,0.063], + [48393,0.051], + [48395,0.065], + [48397,0.063], + [48399,0.06], + [48401,0.061], + [48403,0.047], + [48405,0.056], + [48407,0.055], + [48409,0.074], + [48411,0.056], + [48413,0.067], + [48415,0.071], + [48417,0.061], + [48419,0.071], + [48421,0.06], + [48423,0.069], + [48425,0.052], + [48427,0.102], + [48429,0.052], + [48431,0.099], + [48433,0.047], + [48435,0.047], + [48437,0.069], + [48439,0.072], + [48441,0.074], + [48443,0.008], + [48445,0.081], + [48447,0.057], + [48449,0.077], + [48451,0.069], + [48453,0.067], + [48455,0.046], + [48457,0.051], + [48459,0.061], + [48461,0.101], + [48463,0.079], + [48465,0.086], + [48467,0.055], + [48469,0.073], + [48471,0.044], + [48473,0.067], + [48475,0.073], + [48477,0.057], + [48479,0.099], + [48481,0.068], + [48483,0.072], + [48485,0.065], + [48487,0.058], + [48489,0.064], + [48491,0.068], + [48493,0.058], + [48495,0.084], + [48497,0.067], + [48499,0.048], + [48501,0.092], + [48503,0.064], + [48505,0.1], + [48507,0.083], + [49001,0.088], + [49003,0.087], + [49005,0.091], + [49007,0.069], + [49009,0.058], + [49011,0.09], + [49013,0.103], + [49015,0.073], + [49017,0.06], + [49019,0.063], + [49021,0.084], + [49023,0.089], + [49025,0.057], + [49027,0.08], + [49029,0.09], + [49031,0.049], + [49033,0.078], + [49035,0.079], + [49037,0.08], + [49039,0.065], + [49041,0.072], + [49043,0.059], + [49045,0.085], + [49047,0.096], + [49049,0.1], + [49051,0.079], + [49053,0.073], + [49055,0.057], + [49057,0.08], + [50001,0.043], + [50003,0.047], + [50005,0.049], + [50007,0.048], + [50009,0.043], + [50011,0.059], + [50013,0.043], + [50015,0.053], + [50017,0.047], + [50019,0.05], + [50021,0.044], + [50023,0.048], + [50025,0.045], + [50027,0.044], + [51001,0.058], + [51003,0.054], + [51005,0.046], + [51007,0.055], + [51009,0.054], + [51011,0.056], + [51013,0.06], + [51015,0.048], + [51017,0.028], + [51019,0.048], + [51021,0.037], + [51023,0.043], + [51025,0.047], + [51027,0.043], + [51029,0.049], + [51031,0.051], + [51033,0.069], + [51035,0.052], + [51036,0.041], + [51037,0.06], + [51041,0.06], + [51043,0.05], + [51045,0.052], + [51047,0.065], + [51049,0.052], + [51051,0.053], + [51053,0.056], + [51057,0.064], + [51059,0.065], + [51061,0.058], + [51063,0.048], + [51065,0.046], + [51067,0.047], + [51069,0.06], + [51071,0.051], + [51073,0.053], + [51075,0.039], + [51077,0.043], + [51079,0.061], + [51081,0.045], + [51083,0.052], + [51085,0.05], + [51087,0.063], + [51089,0.048], + [51091,0.037], + [51093,0.05], + [51095,0.048], + [51097,0.052], + [51099,0.063], + [51101,0.061], + [51103,0.04], + [51105,0.047], + [51107,0.075], + [51109,0.054], + [51111,0.049], + [51113,0.041], + [51115,0.029], + [51117,0.046], + [51119,0.032], + [51121,0.045], + [51125,0.042], + [51127,0.053], + [51131,0.061], + [51133,0.027], + [51135,0.054], + [51137,0.057], + [51139,0.048], + [51141,0.044], + [51143,0.044], + [51145,0.042], + [51147,0.046], + [51149,0.055], + [51153,0.076], + [51155,0.047], + [51157,0.049], + [51159,0.035], + [51161,0.048], + [51163,0.048], + [51165,0.056], + [51167,0.048], + [51169,0.042], + [51171,0.056], + [51173,0.049], + [51175,0.05], + [51177,0.063], + [51179,0.064], + [51181,0.044], + [51183,0.042], + [51185,0.052], + [51187,0.058], + [51191,0.043], + [51193,0.057], + [51195,0.052], + [51197,0.047], + [51199,0.055], + [51510,0.073], + [51520,0.056], + [51530,0.045], + [51540,0.055], + [51550,0.063], + [51570,0.064], + [51580,0.046], + [51590,0.063], + [51595,0.057], + [51600,0.07], + [51610,0.063], + [51620,0.061], + [51630,0.069], + [51640,0.051], + [51650,0.062], + [51660,0.051], + [51670,0.074], + [51678,0.021], + [51680,0.06], + [51683,0.084], + [51685,0.066], + [51690,0.076], + [51700,0.074], + [51710,0.068], + [51720,0.08], + [51730,0.074], + [51735,0.042], + [51740,0.076], + [51750,0.029], + [51760,0.061], + [51770,0.069], + [51775,0.056], + [51790,0.056], + [51800,0.067], + [51810,0.065], + [51820,0.064], + [51830,0.034], + [51840,0.067], + [53001,0.103], + [53003,0.051], + [53005,0.072], + [53007,0.066], + [53009,0.048], + [53011,0.063], + [53013,0.049], + [53015,0.06], + [53017,0.069], + [53019,0.045], + [53021,0.094], + [53023,0.063], + [53025,0.082], + [53027,0.057], + [53029,0.057], + [53031,0.035], + [53033,0.06], + [53035,0.058], + [53037,0.049], + [53039,0.05], + [53041,0.059], + [53043,0.047], + [53045,0.053], + [53047,0.064], + [53049,0.044], + [53051,0.046], + [53053,0.068], + [53055,0.029], + [53057,0.061], + [53059,0.045], + [53061,0.063], + [53063,0.062], + [53065,0.055], + [53067,0.059], + [53069,0.039], + [53071,0.056], + [53073,0.055], + [53075,0.043], + [53077,0.083], + [54001,0.052], + [54003,0.062], + [54005,0.054], + [54007,0.054], + [54009,0.042], + [54011,0.058], + [54013,0.05], + [54015,0.057], + [54017,0.04], + [54019,0.059], + [54021,0.049], + [54023,0.052], + [54025,0.052], + [54027,0.046], + [54029,0.049], + [54031,0.049], + [54033,0.058], + [54035,0.057], + [54037,0.056], + [54039,0.056], + [54041,0.062], + [54043,0.061], + [54045,0.056], + [54047,0.059], + [54049,0.059], + [54051,0.052], + [54053,0.054], + [54055,0.059], + [54057,0.052], + [54059,0.063], + [54061,0.05], + [54063,0.048], + [54065,0.045], + [54067,0.053], + [54069,0.052], + [54071,0.044], + [54073,0.046], + [54075,0.05], + [54077,0.052], + [54079,0.058], + [54081,0.057], + [54083,0.052], + [54085,0.049], + [54087,0.05], + [54089,0.039], + [54091,0.057], + [54093,0.045], + [54095,0.053], + [54097,0.055], + [54099,0.053], + [54101,0.055], + [54103,0.051], + [54105,0.052], + [54107,0.057], + [54109,0.054], + [55001,0.032], + [55003,0.054], + [55005,0.056], + [55007,0.04], + [55009,0.066], + [55011,0.055], + [55013,0.043], + [55015,0.059], + [55017,0.058], + [55019,0.082], + [55021,0.054], + [55023,0.049], + [55025,0.059], + [55027,0.049], + [55029,0.037], + [55031,0.051], + [55033,0.052], + [55035,0.058], + [55037,0.041], + [55039,0.055], + [55041,0.058], + [55043,0.052], + [55045,0.054], + [55047,0.055], + [55049,0.058], + [55051,0.029], + [55053,0.06], + [55055,0.053], + [55057,0.051], + [55059,0.059], + [55061,0.051], + [55063,0.053], + [55065,0.065], + [55067,0.048], + [55069,0.046], + [55071,0.053], + [55073,0.06], + [55075,0.045], + [55077,0.051], + [55078,0.083], + [55079,0.07], + [55081,0.067], + [55083,0.049], + [55085,0.044], + [55087,0.064], + [55089,0.051], + [55091,0.057], + [55093,0.05], + [55095,0.051], + [55097,0.051], + [55099,0.037], + [55101,0.062], + [55103,0.052], + [55105,0.061], + [55107,0.048], + [55109,0.063], + [55111,0.06], + [55113,0.051], + [55115,0.054], + [55117,0.056], + [55119,0.057], + [55121,0.067], + [55123,0.069], + [55125,0.039], + [55127,0.052], + [55129,0.048], + [55131,0.054], + [55133,0.051], + [55135,0.049], + [55137,0.048], + [55139,0.056], + [55141,0.056], + [56001,0.05], + [56003,0.064], + [56005,0.078], + [56007,0.067], + [56009,0.064], + [56011,0.067], + [56013,0.072], + [56015,0.054], + [56017,0.05], + [56019,0.057], + [56021,0.064], + [56023,0.066], + [56025,0.068], + [56027,0.053], + [56029,0.054], + [56031,0.057], + [56033,0.054], + [56035,0.063], + [56037,0.072], + [56039,0.053], + [56041,0.075], + [56043,0.055], + [56045,0.054] + ] +} diff --git a/data/regional/united-states/demographics/age/us-age-under5-2019.json b/data/regional/united-states/demographics/age/us-age-under5-2019.json new file mode 100644 index 0000000..ff6e755 --- /dev/null +++ b/data/regional/united-states/demographics/age/us-age-under5-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Under 5", + "description" : "Percent of the population under age 5.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.age.under5.2019"], + [1001,0.058], + [1003,0.055], + [1005,0.053], + [1007,0.058], + [1009,0.059], + [1011,0.053], + [1013,0.058], + [1015,0.058], + [1017,0.061], + [1019,0.046], + [1021,0.063], + [1023,0.053], + [1025,0.057], + [1027,0.051], + [1029,0.057], + [1031,0.062], + [1033,0.057], + [1035,0.056], + [1037,0.034], + [1039,0.058], + [1041,0.057], + [1043,0.062], + [1045,0.066], + [1047,0.061], + [1049,0.06], + [1051,0.058], + [1053,0.057], + [1055,0.058], + [1057,0.053], + [1059,0.071], + [1061,0.055], + [1063,0.069], + [1065,0.066], + [1067,0.052], + [1069,0.061], + [1071,0.053], + [1073,0.064], + [1075,0.052], + [1077,0.052], + [1079,0.054], + [1081,0.059], + [1083,0.055], + [1085,0.061], + [1087,0.045], + [1089,0.059], + [1091,0.05], + [1093,0.052], + [1095,0.069], + [1097,0.066], + [1099,0.053], + [1101,0.068], + [1103,0.06], + [1105,0.052], + [1107,0.052], + [1109,0.055], + [1111,0.058], + [1113,0.072], + [1115,0.059], + [1117,0.058], + [1119,0.056], + [1121,0.053], + [1123,0.056], + [1125,0.06], + [1127,0.061], + [1129,0.048], + [1131,0.063], + [1133,0.055], + [2013,0.032], + [2016,0.033], + [2020,0.072], + [2050,0.101], + [2060,0.055], + [2068,0.028], + [2070,0.095], + [2090,0.079], + [2100,0.073], + [2105,0.042], + [2110,0.058], + [2122,0.061], + [2130,0.058], + [2150,0.074], + [2158,0.13], + [2164,0.062], + [2170,0.071], + [2180,0.099], + [2185,0.081], + [2188,0.106], + [2195,0.064], + [2198,0.059], + [2220,0.044], + [2230,0.055], + [2240,0.075], + [2261,0.063], + [2275,0.048], + [2282,0.086], + [2290,0.074], + [4001,0.067], + [4003,0.059], + [4005,0.055], + [4007,0.055], + [4009,0.073], + [4011,0.079], + [4012,0.046], + [4013,0.064], + [4015,0.044], + [4017,0.071], + [4019,0.057], + [4021,0.058], + [4023,0.071], + [4025,0.042], + [4027,0.072], + [5001,0.064], + [5003,0.061], + [5005,0.042], + [5007,0.07], + [5009,0.063], + [5011,0.061], + [5013,0.049], + [5015,0.057], + [5017,0.057], + [5019,0.054], + [5021,0.055], + [5023,0.047], + [5025,0.052], + [5027,0.061], + [5029,0.06], + [5031,0.07], + [5033,0.063], + [5035,0.077], + [5037,0.063], + [5039,0.052], + [5041,0.064], + [5043,0.061], + [5045,0.062], + [5047,0.063], + [5049,0.049], + [5051,0.053], + [5053,0.053], + [5055,0.065], + [5057,0.071], + [5059,0.049], + [5061,0.07], + [5063,0.067], + [5065,0.047], + [5067,0.053], + [5069,0.06], + [5071,0.062], + [5073,0.055], + [5075,0.057], + [5077,0.051], + [5079,0.041], + [5081,0.058], + [5083,0.058], + [5085,0.068], + [5087,0.069], + [5089,0.044], + [5091,0.063], + [5093,0.072], + [5095,0.062], + [5097,0.046], + [5099,0.06], + [5101,0.045], + [5103,0.061], + [5105,0.056], + [5107,0.075], + [5109,0.053], + [5111,0.064], + [5113,0.059], + [5115,0.062], + [5117,0.054], + [5119,0.067], + [5121,0.06], + [5123,0.064], + [5125,0.058], + [5127,0.071], + [5129,0.048], + [5131,0.066], + [5133,0.08], + [5135,0.049], + [5137,0.046], + [5139,0.067], + [5141,0.047], + [5143,0.069], + [5145,0.062], + [5147,0.058], + [5149,0.064], + [6001,0.058], + [6003,0.042], + [6005,0.04], + [6007,0.055], + [6009,0.042], + [6011,0.073], + [6013,0.057], + [6015,0.056], + [6017,0.046], + [6019,0.079], + [6021,0.073], + [6023,0.053], + [6025,0.083], + [6027,0.056], + [6029,0.079], + [6031,0.077], + [6033,0.058], + [6035,0.046], + [6037,0.061], + [6039,0.075], + [6041,0.047], + [6043,0.042], + [6045,0.058], + [6047,0.079], + [6049,0.05], + [6051,0.035], + [6053,0.073], + [6055,0.051], + [6057,0.042], + [6059,0.059], + [6061,0.053], + [6063,0.043], + [6065,0.065], + [6067,0.065], + [6069,0.064], + [6071,0.072], + [6073,0.063], + [6075,0.045], + [6077,0.071], + [6079,0.047], + [6081,0.057], + [6083,0.063], + [6085,0.06], + [6087,0.052], + [6089,0.059], + [6091,0.04], + [6093,0.054], + [6095,0.061], + [6097,0.05], + [6099,0.072], + [6101,0.068], + [6103,0.06], + [6105,0.046], + [6107,0.082], + [6109,0.045], + [6111,0.06], + [6113,0.057], + [6115,0.078], + [8001,0.072], + [8003,0.069], + [8005,0.063], + [8007,0.045], + [8009,0.051], + [8011,0.034], + [8013,0.046], + [8014,0.054], + [8015,0.038], + [8017,0.107], + [8019,0.039], + [8021,0.066], + [8023,0.042], + [8025,0.029], + [8027,0.01], + [8029,0.049], + [8031,0.061], + [8033,0.066], + [8035,0.059], + [8037,0.056], + [8039,0.044], + [8041,0.067], + [8043,0.039], + [8045,0.067], + [8047,0.024], + [8049,0.038], + [8051,0.044], + [8053,0.043], + [8055,0.035], + [8057,0.026], + [8059,0.052], + [8061,0.119], + [8063,0.057], + [8065,0.026], + [8067,0.052], + [8069,0.051], + [8071,0.043], + [8073,0.055], + [8075,0.074], + [8077,0.057], + [8079,0.018], + [8081,0.068], + [8083,0.053], + [8085,0.056], + [8087,0.072], + [8089,0.059], + [8091,0.043], + [8093,0.04], + [8095,0.084], + [8097,0.046], + [8099,0.068], + [8101,0.058], + [8103,0.063], + [8105,0.057], + [8107,0.044], + [8109,0.052], + [8111,0.042], + [8113,0.038], + [8115,0.103], + [8117,0.043], + [8119,0.037], + [8121,0.052], + [8123,0.072], + [8125,0.073], + [9001,0.055], + [9003,0.053], + [9005,0.041], + [9007,0.041], + [9009,0.052], + [9011,0.05], + [9013,0.041], + [9015,0.049], + [10001,0.062], + [10003,0.058], + [10005,0.051], + [11001,0.065], + [12001,0.053], + [12003,0.063], + [12005,0.061], + [12007,0.048], + [12009,0.047], + [12011,0.058], + [12013,0.044], + [12015,0.03], + [12017,0.036], + [12019,0.055], + [12021,0.045], + [12023,0.06], + [12027,0.05], + [12029,0.044], + [12031,0.068], + [12033,0.06], + [12035,0.039], + [12037,0.044], + [12039,0.059], + [12041,0.049], + [12043,0.032], + [12045,0.046], + [12047,0.044], + [12049,0.065], + [12051,0.074], + [12053,0.045], + [12055,0.047], + [12057,0.062], + [12059,0.047], + [12061,0.042], + [12063,0.05], + [12065,0.043], + [12067,0.053], + [12069,0.049], + [12071,0.047], + [12073,0.052], + [12075,0.05], + [12077,0.038], + [12079,0.049], + [12081,0.048], + [12083,0.05], + [12085,0.041], + [12086,0.059], + [12087,0.046], + [12089,0.051], + [12091,0.066], + [12093,0.06], + [12095,0.061], + [12097,0.064], + [12099,0.051], + [12101,0.052], + [12103,0.044], + [12105,0.058], + [12107,0.057], + [12109,0.05], + [12111,0.052], + [12113,0.057], + [12115,0.036], + [12117,0.053], + [12119,0.018], + [12121,0.05], + [12123,0.046], + [12125,0.058], + [12127,0.047], + [12129,0.047], + [12131,0.059], + [12133,0.047], + [13001,0.067], + [13003,0.064], + [13005,0.071], + [13007,0.032], + [13009,0.049], + [13011,0.054], + [13013,0.069], + [13015,0.065], + [13017,0.064], + [13019,0.063], + [13021,0.069], + [13023,0.059], + [13025,0.06], + [13027,0.063], + [13029,0.073], + [13031,0.057], + [13033,0.073], + [13035,0.055], + [13037,0.032], + [13039,0.072], + [13043,0.053], + [13045,0.063], + [13047,0.057], + [13049,0.055], + [13051,0.064], + [13053,0.084], + [13055,0.058], + [13057,0.06], + [13059,0.053], + [13061,0.038], + [13063,0.076], + [13065,0.069], + [13067,0.063], + [13069,0.068], + [13071,0.069], + [13073,0.064], + [13075,0.065], + [13077,0.061], + [13079,0.054], + [13081,0.064], + [13083,0.048], + [13085,0.054], + [13087,0.067], + [13089,0.071], + [13091,0.051], + [13093,0.04], + [13095,0.067], + [13097,0.063], + [13099,0.065], + [13101,0.044], + [13103,0.069], + [13105,0.06], + [13107,0.07], + [13109,0.07], + [13111,0.04], + [13113,0.045], + [13115,0.06], + [13117,0.061], + [13119,0.06], + [13121,0.06], + [13123,0.053], + [13125,0.042], + [13127,0.058], + [13129,0.058], + [13131,0.055], + [13133,0.052], + [13135,0.067], + [13137,0.058], + [13139,0.066], + [13141,0.039], + [13143,0.063], + [13145,0.05], + [13147,0.053], + [13149,0.056], + [13151,0.058], + [13153,0.067], + [13155,0.045], + [13157,0.066], + [13159,0.056], + [13161,0.068], + [13163,0.061], + [13165,0.067], + [13167,0.057], + [13169,0.051], + [13171,0.058], + [13173,0.072], + [13175,0.066], + [13177,0.061], + [13179,0.102], + [13181,0.051], + [13183,0.075], + [13185,0.071], + [13187,0.043], + [13189,0.066], + [13191,0.034], + [13193,0.044], + [13195,0.058], + [13197,0.05], + [13199,0.059], + [13201,0.057], + [13205,0.058], + [13207,0.049], + [13209,0.055], + [13211,0.057], + [13213,0.063], + [13215,0.072], + [13217,0.064], + [13219,0.054], + [13221,0.058], + [13223,0.066], + [13225,0.054], + [13227,0.049], + [13229,0.066], + [13231,0.049], + [13233,0.068], + [13235,0.048], + [13237,0.045], + [13239,0.071], + [13241,0.044], + [13243,0.058], + [13245,0.068], + [13247,0.058], + [13249,0.065], + [13251,0.062], + [13253,0.054], + [13255,0.061], + [13257,0.066], + [13259,0.025], + [13261,0.062], + [13263,0.044], + [13265,0.034], + [13267,0.052], + [13269,0.05], + [13271,0.047], + [13273,0.063], + [13275,0.063], + [13277,0.07], + [13279,0.071], + [13281,0.033], + [13283,0.06], + [13285,0.065], + [13287,0.067], + [13289,0.052], + [13291,0.041], + [13293,0.067], + [13295,0.056], + [13297,0.061], + [13299,0.063], + [13301,0.053], + [13303,0.056], + [13305,0.066], + [13307,0.023], + [13309,0.032], + [13311,0.044], + [13313,0.067], + [13315,0.052], + [13317,0.056], + [13319,0.055], + [13321,0.06], + [15001,0.06], + [15003,0.064], + [15005,0.015], + [15007,0.06], + [15009,0.06], + [16001,0.058], + [16003,0.037], + [16005,0.073], + [16007,0.069], + [16009,0.058], + [16011,0.076], + [16013,0.052], + [16015,0.033], + [16017,0.049], + [16019,0.085], + [16021,0.063], + [16023,0.059], + [16025,0.071], + [16027,0.075], + [16029,0.067], + [16031,0.082], + [16033,0.073], + [16035,0.036], + [16037,0.032], + [16039,0.079], + [16041,0.076], + [16043,0.064], + [16045,0.056], + [16047,0.068], + [16049,0.047], + [16051,0.085], + [16053,0.086], + [16055,0.06], + [16057,0.051], + [16059,0.05], + [16061,0.054], + [16063,0.069], + [16065,0.098], + [16067,0.076], + [16069,0.059], + [16071,0.062], + [16073,0.066], + [16075,0.065], + [16077,0.074], + [16079,0.064], + [16081,0.064], + [16083,0.074], + [16085,0.045], + [16087,0.049], + [17001,0.062], + [17003,0.067], + [17005,0.042], + [17007,0.057], + [17009,0.045], + [17011,0.051], + [17013,0.051], + [17015,0.053], + [17017,0.065], + [17019,0.055], + [17021,0.053], + [17023,0.057], + [17025,0.056], + [17027,0.056], + [17029,0.046], + [17031,0.062], + [17033,0.054], + [17035,0.063], + [17037,0.058], + [17039,0.054], + [17041,0.068], + [17043,0.059], + [17045,0.051], + [17047,0.057], + [17049,0.066], + [17051,0.055], + [17053,0.054], + [17055,0.058], + [17057,0.047], + [17059,0.05], + [17061,0.051], + [17063,0.062], + [17065,0.055], + [17067,0.054], + [17069,0.029], + [17071,0.048], + [17073,0.055], + [17075,0.054], + [17077,0.054], + [17079,0.062], + [17081,0.063], + [17083,0.048], + [17085,0.043], + [17087,0.045], + [17089,0.064], + [17091,0.059], + [17093,0.069], + [17095,0.055], + [17097,0.058], + [17099,0.056], + [17101,0.049], + [17103,0.05], + [17105,0.054], + [17107,0.054], + [17109,0.045], + [17111,0.055], + [17113,0.06], + [17115,0.062], + [17117,0.05], + [17119,0.058], + [17121,0.064], + [17123,0.056], + [17125,0.051], + [17127,0.056], + [17129,0.055], + [17131,0.052], + [17133,0.055], + [17135,0.052], + [17137,0.052], + [17139,0.065], + [17141,0.054], + [17143,0.069], + [17145,0.051], + [17147,0.06], + [17149,0.062], + [17151,0.037], + [17153,0.051], + [17155,0.042], + [17157,0.05], + [17159,0.067], + [17161,0.062], + [17163,0.063], + [17165,0.062], + [17167,0.058], + [17169,0.042], + [17171,0.049], + [17173,0.054], + [17175,0.054], + [17177,0.056], + [17179,0.059], + [17181,0.055], + [17183,0.065], + [17185,0.062], + [17187,0.058], + [17189,0.056], + [17191,0.063], + [17193,0.056], + [17195,0.057], + [17197,0.059], + [17199,0.059], + [17201,0.063], + [17203,0.061], + [18001,0.095], + [18003,0.07], + [18005,0.066], + [18007,0.065], + [18009,0.053], + [18011,0.064], + [18013,0.039], + [18015,0.053], + [18017,0.062], + [18019,0.063], + [18021,0.062], + [18023,0.069], + [18025,0.056], + [18027,0.079], + [18029,0.052], + [18031,0.065], + [18033,0.063], + [18035,0.05], + [18037,0.067], + [18039,0.076], + [18041,0.052], + [18043,0.059], + [18045,0.057], + [18047,0.058], + [18049,0.058], + [18051,0.062], + [18053,0.056], + [18055,0.053], + [18057,0.067], + [18059,0.058], + [18061,0.057], + [18063,0.059], + [18065,0.05], + [18067,0.06], + [18069,0.056], + [18071,0.066], + [18073,0.058], + [18075,0.07], + [18077,0.063], + [18079,0.063], + [18081,0.064], + [18083,0.059], + [18085,0.065], + [18087,0.093], + [18089,0.06], + [18091,0.059], + [18093,0.054], + [18095,0.057], + [18097,0.073], + [18099,0.063], + [18101,0.061], + [18103,0.052], + [18105,0.044], + [18107,0.059], + [18109,0.058], + [18111,0.053], + [18113,0.066], + [18115,0.051], + [18117,0.06], + [18119,0.054], + [18121,0.062], + [18123,0.057], + [18125,0.056], + [18127,0.054], + [18129,0.054], + [18131,0.052], + [18133,0.05], + [18135,0.058], + [18137,0.058], + [18139,0.056], + [18141,0.064], + [18143,0.06], + [18145,0.057], + [18147,0.055], + [18149,0.056], + [18151,0.055], + [18153,0.051], + [18155,0.061], + [18157,0.059], + [18159,0.053], + [18161,0.064], + [18163,0.06], + [18165,0.053], + [18167,0.057], + [18169,0.051], + [18171,0.055], + [18173,0.056], + [18175,0.058], + [18177,0.058], + [18179,0.061], + [18181,0.062], + [18183,0.061], + [19001,0.054], + [19003,0.06], + [19005,0.069], + [19007,0.054], + [19009,0.059], + [19011,0.061], + [19013,0.063], + [19015,0.058], + [19017,0.059], + [19019,0.07], + [19021,0.075], + [19023,0.054], + [19025,0.058], + [19027,0.064], + [19029,0.051], + [19031,0.05], + [19033,0.054], + [19035,0.058], + [19037,0.06], + [19039,0.072], + [19041,0.065], + [19043,0.054], + [19045,0.06], + [19047,0.065], + [19049,0.078], + [19051,0.09], + [19053,0.062], + [19055,0.066], + [19057,0.058], + [19059,0.046], + [19061,0.063], + [19063,0.054], + [19065,0.054], + [19067,0.055], + [19069,0.059], + [19071,0.057], + [19073,0.058], + [19075,0.054], + [19077,0.053], + [19079,0.061], + [19081,0.056], + [19083,0.049], + [19085,0.058], + [19087,0.056], + [19089,0.068], + [19091,0.06], + [19093,0.057], + [19095,0.059], + [19097,0.06], + [19099,0.059], + [19101,0.044], + [19103,0.06], + [19105,0.05], + [19107,0.061], + [19109,0.059], + [19111,0.06], + [19113,0.063], + [19115,0.057], + [19117,0.059], + [19119,0.074], + [19121,0.057], + [19123,0.066], + [19125,0.056], + [19127,0.067], + [19129,0.054], + [19131,0.057], + [19133,0.052], + [19135,0.056], + [19137,0.06], + [19139,0.064], + [19141,0.063], + [19143,0.06], + [19145,0.051], + [19147,0.067], + [19149,0.062], + [19151,0.053], + [19153,0.071], + [19155,0.061], + [19157,0.049], + [19159,0.06], + [19161,0.059], + [19163,0.064], + [19165,0.05], + [19167,0.073], + [19169,0.046], + [19171,0.064], + [19173,0.055], + [19175,0.056], + [19177,0.058], + [19179,0.064], + [19181,0.06], + [19183,0.067], + [19185,0.072], + [19187,0.058], + [19189,0.054], + [19191,0.042], + [19193,0.072], + [19195,0.055], + [19197,0.061], + [20001,0.058], + [20003,0.061], + [20005,0.056], + [20007,0.068], + [20009,0.061], + [20011,0.07], + [20013,0.065], + [20015,0.059], + [20017,0.046], + [20019,0.058], + [20021,0.055], + [20023,0.055], + [20025,0.077], + [20027,0.062], + [20029,0.068], + [20031,0.053], + [20033,0.039], + [20035,0.062], + [20037,0.06], + [20039,0.057], + [20041,0.061], + [20043,0.049], + [20045,0.051], + [20047,0.061], + [20049,0.05], + [20051,0.06], + [20053,0.052], + [20055,0.089], + [20057,0.09], + [20059,0.06], + [20061,0.121], + [20063,0.059], + [20065,0.047], + [20067,0.079], + [20069,0.075], + [20071,0.065], + [20073,0.049], + [20075,0.038], + [20077,0.069], + [20079,0.062], + [20081,0.068], + [20083,0.064], + [20085,0.066], + [20087,0.052], + [20089,0.052], + [20091,0.064], + [20093,0.08], + [20095,0.052], + [20097,0.067], + [20099,0.066], + [20101,0.066], + [20103,0.064], + [20105,0.048], + [20107,0.055], + [20109,0.07], + [20111,0.059], + [20113,0.056], + [20115,0.051], + [20117,0.063], + [20119,0.063], + [20121,0.057], + [20123,0.066], + [20125,0.063], + [20127,0.057], + [20129,0.048], + [20131,0.074], + [20133,0.069], + [20135,0.066], + [20137,0.062], + [20139,0.056], + [20141,0.059], + [20143,0.052], + [20145,0.048], + [20147,0.057], + [20149,0.078], + [20151,0.079], + [20153,0.056], + [20155,0.056], + [20157,0.052], + [20159,0.06], + [20161,0.056], + [20163,0.064], + [20165,0.061], + [20167,0.057], + [20169,0.064], + [20171,0.069], + [20173,0.071], + [20175,0.09], + [20177,0.063], + [20179,0.055], + [20181,0.067], + [20183,0.052], + [20185,0.062], + [20187,0.074], + [20189,0.075], + [20191,0.06], + [20193,0.072], + [20195,0.037], + [20197,0.059], + [20199,0.065], + [20201,0.067], + [20203,0.054], + [20205,0.067], + [20207,0.059], + [20209,0.081], + [21001,0.051], + [21003,0.065], + [21005,0.064], + [21007,0.052], + [21009,0.064], + [21011,0.067], + [21013,0.06], + [21015,0.066], + [21017,0.062], + [21019,0.058], + [21021,0.05], + [21023,0.064], + [21025,0.063], + [21027,0.057], + [21029,0.051], + [21031,0.058], + [21033,0.055], + [21035,0.051], + [21037,0.058], + [21039,0.066], + [21041,0.074], + [21043,0.061], + [21045,0.059], + [21047,0.093], + [21049,0.062], + [21051,0.06], + [21053,0.065], + [21055,0.054], + [21057,0.063], + [21059,0.067], + [21061,0.046], + [21063,0.047], + [21065,0.055], + [21067,0.061], + [21069,0.073], + [21071,0.06], + [21073,0.057], + [21075,0.064], + [21077,0.065], + [21079,0.057], + [21081,0.071], + [21083,0.06], + [21085,0.062], + [21087,0.054], + [21089,0.053], + [21091,0.066], + [21093,0.067], + [21095,0.063], + [21097,0.061], + [21099,0.072], + [21101,0.06], + [21103,0.059], + [21105,0.044], + [21107,0.059], + [21109,0.061], + [21111,0.063], + [21113,0.065], + [21115,0.06], + [21117,0.067], + [21119,0.054], + [21121,0.064], + [21123,0.054], + [21125,0.061], + [21127,0.067], + [21129,0.054], + [21131,0.056], + [21133,0.058], + [21135,0.06], + [21137,0.066], + [21139,0.056], + [21141,0.064], + [21143,0.033], + [21145,0.062], + [21147,0.062], + [21149,0.055], + [21151,0.057], + [21153,0.062], + [21155,0.06], + [21157,0.056], + [21159,0.048], + [21161,0.06], + [21163,0.053], + [21165,0.056], + [21167,0.058], + [21169,0.064], + [21171,0.064], + [21173,0.066], + [21175,0.048], + [21177,0.053], + [21179,0.063], + [21181,0.065], + [21183,0.058], + [21185,0.051], + [21187,0.051], + [21189,0.08], + [21191,0.061], + [21193,0.063], + [21195,0.055], + [21197,0.065], + [21199,0.059], + [21201,0.071], + [21203,0.056], + [21205,0.054], + [21207,0.059], + [21209,0.066], + [21211,0.066], + [21213,0.064], + [21215,0.055], + [21217,0.064], + [21219,0.069], + [21221,0.06], + [21223,0.052], + [21225,0.055], + [21227,0.064], + [21229,0.06], + [21231,0.058], + [21233,0.06], + [21235,0.075], + [21237,0.063], + [21239,0.056], + [22001,0.07], + [22003,0.063], + [22005,0.071], + [22007,0.054], + [22009,0.067], + [22011,0.067], + [22013,0.061], + [22015,0.069], + [22017,0.068], + [22019,0.071], + [22021,0.062], + [22023,0.059], + [22025,0.059], + [22027,0.05], + [22029,0.063], + [22031,0.065], + [22033,0.066], + [22035,0.067], + [22037,0.048], + [22039,0.068], + [22041,0.069], + [22043,0.056], + [22045,0.073], + [22047,0.056], + [22049,0.056], + [22051,0.065], + [22053,0.071], + [22055,0.069], + [22057,0.064], + [22059,0.059], + [22061,0.057], + [22063,0.066], + [22065,0.073], + [22067,0.068], + [22069,0.064], + [22071,0.059], + [22073,0.07], + [22075,0.068], + [22077,0.059], + [22079,0.068], + [22081,0.064], + [22083,0.062], + [22085,0.061], + [22087,0.074], + [22089,0.062], + [22091,0.054], + [22093,0.06], + [22095,0.066], + [22097,0.074], + [22099,0.069], + [22101,0.069], + [22103,0.06], + [22105,0.072], + [22107,0.066], + [22109,0.071], + [22111,0.057], + [22113,0.068], + [22115,0.083], + [22117,0.065], + [22119,0.06], + [22121,0.068], + [22123,0.054], + [22125,0.041], + [22127,0.054], + [23001,0.059], + [23003,0.049], + [23005,0.048], + [23007,0.047], + [23009,0.044], + [23011,0.049], + [23013,0.044], + [23015,0.04], + [23017,0.044], + [23019,0.047], + [23021,0.043], + [23023,0.051], + [23025,0.047], + [23027,0.045], + [23029,0.047], + [23031,0.047], + [24001,0.045], + [24003,0.062], + [24005,0.059], + [24009,0.053], + [24011,0.061], + [24013,0.053], + [24015,0.056], + [24017,0.06], + [24019,0.057], + [24021,0.059], + [24023,0.049], + [24025,0.056], + [24027,0.059], + [24029,0.04], + [24031,0.063], + [24033,0.066], + [24035,0.051], + [24037,0.064], + [24039,0.048], + [24041,0.045], + [24043,0.058], + [24045,0.06], + [24047,0.041], + [24510,0.064], + [25001,0.037], + [25003,0.042], + [25005,0.053], + [25007,0.037], + [25009,0.056], + [25011,0.043], + [25013,0.056], + [25015,0.034], + [25017,0.054], + [25019,0.063], + [25021,0.054], + [25023,0.053], + [25025,0.053], + [25027,0.054], + [26001,0.031], + [26003,0.036], + [26005,0.062], + [26007,0.048], + [26009,0.043], + [26011,0.045], + [26013,0.042], + [26015,0.055], + [26017,0.049], + [26019,0.047], + [26021,0.058], + [26023,0.06], + [26025,0.062], + [26027,0.05], + [26029,0.044], + [26031,0.04], + [26033,0.049], + [26035,0.055], + [26037,0.056], + [26039,0.047], + [26041,0.05], + [26043,0.05], + [26045,0.055], + [26047,0.048], + [26049,0.059], + [26051,0.053], + [26053,0.037], + [26055,0.052], + [26057,0.049], + [26059,0.06], + [26061,0.052], + [26063,0.049], + [26065,0.056], + [26067,0.057], + [26069,0.045], + [26071,0.038], + [26073,0.047], + [26075,0.057], + [26077,0.06], + [26079,0.051], + [26081,0.068], + [26083,0.036], + [26085,0.043], + [26087,0.049], + [26089,0.041], + [26091,0.054], + [26093,0.051], + [26095,0.042], + [26097,0.036], + [26099,0.055], + [26101,0.038], + [26103,0.048], + [26105,0.052], + [26107,0.048], + [26109,0.044], + [26111,0.055], + [26113,0.066], + [26115,0.052], + [26117,0.057], + [26119,0.034], + [26121,0.061], + [26123,0.058], + [26125,0.054], + [26127,0.055], + [26129,0.046], + [26131,0.025], + [26133,0.056], + [26135,0.052], + [26137,0.052], + [26139,0.062], + [26141,0.039], + [26143,0.037], + [26145,0.057], + [26147,0.05], + [26149,0.066], + [26151,0.052], + [26153,0.042], + [26155,0.052], + [26157,0.052], + [26159,0.061], + [26161,0.049], + [26163,0.066], + [26165,0.06], + [27001,0.036], + [27003,0.062], + [27005,0.064], + [27007,0.07], + [27009,0.07], + [27011,0.059], + [27013,0.055], + [27015,0.055], + [27017,0.053], + [27019,0.065], + [27021,0.056], + [27023,0.071], + [27025,0.056], + [27027,0.071], + [27029,0.063], + [27031,0.044], + [27033,0.069], + [27035,0.055], + [27037,0.065], + [27039,0.063], + [27041,0.057], + [27043,0.06], + [27045,0.065], + [27047,0.056], + [27049,0.057], + [27051,0.058], + [27053,0.065], + [27055,0.055], + [27057,0.054], + [27059,0.059], + [27061,0.053], + [27063,0.057], + [27065,0.051], + [27067,0.068], + [27069,0.057], + [27071,0.041], + [27073,0.046], + [27075,0.046], + [27077,0.056], + [27079,0.061], + [27081,0.061], + [27083,0.072], + [27085,0.058], + [27087,0.088], + [27089,0.06], + [27091,0.054], + [27093,0.061], + [27095,0.064], + [27097,0.058], + [27099,0.065], + [27101,0.053], + [27103,0.058], + [27105,0.084], + [27107,0.055], + [27109,0.07], + [27111,0.058], + [27113,0.066], + [27115,0.047], + [27117,0.066], + [27119,0.069], + [27121,0.057], + [27123,0.07], + [27125,0.065], + [27127,0.061], + [27129,0.061], + [27131,0.057], + [27133,0.067], + [27135,0.058], + [27137,0.051], + [27139,0.07], + [27141,0.066], + [27143,0.057], + [27145,0.064], + [27147,0.062], + [27149,0.057], + [27151,0.057], + [27153,0.068], + [27155,0.048], + [27157,0.055], + [27159,0.069], + [27161,0.058], + [27163,0.06], + [27165,0.076], + [27167,0.058], + [27169,0.048], + [27171,0.07], + [27173,0.062], + [28001,0.061], + [28003,0.059], + [28005,0.054], + [28007,0.064], + [28009,0.038], + [28011,0.069], + [28013,0.059], + [28015,0.045], + [28017,0.073], + [28019,0.051], + [28021,0.06], + [28023,0.057], + [28025,0.057], + [28027,0.082], + [28029,0.061], + [28031,0.068], + [28033,0.061], + [28035,0.067], + [28037,0.055], + [28039,0.073], + [28041,0.047], + [28043,0.063], + [28045,0.056], + [28047,0.066], + [28049,0.065], + [28051,0.068], + [28053,0.061], + [28055,0.068], + [28057,0.053], + [28059,0.057], + [28061,0.062], + [28063,0.063], + [28065,0.046], + [28067,0.071], + [28069,0.042], + [28071,0.053], + [28073,0.065], + [28075,0.062], + [28077,0.062], + [28079,0.061], + [28081,0.068], + [28083,0.075], + [28085,0.063], + [28087,0.066], + [28089,0.063], + [28091,0.058], + [28093,0.057], + [28095,0.058], + [28097,0.06], + [28099,0.069], + [28101,0.063], + [28103,0.073], + [28105,0.052], + [28107,0.072], + [28109,0.056], + [28111,0.06], + [28113,0.068], + [28115,0.071], + [28117,0.062], + [28119,0.062], + [28121,0.06], + [28123,0.067], + [28125,0.049], + [28127,0.057], + [28129,0.056], + [28131,0.053], + [28133,0.06], + [28135,0.054], + [28137,0.058], + [28139,0.063], + [28141,0.056], + [28143,0.094], + [28145,0.064], + [28147,0.059], + [28149,0.063], + [28151,0.075], + [28153,0.068], + [28155,0.058], + [28157,0.057], + [28159,0.051], + [28161,0.062], + [28163,0.058], + [29001,0.052], + [29003,0.057], + [29005,0.049], + [29007,0.062], + [29009,0.058], + [29011,0.056], + [29013,0.061], + [29015,0.043], + [29017,0.052], + [29019,0.059], + [29021,0.064], + [29023,0.062], + [29025,0.059], + [29027,0.055], + [29029,0.043], + [29031,0.058], + [29033,0.061], + [29035,0.061], + [29037,0.059], + [29039,0.066], + [29041,0.065], + [29043,0.063], + [29045,0.059], + [29047,0.065], + [29049,0.053], + [29051,0.06], + [29053,0.055], + [29055,0.057], + [29057,0.048], + [29059,0.063], + [29061,0.066], + [29063,0.046], + [29065,0.056], + [29067,0.057], + [29069,0.069], + [29071,0.06], + [29073,0.051], + [29075,0.07], + [29077,0.06], + [29079,0.072], + [29081,0.067], + [29083,0.058], + [29085,0.043], + [29087,0.05], + [29089,0.059], + [29091,0.064], + [29093,0.052], + [29095,0.067], + [29097,0.068], + [29099,0.059], + [29101,0.064], + [29103,0.062], + [29105,0.067], + [29107,0.055], + [29109,0.067], + [29111,0.057], + [29113,0.067], + [29115,0.06], + [29117,0.06], + [29119,0.07], + [29121,0.059], + [29123,0.055], + [29125,0.047], + [29127,0.062], + [29129,0.066], + [29131,0.066], + [29133,0.046], + [29135,0.066], + [29137,0.054], + [29139,0.062], + [29141,0.065], + [29143,0.063], + [29145,0.062], + [29147,0.046], + [29149,0.059], + [29151,0.058], + [29153,0.043], + [29155,0.074], + [29157,0.058], + [29159,0.069], + [29161,0.056], + [29163,0.058], + [29165,0.061], + [29167,0.061], + [29169,0.066], + [29171,0.067], + [29173,0.051], + [29175,0.059], + [29177,0.058], + [29179,0.042], + [29181,0.063], + [29183,0.06], + [29185,0.051], + [29186,0.05], + [29187,0.054], + [29189,0.059], + [29195,0.063], + [29197,0.078], + [29199,0.083], + [29201,0.064], + [29203,0.056], + [29205,0.058], + [29207,0.058], + [29209,0.039], + [29211,0.063], + [29213,0.056], + [29215,0.055], + [29217,0.062], + [29219,0.064], + [29221,0.058], + [29223,0.05], + [29225,0.074], + [29227,0.055], + [29229,0.071], + [29510,0.064], + [30001,0.048], + [30003,0.087], + [30005,0.085], + [30007,0.046], + [30009,0.036], + [30011,0.062], + [30013,0.067], + [30015,0.055], + [30017,0.057], + [30019,0.05], + [30021,0.064], + [30023,0.038], + [30025,0.062], + [30027,0.063], + [30029,0.057], + [30031,0.057], + [30033,0.067], + [30035,0.092], + [30037,0.032], + [30039,0.037], + [30041,0.088], + [30043,0.039], + [30045,0.048], + [30047,0.061], + [30049,0.057], + [30051,0.049], + [30053,0.043], + [30055,0.065], + [30057,0.039], + [30059,0.081], + [30061,0.044], + [30063,0.05], + [30065,0.04], + [30067,0.047], + [30069,0.075], + [30071,0.068], + [30073,0.072], + [30075,0.066], + [30077,0.037], + [30079,0.042], + [30081,0.045], + [30083,0.061], + [30085,0.091], + [30087,0.073], + [30089,0.046], + [30091,0.067], + [30093,0.059], + [30095,0.045], + [30097,0.044], + [30099,0.066], + [30101,0.053], + [30103,0.052], + [30105,0.058], + [30107,0.061], + [30109,0.102], + [30111,0.063], + [31001,0.064], + [31003,0.065], + [31005,0.035], + [31007,0.087], + [31009,0.057], + [31011,0.062], + [31013,0.065], + [31015,0.04], + [31017,0.051], + [31019,0.068], + [31021,0.051], + [31023,0.059], + [31025,0.058], + [31027,0.066], + [31029,0.049], + [31031,0.069], + [31033,0.068], + [31035,0.067], + [31037,0.089], + [31039,0.062], + [31041,0.063], + [31043,0.086], + [31045,0.051], + [31047,0.086], + [31049,0.057], + [31051,0.07], + [31053,0.068], + [31055,0.075], + [31057,0.067], + [31059,0.049], + [31061,0.05], + [31063,0.049], + [31065,0.059], + [31067,0.058], + [31069,0.042], + [31071,0.044], + [31073,0.038], + [31075,0.079], + [31077,0.063], + [31079,0.077], + [31081,0.061], + [31083,0.06], + [31085,0.066], + [31087,0.058], + [31089,0.062], + [31091,0.036], + [31093,0.061], + [31095,0.056], + [31097,0.046], + [31099,0.064], + [31101,0.046], + [31103,0.053], + [31105,0.039], + [31107,0.064], + [31109,0.064], + [31111,0.058], + [31113,0.067], + [31115,0.064], + [31117,0.03], + [31119,0.073], + [31121,0.063], + [31123,0.061], + [31125,0.056], + [31127,0.055], + [31129,0.053], + [31131,0.069], + [31133,0.062], + [31135,0.067], + [31137,0.058], + [31139,0.065], + [31141,0.072], + [31143,0.051], + [31145,0.056], + [31147,0.055], + [31149,0.073], + [31151,0.065], + [31153,0.073], + [31155,0.061], + [31157,0.067], + [31159,0.059], + [31161,0.05], + [31163,0.05], + [31165,0.099], + [31167,0.064], + [31169,0.061], + [31171,0.054], + [31173,0.097], + [31175,0.059], + [31177,0.059], + [31179,0.051], + [31181,0.056], + [31183,0.084], + [31185,0.062], + [32001,0.069], + [32003,0.063], + [32005,0.035], + [32007,0.072], + [32009,0.029], + [32011,0.057], + [32013,0.074], + [32015,0.055], + [32017,0.037], + [32019,0.055], + [32021,0.042], + [32023,0.046], + [32027,0.051], + [32029,0.053], + [32031,0.06], + [32033,0.053], + [32510,0.054], + [33001,0.044], + [33003,0.039], + [33005,0.045], + [33007,0.04], + [33009,0.041], + [33011,0.052], + [33013,0.048], + [33015,0.046], + [33017,0.047], + [33019,0.046], + [34001,0.056], + [34003,0.053], + [34005,0.052], + [34007,0.061], + [34009,0.046], + [34011,0.064], + [34013,0.066], + [34015,0.053], + [34017,0.07], + [34019,0.041], + [34021,0.057], + [34023,0.058], + [34025,0.05], + [34027,0.05], + [34029,0.07], + [34031,0.068], + [34033,0.055], + [34035,0.052], + [34037,0.045], + [34039,0.063], + [34041,0.045], + [35001,0.057], + [35003,0.029], + [35005,0.068], + [35006,0.066], + [35007,0.048], + [35009,0.082], + [35011,0.066], + [35013,0.065], + [35015,0.073], + [35017,0.053], + [35019,0.066], + [35021,0.041], + [35023,0.062], + [35025,0.079], + [35027,0.047], + [35028,0.054], + [35029,0.074], + [35031,0.074], + [35033,0.026], + [35035,0.068], + [35037,0.059], + [35039,0.065], + [35041,0.07], + [35043,0.055], + [35045,0.068], + [35047,0.049], + [35049,0.044], + [35051,0.045], + [35053,0.048], + [35055,0.045], + [35057,0.051], + [35059,0.055], + [35061,0.057], + [36001,0.051], + [36003,0.052], + [36005,0.073], + [36007,0.052], + [36009,0.057], + [36011,0.05], + [36013,0.054], + [36015,0.058], + [36017,0.053], + [36019,0.049], + [36021,0.042], + [36023,0.05], + [36025,0.039], + [36027,0.046], + [36029,0.055], + [36031,0.039], + [36033,0.049], + [36035,0.051], + [36037,0.051], + [36039,0.043], + [36041,0.032], + [36043,0.051], + [36045,0.079], + [36047,0.074], + [36049,0.064], + [36051,0.043], + [36053,0.047], + [36055,0.056], + [36057,0.063], + [36059,0.055], + [36061,0.048], + [36063,0.053], + [36065,0.057], + [36067,0.057], + [36069,0.05], + [36071,0.066], + [36073,0.05], + [36075,0.055], + [36077,0.042], + [36079,0.044], + [36081,0.063], + [36083,0.052], + [36085,0.057], + [36087,0.079], + [36089,0.052], + [36091,0.051], + [36093,0.058], + [36095,0.042], + [36097,0.05], + [36099,0.054], + [36101,0.055], + [36103,0.054], + [36105,0.057], + [36107,0.051], + [36109,0.04], + [36111,0.044], + [36113,0.043], + [36115,0.047], + [36117,0.055], + [36119,0.056], + [36121,0.052], + [36123,0.06], + [37001,0.058], + [37003,0.05], + [37005,0.041], + [37007,0.047], + [37009,0.043], + [37011,0.034], + [37013,0.05], + [37015,0.043], + [37017,0.053], + [37019,0.04], + [37021,0.05], + [37023,0.047], + [37025,0.064], + [37027,0.05], + [37029,0.046], + [37031,0.042], + [37033,0.046], + [37035,0.056], + [37037,0.049], + [37039,0.039], + [37041,0.045], + [37043,0.037], + [37045,0.056], + [37047,0.051], + [37049,0.064], + [37051,0.076], + [37053,0.054], + [37055,0.043], + [37057,0.055], + [37059,0.049], + [37061,0.063], + [37063,0.066], + [37065,0.058], + [37067,0.06], + [37069,0.056], + [37071,0.06], + [37073,0.04], + [37075,0.045], + [37077,0.05], + [37079,0.05], + [37081,0.059], + [37083,0.054], + [37085,0.074], + [37087,0.049], + [37089,0.049], + [37091,0.046], + [37093,0.087], + [37095,0.049], + [37097,0.055], + [37099,0.047], + [37101,0.063], + [37103,0.044], + [37105,0.064], + [37107,0.057], + [37109,0.052], + [37111,0.045], + [37113,0.048], + [37115,0.047], + [37117,0.055], + [37119,0.067], + [37121,0.047], + [37123,0.061], + [37125,0.058], + [37127,0.056], + [37129,0.049], + [37131,0.043], + [37133,0.089], + [37135,0.046], + [37137,0.033], + [37139,0.066], + [37141,0.056], + [37143,0.045], + [37145,0.056], + [37147,0.058], + [37149,0.033], + [37151,0.056], + [37153,0.06], + [37155,0.067], + [37157,0.052], + [37159,0.057], + [37161,0.051], + [37163,0.064], + [37165,0.064], + [37167,0.054], + [37169,0.043], + [37171,0.051], + [37173,0.064], + [37175,0.04], + [37177,0.032], + [37179,0.058], + [37181,0.062], + [37183,0.062], + [37185,0.045], + [37187,0.046], + [37189,0.034], + [37191,0.067], + [37193,0.05], + [37195,0.059], + [37197,0.052], + [37199,0.043], + [38001,0.052], + [38003,0.047], + [38005,0.107], + [38007,0.099], + [38009,0.056], + [38011,0.066], + [38013,0.099], + [38015,0.068], + [38017,0.071], + [38019,0.066], + [38021,0.057], + [38023,0.036], + [38025,0.067], + [38027,0.07], + [38029,0.055], + [38031,0.056], + [38033,0.059], + [38035,0.068], + [38037,0.058], + [38039,0.069], + [38041,0.055], + [38043,0.064], + [38045,0.049], + [38047,0.067], + [38049,0.057], + [38051,0.049], + [38053,0.103], + [38055,0.058], + [38057,0.062], + [38059,0.062], + [38061,0.087], + [38063,0.05], + [38065,0.071], + [38067,0.056], + [38069,0.065], + [38071,0.063], + [38073,0.054], + [38075,0.089], + [38077,0.056], + [38079,0.094], + [38081,0.052], + [38083,0.057], + [38085,0.099], + [38087,0.043], + [38089,0.081], + [38091,0.044], + [38093,0.057], + [38095,0.037], + [38097,0.058], + [38099,0.068], + [38101,0.077], + [38103,0.055], + [38105,0.091], + [39001,0.06], + [39003,0.061], + [39005,0.057], + [39007,0.056], + [39009,0.039], + [39011,0.063], + [39013,0.049], + [39015,0.058], + [39017,0.061], + [39019,0.05], + [39021,0.054], + [39023,0.059], + [39025,0.058], + [39027,0.061], + [39029,0.052], + [39031,0.063], + [39033,0.058], + [39035,0.058], + [39037,0.06], + [39039,0.058], + [39041,0.062], + [39043,0.054], + [39045,0.059], + [39047,0.061], + [39049,0.071], + [39051,0.059], + [39053,0.064], + [39055,0.053], + [39057,0.056], + [39059,0.059], + [39061,0.066], + [39063,0.06], + [39065,0.06], + [39067,0.053], + [39069,0.059], + [39071,0.062], + [39073,0.056], + [39075,0.082], + [39077,0.063], + [39079,0.063], + [39081,0.05], + [39083,0.059], + [39085,0.05], + [39087,0.057], + [39089,0.06], + [39091,0.061], + [39093,0.057], + [39095,0.064], + [39097,0.05], + [39099,0.052], + [39101,0.058], + [39103,0.053], + [39105,0.05], + [39107,0.071], + [39109,0.058], + [39111,0.05], + [39113,0.061], + [39115,0.049], + [39117,0.054], + [39119,0.061], + [39121,0.049], + [39123,0.042], + [39125,0.058], + [39127,0.06], + [39129,0.053], + [39131,0.058], + [39133,0.046], + [39135,0.055], + [39137,0.067], + [39139,0.057], + [39141,0.054], + [39143,0.056], + [39145,0.058], + [39147,0.054], + [39149,0.065], + [39151,0.056], + [39153,0.056], + [39155,0.053], + [39157,0.062], + [39159,0.062], + [39161,0.061], + [39163,0.057], + [39165,0.058], + [39167,0.049], + [39169,0.067], + [39171,0.058], + [39173,0.053], + [39175,0.056], + [40001,0.073], + [40003,0.053], + [40005,0.058], + [40007,0.058], + [40009,0.071], + [40011,0.054], + [40013,0.065], + [40015,0.069], + [40017,0.068], + [40019,0.068], + [40021,0.059], + [40023,0.068], + [40025,0.067], + [40027,0.054], + [40029,0.066], + [40031,0.07], + [40033,0.047], + [40035,0.055], + [40037,0.062], + [40039,0.073], + [40041,0.051], + [40043,0.066], + [40045,0.06], + [40047,0.072], + [40049,0.067], + [40051,0.058], + [40053,0.055], + [40055,0.054], + [40057,0.041], + [40059,0.067], + [40061,0.064], + [40063,0.056], + [40065,0.078], + [40067,0.066], + [40069,0.061], + [40071,0.067], + [40073,0.069], + [40075,0.061], + [40077,0.057], + [40079,0.064], + [40081,0.06], + [40083,0.06], + [40085,0.063], + [40087,0.059], + [40089,0.071], + [40091,0.052], + [40093,0.067], + [40095,0.058], + [40097,0.06], + [40099,0.06], + [40101,0.067], + [40103,0.063], + [40105,0.059], + [40107,0.057], + [40109,0.076], + [40111,0.062], + [40113,0.051], + [40115,0.069], + [40117,0.058], + [40119,0.053], + [40121,0.059], + [40123,0.066], + [40125,0.062], + [40127,0.057], + [40129,0.063], + [40131,0.058], + [40133,0.066], + [40135,0.064], + [40137,0.059], + [40139,0.085], + [40141,0.057], + [40143,0.072], + [40145,0.06], + [40147,0.063], + [40149,0.066], + [40151,0.062], + [40153,0.072], + [41001,0.049], + [41003,0.04], + [41005,0.054], + [41007,0.052], + [41009,0.053], + [41011,0.05], + [41013,0.051], + [41015,0.041], + [41017,0.051], + [41019,0.052], + [41021,0.039], + [41023,0.046], + [41025,0.053], + [41027,0.062], + [41029,0.055], + [41031,0.063], + [41033,0.049], + [41035,0.061], + [41037,0.048], + [41039,0.049], + [41041,0.045], + [41043,0.06], + [41045,0.068], + [41047,0.067], + [41049,0.075], + [41051,0.055], + [41053,0.057], + [41055,0.037], + [41057,0.046], + [41059,0.067], + [41061,0.058], + [41063,0.049], + [41065,0.063], + [41067,0.061], + [41069,0.073], + [41071,0.057], + [42001,0.051], + [42003,0.053], + [42005,0.049], + [42007,0.051], + [42009,0.048], + [42011,0.058], + [42013,0.053], + [42015,0.06], + [42017,0.048], + [42019,0.051], + [42021,0.05], + [42023,0.045], + [42025,0.046], + [42027,0.039], + [42029,0.056], + [42031,0.051], + [42033,0.047], + [42035,0.053], + [42037,0.045], + [42039,0.055], + [42041,0.054], + [42043,0.062], + [42045,0.06], + [42047,0.05], + [42049,0.056], + [42051,0.051], + [42053,0.021], + [42055,0.06], + [42057,0.048], + [42059,0.053], + [42061,0.045], + [42063,0.047], + [42065,0.057], + [42067,0.058], + [42069,0.053], + [42071,0.066], + [42073,0.052], + [42075,0.06], + [42077,0.059], + [42079,0.051], + [42081,0.055], + [42083,0.05], + [42085,0.048], + [42087,0.062], + [42089,0.045], + [42091,0.055], + [42093,0.058], + [42095,0.049], + [42097,0.052], + [42099,0.057], + [42101,0.067], + [42103,0.034], + [42105,0.052], + [42107,0.049], + [42109,0.054], + [42111,0.046], + [42113,0.032], + [42115,0.045], + [42117,0.052], + [42119,0.046], + [42121,0.049], + [42123,0.05], + [42125,0.05], + [42127,0.042], + [42129,0.045], + [42131,0.048], + [42133,0.057], + [44001,0.041], + [44003,0.049], + [44005,0.043], + [44007,0.057], + [44009,0.037], + [45001,0.052], + [45003,0.058], + [45005,0.045], + [45007,0.058], + [45009,0.046], + [45011,0.062], + [45013,0.053], + [45015,0.065], + [45017,0.051], + [45019,0.059], + [45021,0.058], + [45023,0.056], + [45025,0.057], + [45027,0.048], + [45029,0.056], + [45031,0.058], + [45033,0.068], + [45035,0.061], + [45037,0.037], + [45039,0.045], + [45041,0.061], + [45043,0.048], + [45045,0.063], + [45047,0.062], + [45049,0.055], + [45051,0.048], + [45053,0.06], + [45055,0.056], + [45057,0.06], + [45059,0.058], + [45061,0.049], + [45063,0.059], + [45065,0.03], + [45067,0.062], + [45069,0.053], + [45071,0.059], + [45073,0.051], + [45075,0.055], + [45077,0.05], + [45079,0.058], + [45081,0.061], + [45083,0.061], + [45085,0.067], + [45087,0.056], + [45089,0.052], + [45091,0.061], + [46003,0.073], + [46005,0.083], + [46007,0.098], + [46009,0.048], + [46011,0.063], + [46013,0.062], + [46015,0.062], + [46017,0.114], + [46019,0.059], + [46021,0.057], + [46023,0.083], + [46025,0.095], + [46027,0.051], + [46029,0.062], + [46031,0.106], + [46033,0.04], + [46035,0.057], + [46037,0.053], + [46039,0.065], + [46041,0.124], + [46043,0.07], + [46045,0.064], + [46047,0.043], + [46049,0.08], + [46051,0.057], + [46053,0.062], + [46055,0.065], + [46057,0.093], + [46059,0.058], + [46061,0.081], + [46063,0.054], + [46065,0.068], + [46067,0.085], + [46069,0.058], + [46071,0.109], + [46073,0.054], + [46075,0.033], + [46077,0.065], + [46079,0.059], + [46081,0.042], + [46083,0.074], + [46085,0.091], + [46087,0.078], + [46089,0.073], + [46091,0.077], + [46093,0.058], + [46095,0.08], + [46097,0.047], + [46099,0.077], + [46101,0.066], + [46102,0.102], + [46103,0.066], + [46105,0.059], + [46107,0.068], + [46109,0.077], + [46111,0.093], + [46115,0.06], + [46117,0.068], + [46119,0.048], + [46121,0.127], + [46123,0.058], + [46125,0.063], + [46127,0.058], + [46129,0.06], + [46135,0.06], + [46137,0.064], + [47001,0.054], + [47003,0.066], + [47005,0.046], + [47007,0.057], + [47009,0.05], + [47011,0.057], + [47013,0.056], + [47015,0.053], + [47017,0.057], + [47019,0.044], + [47021,0.054], + [47023,0.064], + [47025,0.052], + [47027,0.049], + [47029,0.056], + [47031,0.063], + [47033,0.061], + [47035,0.047], + [47037,0.067], + [47039,0.054], + [47041,0.057], + [47043,0.061], + [47045,0.06], + [47047,0.05], + [47049,0.057], + [47051,0.05], + [47053,0.063], + [47055,0.058], + [47057,0.048], + [47059,0.047], + [47061,0.057], + [47063,0.061], + [47065,0.058], + [47067,0.051], + [47069,0.04], + [47071,0.051], + [47073,0.049], + [47075,0.06], + [47077,0.054], + [47079,0.053], + [47081,0.055], + [47083,0.048], + [47085,0.05], + [47087,0.043], + [47089,0.048], + [47091,0.041], + [47093,0.057], + [47095,0.043], + [47097,0.057], + [47099,0.069], + [47101,0.055], + [47103,0.054], + [47105,0.051], + [47107,0.055], + [47109,0.055], + [47111,0.071], + [47113,0.062], + [47115,0.058], + [47117,0.06], + [47119,0.067], + [47121,0.052], + [47123,0.058], + [47125,0.084], + [47127,0.053], + [47129,0.049], + [47131,0.057], + [47133,0.054], + [47135,0.063], + [47137,0.044], + [47139,0.048], + [47141,0.058], + [47143,0.065], + [47145,0.046], + [47147,0.063], + [47149,0.066], + [47151,0.061], + [47153,0.048], + [47155,0.054], + [47157,0.071], + [47159,0.057], + [47161,0.061], + [47163,0.049], + [47165,0.061], + [47167,0.061], + [47169,0.058], + [47171,0.041], + [47173,0.053], + [47175,0.053], + [47177,0.06], + [47179,0.05], + [47181,0.049], + [47183,0.051], + [47185,0.06], + [47187,0.06], + [47189,0.059], + [48001,0.053], + [48003,0.086], + [48005,0.068], + [48007,0.046], + [48009,0.052], + [48011,0.06], + [48013,0.073], + [48015,0.06], + [48017,0.065], + [48019,0.043], + [48021,0.065], + [48023,0.043], + [48025,0.058], + [48027,0.085], + [48029,0.071], + [48031,0.042], + [48033,0.163], + [48035,0.054], + [48037,0.064], + [48039,0.069], + [48041,0.061], + [48043,0.051], + [48045,0.036], + [48047,0.081], + [48049,0.052], + [48051,0.06], + [48053,0.052], + [48055,0.062], + [48057,0.067], + [48059,0.05], + [48061,0.082], + [48063,0.069], + [48065,0.07], + [48067,0.057], + [48069,0.078], + [48071,0.067], + [48073,0.072], + [48075,0.041], + [48077,0.044], + [48079,0.073], + [48081,0.028], + [48083,0.056], + [48085,0.063], + [48087,0.063], + [48089,0.065], + [48091,0.058], + [48093,0.057], + [48095,0.029], + [48097,0.068], + [48099,0.07], + [48101,0.094], + [48103,0.08], + [48105,0.049], + [48107,0.067], + [48109,0.104], + [48111,0.095], + [48113,0.075], + [48115,0.071], + [48117,0.088], + [48119,0.057], + [48121,0.064], + [48123,0.065], + [48125,0.053], + [48127,0.072], + [48129,0.05], + [48131,0.071], + [48133,0.06], + [48135,0.091], + [48137,0.043], + [48139,0.067], + [48141,0.076], + [48143,0.062], + [48145,0.06], + [48147,0.05], + [48149,0.05], + [48151,0.078], + [48153,0.063], + [48155,0.039], + [48157,0.069], + [48159,0.056], + [48161,0.058], + [48163,0.065], + [48165,0.11], + [48167,0.064], + [48169,0.043], + [48171,0.05], + [48173,0.042], + [48175,0.039], + [48177,0.073], + [48179,0.072], + [48181,0.063], + [48183,0.074], + [48185,0.055], + [48187,0.063], + [48189,0.068], + [48191,0.034], + [48193,0.059], + [48195,0.081], + [48197,0.05], + [48199,0.066], + [48201,0.076], + [48203,0.064], + [48205,0.055], + [48207,0.041], + [48209,0.061], + [48211,0.059], + [48213,0.055], + [48215,0.092], + [48217,0.059], + [48219,0.067], + [48221,0.054], + [48223,0.063], + [48225,0.051], + [48227,0.064], + [48229,0.048], + [48231,0.063], + [48233,0.065], + [48235,0.041], + [48237,0.054], + [48239,0.068], + [48241,0.059], + [48243,0.027], + [48245,0.069], + [48247,0.099], + [48249,0.076], + [48251,0.066], + [48253,0.044], + [48255,0.059], + [48257,0.072], + [48259,0.048], + [48261,0.176], + [48263,0.034], + [48265,0.051], + [48267,0.064], + [48269,0.059], + [48271,0.027], + [48273,0.069], + [48275,0.071], + [48277,0.067], + [48279,0.073], + [48281,0.054], + [48283,0.044], + [48285,0.06], + [48287,0.062], + [48289,0.061], + [48291,0.071], + [48293,0.063], + [48295,0.075], + [48297,0.054], + [48299,0.039], + [48301,0.214], + [48303,0.067], + [48305,0.067], + [48307,0.064], + [48309,0.07], + [48311,0.083], + [48313,0.062], + [48315,0.044], + [48317,0.081], + [48319,0.065], + [48321,0.071], + [48323,0.094], + [48325,0.059], + [48327,0.004], + [48329,0.088], + [48331,0.061], + [48333,0.034], + [48335,0.051], + [48337,0.059], + [48339,0.068], + [48341,0.089], + [48343,0.055], + [48345,0.041], + [48347,0.065], + [48349,0.073], + [48351,0.045], + [48353,0.072], + [48355,0.068], + [48357,0.084], + [48359,0.057], + [48361,0.068], + [48363,0.061], + [48365,0.06], + [48367,0.062], + [48369,0.078], + [48371,0.064], + [48373,0.053], + [48375,0.079], + [48377,0.071], + [48379,0.05], + [48381,0.065], + [48383,0.087], + [48385,0.067], + [48387,0.044], + [48389,0.058], + [48391,0.059], + [48393,0.035], + [48395,0.065], + [48397,0.062], + [48399,0.055], + [48401,0.057], + [48403,0.047], + [48405,0.05], + [48407,0.052], + [48409,0.073], + [48411,0.052], + [48413,0.073], + [48415,0.067], + [48417,0.062], + [48419,0.071], + [48421,0.057], + [48423,0.068], + [48425,0.051], + [48427,0.099], + [48429,0.051], + [48431,0.063], + [48433,0.084], + [48435,0.086], + [48437,0.061], + [48439,0.071], + [48441,0.074], + [48443,0.029], + [48445,0.083], + [48447,0.054], + [48449,0.077], + [48451,0.068], + [48453,0.064], + [48455,0.05], + [48457,0.047], + [48459,0.058], + [48461,0.071], + [48463,0.073], + [48465,0.084], + [48467,0.057], + [48469,0.07], + [48471,0.042], + [48473,0.065], + [48475,0.073], + [48477,0.06], + [48479,0.095], + [48481,0.068], + [48483,0.067], + [48485,0.065], + [48487,0.055], + [48489,0.064], + [48491,0.066], + [48493,0.06], + [48495,0.079], + [48497,0.064], + [48499,0.048], + [48501,0.092], + [48503,0.059], + [48505,0.093], + [48507,0.074], + [49001,0.094], + [49003,0.081], + [49005,0.087], + [49007,0.06], + [49009,0.039], + [49011,0.086], + [49013,0.096], + [49015,0.065], + [49017,0.063], + [49019,0.05], + [49021,0.08], + [49023,0.086], + [49025,0.058], + [49027,0.08], + [49029,0.083], + [49031,0.058], + [49033,0.061], + [49035,0.076], + [49037,0.078], + [49039,0.061], + [49041,0.071], + [49043,0.049], + [49045,0.082], + [49047,0.088], + [49049,0.096], + [49051,0.076], + [49053,0.068], + [49055,0.063], + [49057,0.078], + [50001,0.041], + [50003,0.048], + [50005,0.046], + [50007,0.047], + [50009,0.043], + [50011,0.06], + [50013,0.043], + [50015,0.051], + [50017,0.047], + [50019,0.048], + [50021,0.044], + [50023,0.048], + [50025,0.045], + [50027,0.045], + [51001,0.058], + [51003,0.054], + [51005,0.044], + [51007,0.059], + [51009,0.054], + [51011,0.057], + [51013,0.059], + [51015,0.045], + [51017,0.047], + [51019,0.047], + [51021,0.043], + [51023,0.043], + [51025,0.043], + [51027,0.04], + [51029,0.044], + [51031,0.051], + [51033,0.071], + [51035,0.05], + [51036,0.04], + [51037,0.05], + [51041,0.06], + [51043,0.044], + [51045,0.059], + [51047,0.064], + [51049,0.047], + [51051,0.049], + [51053,0.053], + [51057,0.058], + [51059,0.065], + [51061,0.057], + [51063,0.047], + [51065,0.045], + [51067,0.046], + [51069,0.06], + [51071,0.052], + [51073,0.051], + [51075,0.037], + [51077,0.044], + [51079,0.057], + [51081,0.039], + [51083,0.054], + [51085,0.05], + [51087,0.061], + [51089,0.047], + [51091,0.039], + [51093,0.052], + [51095,0.048], + [51097,0.053], + [51099,0.062], + [51101,0.055], + [51103,0.04], + [51105,0.045], + [51107,0.072], + [51109,0.056], + [51111,0.046], + [51113,0.047], + [51115,0.038], + [51117,0.051], + [51119,0.04], + [51121,0.044], + [51125,0.045], + [51127,0.055], + [51131,0.053], + [51133,0.03], + [51135,0.053], + [51137,0.057], + [51139,0.048], + [51141,0.044], + [51143,0.042], + [51145,0.045], + [51147,0.046], + [51149,0.056], + [51153,0.074], + [51155,0.047], + [51157,0.048], + [51159,0.029], + [51161,0.047], + [51163,0.043], + [51165,0.056], + [51167,0.047], + [51169,0.04], + [51171,0.054], + [51173,0.048], + [51175,0.049], + [51177,0.062], + [51179,0.064], + [51181,0.044], + [51183,0.043], + [51185,0.053], + [51187,0.059], + [51191,0.041], + [51193,0.051], + [51195,0.048], + [51197,0.047], + [51199,0.056], + [51510,0.071], + [51520,0.055], + [51530,0.051], + [51540,0.05], + [51550,0.063], + [51570,0.061], + [51580,0.059], + [51590,0.059], + [51595,0.05], + [51600,0.072], + [51610,0.053], + [51620,0.067], + [51630,0.07], + [51640,0.051], + [51650,0.061], + [51660,0.051], + [51670,0.074], + [51678,0.023], + [51680,0.061], + [51683,0.084], + [51685,0.065], + [51690,0.081], + [51700,0.073], + [51710,0.066], + [51720,0.09], + [51730,0.073], + [51735,0.046], + [51740,0.075], + [51750,0.031], + [51760,0.059], + [51770,0.068], + [51775,0.045], + [51790,0.059], + [51800,0.066], + [51810,0.063], + [51820,0.064], + [51830,0.035], + [51840,0.067], + [53001,0.098], + [53003,0.05], + [53005,0.071], + [53007,0.061], + [53009,0.047], + [53011,0.062], + [53013,0.044], + [53015,0.06], + [53017,0.065], + [53019,0.041], + [53021,0.091], + [53023,0.05], + [53025,0.081], + [53027,0.054], + [53029,0.056], + [53031,0.03], + [53033,0.058], + [53035,0.058], + [53037,0.047], + [53039,0.05], + [53041,0.059], + [53043,0.05], + [53045,0.053], + [53047,0.062], + [53049,0.042], + [53051,0.045], + [53053,0.067], + [53055,0.029], + [53057,0.06], + [53059,0.043], + [53061,0.063], + [53063,0.061], + [53065,0.053], + [53067,0.058], + [53069,0.039], + [53071,0.055], + [53073,0.053], + [53075,0.042], + [53077,0.081], + [54001,0.051], + [54003,0.062], + [54005,0.049], + [54007,0.052], + [54009,0.044], + [54011,0.056], + [54013,0.048], + [54015,0.057], + [54017,0.038], + [54019,0.057], + [54021,0.048], + [54023,0.051], + [54025,0.052], + [54027,0.048], + [54029,0.048], + [54031,0.054], + [54033,0.057], + [54035,0.054], + [54037,0.055], + [54039,0.054], + [54041,0.061], + [54043,0.057], + [54045,0.057], + [54047,0.055], + [54049,0.058], + [54051,0.051], + [54053,0.055], + [54055,0.057], + [54057,0.05], + [54059,0.06], + [54061,0.05], + [54063,0.046], + [54065,0.045], + [54067,0.051], + [54069,0.052], + [54071,0.045], + [54073,0.045], + [54075,0.048], + [54077,0.052], + [54079,0.054], + [54081,0.053], + [54083,0.052], + [54085,0.047], + [54087,0.048], + [54089,0.038], + [54091,0.052], + [54093,0.045], + [54095,0.051], + [54097,0.054], + [54099,0.051], + [54101,0.049], + [54103,0.05], + [54105,0.05], + [54107,0.057], + [54109,0.051], + [55001,0.032], + [55003,0.054], + [55005,0.054], + [55007,0.042], + [55009,0.065], + [55011,0.052], + [55013,0.043], + [55015,0.054], + [55017,0.056], + [55019,0.082], + [55021,0.054], + [55023,0.049], + [55025,0.057], + [55027,0.046], + [55029,0.038], + [55031,0.049], + [55033,0.052], + [55035,0.057], + [55037,0.04], + [55039,0.055], + [55041,0.058], + [55043,0.054], + [55045,0.052], + [55047,0.056], + [55049,0.057], + [55051,0.027], + [55053,0.06], + [55055,0.051], + [55057,0.051], + [55059,0.058], + [55061,0.048], + [55063,0.051], + [55065,0.063], + [55067,0.049], + [55069,0.045], + [55071,0.052], + [55073,0.059], + [55075,0.045], + [55077,0.049], + [55078,0.082], + [55079,0.069], + [55081,0.066], + [55083,0.049], + [55085,0.045], + [55087,0.063], + [55089,0.051], + [55091,0.054], + [55093,0.049], + [55095,0.049], + [55097,0.049], + [55099,0.038], + [55101,0.061], + [55103,0.05], + [55105,0.061], + [55107,0.052], + [55109,0.061], + [55111,0.059], + [55113,0.045], + [55115,0.055], + [55117,0.056], + [55119,0.056], + [55121,0.07], + [55123,0.069], + [55125,0.037], + [55127,0.051], + [55129,0.044], + [55131,0.053], + [55133,0.051], + [55135,0.047], + [55137,0.048], + [55139,0.055], + [55141,0.057], + [56001,0.047], + [56003,0.062], + [56005,0.077], + [56007,0.066], + [56009,0.071], + [56011,0.069], + [56013,0.069], + [56015,0.062], + [56017,0.063], + [56019,0.05], + [56021,0.063], + [56023,0.069], + [56025,0.067], + [56027,0.032], + [56029,0.053], + [56031,0.048], + [56033,0.05], + [56035,0.059], + [56037,0.069], + [56039,0.05], + [56041,0.073], + [56043,0.057], + [56045,0.056] + ] +} diff --git a/data/regional/united-states/demographics/fertility/us-fertility-rate-2017.json b/data/regional/united-states/demographics/fertility/us-fertility-rate-2017.json new file mode 100644 index 0000000..7007afc --- /dev/null +++ b/data/regional/united-states/demographics/fertility/us-fertility-rate-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Fertility Rate", + "description" : "Birth rate by women aged 16 to 50.", + "units" : "births/woman", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","fertility","births"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.fertility.rate.2017"], + [1001,7.4], + [1003,5.1], + [1005,7.2], + [1007,7.6], + [1009,5.6], + [1011,3.5], + [1013,4.8], + [1015,5.2], + [1017,4.3], + [1019,3.8], + [1021,7.1], + [1023,4.6], + [1025,2], + [1027,4.3], + [1029,4.2], + [1031,4.1], + [1033,4.3], + [1035,4.3], + [1037,5.7], + [1039,6.1], + [1041,7.6], + [1043,3.2], + [1045,5.7], + [1047,8.2], + [1049,6.1], + [1051,5.7], + [1053,7.9], + [1055,4.1], + [1057,5], + [1059,3], + [1061,5], + [1063,7.6], + [1065,8.9], + [1067,5.8], + [1069,5.8], + [1071,5.5], + [1073,5.5], + [1075,5.6], + [1077,4.3], + [1079,5.1], + [1081,4.6], + [1083,6.3], + [1085,5.9], + [1087,2.7], + [1089,5.2], + [1091,3.2], + [1093,2.8], + [1095,5.4], + [1097,5.7], + [1099,4.6], + [1101,5.2], + [1103,4.8], + [1105,1.9], + [1107,5.2], + [1109,8.3], + [1111,5.6], + [1113,5.7], + [1115,5], + [1117,4.7], + [1119,3.4], + [1121,4.4], + [1123,5], + [1125,5.5], + [1127,5], + [1129,3.2], + [1131,2], + [1133,2.3], + [2013,2.9], + [2016,5.2], + [2020,5.8], + [2050,7.8], + [2060,6.1], + [2068,1.5], + [2070,8.7], + [2090,8.6], + [2100,1.3], + [2105,7.7], + [2110,3.5], + [2122,4.9], + [2130,6.9], + [2150,6.2], + [2158,null], + [2164,6.2], + [2170,4.9], + [2180,9.7], + [2185,11.1], + [2188,12.3], + [2195,5.4], + [2198,8.3], + [2220,3.4], + [2230,3.1], + [2240,9], + [2261,6.2], + [2275,8.3], + [2282,5], + [2290,6.5], + [4001,6.3], + [4003,6.8], + [4005,4], + [4007,7.2], + [4009,8.4], + [4011,10.2], + [4012,5.4], + [4013,5.4], + [4015,5.7], + [4017,8.2], + [4019,5.9], + [4021,5.6], + [4023,5.9], + [4025,4.4], + [4027,7.5], + [5001,5.9], + [5003,5.1], + [5005,7.6], + [5007,6.5], + [5009,9.6], + [5011,5], + [5013,2.1], + [5015,4.3], + [5017,8], + [5019,5.1], + [5021,6.4], + [5023,5.4], + [5025,4.8], + [5027,6.7], + [5029,3.4], + [5031,4.9], + [5033,5.8], + [5035,8.2], + [5037,4.5], + [5039,2.7], + [5041,7.6], + [5043,6.6], + [5045,5.3], + [5047,8], + [5049,6.7], + [5051,4.5], + [5053,6.5], + [5055,7.7], + [5057,7.2], + [5059,5.8], + [5061,4.3], + [5063,4.9], + [5065,5.5], + [5067,5.1], + [5069,5.2], + [5071,8.2], + [5073,5.5], + [5075,6.5], + [5077,19.4], + [5079,11.1], + [5081,3.1], + [5083,9.6], + [5085,7.4], + [5087,6.4], + [5089,6.8], + [5091,5.6], + [5093,8.3], + [5095,13.5], + [5097,4.8], + [5099,9.5], + [5101,2.4], + [5103,6.6], + [5105,5], + [5107,6.5], + [5109,5.3], + [5111,7.9], + [5113,9], + [5115,4.1], + [5117,9.1], + [5119,6], + [5121,7.4], + [5123,6.1], + [5125,6.2], + [5127,6.5], + [5129,4.4], + [5131,7.6], + [5133,7.4], + [5135,6.4], + [5137,1.8], + [5139,5.2], + [5141,4.9], + [5143,5.1], + [5145,5.2], + [5147,7.8], + [5149,6.3], + [6001,4.7], + [6003,4], + [6005,5.1], + [6007,5], + [6009,4], + [6011,8.4], + [6013,4.9], + [6015,9.5], + [6017,5.4], + [6019,6.1], + [6021,6.2], + [6023,5.4], + [6025,6.4], + [6027,5], + [6029,6.6], + [6031,5.7], + [6033,5.4], + [6035,7.7], + [6037,4.6], + [6039,7.1], + [6041,4.9], + [6043,7.3], + [6045,4.8], + [6047,6.5], + [6049,7.1], + [6051,1.1], + [6053,5.3], + [6055,4.5], + [6057,5], + [6059,4.9], + [6061,5.2], + [6063,5.1], + [6065,5.3], + [6067,5.5], + [6069,6.5], + [6071,5.8], + [6073,5], + [6075,3.7], + [6077,6], + [6079,3.8], + [6081,5], + [6083,4.5], + [6085,5.2], + [6087,4.8], + [6089,5], + [6091,3.9], + [6093,6.4], + [6095,5], + [6097,4.7], + [6099,6], + [6101,8.1], + [6103,6], + [6105,2.4], + [6107,7.1], + [6109,3.6], + [6111,5.5], + [6113,4.1], + [6115,8], + [8001,6.1], + [8003,6.2], + [8005,5.4], + [8007,6.5], + [8009,4.8], + [8011,6.9], + [8013,3.7], + [8014,4.5], + [8015,6.3], + [8017,10.7], + [8019,2.6], + [8021,7.1], + [8023,13.5], + [8025,3.6], + [8027,6.4], + [8029,7.4], + [8031,5.3], + [8033,0.5], + [8035,4.8], + [8037,3.9], + [8039,4.1], + [8041,6.4], + [8043,4.4], + [8045,4.1], + [8047,8.1], + [8049,1.9], + [8051,4.1], + [8053,3.2], + [8055,0.8], + [8057,0], + [8059,5], + [8061,8.9], + [8063,15.4], + [8065,3.3], + [8067,5.7], + [8069,4.8], + [8071,7], + [8073,4.5], + [8075,6.8], + [8077,5.6], + [8079,14.4], + [8081,4.1], + [8083,4.6], + [8085,6.4], + [8087,5], + [8089,4.6], + [8091,1.1], + [8093,3.2], + [8095,5], + [8097,6.9], + [8099,8.2], + [8101,5.6], + [8103,6.4], + [8105,5], + [8107,3.1], + [8109,6.7], + [8111,6.6], + [8113,4.2], + [8115,5.8], + [8117,3.3], + [8119,3.3], + [8121,7.3], + [8123,7], + [8125,5.8], + [9001,4.9], + [9003,5], + [9005,4.3], + [9007,4.6], + [9009,4], + [9011,4.8], + [9013,2.7], + [9015,3.6], + [10001,5.9], + [10003,4.4], + [10005,6], + [11001,4.8], + [12001,3.7], + [12003,7.5], + [12005,6.8], + [12007,2.2], + [12009,5.5], + [12011,4.8], + [12013,4.6], + [12015,5.4], + [12017,3.7], + [12019,4.8], + [12021,5.4], + [12023,5.8], + [12027,6.3], + [12029,4.6], + [12031,6.1], + [12033,4], + [12035,3.4], + [12037,5.1], + [12039,3.8], + [12041,3.4], + [12043,2.9], + [12045,5.7], + [12047,9.1], + [12049,6.4], + [12051,6.1], + [12053,5.4], + [12055,5], + [12057,4.7], + [12059,4.2], + [12061,5.1], + [12063,6.6], + [12065,6.5], + [12067,4.8], + [12069,5], + [12071,5.2], + [12073,4.2], + [12075,5.4], + [12077,9.7], + [12079,15.3], + [12081,4.8], + [12083,4.8], + [12085,4.9], + [12086,4.3], + [12087,3.8], + [12089,7.3], + [12091,6.8], + [12093,6.7], + [12095,5.1], + [12097,5.7], + [12099,5.3], + [12101,4.8], + [12103,4.9], + [12105,5.5], + [12107,4.2], + [12109,4.4], + [12111,5.7], + [12113,5.3], + [12115,3.8], + [12117,4.5], + [12119,9.4], + [12121,4.3], + [12123,14.8], + [12125,4.2], + [12127,4.4], + [12129,2.8], + [12131,6.9], + [12133,4.4], + [13001,5.7], + [13003,5.9], + [13005,5], + [13007,6.5], + [13009,4], + [13011,5], + [13013,5.8], + [13015,5.5], + [13017,5.6], + [13019,4.5], + [13021,5.8], + [13023,5.2], + [13025,6.1], + [13027,5.3], + [13029,5], + [13031,3.7], + [13033,8], + [13035,5.3], + [13037,5.9], + [13039,8.5], + [13043,4], + [13045,6.7], + [13047,4.4], + [13049,2.7], + [13051,6.3], + [13053,10.8], + [13055,3.9], + [13057,5.3], + [13059,4.1], + [13061,14.9], + [13063,5.3], + [13065,7.2], + [13067,5.1], + [13069,6.2], + [13071,6.9], + [13073,4.9], + [13075,6.3], + [13077,7.9], + [13079,4.4], + [13081,2.1], + [13083,3.3], + [13085,5.1], + [13087,5.1], + [13089,5.4], + [13091,5.8], + [13093,3], + [13095,5.9], + [13097,5.7], + [13099,4.9], + [13101,4], + [13103,7.4], + [13105,5.1], + [13107,8.1], + [13109,8.6], + [13111,5.6], + [13113,3.4], + [13115,6], + [13117,4.9], + [13119,6.7], + [13121,4.8], + [13123,6], + [13125,1.5], + [13127,7.1], + [13129,5.5], + [13131,3.8], + [13133,6.2], + [13135,5], + [13137,5.6], + [13139,5.8], + [13141,0.2], + [13143,5.8], + [13145,5.3], + [13147,7.4], + [13149,9.9], + [13151,4.5], + [13153,5.5], + [13155,9.3], + [13157,4.4], + [13159,3.8], + [13161,11.4], + [13163,7.7], + [13165,8.9], + [13167,5.1], + [13169,4.6], + [13171,2.7], + [13173,5.5], + [13175,4.4], + [13177,4.1], + [13179,9.5], + [13181,6.2], + [13183,6.3], + [13185,7.6], + [13187,3.8], + [13189,5.4], + [13191,2.7], + [13193,5.7], + [13195,5.4], + [13197,7.2], + [13199,6.5], + [13201,1.9], + [13205,4.8], + [13207,5.3], + [13209,7.6], + [13211,1.9], + [13213,5.7], + [13215,6], + [13217,6.9], + [13219,5.9], + [13221,3.8], + [13223,5.3], + [13225,2.7], + [13227,6.1], + [13229,6.3], + [13231,2.8], + [13233,7], + [13235,0.7], + [13237,6.5], + [13239,10.9], + [13241,3.6], + [13243,6.2], + [13245,7.3], + [13247,5.7], + [13249,6.5], + [13251,8.3], + [13253,3.1], + [13255,5], + [13257,8.8], + [13259,0.5], + [13261,5.5], + [13263,4.9], + [13265,5.6], + [13267,8.5], + [13269,5.2], + [13271,6.8], + [13273,4.7], + [13275,5.8], + [13277,5.9], + [13279,6], + [13281,9.7], + [13283,4.6], + [13285,6.5], + [13287,2.1], + [13289,3.7], + [13291,1.9], + [13293,5.8], + [13295,7], + [13297,5.8], + [13299,6.7], + [13301,8.2], + [13303,8], + [13305,4.4], + [13307,4.1], + [13309,1.3], + [13311,6.3], + [13313,5.9], + [13315,2.3], + [13317,7], + [13319,1.7], + [13321,2.3], + [15001,6.1], + [15003,6.6], + [15005,0], + [15007,5.1], + [15009,5.3], + [16001,4.3], + [16003,13.3], + [16005,6.7], + [16007,10], + [16009,4.8], + [16011,7.6], + [16013,6.7], + [16015,9.4], + [16017,6.7], + [16019,8.7], + [16021,6.8], + [16023,3.7], + [16025,7], + [16027,5.8], + [16029,7.4], + [16031,7.5], + [16033,16.3], + [16035,8.2], + [16037,7.2], + [16039,8], + [16041,6.2], + [16043,5.6], + [16045,3.7], + [16047,4.1], + [16049,7.1], + [16051,7.8], + [16053,11.7], + [16055,6.1], + [16057,4.2], + [16059,6.6], + [16061,4.7], + [16063,6.1], + [16065,7], + [16067,8.1], + [16069,8.4], + [16071,7.1], + [16073,9.5], + [16075,8.2], + [16077,7.2], + [16079,7.9], + [16081,8.2], + [16083,8.2], + [16085,7.1], + [16087,9.1], + [17001,6.2], + [17003,2.7], + [17005,4.4], + [17007,4.9], + [17009,12.5], + [17011,7], + [17013,4.8], + [17015,3.1], + [17017,6], + [17019,4.1], + [17021,2.1], + [17023,6.9], + [17025,7.4], + [17027,4.9], + [17029,4.4], + [17031,5.1], + [17033,5.2], + [17035,6.1], + [17037,4], + [17039,7.4], + [17041,8], + [17043,4.8], + [17045,8], + [17047,6.4], + [17049,5.2], + [17051,7], + [17053,5.8], + [17055,5], + [17057,3.6], + [17059,5.5], + [17061,5], + [17063,6.5], + [17065,3.2], + [17067,4.6], + [17069,5.9], + [17071,3.8], + [17073,6.1], + [17075,5.6], + [17077,5.1], + [17079,6.6], + [17081,6.6], + [17083,4], + [17085,5.4], + [17087,7.9], + [17089,6], + [17091,4.8], + [17093,4.6], + [17095,5], + [17097,5.3], + [17099,5.2], + [17101,9.5], + [17103,6.4], + [17105,7.4], + [17107,5.4], + [17109,3.1], + [17111,4.2], + [17113,5.5], + [17115,5.6], + [17117,5.2], + [17119,5.5], + [17121,6.4], + [17123,7.1], + [17125,5.1], + [17127,5.9], + [17129,6.8], + [17131,5.1], + [17133,6.5], + [17135,5.9], + [17137,4.8], + [17139,10.1], + [17141,7.3], + [17143,6.6], + [17145,2.7], + [17147,6.6], + [17149,5.9], + [17151,6.2], + [17153,6.9], + [17155,6.2], + [17157,4.4], + [17159,4.7], + [17161,5.9], + [17163,6.5], + [17165,8], + [17167,5], + [17169,6.4], + [17171,3.3], + [17173,4], + [17175,5.4], + [17177,3.9], + [17179,5.5], + [17181,7.4], + [17183,5.3], + [17185,6.1], + [17187,4.2], + [17189,6.2], + [17191,7.2], + [17193,3.6], + [17195,4.7], + [17197,5.1], + [17199,5], + [17201,5.4], + [17203,6.4], + [18001,9.9], + [18003,6.7], + [18005,5.9], + [18007,8.4], + [18009,6.1], + [18011,7.1], + [18013,3.8], + [18015,5.3], + [18017,6.1], + [18019,5.6], + [18021,7.5], + [18023,6], + [18025,5.3], + [18027,7.7], + [18029,3.8], + [18031,3.6], + [18033,4.2], + [18035,3.7], + [18037,9.9], + [18039,7.4], + [18041,3.5], + [18043,5.1], + [18045,5.9], + [18047,4.8], + [18049,5.9], + [18051,7], + [18053,3.8], + [18055,5.2], + [18057,5.6], + [18059,3.9], + [18061,3.8], + [18063,5], + [18065,5.2], + [18067,5.2], + [18069,7.1], + [18071,6.4], + [18073,6], + [18075,5.1], + [18077,6.8], + [18079,6.1], + [18081,4.5], + [18083,4.4], + [18085,7.7], + [18087,8.3], + [18089,5.7], + [18091,4.4], + [18093,6.2], + [18095,5.3], + [18097,5.6], + [18099,5.7], + [18101,8.8], + [18103,4.7], + [18105,3.5], + [18107,7.1], + [18109,4.9], + [18111,8.1], + [18113,6.8], + [18115,6.8], + [18117,7.2], + [18119,5.5], + [18121,4.5], + [18123,8.3], + [18125,5.4], + [18127,4.3], + [18129,5], + [18131,2.7], + [18133,4.5], + [18135,5.6], + [18137,5.7], + [18139,5], + [18141,5.4], + [18143,4.1], + [18145,6.5], + [18147,5.3], + [18149,6.5], + [18151,4.4], + [18153,6.4], + [18155,5.2], + [18157,5.3], + [18159,4.9], + [18161,3], + [18163,5], + [18165,5.1], + [18167,5.6], + [18169,4.3], + [18171,5.8], + [18173,4.2], + [18175,5.8], + [18177,4.4], + [18179,5], + [18181,7], + [18183,6.1], + [19001,3], + [19003,9.1], + [19005,10.2], + [19007,5.4], + [19009,4.1], + [19011,6.9], + [19013,6], + [19015,6.3], + [19017,4.2], + [19019,6.8], + [19021,7.2], + [19023,5.1], + [19025,8.1], + [19027,5.6], + [19029,9.8], + [19031,5.9], + [19033,6.3], + [19035,4.5], + [19037,8.6], + [19039,9.8], + [19041,8.9], + [19043,5.7], + [19045,4.7], + [19047,7.2], + [19049,7.2], + [19051,13.6], + [19053,3.7], + [19055,5.3], + [19057,6.5], + [19059,7.1], + [19061,5.7], + [19063,4.7], + [19065,8.6], + [19067,8.4], + [19069,4.1], + [19071,7.8], + [19073,7.8], + [19075,7.4], + [19077,3.3], + [19079,4], + [19081,6.7], + [19083,8.5], + [19085,6.1], + [19087,7.3], + [19089,11.4], + [19091,6.8], + [19093,8], + [19095,4.8], + [19097,7.9], + [19099,7], + [19101,3.5], + [19103,4.6], + [19105,7], + [19107,5.7], + [19109,8.3], + [19111,8.4], + [19113,5.9], + [19115,8.2], + [19117,4.2], + [19119,9.9], + [19121,5.1], + [19123,3.6], + [19125,6.3], + [19127,6.6], + [19129,3.1], + [19131,5.7], + [19133,3.6], + [19135,5.9], + [19137,8.4], + [19139,5.5], + [19141,10.7], + [19143,8], + [19145,10.6], + [19147,6.1], + [19149,7], + [19151,6.3], + [19153,6], + [19155,5.5], + [19157,5.7], + [19159,8.2], + [19161,8.8], + [19163,5.4], + [19165,7.6], + [19167,7.9], + [19169,3.8], + [19171,6.9], + [19173,6.4], + [19175,10.8], + [19177,6.7], + [19179,7.1], + [19181,5], + [19183,11.3], + [19185,9.4], + [19187,6], + [19189,8.5], + [19191,4.3], + [19193,6.7], + [19195,6.9], + [19197,6.4], + [20001,7.2], + [20003,4.6], + [20005,3.8], + [20007,6.9], + [20009,6.8], + [20011,9.1], + [20013,8.3], + [20015,5.6], + [20017,6.1], + [20019,4.9], + [20021,4.8], + [20023,9.6], + [20025,7.7], + [20027,6.9], + [20029,9], + [20031,9.8], + [20033,1], + [20035,7.2], + [20037,6.7], + [20039,6], + [20041,7.5], + [20043,7.3], + [20045,4.6], + [20047,2.4], + [20049,5.1], + [20051,3], + [20053,7.5], + [20055,7], + [20057,5.8], + [20059,6.2], + [20061,9.5], + [20063,11.1], + [20065,13.2], + [20067,1.3], + [20069,6.5], + [20071,4.6], + [20073,7.9], + [20075,3.3], + [20077,5.4], + [20079,6.9], + [20081,6.6], + [20083,4.1], + [20085,7.8], + [20087,6.8], + [20089,6.1], + [20091,5.5], + [20093,3.4], + [20095,4], + [20097,2.9], + [20099,7.6], + [20101,16.1], + [20103,6.1], + [20105,10], + [20107,5.6], + [20109,11.9], + [20111,5.7], + [20113,5.4], + [20115,9.2], + [20117,8.5], + [20119,6.7], + [20121,6], + [20123,3.8], + [20125,6.3], + [20127,8.7], + [20129,2.7], + [20131,7.8], + [20133,7.1], + [20135,13.7], + [20137,9.4], + [20139,5.8], + [20141,8.8], + [20143,0.9], + [20145,2.3], + [20147,11.2], + [20149,8.4], + [20151,5.1], + [20153,14.3], + [20155,6.3], + [20157,8.7], + [20159,5.1], + [20161,4.9], + [20163,7], + [20165,6.5], + [20167,10.1], + [20169,7.5], + [20171,8.6], + [20173,6.5], + [20175,6], + [20177,5.5], + [20179,9.6], + [20181,9.3], + [20183,7.7], + [20185,6.8], + [20187,10.2], + [20189,4.3], + [20191,6.7], + [20193,4.8], + [20195,1.5], + [20197,5.5], + [20199,4.3], + [20201,5.7], + [20203,10.7], + [20205,7.5], + [20207,8.6], + [20209,6.7], + [21001,3.4], + [21003,5.7], + [21005,7.9], + [21007,3.1], + [21009,6.8], + [21011,6.5], + [21013,4.6], + [21015,4.9], + [21017,5.8], + [21019,4.6], + [21021,4.2], + [21023,6.7], + [21025,4.9], + [21027,7.9], + [21029,5.5], + [21031,8.3], + [21033,6.8], + [21035,3.9], + [21037,5], + [21039,9.5], + [21041,6.2], + [21043,4.9], + [21045,5.6], + [21047,8.5], + [21049,4.6], + [21051,8.1], + [21053,4.8], + [21055,4.2], + [21057,7], + [21059,5.8], + [21061,5.4], + [21063,8], + [21065,6.5], + [21067,4.4], + [21069,5.8], + [21071,4.2], + [21073,4.4], + [21075,9.8], + [21077,8.9], + [21079,7.4], + [21081,7], + [21083,3.6], + [21085,8.2], + [21087,7.1], + [21089,3.8], + [21091,4.7], + [21093,5.3], + [21095,5.1], + [21097,6], + [21099,7.9], + [21101,6.1], + [21103,5.2], + [21105,10.4], + [21107,5.8], + [21109,6], + [21111,5.6], + [21113,6.3], + [21115,6.1], + [21117,6.7], + [21119,6.2], + [21121,4.6], + [21123,5.6], + [21125,4.8], + [21127,4.3], + [21129,6.7], + [21131,6.7], + [21133,5.2], + [21135,5.9], + [21137,5], + [21139,1.1], + [21141,5.1], + [21143,2.2], + [21145,6.3], + [21147,5.5], + [21149,5.7], + [21151,5.2], + [21153,5.8], + [21155,4.3], + [21157,3], + [21159,5.2], + [21161,4.3], + [21163,7.8], + [21165,7.3], + [21167,4.8], + [21169,8.9], + [21171,4.4], + [21173,4.8], + [21175,4.8], + [21177,5], + [21179,5.7], + [21181,5.6], + [21183,7.3], + [21185,6.6], + [21187,6.3], + [21189,2.9], + [21191,7.1], + [21193,5.7], + [21195,5], + [21197,5], + [21199,5.5], + [21201,5.8], + [21203,4], + [21205,4.1], + [21207,5.8], + [21209,5.3], + [21211,5.5], + [21213,7], + [21215,4.8], + [21217,4.7], + [21219,7.5], + [21221,3.3], + [21223,4.4], + [21225,4.3], + [21227,6.4], + [21229,1.8], + [21231,5.7], + [21233,6.9], + [21235,6.4], + [21237,6.8], + [21239,5.6], + [22001,9.9], + [22003,9.2], + [22005,6.1], + [22007,6], + [22009,6.4], + [22011,4.9], + [22013,6.1], + [22015,4.8], + [22017,4.6], + [22019,5.7], + [22021,1.5], + [22023,8.5], + [22025,3.4], + [22027,6.9], + [22029,2.9], + [22031,5.4], + [22033,4.7], + [22035,5], + [22037,6.1], + [22039,7.6], + [22041,7.6], + [22043,4.7], + [22045,6.4], + [22047,5.9], + [22049,3.2], + [22051,5.5], + [22053,5], + [22055,5.9], + [22057,5.7], + [22059,8.4], + [22061,6.1], + [22063,5.9], + [22065,6.6], + [22067,3.5], + [22069,3.2], + [22071,4.9], + [22073,6.9], + [22075,8.8], + [22077,3.6], + [22079,5.1], + [22081,6.4], + [22083,4.8], + [22085,6.5], + [22087,5.5], + [22089,7.3], + [22091,6.2], + [22093,6.4], + [22095,4.8], + [22097,5.5], + [22099,5.4], + [22101,4.7], + [22103,5.7], + [22105,4.3], + [22107,3.5], + [22109,5.1], + [22111,3.9], + [22113,7.5], + [22115,7], + [22117,7], + [22119,8.4], + [22121,8.5], + [22123,5.3], + [22125,10.6], + [22127,1.9], + [23001,6.8], + [23003,4.9], + [23005,4.1], + [23007,4], + [23009,7], + [23011,5.7], + [23013,5.7], + [23015,3.3], + [23017,4.1], + [23019,4.8], + [23021,5.6], + [23023,5], + [23025,4], + [23027,6.3], + [23029,4.7], + [23031,4.9], + [24001,5.3], + [24003,5.4], + [24005,5], + [24009,4.3], + [24011,4.5], + [24013,4.5], + [24015,5.4], + [24017,5.2], + [24019,6.7], + [24021,5.4], + [24023,4.9], + [24025,6.7], + [24027,5.5], + [24029,3.9], + [24031,5.3], + [24033,5], + [24035,4.9], + [24037,6], + [24039,6.3], + [24041,4.1], + [24043,5.9], + [24045,4.9], + [24047,6.3], + [24510,4.8], + [25001,4.5], + [25003,5.1], + [25005,4.7], + [25007,1.8], + [25009,4.8], + [25011,4.4], + [25013,5], + [25015,2.7], + [25017,4.9], + [25019,5.5], + [25021,4.9], + [25023,5.2], + [25025,4], + [25027,5], + [26001,4.4], + [26003,2.6], + [26005,4.9], + [26007,4.6], + [26009,5.2], + [26011,5.7], + [26013,5.8], + [26015,7.4], + [26017,5.4], + [26019,5.6], + [26021,6.4], + [26023,6.6], + [26025,5.3], + [26027,6.2], + [26029,6.2], + [26031,4.2], + [26033,8.3], + [26035,5.3], + [26037,5.7], + [26039,5], + [26041,3.3], + [26043,7.3], + [26045,6.4], + [26047,5.2], + [26049,5.3], + [26051,8.3], + [26053,4.7], + [26055,4.9], + [26057,3.1], + [26059,6.4], + [26061,5.6], + [26063,5.7], + [26065,4.6], + [26067,7], + [26069,4.1], + [26071,4.4], + [26073,3.5], + [26075,5.4], + [26077,4.8], + [26079,5.5], + [26081,6], + [26083,10.6], + [26085,5], + [26087,6], + [26089,7.1], + [26091,5.4], + [26093,5.2], + [26095,4.8], + [26097,3.4], + [26099,5], + [26101,3.8], + [26103,3.5], + [26105,7], + [26107,3.5], + [26109,4.7], + [26111,5.1], + [26113,6.6], + [26115,5.2], + [26117,4.8], + [26119,3.8], + [26121,5.1], + [26123,6.1], + [26125,5.4], + [26127,7], + [26129,7.6], + [26131,1.6], + [26133,4.9], + [26135,5.8], + [26137,5.7], + [26139,5.5], + [26141,3.3], + [26143,5.7], + [26145,5.5], + [26147,5.4], + [26149,6.6], + [26151,5.7], + [26153,5.1], + [26155,5.3], + [26157,6.8], + [26159,6.4], + [26161,4.1], + [26163,5.9], + [26165,7], + [27001,7.3], + [27003,6.3], + [27005,6.7], + [27007,5.7], + [27009,9.6], + [27011,5], + [27013,4.6], + [27015,6], + [27017,4.9], + [27019,5], + [27021,8.1], + [27023,10.4], + [27025,4.8], + [27027,6.8], + [27029,7.6], + [27031,5], + [27033,10.4], + [27035,6], + [27037,5.2], + [27039,6.8], + [27041,7.1], + [27043,4.8], + [27045,6.7], + [27047,4.7], + [27049,7.2], + [27051,7.5], + [27053,5.5], + [27055,3.6], + [27057,4.6], + [27059,6.1], + [27061,6.2], + [27063,6.9], + [27065,4.5], + [27067,8.2], + [27069,6.1], + [27071,2.9], + [27073,7.2], + [27075,7.8], + [27077,3.9], + [27079,7.8], + [27081,5.8], + [27083,6.5], + [27085,6.6], + [27087,8.4], + [27089,6.7], + [27091,7.4], + [27093,7.7], + [27095,7.8], + [27097,5.7], + [27099,6.6], + [27101,6.7], + [27103,4.7], + [27105,7.3], + [27107,7.4], + [27109,6], + [27111,7.7], + [27113,4.6], + [27115,5.5], + [27117,6.7], + [27119,7.6], + [27121,5.9], + [27123,6.3], + [27125,8.4], + [27127,6.5], + [27129,5.6], + [27131,4.6], + [27133,11.3], + [27135,5.3], + [27137,5.4], + [27139,6.3], + [27141,6.3], + [27143,5.3], + [27145,5.4], + [27147,6], + [27149,6.3], + [27151,11.3], + [27153,8.3], + [27155,6.9], + [27157,5.6], + [27159,8.7], + [27161,6.2], + [27163,5.8], + [27165,3.7], + [27167,12.1], + [27169,5.6], + [27171,6.4], + [27173,9.2], + [28001,4.9], + [28003,4.4], + [28005,0.9], + [28007,7.2], + [28009,2.6], + [28011,6.9], + [28013,3.3], + [28015,8.5], + [28017,10.5], + [28019,2.2], + [28021,5.3], + [28023,6], + [28025,4.6], + [28027,6.2], + [28029,4.4], + [28031,5.3], + [28033,5.4], + [28035,5.3], + [28037,6.8], + [28039,4.7], + [28041,4], + [28043,4], + [28045,6], + [28047,5.4], + [28049,6.2], + [28051,6.2], + [28053,9.3], + [28055,6.4], + [28057,6], + [28059,5.5], + [28061,5.3], + [28063,4.2], + [28065,8.4], + [28067,8.1], + [28069,2.8], + [28071,4.3], + [28073,5.7], + [28075,5.1], + [28077,6.5], + [28079,7.1], + [28081,6], + [28083,3.4], + [28085,0.7], + [28087,5.3], + [28089,4.1], + [28091,7.2], + [28093,3.3], + [28095,4.8], + [28097,7.7], + [28099,8.7], + [28101,3.7], + [28103,5], + [28105,3.4], + [28107,5.1], + [28109,5.2], + [28111,6.6], + [28113,5.4], + [28115,6.2], + [28117,4.7], + [28119,6.5], + [28121,4.3], + [28123,6.3], + [28125,6.7], + [28127,4.4], + [28129,7.4], + [28131,3.9], + [28133,5.5], + [28135,2], + [28137,5.6], + [28139,6.9], + [28141,5.3], + [28143,4.1], + [28145,5.4], + [28147,7.1], + [28149,6.7], + [28151,6.4], + [28153,6.4], + [28155,7.4], + [28157,3.7], + [28159,9.7], + [28161,7.6], + [28163,6.2], + [29001,3.1], + [29003,4.9], + [29005,7.6], + [29007,4.6], + [29009,7.1], + [29011,8.2], + [29013,5.5], + [29015,4], + [29017,9.5], + [29019,4.9], + [29021,6.4], + [29023,3.2], + [29025,4.4], + [29027,5], + [29029,4.1], + [29031,4.9], + [29033,9.2], + [29035,0.7], + [29037,5.8], + [29039,8.4], + [29041,4.6], + [29043,7.6], + [29045,6.3], + [29047,5.3], + [29049,7.9], + [29051,5.4], + [29053,5.9], + [29055,6.2], + [29057,5.2], + [29059,5.4], + [29061,9.3], + [29063,4.5], + [29065,4.7], + [29067,6.7], + [29069,8.1], + [29071,5.5], + [29073,7.9], + [29075,7.9], + [29077,5.7], + [29079,10.4], + [29081,6.2], + [29083,5.6], + [29085,1.9], + [29087,10.7], + [29089,4], + [29091,6.5], + [29093,3.9], + [29095,5.6], + [29097,5], + [29099,6.2], + [29101,6.9], + [29103,8], + [29105,5.3], + [29107,7.7], + [29109,5.3], + [29111,5.2], + [29113,5.4], + [29115,6.4], + [29117,6.7], + [29119,7.1], + [29121,5.1], + [29123,4.3], + [29125,3.8], + [29127,6.9], + [29129,5.6], + [29131,7], + [29133,6.9], + [29135,5.7], + [29137,4.9], + [29139,7.4], + [29141,8.2], + [29143,7.7], + [29145,5.5], + [29147,3], + [29149,7.9], + [29151,6.9], + [29153,4.7], + [29155,6.7], + [29157,6.6], + [29159,6.9], + [29161,7.4], + [29163,7.6], + [29165,4.8], + [29167,3.1], + [29169,5.5], + [29171,7.6], + [29173,11.5], + [29175,2.8], + [29177,5.8], + [29179,3.9], + [29181,5.7], + [29183,4.9], + [29185,4.9], + [29186,4.5], + [29187,4.1], + [29189,5.1], + [29195,8.3], + [29197,8.4], + [29199,16.4], + [29201,6.4], + [29203,5.8], + [29205,4.7], + [29207,6.8], + [29209,4.8], + [29211,9.1], + [29213,6.2], + [29215,7.8], + [29217,6.2], + [29219,9], + [29221,5.6], + [29223,8.6], + [29225,8.5], + [29227,4.2], + [29229,4.3], + [29510,4.9], + [30001,4.2], + [30003,4.6], + [30005,8.4], + [30007,13.2], + [30009,3.2], + [30011,3.4], + [30013,7.1], + [30015,10], + [30017,6.1], + [30019,10.1], + [30021,3.3], + [30023,6.7], + [30025,10.8], + [30027,4.8], + [30029,6.6], + [30031,5.3], + [30033,9], + [30035,7], + [30037,3.5], + [30039,10.7], + [30041,4.8], + [30043,3.6], + [30045,2.3], + [30047,6.5], + [30049,5.9], + [30051,3.1], + [30053,3.8], + [30055,7.6], + [30057,2.8], + [30059,7], + [30061,2.3], + [30063,3.5], + [30065,12.9], + [30067,7.3], + [30069,3.7], + [30071,7.8], + [30073,6.4], + [30075,4.7], + [30077,3.4], + [30079,0], + [30081,4.2], + [30083,8.6], + [30085,5.8], + [30087,4.7], + [30089,8.3], + [30091,1.4], + [30093,6.4], + [30095,5.6], + [30097,10.3], + [30099,6], + [30101,2.1], + [30103,8.3], + [30105,2.5], + [30107,8.3], + [30109,14.7], + [30111,5.7], + [31001,8.1], + [31003,8.6], + [31005,0], + [31007,3.7], + [31009,8.3], + [31011,4.8], + [31013,6.1], + [31015,5.9], + [31017,1.1], + [31019,5.6], + [31021,6.7], + [31023,9.8], + [31025,6.9], + [31027,8.6], + [31029,6], + [31031,5], + [31033,11.4], + [31035,6], + [31037,9.4], + [31039,8.2], + [31041,9], + [31043,9.3], + [31045,5.8], + [31047,9.5], + [31049,6], + [31051,12.1], + [31053,6.1], + [31055,6.4], + [31057,8.4], + [31059,7.4], + [31061,7.2], + [31063,5.3], + [31065,4.9], + [31067,6.6], + [31069,7.1], + [31071,1.8], + [31073,1.6], + [31075,9.8], + [31077,10.5], + [31079,8.7], + [31081,5], + [31083,8.7], + [31085,9.3], + [31087,5.7], + [31089,8.4], + [31091,0], + [31093,7.7], + [31095,5.7], + [31097,5.1], + [31099,4.1], + [31101,6.9], + [31103,8.5], + [31105,6.7], + [31107,9], + [31109,5.9], + [31111,8], + [31113,11.3], + [31115,14.3], + [31117,24.7], + [31119,6.8], + [31121,7.6], + [31123,2.4], + [31125,8.7], + [31127,8], + [31129,11.1], + [31131,7.5], + [31133,8.7], + [31135,3.7], + [31137,3.7], + [31139,11.2], + [31141,4], + [31143,6.4], + [31145,5.2], + [31147,8.1], + [31149,8.4], + [31151,2.1], + [31153,6.8], + [31155,7.2], + [31157,6.9], + [31159,10.3], + [31161,6.6], + [31163,8.7], + [31165,7.8], + [31167,5.8], + [31169,7.4], + [31171,0], + [31173,10.6], + [31175,10.5], + [31177,4], + [31179,7.3], + [31181,4.9], + [31183,9.6], + [31185,8.4], + [32001,5.8], + [32003,5.1], + [32005,4.8], + [32007,6.9], + [32009,7.1], + [32011,0], + [32013,10.8], + [32015,17.2], + [32017,4.3], + [32019,6.1], + [32021,6.6], + [32023,5.5], + [32027,11.1], + [32029,6], + [32031,5.8], + [32033,3.8], + [32510,4.2], + [33001,6.9], + [33003,6.1], + [33005,4], + [33007,5.6], + [33009,5.7], + [33011,5.8], + [33013,4.6], + [33015,4.7], + [33017,4.4], + [33019,4.7], + [34001,4.9], + [34003,4.1], + [34005,4.8], + [34007,5.7], + [34009,5.3], + [34011,5.4], + [34013,5.1], + [34015,4.7], + [34017,5.1], + [34019,4], + [34021,4.5], + [34023,5], + [34025,4.4], + [34027,3.8], + [34029,7], + [34031,4.6], + [34033,5.2], + [34035,4], + [34037,4.3], + [34039,5.5], + [34041,4.7], + [35001,5.2], + [35003,1.7], + [35005,8.3], + [35006,8.6], + [35007,4.3], + [35009,7], + [35011,0.2], + [35013,5], + [35015,10.5], + [35017,5.9], + [35019,2.7], + [35021,0], + [35023,7.2], + [35025,6.6], + [35027,11], + [35028,3.6], + [35029,9.6], + [35031,7.2], + [35033,0.9], + [35035,6.3], + [35037,8.4], + [35039,3], + [35041,7.3], + [35043,6.1], + [35045,5.9], + [35047,4.9], + [35049,4.1], + [35051,7.2], + [35053,5.8], + [35055,3.5], + [35057,6.1], + [35059,9.1], + [35061,4.7], + [36001,3.9], + [36003,5], + [36005,5.8], + [36007,4.5], + [36009,5.4], + [36011,5.7], + [36013,6.1], + [36015,4], + [36017,5.6], + [36019,4.8], + [36021,3.9], + [36023,3.7], + [36025,5.4], + [36027,4.4], + [36029,5.4], + [36031,4.4], + [36033,5], + [36035,5.7], + [36037,6.2], + [36039,3.5], + [36041,3.8], + [36043,5], + [36045,8], + [36047,5.1], + [36049,7.1], + [36051,5.5], + [36053,2.8], + [36055,4.6], + [36057,5.9], + [36059,4.3], + [36061,3.6], + [36063,5], + [36065,6.7], + [36067,4.6], + [36069,5.1], + [36071,5.6], + [36073,5.5], + [36075,4.4], + [36077,4.7], + [36079,3.7], + [36081,4.6], + [36083,5.1], + [36085,4.8], + [36087,7], + [36089,5.2], + [36091,5.1], + [36093,5.2], + [36095,2.9], + [36097,6.2], + [36099,9.4], + [36101,7.2], + [36103,4.2], + [36105,4.7], + [36107,6.7], + [36109,4], + [36111,4.5], + [36113,3.5], + [36115,4.5], + [36117,5.3], + [36119,4.7], + [36121,6.4], + [36123,4.8], + [37001,4.3], + [37003,4.3], + [37005,4.1], + [37007,5.7], + [37009,5.7], + [37011,4.3], + [37013,5.6], + [37015,2.8], + [37017,6.5], + [37019,6], + [37021,3.8], + [37023,4.1], + [37025,4.8], + [37027,5.4], + [37029,3.8], + [37031,5.2], + [37033,4.1], + [37035,5], + [37037,5.2], + [37039,3.2], + [37041,9.7], + [37043,4], + [37045,4.7], + [37047,5.3], + [37049,6.8], + [37051,6.6], + [37053,5.5], + [37055,3.9], + [37057,5.3], + [37059,4.9], + [37061,7.1], + [37063,5.5], + [37065,5.9], + [37067,4.3], + [37069,5.7], + [37071,5.5], + [37073,4.7], + [37075,1.6], + [37077,2.8], + [37079,5.3], + [37081,5.3], + [37083,4], + [37085,6.1], + [37087,5.9], + [37089,5.2], + [37091,5.9], + [37093,7.4], + [37095,21.3], + [37097,5.2], + [37099,4.9], + [37101,5.6], + [37103,3.9], + [37105,5.1], + [37107,5.7], + [37109,5.2], + [37111,7.1], + [37113,4.6], + [37115,1.4], + [37117,6.1], + [37119,4.8], + [37121,6.3], + [37123,4], + [37125,3.9], + [37127,6.9], + [37129,4.7], + [37131,4.6], + [37133,8.8], + [37135,3.3], + [37137,4.6], + [37139,4.6], + [37141,5.4], + [37143,5.5], + [37145,5.5], + [37147,4.7], + [37149,5.5], + [37151,5.9], + [37153,3.7], + [37155,4.8], + [37157,4.5], + [37159,5.2], + [37161,6], + [37163,4.9], + [37165,7.2], + [37167,6.3], + [37169,4.3], + [37171,5.6], + [37173,4.7], + [37175,4.5], + [37177,12.6], + [37179,5.5], + [37181,5.5], + [37183,5], + [37185,5.8], + [37187,2.9], + [37189,2.5], + [37191,6.5], + [37193,3.6], + [37195,4.4], + [37197,8.2], + [37199,4.7], + [38001,4.4], + [38003,7.9], + [38005,9.6], + [38007,3], + [38009,5.7], + [38011,13.9], + [38013,5.6], + [38015,6], + [38017,6.7], + [38019,6], + [38021,13.8], + [38023,17.1], + [38025,7.5], + [38027,14.4], + [38029,4.8], + [38031,8.8], + [38033,9.4], + [38035,5.1], + [38037,3.7], + [38039,13.5], + [38041,12.4], + [38043,7.2], + [38045,3], + [38047,5.6], + [38049,12.7], + [38051,1.8], + [38053,6.2], + [38055,6.6], + [38057,6.3], + [38059,7.2], + [38061,5.6], + [38063,6.3], + [38065,10.4], + [38067,11.1], + [38069,9.9], + [38071,5], + [38073,5], + [38075,6.7], + [38077,6.8], + [38079,5.4], + [38081,4.5], + [38083,6.4], + [38085,7.6], + [38087,1.4], + [38089,8.9], + [38091,3.5], + [38093,7.3], + [38095,10.6], + [38097,3.6], + [38099,6.2], + [38101,7.1], + [38103,13.9], + [38105,11.1], + [39001,3], + [39003,5.3], + [39005,5.2], + [39007,7.4], + [39009,2.9], + [39011,8.1], + [39013,4.5], + [39015,7.8], + [39017,5.2], + [39019,3.9], + [39021,4.3], + [39023,5], + [39025,5.3], + [39027,6.4], + [39029,5.7], + [39031,5.8], + [39033,8.1], + [39035,5], + [39037,7.4], + [39039,7], + [39041,4.8], + [39043,4.3], + [39045,6], + [39047,6.2], + [39049,5.7], + [39051,7.3], + [39053,6.1], + [39055,6.7], + [39057,4.7], + [39059,5], + [39061,5.5], + [39063,5.9], + [39065,5.8], + [39067,7], + [39069,7.4], + [39071,7], + [39073,4], + [39075,10.1], + [39077,4.8], + [39079,4], + [39081,4.4], + [39083,6.2], + [39085,4.6], + [39087,4.6], + [39089,5.9], + [39091,6.3], + [39093,4.6], + [39095,5.7], + [39097,6.8], + [39099,4.8], + [39101,8.1], + [39103,5.2], + [39105,6.9], + [39107,7.2], + [39109,6.4], + [39111,4.9], + [39113,5.8], + [39115,7.4], + [39117,4.4], + [39119,5.9], + [39121,5.5], + [39123,3.5], + [39125,7.6], + [39127,4.7], + [39129,5.5], + [39131,4.9], + [39133,3.8], + [39135,5.8], + [39137,6.1], + [39139,5.8], + [39141,5.5], + [39143,5.5], + [39145,4.7], + [39147,6], + [39149,9.2], + [39151,5.1], + [39153,4.9], + [39155,6.3], + [39157,6.9], + [39159,5], + [39161,6], + [39163,4.9], + [39165,5.2], + [39167,5.5], + [39169,6.9], + [39171,6.4], + [39173,4.8], + [39175,7.5], + [40001,6.7], + [40003,4.5], + [40005,7.9], + [40007,5.5], + [40009,5.6], + [40011,5.7], + [40013,7.7], + [40015,6.5], + [40017,5.1], + [40019,7.5], + [40021,4.8], + [40023,8.4], + [40025,2], + [40027,5], + [40029,6.3], + [40031,6.7], + [40033,2.5], + [40035,4.8], + [40037,6.5], + [40039,4.1], + [40041,3.8], + [40043,1.3], + [40045,8], + [40047,8.8], + [40049,6.9], + [40051,4.5], + [40053,3.6], + [40055,10.9], + [40057,6.2], + [40059,5.1], + [40061,4.1], + [40063,5.4], + [40065,9.5], + [40067,6.2], + [40069,5.3], + [40071,5.4], + [40073,8.7], + [40075,2.9], + [40077,11.6], + [40079,5.7], + [40081,4.6], + [40083,6.4], + [40085,3.6], + [40087,5], + [40089,6.3], + [40091,6.6], + [40093,6.2], + [40095,7.1], + [40097,5], + [40099,5.8], + [40101,5.9], + [40103,8.5], + [40105,2.4], + [40107,9.2], + [40109,6.6], + [40111,7.1], + [40113,6], + [40115,6.3], + [40117,6.1], + [40119,4.9], + [40121,7.3], + [40123,7], + [40125,4.6], + [40127,3.7], + [40129,1.5], + [40131,5.7], + [40133,7.1], + [40135,7.8], + [40137,4.7], + [40139,5.3], + [40141,6.3], + [40143,6.3], + [40145,5.1], + [40147,7.2], + [40149,4.7], + [40151,9.2], + [40153,3.7], + [41001,9.9], + [41003,3.2], + [41005,5.5], + [41007,5.5], + [41009,6.8], + [41011,5], + [41013,5], + [41015,2.8], + [41017,4.8], + [41019,4.8], + [41021,3.6], + [41023,4.9], + [41025,6], + [41027,4.9], + [41029,6.1], + [41031,5.3], + [41033,5.9], + [41035,6.8], + [41037,2.6], + [41039,4.2], + [41041,4.9], + [41043,6], + [41045,6.8], + [41047,6.1], + [41049,12.6], + [41051,4.7], + [41053,5.1], + [41055,7.4], + [41057,6.4], + [41059,7.1], + [41061,7.7], + [41063,8.3], + [41065,5.9], + [41067,4.6], + [41069,1.5], + [41071,5.2], + [42001,4.8], + [42003,5.3], + [42005,5.1], + [42007,4.7], + [42009,6.2], + [42011,5.7], + [42013,5.2], + [42015,5.8], + [42017,4.9], + [42019,4.7], + [42021,5.2], + [42023,3.7], + [42025,4.6], + [42027,3.7], + [42029,5], + [42031,5.6], + [42033,4.1], + [42035,5.4], + [42037,3.3], + [42039,5.9], + [42041,4.9], + [42043,6], + [42045,5.2], + [42047,5.9], + [42049,5.1], + [42051,5.5], + [42053,4.8], + [42055,4.5], + [42057,4.9], + [42059,6.2], + [42061,6.1], + [42063,4.5], + [42065,6.5], + [42067,6.6], + [42069,4.2], + [42071,6.4], + [42073,5.4], + [42075,6.3], + [42077,5.4], + [42079,5], + [42081,5.5], + [42083,5.1], + [42085,5.4], + [42087,5.9], + [42089,4.5], + [42091,5.1], + [42093,4.3], + [42095,4.1], + [42097,6.9], + [42099,4.9], + [42101,5.1], + [42103,4.2], + [42105,5.8], + [42107,5.9], + [42109,4.5], + [42111,6], + [42113,6.7], + [42115,4.9], + [42117,6], + [42119,5.5], + [42121,5.2], + [42123,6.6], + [42125,5.2], + [42127,4.7], + [42129,4.7], + [42131,4.6], + [42133,5.5], + [44001,3.7], + [44003,5.8], + [44005,3.7], + [44007,4.9], + [44009,3.9], + [45001,5.5], + [45003,5.7], + [45005,4.7], + [45007,6.3], + [45009,9.5], + [45011,5.8], + [45013,6.3], + [45015,6.4], + [45017,4.9], + [45019,5.6], + [45021,4.6], + [45023,6.4], + [45025,4.8], + [45027,7.8], + [45029,5.8], + [45031,5.3], + [45033,3.7], + [45035,5.5], + [45037,3.3], + [45039,1.8], + [45041,5.7], + [45043,5.8], + [45045,5.7], + [45047,4.1], + [45049,3.3], + [45051,5], + [45053,6.6], + [45055,5.3], + [45057,6], + [45059,4.3], + [45061,3.3], + [45063,5.4], + [45065,7.4], + [45067,8.3], + [45069,6.8], + [45071,4.3], + [45073,5.6], + [45075,5.3], + [45077,4.3], + [45079,5.2], + [45081,3.5], + [45083,5.8], + [45085,6.5], + [45087,5.5], + [45089,3.9], + [45091,5.4], + [46003,9.3], + [46005,10.9], + [46007,5.5], + [46009,7.6], + [46011,5.1], + [46013,6.7], + [46015,10.7], + [46017,8.7], + [46019,3.7], + [46021,3.2], + [46023,9.7], + [46025,6.6], + [46027,4.4], + [46029,8.4], + [46031,10.7], + [46033,5.6], + [46035,5.6], + [46037,8.8], + [46039,7.8], + [46041,8.5], + [46043,7.4], + [46045,1.3], + [46047,6.9], + [46049,15.7], + [46051,11.6], + [46053,9.2], + [46055,6.5], + [46057,10], + [46059,9.4], + [46061,3.2], + [46063,14.8], + [46065,6.2], + [46067,8], + [46069,12.2], + [46071,12.6], + [46073,13.7], + [46075,0], + [46077,9.4], + [46079,5.5], + [46081,2.9], + [46083,7.7], + [46085,6.2], + [46087,8.1], + [46089,4.9], + [46091,13.9], + [46093,9.3], + [46095,8.1], + [46097,10.4], + [46099,6.6], + [46101,9.3], + [46102,null], + [46103,5.7], + [46105,11.2], + [46107,4.6], + [46109,8.5], + [46111,10.2], + [46115,6], + [46117,5.7], + [46119,8.4], + [46121,10.8], + [46123,6.6], + [46125,8.2], + [46127,5.1], + [46129,7.3], + [46135,6.4], + [46137,9.5], + [47001,4.8], + [47003,5.8], + [47005,3.7], + [47007,4.4], + [47009,4.5], + [47011,5.3], + [47013,3.2], + [47015,6.6], + [47017,3.9], + [47019,2.4], + [47021,3.8], + [47023,5.5], + [47025,3.5], + [47027,2.9], + [47029,4.6], + [47031,5.1], + [47033,5.1], + [47035,4.3], + [47037,6], + [47039,5.2], + [47041,5.9], + [47043,6], + [47045,4.9], + [47047,5.2], + [47049,2.4], + [47051,5.5], + [47053,4.9], + [47055,5.9], + [47057,4.5], + [47059,5.1], + [47061,7], + [47063,5.5], + [47065,5], + [47067,8.2], + [47069,4.8], + [47071,5], + [47073,5.1], + [47075,5], + [47077,4.1], + [47079,6.2], + [47081,7.7], + [47083,5.1], + [47085,4.2], + [47087,3], + [47089,5.4], + [47091,3.5], + [47093,4.7], + [47095,4], + [47097,6.5], + [47099,8], + [47101,4.2], + [47103,6.1], + [47105,4.8], + [47107,3.9], + [47109,3.7], + [47111,5.3], + [47113,7.2], + [47115,3.7], + [47117,5.5], + [47119,5.4], + [47121,4.4], + [47123,8.1], + [47125,6.8], + [47127,5.4], + [47129,4.7], + [47131,4.5], + [47133,4.4], + [47135,8.6], + [47137,7], + [47139,1.3], + [47141,4], + [47143,6.9], + [47145,3.4], + [47147,5.3], + [47149,5], + [47151,2.7], + [47153,1.4], + [47155,4.9], + [47157,5.8], + [47159,5.5], + [47161,6.7], + [47163,4.8], + [47165,5.1], + [47167,7.8], + [47169,14.8], + [47171,5.3], + [47173,2.9], + [47175,4], + [47177,5.3], + [47179,4.5], + [47181,9.1], + [47183,5.2], + [47185,4.7], + [47187,4.1], + [47189,4.1], + [48001,5.7], + [48003,9.3], + [48005,5.8], + [48007,10.1], + [48009,5.3], + [48011,2.1], + [48013,5.8], + [48015,4.1], + [48017,3], + [48019,4.3], + [48021,6.6], + [48023,10.4], + [48025,8.9], + [48027,7.1], + [48029,6], + [48031,6.3], + [48033,19.3], + [48035,3.5], + [48037,5.7], + [48039,6.7], + [48041,4.7], + [48043,1.5], + [48045,3.1], + [48047,11.2], + [48049,4.4], + [48051,4.5], + [48053,4.6], + [48055,6.3], + [48057,6.2], + [48059,4.6], + [48061,5.5], + [48063,11], + [48065,6.5], + [48067,4], + [48069,5.2], + [48071,7.2], + [48073,6.3], + [48075,17.5], + [48077,7], + [48079,11.2], + [48081,4], + [48083,3.4], + [48085,5.7], + [48087,6.1], + [48089,6.7], + [48091,6.3], + [48093,5.9], + [48095,8.5], + [48097,5.9], + [48099,6.3], + [48101,10.5], + [48103,11.1], + [48105,6.2], + [48107,9.9], + [48109,5], + [48111,8.4], + [48113,5.9], + [48115,6.9], + [48117,7.5], + [48119,10.1], + [48121,5.1], + [48123,7.3], + [48125,2.4], + [48127,3.6], + [48129,2.8], + [48131,5], + [48133,3.1], + [48135,9.3], + [48137,0], + [48139,5.1], + [48141,5.8], + [48143,6.1], + [48145,3.9], + [48147,4], + [48149,5.9], + [48151,10.2], + [48153,2.7], + [48155,3.8], + [48157,5.1], + [48159,4.5], + [48161,4.8], + [48163,8.1], + [48165,8.4], + [48167,5.7], + [48169,3.6], + [48171,5.6], + [48173,10.3], + [48175,6.4], + [48177,9.3], + [48179,6.8], + [48181,6.9], + [48183,7], + [48185,2.6], + [48187,5.1], + [48189,7.1], + [48191,8.3], + [48193,3.5], + [48195,10.1], + [48197,7.2], + [48199,6.5], + [48201,6.2], + [48203,4.3], + [48205,6], + [48207,9], + [48209,4.4], + [48211,2.2], + [48213,6.1], + [48215,6.8], + [48217,6.5], + [48219,5.8], + [48221,7.5], + [48223,5.4], + [48225,5.3], + [48227,8.2], + [48229,9.2], + [48231,6.1], + [48233,8], + [48235,2.5], + [48237,7.8], + [48239,3.5], + [48241,4.5], + [48243,0], + [48245,6.1], + [48247,15.6], + [48249,8.4], + [48251,7.3], + [48253,8.5], + [48255,5.2], + [48257,6.7], + [48259,3.2], + [48261,8.6], + [48263,28.1], + [48265,7.5], + [48267,12.3], + [48269,9.7], + [48271,0], + [48273,3.7], + [48275,5.5], + [48277,4.9], + [48279,6], + [48281,3.1], + [48283,8.2], + [48285,7], + [48287,9.2], + [48289,12.1], + [48291,6], + [48293,7.2], + [48295,9.9], + [48297,12.1], + [48299,7.4], + [48301,0], + [48303,6.4], + [48305,4.8], + [48307,0.3], + [48309,4.9], + [48311,1.2], + [48313,6.9], + [48315,2.3], + [48317,1.8], + [48319,2.6], + [48321,5.5], + [48323,9.2], + [48325,8], + [48327,3.8], + [48329,8.9], + [48331,6.3], + [48333,2.7], + [48335,2.7], + [48337,8.4], + [48339,6.3], + [48341,10.1], + [48343,7.9], + [48345,12.2], + [48347,4.1], + [48349,9.6], + [48351,7.4], + [48353,3.4], + [48355,6.7], + [48357,9.7], + [48359,10.2], + [48361,6.3], + [48363,5.2], + [48365,4.3], + [48367,6.5], + [48369,8.4], + [48371,5.5], + [48373,6.3], + [48375,8.3], + [48377,4.8], + [48379,5.6], + [48381,4.8], + [48383,5.6], + [48385,10.2], + [48387,1.7], + [48389,5.1], + [48391,4.1], + [48393,0.5], + [48395,4.8], + [48397,6.5], + [48399,4.2], + [48401,6.7], + [48403,5.9], + [48405,8.2], + [48407,5.6], + [48409,9.9], + [48411,3.8], + [48413,5], + [48415,8.3], + [48417,10.2], + [48419,12.1], + [48421,8.8], + [48423,5.1], + [48425,7.8], + [48427,5.8], + [48429,8.2], + [48431,3.4], + [48433,5.2], + [48435,6], + [48437,3.7], + [48439,6.2], + [48441,6.3], + [48443,1.6], + [48445,6.4], + [48447,13.4], + [48449,6.8], + [48451,5.2], + [48453,4.7], + [48455,5.4], + [48457,5.2], + [48459,4.9], + [48461,9.9], + [48463,10], + [48465,7.5], + [48467,7.4], + [48469,5.6], + [48471,2], + [48473,3.8], + [48475,7.4], + [48477,3.9], + [48479,6.5], + [48481,5.2], + [48483,8], + [48485,6.2], + [48487,6.8], + [48489,5.8], + [48491,5.2], + [48493,6.3], + [48495,5.4], + [48497,7.2], + [48499,5], + [48501,8], + [48503,4.8], + [48505,13.7], + [48507,5], + [49001,14.5], + [49003,9.4], + [49005,8], + [49007,7.9], + [49009,0], + [49011,8.1], + [49013,8], + [49015,4.9], + [49017,5.4], + [49019,6.8], + [49021,7.1], + [49023,6.1], + [49025,5.5], + [49027,8.8], + [49029,8.9], + [49031,0.9], + [49033,1.6], + [49035,6.5], + [49037,5.2], + [49039,4.8], + [49041,10.6], + [49043,5.3], + [49045,7], + [49047,6.6], + [49049,8.2], + [49051,6.5], + [49053,7], + [49055,11.9], + [49057,7.4], + [50001,5.1], + [50003,4.2], + [50005,5], + [50007,4.1], + [50009,4.5], + [50011,3.4], + [50013,4.9], + [50015,6.1], + [50017,6.8], + [50019,5.3], + [50021,4.5], + [50023,2.9], + [50025,4], + [50027,4.8], + [51001,5], + [51003,5.1], + [51005,7.8], + [51007,5.2], + [51009,4.6], + [51011,6.9], + [51013,4.5], + [51015,5.5], + [51017,6.3], + [51019,5.8], + [51021,5.7], + [51023,3], + [51025,4.9], + [51027,4], + [51029,5.4], + [51031,5], + [51033,5.1], + [51035,5.5], + [51036,5.6], + [51037,3.6], + [51041,5.4], + [51043,7.9], + [51045,10.6], + [51047,4.5], + [51049,9], + [51051,5], + [51053,5.7], + [51057,4.7], + [51059,5.4], + [51061,4.9], + [51063,7.4], + [51065,5.8], + [51067,4.5], + [51069,5.5], + [51071,5.6], + [51073,3.9], + [51075,2.9], + [51077,5.5], + [51079,2.7], + [51081,2.4], + [51083,4.9], + [51085,4.2], + [51087,4.6], + [51089,6.5], + [51091,13.5], + [51093,4.3], + [51095,3.7], + [51097,5.9], + [51099,6.2], + [51101,7.8], + [51103,4.1], + [51105,5.8], + [51107,6.3], + [51109,3.5], + [51111,6.4], + [51113,3.5], + [51115,5.9], + [51117,4.4], + [51119,3.7], + [51121,2.8], + [51125,7.5], + [51127,3.3], + [51131,7.8], + [51133,3.3], + [51135,5.7], + [51137,4.2], + [51139,6.8], + [51141,2.8], + [51143,4.5], + [51145,5.8], + [51147,6.1], + [51149,6.4], + [51153,6.1], + [51155,6.1], + [51157,3.7], + [51159,10.4], + [51161,4.4], + [51163,6.1], + [51165,4.6], + [51167,3.6], + [51169,2.5], + [51171,7.1], + [51173,6.4], + [51175,8], + [51177,5.5], + [51179,5.5], + [51181,4.3], + [51183,5.2], + [51185,7.4], + [51187,6.8], + [51191,3.8], + [51193,5.1], + [51195,4.4], + [51197,2.7], + [51199,4.5], + [51510,5.5], + [51520,5.2], + [51530,5.2], + [51540,4.1], + [51550,6.5], + [51570,5], + [51580,6.8], + [51590,4.4], + [51595,2.3], + [51600,5], + [51610,2.2], + [51620,10.7], + [51630,4], + [51640,5.8], + [51650,4.8], + [51660,3], + [51670,4.5], + [51678,0.5], + [51680,5.6], + [51683,6.2], + [51685,2.4], + [51690,10.5], + [51700,5.2], + [51710,6.3], + [51720,5.2], + [51730,4.5], + [51735,3.3], + [51740,5.9], + [51750,2], + [51760,5.2], + [51770,5.6], + [51775,5.4], + [51790,3.9], + [51800,6.9], + [51810,5.4], + [51820,5.8], + [51830,2.1], + [51840,7.2], + [53001,6.7], + [53003,4.5], + [53005,6.6], + [53007,3.9], + [53009,5.4], + [53011,5.7], + [53013,5.8], + [53015,6], + [53017,6.1], + [53019,8.1], + [53021,8], + [53023,7.3], + [53025,7.7], + [53027,7.2], + [53029,6.7], + [53031,4.2], + [53033,5.2], + [53035,5.9], + [53037,4.3], + [53039,6.1], + [53041,5.1], + [53043,5.4], + [53045,5.9], + [53047,5.5], + [53049,6.3], + [53051,10.5], + [53053,5.7], + [53055,5], + [53057,5.3], + [53059,3.7], + [53061,5.3], + [53063,5.8], + [53065,4.5], + [53067,5.3], + [53069,2.2], + [53071,4.6], + [53073,5.6], + [53075,2.1], + [53077,7], + [54001,4.5], + [54003,6.1], + [54005,5.1], + [54007,4.7], + [54009,6.1], + [54011,4.6], + [54013,5.5], + [54015,3.6], + [54017,13.8], + [54019,5.7], + [54021,3.5], + [54023,3.7], + [54025,4.4], + [54027,3.8], + [54029,4.1], + [54031,5.4], + [54033,4.9], + [54035,3.6], + [54037,5.2], + [54039,5.4], + [54041,6.5], + [54043,4], + [54045,6.4], + [54047,5.2], + [54049,8.3], + [54051,2.6], + [54053,5], + [54055,6.3], + [54057,6.1], + [54059,3.3], + [54061,3.2], + [54063,6.3], + [54065,4.6], + [54067,2.8], + [54069,4.3], + [54071,7.5], + [54073,4.1], + [54075,2.9], + [54077,4.8], + [54079,4.6], + [54081,3.5], + [54083,3.5], + [54085,3.5], + [54087,3.7], + [54089,5], + [54091,7.7], + [54093,6.8], + [54095,2.4], + [54097,5.6], + [54099,4.3], + [54101,6.6], + [54103,7.2], + [54105,5.3], + [54107,6.2], + [54109,4.4], + [55001,5.9], + [55003,7.2], + [55005,7.9], + [55007,5.1], + [55009,6], + [55011,8.7], + [55013,4.3], + [55015,5.1], + [55017,6.7], + [55019,10.6], + [55021,4], + [55023,5.4], + [55025,4.6], + [55027,4.4], + [55029,6.3], + [55031,6.4], + [55033,5.4], + [55035,4.4], + [55037,4.8], + [55039,4.3], + [55041,8.5], + [55043,5.4], + [55045,5.5], + [55047,5.3], + [55049,5.6], + [55051,5], + [55053,6.8], + [55055,5], + [55057,6.8], + [55059,5.2], + [55061,5.6], + [55063,5.8], + [55065,7.2], + [55067,9], + [55069,4.2], + [55071,4.5], + [55073,5.8], + [55075,3.6], + [55077,6], + [55078,9], + [55079,5], + [55081,9.4], + [55083,6], + [55085,5], + [55087,5.2], + [55089,4.9], + [55091,6.9], + [55093,4], + [55095,6.5], + [55097,4.3], + [55099,4.2], + [55101,6], + [55103,8.5], + [55105,6.1], + [55107,5.9], + [55109,5.8], + [55111,5.7], + [55113,4.3], + [55115,5.7], + [55117,4.5], + [55119,7.5], + [55121,5.9], + [55123,7.4], + [55125,5.7], + [55127,6], + [55129,6.2], + [55131,5.2], + [55133,4.7], + [55135,5.8], + [55137,5.8], + [55139,4.8], + [55141,5], + [56001,4.1], + [56003,6.9], + [56005,7.5], + [56007,8.5], + [56009,8], + [56011,3.5], + [56013,7.1], + [56015,5.5], + [56017,6.2], + [56019,2.5], + [56021,5.1], + [56023,5.8], + [56025,5.4], + [56027,10], + [56029,6.3], + [56031,6.1], + [56033,3.5], + [56035,4.9], + [56037,8.1], + [56039,3.6], + [56041,6.7], + [56043,7.1], + [56045,7.1] + ] +} diff --git a/data/regional/united-states/demographics/gender/us-gender-female.json b/data/regional/united-states/demographics/gender/us-gender-female.json new file mode 100644 index 0000000..4aba951 --- /dev/null +++ b/data/regional/united-states/demographics/gender/us-gender-female.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Female Population", + "description" : "Percent of the population that is female.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.gender.female.2010"], + [1001,0.513], + [1003,0.511], + [1005,0.469], + [1007,0.463], + [1009,0.505], + [1011,0.458], + [1013,0.53], + [1015,0.518], + [1017,0.522], + [1019,0.504], + [1021,0.505], + [1023,0.517], + [1025,0.527], + [1027,0.51], + [1029,0.502], + [1031,0.506], + [1033,0.519], + [1035,0.515], + [1037,0.504], + [1039,0.516], + [1041,0.517], + [1043,0.506], + [1045,0.506], + [1047,0.538], + [1049,0.506], + [1051,0.512], + [1053,0.484], + [1055,0.515], + [1057,0.507], + [1059,0.501], + [1061,0.511], + [1063,0.528], + [1065,0.526], + [1067,0.52], + [1069,0.52], + [1071,0.509], + [1073,0.526], + [1075,0.513], + [1077,0.521], + [1079,0.511], + [1081,0.507], + [1083,0.494], + [1085,0.532], + [1087,0.542], + [1089,0.509], + [1091,0.529], + [1093,0.503], + [1095,0.507], + [1097,0.52], + [1099,0.518], + [1101,0.524], + [1103,0.507], + [1105,0.53], + [1107,0.523], + [1109,0.523], + [1111,0.515], + [1113,0.522], + [1115,0.499], + [1117,0.51], + [1119,0.545], + [1121,0.513], + [1123,0.515], + [1125,0.515], + [1127,0.513], + [1129,0.508], + [1131,0.527], + [1133,0.509], + [2013,0.334], + [2016,0.331], + [2020,0.492], + [2050,0.477], + [2060,0.458], + [2068,0.451], + [2070,0.476], + [2090,0.472], + [2100,0.492], + [2105,0.458], + [2110,0.49], + [2122,0.476], + [2130,0.487], + [2150,0.47], + [2158,0.471], + [2164,0.473], + [2170,0.483], + [2180,0.467], + [2185,0.374], + [2188,0.464], + [2195,0.48], + [2198,0.448], + [2220,0.495], + [2230,0.483], + [2240,0.443], + [2261,0.466], + [2275,0.476], + [2282,0.456], + [2290,0.458], + [4001,0.501], + [4003,0.49], + [4005,0.504], + [4007,0.503], + [4009,0.463], + [4011,0.479], + [4012,0.485], + [4013,0.505], + [4015,0.5], + [4017,0.5], + [4019,0.509], + [4021,0.475], + [4023,0.524], + [4025,0.51], + [4027,0.499], + [5001,0.515], + [5003,0.515], + [5005,0.518], + [5007,0.507], + [5009,0.51], + [5011,0.515], + [5013,0.493], + [5015,0.507], + [5017,0.509], + [5019,0.523], + [5021,0.511], + [5023,0.508], + [5025,0.507], + [5027,0.523], + [5029,0.505], + [5031,0.512], + [5033,0.507], + [5035,0.525], + [5037,0.518], + [5039,0.51], + [5041,0.531], + [5043,0.515], + [5045,0.509], + [5047,0.505], + [5049,0.51], + [5051,0.515], + [5053,0.503], + [5055,0.51], + [5057,0.518], + [5059,0.489], + [5061,0.517], + [5063,0.51], + [5065,0.485], + [5067,0.504], + [5069,0.508], + [5071,0.504], + [5073,0.517], + [5075,0.514], + [5077,0.443], + [5079,0.399], + [5081,0.514], + [5083,0.499], + [5085,0.508], + [5087,0.499], + [5089,0.502], + [5091,0.508], + [5093,0.516], + [5095,0.522], + [5097,0.501], + [5099,0.51], + [5101,0.495], + [5103,0.526], + [5105,0.504], + [5107,0.534], + [5109,0.504], + [5111,0.514], + [5113,0.508], + [5115,0.504], + [5117,0.505], + [5119,0.519], + [5121,0.51], + [5123,0.455], + [5125,0.506], + [5127,0.496], + [5129,0.502], + [5131,0.51], + [5133,0.504], + [5135,0.506], + [5137,0.506], + [5139,0.513], + [5141,0.501], + [5143,0.5], + [5145,0.51], + [5147,0.525], + [5149,0.501], + [6001,0.51], + [6003,0.484], + [6005,0.455], + [6007,0.505], + [6009,0.499], + [6011,0.486], + [6013,0.512], + [6015,0.444], + [6017,0.5], + [6019,0.5], + [6021,0.495], + [6023,0.498], + [6025,0.486], + [6027,0.496], + [6029,0.484], + [6031,0.436], + [6033,0.498], + [6035,0.358], + [6037,0.507], + [6039,0.518], + [6041,0.508], + [6043,0.492], + [6045,0.499], + [6047,0.497], + [6049,0.496], + [6051,0.469], + [6053,0.486], + [6055,0.501], + [6057,0.506], + [6059,0.505], + [6061,0.512], + [6063,0.5], + [6065,0.502], + [6067,0.51], + [6069,0.5], + [6071,0.503], + [6073,0.498], + [6075,0.493], + [6077,0.502], + [6079,0.488], + [6081,0.508], + [6083,0.498], + [6085,0.498], + [6087,0.501], + [6089,0.508], + [6091,0.492], + [6093,0.501], + [6095,0.501], + [6097,0.508], + [6099,0.505], + [6101,0.504], + [6103,0.502], + [6105,0.484], + [6107,0.499], + [6109,0.472], + [6111,0.503], + [6113,0.512], + [6115,0.496], + [8001,0.497], + [8003,0.499], + [8005,0.51], + [8007,0.495], + [8009,0.504], + [8011,0.343], + [8013,0.498], + [8014,0.504], + [8015,0.469], + [8017,0.504], + [8019,0.479], + [8021,0.504], + [8023,0.483], + [8025,0.279], + [8027,0.484], + [8029,0.496], + [8031,0.5], + [8033,0.485], + [8035,0.505], + [8037,0.467], + [8039,0.5], + [8041,0.502], + [8043,0.423], + [8045,0.484], + [8047,0.47], + [8049,0.466], + [8051,0.458], + [8053,0.474], + [8055,0.504], + [8057,0.472], + [8059,0.504], + [8061,0.509], + [8063,0.439], + [8065,0.465], + [8067,0.491], + [8069,0.504], + [8071,0.487], + [8073,0.421], + [8075,0.431], + [8077,0.503], + [8079,0.492], + [8081,0.489], + [8083,0.506], + [8085,0.508], + [8087,0.506], + [8089,0.51], + [8091,0.499], + [8093,0.475], + [8095,0.511], + [8097,0.47], + [8099,0.506], + [8101,0.508], + [8103,0.485], + [8105,0.503], + [8107,0.468], + [8109,0.489], + [8111,0.439], + [8113,0.457], + [8115,0.507], + [8117,0.451], + [8119,0.491], + [8121,0.489], + [8123,0.5], + [8125,0.504], + [9001,0.514], + [9003,0.517], + [9005,0.509], + [9007,0.512], + [9009,0.519], + [9011,0.501], + [9013,0.495], + [9015,0.504], + [10001,0.519], + [10003,0.516], + [10005,0.512], + [11001,0.528], + [12001,0.516], + [12003,0.478], + [12005,0.505], + [12007,0.439], + [12009,0.51], + [12011,0.516], + [12013,0.456], + [12015,0.514], + [12017,0.516], + [12019,0.51], + [12021,0.507], + [12023,0.482], + [12027,0.434], + [12029,0.462], + [12031,0.515], + [12033,0.506], + [12035,0.519], + [12037,0.424], + [12039,0.512], + [12041,0.478], + [12043,0.422], + [12045,0.402], + [12047,0.411], + [12049,0.464], + [12051,0.458], + [12053,0.522], + [12055,0.511], + [12057,0.513], + [12059,0.468], + [12061,0.516], + [12063,0.452], + [12065,0.477], + [12067,0.382], + [12069,0.515], + [12071,0.509], + [12073,0.524], + [12075,0.508], + [12077,0.391], + [12079,0.478], + [12081,0.516], + [12083,0.52], + [12085,0.505], + [12086,0.516], + [12087,0.467], + [12089,0.507], + [12091,0.498], + [12093,0.464], + [12095,0.508], + [12097,0.51], + [12099,0.516], + [12101,0.514], + [12103,0.52], + [12105,0.51], + [12107,0.504], + [12109,0.514], + [12111,0.511], + [12113,0.495], + [12115,0.523], + [12117,0.516], + [12119,0.48], + [12121,0.496], + [12123,0.444], + [12125,0.353], + [12127,0.511], + [12129,0.448], + [12131,0.488], + [12133,0.455], + [13001,0.498], + [13003,0.494], + [13005,0.505], + [13007,0.515], + [13009,0.504], + [13011,0.495], + [13013,0.507], + [13015,0.506], + [13017,0.521], + [13019,0.507], + [13021,0.529], + [13023,0.524], + [13025,0.501], + [13027,0.514], + [13029,0.509], + [13031,0.501], + [13033,0.52], + [13035,0.471], + [13037,0.409], + [13039,0.494], + [13043,0.506], + [13045,0.513], + [13047,0.515], + [13049,0.437], + [13051,0.518], + [13053,0.375], + [13055,0.481], + [13057,0.506], + [13059,0.525], + [13061,0.541], + [13063,0.521], + [13065,0.512], + [13067,0.514], + [13069,0.493], + [13071,0.504], + [13073,0.514], + [13075,0.514], + [13077,0.511], + [13079,0.495], + [13081,0.521], + [13083,0.507], + [13085,0.5], + [13087,0.511], + [13089,0.521], + [13091,0.475], + [13093,0.46], + [13095,0.535], + [13097,0.518], + [13099,0.528], + [13101,0.494], + [13103,0.502], + [13105,0.521], + [13107,0.512], + [13109,0.51], + [13111,0.512], + [13113,0.517], + [13115,0.516], + [13117,0.503], + [13119,0.506], + [13121,0.513], + [13123,0.5], + [13125,0.518], + [13127,0.525], + [13129,0.506], + [13131,0.516], + [13133,0.512], + [13135,0.507], + [13137,0.528], + [13139,0.501], + [13141,0.452], + [13143,0.511], + [13145,0.501], + [13147,0.506], + [13149,0.503], + [13151,0.52], + [13153,0.513], + [13155,0.496], + [13157,0.504], + [13159,0.502], + [13161,0.505], + [13163,0.517], + [13165,0.525], + [13167,0.44], + [13169,0.516], + [13171,0.517], + [13173,0.496], + [13175,0.524], + [13177,0.502], + [13179,0.512], + [13181,0.513], + [13183,0.505], + [13185,0.512], + [13187,0.503], + [13189,0.531], + [13191,0.512], + [13193,0.459], + [13195,0.506], + [13197,0.508], + [13199,0.523], + [13201,0.522], + [13205,0.481], + [13207,0.498], + [13209,0.485], + [13211,0.517], + [13213,0.504], + [13215,0.521], + [13217,0.524], + [13219,0.512], + [13221,0.504], + [13223,0.511], + [13225,0.516], + [13227,0.509], + [13229,0.509], + [13231,0.511], + [13233,0.505], + [13235,0.568], + [13237,0.513], + [13239,0.522], + [13241,0.507], + [13243,0.54], + [13245,0.516], + [13247,0.524], + [13249,0.52], + [13251,0.512], + [13253,0.526], + [13255,0.515], + [13257,0.521], + [13259,0.392], + [13261,0.524], + [13263,0.527], + [13265,0.51], + [13267,0.418], + [13269,0.517], + [13271,0.427], + [13273,0.519], + [13275,0.526], + [13277,0.521], + [13279,0.525], + [13281,0.523], + [13283,0.499], + [13285,0.519], + [13287,0.512], + [13289,0.513], + [13291,0.513], + [13293,0.52], + [13295,0.509], + [13297,0.513], + [13299,0.502], + [13301,0.538], + [13303,0.49], + [13305,0.478], + [13307,0.513], + [13309,0.383], + [13311,0.511], + [13313,0.502], + [13315,0.413], + [13317,0.512], + [13319,0.521], + [13321,0.52], + [15001,0.498], + [15003,0.499], + [15005,0.533], + [15007,0.498], + [15009,0.499], + [16001,0.499], + [16003,0.487], + [16005,0.501], + [16007,0.504], + [16009,0.49], + [16011,0.498], + [16013,0.491], + [16015,0.478], + [16017,0.496], + [16019,0.501], + [16021,0.494], + [16023,0.486], + [16025,0.479], + [16027,0.505], + [16029,0.496], + [16031,0.494], + [16033,0.447], + [16035,0.459], + [16037,0.469], + [16039,0.483], + [16041,0.493], + [16043,0.474], + [16045,0.505], + [16047,0.483], + [16049,0.478], + [16051,0.498], + [16053,0.489], + [16055,0.507], + [16057,0.485], + [16059,0.49], + [16061,0.499], + [16063,0.483], + [16065,0.516], + [16067,0.494], + [16069,0.504], + [16071,0.489], + [16073,0.489], + [16075,0.505], + [16077,0.485], + [16079,0.497], + [16081,0.477], + [16083,0.506], + [16085,0.482], + [16087,0.508], + [17001,0.513], + [17003,0.492], + [17005,0.477], + [17007,0.5], + [17009,0.359], + [17011,0.511], + [17013,0.503], + [17015,0.499], + [17017,0.499], + [17019,0.501], + [17021,0.493], + [17023,0.513], + [17025,0.509], + [17027,0.483], + [17029,0.518], + [17031,0.516], + [17033,0.481], + [17035,0.501], + [17037,0.5], + [17039,0.505], + [17041,0.507], + [17043,0.51], + [17045,0.515], + [17047,0.506], + [17049,0.503], + [17051,0.474], + [17053,0.513], + [17055,0.511], + [17057,0.483], + [17059,0.513], + [17061,0.495], + [17063,0.501], + [17065,0.512], + [17067,0.508], + [17069,0.503], + [17071,0.507], + [17073,0.503], + [17075,0.511], + [17077,0.491], + [17079,0.502], + [17081,0.486], + [17083,0.51], + [17085,0.498], + [17087,0.442], + [17089,0.502], + [17091,0.509], + [17093,0.505], + [17095,0.498], + [17097,0.501], + [17099,0.501], + [17101,0.44], + [17103,0.475], + [17105,0.499], + [17107,0.493], + [17109,0.499], + [17111,0.501], + [17113,0.514], + [17115,0.522], + [17117,0.507], + [17119,0.511], + [17121,0.514], + [17123,0.507], + [17125,0.509], + [17127,0.522], + [17129,0.513], + [17131,0.506], + [17133,0.506], + [17135,0.477], + [17137,0.498], + [17139,0.514], + [17141,0.504], + [17143,0.516], + [17145,0.458], + [17147,0.506], + [17149,0.501], + [17151,0.473], + [17153,0.522], + [17155,0.495], + [17157,0.451], + [17159,0.51], + [17161,0.509], + [17163,0.519], + [17165,0.512], + [17167,0.52], + [17169,0.479], + [17171,0.511], + [17173,0.502], + [17175,0.512], + [17177,0.515], + [17179,0.507], + [17181,0.501], + [17183,0.504], + [17185,0.511], + [17187,0.514], + [17189,0.499], + [17191,0.507], + [17193,0.517], + [17195,0.509], + [17197,0.503], + [17199,0.505], + [17201,0.511], + [17203,0.506], + [18001,0.506], + [18003,0.513], + [18005,0.506], + [18007,0.505], + [18009,0.507], + [18011,0.508], + [18013,0.504], + [18015,0.499], + [18017,0.5], + [18019,0.51], + [18021,0.508], + [18023,0.506], + [18025,0.493], + [18027,0.502], + [18029,0.503], + [18031,0.505], + [18033,0.504], + [18035,0.519], + [18037,0.508], + [18039,0.507], + [18041,0.51], + [18043,0.515], + [18045,0.505], + [18047,0.5], + [18049,0.503], + [18051,0.505], + [18053,0.519], + [18055,0.501], + [18057,0.512], + [18059,0.509], + [18061,0.5], + [18063,0.502], + [18065,0.493], + [18067,0.519], + [18069,0.509], + [18071,0.502], + [18073,0.502], + [18075,0.507], + [18077,0.518], + [18079,0.499], + [18081,0.508], + [18083,0.497], + [18085,0.503], + [18087,0.496], + [18089,0.517], + [18091,0.483], + [18093,0.506], + [18095,0.5], + [18097,0.518], + [18099,0.505], + [18101,0.495], + [18103,0.467], + [18105,0.501], + [18107,0.496], + [18109,0.504], + [18111,0.495], + [18113,0.5], + [18115,0.505], + [18117,0.503], + [18119,0.499], + [18121,0.532], + [18123,0.47], + [18125,0.5], + [18127,0.509], + [18129,0.502], + [18131,0.495], + [18133,0.472], + [18135,0.507], + [18137,0.507], + [18139,0.507], + [18141,0.515], + [18143,0.506], + [18145,0.504], + [18147,0.497], + [18149,0.506], + [18151,0.495], + [18153,0.457], + [18155,0.49], + [18157,0.49], + [18159,0.508], + [18161,0.506], + [18163,0.518], + [18165,0.505], + [18167,0.494], + [18169,0.514], + [18171,0.498], + [18173,0.507], + [18175,0.501], + [18177,0.514], + [18179,0.508], + [18181,0.508], + [18183,0.503], + [19001,0.504], + [19003,0.505], + [19005,0.49], + [19007,0.513], + [19009,0.517], + [19011,0.5], + [19013,0.514], + [19015,0.498], + [19017,0.511], + [19019,0.504], + [19021,0.499], + [19023,0.506], + [19025,0.514], + [19027,0.513], + [19029,0.511], + [19031,0.505], + [19033,0.512], + [19035,0.507], + [19037,0.497], + [19039,0.502], + [19041,0.51], + [19043,0.499], + [19045,0.508], + [19047,0.492], + [19049,0.511], + [19051,0.504], + [19053,0.499], + [19055,0.5], + [19057,0.514], + [19059,0.504], + [19061,0.507], + [19063,0.501], + [19065,0.5], + [19067,0.51], + [19069,0.496], + [19071,0.503], + [19073,0.506], + [19075,0.506], + [19077,0.503], + [19079,0.503], + [19081,0.501], + [19083,0.503], + [19085,0.508], + [19087,0.488], + [19089,0.504], + [19091,0.506], + [19093,0.501], + [19095,0.507], + [19097,0.504], + [19099,0.491], + [19101,0.466], + [19103,0.5], + [19105,0.481], + [19107,0.503], + [19109,0.504], + [19111,0.494], + [19113,0.508], + [19115,0.491], + [19117,0.502], + [19119,0.501], + [19121,0.503], + [19123,0.497], + [19125,0.503], + [19127,0.497], + [19129,0.497], + [19131,0.507], + [19133,0.511], + [19135,0.501], + [19137,0.515], + [19139,0.503], + [19141,0.502], + [19143,0.498], + [19145,0.481], + [19147,0.503], + [19149,0.505], + [19151,0.503], + [19153,0.51], + [19155,0.51], + [19157,0.511], + [19159,0.514], + [19161,0.511], + [19163,0.51], + [19165,0.512], + [19167,0.501], + [19169,0.482], + [19171,0.509], + [19173,0.502], + [19175,0.513], + [19177,0.497], + [19179,0.511], + [19181,0.513], + [19183,0.51], + [19185,0.513], + [19187,0.488], + [19189,0.505], + [19191,0.504], + [19193,0.507], + [19195,0.502], + [19197,0.503], + [20001,0.512], + [20003,0.505], + [20005,0.513], + [20007,0.496], + [20009,0.509], + [20011,0.51], + [20013,0.513], + [20015,0.496], + [20017,0.49], + [20019,0.493], + [20021,0.503], + [20023,0.496], + [20025,0.515], + [20027,0.505], + [20029,0.511], + [20031,0.506], + [20033,0.518], + [20035,0.501], + [20037,0.504], + [20039,0.499], + [20041,0.507], + [20043,0.496], + [20045,0.499], + [20047,0.502], + [20049,0.505], + [20051,0.503], + [20053,0.438], + [20055,0.498], + [20057,0.484], + [20059,0.505], + [20061,0.505], + [20063,0.5], + [20065,0.511], + [20067,0.489], + [20069,0.509], + [20071,0.523], + [20073,0.507], + [20075,0.493], + [20077,0.505], + [20079,0.512], + [20081,0.5], + [20083,0.5], + [20085,0.499], + [20087,0.493], + [20089,0.488], + [20091,0.512], + [20093,0.492], + [20095,0.504], + [20097,0.508], + [20099,0.505], + [20101,0.511], + [20103,0.469], + [20105,0.501], + [20107,0.499], + [20109,0.505], + [20111,0.511], + [20113,0.509], + [20115,0.497], + [20117,0.505], + [20119,0.492], + [20121,0.506], + [20123,0.495], + [20125,0.509], + [20127,0.501], + [20129,0.514], + [20131,0.494], + [20133,0.506], + [20135,0.498], + [20137,0.441], + [20139,0.503], + [20141,0.503], + [20143,0.484], + [20145,0.445], + [20147,0.505], + [20149,0.504], + [20151,0.507], + [20153,0.502], + [20155,0.499], + [20157,0.509], + [20159,0.498], + [20161,0.479], + [20163,0.511], + [20165,0.507], + [20167,0.506], + [20169,0.502], + [20171,0.496], + [20173,0.506], + [20175,0.485], + [20177,0.517], + [20179,0.491], + [20181,0.5], + [20183,0.51], + [20185,0.502], + [20187,0.489], + [20189,0.504], + [20191,0.501], + [20193,0.508], + [20195,0.506], + [20197,0.491], + [20199,0.5], + [20201,0.493], + [20203,0.488], + [20205,0.509], + [20207,0.5], + [20209,0.507], + [21001,0.506], + [21003,0.509], + [21005,0.511], + [21007,0.503], + [21009,0.515], + [21011,0.504], + [21013,0.514], + [21015,0.505], + [21017,0.513], + [21019,0.503], + [21021,0.513], + [21023,0.502], + [21025,0.5], + [21027,0.501], + [21029,0.505], + [21031,0.499], + [21033,0.518], + [21035,0.518], + [21037,0.51], + [21039,0.512], + [21041,0.491], + [21043,0.502], + [21045,0.512], + [21047,0.493], + [21049,0.512], + [21051,0.466], + [21053,0.5], + [21055,0.501], + [21057,0.509], + [21059,0.515], + [21061,0.501], + [21063,0.44], + [21065,0.507], + [21067,0.508], + [21069,0.509], + [21071,0.511], + [21073,0.516], + [21075,0.504], + [21077,0.498], + [21079,0.507], + [21081,0.501], + [21083,0.51], + [21085,0.493], + [21087,0.507], + [21089,0.516], + [21091,0.495], + [21093,0.501], + [21095,0.513], + [21097,0.511], + [21099,0.505], + [21101,0.517], + [21103,0.507], + [21105,0.522], + [21107,0.514], + [21109,0.503], + [21111,0.517], + [21113,0.513], + [21115,0.508], + [21117,0.506], + [21119,0.502], + [21121,0.513], + [21123,0.504], + [21125,0.51], + [21127,0.506], + [21129,0.452], + [21131,0.505], + [21133,0.507], + [21135,0.501], + [21137,0.506], + [21139,0.51], + [21141,0.511], + [21143,0.449], + [21145,0.52], + [21147,0.457], + [21149,0.509], + [21151,0.514], + [21153,0.499], + [21155,0.483], + [21157,0.508], + [21159,0.447], + [21161,0.518], + [21163,0.499], + [21165,0.501], + [21167,0.512], + [21169,0.504], + [21171,0.505], + [21173,0.512], + [21175,0.433], + [21177,0.495], + [21179,0.508], + [21181,0.503], + [21183,0.5], + [21185,0.474], + [21187,0.503], + [21189,0.505], + [21191,0.499], + [21193,0.505], + [21195,0.51], + [21197,0.503], + [21199,0.512], + [21201,0.497], + [21203,0.509], + [21205,0.514], + [21207,0.511], + [21209,0.507], + [21211,0.519], + [21213,0.511], + [21215,0.492], + [21217,0.517], + [21219,0.506], + [21221,0.509], + [21223,0.491], + [21225,0.489], + [21227,0.511], + [21229,0.51], + [21231,0.505], + [21233,0.503], + [21235,0.514], + [21237,0.509], + [21239,0.52], + [22001,0.512], + [22003,0.438], + [22005,0.506], + [22007,0.511], + [22009,0.499], + [22011,0.49], + [22013,0.518], + [22015,0.508], + [22017,0.525], + [22019,0.512], + [22021,0.488], + [22023,0.504], + [22025,0.471], + [22027,0.441], + [22029,0.497], + [22031,0.517], + [22033,0.52], + [22035,0.465], + [22037,0.462], + [22039,0.496], + [22041,0.515], + [22043,0.44], + [22045,0.512], + [22047,0.49], + [22049,0.492], + [22051,0.514], + [22053,0.51], + [22055,0.512], + [22057,0.509], + [22059,0.485], + [22061,0.512], + [22063,0.505], + [22065,0.505], + [22067,0.521], + [22069,0.523], + [22071,0.516], + [22073,0.522], + [22075,0.498], + [22077,0.515], + [22079,0.518], + [22081,0.522], + [22083,0.518], + [22085,0.504], + [22087,0.494], + [22089,0.506], + [22091,0.507], + [22093,0.511], + [22095,0.514], + [22097,0.522], + [22099,0.507], + [22101,0.506], + [22103,0.512], + [22105,0.514], + [22107,0.525], + [22109,0.503], + [22111,0.506], + [22113,0.514], + [22115,0.488], + [22117,0.505], + [22119,0.514], + [22121,0.508], + [22123,0.499], + [22125,0.344], + [22127,0.476], + [23001,0.511], + [23003,0.508], + [23005,0.515], + [23007,0.511], + [23009,0.51], + [23011,0.513], + [23013,0.505], + [23015,0.51], + [23017,0.504], + [23019,0.507], + [23021,0.504], + [23023,0.516], + [23025,0.504], + [23027,0.51], + [23029,0.507], + [23031,0.513], + [24001,0.483], + [24003,0.506], + [24005,0.527], + [24009,0.507], + [24011,0.512], + [24013,0.506], + [24015,0.503], + [24017,0.517], + [24019,0.523], + [24021,0.508], + [24023,0.503], + [24025,0.511], + [24027,0.51], + [24029,0.523], + [24031,0.52], + [24033,0.52], + [24035,0.503], + [24037,0.502], + [24039,0.466], + [24041,0.523], + [24043,0.492], + [24045,0.523], + [24047,0.513], + [24510,0.529], + [25001,0.524], + [25003,0.519], + [25005,0.516], + [25007,0.505], + [25009,0.52], + [25011,0.512], + [25013,0.52], + [25015,0.532], + [25017,0.514], + [25019,0.488], + [25021,0.521], + [25023,0.514], + [25025,0.518], + [25027,0.508], + [26001,0.492], + [26003,0.456], + [26005,0.502], + [26007,0.509], + [26009,0.505], + [26011,0.493], + [26013,0.451], + [26015,0.498], + [26017,0.511], + [26019,0.504], + [26021,0.513], + [26023,0.473], + [26025,0.511], + [26027,0.501], + [26029,0.508], + [26031,0.502], + [26033,0.449], + [26035,0.501], + [26037,0.508], + [26039,0.498], + [26041,0.505], + [26043,0.508], + [26045,0.512], + [26047,0.507], + [26049,0.518], + [26051,0.5], + [26053,0.467], + [26055,0.506], + [26057,0.468], + [26059,0.504], + [26061,0.459], + [26063,0.504], + [26065,0.514], + [26067,0.463], + [26069,0.507], + [26071,0.507], + [26073,0.513], + [26075,0.49], + [26077,0.51], + [26079,0.492], + [26081,0.51], + [26083,0.487], + [26085,0.489], + [26087,0.496], + [26089,0.507], + [26091,0.495], + [26093,0.5], + [26095,0.423], + [26097,0.495], + [26099,0.514], + [26101,0.482], + [26103,0.495], + [26105,0.506], + [26107,0.498], + [26109,0.497], + [26111,0.509], + [26113,0.491], + [26115,0.507], + [26117,0.483], + [26119,0.496], + [26121,0.504], + [26123,0.497], + [26125,0.515], + [26127,0.498], + [26129,0.502], + [26131,0.484], + [26133,0.502], + [26135,0.496], + [26137,0.508], + [26139,0.51], + [26141,0.499], + [26143,0.501], + [26145,0.517], + [26147,0.505], + [26149,0.505], + [26151,0.506], + [26153,0.505], + [26155,0.506], + [26157,0.499], + [26159,0.504], + [26161,0.507], + [26163,0.52], + [26165,0.502], + [27001,0.494], + [27003,0.5], + [27005,0.498], + [27007,0.501], + [27009,0.499], + [27011,0.511], + [27013,0.497], + [27015,0.503], + [27017,0.48], + [27019,0.503], + [27021,0.489], + [27023,0.51], + [27025,0.485], + [27027,0.506], + [27029,0.497], + [27031,0.501], + [27033,0.507], + [27035,0.502], + [27037,0.509], + [27039,0.5], + [27041,0.499], + [27043,0.503], + [27045,0.503], + [27047,0.505], + [27049,0.504], + [27051,0.506], + [27053,0.509], + [27055,0.504], + [27057,0.496], + [27059,0.496], + [27061,0.495], + [27063,0.494], + [27065,0.494], + [27067,0.501], + [27069,0.498], + [27071,0.504], + [27073,0.5], + [27075,0.496], + [27077,0.489], + [27079,0.495], + [27081,0.498], + [27083,0.503], + [27085,0.501], + [27087,0.492], + [27089,0.493], + [27091,0.509], + [27093,0.492], + [27095,0.498], + [27097,0.496], + [27099,0.502], + [27101,0.504], + [27103,0.5], + [27105,0.489], + [27107,0.501], + [27109,0.511], + [27111,0.499], + [27113,0.507], + [27115,0.464], + [27117,0.513], + [27119,0.499], + [27121,0.495], + [27123,0.515], + [27125,0.491], + [27127,0.504], + [27129,0.495], + [27131,0.489], + [27133,0.506], + [27135,0.489], + [27137,0.5], + [27139,0.502], + [27141,0.488], + [27143,0.498], + [27145,0.496], + [27147,0.505], + [27149,0.507], + [27151,0.497], + [27153,0.488], + [27155,0.503], + [27157,0.499], + [27159,0.507], + [27161,0.531], + [27163,0.505], + [27165,0.499], + [27167,0.493], + [27169,0.508], + [27171,0.498], + [27173,0.49], + [28001,0.501], + [28003,0.511], + [28005,0.515], + [28007,0.524], + [28009,0.509], + [28011,0.535], + [28013,0.522], + [28015,0.5], + [28017,0.525], + [28019,0.521], + [28021,0.529], + [28023,0.524], + [28025,0.531], + [28027,0.541], + [28029,0.517], + [28031,0.514], + [28033,0.513], + [28035,0.522], + [28037,0.514], + [28039,0.494], + [28041,0.409], + [28043,0.528], + [28045,0.504], + [28047,0.503], + [28049,0.53], + [28051,0.532], + [28053,0.532], + [28055,0.42], + [28057,0.511], + [28059,0.507], + [28061,0.518], + [28063,0.504], + [28065,0.522], + [28067,0.513], + [28069,0.511], + [28071,0.506], + [28073,0.516], + [28075,0.518], + [28077,0.509], + [28079,0.481], + [28081,0.521], + [28083,0.52], + [28085,0.522], + [28087,0.526], + [28089,0.521], + [28091,0.517], + [28093,0.505], + [28095,0.525], + [28097,0.525], + [28099,0.52], + [28101,0.521], + [28103,0.521], + [28105,0.502], + [28107,0.519], + [28109,0.506], + [28111,0.512], + [28113,0.524], + [28115,0.507], + [28117,0.511], + [28119,0.522], + [28121,0.516], + [28123,0.511], + [28125,0.542], + [28127,0.515], + [28129,0.513], + [28131,0.499], + [28133,0.466], + [28135,0.452], + [28137,0.517], + [28139,0.511], + [28141,0.517], + [28143,0.528], + [28145,0.511], + [28147,0.514], + [28149,0.525], + [28151,0.535], + [28153,0.52], + [28155,0.514], + [28157,0.471], + [28159,0.519], + [28161,0.523], + [28163,0.456], + [29001,0.523], + [29003,0.508], + [29005,0.504], + [29007,0.538], + [29009,0.504], + [29011,0.507], + [29013,0.507], + [29015,0.499], + [29017,0.5], + [29019,0.515], + [29021,0.5], + [29023,0.518], + [29025,0.498], + [29027,0.486], + [29029,0.503], + [29031,0.516], + [29033,0.512], + [29035,0.512], + [29037,0.512], + [29039,0.508], + [29041,0.507], + [29043,0.514], + [29045,0.5], + [29047,0.512], + [29049,0.498], + [29051,0.495], + [29053,0.473], + [29055,0.502], + [29057,0.499], + [29059,0.503], + [29061,0.503], + [29063,0.373], + [29065,0.504], + [29067,0.506], + [29069,0.52], + [29071,0.504], + [29073,0.51], + [29075,0.516], + [29077,0.513], + [29079,0.523], + [29081,0.504], + [29083,0.511], + [29085,0.509], + [29087,0.506], + [29089,0.503], + [29091,0.516], + [29093,0.506], + [29095,0.517], + [29097,0.512], + [29099,0.502], + [29101,0.495], + [29103,0.508], + [29105,0.507], + [29107,0.506], + [29109,0.507], + [29111,0.499], + [29113,0.501], + [29115,0.519], + [29117,0.552], + [29119,0.495], + [29121,0.511], + [29123,0.509], + [29125,0.495], + [29127,0.519], + [29129,0.497], + [29131,0.502], + [29133,0.464], + [29135,0.473], + [29137,0.5], + [29139,0.5], + [29141,0.502], + [29143,0.52], + [29145,0.504], + [29147,0.493], + [29149,0.504], + [29151,0.48], + [29153,0.495], + [29155,0.525], + [29157,0.501], + [29159,0.508], + [29161,0.477], + [29163,0.452], + [29165,0.508], + [29167,0.507], + [29169,0.441], + [29171,0.503], + [29173,0.494], + [29175,0.477], + [29177,0.502], + [29179,0.49], + [29181,0.505], + [29183,0.509], + [29185,0.495], + [29186,0.495], + [29187,0.468], + [29189,0.527], + [29195,0.505], + [29197,0.514], + [29199,0.514], + [29201,0.518], + [29203,0.502], + [29205,0.51], + [29207,0.514], + [29209,0.507], + [29211,0.489], + [29213,0.513], + [29215,0.48], + [29217,0.515], + [29219,0.502], + [29221,0.487], + [29223,0.499], + [29225,0.495], + [29227,0.509], + [29229,0.512], + [29510,0.517], + [30001,0.488], + [30003,0.503], + [30005,0.5], + [30007,0.488], + [30009,0.493], + [30011,0.495], + [30013,0.501], + [30015,0.508], + [30017,0.503], + [30019,0.497], + [30021,0.495], + [30023,0.471], + [30025,0.493], + [30027,0.498], + [30029,0.502], + [30031,0.481], + [30033,0.488], + [30035,0.511], + [30037,0.476], + [30039,0.491], + [30041,0.495], + [30043,0.49], + [30045,0.481], + [30047,0.505], + [30049,0.506], + [30051,0.519], + [30053,0.492], + [30055,0.487], + [30057,0.48], + [30059,0.494], + [30061,0.482], + [30063,0.497], + [30065,0.502], + [30067,0.502], + [30069,0.46], + [30071,0.507], + [30073,0.517], + [30075,0.492], + [30077,0.389], + [30079,0.49], + [30081,0.504], + [30083,0.485], + [30085,0.507], + [30087,0.494], + [30089,0.487], + [30091,0.498], + [30093,0.495], + [30095,0.487], + [30097,0.494], + [30099,0.507], + [30101,0.443], + [30103,0.486], + [30105,0.503], + [30107,0.507], + [30109,0.496], + [30111,0.511], + [31001,0.503], + [31003,0.502], + [31005,0.504], + [31007,0.487], + [31009,0.483], + [31011,0.501], + [31013,0.51], + [31015,0.505], + [31017,0.513], + [31019,0.505], + [31021,0.51], + [31023,0.498], + [31025,0.498], + [31027,0.492], + [31029,0.505], + [31031,0.502], + [31033,0.503], + [31035,0.499], + [31037,0.484], + [31039,0.504], + [31041,0.504], + [31043,0.501], + [31045,0.503], + [31047,0.495], + [31049,0.509], + [31051,0.506], + [31053,0.51], + [31055,0.508], + [31057,0.499], + [31059,0.509], + [31061,0.5], + [31063,0.492], + [31065,0.511], + [31067,0.509], + [31069,0.493], + [31071,0.51], + [31073,0.499], + [31075,0.453], + [31077,0.496], + [31079,0.5], + [31081,0.5], + [31083,0.497], + [31085,0.473], + [31087,0.503], + [31089,0.503], + [31091,0.53], + [31093,0.491], + [31095,0.507], + [31097,0.422], + [31099,0.509], + [31101,0.499], + [31103,0.496], + [31105,0.502], + [31107,0.51], + [31109,0.499], + [31111,0.506], + [31113,0.501], + [31115,0.487], + [31117,0.486], + [31119,0.504], + [31121,0.505], + [31123,0.501], + [31125,0.499], + [31127,0.511], + [31129,0.505], + [31131,0.51], + [31133,0.503], + [31135,0.495], + [31137,0.505], + [31139,0.495], + [31141,0.499], + [31143,0.501], + [31145,0.504], + [31147,0.506], + [31149,0.5], + [31151,0.497], + [31153,0.503], + [31155,0.494], + [31157,0.518], + [31159,0.491], + [31161,0.515], + [31163,0.509], + [31165,0.487], + [31167,0.505], + [31169,0.512], + [31171,0.493], + [31173,0.503], + [31175,0.505], + [31177,0.502], + [31179,0.498], + [31181,0.522], + [31183,0.496], + [31185,0.512], + [32001,0.497], + [32003,0.497], + [32005,0.5], + [32007,0.481], + [32009,0.446], + [32011,0.473], + [32013,0.476], + [32015,0.493], + [32017,0.462], + [32019,0.496], + [32021,0.508], + [32023,0.495], + [32027,0.368], + [32029,0.49], + [32031,0.495], + [32033,0.434], + [32510,0.481], + [33001,0.509], + [33003,0.505], + [33005,0.512], + [33007,0.492], + [33009,0.505], + [33011,0.505], + [33013,0.508], + [33015,0.506], + [33017,0.513], + [33019,0.506], + [34001,0.515], + [34003,0.518], + [34005,0.509], + [34007,0.518], + [34009,0.514], + [34011,0.485], + [34013,0.52], + [34015,0.514], + [34017,0.505], + [34019,0.501], + [34021,0.512], + [34023,0.509], + [34025,0.514], + [34027,0.51], + [34029,0.521], + [34031,0.515], + [34033,0.513], + [34035,0.513], + [34037,0.504], + [34039,0.516], + [34041,0.514], + [35001,0.51], + [35003,0.477], + [35005,0.505], + [35006,0.494], + [35007,0.491], + [35009,0.498], + [35011,0.509], + [35013,0.51], + [35015,0.501], + [35017,0.509], + [35019,0.435], + [35021,0.472], + [35023,0.498], + [35025,0.489], + [35027,0.509], + [35028,0.497], + [35029,0.503], + [35031,0.516], + [35033,0.488], + [35035,0.495], + [35037,0.507], + [35039,0.506], + [35041,0.497], + [35043,0.511], + [35045,0.504], + [35047,0.501], + [35049,0.513], + [35051,0.497], + [35053,0.487], + [35055,0.508], + [35057,0.484], + [35059,0.43], + [35061,0.496], + [36001,0.517], + [36003,0.495], + [36005,0.531], + [36007,0.51], + [36009,0.505], + [36011,0.49], + [36013,0.507], + [36015,0.503], + [36017,0.502], + [36019,0.487], + [36021,0.497], + [36023,0.512], + [36025,0.498], + [36027,0.502], + [36029,0.518], + [36031,0.482], + [36033,0.451], + [36035,0.505], + [36037,0.505], + [36039,0.478], + [36041,0.494], + [36043,0.511], + [36045,0.491], + [36047,0.528], + [36049,0.497], + [36051,0.498], + [36053,0.509], + [36055,0.518], + [36057,0.513], + [36059,0.516], + [36061,0.531], + [36063,0.515], + [36065,0.502], + [36067,0.519], + [36069,0.511], + [36071,0.5], + [36073,0.505], + [36075,0.502], + [36077,0.516], + [36079,0.501], + [36081,0.516], + [36083,0.506], + [36085,0.515], + [36087,0.51], + [36089,0.492], + [36091,0.508], + [36093,0.516], + [36095,0.5], + [36097,0.503], + [36099,0.476], + [36101,0.504], + [36103,0.508], + [36105,0.489], + [36107,0.504], + [36109,0.507], + [36111,0.502], + [36113,0.512], + [36115,0.482], + [36117,0.504], + [36119,0.519], + [36121,0.456], + [36123,0.516], + [37001,0.524], + [37003,0.494], + [37005,0.504], + [37007,0.48], + [37009,0.506], + [37011,0.456], + [37013,0.518], + [37015,0.505], + [37017,0.52], + [37019,0.51], + [37021,0.518], + [37023,0.5], + [37025,0.512], + [37027,0.508], + [37029,0.498], + [37031,0.506], + [37033,0.491], + [37035,0.51], + [37037,0.517], + [37039,0.514], + [37041,0.525], + [37043,0.507], + [37045,0.518], + [37047,0.505], + [37049,0.503], + [37051,0.517], + [37053,0.504], + [37055,0.5], + [37057,0.51], + [37059,0.512], + [37061,0.508], + [37063,0.523], + [37065,0.536], + [37067,0.525], + [37069,0.502], + [37071,0.516], + [37073,0.511], + [37075,0.507], + [37077,0.466], + [37079,0.464], + [37081,0.524], + [37083,0.522], + [37085,0.51], + [37087,0.517], + [37089,0.517], + [37091,0.511], + [37093,0.513], + [37095,0.445], + [37097,0.508], + [37099,0.502], + [37101,0.508], + [37103,0.519], + [37105,0.512], + [37107,0.523], + [37109,0.504], + [37111,0.5], + [37113,0.514], + [37115,0.505], + [37117,0.533], + [37119,0.516], + [37121,0.512], + [37123,0.516], + [37125,0.522], + [37127,0.517], + [37129,0.515], + [37131,0.515], + [37133,0.464], + [37135,0.522], + [37137,0.49], + [37139,0.509], + [37141,0.5], + [37143,0.521], + [37145,0.515], + [37147,0.528], + [37149,0.521], + [37151,0.507], + [37153,0.508], + [37155,0.514], + [37157,0.518], + [37159,0.506], + [37161,0.517], + [37163,0.51], + [37165,0.517], + [37167,0.503], + [37169,0.512], + [37171,0.512], + [37173,0.513], + [37175,0.517], + [37177,0.448], + [37179,0.506], + [37181,0.531], + [37183,0.513], + [37185,0.495], + [37187,0.53], + [37189,0.498], + [37191,0.511], + [37193,0.506], + [37195,0.523], + [37197,0.508], + [37199,0.509], + [38001,0.517], + [38003,0.504], + [38005,0.493], + [38007,0.467], + [38009,0.483], + [38011,0.499], + [38013,0.474], + [38015,0.508], + [38017,0.496], + [38019,0.488], + [38021,0.503], + [38023,0.488], + [38025,0.473], + [38027,0.511], + [38029,0.487], + [38031,0.499], + [38033,0.505], + [38035,0.486], + [38037,0.503], + [38039,0.494], + [38041,0.524], + [38043,0.49], + [38045,0.488], + [38047,0.491], + [38049,0.482], + [38051,0.511], + [38053,0.484], + [38055,0.492], + [38057,0.484], + [38059,0.501], + [38061,0.455], + [38063,0.49], + [38065,0.477], + [38067,0.49], + [38069,0.5], + [38071,0.503], + [38073,0.492], + [38075,0.486], + [38077,0.483], + [38079,0.505], + [38081,0.466], + [38083,0.499], + [38085,0.487], + [38087,0.455], + [38089,0.5], + [38091,0.489], + [38093,0.491], + [38095,0.491], + [38097,0.499], + [38099,0.496], + [38101,0.493], + [38103,0.509], + [38105,0.484], + [39001,0.506], + [39003,0.496], + [39005,0.511], + [39007,0.501], + [39009,0.499], + [39011,0.504], + [39013,0.496], + [39015,0.504], + [39017,0.511], + [39019,0.501], + [39021,0.505], + [39023,0.516], + [39025,0.507], + [39027,0.51], + [39029,0.498], + [39031,0.506], + [39033,0.514], + [39035,0.526], + [39037,0.509], + [39039,0.508], + [39041,0.507], + [39043,0.51], + [39045,0.504], + [39047,0.508], + [39049,0.513], + [39051,0.509], + [39053,0.507], + [39055,0.508], + [39057,0.51], + [39059,0.51], + [39061,0.52], + [39063,0.515], + [39065,0.504], + [39067,0.504], + [39069,0.505], + [39071,0.51], + [39073,0.5], + [39075,0.501], + [39077,0.507], + [39079,0.511], + [39081,0.52], + [39083,0.512], + [39085,0.513], + [39087,0.514], + [39089,0.51], + [39091,0.507], + [39093,0.508], + [39095,0.516], + [39097,0.454], + [39099,0.516], + [39101,0.476], + [39103,0.507], + [39105,0.509], + [39107,0.5], + [39109,0.508], + [39111,0.502], + [39113,0.52], + [39115,0.502], + [39117,0.499], + [39119,0.516], + [39121,0.422], + [39123,0.507], + [39125,0.505], + [39127,0.501], + [39129,0.475], + [39131,0.504], + [39133,0.512], + [39135,0.504], + [39137,0.5], + [39139,0.494], + [39141,0.473], + [39143,0.508], + [39145,0.506], + [39147,0.501], + [39149,0.501], + [39151,0.516], + [39153,0.516], + [39155,0.514], + [39157,0.509], + [39159,0.528], + [39161,0.513], + [39163,0.502], + [39165,0.497], + [39167,0.512], + [39169,0.506], + [39171,0.504], + [39173,0.511], + [39175,0.505], + [40001,0.5], + [40003,0.411], + [40005,0.479], + [40007,0.491], + [40009,0.465], + [40011,0.42], + [40013,0.511], + [40015,0.483], + [40017,0.504], + [40019,0.512], + [40021,0.506], + [40023,0.518], + [40025,0.502], + [40027,0.5], + [40029,0.506], + [40031,0.485], + [40033,0.508], + [40035,0.492], + [40037,0.505], + [40039,0.504], + [40041,0.507], + [40043,0.501], + [40045,0.512], + [40047,0.507], + [40049,0.511], + [40051,0.504], + [40053,0.503], + [40055,0.433], + [40057,0.52], + [40059,0.504], + [40061,0.503], + [40063,0.462], + [40065,0.502], + [40067,0.502], + [40069,0.507], + [40071,0.507], + [40073,0.506], + [40075,0.505], + [40077,0.494], + [40079,0.498], + [40081,0.505], + [40083,0.505], + [40085,0.509], + [40087,0.504], + [40089,0.51], + [40091,0.506], + [40093,0.509], + [40095,0.499], + [40097,0.501], + [40099,0.502], + [40101,0.511], + [40103,0.506], + [40105,0.506], + [40107,0.465], + [40109,0.511], + [40111,0.505], + [40113,0.497], + [40115,0.512], + [40117,0.502], + [40119,0.493], + [40121,0.492], + [40123,0.515], + [40125,0.521], + [40127,0.506], + [40129,0.503], + [40131,0.505], + [40133,0.512], + [40135,0.504], + [40137,0.512], + [40139,0.48], + [40141,0.501], + [40143,0.512], + [40145,0.508], + [40147,0.516], + [40149,0.512], + [40151,0.465], + [40153,0.476], + [41001,0.495], + [41003,0.499], + [41005,0.508], + [41007,0.503], + [41009,0.499], + [41011,0.507], + [41013,0.504], + [41015,0.506], + [41017,0.506], + [41019,0.506], + [41021,0.484], + [41023,0.503], + [41025,0.491], + [41027,0.5], + [41029,0.513], + [41031,0.482], + [41033,0.513], + [41035,0.502], + [41037,0.473], + [41039,0.508], + [41041,0.513], + [41043,0.506], + [41045,0.459], + [41047,0.502], + [41049,0.485], + [41051,0.505], + [41053,0.513], + [41055,0.492], + [41057,0.495], + [41059,0.479], + [41061,0.508], + [41063,0.509], + [41065,0.504], + [41067,0.508], + [41069,0.502], + [41071,0.498], + [42001,0.508], + [42003,0.521], + [42005,0.507], + [42007,0.518], + [42009,0.504], + [42011,0.509], + [42013,0.514], + [42015,0.508], + [42017,0.51], + [42019,0.508], + [42021,0.506], + [42023,0.509], + [42025,0.507], + [42027,0.482], + [42029,0.509], + [42031,0.516], + [42033,0.484], + [42035,0.51], + [42037,0.52], + [42039,0.512], + [42041,0.509], + [42043,0.517], + [42045,0.521], + [42047,0.503], + [42049,0.508], + [42051,0.509], + [42053,0.331], + [42055,0.511], + [42057,0.497], + [42059,0.485], + [42061,0.471], + [42063,0.503], + [42065,0.507], + [42067,0.501], + [42069,0.519], + [42071,0.511], + [42073,0.518], + [42075,0.512], + [42077,0.516], + [42079,0.511], + [42081,0.51], + [42083,0.49], + [42085,0.51], + [42087,0.511], + [42089,0.506], + [42091,0.515], + [42093,0.519], + [42095,0.512], + [42097,0.501], + [42099,0.498], + [42101,0.528], + [42103,0.5], + [42105,0.5], + [42107,0.493], + [42109,0.506], + [42111,0.485], + [42113,0.486], + [42115,0.497], + [42117,0.51], + [42119,0.45], + [42121,0.511], + [42123,0.502], + [42125,0.514], + [42127,0.476], + [42129,0.513], + [42131,0.5], + [42133,0.507], + [44001,0.52], + [44003,0.519], + [44005,0.512], + [44007,0.517], + [44009,0.514], + [45001,0.515], + [45003,0.516], + [45005,0.468], + [45007,0.518], + [45009,0.524], + [45011,0.522], + [45013,0.506], + [45015,0.501], + [45017,0.513], + [45019,0.515], + [45021,0.515], + [45023,0.517], + [45025,0.514], + [45027,0.506], + [45029,0.518], + [45031,0.526], + [45033,0.53], + [45035,0.514], + [45037,0.46], + [45039,0.521], + [45041,0.53], + [45043,0.524], + [45045,0.515], + [45047,0.531], + [45049,0.488], + [45051,0.511], + [45053,0.479], + [45055,0.513], + [45057,0.507], + [45059,0.515], + [45061,0.482], + [45063,0.512], + [45065,0.457], + [45067,0.543], + [45069,0.473], + [45071,0.513], + [45073,0.506], + [45075,0.53], + [45077,0.5], + [45079,0.513], + [45081,0.497], + [45083,0.515], + [45085,0.519], + [45087,0.524], + [45089,0.514], + [45091,0.517], + [46003,0.49], + [46005,0.497], + [46007,0.509], + [46009,0.416], + [46011,0.488], + [46013,0.513], + [46015,0.514], + [46017,0.51], + [46019,0.497], + [46021,0.492], + [46023,0.505], + [46025,0.498], + [46027,0.514], + [46029,0.502], + [46031,0.49], + [46033,0.495], + [46035,0.505], + [46037,0.498], + [46039,0.484], + [46041,0.509], + [46043,0.499], + [46045,0.492], + [46047,0.492], + [46049,0.505], + [46051,0.492], + [46053,0.497], + [46055,0.494], + [46057,0.5], + [46059,0.504], + [46061,0.499], + [46063,0.475], + [46065,0.514], + [46067,0.513], + [46069,0.48], + [46071,0.496], + [46073,0.514], + [46075,0.505], + [46077,0.493], + [46079,0.492], + [46081,0.505], + [46083,0.505], + [46085,0.476], + [46087,0.5], + [46089,0.511], + [46091,0.459], + [46093,0.49], + [46095,0.488], + [46097,0.495], + [46099,0.501], + [46101,0.499], + [46102,0.507], + [46103,0.502], + [46105,0.498], + [46107,0.505], + [46109,0.498], + [46111,0.482], + [46115,0.497], + [46117,0.5], + [46119,0.46], + [46121,0.509], + [46123,0.507], + [46125,0.498], + [46127,0.499], + [46129,0.512], + [46135,0.485], + [46137,0.515], + [47001,0.517], + [47003,0.504], + [47005,0.51], + [47007,0.459], + [47009,0.516], + [47011,0.513], + [47013,0.512], + [47015,0.505], + [47017,0.517], + [47019,0.511], + [47021,0.5], + [47023,0.517], + [47025,0.51], + [47027,0.504], + [47029,0.515], + [47031,0.514], + [47033,0.52], + [47035,0.512], + [47037,0.516], + [47039,0.507], + [47041,0.505], + [47043,0.509], + [47045,0.518], + [47047,0.504], + [47049,0.507], + [47051,0.512], + [47053,0.524], + [47055,0.512], + [47057,0.502], + [47059,0.509], + [47061,0.505], + [47063,0.513], + [47065,0.519], + [47067,0.506], + [47069,0.456], + [47071,0.513], + [47073,0.51], + [47075,0.529], + [47077,0.519], + [47079,0.516], + [47081,0.475], + [47083,0.508], + [47085,0.508], + [47087,0.501], + [47089,0.509], + [47091,0.461], + [47093,0.514], + [47095,0.363], + [47097,0.475], + [47099,0.512], + [47101,0.51], + [47103,0.512], + [47105,0.509], + [47107,0.514], + [47109,0.509], + [47111,0.507], + [47113,0.525], + [47115,0.509], + [47117,0.511], + [47119,0.516], + [47121,0.503], + [47123,0.505], + [47125,0.51], + [47127,0.508], + [47129,0.449], + [47131,0.518], + [47133,0.506], + [47135,0.498], + [47137,0.498], + [47139,0.502], + [47141,0.505], + [47143,0.511], + [47145,0.509], + [47147,0.508], + [47149,0.506], + [47151,0.509], + [47153,0.504], + [47155,0.507], + [47157,0.523], + [47159,0.508], + [47161,0.501], + [47163,0.516], + [47165,0.512], + [47167,0.51], + [47169,0.503], + [47171,0.511], + [47173,0.502], + [47175,0.501], + [47177,0.507], + [47179,0.511], + [47181,0.448], + [47183,0.51], + [47185,0.511], + [47187,0.512], + [47189,0.51], + [48001,0.392], + [48003,0.502], + [48005,0.51], + [48007,0.504], + [48009,0.496], + [48011,0.512], + [48013,0.507], + [48015,0.505], + [48017,0.495], + [48019,0.503], + [48021,0.488], + [48023,0.518], + [48025,0.402], + [48027,0.505], + [48029,0.51], + [48031,0.495], + [48033,0.477], + [48035,0.503], + [48037,0.495], + [48039,0.492], + [48041,0.494], + [48043,0.498], + [48045,0.502], + [48047,0.504], + [48049,0.506], + [48051,0.505], + [48053,0.509], + [48055,0.496], + [48057,0.493], + [48059,0.512], + [48061,0.519], + [48063,0.509], + [48065,0.508], + [48067,0.515], + [48069,0.493], + [48071,0.497], + [48073,0.492], + [48075,0.415], + [48077,0.509], + [48079,0.509], + [48081,0.51], + [48083,0.504], + [48085,0.509], + [48087,0.51], + [48089,0.504], + [48091,0.509], + [48093,0.507], + [48095,0.317], + [48097,0.504], + [48099,0.511], + [48101,0.526], + [48103,0.51], + [48105,0.508], + [48107,0.519], + [48109,0.513], + [48111,0.481], + [48113,0.506], + [48115,0.435], + [48117,0.502], + [48119,0.51], + [48121,0.508], + [48123,0.48], + [48125,0.434], + [48127,0.516], + [48129,0.504], + [48131,0.484], + [48133,0.512], + [48135,0.506], + [48137,0.49], + [48139,0.506], + [48141,0.516], + [48143,0.509], + [48145,0.525], + [48147,0.47], + [48149,0.508], + [48151,0.507], + [48153,0.507], + [48155,0.523], + [48157,0.509], + [48159,0.508], + [48161,0.473], + [48163,0.417], + [48165,0.498], + [48167,0.505], + [48169,0.367], + [48171,0.518], + [48173,0.471], + [48175,0.501], + [48177,0.497], + [48179,0.481], + [48181,0.513], + [48183,0.511], + [48185,0.455], + [48187,0.508], + [48189,0.483], + [48191,0.506], + [48193,0.507], + [48195,0.501], + [48197,0.504], + [48199,0.507], + [48201,0.502], + [48203,0.509], + [48205,0.39], + [48207,0.474], + [48209,0.502], + [48211,0.494], + [48213,0.51], + [48215,0.513], + [48217,0.51], + [48219,0.507], + [48221,0.508], + [48223,0.505], + [48225,0.462], + [48227,0.437], + [48229,0.497], + [48231,0.504], + [48233,0.5], + [48235,0.495], + [48237,0.444], + [48239,0.506], + [48241,0.509], + [48243,0.493], + [48245,0.489], + [48247,0.506], + [48249,0.508], + [48251,0.5], + [48253,0.387], + [48255,0.404], + [48257,0.508], + [48259,0.512], + [48261,0.49], + [48263,0.515], + [48265,0.515], + [48267,0.505], + [48269,0.507], + [48271,0.457], + [48273,0.49], + [48275,0.507], + [48277,0.517], + [48279,0.502], + [48281,0.507], + [48283,0.406], + [48285,0.511], + [48287,0.494], + [48289,0.501], + [48291,0.508], + [48293,0.482], + [48295,0.497], + [48297,0.463], + [48299,0.517], + [48301,0.439], + [48303,0.506], + [48305,0.502], + [48307,0.51], + [48309,0.514], + [48311,0.481], + [48313,0.424], + [48315,0.51], + [48317,0.498], + [48319,0.507], + [48321,0.5], + [48323,0.512], + [48325,0.486], + [48327,0.495], + [48329,0.509], + [48331,0.506], + [48333,0.505], + [48335,0.389], + [48337,0.51], + [48339,0.504], + [48341,0.483], + [48343,0.518], + [48345,0.493], + [48347,0.523], + [48349,0.504], + [48351,0.485], + [48353,0.503], + [48355,0.509], + [48357,0.488], + [48359,0.496], + [48361,0.503], + [48363,0.509], + [48365,0.504], + [48367,0.493], + [48369,0.488], + [48371,0.436], + [48373,0.465], + [48375,0.489], + [48377,0.512], + [48379,0.497], + [48381,0.513], + [48383,0.481], + [48385,0.505], + [48387,0.513], + [48389,0.399], + [48391,0.503], + [48393,0.495], + [48395,0.505], + [48397,0.508], + [48399,0.505], + [48401,0.474], + [48403,0.511], + [48405,0.508], + [48407,0.5], + [48409,0.504], + [48411,0.451], + [48413,0.501], + [48415,0.466], + [48417,0.517], + [48419,0.505], + [48421,0.49], + [48423,0.516], + [48425,0.507], + [48427,0.517], + [48429,0.483], + [48431,0.496], + [48433,0.519], + [48435,0.508], + [48437,0.473], + [48439,0.51], + [48441,0.513], + [48443,0.483], + [48445,0.469], + [48447,0.508], + [48449,0.506], + [48451,0.51], + [48453,0.496], + [48455,0.513], + [48457,0.461], + [48459,0.505], + [48461,0.501], + [48463,0.511], + [48465,0.498], + [48467,0.508], + [48469,0.512], + [48471,0.41], + [48473,0.505], + [48475,0.517], + [48477,0.508], + [48479,0.515], + [48481,0.508], + [48483,0.508], + [48485,0.487], + [48487,0.502], + [48489,0.456], + [48491,0.508], + [48493,0.502], + [48495,0.501], + [48497,0.496], + [48499,0.509], + [48501,0.505], + [48503,0.507], + [48505,0.498], + [48507,0.507], + [49001,0.486], + [49003,0.496], + [49005,0.503], + [49007,0.504], + [49009,0.436], + [49011,0.498], + [49013,0.492], + [49015,0.491], + [49017,0.483], + [49019,0.496], + [49021,0.503], + [49023,0.49], + [49025,0.506], + [49027,0.491], + [49029,0.496], + [49031,0.488], + [49033,0.483], + [49035,0.497], + [49037,0.498], + [49039,0.477], + [49041,0.496], + [49043,0.485], + [49045,0.496], + [49047,0.492], + [49049,0.499], + [49051,0.492], + [49053,0.506], + [49055,0.495], + [49057,0.498], + [50001,0.501], + [50003,0.516], + [50005,0.503], + [50007,0.513], + [50009,0.494], + [50011,0.504], + [50013,0.501], + [50015,0.5], + [50017,0.502], + [50019,0.5], + [50021,0.507], + [50023,0.506], + [50025,0.509], + [50027,0.51], + [51001,0.513], + [51003,0.519], + [51005,0.511], + [51007,0.509], + [51009,0.522], + [51011,0.513], + [51013,0.502], + [51015,0.493], + [51017,0.495], + [51019,0.504], + [51021,0.448], + [51023,0.505], + [51025,0.475], + [51027,0.489], + [51029,0.446], + [51031,0.513], + [51033,0.508], + [51035,0.507], + [51036,0.508], + [51037,0.509], + [51041,0.518], + [51043,0.502], + [51045,0.506], + [51047,0.493], + [51049,0.516], + [51051,0.5], + [51053,0.509], + [51057,0.527], + [51059,0.506], + [51061,0.507], + [51063,0.498], + [51065,0.541], + [51067,0.507], + [51069,0.503], + [51071,0.51], + [51073,0.505], + [51075,0.504], + [51077,0.51], + [51079,0.508], + [51081,0.374], + [51083,0.523], + [51085,0.509], + [51087,0.53], + [51089,0.518], + [51091,0.501], + [51093,0.513], + [51095,0.517], + [51097,0.503], + [51099,0.497], + [51101,0.513], + [51103,0.53], + [51105,0.478], + [51107,0.507], + [51109,0.507], + [51111,0.469], + [51113,0.512], + [51115,0.514], + [51117,0.504], + [51119,0.501], + [51121,0.483], + [51125,0.514], + [51127,0.491], + [51131,0.521], + [51133,0.513], + [51135,0.472], + [51137,0.51], + [51139,0.508], + [51141,0.508], + [51143,0.508], + [51145,0.461], + [51147,0.503], + [51149,0.454], + [51153,0.503], + [51155,0.506], + [51157,0.5], + [51159,0.435], + [51161,0.523], + [51163,0.507], + [51165,0.509], + [51167,0.51], + [51169,0.504], + [51171,0.511], + [51173,0.512], + [51175,0.479], + [51177,0.51], + [51179,0.497], + [51181,0.506], + [51183,0.414], + [51185,0.506], + [51187,0.503], + [51191,0.507], + [51193,0.512], + [51195,0.483], + [51197,0.511], + [51199,0.511], + [51510,0.519], + [51520,0.53], + [51530,0.535], + [51540,0.523], + [51550,0.514], + [51570,0.537], + [51580,0.516], + [51590,0.544], + [51595,0.539], + [51600,0.507], + [51610,0.51], + [51620,0.555], + [51630,0.541], + [51640,0.529], + [51650,0.522], + [51660,0.534], + [51670,0.536], + [51678,0.443], + [51680,0.531], + [51683,0.499], + [51685,0.493], + [51690,0.545], + [51700,0.517], + [51710,0.482], + [51720,0.539], + [51730,0.533], + [51735,0.506], + [51740,0.519], + [51750,0.526], + [51760,0.523], + [51770,0.522], + [51775,0.526], + [51790,0.547], + [51800,0.52], + [51810,0.51], + [51820,0.524], + [51830,0.529], + [51840,0.508], + [53001,0.49], + [53003,0.517], + [53005,0.501], + [53007,0.501], + [53009,0.504], + [53011,0.506], + [53013,0.504], + [53015,0.506], + [53017,0.5], + [53019,0.483], + [53021,0.483], + [53023,0.507], + [53025,0.49], + [53027,0.487], + [53029,0.505], + [53031,0.505], + [53033,0.502], + [53035,0.494], + [53037,0.492], + [53039,0.495], + [53041,0.5], + [53043,0.501], + [53045,0.483], + [53047,0.495], + [53049,0.499], + [53051,0.493], + [53053,0.506], + [53055,0.514], + [53057,0.504], + [53059,0.497], + [53061,0.5], + [53063,0.506], + [53065,0.5], + [53067,0.513], + [53069,0.497], + [53071,0.492], + [53073,0.505], + [53075,0.491], + [53077,0.5], + [54001,0.506], + [54003,0.504], + [54005,0.503], + [54007,0.496], + [54009,0.515], + [54011,0.512], + [54013,0.499], + [54015,0.503], + [54017,0.465], + [54019,0.499], + [54021,0.395], + [54023,0.503], + [54025,0.513], + [54027,0.494], + [54029,0.516], + [54031,0.495], + [54033,0.513], + [54035,0.506], + [54037,0.506], + [54039,0.52], + [54041,0.507], + [54043,0.503], + [54045,0.507], + [54047,0.505], + [54049,0.512], + [54051,0.512], + [54053,0.519], + [54055,0.522], + [54057,0.504], + [54059,0.51], + [54061,0.484], + [54063,0.505], + [54065,0.501], + [54067,0.508], + [54069,0.524], + [54071,0.494], + [54073,0.464], + [54075,0.487], + [54077,0.484], + [54079,0.509], + [54081,0.501], + [54083,0.485], + [54085,0.5], + [54087,0.505], + [54089,0.551], + [54091,0.494], + [54093,0.499], + [54095,0.51], + [54097,0.508], + [54099,0.512], + [54101,0.505], + [54103,0.509], + [54105,0.498], + [54107,0.518], + [54109,0.504], + [55001,0.462], + [55003,0.5], + [55005,0.503], + [55007,0.486], + [55009,0.505], + [55011,0.495], + [55013,0.495], + [55015,0.499], + [55017,0.481], + [55019,0.493], + [55021,0.491], + [55023,0.485], + [55025,0.505], + [55027,0.474], + [55029,0.508], + [55031,0.5], + [55033,0.495], + [55035,0.51], + [55037,0.489], + [55039,0.509], + [55041,0.492], + [55043,0.48], + [55045,0.505], + [55047,0.501], + [55049,0.499], + [55051,0.5], + [55053,0.468], + [55055,0.502], + [55057,0.474], + [55059,0.505], + [55061,0.492], + [55063,0.512], + [55065,0.49], + [55067,0.498], + [55069,0.499], + [55071,0.503], + [55073,0.498], + [55075,0.503], + [55077,0.493], + [55078,0.504], + [55079,0.517], + [55081,0.493], + [55083,0.49], + [55085,0.5], + [55087,0.501], + [55089,0.51], + [55091,0.494], + [55093,0.502], + [55095,0.498], + [55097,0.5], + [55099,0.493], + [55101,0.505], + [55103,0.498], + [55105,0.508], + [55107,0.5], + [55109,0.499], + [55111,0.502], + [55113,0.493], + [55115,0.501], + [55117,0.498], + [55119,0.49], + [55121,0.492], + [55123,0.501], + [55125,0.493], + [55127,0.499], + [55129,0.502], + [55131,0.504], + [55133,0.509], + [55135,0.495], + [55137,0.474], + [55139,0.497], + [55141,0.508], + [56001,0.479], + [56003,0.496], + [56005,0.474], + [56007,0.462], + [56009,0.493], + [56011,0.485], + [56013,0.501], + [56015,0.479], + [56017,0.506], + [56019,0.491], + [56021,0.5], + [56023,0.486], + [56025,0.497], + [56027,0.533], + [56029,0.503], + [56031,0.504], + [56033,0.5], + [56035,0.458], + [56037,0.478], + [56039,0.474], + [56041,0.495], + [56043,0.501], + [56045,0.474] + ] +} diff --git a/data/regional/united-states/demographics/households/us-households-2010.json b/data/regional/united-states/demographics/households/us-households-2010.json new file mode 100644 index 0000000..f80e6c7 --- /dev/null +++ b/data/regional/united-states/demographics/households/us-households-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Households", + "description" : "Number of households.", + "units" : "homes", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","households"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.households.2010"], + [1001,19718], + [1003,69476], + [1005,9795], + [1007,7441], + [1009,20605], + [1011,3732], + [1013,8019], + [1015,46421], + [1017,13681], + [1019,11352], + [1021,16563], + [1023,5296], + [1025,9144], + [1027,5851], + [1029,5397], + [1031,18928], + [1033,22165], + [1035,4861], + [1037,4561], + [1039,14663], + [1041,5641], + [1043,31263], + [1045,19545], + [1047,16795], + [1049,25937], + [1051,27762], + [1053,13804], + [1055,41584], + [1057,7164], + [1059,12367], + [1061,10720], + [1063,3522], + [1065,5843], + [1067,6656], + [1069,38035], + [1071,21173], + [1073,260441], + [1075,5944], + [1077,37713], + [1079,13412], + [1081,54016], + [1083,30028], + [1085,4205], + [1087,7969], + [1089,126564], + [1091,8494], + [1093,12744], + [1095,34433], + [1097,153302], + [1099,9191], + [1101,88772], + [1103,46375], + [1105,3828], + [1107,8008], + [1109,13013], + [1111,8529], + [1113,20174], + [1115,29574], + [1117,71759], + [1119,4952], + [1121,31151], + [1123,16282], + [1125,69175], + [1127,25800], + [1129,6672], + [1131,3732], + [1133,9478], + [2013,267], + [2016,521], + [2020,104315], + [2050,4291], + [2060,410], + [2068,428], + [2070,1408], + [2090,34596], + [2100,744], + [2105,1004], + [2110,12005], + [2122,22303], + [2130,5629], + [2150,4409], + [2158,1728], + [2164,492], + [2170,29361], + [2180,2693], + [2185,1976], + [2188,1802], + [2195,1559], + [2198,2386], + [2220,3729], + [2230,386], + [2240,2485], + [2261,3941], + [2275,996], + [2282,257], + [2290,2127], + [4001,18859], + [4003,48935], + [4005,45478], + [4007,19704], + [4009,10822], + [4011,3327], + [4012,10158], + [4013,1382002], + [4015,80361], + [4017,35366], + [4019,381880], + [4021,118826], + [4023,12078], + [4025,89109], + [4027,69563], + [5001,8202], + [5003,8901], + [5005,18744], + [5007,78947], + [5009,14317], + [5011,4877], + [5013,2123], + [5015,11437], + [5017,4705], + [5019,8348], + [5021,6787], + [5023,10755], + [5025,3309], + [5027,9895], + [5029,8235], + [5031,35864], + [5033,22882], + [5035,18717], + [5037,6638], + [5039,3160], + [5041,5302], + [5043,7383], + [5045,40928], + [5047,6741], + [5049,4823], + [5051,40146], + [5053,6761], + [5055,16154], + [5057,8715], + [5059,11942], + [5061,5158], + [5063,14799], + [5065,5762], + [5067,6391], + [5069,28048], + [5071,9350], + [5073,2775], + [5075,6768], + [5077,3516], + [5079,4057], + [5081,5405], + [5083,8323], + [5085,24136], + [5087,5762], + [5089,7239], + [5091,16577], + [5093,17202], + [5095,3453], + [5097,3753], + [5099,3782], + [5101,3555], + [5103,10714], + [5105,3952], + [5107,8325], + [5109,4137], + [5111,9545], + [5113,8156], + [5115,22535], + [5117,3563], + [5119,155160], + [5121,7255], + [5123,9086], + [5125,39103], + [5127,4341], + [5129,3457], + [5131,48572], + [5133,5849], + [5135,7189], + [5137,4966], + [5139,16787], + [5141,7065], + [5143,75564], + [5145,29049], + [5147,3323], + [5149,7912], + [6001,532026], + [6003,410], + [6005,14715], + [6007,85465], + [6009,18794], + [6011,6972], + [6013,368087], + [6015,9906], + [6017,68394], + [6019,283836], + [6021,9660], + [6023,54276], + [6025,47304], + [6027,7982], + [6029,248057], + [6031,40606], + [6033,25180], + [6035,10276], + [6037,3217889], + [6039,42089], + [6041,102727], + [6043,7724], + [6045,34374], + [6047,73586], + [6049,3977], + [6051,5283], + [6053,124963], + [6055,49179], + [6057,41255], + [6059,984503], + [6061,129153], + [6063,10090], + [6065,666906], + [6067,508499], + [6069,16812], + [6071,596125], + [6073,1061789], + [6075,335956], + [6077,212905], + [6079,102434], + [6081,255758], + [6083,141793], + [6085,596747], + [6087,93802], + [6089,69100], + [6091,1437], + [6093,20097], + [6095,139011], + [6097,184033], + [6099,163841], + [6101,31373], + [6103,23510], + [6105,5889], + [6107,126664], + [6109,22192], + [6111,264305], + [6113,69386], + [6115,23750], + [8001,147951], + [8003,5798], + [8005,218909], + [8007,3377], + [8009,1682], + [8011,1935], + [8013,117629], + [8014,20116], + [8015,7396], + [8017,829], + [8019,4164], + [8021,3121], + [8023,1454], + [8025,1163], + [8027,1850], + [8029,12700], + [8031,254181], + [8033,799], + [8035,98725], + [8037,18183], + [8039,8135], + [8041,227151], + [8043,16817], + [8045,19970], + [8047,2530], + [8049,5330], + [8051,6216], + [8053,255], + [8055,3154], + [8057,690], + [8059,217018], + [8061,706], + [8063,3010], + [8065,2725], + [8067,20512], + [8069,117415], + [8071,6420], + [8073,1919], + [8075,8146], + [8077,57123], + [8079,440], + [8081,5360], + [8083,11027], + [8085,16335], + [8087,10407], + [8089,7620], + [8091,1702], + [8093,7070], + [8095,1867], + [8097,7417], + [8099,4905], + [8101,61418], + [8103,2621], + [8105,3630], + [8107,10146], + [8109,2684], + [8111,411], + [8113,3228], + [8115,1007], + [8117,10553], + [8119,9004], + [8121,2186], + [8123,86776], + [8125,3941], + [9001,331782], + [9003,347625], + [9005,76688], + [9007,66975], + [9009,330785], + [9011,106590], + [9013,54452], + [9015,44321], + [10001,57396], + [10003,198499], + [10005,75744], + [11001,257317], + [12001,97540], + [12003,8309], + [12005,68807], + [12007,8931], + [12009,220871], + [12011,668898], + [12013,4765], + [12015,71991], + [12017,59974], + [12019,67493], + [12021,119517], + [12023,24177], + [12027,10656], + [12029,4909], + [12031,330276], + [12033,113313], + [12035,36182], + [12037,4699], + [12039,16303], + [12041,5976], + [12043,4165], + [12045,5347], + [12047,4532], + [12049,7694], + [12051,11200], + [12053,70254], + [12055,40374], + [12057,462447], + [12059,6768], + [12061,57560], + [12063,16767], + [12065,5233], + [12067,2307], + [12069,117544], + [12071,245751], + [12073,109314], + [12075,15814], + [12077,2008], + [12079,6776], + [12081,131200], + [12083,133966], + [12085,59203], + [12086,827556], + [12087,29791], + [12089,27255], + [12091,72442], + [12093,13642], + [12095,406002], + [12097,92526], + [12099,523150], + [12101,184813], + [12103,405649], + [12105,223689], + [12107,29168], + [12109,70324], + [12111,103103], + [12113,54860], + [12115,169009], + [12117,152682], + [12119,38589], + [12121,14983], + [12123,7724], + [12125,3521], + [12127,200346], + [12129,10540], + [12131,22916], + [12133,8753], + [13001,7145], + [13003,2758], + [13005,3873], + [13007,1342], + [13009,15902], + [13011,6463], + [13013,23045], + [13015,34301], + [13017,6582], + [13019,7293], + [13021,57222], + [13023,4268], + [13025,6629], + [13027,6303], + [13029,10466], + [13031,24245], + [13033,7686], + [13035,7789], + [13037,1746], + [13039,17834], + [13043,3735], + [13045,39421], + [13047,24098], + [13049,3720], + [13051,100450], + [13053,2537], + [13055,8870], + [13057,74339], + [13059,41980], + [13061,1115], + [13063,86546], + [13065,2520], + [13067,256741], + [13069,14539], + [13071,15695], + [13073,41722], + [13075,6417], + [13077,44137], + [13079,4671], + [13081,8835], + [13083,6262], + [13085,8163], + [13087,10532], + [13089,264837], + [13091,7821], + [13093,4856], + [13095,36072], + [13097,44747], + [13099,4077], + [13101,1297], + [13103,17480], + [13105,7733], + [13107,8265], + [13109,4022], + [13111,10524], + [13113,37683], + [13115,34977], + [13117,55380], + [13119,8691], + [13121,357463], + [13123,11741], + [13125,1188], + [13127,30617], + [13129,19229], + [13131,9477], + [13133,6064], + [13135,260375], + [13137,15046], + [13139,60173], + [13141,2907], + [13143,10579], + [13145,11056], + [13147,9492], + [13149,4287], + [13151,66327], + [13153,50199], + [13155,3339], + [13157,20917], + [13159,4998], + [13161,5567], + [13163,6281], + [13165,3125], + [13167,3334], + [13169,10238], + [13171,6377], + [13173,3308], + [13175,17669], + [13177,9555], + [13179,22626], + [13181,3435], + [13183,4553], + [13185,38358], + [13187,10863], + [13189,8283], + [13191,5687], + [13193,4735], + [13195,9430], + [13197,3171], + [13199,8453], + [13201,2577], + [13205,8170], + [13207,9206], + [13209,3294], + [13211,6529], + [13213,14248], + [13215,72124], + [13217,33536], + [13219,11155], + [13221,4701], + [13223,46440], + [13225,9016], + [13227,11268], + [13229,6771], + [13231,5957], + [13233,14623], + [13235,4188], + [13237,8467], + [13239,1015], + [13241,7148], + [13243,2952], + [13245,74199], + [13247,28561], + [13249,1690], + [13251,4709], + [13253,3147], + [13255,23105], + [13257,9307], + [13259,2248], + [13261,11508], + [13263,2682], + [13265,741], + [13267,7750], + [13269,3430], + [13271,5681], + [13273,3457], + [13275,17399], + [13277,14442], + [13279,10077], + [13281,4758], + [13283,2496], + [13285,23690], + [13287,3096], + [13289,3070], + [13291,9471], + [13293,10502], + [13295,25901], + [13297,29147], + [13299,13053], + [13301,2357], + [13303,7167], + [13305,10362], + [13307,1107], + [13309,1664], + [13311,12063], + [13313,34292], + [13315,2619], + [13317,3999], + [13319,3511], + [13321,7940], + [15001,64382], + [15003,304827], + [15005,67], + [15007,21710], + [15009,51281], + [16001,145584], + [16003,1700], + [16005,29860], + [16007,2538], + [16009,3840], + [16011,14319], + [16013,9125], + [16015,3024], + [16017,18206], + [16019,35358], + [16021,4186], + [16023,1149], + [16025,427], + [16027,62008], + [16029,2726], + [16031,7550], + [16033,334], + [16035,3656], + [16037,1918], + [16039,9522], + [16041,4080], + [16043,4504], + [16045,6512], + [16047,5512], + [16049,6596], + [16051,7781], + [16053,7229], + [16055,54560], + [16057,14635], + [16059,3545], + [16061,1644], + [16063,1814], + [16065,9868], + [16067,6751], + [16069,16163], + [16071,1556], + [16073,4016], + [16075,8303], + [16077,2598], + [16079,5776], + [16081,3786], + [16083,27626], + [16085,4388], + [16087,4010], + [17001,27149], + [17003,3316], + [17005,6255], + [17007,17908], + [17009,2139], + [17011,14580], + [17013,2045], + [17015,7010], + [17017,5057], + [17019,77851], + [17021,14135], + [17023,6747], + [17025,5615], + [17027,13999], + [17029,20906], + [17031,1936481], + [17033,7819], + [17035,4172], + [17037,37825], + [17039,6811], + [17041,7572], + [17043,335453], + [17045,7877], + [17047,2788], + [17049,13462], + [17051,8176], + [17053,5638], + [17055,16228], + [17057,14673], + [17059,2377], + [17061,5789], + [17063,17961], + [17065,3503], + [17067,8012], + [17069,1868], + [17071,3246], + [17073,20433], + [17075,11835], + [17077,23773], + [17079,4004], + [17081,15364], + [17083,8626], + [17085,10001], + [17087,4396], + [17089,168980], + [17091,40943], + [17093,35687], + [17095,21863], + [17097,239246], + [17099,45326], + [17101,6300], + [17103,13731], + [17105,14630], + [17107,10981], + [17109,12923], + [17111,108106], + [17113,63145], + [17115,44947], + [17117,19371], + [17119,106867], + [17121,16148], + [17123,5160], + [17125,6475], + [17127,6293], + [17129,5056], + [17131,6862], + [17133,12391], + [17135,11698], + [17137,14003], + [17139,5627], + [17141,20669], + [17143,75011], + [17145,8268], + [17147,6555], + [17149,6648], + [17151,1847], + [17153,2529], + [17155,2535], + [17157,11999], + [17159,6675], + [17161,60454], + [17163,103084], + [17165,10583], + [17167,81968], + [17169,3008], + [17171,2140], + [17173,9035], + [17175,2411], + [17177,19645], + [17179,53727], + [17181,7062], + [17183,32236], + [17185,4901], + [17187,6878], + [17189,6057], + [17191,7212], + [17193,6464], + [17195,23599], + [17197,220135], + [17199,26324], + [17201,112466], + [17203,14192], + [18001,12243], + [18003,135807], + [18005,29856], + [18007,3558], + [18009,5389], + [18011,20801], + [18013,5913], + [18015,8033], + [18017,14981], + [18019,43255], + [18021,10262], + [18023,11906], + [18025,4344], + [18027,11016], + [18029,18311], + [18031,9952], + [18033,15930], + [18035,46212], + [18037,15900], + [18039,70035], + [18041,9864], + [18043,28966], + [18045,6952], + [18047,8347], + [18049,8451], + [18051,13001], + [18053,26711], + [18055,13137], + [18057,95835], + [18059,25416], + [18061,14317], + [18063,50936], + [18065,18971], + [18067,34330], + [18069,14224], + [18071,16753], + [18073,12230], + [18075,8288], + [18077,12667], + [18079,11007], + [18081,51080], + [18083,14856], + [18085,30555], + [18087,12171], + [18089,182952], + [18091,42090], + [18093,18679], + [18095,51436], + [18097,357081], + [18099,17631], + [18101,4113], + [18103,13506], + [18105,51388], + [18107,14503], + [18109,24925], + [18111,5446], + [18113,17498], + [18115,2495], + [18117,7866], + [18119,8371], + [18121,6437], + [18123,7687], + [18125,5293], + [18127,61370], + [18129,10035], + [18131,5105], + [18133,12785], + [18135,10369], + [18137,10717], + [18139,6684], + [18141,100540], + [18143,9271], + [18145,17196], + [18147,8102], + [18149,8992], + [18151,13944], + [18153,8033], + [18155,4060], + [18157,64093], + [18159,6651], + [18161,2933], + [18163,73973], + [18165,6639], + [18167,40490], + [18169,13055], + [18171,3304], + [18173,22093], + [18175,10810], + [18177,27953], + [18179,10728], + [18181,10065], + [18183,13246], + [19001,3409], + [19003,1764], + [19005,5807], + [19007,5573], + [19009,2700], + [19011,10200], + [19013,51822], + [19015,10801], + [19017,9397], + [19019,8212], + [19021,7551], + [19023,6059], + [19025,4316], + [19027,8661], + [19029,6000], + [19031,7547], + [19033,19839], + [19035,5373], + [19037,5328], + [19039,3511], + [19041,7459], + [19043,7684], + [19045,20074], + [19047,6475], + [19049,23973], + [19051,3122], + [19053,3248], + [19055,7336], + [19057,16862], + [19059,8103], + [19061,36787], + [19063,4286], + [19065,8474], + [19067,6779], + [19069,4189], + [19071,3119], + [19073,4168], + [19075,5042], + [19077,4669], + [19079,6603], + [19081,4774], + [19083,7353], + [19085,6096], + [19087,7657], + [19089,4021], + [19091,4289], + [19093,3123], + [19095,6657], + [19097,8381], + [19099,15036], + [19101,6826], + [19103,50985], + [19105,8093], + [19107,4571], + [19109,6661], + [19111,14234], + [19113,85447], + [19115,4280], + [19117,3668], + [19119,4365], + [19121,5753], + [19123,8988], + [19125,12522], + [19127,15517], + [19129,5581], + [19131,4328], + [19133,4200], + [19135,3384], + [19137,4519], + [19139,16481], + [19141,6022], + [19143,2724], + [19145,6396], + [19147,3979], + [19149,9804], + [19151,3317], + [19153,168352], + [19155,36325], + [19157,7650], + [19159,2072], + [19161,4535], + [19163,66318], + [19165,5070], + [19167,11522], + [19169,34227], + [19171,7058], + [19173,2687], + [19175,5326], + [19177,3098], + [19179,14764], + [19181,17008], + [19183,8767], + [19185,2742], + [19187,15936], + [19189,4711], + [19191,7869], + [19193,38739], + [19195,3279], + [19197,5545], + [20001,5575], + [20003,3188], + [20005,6220], + [20007,2304], + [20009,11472], + [20011,5833], + [20013,4080], + [20015,23987], + [20017,1175], + [20019,1554], + [20021,8362], + [20023,1269], + [20025,954], + [20027,3561], + [20029,3970], + [20031,3445], + [20033,832], + [20035,13583], + [20037,15484], + [20039,1517], + [20041,7559], + [20043,3123], + [20045,42943], + [20047,1389], + [20049,1340], + [20051,11721], + [20053,2564], + [20055,11974], + [20057,11010], + [20059,10197], + [20061,11379], + [20063,1182], + [20065,1157], + [20067,2723], + [20069,2051], + [20071,507], + [20073,3020], + [20075,1125], + [20077,2647], + [20079,13252], + [20081,1381], + [20083,787], + [20085,5205], + [20087,7512], + [20089,1455], + [20091,210278], + [20093,1433], + [20095,3464], + [20097,994], + [20099,8952], + [20101,757], + [20103,25778], + [20105,1444], + [20107,4306], + [20109,1334], + [20111,13752], + [20113,11715], + [20115,5063], + [20117,4291], + [20119,1767], + [20121,11931], + [20123,2692], + [20125,14564], + [20127,2604], + [20129,1278], + [20131,3955], + [20133,6742], + [20135,1369], + [20137,2221], + [20139,6739], + [20141,1726], + [20143,2311], + [20145,2520], + [20147,2337], + [20149,7764], + [20151,3979], + [20153,1186], + [20155,25876], + [20157,2377], + [20159,4011], + [20161,24838], + [20163,2401], + [20165,1592], + [20167,3245], + [20169,21932], + [20171,2129], + [20173,190832], + [20175,7472], + [20177,73066], + [20179,1104], + [20181,2567], + [20183,1830], + [20185,1860], + [20187,731], + [20189,2061], + [20191,9280], + [20193,3039], + [20195,1276], + [20197,2750], + [20199,584], + [20201,2496], + [20203,856], + [20205,3872], + [20207,1574], + [20209,57207], + [21001,7272], + [21003,7811], + [21005,8319], + [21007,3363], + [21009,16727], + [21011,4338], + [21013,10902], + [21015,41612], + [21017,8132], + [21019,19542], + [21021,10787], + [21023,3177], + [21025,5257], + [21027,7474], + [21029,27266], + [21031,5175], + [21033,5261], + [21035,14844], + [21037,35300], + [21039,2062], + [21041,4222], + [21043,10577], + [21045,6012], + [21047,25923], + [21049,14535], + [21051,6520], + [21053,4184], + [21055,3749], + [21057,2660], + [21059,37644], + [21061,4752], + [21063,2546], + [21065,5604], + [21067,120917], + [21069,5568], + [21071,15542], + [21073,20878], + [21075,2931], + [21077,2971], + [21079,6294], + [21081,8906], + [21083,14679], + [21085,9902], + [21087,4435], + [21089,14374], + [21091,3234], + [21093,37426], + [21095,10700], + [21097,7275], + [21099,7050], + [21101,18499], + [21103,5917], + [21105,2057], + [21107,18401], + [21109,5728], + [21111,300561], + [21113,17482], + [21115,9151], + [21117,61912], + [21119,6012], + [21121,12573], + [21123,5005], + [21125,21714], + [21127,5647], + [21129,2750], + [21131,4450], + [21133,9586], + [21135,5030], + [21137,9983], + [21139,3605], + [21141,10697], + [21143,3272], + [21145,27541], + [21147,6351], + [21149,3736], + [21151,30756], + [21153,4671], + [21155,7135], + [21157,12795], + [21159,4337], + [21161,6674], + [21163,10043], + [21165,2345], + [21167,8464], + [21169,3991], + [21171,4347], + [21173,10066], + [21175,4433], + [21177,12364], + [21179,16173], + [21181,2741], + [21183,8770], + [21185,19280], + [21187,4679], + [21189,1487], + [21191,5326], + [21193,10816], + [21195,27022], + [21197,4701], + [21199,25872], + [21201,852], + [21203,6475], + [21205,8285], + [21207,7466], + [21209,17242], + [21211,15051], + [21213,6667], + [21215,6086], + [21217,9628], + [21219,4640], + [21221,6074], + [21223,3390], + [21225,5639], + [21227,41979], + [21229,4463], + [21231,8604], + [21233,4992], + [21235,13102], + [21237,2493], + [21239,10001], + [22001,21984], + [22003,8388], + [22005,35640], + [22007,8467], + [22009,15767], + [22011,12787], + [22013,5689], + [22015,43186], + [22017,97293], + [22019,71601], + [22021,3651], + [22023,2663], + [22025,3794], + [22027,5890], + [22029,7570], + [22031,10121], + [22033,166543], + [22035,2426], + [22037,6662], + [22039,12304], + [22041,7844], + [22043,7407], + [22045,26194], + [22047,11118], + [22049,5967], + [22051,162881], + [22053,11786], + [22055,83810], + [22057,34108], + [22059,5245], + [22061,16248], + [22063,42962], + [22065,3973], + [22067,10282], + [22069,14847], + [22071,116638], + [22073,56192], + [22075,7718], + [22077,8859], + [22079,48127], + [22081,3203], + [22083,7417], + [22085,9446], + [22087,10295], + [22089,18460], + [22091,4072], + [22093,7455], + [22095,15772], + [22097,30082], + [22099,18931], + [22101,20054], + [22103,84536], + [22105,42558], + [22107,2165], + [22109,38078], + [22111,8309], + [22113,21786], + [22115,18032], + [22117,17292], + [22119,16565], + [22121,8386], + [22123,4061], + [22125,4116], + [22127,5462], + [23001,44040], + [23003,30672], + [23005,116616], + [23007,12498], + [23009,23300], + [23011,50869], + [23013,16945], + [23015,15365], + [23017,23276], + [23019,62282], + [23021,8037], + [23023,14721], + [23025,21892], + [23027,16136], + [23029,14177], + [23031,80299], + [24001,28777], + [24003,195999], + [24005,315542], + [24009,30313], + [24011,11828], + [24013,59412], + [24015,36182], + [24017,49898], + [24019,13347], + [24021,83455], + [24023,12284], + [24025,89421], + [24027,102271], + [24029,7735], + [24031,353177], + [24033,301906], + [24035,17188], + [24037,36253], + [24039,8327], + [24041,15603], + [24043,55419], + [24045,36302], + [24047,22016], + [24510,238392], + [25001,98164], + [25003,55623], + [25005,210789], + [25007,5530], + [25009,282913], + [25011,30447], + [25013,177725], + [25015,58612], + [25017,572847], + [25019,3623], + [25021,255180], + [25023,178983], + [25025,283954], + [25027,298162], + [26001,4608], + [26003,3688], + [26005,42078], + [26007,13357], + [26009,10043], + [26011,6686], + [26013,3336], + [26015,22843], + [26017,44345], + [26019,7366], + [26021,62612], + [26023,16350], + [26025,53925], + [26027,20201], + [26029,11355], + [26031,11790], + [26033,14836], + [26035,13145], + [26037,28321], + [26039,5761], + [26041,16339], + [26043,11414], + [26045,43358], + [26047,13833], + [26049,168984], + [26051,11321], + [26053,7302], + [26055,34578], + [26057,14718], + [26059,17506], + [26061,13991], + [26063,14419], + [26065,108723], + [26067,22645], + [26069,11202], + [26071,5386], + [26073,24804], + [26075,60612], + [26077,99456], + [26079,7232], + [26081,227177], + [26083,957], + [26085,4078], + [26087,32937], + [26089,9349], + [26091,37831], + [26093,67265], + [26095,2473], + [26097,4927], + [26099,330322], + [26101,10747], + [26103,25638], + [26105,12320], + [26107,16081], + [26109,10841], + [26111,33562], + [26113,5809], + [26115,58298], + [26117,23133], + [26119,4335], + [26121,65778], + [26123,18952], + [26125,481040], + [26127,9974], + [26129,8255], + [26131,3410], + [26133,8955], + [26135,4052], + [26137,9753], + [26139,92526], + [26141,6332], + [26143,11449], + [26145,76764], + [26147,64606], + [26149,22478], + [26151,17156], + [26153,3621], + [26155,27639], + [26157,21787], + [26159,29096], + [26161,134161], + [26163,690943], + [26165,12721], + [27001,7903], + [27003,120026], + [27005,13345], + [27007,16759], + [27009,14986], + [27011,2366], + [27013,23889], + [27015,10798], + [27017,13724], + [27019,32202], + [27021,12944], + [27023,5193], + [27025,19328], + [27027,21684], + [27029,3698], + [27031,2607], + [27033,4912], + [27035,26913], + [27037,151122], + [27039,7301], + [27041,16070], + [27043,6301], + [27045,8546], + [27047,13186], + [27049,18758], + [27051,2663], + [27053,473856], + [27055,7770], + [27057,8616], + [27059,13988], + [27061,18998], + [27063,4531], + [27065,6439], + [27067,17069], + [27069,1954], + [27071,6246], + [27073,3137], + [27075,5181], + [27077,1784], + [27079,10758], + [27081,2587], + [27083,10263], + [27085,14510], + [27087,1994], + [27089,4141], + [27091,8982], + [27093,9394], + [27095,10538], + [27097,13496], + [27099,16018], + [27101,3831], + [27103,12150], + [27105,8065], + [27107,2889], + [27109,56066], + [27111,24691], + [27113,5720], + [27115,11600], + [27117,3926], + [27119,12509], + [27121,4824], + [27123,203382], + [27125,1751], + [27127,6661], + [27129,6539], + [27131,22213], + [27133,3885], + [27135,6331], + [27137,86561], + [27139,43814], + [27141,29224], + [27143,6117], + [27145,56365], + [27147,14138], + [27149,3725], + [27151,4190], + [27153,10065], + [27155,1636], + [27157,8799], + [27159,5959], + [27161,7284], + [27163,86315], + [27165,4399], + [27167,2779], + [27169,19414], + [27171,44413], + [27173,4213], + [28001,12354], + [28003,13685], + [28005,4993], + [28007,7286], + [28009,3303], + [28011,12666], + [28013,5835], + [28015,3989], + [28017,6775], + [28019,3593], + [28021,3308], + [28023,6787], + [28025,7857], + [28027,9351], + [28029,10275], + [28031,7257], + [28033,55768], + [28035,28115], + [28037,2995], + [28039,7858], + [28041,4181], + [28043,8945], + [28045,15818], + [28047,66990], + [28049,88201], + [28051,6739], + [28053,3364], + [28055,587], + [28057,8907], + [28059,49137], + [28061,6817], + [28063,2831], + [28065,4904], + [28067,25060], + [28069,3793], + [28071,16418], + [28073,20345], + [28075,30231], + [28077,4983], + [28079,7500], + [28081,31508], + [28083,11271], + [28085,13269], + [28087,23067], + [28089,34708], + [28091,9651], + [28093,12738], + [28095,14725], + [28097,4347], + [28099,10597], + [28101,7989], + [28103,4169], + [28105,17933], + [28107,12325], + [28109,20628], + [28111,4753], + [28113,14785], + [28115,10200], + [28117,9570], + [28119,3173], + [28121,51774], + [28123,9811], + [28125,1651], + [28127,10343], + [28129,6052], + [28131,5995], + [28133,8534], + [28135,4739], + [28137,9950], + [28139,8591], + [28141,7709], + [28143,4039], + [28145,10163], + [28147,5476], + [28149,19267], + [28151,19039], + [28153,8375], + [28155,3892], + [28157,3464], + [28159,7360], + [28161,4981], + [28163,8640], + [29001,9584], + [29003,6633], + [29005,2474], + [29007,9532], + [29009,14256], + [29011,4984], + [29013,6605], + [29015,8273], + [29017,4807], + [29019,63420], + [29021,33913], + [29023,17071], + [29025,3759], + [29027,16643], + [29029,18349], + [29031,29624], + [29033,3868], + [29035,2435], + [29037,36399], + [29039,6135], + [29041,3145], + [29043,28385], + [29045,2811], + [29047,86034], + [29049,8091], + [29051,29111], + [29053,6397], + [29055,9467], + [29057,3276], + [29059,6444], + [29061,3288], + [29063,3961], + [29065,6124], + [29067,4913], + [29069,12885], + [29071,38556], + [29073,6470], + [29075,2670], + [29077,112993], + [29079,4259], + [29081,3534], + [29083,9459], + [29085,4478], + [29087,2219], + [29089,3856], + [29091,15404], + [29093,4287], + [29095,271192], + [29097,44505], + [29099,80083], + [29101,19184], + [29103,1746], + [29105,14352], + [29107,13394], + [29109,15043], + [29111,3764], + [29113,18061], + [29115,5062], + [29117,5688], + [29119,8016], + [29121,6348], + [29123,4757], + [29125,3615], + [29127,11384], + [29129,1554], + [29131,10410], + [29133,5287], + [29135,5475], + [29137,3835], + [29139,4869], + [29141,8414], + [29143,7719], + [29145,21618], + [29147,8341], + [29149,4470], + [29151,5301], + [29153,3964], + [29155,7026], + [29157,7691], + [29159,16288], + [29161,16726], + [29163,6721], + [29165,35065], + [29167,11718], + [29169,15412], + [29171,2224], + [29173,4139], + [29175,9070], + [29177,9196], + [29179,2878], + [29181,5558], + [29183,130973], + [29185,4320], + [29186,7369], + [29187,24122], + [29189,404777], + [29195,8939], + [29197,2097], + [29199,1980], + [29201,15520], + [29203,3402], + [29205,2705], + [29207,12130], + [29209,13529], + [29211,2642], + [29213,20281], + [29215,9523], + [29217,8329], + [29219,12122], + [29221,9070], + [29223,5838], + [29225,12928], + [29227,977], + [29229,7499], + [29510,140439], + [30001,3918], + [30003,3584], + [30005,2338], + [30007,1878], + [30009,4149], + [30011,580], + [30013,33164], + [30015,2170], + [30017,5168], + [30019,773], + [30021,3715], + [30023,4136], + [30025,1193], + [30027,4966], + [30029,36348], + [30031,35753], + [30033,506], + [30035,4253], + [30037,334], + [30039,1461], + [30041,6086], + [30043,4428], + [30045,867], + [30047,12015], + [30049,26075], + [30051,816], + [30053,9237], + [30055,694], + [30057,3813], + [30059,767], + [30061,1760], + [30063,44172], + [30065,2035], + [30067,6983], + [30069,283], + [30071,1816], + [30073,2311], + [30075,688], + [30077,2397], + [30079,497], + [30081,16643], + [30083,4072], + [30085,3374], + [30087,3225], + [30089,5119], + [30091,1674], + [30093,14847], + [30095,3752], + [30097,1510], + [30099,2458], + [30101,1992], + [30103,319], + [30105,3152], + [30107,929], + [30109,389], + [30111,59746], + [31001,12403], + [31003,2792], + [31005,178], + [31007,320], + [31009,242], + [31011,2382], + [31013,4793], + [31015,932], + [31017,1340], + [31019,17268], + [31021,2951], + [31023,3451], + [31025,9610], + [31027,3419], + [31029,1710], + [31031,2505], + [31033,4348], + [31035,2621], + [31037,3706], + [31039,3841], + [31041,4585], + [31043,7281], + [31045,3594], + [31047,8908], + [31049,931], + [31051,2389], + [31053,14994], + [31055,198410], + [31057,879], + [31059,2572], + [31061,1385], + [31063,1156], + [31065,2149], + [31067,9219], + [31069,969], + [31071,875], + [31073,801], + [31075,293], + [31077,965], + [31079,21878], + [31081,3464], + [31083,1547], + [31085,440], + [31087,1280], + [31089,4244], + [31091,320], + [31093,2681], + [31095,3279], + [31097,1980], + [31099,2630], + [31101,3735], + [31103,346], + [31105,1662], + [31107,3847], + [31109,111933], + [31111,15038], + [31113,320], + [31115,242], + [31117,204], + [31119,13663], + [31121,3145], + [31123,2136], + [31125,1528], + [31127,3024], + [31129,2060], + [31131,6335], + [31133,1309], + [31135,1240], + [31137,3832], + [31139,2917], + [31141,12378], + [31143,2230], + [31145,4658], + [31147,3862], + [31149,713], + [31151,5020], + [31153,56512], + [31155,7985], + [31157,14902], + [31159,6394], + [31161,2434], + [31163,1362], + [31165,598], + [31167,2419], + [31169,2247], + [31171,332], + [31173,2054], + [31175,1913], + [31177,7431], + [31179,3316], + [31181,1478], + [31183,336], + [31185,5771], + [32001,8801], + [32003,695701], + [32005,19183], + [32007,17324], + [32009,507], + [32011,724], + [32013,6087], + [32015,1945], + [32017,1759], + [32019,17766], + [32021,2331], + [32023,17943], + [32027,1980], + [32029,1826], + [32031,160797], + [32033,3480], + [32510,21467], + [33001,24942], + [33003,19955], + [33005,30087], + [33007,14915], + [33009,34312], + [33011,153120], + [33013,56948], + [33015,114722], + [33017,46576], + [33019,18227], + [34001,101645], + [34003,333874], + [34005,165284], + [34007,190670], + [34009,45420], + [34011,50825], + [34013,277426], + [34015,102632], + [34017,237726], + [34019,47182], + [34021,129213], + [34023,277398], + [34025,232513], + [34027,178638], + [34029,222396], + [34031,161428], + [34033,25117], + [34035,114431], + [34037,55842], + [34039,184808], + [34041,41601], + [35001,259165], + [35003,1824], + [35005,23479], + [35006,8089], + [35007,5768], + [35009,17318], + [35011,784], + [35013,71748], + [35015,19320], + [35017,12531], + [35019,1492], + [35021,321], + [35023,1705], + [35025,21255], + [35027,8629], + [35028,7566], + [35029,9204], + [35031,17631], + [35033,1815], + [35035,24031], + [35037,3840], + [35039,14934], + [35041,6794], + [35043,44860], + [35045,41767], + [35047,11786], + [35049,60144], + [35051,4747], + [35053,5996], + [35055,13146], + [35057,5849], + [35059,1739], + [35061,26835], + [36001,124391], + [36003,18987], + [36005,472464], + [36007,80806], + [36009,32666], + [36011,32038], + [36013,55044], + [36015,35418], + [36017,19989], + [36019,31056], + [36021,25686], + [36023,17901], + [36025,20110], + [36027,106952], + [36029,378080], + [36031,16098], + [36033,19115], + [36035,23006], + [36037,23790], + [36039,18502], + [36041,2381], + [36043,26291], + [36045,44109], + [36047,903991], + [36049,10761], + [36051,24135], + [36053,26851], + [36055,291195], + [36057,20320], + [36059,442833], + [36061,732204], + [36063,88152], + [36065,92058], + [36067,183542], + [36069,42952], + [36071,124379], + [36073,15736], + [36075,45749], + [36077,24926], + [36079,34907], + [36081,774311], + [36083,63518], + [36085,164279], + [36087,97557], + [36089,42019], + [36091,86658], + [36093,58583], + [36095,12989], + [36097,7482], + [36099,13118], + [36101,40558], + [36103,495289], + [36105,29722], + [36107,20402], + [36109,38446], + [36111,70691], + [36113,28533], + [36115,24603], + [36117,36619], + [36119,345795], + [36121,15453], + [36123,9544], + [37001,59000], + [37003,13419], + [37005,4971], + [37007,9535], + [37009,11848], + [37011,7194], + [37013,20059], + [37015,8160], + [37017,13974], + [37019,45409], + [37021,99309], + [37023,34888], + [37025,63680], + [37027,31296], + [37029,3442], + [37031,28632], + [37033,8788], + [37035,59251], + [37037,24877], + [37039,11497], + [37041,5904], + [37043,4510], + [37045,37679], + [37047,21779], + [37049,40202], + [37051,117311], + [37053,9396], + [37055,15465], + [37057,64484], + [37059,15832], + [37061,20969], + [37063,105201], + [37065,21601], + [37067,136612], + [37069,22765], + [37071,77363], + [37073,4406], + [37075,3784], + [37077,19820], + [37079,7021], + [37081,189561], + [37083,21590], + [37085,39111], + [37087,26445], + [37089,45109], + [37091,9007], + [37093,14232], + [37095,1921], + [37097,58006], + [37099,15866], + [37101,59093], + [37103,4086], + [37105,20986], + [37107,24142], + [37109,29407], + [37111,17560], + [37113,15780], + [37115,8002], + [37117,9954], + [37119,350392], + [37121,6812], + [37123,9853], + [37125,34030], + [37127,37762], + [37129,83679], + [37131,8377], + [37133,56633], + [37135,50085], + [37137,5463], + [37139,14563], + [37141,20209], + [37143,5353], + [37145,15388], + [37147,64005], + [37149,9038], + [37151,54925], + [37153,17228], + [37155,44504], + [37157,37831], + [37159,52877], + [37161,27458], + [37163,23781], + [37165,13236], + [37167,22134], + [37169,18759], + [37171,29668], + [37173,5772], + [37175,13847], + [37177,1663], + [37179,65635], + [37181,16473], + [37183,325486], + [37185,7835], + [37187,4911], + [37189,21153], + [37191,46280], + [37193,27814], + [37195,31677], + [37197,14908], + [37199,7491], + [38001,1015], + [38003,4830], + [38005,2307], + [38007,354], + [38009,3010], + [38011,1318], + [38013,982], + [38015,33001], + [38017,62916], + [38019,1760], + [38021,2167], + [38023,1012], + [38025,1318], + [38027,1036], + [38029,1608], + [38031,1506], + [38033,730], + [38035,26514], + [38037,1152], + [38039,1099], + [38041,1177], + [38043,1188], + [38045,1962], + [38047,815], + [38049,2540], + [38051,1337], + [38053,2468], + [38055,3937], + [38057,3644], + [38059,10724], + [38061,2851], + [38063,1448], + [38065,762], + [38067,3289], + [38069,1847], + [38071,4762], + [38073,2345], + [38075,1097], + [38077,6517], + [38079,4653], + [38081,1770], + [38083,638], + [38085,1060], + [38087,327], + [38089,9643], + [38091,825], + [38093,8633], + [38095,1056], + [38097,3425], + [38099,4756], + [38101,24260], + [38103,2059], + [38105,9192], + [39001,10754], + [39003,40719], + [39005,20040], + [39007,38911], + [39009,22283], + [39011,18209], + [39013,29004], + [39015,15997], + [39017,134287], + [39019,11488], + [39021,15161], + [39023,55145], + [39025,72927], + [39027,16323], + [39029,42162], + [39031,14582], + [39033,18105], + [39035,538944], + [39037,20769], + [39039,15232], + [39041,61203], + [39043,31855], + [39045,53911], + [39047,11597], + [39049,457799], + [39051,16345], + [39053,12246], + [39055,34285], + [39057,61962], + [39059,16217], + [39061,327864], + [39063,30632], + [39065,11768], + [39067,6377], + [39069,11111], + [39071,16638], + [39073,11486], + [39075,12120], + [39077,22972], + [39079,13105], + [39081,29130], + [39083,22582], + [39085,94211], + [39087,24631], + [39089,62569], + [39091,18398], + [39093,114479], + [39095,179000], + [39097,14745], + [39099,99024], + [39101,24863], + [39103,64202], + [39105,9675], + [39107,15606], + [39109,41087], + [39111,6174], + [39113,223660], + [39115,6187], + [39117,13037], + [39119,34121], + [39121,4904], + [39123,17933], + [39125,7661], + [39127,13554], + [39129,19045], + [39131,10643], + [39133,61819], + [39135,16392], + [39137,12891], + [39139,48557], + [39141,28107], + [39143,24109], + [39145,30162], + [39147,22138], + [39149,18488], + [39151,150921], + [39153,223122], + [39155,86463], + [39157,36128], + [39159,17826], + [39161,11472], + [39163,5349], + [39165,74144], + [39167,25373], + [39169,42395], + [39171,14953], + [39173,48636], + [39175,9169], + [40001,7919], + [40003,2032], + [40005,5272], + [40007,2213], + [40009,7778], + [40011,4079], + [40013,16060], + [40015,10410], + [40017,40119], + [40019,17648], + [40021,16655], + [40023,6145], + [40025,1117], + [40027,93179], + [40029,2327], + [40031,43757], + [40033,2442], + [40035,5682], + [40037,26633], + [40039,10391], + [40041,16070], + [40043,1802], + [40045,1688], + [40047,23694], + [40049,10092], + [40051,19391], + [40053,1885], + [40055,2094], + [40057,1128], + [40059,1537], + [40061,4640], + [40063,5159], + [40065,10384], + [40067,2488], + [40069,4261], + [40071,18397], + [40073,5439], + [40075,3846], + [40077,4130], + [40079,18651], + [40081,12799], + [40083,14468], + [40085,3595], + [40087,11819], + [40089,13255], + [40091,7670], + [40093,3138], + [40095,5718], + [40097,16073], + [40099,5232], + [40101,26927], + [40103,4493], + [40105,4224], + [40107,4321], + [40109,279434], + [40111,15342], + [40113,18055], + [40115,12164], + [40117,6119], + [40119,28735], + [40121,18623], + [40123,14782], + [40125,25069], + [40127,4755], + [40129,1376], + [40131,31318], + [40133,9220], + [40135,15328], + [40137,17781], + [40139,7083], + [40141,3039], + [40143,238715], + [40145,25576], + [40147,21196], + [40149,4476], + [40151,3549], + [40153,7604], + [41001,6902], + [41003,33471], + [41005,143357], + [41007,16267], + [41009,19075], + [41011,27247], + [41013,8754], + [41015,10473], + [41017,63190], + [41019,43916], + [41021,851], + [41023,3349], + [41025,3350], + [41027,7985], + [41029,83333], + [41031,7795], + [41033,34325], + [41035,27663], + [41037,3462], + [41039,143894], + [41041,20652], + [41043,44375], + [41045,10181], + [41047,112773], + [41049,3876], + [41051,298398], + [41053,27690], + [41055,813], + [41057,11126], + [41059,26545], + [41061,10269], + [41063,3015], + [41065,9801], + [41067,196438], + [41069,631], + [41071,34025], + [42001,38331], + [42003,522703], + [42005,28814], + [42007,70350], + [42009,19913], + [42011,153307], + [42013,51651], + [42015,24861], + [42017,229552], + [42019,71911], + [42021,58802], + [42023,2181], + [42025,26111], + [42027,54971], + [42029,181136], + [42031,15742], + [42033,32823], + [42035,15238], + [42037,25884], + [42039,35456], + [42041,93739], + [42043,107808], + [42045,206542], + [42047,13743], + [42049,108252], + [42051,55363], + [42053,1996], + [42055,58290], + [42057,5848], + [42059,14010], + [42061,16876], + [42063,34375], + [42065,18236], + [42067,9037], + [42069,86318], + [42071,191474], + [42073,36587], + [42075,51543], + [42077,132879], + [42079,130855], + [42081,46612], + [42083,17324], + [42085,46681], + [42087,19051], + [42089,59997], + [42091,306661], + [42093,7310], + [42095,111929], + [42097,39234], + [42099,17943], + [42101,574488], + [42103,22190], + [42105,7291], + [42107,60347], + [42109,14258], + [42111,30319], + [42113,2436], + [42115,17225], + [42117,17182], + [42119,14963], + [42121,22457], + [42123,17630], + [42125,83604], + [42127,19678], + [42129,152640], + [42131,11023], + [42133,166600], + [44001,19236], + [44003,69109], + [44005,34771], + [44007,238059], + [44009,49130], + [45001,9875], + [45003,62072], + [45005,3458], + [45007,71973], + [45009,5658], + [45011,8429], + [45013,63459], + [45015,60472], + [45017,6121], + [45019,137844], + [45021,20975], + [45023,12497], + [45025,17235], + [45027,12636], + [45029,15228], + [45031,25805], + [45033,11714], + [45035,47622], + [45037,9121], + [45039,9121], + [45041,51636], + [45043,22406], + [45045,171233], + [45047,26189], + [45049,7196], + [45051,112057], + [45053,7695], + [45055,23358], + [45057,28180], + [45059,25583], + [45061,6631], + [45063,100793], + [45065,4116], + [45067,12234], + [45069,9768], + [45071,14266], + [45073,29910], + [45075,34725], + [45077,44048], + [45079,141564], + [45081,6827], + [45083,106397], + [45085,38856], + [45087,12106], + [45089,11079], + [45091,81826], + [46003,1027], + [46005,7205], + [46007,1054], + [46009,2582], + [46011,11405], + [46013,14942], + [46015,2077], + [46017,503], + [46019,3977], + [46021,612], + [46023,3236], + [46025,1387], + [46027,4936], + [46029,11336], + [46031,1114], + [46033,3654], + [46035,8086], + [46037,2504], + [46039,1802], + [46041,1699], + [46043,1224], + [46045,1587], + [46047,3014], + [46049,913], + [46051,3183], + [46053,1973], + [46055,769], + [46057,2025], + [46059,1483], + [46061,1156], + [46063,526], + [46065,7111], + [46067,2961], + [46069,588], + [46071,964], + [46073,903], + [46075,471], + [46077,2332], + [46079,4533], + [46081,10651], + [46083,15782], + [46085,1449], + [46087,2171], + [46089,1048], + [46091,1737], + [46093,9714], + [46095,677], + [46097,1089], + [46099,65462], + [46101,2595], + [46102,2828], + [46103,39939], + [46105,1371], + [46107,1019], + [46109,3766], + [46111,966], + [46115,2640], + [46117,1160], + [46119,587], + [46121,2553], + [46123,2542], + [46125,3403], + [46127,5799], + [46129,2208], + [46135,8688], + [46137,770], + [47001,30939], + [47003,16005], + [47005,6980], + [47007,4430], + [47009,48151], + [47011,37476], + [47013,15791], + [47015,5321], + [47017,11090], + [47019,23933], + [47021,14198], + [47023,5987], + [47025,12512], + [47027,3621], + [47029,14757], + [47031,20869], + [47033,5549], + [47035,23035], + [47037,252477], + [47039,4985], + [47041,7165], + [47043,18889], + [47045,15079], + [47047,13498], + [47049,7331], + [47051,15750], + [47053,19548], + [47055,11697], + [47057,8623], + [47059,28134], + [47061,5258], + [47063,24451], + [47065,133953], + [47067,3008], + [47069,8993], + [47071,10505], + [47073,23669], + [47075,7445], + [47077,10850], + [47079,13534], + [47081,9020], + [47083,3392], + [47085,7555], + [47087,4648], + [47089,19597], + [47091,7376], + [47093,177855], + [47095,2300], + [47097,9365], + [47099,15786], + [47101,4546], + [47103,13452], + [47105,19441], + [47107,20810], + [47109,10113], + [47111,8204], + [47113,37020], + [47115,11305], + [47117,11707], + [47119,31745], + [47121,4558], + [47123,17546], + [47125,60412], + [47127,2396], + [47129,7954], + [47131,12662], + [47133,8830], + [47135,3293], + [47137,2174], + [47139,6311], + [47141,27560], + [47143,11861], + [47145,22572], + [47147,23793], + [47149,92343], + [47151,8617], + [47153,5083], + [47155,37583], + [47157,340443], + [47159,6837], + [47161,5383], + [47163,66584], + [47165,59503], + [47167,21235], + [47169,2814], + [47171,7600], + [47173,7390], + [47175,2096], + [47177,14994], + [47179,49111], + [47181,5877], + [47183,13781], + [47185,9827], + [47187,62508], + [47189,41221], + [48001,15904], + [48003,5205], + [48005,31100], + [48007,10056], + [48009,3363], + [48011,706], + [48013,14521], + [48015,10447], + [48017,2380], + [48019,8419], + [48021,25214], + [48023,1657], + [48025,8485], + [48027,101433], + [48029,580224], + [48031,3935], + [48033,244], + [48035,6732], + [48037,33573], + [48039,101656], + [48041,66105], + [48043,4151], + [48045,679], + [48047,2588], + [48049,13559], + [48051,6750], + [48053,16315], + [48055,11408], + [48057,7971], + [48059,5133], + [48061,113547], + [48063,4588], + [48065,2415], + [48067,12099], + [48069,2677], + [48071,11080], + [48073,16799], + [48075,2177], + [48077,4451], + [48079,1099], + [48081,1287], + [48083,3514], + [48085,268042], + [48087,1188], + [48089,8205], + [48091,38984], + [48093,5243], + [48095,996], + [48097,14547], + [48099,20762], + [48101,617], + [48103,1426], + [48105,1259], + [48107,2144], + [48109,724], + [48111,2154], + [48113,832360], + [48115,4424], + [48117,6053], + [48119,2045], + [48121,224840], + [48123,7361], + [48125,841], + [48127,3600], + [48129,1279], + [48131,4138], + [48133,7273], + [48135,47653], + [48137,858], + [48139,48503], + [48141,242943], + [48143,13877], + [48145,5700], + [48147,11676], + [48149,10658], + [48151,1673], + [48153,2612], + [48155,563], + [48157,167620], + [48159,3734], + [48161,7107], + [48163,4748], + [48165,5348], + [48167,106617], + [48169,1649], + [48171,10413], + [48173,430], + [48175,2920], + [48177,7036], + [48179,8221], + [48181,45545], + [48183,44873], + [48185,8366], + [48187,42738], + [48189,11444], + [48191,1440], + [48193,3064], + [48195,1948], + [48197,1672], + [48199,19711], + [48201,1372163], + [48203,22997], + [48205,1715], + [48207,2549], + [48209,50479], + [48211,1533], + [48213,30540], + [48215,205971], + [48217,12988], + [48219,8100], + [48221,20240], + [48223,13045], + [48225,7872], + [48227,11080], + [48229,1066], + [48231,30391], + [48233,8390], + [48235,620], + [48237,2984], + [48239,5030], + [48241,13466], + [48243,999], + [48245,90671], + [48247,1738], + [48249,13441], + [48251,50425], + [48253,6022], + [48255,4657], + [48257,33131], + [48259,12055], + [48261,92], + [48263,365], + [48265,20285], + [48267,1897], + [48269,95], + [48271,1150], + [48273,10924], + [48275,1625], + [48277,19053], + [48279,4804], + [48281,7031], + [48283,1872], + [48285,7974], + [48287,6022], + [48289,6569], + [48291,24034], + [48293,7856], + [48295,1127], + [48297,3856], + [48299,8463], + [48301,22], + [48303,102170], + [48305,2165], + [48307,3098], + [48309,82998], + [48311,307], + [48313,3592], + [48315,4744], + [48317,1492], + [48319,1553], + [48321,13786], + [48323,14552], + [48325,15106], + [48327,927], + [48329,49122], + [48331,9575], + [48333,1974], + [48335,2711], + [48337,7978], + [48339,150546], + [48341,6724], + [48343,5131], + [48345,435], + [48347,23082], + [48349,17313], + [48351,5164], + [48353,5836], + [48355,121056], + [48357,3533], + [48359,710], + [48361,31271], + [48363,10513], + [48365,8632], + [48367,40489], + [48369,3299], + [48371,4912], + [48373,16789], + [48375,41422], + [48377,2617], + [48379,4069], + [48381,46018], + [48383,1142], + [48385,1335], + [48387,5108], + [48389,3628], + [48391,2786], + [48393,328], + [48395,6232], + [48397,24790], + [48399,3953], + [48401,18102], + [48403,4430], + [48405,3691], + [48407,9184], + [48409,22592], + [48411,2122], + [48413,989], + [48415,6181], + [48417,1195], + [48419,9705], + [48421,971], + [48423,76427], + [48425,2923], + [48427,15569], + [48429,3624], + [48431,446], + [48433,592], + [48435,1375], + [48437,2689], + [48439,632518], + [48441,49757], + [48443,372], + [48445,4043], + [48447,795], + [48449,10693], + [48451,41464], + [48453,390862], + [48455,5124], + [48457,8113], + [48459,14668], + [48461,1179], + [48463,8824], + [48465,15042], + [48467,19559], + [48469,31917], + [48471,19902], + [48473,13499], + [48475,3790], + [48477,12855], + [48479,64714], + [48481,14808], + [48483,2113], + [48485,48601], + [48487,5201], + [48489,5485], + [48491,142110], + [48493,14455], + [48495,2521], + [48497,19712], + [48499,16026], + [48501,2596], + [48503,7484], + [48505,4341], + [48507,3558], + [49001,2091], + [49003,15612], + [49005,33820], + [49007,7966], + [49009,352], + [49011,90607], + [49013,6521], + [49015,3779], + [49017,2136], + [49019,3719], + [49021,15155], + [49023,3045], + [49025,3065], + [49027,4046], + [49029,2714], + [49031,539], + [49033,762], + [49035,335075], + [49037,4331], + [49039,7870], + [49041,6937], + [49043,13600], + [49045,17718], + [49047,10474], + [49049,135620], + [49051,7154], + [49053,45895], + [49055,899], + [49057,77656], + [50001,14080], + [50003,15559], + [50005,12581], + [50007,61581], + [50009,2842], + [50011,18482], + [50013,3077], + [50015,10345], + [50017,11967], + [50019,10785], + [50021,26405], + [50023,24621], + [50025,19483], + [50027,24804], + [51001,14085], + [51003,37459], + [51005,6964], + [51007,4901], + [51009,12706], + [51011,5976], + [51013,91892], + [51015,27909], + [51017,2025], + [51019,27150], + [51021,2580], + [51023,12918], + [51025,6086], + [51027,9123], + [51029,4859], + [51031,22005], + [51033,10270], + [51035,12818], + [51036,2713], + [51037,4415], + [51041,112404], + [51043,5535], + [51045,1989], + [51047,15834], + [51049,3969], + [51051,6170], + [51053,9800], + [51057,4466], + [51059,381768], + [51061,22369], + [51063,6334], + [51065,9128], + [51067,23355], + [51069,28558], + [51071,7100], + [51073,14014], + [51075,6831], + [51077,6858], + [51079,6709], + [51081,3385], + [51083,14650], + [51085,36114], + [51087,121767], + [51089,22909], + [51091,1130], + [51093,13553], + [51095,25851], + [51097,2815], + [51099,8194], + [51101,5909], + [51103,5421], + [51105,9836], + [51107,95330], + [51109,13253], + [51111,4515], + [51113,5213], + [51115,3773], + [51117,12594], + [51119,4303], + [51121,34369], + [51125,6534], + [51127,6513], + [51131,5088], + [51133,5478], + [51135,5607], + [51137,12669], + [51139,9629], + [51141,7344], + [51143,26563], + [51145,8637], + [51147,7314], + [51149,10474], + [51153,124879], + [51155,14898], + [51157,3163], + [51159,3007], + [51161,37833], + [51163,9372], + [51165,29701], + [51167,11529], + [51169,9610], + [51171,17316], + [51173,12992], + [51175,6571], + [51177,41009], + [51179,40183], + [51181,2481], + [51183,3796], + [51185,18015], + [51187,14160], + [51191,22711], + [51193,7135], + [51195,15750], + [51197,11665], + [51199,24002], + [51510,63738], + [51520,7948], + [51530,2693], + [51540,17290], + [51550,78778], + [51570,7075], + [51580,2641], + [51590,19448], + [51595,2406], + [51600,8524], + [51610,4706], + [51620,3524], + [51630,9206], + [51640,3326], + [51650,53283], + [51660,14965], + [51670,8914], + [51678,2108], + [51680,27875], + [51683,11732], + [51685,4206], + [51690,5922], + [51700,70653], + [51710,85061], + [51720,1764], + [51730,12305], + [51735,4524], + [51740,37325], + [51750,5667], + [51760,83498], + [51770,42833], + [51775,9890], + [51790,10408], + [51800,30126], + [51810,163944], + [51820,8546], + [51830,4069], + [51840,10221], + [53001,5599], + [53003,8977], + [53005,62038], + [53007,26676], + [53009,30987], + [53011,155042], + [53013,1732], + [53015,39441], + [53017,13802], + [53019,2706], + [53021,21422], + [53023,903], + [53025,29427], + [53027,28191], + [53029,32976], + [53031,14194], + [53033,781977], + [53035,95758], + [53037,16619], + [53039,8405], + [53041,29290], + [53043,4649], + [53045,21808], + [53047,15747], + [53049,9667], + [53051,5511], + [53053,295554], + [53055,7986], + [53057,45253], + [53059,4514], + [53061,263931], + [53063,184590], + [53065,17404], + [53067,98491], + [53069,1763], + [53071,21367], + [53073,78186], + [53075,15717], + [53077,79075], + [54001,6219], + [54003,38730], + [54005,10023], + [54007,6028], + [54009,9824], + [54011,40564], + [54013,3030], + [54015,3530], + [54017,2860], + [54019,18140], + [54021,2460], + [54023,4899], + [54025,15302], + [54027,9755], + [54029,13296], + [54031,4877], + [54033,27740], + [54035,11634], + [54037,19164], + [54039,82501], + [54041,6527], + [54043,8711], + [54045,14740], + [54047,8338], + [54049,22744], + [54051,13997], + [54053,10932], + [54055,25344], + [54057,11308], + [54059,10936], + [54061,35073], + [54063,5594], + [54065,7068], + [54067,10304], + [54069,18850], + [54071,3516], + [54073,2591], + [54075,3812], + [54077,12850], + [54079,20975], + [54081,31196], + [54083,11319], + [54085,4213], + [54087,6015], + [54089,5075], + [54091,6579], + [54093,3132], + [54095,3792], + [54097,9291], + [54099,16751], + [54101,4116], + [54103,6897], + [54105,2364], + [54107,36222], + [54109,9126], + [55001,9341], + [55003,6967], + [55005,19421], + [55007,6990], + [55009,96937], + [55011,5775], + [55013,7414], + [55015,18265], + [55017,24223], + [55019,13031], + [55021,22945], + [55023,6891], + [55025,196383], + [55027,33929], + [55029,13684], + [55031,19138], + [55033,15862], + [55035,39240], + [55037,2048], + [55039,40484], + [55041,4182], + [55043,19157], + [55045,14541], + [55047,7940], + [55049,9705], + [55051,3016], + [55053,8269], + [55055,31442], + [55057,11012], + [55059,62226], + [55061,8274], + [55063,45501], + [55065,6533], + [55067,8805], + [55069,13113], + [55071,34171], + [55073,52708], + [55075,19171], + [55077,6754], + [55078,1521], + [55079,379372], + [55081,17322], + [55083,16442], + [55085,17475], + [55087,69062], + [55089,33856], + [55091,3092], + [55093,14817], + [55095,18170], + [55097,27573], + [55099,6825], + [55101,75546], + [55103,7530], + [55105,62598], + [55107,6660], + [55109,31824], + [55111,25438], + [55113,7982], + [55115,17174], + [55117,46572], + [55119,8821], + [55121,11502], + [55123,11905], + [55125,10560], + [55127,39082], + [55129,7254], + [55131,51458], + [55133,151161], + [55135,21526], + [55137,10330], + [55139,66694], + [55141,31979], + [56001,14591], + [56003,4547], + [56005,16039], + [56007,6205], + [56009,5564], + [56011,2769], + [56013,15541], + [56015,5241], + [56017,2201], + [56019,3731], + [56021,35790], + [56023,6474], + [56025,29597], + [56027,939], + [56029,11742], + [56031,3737], + [56033,12172], + [56035,3148], + [56037,16415], + [56039,7470], + [56041,7279], + [56043,3399], + [56045,3097] + ] +} diff --git a/data/regional/united-states/demographics/households/us-households-2017.json b/data/regional/united-states/demographics/households/us-households-2017.json new file mode 100644 index 0000000..49b6c85 --- /dev/null +++ b/data/regional/united-states/demographics/households/us-households-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Households", + "description" : "Number of households.", + "units" : "homes", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","households"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.households.2017"], + [1001,21054], + [1003,76133], + [1005,9191], + [1007,6916], + [1009,20690], + [1011,3670], + [1013,7050], + [1015,45099], + [1017,13694], + [1019,10795], + [1021,16768], + [1023,5463], + [1025,9602], + [1027,5338], + [1029,5773], + [1031,19620], + [1033,21983], + [1035,4716], + [1037,4204], + [1039,15285], + [1041,5358], + [1043,31097], + [1045,18825], + [1047,16487], + [1049,25482], + [1051,29115], + [1053,13226], + [1055,39061], + [1057,6955], + [1059,11533], + [1061,10693], + [1063,3025], + [1065,5664], + [1067,6727], + [1069,39560], + [1071,20368], + [1073,261390], + [1075,6019], + [1077,38634], + [1079,13056], + [1081,59001], + [1083,32386], + [1085,4309], + [1087,7852], + [1089,142253], + [1091,7975], + [1093,12453], + [1095,34588], + [1097,153794], + [1099,8207], + [1101,89776], + [1103,45904], + [1105,3039], + [1107,7620], + [1109,12284], + [1111,8867], + [1113,22690], + [1115,32486], + [1117,76868], + [1119,5073], + [1121,31651], + [1123,16369], + [1125,71507], + [1127,25143], + [1129,6001], + [1131,3841], + [1133,9439], + [2013,812], + [2016,1218], + [2020,106012], + [2050,4524], + [2060,358], + [2068,678], + [2070,1405], + [2090,36396], + [2100,1087], + [2105,802], + [2110,12273], + [2122,21779], + [2130,5270], + [2150,4538], + [2158,"NA"], + [2164,408], + [2170,30613], + [2180,2897], + [2185,2041], + [2188,1849], + [2195,1255], + [2198,2315], + [2220,3545], + [2230,423], + [2240,2139], + [2261,2849], + [2275,1084], + [2282,255], + [2290,1959], + [4001,19530], + [4003,49160], + [4005,47588], + [4007,21585], + [4009,10976], + [4011,3364], + [4012,8798], + [4013,1489533], + [4015,83902], + [4017,34251], + [4019,398530], + [4021,133513], + [4023,15568], + [4025,94343], + [4027,71670], + [5001,7692], + [5003,8182], + [5005,18398], + [5007,90906], + [5009,14887], + [5011,4566], + [5013,2061], + [5015,10832], + [5017,4323], + [5019,8820], + [5021,6428], + [5023,10646], + [5025,3292], + [5027,9337], + [5029,8185], + [5031,39838], + [5033,23870], + [5035,18659], + [5037,6726], + [5039,3144], + [5041,5230], + [5043,7038], + [5045,43835], + [5047,6862], + [5049,5117], + [5051,40062], + [5053,6851], + [5055,16821], + [5057,7930], + [5059,12291], + [5061,5042], + [5063,14288], + [5065,5189], + [5067,6179], + [5069,27377], + [5071,9900], + [5073,2860], + [5075,6584], + [5077,3541], + [5079,3928], + [5081,5300], + [5083,8269], + [5085,26281], + [5087,6190], + [5089,6663], + [5091,17020], + [5093,17238], + [5095,3328], + [5097,3855], + [5099,3452], + [5101,3152], + [5103,10016], + [5105,3692], + [5107,7823], + [5109,4313], + [5111,9483], + [5113,8058], + [5115,23147], + [5117,3920], + [5119,155435], + [5121,7339], + [5123,9325], + [5125,43314], + [5127,3972], + [5129,3336], + [5131,50301], + [5133,5984], + [5135,7296], + [5137,4910], + [5139,16189], + [5141,6867], + [5143,84460], + [5145,29217], + [5147,2874], + [5149,7555], + [6001,569070], + [6003,304], + [6005,14185], + [6007,86167], + [6009,17812], + [6011,7047], + [6013,389597], + [6015,9683], + [6017,68084], + [6019,301824], + [6021,9936], + [6023,53966], + [6025,45198], + [6027,8026], + [6029,264993], + [6031,42349], + [6033,26327], + [6035,9441], + [6037,3295198], + [6039,44458], + [6041,104846], + [6043,7434], + [6045,34182], + [6047,79261], + [6049,3638], + [6051,4899], + [6053,125939], + [6055,49044], + [6057,40386], + [6059,1024976], + [6061,138564], + [6063,8287], + [6065,711724], + [6067,532050], + [6069,17440], + [6071,623642], + [6073,1111739], + [6075,358772], + [6077,223808], + [6079,105044], + [6081,261796], + [6083,144015], + [6085,630451], + [6087,95536], + [6089,70486], + [6091,1208], + [6093,19018], + [6095,147352], + [6097,190058], + [6099,171324], + [6101,32188], + [6103,23712], + [6105,5462], + [6107,135144], + [6109,22267], + [6111,270046], + [6113,72845], + [6115,25880], + [8001,162508], + [8003,6049], + [8005,235263], + [8007,5553], + [8009,1603], + [8011,1760], + [8013,125026], + [8014,25938], + [8015,7900], + [8017,776], + [8019,4374], + [8021,2992], + [8023,1568], + [8025,1215], + [8027,2093], + [8029,12119], + [8031,287262], + [8033,707], + [8035,113799], + [8037,17765], + [8039,8866], + [8041,249745], + [8043,16762], + [8045,21055], + [8047,2603], + [8049,5724], + [8051,6495], + [8053,368], + [8055,3173], + [8057,597], + [8059,227805], + [8061,576], + [8063,2995], + [8065,3324], + [8067,21818], + [8069,130502], + [8071,6327], + [8073,1477], + [8075,8151], + [8077,60562], + [8079,404], + [8081,5103], + [8083,10520], + [8085,16951], + [8087,10599], + [8089,7490], + [8091,2204], + [8093,7389], + [8095,1696], + [8097,7340], + [8099,4913], + [8101,63489], + [8103,2417], + [8105,4750], + [8107,9478], + [8109,2626], + [8111,255], + [8113,3301], + [8115,998], + [8117,9455], + [8119,10076], + [8121,2012], + [8123,99817], + [8125,4053], + [9001,337678], + [9003,348871], + [9005,74605], + [9007,66599], + [9009,327402], + [9011,107193], + [9013,54878], + [9015,44529], + [10001,63381], + [10003,202654], + [10005,86322], + [11001,277985], + [12001,97485], + [12003,8299], + [12005,68667], + [12007,8980], + [12009,227223], + [12011,675828], + [12013,4581], + [12015,74884], + [12017,62488], + [12019,71939], + [12021,138131], + [12023,24722], + [12027,11744], + [12029,6431], + [12031,347783], + [12033,117836], + [12035,39433], + [12037,4327], + [12039,17310], + [12041,6399], + [12043,4297], + [12045,5295], + [12047,4551], + [12049,7718], + [12051,12098], + [12053,72234], + [12055,41350], + [12057,505845], + [12059,7019], + [12061,57911], + [12063,17041], + [12065,5702], + [12067,2193], + [12069,127441], + [12071,264325], + [12073,112373], + [12075,15806], + [12077,2325], + [12079,6743], + [12081,140255], + [12083,134747], + [12085,63497], + [12086,858289], + [12087,30198], + [12089,30454], + [12091,76574], + [12093,13333], + [12095,451960], + [12097,96250], + [12099,543591], + [12101,195818], + [12103,406871], + [12105,226604], + [12107,27951], + [12109,83744], + [12111,110043], + [12113,60607], + [12115,177998], + [12117,161371], + [12119,52360], + [12121,15291], + [12123,7406], + [12125,3946], + [12127,209885], + [12129,11075], + [12131,25449], + [12133,8558], + [13001,6702], + [13003,2835], + [13005,3989], + [13007,1321], + [13009,16330], + [13011,6489], + [13013,24588], + [13015,37120], + [13017,6361], + [13019,7240], + [13021,57319], + [13023,4155], + [13025,6658], + [13027,6337], + [13029,12366], + [13031,26632], + [13033,8068], + [13035,8053], + [13037,1865], + [13039,18913], + [13043,4061], + [13045,41123], + [13047,24719], + [13049,3537], + [13051,107427], + [13053,2505], + [13055,9253], + [13057,83150], + [13059,46291], + [13061,1154], + [13063,91604], + [13065,2576], + [13067,274361], + [13069,14329], + [13071,15599], + [13073,45823], + [13075,6065], + [13077,50531], + [13079,4715], + [13081,8312], + [13083,6089], + [13085,8557], + [13087,10311], + [13089,273614], + [13091,7858], + [13093,5171], + [13095,34842], + [13097,48426], + [13099,4032], + [13101,1502], + [13103,19584], + [13105,7730], + [13107,8387], + [13109,4023], + [13111,10175], + [13113,39604], + [13115,35506], + [13117,70468], + [13119,8322], + [13121,391850], + [13123,11468], + [13125,1083], + [13127,33200], + [13129,19959], + [13131,9092], + [13133,6793], + [13135,283256], + [13137,15106], + [13139,63095], + [13141,2970], + [13143,11033], + [13145,12088], + [13147,9848], + [13149,4379], + [13151,72697], + [13153,55200], + [13155,3323], + [13157,21785], + [13159,5100], + [13161,5210], + [13163,5797], + [13165,3375], + [13167,3277], + [13169,10472], + [13171,6263], + [13173,3744], + [13175,17437], + [13177,10292], + [13179,23108], + [13181,3438], + [13183,5399], + [13185,40318], + [13187,11412], + [13189,8156], + [13191,5730], + [13193,4618], + [13195,10571], + [13197,3263], + [13199,8108], + [13201,2326], + [13205,7991], + [13207,9590], + [13209,3077], + [13211,6698], + [13213,14176], + [13215,73179], + [13217,35823], + [13219,12693], + [13221,5642], + [13223,51397], + [13225,10113], + [13227,11379], + [13229,6975], + [13231,5963], + [13233,14949], + [13235,3893], + [13237,8662], + [13239,978], + [13241,6506], + [13243,2864], + [13245,72361], + [13247,29937], + [13249,1925], + [13251,5268], + [13253,3353], + [13255,23475], + [13257,9427], + [13259,1780], + [13261,11871], + [13263,2801], + [13265,710], + [13267,8044], + [13269,3554], + [13271,5167], + [13273,3290], + [13275,17254], + [13277,14999], + [13279,10521], + [13281,4588], + [13283,2633], + [13285,24679], + [13287,3103], + [13289,2943], + [13291,8788], + [13293,10263], + [13295,25564], + [13297,30488], + [13299,13903], + [13301,2274], + [13303,7384], + [13305,10362], + [13307,1091], + [13309,1972], + [13311,11250], + [13313,35384], + [13315,2676], + [13317,3971], + [13319,3288], + [13321,7899], + [15001,67054], + [15003,311451], + [15005,53], + [15007,22563], + [15009,54381], + [16001,164389], + [16003,1736], + [16005,30790], + [16007,2313], + [16009,3508], + [16011,14903], + [16013,8273], + [16015,3004], + [16017,17563], + [16019,38400], + [16021,4490], + [16023,1049], + [16025,370], + [16027,69303], + [16029,2533], + [16031,7827], + [16033,313], + [16035,3706], + [16037,1850], + [16039,10062], + [16041,4286], + [16043,4383], + [16045,6404], + [16047,5550], + [16049,6480], + [16051,8470], + [16053,7741], + [16055,58873], + [16057,15448], + [16059,3703], + [16061,1626], + [16063,1609], + [16065,10633], + [16067,7357], + [16069,16308], + [16071,1581], + [16073,4190], + [16075,8571], + [16077,2544], + [16079,5614], + [16081,3764], + [16083,30096], + [16085,3532], + [16087,3979], + [17001,27461], + [17003,2432], + [17005,6132], + [17007,18709], + [17009,2066], + [17011,13816], + [17013,1881], + [17015,6573], + [17017,5160], + [17019,81418], + [17021,13892], + [17023,6809], + [17025,5624], + [17027,14183], + [17029,21006], + [17031,1956561], + [17033,7665], + [17035,4287], + [17037,37420], + [17039,6704], + [17041,7580], + [17043,340669], + [17045,7669], + [17047,2810], + [17049,13450], + [17051,7659], + [17053,5684], + [17055,16346], + [17057,14069], + [17059,2272], + [17061,5087], + [17063,19006], + [17065,3413], + [17067,7523], + [17069,1452], + [17071,3019], + [17073,19991], + [17075,11845], + [17077,23942], + [17079,3723], + [17081,15244], + [17083,8831], + [17085,9795], + [17087,4486], + [17089,175930], + [17091,40239], + [17093,39882], + [17095,20981], + [17097,244523], + [17099,44448], + [17101,6271], + [17103,13416], + [17105,14379], + [17107,11011], + [17109,11481], + [17111,110860], + [17113,66070], + [17115,44310], + [17117,18663], + [17119,107241], + [17121,16001], + [17123,4900], + [17125,6034], + [17127,6084], + [17129,5230], + [17131,6620], + [17133,13227], + [17135,11234], + [17137,13894], + [17139,5856], + [17141,20830], + [17143,74515], + [17145,8223], + [17147,6676], + [17149,6629], + [17151,1639], + [17153,2246], + [17155,2438], + [17157,12060], + [17159,6460], + [17161,60064], + [17163,103125], + [17165,9938], + [17167,83673], + [17169,2856], + [17171,2111], + [17173,9183], + [17175,2330], + [17177,19604], + [17179,54751], + [17181,6686], + [17183,31355], + [17185,4915], + [17187,6802], + [17189,5897], + [17191,7117], + [17193,6144], + [17195,23468], + [17197,226668], + [17199,26862], + [17201,114491], + [17203,14547], + [18001,12453], + [18003,142696], + [18005,31472], + [18007,3397], + [18009,5199], + [18011,24228], + [18013,6011], + [18015,7819], + [18017,14840], + [18019,43657], + [18021,10680], + [18023,11961], + [18025,4007], + [18027,11482], + [18029,18667], + [18031,10354], + [18033,16317], + [18035,46304], + [18037,16524], + [18039,71733], + [18041,9410], + [18043,29046], + [18045,6987], + [18047,8843], + [18049,7934], + [18051,13336], + [18053,26122], + [18055,12653], + [18057,114282], + [18059,27576], + [18061,14693], + [18063,57153], + [18065,18096], + [18067,34538], + [18069,14616], + [18071,16549], + [18073,12220], + [18075,8195], + [18077,12677], + [18079,10753], + [18081,54867], + [18083,14986], + [18085,30265], + [18087,12064], + [18089,185524], + [18091,42975], + [18093,18432], + [18095,51647], + [18097,367215], + [18099,17249], + [18101,4251], + [18103,13465], + [18105,55014], + [18107,14993], + [18109,25805], + [18111,5530], + [18113,18205], + [18115,2479], + [18117,7830], + [18119,8551], + [18121,6112], + [18123,7460], + [18125,5096], + [18127,63251], + [18129,10140], + [18131,5296], + [18133,13162], + [18135,10495], + [18137,11150], + [18139,6672], + [18141,100694], + [18143,8892], + [18145,17603], + [18147,8101], + [18149,8792], + [18151,13810], + [18153,7601], + [18155,4259], + [18157,68771], + [18159,6365], + [18161,2860], + [18163,74923], + [18165,6533], + [18167,41164], + [18169,12920], + [18171,3395], + [18173,23742], + [18175,10570], + [18177,26397], + [18179,10944], + [18181,9723], + [18183,13469], + [19001,3210], + [19003,1654], + [19005,6037], + [19007,5407], + [19009,2679], + [19011,10187], + [19013,52811], + [19015,10998], + [19017,9445], + [19019,8212], + [19021,7561], + [19023,6278], + [19025,4229], + [19027,8675], + [19029,6053], + [19031,7546], + [19033,19201], + [19035,5227], + [19037,5298], + [19039,3870], + [19041,7264], + [19043,7625], + [19045,19877], + [19047,6389], + [19049,31363], + [19051,3255], + [19053,3172], + [19055,6926], + [19057,16772], + [19059,8039], + [19061,38076], + [19063,4133], + [19065,8315], + [19067,6924], + [19069,4232], + [19071,2997], + [19073,3912], + [19075,5155], + [19077,4393], + [19079,6367], + [19081,4809], + [19083,7183], + [19085,6068], + [19087,7772], + [19089,3883], + [19091,4221], + [19093,3043], + [19095,6766], + [19097,8395], + [19099,14533], + [19101,6872], + [19103,57423], + [19105,8264], + [19107,4471], + [19109,6674], + [19111,14204], + [19113,89061], + [19115,4364], + [19117,3703], + [19119,4489], + [19121,6357], + [19123,8955], + [19125,13098], + [19127,15541], + [19129,5601], + [19131,4302], + [19133,4047], + [19135,3347], + [19137,4614], + [19139,16414], + [19141,6101], + [19143,2617], + [19145,6405], + [19147,3823], + [19149,10083], + [19151,3191], + [19153,181316], + [19155,36926], + [19157,7571], + [19159,2063], + [19161,4372], + [19163,67100], + [19165,5055], + [19167,12113], + [19169,37106], + [19171,6675], + [19173,2694], + [19175,5309], + [19177,2877], + [19179,14531], + [19181,18621], + [19183,8669], + [19185,2631], + [19187,15067], + [19189,4590], + [19191,8123], + [19193,38962], + [19195,3179], + [19197,5579], + [20001,5325], + [20003,3206], + [20005,5967], + [20007,1967], + [20009,11288], + [20011,5622], + [20013,3993], + [20015,24358], + [20017,1095], + [20019,1432], + [20021,7980], + [20023,1248], + [20025,912], + [20027,3406], + [20029,3896], + [20031,3592], + [20033,726], + [20035,13688], + [20037,14974], + [20039,1439], + [20041,7781], + [20043,3065], + [20045,44945], + [20047,1273], + [20049,1158], + [20051,11647], + [20053,2500], + [20055,12648], + [20057,11339], + [20059,9897], + [20061,12923], + [20063,1193], + [20065,1239], + [20067,2628], + [20069,2141], + [20071,494], + [20073,2772], + [20075,864], + [20077,2357], + [20079,13355], + [20081,1330], + [20083,786], + [20085,5296], + [20087,7681], + [20089,1388], + [20091,224248], + [20093,1242], + [20095,3148], + [20097,1004], + [20099,8098], + [20101,828], + [20103,27233], + [20105,1275], + [20107,4433], + [20109,1168], + [20111,13552], + [20113,12077], + [20115,4857], + [20117,4209], + [20119,1674], + [20121,12771], + [20123,2725], + [20125,13619], + [20127,2325], + [20129,1115], + [20131,4123], + [20133,6521], + [20135,1327], + [20137,1906], + [20139,6604], + [20141,1713], + [20143,2437], + [20145,2590], + [20147,2326], + [20149,8510], + [20151,3742], + [20153,1170], + [20155,25015], + [20157,2307], + [20159,3932], + [20161,26686], + [20163,2144], + [20165,1432], + [20167,3161], + [20169,22294], + [20171,2105], + [20173,195072], + [20175,7573], + [20177,71601], + [20179,1144], + [20181,2729], + [20183,1662], + [20185,1804], + [20187,798], + [20189,1958], + [20191,9188], + [20193,3259], + [20195,1389], + [20197,2732], + [20199,594], + [20201,2339], + [20203,890], + [20205,3873], + [20207,1523], + [20209,59355], + [21001,7101], + [21003,7705], + [21005,8613], + [21007,3225], + [21009,16927], + [21011,4509], + [21013,11063], + [21015,46095], + [21017,8116], + [21019,19119], + [21021,10875], + [21023,3427], + [21025,5342], + [21027,7467], + [21029,29014], + [21031,5060], + [21033,5309], + [21035,14757], + [21037,35870], + [21039,1988], + [21041,3962], + [21043,10460], + [21045,6398], + [21047,25275], + [21049,14216], + [21051,7719], + [21053,4025], + [21055,3711], + [21057,2709], + [21059,39531], + [21061,4880], + [21063,2635], + [21065,5638], + [21067,127336], + [21069,5849], + [21071,15108], + [21073,20786], + [21075,2463], + [21077,3007], + [21079,6925], + [21081,8637], + [21083,14299], + [21085,9594], + [21087,4467], + [21089,14089], + [21091,3375], + [21093,41051], + [21095,11249], + [21097,7107], + [21099,7346], + [21101,18719], + [21103,6104], + [21105,1877], + [21107,18546], + [21109,5435], + [21111,309888], + [21113,18537], + [21115,8771], + [21117,62929], + [21119,6158], + [21121,12264], + [21123,5470], + [21125,22976], + [21127,6254], + [21129,2843], + [21131,4292], + [21133,10065], + [21135,5496], + [21137,9786], + [21139,4016], + [21141,10780], + [21143,3376], + [21145,27557], + [21147,6332], + [21149,3826], + [21151,33036], + [21153,5057], + [21155,7365], + [21157,13117], + [21159,4316], + [21161,6737], + [21163,10785], + [21165,2537], + [21167,8645], + [21169,3940], + [21171,4376], + [21173,10404], + [21175,4937], + [21177,11416], + [21179,17324], + [21181,2760], + [21183,9055], + [21185,20465], + [21187,3944], + [21189,1696], + [21191,5236], + [21193,11037], + [21195,25853], + [21197,4878], + [21199,25810], + [21201,938], + [21203,6552], + [21205,8774], + [21207,7204], + [21209,19706], + [21211,16369], + [21213,6895], + [21215,6678], + [21217,9669], + [21219,4610], + [21221,5982], + [21223,3603], + [21225,5527], + [21227,46443], + [21229,4507], + [21231,8011], + [21233,5095], + [21235,12583], + [21237,2853], + [21239,10063], + [22001,22675], + [22003,7834], + [22005,41884], + [22007,8710], + [22009,14961], + [22011,13327], + [22013,5840], + [22015,48142], + [22017,97283], + [22019,77130], + [22021,3680], + [22023,2686], + [22025,3747], + [22027,5980], + [22029,7440], + [22031,10331], + [22033,167188], + [22035,2417], + [22037,6817], + [22039,11928], + [22041,7622], + [22043,7271], + [22045,26420], + [22047,11142], + [22049,6032], + [22051,168786], + [22053,11435], + [22055,89677], + [22057,36153], + [22059,5044], + [22061,17370], + [22063,48675], + [22065,4073], + [22067,10077], + [22069,14549], + [22071,154895], + [22073,56799], + [22075,8759], + [22077,8815], + [22079,48032], + [22081,3374], + [22083,7500], + [22085,9174], + [22087,14791], + [22089,18925], + [22091,3990], + [22093,7887], + [22095,15421], + [22097,30467], + [22099,19435], + [22101,20032], + [22103,91353], + [22105,47598], + [22107,1930], + [22109,40177], + [22111,7971], + [22113,21721], + [22115,17930], + [22117,17542], + [22119,15854], + [22121,9436], + [22123,4182], + [22125,3947], + [22127,5382], + [23001,45263], + [23003,29844], + [23005,118807], + [23007,11577], + [23009,23674], + [23011,51055], + [23013,17022], + [23015,15241], + [23017,20756], + [23019,61848], + [23021,7477], + [23023,15810], + [23025,21392], + [23027,16954], + [23029,14017], + [23031,83324], + [24001,27759], + [24003,205395], + [24005,312859], + [24009,31462], + [24011,11996], + [24013,60432], + [24015,37076], + [24017,54988], + [24019,12940], + [24021,90022], + [24023,11865], + [24025,92895], + [24027,111337], + [24029,7605], + [24031,369242], + [24033,306694], + [24035,17995], + [24037,39276], + [24039,8362], + [24041,16498], + [24043,55999], + [24045,37415], + [24047,21190], + [24510,239791], + [25001,95011], + [25003,55063], + [25005,215903], + [25007,6139], + [25009,291659], + [25011,30512], + [25013,178931], + [25015,58782], + [25017,593784], + [25019,3761], + [25021,262324], + [25023,184195], + [25025,303676], + [25027,305975], + [26001,4979], + [26003,3244], + [26005,42556], + [26007,12789], + [26009,9732], + [26011,6663], + [26013,3009], + [26015,23539], + [26017,44070], + [26019,6911], + [26021,63035], + [26023,16415], + [26025,53528], + [26027,20686], + [26029,11234], + [26031,11348], + [26033,14004], + [26035,12726], + [26037,29163], + [26039,6025], + [26041,15920], + [26043,11269], + [26045,44323], + [26047,14496], + [26049,166838], + [26051,10990], + [26053,6660], + [26055,36519], + [26057,14736], + [26059,17896], + [26061,13157], + [26063,13880], + [26065,111894], + [26067,22625], + [26069,11457], + [26071,5315], + [26073,24898], + [26075,61418], + [26077,102362], + [26079,7019], + [26081,236929], + [26083,1013], + [26085,4555], + [26087,33152], + [26089,9022], + [26091,38115], + [26093,70831], + [26095,2253], + [26097,5132], + [26099,341532], + [26101,9810], + [26103,26199], + [26105,12186], + [26107,15641], + [26109,10593], + [26111,33986], + [26113,5941], + [26115,58652], + [26117,23556], + [26119,4074], + [26121,65216], + [26123,18772], + [26125,499617], + [26127,10176], + [26129,9325], + [26131,2945], + [26133,9010], + [26135,3728], + [26137,9880], + [26139,99721], + [26141,5929], + [26143,11131], + [26145,78482], + [26147,64387], + [26149,23831], + [26151,17121], + [26153,3282], + [26155,27623], + [26157,21624], + [26159,29151], + [26161,138947], + [26163,673143], + [26165,13105], + [27001,7709], + [27003,126072], + [27005,13489], + [27007,17076], + [27009,16005], + [27011,2264], + [27013,25558], + [27015,10668], + [27017,13413], + [27019,35342], + [27021,12965], + [27023,5019], + [27025,19871], + [27027,23453], + [27029,3428], + [27031,2700], + [27033,4837], + [27035,26314], + [27037,158777], + [27039,7690], + [27041,16175], + [27043,6245], + [27045,8614], + [27047,12958], + [27049,19345], + [27051,2536], + [27053,499104], + [27055,8114], + [27057,8758], + [27059,14571], + [27061,19356], + [27063,4350], + [27065,6353], + [27067,16765], + [27069,1891], + [27071,5629], + [27073,3171], + [27075,5082], + [27077,1533], + [27079,10844], + [27081,2484], + [27083,10060], + [27085,14760], + [27087,1947], + [27089,3953], + [27091,8685], + [27093,9164], + [27095,10116], + [27097,13327], + [27099,15524], + [27101,3713], + [27103,12662], + [27105,7917], + [27107,2733], + [27109,59804], + [27111,24300], + [27113,5883], + [27115,10752], + [27117,4019], + [27119,12609], + [27121,4898], + [27123,208504], + [27125,1718], + [27127,6310], + [27129,6219], + [27131,22899], + [27133,3985], + [27135,6123], + [27137,85662], + [27139,47864], + [27141,31181], + [27143,5993], + [27145,58657], + [27147,14450], + [27149,3630], + [27151,4217], + [27153,9777], + [27155,1576], + [27157,8867], + [27159,5704], + [27161,7375], + [27163,92005], + [27165,4327], + [27167,2852], + [27169,19228], + [27171,46568], + [27173,4157], + [28001,11509], + [28003,14675], + [28005,4994], + [28007,7174], + [28009,2960], + [28011,12267], + [28013,5853], + [28015,3592], + [28017,6454], + [28019,3198], + [28021,3187], + [28023,6365], + [28025,7681], + [28027,8969], + [28029,9778], + [28031,6919], + [28033,61158], + [28035,28063], + [28037,3097], + [28039,7220], + [28041,4174], + [28043,7889], + [28045,19145], + [28047,77630], + [28049,89153], + [28051,6280], + [28053,3119], + [28055,437], + [28057,8813], + [28059,50994], + [28061,6817], + [28063,2453], + [28065,4798], + [28067,24663], + [28069,3695], + [28071,19767], + [28073,22022], + [28075,29892], + [28077,4822], + [28079,8228], + [28081,32485], + [28083,10477], + [28085,12806], + [28087,22630], + [28089,38405], + [28091,9667], + [28093,13084], + [28095,14042], + [28097,4524], + [28099,10773], + [28101,8010], + [28103,4002], + [28105,17393], + [28107,12449], + [28109,20710], + [28111,4476], + [28113,14962], + [28115,10845], + [28117,9533], + [28119,3072], + [28121,55226], + [28123,10096], + [28125,1809], + [28127,9322], + [28129,5850], + [28131,5979], + [28133,8505], + [28135,4296], + [28137,10016], + [28139,8204], + [28141,7606], + [28143,3983], + [28145,9927], + [28147,5903], + [28149,18559], + [28151,18249], + [28153,7762], + [28155,3842], + [28157,2882], + [28159,7411], + [28161,5196], + [28163,8642], + [29001,9595], + [29003,6874], + [29005,2492], + [29007,9457], + [29009,13091], + [29011,4939], + [29013,6704], + [29015,7982], + [29017,4805], + [29019,68898], + [29021,33304], + [29023,16550], + [29025,3741], + [29027,16105], + [29029,16340], + [29031,29613], + [29033,3618], + [29035,2403], + [29037,38706], + [29039,5879], + [29041,2842], + [29043,30774], + [29045,2907], + [29047,89709], + [29049,8185], + [29051,29642], + [29053,6410], + [29055,9286], + [29057,3107], + [29059,6156], + [29061,3083], + [29063,3854], + [29065,6087], + [29067,5173], + [29069,12760], + [29071,40612], + [29073,6135], + [29075,2662], + [29077,119989], + [29079,4018], + [29081,3528], + [29083,9294], + [29085,3983], + [29087,2111], + [29089,3713], + [29091,16204], + [29093,4062], + [29095,280174], + [29097,46009], + [29099,83744], + [29101,19918], + [29103,1602], + [29105,13825], + [29107,13224], + [29109,14636], + [29111,3754], + [29113,18698], + [29115,4997], + [29117,5813], + [29119,8137], + [29121,6023], + [29123,4867], + [29125,3667], + [29127,11311], + [29129,1390], + [29131,9514], + [29133,5128], + [29135,5373], + [29137,3615], + [29139,4844], + [29141,7774], + [29143,7309], + [29145,22151], + [29147,8493], + [29149,4375], + [29151,5108], + [29153,4075], + [29155,6875], + [29157,7529], + [29159,16031], + [29161,17330], + [29163,6741], + [29165,38147], + [29167,11717], + [29169,15375], + [29171,1956], + [29173,3994], + [29175,8348], + [29177,8684], + [29179,2628], + [29181,5397], + [29183,142554], + [29185,4135], + [29186,7185], + [29187,24661], + [29189,402307], + [29195,8754], + [29197,1669], + [29199,1870], + [29201,15241], + [29203,3158], + [29205,2446], + [29207,11773], + [29209,12880], + [29211,2283], + [29213,22142], + [29215,9303], + [29217,8170], + [29219,12032], + [29221,9048], + [29223,5482], + [29225,13311], + [29227,888], + [29229,7488], + [29510,139741], + [30001,3978], + [30003,3710], + [30005,2314], + [30007,2405], + [30009,4565], + [30011,565], + [30013,34383], + [30015,2290], + [30017,4875], + [30019,876], + [30021,4045], + [30023,3984], + [30025,1241], + [30027,4953], + [30029,38006], + [30031,40723], + [30033,451], + [30035,4181], + [30037,325], + [30039,1309], + [30041,6208], + [30043,4512], + [30045,925], + [30047,11796], + [30049,27534], + [30051,859], + [30053,8244], + [30055,720], + [30057,3487], + [30059,777], + [30061,1694], + [30063,47963], + [30065,2073], + [30067,7552], + [30069,206], + [30071,1791], + [30073,2218], + [30075,764], + [30077,2400], + [30079,549], + [30081,16936], + [30083,4523], + [30085,3203], + [30087,3205], + [30089,4994], + [30091,1661], + [30093,15256], + [30095,3797], + [30097,1531], + [30099,2413], + [30101,1871], + [30103,365], + [30105,3432], + [30107,820], + [30109,497], + [30111,64020], + [31001,12659], + [31003,2748], + [31005,177], + [31007,300], + [31009,232], + [31011,2277], + [31013,4610], + [31015,905], + [31017,1475], + [31019,18923], + [31021,2885], + [31023,3400], + [31025,9894], + [31027,3508], + [31029,1671], + [31031,2652], + [31033,4400], + [31035,2616], + [31037,3681], + [31039,3790], + [31041,4792], + [31043,7427], + [31045,3557], + [31047,8898], + [31049,833], + [31051,2307], + [31053,15090], + [31055,213689], + [31057,875], + [31059,2443], + [31061,1367], + [31063,1113], + [31065,2172], + [31067,9255], + [31069,897], + [31071,893], + [31073,885], + [31075,274], + [31077,1015], + [31079,22817], + [31081,3722], + [31083,1590], + [31085,423], + [31087,1273], + [31089,4569], + [31091,316], + [31093,2656], + [31095,3308], + [31097,1869], + [31099,2745], + [31101,3989], + [31103,334], + [31105,1546], + [31107,3662], + [31109,120962], + [31111,15025], + [31113,366], + [31115,245], + [31117,192], + [31119,14236], + [31121,3251], + [31123,2017], + [31125,1553], + [31127,2814], + [31129,1985], + [31131,6439], + [31133,1238], + [31135,1247], + [31137,3870], + [31139,2985], + [31141,12937], + [31143,2038], + [31145,4598], + [31147,3798], + [31149,655], + [31151,5073], + [31153,63851], + [31155,8150], + [31157,14425], + [31159,6496], + [31161,2306], + [31163,1378], + [31165,579], + [31167,2351], + [31169,2337], + [31171,293], + [31173,2142], + [31175,1934], + [31177,8133], + [31179,3602], + [31181,1499], + [31183,378], + [31185,5623], + [32001,9734], + [32003,749858], + [32005,20376], + [32007,17882], + [32009,494], + [32011,765], + [32013,6261], + [32015,2183], + [32017,1930], + [32019,20127], + [32021,1859], + [32023,18077], + [32027,2018], + [32029,1665], + [32031,173519], + [32033,3343], + [32510,22158], + [33001,24579], + [33003,21203], + [33005,30529], + [33007,13879], + [33009,34856], + [33011,158139], + [33013,57247], + [33015,119955], + [33017,48543], + [33019,17780], + [34001,100660], + [34003,337819], + [34005,164404], + [34007,187012], + [34009,39861], + [34011,50596], + [34013,280327], + [34015,104810], + [34017,252352], + [34019,46822], + [34021,129546], + [34023,283794], + [34025,232482], + [34027,180124], + [34029,223135], + [34031,162440], + [34033,24038], + [34035,115970], + [34037,53618], + [34039,187916], + [34041,41385], + [35001,263551], + [35003,1433], + [35005,23343], + [35006,9068], + [35007,5591], + [35009,18470], + [35011,666], + [35013,76740], + [35015,21273], + [35017,11879], + [35019,1253], + [35021,203], + [35023,1761], + [35025,22029], + [35027,7902], + [35028,7525], + [35029,9088], + [35031,19764], + [35033,1513], + [35035,23657], + [35037,3085], + [35039,12852], + [35041,7125], + [35043,49265], + [35045,41999], + [35047,11041], + [35049,61651], + [35051,5400], + [35053,4698], + [35055,12603], + [35057,5598], + [35059,1424], + [35061,26985], + [36001,125376], + [36003,18124], + [36005,495356], + [36007,78821], + [36009,31723], + [36011,31428], + [36013,52983], + [36015,34664], + [36017,20373], + [36019,31680], + [36021,25470], + [36023,17925], + [36025,19098], + [36027,107384], + [36029,386371], + [36031,15257], + [36033,18956], + [36035,22535], + [36037,23951], + [36039,17106], + [36041,1095], + [36043,25187], + [36045,43206], + [36047,944650], + [36049,10236], + [36051,24432], + [36053,26307], + [36055,300496], + [36057,19700], + [36059,444136], + [36061,758345], + [36063,87978], + [36065,90472], + [36067,185840], + [36069,44269], + [36071,126460], + [36073,16214], + [36075,45881], + [36077,23627], + [36079,34316], + [36081,777904], + [36083,64456], + [36085,166150], + [36087,99935], + [36089,41638], + [36091,93129], + [36093,53825], + [36095,12539], + [36097,7444], + [36099,13536], + [36101,40351], + [36103,489328], + [36105,27679], + [36107,19996], + [36109,38986], + [36111,69662], + [36113,27249], + [36115,23988], + [36117,36578], + [36119,345885], + [36121,15686], + [36123,9338], + [37001,63035], + [37003,13744], + [37005,4742], + [37007,9647], + [37009,11995], + [37011,6725], + [37013,18978], + [37015,7988], + [37017,14394], + [37019,53104], + [37021,105407], + [37023,34568], + [37025,70598], + [37027,32150], + [37029,3796], + [37031,30000], + [37033,9160], + [37035,60238], + [37037,28148], + [37039,11206], + [37041,5903], + [37043,5049], + [37045,37782], + [37047,22462], + [37049,40571], + [37051,124500], + [37053,9766], + [37055,15264], + [37057,64727], + [37059,15895], + [37061,21669], + [37063,120936], + [37065,21431], + [37067,145102], + [37069,24287], + [37071,80682], + [37073,4439], + [37075,3303], + [37077,20945], + [37079,7348], + [37081,200998], + [37083,21207], + [37085,44657], + [37087,26288], + [37089,47804], + [37091,8880], + [37093,17373], + [37095,1835], + [37097,63447], + [37099,16218], + [37101,65401], + [37103,4148], + [37105,21691], + [37107,23263], + [37109,31250], + [37111,17970], + [37113,15513], + [37115,8346], + [37117,9624], + [37119,395503], + [37121,6390], + [37123,10855], + [37125,38185], + [37127,36878], + [37129,91673], + [37131,8819], + [37133,63093], + [37135,52160], + [37137,5395], + [37139,14629], + [37141,21053], + [37143,5882], + [37145,15772], + [37147,68805], + [37149,8913], + [37151,55679], + [37153,18371], + [37155,46163], + [37157,37162], + [37159,51798], + [37161,26497], + [37163,23431], + [37165,13273], + [37167,23859], + [37169,19273], + [37171,29256], + [37173,5464], + [37175,14125], + [37177,1539], + [37179,73709], + [37181,17029], + [37183,381971], + [37185,8157], + [37187,5223], + [37189,20331], + [37191,47587], + [37193,27765], + [37195,32068], + [37197,15521], + [37199,7493], + [38001,1052], + [38003,5113], + [38005,2292], + [38007,401], + [38009,3096], + [38011,1432], + [38013,950], + [38015,38901], + [38017,73039], + [38019,1787], + [38021,2192], + [38023,1053], + [38025,1601], + [38027,1048], + [38029,1565], + [38031,1502], + [38033,863], + [38035,29716], + [38037,1110], + [38039,1039], + [38041,1078], + [38043,1053], + [38045,1811], + [38047,879], + [38049,2663], + [38051,1325], + [38053,3651], + [38055,4313], + [38057,3649], + [38059,13246], + [38061,3213], + [38063,1492], + [38065,788], + [38067,3218], + [38069,1995], + [38071,4931], + [38073,2333], + [38075,1011], + [38077,6829], + [38079,4740], + [38081,1819], + [38083,684], + [38085,1114], + [38087,309], + [38089,11962], + [38091,916], + [38093,9199], + [38095,1033], + [38097,3349], + [38099,4838], + [38101,27449], + [38103,1988], + [38105,12895], + [39001,10829], + [39003,40319], + [39005,20504], + [39007,38381], + [39009,22509], + [39011,18342], + [39013,26910], + [39015,17333], + [39017,136416], + [39019,10917], + [39021,15274], + [39023,54836], + [39025,76143], + [39027,16309], + [39029,41582], + [39031,14367], + [39033,17833], + [39035,537621], + [39037,20803], + [39039,15309], + [39041,67701], + [39043,31577], + [39045,55549], + [39047,11729], + [39049,496337], + [39051,16404], + [39053,11520], + [39055,35121], + [39057,64702], + [39059,16065], + [39061,338267], + [39063,32049], + [39065,11430], + [39067,6192], + [39069,11094], + [39071,16731], + [39073,11268], + [39075,12520], + [39077,22876], + [39079,12964], + [39081,27571], + [39083,23229], + [39085,95238], + [39087,23731], + [39089,64434], + [39091,18627], + [39093,118594], + [39095,178971], + [39097,14916], + [39099,98035], + [39101,24699], + [39103,67192], + [39105,9285], + [39107,16142], + [39109,40900], + [39111,5984], + [39113,223495], + [39115,6116], + [39117,12781], + [39119,34348], + [39121,5012], + [39123,17495], + [39125,7589], + [39127,13576], + [39129,19465], + [39131,11033], + [39133,62208], + [39135,16126], + [39137,13159], + [39139,47987], + [39141,28526], + [39143,23721], + [39145,30204], + [39147,21507], + [39149,18665], + [39151,152037], + [39153,223021], + [39155,86709], + [39157,36548], + [39159,19038], + [39161,11503], + [39163,5053], + [39165,80704], + [39167,25378], + [39169,43353], + [39171,15263], + [39173,50187], + [39175,9157], + [40001,7796], + [40003,1978], + [40005,5284], + [40007,2103], + [40009,7573], + [40011,3819], + [40013,16911], + [40015,10273], + [40017,43878], + [40019,18278], + [40021,16360], + [40023,5962], + [40025,990], + [40027,103028], + [40029,2240], + [40031,42957], + [40033,2265], + [40035,5413], + [40037,26398], + [40039,10458], + [40041,16571], + [40043,1727], + [40045,1625], + [40047,23798], + [40049,10473], + [40051,19743], + [40053,1883], + [40055,2152], + [40057,1185], + [40059,1348], + [40061,4849], + [40063,4258], + [40065,9958], + [40067,2392], + [40069,4256], + [40071,17890], + [40073,5691], + [40075,3839], + [40077,4019], + [40079,18354], + [40081,12923], + [40083,15651], + [40085,3104], + [40087,13838], + [40089,12980], + [40091,8349], + [40093,3030], + [40095,6241], + [40097,15730], + [40099,5275], + [40101,26097], + [40103,4598], + [40105,4064], + [40107,3987], + [40109,296818], + [40111,14852], + [40113,18314], + [40115,12020], + [40117,6211], + [40119,30404], + [40121,17828], + [40123,14512], + [40125,25925], + [40127,4550], + [40129,1350], + [40131,34109], + [40133,9240], + [40135,15412], + [40137,17252], + [40139,6989], + [40141,3012], + [40143,250071], + [40145,28309], + [40147,20688], + [40149,4484], + [40151,3413], + [40153,7366], + [41001,7033], + [41003,34775], + [41005,153822], + [41007,15976], + [41009,19213], + [41011,26473], + [41013,9330], + [41015,10382], + [41017,69631], + [41019,44828], + [41021,805], + [41023,3176], + [41025,3079], + [41027,8543], + [41029,86195], + [41031,7628], + [41033,35614], + [41035,27171], + [41037,3522], + [41039,148752], + [41041,20674], + [41043,46265], + [41045,10262], + [41047,116077], + [41049,3936], + [41051,318173], + [41053,29128], + [41055,779], + [41057,10454], + [41059,26976], + [41061,10291], + [41063,3126], + [41065,10135], + [41067,212778], + [41069,677], + [41071,35952], + [42001,38818], + [42003,536439], + [42005,28242], + [42007,70384], + [42009,19666], + [42011,153876], + [42013,51638], + [42015,24851], + [42017,235909], + [42019,75596], + [42021,57154], + [42023,2196], + [42025,25978], + [42027,57710], + [42029,188613], + [42031,15925], + [42033,31152], + [42035,14675], + [42037,26564], + [42039,35102], + [42041,97919], + [42043,111489], + [42045,204870], + [42047,13447], + [42049,110377], + [42051,54043], + [42053,1473], + [42055,60102], + [42057,5947], + [42059,14484], + [42061,16935], + [42063,34030], + [42065,18452], + [42067,9361], + [42069,85907], + [42071,198565], + [42073,36742], + [42075,52792], + [42077,137239], + [42079,128247], + [42081,45991], + [42083,17199], + [42085,45805], + [42087,18939], + [42089,57526], + [42091,312805], + [42093,7423], + [42095,113827], + [42097,39281], + [42099,17936], + [42101,591280], + [42103,21379], + [42105,6536], + [42107,58758], + [42109,14576], + [42111,29918], + [42113,2648], + [42115,17404], + [42117,16121], + [42119,14702], + [42121,21925], + [42123,17095], + [42125,83897], + [42127,19202], + [42129,151892], + [42131,10801], + [42133,169667], + [44001,19521], + [44003,69013], + [44005,35421], + [44007,238465], + [44009,49608], + [45001,9392], + [45003,65703], + [45005,3285], + [45007,76234], + [45009,5587], + [45011,8426], + [45013,68790], + [45015,73168], + [45017,6150], + [45019,154049], + [45021,20480], + [45023,12384], + [45025,18303], + [45027,13573], + [45029,15134], + [45031,26861], + [45033,10945], + [45035,54028], + [45037,9054], + [45039,8878], + [45041,52092], + [45043,24840], + [45045,185837], + [45047,27022], + [45049,7129], + [45051,125168], + [45053,9715], + [45055,24711], + [45057,31445], + [45059,25543], + [45061,6501], + [45063,109251], + [45065,4077], + [45067,11911], + [45069,9703], + [45071,14893], + [45073,31354], + [45075,33029], + [45077,46428], + [45079,149161], + [45081,7052], + [45083,113191], + [45085,41417], + [45087,11564], + [45089,12310], + [45091,95539], + [46003,1179], + [46005,7651], + [46007,955], + [46009,2554], + [46011,12602], + [46013,16328], + [46015,2170], + [46017,530], + [46019,4172], + [46021,690], + [46023,3184], + [46025,1510], + [46027,5302], + [46029,12011], + [46031,1239], + [46033,3901], + [46035,8696], + [46037,2567], + [46039,1835], + [46041,1648], + [46043,1271], + [46045,1579], + [46047,3115], + [46049,944], + [46051,3203], + [46053,1943], + [46055,893], + [46057,2193], + [46059,1498], + [46061,1061], + [46063,533], + [46065,7391], + [46067,2881], + [46069,582], + [46071,984], + [46073,911], + [46075,405], + [46077,2327], + [46079,4817], + [46081,10902], + [46083,18736], + [46085,1383], + [46087,2182], + [46089,1019], + [46091,1813], + [46093,11022], + [46095,683], + [46097,990], + [46099,73762], + [46101,2664], + [46102,"NA"], + [46103,43110], + [46105,1311], + [46107,1025], + [46109,3756], + [46111,1050], + [46115,2626], + [46117,1309], + [46119,601], + [46121,2768], + [46123,2424], + [46125,3523], + [46127,6285], + [46129,2292], + [46135,9283], + [46137,764], + [47001,30518], + [47003,17058], + [47005,6693], + [47007,4664], + [47009,49939], + [47011,39615], + [47013,15843], + [47015,5456], + [47017,11321], + [47019,23798], + [47021,14671], + [47023,5998], + [47025,12996], + [47027,3171], + [47029,14592], + [47031,21576], + [47033,5400], + [47035,25114], + [47037,273497], + [47039,4721], + [47041,7362], + [47043,19032], + [47045,15327], + [47047,15084], + [47049,7385], + [47051,16325], + [47053,19280], + [47055,11599], + [47057,9112], + [47059,27319], + [47061,4894], + [47063,24343], + [47065,139037], + [47067,2704], + [47069,8680], + [47071,10118], + [47073,23375], + [47075,7104], + [47077,10827], + [47079,13483], + [47081,8930], + [47083,2999], + [47085,7064], + [47087,4566], + [47089,20088], + [47091,6936], + [47093,182315], + [47095,2164], + [47097,9725], + [47099,16101], + [47101,4663], + [47103,13653], + [47105,20090], + [47107,20352], + [47109,10095], + [47111,9158], + [47113,37110], + [47115,11393], + [47117,12008], + [47119,33332], + [47121,4818], + [47123,17416], + [47125,68904], + [47127,2613], + [47129,7384], + [47131,12795], + [47133,8937], + [47135,3295], + [47137,2180], + [47139,7023], + [47141,30624], + [47143,12607], + [47145,21619], + [47147,25065], + [47149,106673], + [47151,8519], + [47153,5505], + [47155,36901], + [47157,349207], + [47159,7535], + [47161,5315], + [47163,66388], + [47165,64600], + [47167,21445], + [47169,2944], + [47171,7613], + [47173,7268], + [47175,2156], + [47177,15755], + [47179,52684], + [47181,5860], + [47183,13607], + [47185,9793], + [47187,73160], + [47189,47213], + [48001,16567], + [48003,5413], + [48005,30931], + [48007,9529], + [48009,3351], + [48011,702], + [48013,15509], + [48015,11021], + [48017,2230], + [48019,8278], + [48021,26015], + [48023,1644], + [48025,8531], + [48027,116397], + [48029,627889], + [48031,4230], + [48033,248], + [48035,7027], + [48037,33171], + [48039,117088], + [48041,77480], + [48043,3932], + [48045,664], + [48047,2022], + [48049,13835], + [48051,6565], + [48053,16545], + [48055,12894], + [48057,7733], + [48059,5291], + [48061,122188], + [48063,4730], + [48065,2292], + [48067,11811], + [48069,2462], + [48071,13320], + [48073,17885], + [48075,2282], + [48077,4076], + [48079,1000], + [48081,1574], + [48083,3470], + [48085,323905], + [48087,1099], + [48089,7603], + [48091,47253], + [48093,5107], + [48095,791], + [48097,15185], + [48099,22424], + [48101,664], + [48103,1479], + [48105,1411], + [48107,2064], + [48109,735], + [48111,2432], + [48113,906179], + [48115,4339], + [48117,6118], + [48119,2035], + [48121,275164], + [48123,7260], + [48125,832], + [48127,3476], + [48129,1230], + [48131,3845], + [48133,6437], + [48135,51475], + [48137,634], + [48139,54725], + [48141,263200], + [48143,13827], + [48145,5405], + [48147,12027], + [48149,9298], + [48151,1696], + [48153,2320], + [48155,562], + [48157,222331], + [48159,3931], + [48161,7232], + [48163,4530], + [48165,5716], + [48167,117455], + [48169,1715], + [48171,10795], + [48173,475], + [48175,2755], + [48177,7018], + [48179,7971], + [48181,47550], + [48183,45615], + [48185,8980], + [48187,51990], + [48189,11217], + [48191,1244], + [48193,3157], + [48195,1924], + [48197,1533], + [48199,20739], + [48201,1562813], + [48203,23363], + [48205,1754], + [48207,2128], + [48209,68045], + [48211,1358], + [48213,30459], + [48215,232523], + [48217,12674], + [48219,8065], + [48221,21527], + [48223,13287], + [48225,8328], + [48227,11032], + [48229,890], + [48231,31781], + [48233,7799], + [48235,648], + [48237,3075], + [48239,5232], + [48241,11974], + [48243,1007], + [48245,94020], + [48247,1587], + [48249,13614], + [48251,55467], + [48253,5635], + [48255,4303], + [48257,36525], + [48259,13691], + [48261,152], + [48263,275], + [48265,20580], + [48267,1941], + [48269,101], + [48271,1200], + [48273,10958], + [48275,1376], + [48277,19085], + [48279,4790], + [48281,7748], + [48283,2286], + [48285,7684], + [48287,6118], + [48289,6245], + [48291,25974], + [48293,8100], + [48295,1276], + [48297,3586], + [48299,8681], + [48301,31], + [48303,110275], + [48305,2147], + [48307,3143], + [48309,88208], + [48311,194], + [48313,4174], + [48315,4457], + [48317,1635], + [48319,1622], + [48321,13811], + [48323,16416], + [48325,15154], + [48327,964], + [48329,55045], + [48331,9437], + [48333,1833], + [48335,2639], + [48337,8044], + [48339,186861], + [48341,6725], + [48343,5024], + [48345,469], + [48347,23825], + [48349,17326], + [48351,4781], + [48353,5552], + [48355,128857], + [48357,3549], + [48359,581], + [48361,32272], + [48363,10441], + [48365,9032], + [48367,43942], + [48369,3222], + [48371,4420], + [48373,17632], + [48375,43453], + [48377,2589], + [48379,4333], + [48381,49118], + [48383,1171], + [48385,1123], + [48387,5218], + [48389,3731], + [48391,2694], + [48393,326], + [48395,6298], + [48397,30365], + [48399,3781], + [48401,17982], + [48403,3811], + [48405,3202], + [48407,9414], + [48409,23246], + [48411,2135], + [48413,1102], + [48415,5838], + [48417,1257], + [48419,9218], + [48421,1063], + [48423,77801], + [48425,3234], + [48427,16320], + [48429,3361], + [48431,462], + [48433,458], + [48435,1573], + [48437,2602], + [48439,689921], + [48441,49443], + [48443,343], + [48445,4142], + [48447,712], + [48449,10675], + [48451,43081], + [48453,447561], + [48455,5934], + [48457,7312], + [48459,14061], + [48461,1308], + [48463,8624], + [48465,15189], + [48467,19354], + [48469,32734], + [48471,21294], + [48473,14698], + [48475,3954], + [48477,12205], + [48479,72379], + [48481,15224], + [48483,2287], + [48485,48528], + [48487,5155], + [48489,5737], + [48491,170051], + [48493,15755], + [48495,2524], + [48497,21691], + [48499,16122], + [48501,2652], + [48503,7066], + [48505,4457], + [48507,3536], + [49001,2313], + [49003,17035], + [49005,36829], + [49007,7841], + [49009,168], + [49011,101422], + [49013,6650], + [49015,3564], + [49017,1756], + [49019,3873], + [49021,15575], + [49023,3287], + [49025,2514], + [49027,4235], + [49029,3236], + [49031,516], + [49033,601], + [49035,363058], + [49037,4019], + [49039,8366], + [49041,7171], + [49043,14781], + [49045,19562], + [49047,10616], + [49049,155664], + [49051,9040], + [49053,52385], + [49055,990], + [49057,81298], + [50001,14701], + [50003,15280], + [50005,12094], + [50007,64906], + [50009,2720], + [50011,18649], + [50013,2952], + [50015,10401], + [50017,12275], + [50019,11498], + [50021,25160], + [50023,24719], + [50025,19059], + [50027,24121], + [51001,13528], + [51003,40015], + [51005,6866], + [51007,4699], + [51009,12110], + [51011,5948], + [51013,102310], + [51015,28790], + [51017,1847], + [51019,30927], + [51021,2561], + [51023,13238], + [51025,6048], + [51027,9022], + [51029,5705], + [51031,22608], + [51033,10815], + [51035,12517], + [51036,2899], + [51037,4493], + [51041,120907], + [51043,5568], + [51045,2344], + [51047,16837], + [51049,3972], + [51051,6096], + [51053,10347], + [51057,4470], + [51059,393380], + [51061,23981], + [51063,6434], + [51065,9794], + [51067,23203], + [51069,30495], + [51071,7088], + [51073,14746], + [51075,8257], + [51077,6653], + [51079,7260], + [51081,3649], + [51083,14084], + [51085,38208], + [51087,126115], + [51089,22161], + [51091,1163], + [51093,14157], + [51095,28410], + [51097,2811], + [51099,8972], + [51101,6079], + [51103,5081], + [51105,9278], + [51107,121299], + [51109,13451], + [51111,4480], + [51113,5107], + [51115,3766], + [51117,11785], + [51119,4522], + [51121,35577], + [51125,6523], + [51127,7555], + [51131,5177], + [51133,5774], + [51135,5633], + [51137,13470], + [51139,9467], + [51141,7713], + [51143,26687], + [51145,9974], + [51147,7281], + [51149,11298], + [51153,139306], + [51155,14577], + [51157,3131], + [51159,3250], + [51161,38434], + [51163,9160], + [51165,30503], + [51167,11102], + [51169,8976], + [51171,17262], + [51173,12829], + [51175,6664], + [51177,43279], + [51179,45345], + [51181,2773], + [51183,3388], + [51185,17330], + [51187,14190], + [51191,22388], + [51193,7412], + [51195,15104], + [51197,11892], + [51199,24333], + [51510,68663], + [51520,7418], + [51530,2606], + [51540,18408], + [51550,83031], + [51570,7092], + [51580,2399], + [51590,18517], + [51595,2119], + [51600,8499], + [51610,5308], + [51620,3470], + [51630,10419], + [51640,2837], + [51650,53555], + [51660,16848], + [51670,9123], + [51678,1935], + [51680,28150], + [51683,12540], + [51685,4778], + [51690,5740], + [51700,68665], + [51710,87249], + [51720,1786], + [51730,13262], + [51735,4583], + [51740,36616], + [51750,5503], + [51760,89238], + [51770,42333], + [51775,9997], + [51790,10477], + [51800,32331], + [51810,167731], + [51820,9128], + [51830,4649], + [51840,10520], + [53001,5824], + [53003,9235], + [53005,70363], + [53007,27383], + [53009,32280], + [53011,167717], + [53013,1759], + [53015,40668], + [53017,14706], + [53019,3056], + [53021,25835], + [53023,1007], + [53025,30512], + [53027,28070], + [53029,34027], + [53031,13903], + [53033,851077], + [53035,100484], + [53037,17648], + [53039,8247], + [53041,30036], + [53043,4416], + [53045,23034], + [53047,17075], + [53049,8786], + [53051,5637], + [53053,312839], + [53055,7718], + [53057,47341], + [53059,4713], + [53061,284477], + [53063,194995], + [53065,17534], + [53067,106229], + [53069,1823], + [53071,22391], + [53073,83475], + [53075,17657], + [53077,81720], + [54001,6293], + [54003,42456], + [54005,9298], + [54007,5498], + [54009,9961], + [54011,40239], + [54013,2808], + [54015,3365], + [54017,2662], + [54019,17697], + [54021,2703], + [54023,4372], + [54025,15255], + [54027,9676], + [54029,12760], + [54031,5561], + [54033,27542], + [54035,11149], + [54037,20808], + [54039,80267], + [54041,6586], + [54043,8046], + [54045,13978], + [54047,7702], + [54049,22718], + [54051,12695], + [54053,11079], + [54055,25019], + [54057,11274], + [54059,10910], + [54061,38410], + [54063,5815], + [54065,7118], + [54067,10671], + [54069,17846], + [54071,3032], + [54073,2868], + [54075,3647], + [54077,12420], + [54079,21734], + [54081,31069], + [54083,11391], + [54085,3825], + [54087,5815], + [54089,5482], + [54091,6616], + [54093,2951], + [54095,3563], + [54097,9341], + [54099,16305], + [54101,3690], + [54103,5979], + [54105,2427], + [54107,36110], + [54109,9169], + [55001,8163], + [55003,6504], + [55005,19133], + [55007,6859], + [55009,103267], + [55011,5723], + [55013,7284], + [55015,19345], + [55017,25247], + [55019,12755], + [55021,23317], + [55023,6610], + [55025,216930], + [55027,33987], + [55029,13159], + [55031,18717], + [55033,16652], + [55035,40528], + [55037,1979], + [55039,41387], + [55041,4040], + [55043,19444], + [55045,14957], + [55047,7932], + [55049,9799], + [55051,2948], + [55053,8154], + [55055,32739], + [55057,10149], + [55059,63286], + [55061,8234], + [55063,46966], + [55065,6714], + [55067,8646], + [55069,12560], + [55071,34119], + [55073,54820], + [55075,18548], + [55077,6389], + [55078,1354], + [55079,382027], + [55081,17832], + [55083,15634], + [55085,14994], + [55087,72288], + [55089,35044], + [55091,3005], + [55093,15302], + [55095,18189], + [55097,28072], + [55099,6567], + [55101,75640], + [55103,7564], + [55105,64482], + [55107,6294], + [55109,33389], + [55111,25678], + [55113,7573], + [55115,17024], + [55117,47532], + [55119,8769], + [55121,11892], + [55123,12095], + [55125,10758], + [55127,40246], + [55129,7142], + [55131,53756], + [55133,156996], + [55135,21793], + [55137,9851], + [55139,69759], + [55141,32223], + [56001,16009], + [56003,4481], + [56005,17588], + [56007,6205], + [56009,5630], + [56011,3010], + [56013,15167], + [56015,5328], + [56017,2246], + [56019,3778], + [56021,38447], + [56023,7063], + [56025,32984], + [56027,982], + [56029,11811], + [56031,3740], + [56033,13130], + [56035,3197], + [56037,16269], + [56039,8795], + [56041,7705], + [56043,3490], + [56045,3182] + ] +} diff --git a/data/regional/united-states/demographics/households/us-households-2019.json b/data/regional/united-states/demographics/households/us-households-2019.json new file mode 100644 index 0000000..9c6ae05 --- /dev/null +++ b/data/regional/united-states/demographics/households/us-households-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Households", + "description" : "Number of households.", + "units" : "homes", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","households"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.households.2019"], + [1001,21397], + [1003,80930], + [1005,9345], + [1007,6891], + [1009,20847], + [1011,3521], + [1013,6506], + [1015,44605], + [1017,13448], + [1019,10737], + [1021,16927], + [1023,5300], + [1025,9090], + [1027,5198], + [1029,5680], + [1031,19924], + [1033,21880], + [1035,4553], + [1037,4032], + [1039,14852], + [1041,4943], + [1043,31034], + [1045,18806], + [1047,15910], + [1049,26040], + [1051,29708], + [1053,13089], + [1055,38942], + [1057,6802], + [1059,11048], + [1061,10383], + [1063,2951], + [1065,5650], + [1067,6630], + [1069,39311], + [1071,20695], + [1073,261231], + [1075,5856], + [1077,38471], + [1079,12677], + [1081,60237], + [1083,32143], + [1085,4251], + [1087,7474], + [1089,148189], + [1091,7361], + [1093,11997], + [1095,34883], + [1097,156251], + [1099,8166], + [1101,89527], + [1103,45918], + [1105,3070], + [1107,7637], + [1109,11601], + [1111,8702], + [1113,23262], + [1115,32036], + [1117,79630], + [1119,5202], + [1121,31395], + [1123,16205], + [1125,72461], + [1127,25019], + [1129,5990], + [1131,3854], + [1133,9592], + [2013,890], + [2016,1187], + [2020,106567], + [2050,4489], + [2060,314], + [2068,613], + [2070,1427], + [2090,36188], + [2100,1007], + [2105,791], + [2110,12676], + [2122,21630], + [2130,5397], + [2150,4261], + [2158,1724], + [2164,421], + [2170,31217], + [2180,2844], + [2185,1979], + [2188,1795], + [2195,1187], + [2198,2371], + [2220,3547], + [2230,375], + [2240,2170], + [2261,3177], + [2275,1027], + [2282,219], + [2290,1856], + [4001,20867], + [4003,50163], + [4005,47447], + [4007,21945], + [4009,11017], + [4011,3132], + [4012,9346], + [4013,1552096], + [4015,86889], + [4017,34990], + [4019,404739], + [4021,141300], + [4023,15853], + [4025,98386], + [4027,73098], + [5001,7491], + [5003,7757], + [5005,18435], + [5007,97249], + [5009,15034], + [5011,4419], + [5013,1850], + [5015,11139], + [5017,4068], + [5019,8446], + [5021,6444], + [5023,10783], + [5025,3217], + [5027,8562], + [5029,8309], + [5031,41375], + [5033,23958], + [5035,19074], + [5037,6653], + [5039,2969], + [5041,5204], + [5043,7157], + [5045,44575], + [5047,6723], + [5049,4973], + [5051,40209], + [5053,6863], + [5055,17254], + [5057,8094], + [5059,12599], + [5061,5142], + [5063,14322], + [5065,4851], + [5067,6137], + [5069,26801], + [5071,9682], + [5073,2784], + [5075,6463], + [5077,3206], + [5079,3773], + [5081,5363], + [5083,8417], + [5085,26895], + [5087,6279], + [5089,6782], + [5091,16426], + [5093,16389], + [5095,3333], + [5097,3754], + [5099,3397], + [5101,2936], + [5103,9658], + [5105,3668], + [5107,7485], + [5109,4280], + [5111,9526], + [5113,8243], + [5115,22579], + [5117,3776], + [5119,158051], + [5121,7355], + [5123,9388], + [5125,44075], + [5127,3944], + [5129,3327], + [5131,51228], + [5133,5885], + [5135,7447], + [5137,4787], + [5139,15726], + [5141,6813], + [5143,87325], + [5145,29055], + [5147,2932], + [5149,7503], + [6001,577177], + [6003,350], + [6005,14594], + [6007,85320], + [6009,16942], + [6011,7227], + [6013,394769], + [6015,9945], + [6017,70974], + [6019,307906], + [6021,10085], + [6023,54679], + [6025,44829], + [6027,7950], + [6029,270282], + [6031,43452], + [6033,25660], + [6035,9280], + [6037,3316795], + [6039,44881], + [6041,105432], + [6043,7643], + [6045,34408], + [6047,80008], + [6049,3616], + [6051,4765], + [6053,127155], + [6055,48705], + [6057,40855], + [6059,1037492], + [6061,142855], + [6063,8450], + [6065,724893], + [6067,543025], + [6069,18135], + [6071,636041], + [6073,1125286], + [6075,362354], + [6077,228567], + [6079,105981], + [6081,263543], + [6083,145856], + [6085,640215], + [6087,95818], + [6089,71181], + [6091,1319], + [6093,19240], + [6095,149865], + [6097,189374], + [6099,173898], + [6101,32636], + [6103,24189], + [6105,5939], + [6107,138238], + [6109,22502], + [6111,271040], + [6113,74296], + [6115,26354], + [8001,166450], + [8003,6162], + [8005,240304], + [8007,5858], + [8009,1662], + [8011,1767], + [8013,127415], + [8014,27470], + [8015,8231], + [8017,774], + [8019,4395], + [8021,3183], + [8023,1746], + [8025,1301], + [8027,2214], + [8029,11883], + [8031,301501], + [8033,759], + [8035,120709], + [8037,18171], + [8039,9280], + [8041,257507], + [8043,17136], + [8045,21498], + [8047,2802], + [8049,5884], + [8051,6616], + [8053,377], + [8055,3225], + [8057,558], + [8059,232284], + [8061,638], + [8063,3004], + [8065,3392], + [8067,21794], + [8069,137021], + [8071,6670], + [8073,1518], + [8075,8393], + [8077,61742], + [8079,367], + [8081,5366], + [8083,10655], + [8085,17140], + [8087,10928], + [8089,7722], + [8091,2163], + [8093,6931], + [8095,1689], + [8097,7467], + [8099,4888], + [8101,64314], + [8103,2301], + [8105,4823], + [8107,9603], + [8109,2860], + [8111,289], + [8113,3552], + [8115,967], + [8117,10641], + [8119,10248], + [8121,2087], + [8123,104671], + [8125,4028], + [9001,340189], + [9003,350408], + [9005,74143], + [9007,66971], + [9009,330572], + [9011,107827], + [9013,55683], + [9015,44953], + [10001,65796], + [10003,205829], + [10005,91697], + [11001,284386], + [12001,97995], + [12003,8693], + [12005,71422], + [12007,9115], + [12009,230417], + [12011,690050], + [12013,4501], + [12015,76891], + [12017,63681], + [12019,74333], + [12021,142979], + [12023,25133], + [12027,12072], + [12029,6504], + [12031,359544], + [12033,120104], + [12035,42121], + [12037,4444], + [12039,17149], + [12041,6464], + [12043,4700], + [12045,5757], + [12047,4381], + [12049,7863], + [12051,12527], + [12053,75348], + [12055,41740], + [12057,526175], + [12059,7092], + [12061,58612], + [12063,17149], + [12065,5770], + [12067,2175], + [12069,134317], + [12071,275965], + [12073,113658], + [12075,16374], + [12077,2459], + [12079,6778], + [12081,145356], + [12083,139172], + [12085,64528], + [12086,883372], + [12087,32068], + [12089,32603], + [12091,77962], + [12093,13904], + [12095,461705], + [12097,103141], + [12099,554095], + [12101,204198], + [12103,407546], + [12105,235283], + [12107,28943], + [12109,88773], + [12111,114761], + [12113,63514], + [12115,182842], + [12117,173668], + [12119,56230], + [12121,14888], + [12123,7405], + [12125,3960], + [12127,216495], + [12129,11200], + [12131,27420], + [12133,8827], + [13001,6656], + [13003,2880], + [13005,3874], + [13007,1425], + [13009,16191], + [13011,6740], + [13013,26305], + [13015,37627], + [13017,6443], + [13019,7367], + [13021,58116], + [13023,4176], + [13025,6823], + [13027,6335], + [13029,13048], + [13031,27375], + [13033,8193], + [13035,8279], + [13037,1736], + [13039,19338], + [13043,4013], + [13045,41903], + [13047,24778], + [13049,3675], + [13051,108568], + [13053,2570], + [13055,9260], + [13057,88137], + [13059,48844], + [13061,1242], + [13063,94279], + [13065,2477], + [13067,280374], + [13069,14438], + [13071,15505], + [13073,47215], + [13075,6217], + [13077,52035], + [13079,4510], + [13081,8585], + [13083,6195], + [13085,9041], + [13087,10084], + [13089,282436], + [13091,7628], + [13093,5020], + [13095,34087], + [13097,49187], + [13099,4074], + [13101,1561], + [13103,21172], + [13105,7559], + [13107,8387], + [13109,4020], + [13111,10408], + [13113,40285], + [13115,35679], + [13117,76753], + [13119,8460], + [13121,410576], + [13123,12021], + [13125,1108], + [13127,34119], + [13129,20561], + [13131,9136], + [13133,7132], + [13135,293330], + [13137,15139], + [13139,64352], + [13141,2974], + [13143,11259], + [13145,12156], + [13147,9853], + [13149,4502], + [13151,75984], + [13153,57056], + [13155,3329], + [13157,23166], + [13159,5171], + [13161,5279], + [13163,5664], + [13165,3443], + [13167,3393], + [13169,10701], + [13171,6494], + [13173,3714], + [13175,17142], + [13177,10226], + [13179,23485], + [13181,3475], + [13183,5695], + [13185,41282], + [13187,11570], + [13189,8153], + [13191,6042], + [13193,4696], + [13195,10744], + [13197,3408], + [13199,8051], + [13201,2333], + [13205,7982], + [13207,9760], + [13209,3097], + [13211,6942], + [13213,14385], + [13215,72759], + [13217,37018], + [13219,13423], + [13221,5651], + [13223,53299], + [13225,10136], + [13227,11868], + [13229,7048], + [13231,6143], + [13233,15038], + [13235,3687], + [13237,8937], + [13239,842], + [13241,6662], + [13243,2553], + [13245,71400], + [13247,31076], + [13249,1864], + [13251,5098], + [13253,3363], + [13255,24336], + [13257,9543], + [13259,1816], + [13261,11510], + [13263,2809], + [13265,593], + [13267,8241], + [13269,3473], + [13271,4668], + [13273,3399], + [13275,17595], + [13277,15144], + [13279,10030], + [13281,4898], + [13283,2490], + [13285,24928], + [13287,3169], + [13289,3044], + [13291,9743], + [13293,10154], + [13295,25975], + [13297,31670], + [13299,13823], + [13301,2244], + [13303,7503], + [13305,10400], + [13307,1140], + [13309,1862], + [13311,11695], + [13313,35629], + [13315,2575], + [13317,3979], + [13319,3185], + [13321,8002], + [15001,69453], + [15003,312795], + [15005,39], + [15007,22658], + [15009,54479], + [16001,173353], + [16003,1757], + [16005,31155], + [16007,2424], + [16009,3418], + [16011,14989], + [16013,7995], + [16015,3205], + [16017,17537], + [16019,39768], + [16021,4653], + [16023,967], + [16025,394], + [16027,72807], + [16029,2538], + [16031,7711], + [16033,290], + [16035,3555], + [16037,1774], + [16039,10606], + [16041,4397], + [16043,4347], + [16045,6683], + [16047,5469], + [16049,6407], + [16051,8791], + [16053,8022], + [16055,62304], + [16057,15422], + [16059,3582], + [16061,1646], + [16063,1724], + [16065,11016], + [16067,7250], + [16069,16384], + [16071,1615], + [16073,4321], + [16075,8876], + [16077,2633], + [16079,5466], + [16081,3707], + [16083,31146], + [16085,3869], + [16087,4035], + [17001,27112], + [17003,2154], + [17005,6299], + [17007,18571], + [17009,2055], + [17011,13698], + [17013,1664], + [17015,6508], + [17017,5043], + [17019,82369], + [17021,13901], + [17023,6720], + [17025,5696], + [17027,14353], + [17029,20926], + [17031,1972108], + [17033,7666], + [17035,4299], + [17037,38150], + [17039,6694], + [17041,7613], + [17043,342791], + [17045,7542], + [17047,2773], + [17049,13877], + [17051,7737], + [17053,5771], + [17055,16235], + [17057,13940], + [17059,2293], + [17061,4949], + [17063,19676], + [17065,3400], + [17067,7409], + [17069,1363], + [17071,2977], + [17073,19856], + [17075,11741], + [17077,23883], + [17079,3711], + [17081,14985], + [17083,8499], + [17085,9970], + [17087,4303], + [17089,179637], + [17091,39796], + [17093,40721], + [17095,20680], + [17097,246122], + [17099,45095], + [17101,6306], + [17103,13788], + [17105,14307], + [17107,10797], + [17109,11408], + [17111,112453], + [17113,65845], + [17115,43912], + [17117,18875], + [17119,107659], + [17121,15946], + [17123,4884], + [17125,5977], + [17127,5822], + [17129,5188], + [17131,6516], + [17133,13586], + [17135,11522], + [17137,13719], + [17139,5959], + [17141,21021], + [17143,73253], + [17145,8433], + [17147,6692], + [17149,6309], + [17151,1694], + [17153,2095], + [17155,2413], + [17157,11883], + [17159,6452], + [17161,60546], + [17163,104105], + [17165,9972], + [17167,83711], + [17169,2775], + [17171,1939], + [17173,9189], + [17175,2315], + [17177,19739], + [17179,54291], + [17181,6654], + [17183,31151], + [17185,4839], + [17187,6862], + [17189,6020], + [17191,7051], + [17193,6041], + [17195,23084], + [17197,229498], + [17199,27029], + [17201,114779], + [17203,14499], + [18001,12481], + [18003,145065], + [18005,31452], + [18007,3432], + [18009,5235], + [18011,25485], + [18013,6189], + [18015,8002], + [18017,14688], + [18019,44200], + [18021,10543], + [18023,12033], + [18025,3835], + [18027,11227], + [18029,18870], + [18031,10353], + [18033,16801], + [18035,46026], + [18037,16893], + [18039,71718], + [18041,9584], + [18043,29189], + [18045,6974], + [18047,8687], + [18049,7799], + [18051,13340], + [18053,26372], + [18055,12781], + [18057,119789], + [18059,28740], + [18061,14403], + [18063,59015], + [18065,18304], + [18067,34701], + [18069,14742], + [18071,16753], + [18073,12533], + [18075,8174], + [18077,12632], + [18079,10792], + [18081,56628], + [18083,15038], + [18085,30997], + [18087,12325], + [18089,186731], + [18091,43039], + [18093,18781], + [18095,51003], + [18097,372358], + [18099,17304], + [18101,4187], + [18103,13611], + [18105,55624], + [18107,15382], + [18109,26034], + [18111,5573], + [18113,18276], + [18115,2555], + [18117,7898], + [18119,8776], + [18121,6057], + [18123,7615], + [18125,5129], + [18127,64517], + [18129,10155], + [18131,5151], + [18133,13543], + [18135,10229], + [18137,10992], + [18139,6667], + [18141,101872], + [18143,8971], + [18145,17823], + [18147,8127], + [18149,8549], + [18151,14261], + [18153,7644], + [18155,4349], + [18157,70526], + [18159,6376], + [18161,2823], + [18163,75607], + [18165,6664], + [18167,41994], + [18169,12862], + [18171,3357], + [18173,24514], + [18175,10940], + [18177,26644], + [18179,10888], + [18181,9879], + [18183,13742], + [19001,3200], + [19003,1598], + [19005,5953], + [19007,5353], + [19009,2649], + [19011,10306], + [19013,52905], + [19015,10954], + [19017,9676], + [19019,8029], + [19021,7524], + [19023,6254], + [19025,4146], + [19027,8726], + [19029,5921], + [19031,7391], + [19033,19241], + [19035,5319], + [19037,5173], + [19039,3895], + [19041,7212], + [19043,7510], + [19045,19635], + [19047,6437], + [19049,34399], + [19051,3176], + [19053,3200], + [19055,6907], + [19057,16891], + [19059,8174], + [19061,38210], + [19063,4036], + [19065,8200], + [19067,6903], + [19069,4192], + [19071,2945], + [19073,3971], + [19075,5155], + [19077,4452], + [19079,6259], + [19081,4790], + [19083,7148], + [19085,6019], + [19087,7743], + [19089,3810], + [19091,4174], + [19093,3011], + [19095,6780], + [19097,8239], + [19099,14574], + [19101,6754], + [19103,59134], + [19105,8130], + [19107,4394], + [19109,6646], + [19111,14233], + [19113,90877], + [19115,4335], + [19117,3701], + [19119,4548], + [19121,6462], + [19123,8927], + [19125,13365], + [19127,15419], + [19129,5554], + [19131,4355], + [19133,4000], + [19135,3294], + [19137,4554], + [19139,16660], + [19141,6169], + [19143,2633], + [19145,6280], + [19147,3702], + [19149,10250], + [19151,3215], + [19153,187798], + [19155,36799], + [19157,7767], + [19159,1971], + [19161,4313], + [19163,67021], + [19165,5030], + [19167,12248], + [19169,37811], + [19171,6767], + [19173,2616], + [19175,5176], + [19177,2894], + [19179,14481], + [19181,19258], + [19183,8832], + [19185,2689], + [19187,15306], + [19189,4577], + [19191,8257], + [19193,39016], + [19195,3172], + [19197,5718], + [20001,5372], + [20003,3101], + [20005,5958], + [20007,1923], + [20009,10624], + [20011,5636], + [20013,3872], + [20015,24870], + [20017,1051], + [20019,1456], + [20021,7929], + [20023,1221], + [20025,873], + [20027,3514], + [20029,3689], + [20031,3585], + [20033,751], + [20035,13499], + [20037,15284], + [20039,1442], + [20041,7911], + [20043,3046], + [20045,46936], + [20047,1308], + [20049,1128], + [20051,11544], + [20053,2388], + [20055,12519], + [20057,11344], + [20059,10118], + [20061,12684], + [20063,1217], + [20065,1196], + [20067,2551], + [20069,2151], + [20071,519], + [20073,2769], + [20075,890], + [20077,2265], + [20079,13290], + [20081,1320], + [20083,767], + [20085,5465], + [20087,7575], + [20089,1380], + [20091,228592], + [20093,1201], + [20095,3133], + [20097,985], + [20099,8176], + [20101,757], + [20103,27253], + [20105,1248], + [20107,4497], + [20109,1153], + [20111,13569], + [20113,12334], + [20115,4846], + [20117,4085], + [20119,1689], + [20121,12835], + [20123,2570], + [20125,13576], + [20127,2280], + [20129,1038], + [20131,4007], + [20133,6601], + [20135,1269], + [20137,1830], + [20139,6607], + [20141,1648], + [20143,2446], + [20145,2448], + [20147,2316], + [20149,8698], + [20151,3652], + [20153,1176], + [20155,25014], + [20157,2218], + [20159,3917], + [20161,26490], + [20163,2176], + [20165,1421], + [20167,3015], + [20169,21959], + [20171,1967], + [20173,197229], + [20175,7321], + [20177,72267], + [20179,1134], + [20181,2544], + [20183,1701], + [20185,1771], + [20187,733], + [20189,1814], + [20191,9416], + [20193,3375], + [20195,1379], + [20197,2744], + [20199,636], + [20201,2332], + [20203,934], + [20205,3712], + [20207,1434], + [20209,60128], + [21001,6977], + [21003,7605], + [21005,8694], + [21007,3065], + [21009,16931], + [21011,4827], + [21013,10624], + [21015,46997], + [21017,8106], + [21019,18210], + [21021,11023], + [21023,3318], + [21025,5358], + [21027,7598], + [21029,29690], + [21031,4958], + [21033,5163], + [21035,14996], + [21037,36746], + [21039,1980], + [21041,4101], + [21043,9606], + [21045,6099], + [21047,25721], + [21049,14509], + [21051,7622], + [21053,3985], + [21055,3567], + [21057,2616], + [21059,40179], + [21061,4885], + [21063,2523], + [21065,5499], + [21067,129784], + [21069,5841], + [21071,15000], + [21073,21076], + [21075,2441], + [21077,3105], + [21079,6706], + [21081,9141], + [21083,14316], + [21085,9758], + [21087,4413], + [21089,14056], + [21091,3311], + [21093,41646], + [21095,11134], + [21097,7283], + [21099,7351], + [21101,18643], + [21103,6044], + [21105,1798], + [21107,18588], + [21109,5484], + [21111,312679], + [21113,18821], + [21115,8488], + [21117,63966], + [21119,6388], + [21121,11961], + [21123,5741], + [21125,22573], + [21127,5784], + [21129,2839], + [21131,4076], + [21133,9721], + [21135,5268], + [21137,9697], + [21139,3857], + [21141,10418], + [21143,3333], + [21145,27854], + [21147,6052], + [21149,3809], + [21151,33359], + [21153,5020], + [21155,7405], + [21157,13121], + [21159,4153], + [21161,6700], + [21163,10685], + [21165,2651], + [21167,8556], + [21169,4074], + [21171,4491], + [21173,10481], + [21175,4865], + [21177,11351], + [21179,17853], + [21181,2804], + [21183,9122], + [21185,20911], + [21187,3995], + [21189,1704], + [21191,5253], + [21193,11226], + [21195,25702], + [21197,4770], + [21199,25301], + [21201,861], + [21203,6544], + [21205,8623], + [21207,6922], + [21209,20551], + [21211,16624], + [21213,7028], + [21215,6763], + [21217,9857], + [21219,4644], + [21221,5892], + [21223,3498], + [21225,5374], + [21227,48224], + [21229,4581], + [21231,8231], + [21233,4953], + [21235,12620], + [21237,2898], + [21239,10355], + [22001,22236], + [22003,7925], + [22005,43032], + [22007,8552], + [22009,15163], + [22011,13520], + [22013,5812], + [22015,49377], + [22017,95864], + [22019,77780], + [22021,3665], + [22023,2734], + [22025,3364], + [22027,5917], + [22029,7162], + [22031,10821], + [22033,164346], + [22035,2037], + [22037,6959], + [22039,12172], + [22041,7423], + [22043,6989], + [22045,26184], + [22047,10903], + [22049,5971], + [22051,169452], + [22053,11726], + [22055,91543], + [22057,36895], + [22059,4814], + [22061,17712], + [22063,48410], + [22065,3832], + [22067,9732], + [22069,14659], + [22071,153819], + [22073,56556], + [22075,8919], + [22077,8960], + [22079,48488], + [22081,3372], + [22083,7459], + [22085,9158], + [22087,15005], + [22089,19212], + [22091,3857], + [22093,7719], + [22095,15270], + [22097,30485], + [22099,19749], + [22101,19856], + [22103,92962], + [22105,47597], + [22107,1792], + [22109,39972], + [22111,7582], + [22113,22086], + [22115,17696], + [22117,17613], + [22119,16551], + [22121,9643], + [22123,4084], + [22125,3869], + [22127,5483], + [23001,45630], + [23003,29516], + [23005,120644], + [23007,11848], + [23009,23661], + [23011,52105], + [23013,17020], + [23015,15336], + [23017,21338], + [23019,62156], + [23021,7025], + [23023,15980], + [23025,21321], + [23027,17236], + [23029,13791], + [23031,85314], + [24001,27399], + [24003,209814], + [24005,313519], + [24009,31973], + [24011,12024], + [24013,60758], + [24015,37058], + [24017,56520], + [24019,13183], + [24021,92526], + [24023,12425], + [24025,93955], + [24027,114170], + [24029,8025], + [24031,370950], + [24033,311343], + [24035,18577], + [24037,40552], + [24039,8574], + [24041,16826], + [24043,56035], + [24045,37793], + [24047,22089], + [24510,239116], + [25001,94323], + [25003,54813], + [25005,217912], + [25007,6765], + [25009,294202], + [25011,30569], + [25013,179423], + [25015,58838], + [25017,604384], + [25019,3713], + [25021,265300], + [25023,187460], + [25025,309844], + [25027,309951], + [26001,4988], + [26003,3007], + [26005,43416], + [26007,12752], + [26009,9899], + [26011,6571], + [26013,3107], + [26015,24296], + [26017,44339], + [26019,6792], + [26021,63665], + [26023,16650], + [26025,53991], + [26027,21019], + [26029,11503], + [26031,11195], + [26033,13999], + [26035,12199], + [26037,29728], + [26039,6141], + [26041,16234], + [26043,11231], + [26045,44480], + [26047,14463], + [26049,167902], + [26051,11047], + [26053,6744], + [26055,37319], + [26057,15035], + [26059,18107], + [26061,13386], + [26063,13847], + [26065,112840], + [26067,22964], + [26069,11669], + [26071,5225], + [26073,24739], + [26075,61805], + [26077,103445], + [26079,7145], + [26081,241746], + [26083,1081], + [26085,4631], + [26087,33700], + [26089,9139], + [26091,38345], + [26093,72000], + [26095,2231], + [26097,5269], + [26099,346402], + [26101,9426], + [26103,26552], + [26105,12186], + [26107,15808], + [26109,10627], + [26111,34199], + [26113,6055], + [26115,59929], + [26117,23913], + [26119,4452], + [26121,65939], + [26123,19161], + [26125,504585], + [26127,10156], + [26129,9184], + [26131,2793], + [26133,9181], + [26135,3806], + [26137,9944], + [26139,102610], + [26141,5797], + [26143,11139], + [26145,78933], + [26147,64850], + [26149,24150], + [26151,17499], + [26153,3468], + [26155,27593], + [26157,21777], + [26159,29411], + [26161,141245], + [26163,682282], + [26165,12963], + [27001,7681], + [27003,128198], + [27005,13617], + [27007,17372], + [27009,16452], + [27011,2298], + [27013,26091], + [27015,10764], + [27017,13613], + [27019,36754], + [27021,13164], + [27023,5209], + [27025,20242], + [27027,24364], + [27029,3405], + [27031,2691], + [27033,4846], + [27035,26820], + [27037,161488], + [27039,7756], + [27041,16663], + [27043,6137], + [27045,8616], + [27047,13009], + [27049,19452], + [27051,2612], + [27053,508030], + [27055,8253], + [27057,8688], + [27059,14903], + [27061,19506], + [27063,4419], + [27065,6439], + [27067,16889], + [27069,1860], + [27071,5538], + [27073,3090], + [27075,5192], + [27077,1470], + [27079,10939], + [27081,2468], + [27083,10018], + [27085,14714], + [27087,1946], + [27089,3971], + [27091,8759], + [27093,9209], + [27095,10249], + [27097,13371], + [27099,15565], + [27101,3645], + [27103,12885], + [27105,8033], + [27107,2746], + [27109,62108], + [27111,24687], + [27113,5995], + [27115,10760], + [27117,3973], + [27119,12584], + [27121,4981], + [27123,209043], + [27125,1669], + [27127,6261], + [27129,6085], + [27131,23005], + [27133,3914], + [27135,5980], + [27137,85807], + [27139,49479], + [27141,32206], + [27143,6031], + [27145,59479], + [27147,14692], + [27149,3624], + [27151,4263], + [27153,9819], + [27155,1608], + [27157,9020], + [27159,5666], + [27161,7425], + [27163,94431], + [27165,4310], + [27167,2818], + [27169,19442], + [27171,48242], + [27173,4087], + [28001,11237], + [28003,14649], + [28005,5218], + [28007,6941], + [28009,3149], + [28011,12111], + [28013,5846], + [28015,3827], + [28017,6476], + [28019,3228], + [28021,2908], + [28023,6237], + [28025,7618], + [28027,8782], + [28029,9414], + [28031,6759], + [28033,62890], + [28035,28086], + [28037,2928], + [28039,7592], + [28041,3925], + [28043,8391], + [28045,20036], + [28047,78104], + [28049,88611], + [28051,6188], + [28053,3186], + [28055,483], + [28057,8653], + [28059,52423], + [28061,6629], + [28063,2448], + [28065,4713], + [28067,24858], + [28069,3611], + [28071,18721], + [28073,22116], + [28075,29736], + [28077,4849], + [28079,8105], + [28081,32099], + [28083,9962], + [28085,12699], + [28087,22436], + [28089,39635], + [28091,9483], + [28093,12772], + [28095,13966], + [28097,4539], + [28099,10657], + [28101,8037], + [28103,3986], + [28105,17798], + [28107,12488], + [28109,21020], + [28111,4623], + [28113,14404], + [28115,10783], + [28117,9145], + [28119,3027], + [28121,55909], + [28123,10180], + [28125,1751], + [28127,9486], + [28129,5820], + [28131,6334], + [28133,8322], + [28135,4369], + [28137,10324], + [28139,7834], + [28141,7635], + [28143,3930], + [28145,9808], + [28147,5601], + [28149,18235], + [28151,17988], + [28153,7683], + [28155,3782], + [28157,3170], + [28159,7269], + [28161,5181], + [28163,8542], + [29001,9258], + [29003,6763], + [29005,2562], + [29007,9286], + [29009,13645], + [29011,4895], + [29013,6547], + [29015,7872], + [29017,4593], + [29019,70619], + [29021,33501], + [29023,16390], + [29025,3639], + [29027,15973], + [29029,16031], + [29031,29594], + [29033,3503], + [29035,2333], + [29037,39770], + [29039,5842], + [29041,2686], + [29043,31645], + [29045,2657], + [29047,91238], + [29049,8177], + [29051,30154], + [29053,6397], + [29055,9578], + [29057,3068], + [29059,6209], + [29061,3035], + [29063,3807], + [29065,6371], + [29067,5137], + [29069,12342], + [29071,40943], + [29073,6076], + [29075,2555], + [29077,125201], + [29079,3936], + [29081,3429], + [29083,9328], + [29085,3976], + [29087,2022], + [29089,3471], + [29091,15878], + [29093,4074], + [29095,286601], + [29097,45759], + [29099,84444], + [29101,19864], + [29103,1490], + [29105,14112], + [29107,13050], + [29109,14787], + [29111,3752], + [29113,19286], + [29115,5106], + [29117,5915], + [29119,8259], + [29121,5845], + [29123,5044], + [29125,3762], + [29127,11565], + [29129,1271], + [29131,10111], + [29133,5026], + [29135,5436], + [29137,3702], + [29139,5014], + [29141,7588], + [29143,7371], + [29145,22202], + [29147,8395], + [29149,4249], + [29151,5120], + [29153,3958], + [29155,6730], + [29157,7576], + [29159,16033], + [29161,17981], + [29163,6589], + [29165,39305], + [29167,11712], + [29169,15154], + [29171,1744], + [29173,4036], + [29175,8626], + [29177,8868], + [29179,2596], + [29181,5059], + [29183,146631], + [29185,4139], + [29186,7121], + [29187,24898], + [29189,405984], + [29195,8272], + [29197,1475], + [29199,1768], + [29201,15230], + [29203,3064], + [29205,2432], + [29207,11530], + [29209,12783], + [29211,2128], + [29213,22272], + [29215,9728], + [29217,8207], + [29219,12654], + [29221,9231], + [29223,5426], + [29225,13575], + [29227,859], + [29229,7063], + [29510,141952], + [30001,3992], + [30003,3609], + [30005,2366], + [30007,2364], + [30009,4524], + [30011,628], + [30013,34329], + [30015,2274], + [30017,4903], + [30019,857], + [30021,3930], + [30023,3903], + [30025,1334], + [30027,4912], + [30029,38773], + [30031,43777], + [30033,438], + [30035,4163], + [30037,351], + [30039,1308], + [30041,6369], + [30043,4484], + [30045,906], + [30047,11802], + [30049,27893], + [30051,895], + [30053,8122], + [30055,723], + [30057,3570], + [30059,702], + [30061,1786], + [30063,49313], + [30065,2181], + [30067,7782], + [30069,204], + [30071,1710], + [30073,2103], + [30075,737], + [30077,2426], + [30079,518], + [30081,17354], + [30083,4535], + [30085,3150], + [30087,3166], + [30089,5036], + [30091,1639], + [30093,14960], + [30095,3761], + [30097,1566], + [30099,2464], + [30101,1867], + [30103,351], + [30105,3386], + [30107,792], + [30109,498], + [30111,66385], + [31001,12712], + [31003,2714], + [31005,197], + [31007,283], + [31009,213], + [31011,2311], + [31013,4743], + [31015,904], + [31017,1387], + [31019,19062], + [31021,2856], + [31023,3363], + [31025,9945], + [31027,3506], + [31029,1679], + [31031,2537], + [31033,4395], + [31035,2539], + [31037,3731], + [31039,3727], + [31041,4862], + [31043,7404], + [31045,3525], + [31047,8965], + [31049,830], + [31051,2352], + [31053,15261], + [31055,218061], + [31057,872], + [31059,2510], + [31061,1377], + [31063,1135], + [31065,2128], + [31067,8979], + [31069,868], + [31071,884], + [31073,942], + [31075,288], + [31077,1019], + [31079,23096], + [31081,3713], + [31083,1521], + [31085,403], + [31087,1243], + [31089,4487], + [31091,318], + [31093,2720], + [31095,3302], + [31097,1809], + [31099,2666], + [31101,3882], + [31103,304], + [31105,1577], + [31107,3586], + [31109,124324], + [31111,14856], + [31113,347], + [31115,294], + [31117,191], + [31119,14205], + [31121,3373], + [31123,1954], + [31125,1546], + [31127,2977], + [31129,1867], + [31131,6510], + [31133,1222], + [31135,1228], + [31137,3905], + [31139,3022], + [31141,12947], + [31143,2052], + [31145,4519], + [31147,3704], + [31149,623], + [31151,5157], + [31153,66260], + [31155,8501], + [31157,14732], + [31159,6600], + [31161,2273], + [31163,1368], + [31165,544], + [31167,2418], + [31169,2244], + [31171,277], + [31173,2176], + [31175,1865], + [31177,8185], + [31179,3708], + [31181,1507], + [31183,346], + [31185,5656], + [32001,9940], + [32003,783524], + [32005,20741], + [32007,18065], + [32009,491], + [32011,774], + [32013,6500], + [32015,2198], + [32017,2018], + [32019,21189], + [32021,2048], + [32023,19088], + [32027,1948], + [32029,1627], + [32031,182180], + [32033,3516], + [32510,22755], + [33001,25052], + [33003,21456], + [33005,30141], + [33007,13768], + [33009,34727], + [33011,161086], + [33013,58452], + [33015,121045], + [33017,48982], + [33019,17328], + [34001,99850], + [34003,339856], + [34005,166391], + [34007,187383], + [34009,40171], + [34011,50729], + [34013,285908], + [34015,104908], + [34017,258591], + [34019,47175], + [34021,129936], + [34023,285005], + [34025,235362], + [34027,181884], + [34029,226160], + [34031,165429], + [34033,23933], + [34035,118193], + [34037,53322], + [34039,190101], + [34041,41587], + [35001,267699], + [35003,1325], + [35005,23284], + [35006,8708], + [35007,5853], + [35009,18548], + [35011,672], + [35013,77842], + [35015,21251], + [35017,11851], + [35019,1384], + [35021,211], + [35023,1679], + [35025,22523], + [35027,7566], + [35028,7931], + [35029,8904], + [35031,20942], + [35033,1713], + [35035,23634], + [35037,3040], + [35039,12730], + [35041,6814], + [35043,51001], + [35045,43387], + [35047,11609], + [35049,61921], + [35051,5555], + [35053,4520], + [35055,12103], + [35057,5644], + [35059,1395], + [35061,27010], + [36001,126540], + [36003,17948], + [36005,503829], + [36007,78549], + [36009,31779], + [36011,31221], + [36013,53075], + [36015,33989], + [36017,20697], + [36019,31301], + [36021,24966], + [36023,17745], + [36025,18968], + [36027,108413], + [36029,389585], + [36031,15790], + [36033,19015], + [36035,22557], + [36037,23759], + [36039,17100], + [36041,1157], + [36043,24524], + [36045,42734], + [36047,958567], + [36049,10247], + [36051,24176], + [36053,25877], + [36055,301948], + [36057,19660], + [36059,446977], + [36061,759460], + [36063,88519], + [36065,89729], + [36067,185324], + [36069,44787], + [36071,128016], + [36073,16563], + [36075,46079], + [36077,23409], + [36079,34854], + [36081,778932], + [36083,64906], + [36085,166246], + [36087,100438], + [36089,41933], + [36091,94406], + [36093,54302], + [36095,12559], + [36097,7324], + [36099,13564], + [36101,39861], + [36103,489301], + [36105,28184], + [36107,20030], + [36109,39618], + [36111,69320], + [36113,28015], + [36115,24014], + [36117,36720], + [36119,349292], + [36121,15917], + [36123,8919], + [37001,64439], + [37003,14169], + [37005,4920], + [37007,9521], + [37009,11938], + [37011,6551], + [37013,19701], + [37015,7909], + [37017,13636], + [37019,56056], + [37021,107479], + [37023,35156], + [37025,72238], + [37027,32864], + [37029,3933], + [37031,29755], + [37033,9145], + [37035,62319], + [37037,29033], + [37039,12471], + [37041,6133], + [37043,4996], + [37045,35638], + [37047,21580], + [37049,41226], + [37051,125427], + [37053,10522], + [37055,15529], + [37057,66653], + [37059,16405], + [37061,21466], + [37063,125953], + [37065,21151], + [37067,146816], + [37069,25381], + [37071,83735], + [37073,4638], + [37075,3393], + [37077,21400], + [37079,7164], + [37081,203987], + [37083,21017], + [37085,45416], + [37087,26653], + [37089,49221], + [37091,8845], + [37093,17799], + [37095,1947], + [37097,66369], + [37099,16773], + [37101,68968], + [37103,4045], + [37105,21894], + [37107,23148], + [37109,32894], + [37111,18173], + [37113,15921], + [37115,8403], + [37117,9378], + [37119,411097], + [37121,6344], + [37123,10195], + [37125,39821], + [37127,37011], + [37129,95638], + [37131,8547], + [37133,64386], + [37135,53376], + [37137,5416], + [37139,14697], + [37141,21740], + [37143,5936], + [37145,15896], + [37147,69799], + [37149,9071], + [37151,56541], + [37153,18380], + [37155,45927], + [37157,37388], + [37159,52843], + [37161,26683], + [37163,23416], + [37165,12922], + [37167,23332], + [37169,19578], + [37171,29153], + [37173,5620], + [37175,14567], + [37177,1594], + [37179,76346], + [37181,16875], + [37183,400172], + [37185,7786], + [37187,4977], + [37189,21077], + [37191,48343], + [37193,28753], + [37195,32014], + [37197,15425], + [37199,7510], + [38001,1035], + [38003,5074], + [38005,2248], + [38007,383], + [38009,2992], + [38011,1350], + [38013,905], + [38015,39507], + [38017,75843], + [38019,1737], + [38021,2119], + [38023,1061], + [38025,1692], + [38027,1062], + [38029,1585], + [38031,1423], + [38033,842], + [38035,30502], + [38037,1074], + [38039,1089], + [38041,1073], + [38043,1092], + [38045,1822], + [38047,849], + [38049,2594], + [38051,1291], + [38053,4302], + [38055,4334], + [38057,3709], + [38059,13565], + [38061,3360], + [38063,1467], + [38065,738], + [38067,3158], + [38069,1908], + [38071,4828], + [38073,2371], + [38075,950], + [38077,6777], + [38079,4608], + [38081,1864], + [38083,731], + [38085,1112], + [38087,326], + [38089,12524], + [38091,777], + [38093,8908], + [38095,1058], + [38097,3383], + [38099,4780], + [38101,28277], + [38103,1943], + [38105,14320], + [39001,10673], + [39003,40650], + [39005,20417], + [39007,37832], + [39009,22557], + [39011,18888], + [39013,25919], + [39015,17829], + [39017,139113], + [39019,11298], + [39021,15159], + [39023,54696], + [39025,78009], + [39027,16528], + [39029,41537], + [39031,14476], + [39033,17782], + [39035,540965], + [39037,20861], + [39039,15297], + [39041,69985], + [39043,31183], + [39045,56339], + [39047,11773], + [39049,511447], + [39051,16506], + [39053,11588], + [39055,35298], + [39057,65604], + [39059,16220], + [39061,341873], + [39063,31937], + [39065,11678], + [39067,6223], + [39069,10992], + [39071,16772], + [39073,11286], + [39075,12342], + [39077,22935], + [39079,12780], + [39081,27428], + [39083,23248], + [39085,96361], + [39087,23221], + [39089,64035], + [39091,18677], + [39093,120281], + [39095,179930], + [39097,15013], + [39099,98472], + [39101,24737], + [39103,69007], + [39105,9045], + [39107,16234], + [39109,41043], + [39111,5745], + [39113,224328], + [39115,6108], + [39117,12922], + [39119,33878], + [39121,5067], + [39123,18051], + [39125,7705], + [39127,13500], + [39129,19710], + [39131,10959], + [39133,61817], + [39135,16251], + [39137,13327], + [39139,48449], + [39141,28802], + [39143,23574], + [39145,29858], + [39147,21648], + [39149,18608], + [39151,153460], + [39153,224726], + [39155,85621], + [39157,36631], + [39159,20212], + [39161,11544], + [39163,5140], + [39165,82957], + [39167,25197], + [39169,43824], + [39171,15090], + [39173,50589], + [39175,9081], + [40001,7733], + [40003,1870], + [40005,5284], + [40007,1971], + [40009,7578], + [40011,3898], + [40013,17253], + [40015,10320], + [40017,44906], + [40019,18339], + [40021,16665], + [40023,5971], + [40025,977], + [40027,106172], + [40029,2227], + [40031,42842], + [40033,2195], + [40035,5422], + [40037,26427], + [40039,10653], + [40041,16739], + [40043,1689], + [40045,1614], + [40047,23541], + [40049,10447], + [40051,19857], + [40053,1736], + [40055,2054], + [40057,1113], + [40059,1258], + [40061,4931], + [40063,4132], + [40065,9762], + [40067,2371], + [40069,4267], + [40071,17610], + [40073,5609], + [40075,3571], + [40077,4088], + [40079,18261], + [40081,12763], + [40083,15512], + [40085,3268], + [40087,14428], + [40089,12646], + [40091,8327], + [40093,3123], + [40095,6195], + [40097,15983], + [40099,5238], + [40101,26234], + [40103,4515], + [40105,4099], + [40107,3976], + [40109,301570], + [40111,14724], + [40113,18263], + [40115,11847], + [40117,6179], + [40119,30788], + [40121,17816], + [40123,14278], + [40125,25917], + [40127,4477], + [40129,1377], + [40131,34755], + [40133,9317], + [40135,15474], + [40137,16720], + [40139,6768], + [40141,2807], + [40143,252661], + [40145,29208], + [40147,20455], + [40149,4224], + [40151,3281], + [40153,7495], + [41001,6921], + [41003,35718], + [41005,157408], + [41007,15800], + [41009,19671], + [41011,27025], + [41013,9588], + [41015,10546], + [41017,74397], + [41019,45456], + [41021,842], + [41023,3381], + [41025,3244], + [41027,8600], + [41029,88241], + [41031,8094], + [41033,36367], + [41035,27886], + [41037,3515], + [41039,152312], + [41041,21298], + [41043,47762], + [41045,10062], + [41047,118038], + [41049,4108], + [41051,326229], + [41053,30305], + [41055,748], + [41057,10784], + [41059,26908], + [41061,10708], + [41063,3214], + [41065,10305], + [41067,219053], + [41069,640], + [41071,36808], + [42001,39345], + [42003,541541], + [42005,28137], + [42007,71167], + [42009,19882], + [42011,154712], + [42013,52126], + [42015,25021], + [42017,238830], + [42019,76502], + [42021,56674], + [42023,2184], + [42025,26043], + [42027,58201], + [42029,190980], + [42031,16021], + [42033,31248], + [42035,14690], + [42037,26372], + [42039,35164], + [42041,99804], + [42043,112212], + [42045,207257], + [42047,14020], + [42049,110318], + [42051,54837], + [42053,1839], + [42055,60438], + [42057,5989], + [42059,14230], + [42061,16779], + [42063,33246], + [42065,18427], + [42067,9372], + [42069,87161], + [42071,201620], + [42073,37055], + [42075,53579], + [42077,138714], + [42079,128660], + [42081,45608], + [42083,17147], + [42085,46340], + [42087,19043], + [42089,57098], + [42091,316206], + [42093,7404], + [42095,114185], + [42097,39075], + [42099,18231], + [42101,601337], + [42103,22119], + [42105,6480], + [42107,58749], + [42109,14794], + [42111,29644], + [42113,2723], + [42115,17235], + [42117,16310], + [42119,14533], + [42121,22050], + [42123,17115], + [42125,84948], + [42127,18841], + [42129,152283], + [42131,10790], + [42133,172421], + [44001,19217], + [44003,69422], + [44005,34777], + [44007,237971], + [44009,49102], + [45001,9660], + [45003,67598], + [45005,3365], + [45007,76798], + [45009,5334], + [45011,8360], + [45013,71477], + [45015,76881], + [45017,6179], + [45019,159195], + [45021,20699], + [45023,12653], + [45025,17900], + [45027,13161], + [45029,15075], + [45031,26484], + [45033,11029], + [45035,55351], + [45037,9176], + [45039,9191], + [45041,52188], + [45043,25498], + [45045,192975], + [45047,27612], + [45049,6993], + [45051,131143], + [45053,10269], + [45055,24980], + [45057,33899], + [45059,25563], + [45061,6423], + [45063,113104], + [45065,3957], + [45067,11600], + [45069,9613], + [45071,14810], + [45073,31978], + [45075,33060], + [45077,47934], + [45079,151853], + [45081,7094], + [45083,116645], + [45085,41776], + [45087,11432], + [45089,12686], + [45091,101211], + [46003,1182], + [46005,7557], + [46007,984], + [46009,2536], + [46011,12896], + [46013,16305], + [46015,2231], + [46017,564], + [46019,4164], + [46021,673], + [46023,3166], + [46025,1546], + [46027,5233], + [46029,12075], + [46031,1195], + [46033,3876], + [46035,8660], + [46037,2574], + [46039,1798], + [46041,1651], + [46043,1220], + [46045,1544], + [46047,2986], + [46049,895], + [46051,3218], + [46053,1840], + [46055,822], + [46057,2256], + [46059,1508], + [46061,1045], + [46063,532], + [46065,7460], + [46067,2903], + [46069,597], + [46071,858], + [46073,921], + [46075,408], + [46077,2279], + [46079,4700], + [46081,11048], + [46083,19749], + [46085,1397], + [46087,2228], + [46089,1030], + [46091,1873], + [46093,11027], + [46095,661], + [46097,948], + [46099,76819], + [46101,2640], + [46102,2729], + [46103,44074], + [46105,1284], + [46107,982], + [46109,3873], + [46111,1010], + [46115,2624], + [46117,1344], + [46119,569], + [46121,2700], + [46123,2356], + [46125,3498], + [46127,6619], + [46129,2258], + [46135,9445], + [46137,754], + [47001,30541], + [47003,17029], + [47005,6762], + [47007,4894], + [47009,50557], + [47011,40192], + [47013,16192], + [47015,5488], + [47017,10962], + [47019,23784], + [47021,15089], + [47023,6060], + [47025,13281], + [47027,3039], + [47029,14060], + [47031,21646], + [47033,5491], + [47035,25801], + [47037,282366], + [47039,4440], + [47041,7704], + [47043,19198], + [47045,15120], + [47047,15596], + [47049,7443], + [47051,16326], + [47053,19320], + [47055,11904], + [47057,8959], + [47059,27396], + [47061,4820], + [47063,24456], + [47065,145213], + [47067,2742], + [47069,8891], + [47071,10137], + [47073,23135], + [47075,7181], + [47077,10711], + [47079,13394], + [47081,8636], + [47083,2878], + [47085,6763], + [47087,4566], + [47089,20154], + [47091,6794], + [47093,187319], + [47095,2243], + [47097,9675], + [47099,15960], + [47101,4715], + [47103,13548], + [47105,20669], + [47107,20804], + [47109,10022], + [47111,9170], + [47113,37944], + [47115,11477], + [47117,12324], + [47119,34688], + [47121,4938], + [47123,17987], + [47125,72617], + [47127,2592], + [47129,7625], + [47131,12717], + [47133,9140], + [47135,3073], + [47137,2281], + [47139,7383], + [47141,31424], + [47143,12177], + [47145,20901], + [47147,25713], + [47149,111676], + [47151,8664], + [47153,5528], + [47155,37210], + [47157,351194], + [47159,7603], + [47161,5178], + [47163,66511], + [47165,67089], + [47167,21452], + [47169,3189], + [47171,7658], + [47173,7405], + [47175,2141], + [47177,15727], + [47179,53859], + [47181,5764], + [47183,13640], + [47185,10048], + [47187,77855], + [47189,49664], + [48001,16677], + [48003,5573], + [48005,31035], + [48007,9548], + [48009,3452], + [48011,694], + [48013,15546], + [48015,11301], + [48017,2054], + [48019,8399], + [48021,25571], + [48023,1530], + [48025,8269], + [48027,122689], + [48029,636245], + [48031,4343], + [48033,227], + [48035,7211], + [48037,34076], + [48039,121523], + [48041,79412], + [48043,4088], + [48045,602], + [48047,2120], + [48049,14409], + [48051,6810], + [48053,16743], + [48055,13460], + [48057,7582], + [48059,5367], + [48061,124605], + [48063,4605], + [48065,2288], + [48067,11934], + [48069,2532], + [48071,14069], + [48073,18138], + [48075,2407], + [48077,4105], + [48079,998], + [48081,1644], + [48083,3423], + [48085,341163], + [48087,1035], + [48089,7450], + [48091,51367], + [48093,5487], + [48095,912], + [48097,15351], + [48099,22322], + [48101,707], + [48103,1421], + [48105,1354], + [48107,2061], + [48109,580], + [48111,2364], + [48113,928341], + [48115,4322], + [48117,6145], + [48119,1999], + [48121,290229], + [48123,7048], + [48125,845], + [48127,3148], + [48129,1335], + [48131,3511], + [48133,6492], + [48135,52530], + [48137,789], + [48139,57307], + [48141,268310], + [48143,13595], + [48145,5199], + [48147,12453], + [48149,9135], + [48151,1601], + [48153,2271], + [48155,533], + [48157,237883], + [48159,3965], + [48161,6758], + [48163,4542], + [48165,5812], + [48167,121438], + [48169,1543], + [48171,10694], + [48173,403], + [48175,2727], + [48177,7364], + [48179,7884], + [48181,48454], + [48183,45460], + [48185,9011], + [48187,54110], + [48189,10933], + [48191,1267], + [48193,2989], + [48195,1838], + [48197,1596], + [48199,20626], + [48201,1605368], + [48203,23292], + [48205,1678], + [48207,2146], + [48209,73437], + [48211,1298], + [48213,30757], + [48215,238345], + [48217,12992], + [48219,7997], + [48221,22152], + [48223,13424], + [48225,8252], + [48227,11064], + [48229,978], + [48231,33189], + [48233,6929], + [48235,682], + [48237,3168], + [48239,4917], + [48241,12936], + [48243,1054], + [48245,92988], + [48247,1626], + [48249,12987], + [48251,57310], + [48253,5696], + [48255,4282], + [48257,38015], + [48259,14253], + [48261,197], + [48263,273], + [48265,21403], + [48267,1783], + [48269,77], + [48271,1337], + [48273,10955], + [48275,1375], + [48277,19793], + [48279,4728], + [48281,7807], + [48283,2269], + [48285,7826], + [48287,6036], + [48289,6443], + [48291,26873], + [48293,8377], + [48295,1192], + [48297,3752], + [48299,8678], + [48301,30], + [48303,113488], + [48305,2154], + [48307,3143], + [48309,90054], + [48311,270], + [48313,4269], + [48315,4715], + [48317,1694], + [48319,1696], + [48321,13848], + [48323,16286], + [48325,15682], + [48327,1014], + [48329,56998], + [48331,9228], + [48333,1790], + [48335,2382], + [48337,7800], + [48339,198649], + [48341,6733], + [48343,5117], + [48345,489], + [48347,23757], + [48349,17338], + [48351,5315], + [48353,5407], + [48355,129451], + [48357,3483], + [48359,594], + [48361,31694], + [48363,10255], + [48365,8637], + [48367,44263], + [48369,3203], + [48371,4656], + [48373,18033], + [48375,44380], + [48377,2543], + [48379,4330], + [48381,49389], + [48383,1084], + [48385,1126], + [48387,4963], + [48389,3518], + [48391,2547], + [48393,301], + [48395,6444], + [48397,33032], + [48399,3896], + [48401,18108], + [48403,4311], + [48405,3451], + [48407,10043], + [48409,22898], + [48411,2082], + [48413,1075], + [48415,5941], + [48417,1317], + [48419,9293], + [48421,1019], + [48423,77678], + [48425,3123], + [48427,16188], + [48429,3247], + [48431,458], + [48433,580], + [48435,1412], + [48437,2505], + [48439,708252], + [48441,49868], + [48443,418], + [48445,4061], + [48447,668], + [48449,10893], + [48451,43314], + [48453,472361], + [48455,6030], + [48457,7100], + [48459,14108], + [48461,1332], + [48463,8841], + [48465,15779], + [48467,20156], + [48469,32255], + [48471,21963], + [48473,15171], + [48475,3978], + [48477,12625], + [48479,74789], + [48481,15199], + [48483,2183], + [48485,48356], + [48487,5180], + [48489,5782], + [48491,180160], + [48493,15733], + [48495,2619], + [48497,22369], + [48499,16510], + [48501,2617], + [48503,7307], + [48505,4503], + [48507,3571], + [49001,2282], + [49003,17569], + [49005,38393], + [49007,7829], + [49009,163], + [49011,104551], + [49013,6868], + [49015,3665], + [49017,1760], + [49019,4191], + [49021,17015], + [49023,3464], + [49025,2643], + [49027,4337], + [49029,3365], + [49031,532], + [49033,635], + [49035,374820], + [49037,4311], + [49039,8643], + [49041,7364], + [49043,14220], + [49045,20478], + [49047,10569], + [49049,165991], + [49051,9879], + [49053,57144], + [49055,1000], + [49057,83632], + [50001,14584], + [50003,14581], + [50005,12434], + [50007,66160], + [50009,2740], + [50011,18563], + [50013,2956], + [50015,10546], + [50017,12279], + [50019,11779], + [50021,25338], + [50023,24828], + [50025,18943], + [50027,24298], + [51001,13438], + [51003,41496], + [51005,6600], + [51007,4954], + [51009,12160], + [51011,6091], + [51013,107032], + [51015,29539], + [51017,1801], + [51019,31317], + [51021,2367], + [51023,13264], + [51025,6037], + [51027,8569], + [51029,5826], + [51031,23071], + [51033,10946], + [51035,12357], + [51036,2896], + [51037,4661], + [51041,124971], + [51043,5612], + [51045,2297], + [51047,17071], + [51049,3975], + [51051,5778], + [51053,10401], + [51057,4555], + [51059,396501], + [51061,24562], + [51063,6493], + [51065,9923], + [51067,22997], + [51069,31503], + [51071,6910], + [51073,14786], + [51075,8506], + [51077,6498], + [51079,7548], + [51081,3647], + [51083,14158], + [51085,38987], + [51087,128464], + [51089,21218], + [51091,1078], + [51093,14587], + [51095,28920], + [51097,2707], + [51099,9202], + [51101,6078], + [51103,5062], + [51105,9149], + [51107,128637], + [51109,13871], + [51111,4293], + [51113,4949], + [51115,3920], + [51117,12075], + [51119,4603], + [51121,35685], + [51125,6419], + [51127,7961], + [51131,5148], + [51133,5584], + [51135,5446], + [51137,13679], + [51139,9286], + [51141,7755], + [51143,26267], + [51145,10265], + [51147,7185], + [51149,11507], + [51153,142000], + [51155,14533], + [51157,2913], + [51159,3069], + [51161,38222], + [51163,9248], + [51165,30994], + [51167,10812], + [51169,8773], + [51171,17402], + [51173,12686], + [51175,6562], + [51177,44436], + [51179,47075], + [51181,2730], + [51183,3794], + [51185,16531], + [51187,14651], + [51191,22321], + [51193,7923], + [51195,14925], + [51197,11983], + [51199,25103], + [51510,70598], + [51520,7334], + [51530,2517], + [51540,18617], + [51550,84849], + [51570,7036], + [51580,2384], + [51590,18293], + [51595,2086], + [51600,8577], + [51610,5493], + [51620,3522], + [51630,10762], + [51640,2663], + [51650,54050], + [51660,16723], + [51670,9224], + [51678,2158], + [51680,28273], + [51683,12898], + [51685,4641], + [51690,5532], + [51700,69835], + [51710,88353], + [51720,1628], + [51730,13165], + [51735,4593], + [51740,36370], + [51750,5573], + [51760,90301], + [51770,41740], + [51775,9912], + [51790,10597], + [51800,33774], + [51810,170798], + [51820,9193], + [51830,4706], + [51840,10490], + [53001,5973], + [53003,9101], + [53005,72121], + [53007,28384], + [53009,32958], + [53011,174661], + [53013,1795], + [53015,41952], + [53017,15263], + [53019,3060], + [53021,26723], + [53023,984], + [53025,30818], + [53027,28722], + [53029,34768], + [53031,14705], + [53033,882028], + [53035,103913], + [53037,18347], + [53039,8877], + [53041,30618], + [53043,4525], + [53045,24278], + [53047,17675], + [53049,9279], + [53051,5727], + [53053,323296], + [53055,8252], + [53057,48493], + [53059,4816], + [53061,293823], + [53063,202811], + [53065,17554], + [53067,109983], + [53069,1897], + [53071,22646], + [53073,86523], + [53075,17999], + [53077,83048], + [54001,6324], + [54003,44221], + [54005,8932], + [54007,5624], + [54009,9805], + [54011,39064], + [54013,2826], + [54015,3274], + [54017,2685], + [54019,17441], + [54021,2587], + [54023,4607], + [54025,15188], + [54027,9288], + [54029,12678], + [54031,5674], + [54033,27098], + [54035,11334], + [54037,20891], + [54039,79070], + [54041,6574], + [54043,8208], + [54045,13816], + [54047,7607], + [54049,22926], + [54051,12308], + [54053,11034], + [54055,25216], + [54057,10916], + [54059,10501], + [54061,39466], + [54063,5718], + [54065,7185], + [54067,10069], + [54069,17193], + [54071,3174], + [54073,2835], + [54075,3530], + [54077,12429], + [54079,21613], + [54081,31203], + [54083,11135], + [54085,4049], + [54087,5562], + [54089,5566], + [54091,6614], + [54093,3142], + [54095,3207], + [54097,9713], + [54099,15124], + [54101,3781], + [54103,5762], + [54105,2505], + [54107,35488], + [54109,8805], + [55001,9062], + [55003,6565], + [55005,18907], + [55007,7057], + [55009,105271], + [55011,5772], + [55013,7305], + [55015,19807], + [55017,25601], + [55019,12791], + [55021,24112], + [55023,6654], + [55025,222929], + [55027,34980], + [55029,13191], + [55031,19011], + [55033,16859], + [55035,40981], + [55037,1948], + [55039,41542], + [55041,4008], + [55043,19583], + [55045,15047], + [55047,7979], + [55049,9850], + [55051,2898], + [55053,8199], + [55055,32965], + [55057,10752], + [55059,64111], + [55061,8341], + [55063,47518], + [55065,6722], + [55067,8612], + [55069,12625], + [55071,34563], + [55073,55466], + [55075,18473], + [55077,6648], + [55078,1408], + [55079,382175], + [55081,17915], + [55083,16036], + [55085,15421], + [55087,73648], + [55089,35807], + [55091,3070], + [55093,15593], + [55095,18450], + [55097,28675], + [55099,6688], + [55101,76974], + [55103,7538], + [55105,64739], + [55107,6376], + [55109,34182], + [55111,26222], + [55113,7796], + [55115,17004], + [55117,47738], + [55119,8614], + [55121,12005], + [55123,12071], + [55125,10921], + [55127,40874], + [55129,7236], + [55131,54302], + [55133,158808], + [55135,22305], + [55137,9934], + [55139,70594], + [55141,32332], + [56001,15944], + [56003,4475], + [56005,17574], + [56007,6204], + [56009,5378], + [56011,2919], + [56013,14907], + [56015,5207], + [56017,2118], + [56019,3845], + [56021,39683], + [56023,6908], + [56025,32799], + [56027,964], + [56029,12160], + [56031,4030], + [56033,13251], + [56035,3340], + [56037,15523], + [56039,9019], + [56041,7597], + [56043,3365], + [56045,2891] + ] +} diff --git a/data/regional/united-states/demographics/households/us-persons-perhousehold-2010.json b/data/regional/united-states/demographics/households/us-persons-perhousehold-2010.json new file mode 100644 index 0000000..32d897a --- /dev/null +++ b/data/regional/united-states/demographics/households/us-persons-perhousehold-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Persons Per Household", + "description" : "Average number of people per household.", + "units" : "people", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","households"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.persons.perhousehold.2010"], + [1001,2.7], + [1003,2.5], + [1005,2.52], + [1007,3.02], + [1009,2.73], + [1011,2.85], + [1013,2.58], + [1015,2.46], + [1017,2.51], + [1019,2.22], + [1021,2.59], + [1023,2.61], + [1025,2.84], + [1027,2.24], + [1029,2.71], + [1031,2.51], + [1033,2.41], + [1035,2.74], + [1037,2.43], + [1039,2.54], + [1041,2.46], + [1043,2.51], + [1045,2.49], + [1047,2.6], + [1049,2.65], + [1051,2.55], + [1053,2.51], + [1055,2.46], + [1057,2.39], + [1059,2.49], + [1061,2.44], + [1063,2.57], + [1065,2.76], + [1067,2.56], + [1069,2.57], + [1071,2.51], + [1073,2.47], + [1075,2.43], + [1077,2.38], + [1079,2.54], + [1081,2.41], + [1083,2.52], + [1085,2.76], + [1087,2.33], + [1089,2.49], + [1091,2.46], + [1093,2.34], + [1095,2.62], + [1097,2.61], + [1099,2.51], + [1101,2.46], + [1103,2.5], + [1105,2.55], + [1107,2.46], + [1109,2.38], + [1111,2.59], + [1113,2.53], + [1115,2.64], + [1117,2.59], + [1119,2.77], + [1121,2.52], + [1123,2.51], + [1125,2.61], + [1127,2.6], + [1129,2.58], + [1131,3.02], + [1133,2.53], + [2013,2.75], + [2016,2.74], + [2020,2.66], + [2050,3.88], + [2060,2.56], + [2068,2.21], + [2070,3.42], + [2090,2.63], + [2100,2.22], + [2105,2.02], + [2110,2.52], + [2122,2.35], + [2130,2.36], + [2150,2.76], + [2158,4.28], + [2164,3.3], + [2170,2.81], + [2180,3.31], + [2185,4.47], + [2188,3.88], + [2195,2.41], + [2198,2.29], + [2220,2.36], + [2230,2.27], + [2240,2.64], + [2261,2.42], + [2275,2.35], + [2282,2.48], + [2290,2.61], + [4001,3.61], + [4003,2.51], + [4005,2.73], + [4007,2.65], + [4009,2.99], + [4011,2.5], + [4012,1.98], + [4013,2.68], + [4015,2.44], + [4017,2.97], + [4019,2.46], + [4021,2.56], + [4023,3.79], + [4025,2.3], + [4027,2.65], + [5001,2.28], + [5003,2.46], + [5005,2.17], + [5007,2.63], + [5009,2.53], + [5011,2.24], + [5013,2.6], + [5015,2.28], + [5017,2.4], + [5019,2.31], + [5021,2.4], + [5023,2.31], + [5025,2.65], + [5027,2.35], + [5029,2.55], + [5031,2.52], + [5033,2.65], + [5035,2.67], + [5037,2.69], + [5039,2.39], + [5041,2.52], + [5043,2.39], + [5045,2.53], + [5047,2.69], + [5049,2.47], + [5051,2.33], + [5053,2.58], + [5055,2.52], + [5057,2.49], + [5059,2.64], + [5061,2.64], + [5063,2.37], + [5065,2.26], + [5067,2.48], + [5069,2.63], + [5071,2.65], + [5073,2.77], + [5075,2.41], + [5077,2.62], + [5079,2.92], + [5081,2.37], + [5083,2.71], + [5085,2.7], + [5087,2.67], + [5089,2.31], + [5091,2.53], + [5093,2.69], + [5095,2.42], + [5097,2.5], + [5099,2.38], + [5101,2.36], + [5103,2.41], + [5105,2.6], + [5107,2.64], + [5109,2.72], + [5111,2.55], + [5113,2.48], + [5115,2.59], + [5117,2.45], + [5119,2.38], + [5121,2.45], + [5123,2.69], + [5125,2.55], + [5127,2.55], + [5129,2.29], + [5131,2.52], + [5133,2.83], + [5135,2.37], + [5137,2.46], + [5139,2.46], + [5141,2.43], + [5143,2.52], + [5145,2.44], + [5147,2.26], + [5149,2.74], + [6001,2.72], + [6003,2.87], + [6005,2.31], + [6007,2.5], + [6009,2.44], + [6011,2.91], + [6013,2.75], + [6015,2.56], + [6017,2.6], + [6019,3.14], + [6021,2.89], + [6023,2.38], + [6025,3.34], + [6027,2.31], + [6029,3.14], + [6031,3.3], + [6033,2.53], + [6035,2.38], + [6037,2.97], + [6039,3.3], + [6041,2.33], + [6043,2.28], + [6045,2.49], + [6047,3.36], + [6049,2.33], + [6051,2.61], + [6053,3.12], + [6055,2.61], + [6057,2.36], + [6059,2.97], + [6061,2.58], + [6063,2.01], + [6065,3.12], + [6067,2.69], + [6069,3.14], + [6071,3.29], + [6073,2.75], + [6075,2.31], + [6077,3.07], + [6079,2.43], + [6081,2.72], + [6083,2.81], + [6085,2.86], + [6087,2.63], + [6089,2.52], + [6091,2.34], + [6093,2.18], + [6095,2.86], + [6097,2.52], + [6099,3.06], + [6101,2.95], + [6103,2.6], + [6105,2.21], + [6107,3.35], + [6109,2.28], + [6111,3.02], + [6113,2.7], + [6115,2.93], + [8001,2.85], + [8003,2.38], + [8005,2.5], + [8007,3.59], + [8009,2.23], + [8011,2.31], + [8013,2.37], + [8014,2.63], + [8015,2.18], + [8017,2.52], + [8019,2.18], + [8021,2.59], + [8023,2.43], + [8025,3.16], + [8027,2.1], + [8029,2.35], + [8031,2.23], + [8033,2.54], + [8035,2.76], + [8037,2.79], + [8039,2.79], + [8041,2.56], + [8043,2.04], + [8045,2.7], + [8047,2.02], + [8049,2.71], + [8051,2.26], + [8053,1.92], + [8055,1.97], + [8057,2.12], + [8059,2.41], + [8061,2.24], + [8063,2.47], + [8065,2.53], + [8067,2.36], + [8069,2.4], + [8071,2.39], + [8073,2.35], + [8075,2.54], + [8077,2.44], + [8079,2.06], + [8081,2.52], + [8083,2.28], + [8085,2.44], + [8087,2.64], + [8089,2.3], + [8091,2.54], + [8093,2.18], + [8095,2.35], + [8097,2.21], + [8099,2.48], + [8101,2.47], + [8103,2.43], + [8105,3.16], + [8107,2.22], + [8109,2.22], + [8111,1.83], + [8113,2.26], + [8115,2.21], + [8117,2.52], + [8119,2.5], + [8121,2.18], + [8123,2.74], + [8125,2.51], + [9001,2.66], + [9003,2.48], + [9005,2.45], + [9007,2.36], + [9009,2.51], + [9011,2.43], + [9013,2.52], + [9015,2.56], + [10001,2.67], + [10003,2.6], + [10005,2.48], + [11001,2.12], + [12001,2.32], + [12003,2.85], + [12005,2.36], + [12007,2.76], + [12009,2.41], + [12011,2.57], + [12013,2.6], + [12015,2.18], + [12017,2.31], + [12019,2.73], + [12021,2.63], + [12023,2.62], + [12027,2.91], + [12029,3.22], + [12031,2.54], + [12033,2.44], + [12035,2.52], + [12037,2.19], + [12039,2.63], + [12041,2.63], + [12043,2.79], + [12045,2.5], + [12047,2.58], + [12049,3.26], + [12051,3.13], + [12053,2.39], + [12055,2.42], + [12057,2.56], + [12059,2.71], + [12061,2.33], + [12063,2.29], + [12065,2.66], + [12067,3.48], + [12069,2.46], + [12071,2.44], + [12073,2.35], + [12075,2.51], + [12077,3.47], + [12079,2.55], + [12081,2.4], + [12083,2.39], + [12085,2.39], + [12086,2.88], + [12087,2.42], + [12089,2.58], + [12091,2.44], + [12093,2.84], + [12095,2.7], + [12097,2.76], + [12099,2.45], + [12101,2.45], + [12103,2.21], + [12105,2.58], + [12107,2.49], + [12109,2.53], + [12111,2.58], + [12113,2.63], + [12115,2.2], + [12117,2.7], + [12119,2], + [12121,2.67], + [12123,2.67], + [12125,3.41], + [12127,2.4], + [12129,2.52], + [12131,2.22], + [12133,2.6], + [13001,2.51], + [13003,3.02], + [13005,2.7], + [13007,2.73], + [13009,2.56], + [13011,2.76], + [13013,2.87], + [13015,2.81], + [13017,2.62], + [13019,2.46], + [13021,2.58], + [13023,2.89], + [13025,2.66], + [13027,2.5], + [13029,2.77], + [13031,2.57], + [13033,2.93], + [13035,2.73], + [13037,2.69], + [13039,2.71], + [13043,2.78], + [13045,2.7], + [13047,2.59], + [13049,3.14], + [13051,2.48], + [13053,3.39], + [13055,2.77], + [13057,2.76], + [13059,2.5], + [13061,2.6], + [13063,2.94], + [13065,2.69], + [13067,2.62], + [13069,2.69], + [13071,2.81], + [13073,2.81], + [13075,2.59], + [13077,2.74], + [13079,2.74], + [13081,2.58], + [13083,2.49], + [13085,2.66], + [13087,2.55], + [13089,2.53], + [13091,2.43], + [13093,2.41], + [13095,2.49], + [13097,2.84], + [13099,2.72], + [13101,3.06], + [13103,2.87], + [13105,2.62], + [13107,2.6], + [13109,2.6], + [13111,2.21], + [13113,2.78], + [13115,2.63], + [13117,2.95], + [13119,2.5], + [13121,2.39], + [13123,2.37], + [13125,2.48], + [13127,2.51], + [13129,2.77], + [13131,2.61], + [13133,2.59], + [13135,2.97], + [13137,2.52], + [13139,2.83], + [13141,2.73], + [13143,2.63], + [13145,2.72], + [13147,2.56], + [13149,2.72], + [13151,2.91], + [13153,2.65], + [13155,2.51], + [13157,2.73], + [13159,2.73], + [13161,2.58], + [13163,2.64], + [13165,2.67], + [13167,2.52], + [13169,2.67], + [13171,2.69], + [13173,2.76], + [13175,2.64], + [13177,2.81], + [13179,2.76], + [13181,2.32], + [13183,2.83], + [13185,2.62], + [13187,2.49], + [13189,2.58], + [13191,2.43], + [13193,2.71], + [13195,2.92], + [13197,2.65], + [13199,2.58], + [13201,2.29], + [13205,2.7], + [13207,2.69], + [13209,2.48], + [13211,2.65], + [13213,2.8], + [13215,2.39], + [13217,2.84], + [13219,2.78], + [13221,3.09], + [13223,2.89], + [13225,2.72], + [13227,2.56], + [13229,2.66], + [13231,2.9], + [13233,2.77], + [13235,2.47], + [13237,2.44], + [13239,2.49], + [13241,2.26], + [13243,2.5], + [13245,2.51], + [13247,2.89], + [13249,2.81], + [13251,3.01], + [13253,2.75], + [13255,2.71], + [13257,2.67], + [13259,2.53], + [13261,2.77], + [13263,2.58], + [13265,2.74], + [13267,2.8], + [13269,2.44], + [13271,2.3], + [13273,2.6], + [13275,2.5], + [13277,2.68], + [13279,2.64], + [13281,2], + [13283,2.59], + [13285,2.67], + [13287,2.71], + [13289,3.04], + [13291,2.18], + [13293,2.57], + [13295,2.58], + [13297,2.78], + [13299,2.58], + [13301,2.49], + [13303,2.68], + [13305,2.63], + [13307,2.46], + [13309,2.83], + [13311,2.17], + [13313,2.88], + [13315,2.74], + [13317,2.61], + [13319,2.66], + [13321,2.72], + [15001,2.73], + [15003,2.96], + [15005,1.1], + [15007,2.98], + [15009,2.89], + [16001,2.55], + [16003,2.31], + [16005,2.65], + [16007,2.37], + [16009,2.39], + [16011,3.08], + [16013,2.29], + [16015,2.3], + [16017,2.21], + [16019,2.81], + [16021,2.58], + [16023,2.42], + [16025,2.85], + [16027,2.89], + [16029,2.51], + [16031,2.89], + [16033,2.57], + [16035,2.2], + [16037,2.23], + [16039,2.75], + [16041,3.06], + [16043,2.88], + [16045,2.56], + [16047,2.71], + [16049,2.32], + [16051,3.14], + [16053,2.94], + [16055,2.45], + [16057,2.26], + [16059,2.21], + [16061,2.28], + [16063,2.7], + [16065,3.49], + [16067,2.86], + [16069,2.37], + [16071,2.7], + [16073,2.81], + [16075,2.7], + [16077,2.89], + [16079,2.2], + [16081,2.47], + [16083,2.67], + [16085,2.23], + [16087,2.49], + [17001,2.38], + [17003,2.38], + [17005,2.78], + [17007,2.98], + [17009,2.17], + [17011,2.38], + [17013,2.45], + [17015,2.18], + [17017,2.6], + [17019,2.32], + [17021,2.34], + [17023,2.38], + [17025,2.45], + [17027,2.47], + [17029,2.18], + [17031,2.63], + [17033,2.47], + [17035,2.65], + [17037,2.52], + [17039,2.45], + [17041,2.61], + [17043,2.68], + [17045,2.32], + [17047,2.35], + [17049,2.52], + [17051,2.66], + [17053,2.38], + [17055,2.41], + [17057,2.34], + [17059,2.4], + [17061,2.38], + [17063,2.71], + [17065,2.39], + [17067,2.38], + [17069,2.28], + [17071,2.28], + [17073,2.44], + [17075,2.41], + [17077,2.29], + [17079,2.4], + [17081,2.4], + [17083,2.57], + [17085,2.24], + [17087,2.24], + [17089,2.94], + [17091,2.63], + [17093,2.94], + [17095,2.21], + [17097,2.84], + [17099,2.47], + [17101,2.24], + [17103,2.52], + [17105,2.38], + [17107,2.27], + [17109,2.09], + [17111,2.82], + [17113,2.5], + [17115,2.39], + [17117,2.39], + [17119,2.44], + [17121,2.43], + [17123,2.41], + [17125,2.28], + [17127,2.4], + [17129,2.48], + [17131,2.36], + [17133,2.6], + [17135,2.34], + [17137,2.29], + [17139,2.53], + [17141,2.55], + [17143,2.38], + [17145,2.38], + [17147,2.49], + [17149,2.42], + [17151,2.31], + [17153,2.44], + [17155,2.36], + [17157,2.38], + [17159,2.39], + [17161,2.37], + [17163,2.55], + [17165,2.31], + [17167,2.34], + [17169,2.48], + [17171,2.51], + [17173,2.42], + [17175,2.49], + [17177,2.4], + [17179,2.43], + [17181,2.38], + [17183,2.5], + [17185,2.46], + [17187,2.42], + [17189,2.4], + [17191,2.33], + [17193,2.23], + [17195,2.45], + [17197,3], + [17199,2.43], + [17201,2.56], + [17203,2.61], + [18001,2.76], + [18003,2.55], + [18005,2.5], + [18007,2.48], + [18009,2.4], + [18011,2.58], + [18013,2.57], + [18015,2.48], + [18017,2.51], + [18019,2.45], + [18021,2.6], + [18023,2.72], + [18025,2.46], + [18027,2.8], + [18029,2.69], + [18031,2.52], + [18033,2.6], + [18035,2.37], + [18037,2.53], + [18039,2.78], + [18041,2.43], + [18043,2.5], + [18045,2.46], + [18047,2.75], + [18049,2.4], + [18051,2.5], + [18053,2.47], + [18055,2.5], + [18057,2.72], + [18059,2.64], + [18061,2.68], + [18063,2.69], + [18065,2.43], + [18067,2.36], + [18069,2.54], + [18071,2.48], + [18073,2.6], + [18075,2.56], + [18077,2.4], + [18079,2.55], + [18081,2.57], + [18083,2.4], + [18085,2.49], + [18087,3.03], + [18089,2.67], + [18091,2.46], + [18093,2.45], + [18095,2.45], + [18097,2.44], + [18099,2.63], + [18101,2.49], + [18103,2.63], + [18105,2.34], + [18107,2.53], + [18109,2.73], + [18111,2.59], + [18113,2.67], + [18115,2.43], + [18117,2.47], + [18119,2.58], + [18121,2.39], + [18123,2.31], + [18125,2.39], + [18127,2.59], + [18129,2.56], + [18131,2.63], + [18133,2.58], + [18135,2.51], + [18137,2.64], + [18139,2.59], + [18141,2.52], + [18143,2.56], + [18145,2.53], + [18147,2.55], + [18149,2.57], + [18151,2.4], + [18153,2.41], + [18155,2.53], + [18157,2.39], + [18159,2.37], + [18161,2.54], + [18163,2.32], + [18165,2.39], + [18167,2.42], + [18169,2.38], + [18171,2.53], + [18173,2.62], + [18175,2.59], + [18177,2.39], + [18179,2.52], + [18181,2.42], + [18183,2.47], + [19001,2.28], + [19003,2.24], + [19005,2.37], + [19007,2.32], + [19009,2.22], + [19011,2.55], + [19013,2.38], + [19015,2.38], + [19017,2.46], + [19019,2.48], + [19021,2.52], + [19023,2.4], + [19025,2.12], + [19027,2.29], + [19029,2.26], + [19031,2.43], + [19033,2.17], + [19035,2.21], + [19037,2.28], + [19039,2.6], + [19041,2.19], + [19043,2.31], + [19045,2.42], + [19047,2.52], + [19049,2.56], + [19051,2.76], + [19053,2.38], + [19055,2.42], + [19057,2.36], + [19059,2.02], + [19061,2.39], + [19063,2.3], + [19065,2.38], + [19067,2.35], + [19069,2.5], + [19071,2.38], + [19073,2.25], + [19075,2.43], + [19077,2.32], + [19079,2.37], + [19081,2.38], + [19083,2.28], + [19085,2.42], + [19087,2.59], + [19089,2.29], + [19091,2.27], + [19093,2.27], + [19095,2.39], + [19097,2.34], + [19099,2.3], + [19101,2.3], + [19103,2.32], + [19105,2.34], + [19107,2.28], + [19109,2.31], + [19111,2.37], + [19113,2.37], + [19115,2.67], + [19117,2.47], + [19119,2.56], + [19121,2.64], + [19123,2.39], + [19125,2.54], + [19127,2.5], + [19129,2.56], + [19131,2.43], + [19133,2.18], + [19135,2.32], + [19137,2.36], + [19139,2.55], + [19141,2.34], + [19143,2.38], + [19145,2.19], + [19147,2.24], + [19149,2.53], + [19151,2.18], + [19153,2.44], + [19155,2.46], + [19157,2.23], + [19159,2.43], + [19161,2.27], + [19163,2.4], + [19165,2.37], + [19167,2.72], + [19169,2.34], + [19171,2.47], + [19173,2.37], + [19175,2.28], + [19177,2.39], + [19179,2.37], + [19181,2.57], + [19183,2.44], + [19185,2.32], + [19187,2.33], + [19189,2.23], + [19191,2.4], + [19193,2.52], + [19195,2.31], + [19197,2.37], + [20001,2.36], + [20003,2.49], + [20005,2.51], + [20007,2.09], + [20009,2.36], + [20011,2.55], + [20013,2.44], + [20015,2.63], + [20017,2.4], + [20019,2.31], + [20021,2.57], + [20023,2.19], + [20025,2.33], + [20027,2.32], + [20029,2.28], + [20031,2.38], + [20033,2.15], + [20035,2.53], + [20037,2.41], + [20039,1.91], + [20041,2.59], + [20043,2.46], + [20045,2.31], + [20047,2.14], + [20049,2.09], + [20051,2.24], + [20053,2.27], + [20055,2.98], + [20057,2.95], + [20059,2.49], + [20061,2.66], + [20063,2.29], + [20065,2.29], + [20067,2.79], + [20069,2.86], + [20071,2.53], + [20073,2.24], + [20075,2.27], + [20077,2.19], + [20079,2.47], + [20081,3.03], + [20083,2.47], + [20085,2.5], + [20087,2.53], + [20089,2.17], + [20091,2.51], + [20093,2.76], + [20095,2.22], + [20097,2.46], + [20099,2.31], + [20101,2.18], + [20103,2.63], + [20105,2.19], + [20107,2.27], + [20109,2.07], + [20111,2.4], + [20113,2.34], + [20115,2.29], + [20117,2.3], + [20119,2.55], + [20121,2.64], + [20123,2.34], + [20125,2.4], + [20127,2.24], + [20129,2.44], + [20131,2.41], + [20133,2.2], + [20135,2.23], + [20137,2.15], + [20139,2.42], + [20141,2.22], + [20143,2.61], + [20145,1.98], + [20147,2.28], + [20149,2.66], + [20151,2.26], + [20153,2.19], + [20155,2.32], + [20157,2.03], + [20159,2.42], + [20161,2.45], + [20163,2.16], + [20165,2.06], + [20167,2.13], + [20169,2.45], + [20171,2.26], + [20173,2.52], + [20175,2.94], + [20177,2.35], + [20179,2.27], + [20181,2.29], + [20183,2.1], + [20185,2.33], + [20187,2.78], + [20189,2.57], + [20191,2.59], + [20193,2.35], + [20195,2.29], + [20197,2.54], + [20199,2.35], + [20201,2.28], + [20203,2.61], + [20205,2.39], + [20207,2.12], + [20209,2.69], + [21001,2.41], + [21003,2.47], + [21005,2.51], + [21007,2.45], + [21009,2.46], + [21011,2.61], + [21013,2.53], + [21015,2.74], + [21017,2.41], + [21019,2.39], + [21021,2.37], + [21023,2.67], + [21025,2.66], + [21027,2.61], + [21029,2.65], + [21031,2.43], + [21033,2.45], + [21035,2.26], + [21037,2.41], + [21039,2.44], + [21041,2.51], + [21043,2.53], + [21045,2.61], + [21047,2.59], + [21049,2.42], + [21051,3.21], + [21053,2.43], + [21055,2.45], + [21057,2.58], + [21059,2.45], + [21061,2.43], + [21063,2.54], + [21065,2.61], + [21067,2.29], + [21069,2.55], + [21071,2.48], + [21073,2.25], + [21075,2.22], + [21077,2.75], + [21079,2.67], + [21081,2.75], + [21083,2.47], + [21085,2.56], + [21087,2.53], + [21089,2.54], + [21091,2.62], + [21093,2.58], + [21095,2.75], + [21097,2.55], + [21099,2.53], + [21101,2.43], + [21103,2.58], + [21105,2.33], + [21107,2.53], + [21109,2.37], + [21111,2.38], + [21113,2.6], + [21115,2.51], + [21117,2.52], + [21119,2.65], + [21121,2.44], + [21123,2.78], + [21125,2.64], + [21127,2.77], + [21129,2.49], + [21131,2.56], + [21133,2.53], + [21135,2.74], + [21137,2.47], + [21139,2.62], + [21141,2.39], + [21143,2.02], + [21145,2.32], + [21147,2.6], + [21149,2.51], + [21151,2.45], + [21153,2.83], + [21155,2.54], + [21157,2.42], + [21159,2.96], + [21161,2.46], + [21163,2.88], + [21165,2.71], + [21167,2.51], + [21169,2.49], + [21171,2.51], + [21173,2.56], + [21175,2.71], + [21177,2.43], + [21179,2.57], + [21181,2.55], + [21183,2.66], + [21185,2.79], + [21187,2.33], + [21189,3.06], + [21191,2.72], + [21193,2.63], + [21195,2.38], + [21197,2.65], + [21199,2.37], + [21201,2.67], + [21203,2.58], + [21205,2.46], + [21207,2.34], + [21209,2.5], + [21211,2.61], + [21213,2.52], + [21215,2.7], + [21217,2.43], + [21219,2.64], + [21221,2.32], + [21223,2.6], + [21225,2.46], + [21227,2.48], + [21229,2.58], + [21231,2.4], + [21233,2.69], + [21235,2.63], + [21237,2.9], + [21239,2.45], + [22001,2.75], + [22003,2.57], + [22005,2.85], + [22007,2.75], + [22009,2.46], + [22011,2.65], + [22013,2.49], + [22015,2.58], + [22017,2.53], + [22019,2.6], + [22021,2.69], + [22023,2.71], + [22025,2.57], + [22027,2.66], + [22029,2.61], + [22031,2.58], + [22033,2.55], + [22035,2.61], + [22037,2.75], + [22039,2.64], + [22041,2.51], + [22043,2.67], + [22045,2.74], + [22047,2.62], + [22049,2.66], + [22051,2.61], + [22053,2.65], + [22055,2.51], + [22057,2.74], + [22059,2.66], + [22061,2.56], + [22063,2.85], + [22065,2.62], + [22067,2.67], + [22069,2.58], + [22071,2.44], + [22073,2.62], + [22075,2.84], + [22077,2.54], + [22079,2.6], + [22081,2.78], + [22083,2.61], + [22085,2.53], + [22087,2.68], + [22089,2.81], + [22091,2.73], + [22093,2.95], + [22095,2.91], + [22097,2.76], + [22099,2.64], + [22101,2.69], + [22103,2.68], + [22105,2.73], + [22107,2.28], + [22109,2.89], + [22111,2.7], + [22113,2.59], + [22115,2.68], + [22117,2.61], + [22119,2.42], + [22121,2.72], + [22123,2.52], + [22125,2.52], + [22127,2.51], + [23001,2.34], + [23003,2.3], + [23005,2.33], + [23007,2.34], + [23009,2.26], + [23011,2.34], + [23013,2.32], + [23015,2.24], + [23017,2.45], + [23019,2.34], + [23021,2.18], + [23023,2.42], + [23025,2.35], + [23027,2.38], + [23029,2.28], + [23031,2.43], + [24001,2.34], + [24003,2.59], + [24005,2.47], + [24009,2.87], + [24011,2.73], + [24013,2.73], + [24015,2.74], + [24017,2.86], + [24019,2.37], + [24021,2.68], + [24023,2.42], + [24025,2.69], + [24027,2.7], + [24029,2.41], + [24031,2.66], + [24033,2.76], + [24035,2.69], + [24037,2.74], + [24039,2.35], + [24041,2.37], + [24043,2.52], + [24045,2.57], + [24047,2.3], + [24510,2.52], + [25001,2.17], + [25003,2.26], + [25005,2.52], + [25007,2.92], + [25009,2.55], + [25011,2.32], + [25013,2.51], + [25015,2.3], + [25017,2.49], + [25019,2.58], + [25021,2.52], + [25023,2.67], + [25025,2.33], + [25027,2.56], + [26001,2.43], + [26003,2.24], + [26005,2.62], + [26007,2.21], + [26009,2.33], + [26011,2.33], + [26013,2.39], + [26015,2.6], + [26017,2.41], + [26019,2.35], + [26021,2.45], + [26023,2.61], + [26025,2.49], + [26027,2.57], + [26029,2.26], + [26031,2.24], + [26033,2.28], + [26035,2.34], + [26037,2.6], + [26039,2.35], + [26041,2.25], + [26043,2.29], + [26045,2.46], + [26047,2.32], + [26049,2.53], + [26051,2.27], + [26053,2.07], + [26055,2.4], + [26057,2.58], + [26059,2.6], + [26061,2.35], + [26063,2.31], + [26065,2.4], + [26067,2.63], + [26069,2.32], + [26071,2.15], + [26073,2.53], + [26075,2.52], + [26077,2.41], + [26079,2.34], + [26081,2.58], + [26083,2.22], + [26085,2.78], + [26087,2.67], + [26089,2.28], + [26091,2.57], + [26093,2.67], + [26095,2.23], + [26097,2.24], + [26099,2.51], + [26101,2.2], + [26103,2.44], + [26105,2.32], + [26107,2.34], + [26109,2.19], + [26111,2.44], + [26113,2.54], + [26115,2.6], + [26117,2.68], + [26119,2.27], + [26121,2.53], + [26123,2.54], + [26125,2.47], + [26127,2.58], + [26129,2.62], + [26131,2.05], + [26133,2.61], + [26135,2.17], + [26137,2.46], + [26139,2.74], + [26141,2.16], + [26143,2.17], + [26145,2.57], + [26147,2.53], + [26149,2.71], + [26151,2.54], + [26153,2.29], + [26155,2.57], + [26157,2.53], + [26159,2.59], + [26161,2.38], + [26163,2.67], + [26165,2.54], + [27001,2.05], + [27003,2.69], + [27005,2.38], + [27007,2.49], + [27009,2.5], + [27011,2.22], + [27013,2.47], + [27015,2.29], + [27017,2.43], + [27019,2.73], + [27021,2.19], + [27023,2.35], + [27025,2.61], + [27027,2.44], + [27029,2.26], + [27031,2], + [27033,2.36], + [27035,2.26], + [27037,2.59], + [27039,2.71], + [27041,2.21], + [27043,2.31], + [27045,2.39], + [27047,2.31], + [27049,2.41], + [27051,2.21], + [27053,2.34], + [27055,2.43], + [27057,2.35], + [27059,2.65], + [27061,2.31], + [27063,2.26], + [27065,2.54], + [27067,2.39], + [27069,2.29], + [27071,2.14], + [27073,2.26], + [27075,2.05], + [27077,2.32], + [27079,2.54], + [27081,2.29], + [27083,2.35], + [27085,2.5], + [27087,2.64], + [27089,2.28], + [27091,2.28], + [27093,2.45], + [27095,2.39], + [27097,2.38], + [27099,2.4], + [27101,2.21], + [27103,2.47], + [27105,2.56], + [27107,2.34], + [27109,2.47], + [27111,2.28], + [27113,2.37], + [27115,2.43], + [27117,2.44], + [27119,2.32], + [27121,2.24], + [27123,2.39], + [27125,2.26], + [27127,2.33], + [27129,2.4], + [27131,2.51], + [27133,2.45], + [27135,2.47], + [27137,2.2], + [27139,2.87], + [27141,2.89], + [27143,2.48], + [27145,2.45], + [27147,2.56], + [27149,2.18], + [27151,2.15], + [27153,2.43], + [27155,2.14], + [27157,2.45], + [27159,2.23], + [27161,2.5], + [27163,2.67], + [27165,2.53], + [27167,2.3], + [27169,2.43], + [27171,2.69], + [27173,2.47], + [28001,2.61], + [28003,2.66], + [28005,2.67], + [28007,2.65], + [28009,2.62], + [28011,2.69], + [28013,2.51], + [28015,2.55], + [28017,2.58], + [28019,2.39], + [28021,2.75], + [28023,2.47], + [28025,2.59], + [28027,2.8], + [28029,2.76], + [28031,2.67], + [28033,2.76], + [28035,2.52], + [28037,2.71], + [28039,2.72], + [28041,2.65], + [28043,2.39], + [28045,2.66], + [28047,2.65], + [28049,2.69], + [28051,2.75], + [28053,2.85], + [28055,3.05], + [28057,2.51], + [28059,2.77], + [28061,2.53], + [28063,2.58], + [28065,2.53], + [28067,2.6], + [28069,2.38], + [28071,2.48], + [28073,2.56], + [28075,2.4], + [28077,2.59], + [28079,2.98], + [28081,2.53], + [28083,2.82], + [28085,2.56], + [28087,2.49], + [28089,2.61], + [28091,2.7], + [28093,2.77], + [28095,2.5], + [28097,2.55], + [28099,2.73], + [28101,2.6], + [28103,2.78], + [28105,2.4], + [28107,2.78], + [28109,2.64], + [28111,2.53], + [28113,2.62], + [28115,2.86], + [28117,2.58], + [28119,2.63], + [28121,2.59], + [28123,2.83], + [28125,2.89], + [28127,2.59], + [28129,2.72], + [28131,2.49], + [28133,3.03], + [28135,3.01], + [28137,2.67], + [28139,2.46], + [28141,2.51], + [28143,2.59], + [28145,2.65], + [28147,2.81], + [28149,2.52], + [28151,2.74], + [28153,2.41], + [28155,2.51], + [28157,2.49], + [28159,2.58], + [28161,2.54], + [28163,2.94], + [29001,2.33], + [29003,2.55], + [29005,2.27], + [29007,2.46], + [29009,2.49], + [29011,2.52], + [29013,2.55], + [29015,2.25], + [29017,2.57], + [29019,2.34], + [29021,2.47], + [29023,2.41], + [29025,2.43], + [29027,2.41], + [29029,2.33], + [29031,2.39], + [29033,2.45], + [29035,2.52], + [29037,2.66], + [29039,2.27], + [29041,2.39], + [29043,2.6], + [29045,2.52], + [29047,2.46], + [29049,2.51], + [29051,2.39], + [29053,2.47], + [29055,2.57], + [29057,2.42], + [29059,2.58], + [29061,2.53], + [29063,2.47], + [29065,2.5], + [29067,2.75], + [29069,2.37], + [29071,2.59], + [29073,2.36], + [29075,2.47], + [29077,2.28], + [29079,2.33], + [29081,2.49], + [29083,2.34], + [29085,2.13], + [29087,2.22], + [29089,2.35], + [29091,2.56], + [29093,2.4], + [29095,2.43], + [29097,2.53], + [29099,2.68], + [29101,2.5], + [29103,2.28], + [29105,2.44], + [29107,2.41], + [29109,2.51], + [29111,2.51], + [29113,2.81], + [29115,2.53], + [29117,2.44], + [29119,2.85], + [29121,2.34], + [29123,2.54], + [29125,2.51], + [29127,2.39], + [29129,2.38], + [29131,2.33], + [29133,2.61], + [29135,2.59], + [29137,2.31], + [29139,2.45], + [29141,2.4], + [29143,2.43], + [29145,2.63], + [29147,2.43], + [29149,2.39], + [29151,2.58], + [29153,2.44], + [29155,2.6], + [29157,2.45], + [29159,2.52], + [29161,2.44], + [29163,2.41], + [29165,2.46], + [29167,2.48], + [29169,2.58], + [29171,2.26], + [29173,2.43], + [29175,2.5], + [29177,2.55], + [29179,2.27], + [29181,2.49], + [29183,2.64], + [29185,2.24], + [29186,2.42], + [29187,2.39], + [29189,2.41], + [29195,2.41], + [29197,2.07], + [29199,2.38], + [29201,2.48], + [29203,2.47], + [29205,2.3], + [29207,2.43], + [29209,2.35], + [29211,2.52], + [29213,2.34], + [29215,2.52], + [29217,2.45], + [29219,2.56], + [29221,2.63], + [29223,2.29], + [29225,2.71], + [29227,2.18], + [29229,2.48], + [29510,2.19], + [30001,2.26], + [30003,3.52], + [30005,2.71], + [30007,2.76], + [30009,2.37], + [30011,2.21], + [30013,2.37], + [30015,2.6], + [30017,2.18], + [30019,2.12], + [30021,2.17], + [30023,1.92], + [30025,2.36], + [30027,2.26], + [30029,2.43], + [30031,2.34], + [30033,2.42], + [30035,3.09], + [30037,2.43], + [30039,2.08], + [30041,2.54], + [30043,2.35], + [30045,2.27], + [30047,2.33], + [30049,2.28], + [30051,2.76], + [30053,2.08], + [30055,2.47], + [30057,1.97], + [30059,2.63], + [30061,2.38], + [30063,2.35], + [30065,2.13], + [30067,2.19], + [30069,2.11], + [30071,2.2], + [30073,2.65], + [30075,2.4], + [30077,2.39], + [30079,2.17], + [30081,2.35], + [30083,2.22], + [30085,3.02], + [30087,2.81], + [30089,2.19], + [30091,1.95], + [30093,2.19], + [30095,2.37], + [30097,2.42], + [30099,2.43], + [30101,2.17], + [30103,2.66], + [30105,2.29], + [30107,2.28], + [30109,2.72], + [30111,2.35], + [31001,2.42], + [31003,2.35], + [31005,2.39], + [31007,2.25], + [31009,2.23], + [31011,2.28], + [31013,2.34], + [31015,2.25], + [31017,2.24], + [31019,2.47], + [31021,2.3], + [31023,2.41], + [31025,2.61], + [31027,2.56], + [31029,2.26], + [31031,2.29], + [31033,2.3], + [31035,2.45], + [31037,2.74], + [31039,2.38], + [31041,2.32], + [31043,2.78], + [31045,2.24], + [31047,2.69], + [31049,2.1], + [31051,2.47], + [31053,2.37], + [31055,2.49], + [31057,2.17], + [31059,2.17], + [31061,2.25], + [31063,2.43], + [31065,2.3], + [31067,2.42], + [31069,1.99], + [31071,2.31], + [31073,2.5], + [31075,2.26], + [31077,2.5], + [31079,2.57], + [31081,2.64], + [31083,2.23], + [31085,2.33], + [31087,2.28], + [31089,2.37], + [31091,2.13], + [31093,2.35], + [31095,2.34], + [31097,2.13], + [31099,2.48], + [31101,2.18], + [31103,2.14], + [31105,2.29], + [31107,2.25], + [31109,2.37], + [31111,2.37], + [31113,2.13], + [31115,2.62], + [31117,2.4], + [31119,2.43], + [31121,2.47], + [31123,2.37], + [31125,2.32], + [31127,2.18], + [31129,2.22], + [31131,2.43], + [31133,2.06], + [31135,2.36], + [31137,2.33], + [31139,2.41], + [31141,2.54], + [31143,2.43], + [31145,2.28], + [31147,2.19], + [31149,2.3], + [31151,2.58], + [31153,2.68], + [31155,2.52], + [31157,2.38], + [31159,2.46], + [31161,2.18], + [31163,2.3], + [31165,2.24], + [31167,2.57], + [31169,2.26], + [31171,2.28], + [31173,3.32], + [31175,2.21], + [31177,2.61], + [31179,2.51], + [31181,2.24], + [31183,2.24], + [31185,2.27], + [32001,2.8], + [32003,2.69], + [32005,2.44], + [32007,2.73], + [32009,1.76], + [32011,2.38], + [32013,2.59], + [32015,2.78], + [32017,2.69], + [32019,2.86], + [32021,2], + [32023,2.42], + [32027,2.38], + [32029,2.2], + [32031,2.52], + [32033,2.75], + [32510,2.53], + [33001,2.35], + [33003,2.38], + [33005,2.42], + [33007,2.15], + [33009,2.4], + [33011,2.55], + [33013,2.46], + [33015,2.55], + [33017,2.46], + [33019,2.37], + [34001,2.55], + [34003,2.65], + [34005,2.63], + [34007,2.65], + [34009,2.1], + [34011,2.84], + [34013,2.74], + [34015,2.73], + [34017,2.59], + [34019,2.61], + [34021,2.7], + [34023,2.78], + [34025,2.67], + [34027,2.69], + [34029,2.53], + [34031,3], + [34033,2.58], + [34035,2.76], + [34037,2.66], + [34039,2.84], + [34041,2.57], + [35001,2.46], + [35003,2], + [35005,2.63], + [35006,3.11], + [35007,2.33], + [35009,2.63], + [35011,2.26], + [35013,2.73], + [35015,2.68], + [35017,2.34], + [35019,2.5], + [35021,2.94], + [35023,2.91], + [35025,2.82], + [35027,2.32], + [35028,2.38], + [35029,2.71], + [35031,3.96], + [35033,2.71], + [35035,2.56], + [35037,2.33], + [35039,2.65], + [35041,2.74], + [35043,2.75], + [35045,3.01], + [35047,2.31], + [35049,2.31], + [35051,2.47], + [35053,2.92], + [35055,2.47], + [35057,2.61], + [35059,2.52], + [35061,2.71], + [36001,2.3], + [36003,2.35], + [36005,2.79], + [36007,2.36], + [36009,2.38], + [36011,2.34], + [36013,2.34], + [36015,2.34], + [36017,2.48], + [36019,2.42], + [36021,2.3], + [36023,2.57], + [36025,2.33], + [36027,2.59], + [36029,2.36], + [36031,2.23], + [36033,2.34], + [36035,2.31], + [36037,2.48], + [36039,2.44], + [36041,2.02], + [36043,2.41], + [36045,2.53], + [36047,2.68], + [36049,2.48], + [36051,2.45], + [36053,2.52], + [36055,2.45], + [36057,2.43], + [36059,2.95], + [36061,2.09], + [36063,2.4], + [36065,2.39], + [36067,2.45], + [36069,2.4], + [36071,2.85], + [36073,2.54], + [36075,2.55], + [36077,2.31], + [36079,2.71], + [36081,2.81], + [36083,2.43], + [36085,2.76], + [36087,3.02], + [36089,2.34], + [36091,2.46], + [36093,2.53], + [36095,2.38], + [36097,2.41], + [36099,2.44], + [36101,2.4], + [36103,2.93], + [36105,2.44], + [36107,2.5], + [36109,2.27], + [36111,2.42], + [36113,2.25], + [36115,2.41], + [36117,2.5], + [36119,2.64], + [36121,2.45], + [36123,2.48], + [37001,2.43], + [37003,2.73], + [37005,2.06], + [37007,2.54], + [37009,2.23], + [37011,2.21], + [37013,2.32], + [37015,2.49], + [37017,2.42], + [37019,2.22], + [37021,2.28], + [37023,2.5], + [37025,2.65], + [37027,2.59], + [37029,2.82], + [37031,2.25], + [37033,2.51], + [37035,2.55], + [37037,2.43], + [37039,2.33], + [37041,2.43], + [37043,2.24], + [37045,2.54], + [37047,2.53], + [37049,2.37], + [37051,2.55], + [37053,2.48], + [37055,2.15], + [37057,2.46], + [37059,2.55], + [37061,2.66], + [37063,2.32], + [37065,2.51], + [37067,2.44], + [37069,2.5], + [37071,2.59], + [37073,2.66], + [37075,2.28], + [37077,2.72], + [37079,2.72], + [37081,2.43], + [37083,2.5], + [37085,2.67], + [37087,2.18], + [37089,2.26], + [37091,2.52], + [37093,3], + [37095,2.23], + [37097,2.64], + [37099,2.23], + [37101,2.7], + [37103,2.46], + [37105,2.61], + [37107,2.38], + [37109,2.53], + [37111,2.49], + [37113,2.05], + [37115,2.38], + [37117,2.41], + [37119,2.48], + [37121,2.29], + [37123,2.69], + [37125,2.49], + [37127,2.45], + [37129,2.3], + [37131,2.59], + [37133,2.66], + [37135,2.41], + [37137,2.24], + [37139,2.6], + [37141,2.42], + [37143,2.43], + [37145,2.49], + [37147,2.42], + [37149,2.19], + [37151,2.53], + [37153,2.63], + [37155,2.89], + [37157,2.44], + [37159,2.52], + [37161,2.39], + [37163,2.63], + [37165,2.58], + [37167,2.63], + [37169,2.49], + [37171,2.44], + [37173,2.36], + [37175,2.23], + [37177,2.12], + [37179,2.87], + [37181,2.67], + [37183,2.55], + [37185,2.61], + [37187,2.62], + [37189,2.09], + [37191,2.51], + [37193,2.45], + [37195,2.45], + [37197,2.52], + [37199,2.38], + [38001,2.08], + [38003,2.2], + [38005,2.89], + [38007,2.53], + [38009,2.01], + [38011,2.21], + [38013,1.98], + [38015,2.31], + [38017,2.2], + [38019,2.25], + [38021,2.38], + [38023,1.97], + [38025,2.58], + [38027,2.36], + [38029,2.2], + [38031,2.25], + [38033,2.06], + [38035,2.37], + [38037,2.04], + [38039,2.16], + [38041,2.12], + [38043,2.1], + [38045,2.13], + [38047,2.26], + [38049,2.12], + [38051,2.03], + [38053,2.43], + [38055,2.17], + [38057,2.25], + [38059,2.46], + [38061,2.44], + [38063,2.14], + [38065,2.37], + [38067,2.2], + [38069,2.08], + [38071,2.32], + [38073,2.29], + [38075,2.18], + [38077,2.32], + [38079,2.93], + [38081,2.24], + [38083,2.03], + [38085,3.89], + [38087,2.22], + [38089,2.37], + [38091,2.4], + [38093,2.21], + [38095,2.14], + [38097,2.33], + [38099,2.25], + [38101,2.36], + [38103,2.03], + [38105,2.22], + [39001,2.63], + [39003,2.51], + [39005,2.52], + [39007,2.54], + [39009,2.44], + [39011,2.49], + [39013,2.26], + [39015,2.77], + [39017,2.6], + [39019,2.47], + [39021,2.62], + [39023,2.47], + [39025,2.66], + [39027,2.54], + [39029,2.48], + [39031,2.53], + [39033,2.41], + [39035,2.35], + [39037,2.52], + [39039,2.52], + [39041,2.67], + [39043,2.38], + [39045,2.63], + [39047,2.46], + [39049,2.44], + [39051,2.59], + [39053,2.44], + [39055,2.68], + [39057,2.43], + [39059,2.47], + [39061,2.39], + [39063,2.37], + [39065,2.54], + [39067,2.46], + [39069,2.5], + [39071,2.59], + [39073,2.49], + [39075,3.4], + [39077,2.57], + [39079,2.52], + [39081,2.31], + [39083,2.52], + [39085,2.41], + [39087,2.5], + [39089,2.56], + [39091,2.45], + [39093,2.53], + [39095,2.43], + [39097,2.53], + [39099,2.38], + [39101,2.45], + [39103,2.63], + [39105,2.44], + [39107,2.6], + [39109,2.46], + [39111,2.36], + [39113,2.34], + [39115,2.44], + [39117,2.63], + [39119,2.48], + [39121,2.43], + [39123,2.3], + [39125,2.55], + [39127,2.63], + [39129,2.63], + [39131,2.64], + [39133,2.46], + [39135,2.56], + [39137,2.67], + [39139,2.45], + [39141,2.52], + [39143,2.51], + [39145,2.51], + [39147,2.49], + [39149,2.63], + [39151,2.43], + [39153,2.4], + [39155,2.42], + [39157,2.53], + [39159,2.68], + [39161,2.5], + [39163,2.5], + [39165,2.71], + [39167,2.38], + [39169,2.64], + [39171,2.49], + [39173,2.4], + [39175,2.44], + [40001,2.81], + [40003,2.21], + [40005,2.32], + [40007,2.48], + [40009,2.67], + [40011,2.58], + [40013,2.43], + [40015,2.6], + [40017,2.65], + [40019,2.6], + [40021,2.68], + [40023,2.41], + [40025,2.24], + [40027,2.53], + [40029,2.46], + [40031,2.48], + [40033,2.49], + [40035,2.39], + [40037,2.57], + [40039,2.44], + [40041,2.49], + [40043,2.47], + [40045,2.39], + [40047,2.42], + [40049,2.64], + [40051,2.62], + [40053,2.42], + [40055,2.16], + [40057,2.45], + [40059,2.3], + [40061,2.63], + [40063,2.41], + [40065,2.46], + [40067,2.5], + [40069,2.27], + [40071,2.48], + [40073,2.67], + [40075,2.38], + [40077,2.56], + [40079,2.57], + [40081,2.61], + [40083,2.65], + [40085,2.55], + [40087,2.77], + [40089,2.44], + [40091,2.58], + [40093,2.36], + [40095,2.69], + [40097,2.52], + [40099,2.48], + [40101,2.46], + [40103,2.54], + [40105,2.52], + [40107,2.5], + [40109,2.48], + [40111,2.52], + [40113,2.52], + [40115,2.54], + [40117,2.67], + [40119,2.4], + [40121,2.28], + [40123,2.38], + [40125,2.65], + [40127,2.37], + [40129,2.57], + [40131,2.7], + [40133,2.63], + [40135,2.71], + [40137,2.47], + [40139,2.77], + [40141,2.61], + [40143,2.43], + [40145,2.74], + [40147,2.34], + [40149,2.59], + [40151,2], + [40153,2.48], + [41001,2.32], + [41003,2.35], + [41005,2.56], + [41007,2.18], + [41009,2.56], + [41011,2.29], + [41013,2.45], + [41015,2.14], + [41017,2.43], + [41019,2.41], + [41021,2.03], + [41023,2.19], + [41025,2.14], + [41027,2.61], + [41029,2.37], + [41031,2.72], + [41033,2.37], + [41035,2.38], + [41037,2.16], + [41039,2.34], + [41041,2.18], + [41043,2.53], + [41045,2.68], + [41047,2.65], + [41049,2.87], + [41051,2.33], + [41053,2.57], + [41055,2.24], + [41057,2.21], + [41059,2.63], + [41061,2.45], + [41063,2.27], + [41065,2.42], + [41067,2.6], + [41069,2.07], + [41071,2.71], + [42001,2.53], + [42003,2.27], + [42005,2.37], + [42007,2.38], + [42009,2.49], + [42011,2.56], + [42013,2.39], + [42015,2.48], + [42017,2.65], + [42019,2.48], + [42021,2.33], + [42023,2.35], + [42025,2.45], + [42027,2.41], + [42029,2.63], + [42031,2.43], + [42033,2.37], + [42035,2.38], + [42037,2.41], + [42039,2.42], + [42041,2.31], + [42043,2.42], + [42045,2.59], + [42047,2.33], + [42049,2.46], + [42051,2.43], + [42053,2.69], + [42055,2.46], + [42057,2.54], + [42059,2.58], + [42061,2.42], + [42063,2.44], + [42065,2.47], + [42067,2.69], + [42069,2.37], + [42071,2.59], + [42073,2.44], + [42075,2.47], + [42077,2.52], + [42079,2.36], + [42081,2.4], + [42083,2.38], + [42085,2.35], + [42087,2.42], + [42089,2.74], + [42091,2.51], + [42093,2.37], + [42095,2.52], + [42097,2.31], + [42099,2.5], + [42101,2.53], + [42103,2.55], + [42105,2.37], + [42107,2.34], + [42109,2.58], + [42111,2.46], + [42113,2.5], + [42115,2.48], + [42117,2.34], + [42119,2.34], + [42121,2.4], + [42123,2.33], + [42125,2.42], + [42127,2.45], + [42129,2.34], + [42131,2.52], + [42133,2.52], + [44001,2.5], + [44003,2.39], + [44005,2.3], + [44007,2.51], + [44009,2.47], + [45001,2.49], + [45003,2.49], + [45005,2.63], + [45007,2.5], + [45009,2.57], + [45011,2.69], + [45013,2.33], + [45015,2.74], + [45017,2.47], + [45019,2.41], + [45021,2.6], + [45023,2.63], + [45025,2.67], + [45027,2.61], + [45029,2.53], + [45031,2.61], + [45033,2.68], + [45035,2.68], + [45037,2.62], + [45039,2.58], + [45041,2.54], + [45043,2.67], + [45045,2.48], + [45047,2.57], + [45049,2.74], + [45051,2.28], + [45053,2.91], + [45055,2.55], + [45057,2.51], + [45059,2.51], + [45061,2.66], + [45063,2.48], + [45065,2.17], + [45067,2.7], + [45069,2.68], + [45071,2.54], + [45073,2.43], + [45075,2.54], + [45077,2.47], + [45079,2.43], + [45081,2.85], + [45083,2.54], + [45085,2.67], + [45087,2.33], + [45089,3.04], + [45091,2.58], + [46003,2.58], + [46005,2.25], + [46007,3.07], + [46009,2.37], + [46011,2.46], + [46013,2.31], + [46015,2.27], + [46017,3.84], + [46019,2.48], + [46021,2.34], + [46023,2.76], + [46025,2.66], + [46027,2.23], + [46029,2.35], + [46031,3.64], + [46033,2.1], + [46035,2.25], + [46037,2.17], + [46039,2.39], + [46041,3.12], + [46043,2.39], + [46045,2.53], + [46047,1.92], + [46049,2.6], + [46051,2.23], + [46053,2.11], + [46055,2.19], + [46057,2.82], + [46059,2.19], + [46061,2.93], + [46063,2.36], + [46065,2.31], + [46067,2.41], + [46069,2.46], + [46071,3.09], + [46073,2.25], + [46075,2.28], + [46077,2.14], + [46079,2.27], + [46081,2.06], + [46083,2.6], + [46085,2.56], + [46087,2.53], + [46089,2.38], + [46091,2.6], + [46093,2.5], + [46095,2.99], + [46097,2.2], + [46099,2.44], + [46101,2.49], + [46102,4.45], + [46103,2.38], + [46105,2.12], + [46107,2.33], + [46109,2.62], + [46111,2.45], + [46115,2.25], + [46117,2.5], + [46119,2.26], + [46121,3.75], + [46123,2.23], + [46125,2.41], + [46127,2.4], + [46129,2.2], + [46135,2.27], + [46137,3.59], + [47001,2.38], + [47003,2.69], + [47005,2.34], + [47007,2.53], + [47009,2.47], + [47011,2.53], + [47013,2.54], + [47015,2.53], + [47017,2.5], + [47019,2.34], + [47021,2.67], + [47023,2.62], + [47025,2.48], + [47027,2.14], + [47029,2.38], + [47031,2.49], + [47033,2.56], + [47035,2.37], + [47037,2.34], + [47039,2.3], + [47041,2.46], + [47043,2.57], + [47045,2.48], + [47047,2.72], + [47049,2.42], + [47051,2.5], + [47053,2.47], + [47055,2.49], + [47057,2.55], + [47059,2.35], + [47061,2.62], + [47063,2.5], + [47065,2.4], + [47067,2.21], + [47069,2.62], + [47071,2.46], + [47073,2.37], + [47075,2.53], + [47077,2.49], + [47079,2.33], + [47081,2.56], + [47083,2.4], + [47085,2.43], + [47087,2.46], + [47089,2.49], + [47091,2.26], + [47093,2.31], + [47095,2.44], + [47097,2.66], + [47099,2.6], + [47101,2.62], + [47103,2.4], + [47105,2.41], + [47107,2.45], + [47109,2.53], + [47111,2.61], + [47113,2.56], + [47115,2.48], + [47117,2.53], + [47119,2.45], + [47121,2.51], + [47123,2.48], + [47125,2.64], + [47127,2.61], + [47129,2.46], + [47131,2.5], + [47133,2.41], + [47135,2.34], + [47137,2.27], + [47139,2.61], + [47141,2.44], + [47143,2.55], + [47145,2.36], + [47147,2.69], + [47149,2.65], + [47151,2.55], + [47153,2.7], + [47155,2.31], + [47157,2.65], + [47159,2.77], + [47161,2.44], + [47163,2.29], + [47165,2.6], + [47167,2.74], + [47169,2.75], + [47171,2.36], + [47173,2.57], + [47175,2.55], + [47177,2.6], + [47179,2.35], + [47181,2.54], + [47183,2.35], + [47185,2.58], + [47187,2.78], + [47189,2.63], + [48001,2.86], + [48003,2.7], + [48005,2.64], + [48007,2.29], + [48009,2.67], + [48011,2.6], + [48013,3], + [48015,2.65], + [48017,2.95], + [48019,2.39], + [48021,2.79], + [48023,2.28], + [48025,2.65], + [48027,2.8], + [48029,2.78], + [48031,2.56], + [48033,2.31], + [48035,2.55], + [48037,2.6], + [48039,2.84], + [48041,2.6], + [48043,2.11], + [48045,2.54], + [48047,2.76], + [48049,2.67], + [48051,2.51], + [48053,2.53], + [48055,2.95], + [48057,2.6], + [48059,2.61], + [48061,3.44], + [48063,2.62], + [48065,2.6], + [48067,2.48], + [48069,2.9], + [48071,2.9], + [48073,2.83], + [48075,2.43], + [48077,2.45], + [48079,2.75], + [48081,2.42], + [48083,2.47], + [48085,2.74], + [48087,2.53], + [48089,2.48], + [48091,2.59], + [48093,2.6], + [48095,2.58], + [48097,2.59], + [48099,3.21], + [48101,2.61], + [48103,2.79], + [48105,2.98], + [48107,2.84], + [48109,3.32], + [48111,3], + [48113,2.75], + [48115,2.58], + [48117,3.09], + [48119,2.56], + [48121,2.73], + [48123,2.47], + [48125,2.37], + [48127,2.67], + [48129,2.57], + [48131,2.75], + [48133,2.41], + [48135,2.76], + [48137,2.34], + [48139,2.92], + [48141,3.13], + [48143,2.54], + [48145,2.89], + [48147,2.71], + [48149,2.2], + [48151,2.37], + [48153,2.52], + [48155,2.43], + [48157,3.2], + [48159,2.84], + [48161,2.49], + [48163,3.13], + [48165,3.11], + [48167,2.64], + [48169,2.7], + [48171,2.27], + [48173,3.06], + [48175,2.44], + [48177,2.66], + [48179,2.46], + [48181,2.55], + [48183,2.6], + [48185,2.7], + [48187,2.84], + [48189,2.8], + [48191,2.37], + [48193,2.72], + [48195,2.77], + [48197,2.53], + [48199,2.68], + [48201,2.85], + [48203,2.72], + [48205,2.61], + [48207,2.29], + [48209,2.71], + [48211,2.39], + [48213,2.52], + [48215,3.56], + [48217,2.59], + [48219,2.68], + [48221,2.44], + [48223,2.6], + [48225,2.94], + [48227,2.58], + [48229,3.2], + [48231,2.7], + [48233,2.6], + [48235,2.7], + [48237,2.65], + [48239,2.75], + [48241,2.54], + [48243,2.13], + [48245,2.57], + [48247,2.99], + [48249,2.9], + [48251,2.87], + [48253,2.4], + [48255,1.91], + [48257,2.93], + [48259,2.57], + [48261,2.62], + [48263,2.09], + [48265,2.31], + [48267,2.4], + [48269,2.31], + [48271,2.99], + [48273,2.74], + [48275,2.25], + [48277,2.57], + [48279,2.9], + [48281,2.67], + [48283,3.17], + [48285,2.36], + [48287,2.68], + [48289,2.5], + [48291,2.87], + [48293,2.52], + [48295,2.85], + [48297,2.62], + [48299,2.21], + [48301,1.86], + [48303,2.53], + [48305,2.77], + [48307,2.6], + [48309,2.68], + [48311,2.92], + [48313,2.84], + [48315,2.25], + [48317,3.08], + [48319,2.53], + [48321,2.63], + [48323,3.61], + [48325,2.83], + [48327,2.31], + [48329,2.66], + [48331,2.57], + [48333,2.44], + [48335,2.31], + [48337,2.45], + [48339,2.82], + [48341,3.12], + [48343,2.55], + [48345,2.58], + [48347,2.53], + [48349,2.65], + [48351,2.68], + [48353,2.52], + [48355,2.71], + [48357,2.79], + [48359,2.72], + [48361,2.6], + [48363,2.63], + [48365,2.66], + [48367,2.68], + [48369,3.04], + [48371,2.53], + [48373,2.48], + [48375,2.84], + [48377,2.94], + [48379,2.67], + [48381,2.49], + [48383,2.88], + [48385,2.39], + [48387,2.5], + [48389,3.4], + [48391,2.43], + [48393,2.67], + [48395,2.61], + [48397,2.93], + [48399,2.55], + [48401,2.59], + [48403,2.4], + [48405,2.41], + [48407,2.79], + [48409,2.86], + [48411,2.69], + [48413,3.24], + [48415,2.29], + [48417,2.63], + [48419,2.58], + [48421,3.09], + [48423,2.62], + [48425,2.8], + [48427,3.81], + [48429,2.45], + [48431,2.58], + [48433,2.41], + [48435,3.1], + [48437,2.62], + [48439,2.72], + [48441,2.45], + [48443,2.28], + [48445,2.81], + [48447,2.27], + [48449,2.78], + [48451,2.47], + [48453,2.45], + [48455,2.76], + [48457,2.42], + [48459,2.55], + [48461,2.34], + [48463,2.9], + [48465,3.17], + [48467,2.61], + [48469,2.65], + [48471,2.29], + [48473,2.94], + [48475,2.72], + [48477,2.34], + [48479,3.69], + [48481,2.72], + [48483,2.45], + [48485,2.46], + [48487,2.49], + [48489,3.72], + [48491,2.73], + [48493,2.82], + [48495,2.72], + [48497,2.89], + [48499,2.45], + [48501,2.93], + [48503,2.42], + [48505,3.13], + [48507,3.17], + [49001,2.94], + [49003,3.05], + [49005,3.09], + [49007,2.51], + [49009,2.18], + [49011,3.22], + [49013,2.62], + [49015,2.82], + [49017,2.32], + [49019,2.39], + [49021,2.84], + [49023,3.22], + [49025,2.19], + [49027,3], + [49029,3.32], + [49031,2.77], + [49033,2.86], + [49035,2.94], + [49037,3.26], + [49039,3.15], + [49041,2.84], + [49043,2.59], + [49045,3.09], + [49047,2.95], + [49049,3.48], + [49051,3.09], + [49053,2.9], + [49055,3.01], + [49057,2.84], + [50001,2.42], + [50003,2.3], + [50005,2.38], + [50007,2.37], + [50009,2.24], + [50011,2.54], + [50013,2.31], + [50015,2.26], + [50017,2.37], + [50019,2.46], + [50021,2.26], + [50023,2.3], + [50025,2.23], + [50027,2.25], + [51001,2.39], + [51003,2.45], + [51005,2.29], + [51007,2.51], + [51009,2.36], + [51011,2.44], + [51013,2.11], + [51015,2.48], + [51017,2.34], + [51019,2.49], + [51021,2.44], + [51023,2.49], + [51025,2.46], + [51027,2.59], + [51029,2.01], + [51031,2.45], + [51033,2.65], + [51035,2.31], + [51036,2.66], + [51037,2.85], + [51041,2.71], + [51043,2.49], + [51045,2.54], + [51047,2.77], + [51049,2.48], + [51051,2.56], + [51053,2.71], + [51057,2.41], + [51059,2.73], + [51061,2.86], + [51063,2.37], + [51065,2.66], + [51067,2.3], + [51069,2.61], + [51071,2.39], + [51073,2.58], + [51075,2.33], + [51077,2.28], + [51079,2.65], + [51081,2.93], + [51083,2.45], + [51085,2.69], + [51087,2.43], + [51089,2.37], + [51091,2.12], + [51093,2.55], + [51095,2.45], + [51097,2.46], + [51099,2.65], + [51101,2.62], + [51103,2.06], + [51105,2.51], + [51107,3.05], + [51109,2.43], + [51111,2.64], + [51113,2.56], + [51115,2.37], + [51117,2.48], + [51119,2.46], + [51121,2.34], + [51125,2.28], + [51127,2.6], + [51131,2.43], + [51133,2.27], + [51135,2.72], + [51137,2.52], + [51139,2.48], + [51141,2.5], + [51143,2.34], + [51145,2.46], + [51147,2.66], + [51149,2.83], + [51153,3], + [51155,2.27], + [51157,2.33], + [51159,2.58], + [51161,2.37], + [51163,2.37], + [51165,2.45], + [51167,2.5], + [51169,2.37], + [51171,2.39], + [51173,2.41], + [51175,2.58], + [51177,2.91], + [51179,3.01], + [51181,2.84], + [51183,2.86], + [51185,2.45], + [51187,2.58], + [51191,2.33], + [51193,2.42], + [51195,2.48], + [51197,2.46], + [51199,2.61], + [51510,2.08], + [51520,2.17], + [51530,2.43], + [51540,2.22], + [51550,2.73], + [51570,2.46], + [51580,2.27], + [51590,2.14], + [51595,2.36], + [51600,2.52], + [51610,2.44], + [51620,2.36], + [51630,2.27], + [51640,1.95], + [51650,2.54], + [51660,2.56], + [51670,2.51], + [51678,2.13], + [51680,2.35], + [51683,3.06], + [51685,3.14], + [51690,2.25], + [51700,2.45], + [51710,2.63], + [51720,2.17], + [51730,2.58], + [51735,2.67], + [51740,2.49], + [51750,2.22], + [51760,2.3], + [51770,2.19], + [51775,2.3], + [51790,2.1], + [51800,2.7], + [51810,2.6], + [51820,2.41], + [51830,2.09], + [51840,2.43], + [53001,3.15], + [53003,2.36], + [53005,2.67], + [53007,2.62], + [53009,2.21], + [53011,2.65], + [53013,2.28], + [53015,2.5], + [53017,2.68], + [53019,2.72], + [53021,3.29], + [53023,2.39], + [53025,2.84], + [53027,2.47], + [53029,2.3], + [53031,2.02], + [53033,2.36], + [53035,2.53], + [53037,2.27], + [53039,2.37], + [53041,2.52], + [53043,2.26], + [53045,2.63], + [53047,2.54], + [53049,2.16], + [53051,2.33], + [53053,2.57], + [53055,1.94], + [53057,2.51], + [53059,2.41], + [53061,2.6], + [53063,2.41], + [53065,2.48], + [53067,2.44], + [53069,2.25], + [53071,2.48], + [53073,2.44], + [53075,2.41], + [53077,2.94], + [54001,2.57], + [54003,2.57], + [54005,2.47], + [54007,2.3], + [54009,2.4], + [54011,2.3], + [54013,2.5], + [54015,2.63], + [54017,2.81], + [54019,2.43], + [54021,2.37], + [54023,2.42], + [54025,2.26], + [54027,2.36], + [54029,2.29], + [54031,2.83], + [54033,2.44], + [54035,2.47], + [54037,2.64], + [54039,2.31], + [54041,2.4], + [54043,2.5], + [54045,2.43], + [54047,2.67], + [54049,2.42], + [54051,2.32], + [54053,2.42], + [54055,2.41], + [54057,2.41], + [54059,2.45], + [54061,2.42], + [54063,2.4], + [54065,2.45], + [54067,2.53], + [54069,2.27], + [54071,2.18], + [54073,2.82], + [54075,2.18], + [54077,2.4], + [54079,2.6], + [54081,2.37], + [54083,2.36], + [54085,2.49], + [54087,2.49], + [54089,2.47], + [54091,2.46], + [54093,2.28], + [54095,2.44], + [54097,2.42], + [54099,2.55], + [54101,2.2], + [54103,2.42], + [54105,2.43], + [54107,2.37], + [54109,2.63], + [55001,2.1], + [55003,2.24], + [55005,2.33], + [55007,2.1], + [55009,2.44], + [55011,2.36], + [55013,2.08], + [55015,2.61], + [55017,2.5], + [55019,2.61], + [55021,2.38], + [55023,2.34], + [55025,2.36], + [55027,2.41], + [55029,2.04], + [55031,2.21], + [55033,2.5], + [55035,2.35], + [55037,2.21], + [55039,2.43], + [55041,2.16], + [55043,2.44], + [55045,2.47], + [55047,2.4], + [55049,2.42], + [55051,1.94], + [55053,2.28], + [55055,2.55], + [55057,2.41], + [55059,2.55], + [55061,2.48], + [55063,2.36], + [55065,2.56], + [55067,2.25], + [55069,2.18], + [55071,2.35], + [55073,2.49], + [55075,2.1], + [55077,2.28], + [55078,2.79], + [55079,2.41], + [55081,2.52], + [55083,2.28], + [55085,2.03], + [55087,2.49], + [55089,2.5], + [55091,2.38], + [55093,2.54], + [55095,2.42], + [55097,2.39], + [55099,2.09], + [55101,2.49], + [55103,2.4], + [55105,2.51], + [55107,2.19], + [55109,2.58], + [55111,2.37], + [55113,2.05], + [55115,2.39], + [55117,2.41], + [55119,2.32], + [55121,2.43], + [55123,2.43], + [55125,2.03], + [55127,2.52], + [55129,2.09], + [55131,2.51], + [55133,2.52], + [55135,2.37], + [55137,2.25], + [55139,2.33], + [55141,2.31], + [56001,2.22], + [56003,2.5], + [56005,2.68], + [56007,2.27], + [56009,2.39], + [56011,2.41], + [56013,2.46], + [56015,2.3], + [56017,2.14], + [56019,2.2], + [56021,2.44], + [56023,2.69], + [56025,2.42], + [56027,2.3], + [56029,2.27], + [56031,2.31], + [56033,2.28], + [56035,2.92], + [56037,2.53], + [56039,2.74], + [56041,2.78], + [56043,2.39], + [56045,2.19] + ] +} diff --git a/data/regional/united-states/demographics/households/us-persons-perhousehold-2017.json b/data/regional/united-states/demographics/households/us-persons-perhousehold-2017.json new file mode 100644 index 0000000..12885f6 --- /dev/null +++ b/data/regional/united-states/demographics/households/us-persons-perhousehold-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Persons Per Household", + "description" : "Average number of people per household.", + "units" : "people", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","households"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.persons.perhousehold.2017"], + [1001,2.59], + [1003,2.63], + [1005,2.54], + [1007,2.97], + [1009,2.76], + [1011,2.74], + [1013,2.81], + [1015,2.49], + [1017,2.44], + [1019,2.37], + [1021,2.59], + [1023,2.38], + [1025,2.53], + [1027,2.46], + [1029,2.56], + [1031,2.57], + [1033,2.46], + [1035,2.67], + [1037,2.51], + [1039,2.41], + [1041,2.56], + [1043,2.59], + [1045,2.56], + [1047,2.44], + [1049,2.76], + [1051,2.62], + [1053,2.63], + [1055,2.61], + [1057,2.35], + [1059,2.71], + [1061,2.46], + [1063,2.8], + [1065,2.61], + [1067,2.5], + [1069,2.61], + [1071,2.54], + [1073,2.46], + [1075,2.3], + [1077,2.34], + [1079,2.53], + [1081,2.55], + [1083,2.74], + [1085,2.38], + [1087,2.17], + [1089,2.42], + [1091,2.45], + [1093,2.37], + [1095,2.71], + [1097,2.63], + [1099,2.62], + [1101,2.45], + [1103,2.55], + [1105,2.92], + [1107,2.48], + [1109,2.55], + [1111,2.49], + [1113,2.55], + [1115,2.61], + [1117,2.68], + [1119,2.41], + [1121,2.45], + [1123,2.45], + [1125,2.72], + [1127,2.55], + [1129,2.77], + [1131,2.77], + [1133,2.5], + [2013,2.53], + [2016,3.57], + [2020,2.74], + [2050,3.81], + [2060,2.39], + [2068,2.31], + [2070,3.32], + [2090,2.63], + [2100,2.27], + [2105,2.48], + [2110,2.59], + [2122,2.58], + [2130,2.55], + [2150,2.96], + [2158,"NA"], + [2164,2.96], + [2170,3.24], + [2180,3.25], + [2185,3.28], + [2188,4.01], + [2195,2.53], + [2198,2.75], + [2220,2.4], + [2230,2.13], + [2240,3.04], + [2261,3.22], + [2275,2.24], + [2282,2.4], + [2290,2.66], + [4001,3.59], + [4003,2.36], + [4005,2.65], + [4007,2.42], + [4009,3.04], + [4011,2.76], + [4012,2.3], + [4013,2.75], + [4015,2.39], + [4017,3.07], + [4019,2.45], + [4021,2.85], + [4023,2.95], + [4025,2.29], + [4027,2.77], + [5001,2.35], + [5003,2.52], + [5005,2.21], + [5007,2.74], + [5009,2.47], + [5011,2.36], + [5013,2.45], + [5015,2.54], + [5017,2.38], + [5019,2.23], + [5021,2.34], + [5023,2.35], + [5025,2.5], + [5027,2.38], + [5029,2.53], + [5031,2.52], + [5033,2.58], + [5035,2.6], + [5037,2.52], + [5039,2.21], + [5041,2.3], + [5043,2.5], + [5045,2.66], + [5047,2.55], + [5049,2.33], + [5051,2.39], + [5053,2.62], + [5055,2.59], + [5057,2.75], + [5059,2.56], + [5061,2.63], + [5063,2.52], + [5065,2.43], + [5067,2.31], + [5069,2.39], + [5071,2.56], + [5073,2.42], + [5075,2.46], + [5077,2.25], + [5079,2.31], + [5081,2.33], + [5083,2.56], + [5085,2.7], + [5087,2.56], + [5089,2.43], + [5091,2.49], + [5093,2.48], + [5095,2.21], + [5097,2.31], + [5099,2.42], + [5101,2.49], + [5103,2.4], + [5105,2.74], + [5107,2.47], + [5109,2.48], + [5111,2.5], + [5113,2.49], + [5115,2.59], + [5117,2.09], + [5119,2.49], + [5121,2.33], + [5123,2.49], + [5125,2.65], + [5127,2.65], + [5129,2.35], + [5131,2.5], + [5133,2.85], + [5135,2.31], + [5137,2.51], + [5139,2.44], + [5141,2.41], + [5143,2.56], + [5145,2.56], + [5147,2.31], + [5149,2.81], + [6001,2.81], + [6003,3.84], + [6005,2.37], + [6007,2.54], + [6009,2.5], + [6011,3.02], + [6013,2.86], + [6015,2.5], + [6017,2.69], + [6019,3.16], + [6021,2.78], + [6023,2.43], + [6025,3.77], + [6027,2.19], + [6029,3.2], + [6031,3.18], + [6033,2.4], + [6035,2.28], + [6037,3.01], + [6039,3.29], + [6041,2.42], + [6043,2.23], + [6045,2.5], + [6047,3.3], + [6049,2.34], + [6051,2.8], + [6053,3.3], + [6055,2.79], + [6057,2.42], + [6059,3.04], + [6061,2.68], + [6063,2.21], + [6065,3.26], + [6067,2.76], + [6069,3.35], + [6071,3.31], + [6073,2.87], + [6075,2.35], + [6077,3.17], + [6079,2.51], + [6081,2.88], + [6083,2.94], + [6085,2.98], + [6087,2.73], + [6089,2.49], + [6091,2.36], + [6093,2.26], + [6095,2.88], + [6097,2.59], + [6099,3.1], + [6101,2.94], + [6103,2.63], + [6105,2.33], + [6107,3.35], + [6109,2.27], + [6111,3.09], + [6113,2.81], + [6115,2.83], + [8001,2.98], + [8003,2.52], + [8005,2.64], + [8007,2.24], + [8009,2.17], + [8011,2.18], + [8013,2.44], + [8014,2.47], + [8015,2.23], + [8017,2.69], + [8019,2.09], + [8021,2.7], + [8023,2.31], + [8025,3.52], + [8027,2.15], + [8029,2.4], + [8031,2.31], + [8033,2.46], + [8035,2.81], + [8037,3.02], + [8039,2.76], + [8041,2.63], + [8043,2.14], + [8045,2.71], + [8047,2.19], + [8049,2.53], + [8051,2.36], + [8053,2.22], + [8055,1.99], + [8057,2.28], + [8059,2.44], + [8061,2.32], + [8063,2.37], + [8065,2.21], + [8067,2.41], + [8069,2.46], + [8071,2.11], + [8073,2.38], + [8075,2.55], + [8077,2.4], + [8079,2.01], + [8081,2.53], + [8083,2.43], + [8085,2.38], + [8087,2.62], + [8089,2.38], + [8091,2.11], + [8093,2.27], + [8095,2.51], + [8097,2.4], + [8099,2.38], + [8101,2.5], + [8103,2.57], + [8105,2.36], + [8107,2.53], + [8109,2.41], + [8111,2.23], + [8113,2.36], + [8115,2.32], + [8117,3.1], + [8119,2.34], + [8121,2.25], + [8123,2.8], + [8125,2.47], + [9001,2.75], + [9003,2.5], + [9005,2.43], + [9007,2.38], + [9009,2.55], + [9011,2.41], + [9013,2.47], + [9015,2.5], + [10001,2.65], + [10003,2.65], + [10005,2.46], + [11001,2.28], + [12001,2.5], + [12003,3.02], + [12005,2.59], + [12007,2.61], + [12009,2.47], + [12011,2.77], + [12013,2.72], + [12015,2.26], + [12017,2.22], + [12019,2.81], + [12021,2.55], + [12023,2.57], + [12027,2.73], + [12029,2.3], + [12031,2.57], + [12033,2.47], + [12035,2.65], + [12037,2.3], + [12039,2.44], + [12041,2.48], + [12043,2.74], + [12045,2.58], + [12047,2.39], + [12049,3.26], + [12051,3.07], + [12053,2.45], + [12055,2.38], + [12057,2.63], + [12059,2.51], + [12061,2.53], + [12063,2.39], + [12065,2.03], + [12067,3.24], + [12069,2.53], + [12071,2.61], + [12073,2.42], + [12075,2.49], + [12077,2.96], + [12079,2.44], + [12081,2.56], + [12083,2.48], + [12085,2.39], + [12086,3.09], + [12087,2.47], + [12089,2.55], + [12091,2.51], + [12093,2.79], + [12095,2.78], + [12097,3.36], + [12099,2.59], + [12101,2.51], + [12103,2.29], + [12105,2.82], + [12107,2.54], + [12109,2.68], + [12111,2.69], + [12113,2.65], + [12115,2.24], + [12117,2.76], + [12119,2.05], + [12121,2.76], + [12123,2.48], + [12125,2.53], + [12127,2.42], + [12129,2.53], + [12131,2.41], + [12133,2.57], + [13001,2.68], + [13003,2.92], + [13005,2.67], + [13007,2.46], + [13009,2.54], + [13011,2.83], + [13013,3.04], + [13015,2.74], + [13017,2.66], + [13019,2.6], + [13021,2.57], + [13023,2.72], + [13025,2.75], + [13027,2.45], + [13029,2.81], + [13031,2.49], + [13033,2.78], + [13035,2.6], + [13037,2.49], + [13039,2.68], + [13043,2.62], + [13045,2.71], + [13047,2.64], + [13049,3.34], + [13051,2.54], + [13053,3.05], + [13055,2.5], + [13057,2.82], + [13059,2.44], + [13061,2.57], + [13063,2.94], + [13065,2.45], + [13067,2.66], + [13069,2.73], + [13071,2.89], + [13073,3.13], + [13075,2.81], + [13077,2.72], + [13079,2.59], + [13081,2.72], + [13083,2.46], + [13085,2.71], + [13087,2.5], + [13089,2.64], + [13091,2.42], + [13093,2.37], + [13095,2.51], + [13097,2.87], + [13099,2.54], + [13101,2.67], + [13103,2.9], + [13105,2.46], + [13107,2.59], + [13109,2.55], + [13111,2.39], + [13113,2.77], + [13115,2.6], + [13117,2.99], + [13119,2.61], + [13121,2.49], + [13123,2.56], + [13125,2.71], + [13127,2.47], + [13129,2.8], + [13131,2.74], + [13133,2.43], + [13135,3.12], + [13137,2.74], + [13139,3.03], + [13141,2.03], + [13143,2.57], + [13145,2.7], + [13147,2.51], + [13149,2.62], + [13151,2.98], + [13153,2.69], + [13155,2.7], + [13157,2.9], + [13159,2.67], + [13161,2.85], + [13163,2.66], + [13165,2.62], + [13167,2.92], + [13169,2.7], + [13171,2.72], + [13173,2.69], + [13175,2.66], + [13177,2.74], + [13179,2.6], + [13181,2.23], + [13183,3.28], + [13185,2.73], + [13187,2.64], + [13189,2.6], + [13191,2.44], + [13193,2.55], + [13195,2.68], + [13197,2.6], + [13199,2.57], + [13201,2.45], + [13205,2.55], + [13207,2.67], + [13209,2.66], + [13211,2.66], + [13213,2.77], + [13215,2.6], + [13217,2.89], + [13219,2.82], + [13221,2.57], + [13223,2.95], + [13225,2.46], + [13227,2.64], + [13229,2.72], + [13231,2.96], + [13233,2.75], + [13235,2.53], + [13237,2.45], + [13239,2.19], + [13241,2.45], + [13243,2.45], + [13245,2.66], + [13247,2.93], + [13249,2.68], + [13251,2.59], + [13253,2.52], + [13255,2.68], + [13257,2.64], + [13259,2.23], + [13261,2.41], + [13263,2.29], + [13265,2.59], + [13267,2.38], + [13269,2.27], + [13271,2.52], + [13273,2.63], + [13275,2.55], + [13277,2.57], + [13279,2.54], + [13281,2.25], + [13283,2.39], + [13285,2.75], + [13287,2.47], + [13289,2.8], + [13291,2.47], + [13293,2.5], + [13295,2.63], + [13297,2.88], + [13299,2.39], + [13301,2.34], + [13303,2.54], + [13305,2.67], + [13307,2.4], + [13309,3.1], + [13311,2.5], + [13313,2.9], + [13315,2.55], + [13317,2.47], + [13319,2.75], + [13321,2.61], + [15001,2.88], + [15003,3.06], + [15005,1.4], + [15007,3.12], + [15009,2.97], + [16001,2.6], + [16003,2.23], + [16005,2.66], + [16007,2.55], + [16009,2.56], + [16011,3.03], + [16013,2.56], + [16015,2.3], + [16017,2.36], + [16019,2.83], + [16021,2.5], + [16023,2.45], + [16025,2.39], + [16027,2.94], + [16029,2.67], + [16031,2.95], + [16033,3.31], + [16035,2.02], + [16037,2.18], + [16039,2.54], + [16041,3.05], + [16043,2.81], + [16045,2.61], + [16047,2.71], + [16049,2.4], + [16051,3.23], + [16053,2.95], + [16055,2.52], + [16057,2.29], + [16059,2.04], + [16061,2.32], + [16063,3.26], + [16065,3.54], + [16067,2.77], + [16069,2.39], + [16071,2.69], + [16073,2.68], + [16075,2.65], + [16077,2.99], + [16079,2.17], + [16081,2.86], + [16083,2.69], + [16085,2.81], + [16087,2.48], + [17001,2.38], + [17003,2.7], + [17005,2.49], + [17007,2.85], + [17009,2.33], + [17011,2.4], + [17013,2.54], + [17015,2.2], + [17017,2.46], + [17019,2.36], + [17021,2.27], + [17023,2.31], + [17025,2.32], + [17027,2.49], + [17029,2.31], + [17031,2.63], + [17033,2.25], + [17035,2.51], + [17037,2.66], + [17039,2.37], + [17041,2.59], + [17043,2.7], + [17045,2.25], + [17047,2.32], + [17049,2.5], + [17051,2.63], + [17053,2.3], + [17055,2.38], + [17057,2.35], + [17059,2.3], + [17061,2.56], + [17063,2.63], + [17065,2.39], + [17067,2.39], + [17069,2.8], + [17071,2.28], + [17073,2.45], + [17075,2.36], + [17077,2.28], + [17079,2.56], + [17081,2.35], + [17083,2.4], + [17085,2.23], + [17087,2.37], + [17089,2.98], + [17091,2.62], + [17093,3.07], + [17095,2.25], + [17097,2.81], + [17099,2.43], + [17101,2.23], + [17103,2.34], + [17105,2.38], + [17107,2.28], + [17109,2.43], + [17111,2.76], + [17113,2.51], + [17115,2.34], + [17117,2.41], + [17119,2.43], + [17121,2.35], + [17123,2.38], + [17125,2.27], + [17127,2.34], + [17129,2.35], + [17131,2.35], + [17133,2.53], + [17135,2.24], + [17137,2.21], + [17139,2.45], + [17141,2.45], + [17143,2.43], + [17145,2.29], + [17147,2.45], + [17149,2.32], + [17151,2.5], + [17153,2.52], + [17155,2.36], + [17157,2.38], + [17159,2.42], + [17161,2.35], + [17163,2.53], + [17165,2.41], + [17167,2.32], + [17169,2.22], + [17171,2.4], + [17173,2.36], + [17175,2.34], + [17177,2.3], + [17179,2.41], + [17181,2.51], + [17183,2.44], + [17185,2.34], + [17187,2.38], + [17189,2.37], + [17191,2.32], + [17193,2.25], + [17195,2.38], + [17197,2.99], + [17199,2.43], + [17201,2.47], + [17203,2.6], + [18001,2.77], + [18003,2.54], + [18005,2.54], + [18007,2.52], + [18009,2.32], + [18011,2.57], + [18013,2.47], + [18015,2.54], + [18017,2.5], + [18019,2.59], + [18021,2.43], + [18023,2.66], + [18025,2.62], + [18027,2.8], + [18029,2.62], + [18031,2.52], + [18033,2.58], + [18035,2.35], + [18037,2.51], + [18039,2.78], + [18041,2.44], + [18043,2.59], + [18045,2.35], + [18047,2.56], + [18049,2.53], + [18051,2.46], + [18053,2.39], + [18055,2.54], + [18057,2.7], + [18059,2.62], + [18061,2.66], + [18063,2.72], + [18065,2.5], + [18067,2.36], + [18069,2.4], + [18071,2.6], + [18073,2.66], + [18075,2.54], + [18077,2.34], + [18079,2.56], + [18081,2.68], + [18083,2.36], + [18085,2.55], + [18087,3.18], + [18089,2.6], + [18091,2.38], + [18093,2.44], + [18095,2.39], + [18097,2.51], + [18099,2.67], + [18101,2.35], + [18103,2.51], + [18105,2.35], + [18107,2.47], + [18109,2.66], + [18111,2.5], + [18113,2.56], + [18115,2.36], + [18117,2.47], + [18119,2.43], + [18121,2.55], + [18123,2.35], + [18125,2.4], + [18127,2.58], + [18129,2.5], + [18131,2.38], + [18133,2.44], + [18135,2.36], + [18137,2.5], + [18139,2.48], + [18141,2.55], + [18143,2.63], + [18145,2.48], + [18147,2.51], + [18149,2.61], + [18151,2.4], + [18153,2.47], + [18155,2.47], + [18157,2.47], + [18159,2.37], + [18161,2.5], + [18163,2.34], + [18165,2.36], + [18167,2.4], + [18169,2.32], + [18171,2.41], + [18173,2.56], + [18175,2.6], + [18177,2.44], + [18179,2.49], + [18181,2.47], + [18183,2.45], + [19001,2.19], + [19003,2.2], + [19005,2.25], + [19007,2.29], + [19009,2.08], + [19011,2.48], + [19013,2.41], + [19015,2.32], + [19017,2.45], + [19019,2.53], + [19021,2.56], + [19023,2.32], + [19025,2.13], + [19027,2.31], + [19029,2.15], + [19031,2.39], + [19033,2.18], + [19035,2.13], + [19037,2.25], + [19039,2.35], + [19041,2.21], + [19043,2.28], + [19045,2.35], + [19047,2.6], + [19049,2.56], + [19051,2.68], + [19053,2.31], + [19055,2.47], + [19057,2.34], + [19059,2.08], + [19061,2.42], + [19063,2.13], + [19065,2.33], + [19067,2.25], + [19069,2.4], + [19071,2.28], + [19073,2.28], + [19075,2.37], + [19077,2.39], + [19079,2.35], + [19081,2.24], + [19083,2.28], + [19085,2.29], + [19087,2.37], + [19089,2.34], + [19091,2.24], + [19093,2.25], + [19095,2.35], + [19097,2.28], + [19099,2.41], + [19101,2.4], + [19103,2.37], + [19105,2.32], + [19107,2.25], + [19109,2.23], + [19111,2.38], + [19113,2.42], + [19115,2.54], + [19117,2.29], + [19119,2.58], + [19121,2.44], + [19123,2.41], + [19125,2.4], + [19127,2.54], + [19129,2.56], + [19131,2.42], + [19133,2.13], + [19135,2.32], + [19137,2.17], + [19139,2.58], + [19141,2.22], + [19143,2.31], + [19145,2.24], + [19147,2.29], + [19149,2.45], + [19151,2.14], + [19153,2.53], + [19155,2.46], + [19157,2.2], + [19159,2.31], + [19161,2.23], + [19163,2.51], + [19165,2.28], + [19167,2.67], + [19169,2.32], + [19171,2.52], + [19173,2.27], + [19175,2.3], + [19177,2.51], + [19179,2.37], + [19181,2.51], + [19183,2.51], + [19185,2.39], + [19187,2.26], + [19189,2.17], + [19191,2.24], + [19193,2.55], + [19195,2.33], + [19197,2.26], + [20001,2.32], + [20003,2.41], + [20005,2.52], + [20007,2.47], + [20009,2.36], + [20011,2.55], + [20013,2.41], + [20015,2.61], + [20017,2.35], + [20019,2.35], + [20021,2.54], + [20023,2.12], + [20025,2.23], + [20027,2.36], + [20029,2.26], + [20031,2.28], + [20033,2.3], + [20035,2.45], + [20037,2.49], + [20039,1.95], + [20041,2.42], + [20043,2.34], + [20045,2.43], + [20047,2.23], + [20049,2.19], + [20051,2.38], + [20053,2.17], + [20055,2.89], + [20057,3], + [20059,2.53], + [20061,2.69], + [20063,2.17], + [20065,2.03], + [20067,2.91], + [20069,2.76], + [20071,2.39], + [20073,2.22], + [20075,3.03], + [20077,2.37], + [20079,2.49], + [20081,3.04], + [20083,2.34], + [20085,2.49], + [20087,2.42], + [20089,2.11], + [20091,2.56], + [20093,3.11], + [20095,2.36], + [20097,2.33], + [20099,2.47], + [20101,2.05], + [20103,2.69], + [20105,2.4], + [20107,2.15], + [20109,2.36], + [20111,2.36], + [20113,2.28], + [20115,2.33], + [20117,2.3], + [20119,2.49], + [20121,2.53], + [20123,2.19], + [20125,2.39], + [20127,2.38], + [20129,2.55], + [20131,2.37], + [20133,2.42], + [20135,2.22], + [20137,2.47], + [20139,2.38], + [20141,2.09], + [20143,2.41], + [20145,2.19], + [20147,2.3], + [20149,2.69], + [20151,2.48], + [20153,2.12], + [20155,2.42], + [20157,2], + [20159,2.35], + [20161,2.46], + [20163,2.31], + [20165,2.13], + [20167,2.17], + [20169,2.41], + [20171,2.33], + [20173,2.58], + [20175,2.96], + [20177,2.42], + [20179,2.16], + [20181,2.15], + [20183,2.18], + [20185,2.29], + [20187,2.61], + [20189,2.88], + [20191,2.49], + [20193,2.3], + [20195,2.03], + [20197,2.5], + [20199,2.64], + [20201,2.32], + [20203,2.39], + [20205,2.25], + [20207,2.08], + [20209,2.73], + [21001,2.54], + [21003,2.65], + [21005,2.54], + [21007,2.49], + [21009,2.52], + [21011,2.68], + [21013,2.39], + [21015,2.75], + [21017,2.44], + [21019,2.43], + [21021,2.48], + [21023,2.42], + [21025,2.42], + [21027,2.64], + [21029,2.7], + [21031,2.47], + [21033,2.37], + [21035,2.37], + [21037,2.46], + [21039,2.43], + [21041,2.61], + [21043,2.55], + [21045,2.41], + [21047,2.61], + [21049,2.49], + [21051,2.49], + [21053,2.5], + [21055,2.41], + [21057,2.46], + [21059,2.43], + [21061,2.39], + [21063,2.39], + [21065,2.53], + [21067,2.37], + [21069,2.48], + [21071,2.42], + [21073,2.32], + [21075,2.37], + [21077,2.84], + [21079,2.47], + [21081,2.82], + [21083,2.56], + [21085,2.69], + [21087,2.44], + [21089,2.53], + [21091,2.54], + [21093,2.56], + [21095,2.39], + [21097,2.57], + [21099,2.49], + [21101,2.4], + [21103,2.55], + [21105,2.38], + [21107,2.43], + [21109,2.44], + [21111,2.42], + [21113,2.69], + [21115,2.57], + [21117,2.57], + [21119,2.43], + [21121,2.5], + [21123,2.53], + [21125,2.57], + [21127,2.52], + [21129,2.14], + [21131,2.42], + [21133,2.26], + [21135,2.44], + [21137,2.47], + [21139,2.3], + [21141,2.46], + [21143,2.04], + [21145,2.32], + [21147,2.49], + [21149,2.42], + [21151,2.48], + [21153,2.5], + [21155,2.51], + [21157,2.33], + [21159,2.49], + [21161,2.51], + [21163,2.62], + [21165,2.48], + [21167,2.46], + [21169,2.5], + [21171,2.4], + [21173,2.61], + [21175,2.36], + [21177,2.63], + [21179,2.57], + [21181,2.52], + [21183,2.62], + [21185,2.96], + [21187,2.69], + [21189,2.61], + [21191,2.73], + [21193,2.42], + [21195,2.34], + [21197,2.48], + [21199,2.44], + [21201,2.24], + [21203,2.52], + [21205,2.45], + [21207,2.43], + [21209,2.58], + [21211,2.7], + [21213,2.54], + [21215,2.68], + [21217,2.51], + [21219,2.64], + [21221,2.37], + [21223,2.4], + [21225,2.4], + [21227,2.51], + [21229,2.57], + [21231,2.55], + [21233,2.51], + [21235,2.72], + [21237,2.5], + [21239,2.53], + [22001,2.71], + [22003,2.71], + [22005,2.82], + [22007,2.6], + [22009,2.5], + [22011,2.72], + [22013,2.31], + [22015,2.54], + [22017,2.53], + [22019,2.53], + [22021,2.56], + [22023,2.53], + [22025,2.41], + [22027,2.39], + [22029,2.44], + [22031,2.61], + [22033,2.61], + [22035,2.06], + [22037,2.34], + [22039,2.7], + [22041,2.48], + [22043,2.6], + [22045,2.74], + [22047,2.65], + [22049,2.44], + [22051,2.57], + [22053,2.7], + [22055,2.6], + [22057,2.66], + [22059,2.68], + [22061,2.54], + [22063,2.8], + [22065,2.43], + [22067,2.52], + [22069,2.63], + [22071,2.42], + [22073,2.61], + [22075,2.63], + [22077,2.51], + [22079,2.66], + [22081,2.55], + [22083,2.62], + [22085,2.59], + [22087,3.02], + [22089,2.75], + [22091,2.6], + [22093,2.7], + [22095,2.78], + [22097,2.7], + [22099,2.74], + [22101,2.58], + [22103,2.7], + [22105,2.63], + [22107,2.46], + [22109,2.78], + [22111,2.77], + [22113,2.73], + [22115,2.79], + [22117,2.54], + [22119,2.46], + [22121,2.62], + [22123,2.55], + [22125,3.03], + [22127,2.37], + [23001,2.3], + [23003,2.23], + [23005,2.36], + [23007,2.51], + [23009,2.23], + [23011,2.3], + [23013,2.26], + [23015,2.19], + [23017,2.72], + [23019,2.35], + [23021,2.23], + [23023,2.21], + [23025,2.35], + [23027,2.27], + [23029,2.2], + [23031,2.38], + [24001,2.34], + [24003,2.67], + [24005,2.58], + [24009,2.87], + [24011,2.69], + [24013,2.71], + [24015,2.72], + [24017,2.79], + [24019,2.46], + [24021,2.68], + [24023,2.43], + [24025,2.67], + [24027,2.79], + [24029,2.37], + [24031,2.79], + [24033,2.89], + [24035,2.7], + [24037,2.75], + [24039,2.36], + [24041,2.25], + [24043,2.51], + [24045,2.62], + [24047,2.4], + [24510,2.48], + [25001,2.22], + [25003,2.19], + [25005,2.51], + [25007,2.77], + [25009,2.6], + [25011,2.27], + [25013,2.54], + [25015,2.35], + [25017,2.57], + [25019,2.83], + [25021,2.58], + [25023,2.7], + [25025,2.41], + [25027,2.58], + [26001,2.06], + [26003,2.53], + [26005,2.65], + [26007,2.2], + [26009,2.35], + [26011,2.26], + [26013,2.23], + [26015,2.5], + [26017,2.36], + [26019,2.48], + [26021,2.38], + [26023,2.51], + [26025,2.43], + [26027,2.46], + [26029,2.3], + [26031,2.22], + [26033,2.42], + [26035,2.37], + [26037,2.63], + [26039,2.26], + [26041,2.25], + [26043,2.24], + [26045,2.41], + [26047,2.24], + [26049,2.43], + [26051,2.28], + [26053,2.11], + [26055,2.42], + [26057,2.41], + [26059,2.47], + [26061,2.58], + [26063,2.25], + [26065,2.39], + [26067,2.66], + [26069,2.18], + [26071,2.06], + [26073,2.57], + [26075,2.43], + [26077,2.45], + [26079,2.45], + [26081,2.64], + [26083,2.09], + [26085,2.48], + [26087,2.6], + [26089,2.35], + [26091,2.45], + [26093,2.62], + [26095,2.37], + [26097,2.06], + [26099,2.5], + [26101,2.34], + [26103,2.39], + [26105,2.32], + [26107,2.57], + [26109,2.17], + [26111,2.42], + [26113,2.49], + [26115,2.53], + [26117,2.56], + [26119,2.24], + [26121,2.55], + [26123,2.51], + [26125,2.46], + [26127,2.52], + [26129,2.22], + [26131,2.03], + [26133,2.53], + [26135,2.21], + [26137,2.41], + [26139,2.72], + [26141,2.13], + [26143,2.13], + [26145,2.39], + [26147,2.45], + [26149,2.52], + [26151,2.39], + [26153,2.43], + [26155,2.46], + [26157,2.42], + [26159,2.53], + [26161,2.46], + [26163,2.59], + [26165,2.49], + [27001,2.02], + [27003,2.71], + [27005,2.45], + [27007,2.55], + [27009,2.4], + [27011,2.16], + [27013,2.42], + [27015,2.26], + [27017,2.49], + [27019,2.77], + [27021,2.19], + [27023,2.35], + [27025,2.64], + [27027,2.48], + [27029,2.54], + [27031,1.92], + [27033,2.3], + [27035,2.38], + [27037,2.59], + [27039,2.64], + [27041,2.25], + [27043,2.19], + [27045,2.37], + [27047,2.32], + [27049,2.34], + [27051,2.3], + [27053,2.4], + [27055,2.27], + [27057,2.35], + [27059,2.61], + [27061,2.27], + [27063,2.29], + [27065,2.47], + [27067,2.47], + [27069,2.21], + [27071,2.21], + [27073,2.11], + [27075,2.03], + [27077,2.47], + [27079,2.53], + [27081,2.23], + [27083,2.44], + [27085,2.4], + [27087,2.8], + [27089,2.35], + [27091,2.27], + [27093,2.48], + [27095,2.48], + [27097,2.43], + [27099,2.49], + [27101,2.22], + [27103,2.41], + [27105,2.71], + [27107,2.36], + [27109,2.49], + [27111,2.33], + [27113,2.37], + [27115,2.54], + [27117,2.25], + [27119,2.4], + [27121,2.19], + [27123,2.51], + [27125,2.32], + [27127,2.38], + [27129,2.32], + [27131,2.49], + [27133,2.3], + [27135,2.5], + [27137,2.23], + [27139,2.92], + [27141,2.88], + [27143,2.45], + [27145,2.51], + [27147,2.5], + [27149,2.58], + [27151,2.2], + [27153,2.46], + [27155,2.07], + [27157,2.39], + [27159,2.31], + [27161,2.4], + [27163,2.69], + [27165,2.49], + [27167,2.18], + [27169,2.44], + [27171,2.79], + [27173,2.32], + [28001,2.53], + [28003,2.5], + [28005,2.5], + [28007,2.56], + [28009,2.78], + [28011,2.57], + [28013,2.46], + [28015,2.8], + [28017,2.63], + [28019,2.57], + [28021,2.66], + [28023,2.52], + [28025,2.57], + [28027,2.63], + [28029,2.83], + [28031,2.74], + [28033,2.82], + [28035,2.56], + [28037,2.48], + [28039,3.19], + [28041,2.51], + [28043,2.66], + [28045,2.4], + [28047,2.52], + [28049,2.63], + [28051,2.8], + [28053,2.75], + [28055,2.38], + [28057,2.54], + [28059,2.75], + [28061,2.42], + [28063,2.86], + [28065,2.4], + [28067,2.7], + [28069,2.46], + [28071,2.41], + [28073,2.73], + [28075,2.51], + [28077,2.63], + [28079,2.7], + [28081,2.58], + [28083,2.74], + [28085,2.64], + [28087,2.56], + [28089,2.61], + [28091,2.56], + [28093,2.6], + [28095,2.53], + [28097,2.25], + [28099,2.69], + [28101,2.58], + [28103,2.68], + [28105,2.54], + [28107,2.73], + [28109,2.58], + [28111,2.66], + [28113,2.59], + [28115,2.84], + [28117,2.55], + [28119,2.4], + [28121,2.61], + [28123,2.79], + [28125,2.48], + [28127,2.85], + [28129,2.74], + [28131,2.89], + [28133,2.7], + [28135,2.48], + [28137,2.65], + [28139,2.64], + [28141,2.53], + [28143,2.55], + [28145,2.81], + [28147,2.46], + [28149,2.53], + [28151,2.6], + [28153,2.61], + [28155,2.55], + [28157,2.79], + [28159,2.43], + [28161,2.35], + [28163,2.71], + [29001,2.36], + [29003,2.5], + [29005,2.1], + [29007,2.51], + [29009,2.68], + [29011,2.39], + [29013,2.4], + [29015,2.34], + [29017,2.53], + [29019,2.4], + [29021,2.56], + [29023,2.53], + [29025,2.36], + [29027,2.54], + [29029,2.71], + [29031,2.52], + [29033,2.43], + [29035,2.58], + [29037,2.61], + [29039,2.33], + [29041,2.59], + [29043,2.68], + [29045,2.32], + [29047,2.6], + [29049,2.45], + [29051,2.43], + [29053,2.5], + [29055,2.58], + [29057,2.39], + [29059,2.64], + [29061,2.63], + [29063,2.34], + [29065,2.52], + [29067,2.56], + [29069,2.37], + [29071,2.5], + [29073,2.36], + [29075,2.42], + [29077,2.3], + [29079,2.43], + [29081,2.36], + [29083,2.32], + [29085,2.33], + [29087,2.08], + [29089,2.53], + [29091,2.44], + [29093,2.44], + [29095,2.42], + [29097,2.52], + [29099,2.63], + [29101,2.48], + [29103,2.43], + [29105,2.54], + [29107,2.42], + [29109,2.56], + [29111,2.47], + [29113,2.89], + [29115,2.42], + [29117,2.35], + [29119,2.77], + [29121,2.5], + [29123,2.47], + [29125,2.42], + [29127,2.4], + [29129,2.59], + [29131,2.59], + [29133,2.37], + [29135,2.71], + [29137,2.36], + [29139,2.32], + [29141,2.54], + [29143,2.42], + [29145,2.58], + [29147,2.3], + [29149,2.43], + [29151,2.61], + [29153,2.26], + [29155,2.49], + [29157,2.5], + [29159,2.58], + [29161,2.41], + [29163,2.4], + [29165,2.52], + [29167,2.55], + [29169,2.83], + [29171,2.44], + [29173,2.53], + [29175,2.72], + [29177,2.6], + [29179,2.34], + [29181,2.55], + [29183,2.65], + [29185,2.21], + [29186,2.45], + [29187,2.4], + [29189,2.44], + [29195,2.47], + [29197,2.64], + [29199,2.56], + [29201,2.51], + [29203,2.58], + [29205,2.38], + [29207,2.48], + [29209,2.41], + [29211,2.73], + [29213,2.37], + [29215,2.62], + [29217,2.44], + [29219,2.76], + [29221,2.64], + [29223,2.41], + [29225,2.75], + [29227,2.25], + [29229,2.42], + [29510,2.18], + [30001,2.23], + [30003,3.54], + [30005,2.82], + [30007,2.37], + [30009,2.27], + [30011,2.29], + [30013,2.3], + [30015,2.5], + [30017,2.35], + [30019,2.01], + [30021,2.19], + [30023,2.03], + [30025,2.3], + [30027,2.19], + [30029,2.5], + [30031,2.38], + [30033,2.4], + [30035,3.07], + [30037,2.3], + [30039,2.4], + [30041,2.58], + [30043,2.52], + [30045,2.12], + [30047,2.45], + [30049,2.34], + [30051,2.54], + [30053,2.31], + [30055,2.37], + [30057,2.18], + [30059,2.54], + [30061,2.43], + [30063,2.31], + [30065,2.28], + [30067,2.09], + [30069,2.2], + [30071,2.27], + [30073,2.61], + [30075,2.05], + [30077,2.18], + [30079,2.37], + [30081,2.42], + [30083,2.51], + [30085,3.42], + [30087,2.87], + [30089,2.24], + [30091,2.1], + [30093,2.19], + [30095,2.42], + [30097,2.37], + [30099,2.43], + [30101,2.28], + [30103,2.16], + [30105,2.16], + [30107,2.52], + [30109,2.21], + [30111,2.39], + [31001,2.35], + [31003,2.3], + [31005,2.38], + [31007,2.43], + [31009,2.16], + [31011,2.31], + [31013,2.39], + [31015,2.23], + [31017,2.04], + [31019,2.46], + [31021,2.23], + [31023,2.33], + [31025,2.55], + [31027,2.4], + [31029,2.23], + [31031,2.14], + [31033,2.25], + [31035,2.36], + [31037,2.86], + [31039,2.35], + [31041,2.23], + [31043,2.73], + [31045,2.22], + [31047,2.65], + [31049,2.26], + [31051,2.46], + [31053,2.36], + [31055,2.51], + [31057,2.25], + [31059,2.2], + [31061,2.15], + [31063,2.24], + [31065,2.18], + [31067,2.27], + [31069,2.08], + [31071,2.14], + [31073,2.24], + [31075,2.34], + [31077,2.37], + [31079,2.64], + [31081,2.42], + [31083,2.15], + [31085,2.26], + [31087,2.22], + [31089,2.21], + [31091,1.96], + [31093,2.4], + [31095,2.16], + [31097,2.14], + [31099,2.36], + [31101,2.02], + [31103,2.16], + [31105,2.35], + [31107,2.26], + [31109,2.42], + [31111,2.31], + [31113,2.51], + [31115,2.19], + [31117,2.23], + [31119,2.39], + [31121,2.34], + [31123,2.35], + [31125,2.2], + [31127,2.31], + [31129,2.13], + [31131,2.43], + [31133,2.15], + [31135,2.3], + [31137,2.3], + [31139,2.36], + [31141,2.51], + [31143,2.53], + [31145,2.28], + [31147,2.08], + [31149,2.02], + [31151,2.62], + [31153,2.73], + [31155,2.54], + [31157,2.48], + [31159,2.4], + [31161,2.22], + [31163,2.17], + [31165,2.17], + [31167,2.54], + [31169,2.13], + [31171,2.19], + [31173,3.27], + [31175,2.16], + [31177,2.47], + [31179,2.25], + [31181,2.35], + [31183,2.24], + [31185,2.29], + [32001,2.41], + [32003,2.79], + [32005,2.32], + [32007,2.88], + [32009,2.22], + [32011,2.25], + [32013,2.69], + [32015,2.67], + [32017,2.43], + [32019,2.59], + [32021,2.36], + [32023,2.37], + [32027,2.33], + [32029,2.31], + [32031,2.53], + [32033,2.5], + [32510,2.36], + [33001,2.42], + [33003,2.21], + [33005,2.34], + [33007,2.16], + [33009,2.37], + [33011,2.52], + [33013,2.47], + [33015,2.5], + [33017,2.43], + [33019,2.38], + [34001,2.65], + [34003,2.74], + [34005,2.66], + [34007,2.7], + [34009,2.3], + [34011,2.81], + [34013,2.78], + [34015,2.74], + [34017,2.66], + [34019,2.59], + [34021,2.75], + [34023,2.84], + [34025,2.67], + [34027,2.72], + [34029,2.61], + [34031,3.09], + [34033,2.59], + [34035,2.84], + [34037,2.64], + [34039,2.93], + [34041,2.54], + [35001,2.53], + [35003,2.36], + [35005,2.72], + [35006,2.77], + [35007,2.15], + [35009,2.67], + [35011,2.99], + [35013,2.72], + [35015,2.64], + [35017,2.33], + [35019,2.98], + [35021,2.69], + [35023,2.47], + [35025,3.04], + [35027,2.45], + [35028,2.38], + [35029,2.63], + [35031,3.65], + [35033,3.04], + [35035,2.61], + [35037,2.72], + [35039,3.02], + [35041,2.54], + [35043,2.8], + [35045,3.01], + [35047,2.41], + [35049,2.34], + [35051,2.04], + [35053,3.53], + [35055,2.55], + [35057,2.66], + [35059,2.53], + [35061,2.76], + [36001,2.32], + [36003,2.34], + [36005,2.85], + [36007,2.36], + [36009,2.38], + [36011,2.36], + [36013,2.35], + [36015,2.37], + [36017,2.36], + [36019,2.32], + [36021,2.32], + [36023,2.5], + [36025,2.28], + [36027,2.58], + [36029,2.32], + [36031,2.32], + [36033,2.38], + [36035,2.34], + [36037,2.41], + [36039,2.6], + [36041,4.13], + [36043,2.45], + [36045,2.54], + [36047,2.75], + [36049,2.59], + [36051,2.38], + [36053,2.53], + [36055,2.4], + [36057,2.46], + [36059,3.02], + [36061,2.1], + [36063,2.37], + [36065,2.43], + [36067,2.41], + [36069,2.39], + [36071,2.9], + [36073,2.38], + [36075,2.51], + [36077,2.33], + [36079,2.82], + [36081,2.97], + [36083,2.39], + [36085,2.82], + [36087,3.18], + [36089,2.38], + [36091,2.39], + [36093,2.8], + [36095,2.41], + [36097,2.39], + [36099,2.34], + [36101,2.37], + [36103,3], + [36105,2.59], + [36107,2.44], + [36109,2.33], + [36111,2.42], + [36113,2.34], + [36115,2.46], + [36117,2.45], + [36119,2.74], + [36121,2.39], + [36123,2.55], + [37001,2.43], + [37003,2.61], + [37005,2.27], + [37007,2.46], + [37009,2.2], + [37011,2.17], + [37013,2.47], + [37015,2.32], + [37017,2.33], + [37019,2.29], + [37021,2.33], + [37023,2.49], + [37025,2.76], + [37027,2.51], + [37029,2.71], + [37031,2.25], + [37033,2.38], + [37035,2.55], + [37037,2.4], + [37039,2.41], + [37041,2.39], + [37043,2.12], + [37045,2.52], + [37047,2.39], + [37049,2.42], + [37051,2.55], + [37053,2.57], + [37055,2.31], + [37057,2.5], + [37059,2.6], + [37061,2.71], + [37063,2.37], + [37065,2.48], + [37067,2.47], + [37069,2.56], + [37071,2.62], + [37073,2.6], + [37075,2.57], + [37077,2.62], + [37079,2.56], + [37081,2.49], + [37083,2.4], + [37085,2.81], + [37087,2.26], + [37089,2.32], + [37091,2.41], + [37093,2.94], + [37095,2.63], + [37097,2.66], + [37099,2.35], + [37101,2.82], + [37103,2.33], + [37105,2.71], + [37107,2.43], + [37109,2.55], + [37111,2.44], + [37113,2.18], + [37115,2.42], + [37117,2.4], + [37119,2.58], + [37121,2.32], + [37123,2.43], + [37125,2.43], + [37127,2.5], + [37129,2.32], + [37131,2.22], + [37133,2.73], + [37135,2.52], + [37137,2.25], + [37139,2.54], + [37141,2.68], + [37143,2.28], + [37145,2.46], + [37147,2.47], + [37149,2.26], + [37151,2.54], + [37153,2.4], + [37155,2.84], + [37157,2.42], + [37159,2.6], + [37161,2.47], + [37163,2.68], + [37165,2.48], + [37167,2.46], + [37169,2.37], + [37171,2.44], + [37173,2.55], + [37175,2.27], + [37177,2.26], + [37179,2.98], + [37181,2.56], + [37183,2.62], + [37185,2.35], + [37187,2.33], + [37189,2.35], + [37191,2.55], + [37193,2.44], + [37195,2.49], + [37197,2.42], + [37199,2.33], + [38001,2.19], + [38003,2.03], + [38005,2.99], + [38007,2.37], + [38009,2.05], + [38011,2.2], + [38013,2.37], + [38015,2.29], + [38017,2.27], + [38019,2.08], + [38021,2.18], + [38023,2.16], + [38025,2.63], + [38027,2.12], + [38029,2.13], + [38031,2.15], + [38033,2.09], + [38035,2.2], + [38037,2.11], + [38039,2.1], + [38041,2.26], + [38043,2.33], + [38045,2.23], + [38047,2.1], + [38049,2.21], + [38051,1.94], + [38053,3.14], + [38055,2.19], + [38057,2.33], + [38059,2.22], + [38061,3.07], + [38063,1.94], + [38065,2.31], + [38067,2.13], + [38069,2.05], + [38071,2.24], + [38073,2.25], + [38075,2.46], + [38077,2.21], + [38079,3.06], + [38081,2.11], + [38083,2.05], + [38085,3.91], + [38087,2.18], + [38089,2.46], + [38091,2.09], + [38093,2.11], + [38095,2.16], + [38097,2.29], + [38099,2.17], + [38101,2.44], + [38103,2.01], + [38105,2.5], + [39001,2.54], + [39003,2.48], + [39005,2.49], + [39007,2.48], + [39009,2.48], + [39011,2.47], + [39013,2.41], + [39015,2.49], + [39017,2.67], + [39019,2.51], + [39021,2.5], + [39023,2.41], + [39025,2.63], + [39027,2.49], + [39029,2.42], + [39031,2.52], + [39033,2.34], + [39035,2.29], + [39037,2.46], + [39039,2.46], + [39041,2.81], + [39043,2.34], + [39045,2.68], + [39047,2.41], + [39049,2.47], + [39051,2.55], + [39053,2.55], + [39055,2.65], + [39057,2.41], + [39059,2.42], + [39061,2.34], + [39063,2.3], + [39065,2.56], + [39067,2.44], + [39069,2.44], + [39071,2.54], + [39073,2.47], + [39075,3.43], + [39077,2.52], + [39079,2.49], + [39081,2.35], + [39083,2.47], + [39085,2.38], + [39087,2.54], + [39089,2.59], + [39091,2.41], + [39093,2.5], + [39095,2.37], + [39097,2.59], + [39099,2.29], + [39101,2.42], + [39103,2.6], + [39105,2.48], + [39107,2.49], + [39109,2.52], + [39111,2.35], + [39113,2.3], + [39115,2.39], + [39117,2.71], + [39119,2.45], + [39121,2.39], + [39123,2.28], + [39125,2.49], + [39127,2.63], + [39129,2.69], + [39131,2.52], + [39133,2.49], + [39135,2.54], + [39137,2.56], + [39139,2.38], + [39141,2.49], + [39143,2.46], + [39145,2.43], + [39147,2.44], + [39149,2.6], + [39151,2.4], + [39153,2.39], + [39155,2.3], + [39157,2.5], + [39159,2.7], + [39161,2.43], + [39163,2.58], + [39165,2.69], + [39167,2.33], + [39169,2.59], + [39171,2.35], + [39173,2.44], + [39175,2.39], + [40001,2.83], + [40003,2.44], + [40005,2.32], + [40007,2.55], + [40009,2.8], + [40011,2.14], + [40013,2.6], + [40015,2.76], + [40017,2.98], + [40019,2.6], + [40021,2.84], + [40023,2.48], + [40025,2.22], + [40027,2.54], + [40029,2.5], + [40031,2.66], + [40033,2.59], + [40035,2.49], + [40037,2.65], + [40039,2.63], + [40041,2.5], + [40043,2.78], + [40045,2.49], + [40047,2.55], + [40049,2.62], + [40051,2.72], + [40053,2.32], + [40055,2.31], + [40057,2.24], + [40059,2.81], + [40061,2.61], + [40063,2.77], + [40065,2.5], + [40067,2.56], + [40069,2.53], + [40071,2.47], + [40073,2.7], + [40075,2.33], + [40077,2.55], + [40079,2.64], + [40081,2.66], + [40083,2.78], + [40085,3.13], + [40087,2.72], + [40089,2.51], + [40091,2.34], + [40093,2.52], + [40095,2.56], + [40097,2.57], + [40099,2.54], + [40101,2.52], + [40103,2.43], + [40105,2.52], + [40107,2.71], + [40109,2.55], + [40111,2.54], + [40113,2.51], + [40115,2.55], + [40117,2.61], + [40119,2.39], + [40121,2.38], + [40123,2.54], + [40125,2.64], + [40127,2.42], + [40129,2.75], + [40131,2.6], + [40133,2.66], + [40135,2.66], + [40137,2.53], + [40139,2.99], + [40141,2.4], + [40143,2.52], + [40145,2.7], + [40147,2.47], + [40149,2.52], + [40151,2.43], + [40153,2.72], + [41001,2.19], + [41003,2.38], + [41005,2.58], + [41007,2.33], + [41009,2.59], + [41011,2.34], + [41013,2.31], + [41015,2.13], + [41017,2.5], + [41019,2.36], + [41021,2.35], + [41023,2.21], + [41025,2.28], + [41027,2.57], + [41029,2.42], + [41031,2.87], + [41033,2.34], + [41035,2.39], + [41037,2.06], + [41039,2.39], + [41041,2.26], + [41043,2.59], + [41045,2.61], + [41047,2.76], + [41049,2.82], + [41051,2.42], + [41053,2.68], + [41055,2.08], + [41057,2.41], + [41059,2.67], + [41061,2.43], + [41063,2.15], + [41065,2.42], + [41067,2.66], + [41069,2.06], + [41071,2.7], + [42001,2.51], + [42003,2.23], + [42005,2.34], + [42007,2.35], + [42009,2.46], + [42011,2.61], + [42013,2.35], + [42015,2.44], + [42017,2.61], + [42019,2.38], + [42021,2.24], + [42023,2.12], + [42025,2.43], + [42027,2.48], + [42029,2.65], + [42031,2.35], + [42033,2.41], + [42035,2.55], + [42037,2.34], + [42039,2.38], + [42041,2.38], + [42043,2.39], + [42045,2.64], + [42047,2.26], + [42049,2.4], + [42051,2.38], + [42053,1.97], + [42055,2.51], + [42057,2.45], + [42059,2.34], + [42061,2.39], + [42063,2.37], + [42065,2.36], + [42067,2.58], + [42069,2.37], + [42071,2.64], + [42073,2.34], + [42075,2.55], + [42077,2.56], + [42079,2.38], + [42081,2.38], + [42083,2.27], + [42085,2.32], + [42087,2.42], + [42089,2.87], + [42091,2.55], + [42093,2.37], + [42095,2.55], + [42097,2.26], + [42099,2.52], + [42101,2.57], + [42103,2.59], + [42105,2.57], + [42107,2.33], + [42109,2.63], + [42111,2.36], + [42113,2.17], + [42115,2.38], + [42117,2.53], + [42119,2.42], + [42121,2.36], + [42123,2.32], + [42125,2.41], + [42127,2.49], + [42129,2.3], + [42131,2.5], + [42133,2.55], + [44001,2.33], + [44003,2.36], + [44005,2.24], + [44007,2.55], + [44009,2.41], + [45001,2.54], + [45003,2.48], + [45005,2.5], + [45007,2.51], + [45009,2.45], + [45011,2.55], + [45013,2.53], + [45015,2.75], + [45017,2.38], + [45019,2.44], + [45021,2.72], + [45023,2.6], + [45025,2.48], + [45027,2.4], + [45029,2.44], + [45031,2.47], + [45033,2.8], + [45035,2.77], + [45037,2.63], + [45039,2.53], + [45041,2.6], + [45043,2.43], + [45045,2.58], + [45047,2.5], + [45049,2.62], + [45051,2.45], + [45053,2.77], + [45055,2.56], + [45057,2.69], + [45059,2.51], + [45061,2.5], + [45063,2.55], + [45065,2.07], + [45067,2.65], + [45069,2.52], + [45071,2.47], + [45073,2.4], + [45075,2.62], + [45077,2.48], + [45079,2.51], + [45081,2.82], + [45083,2.56], + [45085,2.54], + [45087,2.36], + [45089,2.47], + [45091,2.59], + [46003,2.19], + [46005,2.28], + [46007,3.56], + [46009,2.18], + [46011,2.38], + [46013,2.28], + [46015,2.3], + [46017,3.86], + [46019,2.41], + [46021,2.09], + [46023,2.82], + [46025,2.28], + [46027,2.2], + [46029,2.28], + [46031,3.37], + [46033,2.07], + [46035,2.16], + [46037,2.09], + [46039,2.3], + [46041,3.43], + [46043,2.23], + [46045,2.4], + [46047,2.08], + [46049,2.12], + [46051,2.19], + [46053,2.14], + [46055,2.29], + [46057,2.6], + [46059,2.17], + [46061,3.15], + [46063,2.26], + [46065,2.21], + [46067,2.38], + [46069,2.29], + [46071,3.2], + [46073,2.19], + [46075,1.83], + [46077,2.11], + [46079,2.42], + [46081,2.17], + [46083,2.81], + [46085,2.78], + [46087,2.41], + [46089,2.03], + [46091,2.55], + [46093,2.38], + [46095,2.97], + [46097,2.23], + [46099,2.41], + [46101,2.3], + [46102,"NA"], + [46103,2.42], + [46105,2.18], + [46107,2.18], + [46109,2.67], + [46111,2.21], + [46115,2.39], + [46117,2.29], + [46119,2.3], + [46121,3.61], + [46123,2.2], + [46125,2.29], + [46127,2.36], + [46129,2.27], + [46135,2.25], + [46137,3.71], + [47001,2.44], + [47003,2.71], + [47005,2.39], + [47007,2.84], + [47009,2.51], + [47011,2.54], + [47013,2.48], + [47015,2.5], + [47017,2.4], + [47019,2.3], + [47021,2.68], + [47023,2.65], + [47025,2.33], + [47027,2.39], + [47029,2.39], + [47031,2.47], + [47033,2.66], + [47035,2.29], + [47037,2.4], + [47039,2.43], + [47041,2.59], + [47043,2.66], + [47045,2.43], + [47047,2.57], + [47049,2.41], + [47051,2.42], + [47053,2.49], + [47055,2.43], + [47057,2.5], + [47059,2.44], + [47061,2.69], + [47063,2.57], + [47065,2.47], + [47067,2.38], + [47069,2.52], + [47071,2.51], + [47073,2.39], + [47075,2.49], + [47077,2.54], + [47079,2.36], + [47081,2.57], + [47083,2.66], + [47085,2.56], + [47087,2.49], + [47089,2.54], + [47091,2.29], + [47093,2.42], + [47095,2.25], + [47097,2.43], + [47099,2.62], + [47101,2.51], + [47103,2.43], + [47105,2.52], + [47107,2.53], + [47109,2.54], + [47111,2.5], + [47113,2.53], + [47115,2.46], + [47117,2.61], + [47119,2.59], + [47121,2.43], + [47123,2.59], + [47125,2.74], + [47127,2.38], + [47129,2.54], + [47131,2.36], + [47133,2.43], + [47135,2.35], + [47137,2.29], + [47139,2.35], + [47141,2.36], + [47143,2.5], + [47145,2.42], + [47147,2.7], + [47149,2.75], + [47151,2.53], + [47153,2.62], + [47155,2.56], + [47157,2.64], + [47159,2.53], + [47161,2.47], + [47163,2.32], + [47165,2.7], + [47167,2.83], + [47169,2.94], + [47171,2.27], + [47173,2.61], + [47175,2.58], + [47177,2.51], + [47179,2.31], + [47181,2.51], + [47183,2.29], + [47185,2.65], + [47187,2.89], + [47189,2.7], + [48001,2.68], + [48003,3.23], + [48005,2.73], + [48007,2.56], + [48009,2.6], + [48011,2.65], + [48013,3.08], + [48015,2.63], + [48017,3.1], + [48019,2.51], + [48021,3], + [48023,2.14], + [48025,2.93], + [48027,2.81], + [48029,2.96], + [48031,2.59], + [48033,2.43], + [48035,2.5], + [48037,2.66], + [48039,2.86], + [48041,2.56], + [48043,2.32], + [48045,2.4], + [48047,3.31], + [48049,2.61], + [48051,2.65], + [48053,2.69], + [48055,2.85], + [48057,2.79], + [48059,2.57], + [48061,3.41], + [48063,2.66], + [48065,2.61], + [48067,2.51], + [48069,3.17], + [48071,2.93], + [48073,2.72], + [48075,2.52], + [48077,2.53], + [48079,2.81], + [48081,1.99], + [48083,2.41], + [48085,2.81], + [48087,2.69], + [48089,2.7], + [48091,2.71], + [48093,2.6], + [48095,3.27], + [48097,2.53], + [48099,2.74], + [48101,2.26], + [48103,3.2], + [48105,2.66], + [48107,2.81], + [48109,3.02], + [48111,2.95], + [48113,2.78], + [48115,2.61], + [48117,3.04], + [48119,2.51], + [48121,2.79], + [48123,2.56], + [48125,2.5], + [48127,3.08], + [48129,2.54], + [48131,2.84], + [48133,2.69], + [48135,2.99], + [48137,3.31], + [48139,2.97], + [48141,3.11], + [48143,2.82], + [48145,2.87], + [48147,2.55], + [48149,2.63], + [48151,2.26], + [48153,2.55], + [48155,2.45], + [48157,3.17], + [48159,2.68], + [48161,2.49], + [48163,3.52], + [48165,3.46], + [48167,2.68], + [48169,2.79], + [48171,2.37], + [48173,2.99], + [48175,2.69], + [48177,2.88], + [48179,2.68], + [48181,2.6], + [48183,2.6], + [48185,2.65], + [48187,2.87], + [48189,2.87], + [48191,2.43], + [48193,2.51], + [48195,2.83], + [48197,2.58], + [48199,2.68], + [48201,2.87], + [48203,2.79], + [48205,2.44], + [48207,2.34], + [48209,2.76], + [48211,3.03], + [48213,2.57], + [48215,3.57], + [48217,2.69], + [48219,2.79], + [48221,2.54], + [48223,2.67], + [48225,2.36], + [48227,2.82], + [48229,3.5], + [48231,2.76], + [48233,2.77], + [48235,2.46], + [48237,2.49], + [48239,2.77], + [48241,2.88], + [48243,2.16], + [48245,2.54], + [48247,3.3], + [48249,3], + [48251,2.83], + [48253,2.25], + [48255,2.82], + [48257,3.1], + [48259,2.91], + [48261,3.68], + [48263,2.3], + [48265,2.38], + [48267,2.25], + [48269,2.86], + [48271,2.77], + [48273,2.7], + [48275,2.62], + [48277,2.55], + [48279,2.75], + [48281,2.61], + [48283,2.85], + [48285,2.52], + [48287,2.67], + [48289,2.7], + [48291,2.81], + [48293,2.77], + [48295,2.7], + [48297,2.93], + [48299,2.3], + [48301,2.39], + [48303,2.59], + [48305,2.68], + [48307,2.54], + [48309,2.68], + [48311,3.09], + [48313,2.35], + [48315,2.25], + [48317,3.35], + [48319,2.53], + [48321,2.63], + [48323,3.47], + [48325,3.03], + [48327,2.15], + [48329,2.87], + [48331,2.54], + [48333,2.57], + [48335,2.41], + [48337,2.37], + [48339,2.85], + [48341,3.25], + [48343,2.46], + [48345,2.38], + [48347,2.52], + [48349,2.73], + [48351,2.93], + [48353,2.64], + [48355,2.72], + [48357,2.94], + [48359,2.58], + [48361,2.57], + [48363,2.67], + [48365,2.56], + [48367,2.82], + [48369,3.04], + [48371,3.09], + [48373,2.46], + [48375,2.63], + [48377,2.78], + [48379,2.58], + [48381,2.61], + [48383,3.16], + [48385,2.89], + [48387,2.33], + [48389,3.31], + [48391,2.64], + [48393,2.73], + [48395,2.62], + [48397,2.96], + [48399,2.65], + [48401,2.68], + [48403,2.71], + [48405,2.54], + [48407,2.9], + [48409,2.84], + [48411,2.41], + [48413,2.83], + [48415,2.65], + [48417,2.64], + [48419,2.76], + [48421,2.85], + [48423,2.79], + [48425,2.57], + [48427,3.85], + [48429,2.62], + [48431,2.38], + [48433,2.25], + [48435,2.46], + [48437,2.64], + [48439,2.84], + [48441,2.6], + [48443,2.1], + [48445,2.8], + [48447,2.15], + [48449,3.03], + [48451,2.57], + [48453,2.58], + [48455,2.42], + [48457,2.56], + [48459,2.84], + [48461,2.68], + [48463,3.08], + [48465,3.12], + [48467,2.73], + [48469,2.75], + [48471,2.45], + [48473,2.96], + [48475,2.88], + [48477,2.65], + [48479,3.68], + [48481,2.68], + [48483,2.42], + [48485,2.4], + [48487,2.39], + [48489,3.51], + [48491,2.96], + [48493,2.96], + [48495,3.04], + [48497,2.87], + [48499,2.59], + [48501,3.2], + [48503,2.53], + [48505,3.23], + [48507,3.37], + [49001,2.74], + [49003,3.04], + [49005,3.19], + [49007,2.55], + [49009,3.38], + [49011,3.28], + [49013,2.99], + [49015,2.9], + [49017,2.72], + [49019,2.44], + [49021,3.07], + [49023,3.2], + [49025,2.84], + [49027,2.94], + [49029,3.4], + [49031,3.54], + [49033,3.83], + [49035,3.01], + [49037,3.68], + [49039,3.07], + [49041,2.87], + [49043,2.67], + [49045,3.22], + [49047,3.39], + [49049,3.61], + [49051,3.22], + [49053,2.93], + [49055,2.67], + [49057,2.96], + [50001,2.31], + [50003,2.26], + [50005,2.43], + [50007,2.33], + [50009,2.27], + [50011,2.59], + [50013,2.35], + [50015,2.36], + [50017,2.3], + [50019,2.27], + [50021,2.28], + [50023,2.28], + [50025,2.18], + [50027,2.26], + [51001,2.35], + [51003,2.44], + [51005,2.21], + [51007,2.69], + [51009,2.53], + [51011,2.59], + [51013,2.21], + [51015,2.46], + [51017,2.34], + [51019,2.48], + [51021,2.24], + [51023,2.48], + [51025,2.36], + [51027,2.4], + [51029,2.64], + [51031,2.42], + [51033,2.57], + [51035,2.37], + [51036,2.42], + [51037,2.67], + [51041,2.74], + [51043,2.54], + [51045,2.18], + [51047,2.87], + [51049,2.46], + [51051,2.42], + [51053,2.64], + [51057,2.44], + [51059,2.88], + [51061,2.84], + [51063,2.41], + [51065,2.54], + [51067,2.36], + [51069,2.71], + [51071,2.36], + [51073,2.49], + [51075,2.54], + [51077,2.25], + [51079,2.63], + [51081,2.33], + [51083,2.43], + [51085,2.65], + [51087,2.55], + [51089,2.31], + [51091,1.9], + [51093,2.53], + [51095,2.53], + [51097,2.51], + [51099,2.83], + [51101,2.68], + [51103,2.11], + [51105,2.47], + [51107,3.07], + [51109,2.58], + [51111,2.55], + [51113,2.52], + [51115,2.32], + [51117,2.54], + [51119,2.28], + [51121,2.49], + [51125,2.26], + [51127,2.64], + [51131,2.26], + [51133,2.12], + [51135,2.44], + [51137,2.58], + [51139,2.48], + [51141,2.29], + [51143,2.28], + [51145,2.58], + [51147,2.52], + [51149,2.98], + [51153,3.21], + [51155,2.28], + [51157,2.34], + [51159,2.2], + [51161,2.37], + [51163,2.43], + [51165,2.52], + [51167,2.45], + [51169,2.4], + [51171,2.46], + [51173,2.39], + [51175,2.49], + [51177,3], + [51179,3.04], + [51181,2.41], + [51183,2.05], + [51185,2.38], + [51187,2.69], + [51191,2.36], + [51193,2.36], + [51195,2.42], + [51197,2.42], + [51199,2.72], + [51510,2.23], + [51520,2.25], + [51530,2.31], + [51540,2.38], + [51550,2.76], + [51570,2.45], + [51580,2.33], + [51590,2.18], + [51595,2.48], + [51600,2.7], + [51610,2.6], + [51620,2.36], + [51630,2.44], + [51640,2.25], + [51650,2.46], + [51660,2.71], + [51670,2.42], + [51678,1.85], + [51680,2.43], + [51683,3.29], + [51685,3.37], + [51690,2.24], + [51700,2.51], + [51710,2.52], + [51720,2.23], + [51730,2.36], + [51735,2.61], + [51740,2.52], + [51750,2.61], + [51760,2.35], + [51770,2.3], + [51775,2.31], + [51790,2.19], + [51800,2.7], + [51810,2.62], + [51820,2.35], + [51830,2.29], + [51840,2.52], + [53001,3.26], + [53003,2.39], + [53005,2.68], + [53007,2.7], + [53009,2.24], + [53011,2.7], + [53013,2.22], + [53015,2.52], + [53017,2.74], + [53019,2.41], + [53021,3.36], + [53023,2.19], + [53025,3.03], + [53027,2.44], + [53029,2.3], + [53031,2.14], + [53033,2.45], + [53035,2.51], + [53037,2.34], + [53039,2.54], + [53041,2.49], + [53043,2.31], + [53045,2.62], + [53047,2.36], + [53049,2.35], + [53051,2.3], + [53053,2.64], + [53055,2.08], + [53057,2.53], + [53059,2.43], + [53061,2.68], + [53063,2.43], + [53065,2.48], + [53067,2.5], + [53069,2.22], + [53071,2.44], + [53073,2.48], + [53075,2.31], + [53077,2.99], + [54001,2.58], + [54003,2.61], + [54005,2.49], + [54007,2.54], + [54009,2.22], + [54011,2.29], + [54013,2.64], + [54015,2.62], + [54017,2.98], + [54019,2.42], + [54021,2.45], + [54023,2.64], + [54025,2.29], + [54027,2.36], + [54029,2.33], + [54031,2.47], + [54033,2.45], + [54035,2.6], + [54037,2.6], + [54039,2.3], + [54041,2.45], + [54043,2.63], + [54045,2.42], + [54047,2.34], + [54049,2.43], + [54051,2.49], + [54053,2.38], + [54055,2.39], + [54057,2.36], + [54059,2.3], + [54061,2.54], + [54063,2.3], + [54065,2.44], + [54067,2.38], + [54069,2.27], + [54071,2.3], + [54073,2.43], + [54075,2.27], + [54077,2.51], + [54079,2.59], + [54081,2.38], + [54083,2.37], + [54085,2.6], + [54087,2.45], + [54089,2.22], + [54091,2.5], + [54093,2.32], + [54095,2.49], + [54097,2.5], + [54099,2.51], + [54101,2.33], + [54103,2.62], + [54105,2.39], + [54107,2.36], + [54109,2.41], + [55001,2.32], + [55003,2.33], + [55005,2.33], + [55007,2.17], + [55009,2.43], + [55011,2.29], + [55013,2.07], + [55015,2.56], + [55017,2.41], + [55019,2.66], + [55021,2.37], + [55023,2.35], + [55025,2.35], + [55027,2.45], + [55029,2.06], + [55031,2.26], + [55033,2.45], + [55035,2.42], + [55037,2.17], + [55039,2.39], + [55041,2.17], + [55043,2.46], + [55045,2.44], + [55047,2.33], + [55049,2.38], + [55051,1.91], + [55053,2.37], + [55055,2.47], + [55057,2.42], + [55059,2.58], + [55061,2.45], + [55063,2.39], + [55065,2.48], + [55067,2.19], + [55069,2.17], + [55071,2.3], + [55073,2.44], + [55075,2.14], + [55077,2.33], + [55078,3.28], + [55079,2.44], + [55081,2.49], + [55083,2.38], + [55085,2.32], + [55087,2.49], + [55089,2.47], + [55091,2.39], + [55093,2.52], + [55095,2.35], + [55097,2.39], + [55099,2.03], + [55101,2.51], + [55103,2.27], + [55105,2.45], + [55107,2.23], + [55109,2.58], + [55111,2.43], + [55113,2.12], + [55115,2.38], + [55117,2.36], + [55119,2.3], + [55121,2.44], + [55123,2.48], + [55125,1.98], + [55127,2.48], + [55129,2.16], + [55131,2.47], + [55133,2.49], + [55135,2.3], + [55137,2.33], + [55139,2.31], + [55141,2.25], + [56001,2.23], + [56003,2.6], + [56005,2.7], + [56007,2.39], + [56009,2.51], + [56011,2.42], + [56013,2.6], + [56015,2.4], + [56017,2.07], + [56019,2.25], + [56021,2.47], + [56023,2.65], + [56025,2.41], + [56027,2.22], + [56029,2.41], + [56031,2.3], + [56033,2.2], + [56035,3.1], + [56037,2.7], + [56039,2.51], + [56041,2.66], + [56043,2.32], + [56045,2.12] + ] +} diff --git a/data/regional/united-states/demographics/households/us-persons-perhousehold-2019.json b/data/regional/united-states/demographics/households/us-persons-perhousehold-2019.json new file mode 100644 index 0000000..8dc45c8 --- /dev/null +++ b/data/regional/united-states/demographics/households/us-persons-perhousehold-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Persons Per-Household", + "description" : "Average number of people per-household.", + "units" : "people", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","households"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.persons.perhousehold.2019"], + [1001,2.56], + [1003,2.59], + [1005,2.41], + [1007,2.99], + [1009,2.74], + [1011,2.79], + [1013,3], + [1015,2.5], + [1017,2.46], + [1019,2.39], + [1021,2.58], + [1023,2.4], + [1025,2.61], + [1027,2.52], + [1029,2.6], + [1031,2.56], + [1033,2.48], + [1035,2.71], + [1037,2.57], + [1039,2.46], + [1041,2.77], + [1043,2.63], + [1045,2.55], + [1047,2.42], + [1049,2.7], + [1051,2.58], + [1053,2.61], + [1055,2.6], + [1057,2.38], + [1059,2.83], + [1061,2.52], + [1063,2.8], + [1065,2.59], + [1067,2.53], + [1069,2.64], + [1071,2.47], + [1073,2.47], + [1075,2.34], + [1077,2.35], + [1079,2.59], + [1081,2.58], + [1083,2.86], + [1085,2.35], + [1087,2.2], + [1089,2.38], + [1091,2.59], + [1093,2.45], + [1095,2.71], + [1097,2.6], + [1099,2.57], + [1101,2.46], + [1103,2.55], + [1105,2.76], + [1107,2.41], + [1109,2.71], + [1111,2.55], + [1113,2.47], + [1115,2.68], + [1117,2.64], + [1119,2.29], + [1121,2.45], + [1123,2.46], + [1125,2.72], + [1127,2.53], + [1129,2.74], + [1131,2.71], + [1133,2.44], + [2013,2.61], + [2016,3.74], + [2020,2.69], + [2050,3.83], + [2060,2.51], + [2068,2.32], + [2070,3.2], + [2090,2.62], + [2100,2.46], + [2105,2.51], + [2110,2.5], + [2122,2.63], + [2130,2.51], + [2150,3.08], + [2158,4.6], + [2164,3.03], + [2170,3.31], + [2180,3.3], + [2185,3.36], + [2188,4.06], + [2195,2.68], + [2198,2.66], + [2220,2.36], + [2230,2.51], + [2240,3.05], + [2261,2.83], + [2275,2.38], + [2282,2.65], + [2290,2.69], + [4001,3.37], + [4003,2.34], + [4005,2.67], + [4007,2.4], + [4009,3.1], + [4011,3.01], + [4012,2.2], + [4013,2.75], + [4015,2.35], + [4017,3.04], + [4019,2.46], + [4021,2.87], + [4023,2.91], + [4025,2.26], + [4027,2.79], + [5001,2.36], + [5003,2.59], + [5005,2.22], + [5007,2.7], + [5009,2.45], + [5011,2.42], + [5013,2.73], + [5015,2.49], + [5017,2.43], + [5019,2.34], + [5021,2.29], + [5023,2.3], + [5025,2.5], + [5027,2.57], + [5029,2.49], + [5031,2.5], + [5033,2.59], + [5035,2.52], + [5037,2.49], + [5039,2.21], + [5041,2.23], + [5043,2.43], + [5045,2.66], + [5047,2.58], + [5049,2.42], + [5051,2.4], + [5053,2.62], + [5055,2.56], + [5057,2.65], + [5059,2.5], + [5061,2.55], + [5063,2.54], + [5065,2.6], + [5067,2.34], + [5069,2.36], + [5071,2.64], + [5073,2.4], + [5075,2.48], + [5077,2.36], + [5079,2.22], + [5081,2.27], + [5083,2.5], + [5085,2.67], + [5087,2.57], + [5089,2.4], + [5091,2.57], + [5093,2.52], + [5095,2.09], + [5097,2.35], + [5099,2.41], + [5101,2.64], + [5103,2.43], + [5105,2.78], + [5107,2.46], + [5109,2.47], + [5111,2.47], + [5113,2.42], + [5115,2.67], + [5117,2.13], + [5119,2.44], + [5121,2.36], + [5123,2.41], + [5125,2.68], + [5127,2.61], + [5129,2.35], + [5131,2.45], + [5133,2.88], + [5135,2.27], + [5137,2.58], + [5139,2.48], + [5141,2.41], + [5143,2.57], + [5145,2.58], + [5147,2.19], + [5149,2.82], + [6001,2.82], + [6003,2.87], + [6005,2.38], + [6007,2.57], + [6009,2.66], + [6011,2.94], + [6013,2.87], + [6015,2.47], + [6017,2.63], + [6019,3.14], + [6021,2.74], + [6023,2.41], + [6025,3.81], + [6027,2.18], + [6029,3.17], + [6031,3.13], + [6033,2.46], + [6035,2.26], + [6037,2.99], + [6039,3.28], + [6041,2.4], + [6043,2.13], + [6045,2.47], + [6047,3.32], + [6049,2.33], + [6051,2.93], + [6053,3.27], + [6055,2.78], + [6057,2.4], + [6059,3.01], + [6061,2.67], + [6063,2.16], + [6065,3.28], + [6067,2.76], + [6069,3.31], + [6071,3.29], + [6073,2.87], + [6075,2.36], + [6077,3.17], + [6079,2.51], + [6081,2.87], + [6083,2.91], + [6085,2.95], + [6087,2.72], + [6089,2.47], + [6091,2.28], + [6093,2.23], + [6095,2.88], + [6097,2.59], + [6099,3.09], + [6101,2.91], + [6103,2.61], + [6105,2.09], + [6107,3.3], + [6109,2.24], + [6111,3.08], + [6113,2.81], + [6115,2.84], + [8001,3], + [8003,2.44], + [8005,2.66], + [8007,2.23], + [8009,2.09], + [8011,2.23], + [8013,2.44], + [8014,2.46], + [8015,2.21], + [8017,2.56], + [8019,2.13], + [8021,2.53], + [8023,2.14], + [8025,3.69], + [8027,2.15], + [8029,2.46], + [8031,2.29], + [8033,2.45], + [8035,2.78], + [8037,3], + [8039,2.76], + [8041,2.65], + [8043,2.11], + [8045,2.7], + [8047,2.11], + [8049,2.55], + [8051,2.41], + [8053,2.27], + [8055,2.02], + [8057,2.24], + [8059,2.44], + [8061,2.28], + [8063,2.3], + [8065,2.24], + [8067,2.47], + [8069,2.45], + [8071,2.01], + [8073,2.31], + [8075,2.54], + [8077,2.39], + [8079,2.2], + [8081,2.42], + [8083,2.42], + [8085,2.4], + [8087,2.57], + [8089,2.31], + [8091,2.22], + [8093,2.56], + [8095,2.49], + [8097,2.38], + [8099,2.38], + [8101,2.52], + [8103,2.62], + [8105,2.3], + [8107,2.57], + [8109,2.3], + [8111,2.04], + [8113,2.26], + [8115,2.36], + [8117,2.84], + [8119,2.38], + [8121,2.19], + [8123,2.85], + [8125,2.45], + [9001,2.72], + [9003,2.48], + [9005,2.41], + [9007,2.34], + [9009,2.51], + [9011,2.37], + [9013,2.44], + [9015,2.47], + [10001,2.61], + [10003,2.62], + [10005,2.41], + [11001,2.3], + [12001,2.55], + [12003,2.92], + [12005,2.52], + [12007,2.57], + [12009,2.51], + [12011,2.77], + [12013,2.74], + [12015,2.31], + [12017,2.24], + [12019,2.83], + [12021,2.57], + [12023,2.59], + [12027,2.77], + [12029,2.31], + [12031,2.55], + [12033,2.46], + [12035,2.59], + [12037,2.29], + [12039,2.46], + [12041,2.57], + [12043,2.57], + [12045,2.28], + [12047,2.51], + [12049,3.17], + [12051,3.09], + [12053,2.44], + [12055,2.43], + [12057,2.66], + [12059,2.48], + [12061,2.6], + [12063,2.35], + [12065,2.09], + [12067,3.27], + [12069,2.55], + [12071,2.64], + [12073,2.42], + [12075,2.44], + [12077,2.81], + [12079,2.41], + [12081,2.61], + [12083,2.47], + [12085,2.4], + [12086,3], + [12087,2.3], + [12089,2.52], + [12091,2.54], + [12093,2.74], + [12095,2.85], + [12097,3.39], + [12099,2.61], + [12101,2.53], + [12103,2.32], + [12105,2.86], + [12107,2.48], + [12109,2.73], + [12111,2.7], + [12113,2.65], + [12115,2.26], + [12117,2.63], + [12119,2.06], + [12121,2.85], + [12123,2.44], + [12125,2.42], + [12127,2.43], + [12129,2.58], + [12131,2.42], + [12133,2.48], + [13001,2.69], + [13003,2.85], + [13005,2.7], + [13007,2.2], + [13009,2.51], + [13011,2.78], + [13013,2.99], + [13015,2.76], + [13017,2.59], + [13019,2.57], + [13021,2.53], + [13023,2.71], + [13025,2.74], + [13027,2.44], + [13029,2.83], + [13031,2.48], + [13033,2.72], + [13035,2.56], + [13037,2.56], + [13039,2.66], + [13043,2.63], + [13045,2.71], + [13047,2.67], + [13049,3.22], + [13051,2.55], + [13053,2.79], + [13055,2.49], + [13057,2.79], + [13059,2.36], + [13061,2.33], + [13063,2.95], + [13065,2.51], + [13067,2.64], + [13069,2.71], + [13071,2.88], + [13073,3.18], + [13075,2.74], + [13077,2.74], + [13079,2.7], + [13081,2.6], + [13083,2.4], + [13085,2.7], + [13087,2.53], + [13089,2.61], + [13091,2.46], + [13093,2.47], + [13095,2.51], + [13097,2.89], + [13099,2.5], + [13101,2.55], + [13103,2.84], + [13105,2.5], + [13107,2.58], + [13109,2.53], + [13111,2.42], + [13113,2.77], + [13115,2.61], + [13117,2.97], + [13119,2.62], + [13121,2.44], + [13123,2.51], + [13125,2.63], + [13127,2.43], + [13129,2.75], + [13131,2.7], + [13133,2.4], + [13135,3.1], + [13137,2.8], + [13139,3.06], + [13141,2.03], + [13143,2.56], + [13145,2.76], + [13147,2.52], + [13149,2.57], + [13151,2.95], + [13153,2.66], + [13155,2.75], + [13157,2.89], + [13159,2.67], + [13161,2.82], + [13163,2.66], + [13165,2.53], + [13167,2.68], + [13169,2.65], + [13171,2.69], + [13173,2.71], + [13175,2.71], + [13177,2.78], + [13179,2.53], + [13181,2.23], + [13183,3.26], + [13185,2.69], + [13187,2.67], + [13189,2.59], + [13191,2.33], + [13193,2.4], + [13195,2.7], + [13197,2.45], + [13199,2.58], + [13201,2.4], + [13205,2.5], + [13207,2.67], + [13209,2.66], + [13211,2.64], + [13213,2.74], + [13215,2.59], + [13217,2.88], + [13219,2.82], + [13221,2.62], + [13223,2.99], + [13225,2.49], + [13227,2.62], + [13229,2.71], + [13231,2.94], + [13233,2.77], + [13235,2.62], + [13237,2.41], + [13239,2.72], + [13241,2.43], + [13243,2.66], + [13245,2.69], + [13247,2.86], + [13249,2.8], + [13251,2.66], + [13253,2.44], + [13255,2.63], + [13257,2.62], + [13259,2.26], + [13261,2.43], + [13263,2.24], + [13265,2.71], + [13267,2.31], + [13269,2.3], + [13271,2.74], + [13273,2.47], + [13275,2.49], + [13277,2.54], + [13279,2.65], + [13281,2.2], + [13283,2.53], + [13285,2.74], + [13287,2.39], + [13289,2.68], + [13291,2.33], + [13293,2.53], + [13295,2.6], + [13297,2.86], + [13299,2.39], + [13301,2.32], + [13303,2.46], + [13305,2.66], + [13307,2.29], + [13309,4.14], + [13311,2.49], + [13313,2.88], + [13315,2.61], + [13317,2.45], + [13319,2.8], + [13321,2.54], + [15001,2.82], + [15003,3.03], + [15005,1.41], + [15007,3.13], + [15009,3], + [16001,2.58], + [16003,2.29], + [16005,2.68], + [16007,2.46], + [16009,2.65], + [16011,3.04], + [16013,2.75], + [16015,2.28], + [16017,2.46], + [16019,2.84], + [16021,2.52], + [16023,2.62], + [16025,2.66], + [16027,2.94], + [16029,2.71], + [16031,3.02], + [16033,3.07], + [16035,2.17], + [16037,2.29], + [16039,2.45], + [16041,3.05], + [16043,2.87], + [16045,2.57], + [16047,2.75], + [16049,2.45], + [16051,3.24], + [16053,2.94], + [16055,2.5], + [16057,2.35], + [16059,2.13], + [16061,2.31], + [16063,3.08], + [16065,3.51], + [16067,2.85], + [16069,2.4], + [16071,2.7], + [16073,2.64], + [16075,2.6], + [16077,2.89], + [16079,2.25], + [16081,3.08], + [16083,2.69], + [16085,2.72], + [16087,2.46], + [17001,2.38], + [17003,2.85], + [17005,2.35], + [17007,2.86], + [17009,2.31], + [17011,2.39], + [17013,2.83], + [17015,2.17], + [17017,2.44], + [17019,2.36], + [17021,2.24], + [17023,2.31], + [17025,2.27], + [17027,2.47], + [17029,2.27], + [17031,2.59], + [17033,2.16], + [17035,2.49], + [17037,2.62], + [17039,2.34], + [17041,2.55], + [17043,2.67], + [17045,2.26], + [17047,2.31], + [17049,2.43], + [17051,2.57], + [17053,2.23], + [17055,2.37], + [17057,2.33], + [17059,2.2], + [17061,2.6], + [17063,2.56], + [17065,2.37], + [17067,2.39], + [17069,2.8], + [17071,2.27], + [17073,2.45], + [17075,2.33], + [17077,2.26], + [17079,2.57], + [17081,2.37], + [17083,2.47], + [17085,2.15], + [17087,2.38], + [17089,2.93], + [17091,2.64], + [17093,3.09], + [17095,2.23], + [17097,2.78], + [17099,2.36], + [17101,2.16], + [17103,2.25], + [17105,2.36], + [17107,2.31], + [17109,2.38], + [17111,2.72], + [17113,2.5], + [17115,2.32], + [17117,2.36], + [17119,2.41], + [17121,2.32], + [17123,2.33], + [17125,2.24], + [17127,2.39], + [17129,2.35], + [17131,2.36], + [17133,2.5], + [17135,2.24], + [17137,2.25], + [17139,2.4], + [17141,2.4], + [17143,2.42], + [17145,2.21], + [17147,2.44], + [17149,2.41], + [17151,2.34], + [17153,2.62], + [17155,2.37], + [17157,2.39], + [17159,2.4], + [17161,2.3], + [17163,2.48], + [17165,2.36], + [17167,2.3], + [17169,2.19], + [17171,2.55], + [17173,2.34], + [17175,2.31], + [17177,2.24], + [17179,2.41], + [17181,2.48], + [17183,2.4], + [17185,2.37], + [17187,2.33], + [17189,2.29], + [17191,2.32], + [17193,2.23], + [17195,2.38], + [17197,2.96], + [17199,2.41], + [17201,2.44], + [17203,2.6], + [18001,2.79], + [18003,2.53], + [18005,2.59], + [18007,2.49], + [18009,2.26], + [18011,2.55], + [18013,2.41], + [18015,2.49], + [18017,2.49], + [18019,2.6], + [18021,2.44], + [18023,2.63], + [18025,2.73], + [18027,2.9], + [18029,2.59], + [18031,2.53], + [18033,2.53], + [18035,2.34], + [18037,2.46], + [18039,2.8], + [18041,2.38], + [18043,2.6], + [18045,2.33], + [18047,2.6], + [18049,2.55], + [18051,2.46], + [18053,2.31], + [18055,2.49], + [18057,2.68], + [18059,2.59], + [18061,2.75], + [18063,2.73], + [18065,2.45], + [18067,2.34], + [18069,2.37], + [18071,2.58], + [18073,2.6], + [18075,2.52], + [18077,2.35], + [18079,2.53], + [18081,2.67], + [18083,2.32], + [18085,2.5], + [18087,3.16], + [18089,2.57], + [18091,2.37], + [18093,2.39], + [18095,2.42], + [18097,2.51], + [18099,2.64], + [18101,2.37], + [18103,2.47], + [18105,2.36], + [18107,2.41], + [18109,2.65], + [18111,2.47], + [18113,2.56], + [18115,2.28], + [18117,2.44], + [18119,2.35], + [18121,2.56], + [18123,2.29], + [18125,2.37], + [18127,2.55], + [18129,2.49], + [18131,2.41], + [18133,2.37], + [18135,2.4], + [18137,2.54], + [18139,2.46], + [18141,2.53], + [18143,2.6], + [18145,2.45], + [18147,2.48], + [18149,2.68], + [18151,2.32], + [18153,2.43], + [18155,2.43], + [18157,2.48], + [18159,2.34], + [18161,2.5], + [18163,2.31], + [18165,2.3], + [18167,2.36], + [18169,2.29], + [18171,2.43], + [18173,2.51], + [18175,2.52], + [18177,2.39], + [18179,2.52], + [18181,2.41], + [18183,2.42], + [19001,2.17], + [19003,2.21], + [19005,2.27], + [19007,2.3], + [19009,2.06], + [19011,2.45], + [19013,2.41], + [19015,2.35], + [19017,2.42], + [19019,2.59], + [19021,2.53], + [19023,2.3], + [19025,2.16], + [19027,2.28], + [19029,2.16], + [19031,2.45], + [19033,2.16], + [19035,2.04], + [19037,2.29], + [19039,2.35], + [19041,2.2], + [19043,2.3], + [19045,2.35], + [19047,2.55], + [19049,2.52], + [19051,2.77], + [19053,2.25], + [19055,2.45], + [19057,2.29], + [19059,2.07], + [19061,2.43], + [19063,2.1], + [19065,2.33], + [19067,2.24], + [19069,2.38], + [19071,2.31], + [19073,2.22], + [19075,2.35], + [19077,2.36], + [19079,2.36], + [19081,2.21], + [19083,2.27], + [19085,2.29], + [19087,2.39], + [19089,2.36], + [19091,2.26], + [19093,2.25], + [19095,2.34], + [19097,2.32], + [19099,2.42], + [19101,2.54], + [19103,2.38], + [19105,2.38], + [19107,2.29], + [19109,2.21], + [19111,2.32], + [19113,2.41], + [19115,2.55], + [19117,2.29], + [19119,2.55], + [19121,2.45], + [19123,2.41], + [19125,2.35], + [19127,2.52], + [19129,2.61], + [19131,2.38], + [19133,2.13], + [19135,2.33], + [19137,2.16], + [19139,2.54], + [19141,2.18], + [19143,2.26], + [19145,2.25], + [19147,2.34], + [19149,2.41], + [19151,2.07], + [19153,2.51], + [19155,2.48], + [19157,2.15], + [19159,2.41], + [19161,2.23], + [19163,2.52], + [19165,2.27], + [19167,2.66], + [19169,2.28], + [19171,2.46], + [19173,2.32], + [19175,2.33], + [19177,2.44], + [19179,2.37], + [19181,2.51], + [19183,2.46], + [19185,2.35], + [19187,2.2], + [19189,2.16], + [19191,2.18], + [19193,2.56], + [19195,2.31], + [19197,2.19], + [20001,2.26], + [20003,2.49], + [20005,2.48], + [20007,2.38], + [20009,2.45], + [20011,2.52], + [20013,2.46], + [20015,2.57], + [20017,2.42], + [20019,2.24], + [20021,2.51], + [20023,2.15], + [20025,2.25], + [20027,2.26], + [20029,2.33], + [20031,2.27], + [20033,2.22], + [20035,2.45], + [20037,2.42], + [20039,1.94], + [20041,2.34], + [20043,2.28], + [20045,2.38], + [20047,2.12], + [20049,2.21], + [20051,2.39], + [20053,2.24], + [20055,2.89], + [20057,2.95], + [20059,2.47], + [20061,2.61], + [20063,2.13], + [20065,2.07], + [20067,2.9], + [20069,2.77], + [20071,2.22], + [20073,2.17], + [20075,2.91], + [20077,2.4], + [20079,2.49], + [20081,3.01], + [20083,2.4], + [20085,2.4], + [20087,2.46], + [20089,2.07], + [20091,2.57], + [20093,3.2], + [20095,2.3], + [20097,2.35], + [20099,2.39], + [20101,2.06], + [20103,2.75], + [20105,2.39], + [20107,2.14], + [20109,2.4], + [20111,2.34], + [20113,2.21], + [20115,2.3], + [20117,2.35], + [20119,2.4], + [20121,2.55], + [20123,2.31], + [20125,2.33], + [20127,2.41], + [20129,2.58], + [20131,2.45], + [20133,2.37], + [20135,2.23], + [20137,2.5], + [20139,2.37], + [20141,2.08], + [20143,2.35], + [20145,2.27], + [20147,2.26], + [20149,2.7], + [20151,2.47], + [20153,2.1], + [20155,2.4], + [20157,2.06], + [20159,2.29], + [20161,2.46], + [20163,2.23], + [20165,2.08], + [20167,2.26], + [20169,2.42], + [20171,2.46], + [20173,2.57], + [20175,2.98], + [20177,2.39], + [20179,2.18], + [20181,2.25], + [20183,2.09], + [20185,2.29], + [20187,2.76], + [20189,3.03], + [20191,2.4], + [20193,2.2], + [20195,2], + [20197,2.48], + [20199,2.44], + [20201,2.29], + [20203,2.25], + [20205,2.3], + [20207,2.2], + [20209,2.72], + [21001,2.56], + [21003,2.72], + [21005,2.57], + [21007,2.58], + [21009,2.55], + [21011,2.54], + [21013,2.44], + [21015,2.76], + [21017,2.44], + [21019,2.52], + [21021,2.44], + [21023,2.49], + [21025,2.35], + [21027,2.61], + [21029,2.69], + [21031,2.53], + [21033,2.43], + [21035,2.34], + [21037,2.43], + [21039,2.39], + [21041,2.52], + [21043,2.75], + [21045,2.53], + [21047,2.52], + [21049,2.45], + [21051,2.48], + [21053,2.52], + [21055,2.46], + [21057,2.53], + [21059,2.42], + [21061,2.41], + [21063,2.37], + [21065,2.56], + [21067,2.37], + [21069,2.48], + [21071,2.37], + [21073,2.31], + [21075,2.33], + [21077,2.77], + [21079,2.58], + [21081,2.69], + [21083,2.56], + [21085,2.66], + [21087,2.46], + [21089,2.5], + [21091,2.6], + [21093,2.54], + [21095,2.34], + [21097,2.52], + [21099,2.51], + [21101,2.38], + [21103,2.62], + [21105,2.43], + [21107,2.38], + [21109,2.42], + [21111,2.4], + [21113,2.72], + [21115,2.59], + [21117,2.55], + [21119,2.28], + [21121,2.56], + [21123,2.42], + [21125,2.63], + [21127,2.69], + [21129,2.28], + [21131,2.45], + [21133,2.27], + [21135,2.52], + [21137,2.5], + [21139,2.38], + [21141,2.55], + [21143,2.1], + [21145,2.29], + [21147,2.58], + [21149,2.41], + [21151,2.52], + [21153,2.46], + [21155,2.48], + [21157,2.33], + [21159,2.5], + [21161,2.51], + [21163,2.61], + [21165,2.39], + [21167,2.51], + [21169,2.43], + [21171,2.33], + [21173,2.62], + [21175,2.39], + [21177,2.65], + [21179,2.53], + [21181,2.51], + [21183,2.61], + [21185,2.98], + [21187,2.68], + [21189,2.56], + [21191,2.73], + [21193,2.31], + [21195,2.27], + [21197,2.52], + [21199,2.51], + [21201,2.39], + [21203,2.52], + [21205,2.5], + [21207,2.53], + [21209,2.59], + [21211,2.75], + [21213,2.53], + [21215,2.74], + [21217,2.47], + [21219,2.61], + [21221,2.44], + [21223,2.43], + [21225,2.43], + [21227,2.52], + [21229,2.52], + [21231,2.46], + [21233,2.56], + [21235,2.71], + [21237,2.44], + [21239,2.51], + [22001,2.76], + [22003,2.69], + [22005,2.84], + [22007,2.6], + [22009,2.43], + [22011,2.71], + [22013,2.28], + [22015,2.5], + [22017,2.51], + [22019,2.55], + [22021,2.6], + [22023,2.52], + [22025,2.52], + [22027,2.34], + [22029,2.48], + [22031,2.5], + [22033,2.64], + [22035,2.17], + [22037,2.24], + [22039,2.63], + [22041,2.55], + [22043,2.74], + [22045,2.71], + [22047,2.7], + [22049,2.45], + [22051,2.54], + [22053,2.64], + [22055,2.59], + [22057,2.6], + [22059,2.81], + [22061,2.49], + [22063,2.85], + [22065,2.43], + [22067,2.54], + [22069,2.58], + [22071,2.45], + [22073,2.63], + [22075,2.57], + [22077,2.44], + [22079,2.61], + [22081,2.49], + [22083,2.59], + [22085,2.58], + [22087,3.06], + [22089,2.72], + [22091,2.63], + [22093,2.73], + [22095,2.79], + [22097,2.69], + [22099,2.71], + [22101,2.52], + [22103,2.72], + [22105,2.7], + [22107,2.53], + [22109,2.77], + [22111,2.88], + [22113,2.69], + [22115,2.68], + [22117,2.53], + [22119,2.31], + [22121,2.61], + [22123,2.6], + [22125,3.09], + [22127,2.26], + [23001,2.29], + [23003,2.22], + [23005,2.35], + [23007,2.43], + [23009,2.24], + [23011,2.26], + [23013,2.24], + [23015,2.19], + [23017,2.66], + [23019,2.33], + [23021,2.34], + [23023,2.21], + [23025,2.33], + [23027,2.26], + [23029,2.21], + [23031,2.36], + [24001,2.31], + [24003,2.64], + [24005,2.58], + [24009,2.84], + [24011,2.71], + [24013,2.7], + [24015,2.73], + [24017,2.78], + [24019,2.39], + [24021,2.67], + [24023,2.3], + [24025,2.67], + [24027,2.77], + [24029,2.23], + [24031,2.79], + [24033,2.86], + [24035,2.65], + [24037,2.7], + [24039,2.3], + [24041,2.18], + [24043,2.52], + [24045,2.6], + [24047,2.31], + [24510,2.45], + [25001,2.23], + [25003,2.18], + [25005,2.5], + [25007,2.52], + [25009,2.6], + [25011,2.26], + [25013,2.53], + [25015,2.35], + [25017,2.55], + [25019,2.93], + [25021,2.57], + [25023,2.69], + [25025,2.41], + [25027,2.56], + [26001,2.05], + [26003,2.7], + [26005,2.65], + [26007,2.19], + [26009,2.32], + [26011,2.26], + [26013,2.34], + [26015,2.46], + [26017,2.32], + [26019,2.55], + [26021,2.36], + [26023,2.47], + [26025,2.41], + [26027,2.43], + [26029,2.25], + [26031,2.24], + [26033,2.43], + [26035,2.48], + [26037,2.61], + [26039,2.23], + [26041,2.18], + [26043,2.23], + [26045,2.42], + [26047,2.25], + [26049,2.4], + [26051,2.27], + [26053,2.05], + [26055,2.41], + [26057,2.33], + [26059,2.44], + [26061,2.5], + [26063,2.22], + [26065,2.41], + [26067,2.63], + [26069,2.13], + [26071,2.06], + [26073,2.59], + [26075,2.41], + [26077,2.46], + [26079,2.44], + [26081,2.63], + [26083,1.94], + [26085,2.49], + [26087,2.56], + [26089,2.32], + [26091,2.43], + [26093,2.62], + [26095,2.35], + [26097,1.99], + [26099,2.49], + [26101,2.44], + [26103,2.37], + [26105,2.34], + [26107,2.55], + [26109,2.14], + [26111,2.4], + [26113,2.45], + [26115,2.47], + [26117,2.54], + [26119,2.05], + [26121,2.53], + [26123,2.48], + [26125,2.46], + [26127,2.53], + [26129,2.24], + [26131,2.07], + [26133,2.48], + [26135,2.15], + [26137,2.42], + [26139,2.7], + [26141,2.16], + [26143,2.12], + [26145,2.35], + [26147,2.43], + [26149,2.49], + [26151,2.32], + [26153,2.28], + [26155,2.45], + [26157,2.38], + [26159,2.51], + [26161,2.45], + [26163,2.54], + [26165,2.54], + [27001,2.03], + [27003,2.71], + [27005,2.46], + [27007,2.55], + [27009,2.39], + [27011,2.1], + [27013,2.41], + [27015,2.23], + [27017,2.45], + [27019,2.75], + [27021,2.19], + [27023,2.24], + [27025,2.64], + [27027,2.46], + [27029,2.56], + [27031,1.97], + [27033,2.27], + [27035,2.36], + [27037,2.59], + [27039,2.65], + [27041,2.22], + [27043,2.2], + [27045,2.38], + [27047,2.3], + [27049,2.33], + [27051,2.24], + [27053,2.4], + [27055,2.23], + [27057,2.39], + [27059,2.61], + [27061,2.25], + [27063,2.23], + [27065,2.46], + [27067,2.47], + [27069,2.17], + [27071,2.2], + [27073,2.13], + [27075,1.98], + [27077,2.53], + [27079,2.55], + [27081,2.23], + [27083,2.44], + [27085,2.41], + [27087,2.8], + [27089,2.33], + [27091,2.23], + [27093,2.47], + [27095,2.47], + [27097,2.43], + [27099,2.51], + [27101,2.24], + [27103,2.4], + [27105,2.65], + [27107,2.32], + [27109,2.45], + [27111,2.31], + [27113,2.32], + [27115,2.56], + [27117,2.27], + [27119,2.4], + [27121,2.18], + [27123,2.53], + [27125,2.39], + [27127,2.38], + [27129,2.35], + [27131,2.51], + [27133,2.34], + [27135,2.53], + [27137,2.22], + [27139,2.9], + [27141,2.87], + [27143,2.43], + [27145,2.53], + [27147,2.46], + [27149,2.6], + [27151,2.16], + [27153,2.46], + [27155,2], + [27157,2.36], + [27159,2.33], + [27161,2.38], + [27163,2.67], + [27165,2.51], + [27167,2.18], + [27169,2.41], + [27171,2.76], + [27173,2.33], + [28001,2.56], + [28003,2.49], + [28005,2.36], + [28007,2.6], + [28009,2.59], + [28011,2.51], + [28013,2.44], + [28015,2.57], + [28017,2.58], + [28019,2.51], + [28021,2.86], + [28023,2.52], + [28025,2.54], + [28027,2.56], + [28029,2.93], + [28031,2.77], + [28033,2.83], + [28035,2.55], + [28037,2.61], + [28039,3.08], + [28041,2.5], + [28043,2.47], + [28045,2.33], + [28047,2.56], + [28049,2.59], + [28051,2.76], + [28053,2.6], + [28055,2.19], + [28057,2.59], + [28059,2.69], + [28061,2.48], + [28063,2.75], + [28065,2.38], + [28067,2.68], + [28069,2.49], + [28071,2.61], + [28073,2.79], + [28075,2.45], + [28077,2.61], + [28079,2.74], + [28081,2.62], + [28083,2.79], + [28085,2.65], + [28087,2.56], + [28089,2.59], + [28091,2.56], + [28093,2.62], + [28095,2.52], + [28097,2.19], + [28099,2.71], + [28101,2.57], + [28103,2.63], + [28105,2.51], + [28107,2.72], + [28109,2.56], + [28111,2.57], + [28113,2.67], + [28115,2.91], + [28117,2.64], + [28119,2.32], + [28121,2.63], + [28123,2.76], + [28125,2.44], + [28127,2.77], + [28129,2.73], + [28131,2.77], + [28133,2.63], + [28135,2.7], + [28137,2.57], + [28139,2.77], + [28141,2.51], + [28143,2.51], + [28145,2.87], + [28147,2.56], + [28149,2.52], + [28151,2.53], + [28153,2.63], + [28155,2.56], + [28157,2.43], + [28159,2.44], + [28161,2.35], + [28163,2.78], + [29001,2.45], + [29003,2.56], + [29005,2], + [29007,2.56], + [29009,2.58], + [29011,2.37], + [29013,2.44], + [29015,2.4], + [29017,2.62], + [29019,2.39], + [29021,2.52], + [29023,2.54], + [29025,2.43], + [29027,2.56], + [29029,2.8], + [29031,2.54], + [29033,2.47], + [29035,2.62], + [29037,2.58], + [29039,2.37], + [29041,2.7], + [29043,2.69], + [29045,2.52], + [29047,2.63], + [29049,2.45], + [29051,2.38], + [29053,2.51], + [29055,2.47], + [29057,2.41], + [29059,2.64], + [29061,2.67], + [29063,2.4], + [29065,2.41], + [29067,2.57], + [29069,2.37], + [29071,2.5], + [29073,2.38], + [29075,2.5], + [29077,2.22], + [29079,2.46], + [29081,2.41], + [29083,2.3], + [29085,2.34], + [29087,2.14], + [29089,2.68], + [29091,2.49], + [29093,2.4], + [29095,2.39], + [29097,2.57], + [29099,2.63], + [29101,2.48], + [29103,2.59], + [29105,2.49], + [29107,2.45], + [29109,2.54], + [29111,2.43], + [29113,2.89], + [29115,2.34], + [29117,2.32], + [29119,2.74], + [29121,2.55], + [29123,2.38], + [29125,2.31], + [29127,2.34], + [29129,2.81], + [29131,2.46], + [29133,2.36], + [29135,2.7], + [29137,2.29], + [29139,2.22], + [29141,2.62], + [29143,2.34], + [29145,2.57], + [29147,2.29], + [29149,2.47], + [29151,2.6], + [29153,2.3], + [29155,2.45], + [29157,2.49], + [29159,2.58], + [29161,2.31], + [29163,2.46], + [29165,2.54], + [29167,2.58], + [29169,2.84], + [29171,2.68], + [29173,2.51], + [29175,2.63], + [29177,2.55], + [29179,2.34], + [29181,2.67], + [29183,2.64], + [29185,2.19], + [29186,2.47], + [29187,2.39], + [29189,2.41], + [29195,2.61], + [29197,3.05], + [29199,2.72], + [29201,2.5], + [29203,2.64], + [29205,2.36], + [29207,2.51], + [29209,2.44], + [29211,2.83], + [29213,2.4], + [29215,2.49], + [29217,2.43], + [29219,2.7], + [29221,2.57], + [29223,2.41], + [29225,2.78], + [29227,2.31], + [29229,2.55], + [29510,2.1], + [30001,2.22], + [30003,3.67], + [30005,2.79], + [30007,2.5], + [30009,2.32], + [30011,2.07], + [30013,2.3], + [30015,2.49], + [30017,2.3], + [30019,1.99], + [30021,2.18], + [30023,2.08], + [30025,2.12], + [30027,2.2], + [30029,2.55], + [30031,2.37], + [30033,2.37], + [30035,3.11], + [30037,2.07], + [30039,2.47], + [30041,2.51], + [30043,2.6], + [30045,2.15], + [30047,2.49], + [30049,2.37], + [30051,2.6], + [30053,2.38], + [30055,2.45], + [30057,2.24], + [30059,2.66], + [30061,2.34], + [30063,2.31], + [30065,2.17], + [30067,2.07], + [30069,2.22], + [30071,2.34], + [30073,2.75], + [30075,2.12], + [30077,2.16], + [30079,2.37], + [30081,2.43], + [30083,2.45], + [30085,3.46], + [30087,2.86], + [30089,2.27], + [30091,2.07], + [30093,2.24], + [30095,2.48], + [30097,2.33], + [30099,2.39], + [30101,2.23], + [30103,1.9], + [30105,2.17], + [30107,2.66], + [30109,2.21], + [30111,2.34], + [31001,2.35], + [31003,2.31], + [31005,2.17], + [31007,2.55], + [31009,2.24], + [31011,2.24], + [31013,2.27], + [31015,2.11], + [31017,2.14], + [31019,2.47], + [31021,2.24], + [31023,2.34], + [31025,2.57], + [31027,2.38], + [31029,2.21], + [31031,2.23], + [31033,2.16], + [31035,2.41], + [31037,2.85], + [31039,2.36], + [31041,2.2], + [31043,2.69], + [31045,2.21], + [31047,2.61], + [31049,2.19], + [31051,2.4], + [31053,2.33], + [31055,2.51], + [31057,2.14], + [31059,2.12], + [31061,2.11], + [31063,2.23], + [31065,2.19], + [31067,2.34], + [31069,2.1], + [31071,2.2], + [31073,2.1], + [31075,2.35], + [31077,2.31], + [31079,2.61], + [31081,2.45], + [31083,2.21], + [31085,2.22], + [31087,2.23], + [31089,2.22], + [31091,1.97], + [31093,2.36], + [31095,2.13], + [31097,2.28], + [31099,2.42], + [31101,2.06], + [31103,2.5], + [31105,2.27], + [31107,2.29], + [31109,2.41], + [31111,2.32], + [31113,2.67], + [31115,2.06], + [31117,2.07], + [31119,2.39], + [31121,2.26], + [31123,2.36], + [31125,2.2], + [31127,2.16], + [31129,2.24], + [31131,2.42], + [31133,2.14], + [31135,2.34], + [31137,2.26], + [31139,2.32], + [31141,2.53], + [31143,2.51], + [31145,2.29], + [31147,2.11], + [31149,2.17], + [31151,2.59], + [31153,2.72], + [31155,2.46], + [31157,2.4], + [31159,2.38], + [31161,2.24], + [31163,2.17], + [31165,2.24], + [31167,2.44], + [31169,2.19], + [31171,2.33], + [31173,3.28], + [31175,2.22], + [31177,2.45], + [31179,2.18], + [31181,2.3], + [31183,2.26], + [31185,2.25], + [32001,2.38], + [32003,2.76], + [32005,2.31], + [32007,2.85], + [32009,1.96], + [32011,2.4], + [32013,2.56], + [32015,2.54], + [32017,2.28], + [32019,2.56], + [32021,2.14], + [32023,2.3], + [32027,2.41], + [32029,2.43], + [32031,2.47], + [32033,2.33], + [32510,2.31], + [33001,2.4], + [33003,2.22], + [33005,2.37], + [33007,2.14], + [33009,2.39], + [33011,2.51], + [33013,2.45], + [33015,2.51], + [33017,2.45], + [33019,2.44], + [34001,2.61], + [34003,2.71], + [34005,2.61], + [34007,2.67], + [34009,2.25], + [34011,2.74], + [34013,2.71], + [34015,2.73], + [34017,2.56], + [34019,2.56], + [34021,2.7], + [34023,2.79], + [34025,2.61], + [34027,2.66], + [34029,2.61], + [34031,2.99], + [34033,2.57], + [34035,2.75], + [34037,2.61], + [34039,2.88], + [34041,2.5], + [35001,2.5], + [35003,2.57], + [35005,2.7], + [35006,2.92], + [35007,1.98], + [35009,2.63], + [35011,3], + [35013,2.7], + [35015,2.69], + [35017,2.27], + [35019,2.58], + [35021,2.09], + [35023,2.49], + [35025,3], + [35027,2.54], + [35028,2.34], + [35029,2.65], + [35031,3.42], + [35033,2.64], + [35035,2.64], + [35037,2.71], + [35039,3.03], + [35041,2.61], + [35043,2.78], + [35045,2.88], + [35047,2.25], + [35049,2.36], + [35051,1.94], + [35053,3.62], + [35055,2.66], + [35057,2.69], + [35059,2.5], + [35061,2.76], + [36001,2.29], + [36003,2.33], + [36005,2.76], + [36007,2.33], + [36009,2.34], + [36011,2.34], + [36013,2.31], + [36015,2.36], + [36017,2.28], + [36019,2.33], + [36021,2.32], + [36023,2.5], + [36025,2.25], + [36027,2.54], + [36029,2.29], + [36031,2.19], + [36033,2.35], + [36035,2.33], + [36037,2.4], + [36039,2.58], + [36041,3.79], + [36043,2.48], + [36045,2.49], + [36047,2.66], + [36049,2.56], + [36051,2.37], + [36053,2.55], + [36055,2.37], + [36057,2.45], + [36059,2.99], + [36061,2.07], + [36063,2.34], + [36065,2.43], + [36067,2.39], + [36069,2.36], + [36071,2.89], + [36073,2.28], + [36075,2.46], + [36077,2.32], + [36079,2.76], + [36081,2.9], + [36083,2.36], + [36085,2.82], + [36087,3.17], + [36089,2.32], + [36091,2.38], + [36093,2.77], + [36095,2.38], + [36097,2.42], + [36099,2.31], + [36101,2.37], + [36103,2.97], + [36105,2.53], + [36107,2.4], + [36109,2.25], + [36111,2.41], + [36113,2.26], + [36115,2.43], + [36117,2.42], + [36119,2.7], + [36121,2.37], + [36123,2.66], + [37001,2.46], + [37003,2.53], + [37005,2.21], + [37007,2.42], + [37009,2.21], + [37011,2.14], + [37013,2.37], + [37015,2.28], + [37017,2.42], + [37019,2.34], + [37021,2.33], + [37023,2.48], + [37025,2.84], + [37027,2.46], + [37029,2.67], + [37031,2.28], + [37033,2.36], + [37035,2.49], + [37037,2.43], + [37039,2.21], + [37041,2.25], + [37043,2.18], + [37045,2.68], + [37047,2.46], + [37049,2.36], + [37051,2.53], + [37053,2.49], + [37055,2.32], + [37057,2.45], + [37059,2.55], + [37061,2.73], + [37063,2.36], + [37065,2.46], + [37067,2.48], + [37069,2.55], + [37071,2.58], + [37073,2.48], + [37075,2.47], + [37077,2.6], + [37079,2.59], + [37081,2.49], + [37083,2.37], + [37085,2.84], + [37087,2.27], + [37089,2.31], + [37091,2.46], + [37093,2.95], + [37095,2.36], + [37097,2.63], + [37099,2.33], + [37101,2.83], + [37103,2.34], + [37105,2.72], + [37107,2.39], + [37109,2.5], + [37111,2.43], + [37113,2.16], + [37115,2.42], + [37117,2.42], + [37119,2.58], + [37121,2.31], + [37123,2.56], + [37125,2.41], + [37127,2.48], + [37129,2.31], + [37131,2.24], + [37133,2.72], + [37135,2.49], + [37137,2.21], + [37139,2.52], + [37141,2.72], + [37143,2.25], + [37145,2.44], + [37147,2.46], + [37149,2.23], + [37151,2.51], + [37153,2.37], + [37155,2.81], + [37157,2.4], + [37159,2.57], + [37161,2.45], + [37163,2.66], + [37165,2.53], + [37167,2.55], + [37169,2.31], + [37171,2.43], + [37173,2.49], + [37175,2.23], + [37177,2.1], + [37179,3], + [37181,2.59], + [37183,2.62], + [37185,2.43], + [37187,2.37], + [37189,2.32], + [37191,2.49], + [37193,2.35], + [37195,2.5], + [37197,2.42], + [37199,2.35], + [38001,2.16], + [38003,2], + [38005,3.05], + [38007,2.33], + [38009,2.08], + [38011,2.27], + [38013,2.41], + [38015,2.32], + [38017,2.27], + [38019,2.13], + [38021,2.23], + [38023,2.1], + [38025,2.53], + [38027,2.08], + [38029,2.05], + [38031,2.22], + [38033,2.06], + [38035,2.16], + [38037,2.14], + [38039,2.12], + [38041,2.21], + [38043,2.26], + [38045,2.22], + [38047,2.11], + [38049,2.24], + [38051,1.93], + [38053,3.05], + [38055,2.18], + [38057,2.24], + [38059,2.23], + [38061,3.04], + [38063,1.93], + [38065,2.5], + [38067,2.14], + [38069,2.08], + [38071,2.3], + [38073,2.18], + [38075,2.52], + [38077,2.22], + [38079,3.11], + [38081,2.06], + [38083,1.93], + [38085,3.88], + [38087,2.28], + [38089,2.42], + [38091,2.24], + [38093,2.17], + [38095,2.07], + [38097,2.25], + [38099,2.17], + [38101,2.36], + [38103,2], + [38105,2.42], + [39001,2.57], + [39003,2.44], + [39005,2.51], + [39007,2.49], + [39009,2.49], + [39011,2.39], + [39013,2.47], + [39015,2.41], + [39017,2.65], + [39019,2.38], + [39021,2.51], + [39023,2.41], + [39025,2.59], + [39027,2.46], + [39029,2.39], + [39031,2.5], + [39033,2.32], + [39035,2.25], + [39037,2.44], + [39039,2.46], + [39041,2.84], + [39043,2.36], + [39045,2.69], + [39047,2.4], + [39049,2.47], + [39051,2.53], + [39053,2.52], + [39055,2.63], + [39057,2.4], + [39059,2.38], + [39061,2.33], + [39063,2.31], + [39065,2.49], + [39067,2.4], + [39069,2.43], + [39071,2.53], + [39073,2.46], + [39075,3.48], + [39077,2.5], + [39079,2.51], + [39081,2.33], + [39083,2.49], + [39085,2.35], + [39087,2.56], + [39089,2.65], + [39091,2.4], + [39093,2.48], + [39095,2.34], + [39097,2.58], + [39099,2.27], + [39101,2.41], + [39103,2.56], + [39105,2.53], + [39107,2.49], + [39109,2.54], + [39111,2.4], + [39113,2.29], + [39115,2.37], + [39117,2.69], + [39119,2.48], + [39121,2.38], + [39123,2.2], + [39125,2.43], + [39127,2.64], + [39129,2.7], + [39131,2.51], + [39133,2.51], + [39135,2.5], + [39137,2.52], + [39139,2.35], + [39141,2.47], + [39143,2.45], + [39145,2.43], + [39147,2.41], + [39149,2.6], + [39151,2.37], + [39153,2.37], + [39155,2.3], + [39157,2.49], + [39159,2.65], + [39161,2.42], + [39163,2.53], + [39165,2.67], + [39167,2.33], + [39169,2.56], + [39171,2.37], + [39173,2.44], + [39175,2.39], + [40001,2.86], + [40003,2.53], + [40005,2.34], + [40007,2.69], + [40009,2.66], + [40011,2.06], + [40013,2.64], + [40015,2.7], + [40017,3.08], + [40019,2.58], + [40021,2.8], + [40023,2.45], + [40025,2.21], + [40027,2.52], + [40029,2.48], + [40031,2.62], + [40033,2.61], + [40035,2.44], + [40037,2.67], + [40039,2.58], + [40041,2.51], + [40043,2.86], + [40045,2.45], + [40047,2.56], + [40049,2.63], + [40051,2.74], + [40053,2.47], + [40055,2.34], + [40057,2.35], + [40059,2.95], + [40061,2.56], + [40063,2.86], + [40065,2.5], + [40067,2.53], + [40069,2.53], + [40071,2.47], + [40073,2.77], + [40075,2.43], + [40077,2.44], + [40079,2.67], + [40081,2.7], + [40083,2.87], + [40085,3.05], + [40087,2.7], + [40089,2.58], + [40091,2.33], + [40093,2.43], + [40095,2.63], + [40097,2.53], + [40099,2.59], + [40101,2.47], + [40103,2.45], + [40105,2.47], + [40107,2.69], + [40109,2.56], + [40111,2.53], + [40113,2.51], + [40115,2.56], + [40117,2.62], + [40119,2.39], + [40121,2.35], + [40123,2.58], + [40125,2.67], + [40127,2.46], + [40129,2.65], + [40131,2.59], + [40133,2.6], + [40135,2.67], + [40137,2.58], + [40139,3], + [40141,2.51], + [40143,2.53], + [40145,2.7], + [40147,2.5], + [40149,2.59], + [40151,2.49], + [40153,2.62], + [41001,2.23], + [41003,2.39], + [41005,2.59], + [41007,2.43], + [41009,2.59], + [41011,2.32], + [41013,2.39], + [41015,2.12], + [41017,2.49], + [41019,2.36], + [41021,2.2], + [41023,2.07], + [41025,2.19], + [41027,2.58], + [41029,2.41], + [41031,2.78], + [41033,2.34], + [41035,2.36], + [41037,2.06], + [41039,2.4], + [41041,2.25], + [41043,2.59], + [41045,2.65], + [41047,2.79], + [41049,2.74], + [41051,2.41], + [41053,2.68], + [41055,2.18], + [41057,2.39], + [41059,2.69], + [41061,2.39], + [41063,2.14], + [41065,2.42], + [41067,2.66], + [41069,2.18], + [41071,2.7], + [42001,2.5], + [42003,2.19], + [42005,2.31], + [42007,2.29], + [42009,2.41], + [42011,2.62], + [42013,2.3], + [42015,2.41], + [42017,2.58], + [42019,2.37], + [42021,2.23], + [42023,2.07], + [42025,2.42], + [42027,2.46], + [42029,2.65], + [42031,2.34], + [42033,2.38], + [42035,2.54], + [42037,2.32], + [42039,2.34], + [42041,2.37], + [42043,2.39], + [42045,2.62], + [42047,2.13], + [42049,2.36], + [42051,2.3], + [42053,1.97], + [42055,2.51], + [42057,2.42], + [42059,2.34], + [42061,2.37], + [42063,2.38], + [42065,2.34], + [42067,2.6], + [42069,2.32], + [42071,2.63], + [42073,2.28], + [42075,2.55], + [42077,2.56], + [42079,2.37], + [42081,2.37], + [42083,2.24], + [42085,2.25], + [42087,2.39], + [42089,2.9], + [42091,2.53], + [42093,2.36], + [42095,2.55], + [42097,2.24], + [42099,2.49], + [42101,2.55], + [42103,2.49], + [42105,2.55], + [42107,2.3], + [42109,2.58], + [42111,2.33], + [42113,2.09], + [42115,2.36], + [42117,2.47], + [42119,2.46], + [42121,2.3], + [42123,2.28], + [42125,2.38], + [42127,2.52], + [42129,2.26], + [42131,2.46], + [42133,2.53], + [44001,2.34], + [44003,2.34], + [44005,2.27], + [44007,2.56], + [44009,2.43], + [45001,2.46], + [45003,2.45], + [45005,2.35], + [45007,2.55], + [45009,2.49], + [45011,2.52], + [45013,2.53], + [45015,2.75], + [45017,2.34], + [45019,2.45], + [45021,2.71], + [45023,2.54], + [45025,2.52], + [45027,2.47], + [45029,2.45], + [45031,2.48], + [45033,2.75], + [45035,2.83], + [45037,2.64], + [45039,2.42], + [45041,2.6], + [45043,2.41], + [45045,2.57], + [45047,2.46], + [45049,2.61], + [45051,2.5], + [45053,2.74], + [45055,2.59], + [45057,2.66], + [45059,2.52], + [45061,2.47], + [45063,2.54], + [45065,2.11], + [45067,2.69], + [45069,2.49], + [45071,2.5], + [45073,2.4], + [45075,2.57], + [45077,2.45], + [45079,2.51], + [45081,2.81], + [45083,2.57], + [45085,2.5], + [45087,2.36], + [45089,2.35], + [45091,2.59], + [46003,2.19], + [46005,2.35], + [46007,3.44], + [46009,2.16], + [46011,2.4], + [46013,2.31], + [46015,2.21], + [46017,3.59], + [46019,2.42], + [46021,2.2], + [46023,2.86], + [46025,2.33], + [46027,2.23], + [46029,2.27], + [46031,3.47], + [46033,2.15], + [46035,2.17], + [46037,2.08], + [46039,2.37], + [46041,3.5], + [46043,2.31], + [46045,2.46], + [46047,2.16], + [46049,2.25], + [46051,2.17], + [46053,2.25], + [46055,2.41], + [46057,2.59], + [46059,2.12], + [46061,3.25], + [46063,2.31], + [46065,2.2], + [46067,2.42], + [46069,2.14], + [46071,3.66], + [46073,2.14], + [46075,1.94], + [46077,2.13], + [46079,2.55], + [46081,2.18], + [46083,2.85], + [46085,2.7], + [46087,2.37], + [46089,2.09], + [46091,2.57], + [46093,2.44], + [46095,3.04], + [46097,2.29], + [46099,2.38], + [46101,2.35], + [46102,5.14], + [46103,2.42], + [46105,2.17], + [46107,2.27], + [46109,2.6], + [46111,2.31], + [46115,2.42], + [46117,2.24], + [46119,2.28], + [46121,3.75], + [46123,2.25], + [46125,2.32], + [46127,2.31], + [46129,2.24], + [46135,2.22], + [46137,3.7], + [47001,2.45], + [47003,2.8], + [47005,2.36], + [47007,2.79], + [47009,2.53], + [47011,2.55], + [47013,2.42], + [47015,2.55], + [47017,2.46], + [47019,2.3], + [47021,2.64], + [47023,2.63], + [47025,2.29], + [47027,2.48], + [47029,2.5], + [47031,2.52], + [47033,2.58], + [47035,2.27], + [47037,2.36], + [47039,2.58], + [47041,2.53], + [47043,2.71], + [47045,2.44], + [47047,2.54], + [47049,2.42], + [47051,2.43], + [47053,2.49], + [47055,2.39], + [47057,2.56], + [47059,2.44], + [47061,2.73], + [47063,2.58], + [47065,2.41], + [47067,2.34], + [47069,2.41], + [47071,2.49], + [47073,2.42], + [47075,2.42], + [47077,2.58], + [47079,2.37], + [47081,2.67], + [47083,2.76], + [47085,2.69], + [47087,2.51], + [47089,2.57], + [47091,2.32], + [47093,2.4], + [47095,2.05], + [47097,2.39], + [47099,2.69], + [47101,2.5], + [47103,2.48], + [47105,2.51], + [47107,2.49], + [47109,2.54], + [47111,2.56], + [47113,2.47], + [47115,2.46], + [47117,2.64], + [47119,2.62], + [47121,2.43], + [47123,2.53], + [47125,2.71], + [47127,2.44], + [47129,2.45], + [47131,2.35], + [47133,2.38], + [47135,2.54], + [47137,2.19], + [47139,2.24], + [47141,2.36], + [47143,2.61], + [47145,2.5], + [47147,2.69], + [47149,2.78], + [47151,2.49], + [47153,2.64], + [47155,2.58], + [47157,2.62], + [47159,2.57], + [47161,2.57], + [47163,2.32], + [47165,2.71], + [47167,2.83], + [47169,2.92], + [47171,2.25], + [47173,2.61], + [47175,2.64], + [47177,2.55], + [47179,2.28], + [47181,2.54], + [47183,2.27], + [47185,2.63], + [47187,2.89], + [47189,2.72], + [48001,2.66], + [48003,3.22], + [48005,2.72], + [48007,2.52], + [48009,2.5], + [48011,2.76], + [48013,3.16], + [48015,2.61], + [48017,3.35], + [48019,2.59], + [48021,3.22], + [48023,2.29], + [48025,3], + [48027,2.75], + [48029,3.02], + [48031,2.62], + [48033,2.7], + [48035,2.49], + [48037,2.57], + [48039,2.87], + [48041,2.61], + [48043,2.23], + [48045,2.42], + [48047,3.11], + [48049,2.5], + [48051,2.63], + [48053,2.74], + [48055,2.84], + [48057,2.82], + [48059,2.57], + [48061,3.36], + [48063,2.78], + [48065,2.6], + [48067,2.49], + [48069,3], + [48071,2.92], + [48073,2.7], + [48075,2.39], + [48077,2.52], + [48079,2.78], + [48081,1.95], + [48083,2.42], + [48085,2.84], + [48087,2.81], + [48089,2.8], + [48091,2.74], + [48093,2.43], + [48095,2.41], + [48097,2.57], + [48099,2.71], + [48101,2.32], + [48103,3.31], + [48105,2.52], + [48107,2.79], + [48109,3.76], + [48111,3.07], + [48113,2.78], + [48115,2.55], + [48117,3], + [48119,2.59], + [48121,2.83], + [48123,2.62], + [48125,2.47], + [48127,3.27], + [48129,2.27], + [48131,3.06], + [48133,2.66], + [48135,3.03], + [48137,2.42], + [48139,3], + [48141,3.06], + [48143,2.92], + [48145,2.99], + [48147,2.52], + [48149,2.7], + [48151,2.39], + [48153,2.54], + [48155,2.32], + [48157,3.19], + [48159,2.68], + [48161,2.67], + [48163,3.44], + [48165,3.54], + [48167,2.69], + [48169,2.72], + [48171,2.44], + [48173,3.75], + [48175,2.74], + [48177,2.77], + [48179,2.64], + [48181,2.65], + [48183,2.61], + [48185,2.72], + [48187,2.9], + [48189,2.89], + [48191,2.35], + [48193,2.7], + [48195,2.96], + [48197,2.45], + [48199,2.73], + [48201,2.87], + [48203,2.8], + [48205,2.46], + [48207,2.45], + [48209,2.81], + [48211,3.05], + [48213,2.59], + [48215,3.55], + [48217,2.67], + [48219,2.79], + [48221,2.6], + [48223,2.68], + [48225,2.4], + [48227,2.84], + [48229,3.71], + [48231,2.75], + [48233,3.06], + [48235,2.38], + [48237,2.44], + [48239,2.97], + [48241,2.67], + [48243,2.07], + [48245,2.56], + [48247,3.2], + [48249,3.12], + [48251,2.87], + [48253,2.24], + [48255,2.84], + [48257,3.22], + [48259,3.04], + [48261,2.86], + [48263,2.2], + [48265,2.34], + [48267,2.43], + [48269,3.08], + [48271,2.55], + [48273,2.66], + [48275,2.59], + [48277,2.47], + [48279,2.73], + [48281,2.64], + [48283,2.85], + [48285,2.5], + [48287,2.74], + [48289,2.66], + [48291,2.84], + [48293,2.68], + [48295,2.82], + [48297,2.85], + [48299,2.4], + [48301,3.27], + [48303,2.58], + [48305,2.68], + [48307,2.51], + [48309,2.68], + [48311,2.87], + [48313,2.59], + [48315,2.1], + [48317,3.3], + [48319,2.46], + [48321,2.63], + [48323,3.56], + [48325,3.03], + [48327,2.05], + [48329,2.92], + [48331,2.63], + [48333,2.63], + [48335,2.72], + [48337,2.45], + [48339,2.87], + [48341,3.15], + [48343,2.39], + [48345,2.56], + [48347,2.52], + [48349,2.77], + [48351,2.59], + [48353,2.71], + [48355,2.73], + [48357,2.89], + [48359,2.76], + [48361,2.63], + [48363,2.76], + [48365,2.65], + [48367,2.99], + [48369,3.01], + [48371,2.89], + [48373,2.51], + [48375,2.54], + [48377,2.74], + [48379,2.7], + [48381,2.66], + [48383,3.44], + [48385,2.92], + [48387,2.41], + [48389,3.87], + [48391,2.74], + [48393,2.67], + [48395,2.61], + [48397,2.92], + [48399,2.58], + [48401,2.7], + [48403,2.41], + [48405,2.33], + [48407,2.79], + [48409,2.89], + [48411,2.54], + [48413,2.77], + [48415,2.55], + [48417,2.48], + [48419,2.71], + [48421,2.97], + [48423,2.86], + [48425,2.73], + [48427,3.92], + [48429,2.75], + [48431,2.61], + [48433,2.46], + [48435,2.69], + [48437,2.7], + [48439,2.86], + [48441,2.61], + [48443,2.14], + [48445,2.84], + [48447,2.14], + [48449,2.98], + [48451,2.58], + [48453,2.54], + [48455,2.4], + [48457,2.66], + [48459,2.87], + [48461,2.7], + [48463,2.99], + [48465,2.98], + [48467,2.7], + [48469,2.82], + [48471,2.5], + [48473,3.11], + [48475,2.9], + [48477,2.6], + [48479,3.61], + [48481,2.7], + [48483,2.42], + [48485,2.41], + [48487,2.34], + [48489,3.52], + [48491,3.02], + [48493,3.09], + [48495,2.97], + [48497,2.92], + [48499,2.59], + [48501,3.3], + [48503,2.43], + [48505,3.17], + [48507,3.33], + [49001,2.83], + [49003,3.05], + [49005,3.16], + [49007,2.54], + [49009,3.09], + [49011,3.28], + [49013,2.88], + [49015,2.74], + [49017,2.69], + [49019,2.28], + [49021,2.97], + [49023,3.22], + [49025,2.77], + [49027,2.92], + [49029,3.47], + [49031,3.44], + [49033,3.75], + [49035,2.99], + [49037,3.46], + [49039,3.1], + [49041,2.84], + [49043,2.87], + [49045,3.27], + [49047,3.38], + [49049,3.55], + [49051,3.19], + [49053,2.87], + [49055,2.64], + [49057,2.97], + [50001,2.32], + [50003,2.35], + [50005,2.33], + [50007,2.31], + [50009,2.25], + [50011,2.62], + [50013,2.38], + [50015,2.34], + [50017,2.3], + [50019,2.21], + [50021,2.24], + [50023,2.26], + [50025,2.17], + [50027,2.24], + [51001,2.35], + [51003,2.42], + [51005,2.24], + [51007,2.59], + [51009,2.52], + [51011,2.57], + [51013,2.15], + [51015,2.4], + [51017,2.28], + [51019,2.49], + [51021,2.32], + [51023,2.49], + [51025,2.34], + [51027,2.44], + [51029,2.56], + [51031,2.37], + [51033,2.57], + [51035,2.4], + [51036,2.42], + [51037,2.55], + [51041,2.72], + [51043,2.54], + [51045,2.22], + [51047,2.91], + [51049,2.46], + [51051,2.47], + [51053,2.66], + [51057,2.38], + [51059,2.87], + [51061,2.82], + [51063,2.4], + [51065,2.55], + [51067,2.38], + [51069,2.7], + [51071,2.41], + [51073,2.5], + [51075,2.55], + [51077,2.25], + [51079,2.57], + [51081,2.26], + [51083,2.38], + [51085,2.66], + [51087,2.53], + [51089,2.38], + [51091,2.04], + [51093,2.49], + [51095,2.55], + [51097,2.6], + [51099,2.82], + [51101,2.74], + [51103,2.09], + [51105,2.45], + [51107,3.06], + [51109,2.59], + [51111,2.63], + [51113,2.62], + [51115,2.21], + [51117,2.46], + [51119,2.23], + [51121,2.49], + [51125,2.29], + [51127,2.65], + [51131,2.25], + [51133,2.18], + [51135,2.45], + [51137,2.59], + [51139,2.54], + [51141,2.24], + [51143,2.29], + [51145,2.55], + [51147,2.45], + [51149,2.96], + [51153,3.22], + [51155,2.27], + [51157,2.53], + [51159,2.36], + [51161,2.4], + [51163,2.42], + [51165,2.53], + [51167,2.46], + [51169,2.41], + [51171,2.46], + [51173,2.36], + [51175,2.5], + [51177,2.98], + [51179,3.04], + [51181,2.39], + [51183,2.38], + [51185,2.42], + [51187,2.64], + [51191,2.34], + [51193,2.22], + [51195,2.37], + [51197,2.39], + [51199,2.65], + [51510,2.21], + [51520,2.26], + [51530,2.36], + [51540,2.37], + [51550,2.76], + [51570,2.45], + [51580,2.31], + [51590,2.16], + [51595,2.49], + [51600,2.67], + [51610,2.56], + [51620,2.28], + [51630,2.42], + [51640,2.31], + [51650,2.41], + [51660,2.75], + [51670,2.41], + [51678,2.02], + [51680,2.48], + [51683,3.19], + [51685,3.66], + [51690,2.24], + [51700,2.44], + [51710,2.47], + [51720,2.4], + [51730,2.33], + [51735,2.62], + [51740,2.51], + [51750,2.64], + [51760,2.39], + [51770,2.33], + [51775,2.3], + [51790,2.18], + [51800,2.65], + [51810,2.58], + [51820,2.39], + [51830,2.24], + [51840,2.56], + [53001,3.24], + [53003,2.44], + [53005,2.72], + [53007,2.64], + [53009,2.25], + [53011,2.69], + [53013,2.18], + [53015,2.52], + [53017,2.73], + [53019,2.41], + [53021,3.36], + [53023,2.24], + [53025,3.07], + [53027,2.43], + [53029,2.31], + [53031,2.07], + [53033,2.45], + [53035,2.48], + [53037,2.36], + [53039,2.42], + [53041,2.52], + [53043,2.31], + [53045,2.58], + [53047,2.3], + [53049,2.31], + [53051,2.31], + [53053,2.65], + [53055,2.01], + [53057,2.55], + [53059,2.43], + [53061,2.68], + [53063,2.41], + [53065,2.53], + [53067,2.51], + [53069,2.22], + [53071,2.44], + [53073,2.49], + [53075,2.35], + [53077,2.96], + [54001,2.54], + [54003,2.6], + [54005,2.49], + [54007,2.46], + [54009,2.19], + [54011,2.31], + [54013,2.57], + [54015,2.64], + [54017,2.89], + [54019,2.41], + [54021,2.52], + [54023,2.49], + [54025,2.27], + [54027,2.45], + [54029,2.3], + [54031,2.42], + [54033,2.47], + [54035,2.53], + [54037,2.64], + [54039,2.28], + [54041,2.42], + [54043,2.53], + [54045,2.36], + [54047,2.26], + [54049,2.4], + [54051,2.51], + [54053,2.36], + [54055,2.33], + [54057,2.42], + [54059,2.3], + [54061,2.53], + [54063,2.33], + [54065,2.45], + [54067,2.48], + [54069,2.31], + [54071,2.16], + [54073,2.45], + [54075,2.31], + [54077,2.48], + [54079,2.61], + [54081,2.32], + [54083,2.4], + [54085,2.42], + [54087,2.5], + [54089,2.15], + [54091,2.49], + [54093,2.17], + [54095,2.72], + [54097,2.39], + [54099,2.65], + [54101,2.2], + [54103,2.65], + [54105,2.31], + [54107,2.37], + [54109,2.41], + [55001,2.09], + [55003,2.29], + [55005,2.35], + [55007,2.11], + [55009,2.41], + [55011,2.26], + [55013,2.07], + [55015,2.51], + [55017,2.39], + [55019,2.66], + [55021,2.31], + [55023,2.32], + [55025,2.34], + [55027,2.39], + [55029,2.06], + [55031,2.22], + [55033,2.44], + [55035,2.43], + [55037,2.19], + [55039,2.39], + [55041,2.17], + [55043,2.45], + [55045,2.42], + [55047,2.32], + [55049,2.38], + [55051,1.92], + [55053,2.36], + [55055,2.46], + [55057,2.28], + [55059,2.56], + [55061,2.42], + [55063,2.37], + [55065,2.47], + [55067,2.2], + [55069,2.14], + [55071,2.26], + [55073,2.41], + [55075,2.14], + [55077,2.27], + [55078,3.2], + [55079,2.43], + [55081,2.51], + [55083,2.33], + [55085,2.25], + [55087,2.48], + [55089,2.43], + [55091,2.34], + [55093,2.52], + [55095,2.33], + [55097,2.35], + [55099,1.98], + [55101,2.47], + [55103,2.26], + [55105,2.46], + [55107,2.18], + [55109,2.57], + [55111,2.41], + [55113,2.06], + [55115,2.37], + [55117,2.35], + [55119,2.34], + [55121,2.42], + [55123,2.5], + [55125,1.97], + [55127,2.45], + [55129,2.14], + [55131,2.47], + [55133,2.49], + [55135,2.23], + [55137,2.31], + [55139,2.3], + [55141,2.23], + [56001,2.26], + [56003,2.6], + [56005,2.66], + [56007,2.33], + [56009,2.58], + [56011,2.53], + [56013,2.61], + [56015,2.42], + [56017,2.13], + [56019,2.18], + [56021,2.43], + [56023,2.77], + [56025,2.4], + [56027,2.22], + [56029,2.33], + [56031,2.1], + [56033,2.2], + [56035,2.94], + [56037,2.77], + [56039,2.47], + [56041,2.66], + [56043,2.34], + [56045,2.32] + ] +} diff --git a/data/regional/united-states/demographics/migration/us-migration-foreignborn-2010.json b/data/regional/united-states/demographics/migration/us-migration-foreignborn-2010.json new file mode 100644 index 0000000..4a8cb36 --- /dev/null +++ b/data/regional/united-states/demographics/migration/us-migration-foreignborn-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Foreign-Born Population", + "description" : "Percent of the population that is foreign-born between 2006-2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","migration","international"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.migration.foreignborn.2010"], + [1001,0.02], + [1003,0.036], + [1005,0.028], + [1007,0.007], + [1009,0.047], + [1011,0.011], + [1013,0.011], + [1015,0.025], + [1017,0.009], + [1019,0.005], + [1021,0.04], + [1023,0.003], + [1025,0.002], + [1027,0.02], + [1029,0.012], + [1031,0.046], + [1033,0.016], + [1035,0], + [1037,0.006], + [1039,0.015], + [1041,0.041], + [1043,0.026], + [1045,0.036], + [1047,0.007], + [1049,0.072], + [1051,0.022], + [1053,0.011], + [1055,0.023], + [1057,0.005], + [1059,0.079], + [1061,0.016], + [1063,0.009], + [1065,0.009], + [1067,0.025], + [1069,0.022], + [1071,0.015], + [1073,0.041], + [1075,0.002], + [1077,0.018], + [1079,0.017], + [1081,0.049], + [1083,0.035], + [1085,0.003], + [1087,0.005], + [1089,0.055], + [1091,0.003], + [1093,0.015], + [1095,0.074], + [1097,0.032], + [1099,0.013], + [1101,0.039], + [1103,0.051], + [1105,0.001], + [1107,0.005], + [1109,0.039], + [1111,0.015], + [1113,0.015], + [1115,0.019], + [1117,0.056], + [1119,0.001], + [1121,0.019], + [1123,0.015], + [1125,0.033], + [1127,0.011], + [1129,0.005], + [1131,0.003], + [1133,0.015], + [2013,0.722], + [2016,0.544], + [2020,0.092], + [2050,0.006], + [2060,0.008], + [2068,0.049], + [2070,0.015], + [2090,0.051], + [2100,0.006], + [2105,0.023], + [2110,0.069], + [2122,0.033], + [2130,0.072], + [2150,0.165], + [2158,0.001], + [2164,0.018], + [2170,0.032], + [2180,0.011], + [2185,0.034], + [2188,0.012], + [2195,0.025], + [2198,0.024], + [2220,0.073], + [2230,0.141], + [2240,0.051], + [2261,0.049], + [2275,0.019], + [2282,0.022], + [2290,0.009], + [4001,0.016], + [4003,0.123], + [4005,0.057], + [4007,0.031], + [4009,0.05], + [4011,0.044], + [4012,0.122], + [4013,0.159], + [4015,0.064], + [4017,0.026], + [4019,0.132], + [4021,0.105], + [4023,0.335], + [4025,0.072], + [4027,0.256], + [5001,0.016], + [5003,0.02], + [5005,0.019], + [5007,0.095], + [5009,0.01], + [5011,0.068], + [5013,0.014], + [5015,0.073], + [5017,0.023], + [5019,0.022], + [5021,0.004], + [5023,0.014], + [5025,0.003], + [5027,0.023], + [5029,0.019], + [5031,0.032], + [5033,0.038], + [5035,0.01], + [5037,0.002], + [5039,0.002], + [5041,0.019], + [5043,0.017], + [5045,0.036], + [5047,0.01], + [5049,0.004], + [5051,0.043], + [5053,0.013], + [5055,0.01], + [5057,0.057], + [5059,0.008], + [5061,0.058], + [5063,0.04], + [5065,0.018], + [5067,0.009], + [5069,0.015], + [5071,0.067], + [5073,0.005], + [5075,0.004], + [5077,0.014], + [5079,0.011], + [5081,0.003], + [5083,0.012], + [5085,0.017], + [5087,0.022], + [5089,0.02], + [5091,0.017], + [5093,0.022], + [5095,0.012], + [5097,0.011], + [5099,0.004], + [5101,0.009], + [5103,0.008], + [5105,0.006], + [5107,0.003], + [5109,0.026], + [5111,0.008], + [5113,0.028], + [5115,0.032], + [5117,0.001], + [5119,0.053], + [5121,0.014], + [5123,0.019], + [5125,0.023], + [5127,0.047], + [5129,0.01], + [5131,0.09], + [5133,0.169], + [5135,0.006], + [5137,0.007], + [5139,0.021], + [5141,0.012], + [5143,0.109], + [5145,0.023], + [5147,0.006], + [5149,0.131], + [6001,0.308], + [6003,0.05], + [6005,0.061], + [6007,0.079], + [6009,0.041], + [6011,0.253], + [6013,0.236], + [6015,0.073], + [6017,0.079], + [6019,0.217], + [6021,0.157], + [6023,0.054], + [6025,0.319], + [6027,0.102], + [6029,0.205], + [6031,0.215], + [6033,0.089], + [6035,0.072], + [6037,0.356], + [6039,0.206], + [6041,0.188], + [6043,0.037], + [6045,0.116], + [6047,0.248], + [6049,0.066], + [6051,0.184], + [6053,0.301], + [6055,0.225], + [6057,0.055], + [6059,0.305], + [6061,0.101], + [6063,0.057], + [6065,0.224], + [6067,0.196], + [6069,0.213], + [6071,0.216], + [6073,0.231], + [6075,0.356], + [6077,0.233], + [6079,0.1], + [6081,0.34], + [6083,0.237], + [6085,0.37], + [6087,0.184], + [6089,0.051], + [6091,0.053], + [6093,0.058], + [6095,0.199], + [6097,0.166], + [6099,0.204], + [6101,0.223], + [6103,0.108], + [6105,0.031], + [6107,0.231], + [6109,0.039], + [6111,0.229], + [6113,0.204], + [6115,0.131], + [8001,0.151], + [8003,0.06], + [8005,0.149], + [8007,0.017], + [8009,0.027], + [8011,0.046], + [8013,0.112], + [8014,0.08], + [8015,0.032], + [8017,0.054], + [8019,0.031], + [8021,0.042], + [8023,0.095], + [8025,0.061], + [8027,0.022], + [8029,0.047], + [8031,0.166], + [8033,0.002], + [8035,0.059], + [8037,0.199], + [8039,0.026], + [8041,0.072], + [8043,0.065], + [8045,0.167], + [8047,0.029], + [8049,0.048], + [8051,0.055], + [8053,0.029], + [8055,0.043], + [8057,0.016], + [8059,0.064], + [8061,0.01], + [8063,0.102], + [8065,0.15], + [8067,0.032], + [8069,0.053], + [8071,0.037], + [8073,0.047], + [8075,0.047], + [8077,0.042], + [8079,0.019], + [8081,0.061], + [8083,0.022], + [8085,0.077], + [8087,0.136], + [8089,0.04], + [8091,0.028], + [8093,0.04], + [8095,0.102], + [8097,0.126], + [8099,0.1], + [8101,0.034], + [8103,0.062], + [8105,0.052], + [8107,0.038], + [8109,0.124], + [8111,0.02], + [8113,0.084], + [8115,0.023], + [8117,0.122], + [8119,0.021], + [8121,0.042], + [8123,0.095], + [8125,0.117], + [9001,0.201], + [9003,0.142], + [9005,0.063], + [9007,0.078], + [9009,0.114], + [9011,0.083], + [9013,0.067], + [9015,0.046], + [10001,0.052], + [10003,0.096], + [10005,0.068], + [11001,0.13], + [12001,0.102], + [12003,0.01], + [12005,0.054], + [12007,0.017], + [12009,0.086], + [12011,0.309], + [12013,0.036], + [12015,0.092], + [12017,0.053], + [12019,0.059], + [12021,0.236], + [12023,0.033], + [12027,0.196], + [12029,0.026], + [12031,0.09], + [12033,0.059], + [12035,0.121], + [12037,0.031], + [12039,0.056], + [12041,0.026], + [12043,0.163], + [12045,0.032], + [12047,0.05], + [12049,0.213], + [12051,0.278], + [12053,0.066], + [12055,0.113], + [12057,0.151], + [12059,0.023], + [12061,0.105], + [12063,0.031], + [12065,0.039], + [12067,0.043], + [12069,0.087], + [12071,0.153], + [12073,0.065], + [12075,0.044], + [12077,0.01], + [12079,0.038], + [12081,0.123], + [12083,0.078], + [12085,0.104], + [12086,0.511], + [12087,0.162], + [12089,0.027], + [12091,0.068], + [12093,0.121], + [12095,0.191], + [12097,0.197], + [12099,0.223], + [12101,0.092], + [12103,0.112], + [12105,0.107], + [12107,0.042], + [12109,0.063], + [12111,0.156], + [12113,0.047], + [12115,0.116], + [12117,0.115], + [12119,0.059], + [12121,0.058], + [12123,0.021], + [12125,0.058], + [12127,0.077], + [12129,0.02], + [12131,0.049], + [12133,0.033], + [13001,0.069], + [13003,0.113], + [13005,0.049], + [13007,0], + [13009,0.027], + [13011,0.032], + [13013,0.067], + [13015,0.051], + [13017,0.042], + [13019,0.025], + [13021,0.036], + [13023,0.019], + [13025,0.009], + [13027,0.037], + [13029,0.044], + [13031,0.035], + [13033,0.005], + [13035,0.02], + [13037,0.035], + [13039,0.023], + [13043,0.052], + [13045,0.047], + [13047,0.02], + [13049,0.002], + [13051,0.058], + [13053,0.056], + [13055,0.027], + [13057,0.084], + [13059,0.11], + [13061,0], + [13063,0.146], + [13065,0.006], + [13067,0.152], + [13069,0.059], + [13071,0.106], + [13073,0.063], + [13075,0.034], + [13077,0.054], + [13079,0.018], + [13081,0.012], + [13083,0.02], + [13085,0.032], + [13087,0.023], + [13089,0.163], + [13091,0.014], + [13093,0.028], + [13095,0.022], + [13097,0.084], + [13099,0.004], + [13101,0.177], + [13103,0.02], + [13105,0.03], + [13107,0.035], + [13109,0.074], + [13111,0.018], + [13113,0.088], + [13115,0.067], + [13117,0.128], + [13119,0.025], + [13121,0.13], + [13123,0.056], + [13125,0.007], + [13127,0.052], + [13129,0.089], + [13131,0.061], + [13133,0.028], + [13135,0.255], + [13137,0.085], + [13139,0.162], + [13141,0.028], + [13143,0.01], + [13145,0.025], + [13147,0.02], + [13149,0.009], + [13151,0.075], + [13153,0.05], + [13155,0.02], + [13157,0.045], + [13159,0.031], + [13161,0.046], + [13163,0.016], + [13165,0.044], + [13167,0.011], + [13169,0.024], + [13171,0.014], + [13173,0.034], + [13175,0.021], + [13177,0.024], + [13179,0.066], + [13181,0.007], + [13183,0.042], + [13185,0.041], + [13187,0.038], + [13189,0.013], + [13191,0.014], + [13193,0.033], + [13195,0.026], + [13197,0.044], + [13199,0.009], + [13201,0.014], + [13205,0.023], + [13207,0.015], + [13209,0.047], + [13211,0.024], + [13213,0.081], + [13215,0.049], + [13217,0.059], + [13219,0.055], + [13221,0.02], + [13223,0.04], + [13225,0.046], + [13227,0.031], + [13229,0.02], + [13231,0.011], + [13233,0.07], + [13235,0.008], + [13237,0.043], + [13239,0.004], + [13241,0.061], + [13243,0.019], + [13245,0.037], + [13247,0.116], + [13249,0.032], + [13251,0.008], + [13253,0.013], + [13255,0.03], + [13257,0.029], + [13259,0.004], + [13261,0.039], + [13263,0.002], + [13265,0.026], + [13267,0.064], + [13269,0.011], + [13271,0.122], + [13273,0.025], + [13275,0.021], + [13277,0.065], + [13279,0.061], + [13281,0.02], + [13283,0.007], + [13285,0.033], + [13287,0.018], + [13289,0.009], + [13291,0.022], + [13293,0.02], + [13295,0.011], + [13297,0.038], + [13299,0.03], + [13301,0.001], + [13303,0.012], + [13305,0.04], + [13307,0.034], + [13309,0.009], + [13311,0.019], + [13313,0.186], + [13315,0.007], + [13317,0.014], + [13319,0.009], + [13321,0.011], + [15001,0.112], + [15003,0.195], + [15005,0.176], + [15007,0.137], + [15009,0.158], + [16001,0.058], + [16003,0.01], + [16005,0.029], + [16007,0.003], + [16009,0.012], + [16011,0.064], + [16013,0.15], + [16015,0.023], + [16017,0.028], + [16019,0.051], + [16021,0.029], + [16023,0.02], + [16025,0.09], + [16027,0.091], + [16029,0.032], + [16031,0.099], + [16033,0.294], + [16035,0.018], + [16037,0.012], + [16039,0.083], + [16041,0.028], + [16043,0.065], + [16045,0.048], + [16047,0.146], + [16049,0.014], + [16051,0.046], + [16053,0.161], + [16055,0.026], + [16057,0.039], + [16059,0.012], + [16061,0.021], + [16063,0.142], + [16065,0.03], + [16067,0.109], + [16069,0.017], + [16071,0.001], + [16073,0.139], + [16075,0.039], + [16077,0.129], + [16079,0.013], + [16081,0.091], + [16083,0.077], + [16085,0.025], + [16087,0.083], + [17001,0.011], + [17003,0.019], + [17005,0.011], + [17007,0.101], + [17009,0.027], + [17011,0.03], + [17013,0.026], + [17015,0.019], + [17017,0.087], + [17019,0.109], + [17021,0.018], + [17023,0.009], + [17025,0.008], + [17027,0.014], + [17029,0.016], + [17031,0.21], + [17033,0.018], + [17035,0.003], + [17037,0.07], + [17039,0.017], + [17041,0.042], + [17043,0.183], + [17045,0.006], + [17047,0.006], + [17049,0.009], + [17051,0.017], + [17053,0.018], + [17055,0.005], + [17057,0.025], + [17059,0.004], + [17061,0.007], + [17063,0.037], + [17065,0.001], + [17067,0.008], + [17069,0.011], + [17071,0.028], + [17073,0.02], + [17075,0.026], + [17077,0.05], + [17079,0.005], + [17081,0.012], + [17083,0.009], + [17085,0.038], + [17087,0.023], + [17089,0.179], + [17091,0.045], + [17093,0.084], + [17095,0.02], + [17097,0.18], + [17099,0.036], + [17101,0.015], + [17103,0.02], + [17105,0.017], + [17107,0.011], + [17109,0.031], + [17111,0.098], + [17113,0.052], + [17115,0.021], + [17117,0.01], + [17119,0.022], + [17121,0.011], + [17123,0.019], + [17125,0.015], + [17127,0.007], + [17129,0.003], + [17131,0.007], + [17133,0.009], + [17135,0.013], + [17137,0.011], + [17139,0.013], + [17141,0.05], + [17143,0.042], + [17145,0.015], + [17147,0.013], + [17149,0.01], + [17151,0.016], + [17153,0.04], + [17155,0.02], + [17157,0.013], + [17159,0.014], + [17161,0.063], + [17163,0.024], + [17165,0.01], + [17167,0.029], + [17169,0.028], + [17171,0.008], + [17173,0.01], + [17175,0.009], + [17177,0.023], + [17179,0.015], + [17181,0.024], + [17183,0.022], + [17185,0.008], + [17187,0.042], + [17189,0.005], + [17191,0.009], + [17193,0.012], + [17195,0.028], + [17197,0.114], + [17199,0.015], + [17201,0.076], + [17203,0.015], + [18001,0.009], + [18003,0.054], + [18005,0.07], + [18007,0.012], + [18009,0.006], + [18011,0.026], + [18013,0.011], + [18015,0.017], + [18017,0.072], + [18019,0.032], + [18021,0.01], + [18023,0.069], + [18025,0.003], + [18027,0.026], + [18029,0.012], + [18031,0.02], + [18033,0.015], + [18035,0.021], + [18037,0.032], + [18039,0.085], + [18041,0.01], + [18043,0.021], + [18045,0.015], + [18047,0.008], + [18049,0.019], + [18051,0.007], + [18053,0.016], + [18055,0.009], + [18057,0.065], + [18059,0.017], + [18061,0.009], + [18063,0.035], + [18065,0.007], + [18067,0.019], + [18069,0.008], + [18071,0.046], + [18073,0.019], + [18075,0.01], + [18077,0.023], + [18079,0.016], + [18081,0.032], + [18083,0.018], + [18085,0.043], + [18087,0.019], + [18089,0.067], + [18091,0.032], + [18093,0.009], + [18095,0.018], + [18097,0.079], + [18099,0.043], + [18101,0.011], + [18103,0.013], + [18105,0.072], + [18107,0.029], + [18109,0.012], + [18111,0.029], + [18113,0.053], + [18115,0.003], + [18117,0.008], + [18119,0.011], + [18121,0.011], + [18123,0.003], + [18125,0.005], + [18127,0.035], + [18129,0.011], + [18131,0.005], + [18133,0.018], + [18135,0.011], + [18137,0.016], + [18139,0.003], + [18141,0.056], + [18143,0.009], + [18145,0.029], + [18147,0.017], + [18149,0.016], + [18151,0.02], + [18153,0.006], + [18155,0.012], + [18157,0.101], + [18159,0.013], + [18161,0.011], + [18163,0.025], + [18165,0.004], + [18167,0.028], + [18169,0.011], + [18171,0.018], + [18173,0.026], + [18175,0.006], + [18177,0.02], + [18179,0.011], + [18181,0.046], + [18183,0.009], + [19001,0.005], + [19003,0.003], + [19005,0.049], + [19007,0.007], + [19009,0.006], + [19011,0.01], + [19013,0.044], + [19015,0.008], + [19017,0.013], + [19019,0.008], + [19021,0.153], + [19023,0.009], + [19025,0.007], + [19027,0.006], + [19029,0.012], + [19031,0.012], + [19033,0.022], + [19035,0.012], + [19037,0.016], + [19039,0.052], + [19041,0.02], + [19043,0.017], + [19045,0.012], + [19047,0.123], + [19049,0.064], + [19051,0.006], + [19053,0.027], + [19055,0.004], + [19057,0.02], + [19059,0.011], + [19061,0.017], + [19063,0.037], + [19065,0.012], + [19067,0.018], + [19069,0.053], + [19071,0.011], + [19073,0.014], + [19075,0.004], + [19077,0.011], + [19079,0.022], + [19081,0.015], + [19083,0.018], + [19085,0.009], + [19087,0.048], + [19089,0.01], + [19091,0.016], + [19093,0.007], + [19095,0.006], + [19097,0.006], + [19099,0.01], + [19101,0.124], + [19103,0.082], + [19105,0.009], + [19107,0.008], + [19109,0.007], + [19111,0.014], + [19113,0.029], + [19115,0.074], + [19117,0.031], + [19119,0.007], + [19121,0.006], + [19123,0.014], + [19125,0.016], + [19127,0.096], + [19129,0.017], + [19131,0.01], + [19133,0.01], + [19135,0.015], + [19137,0.02], + [19139,0.075], + [19141,0.022], + [19143,0.028], + [19145,0.02], + [19147,0.006], + [19149,0.013], + [19151,0.012], + [19153,0.078], + [19155,0.034], + [19157,0.023], + [19159,0.018], + [19161,0.019], + [19163,0.035], + [19165,0.005], + [19167,0.059], + [19169,0.081], + [19171,0.033], + [19173,0.024], + [19175,0.005], + [19177,0.011], + [19179,0.055], + [19181,0.011], + [19183,0.028], + [19185,0.028], + [19187,0.021], + [19189,0.031], + [19191,0.02], + [19193,0.08], + [19195,0.007], + [19197,0.043], + [20001,0.006], + [20003,0.006], + [20005,0.004], + [20007,0.006], + [20009,0.064], + [20011,0.007], + [20013,0.014], + [20015,0.014], + [20017,0.009], + [20019,0.017], + [20021,0.004], + [20023,0.013], + [20025,0.015], + [20027,0.013], + [20029,0.008], + [20031,0.009], + [20033,0.024], + [20035,0.035], + [20037,0.038], + [20039,0.006], + [20041,0.008], + [20043,0.013], + [20045,0.062], + [20047,0.086], + [20049,0.005], + [20051,0.016], + [20053,0.023], + [20055,0.204], + [20057,0.246], + [20059,0.014], + [20061,0.077], + [20063,0.008], + [20065,0.008], + [20067,0.155], + [20069,0.138], + [20071,0.08], + [20073,0.006], + [20075,0.132], + [20077,0.018], + [20079,0.046], + [20081,0.118], + [20083,0.034], + [20085,0.006], + [20087,0.003], + [20089,0.013], + [20091,0.079], + [20093,0.143], + [20095,0.007], + [20097,0.021], + [20099,0.012], + [20101,0.008], + [20103,0.031], + [20105,0.009], + [20107,0.009], + [20109,0.02], + [20111,0.107], + [20113,0.018], + [20115,0.014], + [20117,0.008], + [20119,0.065], + [20121,0.01], + [20123,0.007], + [20125,0.024], + [20127,0.018], + [20129,0.05], + [20131,0.004], + [20133,0.023], + [20135,0.026], + [20137,0.021], + [20139,0.008], + [20141,0.007], + [20143,0.003], + [20145,0.009], + [20147,0.008], + [20149,0.028], + [20151,0.025], + [20153,0.021], + [20155,0.021], + [20157,0.015], + [20159,0.042], + [20161,0.066], + [20163,0.002], + [20165,0.015], + [20167,0.013], + [20169,0.048], + [20171,0.114], + [20173,0.076], + [20175,0.301], + [20177,0.043], + [20179,0.005], + [20181,0.043], + [20183,0.007], + [20185,0.058], + [20187,0.239], + [20189,0.186], + [20191,0.006], + [20193,0.027], + [20195,0.011], + [20197,0.007], + [20199,0.024], + [20201,0.021], + [20203,0.102], + [20205,0.002], + [20207,0.004], + [20209,0.142], + [21001,0.007], + [21003,0.017], + [21005,0.017], + [21007,0.011], + [21009,0.015], + [21011,0.003], + [21013,0.003], + [21015,0.044], + [21017,0.042], + [21019,0.011], + [21021,0.028], + [21023,0.007], + [21025,0.006], + [21027,0.004], + [21029,0.01], + [21031,0.014], + [21033,0.01], + [21035,0.031], + [21037,0.018], + [21039,0.004], + [21041,0.046], + [21043,0.002], + [21045,0.013], + [21047,0.029], + [21049,0.013], + [21051,0.011], + [21053,0.018], + [21055,0.006], + [21057,0.001], + [21059,0.018], + [21061,0.01], + [21063,0], + [21065,0.003], + [21067,0.085], + [21069,0.005], + [21071,0.004], + [21073,0.032], + [21075,0.005], + [21077,0.041], + [21079,0.013], + [21081,0.011], + [21083,0.032], + [21085,0.004], + [21087,0.013], + [21089,0.011], + [21091,0.005], + [21093,0.042], + [21095,0.002], + [21097,0.012], + [21099,0.005], + [21101,0.012], + [21103,0.016], + [21105,0.005], + [21107,0.013], + [21109,0.001], + [21111,0.057], + [21113,0.032], + [21115,0.004], + [21117,0.027], + [21119,0.005], + [21121,0.008], + [21123,0.015], + [21125,0.008], + [21127,0.003], + [21129,0.004], + [21131,0.003], + [21133,0.004], + [21135,0.003], + [21137,0.001], + [21139,0.007], + [21141,0.034], + [21143,0.002], + [21145,0.018], + [21147,0.008], + [21149,0.003], + [21151,0.026], + [21153,0], + [21155,0.017], + [21157,0.009], + [21159,0.001], + [21161,0.011], + [21163,0.013], + [21165,0], + [21167,0.007], + [21169,0.015], + [21171,0.02], + [21173,0.011], + [21175,0.006], + [21177,0.008], + [21179,0.016], + [21181,0.006], + [21183,0.013], + [21185,0.036], + [21187,0.01], + [21189,0.001], + [21191,0], + [21193,0.004], + [21195,0.006], + [21197,0.003], + [21199,0.013], + [21201,0.002], + [21203,0.004], + [21205,0.014], + [21207,0.017], + [21209,0.026], + [21211,0.057], + [21213,0.012], + [21215,0.017], + [21217,0.018], + [21219,0.016], + [21221,0.008], + [21223,0.02], + [21225,0.015], + [21227,0.075], + [21229,0.014], + [21231,0.014], + [21233,0.021], + [21235,0.007], + [21237,0.003], + [21239,0.059], + [22001,0.007], + [22003,0.03], + [22005,0.028], + [22007,0.007], + [22009,0.008], + [22011,0.014], + [22013,0.003], + [22015,0.039], + [22017,0.022], + [22019,0.022], + [22021,0.004], + [22023,0.005], + [22025,0.004], + [22027,0.008], + [22029,0.009], + [22031,0.014], + [22033,0.049], + [22035,0.002], + [22037,0.009], + [22039,0.022], + [22041,0.001], + [22043,0.019], + [22045,0.034], + [22047,0.011], + [22049,0.008], + [22051,0.107], + [22053,0.007], + [22055,0.038], + [22057,0.022], + [22059,0.008], + [22061,0.04], + [22063,0.016], + [22065,0.001], + [22067,0.003], + [22069,0.012], + [22071,0.06], + [22073,0.014], + [22075,0.029], + [22077,0.016], + [22079,0.023], + [22081,0.003], + [22083,0.004], + [22085,0.011], + [22087,0.059], + [22089,0.032], + [22091,0.002], + [22093,0.008], + [22095,0.034], + [22097,0.009], + [22099,0.015], + [22101,0.037], + [22103,0.033], + [22105,0.018], + [22107,0.003], + [22109,0.028], + [22111,0.019], + [22113,0.024], + [22115,0.039], + [22117,0.007], + [22119,0.008], + [22121,0.013], + [22123,0.017], + [22125,0.014], + [22127,0.008], + [23001,0.034], + [23003,0.049], + [23005,0.055], + [23007,0.02], + [23009,0.023], + [23011,0.023], + [23013,0.02], + [23015,0.018], + [23017,0.016], + [23019,0.027], + [23021,0.017], + [23023,0.025], + [23025,0.018], + [23027,0.013], + [23029,0.04], + [23031,0.031], + [24001,0.015], + [24003,0.075], + [24005,0.103], + [24009,0.035], + [24011,0.047], + [24013,0.035], + [24015,0.029], + [24017,0.049], + [24019,0.033], + [24021,0.091], + [24023,0.008], + [24025,0.046], + [24027,0.173], + [24029,0.042], + [24031,0.309], + [24033,0.194], + [24035,0.034], + [24037,0.038], + [24039,0.039], + [24041,0.045], + [24043,0.038], + [24045,0.065], + [24047,0.043], + [24510,0.07], + [25001,0.067], + [25003,0.045], + [25005,0.12], + [25007,0.108], + [25009,0.145], + [25011,0.041], + [25013,0.087], + [25015,0.08], + [25017,0.184], + [25019,0.148], + [25021,0.15], + [25023,0.079], + [25025,0.277], + [25027,0.107], + [26001,0.015], + [26003,0.026], + [26005,0.031], + [26007,0.014], + [26009,0.019], + [26011,0.01], + [26013,0.012], + [26015,0.012], + [26017,0.015], + [26019,0.017], + [26021,0.057], + [26023,0.033], + [26025,0.036], + [26027,0.021], + [26029,0.024], + [26031,0.01], + [26033,0.026], + [26035,0.006], + [26037,0.024], + [26039,0.021], + [26041,0.013], + [26043,0.012], + [26045,0.038], + [26047,0.021], + [26049,0.023], + [26051,0.015], + [26053,0.02], + [26055,0.016], + [26057,0.015], + [26059,0.011], + [26061,0.044], + [26063,0.019], + [26065,0.082], + [26067,0.017], + [26069,0.021], + [26071,0.012], + [26073,0.027], + [26075,0.018], + [26077,0.044], + [26079,0.011], + [26081,0.073], + [26083,0.008], + [26085,0.005], + [26087,0.026], + [26089,0.027], + [26091,0.024], + [26093,0.03], + [26095,0.028], + [26097,0.034], + [26099,0.097], + [26101,0.017], + [26103,0.018], + [26105,0.019], + [26107,0.018], + [26109,0.017], + [26111,0.035], + [26113,0.014], + [26115,0.018], + [26117,0.01], + [26119,0.015], + [26121,0.021], + [26123,0.025], + [26125,0.112], + [26127,0.062], + [26129,0.009], + [26131,0.009], + [26133,0.011], + [26135,0.016], + [26137,0.013], + [26139,0.056], + [26141,0.015], + [26143,0.02], + [26145,0.021], + [26147,0.023], + [26149,0.035], + [26151,0.013], + [26153,0.014], + [26155,0.011], + [26157,0.009], + [26159,0.042], + [26161,0.111], + [26163,0.076], + [26165,0.014], + [27001,0.011], + [27003,0.069], + [27005,0.013], + [27007,0.026], + [27009,0.016], + [27011,0.005], + [27013,0.04], + [27015,0.016], + [27017,0.018], + [27019,0.057], + [27021,0.011], + [27023,0.03], + [27025,0.016], + [27027,0.033], + [27029,0.016], + [27031,0.017], + [27033,0.042], + [27035,0.011], + [27037,0.079], + [27039,0.024], + [27041,0.011], + [27043,0.014], + [27045,0.011], + [27047,0.031], + [27049,0.022], + [27051,0.016], + [27053,0.126], + [27055,0.012], + [27057,0.012], + [27059,0.014], + [27061,0.011], + [27063,0.027], + [27065,0.008], + [27067,0.047], + [27069,0.031], + [27071,0.042], + [27073,0.013], + [27075,0.018], + [27077,0.025], + [27079,0.024], + [27081,0.016], + [27083,0.049], + [27085,0.029], + [27087,0.01], + [27089,0.022], + [27091,0.016], + [27093,0.015], + [27095,0.014], + [27097,0.01], + [27099,0.068], + [27101,0.014], + [27103,0.029], + [27105,0.15], + [27107,0.013], + [27109,0.094], + [27111,0.027], + [27113,0.019], + [27115,0.015], + [27117,0.032], + [27119,0.023], + [27121,0.006], + [27123,0.13], + [27125,0.014], + [27127,0.021], + [27129,0.027], + [27131,0.061], + [27133,0.012], + [27135,0.022], + [27137,0.019], + [27139,0.082], + [27141,0.025], + [27143,0.037], + [27145,0.039], + [27147,0.036], + [27149,0.033], + [27151,0.021], + [27153,0.034], + [27155,0.022], + [27157,0.016], + [27159,0.01], + [27161,0.025], + [27163,0.061], + [27165,0.12], + [27167,0.006], + [27169,0.032], + [27171,0.027], + [27173,0.014], + [28001,0.008], + [28003,0.017], + [28005,0.002], + [28007,0.012], + [28009,0.019], + [28011,0.007], + [28013,0.031], + [28015,0.009], + [28017,0.016], + [28019,0.004], + [28021,0.001], + [28023,0.006], + [28025,0.002], + [28027,0.008], + [28029,0.016], + [28031,0.005], + [28033,0.035], + [28035,0.028], + [28037,0.009], + [28039,0.016], + [28041,0.014], + [28043,0.012], + [28045,0.035], + [28047,0.052], + [28049,0.019], + [28051,0.002], + [28053,0.003], + [28055,0], + [28057,0.003], + [28059,0.032], + [28061,0.003], + [28063,0], + [28065,0.01], + [28067,0.027], + [28069,0.003], + [28071,0.038], + [28073,0.022], + [28075,0.017], + [28077,0.008], + [28079,0.023], + [28081,0.018], + [28083,0.032], + [28085,0.007], + [28087,0.017], + [28089,0.039], + [28091,0.007], + [28093,0.022], + [28095,0.005], + [28097,0.004], + [28099,0.008], + [28101,0.015], + [28103,0.001], + [28105,0.025], + [28107,0.008], + [28109,0.015], + [28111,0.006], + [28113,0.013], + [28115,0.037], + [28117,0.012], + [28119,0.002], + [28121,0.021], + [28123,0.068], + [28125,0], + [28127,0.017], + [28129,0.003], + [28131,0.01], + [28133,0.007], + [28135,0.04], + [28137,0.013], + [28139,0.023], + [28141,0.019], + [28143,0.031], + [28145,0.033], + [28147,0.002], + [28149,0.017], + [28151,0.011], + [28153,0.003], + [28155,0.01], + [28157,0.002], + [28159,0.002], + [28161,0.003], + [28163,0.023], + [29001,0.025], + [29003,0.012], + [29005,0.004], + [29007,0.016], + [29009,0.04], + [29011,0.008], + [29013,0.009], + [29015,0.023], + [29017,0.008], + [29019,0.059], + [29021,0.025], + [29023,0.014], + [29025,0.008], + [29027,0.01], + [29029,0.017], + [29031,0.018], + [29033,0.012], + [29035,0.009], + [29037,0.018], + [29039,0.014], + [29041,0.008], + [29043,0.018], + [29045,0.006], + [29047,0.046], + [29049,0.011], + [29051,0.031], + [29053,0.01], + [29055,0.006], + [29057,0.006], + [29059,0.006], + [29061,0.008], + [29063,0.016], + [29065,0.011], + [29067,0.003], + [29069,0.025], + [29071,0.009], + [29073,0.014], + [29075,0.005], + [29077,0.027], + [29079,0.013], + [29081,0.011], + [29083,0.015], + [29085,0.004], + [29087,0.01], + [29089,0.011], + [29091,0.019], + [29093,0.004], + [29095,0.055], + [29097,0.04], + [29099,0.018], + [29101,0.029], + [29103,0.006], + [29105,0.017], + [29107,0.013], + [29109,0.03], + [29111,0.012], + [29113,0.014], + [29115,0.015], + [29117,0.002], + [29119,0.059], + [29121,0.001], + [29123,0.015], + [29125,0.009], + [29127,0.004], + [29129,0.017], + [29131,0.015], + [29133,0.025], + [29135,0.02], + [29137,0.006], + [29139,0.004], + [29141,0.01], + [29143,0.007], + [29145,0.033], + [29147,0.019], + [29149,0.013], + [29151,0.005], + [29153,0.008], + [29155,0.009], + [29157,0.017], + [29159,0.055], + [29161,0.031], + [29163,0.015], + [29165,0.046], + [29167,0.017], + [29169,0.051], + [29171,0.02], + [29173,0.001], + [29175,0.013], + [29177,0.012], + [29179,0.004], + [29181,0.012], + [29183,0.034], + [29185,0.003], + [29186,0.006], + [29187,0.01], + [29189,0.062], + [29195,0.049], + [29197,0.007], + [29199,0.005], + [29201,0.007], + [29203,0.014], + [29205,0.014], + [29207,0.003], + [29209,0.011], + [29211,0.084], + [29213,0.031], + [29215,0.011], + [29217,0.014], + [29219,0.016], + [29221,0.006], + [29223,0.004], + [29225,0.003], + [29227,0.004], + [29229,0.016], + [29510,0.067], + [30001,0.025], + [30003,0.007], + [30005,0.005], + [30007,0.007], + [30009,0.021], + [30011,0.004], + [30013,0.022], + [30015,0.015], + [30017,0.011], + [30019,0.016], + [30021,0.005], + [30023,0.01], + [30025,0.016], + [30027,0.01], + [30029,0.02], + [30031,0.031], + [30033,0.001], + [30035,0.014], + [30037,0.001], + [30039,0.006], + [30041,0.015], + [30043,0.013], + [30045,0.012], + [30047,0.02], + [30049,0.02], + [30051,0.025], + [30053,0.022], + [30055,0.004], + [30057,0.044], + [30059,0.036], + [30061,0.011], + [30063,0.024], + [30065,0.024], + [30067,0.03], + [30069,0], + [30071,0.008], + [30073,0.023], + [30075,0.004], + [30077,0.011], + [30079,0.007], + [30081,0.017], + [30083,0.02], + [30085,0.007], + [30087,0.007], + [30089,0.014], + [30091,0.016], + [30093,0.021], + [30095,0.012], + [30097,0.022], + [30099,0.023], + [30101,0.036], + [30103,0.011], + [30105,0.018], + [30107,0], + [30109,0.015], + [30111,0.017], + [31001,0.049], + [31003,0.012], + [31005,0.002], + [31007,0.038], + [31009,0], + [31011,0.002], + [31013,0.011], + [31015,0.001], + [31017,0.013], + [31019,0.037], + [31021,0.01], + [31023,0.008], + [31025,0.012], + [31027,0.004], + [31029,0.044], + [31031,0.01], + [31033,0.031], + [31035,0.027], + [31037,0.213], + [31039,0.057], + [31041,0.002], + [31043,0.206], + [31045,0.021], + [31047,0.181], + [31049,0.013], + [31051,0.049], + [31053,0.051], + [31055,0.082], + [31057,0.004], + [31059,0.007], + [31061,0.004], + [31063,0.007], + [31065,0.01], + [31067,0.009], + [31069,0.003], + [31071,0.017], + [31073,0.002], + [31075,0.002], + [31077,0.003], + [31079,0.119], + [31081,0.009], + [31083,0.008], + [31085,0.056], + [31087,0.007], + [31089,0.018], + [31091,0.007], + [31093,0.004], + [31095,0.002], + [31097,0.053], + [31099,0.022], + [31101,0.022], + [31103,0], + [31105,0.028], + [31107,0.007], + [31109,0.069], + [31111,0.016], + [31113,0], + [31115,0.003], + [31117,0.006], + [31119,0.07], + [31121,0.007], + [31123,0.041], + [31125,0.002], + [31127,0.013], + [31129,0.007], + [31131,0.026], + [31133,0.022], + [31135,0.003], + [31137,0.038], + [31139,0.008], + [31141,0.068], + [31143,0.013], + [31145,0.017], + [31147,0.007], + [31149,0.005], + [31151,0.105], + [31153,0.05], + [31155,0.012], + [31157,0.033], + [31159,0.006], + [31161,0.008], + [31163,0.006], + [31165,0.013], + [31167,0.015], + [31169,0.006], + [31171,0.017], + [31173,0.012], + [31175,0.014], + [31177,0.012], + [31179,0.022], + [31181,0.012], + [31183,0.007], + [31185,0.023], + [32001,0.058], + [32003,0.221], + [32005,0.068], + [32007,0.103], + [32009,0.133], + [32011,0.023], + [32013,0.129], + [32015,0.071], + [32017,0.022], + [32019,0.063], + [32021,0.045], + [32023,0.087], + [32027,0.132], + [32029,0.048], + [32031,0.153], + [32033,0.01], + [32510,0.116], + [33001,0.033], + [33003,0.024], + [33005,0.03], + [33007,0.033], + [33009,0.056], + [33011,0.081], + [33013,0.035], + [33015,0.047], + [33017,0.041], + [33019,0.028], + [34001,0.154], + [34003,0.284], + [34005,0.093], + [34007,0.101], + [34009,0.041], + [34011,0.105], + [34013,0.236], + [34015,0.049], + [34017,0.406], + [34019,0.082], + [34021,0.197], + [34023,0.294], + [34025,0.13], + [34027,0.187], + [34029,0.078], + [34031,0.271], + [34033,0.036], + [34035,0.22], + [34037,0.064], + [34039,0.288], + [34041,0.084], + [35001,0.11], + [35003,0.04], + [35005,0.123], + [35006,0.027], + [35007,0.038], + [35009,0.079], + [35011,0.021], + [35013,0.188], + [35015,0.042], + [35017,0.051], + [35019,0.033], + [35021,0.035], + [35023,0.073], + [35025,0.128], + [35027,0.072], + [35028,0.088], + [35029,0.179], + [35031,0.027], + [35033,0.02], + [35035,0.105], + [35037,0.025], + [35039,0.059], + [35041,0.069], + [35043,0.056], + [35045,0.039], + [35047,0.046], + [35049,0.129], + [35051,0.032], + [35053,0.074], + [35055,0.03], + [35057,0.117], + [35059,0.032], + [35061,0.07], + [36001,0.089], + [36003,0.019], + [36005,0.325], + [36007,0.061], + [36009,0.015], + [36011,0.022], + [36013,0.019], + [36015,0.025], + [36017,0.021], + [36019,0.049], + [36021,0.054], + [36023,0.022], + [36025,0.042], + [36027,0.111], + [36029,0.061], + [36031,0.045], + [36033,0.058], + [36035,0.015], + [36037,0.027], + [36039,0.049], + [36041,0.03], + [36043,0.029], + [36045,0.045], + [36047,0.374], + [36049,0.016], + [36051,0.023], + [36053,0.021], + [36055,0.084], + [36057,0.04], + [36059,0.207], + [36061,0.286], + [36063,0.039], + [36065,0.066], + [36067,0.068], + [36069,0.033], + [36071,0.112], + [36073,0.03], + [36075,0.021], + [36077,0.036], + [36079,0.11], + [36081,0.481], + [36083,0.051], + [36085,0.208], + [36087,0.221], + [36089,0.039], + [36091,0.041], + [36093,0.087], + [36095,0.025], + [36097,0.022], + [36099,0.021], + [36101,0.024], + [36103,0.14], + [36105,0.091], + [36107,0.017], + [36109,0.125], + [36111,0.071], + [36113,0.029], + [36115,0.018], + [36117,0.027], + [36119,0.243], + [36121,0.024], + [36123,0.018], + [37001,0.075], + [37003,0.032], + [37005,0.089], + [37007,0.016], + [37009,0.034], + [37011,0.039], + [37013,0.046], + [37015,0.008], + [37017,0.042], + [37019,0.039], + [37021,0.057], + [37023,0.048], + [37025,0.072], + [37027,0.024], + [37029,0.026], + [37031,0.036], + [37033,0.014], + [37035,0.069], + [37037,0.105], + [37039,0.024], + [37041,0.034], + [37043,0.022], + [37045,0.022], + [37047,0.028], + [37049,0.047], + [37051,0.057], + [37053,0.032], + [37055,0.052], + [37057,0.046], + [37059,0.044], + [37061,0.127], + [37063,0.139], + [37065,0.023], + [37067,0.089], + [37069,0.043], + [37071,0.047], + [37073,0.006], + [37075,0.021], + [37077,0.052], + [37079,0.074], + [37081,0.091], + [37083,0.019], + [37085,0.07], + [37087,0.026], + [37089,0.08], + [37091,0.035], + [37093,0.061], + [37095,0.046], + [37097,0.048], + [37099,0.048], + [37101,0.079], + [37103,0.035], + [37105,0.11], + [37107,0.041], + [37109,0.052], + [37111,0.03], + [37113,0.055], + [37115,0.018], + [37117,0.015], + [37119,0.135], + [37121,0.018], + [37123,0.093], + [37125,0.052], + [37127,0.05], + [37129,0.053], + [37131,0.006], + [37133,0.046], + [37135,0.133], + [37137,0.035], + [37139,0.03], + [37141,0.044], + [37143,0.009], + [37145,0.023], + [37147,0.048], + [37149,0.046], + [37151,0.069], + [37153,0.04], + [37155,0.057], + [37157,0.037], + [37159,0.053], + [37161,0.026], + [37163,0.095], + [37165,0.018], + [37167,0.028], + [37169,0.015], + [37171,0.059], + [37173,0.026], + [37175,0.038], + [37177,0.033], + [37179,0.082], + [37181,0.039], + [37183,0.127], + [37185,0.025], + [37187,0.014], + [37189,0.029], + [37191,0.063], + [37193,0.034], + [37195,0.068], + [37197,0.055], + [37199,0.047], + [38001,0.009], + [38003,0.028], + [38005,0.011], + [38007,0], + [38009,0.021], + [38011,0.011], + [38013,0.025], + [38015,0.014], + [38017,0.045], + [38019,0.021], + [38021,0.006], + [38023,0.039], + [38025,0.02], + [38027,0.004], + [38029,0.007], + [38031,0.016], + [38033,0.003], + [38035,0.034], + [38037,0.005], + [38039,0.003], + [38041,0.008], + [38043,0.017], + [38045,0.004], + [38047,0.001], + [38049,0.014], + [38051,0.003], + [38053,0.006], + [38055,0.008], + [38057,0.005], + [38059,0.008], + [38061,0.009], + [38063,0.015], + [38065,0.007], + [38067,0.035], + [38069,0.01], + [38071,0.017], + [38073,0.001], + [38075,0.017], + [38077,0.013], + [38079,0.01], + [38081,0.011], + [38083,0.006], + [38085,0], + [38087,0.008], + [38089,0.018], + [38091,0.009], + [38093,0.013], + [38095,0.01], + [38097,0.021], + [38099,0.018], + [38101,0.029], + [38103,0.014], + [38105,0.018], + [39001,0.004], + [39003,0.016], + [39005,0.017], + [39007,0.016], + [39009,0.042], + [39011,0.007], + [39013,0.008], + [39015,0.002], + [39017,0.049], + [39019,0.006], + [39021,0.013], + [39023,0.021], + [39025,0.022], + [39027,0.015], + [39029,0.012], + [39031,0.003], + [39033,0.009], + [39035,0.07], + [39037,0.008], + [39039,0.015], + [39041,0.053], + [39043,0.019], + [39045,0.024], + [39047,0.014], + [39049,0.089], + [39051,0.017], + [39053,0.006], + [39055,0.028], + [39057,0.041], + [39059,0.011], + [39061,0.046], + [39063,0.027], + [39065,0.009], + [39067,0.003], + [39069,0.014], + [39071,0.005], + [39073,0.005], + [39075,0.008], + [39077,0.031], + [39079,0.004], + [39081,0.012], + [39083,0.015], + [39085,0.053], + [39087,0.004], + [39089,0.016], + [39091,0.012], + [39093,0.028], + [39095,0.037], + [39097,0.017], + [39099,0.031], + [39101,0.014], + [39103,0.032], + [39105,0.002], + [39107,0.007], + [39109,0.017], + [39111,0.006], + [39113,0.033], + [39115,0.002], + [39117,0.006], + [39119,0.008], + [39121,0.001], + [39123,0.016], + [39125,0.011], + [39127,0.004], + [39129,0.011], + [39131,0.005], + [39133,0.027], + [39135,0.01], + [39137,0.011], + [39139,0.018], + [39141,0.01], + [39143,0.022], + [39145,0.01], + [39147,0.014], + [39149,0.018], + [39151,0.02], + [39153,0.042], + [39155,0.016], + [39157,0.011], + [39159,0.024], + [39161,0.011], + [39163,0.002], + [39165,0.048], + [39167,0.01], + [39169,0.016], + [39171,0.015], + [39173,0.03], + [39175,0.014], + [40001,0.021], + [40003,0.012], + [40005,0.01], + [40007,0.094], + [40009,0.035], + [40011,0.096], + [40013,0.029], + [40015,0.028], + [40017,0.045], + [40019,0.03], + [40021,0.033], + [40023,0.013], + [40025,0.1], + [40027,0.058], + [40029,0.003], + [40031,0.053], + [40033,0.02], + [40035,0.017], + [40037,0.018], + [40039,0.053], + [40041,0.027], + [40043,0.016], + [40045,0.018], + [40047,0.055], + [40049,0.028], + [40051,0.02], + [40053,0.012], + [40055,0.01], + [40057,0.049], + [40059,0.088], + [40061,0.021], + [40063,0.017], + [40065,0.056], + [40067,0.022], + [40069,0.016], + [40071,0.033], + [40073,0.065], + [40075,0.013], + [40077,0.009], + [40079,0.034], + [40081,0.012], + [40083,0.024], + [40085,0.053], + [40087,0.029], + [40089,0.006], + [40091,0.004], + [40093,0.028], + [40095,0.076], + [40097,0.006], + [40099,0.026], + [40101,0.028], + [40103,0.003], + [40105,0.009], + [40107,0.029], + [40109,0.098], + [40111,0.008], + [40113,0.011], + [40115,0.023], + [40117,0.011], + [40119,0.056], + [40121,0.018], + [40123,0.018], + [40125,0.016], + [40127,0.006], + [40129,0.022], + [40131,0.021], + [40133,0.014], + [40135,0.017], + [40137,0.018], + [40139,0.209], + [40141,0.055], + [40143,0.075], + [40145,0.026], + [40147,0.031], + [40149,0.015], + [40151,0.016], + [40153,0.052], + [41001,0.005], + [41003,0.083], + [41005,0.085], + [41007,0.05], + [41009,0.032], + [41011,0.032], + [41013,0.042], + [41015,0.038], + [41017,0.047], + [41019,0.027], + [41021,0.059], + [41023,0.008], + [41025,0.017], + [41027,0.173], + [41029,0.057], + [41031,0.089], + [41033,0.036], + [41035,0.049], + [41037,0.022], + [41039,0.056], + [41041,0.059], + [41043,0.042], + [41045,0.098], + [41047,0.141], + [41049,0.159], + [41051,0.137], + [41053,0.071], + [41055,0.036], + [41057,0.059], + [41059,0.102], + [41061,0.031], + [41063,0.011], + [41065,0.092], + [41067,0.168], + [41069,0.029], + [41071,0.08], + [42001,0.04], + [42003,0.046], + [42005,0.008], + [42007,0.019], + [42009,0.006], + [42011,0.065], + [42013,0.01], + [42015,0.012], + [42017,0.081], + [42019,0.017], + [42021,0.015], + [42023,0.009], + [42025,0.026], + [42027,0.066], + [42029,0.083], + [42031,0.009], + [42033,0.009], + [42035,0.014], + [42037,0.019], + [42039,0.012], + [42041,0.048], + [42043,0.056], + [42045,0.085], + [42047,0.011], + [42049,0.038], + [42051,0.01], + [42053,0.009], + [42055,0.034], + [42057,0.008], + [42059,0.008], + [42061,0.011], + [42063,0.015], + [42065,0.005], + [42067,0.016], + [42069,0.04], + [42071,0.044], + [42073,0.015], + [42075,0.03], + [42077,0.09], + [42079,0.041], + [42081,0.014], + [42083,0.01], + [42085,0.016], + [42087,0.005], + [42089,0.093], + [42091,0.093], + [42093,0.042], + [42095,0.064], + [42097,0.012], + [42099,0.009], + [42101,0.115], + [42103,0.063], + [42105,0.009], + [42107,0.019], + [42109,0.014], + [42111,0.008], + [42113,0.009], + [42115,0.015], + [42117,0.013], + [42119,0.045], + [42121,0.007], + [42123,0.012], + [42125,0.014], + [42127,0.034], + [42129,0.016], + [42131,0.013], + [42133,0.035], + [44001,0.085], + [44003,0.052], + [44005,0.062], + [44007,0.175], + [44009,0.041], + [45001,0.014], + [45003,0.035], + [45005,0.011], + [45007,0.028], + [45009,0.013], + [45011,0.012], + [45013,0.096], + [45015,0.055], + [45017,0.015], + [45019,0.056], + [45021,0.028], + [45023,0.012], + [45025,0.026], + [45027,0.017], + [45029,0.022], + [45031,0.016], + [45033,0.018], + [45035,0.04], + [45037,0.041], + [45039,0.006], + [45041,0.026], + [45043,0.03], + [45045,0.079], + [45047,0.045], + [45049,0.027], + [45051,0.067], + [45053,0.095], + [45055,0.03], + [45057,0.033], + [45059,0.031], + [45061,0.012], + [45063,0.05], + [45065,0.015], + [45067,0.022], + [45069,0.016], + [45071,0.053], + [45073,0.032], + [45075,0.019], + [45077,0.04], + [45079,0.053], + [45081,0.086], + [45083,0.057], + [45085,0.034], + [45087,0.005], + [45089,0.009], + [45091,0.041], + [46003,0.052], + [46005,0.048], + [46007,0.006], + [46009,0.018], + [46011,0.039], + [46013,0.011], + [46015,0.002], + [46017,0.024], + [46019,0.007], + [46021,0.005], + [46023,0.005], + [46025,0.016], + [46027,0.025], + [46029,0.008], + [46031,0.004], + [46033,0.007], + [46035,0.008], + [46037,0.008], + [46039,0.02], + [46041,0.001], + [46043,0.01], + [46045,0.009], + [46047,0.011], + [46049,0.012], + [46051,0.022], + [46053,0.007], + [46055,0.008], + [46057,0.012], + [46059,0.001], + [46061,0.001], + [46063,0.012], + [46065,0.012], + [46067,0.011], + [46069,0.002], + [46071,0], + [46073,0.016], + [46075,0.003], + [46077,0.011], + [46079,0.012], + [46081,0.013], + [46083,0.016], + [46085,0.004], + [46087,0.014], + [46089,0.01], + [46091,0.008], + [46093,0.016], + [46095,0.002], + [46097,0.007], + [46099,0.053], + [46101,0.019], + [46102,0.001], + [46103,0.021], + [46105,0.007], + [46107,0.008], + [46109,0.01], + [46111,0.02], + [46115,0.009], + [46117,0.009], + [46119,0.01], + [46121,0.007], + [46123,0.001], + [46125,0.004], + [46127,0.019], + [46129,0.007], + [46135,0.021], + [46137,0.008], + [47001,0.028], + [47003,0.078], + [47005,0.013], + [47007,0.024], + [47009,0.028], + [47011,0.036], + [47013,0.008], + [47015,0.008], + [47017,0.005], + [47019,0.007], + [47021,0.022], + [47023,0.012], + [47025,0.009], + [47027,0.01], + [47029,0.017], + [47031,0.03], + [47033,0.029], + [47035,0.02], + [47037,0.115], + [47039,0.011], + [47041,0.053], + [47043,0.022], + [47045,0.009], + [47047,0.02], + [47049,0.005], + [47051,0.02], + [47053,0.009], + [47055,0.013], + [47057,0.013], + [47059,0.019], + [47061,0.008], + [47063,0.074], + [47065,0.046], + [47067,0.006], + [47069,0.012], + [47071,0.01], + [47073,0.011], + [47075,0.017], + [47077,0.009], + [47079,0.016], + [47081,0.012], + [47083,0.004], + [47085,0.009], + [47087,0.005], + [47089,0.019], + [47091,0.009], + [47093,0.04], + [47095,0.014], + [47097,0.011], + [47099,0.011], + [47101,0.013], + [47103,0.013], + [47105,0.055], + [47107,0.021], + [47109,0.009], + [47111,0.03], + [47113,0.034], + [47115,0.012], + [47117,0.031], + [47119,0.033], + [47121,0.01], + [47123,0.02], + [47125,0.046], + [47127,0.006], + [47129,0.009], + [47131,0.027], + [47133,0.004], + [47135,0.007], + [47137,0.022], + [47139,0.01], + [47141,0.045], + [47143,0.024], + [47145,0.016], + [47147,0.041], + [47149,0.063], + [47151,0.004], + [47153,0.012], + [47155,0.039], + [47157,0.06], + [47159,0.017], + [47161,0.016], + [47163,0.017], + [47165,0.036], + [47167,0.014], + [47169,0.009], + [47171,0.025], + [47173,0.01], + [47175,0.001], + [47177,0.049], + [47179,0.033], + [47181,0.01], + [47183,0.022], + [47185,0.012], + [47187,0.059], + [47189,0.031], + [48001,0.061], + [48003,0.118], + [48005,0.085], + [48007,0.055], + [48009,0.034], + [48011,0.05], + [48013,0.058], + [48015,0.101], + [48017,0.145], + [48019,0.033], + [48021,0.103], + [48023,0.026], + [48025,0.047], + [48027,0.083], + [48029,0.126], + [48031,0.063], + [48033,0.012], + [48035,0.054], + [48037,0.036], + [48039,0.119], + [48041,0.125], + [48043,0.064], + [48045,0.075], + [48047,0.044], + [48049,0.043], + [48051,0.078], + [48053,0.07], + [48055,0.062], + [48057,0.092], + [48059,0.024], + [48061,0.252], + [48063,0.121], + [48065,0.02], + [48067,0.022], + [48069,0.182], + [48071,0.066], + [48073,0.102], + [48075,0.064], + [48077,0.01], + [48079,0.143], + [48081,0.047], + [48083,0.025], + [48085,0.172], + [48087,0.11], + [48089,0.091], + [48091,0.063], + [48093,0.086], + [48095,0.385], + [48097,0.085], + [48099,0.054], + [48101,0.033], + [48103,0.141], + [48105,0.123], + [48107,0.039], + [48109,0.138], + [48111,0.157], + [48113,0.23], + [48115,0.069], + [48117,0.175], + [48119,0.025], + [48121,0.136], + [48123,0.033], + [48125,0.041], + [48127,0.096], + [48129,0.018], + [48131,0.047], + [48133,0.036], + [48135,0.118], + [48137,0.083], + [48139,0.075], + [48141,0.269], + [48143,0.091], + [48145,0.048], + [48147,0.043], + [48149,0.06], + [48151,0.029], + [48153,0.049], + [48155,0.033], + [48157,0.245], + [48159,0.06], + [48161,0.046], + [48163,0.07], + [48165,0.199], + [48167,0.099], + [48169,0.31], + [48171,0.062], + [48173,0.099], + [48175,0.015], + [48177,0.139], + [48179,0.072], + [48181,0.055], + [48183,0.088], + [48185,0.072], + [48187,0.071], + [48189,0.091], + [48191,0.117], + [48193,0.031], + [48195,0.173], + [48197,0.038], + [48199,0.015], + [48201,0.25], + [48203,0.053], + [48205,0.073], + [48207,0.02], + [48209,0.069], + [48211,0.094], + [48213,0.058], + [48215,0.293], + [48217,0.076], + [48219,0.06], + [48221,0.048], + [48223,0.079], + [48225,0.039], + [48227,0.158], + [48229,0.338], + [48231,0.062], + [48233,0.058], + [48235,0.016], + [48237,0.045], + [48239,0.05], + [48241,0.032], + [48243,0.055], + [48245,0.096], + [48247,0.126], + [48249,0.036], + [48251,0.069], + [48253,0.044], + [48255,0.144], + [48257,0.065], + [48259,0.075], + [48261,0.025], + [48263,0.014], + [48265,0.066], + [48267,0.104], + [48269,0.091], + [48271,0.11], + [48273,0.064], + [48275,0.099], + [48277,0.041], + [48279,0.104], + [48281,0.072], + [48283,0.077], + [48285,0.047], + [48287,0.049], + [48289,0.053], + [48291,0.068], + [48293,0.083], + [48295,0.11], + [48297,0.047], + [48299,0.035], + [48301,0], + [48303,0.052], + [48305,0.066], + [48307,0.059], + [48309,0.082], + [48311,0.066], + [48313,0.077], + [48315,0.023], + [48317,0.092], + [48319,0.023], + [48321,0.102], + [48323,0.342], + [48325,0.059], + [48327,0.045], + [48329,0.083], + [48331,0.043], + [48333,0.08], + [48335,0.056], + [48337,0.034], + [48339,0.121], + [48341,0.235], + [48343,0.037], + [48345,0.016], + [48347,0.084], + [48349,0.107], + [48351,0.015], + [48353,0.05], + [48355,0.075], + [48357,0.204], + [48359,0.028], + [48361,0.027], + [48363,0.062], + [48365,0.032], + [48367,0.04], + [48369,0.195], + [48371,0.168], + [48373,0.055], + [48375,0.132], + [48377,0.281], + [48379,0.035], + [48381,0.042], + [48383,0.164], + [48385,0.055], + [48387,0.022], + [48389,0.167], + [48391,0.039], + [48393,0.017], + [48395,0.061], + [48397,0.093], + [48399,0.05], + [48401,0.064], + [48403,0.014], + [48405,0.024], + [48407,0.034], + [48409,0.05], + [48411,0.058], + [48413,0.089], + [48415,0.05], + [48417,0.029], + [48419,0.082], + [48421,0.179], + [48423,0.088], + [48425,0.086], + [48427,0.3], + [48429,0.06], + [48431,0.111], + [48433,0.006], + [48435,0.114], + [48437,0.061], + [48439,0.156], + [48441,0.05], + [48443,0.14], + [48445,0.095], + [48447,0.042], + [48449,0.193], + [48451,0.071], + [48453,0.179], + [48455,0.047], + [48457,0.015], + [48459,0.036], + [48461,0.097], + [48463,0.088], + [48465,0.235], + [48467,0.041], + [48469,0.058], + [48471,0.083], + [48473,0.145], + [48475,0.07], + [48477,0.059], + [48479,0.292], + [48481,0.079], + [48483,0.074], + [48485,0.063], + [48487,0.047], + [48489,0.146], + [48491,0.103], + [48493,0.048], + [48495,0.134], + [48497,0.064], + [48499,0.042], + [48501,0.208], + [48503,0.044], + [48505,0.261], + [48507,0.139], + [49001,0.054], + [49003,0.035], + [49005,0.064], + [49007,0.031], + [49009,0.038], + [49011,0.047], + [49013,0.028], + [49015,0.022], + [49017,0.022], + [49019,0.06], + [49021,0.035], + [49023,0.011], + [49025,0.022], + [49027,0.07], + [49029,0.014], + [49031,0.006], + [49033,0.006], + [49035,0.12], + [49037,0.017], + [49039,0.054], + [49041,0.019], + [49043,0.089], + [49045,0.036], + [49047,0.032], + [49049,0.072], + [49051,0.079], + [49053,0.061], + [49055,0.058], + [49057,0.075], + [50001,0.041], + [50003,0.034], + [50005,0.021], + [50007,0.068], + [50009,0.043], + [50011,0.032], + [50013,0.033], + [50015,0.034], + [50017,0.018], + [50019,0.044], + [50021,0.021], + [50023,0.031], + [50025,0.033], + [50027,0.031], + [51001,0.06], + [51003,0.09], + [51005,0.016], + [51007,0.041], + [51009,0.02], + [51011,0.015], + [51013,0.231], + [51015,0.02], + [51017,0.015], + [51019,0.018], + [51021,0.035], + [51023,0.019], + [51025,0.012], + [51027,0.014], + [51029,0.015], + [51031,0.021], + [51033,0.021], + [51035,0.014], + [51036,0.006], + [51037,0.021], + [51041,0.077], + [51043,0.037], + [51045,0.003], + [51047,0.072], + [51049,0.028], + [51051,0.002], + [51053,0.021], + [51057,0.024], + [51059,0.288], + [51061,0.06], + [51063,0.013], + [51065,0.02], + [51067,0.029], + [51069,0.053], + [51071,0.008], + [51073,0.019], + [51075,0.03], + [51077,0.005], + [51079,0.04], + [51081,0.013], + [51083,0.016], + [51085,0.031], + [51087,0.106], + [51089,0.034], + [51091,0.002], + [51093,0.021], + [51095,0.073], + [51097,0.014], + [51099,0.022], + [51101,0.011], + [51103,0.023], + [51105,0.013], + [51107,0.217], + [51109,0.02], + [51111,0.022], + [51113,0.039], + [51115,0.02], + [51117,0.029], + [51119,0.029], + [51121,0.081], + [51125,0.027], + [51127,0.013], + [51131,0.06], + [51133,0.021], + [51135,0.025], + [51137,0.042], + [51139,0.016], + [51141,0.017], + [51143,0.022], + [51145,0.029], + [51147,0.021], + [51149,0.042], + [51153,0.213], + [51155,0.013], + [51157,0.026], + [51159,0.037], + [51161,0.05], + [51163,0.011], + [51165,0.046], + [51167,0.016], + [51169,0.006], + [51171,0.042], + [51173,0.009], + [51175,0.006], + [51177,0.061], + [51179,0.079], + [51181,0.021], + [51183,0.014], + [51185,0.015], + [51187,0.035], + [51191,0.01], + [51193,0.04], + [51195,0.014], + [51197,0.004], + [51199,0.071], + [51510,0.24], + [51520,0.008], + [51530,0.002], + [51540,0.118], + [51550,0.044], + [51570,0.054], + [51580,0.009], + [51590,0.031], + [51595,0.028], + [51600,0.254], + [51610,0.179], + [51620,0.026], + [51630,0.092], + [51640,0.06], + [51650,0.055], + [51660,0.135], + [51670,0.044], + [51678,0.058], + [51680,0.042], + [51683,0.247], + [51685,0.294], + [51690,0.03], + [51700,0.069], + [51710,0.068], + [51720,0.004], + [51730,0.034], + [51735,0.044], + [51740,0.028], + [51750,0.046], + [51760,0.071], + [51770,0.063], + [51775,0.046], + [51790,0.033], + [51800,0.031], + [51810,0.089], + [51820,0.029], + [51830,0.085], + [51840,0.15], + [53001,0.242], + [53003,0.019], + [53005,0.102], + [53007,0.11], + [53009,0.05], + [53011,0.101], + [53013,0.018], + [53015,0.052], + [53017,0.157], + [53019,0.037], + [53021,0.266], + [53023,0.045], + [53025,0.17], + [53027,0.055], + [53029,0.069], + [53031,0.042], + [53033,0.198], + [53035,0.065], + [53037,0.053], + [53039,0.056], + [53041,0.049], + [53043,0.019], + [53045,0.053], + [53047,0.091], + [53049,0.065], + [53051,0.024], + [53053,0.094], + [53055,0.067], + [53057,0.106], + [53059,0.027], + [53061,0.136], + [53063,0.05], + [53065,0.029], + [53067,0.071], + [53069,0.033], + [53071,0.11], + [53073,0.108], + [53075,0.095], + [53077,0.18], + [54001,0.003], + [54003,0.033], + [54005,0.001], + [54007,0.005], + [54009,0.008], + [54011,0.017], + [54013,0], + [54015,0], + [54017,0.002], + [54019,0.008], + [54021,0.035], + [54023,0.002], + [54025,0.004], + [54027,0.005], + [54029,0.011], + [54031,0.014], + [54033,0.009], + [54035,0.003], + [54037,0.034], + [54039,0.014], + [54041,0.005], + [54043,0.003], + [54045,0.003], + [54047,0.003], + [54049,0.012], + [54051,0.008], + [54053,0.005], + [54055,0.011], + [54057,0.004], + [54059,0.002], + [54061,0.047], + [54063,0.001], + [54065,0.005], + [54067,0.003], + [54069,0.015], + [54071,0.006], + [54073,0.002], + [54075,0.008], + [54077,0.011], + [54079,0.013], + [54081,0.016], + [54083,0.012], + [54085,0.001], + [54087,0.004], + [54089,0.003], + [54091,0.009], + [54093,0.004], + [54095,0.005], + [54097,0.008], + [54099,0.006], + [54101,0.003], + [54103,0.008], + [54105,0.005], + [54107,0.008], + [54109,0.005], + [55001,0.026], + [55003,0.015], + [55005,0.018], + [55007,0.018], + [55009,0.052], + [55011,0.011], + [55013,0.017], + [55015,0.031], + [55017,0.015], + [55019,0.022], + [55021,0.02], + [55023,0.013], + [55025,0.074], + [55027,0.025], + [55029,0.03], + [55031,0.013], + [55033,0.022], + [55035,0.028], + [55037,0], + [55039,0.029], + [55041,0.007], + [55043,0.01], + [55045,0.026], + [55047,0.018], + [55049,0.013], + [55051,0.014], + [55053,0.019], + [55055,0.042], + [55057,0.021], + [55059,0.062], + [55061,0.019], + [55063,0.036], + [55065,0.02], + [55067,0.012], + [55069,0.009], + [55071,0.028], + [55073,0.039], + [55075,0.015], + [55077,0.013], + [55078,0.002], + [55079,0.086], + [55081,0.025], + [55083,0.01], + [55085,0.015], + [55087,0.04], + [55089,0.045], + [55091,0.008], + [55093,0.014], + [55095,0.014], + [55097,0.03], + [55099,0.011], + [55101,0.049], + [55103,0.017], + [55105,0.044], + [55107,0.013], + [55109,0.025], + [55111,0.039], + [55113,0.013], + [55115,0.013], + [55117,0.051], + [55119,0.012], + [55121,0.026], + [55123,0.014], + [55125,0.018], + [55127,0.067], + [55129,0.011], + [55131,0.026], + [55133,0.044], + [55135,0.013], + [55137,0.025], + [55139,0.034], + [55141,0.023], + [56001,0.055], + [56003,0.032], + [56005,0.03], + [56007,0.037], + [56009,0.009], + [56011,0.007], + [56013,0.014], + [56015,0.015], + [56017,0.021], + [56019,0.021], + [56021,0.03], + [56023,0.027], + [56025,0.019], + [56027,0.005], + [56029,0.019], + [56031,0.014], + [56033,0.021], + [56035,0.032], + [56037,0.058], + [56039,0.09], + [56041,0.029], + [56043,0.035], + [56045,0.008] + ] +} diff --git a/data/regional/united-states/demographics/migration/us-migration-nomove-2010.json b/data/regional/united-states/demographics/migration/us-migration-nomove-2010.json new file mode 100644 index 0000000..4a403a0 --- /dev/null +++ b/data/regional/united-states/demographics/migration/us-migration-nomove-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Not Moved In Last 5 Years", + "description" : "Percent of the population that did not moved between 2006-2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","migration","domestic"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.migration.nomove.2010"], + [1001,0.863], + [1003,0.83], + [1005,0.83], + [1007,0.905], + [1009,0.872], + [1011,0.885], + [1013,0.928], + [1015,0.829], + [1017,0.862], + [1019,0.881], + [1021,0.881], + [1023,0.921], + [1025,0.935], + [1027,0.849], + [1029,0.861], + [1031,0.809], + [1033,0.85], + [1035,0.959], + [1037,0.886], + [1039,0.883], + [1041,0.891], + [1043,0.853], + [1045,0.765], + [1047,0.858], + [1049,0.874], + [1051,0.832], + [1053,0.884], + [1055,0.834], + [1057,0.872], + [1059,0.846], + [1061,0.845], + [1063,0.884], + [1065,0.887], + [1067,0.929], + [1069,0.858], + [1071,0.898], + [1073,0.83], + [1075,0.883], + [1077,0.849], + [1079,0.902], + [1081,0.764], + [1083,0.858], + [1085,0.914], + [1087,0.811], + [1089,0.831], + [1091,0.879], + [1093,0.878], + [1095,0.842], + [1097,0.857], + [1099,0.913], + [1101,0.796], + [1103,0.861], + [1105,0.873], + [1107,0.932], + [1109,0.779], + [1111,0.856], + [1113,0.789], + [1115,0.857], + [1117,0.85], + [1119,0.882], + [1121,0.845], + [1123,0.843], + [1125,0.797], + [1127,0.879], + [1129,0.919], + [1131,0.902], + [1133,0.844], + [2013,0.607], + [2016,0.69], + [2020,0.77], + [2050,0.819], + [2060,0.777], + [2068,0.854], + [2070,0.851], + [2090,0.747], + [2100,0.905], + [2105,0.857], + [2110,0.787], + [2122,0.819], + [2130,0.771], + [2150,0.791], + [2158,0.865], + [2164,0.869], + [2170,0.838], + [2180,0.817], + [2185,0.829], + [2188,0.802], + [2195,0.867], + [2198,0.795], + [2220,0.803], + [2230,0.723], + [2240,0.749], + [2261,0.752], + [2275,0.864], + [2282,0.888], + [2290,0.827], + [4001,0.906], + [4003,0.797], + [4005,0.796], + [4007,0.873], + [4009,0.844], + [4011,0.828], + [4012,0.845], + [4013,0.794], + [4015,0.793], + [4017,0.857], + [4019,0.788], + [4021,0.777], + [4023,0.911], + [4025,0.818], + [4027,0.817], + [5001,0.81], + [5003,0.853], + [5005,0.818], + [5007,0.809], + [5009,0.833], + [5011,0.85], + [5013,0.907], + [5015,0.838], + [5017,0.873], + [5019,0.789], + [5021,0.871], + [5023,0.826], + [5025,0.929], + [5027,0.839], + [5029,0.873], + [5031,0.77], + [5033,0.825], + [5035,0.765], + [5037,0.861], + [5039,0.845], + [5041,0.837], + [5043,0.838], + [5045,0.775], + [5047,0.884], + [5049,0.903], + [5051,0.821], + [5053,0.847], + [5055,0.833], + [5057,0.839], + [5059,0.866], + [5061,0.86], + [5063,0.815], + [5065,0.856], + [5067,0.773], + [5069,0.815], + [5071,0.866], + [5073,0.888], + [5075,0.854], + [5077,0.834], + [5079,0.841], + [5081,0.845], + [5083,0.858], + [5085,0.82], + [5087,0.881], + [5089,0.886], + [5091,0.801], + [5093,0.816], + [5095,0.882], + [5097,0.855], + [5099,0.847], + [5101,0.887], + [5103,0.861], + [5105,0.871], + [5107,0.816], + [5109,0.87], + [5111,0.803], + [5113,0.864], + [5115,0.822], + [5117,0.88], + [5119,0.796], + [5121,0.879], + [5123,0.867], + [5125,0.849], + [5127,0.851], + [5129,0.892], + [5131,0.822], + [5133,0.799], + [5135,0.861], + [5137,0.848], + [5139,0.871], + [5141,0.857], + [5143,0.746], + [5145,0.797], + [5147,0.873], + [5149,0.827], + [6001,0.837], + [6003,0.878], + [6005,0.845], + [6007,0.779], + [6009,0.908], + [6011,0.826], + [6013,0.851], + [6015,0.801], + [6017,0.867], + [6019,0.837], + [6021,0.894], + [6023,0.828], + [6025,0.844], + [6027,0.865], + [6029,0.794], + [6031,0.805], + [6033,0.851], + [6035,0.709], + [6037,0.868], + [6039,0.831], + [6041,0.852], + [6043,0.866], + [6045,0.88], + [6047,0.823], + [6049,0.82], + [6051,0.743], + [6053,0.827], + [6055,0.851], + [6057,0.847], + [6059,0.846], + [6061,0.845], + [6063,0.843], + [6065,0.821], + [6067,0.796], + [6069,0.848], + [6071,0.827], + [6073,0.82], + [6075,0.84], + [6077,0.81], + [6079,0.788], + [6081,0.868], + [6083,0.786], + [6085,0.842], + [6087,0.819], + [6089,0.844], + [6091,0.946], + [6093,0.831], + [6095,0.829], + [6097,0.847], + [6099,0.812], + [6101,0.821], + [6103,0.821], + [6105,0.856], + [6107,0.861], + [6109,0.818], + [6111,0.862], + [6113,0.743], + [6115,0.768], + [8001,0.813], + [8003,0.789], + [8005,0.825], + [8007,0.883], + [8009,0.886], + [8011,0.738], + [8013,0.763], + [8014,0.828], + [8015,0.809], + [8017,0.894], + [8019,0.864], + [8021,0.905], + [8023,0.907], + [8025,0.692], + [8027,0.871], + [8029,0.829], + [8031,0.774], + [8033,0.804], + [8035,0.839], + [8037,0.874], + [8039,0.909], + [8041,0.774], + [8043,0.804], + [8045,0.82], + [8047,0.884], + [8049,0.887], + [8051,0.697], + [8053,0.902], + [8055,0.842], + [8057,0.893], + [8059,0.834], + [8061,0.915], + [8063,0.833], + [8065,0.789], + [8067,0.792], + [8069,0.774], + [8071,0.82], + [8073,0.772], + [8075,0.784], + [8077,0.791], + [8079,0.85], + [8081,0.864], + [8083,0.845], + [8085,0.833], + [8087,0.851], + [8089,0.79], + [8091,0.815], + [8093,0.838], + [8095,0.861], + [8097,0.868], + [8099,0.794], + [8101,0.831], + [8103,0.883], + [8105,0.881], + [8107,0.8], + [8109,0.861], + [8111,0.819], + [8113,0.779], + [8115,0.827], + [8117,0.822], + [8119,0.856], + [8121,0.811], + [8123,0.817], + [8125,0.813], + [9001,0.888], + [9003,0.87], + [9005,0.915], + [9007,0.889], + [9009,0.872], + [9011,0.835], + [9013,0.84], + [9015,0.864], + [10001,0.849], + [10003,0.845], + [10005,0.885], + [11001,0.8], + [12001,0.734], + [12003,0.86], + [12005,0.787], + [12007,0.853], + [12009,0.851], + [12011,0.837], + [12013,0.82], + [12015,0.841], + [12017,0.874], + [12019,0.843], + [12021,0.857], + [12023,0.794], + [12027,0.84], + [12029,0.894], + [12031,0.8], + [12033,0.786], + [12035,0.874], + [12037,0.801], + [12039,0.881], + [12041,0.84], + [12043,0.903], + [12045,0.829], + [12047,0.797], + [12049,0.864], + [12051,0.78], + [12053,0.85], + [12055,0.857], + [12057,0.809], + [12059,0.866], + [12061,0.843], + [12063,0.813], + [12065,0.884], + [12067,0.821], + [12069,0.844], + [12071,0.817], + [12073,0.721], + [12075,0.839], + [12077,0.802], + [12079,0.846], + [12081,0.836], + [12083,0.834], + [12085,0.858], + [12086,0.857], + [12087,0.854], + [12089,0.853], + [12091,0.798], + [12093,0.877], + [12095,0.787], + [12097,0.814], + [12099,0.852], + [12101,0.834], + [12103,0.85], + [12105,0.817], + [12107,0.874], + [12109,0.819], + [12111,0.831], + [12113,0.808], + [12115,0.851], + [12117,0.853], + [12119,0.846], + [12121,0.838], + [12123,0.862], + [12125,0.811], + [12127,0.858], + [12129,0.84], + [12131,0.797], + [12133,0.87], + [13001,0.912], + [13003,0.885], + [13005,0.824], + [13007,0.957], + [13009,0.798], + [13011,0.899], + [13013,0.856], + [13015,0.836], + [13017,0.861], + [13019,0.807], + [13021,0.805], + [13023,0.859], + [13025,0.907], + [13027,0.853], + [13029,0.837], + [13031,0.751], + [13033,0.909], + [13035,0.818], + [13037,0.811], + [13039,0.806], + [13043,0.888], + [13045,0.786], + [13047,0.858], + [13049,0.816], + [13051,0.86], + [13053,0.516], + [13055,0.869], + [13057,0.852], + [13059,0.729], + [13061,0.857], + [13063,0.788], + [13065,0.905], + [13067,0.815], + [13069,0.878], + [13071,0.797], + [13073,0.854], + [13075,0.82], + [13077,0.847], + [13079,0.917], + [13081,0.797], + [13083,0.871], + [13085,0.847], + [13087,0.874], + [13089,0.789], + [13091,0.929], + [13093,0.871], + [13095,0.759], + [13097,0.795], + [13099,0.914], + [13101,0.854], + [13103,0.833], + [13105,0.903], + [13107,0.869], + [13109,0.84], + [13111,0.89], + [13113,0.874], + [13115,0.834], + [13117,0.886], + [13119,0.892], + [13121,0.784], + [13123,0.821], + [13125,0.872], + [13127,0.819], + [13129,0.854], + [13131,0.888], + [13133,0.889], + [13135,0.829], + [13137,0.884], + [13139,0.849], + [13141,0.903], + [13143,0.835], + [13145,0.884], + [13147,0.878], + [13149,0.845], + [13151,0.823], + [13153,0.793], + [13155,0.839], + [13157,0.851], + [13159,0.861], + [13161,0.832], + [13163,0.872], + [13165,0.925], + [13167,0.825], + [13169,0.873], + [13171,0.814], + [13173,0.865], + [13175,0.886], + [13177,0.873], + [13179,0.704], + [13181,0.893], + [13183,0.766], + [13185,0.775], + [13187,0.829], + [13189,0.871], + [13191,0.877], + [13193,0.891], + [13195,0.905], + [13197,0.904], + [13199,0.845], + [13201,0.909], + [13205,0.903], + [13207,0.888], + [13209,0.905], + [13211,0.905], + [13213,0.89], + [13215,0.739], + [13217,0.829], + [13219,0.893], + [13221,0.959], + [13223,0.847], + [13225,0.829], + [13227,0.861], + [13229,0.823], + [13231,0.821], + [13233,0.839], + [13235,0.87], + [13237,0.886], + [13239,0.82], + [13241,0.917], + [13243,0.883], + [13245,0.776], + [13247,0.817], + [13249,0.901], + [13251,0.859], + [13253,0.918], + [13255,0.816], + [13257,0.869], + [13259,0.942], + [13261,0.848], + [13263,0.923], + [13265,0.841], + [13267,0.806], + [13269,0.85], + [13271,0.935], + [13273,0.882], + [13275,0.86], + [13277,0.825], + [13279,0.907], + [13281,0.898], + [13283,0.901], + [13285,0.806], + [13287,0.857], + [13289,0.921], + [13291,0.868], + [13293,0.826], + [13295,0.828], + [13297,0.846], + [13299,0.823], + [13301,0.924], + [13303,0.898], + [13305,0.833], + [13307,0.883], + [13309,0.912], + [13311,0.889], + [13313,0.839], + [13315,0.876], + [13317,0.909], + [13319,0.912], + [13321,0.87], + [15001,0.86], + [15003,0.845], + [15005,0.946], + [15007,0.862], + [15009,0.826], + [16001,0.792], + [16003,0.855], + [16005,0.794], + [16007,0.854], + [16009,0.869], + [16011,0.855], + [16013,0.832], + [16015,0.846], + [16017,0.873], + [16019,0.82], + [16021,0.894], + [16023,0.873], + [16025,0.831], + [16027,0.794], + [16029,0.897], + [16031,0.843], + [16033,0.795], + [16035,0.862], + [16037,0.875], + [16039,0.794], + [16041,0.877], + [16043,0.899], + [16045,0.795], + [16047,0.9], + [16049,0.874], + [16051,0.846], + [16053,0.884], + [16055,0.823], + [16057,0.67], + [16059,0.828], + [16061,0.841], + [16063,0.884], + [16065,0.581], + [16067,0.884], + [16069,0.831], + [16071,0.837], + [16073,0.87], + [16075,0.829], + [16077,0.915], + [16079,0.833], + [16081,0.796], + [16083,0.828], + [16085,0.799], + [16087,0.862], + [17001,0.862], + [17003,0.843], + [17005,0.899], + [17007,0.905], + [17009,0.734], + [17011,0.911], + [17013,0.893], + [17015,0.887], + [17017,0.818], + [17019,0.719], + [17021,0.874], + [17023,0.863], + [17025,0.921], + [17027,0.884], + [17029,0.741], + [17031,0.858], + [17033,0.838], + [17035,0.876], + [17037,0.76], + [17039,0.886], + [17041,0.869], + [17043,0.88], + [17045,0.871], + [17047,0.928], + [17049,0.904], + [17051,0.882], + [17053,0.871], + [17055,0.863], + [17057,0.854], + [17059,0.881], + [17061,0.891], + [17063,0.885], + [17065,0.887], + [17067,0.899], + [17069,0.904], + [17071,0.917], + [17073,0.891], + [17075,0.873], + [17077,0.725], + [17079,0.873], + [17081,0.858], + [17083,0.887], + [17085,0.898], + [17087,0.767], + [17089,0.876], + [17091,0.835], + [17093,0.873], + [17095,0.882], + [17097,0.875], + [17099,0.899], + [17101,0.856], + [17103,0.887], + [17105,0.845], + [17107,0.803], + [17109,0.713], + [17111,0.909], + [17113,0.788], + [17115,0.834], + [17117,0.886], + [17119,0.861], + [17121,0.86], + [17123,0.904], + [17125,0.884], + [17127,0.875], + [17129,0.885], + [17131,0.887], + [17133,0.896], + [17135,0.878], + [17137,0.793], + [17139,0.905], + [17141,0.895], + [17143,0.839], + [17145,0.846], + [17147,0.904], + [17149,0.857], + [17151,0.903], + [17153,0.891], + [17155,0.9], + [17157,0.876], + [17159,0.918], + [17161,0.85], + [17163,0.843], + [17165,0.877], + [17167,0.836], + [17169,0.869], + [17171,0.934], + [17173,0.903], + [17175,0.904], + [17177,0.87], + [17179,0.869], + [17181,0.899], + [17183,0.865], + [17185,0.897], + [17187,0.913], + [17189,0.898], + [17191,0.917], + [17193,0.866], + [17195,0.896], + [17197,0.896], + [17199,0.856], + [17201,0.864], + [17203,0.889], + [18001,0.89], + [18003,0.863], + [18005,0.836], + [18007,0.845], + [18009,0.82], + [18011,0.888], + [18013,0.874], + [18015,0.9], + [18017,0.875], + [18019,0.859], + [18021,0.899], + [18023,0.851], + [18025,0.907], + [18027,0.91], + [18029,0.881], + [18031,0.834], + [18033,0.881], + [18035,0.737], + [18037,0.908], + [18039,0.844], + [18041,0.844], + [18043,0.857], + [18045,0.867], + [18047,0.902], + [18049,0.879], + [18051,0.89], + [18053,0.844], + [18055,0.87], + [18057,0.856], + [18059,0.866], + [18061,0.919], + [18063,0.868], + [18065,0.843], + [18067,0.822], + [18069,0.861], + [18071,0.846], + [18073,0.853], + [18075,0.892], + [18077,0.837], + [18079,0.812], + [18081,0.837], + [18083,0.82], + [18085,0.853], + [18087,0.909], + [18089,0.865], + [18091,0.843], + [18093,0.878], + [18095,0.833], + [18097,0.802], + [18099,0.841], + [18101,0.874], + [18103,0.854], + [18105,0.661], + [18107,0.836], + [18109,0.856], + [18111,0.885], + [18113,0.849], + [18115,0.886], + [18117,0.875], + [18119,0.894], + [18121,0.845], + [18123,0.869], + [18125,0.882], + [18127,0.868], + [18129,0.898], + [18131,0.884], + [18133,0.823], + [18135,0.864], + [18137,0.876], + [18139,0.869], + [18141,0.829], + [18143,0.818], + [18145,0.866], + [18147,0.92], + [18149,0.868], + [18151,0.848], + [18153,0.863], + [18155,0.867], + [18157,0.707], + [18159,0.89], + [18161,0.864], + [18163,0.825], + [18165,0.904], + [18167,0.832], + [18169,0.856], + [18171,0.891], + [18173,0.894], + [18175,0.868], + [18177,0.814], + [18179,0.858], + [18181,0.856], + [18183,0.884], + [19001,0.914], + [19003,0.912], + [19005,0.882], + [19007,0.865], + [19009,0.903], + [19011,0.908], + [19013,0.791], + [19015,0.877], + [19017,0.859], + [19019,0.875], + [19021,0.83], + [19023,0.892], + [19025,0.838], + [19027,0.857], + [19029,0.862], + [19031,0.903], + [19033,0.85], + [19035,0.864], + [19037,0.914], + [19039,0.878], + [19041,0.872], + [19043,0.882], + [19045,0.872], + [19047,0.892], + [19049,0.849], + [19051,0.931], + [19053,0.836], + [19055,0.923], + [19057,0.845], + [19059,0.887], + [19061,0.859], + [19063,0.863], + [19065,0.832], + [19067,0.895], + [19069,0.895], + [19071,0.887], + [19073,0.82], + [19075,0.912], + [19077,0.89], + [19079,0.874], + [19081,0.892], + [19083,0.881], + [19085,0.9], + [19087,0.847], + [19089,0.872], + [19091,0.876], + [19093,0.857], + [19095,0.873], + [19097,0.89], + [19099,0.854], + [19101,0.842], + [19103,0.715], + [19105,0.861], + [19107,0.883], + [19109,0.905], + [19111,0.863], + [19113,0.82], + [19115,0.866], + [19117,0.882], + [19119,0.935], + [19121,0.893], + [19123,0.846], + [19125,0.844], + [19127,0.858], + [19129,0.884], + [19131,0.909], + [19133,0.882], + [19135,0.915], + [19137,0.889], + [19139,0.86], + [19141,0.824], + [19143,0.89], + [19145,0.8], + [19147,0.868], + [19149,0.883], + [19151,0.88], + [19153,0.813], + [19155,0.814], + [19157,0.85], + [19159,0.89], + [19161,0.89], + [19163,0.84], + [19165,0.896], + [19167,0.881], + [19169,0.695], + [19171,0.888], + [19173,0.923], + [19175,0.843], + [19177,0.889], + [19179,0.848], + [19181,0.843], + [19183,0.874], + [19185,0.881], + [19187,0.869], + [19189,0.871], + [19191,0.85], + [19193,0.829], + [19195,0.898], + [19197,0.897], + [20001,0.838], + [20003,0.853], + [20005,0.851], + [20007,0.894], + [20009,0.848], + [20011,0.841], + [20013,0.841], + [20015,0.839], + [20017,0.839], + [20019,0.858], + [20021,0.853], + [20023,0.915], + [20025,0.894], + [20027,0.898], + [20029,0.833], + [20031,0.862], + [20033,0.901], + [20035,0.795], + [20037,0.805], + [20039,0.873], + [20041,0.858], + [20043,0.855], + [20045,0.709], + [20047,0.883], + [20049,0.802], + [20051,0.763], + [20053,0.852], + [20055,0.848], + [20057,0.836], + [20059,0.826], + [20061,0.741], + [20063,0.92], + [20065,0.88], + [20067,0.893], + [20069,0.81], + [20071,0.859], + [20073,0.86], + [20075,0.827], + [20077,0.858], + [20079,0.851], + [20081,0.847], + [20083,0.906], + [20085,0.871], + [20087,0.897], + [20089,0.901], + [20091,0.84], + [20093,0.822], + [20095,0.89], + [20097,0.784], + [20099,0.83], + [20101,0.869], + [20103,0.765], + [20105,0.845], + [20107,0.905], + [20109,0.917], + [20111,0.743], + [20113,0.859], + [20115,0.864], + [20117,0.925], + [20119,0.874], + [20121,0.862], + [20123,0.889], + [20125,0.815], + [20127,0.867], + [20129,0.834], + [20131,0.908], + [20133,0.824], + [20135,0.908], + [20137,0.817], + [20139,0.878], + [20141,0.886], + [20143,0.877], + [20145,0.742], + [20147,0.9], + [20149,0.899], + [20151,0.824], + [20153,0.897], + [20155,0.82], + [20157,0.863], + [20159,0.813], + [20161,0.717], + [20163,0.88], + [20165,0.858], + [20167,0.878], + [20169,0.817], + [20171,0.884], + [20173,0.814], + [20175,0.808], + [20177,0.821], + [20179,0.862], + [20181,0.852], + [20183,0.91], + [20185,0.888], + [20187,0.886], + [20189,0.781], + [20191,0.85], + [20193,0.805], + [20195,0.906], + [20197,0.898], + [20199,0.932], + [20201,0.949], + [20203,0.876], + [20205,0.834], + [20207,0.841], + [20209,0.804], + [21001,0.849], + [21003,0.857], + [21005,0.846], + [21007,0.883], + [21009,0.88], + [21011,0.834], + [21013,0.887], + [21015,0.852], + [21017,0.841], + [21019,0.847], + [21021,0.807], + [21023,0.893], + [21025,0.908], + [21027,0.878], + [21029,0.888], + [21031,0.887], + [21033,0.898], + [21035,0.807], + [21037,0.85], + [21039,0.925], + [21041,0.785], + [21043,0.894], + [21045,0.902], + [21047,0.769], + [21049,0.807], + [21051,0.941], + [21053,0.881], + [21055,0.923], + [21057,0.945], + [21059,0.844], + [21061,0.839], + [21063,0.865], + [21065,0.904], + [21067,0.738], + [21069,0.884], + [21071,0.868], + [21073,0.806], + [21075,0.85], + [21077,0.811], + [21079,0.857], + [21081,0.838], + [21083,0.879], + [21085,0.868], + [21087,0.916], + [21089,0.911], + [21091,0.873], + [21093,0.803], + [21095,0.896], + [21097,0.86], + [21099,0.861], + [21101,0.832], + [21103,0.821], + [21105,0.865], + [21107,0.849], + [21109,0.857], + [21111,0.843], + [21113,0.789], + [21115,0.874], + [21117,0.833], + [21119,0.908], + [21121,0.866], + [21123,0.896], + [21125,0.837], + [21127,0.873], + [21129,0.875], + [21131,0.943], + [21133,0.904], + [21135,0.883], + [21137,0.87], + [21139,0.915], + [21141,0.824], + [21143,0.843], + [21145,0.831], + [21147,0.814], + [21149,0.89], + [21151,0.773], + [21153,0.923], + [21155,0.877], + [21157,0.894], + [21159,0.879], + [21161,0.797], + [21163,0.804], + [21165,0.914], + [21167,0.857], + [21169,0.868], + [21171,0.89], + [21173,0.863], + [21175,0.875], + [21177,0.871], + [21179,0.861], + [21181,0.877], + [21183,0.893], + [21185,0.88], + [21187,0.879], + [21189,0.9], + [21191,0.869], + [21193,0.882], + [21195,0.879], + [21197,0.854], + [21199,0.845], + [21201,0.826], + [21203,0.879], + [21205,0.801], + [21207,0.919], + [21209,0.77], + [21211,0.835], + [21213,0.817], + [21215,0.899], + [21217,0.829], + [21219,0.828], + [21221,0.87], + [21223,0.868], + [21225,0.871], + [21227,0.775], + [21229,0.894], + [21231,0.894], + [21233,0.886], + [21235,0.838], + [21237,0.966], + [21239,0.856], + [22001,0.879], + [22003,0.825], + [22005,0.86], + [22007,0.909], + [22009,0.825], + [22011,0.83], + [22013,0.898], + [22015,0.804], + [22017,0.842], + [22019,0.813], + [22021,0.832], + [22023,0.876], + [22025,0.806], + [22027,0.899], + [22029,0.826], + [22031,0.905], + [22033,0.815], + [22035,0.766], + [22037,0.874], + [22039,0.825], + [22041,0.858], + [22043,0.871], + [22045,0.872], + [22047,0.851], + [22049,0.85], + [22051,0.851], + [22053,0.87], + [22055,0.837], + [22057,0.897], + [22059,0.888], + [22061,0.762], + [22063,0.893], + [22065,0.793], + [22067,0.922], + [22069,0.849], + [22071,0.74], + [22073,0.857], + [22075,0.842], + [22077,0.919], + [22079,0.847], + [22081,0.902], + [22083,0.809], + [22085,0.915], + [22087,0.71], + [22089,0.925], + [22091,0.923], + [22093,0.946], + [22095,0.898], + [22097,0.899], + [22099,0.895], + [22101,0.862], + [22103,0.853], + [22105,0.86], + [22107,0.829], + [22109,0.859], + [22111,0.93], + [22113,0.884], + [22115,0.749], + [22117,0.872], + [22119,0.844], + [22121,0.857], + [22123,0.812], + [22125,0.906], + [22127,0.864], + [23001,0.832], + [23003,0.884], + [23005,0.836], + [23007,0.895], + [23009,0.892], + [23011,0.871], + [23013,0.861], + [23015,0.902], + [23017,0.891], + [23019,0.829], + [23021,0.89], + [23023,0.872], + [23025,0.897], + [23027,0.875], + [23029,0.88], + [23031,0.88], + [24001,0.843], + [24003,0.858], + [24005,0.866], + [24009,0.911], + [24011,0.888], + [24013,0.925], + [24015,0.878], + [24017,0.884], + [24019,0.885], + [24021,0.871], + [24023,0.919], + [24025,0.898], + [24027,0.868], + [24029,0.862], + [24031,0.855], + [24033,0.838], + [24035,0.903], + [24037,0.852], + [24039,0.8], + [24041,0.882], + [24043,0.858], + [24045,0.801], + [24047,0.901], + [24510,0.824], + [25001,0.913], + [25003,0.885], + [25005,0.878], + [25007,0.93], + [25009,0.878], + [25011,0.871], + [25013,0.863], + [25015,0.824], + [25017,0.854], + [25019,0.897], + [25021,0.881], + [25023,0.9], + [25025,0.767], + [25027,0.878], + [26001,0.925], + [26003,0.858], + [26005,0.892], + [26007,0.878], + [26009,0.884], + [26011,0.892], + [26013,0.904], + [26015,0.909], + [26017,0.871], + [26019,0.905], + [26021,0.867], + [26023,0.852], + [26025,0.84], + [26027,0.895], + [26029,0.889], + [26031,0.864], + [26033,0.815], + [26035,0.864], + [26037,0.897], + [26039,0.84], + [26041,0.889], + [26043,0.86], + [26045,0.865], + [26047,0.855], + [26049,0.857], + [26051,0.891], + [26053,0.87], + [26055,0.855], + [26057,0.834], + [26059,0.876], + [26061,0.805], + [26063,0.914], + [26065,0.77], + [26067,0.841], + [26069,0.87], + [26071,0.913], + [26073,0.671], + [26075,0.837], + [26077,0.783], + [26079,0.863], + [26081,0.836], + [26083,0.898], + [26085,0.898], + [26087,0.895], + [26089,0.919], + [26091,0.852], + [26093,0.902], + [26095,0.824], + [26097,0.905], + [26099,0.885], + [26101,0.858], + [26103,0.846], + [26105,0.859], + [26107,0.772], + [26109,0.9], + [26111,0.86], + [26113,0.866], + [26115,0.892], + [26117,0.853], + [26119,0.878], + [26121,0.844], + [26123,0.869], + [26125,0.865], + [26127,0.898], + [26129,0.877], + [26131,0.935], + [26133,0.879], + [26135,0.872], + [26137,0.868], + [26139,0.863], + [26141,0.938], + [26143,0.868], + [26145,0.861], + [26147,0.872], + [26149,0.897], + [26151,0.896], + [26153,0.899], + [26155,0.858], + [26157,0.874], + [26159,0.894], + [26161,0.767], + [26163,0.854], + [26165,0.861], + [27001,0.908], + [27003,0.878], + [27005,0.885], + [27007,0.84], + [27009,0.855], + [27011,0.914], + [27013,0.779], + [27015,0.901], + [27017,0.881], + [27019,0.898], + [27021,0.906], + [27023,0.86], + [27025,0.884], + [27027,0.822], + [27029,0.886], + [27031,0.882], + [27033,0.89], + [27035,0.86], + [27037,0.872], + [27039,0.926], + [27041,0.863], + [27043,0.906], + [27045,0.888], + [27047,0.881], + [27049,0.886], + [27051,0.893], + [27053,0.819], + [27055,0.899], + [27057,0.883], + [27059,0.886], + [27061,0.886], + [27063,0.896], + [27065,0.905], + [27067,0.88], + [27069,0.935], + [27071,0.892], + [27073,0.91], + [27075,0.904], + [27077,0.895], + [27079,0.89], + [27081,0.906], + [27083,0.814], + [27085,0.875], + [27087,0.904], + [27089,0.912], + [27091,0.885], + [27093,0.902], + [27095,0.851], + [27097,0.894], + [27099,0.886], + [27101,0.921], + [27103,0.844], + [27105,0.837], + [27107,0.923], + [27109,0.868], + [27111,0.889], + [27113,0.864], + [27115,0.873], + [27117,0.874], + [27119,0.83], + [27121,0.901], + [27123,0.822], + [27125,0.891], + [27127,0.912], + [27129,0.901], + [27131,0.824], + [27133,0.902], + [27135,0.888], + [27137,0.83], + [27139,0.9], + [27141,0.88], + [27143,0.912], + [27145,0.816], + [27147,0.856], + [27149,0.807], + [27151,0.881], + [27153,0.896], + [27155,0.902], + [27157,0.925], + [27159,0.895], + [27161,0.879], + [27163,0.902], + [27165,0.92], + [27167,0.881], + [27169,0.816], + [27171,0.885], + [27173,0.859], + [28001,0.876], + [28003,0.848], + [28005,0.897], + [28007,0.863], + [28009,0.961], + [28011,0.831], + [28013,0.868], + [28015,0.907], + [28017,0.879], + [28019,0.883], + [28021,0.88], + [28023,0.924], + [28025,0.868], + [28027,0.857], + [28029,0.906], + [28031,0.915], + [28033,0.845], + [28035,0.8], + [28037,0.915], + [28039,0.878], + [28041,0.823], + [28043,0.814], + [28045,0.784], + [28047,0.789], + [28049,0.815], + [28051,0.896], + [28053,0.866], + [28055,0.798], + [28057,0.881], + [28059,0.834], + [28061,0.91], + [28063,0.899], + [28065,0.918], + [28067,0.871], + [28069,0.867], + [28071,0.696], + [28073,0.802], + [28075,0.798], + [28077,0.901], + [28079,0.871], + [28081,0.837], + [28083,0.909], + [28085,0.912], + [28087,0.821], + [28089,0.853], + [28091,0.874], + [28093,0.885], + [28095,0.898], + [28097,0.913], + [28099,0.868], + [28101,0.864], + [28103,0.94], + [28105,0.71], + [28107,0.891], + [28109,0.855], + [28111,0.917], + [28113,0.851], + [28115,0.883], + [28117,0.867], + [28119,0.858], + [28121,0.831], + [28123,0.851], + [28125,0.871], + [28127,0.881], + [28129,0.931], + [28131,0.836], + [28133,0.834], + [28135,0.887], + [28137,0.888], + [28139,0.857], + [28141,0.875], + [28143,0.775], + [28145,0.866], + [28147,0.881], + [28149,0.855], + [28151,0.814], + [28153,0.912], + [28155,0.852], + [28157,0.861], + [28159,0.905], + [28161,0.897], + [28163,0.85], + [29001,0.729], + [29003,0.859], + [29005,0.887], + [29007,0.856], + [29009,0.843], + [29011,0.892], + [29013,0.879], + [29015,0.903], + [29017,0.854], + [29019,0.718], + [29021,0.781], + [29023,0.793], + [29025,0.919], + [29027,0.801], + [29029,0.844], + [29031,0.793], + [29033,0.934], + [29035,0.884], + [29037,0.847], + [29039,0.842], + [29041,0.913], + [29043,0.82], + [29045,0.869], + [29047,0.832], + [29049,0.861], + [29051,0.822], + [29053,0.804], + [29055,0.83], + [29057,0.843], + [29059,0.844], + [29061,0.912], + [29063,0.8], + [29065,0.878], + [29067,0.949], + [29069,0.791], + [29071,0.888], + [29073,0.88], + [29075,0.871], + [29077,0.766], + [29079,0.827], + [29081,0.9], + [29083,0.843], + [29085,0.88], + [29087,0.881], + [29089,0.838], + [29091,0.9], + [29093,0.855], + [29095,0.822], + [29097,0.817], + [29099,0.884], + [29101,0.737], + [29103,0.852], + [29105,0.811], + [29107,0.857], + [29109,0.848], + [29111,0.873], + [29113,0.867], + [29115,0.915], + [29117,0.863], + [29119,0.824], + [29121,0.908], + [29123,0.842], + [29125,0.884], + [29127,0.814], + [29129,0.803], + [29131,0.847], + [29133,0.82], + [29135,0.838], + [29137,0.861], + [29139,0.831], + [29141,0.889], + [29143,0.825], + [29145,0.841], + [29147,0.715], + [29149,0.858], + [29151,0.906], + [29153,0.959], + [29155,0.831], + [29157,0.871], + [29159,0.83], + [29161,0.788], + [29163,0.83], + [29165,0.812], + [29167,0.805], + [29169,0.587], + [29171,0.887], + [29173,0.919], + [29175,0.844], + [29177,0.868], + [29179,0.876], + [29181,0.814], + [29183,0.882], + [29185,0.878], + [29186,0.919], + [29187,0.805], + [29189,0.862], + [29195,0.817], + [29197,0.871], + [29199,0.905], + [29201,0.852], + [29203,0.902], + [29205,0.892], + [29207,0.834], + [29209,0.834], + [29211,0.834], + [29213,0.788], + [29215,0.875], + [29217,0.813], + [29219,0.866], + [29221,0.888], + [29223,0.876], + [29225,0.846], + [29227,0.837], + [29229,0.83], + [29510,0.776], + [30001,0.84], + [30003,0.827], + [30005,0.913], + [30007,0.841], + [30009,0.84], + [30011,0.918], + [30013,0.807], + [30015,0.905], + [30017,0.786], + [30019,0.916], + [30021,0.829], + [30023,0.79], + [30025,0.819], + [30027,0.885], + [30029,0.917], + [30031,0.744], + [30033,0.943], + [30035,0.839], + [30037,0.917], + [30039,0.862], + [30041,0.829], + [30043,0.844], + [30045,0.926], + [30047,0.85], + [30049,0.821], + [30051,0.992], + [30053,0.849], + [30055,0.974], + [30057,0.845], + [30059,0.854], + [30061,0.96], + [30063,0.776], + [30065,0.865], + [30067,0.872], + [30069,0.848], + [30071,0.909], + [30073,0.854], + [30075,0.892], + [30077,0.805], + [30079,0.957], + [30081,0.851], + [30083,0.878], + [30085,0.884], + [30087,0.855], + [30089,0.88], + [30091,0.894], + [30093,0.817], + [30095,0.869], + [30097,0.935], + [30099,0.923], + [30101,0.824], + [30103,0.788], + [30105,0.889], + [30107,0.98], + [30109,0.879], + [30111,0.829], + [31001,0.812], + [31003,0.879], + [31005,0.908], + [31007,0.913], + [31009,0.931], + [31011,0.87], + [31013,0.842], + [31015,0.892], + [31017,0.868], + [31019,0.793], + [31021,0.866], + [31023,0.899], + [31025,0.901], + [31027,0.894], + [31029,0.872], + [31031,0.939], + [31033,0.827], + [31035,0.893], + [31037,0.849], + [31039,0.915], + [31041,0.86], + [31043,0.827], + [31045,0.738], + [31047,0.847], + [31049,0.87], + [31051,0.903], + [31053,0.835], + [31055,0.81], + [31057,0.852], + [31059,0.862], + [31061,0.868], + [31063,0.857], + [31065,0.867], + [31067,0.837], + [31069,0.883], + [31071,0.884], + [31073,0.898], + [31075,0.851], + [31077,0.875], + [31079,0.808], + [31081,0.888], + [31083,0.893], + [31085,0.92], + [31087,0.917], + [31089,0.89], + [31091,0.938], + [31093,0.889], + [31095,0.879], + [31097,0.847], + [31099,0.869], + [31101,0.852], + [31103,0.955], + [31105,0.875], + [31107,0.894], + [31109,0.773], + [31111,0.834], + [31113,0.865], + [31115,0.982], + [31117,0.889], + [31119,0.83], + [31121,0.906], + [31123,0.851], + [31125,0.908], + [31127,0.838], + [31129,0.91], + [31131,0.835], + [31133,0.941], + [31135,0.898], + [31137,0.888], + [31139,0.922], + [31141,0.873], + [31143,0.902], + [31145,0.847], + [31147,0.837], + [31149,0.93], + [31151,0.829], + [31153,0.84], + [31155,0.901], + [31157,0.807], + [31159,0.83], + [31161,0.898], + [31163,0.903], + [31165,0.943], + [31167,0.914], + [31169,0.885], + [31171,0.969], + [31173,0.874], + [31175,0.89], + [31177,0.873], + [31179,0.766], + [31181,0.859], + [31183,0.921], + [31185,0.829], + [32001,0.857], + [32003,0.773], + [32005,0.862], + [32007,0.866], + [32009,0.919], + [32011,0.961], + [32013,0.792], + [32015,0.806], + [32017,0.841], + [32019,0.823], + [32021,0.88], + [32023,0.834], + [32027,0.812], + [32029,0.912], + [32031,0.78], + [32033,0.874], + [32510,0.797], + [33001,0.887], + [33003,0.894], + [33005,0.848], + [33007,0.854], + [33009,0.84], + [33011,0.86], + [33013,0.852], + [33015,0.899], + [33017,0.808], + [33019,0.87], + [34001,0.876], + [34003,0.92], + [34005,0.895], + [34007,0.891], + [34009,0.88], + [34011,0.872], + [34013,0.877], + [34015,0.899], + [34017,0.858], + [34019,0.906], + [34021,0.864], + [34023,0.883], + [34025,0.903], + [34027,0.909], + [34029,0.903], + [34031,0.915], + [34033,0.91], + [34035,0.913], + [34037,0.914], + [34039,0.895], + [34041,0.905], + [35001,0.828], + [35003,0.907], + [35005,0.811], + [35006,0.871], + [35007,0.852], + [35009,0.768], + [35011,0.915], + [35013,0.808], + [35015,0.842], + [35017,0.84], + [35019,0.836], + [35021,0.947], + [35023,0.912], + [35025,0.827], + [35027,0.86], + [35028,0.86], + [35029,0.827], + [35031,0.932], + [35033,0.907], + [35035,0.818], + [35037,0.857], + [35039,0.908], + [35041,0.78], + [35043,0.857], + [35045,0.872], + [35047,0.865], + [35049,0.839], + [35051,0.933], + [35053,0.908], + [35055,0.881], + [35057,0.816], + [35059,0.816], + [35061,0.856], + [36001,0.838], + [36003,0.84], + [36005,0.879], + [36007,0.866], + [36009,0.866], + [36011,0.849], + [36013,0.867], + [36015,0.841], + [36017,0.895], + [36019,0.843], + [36021,0.891], + [36023,0.835], + [36025,0.872], + [36027,0.869], + [36029,0.868], + [36031,0.871], + [36033,0.818], + [36035,0.862], + [36037,0.876], + [36039,0.896], + [36041,0.945], + [36043,0.897], + [36045,0.774], + [36047,0.907], + [36049,0.913], + [36051,0.846], + [36053,0.867], + [36055,0.856], + [36057,0.868], + [36059,0.928], + [36061,0.837], + [36063,0.89], + [36065,0.846], + [36067,0.841], + [36069,0.867], + [36071,0.887], + [36073,0.847], + [36075,0.856], + [36077,0.831], + [36079,0.922], + [36081,0.892], + [36083,0.857], + [36085,0.93], + [36087,0.925], + [36089,0.824], + [36091,0.889], + [36093,0.887], + [36095,0.862], + [36097,0.881], + [36099,0.846], + [36101,0.87], + [36103,0.922], + [36105,0.869], + [36107,0.895], + [36109,0.721], + [36111,0.862], + [36113,0.871], + [36115,0.851], + [36117,0.869], + [36119,0.894], + [36121,0.868], + [36123,0.883], + [37001,0.829], + [37003,0.909], + [37005,0.929], + [37007,0.851], + [37009,0.925], + [37011,0.817], + [37013,0.872], + [37015,0.869], + [37017,0.875], + [37019,0.86], + [37021,0.831], + [37023,0.877], + [37025,0.852], + [37027,0.88], + [37029,0.877], + [37031,0.838], + [37033,0.848], + [37035,0.861], + [37037,0.889], + [37039,0.921], + [37041,0.843], + [37043,0.899], + [37045,0.854], + [37047,0.901], + [37049,0.768], + [37051,0.741], + [37053,0.885], + [37055,0.878], + [37057,0.871], + [37059,0.911], + [37061,0.852], + [37063,0.763], + [37065,0.847], + [37067,0.846], + [37069,0.875], + [37071,0.849], + [37073,0.916], + [37075,0.903], + [37077,0.867], + [37079,0.857], + [37081,0.835], + [37083,0.88], + [37085,0.822], + [37087,0.858], + [37089,0.874], + [37091,0.815], + [37093,0.808], + [37095,0.8], + [37097,0.86], + [37099,0.811], + [37101,0.879], + [37103,0.883], + [37105,0.887], + [37107,0.858], + [37109,0.882], + [37111,0.888], + [37113,0.88], + [37115,0.889], + [37117,0.895], + [37119,0.782], + [37121,0.908], + [37123,0.905], + [37125,0.877], + [37127,0.871], + [37129,0.784], + [37131,0.884], + [37133,0.702], + [37135,0.759], + [37137,0.872], + [37139,0.827], + [37141,0.89], + [37143,0.907], + [37145,0.906], + [37147,0.751], + [37149,0.893], + [37151,0.875], + [37153,0.896], + [37155,0.866], + [37157,0.87], + [37159,0.866], + [37161,0.865], + [37163,0.872], + [37165,0.851], + [37167,0.89], + [37169,0.907], + [37171,0.907], + [37173,0.896], + [37175,0.851], + [37177,0.752], + [37179,0.879], + [37181,0.869], + [37183,0.814], + [37185,0.906], + [37187,0.903], + [37189,0.711], + [37191,0.831], + [37193,0.913], + [37195,0.837], + [37197,0.923], + [37199,0.908], + [38001,0.86], + [38003,0.873], + [38005,0.93], + [38007,0.96], + [38009,0.918], + [38011,0.924], + [38013,0.91], + [38015,0.841], + [38017,0.763], + [38019,0.916], + [38021,0.854], + [38023,0.904], + [38025,0.9], + [38027,0.939], + [38029,0.927], + [38031,0.91], + [38033,0.926], + [38035,0.75], + [38037,0.883], + [38039,0.93], + [38041,0.932], + [38043,0.894], + [38045,0.934], + [38047,0.915], + [38049,0.914], + [38051,0.937], + [38053,0.897], + [38055,0.917], + [38057,0.87], + [38059,0.868], + [38061,0.879], + [38063,0.921], + [38065,0.979], + [38067,0.887], + [38069,0.844], + [38071,0.886], + [38073,0.914], + [38075,0.889], + [38077,0.831], + [38079,0.927], + [38081,0.923], + [38083,0.938], + [38085,0.93], + [38087,0.958], + [38089,0.844], + [38091,0.882], + [38093,0.814], + [38095,0.893], + [38097,0.861], + [38099,0.894], + [38101,0.786], + [38103,0.891], + [38105,0.853], + [39001,0.887], + [39003,0.845], + [39005,0.87], + [39007,0.853], + [39009,0.673], + [39011,0.874], + [39013,0.902], + [39015,0.906], + [39017,0.828], + [39019,0.901], + [39021,0.875], + [39023,0.854], + [39025,0.877], + [39027,0.844], + [39029,0.864], + [39031,0.878], + [39033,0.828], + [39035,0.846], + [39037,0.873], + [39039,0.863], + [39041,0.859], + [39043,0.889], + [39045,0.848], + [39047,0.828], + [39049,0.796], + [39051,0.88], + [39053,0.853], + [39055,0.934], + [39057,0.831], + [39059,0.875], + [39061,0.825], + [39063,0.822], + [39065,0.849], + [39067,0.904], + [39069,0.897], + [39071,0.844], + [39073,0.871], + [39075,0.942], + [39077,0.856], + [39079,0.838], + [39081,0.908], + [39083,0.84], + [39085,0.893], + [39087,0.868], + [39089,0.844], + [39091,0.859], + [39093,0.864], + [39095,0.835], + [39097,0.823], + [39099,0.889], + [39101,0.813], + [39103,0.896], + [39105,0.886], + [39107,0.909], + [39109,0.859], + [39111,0.948], + [39113,0.825], + [39115,0.927], + [39117,0.883], + [39119,0.861], + [39121,0.849], + [39123,0.898], + [39125,0.882], + [39127,0.87], + [39129,0.826], + [39131,0.836], + [39133,0.821], + [39135,0.873], + [39137,0.917], + [39139,0.84], + [39141,0.841], + [39143,0.882], + [39145,0.851], + [39147,0.851], + [39149,0.874], + [39151,0.866], + [39153,0.892], + [39155,0.903], + [39157,0.897], + [39159,0.871], + [39161,0.887], + [39163,0.865], + [39165,0.865], + [39167,0.884], + [39169,0.885], + [39171,0.832], + [39173,0.791], + [39175,0.875], + [40001,0.956], + [40003,0.837], + [40005,0.804], + [40007,0.85], + [40009,0.798], + [40011,0.811], + [40013,0.802], + [40015,0.8], + [40017,0.828], + [40019,0.879], + [40021,0.864], + [40023,0.835], + [40025,0.875], + [40027,0.783], + [40029,0.874], + [40031,0.716], + [40033,0.836], + [40035,0.817], + [40037,0.857], + [40039,0.769], + [40041,0.85], + [40043,0.886], + [40045,0.912], + [40047,0.828], + [40049,0.887], + [40051,0.827], + [40053,0.889], + [40055,0.721], + [40057,0.794], + [40059,0.902], + [40061,0.84], + [40063,0.879], + [40065,0.815], + [40067,0.774], + [40069,0.878], + [40071,0.834], + [40073,0.868], + [40075,0.866], + [40077,0.825], + [40079,0.819], + [40081,0.879], + [40083,0.847], + [40085,0.881], + [40087,0.854], + [40089,0.854], + [40091,0.864], + [40093,0.88], + [40095,0.861], + [40097,0.847], + [40099,0.833], + [40101,0.854], + [40103,0.817], + [40105,0.866], + [40107,0.857], + [40109,0.785], + [40111,0.841], + [40113,0.86], + [40115,0.798], + [40117,0.822], + [40119,0.688], + [40121,0.821], + [40123,0.812], + [40125,0.845], + [40127,0.847], + [40129,0.903], + [40131,0.832], + [40133,0.827], + [40135,0.821], + [40137,0.82], + [40139,0.795], + [40141,0.802], + [40143,0.799], + [40145,0.862], + [40147,0.833], + [40149,0.845], + [40151,0.738], + [40153,0.817], + [41001,0.847], + [41003,0.746], + [41005,0.853], + [41007,0.792], + [41009,0.852], + [41011,0.793], + [41013,0.818], + [41015,0.833], + [41017,0.836], + [41019,0.826], + [41021,0.864], + [41023,0.883], + [41025,0.79], + [41027,0.88], + [41029,0.796], + [41031,0.782], + [41033,0.868], + [41035,0.806], + [41037,0.76], + [41039,0.782], + [41041,0.871], + [41043,0.829], + [41045,0.846], + [41047,0.813], + [41049,0.827], + [41051,0.802], + [41053,0.809], + [41055,0.862], + [41057,0.864], + [41059,0.799], + [41061,0.807], + [41063,0.899], + [41065,0.862], + [41067,0.815], + [41069,0.877], + [41071,0.813], + [42001,0.865], + [42003,0.866], + [42005,0.912], + [42007,0.894], + [42009,0.912], + [42011,0.851], + [42013,0.875], + [42015,0.889], + [42017,0.925], + [42019,0.883], + [42021,0.888], + [42023,0.931], + [42025,0.899], + [42027,0.711], + [42029,0.885], + [42031,0.839], + [42033,0.881], + [42035,0.822], + [42037,0.86], + [42039,0.864], + [42041,0.846], + [42043,0.846], + [42045,0.889], + [42047,0.931], + [42049,0.839], + [42051,0.893], + [42053,0.793], + [42055,0.876], + [42057,0.908], + [42059,0.852], + [42061,0.864], + [42063,0.817], + [42065,0.912], + [42067,0.909], + [42069,0.876], + [42071,0.878], + [42073,0.91], + [42075,0.878], + [42077,0.851], + [42079,0.881], + [42081,0.865], + [42083,0.879], + [42085,0.87], + [42087,0.905], + [42089,0.894], + [42091,0.891], + [42093,0.886], + [42095,0.858], + [42097,0.889], + [42099,0.886], + [42101,0.86], + [42103,0.902], + [42105,0.89], + [42107,0.881], + [42109,0.893], + [42111,0.908], + [42113,0.934], + [42115,0.909], + [42117,0.879], + [42119,0.833], + [42121,0.871], + [42123,0.899], + [42125,0.887], + [42127,0.892], + [42129,0.907], + [42131,0.904], + [42133,0.872], + [44001,0.875], + [44003,0.904], + [44005,0.853], + [44007,0.851], + [44009,0.869], + [45001,0.889], + [45003,0.886], + [45005,0.887], + [45007,0.845], + [45009,0.854], + [45011,0.932], + [45013,0.808], + [45015,0.832], + [45017,0.918], + [45019,0.813], + [45021,0.881], + [45023,0.922], + [45025,0.89], + [45027,0.929], + [45029,0.901], + [45031,0.885], + [45033,0.859], + [45035,0.847], + [45037,0.856], + [45039,0.93], + [45041,0.833], + [45043,0.891], + [45045,0.822], + [45047,0.835], + [45049,0.897], + [45051,0.835], + [45053,0.833], + [45055,0.894], + [45057,0.895], + [45059,0.846], + [45061,0.911], + [45063,0.849], + [45065,0.881], + [45067,0.897], + [45069,0.858], + [45071,0.863], + [45073,0.851], + [45075,0.885], + [45077,0.807], + [45079,0.771], + [45081,0.901], + [45083,0.849], + [45085,0.902], + [45087,0.883], + [45089,0.942], + [45091,0.828], + [46003,0.892], + [46005,0.82], + [46007,0.902], + [46009,0.841], + [46011,0.726], + [46013,0.865], + [46015,0.866], + [46017,0.872], + [46019,0.849], + [46021,0.933], + [46023,0.844], + [46025,0.944], + [46027,0.694], + [46029,0.847], + [46031,0.84], + [46033,0.864], + [46035,0.811], + [46037,0.869], + [46039,0.909], + [46041,0.881], + [46043,0.894], + [46045,0.943], + [46047,0.807], + [46049,0.956], + [46051,0.889], + [46053,0.874], + [46055,0.914], + [46057,0.879], + [46059,0.921], + [46061,0.925], + [46063,0.947], + [46065,0.815], + [46067,0.895], + [46069,0.913], + [46071,0.9], + [46073,0.903], + [46075,0.903], + [46077,0.907], + [46079,0.833], + [46081,0.817], + [46083,0.858], + [46085,0.896], + [46087,0.869], + [46089,0.966], + [46091,0.888], + [46093,0.837], + [46095,0.931], + [46097,0.932], + [46099,0.823], + [46101,0.887], + [46102,0.924], + [46103,0.775], + [46105,0.883], + [46107,0.951], + [46109,0.924], + [46111,0.865], + [46115,0.888], + [46117,0.825], + [46119,0.906], + [46121,0.876], + [46123,0.937], + [46125,0.914], + [46127,0.854], + [46129,0.84], + [46135,0.839], + [46137,0.827], + [47001,0.842], + [47003,0.89], + [47005,0.862], + [47007,0.918], + [47009,0.864], + [47011,0.819], + [47013,0.875], + [47015,0.924], + [47017,0.869], + [47019,0.858], + [47021,0.88], + [47023,0.866], + [47025,0.878], + [47027,0.932], + [47029,0.874], + [47031,0.867], + [47033,0.865], + [47035,0.867], + [47037,0.799], + [47039,0.862], + [47041,0.839], + [47043,0.845], + [47045,0.82], + [47047,0.897], + [47049,0.906], + [47051,0.862], + [47053,0.852], + [47055,0.882], + [47057,0.877], + [47059,0.861], + [47061,0.926], + [47063,0.837], + [47065,0.828], + [47067,0.852], + [47069,0.859], + [47071,0.877], + [47073,0.853], + [47075,0.846], + [47077,0.853], + [47079,0.874], + [47081,0.856], + [47083,0.888], + [47085,0.877], + [47087,0.927], + [47089,0.832], + [47091,0.895], + [47093,0.835], + [47095,0.809], + [47097,0.784], + [47099,0.893], + [47101,0.869], + [47103,0.88], + [47105,0.879], + [47107,0.849], + [47109,0.907], + [47111,0.874], + [47113,0.842], + [47115,0.893], + [47117,0.857], + [47119,0.834], + [47121,0.874], + [47123,0.839], + [47125,0.761], + [47127,0.839], + [47129,0.859], + [47131,0.862], + [47133,0.902], + [47135,0.849], + [47137,0.945], + [47139,0.89], + [47141,0.81], + [47143,0.821], + [47145,0.872], + [47147,0.887], + [47149,0.803], + [47151,0.893], + [47153,0.919], + [47155,0.842], + [47157,0.816], + [47159,0.862], + [47161,0.901], + [47163,0.852], + [47165,0.831], + [47167,0.847], + [47169,0.903], + [47171,0.89], + [47173,0.895], + [47175,0.935], + [47177,0.9], + [47179,0.831], + [47181,0.861], + [47183,0.79], + [47185,0.883], + [47187,0.869], + [47189,0.858], + [48001,0.816], + [48003,0.834], + [48005,0.814], + [48007,0.844], + [48009,0.934], + [48011,0.871], + [48013,0.882], + [48015,0.863], + [48017,0.83], + [48019,0.883], + [48021,0.88], + [48023,0.88], + [48025,0.778], + [48027,0.733], + [48029,0.802], + [48031,0.899], + [48033,0.954], + [48035,0.85], + [48037,0.828], + [48039,0.826], + [48041,0.663], + [48043,0.763], + [48045,0.948], + [48047,0.83], + [48049,0.898], + [48051,0.879], + [48053,0.87], + [48055,0.82], + [48057,0.825], + [48059,0.866], + [48061,0.888], + [48063,0.869], + [48065,0.828], + [48067,0.885], + [48069,0.848], + [48071,0.866], + [48073,0.88], + [48075,0.796], + [48077,0.903], + [48079,0.851], + [48081,0.845], + [48083,0.919], + [48085,0.835], + [48087,0.901], + [48089,0.877], + [48091,0.821], + [48093,0.896], + [48095,0.755], + [48097,0.805], + [48099,0.755], + [48101,0.875], + [48103,0.883], + [48105,0.948], + [48107,0.78], + [48109,0.894], + [48111,0.821], + [48113,0.809], + [48115,0.859], + [48117,0.837], + [48119,0.891], + [48121,0.785], + [48123,0.841], + [48125,0.705], + [48127,0.828], + [48129,0.817], + [48131,0.839], + [48133,0.84], + [48135,0.819], + [48137,0.907], + [48139,0.825], + [48141,0.85], + [48143,0.774], + [48145,0.853], + [48147,0.803], + [48149,0.869], + [48151,0.894], + [48153,0.839], + [48155,0.869], + [48157,0.874], + [48159,0.858], + [48161,0.847], + [48163,0.86], + [48165,0.845], + [48167,0.818], + [48169,0.753], + [48171,0.89], + [48173,0.924], + [48175,0.879], + [48177,0.86], + [48179,0.813], + [48181,0.812], + [48183,0.801], + [48185,0.801], + [48187,0.852], + [48189,0.788], + [48191,0.877], + [48193,0.862], + [48195,0.834], + [48197,0.877], + [48199,0.839], + [48201,0.81], + [48203,0.862], + [48205,0.79], + [48207,0.838], + [48209,0.756], + [48211,0.877], + [48213,0.837], + [48215,0.854], + [48217,0.856], + [48219,0.79], + [48221,0.819], + [48223,0.854], + [48225,0.846], + [48227,0.746], + [48229,0.918], + [48231,0.827], + [48233,0.845], + [48235,0.955], + [48237,0.78], + [48239,0.866], + [48241,0.865], + [48243,0.778], + [48245,0.825], + [48247,0.899], + [48249,0.83], + [48251,0.852], + [48253,0.762], + [48255,0.717], + [48257,0.813], + [48259,0.841], + [48261,1], + [48263,0.833], + [48265,0.817], + [48267,0.824], + [48269,0.772], + [48271,0.826], + [48273,0.773], + [48275,0.89], + [48277,0.824], + [48279,0.831], + [48281,0.804], + [48283,0.805], + [48285,0.907], + [48287,0.857], + [48289,0.874], + [48291,0.793], + [48293,0.834], + [48295,0.818], + [48297,0.831], + [48299,0.863], + [48301,0.927], + [48303,0.744], + [48305,0.847], + [48307,0.789], + [48309,0.811], + [48311,0.916], + [48313,0.898], + [48315,0.897], + [48317,0.897], + [48319,0.921], + [48321,0.886], + [48323,0.881], + [48325,0.882], + [48327,0.864], + [48329,0.813], + [48331,0.858], + [48333,0.885], + [48335,0.664], + [48337,0.838], + [48339,0.821], + [48341,0.795], + [48343,0.861], + [48345,0.96], + [48347,0.783], + [48349,0.825], + [48351,0.886], + [48353,0.832], + [48355,0.797], + [48357,0.795], + [48359,0.855], + [48361,0.854], + [48363,0.842], + [48365,0.878], + [48367,0.831], + [48369,0.832], + [48371,0.848], + [48373,0.855], + [48375,0.779], + [48377,0.866], + [48379,0.864], + [48381,0.815], + [48383,0.834], + [48385,0.877], + [48387,0.885], + [48389,0.842], + [48391,0.83], + [48393,0.846], + [48395,0.869], + [48397,0.834], + [48399,0.893], + [48401,0.814], + [48403,0.868], + [48405,0.885], + [48407,0.894], + [48409,0.788], + [48411,0.823], + [48413,0.802], + [48415,0.8], + [48417,0.906], + [48419,0.885], + [48421,0.839], + [48423,0.807], + [48425,0.833], + [48427,0.905], + [48429,0.75], + [48431,0.785], + [48433,0.892], + [48435,0.886], + [48437,0.792], + [48439,0.809], + [48441,0.76], + [48443,0.919], + [48445,0.83], + [48447,0.935], + [48449,0.825], + [48451,0.767], + [48453,0.752], + [48455,0.878], + [48457,0.876], + [48459,0.858], + [48461,0.762], + [48463,0.86], + [48465,0.851], + [48467,0.867], + [48469,0.788], + [48471,0.753], + [48473,0.846], + [48475,0.821], + [48477,0.836], + [48479,0.837], + [48481,0.872], + [48483,0.842], + [48485,0.754], + [48487,0.798], + [48489,0.918], + [48491,0.804], + [48493,0.877], + [48495,0.82], + [48497,0.871], + [48499,0.84], + [48501,0.91], + [48503,0.831], + [48505,0.898], + [48507,0.863], + [49001,0.872], + [49003,0.862], + [49005,0.749], + [49007,0.824], + [49009,0.737], + [49011,0.839], + [49013,0.852], + [49015,0.881], + [49017,0.888], + [49019,0.835], + [49021,0.76], + [49023,0.885], + [49025,0.871], + [49027,0.894], + [49029,0.949], + [49031,0.876], + [49033,0.906], + [49035,0.818], + [49037,0.905], + [49039,0.795], + [49041,0.857], + [49043,0.871], + [49045,0.856], + [49047,0.823], + [49049,0.775], + [49051,0.872], + [49053,0.799], + [49055,0.846], + [49057,0.825], + [50001,0.866], + [50003,0.888], + [50005,0.871], + [50007,0.813], + [50009,0.917], + [50011,0.881], + [50013,0.904], + [50015,0.878], + [50017,0.909], + [50019,0.885], + [50021,0.861], + [50023,0.874], + [50025,0.873], + [50027,0.863], + [51001,0.915], + [51003,0.8], + [51005,0.916], + [51007,0.91], + [51009,0.881], + [51011,0.905], + [51013,0.78], + [51015,0.907], + [51017,0.932], + [51019,0.903], + [51021,0.922], + [51023,0.916], + [51025,0.918], + [51027,0.926], + [51029,0.854], + [51031,0.883], + [51033,0.858], + [51035,0.892], + [51036,0.954], + [51037,0.918], + [51041,0.863], + [51043,0.881], + [51045,0.909], + [51047,0.843], + [51049,0.878], + [51051,0.901], + [51053,0.907], + [51057,0.893], + [51059,0.854], + [51061,0.901], + [51063,0.892], + [51065,0.917], + [51067,0.864], + [51069,0.852], + [51071,0.868], + [51073,0.867], + [51075,0.92], + [51077,0.897], + [51079,0.89], + [51081,0.94], + [51083,0.867], + [51085,0.904], + [51087,0.823], + [51089,0.855], + [51091,0.86], + [51093,0.907], + [51095,0.862], + [51097,0.967], + [51099,0.833], + [51101,0.918], + [51103,0.931], + [51105,0.881], + [51107,0.862], + [51109,0.911], + [51111,0.916], + [51113,0.899], + [51115,0.926], + [51117,0.911], + [51119,0.902], + [51121,0.691], + [51125,0.87], + [51127,0.87], + [51131,0.921], + [51133,0.947], + [51135,0.863], + [51137,0.855], + [51139,0.898], + [51141,0.914], + [51143,0.899], + [51145,0.847], + [51147,0.809], + [51149,0.816], + [51153,0.831], + [51155,0.854], + [51157,0.916], + [51159,0.869], + [51161,0.861], + [51163,0.899], + [51165,0.879], + [51167,0.903], + [51169,0.923], + [51171,0.856], + [51173,0.839], + [51175,0.913], + [51177,0.871], + [51179,0.834], + [51181,0.928], + [51183,0.924], + [51185,0.888], + [51187,0.886], + [51191,0.879], + [51193,0.89], + [51195,0.856], + [51197,0.896], + [51199,0.841], + [51510,0.78], + [51520,0.798], + [51530,0.763], + [51540,0.65], + [51550,0.863], + [51570,0.893], + [51580,0.79], + [51590,0.818], + [51595,0.902], + [51600,0.834], + [51610,0.798], + [51620,0.847], + [51630,0.761], + [51640,0.84], + [51650,0.836], + [51660,0.632], + [51670,0.836], + [51678,0.746], + [51680,0.769], + [51683,0.83], + [51685,0.829], + [51690,0.764], + [51700,0.748], + [51710,0.764], + [51720,0.83], + [51730,0.895], + [51735,0.902], + [51740,0.808], + [51750,0.616], + [51760,0.754], + [51770,0.806], + [51775,0.823], + [51790,0.821], + [51800,0.871], + [51810,0.806], + [51820,0.845], + [51830,0.572], + [51840,0.723], + [53001,0.863], + [53003,0.837], + [53005,0.808], + [53007,0.871], + [53009,0.841], + [53011,0.826], + [53013,0.83], + [53015,0.808], + [53017,0.873], + [53019,0.895], + [53021,0.825], + [53023,0.887], + [53025,0.839], + [53027,0.82], + [53029,0.818], + [53031,0.859], + [53033,0.809], + [53035,0.826], + [53037,0.729], + [53039,0.882], + [53041,0.835], + [53043,0.87], + [53045,0.857], + [53047,0.907], + [53049,0.869], + [53051,0.911], + [53053,0.802], + [53055,0.871], + [53057,0.844], + [53059,0.911], + [53061,0.823], + [53063,0.806], + [53065,0.894], + [53067,0.817], + [53069,0.889], + [53071,0.806], + [53073,0.829], + [53075,0.686], + [53077,0.82], + [54001,0.901], + [54003,0.859], + [54005,0.902], + [54007,0.862], + [54009,0.924], + [54011,0.815], + [54013,0.854], + [54015,0.905], + [54017,0.916], + [54019,0.873], + [54021,0.764], + [54023,0.916], + [54025,0.89], + [54027,0.933], + [54029,0.881], + [54031,0.936], + [54033,0.879], + [54035,0.888], + [54037,0.876], + [54039,0.871], + [54041,0.883], + [54043,0.897], + [54045,0.876], + [54047,0.933], + [54049,0.884], + [54051,0.898], + [54053,0.879], + [54055,0.868], + [54057,0.896], + [54059,0.875], + [54061,0.785], + [54063,0.888], + [54065,0.917], + [54067,0.919], + [54069,0.876], + [54071,0.914], + [54073,0.922], + [54075,0.916], + [54077,0.884], + [54079,0.93], + [54081,0.861], + [54083,0.88], + [54085,0.918], + [54087,0.876], + [54089,0.874], + [54091,0.906], + [54093,0.909], + [54095,0.906], + [54097,0.883], + [54099,0.907], + [54101,0.889], + [54103,0.902], + [54105,0.881], + [54107,0.853], + [54109,0.923], + [55001,0.88], + [55003,0.874], + [55005,0.869], + [55007,0.906], + [55009,0.851], + [55011,0.913], + [55013,0.902], + [55015,0.909], + [55017,0.871], + [55019,0.914], + [55021,0.861], + [55023,0.877], + [55025,0.794], + [55027,0.84], + [55029,0.902], + [55031,0.849], + [55033,0.797], + [55035,0.801], + [55037,0.918], + [55039,0.869], + [55041,0.891], + [55043,0.825], + [55045,0.899], + [55047,0.891], + [55049,0.894], + [55051,0.9], + [55053,0.872], + [55055,0.872], + [55057,0.873], + [55059,0.845], + [55061,0.905], + [55063,0.801], + [55065,0.898], + [55067,0.905], + [55069,0.894], + [55071,0.904], + [55073,0.878], + [55075,0.875], + [55077,0.877], + [55078,0.903], + [55079,0.811], + [55081,0.866], + [55083,0.903], + [55085,0.859], + [55087,0.883], + [55089,0.893], + [55091,0.927], + [55093,0.812], + [55095,0.911], + [55097,0.806], + [55099,0.904], + [55101,0.879], + [55103,0.868], + [55105,0.862], + [55107,0.853], + [55109,0.869], + [55111,0.873], + [55113,0.877], + [55115,0.888], + [55117,0.874], + [55119,0.895], + [55121,0.922], + [55123,0.897], + [55125,0.901], + [55127,0.846], + [55129,0.895], + [55131,0.89], + [55133,0.891], + [55135,0.878], + [55137,0.879], + [55139,0.843], + [55141,0.882], + [56001,0.711], + [56003,0.879], + [56005,0.838], + [56007,0.763], + [56009,0.816], + [56011,0.916], + [56013,0.851], + [56015,0.83], + [56017,0.731], + [56019,0.822], + [56021,0.799], + [56023,0.849], + [56025,0.81], + [56027,0.813], + [56029,0.779], + [56031,0.87], + [56033,0.862], + [56035,0.805], + [56037,0.81], + [56039,0.781], + [56041,0.835], + [56043,0.857], + [56045,0.841] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2000.json b/data/regional/united-states/demographics/population/us-population-2000.json new file mode 100644 index 0000000..e552fa2 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2000.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2000.", + "units" : "people", + "year" : "2000", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2000"], + [1001,43671], + [1003,140415], + [1005,29038], + [1007,20826], + [1009,51024], + [1011,11714], + [1013,21399], + [1015,112249], + [1017,36583], + [1019,23988], + [1021,39593], + [1023,15922], + [1025,27867], + [1027,14254], + [1029,14123], + [1031,43615], + [1033,54984], + [1035,14089], + [1037,12202], + [1039,37631], + [1041,13665], + [1043,77483], + [1045,49129], + [1047,46365], + [1049,64452], + [1051,65874], + [1053,38440], + [1055,103459], + [1057,18495], + [1059,31223], + [1061,25764], + [1063,9974], + [1065,17185], + [1067,16310], + [1069,88787], + [1071,53926], + [1073,662047], + [1075,15904], + [1077,87966], + [1079,34803], + [1081,115092], + [1083,65676], + [1085,13473], + [1087,24105], + [1089,276700], + [1091,22539], + [1093,31214], + [1095,82231], + [1097,399843], + [1099,24324], + [1101,223510], + [1103,111064], + [1105,11861], + [1107,20949], + [1109,29605], + [1111,22380], + [1113,49756], + [1115,64742], + [1117,143293], + [1119,14798], + [1121,80321], + [1123,41475], + [1125,164875], + [1127,70713], + [1129,18097], + [1131,13183], + [1133,24843], + [2013,2697], + [2016,5465], + [2020,260283], + [2050,16006], + [2060,1258], + [2068,1893], + [2070,4922], + [2090,82840], + [2100,2392], + [2105,3436], + [2110,30711], + [2122,49691], + [2130,14070], + [2150,13913], + [2158,7028], + [2164,1823], + [2170,59322], + [2180,9196], + [2185,7385], + [2188,7208], + [2195,6684], + [2198,6146], + [2220,8835], + [2230,"NA"], + [2240,6174], + [2261,10195], + [2275,"NA"], + [2282,808], + [2290,6551], + [4001,69423], + [4003,117755], + [4005,116320], + [4007,51335], + [4009,33489], + [4011,8547], + [4012,19715], + [4013,3072149], + [4015,155032], + [4017,97470], + [4019,843746], + [4021,179727], + [4023,38381], + [4025,167517], + [4027,160026], + [5001,20749], + [5003,24209], + [5005,38386], + [5007,153406], + [5009,33948], + [5011,12600], + [5013,5744], + [5015,25357], + [5017,14117], + [5019,23546], + [5021,17609], + [5023,24046], + [5025,8571], + [5027,25603], + [5029,20336], + [5031,82148], + [5033,53247], + [5035,50866], + [5037,19526], + [5039,9210], + [5041,15341], + [5043,18723], + [5045,86014], + [5047,17771], + [5049,11642], + [5051,88068], + [5053,16464], + [5055,37331], + [5057,23587], + [5059,30353], + [5061,14300], + [5063,34233], + [5065,13249], + [5067,18418], + [5069,84278], + [5071,22781], + [5073,8559], + [5075,17774], + [5077,12580], + [5079,14492], + [5081,13628], + [5083,22486], + [5085,52828], + [5087,14243], + [5089,16140], + [5091,40443], + [5093,51979], + [5095,10254], + [5097,9245], + [5099,9955], + [5101,8608], + [5103,28790], + [5105,10209], + [5107,26445], + [5109,11303], + [5111,25614], + [5113,20229], + [5115,54469], + [5117,9539], + [5119,361474], + [5121,18195], + [5123,29329], + [5125,83529], + [5127,10996], + [5129,8261], + [5131,115071], + [5133,15757], + [5135,17119], + [5137,11499], + [5139,45629], + [5141,16192], + [5143,157715], + [5145,67165], + [5147,8741], + [5149,21139], + [6001,1443741], + [6003,1208], + [6005,35100], + [6007,203171], + [6009,40554], + [6011,18804], + [6013,948816], + [6015,27507], + [6017,156299], + [6019,799407], + [6021,26453], + [6023,126518], + [6025,142361], + [6027,17945], + [6029,661645], + [6031,129461], + [6033,58309], + [6035,33828], + [6037,9519338], + [6039,123109], + [6041,247289], + [6043,17130], + [6045,86265], + [6047,210554], + [6049,9449], + [6051,12853], + [6053,401762], + [6055,124279], + [6057,92033], + [6059,2846289], + [6061,248399], + [6063,20824], + [6065,1545387], + [6067,1223499], + [6069,53234], + [6071,1709434], + [6073,2813833], + [6075,776733], + [6077,563598], + [6079,246681], + [6081,707161], + [6083,399347], + [6085,1682585], + [6087,255602], + [6089,163256], + [6091,3555], + [6093,44301], + [6095,394542], + [6097,458614], + [6099,446997], + [6101,78930], + [6103,56039], + [6105,13022], + [6107,368021], + [6109,54501], + [6111,753197], + [6113,168660], + [6115,60219], + [8001,363857], + [8003,14966], + [8005,487967], + [8007,9898], + [8009,4517], + [8011,5998], + [8013,291288], + [8014,"NA"], + [8015,16242], + [8017,2231], + [8019,9322], + [8021,8400], + [8023,3663], + [8025,5518], + [8027,3503], + [8029,27834], + [8031,554636], + [8033,1844], + [8035,175766], + [8037,41659], + [8039,19872], + [8041,516929], + [8043,46145], + [8045,43791], + [8047,4757], + [8049,12442], + [8051,13956], + [8053,790], + [8055,7862], + [8057,1577], + [8059,527056], + [8061,1622], + [8063,8011], + [8065,7812], + [8067,43941], + [8069,251494], + [8071,15207], + [8073,6087], + [8075,20504], + [8077,116255], + [8079,831], + [8081,13184], + [8083,23830], + [8085,33432], + [8087,27171], + [8089,20311], + [8091,3742], + [8093,14523], + [8095,4480], + [8097,14872], + [8099,14483], + [8101,141472], + [8103,5986], + [8105,12413], + [8107,19690], + [8109,5917], + [8111,558], + [8113,6594], + [8115,2747], + [8117,23548], + [8119,20555], + [8121,4926], + [8123,180936], + [8125,9841], + [9001,882567], + [9003,857183], + [9005,182193], + [9007,155071], + [9009,824008], + [9011,259088], + [9013,136364], + [9015,109091], + [10001,126697], + [10003,500265], + [10005,156638], + [11001,572059], + [12001,217955], + [12003,22259], + [12005,148217], + [12007,26088], + [12009,476230], + [12011,1623018], + [12013,13017], + [12015,141627], + [12017,118085], + [12019,140814], + [12021,251377], + [12023,56513], + [12027,32209], + [12029,13827], + [12031,778879], + [12033,294410], + [12035,49832], + [12037,11057], + [12039,45087], + [12041,14437], + [12043,10576], + [12045,13332], + [12047,13327], + [12049,26938], + [12051,36210], + [12053,130802], + [12055,87366], + [12057,998948], + [12059,18564], + [12061,112947], + [12063,46755], + [12065,12902], + [12067,7022], + [12069,210528], + [12071,440888], + [12073,239452], + [12075,34450], + [12077,7021], + [12079,18733], + [12081,264002], + [12083,258916], + [12085,126731], + [12086,2253362], + [12087,79589], + [12089,57663], + [12091,170498], + [12093,35910], + [12095,896344], + [12097,172493], + [12099,1131184], + [12101,344765], + [12103,921482], + [12105,483924], + [12107,70423], + [12109,123135], + [12111,192695], + [12113,117743], + [12115,325957], + [12117,365196], + [12119,53345], + [12121,34844], + [12123,19256], + [12125,13442], + [12127,443343], + [12129,22863], + [12131,40601], + [12133,20973], + [13001,17419], + [13003,7609], + [13005,10103], + [13007,4074], + [13009,44700], + [13011,14422], + [13013,46144], + [13015,76019], + [13017,17484], + [13019,16235], + [13021,153887], + [13023,11666], + [13025,14629], + [13027,16450], + [13029,23417], + [13031,55983], + [13033,22243], + [13035,19522], + [13037,6320], + [13039,43664], + [13043,9577], + [13045,87268], + [13047,53282], + [13049,10282], + [13051,232048], + [13053,14882], + [13055,25470], + [13057,141903], + [13059,101489], + [13061,3357], + [13063,236517], + [13065,6878], + [13067,607751], + [13069,37413], + [13071,42053], + [13073,89288], + [13075,15771], + [13077,89215], + [13079,12495], + [13081,21996], + [13083,15154], + [13085,15999], + [13087,28240], + [13089,665865], + [13091,19171], + [13093,11525], + [13095,96065], + [13097,92174], + [13099,12354], + [13101,3754], + [13103,37535], + [13105,20511], + [13107,21837], + [13109,10495], + [13111,19798], + [13113,91263], + [13115,90565], + [13117,98407], + [13119,20285], + [13121,816006], + [13123,23456], + [13125,2556], + [13127,67568], + [13129,44104], + [13131,23659], + [13133,14406], + [13135,588448], + [13137,35902], + [13139,139277], + [13141,10076], + [13143,25690], + [13145,23695], + [13147,22997], + [13149,11012], + [13151,119341], + [13153,110765], + [13155,9931], + [13157,41589], + [13159,11426], + [13161,12684], + [13163,17266], + [13165,8575], + [13167,8560], + [13169,23639], + [13171,15912], + [13173,7241], + [13175,44874], + [13177,24757], + [13179,61610], + [13181,8348], + [13183,10304], + [13185,92115], + [13187,21016], + [13189,21231], + [13191,10847], + [13193,14074], + [13195,25730], + [13197,7144], + [13199,22534], + [13201,6383], + [13205,23932], + [13207,21757], + [13209,8270], + [13211,15457], + [13213,36506], + [13215,186291], + [13217,62001], + [13219,26225], + [13221,12635], + [13223,81678], + [13225,23668], + [13227,22983], + [13229,15636], + [13231,13688], + [13233,38127], + [13235,9588], + [13237,18812], + [13239,2598], + [13241,15050], + [13243,7791], + [13245,199775], + [13247,70111], + [13249,3766], + [13251,15374], + [13253,9369], + [13255,58417], + [13257,25435], + [13259,5252], + [13261,33200], + [13263,6498], + [13265,2077], + [13267,22305], + [13269,8815], + [13271,11794], + [13273,10970], + [13275,42737], + [13277,38407], + [13279,26067], + [13281,9319], + [13283,6854], + [13285,58779], + [13287,9504], + [13289,10590], + [13291,17289], + [13293,27597], + [13295,61053], + [13297,60687], + [13299,35483], + [13301,6336], + [13303,21176], + [13305,26565], + [13307,2390], + [13309,6179], + [13311,19944], + [13313,83525], + [13315,8577], + [13317,10687], + [13319,10220], + [13321,21967], + [15001,148677], + [15003,876156], + [15005,147], + [15007,58463], + [15009,128094], + [16001,300904], + [16003,3476], + [16005,75565], + [16007,6411], + [16009,9171], + [16011,41735], + [16013,18991], + [16015,6670], + [16017,36835], + [16019,82522], + [16021,9871], + [16023,2899], + [16025,991], + [16027,131441], + [16029,7304], + [16031,21416], + [16033,1022], + [16035,8930], + [16037,4342], + [16039,29130], + [16041,11329], + [16043,11819], + [16045,15181], + [16047,14155], + [16049,15511], + [16051,19155], + [16053,18342], + [16055,108685], + [16057,34935], + [16059,7806], + [16061,3747], + [16063,4044], + [16065,27467], + [16067,20174], + [16069,37410], + [16071,4125], + [16073,10644], + [16075,20578], + [16077,7538], + [16079,13771], + [16081,5999], + [16083,64284], + [16085,7651], + [16087,9977], + [17001,68277], + [17003,9590], + [17005,17633], + [17007,41786], + [17009,6950], + [17011,35503], + [17013,5084], + [17015,16674], + [17017,13695], + [17019,179669], + [17021,35372], + [17023,17008], + [17025,14560], + [17027,35535], + [17029,53196], + [17031,5376741], + [17033,20452], + [17035,11253], + [17037,88969], + [17039,16798], + [17041,19922], + [17043,904161], + [17045,19704], + [17047,6971], + [17049,34264], + [17051,21802], + [17053,14241], + [17055,39018], + [17057,38250], + [17059,6445], + [17061,14761], + [17063,37535], + [17065,8621], + [17067,20121], + [17069,4800], + [17071,8213], + [17073,51020], + [17075,31334], + [17077,59612], + [17079,10117], + [17081,40045], + [17083,21668], + [17085,22289], + [17087,12878], + [17089,404119], + [17091,103833], + [17093,54544], + [17095,55836], + [17097,644356], + [17099,111509], + [17101,15452], + [17103,36062], + [17105,39678], + [17107,31183], + [17109,32913], + [17111,260077], + [17113,150433], + [17115,114706], + [17117,49019], + [17119,258941], + [17121,41691], + [17123,13180], + [17125,16038], + [17127,15161], + [17129,12486], + [17131,16957], + [17133,27619], + [17135,30652], + [17137,36616], + [17139,14287], + [17141,51032], + [17143,183433], + [17145,23094], + [17147,16365], + [17149,17384], + [17151,4413], + [17153,7348], + [17155,6086], + [17157,33893], + [17159,16149], + [17161,149374], + [17163,256082], + [17165,26733], + [17167,188951], + [17169,7189], + [17171,5537], + [17173,22893], + [17175,6332], + [17177,48979], + [17179,128485], + [17181,18293], + [17183,83919], + [17185,12937], + [17187,18735], + [17189,15148], + [17191,17151], + [17193,15371], + [17195,60653], + [17197,502266], + [17199,61296], + [17201,278418], + [17203,35469], + [18001,33625], + [18003,331849], + [18005,71435], + [18007,9421], + [18009,14048], + [18011,46107], + [18013,14957], + [18015,20165], + [18017,40930], + [18019,96472], + [18021,26556], + [18023,33866], + [18025,10743], + [18027,29820], + [18029,46109], + [18031,24555], + [18033,40285], + [18035,118769], + [18037,39674], + [18039,182791], + [18041,25588], + [18043,70823], + [18045,17954], + [18047,22151], + [18049,20511], + [18051,32500], + [18053,73403], + [18055,33157], + [18057,182740], + [18059,55391], + [18061,34325], + [18063,104093], + [18065,48508], + [18067,84964], + [18069,38075], + [18071,41335], + [18073,30043], + [18075,21806], + [18077,31705], + [18079,27554], + [18081,115209], + [18083,39256], + [18085,74057], + [18087,34909], + [18089,484564], + [18091,110106], + [18093,45922], + [18095,133358], + [18097,860454], + [18099,45128], + [18101,10369], + [18103,36082], + [18105,120563], + [18107,37629], + [18109,66689], + [18111,14566], + [18113,46275], + [18115,5623], + [18117,19306], + [18119,21786], + [18121,17241], + [18123,18899], + [18125,12837], + [18127,146798], + [18129,27061], + [18131,13755], + [18133,36019], + [18135,27401], + [18137,26523], + [18139,18261], + [18141,265559], + [18143,22960], + [18145,43445], + [18147,20391], + [18149,23556], + [18151,33214], + [18153,21751], + [18155,9065], + [18157,148955], + [18159,16577], + [18161,7349], + [18163,171922], + [18165,16788], + [18167,105848], + [18169,34960], + [18171,8419], + [18173,52383], + [18175,27223], + [18177,71097], + [18179,27600], + [18181,25267], + [18183,30707], + [19001,8243], + [19003,4482], + [19005,14675], + [19007,13721], + [19009,6830], + [19011,25308], + [19013,128012], + [19015,26224], + [19017,23325], + [19019,21093], + [19021,20411], + [19023,15305], + [19025,11115], + [19027,21421], + [19029,14684], + [19031,18187], + [19033,46447], + [19035,13035], + [19037,13095], + [19039,9133], + [19041,17372], + [19043,18678], + [19045,50149], + [19047,16942], + [19049,40750], + [19051,8541], + [19053,8689], + [19055,18404], + [19057,42351], + [19059,16424], + [19061,89143], + [19063,11027], + [19065,22008], + [19067,16900], + [19069,10704], + [19071,8010], + [19073,10366], + [19075,12369], + [19077,11353], + [19079,16438], + [19081,12100], + [19083,18812], + [19085,15666], + [19087,20336], + [19089,9932], + [19091,10381], + [19093,7837], + [19095,15671], + [19097,20296], + [19099,37213], + [19101,16181], + [19103,111006], + [19105,20221], + [19107,11400], + [19109,17163], + [19111,38052], + [19113,191701], + [19115,12183], + [19117,9422], + [19119,11763], + [19121,14019], + [19123,22335], + [19125,32052], + [19127,39311], + [19129,14547], + [19131,10874], + [19133,10020], + [19135,8016], + [19137,11771], + [19139,41722], + [19141,15102], + [19143,7003], + [19145,16976], + [19147,10147], + [19149,24849], + [19151,8662], + [19153,374601], + [19155,87704], + [19157,18815], + [19159,5469], + [19161,11529], + [19163,158668], + [19165,13173], + [19167,31589], + [19169,79981], + [19171,18103], + [19173,6958], + [19175,12309], + [19177,7809], + [19179,36051], + [19181,40671], + [19183,20670], + [19185,6730], + [19187,40235], + [19189,11723], + [19191,21310], + [19193,103877], + [19195,7909], + [19197,14334], + [20001,14385], + [20003,8110], + [20005,16774], + [20007,5307], + [20009,28205], + [20011,15379], + [20013,10724], + [20015,59482], + [20017,3030], + [20019,4359], + [20021,22605], + [20023,3165], + [20025,2390], + [20027,8822], + [20029,10268], + [20031,8865], + [20033,1967], + [20035,36291], + [20037,38242], + [20039,3472], + [20041,19344], + [20043,8249], + [20045,99962], + [20047,3449], + [20049,3261], + [20051,27507], + [20053,6525], + [20055,40523], + [20057,32458], + [20059,24784], + [20061,27947], + [20063,3068], + [20065,2946], + [20067,7909], + [20069,5904], + [20071,1534], + [20073,7673], + [20075,2670], + [20077,6536], + [20079,32869], + [20081,4307], + [20083,2085], + [20085,12657], + [20087,18426], + [20089,3791], + [20091,451086], + [20093,4531], + [20095,8673], + [20097,3278], + [20099,22835], + [20101,2155], + [20103,68691], + [20105,3578], + [20107,9570], + [20109,3046], + [20111,35935], + [20113,29554], + [20115,13361], + [20117,10965], + [20119,4631], + [20121,28351], + [20123,6932], + [20125,36252], + [20127,6104], + [20129,3496], + [20131,10717], + [20133,16997], + [20135,3454], + [20137,5953], + [20139,16712], + [20141,4452], + [20143,6163], + [20145,7233], + [20147,6001], + [20149,18209], + [20151,9647], + [20153,2966], + [20155,64790], + [20157,5835], + [20159,10761], + [20161,62843], + [20163,5685], + [20165,3551], + [20167,7370], + [20169,53597], + [20171,5120], + [20173,452869], + [20175,22510], + [20177,169871], + [20179,2813], + [20181,6760], + [20183,4536], + [20185,4789], + [20187,2406], + [20189,5463], + [20191,25946], + [20193,8180], + [20195,3319], + [20197,6885], + [20199,1749], + [20201,6483], + [20203,2531], + [20205,10332], + [20207,3788], + [20209,157882], + [21001,17244], + [21003,17800], + [21005,19111], + [21007,8286], + [21009,38033], + [21011,11085], + [21013,30060], + [21015,85991], + [21017,19360], + [21019,49752], + [21021,27697], + [21023,8279], + [21025,16100], + [21027,18648], + [21029,61236], + [21031,13010], + [21033,13060], + [21035,34177], + [21037,88616], + [21039,5351], + [21041,10155], + [21043,26889], + [21045,15447], + [21047,72265], + [21049,33144], + [21051,24556], + [21053,9634], + [21055,9384], + [21057,7147], + [21059,91545], + [21061,11644], + [21063,6748], + [21065,15307], + [21067,260512], + [21069,13792], + [21071,42441], + [21073,47687], + [21075,7752], + [21077,7870], + [21079,14792], + [21081,22384], + [21083,37028], + [21085,24053], + [21087,11518], + [21089,36891], + [21091,8392], + [21093,94174], + [21095,33202], + [21097,17983], + [21099,17445], + [21101,44829], + [21103,15060], + [21105,5262], + [21107,46519], + [21109,13495], + [21111,693604], + [21113,39041], + [21115,23445], + [21117,151464], + [21119,17649], + [21121,31795], + [21123,13373], + [21125,52715], + [21127,15569], + [21129,7916], + [21131,12401], + [21133,25277], + [21135,14092], + [21137,23361], + [21139,9804], + [21141,26573], + [21143,8080], + [21145,65514], + [21147,17080], + [21149,9938], + [21151,70872], + [21153,13332], + [21155,18212], + [21157,30125], + [21159,12578], + [21161,16800], + [21163,26349], + [21165,6556], + [21167,20817], + [21169,10037], + [21171,11756], + [21173,22554], + [21175,13948], + [21177,31839], + [21179,37477], + [21181,6813], + [21183,22916], + [21185,46178], + [21187,10547], + [21189,4858], + [21191,14390], + [21193,29390], + [21195,68736], + [21197,13237], + [21199,56217], + [21201,2266], + [21203,16582], + [21205,22094], + [21207,16315], + [21209,33061], + [21211,33337], + [21213,16405], + [21215,11766], + [21217,22927], + [21219,11971], + [21221,12597], + [21223,8125], + [21225,15637], + [21227,92522], + [21229,10916], + [21231,19923], + [21233,14120], + [21235,35865], + [21237,7065], + [21239,23208], + [22001,58861], + [22003,25440], + [22005,76627], + [22007,23388], + [22009,41481], + [22011,32986], + [22013,15752], + [22015,98310], + [22017,252161], + [22019,183577], + [22021,10560], + [22023,9991], + [22025,10920], + [22027,16851], + [22029,20247], + [22031,25494], + [22033,412852], + [22035,9421], + [22037,21360], + [22039,35434], + [22041,21263], + [22043,18698], + [22045,73266], + [22047,33320], + [22049,15397], + [22051,455466], + [22053,31435], + [22055,190503], + [22057,89974], + [22059,14282], + [22061,42509], + [22063,91814], + [22065,13728], + [22067,31021], + [22069,39080], + [22071,484674], + [22073,147250], + [22075,26757], + [22077,22763], + [22079,126337], + [22081,9622], + [22083,20981], + [22085,23459], + [22087,67229], + [22089,48072], + [22091,10525], + [22093,21216], + [22095,43044], + [22097,87700], + [22099,48583], + [22101,53500], + [22103,191268], + [22105,100588], + [22107,6618], + [22109,104503], + [22111,22803], + [22113,53807], + [22115,52531], + [22117,43926], + [22119,41831], + [22121,21601], + [22123,12314], + [22125,15111], + [22127,16894], + [23001,103793], + [23003,73938], + [23005,265612], + [23007,29467], + [23009,51791], + [23011,117114], + [23013,39618], + [23015,33616], + [23017,54755], + [23019,144919], + [23021,17235], + [23023,35214], + [23025,50888], + [23027,36280], + [23029,33941], + [23031,186742], + [24001,74930], + [24003,489656], + [24005,754292], + [24009,74563], + [24011,29772], + [24013,150897], + [24015,85951], + [24017,120546], + [24019,30674], + [24021,195277], + [24023,29846], + [24025,218590], + [24027,247842], + [24029,19197], + [24031,873341], + [24033,801515], + [24035,40563], + [24037,86211], + [24039,24747], + [24041,33812], + [24043,131923], + [24045,84644], + [24047,46543], + [24510,651154], + [25001,222230], + [25003,134953], + [25005,534678], + [25007,14987], + [25009,723419], + [25011,71535], + [25013,456228], + [25015,152251], + [25017,1465396], + [25019,9520], + [25021,650308], + [25023,472822], + [25025,689807], + [25027,750963], + [26001,11719], + [26003,9862], + [26005,105665], + [26007,31314], + [26009,23110], + [26011,17269], + [26013,8746], + [26015,56755], + [26017,110157], + [26019,15998], + [26021,162453], + [26023,45787], + [26025,137985], + [26027,51104], + [26029,26090], + [26031,26448], + [26033,38543], + [26035,31252], + [26037,64753], + [26039,14273], + [26041,38520], + [26043,27472], + [26045,103655], + [26047,31437], + [26049,436141], + [26051,26023], + [26053,17370], + [26055,77654], + [26057,42285], + [26059,46527], + [26061,36016], + [26063,36079], + [26065,279320], + [26067,61518], + [26069,27339], + [26071,13138], + [26073,63351], + [26075,158422], + [26077,238603], + [26079,16571], + [26081,574335], + [26083,2301], + [26085,11333], + [26087,87904], + [26089,21119], + [26091,98890], + [26093,156951], + [26095,7024], + [26097,11943], + [26099,788149], + [26101,24527], + [26103,64634], + [26105,28274], + [26107,40553], + [26109,25326], + [26111,82874], + [26113,14478], + [26115,145945], + [26117,61266], + [26119,10315], + [26121,170200], + [26123,47874], + [26125,1194156], + [26127,26873], + [26129,21645], + [26131,7818], + [26133,23197], + [26135,9418], + [26137,23301], + [26139,238314], + [26141,14411], + [26143,25469], + [26145,210039], + [26147,164235], + [26149,62422], + [26151,44547], + [26153,8903], + [26155,71687], + [26157,58266], + [26159,76263], + [26161,322895], + [26163,2061162], + [26165,30484], + [27001,15301], + [27003,298084], + [27005,30000], + [27007,39650], + [27009,34226], + [27011,5820], + [27013,55941], + [27015,26911], + [27017,31671], + [27019,70205], + [27021,27150], + [27023,13088], + [27025,41101], + [27027,51229], + [27029,8423], + [27031,5168], + [27033,12167], + [27035,55099], + [27037,355904], + [27039,17731], + [27041,32821], + [27043,16181], + [27045,21122], + [27047,32584], + [27049,44127], + [27051,6289], + [27053,1116200], + [27055,19718], + [27057,18376], + [27059,31287], + [27061,43992], + [27063,11268], + [27065,14996], + [27067,41203], + [27069,5285], + [27071,14355], + [27073,8067], + [27075,11058], + [27077,4522], + [27079,25426], + [27081,6429], + [27083,25425], + [27085,34898], + [27087,5190], + [27089,10155], + [27091,21802], + [27093,22644], + [27095,22330], + [27097,31712], + [27099,38603], + [27101,9165], + [27103,29771], + [27105,20832], + [27107,7442], + [27109,124277], + [27111,57159], + [27113,13584], + [27115,26530], + [27117,9895], + [27119,31369], + [27121,11236], + [27123,511035], + [27125,4299], + [27127,16815], + [27129,17154], + [27131,56665], + [27133,9721], + [27135,16338], + [27137,200528], + [27139,89498], + [27141,64417], + [27143,15356], + [27145,133166], + [27147,33680], + [27149,10053], + [27151,11956], + [27153,24426], + [27155,4134], + [27157,21610], + [27159,13713], + [27161,19526], + [27163,201130], + [27165,11876], + [27167,7138], + [27169,49985], + [27171,89986], + [27173,11080], + [28001,34340], + [28003,34558], + [28005,13599], + [28007,19661], + [28009,8026], + [28011,40633], + [28013,15069], + [28015,10769], + [28017,19440], + [28019,9758], + [28021,11831], + [28023,17955], + [28025,21979], + [28027,30622], + [28029,28757], + [28031,19407], + [28033,107199], + [28035,72604], + [28037,8448], + [28039,19144], + [28041,13299], + [28043,23263], + [28045,42967], + [28047,189601], + [28049,250800], + [28051,21609], + [28053,11206], + [28055,2274], + [28057,22770], + [28059,131420], + [28061,18149], + [28063,9740], + [28065,13962], + [28067,64958], + [28069,10453], + [28071,38744], + [28073,39070], + [28075,78161], + [28077,13258], + [28079,20940], + [28081,75755], + [28083,37947], + [28085,33166], + [28087,61586], + [28089,74674], + [28091,25595], + [28093,34993], + [28095,38014], + [28097,12189], + [28099,28684], + [28101,21838], + [28103,12548], + [28105,42902], + [28107,34274], + [28109,48621], + [28111,12138], + [28113,38940], + [28115,26726], + [28117,25556], + [28119,10117], + [28121,115327], + [28123,28423], + [28125,6580], + [28127,27639], + [28129,16182], + [28131,13622], + [28133,34369], + [28135,14903], + [28137,25370], + [28139,20826], + [28141,19163], + [28143,9227], + [28145,25362], + [28147,15156], + [28149,49644], + [28151,62977], + [28153,21216], + [28155,10294], + [28157,10312], + [28159,20160], + [28161,13051], + [28163,28149], + [29001,24977], + [29003,16492], + [29005,6430], + [29007,25853], + [29009,34010], + [29011,12541], + [29013,16653], + [29015,17180], + [29017,12029], + [29019,135454], + [29021,85998], + [29023,40867], + [29025,8969], + [29027,40766], + [29029,37051], + [29031,68693], + [29033,10285], + [29035,5941], + [29037,82092], + [29039,13733], + [29041,8438], + [29043,54285], + [29045,7416], + [29047,184006], + [29049,18979], + [29051,71397], + [29053,16670], + [29055,22804], + [29057,7923], + [29059,15661], + [29061,8016], + [29063,11597], + [29065,14927], + [29067,13084], + [29069,33155], + [29071,93807], + [29073,15342], + [29075,6861], + [29077,240391], + [29079,10432], + [29081,8850], + [29083,21997], + [29085,8940], + [29087,5351], + [29089,10212], + [29091,37238], + [29093,10697], + [29095,654880], + [29097,104686], + [29099,198099], + [29101,48258], + [29103,4361], + [29105,32513], + [29107,32960], + [29109,35204], + [29111,10494], + [29113,38944], + [29115,13754], + [29117,14558], + [29119,21681], + [29121,15762], + [29123,11800], + [29125,8903], + [29127,28289], + [29129,3757], + [29131,23564], + [29133,13427], + [29135,14827], + [29137,9311], + [29139,12136], + [29141,19309], + [29143,19760], + [29145,52636], + [29147,21912], + [29149,10344], + [29151,13062], + [29153,9542], + [29155,20047], + [29157,18132], + [29159,39403], + [29161,39825], + [29163,18351], + [29165,73781], + [29167,26992], + [29169,41165], + [29171,5223], + [29173,9626], + [29175,24663], + [29177,23354], + [29179,6689], + [29181,13509], + [29183,283883], + [29185,9652], + [29186,17842], + [29187,55641], + [29189,1016315], + [29195,23756], + [29197,4170], + [29199,4983], + [29201,40422], + [29203,8324], + [29205,6799], + [29207,29705], + [29209,28658], + [29211,7219], + [29213,39703], + [29215,23003], + [29217,20454], + [29219,24525], + [29221,23344], + [29223,13259], + [29225,31045], + [29227,2382], + [29229,17955], + [29510,348189], + [30001,9202], + [30003,12671], + [30005,7009], + [30007,4385], + [30009,9552], + [30011,1360], + [30013,80357], + [30015,5970], + [30017,11696], + [30019,2017], + [30021,9059], + [30023,9417], + [30025,2837], + [30027,11893], + [30029,74471], + [30031,67831], + [30033,1279], + [30035,13247], + [30037,1042], + [30039,2830], + [30041,16673], + [30043,10049], + [30045,2329], + [30047,26507], + [30049,55716], + [30051,2158], + [30053,18837], + [30055,1977], + [30057,6851], + [30059,1932], + [30061,3884], + [30063,95802], + [30065,4497], + [30067,15694], + [30069,493], + [30071,4601], + [30073,6424], + [30075,1858], + [30077,7180], + [30079,1199], + [30081,36070], + [30083,9667], + [30085,10620], + [30087,9383], + [30089,10227], + [30091,4105], + [30093,34606], + [30095,8195], + [30097,3609], + [30099,6445], + [30101,5267], + [30103,861], + [30105,7675], + [30107,2259], + [30109,1068], + [30111,129352], + [31001,31151], + [31003,7452], + [31005,444], + [31007,819], + [31009,583], + [31011,6259], + [31013,12158], + [31015,2438], + [31017,3525], + [31019,42259], + [31021,7791], + [31023,8767], + [31025,24334], + [31027,9615], + [31029,4068], + [31031,6148], + [31033,9830], + [31035,7039], + [31037,10441], + [31039,10203], + [31041,11793], + [31043,20253], + [31045,9060], + [31047,24365], + [31049,2098], + [31051,6339], + [31053,36160], + [31055,463585], + [31057,2292], + [31059,6634], + [31061,3574], + [31063,3099], + [31065,5324], + [31067,22993], + [31069,2292], + [31071,1902], + [31073,2143], + [31075,747], + [31077,2714], + [31079,53534], + [31081,9403], + [31083,3786], + [31085,1068], + [31087,3111], + [31089,11551], + [31091,783], + [31093,6567], + [31095,8333], + [31097,4488], + [31099,6882], + [31101,8875], + [31103,983], + [31105,4089], + [31107,9374], + [31109,250291], + [31111,34632], + [31113,774], + [31115,712], + [31117,533], + [31119,35226], + [31121,8204], + [31123,5440], + [31125,4038], + [31127,7576], + [31129,5057], + [31131,15396], + [31133,3087], + [31135,3200], + [31137,9747], + [31139,7857], + [31141,31662], + [31143,5639], + [31145,11448], + [31147,9531], + [31149,1756], + [31151,13843], + [31153,122595], + [31155,19830], + [31157,36951], + [31159,16496], + [31161,6198], + [31163,3318], + [31165,1475], + [31167,6455], + [31169,6055], + [31171,729], + [31173,7171], + [31175,4647], + [31177,18780], + [31179,9851], + [31181,4061], + [31183,886], + [31185,14598], + [32001,23982], + [32003,1375765], + [32005,41259], + [32007,45291], + [32009,971], + [32011,1651], + [32013,16106], + [32015,5794], + [32017,4165], + [32019,34501], + [32021,5071], + [32023,32485], + [32027,6693], + [32029,3399], + [32031,339486], + [32033,9181], + [32510,52457], + [33001,56325], + [33003,43666], + [33005,73825], + [33007,33111], + [33009,81743], + [33011,380841], + [33013,136225], + [33015,277359], + [33017,112233], + [33019,40458], + [34001,252552], + [34003,884118], + [34005,423394], + [34007,508932], + [34009,102326], + [34011,146438], + [34013,793633], + [34015,254673], + [34017,608975], + [34019,121989], + [34021,350761], + [34023,750162], + [34025,615301], + [34027,470212], + [34029,510916], + [34031,489049], + [34033,64285], + [34035,297490], + [34037,144166], + [34039,522541], + [34041,102437], + [35001,556678], + [35003,3543], + [35005,61382], + [35006,25595], + [35007,14189], + [35009,45044], + [35011,2240], + [35013,174682], + [35015,51658], + [35017,31002], + [35019,4680], + [35021,810], + [35023,5932], + [35025,55511], + [35027,19411], + [35028,18343], + [35029,25016], + [35031,74798], + [35033,5180], + [35035,62298], + [35037,10155], + [35039,41190], + [35041,18018], + [35043,89908], + [35045,113801], + [35047,30126], + [35049,129292], + [35051,13270], + [35053,18078], + [35055,29979], + [35057,16911], + [35059,4174], + [35061,66152], + [36001,294565], + [36003,49927], + [36005,1332650], + [36007,200536], + [36009,83955], + [36011,81963], + [36013,139750], + [36015,91070], + [36017,51401], + [36019,79894], + [36021,63094], + [36023,48599], + [36025,48055], + [36027,280150], + [36029,950265], + [36031,38851], + [36033,51134], + [36035,55073], + [36037,60370], + [36039,48195], + [36041,5379], + [36043,64427], + [36045,111738], + [36047,2465326], + [36049,26944], + [36051,64328], + [36053,69441], + [36055,735343], + [36057,49708], + [36059,1334544], + [36061,1537195], + [36063,219846], + [36065,235469], + [36067,458336], + [36069,100224], + [36071,341367], + [36073,44171], + [36075,122377], + [36077,61676], + [36079,95745], + [36081,2229379], + [36083,152538], + [36085,443728], + [36087,286753], + [36089,111931], + [36091,200635], + [36093,146555], + [36095,31582], + [36097,19224], + [36099,33342], + [36101,98726], + [36103,1419369], + [36105,73966], + [36107,51784], + [36109,96501], + [36111,177749], + [36113,63303], + [36115,61042], + [36117,93765], + [36119,923459], + [36121,43424], + [36123,24621], + [37001,130800], + [37003,33603], + [37005,10677], + [37007,25275], + [37009,24384], + [37011,17167], + [37013,44958], + [37015,19773], + [37017,32278], + [37019,73143], + [37021,206330], + [37023,89148], + [37025,131063], + [37027,77415], + [37029,6885], + [37031,59383], + [37033,23501], + [37035,141685], + [37037,49329], + [37039,24298], + [37041,14526], + [37043,8775], + [37045,96287], + [37047,54749], + [37049,91436], + [37051,302963], + [37053,18190], + [37055,29967], + [37057,147246], + [37059,34835], + [37061,49063], + [37063,223314], + [37065,55606], + [37067,306067], + [37069,47260], + [37071,190365], + [37073,10516], + [37075,7993], + [37077,48498], + [37079,18974], + [37081,421048], + [37083,57370], + [37085,91025], + [37087,54033], + [37089,89173], + [37091,22601], + [37093,33646], + [37095,5826], + [37097,122660], + [37099,33121], + [37101,121965], + [37103,10381], + [37105,49040], + [37107,59648], + [37109,63780], + [37111,42151], + [37113,29811], + [37115,19635], + [37117,25593], + [37119,695454], + [37121,15687], + [37123,26822], + [37125,74769], + [37127,87420], + [37129,160307], + [37131,22086], + [37133,150355], + [37135,118227], + [37137,12934], + [37139,34897], + [37141,41082], + [37143,11368], + [37145,35623], + [37147,133798], + [37149,18324], + [37151,130454], + [37153,46564], + [37155,123339], + [37157,91928], + [37159,130340], + [37161,62899], + [37163,60161], + [37165,35998], + [37167,58100], + [37169,44711], + [37171,71219], + [37173,12968], + [37175,29334], + [37177,4149], + [37179,123677], + [37181,42954], + [37183,627846], + [37185,19972], + [37187,13723], + [37189,42695], + [37191,113329], + [37193,65632], + [37195,73814], + [37197,36348], + [37199,17774], + [38001,2593], + [38003,11775], + [38005,6964], + [38007,888], + [38009,7149], + [38011,3242], + [38013,2242], + [38015,69416], + [38017,123138], + [38019,4831], + [38021,5757], + [38023,2283], + [38025,3600], + [38027,2757], + [38029,4331], + [38031,3759], + [38033,1924], + [38035,66109], + [38037,2841], + [38039,2754], + [38041,2715], + [38043,2753], + [38045,4701], + [38047,2308], + [38049,5987], + [38051,3390], + [38053,5737], + [38055,9311], + [38057,8644], + [38059,25303], + [38061,6631], + [38063,3715], + [38065,2065], + [38067,8585], + [38069,4675], + [38071,12066], + [38073,5890], + [38075,2610], + [38077,17998], + [38079,13674], + [38081,4366], + [38083,1710], + [38085,4044], + [38087,767], + [38089,22636], + [38091,2258], + [38093,21908], + [38095,2876], + [38097,8477], + [38099,12389], + [38101,58795], + [38103,5102], + [38105,19761], + [39001,27330], + [39003,108473], + [39005,52523], + [39007,102728], + [39009,62223], + [39011,46611], + [39013,70226], + [39015,42285], + [39017,332807], + [39019,28836], + [39021,38890], + [39023,144742], + [39025,177977], + [39027,40543], + [39029,112075], + [39031,36655], + [39033,46966], + [39035,1393978], + [39037,53309], + [39039,39500], + [39041,109989], + [39043,79551], + [39045,122759], + [39047,28433], + [39049,1068978], + [39051,42084], + [39053,31069], + [39055,90895], + [39057,147886], + [39059,40792], + [39061,845303], + [39063,71295], + [39065,31945], + [39067,15856], + [39069,29210], + [39071,40875], + [39073,28241], + [39075,38943], + [39077,59487], + [39079,32641], + [39081,73894], + [39083,54500], + [39085,227511], + [39087,62319], + [39089,145491], + [39091,46005], + [39093,284664], + [39095,455054], + [39097,40213], + [39099,257555], + [39101,66217], + [39103,151095], + [39105,23072], + [39107,40924], + [39109,98868], + [39111,15180], + [39113,559062], + [39115,14897], + [39117,31628], + [39119,84585], + [39121,14058], + [39123,40985], + [39125,20293], + [39127,34078], + [39129,52727], + [39131,27695], + [39133,152061], + [39135,42337], + [39137,34726], + [39139,128852], + [39141,73345], + [39143,61792], + [39145,79195], + [39147,58683], + [39149,47910], + [39151,378098], + [39153,542899], + [39155,225116], + [39157,90914], + [39159,40909], + [39161,29659], + [39163,12806], + [39165,158383], + [39167,63251], + [39169,111564], + [39171,39188], + [39173,121065], + [39175,22908], + [40001,21038], + [40003,6105], + [40005,13879], + [40007,5857], + [40009,19799], + [40011,11976], + [40013,36534], + [40015,30150], + [40017,87697], + [40019,45621], + [40021,42521], + [40023,15342], + [40025,3148], + [40027,208016], + [40029,6031], + [40031,114996], + [40033,6614], + [40035,14950], + [40037,67367], + [40039,26142], + [40041,37077], + [40043,4743], + [40045,4075], + [40047,57813], + [40049,27210], + [40051,45516], + [40053,5144], + [40055,6061], + [40057,3283], + [40059,3562], + [40061,11792], + [40063,14154], + [40065,28439], + [40067,6818], + [40069,10513], + [40071,48080], + [40073,13926], + [40075,10227], + [40077,10692], + [40079,48109], + [40081,32080], + [40083,33924], + [40085,8831], + [40087,27740], + [40089,34402], + [40091,19456], + [40093,7545], + [40095,13184], + [40097,38369], + [40099,12623], + [40101,69451], + [40103,11411], + [40105,10569], + [40107,11814], + [40109,660448], + [40111,39685], + [40113,44437], + [40115,33194], + [40117,16612], + [40119,68190], + [40121,43953], + [40123,35143], + [40125,65521], + [40127,11667], + [40129,3436], + [40131,70641], + [40133,24894], + [40135,38972], + [40137,43182], + [40139,20107], + [40141,9287], + [40143,563299], + [40145,57491], + [40147,48996], + [40149,11508], + [40151,9089], + [40153,18486], + [41001,16741], + [41003,78153], + [41005,338391], + [41007,35630], + [41009,43560], + [41011,62779], + [41013,19182], + [41015,21137], + [41017,115367], + [41019,100399], + [41021,1915], + [41023,7935], + [41025,7609], + [41027,20411], + [41029,181269], + [41031,19009], + [41033,75726], + [41035,63775], + [41037,7422], + [41039,322959], + [41041,44479], + [41043,103069], + [41045,31615], + [41047,284834], + [41049,10995], + [41051,660486], + [41053,62380], + [41055,1934], + [41057,24262], + [41059,70548], + [41061,24530], + [41063,7226], + [41065,23791], + [41067,445342], + [41069,1547], + [41071,84992], + [42001,91292], + [42003,1281666], + [42005,72392], + [42007,181412], + [42009,49984], + [42011,373638], + [42013,129144], + [42015,62761], + [42017,597635], + [42019,174083], + [42021,152598], + [42023,5974], + [42025,58802], + [42027,135758], + [42029,433501], + [42031,41765], + [42033,83382], + [42035,37914], + [42037,64151], + [42039,90366], + [42041,213674], + [42043,251798], + [42045,550864], + [42047,35112], + [42049,280843], + [42051,148644], + [42053,4946], + [42055,129313], + [42057,14261], + [42059,40672], + [42061,45586], + [42063,89605], + [42065,45932], + [42067,22821], + [42069,213295], + [42071,470658], + [42073,94643], + [42075,120327], + [42077,312090], + [42079,319250], + [42081,120044], + [42083,45936], + [42085,120293], + [42087,46486], + [42089,138687], + [42091,750097], + [42093,18236], + [42095,267066], + [42097,94556], + [42099,43602], + [42101,1517550], + [42103,46302], + [42105,18080], + [42107,150336], + [42109,37546], + [42111,80023], + [42113,6556], + [42115,42238], + [42117,41373], + [42119,41624], + [42121,57565], + [42123,43863], + [42125,202897], + [42127,47722], + [42129,369993], + [42131,28080], + [42133,381751], + [44001,50648], + [44003,167090], + [44005,85433], + [44007,621602], + [44009,123546], + [45001,26167], + [45003,142552], + [45005,11211], + [45007,165740], + [45009,16658], + [45011,23478], + [45013,120937], + [45015,142651], + [45017,15185], + [45019,309969], + [45021,52537], + [45023,34068], + [45025,42768], + [45027,32502], + [45029,38264], + [45031,67394], + [45033,30722], + [45035,96413], + [45037,24595], + [45039,23454], + [45041,125761], + [45043,55797], + [45045,379616], + [45047,66271], + [45049,21386], + [45051,196629], + [45053,20678], + [45055,52647], + [45057,61351], + [45059,69567], + [45061,20119], + [45063,216014], + [45065,9958], + [45067,35466], + [45069,28818], + [45071,36108], + [45073,66215], + [45075,91582], + [45077,110757], + [45079,320677], + [45081,19181], + [45083,253791], + [45085,104646], + [45087,29881], + [45089,37217], + [45091,164614], + [46003,3058], + [46005,17023], + [46007,3574], + [46009,7260], + [46011,28220], + [46013,35460], + [46015,5364], + [46017,2032], + [46019,9094], + [46021,1782], + [46023,9350], + [46025,4143], + [46027,13537], + [46029,25897], + [46031,4181], + [46033,7275], + [46035,18741], + [46037,6267], + [46039,4498], + [46041,5972], + [46043,3458], + [46045,4367], + [46047,7453], + [46049,2640], + [46051,7847], + [46053,4792], + [46055,2196], + [46057,5540], + [46059,3741], + [46061,3139], + [46063,1353], + [46065,16481], + [46067,8075], + [46069,1671], + [46071,2930], + [46073,2295], + [46075,1193], + [46077,5815], + [46079,11276], + [46081,21802], + [46083,24131], + [46085,3895], + [46087,5832], + [46089,2904], + [46091,4576], + [46093,24253], + [46095,2083], + [46097,2884], + [46099,148281], + [46101,6595], + [46102,12466], + [46103,88565], + [46105,3363], + [46107,2693], + [46109,10016], + [46111,2675], + [46115,7454], + [46117,2772], + [46119,1556], + [46121,9050], + [46123,6430], + [46125,8849], + [46127,12584], + [46129,5974], + [46135,21652], + [46137,2519], + [47001,71330], + [47003,37586], + [47005,16537], + [47007,12367], + [47009,105823], + [47011,87965], + [47013,39854], + [47015,12826], + [47017,29475], + [47019,56742], + [47021,35912], + [47023,15540], + [47025,29862], + [47027,7976], + [47029,33565], + [47031,48014], + [47033,14532], + [47035,46802], + [47037,569891], + [47039,11731], + [47041,17423], + [47043,43156], + [47045,37279], + [47047,28806], + [47049,16625], + [47051,39270], + [47053,48152], + [47055,29447], + [47057,20659], + [47059,62909], + [47061,14332], + [47063,58128], + [47065,307896], + [47067,6786], + [47069,28105], + [47071,25578], + [47073,53563], + [47075,19797], + [47077,25522], + [47079,31115], + [47081,22295], + [47083,8088], + [47085,17929], + [47087,10984], + [47089,44294], + [47091,17499], + [47093,382032], + [47095,7954], + [47097,27101], + [47099,39926], + [47101,11367], + [47103,31340], + [47105,39086], + [47107,49015], + [47109,24653], + [47111,20386], + [47113,91837], + [47115,27776], + [47117,26767], + [47119,69498], + [47121,11086], + [47123,38961], + [47125,134768], + [47127,5740], + [47129,19757], + [47131,32450], + [47133,20118], + [47135,7631], + [47137,4945], + [47139,16050], + [47141,62315], + [47143,28400], + [47145,51910], + [47147,54433], + [47149,182023], + [47151,21127], + [47153,11370], + [47155,71170], + [47157,897472], + [47159,17712], + [47161,12370], + [47163,153048], + [47165,130449], + [47167,51271], + [47169,7259], + [47171,17667], + [47173,17808], + [47175,5508], + [47177,38276], + [47179,107198], + [47181,16842], + [47183,34895], + [47185,23102], + [47187,126638], + [47189,88809], + [48001,55109], + [48003,13004], + [48005,80130], + [48007,22497], + [48009,8854], + [48011,2148], + [48013,38628], + [48015,23590], + [48017,6594], + [48019,17645], + [48021,57733], + [48023,4093], + [48025,32359], + [48027,237974], + [48029,1392931], + [48031,8418], + [48033,729], + [48035,17204], + [48037,89306], + [48039,241767], + [48041,152415], + [48043,8866], + [48045,1790], + [48047,7976], + [48049,37674], + [48051,16470], + [48053,34147], + [48055,32194], + [48057,20647], + [48059,12905], + [48061,335227], + [48063,11549], + [48065,6516], + [48067,30438], + [48069,8285], + [48071,26031], + [48073,46659], + [48075,7688], + [48077,11006], + [48079,3730], + [48081,3864], + [48083,9235], + [48085,491675], + [48087,3206], + [48089,20390], + [48091,78021], + [48093,14026], + [48095,3966], + [48097,36363], + [48099,74978], + [48101,1904], + [48103,3996], + [48105,4099], + [48107,7072], + [48109,2975], + [48111,6222], + [48113,2218899], + [48115,14985], + [48117,18561], + [48119,5327], + [48121,432976], + [48123,20013], + [48125,2762], + [48127,10248], + [48129,3828], + [48131,13120], + [48133,18297], + [48135,121123], + [48137,2162], + [48139,111360], + [48141,679622], + [48143,33001], + [48145,18576], + [48147,31242], + [48149,21804], + [48151,4344], + [48153,7771], + [48155,1622], + [48157,354452], + [48159,9458], + [48161,17867], + [48163,16252], + [48165,14467], + [48167,250158], + [48169,4872], + [48171,20814], + [48173,1406], + [48175,6928], + [48177,18628], + [48179,22744], + [48181,110595], + [48183,111379], + [48185,23552], + [48187,89023], + [48189,36602], + [48191,3782], + [48193,8229], + [48195,5369], + [48197,4724], + [48199,48073], + [48201,3400578], + [48203,62110], + [48205,5537], + [48207,6093], + [48209,97589], + [48211,3351], + [48213,73277], + [48215,569463], + [48217,32321], + [48219,22716], + [48221,41100], + [48223,31960], + [48225,23185], + [48227,33627], + [48229,3344], + [48231,76596], + [48233,23857], + [48235,1771], + [48237,8763], + [48239,14391], + [48241,35604], + [48243,2207], + [48245,252051], + [48247,5281], + [48249,39326], + [48251,126811], + [48253,20785], + [48255,15446], + [48257,71313], + [48259,23743], + [48261,414], + [48263,859], + [48265,43653], + [48267,4468], + [48269,356], + [48271,3379], + [48273,31549], + [48275,4253], + [48277,48499], + [48279,14709], + [48281,17762], + [48283,5866], + [48285,19210], + [48287,15657], + [48289,15335], + [48291,70154], + [48293,22051], + [48295,3057], + [48297,12309], + [48299,17044], + [48301,67], + [48303,242628], + [48305,6550], + [48307,8205], + [48309,213517], + [48311,851], + [48313,12940], + [48315,10941], + [48317,4746], + [48319,3738], + [48321,37957], + [48323,47297], + [48325,39304], + [48327,2360], + [48329,116009], + [48331,24238], + [48333,5151], + [48335,9698], + [48337,19117], + [48339,293768], + [48341,20121], + [48343,13048], + [48345,1426], + [48347,59203], + [48349,45124], + [48351,15072], + [48353,15802], + [48355,313645], + [48357,9006], + [48359,2185], + [48361,84966], + [48363,27026], + [48365,22756], + [48367,88495], + [48369,10016], + [48371,16809], + [48373,41133], + [48375,113546], + [48377,7304], + [48379,9139], + [48381,104312], + [48383,3326], + [48385,3047], + [48387,14314], + [48389,13137], + [48391,7828], + [48393,887], + [48395,16000], + [48397,43080], + [48399,11495], + [48401,47372], + [48403,10469], + [48405,8946], + [48407,22246], + [48409,67138], + [48411,6186], + [48413,2935], + [48415,16361], + [48417,3302], + [48419,25224], + [48421,3186], + [48423,174706], + [48425,6809], + [48427,53597], + [48429,9674], + [48431,1393], + [48433,1693], + [48435,4077], + [48437,8378], + [48439,1446219], + [48441,126555], + [48443,1081], + [48445,12761], + [48447,1850], + [48449,28118], + [48451,104010], + [48453,812280], + [48455,13779], + [48457,20871], + [48459,35291], + [48461,3404], + [48463,25926], + [48465,44856], + [48467,48140], + [48469,84088], + [48471,61758], + [48473,32663], + [48475,10909], + [48477,30373], + [48479,193117], + [48481,41188], + [48483,5284], + [48485,131664], + [48487,14676], + [48489,20082], + [48491,249967], + [48493,32408], + [48495,7173], + [48497,48793], + [48499,36752], + [48501,7322], + [48503,17943], + [48505,12182], + [48507,11600], + [49001,6005], + [49003,42745], + [49005,91391], + [49007,20422], + [49009,921], + [49011,238994], + [49013,14371], + [49015,10860], + [49017,4735], + [49019,8485], + [49021,33779], + [49023,8238], + [49025,6046], + [49027,12405], + [49029,7129], + [49031,1435], + [49033,1961], + [49035,898387], + [49037,14413], + [49039,22763], + [49041,18842], + [49043,29736], + [49045,40735], + [49047,25224], + [49049,368536], + [49051,15215], + [49053,90354], + [49055,2509], + [49057,196533], + [50001,35974], + [50003,36994], + [50005,29702], + [50007,146571], + [50009,6459], + [50011,45417], + [50013,6901], + [50015,23233], + [50017,28226], + [50019,26277], + [50021,63400], + [50023,58039], + [50025,44216], + [50027,57418], + [51001,38305], + [51003,79236], + [51005,12926], + [51007,11400], + [51009,31894], + [51011,13705], + [51013,189453], + [51015,65615], + [51017,5048], + [51019,60371], + [51021,6871], + [51023,30496], + [51025,18419], + [51027,26978], + [51029,15623], + [51031,51078], + [51033,22121], + [51035,29245], + [51036,6926], + [51037,12472], + [51041,259903], + [51043,12652], + [51045,5091], + [51047,34262], + [51049,9017], + [51051,16395], + [51053,24533], + [51057,9989], + [51059,969749], + [51061,55139], + [51063,13874], + [51065,20047], + [51067,47286], + [51069,59209], + [51071,16657], + [51073,34780], + [51075,16863], + [51077,17917], + [51079,15244], + [51081,11560], + [51083,37355], + [51085,86320], + [51087,262300], + [51089,57930], + [51091,2536], + [51093,29728], + [51095,48102], + [51097,6630], + [51099,16803], + [51101,13146], + [51103,11567], + [51105,23589], + [51107,169599], + [51109,25627], + [51111,13146], + [51113,12520], + [51115,9207], + [51117,32380], + [51119,9932], + [51121,83629], + [51125,14445], + [51127,13462], + [51131,13093], + [51133,12259], + [51135,15725], + [51137,25881], + [51139,23177], + [51141,19407], + [51143,61745], + [51145,22377], + [51147,19720], + [51149,33047], + [51153,280813], + [51155,35127], + [51157,6983], + [51159,8809], + [51161,85778], + [51163,20808], + [51165,67725], + [51167,30308], + [51169,23403], + [51171,35075], + [51173,33081], + [51175,17482], + [51177,90395], + [51179,92446], + [51181,6829], + [51183,12504], + [51185,44598], + [51187,31584], + [51191,51103], + [51193,16718], + [51195,40123], + [51197,27599], + [51199,56297], + [51510,128283], + [51520,17367], + [51530,6349], + [51540,45049], + [51550,199184], + [51570,16897], + [51580,6303], + [51590,48411], + [51595,5665], + [51600,21498], + [51610,10377], + [51620,8346], + [51630,19279], + [51640,6837], + [51650,146437], + [51660,40468], + [51670,22354], + [51678,6867], + [51680,65269], + [51683,35135], + [51685,10290], + [51690,15416], + [51700,180150], + [51710,234403], + [51720,3904], + [51730,33740], + [51735,11566], + [51740,100565], + [51750,15859], + [51760,197790], + [51770,94911], + [51775,24747], + [51790,23853], + [51800,63677], + [51810,425257], + [51820,19520], + [51830,11998], + [51840,23585], + [53001,16428], + [53003,20551], + [53005,142475], + [53007,66616], + [53009,64525], + [53011,345238], + [53013,4064], + [53015,92948], + [53017,32603], + [53019,7260], + [53021,49347], + [53023,2397], + [53025,74698], + [53027,67194], + [53029,71558], + [53031,25953], + [53033,1737034], + [53035,231969], + [53037,33362], + [53039,19161], + [53041,68600], + [53043,10184], + [53045,49405], + [53047,39564], + [53049,20984], + [53051,11732], + [53053,700820], + [53055,14077], + [53057,102979], + [53059,9872], + [53061,606024], + [53063,417939], + [53065,40066], + [53067,207355], + [53069,3824], + [53071,55180], + [53073,166814], + [53075,40740], + [53077,222581], + [54001,15557], + [54003,75905], + [54005,25535], + [54007,14702], + [54009,25447], + [54011,96784], + [54013,7582], + [54015,10330], + [54017,7403], + [54019,47579], + [54021,7160], + [54023,11299], + [54025,34453], + [54027,20203], + [54029,32667], + [54031,12669], + [54033,68652], + [54035,28000], + [54037,42190], + [54039,200073], + [54041,16919], + [54043,22108], + [54045,37710], + [54047,27329], + [54049,56598], + [54051,35519], + [54053,25957], + [54055,62980], + [54057,27078], + [54059,28253], + [54061,81866], + [54063,14583], + [54065,14943], + [54067,26562], + [54069,47427], + [54071,8196], + [54073,7514], + [54075,9131], + [54077,29334], + [54079,51589], + [54081,79220], + [54083,28262], + [54085,10343], + [54087,15446], + [54089,12999], + [54091,16089], + [54093,7321], + [54095,9592], + [54097,23404], + [54099,42903], + [54101,9719], + [54103,17693], + [54105,5873], + [54107,87986], + [54109,25708], + [55001,18643], + [55003,16866], + [55005,44963], + [55007,15013], + [55009,226778], + [55011,13804], + [55013,15674], + [55015,40631], + [55017,55195], + [55019,33557], + [55021,52468], + [55023,17243], + [55025,426526], + [55027,85897], + [55029,27961], + [55031,43287], + [55033,39858], + [55035,93142], + [55037,5088], + [55039,97296], + [55041,10024], + [55043,49597], + [55045,33647], + [55047,19105], + [55049,22780], + [55051,6861], + [55053,19100], + [55055,74021], + [55057,24316], + [55059,149577], + [55061,20187], + [55063,107120], + [55065,16137], + [55067,20740], + [55069,29641], + [55071,82887], + [55073,125834], + [55075,43384], + [55077,15832], + [55078,4562], + [55079,940164], + [55081,40899], + [55083,35634], + [55085,36776], + [55087,160971], + [55089,82317], + [55091,7213], + [55093,36804], + [55095,41319], + [55097,67182], + [55099,15822], + [55101,188831], + [55103,17924], + [55105,152307], + [55107,15347], + [55109,63155], + [55111,55225], + [55113,16196], + [55115,40664], + [55117,112646], + [55119,19680], + [55121,27010], + [55123,28056], + [55125,21033], + [55127,93759], + [55129,16036], + [55131,117493], + [55133,360767], + [55135,51731], + [55137,23154], + [55139,156763], + [55141,75555], + [56001,32014], + [56003,11461], + [56005,33698], + [56007,15639], + [56009,12052], + [56011,5887], + [56013,35804], + [56015,12538], + [56017,4882], + [56019,7075], + [56021,81607], + [56023,14573], + [56025,66533], + [56027,2407], + [56029,25786], + [56031,8807], + [56033,26560], + [56035,5920], + [56037,37613], + [56039,18251], + [56041,19742], + [56043,8289], + [56045,6644] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2010.json b/data/regional/united-states/demographics/population/us-population-2010.json new file mode 100644 index 0000000..c7a380f --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2010.", + "units" : "people", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2010"], + [1001,54571], + [1003,182265], + [1005,27457], + [1007,22915], + [1009,57322], + [1011,10914], + [1013,20947], + [1015,118572], + [1017,34215], + [1019,25989], + [1021,43643], + [1023,13859], + [1025,25833], + [1027,13932], + [1029,14972], + [1031,49948], + [1033,54428], + [1035,13228], + [1037,11539], + [1039,37765], + [1041,13906], + [1043,80406], + [1045,50251], + [1047,43820], + [1049,71109], + [1051,79303], + [1053,38319], + [1055,104430], + [1057,17241], + [1059,31704], + [1061,26790], + [1063,9045], + [1065,15760], + [1067,17302], + [1069,101547], + [1071,53227], + [1073,658466], + [1075,14564], + [1077,92709], + [1079,34339], + [1081,140247], + [1083,82782], + [1085,11299], + [1087,21452], + [1089,334811], + [1091,21027], + [1093,30776], + [1095,93019], + [1097,412992], + [1099,23068], + [1101,229363], + [1103,119490], + [1105,10591], + [1107,19746], + [1109,32899], + [1111,22913], + [1113,52947], + [1115,83593], + [1117,195085], + [1119,13763], + [1121,82291], + [1123,41616], + [1125,194656], + [1127,67023], + [1129,17581], + [1131,11670], + [1133,24484], + [2013,3141], + [2016,5561], + [2020,291826], + [2050,17013], + [2060,997], + [2068,1826], + [2070,4847], + [2090,97581], + [2100,2508], + [2105,2150], + [2110,31275], + [2122,55400], + [2130,13477], + [2150,13592], + [2158,7459], + [2164,1631], + [2170,88995], + [2180,9492], + [2185,9430], + [2188,7523], + [2195,3815], + [2198,5559], + [2220,8881], + [2230,968], + [2240,7029], + [2261,9636], + [2275,2369], + [2282,662], + [2290,5588], + [4001,71518], + [4003,131346], + [4005,134421], + [4007,53597], + [4009,37220], + [4011,8437], + [4012,20489], + [4013,3817117], + [4015,200186], + [4017,107449], + [4019,980263], + [4021,375770], + [4023,47420], + [4025,211033], + [4027,195751], + [5001,19019], + [5003,21853], + [5005,41513], + [5007,221339], + [5009,36903], + [5011,11508], + [5013,5368], + [5015,27446], + [5017,11800], + [5019,22995], + [5021,16083], + [5023,25970], + [5025,8689], + [5027,24552], + [5029,21273], + [5031,96443], + [5033,61948], + [5035,50902], + [5037,17870], + [5039,8116], + [5041,13008], + [5043,18509], + [5045,113237], + [5047,18125], + [5049,12245], + [5051,96024], + [5053,17853], + [5055,42090], + [5057,22609], + [5059,32923], + [5061,13789], + [5063,36647], + [5065,13696], + [5067,17997], + [5069,77435], + [5071,25540], + [5073,7645], + [5075,17415], + [5077,10424], + [5079,14134], + [5081,13171], + [5083,22353], + [5085,68356], + [5087,15717], + [5089,16653], + [5091,43462], + [5093,46480], + [5095,8149], + [5097,9487], + [5099,8997], + [5101,8330], + [5103,26120], + [5105,10445], + [5107,21757], + [5109,11291], + [5111,24583], + [5113,20662], + [5115,61754], + [5117,8715], + [5119,382748], + [5121,17969], + [5123,28258], + [5125,107118], + [5127,11233], + [5129,8195], + [5131,125744], + [5133,17058], + [5135,17264], + [5137,12394], + [5139,41639], + [5141,17295], + [5143,203065], + [5145,77076], + [5147,7260], + [5149,22185], + [6001,1510271], + [6003,1175], + [6005,38091], + [6007,220000], + [6009,45578], + [6011,21419], + [6013,1049025], + [6015,28610], + [6017,181058], + [6019,930450], + [6021,28122], + [6023,134623], + [6025,174528], + [6027,18546], + [6029,839631], + [6031,152982], + [6033,64665], + [6035,34895], + [6037,9818605], + [6039,150865], + [6041,252409], + [6043,18251], + [6045,87841], + [6047,255793], + [6049,9686], + [6051,14202], + [6053,415057], + [6055,136484], + [6057,98764], + [6059,3010232], + [6061,348432], + [6063,20007], + [6065,2189641], + [6067,1418788], + [6069,55269], + [6071,2035210], + [6073,3095313], + [6075,805235], + [6077,685306], + [6079,269637], + [6081,718451], + [6083,423895], + [6085,1781642], + [6087,262382], + [6089,177223], + [6091,3240], + [6093,44900], + [6095,413344], + [6097,483878], + [6099,514453], + [6101,94737], + [6103,63463], + [6105,13786], + [6107,442179], + [6109,55365], + [6111,823318], + [6113,200849], + [6115,72155], + [8001,441603], + [8003,15445], + [8005,572003], + [8007,12084], + [8009,3788], + [8011,6499], + [8013,294567], + [8014,55889], + [8015,17809], + [8017,1836], + [8019,9088], + [8021,8256], + [8023,3524], + [8025,5823], + [8027,4255], + [8029,30952], + [8031,600158], + [8033,2064], + [8035,285465], + [8037,52197], + [8039,23086], + [8041,622263], + [8043,46824], + [8045,56389], + [8047,5441], + [8049,14843], + [8051,15324], + [8053,843], + [8055,6711], + [8057,1394], + [8059,534543], + [8061,1398], + [8063,8270], + [8065,7310], + [8067,51334], + [8069,299630], + [8071,15507], + [8073,5467], + [8075,22709], + [8077,146723], + [8079,712], + [8081,13795], + [8083,25535], + [8085,41276], + [8087,28159], + [8089,18831], + [8091,4436], + [8093,16206], + [8095,4442], + [8097,17148], + [8099,12551], + [8101,159063], + [8103,6666], + [8105,11982], + [8107,23509], + [8109,6108], + [8111,699], + [8113,7359], + [8115,2379], + [8117,27994], + [8119,23350], + [8121,4814], + [8123,252825], + [8125,10043], + [9001,916829], + [9003,894014], + [9005,189927], + [9007,165676], + [9009,862477], + [9011,274055], + [9013,152691], + [9015,118428], + [10001,162310], + [10003,538479], + [10005,197145], + [11001,601723], + [12001,247336], + [12003,27115], + [12005,168852], + [12007,28520], + [12009,543376], + [12011,1748066], + [12013,14625], + [12015,159978], + [12017,141236], + [12019,190865], + [12021,321520], + [12023,67531], + [12027,34862], + [12029,16422], + [12031,864263], + [12033,297619], + [12035,95696], + [12037,11549], + [12039,46389], + [12041,16939], + [12043,12884], + [12045,15863], + [12047,14799], + [12049,27731], + [12051,39140], + [12053,172778], + [12055,98786], + [12057,1229226], + [12059,19927], + [12061,138028], + [12063,49746], + [12065,14761], + [12067,8870], + [12069,297052], + [12071,618754], + [12073,275487], + [12075,40801], + [12077,8365], + [12079,19224], + [12081,322833], + [12083,331298], + [12085,146318], + [12086,2496435], + [12087,73090], + [12089,73314], + [12091,180822], + [12093,39996], + [12095,1145956], + [12097,268685], + [12099,1320134], + [12101,464697], + [12103,916542], + [12105,602095], + [12107,74364], + [12109,190039], + [12111,277789], + [12113,151372], + [12115,379448], + [12117,422718], + [12119,93420], + [12121,41551], + [12123,22570], + [12125,15535], + [12127,494593], + [12129,30776], + [12131,55043], + [12133,24896], + [13001,18236], + [13003,8375], + [13005,11096], + [13007,3451], + [13009,45720], + [13011,18395], + [13013,69367], + [13015,100157], + [13017,17634], + [13019,19286], + [13021,155547], + [13023,13063], + [13025,18411], + [13027,16243], + [13029,30233], + [13031,70217], + [13033,23316], + [13035,23655], + [13037,6694], + [13039,50513], + [13043,10998], + [13045,110527], + [13047,63942], + [13049,12171], + [13051,265128], + [13053,11267], + [13055,26015], + [13057,214346], + [13059,116714], + [13061,3183], + [13063,259424], + [13065,6798], + [13067,688078], + [13069,42356], + [13071,45498], + [13073,124053], + [13075,17212], + [13077,127317], + [13079,12630], + [13081,23439], + [13083,16633], + [13085,22330], + [13087,27842], + [13089,691893], + [13091,21796], + [13093,14918], + [13095,94565], + [13097,132403], + [13099,11008], + [13101,4034], + [13103,52250], + [13105,20166], + [13107,22598], + [13109,11000], + [13111,23682], + [13113,106567], + [13115,96317], + [13117,175511], + [13119,22084], + [13121,920581], + [13123,28292], + [13125,3082], + [13127,79626], + [13129,55186], + [13131,25011], + [13133,15994], + [13135,805321], + [13137,43041], + [13139,179684], + [13141,9429], + [13143,28780], + [13145,32024], + [13147,25213], + [13149,11834], + [13151,203922], + [13153,139900], + [13155,9538], + [13157,60485], + [13159,13900], + [13161,15068], + [13163,16930], + [13165,8340], + [13167,9980], + [13169,28669], + [13171,18317], + [13173,10078], + [13175,48434], + [13177,28298], + [13179,63453], + [13181,7996], + [13183,14464], + [13185,109233], + [13187,29966], + [13189,21875], + [13191,14333], + [13193,14740], + [13195,28120], + [13197,8742], + [13199,21992], + [13201,6125], + [13205,23498], + [13207,26424], + [13209,9123], + [13211,17868], + [13213,39628], + [13215,189885], + [13217,99958], + [13219,32808], + [13221,14899], + [13223,142324], + [13225,27695], + [13227,29431], + [13229,18758], + [13231,17869], + [13233,41475], + [13235,12010], + [13237,21218], + [13239,2513], + [13241,16276], + [13243,7719], + [13245,200549], + [13247,85215], + [13249,5010], + [13251,14593], + [13253,8729], + [13255,64073], + [13257,26175], + [13259,6058], + [13261,32819], + [13263,6865], + [13265,1717], + [13267,25520], + [13269,8906], + [13271,16500], + [13273,9315], + [13275,44720], + [13277,40118], + [13279,27223], + [13281,10471], + [13283,6885], + [13285,67044], + [13287,8930], + [13289,9023], + [13291,21356], + [13293,27153], + [13295,68756], + [13297,83768], + [13299,36312], + [13301,5834], + [13303,21187], + [13305,30099], + [13307,2799], + [13309,7421], + [13311,27144], + [13313,102599], + [13315,9255], + [13317,10593], + [13319,9563], + [13321,21679], + [15001,185079], + [15003,953207], + [15005,90], + [15007,67091], + [15009,154834], + [16001,392365], + [16003,3976], + [16005,82839], + [16007,5986], + [16009,9285], + [16011,45607], + [16013,21376], + [16015,7028], + [16017,40877], + [16019,104234], + [16021,10972], + [16023,2891], + [16025,1117], + [16027,188923], + [16029,6963], + [16031,22952], + [16033,982], + [16035,8761], + [16037,4368], + [16039,27038], + [16041,12786], + [16043,13242], + [16045,16719], + [16047,15464], + [16049,16267], + [16051,26140], + [16053,22374], + [16055,138494], + [16057,37244], + [16059,7936], + [16061,3821], + [16063,5208], + [16065,37536], + [16067,20069], + [16069,39265], + [16071,4286], + [16073,11526], + [16075,22623], + [16077,7817], + [16079,12765], + [16081,10170], + [16083,77230], + [16085,9862], + [16087,10198], + [17001,67103], + [17003,8238], + [17005,17768], + [17007,54165], + [17009,6937], + [17011,34978], + [17013,5089], + [17015,15387], + [17017,13642], + [17019,201081], + [17021,34800], + [17023,16335], + [17025,13815], + [17027,37762], + [17029,53873], + [17031,5194675], + [17033,19817], + [17035,11048], + [17037,105160], + [17039,16561], + [17041,19980], + [17043,916924], + [17045,18576], + [17047,6721], + [17049,34242], + [17051,22140], + [17053,14081], + [17055,39561], + [17057,37069], + [17059,5589], + [17061,13886], + [17063,50063], + [17065,8457], + [17067,19104], + [17069,4320], + [17071,7331], + [17073,50486], + [17075,29718], + [17077,60218], + [17079,9698], + [17081,38827], + [17083,22985], + [17085,22678], + [17087,12582], + [17089,515269], + [17091,113449], + [17093,114736], + [17095,52919], + [17097,703462], + [17099,113924], + [17101,16833], + [17103,36031], + [17105,38950], + [17107,30305], + [17109,32612], + [17111,308760], + [17113,169572], + [17115,110768], + [17117,47765], + [17119,269282], + [17121,39437], + [17123,12640], + [17125,14666], + [17127,15429], + [17129,12705], + [17131,16434], + [17133,32957], + [17135,30104], + [17137,35547], + [17139,14846], + [17141,53497], + [17143,186494], + [17145,22350], + [17147,16729], + [17149,16430], + [17151,4470], + [17153,6161], + [17155,6006], + [17157,33476], + [17159,16233], + [17161,147546], + [17163,270056], + [17165,24913], + [17167,197465], + [17169,7544], + [17171,5355], + [17173,22363], + [17175,5994], + [17177,47711], + [17179,135394], + [17181,17808], + [17183,81625], + [17185,11947], + [17187,17707], + [17189,14716], + [17191,16760], + [17193,14665], + [17195,58498], + [17197,677560], + [17199,66357], + [17201,295266], + [17203,38664], + [18001,34387], + [18003,355329], + [18005,76794], + [18007,8854], + [18009,12766], + [18011,56640], + [18013,15242], + [18015,20155], + [18017,38966], + [18019,110232], + [18021,26890], + [18023,33224], + [18025,10713], + [18027,31648], + [18029,50047], + [18031,25740], + [18033,42223], + [18035,117671], + [18037,41889], + [18039,197559], + [18041,24277], + [18043,74578], + [18045,17240], + [18047,23087], + [18049,20836], + [18051,33503], + [18053,70061], + [18055,33165], + [18057,274569], + [18059,70002], + [18061,39364], + [18063,145448], + [18065,49462], + [18067,82752], + [18069,37124], + [18071,42376], + [18073,33478], + [18075,21253], + [18077,32428], + [18079,28525], + [18081,139654], + [18083,38440], + [18085,77358], + [18087,37128], + [18089,496005], + [18091,111467], + [18093,46134], + [18095,131636], + [18097,903393], + [18099,47051], + [18101,10334], + [18103,36903], + [18105,137974], + [18107,38124], + [18109,68894], + [18111,14244], + [18113,47536], + [18115,6128], + [18117,19840], + [18119,21575], + [18121,17339], + [18123,19338], + [18125,12845], + [18127,164343], + [18129,25910], + [18131,13402], + [18133,37963], + [18135,26171], + [18137,28818], + [18139,17392], + [18141,266931], + [18143,24181], + [18145,44436], + [18147,20952], + [18149,23363], + [18151,34185], + [18153,21475], + [18155,10613], + [18157,172780], + [18159,15936], + [18161,7516], + [18163,179703], + [18165,16212], + [18167,107848], + [18169,32888], + [18171,8508], + [18173,59689], + [18175,28262], + [18177,68917], + [18179,27636], + [18181,24643], + [18183,33292], + [19001,7682], + [19003,4029], + [19005,14330], + [19007,12887], + [19009,6119], + [19011,26076], + [19013,131090], + [19015,26306], + [19017,24276], + [19019,20958], + [19021,20260], + [19023,14867], + [19025,9670], + [19027,20816], + [19029,13956], + [19031,18499], + [19033,44151], + [19035,12072], + [19037,12439], + [19039,9286], + [19041,16667], + [19043,18129], + [19045,49116], + [19047,17096], + [19049,66135], + [19051,8753], + [19053,8457], + [19055,17764], + [19057,40325], + [19059,16667], + [19061,93653], + [19063,10302], + [19065,20880], + [19067,16303], + [19069,10680], + [19071,7441], + [19073,9336], + [19075,12453], + [19077,10954], + [19079,15673], + [19081,11341], + [19083,17534], + [19085,14928], + [19087,20145], + [19089,9566], + [19091,9815], + [19093,7089], + [19095,16355], + [19097,19848], + [19099,36842], + [19101,16843], + [19103,130882], + [19105,20638], + [19107,10511], + [19109,15543], + [19111,35862], + [19113,211226], + [19115,11387], + [19117,8898], + [19119,11581], + [19121,15679], + [19123,22381], + [19125,33309], + [19127,40648], + [19129,15059], + [19131,10776], + [19133,9243], + [19135,7970], + [19137,10740], + [19139,42745], + [19141,14398], + [19143,6462], + [19145,15932], + [19147,9421], + [19149,24986], + [19151,7310], + [19153,430640], + [19155,93158], + [19157,18914], + [19159,5131], + [19161,10350], + [19163,165224], + [19165,12167], + [19167,33704], + [19169,89542], + [19171,17767], + [19173,6317], + [19175,12534], + [19177,7570], + [19179,35625], + [19181,46225], + [19183,21704], + [19185,6403], + [19187,38013], + [19189,10866], + [19191,21056], + [19193,102172], + [19195,7598], + [19197,13229], + [20001,13371], + [20003,8102], + [20005,16924], + [20007,4861], + [20009,27674], + [20011,15173], + [20013,9984], + [20015,65880], + [20017,2790], + [20019,3669], + [20021,21603], + [20023,2726], + [20025,2215], + [20027,8535], + [20029,9533], + [20031,8601], + [20033,1891], + [20035,36311], + [20037,39134], + [20039,2961], + [20041,19754], + [20043,7945], + [20045,110826], + [20047,3037], + [20049,2882], + [20051,28452], + [20053,6497], + [20055,36776], + [20057,33848], + [20059,25992], + [20061,34362], + [20063,2695], + [20065,2597], + [20067,7829], + [20069,6006], + [20071,1247], + [20073,6689], + [20075,2690], + [20077,6034], + [20079,34684], + [20081,4256], + [20083,1916], + [20085,13462], + [20087,19126], + [20089,3077], + [20091,544179], + [20093,3977], + [20095,7858], + [20097,2553], + [20099,21607], + [20101,1750], + [20103,76227], + [20105,3241], + [20107,9656], + [20109,2756], + [20111,33690], + [20113,29180], + [20115,12660], + [20117,10117], + [20119,4575], + [20121,32787], + [20123,6373], + [20125,35471], + [20127,5923], + [20129,3233], + [20131,10178], + [20133,16512], + [20135,3107], + [20137,5671], + [20139,16295], + [20141,3858], + [20143,6091], + [20145,6973], + [20147,5642], + [20149,21604], + [20151,9656], + [20153,2519], + [20155,64511], + [20157,4980], + [20159,10083], + [20161,71115], + [20163,5181], + [20165,3307], + [20167,6970], + [20169,55606], + [20171,4936], + [20173,498365], + [20175,22952], + [20177,177934], + [20179,2556], + [20181,6010], + [20183,3853], + [20185,4437], + [20187,2235], + [20189,5724], + [20191,24132], + [20193,7900], + [20195,3001], + [20197,7053], + [20199,1485], + [20201,5799], + [20203,2234], + [20205,9409], + [20207,3309], + [20209,157505], + [21001,18656], + [21003,19956], + [21005,21421], + [21007,8249], + [21009,42173], + [21011,11591], + [21013,28691], + [21015,118811], + [21017,19985], + [21019,49542], + [21021,28432], + [21023,8488], + [21025,13878], + [21027,20059], + [21029,74319], + [21031,12690], + [21033,12984], + [21035,37191], + [21037,90336], + [21039,5104], + [21041,10811], + [21043,27720], + [21045,15955], + [21047,73955], + [21049,35613], + [21051,21730], + [21053,10272], + [21055,9315], + [21057,6856], + [21059,96656], + [21061,12161], + [21063,7852], + [21065,14672], + [21067,295803], + [21069,14348], + [21071,39451], + [21073,49285], + [21075,6813], + [21077,8589], + [21079,16912], + [21081,24662], + [21083,37121], + [21085,25746], + [21087,11258], + [21089,36910], + [21091,8565], + [21093,105543], + [21095,29278], + [21097,18846], + [21099,18199], + [21101,46250], + [21103,15416], + [21105,4902], + [21107,46920], + [21109,13494], + [21111,741096], + [21113,48586], + [21115,23356], + [21117,159720], + [21119,16346], + [21121,31883], + [21123,14193], + [21125,58849], + [21127,15860], + [21129,7887], + [21131,11310], + [21133,24519], + [21135,13870], + [21137,24742], + [21139,9519], + [21141,26835], + [21143,8314], + [21145,65565], + [21147,18306], + [21149,9531], + [21151,82916], + [21153,13333], + [21155,19820], + [21157,31448], + [21159,12929], + [21161,17490], + [21163,28602], + [21165,6306], + [21167,21331], + [21169,10099], + [21171,10963], + [21173,26499], + [21175,13923], + [21177,31499], + [21179,43437], + [21181,7135], + [21183,23842], + [21185,60316], + [21187,10841], + [21189,4755], + [21191,14877], + [21193,28712], + [21195,65024], + [21197,12613], + [21199,63063], + [21201,2282], + [21203,17056], + [21205,23333], + [21207,17565], + [21209,47173], + [21211,42074], + [21213,17327], + [21215,17061], + [21217,24512], + [21219,12460], + [21221,14339], + [21223,8809], + [21225,15007], + [21227,113792], + [21229,11717], + [21231,20813], + [21233,13621], + [21235,35637], + [21237,7355], + [21239,24939], + [22001,61773], + [22003,25764], + [22005,107215], + [22007,23421], + [22009,42073], + [22011,35654], + [22013,14353], + [22015,116979], + [22017,254969], + [22019,192768], + [22021,10132], + [22023,6839], + [22025,10407], + [22027,17195], + [22029,20822], + [22031,26656], + [22033,440171], + [22035,7759], + [22037,20267], + [22039,33984], + [22041,20767], + [22043,22309], + [22045,73240], + [22047,33387], + [22049,16274], + [22051,432552], + [22053,31594], + [22055,221578], + [22057,96318], + [22059,14890], + [22061,46735], + [22063,128026], + [22065,12093], + [22067,27979], + [22069,39566], + [22071,343829], + [22073,153720], + [22075,23042], + [22077,22802], + [22079,131613], + [22081,9091], + [22083,20725], + [22085,24233], + [22087,35897], + [22089,52780], + [22091,11203], + [22093,22102], + [22095,45924], + [22097,83384], + [22099,52160], + [22101,54650], + [22103,233740], + [22105,121097], + [22107,5252], + [22109,111860], + [22111,22721], + [22113,57999], + [22115,52334], + [22117,47168], + [22119,41207], + [22121,23788], + [22123,11604], + [22125,15625], + [22127,15313], + [23001,107702], + [23003,71870], + [23005,281674], + [23007,30768], + [23009,54418], + [23011,122151], + [23013,39736], + [23015,34457], + [23017,57833], + [23019,153923], + [23021,17535], + [23023,35293], + [23025,52228], + [23027,38786], + [23029,32856], + [23031,197131], + [24001,75087], + [24003,537656], + [24005,805029], + [24009,88737], + [24011,33066], + [24013,167134], + [24015,101108], + [24017,146551], + [24019,32618], + [24021,233385], + [24023,30097], + [24025,244826], + [24027,287085], + [24029,20197], + [24031,971777], + [24033,863420], + [24035,47798], + [24037,105151], + [24039,26470], + [24041,37782], + [24043,147430], + [24045,98733], + [24047,51454], + [24510,620961], + [25001,215888], + [25003,131219], + [25005,548285], + [25007,16535], + [25009,743159], + [25011,71372], + [25013,463490], + [25015,158080], + [25017,1503085], + [25019,10172], + [25021,670850], + [25023,494919], + [25025,722023], + [25027,798552], + [26001,10942], + [26003,9601], + [26005,111408], + [26007,29598], + [26009,23580], + [26011,15899], + [26013,8860], + [26015,59173], + [26017,107771], + [26019,17525], + [26021,156813], + [26023,45248], + [26025,136146], + [26027,52293], + [26029,25949], + [26031,26152], + [26033,38520], + [26035,30926], + [26037,75382], + [26039,14074], + [26041,37069], + [26043,26168], + [26045,107759], + [26047,32694], + [26049,425790], + [26051,25692], + [26053,16427], + [26055,86986], + [26057,42476], + [26059,46688], + [26061,36628], + [26063,33118], + [26065,280895], + [26067,63905], + [26069,25887], + [26071,11817], + [26073,70311], + [26075,160248], + [26077,250331], + [26079,17153], + [26081,602622], + [26083,2156], + [26085,11539], + [26087,88319], + [26089,21708], + [26091,99892], + [26093,180967], + [26095,6631], + [26097,11113], + [26099,840978], + [26101,24733], + [26103,67077], + [26105,28705], + [26107,42798], + [26109,24029], + [26111,83629], + [26113,14849], + [26115,152021], + [26117,63342], + [26119,9765], + [26121,172188], + [26123,48460], + [26125,1202362], + [26127,26570], + [26129,21699], + [26131,6780], + [26133,23528], + [26135,8640], + [26137,24164], + [26139,263801], + [26141,13376], + [26143,24449], + [26145,200169], + [26147,163040], + [26149,61295], + [26151,43114], + [26153,8485], + [26155,70648], + [26157,55729], + [26159,76258], + [26161,344791], + [26163,1820584], + [26165,32735], + [27001,16202], + [27003,330844], + [27005,32504], + [27007,44442], + [27009,38451], + [27011,5269], + [27013,64013], + [27015,25893], + [27017,35386], + [27019,91042], + [27021,28567], + [27023,12441], + [27025,53887], + [27027,58999], + [27029,8695], + [27031,5176], + [27033,11687], + [27035,62500], + [27037,398552], + [27039,20087], + [27041,36009], + [27043,14553], + [27045,20866], + [27047,31255], + [27049,46183], + [27051,6018], + [27053,1152425], + [27055,19027], + [27057,20428], + [27059,37816], + [27061,45058], + [27063,10266], + [27065,16239], + [27067,42239], + [27069,4552], + [27071,13311], + [27073,7259], + [27075,10866], + [27077,4045], + [27079,27703], + [27081,5896], + [27083,25857], + [27085,36651], + [27087,5413], + [27089,9439], + [27091,20840], + [27093,23300], + [27095,26097], + [27097,33198], + [27099,39163], + [27101,8725], + [27103,32727], + [27105,21378], + [27107,6852], + [27109,144248], + [27111,57303], + [27113,13930], + [27115,29750], + [27117,9596], + [27119,31600], + [27121,10995], + [27123,508640], + [27125,4089], + [27127,16059], + [27129,15730], + [27131,64142], + [27133,9687], + [27135,15629], + [27137,200226], + [27139,129928], + [27141,88499], + [27143,15226], + [27145,150642], + [27147,36576], + [27149,9726], + [27151,9783], + [27153,24895], + [27155,3558], + [27157,21676], + [27159,13843], + [27161,19136], + [27163,238136], + [27165,11211], + [27167,6576], + [27169,51461], + [27171,124700], + [27173,10438], + [28001,32297], + [28003,37057], + [28005,13131], + [28007,19564], + [28009,8729], + [28011,34145], + [28013,14962], + [28015,10597], + [28017,17392], + [28019,8547], + [28021,9604], + [28023,16732], + [28025,20634], + [28027,26151], + [28029,29449], + [28031,19568], + [28033,161252], + [28035,74934], + [28037,8118], + [28039,22578], + [28041,14400], + [28043,21906], + [28045,43929], + [28047,187105], + [28049,245285], + [28051,19198], + [28053,9375], + [28055,1406], + [28057,23401], + [28059,139668], + [28061,17062], + [28063,7726], + [28065,12487], + [28067,67761], + [28069,10456], + [28071,47351], + [28073,55658], + [28075,80261], + [28077,12929], + [28079,23805], + [28081,82910], + [28083,32317], + [28085,34869], + [28087,59779], + [28089,95203], + [28091,27088], + [28093,37144], + [28095,36989], + [28097,10925], + [28099,29676], + [28101,21720], + [28103,11545], + [28105,47671], + [28107,34707], + [28109,55834], + [28111,12250], + [28113,40404], + [28115,29957], + [28117,25276], + [28119,8223], + [28121,141617], + [28123,28264], + [28125,4916], + [28127,27503], + [28129,16491], + [28131,17786], + [28133,29450], + [28135,15378], + [28137,28886], + [28139,22232], + [28141,19593], + [28143,10778], + [28145,27134], + [28147,15443], + [28149,48773], + [28151,51137], + [28153,20747], + [28155,10253], + [28157,9878], + [28159,19198], + [28161,12678], + [28163,28065], + [29001,25607], + [29003,17291], + [29005,5685], + [29007,25529], + [29009,35597], + [29011,12402], + [29013,17049], + [29015,19056], + [29017,12363], + [29019,162642], + [29021,89201], + [29023,42794], + [29025,9424], + [29027,44332], + [29029,44002], + [29031,75674], + [29033,9295], + [29035,6265], + [29037,99478], + [29039,13982], + [29041,7831], + [29043,77422], + [29045,7139], + [29047,221939], + [29049,20743], + [29051,75990], + [29053,17601], + [29055,24696], + [29057,7883], + [29059,16777], + [29061,8433], + [29063,12892], + [29065,15657], + [29067,13684], + [29069,31953], + [29071,101492], + [29073,15222], + [29075,6738], + [29077,275174], + [29079,10261], + [29081,8957], + [29083,22272], + [29085,9627], + [29087,4912], + [29089,10144], + [29091,40400], + [29093,10630], + [29095,674158], + [29097,117404], + [29099,218733], + [29101,52595], + [29103,4131], + [29105,35571], + [29107,33381], + [29109,38634], + [29111,10211], + [29113,52566], + [29115,12761], + [29117,15195], + [29119,23083], + [29121,15566], + [29123,12226], + [29125,9176], + [29127,28781], + [29129,3785], + [29131,24748], + [29133,14358], + [29135,15607], + [29137,8840], + [29139,12236], + [29141,20565], + [29143,18956], + [29145,58114], + [29147,23370], + [29149,10881], + [29151,13878], + [29153,9723], + [29155,18296], + [29157,18971], + [29159,42201], + [29161,45156], + [29163,18516], + [29165,89322], + [29167,31137], + [29169,52274], + [29171,4979], + [29173,10167], + [29175,25414], + [29177,23494], + [29179,6696], + [29181,14100], + [29183,360485], + [29185,9805], + [29186,18145], + [29187,65359], + [29189,998954], + [29195,23370], + [29197,4431], + [29199,4843], + [29201,39191], + [29203,8441], + [29205,6373], + [29207,29968], + [29209,32202], + [29211,6714], + [29213,51675], + [29215,26008], + [29217,21159], + [29219,32513], + [29221,25195], + [29223,13521], + [29225,36202], + [29227,2171], + [29229,18815], + [29510,319294], + [30001,9246], + [30003,12865], + [30005,6491], + [30007,5612], + [30009,10078], + [30011,1160], + [30013,81327], + [30015,5813], + [30017,11699], + [30019,1751], + [30021,8966], + [30023,9298], + [30025,2890], + [30027,11586], + [30029,90928], + [30031,89513], + [30033,1206], + [30035,13399], + [30037,884], + [30039,3079], + [30041,16096], + [30043,11406], + [30045,2072], + [30047,28746], + [30049,63395], + [30051,2339], + [30053,19687], + [30055,1734], + [30057,7691], + [30059,1891], + [30061,4223], + [30063,109299], + [30065,4538], + [30067,15636], + [30069,494], + [30071,4253], + [30073,6153], + [30075,1743], + [30077,7027], + [30079,1179], + [30081,40212], + [30083,9746], + [30085,10425], + [30087,9233], + [30089,11413], + [30091,3384], + [30093,34200], + [30095,9117], + [30097,3651], + [30099,6073], + [30101,5324], + [30103,718], + [30105,7369], + [30107,2168], + [30109,1017], + [30111,147972], + [31001,31364], + [31003,6685], + [31005,460], + [31007,690], + [31009,478], + [31011,5505], + [31013,11308], + [31015,2099], + [31017,3145], + [31019,46102], + [31021,6858], + [31023,8395], + [31025,25241], + [31027,8852], + [31029,3966], + [31031,5713], + [31033,9998], + [31035,6542], + [31037,10515], + [31039,9139], + [31041,10939], + [31043,21006], + [31045,9182], + [31047,24326], + [31049,1941], + [31051,6000], + [31053,36691], + [31055,517110], + [31057,2008], + [31059,5890], + [31061,3225], + [31063,2756], + [31065,4959], + [31067,22311], + [31069,2057], + [31071,2049], + [31073,2044], + [31075,614], + [31077,2538], + [31079,58607], + [31081,9124], + [31083,3423], + [31085,967], + [31087,2908], + [31089,10435], + [31091,736], + [31093,6274], + [31095,7547], + [31097,5217], + [31099,6489], + [31101,8368], + [31103,824], + [31105,3821], + [31107,8701], + [31109,285407], + [31111,36288], + [31113,763], + [31115,632], + [31117,539], + [31119,34876], + [31121,7845], + [31123,5042], + [31125,3735], + [31127,7248], + [31129,4500], + [31131,15740], + [31133,2773], + [31135,2970], + [31137,9188], + [31139,7266], + [31141,32237], + [31143,5406], + [31145,11055], + [31147,8363], + [31149,1526], + [31151,14200], + [31153,158840], + [31155,20780], + [31157,36970], + [31159,16750], + [31161,5469], + [31163,3152], + [31165,1311], + [31167,6129], + [31169,5228], + [31171,647], + [31173,6940], + [31175,4260], + [31177,20234], + [31179,9595], + [31181,3812], + [31183,818], + [31185,13665], + [32001,24877], + [32003,1951269], + [32005,46997], + [32007,48818], + [32009,783], + [32011,1987], + [32013,16528], + [32015,5775], + [32017,5345], + [32019,51980], + [32021,4772], + [32023,43946], + [32027,6753], + [32029,4010], + [32031,421407], + [32033,10030], + [32510,55274], + [33001,60088], + [33003,47818], + [33005,77117], + [33007,33055], + [33009,89118], + [33011,400721], + [33013,146445], + [33015,295223], + [33017,123143], + [33019,43742], + [34001,274549], + [34003,905116], + [34005,448734], + [34007,513657], + [34009,97265], + [34011,156898], + [34013,783969], + [34015,288288], + [34017,634266], + [34019,128349], + [34021,366513], + [34023,809858], + [34025,630380], + [34027,492276], + [34029,576567], + [34031,501226], + [34033,66083], + [34035,323444], + [34037,149265], + [34039,536499], + [34041,108692], + [35001,662564], + [35003,3725], + [35005,65645], + [35006,27213], + [35007,13750], + [35009,48376], + [35011,2022], + [35013,209233], + [35015,53829], + [35017,29514], + [35019,4687], + [35021,695], + [35023,4894], + [35025,64727], + [35027,20497], + [35028,17950], + [35029,25095], + [35031,71492], + [35033,4881], + [35035,63797], + [35037,9041], + [35039,40246], + [35041,19846], + [35043,131561], + [35045,130044], + [35047,29393], + [35049,144170], + [35051,11988], + [35053,17866], + [35055,32937], + [35057,16383], + [35059,4549], + [35061,76569], + [36001,304204], + [36003,48946], + [36005,1385108], + [36007,200600], + [36009,80317], + [36011,80026], + [36013,134905], + [36015,88830], + [36017,50477], + [36019,82128], + [36021,63096], + [36023,49336], + [36025,47980], + [36027,297488], + [36029,919040], + [36031,39370], + [36033,51599], + [36035,55531], + [36037,60079], + [36039,49221], + [36041,4836], + [36043,64519], + [36045,116229], + [36047,2504700], + [36049,27087], + [36051,65393], + [36053,73442], + [36055,744344], + [36057,50219], + [36059,1339532], + [36061,1585873], + [36063,216469], + [36065,234878], + [36067,467026], + [36069,107931], + [36071,372813], + [36073,42883], + [36075,122109], + [36077,62259], + [36079,99710], + [36081,2230722], + [36083,159429], + [36085,468730], + [36087,311687], + [36089,111944], + [36091,219607], + [36093,154727], + [36095,32749], + [36097,18343], + [36099,35251], + [36101,98990], + [36103,1493350], + [36105,77547], + [36107,51125], + [36109,101564], + [36111,182493], + [36113,65707], + [36115,63216], + [36117,93772], + [36119,949113], + [36121,42155], + [36123,25348], + [37001,151131], + [37003,37198], + [37005,11155], + [37007,26948], + [37009,27281], + [37011,17797], + [37013,47759], + [37015,21282], + [37017,35190], + [37019,107431], + [37021,238318], + [37023,90912], + [37025,178011], + [37027,83029], + [37029,9980], + [37031,66469], + [37033,23719], + [37035,154358], + [37037,63505], + [37039,27444], + [37041,14793], + [37043,10587], + [37045,98078], + [37047,58098], + [37049,103505], + [37051,319431], + [37053,23547], + [37055,33920], + [37057,162878], + [37059,41240], + [37061,58505], + [37063,267587], + [37065,56552], + [37067,350670], + [37069,60619], + [37071,206086], + [37073,12197], + [37075,8861], + [37077,59916], + [37079,21362], + [37081,488406], + [37083,54691], + [37085,114678], + [37087,59036], + [37089,106740], + [37091,24669], + [37093,46952], + [37095,5810], + [37097,159437], + [37099,40271], + [37101,168878], + [37103,10153], + [37105,57866], + [37107,59495], + [37109,78265], + [37111,44996], + [37113,33922], + [37115,20764], + [37117,24505], + [37119,919628], + [37121,15579], + [37123,27798], + [37125,88247], + [37127,95840], + [37129,202667], + [37131,22099], + [37133,177772], + [37135,133801], + [37137,13144], + [37139,40661], + [37141,52217], + [37143,13453], + [37145,39464], + [37147,168148], + [37149,20510], + [37151,141752], + [37153,46639], + [37155,134168], + [37157,93643], + [37159,138428], + [37161,67810], + [37163,63431], + [37165,36157], + [37167,60585], + [37169,47401], + [37171,73673], + [37173,13981], + [37175,33090], + [37177,4407], + [37179,201292], + [37181,45422], + [37183,900993], + [37185,20972], + [37187,13228], + [37189,51079], + [37191,122623], + [37193,69340], + [37195,81234], + [37197,38406], + [37199,17818], + [38001,2343], + [38003,11066], + [38005,6660], + [38007,783], + [38009,6429], + [38011,3151], + [38013,1968], + [38015,81308], + [38017,149778], + [38019,3993], + [38021,5289], + [38023,2071], + [38025,3536], + [38027,2385], + [38029,3550], + [38031,3343], + [38033,1680], + [38035,66861], + [38037,2394], + [38039,2420], + [38041,2477], + [38043,2435], + [38045,4139], + [38047,1990], + [38049,5395], + [38051,2809], + [38053,6360], + [38055,8962], + [38057,8424], + [38059,27471], + [38061,7673], + [38063,3126], + [38065,1846], + [38067,7413], + [38069,4357], + [38071,11451], + [38073,5457], + [38075,2470], + [38077,16321], + [38079,13937], + [38081,3829], + [38083,1321], + [38085,4153], + [38087,727], + [38089,24199], + [38091,1975], + [38093,21100], + [38095,2246], + [38097,8121], + [38099,11119], + [38101,61675], + [38103,4207], + [38105,22398], + [39001,28550], + [39003,106331], + [39005,53139], + [39007,101497], + [39009,64757], + [39011,45949], + [39013,70400], + [39015,44846], + [39017,368130], + [39019,28836], + [39021,40097], + [39023,138333], + [39025,197363], + [39027,42040], + [39029,107841], + [39031,36901], + [39033,43784], + [39035,1280122], + [39037,52959], + [39039,39037], + [39041,174214], + [39043,77079], + [39045,146156], + [39047,29030], + [39049,1163414], + [39051,42698], + [39053,30934], + [39055,93389], + [39057,161573], + [39059,40087], + [39061,802374], + [39063,74782], + [39065,32058], + [39067,15864], + [39069,28215], + [39071,43589], + [39073,29380], + [39075,42366], + [39077,59626], + [39079,33225], + [39081,69709], + [39083,60921], + [39085,230041], + [39087,62450], + [39089,166492], + [39091,45858], + [39093,301356], + [39095,441815], + [39097,43435], + [39099,238823], + [39101,66501], + [39103,172332], + [39105,23770], + [39107,40814], + [39109,102506], + [39111,14642], + [39113,535153], + [39115,15054], + [39117,34827], + [39119,86074], + [39121,14645], + [39123,41428], + [39125,19614], + [39127,36058], + [39129,55698], + [39131,28709], + [39133,161419], + [39135,42270], + [39137,34499], + [39139,124475], + [39141,78064], + [39143,60944], + [39145,79499], + [39147,56745], + [39149,49423], + [39151,375586], + [39153,541781], + [39155,210312], + [39157,92582], + [39159,52300], + [39161,28744], + [39163,13435], + [39165,212693], + [39167,61778], + [39169,114520], + [39171,37642], + [39173,125488], + [39175,22615], + [40001,22683], + [40003,5642], + [40005,14182], + [40007,5636], + [40009,22119], + [40011,11943], + [40013,42416], + [40015,29600], + [40017,115541], + [40019,47557], + [40021,46987], + [40023,15205], + [40025,2475], + [40027,255755], + [40029,5925], + [40031,124098], + [40033,6193], + [40035,15029], + [40037,69967], + [40039,27469], + [40041,41487], + [40043,4810], + [40045,4151], + [40047,60580], + [40049,27576], + [40051,52431], + [40053,4527], + [40055,6239], + [40057,2922], + [40059,3685], + [40061,12769], + [40063,14003], + [40065,26446], + [40067,6472], + [40069,10957], + [40071,46562], + [40073,15034], + [40075,9446], + [40077,11154], + [40079,50384], + [40081,34273], + [40083,41848], + [40085,9423], + [40087,34506], + [40089,33151], + [40091,20252], + [40093,7527], + [40095,15840], + [40097,41259], + [40099,13488], + [40101,70990], + [40103,11561], + [40105,10536], + [40107,12191], + [40109,718633], + [40111,40069], + [40113,47472], + [40115,31848], + [40117,16577], + [40119,77350], + [40121,45837], + [40123,37492], + [40125,69442], + [40127,11572], + [40129,3647], + [40131,86905], + [40133,25482], + [40135,42391], + [40137,45048], + [40139,20640], + [40141,7992], + [40143,603403], + [40145,73085], + [40147,50976], + [40149,11629], + [40151,8878], + [40153,20081], + [41001,16134], + [41003,85579], + [41005,375992], + [41007,37039], + [41009,49351], + [41011,63043], + [41013,20978], + [41015,22364], + [41017,157733], + [41019,107667], + [41021,1871], + [41023,7445], + [41025,7422], + [41027,22346], + [41029,203206], + [41031,21720], + [41033,82713], + [41035,66380], + [41037,7895], + [41039,351715], + [41041,46034], + [41043,116672], + [41045,31313], + [41047,315335], + [41049,11173], + [41051,735334], + [41053,75403], + [41055,1765], + [41057,25250], + [41059,75889], + [41061,25748], + [41063,7008], + [41065,25213], + [41067,529710], + [41069,1441], + [41071,99193], + [42001,101407], + [42003,1223348], + [42005,68941], + [42007,170539], + [42009,49762], + [42011,411442], + [42013,127089], + [42015,62622], + [42017,625249], + [42019,183862], + [42021,143679], + [42023,5085], + [42025,65249], + [42027,153990], + [42029,498886], + [42031,39988], + [42033,81642], + [42035,39238], + [42037,67295], + [42039,88765], + [42041,235406], + [42043,268100], + [42045,558979], + [42047,31946], + [42049,280566], + [42051,136606], + [42053,7716], + [42055,149618], + [42057,14845], + [42059,38686], + [42061,45913], + [42063,88880], + [42065,45200], + [42067,24636], + [42069,214437], + [42071,519445], + [42073,91108], + [42075,133568], + [42077,349497], + [42079,320918], + [42081,116111], + [42083,43450], + [42085,116638], + [42087,46682], + [42089,169842], + [42091,799874], + [42093,18267], + [42095,297735], + [42097,94528], + [42099,45969], + [42101,1526006], + [42103,57369], + [42105,17457], + [42107,148289], + [42109,39702], + [42111,77742], + [42113,6428], + [42115,43356], + [42117,41981], + [42119,44947], + [42121,54984], + [42123,41815], + [42125,207820], + [42127,52822], + [42129,365169], + [42131,28276], + [42133,434972], + [44001,49875], + [44003,166158], + [44005,82888], + [44007,626667], + [44009,126979], + [45001,25417], + [45003,160099], + [45005,10419], + [45007,187126], + [45009,15987], + [45011,22621], + [45013,162233], + [45015,177843], + [45017,15175], + [45019,350209], + [45021,55342], + [45023,33140], + [45025,46734], + [45027,34971], + [45029,38892], + [45031,68681], + [45033,32062], + [45035,136555], + [45037,26985], + [45039,23956], + [45041,136885], + [45043,60158], + [45045,451225], + [45047,69661], + [45049,21090], + [45051,269291], + [45053,24777], + [45055,61697], + [45057,76652], + [45059,66537], + [45061,19220], + [45063,262391], + [45065,10233], + [45067,33062], + [45069,28933], + [45071,37508], + [45073,74273], + [45075,92501], + [45077,119224], + [45079,384504], + [45081,19875], + [45083,284307], + [45085,107456], + [45087,28961], + [45089,34423], + [45091,226073], + [46003,2710], + [46005,17398], + [46007,3431], + [46009,7070], + [46011,31965], + [46013,36531], + [46015,5255], + [46017,1912], + [46019,10110], + [46021,1466], + [46023,9129], + [46025,3691], + [46027,13864], + [46029,27227], + [46031,4050], + [46033,8216], + [46035,19504], + [46037,5710], + [46039,4364], + [46041,5301], + [46043,3002], + [46045,4071], + [46047,7094], + [46049,2364], + [46051,7356], + [46053,4271], + [46055,1937], + [46057,5903], + [46059,3431], + [46061,3331], + [46063,1255], + [46065,17022], + [46067,7343], + [46069,1420], + [46071,3031], + [46073,2071], + [46075,1006], + [46077,5148], + [46079,11200], + [46081,24097], + [46083,44828], + [46085,3755], + [46087,5618], + [46089,2459], + [46091,4656], + [46093,25434], + [46095,2048], + [46097,2389], + [46099,169468], + [46101,6486], + [46102,13586], + [46103,100948], + [46105,2982], + [46107,2329], + [46109,10149], + [46111,2355], + [46115,6415], + [46117,2966], + [46119,1373], + [46121,9612], + [46123,5644], + [46125,8347], + [46127,14399], + [46129,5438], + [46135,22438], + [46137,2801], + [47001,75129], + [47003,45058], + [47005,16489], + [47007,12876], + [47009,123010], + [47011,98963], + [47013,40716], + [47015,13801], + [47017,28522], + [47019,57424], + [47021,39105], + [47023,17131], + [47025,32213], + [47027,7861], + [47029,35662], + [47031,52796], + [47033,14586], + [47035,56053], + [47037,626681], + [47039,11757], + [47041,18723], + [47043,49666], + [47045,38335], + [47047,38413], + [47049,17959], + [47051,41052], + [47053,49683], + [47055,29485], + [47057,22657], + [47059,68831], + [47061,13703], + [47063,62544], + [47065,336463], + [47067,6819], + [47069,27253], + [47071,26026], + [47073,56833], + [47075,18787], + [47077,27769], + [47079,32330], + [47081,24690], + [47083,8426], + [47085,18538], + [47087,11638], + [47089,51407], + [47091,18244], + [47093,432226], + [47095,7832], + [47097,27815], + [47099,41869], + [47101,12161], + [47103,33361], + [47105,48556], + [47107,52266], + [47109,26075], + [47111,22248], + [47113,98294], + [47115,28237], + [47117,30617], + [47119,80956], + [47121,11753], + [47123,44519], + [47125,172331], + [47127,6362], + [47129,21987], + [47131,31807], + [47133,22083], + [47135,7915], + [47137,5077], + [47139,16825], + [47141,72321], + [47143,31809], + [47145,54181], + [47147,66283], + [47149,262604], + [47151,22228], + [47153,14112], + [47155,89889], + [47157,927644], + [47159,19166], + [47161,13324], + [47163,156823], + [47165,160645], + [47167,61081], + [47169,7870], + [47171,18313], + [47173,19109], + [47175,5548], + [47177,39839], + [47179,122979], + [47181,17021], + [47183,35021], + [47185,25841], + [47187,183182], + [47189,113993], + [48001,58458], + [48003,14786], + [48005,86771], + [48007,23158], + [48009,9054], + [48011,1901], + [48013,44911], + [48015,28417], + [48017,7165], + [48019,20485], + [48021,74171], + [48023,3726], + [48025,31861], + [48027,310235], + [48029,1714773], + [48031,10497], + [48033,641], + [48035,18212], + [48037,92565], + [48039,313166], + [48041,194851], + [48043,9232], + [48045,1637], + [48047,7223], + [48049,38106], + [48051,17187], + [48053,42750], + [48055,38066], + [48057,21381], + [48059,13544], + [48061,406220], + [48063,12401], + [48065,6182], + [48067,30464], + [48069,8062], + [48071,35096], + [48073,50845], + [48075,7041], + [48077,10752], + [48079,3127], + [48081,3320], + [48083,8895], + [48085,782341], + [48087,3057], + [48089,20874], + [48091,108472], + [48093,13974], + [48095,4087], + [48097,38437], + [48099,75388], + [48101,1505], + [48103,4375], + [48105,3719], + [48107,6059], + [48109,2398], + [48111,6703], + [48113,2368139], + [48115,13833], + [48117,19372], + [48119,5231], + [48121,662614], + [48123,20097], + [48125,2444], + [48127,9996], + [48129,3677], + [48131,11782], + [48133,18583], + [48135,137130], + [48137,2002], + [48139,149610], + [48141,800647], + [48143,37890], + [48145,17866], + [48147,33915], + [48149,24554], + [48151,3974], + [48153,6446], + [48155,1336], + [48157,585375], + [48159,10605], + [48161,19816], + [48163,17217], + [48165,17526], + [48167,291309], + [48169,6461], + [48171,24837], + [48173,1226], + [48175,7210], + [48177,19807], + [48179,22535], + [48181,120877], + [48183,121730], + [48185,26604], + [48187,131533], + [48189,36273], + [48191,3353], + [48193,8517], + [48195,5613], + [48197,4139], + [48199,54635], + [48201,4092459], + [48203,65631], + [48205,6062], + [48207,5899], + [48209,157107], + [48211,3807], + [48213,78532], + [48215,774769], + [48217,35089], + [48219,22935], + [48221,51182], + [48223,35161], + [48225,23732], + [48227,35012], + [48229,3476], + [48231,86129], + [48233,22150], + [48235,1599], + [48237,9044], + [48239,14075], + [48241,35710], + [48243,2342], + [48245,252273], + [48247,5300], + [48249,40838], + [48251,150934], + [48253,20202], + [48255,14824], + [48257,103350], + [48259,33410], + [48261,416], + [48263,808], + [48265,49625], + [48267,4607], + [48269,286], + [48271,3598], + [48273,32061], + [48275,3719], + [48277,49793], + [48279,13977], + [48281,19677], + [48283,6886], + [48285,19263], + [48287,16612], + [48289,16801], + [48291,75643], + [48293,23384], + [48295,3302], + [48297,11531], + [48299,19301], + [48301,82], + [48303,278831], + [48305,5915], + [48307,8283], + [48309,234906], + [48311,707], + [48313,13664], + [48315,10546], + [48317,4799], + [48319,4012], + [48321,36702], + [48323,54258], + [48325,46006], + [48327,2242], + [48329,136872], + [48331,24757], + [48333,4936], + [48335,9403], + [48337,19719], + [48339,455746], + [48341,21904], + [48343,12934], + [48345,1210], + [48347,64524], + [48349,47735], + [48351,14445], + [48353,15216], + [48355,340223], + [48357,10223], + [48359,2052], + [48361,81837], + [48363,28111], + [48365,23796], + [48367,116927], + [48369,10269], + [48371,15507], + [48373,45413], + [48375,121073], + [48377,7818], + [48379,10914], + [48381,120725], + [48383,3367], + [48385,3309], + [48387,12860], + [48389,13783], + [48391,7383], + [48393,929], + [48395,16622], + [48397,78337], + [48399,10501], + [48401,53330], + [48403,10834], + [48405,8865], + [48407,26384], + [48409,64804], + [48411,6131], + [48413,3461], + [48415,16921], + [48417,3378], + [48419,25448], + [48421,3034], + [48423,209714], + [48425,8490], + [48427,60968], + [48429,9630], + [48431,1143], + [48433,1490], + [48435,4128], + [48437,7854], + [48439,1809034], + [48441,131506], + [48443,984], + [48445,12651], + [48447,1641], + [48449,32334], + [48451,110224], + [48453,1024266], + [48455,14585], + [48457,21766], + [48459,39309], + [48461,3355], + [48463,26405], + [48465,48879], + [48467,52579], + [48469,86793], + [48471,67861], + [48473,43205], + [48475,10658], + [48477,33718], + [48479,250304], + [48481,41280], + [48483,5410], + [48485,131500], + [48487,13535], + [48489,22134], + [48491,422679], + [48493,42918], + [48495,7110], + [48497,59127], + [48499,41964], + [48501,7879], + [48503,18550], + [48505,14018], + [48507,11677], + [49001,6629], + [49003,49975], + [49005,112656], + [49007,21403], + [49009,1059], + [49011,306479], + [49013,18607], + [49015,10976], + [49017,5172], + [49019,9225], + [49021,46163], + [49023,10246], + [49025,7125], + [49027,12503], + [49029,9469], + [49031,1556], + [49033,2264], + [49035,1029655], + [49037,14746], + [49039,27822], + [49041,20802], + [49043,36324], + [49045,58218], + [49047,32588], + [49049,516564], + [49051,23530], + [49053,138115], + [49055,2778], + [49057,231236], + [50001,36821], + [50003,37125], + [50005,31227], + [50007,156545], + [50009,6306], + [50011,47746], + [50013,6970], + [50015,24475], + [50017,28936], + [50019,27231], + [50021,61642], + [50023,59534], + [50025,44513], + [50027,56670], + [51001,33164], + [51003,98970], + [51005,16250], + [51007,12690], + [51009,32353], + [51011,14973], + [51013,207627], + [51015,73750], + [51017,4731], + [51019,68676], + [51021,6824], + [51023,33148], + [51025,17434], + [51027,24098], + [51029,17146], + [51031,54842], + [51033,28545], + [51035,30042], + [51036,7256], + [51037,12586], + [51041,316236], + [51043,14034], + [51045,5190], + [51047,46689], + [51049,10052], + [51051,15903], + [51053,28001], + [51057,11151], + [51059,1081726], + [51061,65203], + [51063,15279], + [51065,25691], + [51067,56159], + [51069,78305], + [51071,17286], + [51073,36858], + [51075,21717], + [51077,15533], + [51079,18403], + [51081,12243], + [51083,36241], + [51085,99863], + [51087,306935], + [51089,54151], + [51091,2321], + [51093,35270], + [51095,67009], + [51097,6945], + [51099,23584], + [51101,15935], + [51103,11391], + [51105,25587], + [51107,312311], + [51109,33153], + [51111,12914], + [51113,13308], + [51115,8978], + [51117,32727], + [51119,10959], + [51121,94392], + [51125,15020], + [51127,18429], + [51131,12389], + [51133,12330], + [51135,15853], + [51137,33481], + [51139,24042], + [51141,18490], + [51143,63506], + [51145,28046], + [51147,23368], + [51149,35725], + [51153,402002], + [51155,34872], + [51157,7373], + [51159,9254], + [51161,92376], + [51163,22307], + [51165,76314], + [51167,28897], + [51169,23177], + [51171,41993], + [51173,32208], + [51175,18570], + [51177,122397], + [51179,128961], + [51181,7058], + [51183,12087], + [51185,45078], + [51187,37575], + [51191,54876], + [51193,17454], + [51195,41452], + [51197,29235], + [51199,65464], + [51510,139966], + [51520,17835], + [51530,6650], + [51540,43475], + [51550,222209], + [51570,17411], + [51580,5961], + [51590,43055], + [51595,5927], + [51600,22565], + [51610,12332], + [51620,8582], + [51630,24286], + [51640,7042], + [51650,137436], + [51660,48914], + [51670,22591], + [51678,7042], + [51680,75568], + [51683,37821], + [51685,14273], + [51690,13821], + [51700,180719], + [51710,242803], + [51720,3958], + [51730,32420], + [51735,12150], + [51740,95535], + [51750,16408], + [51760,204214], + [51770,97032], + [51775,24802], + [51790,23746], + [51800,84585], + [51810,437994], + [51820,21006], + [51830,14068], + [51840,26203], + [53001,18728], + [53003,21623], + [53005,175177], + [53007,72453], + [53009,71404], + [53011,425363], + [53013,4078], + [53015,102410], + [53017,38431], + [53019,7551], + [53021,78163], + [53023,2266], + [53025,89120], + [53027,72797], + [53029,78506], + [53031,29872], + [53033,1931249], + [53035,251133], + [53037,40915], + [53039,20318], + [53041,75455], + [53043,10570], + [53045,60699], + [53047,41120], + [53049,20920], + [53051,13001], + [53053,795225], + [53055,15769], + [53057,116901], + [53059,11066], + [53061,713335], + [53063,471221], + [53065,43531], + [53067,252264], + [53069,3978], + [53071,58781], + [53073,201140], + [53075,44776], + [53077,243231], + [54001,16589], + [54003,104169], + [54005,24629], + [54007,14523], + [54009,24069], + [54011,96319], + [54013,7627], + [54015,9386], + [54017,8202], + [54019,46039], + [54021,8693], + [54023,11937], + [54025,35480], + [54027,23964], + [54029,30676], + [54031,14025], + [54033,69099], + [54035,29211], + [54037,53498], + [54039,193063], + [54041,16372], + [54043,21720], + [54045,36743], + [54047,22113], + [54049,56418], + [54051,33107], + [54053,27324], + [54055,62264], + [54057,28212], + [54059,26839], + [54061,96189], + [54063,13502], + [54065,17541], + [54067,26233], + [54069,44443], + [54071,7695], + [54073,7605], + [54075,8719], + [54077,33520], + [54079,55486], + [54081,78859], + [54083,29405], + [54085,10449], + [54087,14926], + [54089,13927], + [54091,16895], + [54093,7141], + [54095,9208], + [54097,24254], + [54099,42481], + [54101,9154], + [54103,16583], + [54105,5717], + [54107,86956], + [54109,23796], + [55001,20875], + [55003,16157], + [55005,45870], + [55007,15014], + [55009,248007], + [55011,13587], + [55013,15457], + [55015,48971], + [55017,62415], + [55019,34690], + [55021,56833], + [55023,16644], + [55025,488073], + [55027,88759], + [55029,27785], + [55031,44159], + [55033,43857], + [55035,98736], + [55037,4423], + [55039,101633], + [55041,9304], + [55043,51208], + [55045,36842], + [55047,19051], + [55049,23687], + [55051,5916], + [55053,20449], + [55055,83686], + [55057,26664], + [55059,166426], + [55061,20574], + [55063,114638], + [55065,16836], + [55067,19977], + [55069,28743], + [55071,81442], + [55073,134063], + [55075,41749], + [55077,15404], + [55078,4232], + [55079,947735], + [55081,44673], + [55083,37660], + [55085,35998], + [55087,176695], + [55089,86395], + [55091,7469], + [55093,41019], + [55095,44205], + [55097,70019], + [55099,14159], + [55101,195408], + [55103,18021], + [55105,160331], + [55107,14755], + [55109,84345], + [55111,61976], + [55113,16557], + [55115,41949], + [55117,115507], + [55119,20689], + [55121,28816], + [55123,29773], + [55125,21430], + [55127,102228], + [55129,15911], + [55131,131887], + [55133,389891], + [55135,52410], + [55137,24496], + [55139,166994], + [55141,74749], + [56001,36299], + [56003,11668], + [56005,46133], + [56007,15885], + [56009,13833], + [56011,7083], + [56013,40123], + [56015,13249], + [56017,4812], + [56019,8569], + [56021,91738], + [56023,18106], + [56025,75450], + [56027,2484], + [56029,28205], + [56031,8667], + [56033,29116], + [56035,10247], + [56037,43806], + [56039,21294], + [56041,21118], + [56043,8533], + [56045,7208] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2011.json b/data/regional/united-states/demographics/population/us-population-2011.json new file mode 100644 index 0000000..8d7fed6 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2011.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2011.", + "units" : "people", + "year" : "2011", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2011"], + [1001,55199], + [1003,186534], + [1005,27351], + [1007,22745], + [1009,57562], + [1011,10675], + [1013,20880], + [1015,117785], + [1017,34031], + [1019,25993], + [1021,43688], + [1023,13607], + [1025,25582], + [1027,13688], + [1029,14928], + [1031,50434], + [1033,54534], + [1035,13187], + [1037,11484], + [1039,38017], + [1041,13898], + [1043,80411], + [1045,50107], + [1047,43256], + [1049,71353], + [1051,80006], + [1053,38202], + [1055,104354], + [1057,17050], + [1059,31767], + [1061,26760], + [1063,8907], + [1065,15358], + [1067,17376], + [1069,102468], + [1071,53212], + [1073,657789], + [1075,14287], + [1077,92603], + [1079,34047], + [1081,144117], + [1083,85530], + [1085,11130], + [1087,21284], + [1089,339519], + [1091,20649], + [1093,30650], + [1095,93890], + [1097,413232], + [1099,22800], + [1101,229162], + [1103,120007], + [1105,10472], + [1107,19354], + [1109,32967], + [1111,22740], + [1113,54833], + [1115,84211], + [1117,197885], + [1119,13491], + [1121,81792], + [1123,41394], + [1125,196699], + [1127,66577], + [1129,17355], + [1131,11440], + [1133,24354], + [2013,3262], + [2016,5587], + [2020,296291], + [2050,17416], + [2060,1030], + [2068,1870], + [2070,4948], + [2090,98136], + [2100,2574], + [2105,"NA"], + [2110,32162], + [2122,56304], + [2130,13644], + [2150,13820], + [2158,7649], + [2164,1648], + [2170,91721], + [2180,9775], + [2185,9549], + [2188,7705], + [2195,3253], + [2198,6376], + [2220,8888], + [2230,"NA"], + [2240,7149], + [2261,9742], + [2275,"NA"], + [2282,656], + [2290,5631], + [4001,72179], + [4003,132952], + [4005,134181], + [4007,53422], + [4009,37124], + [4011,8569], + [4012,20582], + [4013,3869626], + [4015,202733], + [4017,107518], + [4019,987297], + [4021,378226], + [4023,47615], + [4025,210883], + [4027,202581], + [5001,18869], + [5003,21673], + [5005,41341], + [5007,228827], + [5009,37063], + [5011,11425], + [5013,5243], + [5015,27448], + [5017,11693], + [5019,22918], + [5021,15872], + [5023,25890], + [5025,8672], + [5027,24682], + [5029,21115], + [5031,98310], + [5033,61799], + [5035,50504], + [5037,17796], + [5039,8047], + [5041,12727], + [5043,18725], + [5045,116223], + [5047,17993], + [5049,12238], + [5051,96834], + [5053,17932], + [5055,42751], + [5057,22490], + [5059,33129], + [5061,13821], + [5063,36846], + [5065,13567], + [5067,17884], + [5069,76008], + [5071,25641], + [5073,7533], + [5075,17276], + [5077,10291], + [5079,14336], + [5081,12944], + [5083,22229], + [5085,69458], + [5087,15656], + [5089,16673], + [5091,43751], + [5093,46011], + [5095,8098], + [5097,9397], + [5099,9005], + [5101,8262], + [5103,25728], + [5105,10377], + [5107,21405], + [5109,11232], + [5111,24440], + [5113,20554], + [5115,62654], + [5117,8600], + [5119,386679], + [5121,17970], + [5123,27980], + [5125,109509], + [5127,11235], + [5129,8070], + [5131,126926], + [5133,17175], + [5135,17269], + [5137,12497], + [5139,41387], + [5141,17198], + [5143,207734], + [5145,78005], + [5147,7176], + [5149,21924], + [6001,1532215], + [6003,1093], + [6005,37539], + [6007,220003], + [6009,45163], + [6011,21366], + [6013,1066182], + [6015,28447], + [6017,180975], + [6019,940360], + [6021,28160], + [6023,135239], + [6025,176157], + [6027,18401], + [6029,848767], + [6031,152030], + [6033,64273], + [6035,34244], + [6037,9885998], + [6039,151876], + [6041,255505], + [6043,18174], + [6045,87367], + [6047,259607], + [6049,9515], + [6051,14329], + [6053,421162], + [6055,137905], + [6057,98714], + [6059,3053465], + [6061,356445], + [6063,19716], + [6065,2235890], + [6067,1434506], + [6069,56034], + [6071,2062381], + [6073,3139767], + [6075,816294], + [6077,695071], + [6079,271150], + [6081,729022], + [6083,426058], + [6085,1813812], + [6087,265103], + [6089,177595], + [6091,3100], + [6093,44614], + [6095,416652], + [6097,487822], + [6099,518034], + [6101,94560], + [6103,63347], + [6105,13677], + [6107,447358], + [6109,54832], + [6111,830990], + [6113,202082], + [6115,72511], + [8001,451443], + [8003,16117], + [8005,584955], + [8007,12014], + [8009,3778], + [8011,6328], + [8013,300518], + [8014,57445], + [8015,18019], + [8017,1853], + [8019,9002], + [8021,8279], + [8023,3636], + [8025,5859], + [8027,4228], + [8029,30372], + [8031,619356], + [8033,2044], + [8035,292370], + [8037,51892], + [8039,23168], + [8041,636596], + [8043,47315], + [8045,55964], + [8047,5418], + [8049,14544], + [8051,15444], + [8053,825], + [8055,6519], + [8057,1358], + [8059,540429], + [8061,1431], + [8063,8156], + [8065,7335], + [8067,51770], + [8069,305027], + [8071,15033], + [8073,5417], + [8075,22084], + [8077,147276], + [8079,711], + [8081,13412], + [8083,25463], + [8085,40925], + [8087,28396], + [8089,18860], + [8091,4413], + [8093,16043], + [8095,4374], + [8097,17146], + [8099,12516], + [8101,160171], + [8103,6771], + [8105,11905], + [8107,23246], + [8109,6177], + [8111,690], + [8113,7469], + [8115,2366], + [8117,27988], + [8119,23363], + [8121,4763], + [8123,258528], + [8125,10098], + [9001,929398], + [9003,897778], + [9005,189076], + [9007,166265], + [9009,864725], + [9011,273226], + [9013,153063], + [9015,118396], + [10001,165149], + [10003,542282], + [10005,200453], + [11001,620336], + [12001,249832], + [12003,27042], + [12005,169521], + [12007,28432], + [12009,544439], + [12011,1787691], + [12013,14714], + [12015,159881], + [12017,139765], + [12019,192290], + [12021,327667], + [12023,67309], + [12027,34794], + [12029,16403], + [12031,872405], + [12033,299366], + [12035,97485], + [12037,11469], + [12039,47355], + [12041,16993], + [12043,12833], + [12045,15760], + [12047,14591], + [12049,27657], + [12051,38941], + [12053,172836], + [12055,98451], + [12057,1271239], + [12059,19839], + [12061,139086], + [12063,49184], + [12065,14519], + [12067,8800], + [12069,300511], + [12071,631077], + [12073,278349], + [12075,40154], + [12077,8261], + [12079,19126], + [12081,327543], + [12083,332307], + [12085,147876], + [12086,2571532], + [12087,73981], + [12089,74146], + [12091,183080], + [12093,39854], + [12095,1170765], + [12097,278733], + [12099,1337065], + [12101,466502], + [12103,918565], + [12105,609924], + [12107,73635], + [12109,196079], + [12111,280487], + [12113,155727], + [12115,382263], + [12117,426415], + [12119,97976], + [12121,43354], + [12123,22652], + [12125,15296], + [12127,494479], + [12129,30971], + [12131,55588], + [12133,24507], + [13001,18469], + [13003,8373], + [13005,11162], + [13007,3316], + [13009,45147], + [13011,18267], + [13013,69894], + [13015,100213], + [13017,17563], + [13019,19381], + [13021,156216], + [13023,13080], + [13025,18540], + [13027,15994], + [13029,31271], + [13031,72687], + [13033,23502], + [13035,23575], + [13037,6625], + [13039,50308], + [13043,11208], + [13045,110758], + [13047,64760], + [13049,13462], + [13051,271870], + [13053,11263], + [13055,25677], + [13057,217820], + [13059,118433], + [13061,3159], + [13063,262360], + [13065,6733], + [13067,697433], + [13069,43032], + [13071,45852], + [13073,128914], + [13075,17045], + [13077,129393], + [13079,12615], + [13081,23761], + [13083,16589], + [13085,22293], + [13087,27657], + [13089,699684], + [13091,21611], + [13093,14600], + [13095,95062], + [13097,133223], + [13099,10784], + [13101,4087], + [13103,52698], + [13105,19823], + [13107,22491], + [13109,10986], + [13111,23637], + [13113,107212], + [13115,96221], + [13117,182034], + [13119,21971], + [13121,948809], + [13123,28328], + [13125,3099], + [13127,80182], + [13129,55497], + [13131,25121], + [13133,16080], + [13135,824166], + [13137,43066], + [13139,182467], + [13141,9396], + [13143,28466], + [13145,32313], + [13147,25431], + [13149,11725], + [13151,207080], + [13153,143971], + [13155,9697], + [13157,60976], + [13159,13838], + [13161,15158], + [13163,16779], + [13165,8127], + [13167,10009], + [13169,28734], + [13171,18159], + [13173,10477], + [13175,47844], + [13177,28581], + [13179,65089], + [13181,7871], + [13183,15208], + [13185,111500], + [13187,30505], + [13189,21613], + [13191,14223], + [13193,14462], + [13195,28125], + [13197,8712], + [13199,21607], + [13201,6076], + [13205,23401], + [13207,26342], + [13209,9034], + [13211,17903], + [13213,39410], + [13215,195332], + [13217,100476], + [13219,33248], + [13221,14702], + [13223,143594], + [13225,27689], + [13227,29412], + [13229,18779], + [13231,17780], + [13233,41305], + [13235,11842], + [13237,21276], + [13239,2457], + [13241,16270], + [13243,7564], + [13245,200378], + [13247,85503], + [13249,5042], + [13251,14404], + [13253,8765], + [13255,64021], + [13257,25774], + [13259,6072], + [13261,32082], + [13263,6823], + [13265,1706], + [13267,25448], + [13269,8435], + [13271,16266], + [13273,9391], + [13275,44603], + [13277,41199], + [13279,27215], + [13281,10578], + [13283,6823], + [13285,67637], + [13287,8937], + [13289,8821], + [13291,21252], + [13293,26928], + [13295,68814], + [13297,84585], + [13299,36296], + [13301,5677], + [13303,20973], + [13305,30300], + [13307,2765], + [13309,8068], + [13311,27407], + [13313,103056], + [13315,9209], + [13317,10230], + [13319,9410], + [13321,21525], + [15001,187049], + [15003,966514], + [15005,90], + [15007,67832], + [15009,156838], + [16001,400995], + [16003,3981], + [16005,83599], + [16007,5953], + [16009,9170], + [16011,45891], + [16013,21068], + [16015,6985], + [16017,40768], + [16019,105786], + [16021,10818], + [16023,2833], + [16025,1115], + [16027,191315], + [16029,6842], + [16031,23099], + [16033,954], + [16035,8606], + [16037,4325], + [16039,26195], + [16041,12809], + [16043,13109], + [16045,16679], + [16047,15335], + [16049,16435], + [16051,26307], + [16053,22538], + [16055,140881], + [16057,37806], + [16059,7983], + [16061,3804], + [16063,5131], + [16065,37869], + [16067,20210], + [16069,39420], + [16071,4228], + [16073,11375], + [16075,22547], + [16077,7777], + [16079,12664], + [16081,10164], + [16083,78041], + [16085,9635], + [16087,10135], + [17001,67201], + [17003,7991], + [17005,17719], + [17007,54130], + [17009,6878], + [17011,34616], + [17013,5048], + [17015,15220], + [17017,13621], + [17019,202835], + [17021,34703], + [17023,16200], + [17025,13720], + [17027,38021], + [17029,53604], + [17031,5217049], + [17033,19770], + [17035,11078], + [17037,104410], + [17039,16549], + [17041,19869], + [17043,924421], + [17045,18386], + [17047,6667], + [17049,34258], + [17051,22371], + [17053,13877], + [17055,40018], + [17057,36906], + [17059,5490], + [17061,13854], + [17063,50088], + [17065,8423], + [17067,18996], + [17069,4290], + [17071,7215], + [17073,50281], + [17075,29495], + [17077,60330], + [17079,9749], + [17081,38742], + [17083,22842], + [17085,22628], + [17087,12855], + [17089,519119], + [17091,113477], + [17093,116796], + [17095,52676], + [17097,701519], + [17099,113505], + [17101,16898], + [17103,35594], + [17105,38799], + [17107,30252], + [17109,32503], + [17111,308387], + [17113,170776], + [17115,110649], + [17117,47733], + [17119,268595], + [17121,39138], + [17123,12479], + [17125,14467], + [17127,15277], + [17129,12696], + [17131,16315], + [17133,33218], + [17135,29856], + [17137,35485], + [17139,14848], + [17141,53065], + [17143,186667], + [17145,22260], + [17147,16679], + [17149,16346], + [17151,4494], + [17153,5985], + [17155,5975], + [17157,33413], + [17159,16188], + [17161,147392], + [17163,269976], + [17165,24902], + [17167,198970], + [17169,7462], + [17171,5228], + [17173,22282], + [17175,5844], + [17177,47316], + [17179,135831], + [17181,17691], + [17183,81399], + [17185,11789], + [17187,17833], + [17189,14574], + [17191,16656], + [17193,14587], + [17195,58272], + [17197,680625], + [17199,66711], + [17201,293571], + [17203,38844], + [18001,34372], + [18003,358787], + [18005,77579], + [18007,8858], + [18009,12653], + [18011,57884], + [18013,15074], + [18015,20044], + [18017,38924], + [18019,111517], + [18021,26832], + [18023,33052], + [18025,10622], + [18027,31943], + [18029,49982], + [18031,25880], + [18033,42450], + [18035,117844], + [18037,42150], + [18039,198383], + [18041,24150], + [18043,74975], + [18045,17158], + [18047,23031], + [18049,20730], + [18051,33517], + [18053,69639], + [18055,33018], + [18057,283273], + [18059,70341], + [18061,39175], + [18063,148531], + [18065,49215], + [18067,82775], + [18069,37161], + [18071,42938], + [18073,33419], + [18075,21332], + [18077,32283], + [18079,28151], + [18081,141720], + [18083,38463], + [18085,77372], + [18087,37459], + [18089,494884], + [18091,111309], + [18093,46130], + [18095,130982], + [18097,911195], + [18099,46928], + [18101,10332], + [18103,36649], + [18105,140102], + [18107,38335], + [18109,69232], + [18111,14088], + [18113,47309], + [18115,6061], + [18117,19934], + [18119,21501], + [18121,17089], + [18123,19420], + [18125,12656], + [18127,165527], + [18129,25690], + [18131,13233], + [18133,37900], + [18135,26021], + [18137,28634], + [18139,17283], + [18141,266667], + [18143,23898], + [18145,44297], + [18147,20968], + [18149,23165], + [18151,34099], + [18153,21221], + [18155,10610], + [18157,175553], + [18159,15811], + [18161,7495], + [18163,180434], + [18165,16068], + [18167,108275], + [18169,32569], + [18171,8464], + [18173,60180], + [18175,28205], + [18177,68631], + [18179,27726], + [18181,24588], + [18183,33354], + [19001,7545], + [19003,3994], + [19005,14208], + [19007,12846], + [19009,6003], + [19011,26079], + [19013,131470], + [19015,26286], + [19017,24376], + [19019,20911], + [19021,20282], + [19023,14969], + [19025,10062], + [19027,20853], + [19029,13764], + [19031,18402], + [19033,43960], + [19035,12028], + [19037,12400], + [19039,9317], + [19041,16595], + [19043,18018], + [19045,49086], + [19047,17224], + [19049,69605], + [19051,8770], + [19053,8245], + [19055,17624], + [19057,40057], + [19059,16857], + [19061,94599], + [19063,10063], + [19065,20959], + [19067,16102], + [19069,10691], + [19071,7374], + [19073,9330], + [19075,12479], + [19077,10857], + [19079,15462], + [19081,11294], + [19083,17372], + [19085,14764], + [19087,20233], + [19089,9543], + [19091,9779], + [19093,7044], + [19095,16319], + [19097,19725], + [19099,36613], + [19101,17014], + [19103,133674], + [19105,20734], + [19107,10397], + [19109,15392], + [19111,35554], + [19113,213983], + [19115,11374], + [19117,8869], + [19119,11691], + [19121,15734], + [19123,22490], + [19125,33262], + [19127,40953], + [19129,15028], + [19131,10702], + [19133,9235], + [19135,8059], + [19137,10630], + [19139,42771], + [19141,14218], + [19143,6313], + [19145,15883], + [19147,9349], + [19149,24808], + [19151,7202], + [19153,438137], + [19155,93471], + [19157,18874], + [19159,5049], + [19161,10222], + [19163,166521], + [19165,11986], + [19167,33984], + [19169,90797], + [19171,17610], + [19173,6303], + [19175,12549], + [19177,7514], + [19179,35463], + [19181,46628], + [19183,21819], + [19185,6334], + [19187,37728], + [19189,10683], + [19191,21043], + [19193,102622], + [19195,7566], + [19197,13030], + [20001,13339], + [20003,8059], + [20005,16754], + [20007,4926], + [20009,27703], + [20011,14941], + [20013,9972], + [20015,65826], + [20017,2768], + [20019,3609], + [20021,21352], + [20023,2693], + [20025,2120], + [20027,8526], + [20029,9417], + [20031,8486], + [20033,1880], + [20035,36235], + [20037,39184], + [20039,2926], + [20041,19679], + [20043,7957], + [20045,112381], + [20047,3023], + [20049,2786], + [20051,28752], + [20053,6458], + [20055,37115], + [20057,34433], + [20059,25846], + [20061,35275], + [20063,2730], + [20065,2639], + [20067,7894], + [20069,6087], + [20071,1255], + [20073,6609], + [20075,2645], + [20077,5938], + [20079,34700], + [20081,4233], + [20083,1957], + [20085,13424], + [20087,18956], + [20089,3093], + [20091,552760], + [20093,3965], + [20095,7889], + [20097,2558], + [20099,21380], + [20101,1744], + [20103,77053], + [20105,3232], + [20107,9612], + [20109,2761], + [20111,33632], + [20113,29114], + [20115,12543], + [20117,9980], + [20119,4519], + [20121,32735], + [20123,6283], + [20125,34778], + [20127,5866], + [20129,3178], + [20131,10087], + [20133,16445], + [20135,3117], + [20137,5656], + [20139,16340], + [20141,3828], + [20143,6063], + [20145,6978], + [20147,5541], + [20149,22028], + [20151,9644], + [20153,2507], + [20155,64425], + [20157,4891], + [20159,10099], + [20161,73350], + [20163,5198], + [20165,3211], + [20167,6989], + [20169,55823], + [20171,4923], + [20173,500918], + [20175,23163], + [20177,178897], + [20179,2501], + [20181,6054], + [20183,3791], + [20185,4382], + [20187,2212], + [20189,5637], + [20191,23785], + [20193,7939], + [20195,2953], + [20197,7031], + [20199,1525], + [20201,5819], + [20203,2257], + [20205,9242], + [20207,3322], + [20209,158022], + [21001,18984], + [21003,20181], + [21005,21522], + [21007,8270], + [21009,42324], + [21011,11714], + [21013,28656], + [21015,121510], + [21017,19983], + [21019,49417], + [21021,28760], + [21023,8505], + [21025,13785], + [21027,20263], + [21029,75209], + [21031,12710], + [21033,13020], + [21035,37655], + [21037,91063], + [21039,5041], + [21041,10971], + [21043,27624], + [21045,15905], + [21047,73467], + [21049,35438], + [21051,21596], + [21053,10157], + [21055,9248], + [21057,6876], + [21059,97185], + [21061,12213], + [21063,7783], + [21065,14648], + [21067,301368], + [21069,14495], + [21071,39752], + [21073,49294], + [21075,6745], + [21077,8608], + [21079,16875], + [21081,24758], + [21083,37568], + [21085,25752], + [21087,11192], + [21089,36829], + [21091,8589], + [21093,107479], + [21095,29120], + [21097,18686], + [21099,18293], + [21101,46327], + [21103,15370], + [21105,4781], + [21107,46844], + [21109,13388], + [21111,746337], + [21113,48895], + [21115,23418], + [21117,160408], + [21119,16291], + [21121,31877], + [21123,14189], + [21125,59327], + [21127,15942], + [21129,7710], + [21131,11237], + [21133,24383], + [21135,13793], + [21137,24737], + [21139,9503], + [21141,26829], + [21143,8435], + [21145,65829], + [21147,18287], + [21149,9502], + [21151,84770], + [21153,13223], + [21155,19984], + [21157,31255], + [21159,12847], + [21161,17548], + [21163,29651], + [21165,6414], + [21167,21279], + [21169,10052], + [21171,10913], + [21173,26752], + [21175,13721], + [21177,31527], + [21179,44060], + [21181,7086], + [21183,23973], + [21185,60736], + [21187,10816], + [21189,4808], + [21191,14658], + [21193,28713], + [21195,64906], + [21197,12620], + [21199,63499], + [21201,2290], + [21203,17109], + [21205,23559], + [21207,17684], + [21209,47965], + [21211,42869], + [21213,17302], + [21215,17382], + [21217,24993], + [21219,12410], + [21221,14221], + [21223,8817], + [21225,15262], + [21227,115809], + [21229,11742], + [21231,20889], + [21233,13521], + [21235,35861], + [21237,7363], + [21239,24921], + [22001,61826], + [22003,25741], + [22005,109996], + [22007,23176], + [22009,41795], + [22011,36090], + [22013,14261], + [22015,120023], + [22017,256997], + [22019,193813], + [22021,10128], + [22023,6662], + [22025,10284], + [22027,16936], + [22029,20835], + [22031,26774], + [22033,441158], + [22035,7657], + [22037,20086], + [22039,33822], + [22041,20768], + [22043,22370], + [22045,73504], + [22047,33353], + [22049,16350], + [22051,434034], + [22053,31590], + [22055,224375], + [22057,97011], + [22059,14930], + [22061,47053], + [22063,130160], + [22065,11975], + [22067,27476], + [22069,39371], + [22071,360661], + [22073,154594], + [22075,23588], + [22077,22797], + [22079,132004], + [22081,9082], + [22083,20889], + [22085,24425], + [22087,39505], + [22089,52376], + [22091,10954], + [22093,21784], + [22095,45052], + [22097,83430], + [22099,52778], + [22101,54135], + [22103,236780], + [22105,122629], + [22107,5092], + [22109,111593], + [22111,22754], + [22113,58210], + [22115,52243], + [22117,47155], + [22119,41233], + [22121,24097], + [22123,11516], + [22125,15504], + [22127,15148], + [23001,107395], + [23003,71373], + [23005,282599], + [23007,30731], + [23009,54523], + [23011,121765], + [23013,39664], + [23015,34274], + [23017,57755], + [23019,153713], + [23021,17360], + [23023,35123], + [23025,51925], + [23027,38846], + [23029,32715], + [23031,198207], + [24001,74585], + [24003,544973], + [24005,813280], + [24009,89322], + [24011,32898], + [24013,167019], + [24015,101585], + [24017,149207], + [24019,32700], + [24021,237370], + [24023,30137], + [24025,246730], + [24027,293858], + [24029,20250], + [24031,993326], + [24033,874599], + [24035,48270], + [24037,107585], + [24039,26263], + [24041,37949], + [24043,148755], + [24045,100110], + [24047,51505], + [24510,620839], + [25001,215340], + [25003,130488], + [25005,549368], + [25007,16695], + [25009,751490], + [25011,71658], + [25013,466062], + [25015,160095], + [25017,1524191], + [25019,10124], + [25021,677821], + [25023,498198], + [25025,736664], + [25027,803984], + [26001,10739], + [26003,9513], + [26005,111137], + [26007,29336], + [26009,23318], + [26011,15628], + [26013,8829], + [26015,58911], + [26017,107382], + [26019,17391], + [26021,156792], + [26023,43913], + [26025,135039], + [26027,52187], + [26029,26083], + [26031,25884], + [26033,38862], + [26035,30997], + [26037,75881], + [26039,14033], + [26041,36940], + [26043,26060], + [26045,107854], + [26047,32731], + [26049,421901], + [26051,25863], + [26053,16115], + [26055,88324], + [26057,42102], + [26059,46590], + [26061,36729], + [26063,32758], + [26065,282249], + [26067,63853], + [26069,25586], + [26071,11761], + [26073,70556], + [26075,159625], + [26077,252430], + [26079,17162], + [26081,608174], + [26083,2178], + [26085,11454], + [26087,88052], + [26089,21420], + [26091,99323], + [26093,181997], + [26095,6519], + [26097,11012], + [26099,843535], + [26101,24772], + [26103,67446], + [26105,28633], + [26107,43424], + [26109,23862], + [26111,83759], + [26113,14892], + [26115,151453], + [26117,63245], + [26119,9628], + [26121,169975], + [26123,48310], + [26125,1211346], + [26127,26450], + [26129,21495], + [26131,6626], + [26133,23468], + [26135,8615], + [26137,24095], + [26139,266770], + [26141,13146], + [26143,24311], + [26145,198833], + [26147,161524], + [26149,61047], + [26151,42704], + [26153,8474], + [26155,69965], + [26157,55397], + [26159,75922], + [26161,349102], + [26163,1802164], + [26165,32638], + [27001,16177], + [27003,332873], + [27005,32760], + [27007,45037], + [27009,38730], + [27011,5207], + [27013,64344], + [27015,25653], + [27017,35431], + [27019,92804], + [27021,28380], + [27023,12310], + [27025,53746], + [27027,59899], + [27029,8719], + [27031,5208], + [27033,11713], + [27035,62651], + [27037,401799], + [27039,20198], + [27041,36175], + [27043,14461], + [27045,20827], + [27047,31072], + [27049,46103], + [27051,5992], + [27053,1169458], + [27055,18878], + [27057,20513], + [27059,38190], + [27061,45098], + [27063,10194], + [27065,16219], + [27067,42198], + [27069,4540], + [27071,13228], + [27073,7219], + [27075,10781], + [27077,4011], + [27079,27780], + [27081,5808], + [27083,25820], + [27085,36354], + [27087,5474], + [27089,9458], + [27091,20617], + [27093,23195], + [27095,25839], + [27097,33250], + [27099,39370], + [27101,8630], + [27103,32962], + [27105,21610], + [27107,6812], + [27109,145819], + [27111,57279], + [27113,14064], + [27115,29618], + [27117,9528], + [27119,31533], + [27121,10912], + [27123,515873], + [27125,4084], + [27127,16023], + [27129,15423], + [27131,64457], + [27133,9599], + [27135,15514], + [27137,200372], + [27139,132571], + [27141,89254], + [27143,15157], + [27145,151334], + [27147,36566], + [27149,9713], + [27151,9680], + [27153,24891], + [27155,3489], + [27157,21606], + [27159,13649], + [27161,19183], + [27163,241401], + [27165,11164], + [27167,6575], + [27169,51354], + [27171,126226], + [27173,10281], + [28001,32413], + [28003,37269], + [28005,13133], + [28007,19389], + [28009,8715], + [28011,33794], + [28013,14906], + [28015,10432], + [28017,17495], + [28019,8443], + [28021,9781], + [28023,16696], + [28025,20480], + [28027,25846], + [28029,29284], + [28031,19481], + [28033,163977], + [28035,75798], + [28037,7985], + [28039,22845], + [28041,14327], + [28043,21608], + [28045,44707], + [28047,190928], + [28049,248055], + [28051,19076], + [28053,9316], + [28055,1394], + [28057,23268], + [28059,139936], + [28061,16850], + [28063,7593], + [28065,12169], + [28067,67903], + [28069,10308], + [28071,48348], + [28073,57308], + [28075,80626], + [28077,12724], + [28079,23255], + [28081,84010], + [28083,32050], + [28085,34859], + [28087,59591], + [28089,96872], + [28091,26672], + [28093,36742], + [28095,36610], + [28097,10768], + [28099,29730], + [28101,21418], + [28103,11291], + [28105,47721], + [28107,34472], + [28109,55432], + [28111,12150], + [28113,40430], + [28115,29774], + [28117,25353], + [28119,8053], + [28121,144147], + [28123,28344], + [28125,4874], + [28127,27392], + [28129,16531], + [28131,17890], + [28133,28515], + [28135,15317], + [28137,28745], + [28139,22026], + [28141,19623], + [28143,10580], + [28145,27290], + [28147,15374], + [28149,48306], + [28151,50442], + [28153,20611], + [28155,10182], + [28157,9584], + [28159,19040], + [28161,12516], + [28163,28264], + [29001,25635], + [29003,17195], + [29005,5573], + [29007,25527], + [29009,35326], + [29011,12344], + [29013,16967], + [29015,19028], + [29017,12380], + [29019,166019], + [29021,89669], + [29023,42985], + [29025,9281], + [29027,44275], + [29029,43797], + [29031,76566], + [29033,9251], + [29035,6329], + [29037,99971], + [29039,13911], + [29041,7751], + [29043,78634], + [29045,7025], + [29047,225167], + [29049,20676], + [29051,76473], + [29053,17549], + [29055,24789], + [29057,7769], + [29059,16693], + [29061,8295], + [29063,12818], + [29065,15581], + [29067,13627], + [29069,32006], + [29071,101628], + [29073,15077], + [29075,6817], + [29077,277301], + [29079,10249], + [29081,8881], + [29083,22227], + [29085,9612], + [29087,4838], + [29089,10224], + [29091,40590], + [29093,10628], + [29095,675290], + [29097,118098], + [29099,219540], + [29101,53411], + [29103,4125], + [29105,35635], + [29107,33215], + [29109,38488], + [29111,10217], + [29113,53065], + [29115,12587], + [29117,15116], + [29119,22881], + [29121,15484], + [29123,12258], + [29125,9192], + [29127,28779], + [29129,3773], + [29131,24714], + [29133,14217], + [29135,15710], + [29137,8678], + [29139,12209], + [29141,20371], + [29143,18783], + [29145,58540], + [29147,23414], + [29149,11044], + [29151,13882], + [29153,9637], + [29155,18195], + [29157,19003], + [29159,42131], + [29161,45211], + [29163,18664], + [29165,90810], + [29167,31200], + [29169,53254], + [29171,4975], + [29173,10266], + [29175,25275], + [29177,23321], + [29179,6569], + [29181,14133], + [29183,365405], + [29185,9693], + [29186,18182], + [29187,65576], + [29189,999308], + [29195,23336], + [29197,4388], + [29199,4834], + [29201,39127], + [29203,8417], + [29205,6236], + [29207,29847], + [29209,32112], + [29211,6661], + [29213,52622], + [29215,25913], + [29217,20983], + [29219,32574], + [29221,25094], + [29223,13412], + [29225,36381], + [29227,2120], + [29229,18643], + [29510,319102], + [30001,9205], + [30003,13054], + [30005,6573], + [30007,5729], + [30009,10090], + [30011,1136], + [30013,81674], + [30015,5808], + [30017,11755], + [30019,1761], + [30021,9022], + [30023,9278], + [30025,2930], + [30027,11454], + [30029,91236], + [30031,91295], + [30033,1254], + [30035,13568], + [30037,830], + [30039,3084], + [30041,16385], + [30043,11371], + [30045,2009], + [30047,28968], + [30049,64242], + [30051,2377], + [30053,19621], + [30055,1709], + [30057,7643], + [30059,1877], + [30061,4212], + [30063,110172], + [30065,4746], + [30067,15506], + [30069,496], + [30071,4191], + [30073,6189], + [30075,1738], + [30077,7077], + [30079,1139], + [30081,40357], + [30083,10142], + [30085,10493], + [30087,9331], + [30089,11392], + [30091,3418], + [30093,34374], + [30095,9176], + [30097,3585], + [30099,6057], + [30101,5151], + [30103,713], + [30105,7458], + [30107,2132], + [30109,981], + [30111,149702], + [31001,31206], + [31003,6620], + [31005,468], + [31007,656], + [31009,475], + [31011,5408], + [31013,11295], + [31015,2078], + [31017,3098], + [31019,46843], + [31021,6780], + [31023,8254], + [31025,25235], + [31027,8750], + [31029,3986], + [31031,5730], + [31033,9988], + [31035,6454], + [31037,10578], + [31039,9121], + [31041,10906], + [31043,20823], + [31045,9201], + [31047,24243], + [31049,1960], + [31051,5995], + [31053,36929], + [31055,524458], + [31057,1976], + [31059,5826], + [31061,3204], + [31063,2714], + [31065,4917], + [31067,21906], + [31069,2062], + [31071,2011], + [31073,1991], + [31075,634], + [31077,2535], + [31079,59549], + [31081,9076], + [31083,3441], + [31085,952], + [31087,2861], + [31089,10442], + [31091,743], + [31093,6295], + [31095,7550], + [31097,5216], + [31099,6546], + [31101,8239], + [31103,820], + [31105,3807], + [31107,8574], + [31109,290043], + [31111,36035], + [31113,779], + [31115,616], + [31117,552], + [31119,35014], + [31121,7755], + [31123,4985], + [31125,3731], + [31127,7237], + [31129,4447], + [31131,15745], + [31133,2791], + [31135,2947], + [31137,9143], + [31139,7192], + [31141,32522], + [31143,5340], + [31145,11048], + [31147,8341], + [31149,1480], + [31151,14336], + [31153,162595], + [31155,20842], + [31157,36958], + [31159,16703], + [31161,5360], + [31163,3101], + [31165,1319], + [31167,6175], + [31169,5168], + [31171,698], + [31173,6904], + [31175,4228], + [31177,20274], + [31179,9453], + [31181,3757], + [31183,815], + [31185,13787], + [32001,24618], + [32003,1966521], + [32005,46984], + [32007,49489], + [32009,771], + [32011,1977], + [32013,16667], + [32015,5847], + [32017,5271], + [32019,51399], + [32021,4639], + [32023,44002], + [32027,6615], + [32029,3902], + [32031,424634], + [32033,10131], + [32510,54703], + [33001,60265], + [33003,47668], + [33005,76874], + [33007,32501], + [33009,89066], + [33011,401829], + [33013,146704], + [33015,295963], + [33017,123976], + [33019,43499], + [34001,275107], + [34003,914233], + [34005,450486], + [34007,513180], + [34009,96561], + [34011,157108], + [34013,787414], + [34015,289605], + [34017,648619], + [34019,127365], + [34021,368201], + [34023,817589], + [34025,629757], + [34027,495671], + [34029,579162], + [34031,504472], + [34033,65883], + [34035,326597], + [34037,148166], + [34039,541300], + [34041,108218], + [35001,669336], + [35003,3718], + [35005,65667], + [35006,27470], + [35007,13611], + [35009,49710], + [35011,1996], + [35013,212860], + [35015,54037], + [35017,29308], + [35019,4626], + [35021,717], + [35023,4841], + [35025,64990], + [35027,20400], + [35028,18177], + [35029,25089], + [35031,72298], + [35033,4780], + [35035,65432], + [35037,9044], + [35039,40235], + [35041,20415], + [35043,134200], + [35045,129649], + [35047,29332], + [35049,145442], + [35051,12022], + [35053,17764], + [35055,32869], + [35057,16408], + [35059,4407], + [35061,76894], + [36001,304836], + [36003,48803], + [36005,1400899], + [36007,199449], + [36009,79829], + [36011,79689], + [36013,134220], + [36015,88983], + [36017,50184], + [36019,81731], + [36021,62538], + [36023,49373], + [36025,47581], + [36027,298361], + [36029,920312], + [36031,39269], + [36033,51554], + [36035,55122], + [36037,59903], + [36039,48857], + [36041,4828], + [36043,64383], + [36045,117806], + [36047,2546662], + [36049,27008], + [36051,64863], + [36053,72890], + [36055,747461], + [36057,49906], + [36059,1347483], + [36061,1611550], + [36063,215747], + [36065,234341], + [36067,467905], + [36069,108598], + [36071,374341], + [36073,42639], + [36075,121975], + [36077,61972], + [36079,99859], + [36081,2262013], + [36083,159645], + [36085,471564], + [36087,315904], + [36089,112316], + [36091,221151], + [36093,154940], + [36095,32634], + [36097,18399], + [36099,35318], + [36101,99156], + [36103,1500074], + [36105,77109], + [36107,50872], + [36109,101987], + [36111,182516], + [36113,65735], + [36115,63068], + [36117,93263], + [36119,957693], + [36121,41854], + [36123,25451], + [37001,152857], + [37003,37039], + [37005,11025], + [37007,26517], + [37009,27008], + [37011,17728], + [37013,47663], + [37015,20860], + [37017,34920], + [37019,110237], + [37021,241224], + [37023,90490], + [37025,181228], + [37027,82446], + [37029,10023], + [37031,67426], + [37033,23478], + [37035,154561], + [37037,64159], + [37039,27177], + [37041,14821], + [37043,10690], + [37045,97435], + [37047,57693], + [37049,104873], + [37051,330877], + [37053,23904], + [37055,34178], + [37057,162972], + [37059,41352], + [37061,59276], + [37063,276881], + [37065,56059], + [37067,354835], + [37069,60964], + [37071,206951], + [37073,12043], + [37075,8815], + [37077,57514], + [37079,21539], + [37081,495241], + [37083,54122], + [37085,119214], + [37087,58740], + [37089,107413], + [37091,24640], + [37093,49489], + [37095,5800], + [37097,161099], + [37099,40274], + [37101,172534], + [37103,10059], + [37105,58588], + [37107,59441], + [37109,78270], + [37111,45059], + [37113,33894], + [37115,20853], + [37117,24178], + [37119,944943], + [37121,15351], + [37123,27718], + [37125,89273], + [37127,95749], + [37129,206047], + [37131,21923], + [37133,185013], + [37135,134962], + [37137,13253], + [37139,40277], + [37141,53195], + [37143,13499], + [37145,39512], + [37147,170806], + [37149,20294], + [37151,141886], + [37153,46653], + [37155,135221], + [37157,93304], + [37159,137851], + [37161,67414], + [37163,63552], + [37165,36276], + [37167,60533], + [37169,47151], + [37171,73537], + [37173,14013], + [37175,32819], + [37177,4336], + [37179,204998], + [37181,45300], + [37183,929845], + [37185,20989], + [37187,12929], + [37189,51613], + [37191,124080], + [37193,68942], + [37195,81192], + [37197,38353], + [37199,17692], + [38001,2312], + [38003,11101], + [38005,6684], + [38007,834], + [38009,6492], + [38011,3142], + [38013,2062], + [38015,83523], + [38017,152807], + [38019,3944], + [38021,5254], + [38023,2142], + [38025,3717], + [38027,2346], + [38029,3512], + [38031,3343], + [38033,1759], + [38035,66528], + [38037,2358], + [38039,2369], + [38041,2501], + [38043,2443], + [38045,4093], + [38047,1974], + [38049,5502], + [38051,2755], + [38053,7005], + [38055,9076], + [38057,8424], + [38059,27714], + [38061,8108], + [38063,3062], + [38065,1847], + [38067,7352], + [38069,4364], + [38071,11522], + [38073,5431], + [38075,2494], + [38077,16259], + [38079,14188], + [38081,3790], + [38083,1316], + [38085,4234], + [38087,727], + [38089,25161], + [38091,1970], + [38093,21018], + [38095,2260], + [38097,8065], + [38099,11021], + [38101,64333], + [38103,4197], + [38105,24395], + [39001,28466], + [39003,105975], + [39005,53247], + [39007,101060], + [39009,65080], + [39011,45767], + [39013,70117], + [39015,44639], + [39017,370049], + [39019,28821], + [39021,39811], + [39023,137754], + [39025,198818], + [39027,41895], + [39029,107386], + [39031,36925], + [39033,43308], + [39035,1270461], + [39037,52646], + [39039,38988], + [39041,178546], + [39043,76675], + [39045,147140], + [39047,28854], + [39049,1180739], + [39051,42351], + [39053,31025], + [39055,93292], + [39057,163561], + [39059,39902], + [39061,800617], + [39063,74903], + [39065,31800], + [39067,15789], + [39069,27991], + [39071,43364], + [39073,29462], + [39075,42788], + [39077,59390], + [39079,33128], + [39081,69018], + [39083,61271], + [39085,229934], + [39087,62409], + [39089,167149], + [39091,45623], + [39093,301816], + [39095,439282], + [39097,43112], + [39099,237328], + [39101,66584], + [39103,173488], + [39105,23646], + [39107,40706], + [39109,102714], + [39111,14623], + [39113,534415], + [39115,15047], + [39117,34806], + [39119,86240], + [39121,14738], + [39123,41313], + [39125,19372], + [39127,36227], + [39129,55936], + [39131,28603], + [39133,161859], + [39135,41983], + [39137,34375], + [39139,123130], + [39141,77559], + [39143,60596], + [39145,79226], + [39147,56505], + [39149,49214], + [39151,374470], + [39153,541293], + [39155,208804], + [39157,92482], + [39159,53025], + [39161,28609], + [39163,13377], + [39165,215373], + [39167,61588], + [39169,114620], + [39171,37576], + [39173,127103], + [39175,22635], + [40001,22559], + [40003,5643], + [40005,14163], + [40007,5635], + [40009,22300], + [40011,9667], + [40013,43127], + [40015,29609], + [40017,119362], + [40019,48031], + [40021,47673], + [40023,15274], + [40025,2466], + [40027,261846], + [40029,5909], + [40031,125977], + [40033,6169], + [40035,14978], + [40037,70588], + [40039,27681], + [40041,41601], + [40043,4774], + [40045,4037], + [40047,60664], + [40049,27445], + [40051,52733], + [40053,4550], + [40055,6138], + [40057,2922], + [40059,3710], + [40061,12718], + [40063,13739], + [40065,26410], + [40067,6458], + [40069,11066], + [40071,45853], + [40073,15138], + [40075,9418], + [40077,11166], + [40079,50344], + [40081,34253], + [40083,42571], + [40085,9381], + [40087,35189], + [40089,33303], + [40091,20259], + [40093,7633], + [40095,15934], + [40097,41313], + [40099,13593], + [40101,70736], + [40103,11564], + [40105,10610], + [40107,12320], + [40109,730176], + [40111,39777], + [40113,47777], + [40115,31839], + [40117,16735], + [40119,78021], + [40121,45691], + [40123,37749], + [40125,70025], + [40127,11400], + [40129,3758], + [40131,87519], + [40133,25441], + [40135,42147], + [40137,45109], + [40139,21188], + [40141,8009], + [40143,608843], + [40145,74022], + [40147,51318], + [40149,11612], + [40151,8777], + [40153,20099], + [41001,16062], + [41003,85976], + [41005,379154], + [41007,37189], + [41009,49372], + [41011,62730], + [41013,20626], + [41015,22477], + [41017,159605], + [41019,107165], + [41021,1951], + [41023,7409], + [41025,7357], + [41027,22438], + [41029,204607], + [41031,21733], + [41033,82666], + [41035,66287], + [41037,7827], + [41039,353419], + [41041,45842], + [41043,118112], + [41045,30830], + [41047,317634], + [41049,11202], + [41051,747846], + [41053,75886], + [41055,1749], + [41057,25389], + [41059,76748], + [41061,25879], + [41063,6976], + [41065,25192], + [41067,539518], + [41069,1416], + [41071,99576], + [42001,101460], + [42003,1227767], + [42005,68484], + [42007,170318], + [42009,49615], + [42011,412857], + [42013,126989], + [42015,63068], + [42017,626067], + [42019,184611], + [42021,142561], + [42023,4998], + [42025,65091], + [42027,155039], + [42029,503404], + [42031,39890], + [42033,81364], + [42035,39471], + [42037,67056], + [42039,88188], + [42041,237029], + [42043,269106], + [42045,559079], + [42047,31757], + [42049,281288], + [42051,135984], + [42053,7671], + [42055,150952], + [42057,14777], + [42059,38327], + [42061,46041], + [42063,88608], + [42065,44899], + [42067,24702], + [42069,214359], + [42071,523786], + [42073,90452], + [42075,134438], + [42077,353394], + [42079,320948], + [42081,116671], + [42083,43114], + [42085,116139], + [42087,46712], + [42089,169961], + [42091,805186], + [42093,18359], + [42095,298277], + [42097,94397], + [42099,45986], + [42101,1539649], + [42103,57120], + [42105,17455], + [42107,147461], + [42109,39773], + [42111,77304], + [42113,6406], + [42115,43272], + [42117,42244], + [42119,45084], + [42121,54683], + [42123,41502], + [42125,207968], + [42127,52700], + [42129,364494], + [42131,28297], + [42133,436702], + [44001,49212], + [44003,165230], + [44005,83152], + [44007,628089], + [44009,126471], + [45001,25082], + [45003,161591], + [45005,10234], + [45007,188366], + [45009,15833], + [45011,22458], + [45013,163914], + [45015,183155], + [45017,15094], + [45019,357492], + [45021,55684], + [45023,32862], + [45025,46523], + [45027,34704], + [45029,38455], + [45031,68252], + [45033,31756], + [45035,140614], + [45037,26908], + [45039,23573], + [45041,137570], + [45043,60027], + [45045,459193], + [45047,69842], + [45049,20794], + [45051,275695], + [45053,25297], + [45055,62105], + [45057,77849], + [45059,66481], + [45061,18883], + [45063,266383], + [45065,10017], + [45067,32779], + [45069,28551], + [45071,37516], + [45073,74249], + [45075,91678], + [45077,119592], + [45079,389481], + [45081,19818], + [45083,286201], + [45085,107291], + [45087,28661], + [45089,34112], + [45091,230129], + [46003,2716], + [46005,17693], + [46007,3449], + [46009,7009], + [46011,32138], + [46013,36966], + [46015,5296], + [46017,1977], + [46019,10307], + [46021,1425], + [46023,9189], + [46025,3588], + [46027,13987], + [46029,27423], + [46031,4039], + [46033,8347], + [46035,19574], + [46037,5741], + [46039,4351], + [46041,5398], + [46043,2974], + [46045,4041], + [46047,6963], + [46049,2356], + [46051,7262], + [46053,4220], + [46055,1919], + [46057,5937], + [46059,3429], + [46061,3374], + [46063,1276], + [46065,17310], + [46067,7246], + [46069,1398], + [46071,3157], + [46073,2075], + [46075,1004], + [46077,5171], + [46079,11564], + [46081,24329], + [46083,46804], + [46085,3811], + [46087,5544], + [46089,2451], + [46091,4593], + [46093,25500], + [46095,2072], + [46097,2325], + [46099,171604], + [46101,6486], + [46102,13898], + [46103,102382], + [46105,3009], + [46107,2370], + [46109,10297], + [46111,2355], + [46115,6495], + [46117,2978], + [46119,1377], + [46121,9841], + [46123,5631], + [46125,8353], + [46127,14644], + [46129,5562], + [46135,22499], + [46137,2839], + [47001,75173], + [47003,45227], + [47005,16488], + [47007,12906], + [47009,123653], + [47011,99838], + [47013,40567], + [47015,13723], + [47017,28530], + [47019,57353], + [47021,38971], + [47023,17126], + [47025,32087], + [47027,7767], + [47029,35401], + [47031,52909], + [47033,14558], + [47035,56522], + [47037,635602], + [47039,11681], + [47041,18758], + [47043,49924], + [47045,38110], + [47047,38566], + [47049,17993], + [47051,40818], + [47053,49829], + [47055,29326], + [47057,22750], + [47059,69090], + [47061,13587], + [47063,62801], + [47065,341035], + [47067,6699], + [47069,26848], + [47071,25869], + [47073,56528], + [47075,18535], + [47077,28011], + [47079,32410], + [47081,24360], + [47083,8343], + [47085,18399], + [47087,11532], + [47089,51891], + [47091,18207], + [47093,436653], + [47095,7793], + [47097,27682], + [47099,42064], + [47101,12145], + [47103,33372], + [47105,49101], + [47107,52308], + [47109,26052], + [47111,22436], + [47113,98030], + [47115,28093], + [47117,30840], + [47119,81470], + [47121,11668], + [47123,44912], + [47125,176475], + [47127,6373], + [47129,21997], + [47131,31668], + [47133,22161], + [47135,7861], + [47137,5096], + [47139,16745], + [47141,73016], + [47143,32065], + [47145,53916], + [47147,66705], + [47149,268966], + [47151,22102], + [47153,14249], + [47155,91107], + [47157,933268], + [47159,19131], + [47161,13228], + [47163,156881], + [47165,163584], + [47167,61241], + [47169,7810], + [47171,18288], + [47173,19191], + [47175,5535], + [47177,39887], + [47179,123858], + [47181,16942], + [47183,34855], + [47185,26009], + [47187,188395], + [47189,116756], + [48001,58379], + [48003,15386], + [48005,87282], + [48007,23228], + [48009,8834], + [48011,1937], + [48013,45483], + [48015,28570], + [48017,7159], + [48019,20538], + [48021,75090], + [48023,3695], + [48025,32312], + [48027,315809], + [48029,1755124], + [48031,10569], + [48033,632], + [48035,18260], + [48037,92907], + [48039,319274], + [48041,197493], + [48043,9352], + [48045,1657], + [48047,7222], + [48049,37981], + [48051,17304], + [48053,43216], + [48055,38422], + [48057,21356], + [48059,13508], + [48061,412917], + [48063,12408], + [48065,6234], + [48067,30275], + [48069,8070], + [48071,35683], + [48073,51076], + [48075,7030], + [48077,10666], + [48079,3075], + [48081,3266], + [48083,8745], + [48085,813986], + [48087,3081], + [48089,20785], + [48091,112039], + [48093,13853], + [48095,4117], + [48097,38384], + [48099,76641], + [48101,1506], + [48103,4358], + [48105,3656], + [48107,6040], + [48109,2392], + [48111,6882], + [48113,2408133], + [48115,13744], + [48117,19490], + [48119,5146], + [48121,685934], + [48123,20202], + [48125,2400], + [48127,10111], + [48129,3688], + [48131,11795], + [48133,18576], + [48135,139611], + [48137,1979], + [48139,152396], + [48141,819336], + [48143,38925], + [48145,17850], + [48147,33872], + [48149,24744], + [48151,3957], + [48153,6369], + [48155,1362], + [48157,606499], + [48159,10563], + [48161,19596], + [48163,17495], + [48165,17902], + [48167,295609], + [48169,6565], + [48171,25038], + [48173,1237], + [48175,7208], + [48177,19742], + [48179,22651], + [48181,121372], + [48183,122603], + [48185,26642], + [48187,135789], + [48189,36398], + [48191,3311], + [48193,8384], + [48195,5574], + [48197,4159], + [48199,55061], + [48201,4180816], + [48203,66324], + [48205,6028], + [48207,5958], + [48209,163234], + [48211,3951], + [48213,78792], + [48215,794639], + [48217,35184], + [48219,22927], + [48221,51543], + [48223,35253], + [48225,23425], + [48227,34989], + [48229,3411], + [48231,86706], + [48233,22013], + [48235,1592], + [48237,9034], + [48239,14044], + [48241,36192], + [48243,2282], + [48245,253397], + [48247,5286], + [48249,41206], + [48251,152058], + [48253,20267], + [48255,14947], + [48257,105188], + [48259,34456], + [48261,436], + [48263,812], + [48265,49607], + [48267,4594], + [48269,259], + [48271,3608], + [48273,32026], + [48275,3720], + [48277,49863], + [48279,14051], + [48281,19926], + [48283,6999], + [48285,19305], + [48287,16555], + [48289,16830], + [48291,75970], + [48293,23566], + [48295,3329], + [48297,11502], + [48299,19061], + [48301,95], + [48303,283388], + [48305,5887], + [48307,8254], + [48309,237826], + [48311,697], + [48313,13739], + [48315,10479], + [48317,4889], + [48319,4022], + [48321,36681], + [48323,55224], + [48325,46523], + [48327,2212], + [48329,140172], + [48331,24597], + [48333,4881], + [48335,9394], + [48337,19756], + [48339,471438], + [48341,22090], + [48343,12770], + [48345,1200], + [48347,65639], + [48349,48053], + [48351,14561], + [48353,15129], + [48355,343225], + [48357,10422], + [48359,2071], + [48361,82337], + [48363,28052], + [48365,24004], + [48367,118312], + [48369,10260], + [48371,15639], + [48373,45580], + [48375,122313], + [48377,7756], + [48379,11000], + [48381,123437], + [48383,3391], + [48385,3431], + [48387,12684], + [48389,13799], + [48391,7319], + [48393,926], + [48395,16654], + [48397,81034], + [48399,10494], + [48401,53680], + [48403,10725], + [48405,8793], + [48407,26781], + [48409,64455], + [48411,6037], + [48413,3307], + [48415,16876], + [48417,3338], + [48419,25730], + [48421,3014], + [48423,212653], + [48425,8419], + [48427,61582], + [48429,9526], + [48431,1169], + [48433,1463], + [48435,3988], + [48437,7800], + [48439,1847875], + [48441,132858], + [48443,950], + [48445,12645], + [48447,1637], + [48449,32423], + [48451,111753], + [48453,1061687], + [48455,14687], + [48457,21660], + [48459,39733], + [48461,3282], + [48463,26565], + [48465,48950], + [48467,52491], + [48469,87530], + [48471,68408], + [48473,44088], + [48475,10672], + [48477,33957], + [48479,255598], + [48481,41260], + [48483,5445], + [48485,130776], + [48487,13440], + [48489,22166], + [48491,442177], + [48493,43668], + [48495,7161], + [48497,59953], + [48499,42140], + [48501,7960], + [48503,18346], + [48505,14223], + [48507,11865], + [49001,6558], + [49003,50240], + [49005,114810], + [49007,21306], + [49009,1162], + [49011,311899], + [49013,18705], + [49015,10984], + [49017,5149], + [49019,9296], + [49021,46620], + [49023,10311], + [49025,7293], + [49027,12557], + [49029,9652], + [49031,1499], + [49033,2295], + [49035,1048313], + [49037,14837], + [49039,28004], + [49041,20870], + [49043,37438], + [49045,59184], + [49047,33246], + [49049,530860], + [49051,24433], + [49053,141276], + [49055,2743], + [49057,233890], + [50001,36846], + [50003,36796], + [50005,31096], + [50007,157618], + [50009,6323], + [50011,48187], + [50013,6969], + [50015,24674], + [50017,29007], + [50019,27173], + [50021,61196], + [50023,59559], + [50025,44202], + [50027,56564], + [51001,33222], + [51003,100259], + [51005,16158], + [51007,12752], + [51009,32110], + [51011,15104], + [51013,216430], + [51015,73641], + [51017,4655], + [51019,75560], + [51021,6776], + [51023,32998], + [51025,17131], + [51027,23818], + [51029,17212], + [51031,54791], + [51033,28677], + [51035,30092], + [51036,7204], + [51037,12490], + [51041,320422], + [51043,14187], + [51045,5169], + [51047,47340], + [51049,9982], + [51051,15782], + [51053,28114], + [51057,11166], + [51059,1105720], + [51061,66063], + [51063,15399], + [51065,25956], + [51067,56343], + [51069,79528], + [51071,17149], + [51073,36885], + [51075,21377], + [51077,15366], + [51079,18667], + [51081,11966], + [51083,35976], + [51085,99906], + [51087,310812], + [51089,53553], + [51091,2259], + [51093,35289], + [51095,68316], + [51097,6986], + [51099,24278], + [51101,16015], + [51103,11276], + [51105,25533], + [51107,326896], + [51109,33461], + [51111,12911], + [51113,13142], + [51115,8943], + [51117,32567], + [51119,10851], + [51121,94841], + [51125,15018], + [51127,18766], + [51131,12406], + [51133,12453], + [51135,15878], + [51137,33998], + [51139,23953], + [51141,18329], + [51143,63259], + [51145,28125], + [51147,23227], + [51149,36706], + [51153,419591], + [51155,34736], + [51157,7472], + [51159,9207], + [51161,92847], + [51163,22439], + [51165,76849], + [51167,28656], + [51169,23061], + [51171,42262], + [51173,32044], + [51175,18631], + [51177,124534], + [51179,132207], + [51181,6923], + [51183,12085], + [51185,44738], + [51187,37623], + [51191,54802], + [51193,17626], + [51195,41439], + [51197,29188], + [51199,65861], + [51510,144598], + [51520,17721], + [51530,6720], + [51540,43835], + [51550,225381], + [51570,17286], + [51580,5917], + [51590,42642], + [51595,5838], + [51600,22482], + [51610,12715], + [51620,8448], + [51630,25761], + [51640,6845], + [51650,136567], + [51660,49998], + [51670,22505], + [51678,6966], + [51680,76618], + [51683,39174], + [51685,15092], + [51690,13593], + [51700,180135], + [51710,243725], + [51720,4096], + [51730,32079], + [51735,12039], + [51740,95738], + [51750,16824], + [51760,206410], + [51770,96846], + [51775,25009], + [51790,24029], + [51800,84754], + [51810,442868], + [51820,21105], + [51830,14116], + [51840,26662], + [53001,18891], + [53003,21968], + [53005,180412], + [53007,73233], + [53009,71750], + [53011,432205], + [53013,4004], + [53015,102291], + [53017,38682], + [53019,7636], + [53021,83110], + [53023,2236], + [53025,90650], + [53027,72366], + [53029,78901], + [53031,29835], + [53033,1972205], + [53035,254250], + [53037,41539], + [53039,20684], + [53041,75657], + [53043,10527], + [53045,60858], + [53047,41338], + [53049,20879], + [53051,12950], + [53053,802828], + [53055,15840], + [53057,117578], + [53059,11150], + [53061,721837], + [53063,473291], + [53065,43433], + [53067,256241], + [53069,3991], + [53071,59435], + [53073,203447], + [53075,44977], + [53077,246050], + [54001,16598], + [54003,105608], + [54005,24408], + [54007,14530], + [54009,23828], + [54011,96506], + [54013,7638], + [54015,9334], + [54017,8247], + [54019,45910], + [54021,8744], + [54023,11897], + [54025,35705], + [54027,23787], + [54029,30603], + [54031,13947], + [54033,69307], + [54035,29303], + [54037,54292], + [54039,192081], + [54041,16436], + [54043,21575], + [54045,36446], + [54047,21726], + [54049,56649], + [54051,32904], + [54053,27290], + [54055,62502], + [54057,28030], + [54059,26567], + [54061,98668], + [54063,13550], + [54065,17435], + [54067,26201], + [54069,44192], + [54071,7536], + [54073,7576], + [54075,8821], + [54077,33661], + [54079,56033], + [54081,79273], + [54083,29424], + [54085,10311], + [54087,14799], + [54089,13857], + [54091,16928], + [54093,7127], + [54095,9100], + [54097,24263], + [54099,42158], + [54101,9124], + [54103,16381], + [54105,5755], + [54107,86865], + [54109,23455], + [55001,20778], + [55003,16025], + [55005,45879], + [55007,15064], + [55009,250525], + [55011,13443], + [55013,15461], + [55015,49617], + [55017,62945], + [55019,34693], + [55021,56680], + [55023,16678], + [55025,496135], + [55027,88409], + [55029,27763], + [55031,43950], + [55033,43778], + [55035,99936], + [55037,4382], + [55039,101841], + [55041,9246], + [55043,51179], + [55045,36849], + [55047,19060], + [55049,23576], + [55051,5958], + [55053,20518], + [55055,83838], + [55057,26697], + [55059,166845], + [55061,20555], + [55063,115216], + [55065,16868], + [55067,19796], + [55069,28465], + [55071,81037], + [55073,134353], + [55075,41407], + [55077,15369], + [55078,4369], + [55079,951730], + [55081,45044], + [55083,37571], + [55085,35772], + [55087,177935], + [55089,86791], + [55091,7400], + [55093,40873], + [55095,43950], + [55097,70074], + [55099,13984], + [55101,194931], + [55103,17999], + [55105,159882], + [55107,14615], + [55109,84785], + [55111,62272], + [55113,16555], + [55115,41663], + [55117,115218], + [55119,20654], + [55121,29006], + [55123,29872], + [55125,21398], + [55127,102684], + [55129,15844], + [55131,132340], + [55133,390810], + [55135,52280], + [55137,24551], + [55139,167497], + [55141,74649], + [56001,36883], + [56003,11726], + [56005,46560], + [56007,15848], + [56009,13736], + [56011,7123], + [56013,40520], + [56015,13580], + [56017,4808], + [56019,8645], + [56021,92587], + [56023,18009], + [56025,76421], + [56027,2483], + [56029,28546], + [56031,8695], + [56033,29254], + [56035,10189], + [56037,44013], + [56039,21476], + [56041,20899], + [56043,8460], + [56045,7141] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2012.json b/data/regional/united-states/demographics/population/us-population-2012.json new file mode 100644 index 0000000..11ff4f2 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2012.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2012.", + "units" : "people", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2012"], + [1001,54927], + [1003,190048], + [1005,27175], + [1007,22658], + [1009,57595], + [1011,10612], + [1013,20688], + [1015,117219], + [1017,34092], + [1019,25958], + [1021,43601], + [1023,13561], + [1025,25152], + [1027,13434], + [1029,14889], + [1031,51113], + [1033,54569], + [1035,13041], + [1037,11347], + [1039,37803], + [1041,13916], + [1043,80275], + [1045,50287], + [1047,42795], + [1049,70944], + [1051,80220], + [1053,38028], + [1055,104257], + [1057,16944], + [1059,31658], + [1061,26928], + [1063,8852], + [1065,15360], + [1067,17157], + [1069,103362], + [1071,53054], + [1073,657668], + [1075,14245], + [1077,92652], + [1079,33805], + [1081,148318], + [1083,87322], + [1085,10846], + [1087,20603], + [1089,342554], + [1091,20360], + [1093,30480], + [1095,94217], + [1097,413737], + [1099,22587], + [1101,228702], + [1103,120075], + [1105,10184], + [1107,19313], + [1109,33093], + [1111,22532], + [1113,57478], + [1115,84975], + [1117,200828], + [1119,13428], + [1121,82072], + [1123,41040], + [1125,198597], + [1127,66084], + [1129,17140], + [1131,11306], + [1133,24186], + [2013,3304], + [2016,5689], + [2020,298520], + [2050,17656], + [2060,980], + [2068,1909], + [2070,4953], + [2090,100354], + [2100,2578], + [2105,"NA"], + [2110,32395], + [2122,56910], + [2130,13700], + [2150,14054], + [2158,7790], + [2164,1647], + [2170,93681], + [2180,9816], + [2185,9692], + [2188,7707], + [2195,3279], + [2198,6424], + [2220,9022], + [2230,"NA"], + [2240,7172], + [2261,9735], + [2275,"NA"], + [2282,664], + [2290,5624], + [4001,72215], + [4003,131826], + [4005,136002], + [4007,52973], + [4009,37009], + [4011,8744], + [4012,20492], + [4013,3939776], + [4015,203262], + [4017,107268], + [4019,991528], + [4021,381910], + [4023,47292], + [4025,211809], + [4027,202105], + [5001,18957], + [5003,21518], + [5005,41076], + [5007,234315], + [5009,37308], + [5011,11262], + [5013,5278], + [5015,27595], + [5017,11486], + [5019,22745], + [5021,15706], + [5023,25773], + [5025,8607], + [5027,24373], + [5029,21127], + [5031,99854], + [5033,61901], + [5035,50061], + [5037,17691], + [5039,7947], + [5041,12585], + [5043,18776], + [5045,118421], + [5047,17945], + [5049,12170], + [5051,96969], + [5053,18023], + [5055,43208], + [5057,22349], + [5059,33492], + [5061,13685], + [5063,36917], + [5065,13529], + [5067,17679], + [5069,74604], + [5071,25879], + [5073,7448], + [5075,17037], + [5077,10187], + [5079,14177], + [5081,12917], + [5083,21909], + [5085,70013], + [5087,15590], + [5089,16619], + [5091,43653], + [5093,45537], + [5095,7853], + [5097,9336], + [5099,8907], + [5101,8062], + [5103,25388], + [5105,10321], + [5107,20740], + [5109,11248], + [5111,24282], + [5113,20416], + [5115,62576], + [5117,8484], + [5119,388738], + [5121,17839], + [5123,27973], + [5125,111360], + [5127,11006], + [5129,7996], + [5131,127441], + [5133,17151], + [5135,17031], + [5137,12541], + [5139,40850], + [5141,17147], + [5143,211222], + [5145,78545], + [5147,7066], + [5149,21791], + [6001,1556648], + [6003,1110], + [6005,37112], + [6007,220969], + [6009,44826], + [6011,21350], + [6013,1079093], + [6015,28203], + [6017,180680], + [6019,946851], + [6021,27894], + [6023,134596], + [6025,177241], + [6027,18370], + [6029,855237], + [6031,151265], + [6033,64005], + [6035,33632], + [6037,9956152], + [6039,151900], + [6041,256381], + [6043,17893], + [6045,87376], + [6047,261407], + [6049,9359], + [6051,14248], + [6053,426094], + [6055,138876], + [6057,98173], + [6059,3085386], + [6061,360569], + [6063,19377], + [6065,2264804], + [6067,1446585], + [6069,56701], + [6071,2076601], + [6073,3179798], + [6075,830406], + [6077,700958], + [6079,274378], + [6081,740644], + [6083,430827], + [6085,1841868], + [6087,266794], + [6089,177917], + [6091,3068], + [6093,44082], + [6095,420267], + [6097,490740], + [6099,521349], + [6101,94342], + [6103,63241], + [6105,13482], + [6107,450779], + [6109,54237], + [6111,835143], + [6113,204890], + [6115,72832], + [8001,459861], + [8003,16092], + [8005,595094], + [8007,12124], + [8009,3722], + [8011,5816], + [8013,305028], + [8014,58899], + [8015,18142], + [8017,1862], + [8019,9005], + [8021,8239], + [8023,3597], + [8025,5435], + [8027,4222], + [8029,30449], + [8031,633798], + [8033,2009], + [8035,298446], + [8037,52189], + [8039,23262], + [8041,644832], + [8043,46975], + [8045,56694], + [8047,5420], + [8049,14204], + [8051,15431], + [8053,802], + [8055,6557], + [8057,1326], + [8059,546333], + [8061,1409], + [8063,8060], + [8065,7247], + [8067,52338], + [8069,310521], + [8071,14971], + [8073,5441], + [8075,21867], + [8077,147406], + [8079,719], + [8081,13159], + [8083,25465], + [8085,40605], + [8087,28198], + [8089,18657], + [8091,4494], + [8093,16033], + [8095,4393], + [8097,17259], + [8099,12437], + [8101,160735], + [8103,6792], + [8105,11861], + [8107,23253], + [8109,6320], + [8111,692], + [8113,7561], + [8115,2373], + [8117,28229], + [8119,23439], + [8121,4701], + [8123,263754], + [8125,10076], + [9001,936345], + [9003,898572], + [9005,187685], + [9007,165519], + [9009,865335], + [9011,274280], + [9013,151973], + [9015,117996], + [10001,167442], + [10003,546120], + [10005,203306], + [11001,635630], + [12001,251654], + [12003,27043], + [12005,171755], + [12007,27050], + [12009,547293], + [12011,1816837], + [12013,14663], + [12015,162833], + [12017,139198], + [12019,193892], + [12021,332556], + [12023,67886], + [12027,34952], + [12029,16152], + [12031,880526], + [12033,303467], + [12035,98506], + [12037,11608], + [12039,46568], + [12041,16889], + [12043,12671], + [12045,15769], + [12047,14721], + [12049,27412], + [12051,37846], + [12053,172754], + [12055,98205], + [12057,1282378], + [12059,19695], + [12061,140499], + [12063,49103], + [12065,14209], + [12067,8793], + [12069,303833], + [12071,644580], + [12073,283642], + [12075,39826], + [12077,8298], + [12079,18973], + [12081,334012], + [12083,334004], + [12085,149028], + [12086,2607800], + [12087,74627], + [12089,74521], + [12091,189789], + [12093,39700], + [12095,1203532], + [12097,289194], + [12099,1356257], + [12101,469905], + [12103,922150], + [12105,615639], + [12107,72913], + [12109,202077], + [12111,283189], + [12113,158205], + [12115,386647], + [12117,430855], + [12119,101698], + [12121,43527], + [12123,22750], + [12125,15258], + [12127,496740], + [12129,30853], + [12131,57183], + [12133,24739], + [13001,18402], + [13003,8273], + [13005,11177], + [13007,3377], + [13009,46499], + [13011,18153], + [13013,70206], + [13015,100365], + [13017,17577], + [13019,19166], + [13021,156665], + [13023,12888], + [13025,18509], + [13027,15631], + [13029,32258], + [13031,73167], + [13033,23045], + [13035,23412], + [13037,6566], + [13039,51352], + [13043,11110], + [13045,111452], + [13047,64872], + [13049,13362], + [13051,276503], + [13053,12276], + [13055,25619], + [13057,220773], + [13059,120135], + [13061,3103], + [13063,265777], + [13065,6709], + [13067,707549], + [13069,43178], + [13071,46127], + [13073,132680], + [13075,16919], + [13077,130644], + [13079,12612], + [13081,23598], + [13083,16508], + [13085,22467], + [13087,27456], + [13089,710604], + [13091,21515], + [13093,14407], + [13095,94690], + [13097,133703], + [13099,10636], + [13101,3991], + [13103,53348], + [13105,19578], + [13107,22738], + [13109,10687], + [13111,23608], + [13113,107400], + [13115,96000], + [13117,187126], + [13119,21921], + [13121,974918], + [13123,28293], + [13125,3104], + [13127,80970], + [13129,55689], + [13131,25301], + [13133,16153], + [13135,839144], + [13137,43419], + [13139,184401], + [13141,9081], + [13143,28312], + [13145,32580], + [13147,25531], + [13149,11649], + [13151,208224], + [13153,146061], + [13155,9617], + [13157,60857], + [13159,13648], + [13161,15198], + [13163,16363], + [13165,9116], + [13167,10016], + [13169,28623], + [13171,18027], + [13173,10463], + [13175,47759], + [13177,28710], + [13179,64333], + [13181,7762], + [13183,16126], + [13185,114110], + [13187,30732], + [13189,21630], + [13191,13882], + [13193,14306], + [13195,28026], + [13197,8687], + [13199,21347], + [13201,6009], + [13205,23086], + [13207,26375], + [13209,8891], + [13211,17806], + [13213,39370], + [13215,199051], + [13217,101000], + [13219,33503], + [13221,14505], + [13223,144756], + [13225,27680], + [13227,29282], + [13229,18915], + [13231,17766], + [13233,41131], + [13235,11702], + [13237,21176], + [13239,2410], + [13241,16322], + [13243,7304], + [13245,201589], + [13247,85556], + [13249,5022], + [13251,14170], + [13253,8869], + [13255,63680], + [13257,25735], + [13259,6119], + [13261,31601], + [13263,6614], + [13265,1675], + [13267,25478], + [13269,8358], + [13271,16398], + [13273,9227], + [13275,44560], + [13277,41006], + [13279,27194], + [13281,10560], + [13283,6790], + [13285,68304], + [13287,8441], + [13289,8548], + [13291,21330], + [13293,26572], + [13295,68478], + [13297,84968], + [13299,35928], + [13301,5546], + [13303,20797], + [13305,30333], + [13307,2767], + [13309,7920], + [13311,27633], + [13313,103158], + [13315,9034], + [13317,10091], + [13319,9480], + [13321,21365], + [15001,189118], + [15003,976299], + [15005,89], + [15007,68573], + [15009,158693], + [16001,408915], + [16003,3907], + [16005,83724], + [16007,5890], + [16009,9123], + [16011,45517], + [16013,21096], + [16015,6792], + [16017,40342], + [16019,106762], + [16021,10807], + [16023,2760], + [16025,1087], + [16027,193620], + [16029,6760], + [16031,23229], + [16033,875], + [16035,8577], + [16037,4328], + [16039,26270], + [16041,12798], + [16043,12954], + [16045,16625], + [16047,15212], + [16049,16438], + [16051,26631], + [16053,22523], + [16055,142071], + [16057,38072], + [16059,7766], + [16061,3819], + [16063,5252], + [16065,37650], + [16067,20106], + [16069,39492], + [16071,4216], + [16073,11402], + [16075,22669], + [16077,7803], + [16079,12710], + [16081,10088], + [16083,78424], + [16085,9538], + [16087,10033], + [17001,67139], + [17003,7716], + [17005,17532], + [17007,53754], + [17009,6888], + [17011,34337], + [17013,4985], + [17015,15113], + [17017,13424], + [17019,204099], + [17021,34517], + [17023,16258], + [17025,13710], + [17027,37911], + [17029,53299], + [17031,5237174], + [17033,19582], + [17035,10945], + [17037,104312], + [17039,16493], + [17041,19890], + [17043,928274], + [17045,18152], + [17047,6720], + [17049,34263], + [17051,22148], + [17053,13877], + [17055,39851], + [17057,36586], + [17059,5391], + [17061,13655], + [17063,50156], + [17065,8387], + [17067,18826], + [17069,4277], + [17071,7042], + [17073,50251], + [17075,29264], + [17077,58993], + [17079,9664], + [17081,38650], + [17083,22670], + [17085,22533], + [17087,12860], + [17089,521000], + [17091,112952], + [17093,118247], + [17095,52271], + [17097,702159], + [17099,112907], + [17101,16723], + [17103,35202], + [17105,38508], + [17107,30333], + [17109,32538], + [17111,308170], + [17113,172523], + [17115,110105], + [17117,47047], + [17119,268027], + [17121,39006], + [17123,12255], + [17125,14318], + [17127,15061], + [17129,12690], + [17131,16163], + [17133,33264], + [17135,29611], + [17137,35321], + [17139,14866], + [17141,52790], + [17143,187192], + [17145,21838], + [17147,16502], + [17149,16233], + [17151,4454], + [17153,5961], + [17155,5909], + [17157,33068], + [17159,16134], + [17161,147589], + [17163,268614], + [17165,24910], + [17167,199320], + [17169,7455], + [17171,5286], + [17173,22210], + [17175,5742], + [17177,46884], + [17179,136112], + [17181,17609], + [17183,80823], + [17185,11677], + [17187,17739], + [17189,14598], + [17191,16651], + [17193,14522], + [17195,57764], + [17197,682429], + [17199,66759], + [17201,292049], + [17203,38836], + [18001,34403], + [18003,360641], + [18005,78914], + [18007,8822], + [18009,12525], + [18011,58999], + [18013,15047], + [18015,20114], + [18017,38769], + [18019,111870], + [18021,26785], + [18023,32909], + [18025,10670], + [18027,32111], + [18029,49724], + [18031,26020], + [18033,42284], + [18035,116950], + [18037,42071], + [18039,199084], + [18041,23950], + [18043,75252], + [18045,17119], + [18047,23024], + [18049,20635], + [18051,33524], + [18053,69118], + [18055,32928], + [18057,289599], + [18059,70567], + [18061,38998], + [18063,150557], + [18065,49113], + [18067,82807], + [18069,36975], + [18071,42999], + [18073,33489], + [18075,21346], + [18077,32450], + [18079,28139], + [18081,143442], + [18083,37967], + [18085,77747], + [18087,37653], + [18089,493345], + [18091,111290], + [18093,46101], + [18095,130167], + [18097,919453], + [18099,46932], + [18101,10312], + [18103,36536], + [18105,141274], + [18107,38175], + [18109,69177], + [18111,14046], + [18113,47213], + [18115,6063], + [18117,19738], + [18119,21379], + [18121,17127], + [18123,19369], + [18125,12679], + [18127,165712], + [18129,25613], + [18131,13014], + [18133,37704], + [18135,25848], + [18137,28435], + [18139,17107], + [18141,266373], + [18143,23716], + [18145,44274], + [18147,20784], + [18149,23155], + [18151,34184], + [18153,21205], + [18155,10441], + [18157,178429], + [18159,15655], + [18161,7351], + [18163,181097], + [18165,15921], + [18167,108437], + [18169,32386], + [18171,8385], + [18173,60320], + [18175,27923], + [18177,68220], + [18179,27696], + [18181,24462], + [18183,33332], + [19001,7468], + [19003,3909], + [19005,14136], + [19007,12706], + [19009,5865], + [19011,25836], + [19013,131794], + [19015,26137], + [19017,24491], + [19019,20998], + [19021,20562], + [19023,14977], + [19025,9909], + [19027,20651], + [19029,13699], + [19031,18340], + [19033,43692], + [19035,11957], + [19037,12282], + [19039,9341], + [19041,16540], + [19043,17948], + [19045,48700], + [19047,17323], + [19049,72176], + [19051,8707], + [19053,8237], + [19055,17563], + [19057,40222], + [19059,16924], + [19061,95128], + [19063,9920], + [19065,20760], + [19067,16097], + [19069,10509], + [19071,7144], + [19073,9182], + [19075,12440], + [19077,10759], + [19079,15316], + [19081,11179], + [19083,17358], + [19085,14475], + [19087,19989], + [19089,9546], + [19091,9719], + [19093,7043], + [19095,16177], + [19097,19677], + [19099,36524], + [19101,17215], + [19103,136783], + [19105,20592], + [19107,10427], + [19109,15406], + [19111,35531], + [19113,215312], + [19115,11355], + [19117,8768], + [19119,11757], + [19121,15638], + [19123,22393], + [19125,33266], + [19127,41007], + [19129,14873], + [19131,10711], + [19133,9089], + [19135,8073], + [19137,10540], + [19139,42860], + [19141,14154], + [19143,6203], + [19145,15689], + [19147,9275], + [19149,24822], + [19151,7141], + [19153,444302], + [19155,92906], + [19157,18710], + [19159,5029], + [19161,10161], + [19163,168266], + [19165,12020], + [19167,34269], + [19169,91730], + [19171,17501], + [19173,6262], + [19175,12580], + [19177,7449], + [19179,35425], + [19181,46883], + [19183,21903], + [19185,6326], + [19187,37313], + [19189,10590], + [19191,21037], + [19193,102290], + [19195,7501], + [19197,13021], + [20001,13294], + [20003,7918], + [20005,16774], + [20007,4872], + [20009,27537], + [20011,14874], + [20013,9865], + [20015,65662], + [20017,2742], + [20019,3561], + [20021,21186], + [20023,2667], + [20025,2165], + [20027,8501], + [20029,9412], + [20031,8468], + [20033,1910], + [20035,36251], + [20037,39313], + [20039,2883], + [20041,19701], + [20043,7887], + [20045,113215], + [20047,2970], + [20049,2661], + [20051,29074], + [20053,6459], + [20055,37134], + [20057,34765], + [20059,25817], + [20061,37886], + [20063,2765], + [20065,2584], + [20067,7832], + [20069,5966], + [20071,1268], + [20073,6426], + [20075,2663], + [20077,5863], + [20079,34782], + [20081,4214], + [20083,1929], + [20085,13399], + [20087,18877], + [20089,3057], + [20091,559388], + [20093,3982], + [20095,7824], + [20097,2512], + [20099,21169], + [20101,1683], + [20103,77626], + [20105,3178], + [20107,9485], + [20109,2789], + [20111,33534], + [20113,29181], + [20115,12373], + [20117,10021], + [20119,4381], + [20121,32669], + [20123,6301], + [20125,34476], + [20127,5850], + [20129,3130], + [20131,10067], + [20133,16419], + [20135,3079], + [20137,5587], + [20139,16176], + [20141,3805], + [20143,6028], + [20145,6862], + [20147,5522], + [20149,22332], + [20151,9764], + [20153,2507], + [20155,64212], + [20157,4825], + [20159,9994], + [20161,77408], + [20163,5219], + [20165,3209], + [20167,6992], + [20169,55896], + [20171,4889], + [20173,504112], + [20175,23400], + [20177,178943], + [20179,2491], + [20181,6121], + [20183,3753], + [20185,4352], + [20187,2154], + [20189,5753], + [20191,23635], + [20193,7931], + [20195,2941], + [20197,6988], + [20199,1523], + [20201,5729], + [20203,2227], + [20205,9124], + [20207,3275], + [20209,159471], + [21001,18929], + [21003,20239], + [21005,21657], + [21007,8288], + [21009,42607], + [21011,11781], + [21013,28295], + [21015,122986], + [21017,19963], + [21019,49253], + [21021,28978], + [21023,8451], + [21025,13608], + [21027,20072], + [21029,75925], + [21031,12728], + [21033,12988], + [21035,38021], + [21037,90887], + [21039,5033], + [21041,10837], + [21043,27639], + [21045,16023], + [21047,74914], + [21049,35695], + [21051,21525], + [21053,10269], + [21055,9223], + [21057,6864], + [21059,97879], + [21061,12077], + [21063,7634], + [21065,14499], + [21067,305303], + [21069,14541], + [21071,39138], + [21073,49420], + [21075,6563], + [21077,8536], + [21079,17017], + [21081,24507], + [21083,37516], + [21085,25797], + [21087,11282], + [21089,36673], + [21091,8643], + [21093,108175], + [21095,28673], + [21097,18600], + [21099,18404], + [21101,46422], + [21103,15326], + [21105,4735], + [21107,46619], + [21109,13312], + [21111,751377], + [21113,49465], + [21115,23411], + [21117,161320], + [21119,16108], + [21121,31502], + [21123,14061], + [21125,59480], + [21127,15896], + [21129,7584], + [21131,11141], + [21133,24020], + [21135,13763], + [21137,24424], + [21139,9437], + [21141,26711], + [21143,8449], + [21145,65631], + [21147,18054], + [21149,9490], + [21151,85390], + [21153,13068], + [21155,19898], + [21157,31255], + [21159,12742], + [21161,17467], + [21163,29264], + [21165,6335], + [21167,21314], + [21169,9967], + [21171,10840], + [21173,26865], + [21175,13533], + [21177,31388], + [21179,44407], + [21181,7008], + [21183,24013], + [21185,62063], + [21187,10750], + [21189,4684], + [21191,14542], + [21193,28317], + [21195,64587], + [21197,12479], + [21199,63505], + [21201,2216], + [21203,17064], + [21205,23801], + [21207,17597], + [21209,48990], + [21211,43619], + [21213,17552], + [21215,17437], + [21217,25076], + [21219,12597], + [21221,14419], + [21223,8851], + [21225,15083], + [21227,117252], + [21229,11822], + [21231,20818], + [21233,13455], + [21235,35782], + [21237,7194], + [21239,25074], + [22001,61984], + [22003,25632], + [22005,112203], + [22007,23067], + [22009,41588], + [22011,36343], + [22013,14194], + [22015,123130], + [22017,257364], + [22019,194506], + [22021,10046], + [22023,6620], + [22025,10246], + [22027,16872], + [22029,20495], + [22031,27022], + [22033,442980], + [22035,7577], + [22037,19862], + [22039,33751], + [22041,20572], + [22043,22379], + [22045,73783], + [22047,33331], + [22049,16265], + [22051,434559], + [22053,31448], + [22055,227197], + [22057,97177], + [22059,14854], + [22061,47090], + [22063,131843], + [22065,12211], + [22067,27377], + [22069,39337], + [22071,370080], + [22073,155244], + [22075,23837], + [22077,22670], + [22079,132057], + [22081,9074], + [22083,20919], + [22085,24326], + [22087,41489], + [22089,52432], + [22091,10978], + [22093,21638], + [22095,44728], + [22097,83464], + [22099,52657], + [22101,53545], + [22103,239139], + [22105,123637], + [22107,4999], + [22109,111720], + [22111,22525], + [22113,58672], + [22115,54123], + [22117,46709], + [22119,40905], + [22121,24146], + [22123,11499], + [22125,15463], + [22127,15101], + [23001,107495], + [23003,70771], + [23005,283837], + [23007,30651], + [23009,54510], + [23011,121607], + [23013,39621], + [23015,34169], + [23017,57471], + [23019,153372], + [23021,17263], + [23023,35122], + [23025,51810], + [23027,38938], + [23029,32551], + [23031,198913], + [24001,73962], + [24003,550636], + [24005,818583], + [24009,89722], + [24011,32643], + [24013,167030], + [24015,101767], + [24017,150689], + [24019,32475], + [24021,239770], + [24023,29954], + [24025,248585], + [24027,299552], + [24029,19977], + [24031,1007488], + [24033,882851], + [24035,48512], + [24037,108831], + [24039,26042], + [24041,37991], + [24043,149057], + [24045,100597], + [24047,51579], + [24510,623387], + [25001,214787], + [25003,130154], + [25005,551250], + [25007,16829], + [25009,757162], + [25011,71631], + [25013,466788], + [25015,160327], + [25017,1541428], + [25019,10300], + [25021,682754], + [25023,499495], + [25025,749957], + [25027,806765], + [26001,10570], + [26003,9442], + [26005,111448], + [26007,29161], + [26009,23246], + [26011,15497], + [26013,8721], + [26015,59011], + [26017,106930], + [26019,17331], + [26021,156421], + [26023,43769], + [26025,134605], + [26027,51787], + [26029,26162], + [26031,25743], + [26033,38957], + [26035,30792], + [26037,76127], + [26039,13946], + [26041,36833], + [26043,26165], + [26045,107902], + [26047,32792], + [26049,418054], + [26051,25530], + [26053,16037], + [26055,89170], + [26057,41955], + [26059,46255], + [26061,36655], + [26063,32438], + [26065,282631], + [26067,63873], + [26069,25442], + [26071,11562], + [26073,70571], + [26075,159908], + [26077,255085], + [26079,17090], + [26081,615122], + [26083,2166], + [26085,11458], + [26087,88133], + [26089,21365], + [26091,98978], + [26093,182734], + [26095,6475], + [26097,11066], + [26099,848752], + [26101,24659], + [26103,67810], + [26105,28643], + [26107,43457], + [26109,23716], + [26111,83650], + [26113,14990], + [26115,150737], + [26117,63069], + [26119,9517], + [26121,170087], + [26123,47859], + [26125,1221410], + [26127,26276], + [26129,21365], + [26131,6411], + [26133,23319], + [26135,8576], + [26137,24014], + [26139,270411], + [26141,13077], + [26143,24161], + [26145,198250], + [26147,160544], + [26149,60938], + [26151,42305], + [26153,8347], + [26155,69299], + [26157,54702], + [26159,75223], + [26161,351333], + [26163,1794073], + [26165,32519], + [27001,16044], + [27003,336135], + [27005,32986], + [27007,45133], + [27009,38672], + [27011,5134], + [27013,64968], + [27015,25410], + [27017,35265], + [27019,93859], + [27021,28405], + [27023,12117], + [27025,53458], + [27027,60179], + [27029,8676], + [27031,5180], + [27033,11575], + [27035,62789], + [27037,404749], + [27039,20267], + [27041,36286], + [27043,14178], + [27045,20825], + [27047,31029], + [27049,46148], + [27051,5928], + [27053,1184770], + [27055,18767], + [27057,20454], + [27059,38140], + [27061,45145], + [27063,10308], + [27065,15967], + [27067,42374], + [27069,4497], + [27071,13157], + [27073,7120], + [27075,10794], + [27077,3946], + [27079,27659], + [27081,5755], + [27083,25624], + [27085,35942], + [27087,5505], + [27089,9469], + [27091,20456], + [27093,23039], + [27095,25627], + [27097,33094], + [27099,39421], + [27101,8573], + [27103,33016], + [27105,21726], + [27107,6605], + [27109,146931], + [27111,57220], + [27113,14112], + [27115,29199], + [27117,9397], + [27119,31505], + [27121,10892], + [27123,521356], + [27125,4061], + [27127,15819], + [27129,15282], + [27131,64442], + [27133,9481], + [27135,15510], + [27137,200329], + [27139,135166], + [27141,89452], + [27143,15071], + [27145,151881], + [27147,36307], + [27149,9736], + [27151,9636], + [27153,24656], + [27155,3405], + [27157,21539], + [27159,13606], + [27161,19172], + [27163,243733], + [27165,11116], + [27167,6590], + [27169,51342], + [27171,127257], + [27173,10149], + [28001,32175], + [28003,37201], + [28005,12931], + [28007,19149], + [28009,8644], + [28011,33988], + [28013,14830], + [28015,10401], + [28017,17497], + [28019,8422], + [28021,9354], + [28023,16532], + [28025,20383], + [28027,25613], + [28029,29022], + [28031,19442], + [28033,166356], + [28035,76444], + [28037,7903], + [28039,22906], + [28041,14338], + [28043,21620], + [28045,45231], + [28047,193447], + [28049,247881], + [28051,18920], + [28053,9213], + [28055,1403], + [28057,23300], + [28059,139890], + [28061,16553], + [28063,7679], + [28065,12074], + [28067,68326], + [28069,10411], + [28071,50182], + [28073,58083], + [28075,80253], + [28077,12666], + [28079,23194], + [28081,84785], + [28083,30788], + [28085,34837], + [28087,59595], + [28089,98004], + [28091,26331], + [28093,36543], + [28095,36416], + [28097,10599], + [28099,29714], + [28101,21496], + [28103,11150], + [28105,48808], + [28107,34426], + [28109,54996], + [28111,11993], + [28113,40086], + [28115,30301], + [28117,25351], + [28119,7800], + [28121,145784], + [28123,28331], + [28125,4785], + [28127,27413], + [28129,16342], + [28131,18042], + [28133,28404], + [28135,15040], + [28137,28532], + [28139,21904], + [28141,19606], + [28143,10430], + [28145,27329], + [28147,15073], + [28149,48211], + [28151,50012], + [28153,20612], + [28155,10078], + [28157,9459], + [28159,18973], + [28161,12391], + [28163,28336], + [29001,25668], + [29003,17307], + [29005,5514], + [29007,25527], + [29009,35321], + [29011,12296], + [29013,16619], + [29015,18988], + [29017,12447], + [29019,168674], + [29021,89906], + [29023,42988], + [29025,9093], + [29027,44380], + [29029,44175], + [29031,77030], + [29033,9078], + [29035,6270], + [29037,100418], + [29039,13909], + [29041,7685], + [29043,79654], + [29045,6966], + [29047,227568], + [29049,20558], + [29051,76475], + [29053,17532], + [29055,24757], + [29057,7561], + [29059,16701], + [29061,8299], + [29063,12786], + [29065,15620], + [29067,13570], + [29069,31841], + [29071,101348], + [29073,14914], + [29075,6764], + [29077,280365], + [29079,10329], + [29081,8722], + [29083,22201], + [29085,9443], + [29087,4679], + [29089,10201], + [29091,40547], + [29093,10556], + [29095,677376], + [29097,115741], + [29099,219822], + [29101,54324], + [29103,4089], + [29105,35451], + [29107,33064], + [29109,38369], + [29111,10116], + [29113,53285], + [29115,12475], + [29117,14995], + [29119,22966], + [29121,15564], + [29123,12379], + [29125,9043], + [29127,28740], + [29129,3708], + [29131,24581], + [29133,14260], + [29135,15675], + [29137,8688], + [29139,11975], + [29141,20075], + [29143,18491], + [29145,58627], + [29147,23311], + [29149,10965], + [29151,13821], + [29153,9584], + [29155,18086], + [29157,18996], + [29159,42293], + [29161,45220], + [29163,18558], + [29165,92110], + [29167,31084], + [29169,53453], + [29171,4944], + [29173,10219], + [29175,25325], + [29177,23056], + [29179,6553], + [29181,14021], + [29183,369057], + [29185,9529], + [29186,17858], + [29187,65798], + [29189,1000502], + [29195,23479], + [29197,4386], + [29199,4865], + [29201,39144], + [29203,8338], + [29205,6217], + [29207,29814], + [29209,31890], + [29211,6555], + [29213,52888], + [29215,25777], + [29217,20801], + [29219,32710], + [29221,25079], + [29223,13395], + [29225,36384], + [29227,2081], + [29229,18629], + [29510,319363], + [30001,9356], + [30003,12996], + [30005,6656], + [30007,5763], + [30009,10135], + [30011,1157], + [30013,81596], + [30015,5930], + [30017,11795], + [30019,1775], + [30021,9229], + [30023,9213], + [30025,3026], + [30027,11386], + [30029,91576], + [30031,92506], + [30033,1244], + [30035,13667], + [30037,827], + [30039,3048], + [30041,16390], + [30043,11317], + [30045,2004], + [30047,29014], + [30049,64722], + [30051,2392], + [30053,19482], + [30055,1700], + [30057,7664], + [30059,1887], + [30061,4121], + [30063,111016], + [30065,4692], + [30067,15590], + [30069,510], + [30071,4116], + [30073,6153], + [30075,1753], + [30077,7075], + [30079,1140], + [30081,40563], + [30083,10779], + [30085,10850], + [30087,9355], + [30089,11366], + [30091,3549], + [30093,34451], + [30095,9187], + [30097,3582], + [30099,6056], + [30101,5216], + [30103,722], + [30105,7497], + [30107,2090], + [30109,1034], + [30111,151606], + [31001,31369], + [31003,6550], + [31005,479], + [31007,685], + [31009,498], + [31011,5430], + [31013,11265], + [31015,2060], + [31017,3052], + [31019,47668], + [31021,6679], + [31023,8251], + [31025,25124], + [31027,8697], + [31029,4020], + [31031,5731], + [31033,10073], + [31035,6385], + [31037,10568], + [31039,9089], + [31041,10847], + [31043,20744], + [31045,9133], + [31047,24022], + [31049,1961], + [31051,5887], + [31053,36592], + [31055,531298], + [31057,1981], + [31059,5715], + [31061,3182], + [31063,2719], + [31065,4884], + [31067,21653], + [31069,1983], + [31071,1995], + [31073,2080], + [31075,625], + [31077,2464], + [31079,60187], + [31081,9040], + [31083,3418], + [31085,919], + [31087,2878], + [31089,10376], + [31091,718], + [31093,6298], + [31095,7533], + [31097,5185], + [31099,6508], + [31101,8222], + [31103,798], + [31105,3803], + [31107,8573], + [31109,293667], + [31111,35983], + [31113,785], + [31115,605], + [31117,510], + [31119,35103], + [31121,7840], + [31123,4935], + [31125,3673], + [31127,7150], + [31129,4430], + [31131,15697], + [31133,2791], + [31135,2932], + [31137,9213], + [31139,7187], + [31141,32693], + [31143,5269], + [31145,11044], + [31147,8283], + [31149,1426], + [31151,14435], + [31153,165720], + [31155,20799], + [31157,36911], + [31159,16897], + [31161,5329], + [31163,3078], + [31165,1323], + [31167,6090], + [31169,5144], + [31171,701], + [31173,6926], + [31175,4216], + [31177,20305], + [31179,9506], + [31181,3734], + [31183,797], + [31185,13841], + [32001,24278], + [32003,1996290], + [32005,46936], + [32007,51053], + [32009,793], + [32011,1992], + [32013,17107], + [32015,5932], + [32017,5376], + [32019,50998], + [32021,4674], + [32023,43632], + [32027,6757], + [32029,3835], + [32031,428377], + [32033,10018], + [32510,54362], + [33001,60327], + [33003,47657], + [33005,76802], + [33007,31973], + [33009,89251], + [33011,402715], + [33013,146762], + [33015,297782], + [33017,124445], + [33019,43209], + [34001,275732], + [34003,921035], + [34005,451256], + [34007,512827], + [34009,96387], + [34011,157268], + [34013,788942], + [34015,289912], + [34017,658909], + [34019,126731], + [34021,370419], + [34023,824753], + [34025,629037], + [34027,497447], + [34029,580589], + [34031,506161], + [34033,65446], + [34035,328588], + [34037,147045], + [34039,545878], + [34041,107733], + [35001,672335], + [35003,3637], + [35005,65688], + [35006,27379], + [35007,13239], + [35009,50652], + [35011,1953], + [35013,214050], + [35015,54358], + [35017,29208], + [35019,4593], + [35021,704], + [35023,4776], + [35025,66156], + [35027,20188], + [35028,18169], + [35029,24906], + [35031,72327], + [35033,4685], + [35035,65943], + [35037,8807], + [35039,40167], + [35041,20300], + [35043,135246], + [35045,129677], + [35047,29058], + [35049,146169], + [35051,11854], + [35053,17464], + [35055,32718], + [35057,16094], + [35059,4397], + [35061,76693], + [36001,306206], + [36003,48226], + [36005,1417864], + [36007,198783], + [36009,79375], + [36011,79516], + [36013,133333], + [36015,89197], + [36017,49888], + [36019,81744], + [36021,62473], + [36023,49024], + [36025,47219], + [36027,297423], + [36029,920935], + [36031,38884], + [36033,51811], + [36035,54869], + [36037,59716], + [36039,48601], + [36041,4804], + [36043,64232], + [36045,121449], + [36047,2579267], + [36049,27184], + [36051,64835], + [36053,72429], + [36055,748524], + [36057,49828], + [36059,1352131], + [36061,1630367], + [36063,214782], + [36065,233975], + [36067,467646], + [36069,108631], + [36071,374183], + [36073,42392], + [36075,121473], + [36077,61761], + [36079,99723], + [36081,2284413], + [36083,159564], + [36085,471593], + [36087,318065], + [36089,112444], + [36091,222586], + [36093,155168], + [36095,32062], + [36097,18483], + [36099,35347], + [36101,98948], + [36103,1499272], + [36105,77015], + [36107,50281], + [36109,103067], + [36111,181689], + [36113,65425], + [36115,62980], + [36117,93062], + [36119,962190], + [36121,41714], + [36123,25338], + [37001,153471], + [37003,36940], + [37005,10956], + [37007,26322], + [37009,26957], + [37011,17575], + [37013,47436], + [37015,20502], + [37017,34866], + [37019,112081], + [37021,243741], + [37023,89755], + [37025,184232], + [37027,82096], + [37029,10001], + [37031,67776], + [37033,23051], + [37035,154815], + [37037,64590], + [37039,27032], + [37041,14712], + [37043,10662], + [37045,97314], + [37047,57534], + [37049,105331], + [37051,330224], + [37053,24034], + [37055,34426], + [37057,163112], + [37059,41300], + [37061,59530], + [37063,282996], + [37065,55695], + [37067,357937], + [37069,61417], + [37071,207963], + [37073,11891], + [37075,8711], + [37077,57587], + [37079,21224], + [37081,500831], + [37083,53749], + [37085,122258], + [37087,58665], + [37089,107837], + [37091,24523], + [37093,50516], + [37095,5692], + [37097,162745], + [37099,40679], + [37101,174521], + [37103,10069], + [37105,59318], + [37107,59164], + [37109,78714], + [37111,45019], + [37113,33821], + [37115,20902], + [37117,23820], + [37119,968204], + [37121,15327], + [37123,27542], + [37125,90216], + [37127,95206], + [37129,209155], + [37131,21291], + [37133,190719], + [37135,137946], + [37137,13030], + [37139,40391], + [37141,53744], + [37143,13587], + [37145,39176], + [37147,173023], + [37149,20255], + [37151,142325], + [37153,46367], + [37155,135684], + [37157,92723], + [37159,137580], + [37161,67215], + [37163,63763], + [37165,36091], + [37167,60479], + [37169,46737], + [37171,73346], + [37173,14056], + [37175,32852], + [37177,4120], + [37179,208216], + [37181,45105], + [37183,952982], + [37185,20758], + [37187,12692], + [37189,52045], + [37191,124547], + [37193,68927], + [37195,81451], + [37197,38165], + [37199,17623], + [38001,2334], + [38003,10997], + [38005,6767], + [38007,909], + [38009,6598], + [38011,3211], + [38013,2182], + [38015,85981], + [38017,156793], + [38019,3920], + [38021,5220], + [38023,2248], + [38025,3952], + [38027,2350], + [38029,3476], + [38031,3380], + [38033,1807], + [38035,67542], + [38037,2349], + [38039,2344], + [38041,2540], + [38043,2448], + [38045,4083], + [38047,1944], + [38049,5801], + [38051,2746], + [38053,7975], + [38055,9383], + [38057,8474], + [38059,28078], + [38061,8746], + [38063,3058], + [38065,1846], + [38067,7220], + [38069,4445], + [38071,11583], + [38073,5472], + [38075,2553], + [38077,16224], + [38079,14397], + [38081,3893], + [38083,1284], + [38085,4328], + [38087,766], + [38089,26899], + [38091,1951], + [38093,20972], + [38095,2291], + [38097,8068], + [38099,11026], + [38101,65559], + [38103,4234], + [38105,26733], + [39001,28300], + [39003,105233], + [39005,53233], + [39007,100227], + [39009,64590], + [39011,45793], + [39013,69700], + [39015,44294], + [39017,370432], + [39019,28540], + [39021,39561], + [39023,137115], + [39025,199440], + [39027,41803], + [39029,106585], + [39031,36820], + [39033,42778], + [39035,1266210], + [39037,52508], + [39039,38797], + [39041,181148], + [39043,76404], + [39045,147272], + [39047,28754], + [39049,1198608], + [39051,42324], + [39053,30869], + [39055,93776], + [39057,164306], + [39059,39871], + [39061,802318], + [39063,75443], + [39065,31626], + [39067,15684], + [39069,27808], + [39071,42953], + [39073,29302], + [39075,43125], + [39077,59160], + [39079,32876], + [39081,68525], + [39083,60740], + [39085,229485], + [39087,62139], + [39089,167568], + [39091,45409], + [39093,301637], + [39095,436673], + [39097,42982], + [39099,235657], + [39101,66267], + [39103,173603], + [39105,23571], + [39107,40700], + [39109,102908], + [39111,14513], + [39113,534168], + [39115,14943], + [39117,34831], + [39119,85788], + [39121,14650], + [39123,41240], + [39125,19250], + [39127,35982], + [39129,56227], + [39131,28496], + [39133,161350], + [39135,41810], + [39137,34191], + [39139,122625], + [39141,77355], + [39143,60454], + [39145,78604], + [39147,56084], + [39149,49109], + [39151,374863], + [39153,540716], + [39155,207182], + [39157,92413], + [39159,52724], + [39161,28618], + [39163,13221], + [39165,217255], + [39167,61424], + [39169,114976], + [39171,37516], + [39173,128403], + [39175,22538], + [40001,22313], + [40003,5663], + [40005,14025], + [40007,5583], + [40009,23062], + [40011,9786], + [40013,43434], + [40015,29740], + [40017,122495], + [40019,47993], + [40021,47964], + [40023,15163], + [40025,2383], + [40027,266014], + [40029,5881], + [40031,126293], + [40033,6149], + [40035,14757], + [40037,70711], + [40039,28472], + [40041,41618], + [40043,4805], + [40045,4077], + [40047,61270], + [40049,27328], + [40051,53018], + [40053,4517], + [40055,6050], + [40057,2894], + [40059,3706], + [40061,12760], + [40063,13646], + [40065,26216], + [40067,6342], + [40069,10960], + [40071,45695], + [40073,14998], + [40075,9348], + [40077,10987], + [40079,50055], + [40081,34159], + [40083,43048], + [40085,9557], + [40087,35580], + [40089,33309], + [40091,20193], + [40093,7691], + [40095,16000], + [40097,41145], + [40099,13618], + [40101,70518], + [40103,11517], + [40105,10597], + [40107,12325], + [40109,742727], + [40111,39560], + [40113,47455], + [40115,32122], + [40117,16450], + [40119,78507], + [40121,45516], + [40123,38068], + [40125,70493], + [40127,11232], + [40129,3763], + [40131,88080], + [40133,25387], + [40135,41630], + [40137,44886], + [40139,21497], + [40141,7835], + [40143,614962], + [40145,74981], + [40147,51584], + [40149,11645], + [40151,8834], + [40153,20656], + [41001,15994], + [41003,86368], + [41005,382766], + [41007,37377], + [41009,49182], + [41011,62634], + [41013,20598], + [41015,22249], + [41017,161343], + [41019,106865], + [41021,1952], + [41023,7326], + [41025,7247], + [41027,22583], + [41029,205768], + [41031,21817], + [41033,82732], + [41035,65923], + [41037,7715], + [41039,354486], + [41041,46145], + [41043,118242], + [41045,30635], + [41047,319603], + [41049,11211], + [41051,758514], + [41053,76179], + [41055,1744], + [41057,25285], + [41059,76973], + [41061,25772], + [41063,6799], + [41065,25370], + [41067,547298], + [41069,1409], + [41071,99816], + [42001,101228], + [42003,1230870], + [42005,68069], + [42007,170095], + [42009,49580], + [42011,413522], + [42013,126593], + [42015,62969], + [42017,625572], + [42019,184854], + [42021,141518], + [42023,4962], + [42025,64810], + [42027,155909], + [42029,506283], + [42031,39445], + [42033,81349], + [42035,39696], + [42037,67033], + [42039,87754], + [42041,239268], + [42043,269940], + [42045,560782], + [42047,31578], + [42049,281503], + [42051,135254], + [42053,7587], + [42055,151477], + [42057,14750], + [42059,37968], + [42061,45990], + [42063,88246], + [42065,44775], + [42067,24593], + [42069,214175], + [42071,526870], + [42073,89860], + [42075,135468], + [42077,354920], + [42079,321154], + [42081,117188], + [42083,43099], + [42085,115641], + [42087,46738], + [42089,168775], + [42091,808912], + [42093,18425], + [42095,299171], + [42097,94444], + [42099,45877], + [42101,1551944], + [42103,56361], + [42105,17554], + [42107,147023], + [42109,39916], + [42111,77051], + [42113,6396], + [42115,42971], + [42117,42478], + [42119,45155], + [42121,54211], + [42123,41262], + [42125,208230], + [42127,52204], + [42129,362891], + [42131,28365], + [42133,437483], + [44001,49214], + [44003,164608], + [44005,83119], + [44007,629597], + [44009,126223], + [45001,25019], + [45003,162938], + [45005,9984], + [45007,189044], + [45009,15709], + [45011,22357], + [45013,167502], + [45015,188980], + [45017,14871], + [45019,364921], + [45021,55809], + [45023,32686], + [45025,46105], + [45027,34343], + [45029,38121], + [45031,68150], + [45033,31529], + [45035,143092], + [45037,26505], + [45039,23403], + [45041,137996], + [45043,60103], + [45045,466326], + [45047,69965], + [45049,20741], + [45051,281567], + [45053,25797], + [45055,62276], + [45057,79326], + [45059,66264], + [45061,18634], + [45063,269770], + [45065,9928], + [45067,32418], + [45069,28237], + [45071,37548], + [45073,74560], + [45075,91443], + [45077,119678], + [45079,393239], + [45081,19903], + [45083,288388], + [45085,107908], + [45087,28201], + [45089,33569], + [45091,234156], + [46003,2760], + [46005,17940], + [46007,3449], + [46009,7023], + [46011,32710], + [46013,37565], + [46015,5291], + [46017,2016], + [46019,10216], + [46021,1405], + [46023,9195], + [46025,3579], + [46027,14047], + [46029,27599], + [46031,4072], + [46033,8316], + [46035,19742], + [46037,5592], + [46039,4352], + [46041,5531], + [46043,2948], + [46045,4011], + [46047,6973], + [46049,2356], + [46051,7249], + [46053,4242], + [46055,1922], + [46057,5901], + [46059,3370], + [46061,3378], + [46063,1304], + [46065,17436], + [46067,7252], + [46069,1428], + [46071,3167], + [46073,2054], + [46075,992], + [46077,5231], + [46079,11741], + [46081,24394], + [46083,48401], + [46085,3778], + [46087,5556], + [46089,2428], + [46091,4630], + [46093,25836], + [46095,2050], + [46097,2298], + [46099,174693], + [46101,6464], + [46102,14039], + [46103,104182], + [46105,3023], + [46107,2338], + [46109,10326], + [46111,2318], + [46115,6636], + [46117,2976], + [46119,1429], + [46121,9904], + [46123,5517], + [46125,8298], + [46127,14801], + [46129,5447], + [46135,22580], + [46137,2879], + [47001,75196], + [47003,45262], + [47005,16414], + [47007,12851], + [47009,123904], + [47011,101061], + [47013,40478], + [47015,13803], + [47017,28652], + [47019,57254], + [47021,39220], + [47023,17052], + [47025,31746], + [47027,7727], + [47029,35455], + [47031,53144], + [47033,14610], + [47035,56894], + [47037,649326], + [47039,11633], + [47041,18859], + [47043,50115], + [47045,38183], + [47047,38671], + [47049,17887], + [47051,40678], + [47053,49625], + [47055,28969], + [47057,22689], + [47059,68692], + [47061,13591], + [47063,62683], + [47065,345693], + [47067,6660], + [47069,26546], + [47071,25963], + [47073,56413], + [47075,18246], + [47077,28014], + [47079,32376], + [47081,24191], + [47083,8400], + [47085,18284], + [47087,11534], + [47089,52231], + [47091,18149], + [47093,440705], + [47095,7720], + [47097,27665], + [47099,42073], + [47101,11941], + [47103,33365], + [47105,49744], + [47107,52365], + [47109,26120], + [47111,22473], + [47113,98493], + [47115,28214], + [47117,30915], + [47119,81981], + [47121,11669], + [47123,45082], + [47125,184671], + [47127,6310], + [47129,21892], + [47131,31306], + [47133,22165], + [47135,7848], + [47137,5037], + [47139,16613], + [47141,73472], + [47143,32328], + [47145,53558], + [47147,66728], + [47149,274124], + [47151,22136], + [47153,14343], + [47155,92231], + [47157,939425], + [47159,19103], + [47161,13315], + [47163,156385], + [47165,165783], + [47167,61509], + [47169,7787], + [47171,18227], + [47173,19103], + [47175,5631], + [47177,39731], + [47179,124775], + [47181,16918], + [47183,34548], + [47185,26017], + [47187,193073], + [47189,118991], + [48001,58036], + [48003,16106], + [48005,87496], + [48007,23462], + [48009,8808], + [48011,1955], + [48013,46415], + [48015,28516], + [48017,7107], + [48019,20595], + [48021,74799], + [48023,3590], + [48025,32474], + [48027,324989], + [48029,1788244], + [48031,10614], + [48033,614], + [48035,18123], + [48037,93114], + [48039,324433], + [48041,200269], + [48043,9262], + [48045,1573], + [48047,7198], + [48049,37755], + [48051,17409], + [48053,43377], + [48055,38684], + [48057,21575], + [48059,13483], + [48061,415370], + [48063,12460], + [48065,6086], + [48067,30023], + [48069,8217], + [48071,36489], + [48073,51261], + [48075,7098], + [48077,10522], + [48079,3021], + [48081,3201], + [48083,8668], + [48085,836789], + [48087,3019], + [48089,20698], + [48091,114808], + [48093,13709], + [48095,4055], + [48097,38675], + [48099,78488], + [48101,1484], + [48103,4527], + [48105,3703], + [48107,6030], + [48109,2315], + [48111,7048], + [48113,2454781], + [48115,13601], + [48117,19327], + [48119,5241], + [48121,708139], + [48123,20365], + [48125,2321], + [48127,10477], + [48129,3645], + [48131,11585], + [48133,18455], + [48135,144455], + [48137,1988], + [48139,153712], + [48141,831126], + [48143,39414], + [48145,17561], + [48147,33576], + [48149,24654], + [48151,3848], + [48153,6349], + [48155,1311], + [48157,625394], + [48159,10639], + [48161,19475], + [48163,17908], + [48165,18284], + [48167,301059], + [48169,6417], + [48171,25152], + [48173,1273], + [48175,7332], + [48177,19915], + [48179,22908], + [48181,121750], + [48183,122995], + [48185,26672], + [48187,139586], + [48189,36269], + [48191,3266], + [48193,8239], + [48195,5523], + [48197,4096], + [48199,55117], + [48201,4262689], + [48203,66242], + [48205,6081], + [48207,5887], + [48209,168478], + [48211,4082], + [48213,78938], + [48215,806725], + [48217,35134], + [48219,23063], + [48221,52154], + [48223,35313], + [48225,23207], + [48227,35482], + [48229,3352], + [48231,87009], + [48233,22004], + [48235,1573], + [48237,9003], + [48239,14267], + [48241,35837], + [48243,2296], + [48245,251458], + [48247,5275], + [48249,41628], + [48251,153374], + [48253,19874], + [48255,14848], + [48257,106533], + [48259,35574], + [48261,444], + [48263,825], + [48265,49686], + [48267,4526], + [48269,271], + [48271,3638], + [48273,32092], + [48275,3729], + [48277,49684], + [48279,13853], + [48281,20052], + [48283,7151], + [48285,19524], + [48287,16504], + [48289,16743], + [48291,76340], + [48293,23645], + [48295,3442], + [48297,11649], + [48299,19256], + [48301,86], + [48303,286076], + [48305,5796], + [48307,8241], + [48309,239292], + [48311,730], + [48313,13727], + [48315,10378], + [48317,4981], + [48319,4040], + [48321,36543], + [48323,55658], + [48325,46817], + [48327,2202], + [48329,147270], + [48331,24105], + [48333,4827], + [48335,9327], + [48337,19474], + [48339,484453], + [48341,22437], + [48343,12707], + [48345,1197], + [48347,65821], + [48349,48138], + [48351,14431], + [48353,14892], + [48355,347848], + [48357,10581], + [48359,2046], + [48361,82889], + [48363,27856], + [48365,23987], + [48367,119477], + [48369,10156], + [48371,15568], + [48373,45512], + [48375,122704], + [48377,7616], + [48379,10933], + [48381,124986], + [48383,3475], + [48385,3353], + [48387,12729], + [48389,13959], + [48391,7252], + [48393,942], + [48395,16448], + [48397,82710], + [48399,10327], + [48401,53778], + [48403,10522], + [48405,8789], + [48407,26946], + [48409,65265], + [48411,5965], + [48413,3258], + [48415,17102], + [48417,3365], + [48419,26059], + [48421,3037], + [48423,214707], + [48425,8545], + [48427,61823], + [48429,9601], + [48431,1187], + [48433,1452], + [48435,3914], + [48437,7842], + [48439,1882399], + [48441,134095], + [48443,921], + [48445,12610], + [48447,1610], + [48449,32634], + [48451,113318], + [48453,1096535], + [48455,14370], + [48457,21484], + [48459,39920], + [48461,3261], + [48463,26715], + [48465,48923], + [48467,52192], + [48469,89067], + [48471,68596], + [48473,44353], + [48475,10825], + [48477,33911], + [48479,259964], + [48481,41064], + [48483,5590], + [48485,131652], + [48487,13272], + [48489,22198], + [48491,456070], + [48493,44356], + [48495,7365], + [48497,60398], + [48499,42444], + [48501,8037], + [48503,18277], + [48505,14269], + [48507,12002], + [49001,6505], + [49003,50201], + [49005,115858], + [49007,21230], + [49009,1094], + [49011,315911], + [49013,19013], + [49015,10938], + [49017,5063], + [49019,9355], + [49021,46642], + [49023,10295], + [49025,7173], + [49027,12454], + [49029,9803], + [49031,1497], + [49033,2256], + [49035,1064489], + [49037,15034], + [49039,27950], + [49041,20659], + [49043,37899], + [49045,59788], + [49047,34644], + [49049,539776], + [49051,25428], + [49053,144216], + [49055,2709], + [49057,236342], + [50001,36796], + [50003,36603], + [50005,31015], + [50007,158493], + [50009,6224], + [50011,48284], + [50013,6967], + [50015,24919], + [50017,28911], + [50019,27153], + [50021,60776], + [50023,59384], + [50025,43974], + [50027,56107], + [51001,33264], + [51003,101476], + [51005,16030], + [51007,12747], + [51009,32436], + [51011,15241], + [51013,221729], + [51015,73576], + [51017,4640], + [51019,75758], + [51021,6695], + [51023,33118], + [51025,17035], + [51027,23813], + [51029,17068], + [51031,54835], + [51033,28954], + [51035,29918], + [51036,7126], + [51037,12395], + [51041,323986], + [51043,14242], + [51045,5138], + [51047,47841], + [51049,9839], + [51051,15712], + [51053,28191], + [51057,11129], + [51059,1121834], + [51061,66591], + [51063,15431], + [51065,25885], + [51067,56299], + [51069,80259], + [51071,17017], + [51073,36834], + [51075,21279], + [51077,15143], + [51079,18816], + [51081,11718], + [51083,35717], + [51085,100344], + [51087,315830], + [51089,53119], + [51091,2234], + [51093,35339], + [51095,69418], + [51097,7009], + [51099,24610], + [51101,15977], + [51103,11125], + [51105,25421], + [51107,338275], + [51109,33499], + [51111,12638], + [51113,13133], + [51115,8910], + [51117,31692], + [51119,10845], + [51121,95671], + [51125,14803], + [51127,19149], + [51131,12218], + [51133,12423], + [51135,15756], + [51137,34280], + [51139,23839], + [51141,18326], + [51143,62903], + [51145,28171], + [51147,23166], + [51149,37119], + [51153,430080], + [51155,34737], + [51157,7405], + [51159,9082], + [51161,92746], + [51163,22373], + [51165,77126], + [51167,28400], + [51169,22959], + [51171,42532], + [51173,31903], + [51175,18504], + [51177,125833], + [51179,133376], + [51181,6839], + [51183,11917], + [51185,44277], + [51187,37865], + [51191,55096], + [51193,17507], + [51195,40899], + [51197,29317], + [51199,65892], + [51510,147528], + [51520,17702], + [51530,6756], + [51540,44601], + [51550,228100], + [51570,17380], + [51580,5845], + [51590,42705], + [51595,5811], + [51600,22892], + [51610,13125], + [51620,8484], + [51630,27186], + [51640,6857], + [51650,137099], + [51660,51355], + [51670,22319], + [51678,7009], + [51680,77285], + [51683,40340], + [51685,15422], + [51690,13486], + [51700,180100], + [51710,246160], + [51720,4135], + [51730,31990], + [51735,12111], + [51740,96465], + [51750,16716], + [51760,210842], + [51770,98098], + [51775,25157], + [51790,23806], + [51800,85251], + [51810,445286], + [51820,21070], + [51830,14508], + [51840,27012], + [53001,18978], + [53003,21908], + [53005,182391], + [53007,73528], + [53009,71764], + [53011,436403], + [53013,3977], + [53015,101649], + [53017,39246], + [53019,7663], + [53021,85844], + [53023,2208], + [53025,91442], + [53027,71792], + [53029,78994], + [53031,29782], + [53033,2009295], + [53035,254306], + [53037,41611], + [53039,20637], + [53041,75440], + [53043,10430], + [53045,60666], + [53047,41213], + [53049,20583], + [53051,12999], + [53053,810928], + [53055,15844], + [53057,117733], + [53059,11198], + [53061,731997], + [53063,475372], + [53065,43466], + [53067,258421], + [53069,3998], + [53071,59341], + [53073,204878], + [53075,46546], + [53077,246428], + [54001,16869], + [54003,106824], + [54005,24356], + [54007,14449], + [54009,23691], + [54011,96819], + [54013,7596], + [54015,9208], + [54017,8295], + [54019,45850], + [54021,8741], + [54023,11818], + [54025,35849], + [54027,23680], + [54029,30435], + [54031,13834], + [54033,69105], + [54035,29264], + [54037,54513], + [54039,192132], + [54041,16450], + [54043,21616], + [54045,36303], + [54047,21314], + [54049,56727], + [54051,32796], + [54053,27193], + [54055,62360], + [54057,27859], + [54059,26159], + [54061,100478], + [54063,13502], + [54065,17409], + [54067,26247], + [54069,43981], + [54071,7470], + [54073,7535], + [54075,8698], + [54077,33900], + [54079,56445], + [54081,79164], + [54083,29390], + [54085,10249], + [54087,14677], + [54089,13835], + [54091,16968], + [54093,7077], + [54095,9035], + [54097,24435], + [54099,41849], + [54101,8981], + [54103,16356], + [54105,5774], + [54107,86593], + [54109,23207], + [55001,20426], + [55003,15840], + [55005,45765], + [55007,15062], + [55009,252761], + [55011,13346], + [55013,15335], + [55015,49649], + [55017,63052], + [55019,34453], + [55021,56446], + [55023,16516], + [55025,503135], + [55027,88202], + [55029,27534], + [55031,43745], + [55033,43786], + [55035,100837], + [55037,4367], + [55039,101823], + [55041,9157], + [55043,50876], + [55045,36754], + [55047,19005], + [55049,23574], + [55051,5888], + [55053,20489], + [55055,84367], + [55057,26769], + [55059,167252], + [55061,20502], + [55063,116531], + [55065,16807], + [55067,19626], + [55069,28486], + [55071,80729], + [55073,134397], + [55075,41345], + [55077,15243], + [55078,4358], + [55079,955237], + [55081,45001], + [55083,37419], + [55085,35656], + [55087,179027], + [55089,87111], + [55091,7373], + [55093,40705], + [55095,43519], + [55097,70410], + [55099,13845], + [55101,194645], + [55103,17804], + [55105,160092], + [55107,14304], + [55109,85051], + [55111,62415], + [55113,16530], + [55115,41504], + [55117,114794], + [55119,20367], + [55121,29305], + [55123,30023], + [55125,21298], + [55127,102945], + [55129,15850], + [55131,132742], + [55133,392669], + [55135,51910], + [55137,24422], + [55139,168545], + [55141,74322], + [56001,37332], + [56003,11765], + [56005,47861], + [56007,15732], + [56009,14025], + [56011,7141], + [56013,41022], + [56015,13642], + [56017,4833], + [56019,8637], + [56021,94704], + [56023,17938], + [56025,78583], + [56027,2476], + [56029,28933], + [56031,8730], + [56033,29528], + [56035,10481], + [56037,45042], + [56039,21709], + [56041,20999], + [56043,8421], + [56045,7074] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2013.json b/data/regional/united-states/demographics/population/us-population-2013.json new file mode 100644 index 0000000..d23d8ba --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2013.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2013.", + "units" : "people", + "year" : "2013", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2013"], + [1001,54695], + [1003,194736], + [1005,26947], + [1007,22503], + [1009,57623], + [1011,10549], + [1013,20372], + [1015,116482], + [1017,34122], + [1019,26014], + [1021,43645], + [1023,13396], + [1025,25118], + [1027,13406], + [1029,14976], + [1031,50647], + [1033,54528], + [1035,12908], + [1037,11253], + [1039,37811], + [1041,13847], + [1043,80674], + [1045,49759], + [1047,41981], + [1049,70905], + [1051,80555], + [1053,37773], + [1055,103865], + [1057,16823], + [1059,31504], + [1061,26684], + [1063,8752], + [1065,15248], + [1067,17130], + [1069,103625], + [1071,52923], + [1073,658727], + [1075,14210], + [1077,92688], + [1079,33575], + [1081,151445], + [1083,88902], + [1085,10658], + [1087,20021], + [1089,346373], + [1091,20105], + [1093,30220], + [1095,94291], + [1097,413929], + [1099,22176], + [1101,227927], + [1103,119539], + [1105,10019], + [1107,19302], + [1109,33563], + [1111,22546], + [1113,59123], + [1115,86029], + [1117,203897], + [1119,13376], + [1121,81497], + [1123,41021], + [1125,200752], + [1127,65749], + [1129,16888], + [1131,11150], + [1133,24183], + [2013,3324], + [2016,5752], + [2020,301081], + [2050,17847], + [2060,952], + [2068,1932], + [2070,4981], + [2090,100898], + [2100,2559], + [2105,"NA"], + [2110,32570], + [2122,56993], + [2130,13682], + [2150,14078], + [2158,7970], + [2164,1663], + [2170,95853], + [2180,9844], + [2185,9776], + [2188,7721], + [2195,3287], + [2198,6446], + [2220,8962], + [2230,"NA"], + [2240,6980], + [2261,9773], + [2275,"NA"], + [2282,651], + [2290,5561], + [4001,72292], + [4003,129332], + [4005,136448], + [4007,52982], + [4009,37419], + [4011,8892], + [4012,20479], + [4013,4006307], + [4015,203026], + [4017,107077], + [4019,994759], + [4021,384258], + [4023,46845], + [4025,214198], + [4027,201810], + [5001,18746], + [5003,21281], + [5005,40976], + [5007,238902], + [5009,37305], + [5011,11120], + [5013,5193], + [5015,27771], + [5017,11347], + [5019,22574], + [5021,15481], + [5023,25638], + [5025,8515], + [5027,24247], + [5029,21071], + [5031,101513], + [5033,61664], + [5035,49731], + [5037,17511], + [5039,7887], + [5041,12489], + [5043,18672], + [5045,119096], + [5047,17900], + [5049,12171], + [5051,97627], + [5053,18035], + [5055,43145], + [5057,22430], + [5059,33506], + [5061,13555], + [5063,36834], + [5065,13400], + [5067,17730], + [5069,73163], + [5071,25901], + [5073,7284], + [5075,17050], + [5077,10012], + [5079,14059], + [5081,12741], + [5083,22011], + [5085,70651], + [5087,15674], + [5089,16442], + [5091,43456], + [5093,44676], + [5095,7690], + [5097,9249], + [5099,8774], + [5101,8054], + [5103,24941], + [5105,10329], + [5107,20443], + [5109,11110], + [5111,24172], + [5113,20344], + [5115,62542], + [5117,8377], + [5119,391068], + [5121,17625], + [5123,27491], + [5125,113276], + [5127,10907], + [5129,7981], + [5131,127067], + [5133,17322], + [5135,17042], + [5137,12422], + [5139,40593], + [5141,16972], + [5143,215525], + [5145,78471], + [5147,7031], + [5149,21779], + [6001,1582936], + [6003,1127], + [6005,36635], + [6007,221768], + [6009,44667], + [6011,21336], + [6013,1095310], + [6015,27830], + [6017,181618], + [6019,953787], + [6021,27866], + [6023,134444], + [6025,177267], + [6027,18377], + [6029,864014], + [6031,150675], + [6033,63855], + [6035,32135], + [6037,10018604], + [6039,151819], + [6041,258856], + [6043,17820], + [6045,87164], + [6047,262712], + [6049,9154], + [6051,13997], + [6053,428382], + [6055,139978], + [6057,97992], + [6059,3113649], + [6061,365822], + [6063,18899], + [6065,2291406], + [6067,1459474], + [6069,57370], + [6071,2086732], + [6073,3216522], + [6075,841270], + [6077,703747], + [6079,275973], + [6081,750345], + [6083,435980], + [6085,1870935], + [6087,269395], + [6089,178445], + [6091,3030], + [6093,43543], + [6095,424384], + [6097,495007], + [6099,524625], + [6101,94702], + [6103,62916], + [6105,13422], + [6107,453663], + [6109,54018], + [6111,840175], + [6113,206650], + [6115,73159], + [8001,469377], + [8003,16200], + [8005,606839], + [8007,12205], + [8009,3655], + [8011,5733], + [8013,309749], + [8014,60065], + [8015,18347], + [8017,1869], + [8019,9008], + [8021,8192], + [8023,3535], + [8025,5321], + [8027,4265], + [8029,30321], + [8031,648049], + [8033,2033], + [8035,305944], + [8037,52685], + [8039,23529], + [8041,653945], + [8043,46260], + [8045,56888], + [8047,5520], + [8049,14296], + [8051,15646], + [8053,804], + [8055,6455], + [8057,1337], + [8059,551809], + [8061,1392], + [8063,8234], + [8065,7261], + [8067,53250], + [8069,315859], + [8071,14379], + [8073,5436], + [8075,21680], + [8077,147250], + [8079,732], + [8081,13115], + [8083,25535], + [8085,40509], + [8087,28169], + [8089,18479], + [8091,4540], + [8093,16168], + [8095,4363], + [8097,17425], + [8099,12331], + [8101,161070], + [8103,6732], + [8105,11676], + [8107,23569], + [8109,6232], + [8111,691], + [8113,7598], + [8115,2335], + [8117,28655], + [8119,23351], + [8121,4743], + [8123,269804], + [8125,10112], + [9001,942865], + [9003,899765], + [9005,187062], + [9007,165293], + [9009,864558], + [9011,273388], + [9013,151908], + [9015,117631], + [10001,169150], + [10003,549486], + [10005,206478], + [11001,650114], + [12001,252704], + [12003,27000], + [12005,174626], + [12007,26806], + [12009,550754], + [12011,1840561], + [12013,14578], + [12015,164830], + [12017,138865], + [12019,195735], + [12021,339483], + [12023,67429], + [12027,34840], + [12029,16080], + [12031,886595], + [12033,306767], + [12035,99901], + [12037,11519], + [12039,46071], + [12041,16904], + [12043,12677], + [12045,15883], + [12047,14340], + [12049,27286], + [12051,37767], + [12053,173706], + [12055,98071], + [12057,1294828], + [12059,19598], + [12061,141942], + [12063,48875], + [12065,14201], + [12067,8819], + [12069,308146], + [12071,660431], + [12073,281940], + [12075,39439], + [12077,8356], + [12079,18757], + [12081,342116], + [12083,335274], + [12085,151219], + [12086,2643934], + [12087,75914], + [12089,75397], + [12091,192735], + [12093,39469], + [12095,1228274], + [12097,299735], + [12099,1378497], + [12101,474782], + [12103,929214], + [12105,622981], + [12107,72366], + [12109,209479], + [12111,285708], + [12113,160421], + [12115,390270], + [12117,436020], + [12119,106942], + [12121,43580], + [12123,22865], + [12125,15163], + [12127,500780], + [12129,31000], + [12131,59179], + [12133,24503], + [13001,18395], + [13003,8285], + [13005,11205], + [13007,3351], + [13009,46166], + [13011,18244], + [13013,71319], + [13015,101056], + [13017,17426], + [13019,19061], + [13021,155071], + [13023,12740], + [13025,18237], + [13027,15665], + [13029,33038], + [13031,71873], + [13033,22827], + [13035,23203], + [13037,6599], + [13039,51413], + [13043,10970], + [13045,112300], + [13047,65224], + [13049,13122], + [13051,277963], + [13053,12246], + [13055,25044], + [13057,224487], + [13059,121094], + [13061,3012], + [13063,264511], + [13065,6775], + [13067,717201], + [13069,43137], + [13071,46252], + [13073,136293], + [13075,17069], + [13077,132996], + [13079,12511], + [13081,23316], + [13083,16445], + [13085,22686], + [13087,27407], + [13089,717321], + [13091,21430], + [13093,14366], + [13095,93388], + [13097,136164], + [13099,10536], + [13101,4019], + [13103,54437], + [13105,19490], + [13107,22633], + [13109,10806], + [13111,23823], + [13113,108129], + [13115,95921], + [13117,194137], + [13119,22047], + [13121,982930], + [13123,28719], + [13125,3056], + [13127,81596], + [13129,55779], + [13131,25143], + [13133,16282], + [13135,855798], + [13137,43206], + [13139,186765], + [13141,8957], + [13143,28335], + [13145,32544], + [13147,25483], + [13149,11561], + [13151,210252], + [13153,147751], + [13155,9366], + [13157,61285], + [13159,13606], + [13161,15050], + [13163,16259], + [13165,9200], + [13167,9920], + [13169,28575], + [13171,17918], + [13173,10412], + [13175,47671], + [13177,29047], + [13179,62282], + [13181,7732], + [13183,16618], + [13185,112907], + [13187,30917], + [13189,21502], + [13191,14027], + [13193,13983], + [13195,28155], + [13197,8597], + [13199,21231], + [13201,5904], + [13205,23000], + [13207,26620], + [13209,8960], + [13211,17683], + [13213,39251], + [13215,203274], + [13217,102088], + [13219,34064], + [13221,14418], + [13223,146789], + [13225,27077], + [13227,29409], + [13229,19029], + [13231,17771], + [13233,41073], + [13235,11566], + [13237,21325], + [13239,2371], + [13241,16203], + [13243,7198], + [13245,201142], + [13247,86618], + [13249,5093], + [13251,14143], + [13253,8845], + [13255,63505], + [13257,25583], + [13259,5562], + [13261,31354], + [13263,6529], + [13265,1689], + [13267,25659], + [13269,8377], + [13271,16666], + [13273,9169], + [13275,44817], + [13277,40243], + [13279,27213], + [13281,10786], + [13283,6685], + [13285,68809], + [13287,8204], + [13289,8513], + [13291,21422], + [13293,26440], + [13295,68619], + [13297,86030], + [13299,35785], + [13301,5522], + [13303,20577], + [13305,30007], + [13307,2671], + [13309,7923], + [13311,27836], + [13313,102982], + [13315,9021], + [13317,9930], + [13319,9362], + [13321,21070], + [15001,191583], + [15003,985734], + [15005,89], + [15007,69626], + [15009,161006], + [16001,416074], + [16003,3863], + [16005,83410], + [16007,5943], + [16009,9027], + [16011,45425], + [16013,21256], + [16015,6722], + [16017,40522], + [16019,107358], + [16021,10837], + [16023,2666], + [16025,1045], + [16027,198409], + [16029,6804], + [16031,23294], + [16033,867], + [16035,8572], + [16037,4227], + [16039,26239], + [16041,12800], + [16043,12870], + [16045,16562], + [16047,15125], + [16049,16246], + [16051,26783], + [16053,22625], + [16055,143887], + [16057,38196], + [16059,7714], + [16061,3802], + [16063,5302], + [16065,37516], + [16067,20299], + [16069,39788], + [16071,4248], + [16073,11373], + [16075,22534], + [16077,7743], + [16079,12681], + [16081,10350], + [16083,79684], + [16085,9577], + [16087,9922], + [17001,66996], + [17003,7234], + [17005,17322], + [17007,53788], + [17009,6861], + [17011,34106], + [17013,5007], + [17015,14964], + [17017,13290], + [17019,205629], + [17021,34151], + [17023,16095], + [17025,13551], + [17027,37727], + [17029,53029], + [17031,5250498], + [17033,19429], + [17035,10898], + [17037,104129], + [17039,16376], + [17041,19862], + [17043,931775], + [17045,17899], + [17047,6686], + [17049,34205], + [17051,22190], + [17053,13671], + [17055,39538], + [17057,36325], + [17059,5387], + [17061,13521], + [17063,50184], + [17065,8346], + [17067,18542], + [17069,4267], + [17071,6963], + [17073,49921], + [17075,28936], + [17077,59643], + [17079,9602], + [17081,38629], + [17083,22556], + [17085,22386], + [17087,12869], + [17089,523322], + [17091,112207], + [17093,119604], + [17095,52084], + [17097,704424], + [17099,112424], + [17101,16725], + [17103,35106], + [17105,37389], + [17107,29793], + [17109,32215], + [17111,307607], + [17113,174734], + [17115,109533], + [17117,46670], + [17119,267218], + [17121,38671], + [17123,12122], + [17125,14141], + [17127,14842], + [17129,12571], + [17131,16075], + [17133,33460], + [17135,29326], + [17137,34994], + [17139,14790], + [17141,52299], + [17143,188454], + [17145,21706], + [17147,16431], + [17149,16071], + [17151,4452], + [17153,5891], + [17155,5852], + [17157,33172], + [17159,16013], + [17161,147530], + [17163,266756], + [17165,24799], + [17167,199014], + [17169,7389], + [17171,5211], + [17173,22143], + [17175,5708], + [17177,46667], + [17179,136250], + [17181,17539], + [17183,80578], + [17185,11660], + [17187,17643], + [17189,14414], + [17191,16660], + [17193,14433], + [17195,57475], + [17197,683833], + [17199,67424], + [17201,290883], + [17203,39023], + [18001,34649], + [18003,363170], + [18005,79572], + [18007,8747], + [18009,12455], + [18011,60312], + [18013,15053], + [18015,20119], + [18017,38574], + [18019,112697], + [18021,26659], + [18023,32788], + [18025,10620], + [18027,32277], + [18029,49736], + [18031,26216], + [18033,42325], + [18035,116764], + [18037,42267], + [18039,200366], + [18041,23829], + [18043,76007], + [18045,16885], + [18047,22962], + [18049,20445], + [18051,33481], + [18053,68893], + [18055,32728], + [18057,296789], + [18059,70969], + [18061,38988], + [18063,153405], + [18065,48850], + [18067,82707], + [18069,36774], + [18071,43455], + [18073,33421], + [18075,21268], + [18077,32404], + [18079,28222], + [18081,145403], + [18083,38046], + [18085,78066], + [18087,38081], + [18089,491765], + [18091,111414], + [18093,45882], + [18095,130276], + [18097,929722], + [18099,46910], + [18101,10229], + [18103,36171], + [18105,141873], + [18107,38133], + [18109,69347], + [18111,14024], + [18113,47267], + [18115,5995], + [18117,19826], + [18119,21166], + [18121,17246], + [18123,19418], + [18125,12556], + [18127,166493], + [18129,25559], + [18131,12943], + [18133,37581], + [18135,25610], + [18137,28285], + [18139,16996], + [18141,266931], + [18143,23747], + [18145,44356], + [18147,20761], + [18149,23136], + [18151,34392], + [18153,21140], + [18155,10577], + [18157,181361], + [18159,15541], + [18161,7307], + [18163,181720], + [18165,15852], + [18167,108116], + [18169,32268], + [18171,8363], + [18173,60831], + [18175,27789], + [18177,67782], + [18179,27705], + [18181,24398], + [18183,33280], + [19001,7387], + [19003,3892], + [19005,14051], + [19007,12650], + [19009,5861], + [19011,25706], + [19013,132781], + [19015,26283], + [19017,24573], + [19019,21027], + [19021,20612], + [19023,14978], + [19025,9898], + [19027,20538], + [19029,13569], + [19031,18270], + [19033,43512], + [19035,11878], + [19037,12268], + [19039,9245], + [19041,16442], + [19043,17792], + [19045,48264], + [19047,17365], + [19049,74842], + [19051,8768], + [19053,8209], + [19055,17461], + [19057,40381], + [19059,16876], + [19061,95888], + [19063,9849], + [19065,20500], + [19067,16035], + [19069,10506], + [19071,7072], + [19073,9158], + [19075,12343], + [19077,10669], + [19079,15340], + [19081,11133], + [19083,17377], + [19085,14357], + [19087,20020], + [19089,9436], + [19091,9666], + [19093,7073], + [19095,16279], + [19097,19510], + [19099,36718], + [19101,17509], + [19103,139653], + [19105,20508], + [19107,10336], + [19109,15324], + [19111,35229], + [19113,216235], + [19115,11336], + [19117,8686], + [19119,11695], + [19121,15475], + [19123,22405], + [19125,33010], + [19127,40913], + [19129,14907], + [19131,10663], + [19133,9028], + [19135,7978], + [19137,10397], + [19139,42931], + [19141,14044], + [19143,6232], + [19145,15498], + [19147,9159], + [19149,24916], + [19151,7110], + [19153,452032], + [19155,92810], + [19157,18581], + [19159,4974], + [19161,10032], + [19163,170071], + [19165,11894], + [19167,34454], + [19169,93462], + [19171,17429], + [19173,6226], + [19175,12607], + [19177,7437], + [19179,35474], + [19181,47348], + [19183,21941], + [19185,6382], + [19187,37312], + [19189,10417], + [19191,20838], + [19193,102195], + [19195,7495], + [19197,12980], + [20001,13054], + [20003,7854], + [20005,16688], + [20007,4914], + [20009,27458], + [20011,14828], + [20013,9911], + [20015,65658], + [20017,2689], + [20019,3531], + [20021,20893], + [20023,2671], + [20025,2179], + [20027,8386], + [20029,9350], + [20031,8378], + [20033,1923], + [20035,36142], + [20037,39227], + [20039,2908], + [20041,19426], + [20043,7871], + [20045,114554], + [20047,2969], + [20049,2633], + [20051,29012], + [20053,6363], + [20055,37076], + [20057,34937], + [20059,25725], + [20061,36777], + [20063,2799], + [20065,2592], + [20067,7847], + [20069,5982], + [20071,1283], + [20073,6358], + [20075,2629], + [20077,5843], + [20079,34729], + [20081,4121], + [20083,1925], + [20085,13309], + [20087,18789], + [20089,3063], + [20091,566287], + [20093,3920], + [20095,7800], + [20097,2534], + [20099,20878], + [20101,1698], + [20103,78057], + [20105,3159], + [20107,9544], + [20109,2771], + [20111,33463], + [20113,29373], + [20115,12200], + [20117,9968], + [20119,4285], + [20121,32834], + [20123,6307], + [20125,34442], + [20127,5721], + [20129,3119], + [20131,10093], + [20133,16381], + [20135,3087], + [20137,5614], + [20139,16080], + [20141,3796], + [20143,6043], + [20145,6864], + [20147,5560], + [20149,22576], + [20151,9783], + [20153,2560], + [20155,64083], + [20157,4767], + [20159,9978], + [20161,76807], + [20163,5193], + [20165,3178], + [20167,6978], + [20169,55810], + [20171,4943], + [20173,506455], + [20175,23354], + [20177,178615], + [20179,2500], + [20181,6091], + [20183,3699], + [20185,4343], + [20187,2176], + [20189,5819], + [20191,23535], + [20193,7933], + [20195,2945], + [20197,7019], + [20199,1560], + [20201,5628], + [20203,2190], + [20205,9094], + [20207,3216], + [20209,160940], + [21001,19110], + [21003,20319], + [21005,21706], + [21007,8255], + [21009,42924], + [21011,11975], + [21013,28041], + [21015,124495], + [21017,19928], + [21019,48907], + [21021,29579], + [21023,8410], + [21025,13524], + [21027,20040], + [21029,76897], + [21031,12693], + [21033,12882], + [21035,38323], + [21037,90999], + [21039,4963], + [21041,10801], + [21043,27589], + [21045,16004], + [21047,73619], + [21049,35553], + [21051,21195], + [21053,10171], + [21055,9179], + [21057,6800], + [21059,98289], + [21061,12042], + [21063,7552], + [21065,14479], + [21067,308591], + [21069,14549], + [21071,38471], + [21073,49424], + [21075,6387], + [21077,8553], + [21079,17003], + [21081,24553], + [21083,37339], + [21085,25953], + [21087,11156], + [21089,36475], + [21091,8630], + [21093,108884], + [21095,28486], + [21097,18535], + [21099,18462], + [21101,46344], + [21103,15418], + [21105,4707], + [21107,46431], + [21109,13397], + [21111,757955], + [21113,50069], + [21115,23463], + [21117,162660], + [21119,16070], + [21121,31647], + [21123,14031], + [21125,59629], + [21127,15903], + [21129,6881], + [21131,10986], + [21133,23548], + [21135,13676], + [21137,24458], + [21139,9331], + [21141,26971], + [21143,8454], + [21145,65370], + [21147,17929], + [21149,9455], + [21151,85905], + [21153,12944], + [21155,19895], + [21157,31203], + [21159,12667], + [21161,17330], + [21163,29240], + [21165,6339], + [21167,21263], + [21169,9944], + [21171,10702], + [21173,27232], + [21175,13368], + [21177,31331], + [21179,44544], + [21181,7007], + [21183,23965], + [21185,62994], + [21187,10634], + [21189,4602], + [21191,14556], + [21193,28001], + [21195,63847], + [21197,12479], + [21199,63749], + [21201,2216], + [21203,16747], + [21205,24207], + [21207,17703], + [21209,49987], + [21211,44362], + [21213,17688], + [21215,17597], + [21217,25149], + [21219,12450], + [21221,14308], + [21223,8818], + [21225,15068], + [21227,119192], + [21229,11838], + [21231,20775], + [21233,13354], + [21235,35878], + [21237,7281], + [21239,25285], + [22001,62284], + [22003,25676], + [22005,114572], + [22007,23191], + [22009,41290], + [22011,36278], + [22013,13966], + [22015,123965], + [22017,255255], + [22019,195506], + [22021,9981], + [22023,6703], + [22025,10255], + [22027,16671], + [22029,20496], + [22031,27092], + [22033,444451], + [22035,7498], + [22037,19605], + [22039,33834], + [22041,20507], + [22043,22280], + [22045,73886], + [22047,33376], + [22049,16132], + [22051,435197], + [22053,31299], + [22055,231418], + [22057,97254], + [22059,14812], + [22061,47313], + [22063,134029], + [22065,11908], + [22067,26935], + [22069,39112], + [22071,379125], + [22073,156061], + [22075,23524], + [22077,22420], + [22079,132359], + [22081,8964], + [22083,20919], + [22085,24261], + [22087,43435], + [22089,52646], + [22091,10771], + [22093,21615], + [22095,43578], + [22097,83408], + [22099,52915], + [22101,53550], + [22103,242074], + [22105,125443], + [22107,4934], + [22109,112684], + [22111,22449], + [22113,59308], + [22115,52832], + [22117,46445], + [22119,40665], + [22121,24632], + [22123,11454], + [22125,15448], + [22127,14849], + [23001,107271], + [23003,70094], + [23005,285624], + [23007,30519], + [23009,54622], + [23011,121171], + [23013,39633], + [23015,34102], + [23017,57326], + [23019,153075], + [23021,17176], + [23023,35029], + [23025,51701], + [23027,39010], + [23029,32276], + [23031,199346], + [24001,73604], + [24003,556007], + [24005,823364], + [24009,90455], + [24011,32666], + [24013,167211], + [24015,101931], + [24017,152722], + [24019,32575], + [24021,241363], + [24023,29954], + [24025,248969], + [24027,304210], + [24029,19822], + [24031,1019291], + [24033,891968], + [24035,48545], + [24037,109275], + [24039,25975], + [24041,37910], + [24043,149045], + [24045,100957], + [24047,51555], + [24510,623280], + [25001,214566], + [25003,129313], + [25005,552654], + [25007,17163], + [25009,764557], + [25011,71311], + [25013,467675], + [25015,160762], + [25017,1559027], + [25019,10548], + [25021,688401], + [25023,502921], + [25025,761391], + [25027,810849], + [26001,10550], + [26003,9431], + [26005,111946], + [26007,28953], + [26009,23123], + [26011,15409], + [26013,8710], + [26015,59076], + [26017,106761], + [26019,17351], + [26021,155847], + [26023,43554], + [26025,134572], + [26027,51567], + [26029,26217], + [26031,25575], + [26033,38529], + [26035,30592], + [26037,76757], + [26039,13873], + [26041,36798], + [26043,26005], + [26045,108145], + [26047,32929], + [26049,415489], + [26051,25552], + [26053,15903], + [26055,90062], + [26057,41901], + [26059,46122], + [26061,36557], + [26063,32236], + [26065,282926], + [26067,63982], + [26069,25414], + [26071,11495], + [26073,70093], + [26075,159558], + [26077,256956], + [26079,17278], + [26081,623457], + [26083,2141], + [26085,11390], + [26087,88216], + [26089,21464], + [26091,98766], + [26093,184143], + [26095,6499], + [26097,10999], + [26099,855749], + [26101,24460], + [26103,67750], + [26105,28647], + [26107,43205], + [26109,23709], + [26111,83549], + [26113,15042], + [26115,150057], + [26117,62765], + [26119,9382], + [26121,172196], + [26123,47844], + [26125,1232456], + [26127,26264], + [26129,21167], + [26131,6320], + [26133,23310], + [26135,8371], + [26137,24046], + [26139,273848], + [26141,13003], + [26143,24002], + [26145,196645], + [26147,160187], + [26149,60929], + [26151,41900], + [26153,8261], + [26155,68868], + [26157,54212], + [26159,75228], + [26161,354714], + [26163,1777790], + [26165,32474], + [27001,15881], + [27003,339235], + [27005,33182], + [27007,45481], + [27009,38980], + [27011,5070], + [27013,64755], + [27015,25266], + [27017,35265], + [27019,95610], + [27021,28477], + [27023,12070], + [27025,53655], + [27027,60521], + [27029,8783], + [27031,5187], + [27033,11556], + [27035,62980], + [27037,408138], + [27039,20334], + [27041,36340], + [27043,14101], + [27045,20745], + [27047,30929], + [27049,46110], + [27051,5955], + [27053,1199286], + [27055,18779], + [27057,20700], + [27059,38058], + [27061,45331], + [27063,10279], + [27065,16003], + [27067,42482], + [27069,4498], + [27071,13082], + [27073,7003], + [27075,10708], + [27077,3909], + [27079,27702], + [27081,5756], + [27083,25720], + [27085,35898], + [27087,5472], + [27089,9430], + [27091,20421], + [27093,23096], + [27095,25653], + [27097,32857], + [27099,39358], + [27101,8507], + [27103,32972], + [27105,21795], + [27107,6604], + [27109,148918], + [27111,57504], + [27113,14134], + [27115,29075], + [27117,9300], + [27119,31635], + [27121,10880], + [27123,527770], + [27125,4032], + [27127,15686], + [27129,15063], + [27131,64635], + [27133,9428], + [27135,15497], + [27137,200441], + [27139,137344], + [27141,90072], + [27143,15029], + [27145,152612], + [27147,36362], + [27149,9745], + [27151,9550], + [27153,24496], + [27155,3401], + [27157,21563], + [27159,13640], + [27161,19027], + [27163,246112], + [27165,11044], + [27167,6494], + [27169,51337], + [27171,128208], + [27173,10075], + [28001,32111], + [28003,37274], + [28005,12850], + [28007,19117], + [28009,8495], + [28011,33974], + [28013,14710], + [28015,10322], + [28017,17376], + [28019,8455], + [28021,9145], + [28023,16421], + [28025,20345], + [28027,25181], + [28029,28881], + [28031,19207], + [28033,168314], + [28035,76614], + [28037,7878], + [28039,23199], + [28041,14292], + [28043,21540], + [28045,45489], + [28047,196051], + [28049,246127], + [28051,18803], + [28053,8963], + [28055,1413], + [28057,23370], + [28059,140260], + [28061,16487], + [28063,7653], + [28065,11953], + [28067,68862], + [28069,10317], + [28071,51385], + [28073,59095], + [28075,80236], + [28077,12576], + [28079,23264], + [28081,84961], + [28083,30737], + [28085,34716], + [28087,59791], + [28089,99417], + [28091,26061], + [28093,36451], + [28095,36158], + [28097,10575], + [28099,29506], + [28101,21521], + [28103,11052], + [28105,49076], + [28107,34403], + [28109,54830], + [28111,12009], + [28113,39942], + [28115,30678], + [28117,25468], + [28119,7814], + [28121,147291], + [28123,28304], + [28125,4677], + [28127,27519], + [28129,16233], + [28131,17955], + [28133,27906], + [28135,14960], + [28137,28355], + [28139,21992], + [28141,19497], + [28143,10448], + [28145,27749], + [28147,14856], + [28149,48289], + [28151,49651], + [28153,20457], + [28155,9939], + [28157,9343], + [28159,18757], + [28161,12378], + [28163,27994], + [29001,25709], + [29003,17303], + [29005,5423], + [29007,25544], + [29009,35330], + [29011,12177], + [29013,16432], + [29015,18940], + [29017,12486], + [29019,170937], + [29021,89842], + [29023,42969], + [29025,9045], + [29027,44515], + [29029,44284], + [29031,77467], + [29033,9056], + [29035,6339], + [29037,100679], + [29039,13775], + [29041,7646], + [29043,80624], + [29045,6898], + [29047,230356], + [29049,20561], + [29051,76731], + [29053,17608], + [29055,24507], + [29057,7536], + [29059,16465], + [29061,8301], + [29063,12635], + [29065,15705], + [29067,13436], + [29069,31723], + [29071,101741], + [29073,14814], + [29075,6731], + [29077,283588], + [29079,10345], + [29081,8709], + [29083,22094], + [29085,9347], + [29087,4590], + [29089,10243], + [29091,40248], + [29093,10470], + [29095,680062], + [29097,116761], + [29099,220859], + [29101,54320], + [29103,4060], + [29105,35625], + [29107,32835], + [29109,38096], + [29111,10111], + [29113,53812], + [29115,12317], + [29117,14872], + [29119,22638], + [29121,15475], + [29123,12276], + [29125,9057], + [29127,28765], + [29129,3664], + [29131,24810], + [29133,14158], + [29135,15749], + [29137,8766], + [29139,11858], + [29141,20116], + [29143,18338], + [29145,58379], + [29147,23141], + [29149,10927], + [29151,13655], + [29153,9493], + [29155,17784], + [29157,19051], + [29159,42197], + [29161,45024], + [29163,18610], + [29165,93367], + [29167,31124], + [29169,54083], + [29171,4883], + [29173,10157], + [29175,24944], + [29177,23040], + [29179,6458], + [29181,13980], + [29183,374327], + [29185,9488], + [29186,17945], + [29187,66106], + [29189,1000659], + [29195,23224], + [29197,4370], + [29199,4892], + [29201,39190], + [29203,8294], + [29205,6153], + [29207,29797], + [29209,31654], + [29211,6497], + [29213,53258], + [29215,25670], + [29217,20841], + [29219,32955], + [29221,25135], + [29223,13463], + [29225,36559], + [29227,2081], + [29229,18408], + [29510,318575], + [30001,9301], + [30003,13116], + [30005,6596], + [30007,5681], + [30009,10324], + [30011,1153], + [30013,82119], + [30015,5843], + [30017,11864], + [30019,1776], + [30021,9374], + [30023,9254], + [30025,3046], + [30027,11450], + [30029,92835], + [30031,94421], + [30033,1254], + [30035,13770], + [30037,846], + [30039,3069], + [30041,16520], + [30043,11435], + [30045,2000], + [30047,29051], + [30049,65140], + [30051,2360], + [30053,19406], + [30055,1714], + [30057,7665], + [30059,1903], + [30061,4221], + [30063,111575], + [30065,4665], + [30067,15691], + [30069,510], + [30071,4153], + [30073,6204], + [30075,1753], + [30077,6950], + [30079,1160], + [30081,40643], + [30083,11153], + [30085,11087], + [30087,9294], + [30089,11300], + [30091,3624], + [30093,34435], + [30095,9263], + [30097,3655], + [30099,6037], + [30101,5118], + [30103,693], + [30105,7614], + [30107,2123], + [30109,1101], + [30111,153613], + [31001,31547], + [31003,6471], + [31005,454], + [31007,679], + [31009,470], + [31011,5399], + [31013,11297], + [31015,2016], + [31017,2959], + [31019,48050], + [31021,6568], + [31023,8230], + [31025,25293], + [31027,8624], + [31029,3978], + [31031,5754], + [31033,10066], + [31035,6359], + [31037,10461], + [31039,9013], + [31041,10832], + [31043,20802], + [31045,9065], + [31047,24073], + [31049,1923], + [31051,5807], + [31053,36508], + [31055,537527], + [31057,1958], + [31059,5636], + [31061,3065], + [31063,2716], + [31065,4832], + [31067,21726], + [31069,1923], + [31071,2023], + [31073,2017], + [31075,633], + [31077,2483], + [31079,60613], + [31081,9123], + [31083,3502], + [31085,945], + [31087,2855], + [31089,10384], + [31091,731], + [31093,6337], + [31095,7511], + [31097,5163], + [31099,6486], + [31101,8159], + [31103,791], + [31105,3695], + [31107,8556], + [31109,297528], + [31111,35950], + [31113,777], + [31115,587], + [31117,529], + [31119,35178], + [31121,7826], + [31123,4926], + [31125,3559], + [31127,7149], + [31129,4384], + [31131,15700], + [31133,2750], + [31135,2893], + [31137,9182], + [31139,7180], + [31141,32630], + [31143,5247], + [31145,11056], + [31147,8132], + [31149,1441], + [31151,14332], + [31153,169095], + [31155,20880], + [31157,36855], + [31159,16994], + [31161,5209], + [31163,3061], + [31165,1330], + [31167,6088], + [31169,5179], + [31171,705], + [31173,6875], + [31175,4182], + [31177,20213], + [31179,9445], + [31181,3643], + [31183,778], + [31185,13858], + [32001,23958], + [32003,2026056], + [32005,46971], + [32007,52445], + [32009,849], + [32011,2050], + [32013,17396], + [32015,6077], + [32017,5273], + [32019,51124], + [32021,4571], + [32023,42924], + [32027,6849], + [32029,3790], + [32031,432373], + [32033,10050], + [32510,53791], + [33001,60106], + [33003,47470], + [33005,76590], + [33007,31946], + [33009,89447], + [33011,403371], + [33013,147058], + [33015,298993], + [33017,124622], + [33019,43019], + [34001,275954], + [34003,927202], + [34005,449858], + [34007,511798], + [34009,95704], + [34011,156571], + [34013,792560], + [34015,290151], + [34017,667066], + [34019,126590], + [34021,372337], + [34023,829991], + [34025,628968], + [34027,498680], + [34029,583090], + [34031,507960], + [34033,64840], + [34035,331029], + [34037,145768], + [34039,550461], + [34041,107157], + [35001,673914], + [35003,3587], + [35005,65836], + [35006,27341], + [35007,13055], + [35009,50494], + [35011,1921], + [35013,213425], + [35015,55518], + [35017,29047], + [35019,4533], + [35021,694], + [35023,4619], + [35025,68173], + [35027,19953], + [35028,17830], + [35029,24562], + [35031,72604], + [35033,4697], + [35035,65677], + [35037,8669], + [35039,40003], + [35041,19969], + [35043,136151], + [35045,129324], + [35047,28749], + [35049,146616], + [35051,11524], + [35053,17477], + [35055,32840], + [35057,15704], + [35059,4341], + [35061,76314], + [36001,307414], + [36003,47932], + [36005,1432881], + [36007,198212], + [36009,79033], + [36011,79115], + [36013,132896], + [36015,88374], + [36017,49492], + [36019,81585], + [36021,62225], + [36023,48912], + [36025,46818], + [36027,296922], + [36029,922758], + [36031,38621], + [36033,51246], + [36035,54376], + [36037,59169], + [36039,48338], + [36041,4768], + [36043,63901], + [36045,119219], + [36047,2605783], + [36049,27096], + [36051,64684], + [36053,72485], + [36055,750126], + [36057,49755], + [36059,1356414], + [36061,1638790], + [36063,214235], + [36065,233771], + [36067,469251], + [36069,109117], + [36071,375151], + [36073,42241], + [36075,121222], + [36077,61641], + [36079,99751], + [36081,2307766], + [36083,159752], + [36085,473422], + [36087,320664], + [36089,112067], + [36091,224308], + [36093,155228], + [36095,31926], + [36097,18374], + [36099,35236], + [36101,98881], + [36103,1501103], + [36105,77073], + [36107,50111], + [36109,104143], + [36111,180965], + [36113,65106], + [36115,62756], + [36117,92399], + [36119,968910], + [36121,41380], + [36123,25224], + [37001,154417], + [37003,37091], + [37005,10920], + [37007,25975], + [37009,26889], + [37011,17604], + [37013,47391], + [37015,20350], + [37017,34704], + [37019,114999], + [37021,246948], + [37023,89141], + [37025,187160], + [37027,82041], + [37029,10112], + [37031,68386], + [37033,23096], + [37035,155140], + [37037,65314], + [37039,27122], + [37041,14689], + [37043,10612], + [37045,96874], + [37047,57088], + [37049,104310], + [37051,333273], + [37053,24268], + [37055,34852], + [37057,163398], + [37059,41446], + [37061,59442], + [37063,288960], + [37065,55454], + [37067,361000], + [37069,62105], + [37071,209285], + [37073,11702], + [37075,8725], + [37077,57814], + [37079,21062], + [37081,506771], + [37083,53217], + [37085,125104], + [37087,58985], + [37089,108973], + [37091,24506], + [37093,51191], + [37095,5655], + [37097,164624], + [37099,41055], + [37101,177421], + [37103,10004], + [37105,59874], + [37107,58831], + [37109,79111], + [37111,45069], + [37113,33770], + [37115,21171], + [37117,23609], + [37119,991619], + [37121,15310], + [37123,27482], + [37125,91411], + [37127,94445], + [37129,213042], + [37131,20872], + [37133,192377], + [37135,139430], + [37137,12892], + [37139,39555], + [37141,54828], + [37143,13631], + [37145,39240], + [37147,174434], + [37149,20399], + [37151,142376], + [37153,46154], + [37155,135217], + [37157,91942], + [37159,137782], + [37161,66830], + [37163,63964], + [37165,35907], + [37167,60667], + [37169,46526], + [37171,72718], + [37173,13981], + [37175,32853], + [37177,4102], + [37179,212372], + [37181,44502], + [37183,974938], + [37185,20595], + [37187,12706], + [37189,52348], + [37191,124715], + [37193,68642], + [37195,81277], + [37197,38079], + [37199,17552], + [38001,2392], + [38003,11104], + [38005,6894], + [38007,901], + [38009,6733], + [38011,3215], + [38013,2305], + [38015,88635], + [38017,162956], + [38019,3854], + [38021,5194], + [38023,2326], + [38025,4134], + [38027,2366], + [38029,3482], + [38031,3354], + [38033,1825], + [38035,69077], + [38037,2392], + [38039,2283], + [38041,2641], + [38043,2445], + [38045,4099], + [38047,1935], + [38049,5910], + [38051,2732], + [38053,9275], + [38055,9464], + [38057,8588], + [38059,28928], + [38061,9347], + [38063,3056], + [38065,1886], + [38067,7099], + [38069,4418], + [38071,11577], + [38073,5495], + [38075,2610], + [38077,16292], + [38079,14674], + [38081,3879], + [38083,1327], + [38085,4436], + [38087,770], + [38089,28329], + [38091,1918], + [38093,21088], + [38095,2264], + [38097,8185], + [38099,11085], + [38101,67986], + [38103,4149], + [38105,29599], + [39001,28096], + [39003,105025], + [39005,53118], + [39007,99716], + [39009,64456], + [39011,45814], + [39013,69555], + [39015,44126], + [39017,371017], + [39019,28256], + [39021,39447], + [39023,136567], + [39025,200356], + [39027,41844], + [39029,105908], + [39031,36718], + [39033,42709], + [39035,1264622], + [39037,52294], + [39039,38521], + [39041,185319], + [39043,76011], + [39045,148712], + [39047,28666], + [39049,1216299], + [39051,42183], + [39053,30615], + [39055,93840], + [39057,163722], + [39059,39705], + [39061,804409], + [39063,75516], + [39065,31731], + [39067,15603], + [39069,27805], + [39071,43179], + [39073,28647], + [39075,43602], + [39077,58762], + [39079,32802], + [39081,68148], + [39083,60787], + [39085,229885], + [39087,61847], + [39089,168401], + [39091,45388], + [39093,302908], + [39095,435886], + [39097,43224], + [39099,234276], + [39101,65952], + [39103,174589], + [39105,23442], + [39107,40607], + [39109,103174], + [39111,14516], + [39113,533713], + [39115,14905], + [39117,34842], + [39119,85610], + [39121,14664], + [39123,41032], + [39125,19142], + [39127,35997], + [39129,56345], + [39131,28398], + [39133,161484], + [39135,41665], + [39137,34100], + [39139,122303], + [39141,77254], + [39143,60040], + [39145,78103], + [39147,55813], + [39149,49122], + [39151,375025], + [39153,541601], + [39155,206312], + [39157,92586], + [39159,53334], + [39161,28331], + [39163,13303], + [39165,219097], + [39167,61334], + [39169,115282], + [39171,37419], + [39173,128912], + [39175,22454], + [40001,22309], + [40003,5850], + [40005,13892], + [40007,5558], + [40009,23468], + [40011,9769], + [40013,44101], + [40015,29597], + [40017,125938], + [40019,48437], + [40021,47856], + [40023,15033], + [40025,2307], + [40027,269682], + [40029,5743], + [40031,124467], + [40033,6153], + [40035,14692], + [40037,70530], + [40039,29197], + [40041,41600], + [40043,4844], + [40045,4132], + [40047,62272], + [40049,27415], + [40051,53625], + [40053,4504], + [40055,6134], + [40057,2871], + [40059,3873], + [40061,12859], + [40063,13628], + [40065,26137], + [40067,6359], + [40069,10979], + [40071,45562], + [40073,15284], + [40075,9337], + [40077,10773], + [40079,50025], + [40081,34238], + [40083,43831], + [40085,9685], + [40087,36452], + [40089,33187], + [40091,20106], + [40093,7700], + [40095,16050], + [40097,40960], + [40099,13682], + [40101,70175], + [40103,11407], + [40105,10543], + [40107,12287], + [40109,755703], + [40111,39407], + [40113,47385], + [40115,32107], + [40117,16463], + [40119,79427], + [40121,45251], + [40123,38158], + [40125,70884], + [40127,11184], + [40129,3730], + [40131,88707], + [40133,25440], + [40135,41400], + [40137,44992], + [40139,21959], + [40141,7736], + [40143,623599], + [40145,75647], + [40147,51595], + [40149,11766], + [40151,8981], + [40153,21224], + [41001,16019], + [41003,85934], + [41005,387279], + [41007,37084], + [41009,49238], + [41011,62348], + [41013,20693], + [41015,22217], + [41017,165270], + [41019,106565], + [41021,1943], + [41023,7271], + [41025,7160], + [41027,22607], + [41029,207155], + [41031,21859], + [41033,83108], + [41035,65730], + [41037,7785], + [41039,355041], + [41041,46318], + [41043,118388], + [41045,30659], + [41047,321418], + [41049,11186], + [41051,765477], + [41053,76545], + [41055,1726], + [41057,25342], + [41059,76893], + [41061,25500], + [41063,6768], + [41065,25333], + [41067,554597], + [41069,1378], + [41071,99830], + [42001,101059], + [42003,1233892], + [42005,67856], + [42007,169832], + [42009,49348], + [42011,414011], + [42013,125977], + [42015,62475], + [42017,625321], + [42019,185015], + [42021,138749], + [42023,4915], + [42025,64548], + [42027,158298], + [42029,509388], + [42031,39037], + [42033,81378], + [42035,39798], + [42037,67193], + [42039,87579], + [42041,241200], + [42043,271420], + [42045,561609], + [42047,31401], + [42049,280647], + [42051,134586], + [42053,7534], + [42055,151855], + [42057,14692], + [42059,37763], + [42061,45928], + [42063,88195], + [42065,44814], + [42067,24443], + [42069,213675], + [42071,530149], + [42073,89337], + [42075,135720], + [42077,355634], + [42079,319745], + [42081,116577], + [42083,42731], + [42085,115170], + [42087,46635], + [42089,167588], + [42091,812838], + [42093,18370], + [42095,299194], + [42097,93953], + [42099,45703], + [42101,1558109], + [42103,56188], + [42105,17437], + [42107,146490], + [42109,40227], + [42111,76679], + [42113,6288], + [42115,42459], + [42117,42264], + [42119,44743], + [42121,53840], + [42123,40982], + [42125,207992], + [42127,52146], + [42129,360804], + [42131,28101], + [42133,438926], + [44001,49207], + [44003,164356], + [44005,82824], + [44007,630033], + [44009,126364], + [45001,24901], + [45003,163708], + [45005,9826], + [45007,190236], + [45009,15415], + [45011,22211], + [45013,171108], + [45015,193390], + [45017,14989], + [45019,371986], + [45021,56049], + [45023,32722], + [45025,46152], + [45027,34291], + [45029,37682], + [45031,67904], + [45033,31405], + [45035,146031], + [45037,26466], + [45039,23198], + [45041,138162], + [45043,60343], + [45045,473315], + [45047,69829], + [45049,20390], + [45051,289055], + [45053,26428], + [45055,62576], + [45057,80659], + [45059,66199], + [45061,18380], + [45063,273301], + [45065,9879], + [45067,32095], + [45069,28061], + [45071,37481], + [45073,74947], + [45075,90652], + [45077,119116], + [45079,397006], + [45081,20094], + [45083,290657], + [45085,107784], + [45087,27994], + [45089,33087], + [45091,238702], + [46003,2717], + [46005,18269], + [46007,3461], + [46009,6983], + [46011,33065], + [46013,38229], + [46015,5357], + [46017,2025], + [46019,10282], + [46021,1372], + [46023,9186], + [46025,3619], + [46027,13914], + [46029,27850], + [46031,4209], + [46033,8405], + [46035,19741], + [46037,5578], + [46039,4288], + [46041,5580], + [46043,2976], + [46045,4026], + [46047,6815], + [46049,2350], + [46051,7244], + [46053,4231], + [46055,1881], + [46057,5885], + [46059,3369], + [46061,3402], + [46063,1260], + [46065,17431], + [46067,7193], + [46069,1380], + [46071,3235], + [46073,2073], + [46075,973], + [46077,5066], + [46079,11906], + [46081,24949], + [46083,49910], + [46085,3848], + [46087,5586], + [46089,2424], + [46091,4746], + [46093,26416], + [46095,2047], + [46097,2313], + [46099,178424], + [46101,6445], + [46102,14129], + [46103,105934], + [46105,3017], + [46107,2356], + [46109,10247], + [46111,2326], + [46115,6565], + [46117,2979], + [46119,1439], + [46121,9988], + [46123,5523], + [46125,8307], + [46127,14761], + [46129,5505], + [46135,22649], + [46137,2854], + [47001,75258], + [47003,45584], + [47005,16358], + [47007,13846], + [47009,124844], + [47011,101747], + [47013,40217], + [47015,13704], + [47017,28588], + [47019,56917], + [47021,39334], + [47023,17079], + [47025,31613], + [47027,7708], + [47029,35325], + [47031,53295], + [47033,14608], + [47035,57322], + [47037,659868], + [47039,11662], + [47041,19112], + [47043,50131], + [47045,38088], + [47047,38821], + [47049,17910], + [47051,41173], + [47053,49330], + [47055,28806], + [47057,22736], + [47059,68293], + [47061,13448], + [47063,62997], + [47065,348919], + [47067,6626], + [47069,26282], + [47071,25924], + [47073,56577], + [47075,18206], + [47077,27948], + [47079,32229], + [47081,24202], + [47083,8271], + [47085,18245], + [47087,11545], + [47089,52105], + [47091,17995], + [47093,444194], + [47095,7699], + [47097,27562], + [47099,41921], + [47101,11993], + [47103,33474], + [47105,50307], + [47107,52330], + [47109,26028], + [47111,22606], + [47113,98689], + [47115,28301], + [47117,31070], + [47119,83542], + [47121,11651], + [47123,45200], + [47125,184104], + [47127,6280], + [47129,21661], + [47131,31011], + [47133,21971], + [47135,7878], + [47137,5004], + [47139,16636], + [47141,74015], + [47143,32463], + [47145,53106], + [47147,67221], + [47149,280914], + [47151,21997], + [47153,14528], + [47155,93298], + [47157,938825], + [47159,19040], + [47161,13297], + [47163,156270], + [47165,168623], + [47167,61535], + [47169,7801], + [47171,18043], + [47173,19054], + [47175,5573], + [47177,39859], + [47179,125353], + [47181,16850], + [47183,34144], + [47185,26173], + [47187,198991], + [47189,121914], + [48001,57960], + [48003,16788], + [48005,87365], + [48007,23897], + [48009,8793], + [48011,1940], + [48013,46997], + [48015,28651], + [48017,7097], + [48019,20561], + [48021,75896], + [48023,3577], + [48025,32803], + [48027,327150], + [48029,1821250], + [48031,10636], + [48033,646], + [48035,17862], + [48037,93456], + [48039,330170], + [48041,204151], + [48043,9290], + [48045,1559], + [48047,7261], + [48049,37610], + [48051,17244], + [48053,43605], + [48055,39205], + [48057,21735], + [48059,13496], + [48061,417095], + [48063,12435], + [48065,5984], + [48067,30232], + [48069,8081], + [48071,37350], + [48073,51088], + [48075,7055], + [48077,10453], + [48079,3002], + [48081,3179], + [48083,8526], + [48085,858110], + [48087,3095], + [48089,20708], + [48091,118576], + [48093,13540], + [48095,4094], + [48097,38429], + [48099,76779], + [48101,1441], + [48103,4722], + [48105,3761], + [48107,5919], + [48109,2305], + [48111,7102], + [48113,2483807], + [48115,13202], + [48117,19148], + [48119,5118], + [48121,729013], + [48123,20382], + [48125,2297], + [48127,10905], + [48129,3566], + [48131,11587], + [48133,18277], + [48135,149651], + [48137,1897], + [48139,155987], + [48141,830185], + [48143,39903], + [48145,17240], + [48147,33541], + [48149,24716], + [48151,3869], + [48153,6244], + [48155,1288], + [48157,652496], + [48159,10611], + [48161,19591], + [48163,18383], + [48165,18793], + [48167,306662], + [48169,6372], + [48171,25320], + [48173,1264], + [48175,7451], + [48177,20139], + [48179,22986], + [48181,122295], + [48183,123172], + [48185,26793], + [48187,142840], + [48189,35703], + [48191,3163], + [48193,8228], + [48195,5536], + [48197,4064], + [48199,55301], + [48201,4353517], + [48203,66254], + [48205,5993], + [48207,5905], + [48209,176019], + [48211,4143], + [48213,78628], + [48215,817526], + [48217,34849], + [48219,23400], + [48221,52889], + [48223,35302], + [48225,22806], + [48227,36160], + [48229,3337], + [48231,87472], + [48233,21894], + [48235,1611], + [48237,8899], + [48239,14609], + [48241,35600], + [48243,2231], + [48245,253022], + [48247,5261], + [48249,41664], + [48251,154508], + [48253,20037], + [48255,14722], + [48257,108256], + [48259,37163], + [48261,435], + [48263,782], + [48265,49760], + [48267,4464], + [48269,274], + [48271,3631], + [48273,32016], + [48275,3722], + [48277,49093], + [48279,13656], + [48281,20140], + [48283,7440], + [48285,19630], + [48287,16554], + [48289,16625], + [48291,76827], + [48293,23404], + [48295,3485], + [48297,11815], + [48299,19499], + [48301,106], + [48303,289611], + [48305,5728], + [48307,8244], + [48309,241406], + [48311,760], + [48313,13800], + [48315,10273], + [48317,5274], + [48319,4105], + [48321,36506], + [48323,56462], + [48325,47263], + [48327,2135], + [48329,152319], + [48331,24082], + [48333,4868], + [48335,8999], + [48337,19394], + [48339,498467], + [48341,22145], + [48343,12682], + [48345,1192], + [48347,65163], + [48349,48029], + [48351,14332], + [48353,15055], + [48355,352781], + [48357,10669], + [48359,2089], + [48361,82816], + [48363,27872], + [48365,23786], + [48367,119797], + [48369,9961], + [48371,15656], + [48373,45532], + [48375,122088], + [48377,7389], + [48379,11026], + [48381,126746], + [48383,3630], + [48385,3319], + [48387,12496], + [48389,14189], + [48391,7273], + [48393,919], + [48395,16425], + [48397,84704], + [48399,10185], + [48401,53336], + [48403,10423], + [48405,8664], + [48407,26737], + [48409,66134], + [48411,5690], + [48413,3189], + [48415,17265], + [48417,3379], + [48419,25984], + [48421,3069], + [48423,216426], + [48425,8559], + [48427,62290], + [48429,9361], + [48431,1226], + [48433,1418], + [48435,3981], + [48437,7717], + [48439,1913133], + [48441,133893], + [48443,891], + [48445,12695], + [48447,1606], + [48449,32623], + [48451,114722], + [48453,1121960], + [48455,14441], + [48457,21495], + [48459,39757], + [48461,3384], + [48463,26848], + [48465,49010], + [48467,52317], + [48469,90058], + [48471,69426], + [48473,45413], + [48475,11211], + [48477,34191], + [48479,263962], + [48481,41095], + [48483,5719], + [48485,132134], + [48487,13185], + [48489,22027], + [48491,470448], + [48493,45228], + [48495,7631], + [48497,61008], + [48499,42401], + [48501,8206], + [48503,18358], + [48505,14393], + [48507,12187], + [49001,6462], + [49003,50734], + [49005,117043], + [49007,20908], + [49009,1139], + [49011,322306], + [49013,19973], + [49015,10759], + [49017,5033], + [49019,9374], + [49021,46532], + [49023,10262], + [49025,7122], + [49027,12546], + [49029,10206], + [49031,1487], + [49033,2264], + [49035,1080830], + [49037,14988], + [49039,28128], + [49041,20752], + [49043,38461], + [49045,60640], + [49047,35690], + [49049,551633], + [49051,26673], + [49053,147077], + [49055,2717], + [49057,238222], + [50001,36825], + [50003,36548], + [50005,31040], + [50007,159568], + [50009,6193], + [50011,48388], + [50013,6984], + [50015,25058], + [50017,28849], + [50019,27131], + [50021,60487], + [50023,59210], + [50025,43785], + [50027,55978], + [51001,32963], + [51003,102349], + [51005,15917], + [51007,12659], + [51009,32156], + [51011,15316], + [51013,225624], + [51015,73847], + [51017,4588], + [51019,76195], + [51021,6675], + [51023,32990], + [51025,16661], + [51027,23617], + [51029,17156], + [51031,55086], + [51033,29261], + [51035,29907], + [51036,7071], + [51037,12277], + [51041,327879], + [51043,14250], + [51045,5138], + [51047,48615], + [51049,9845], + [51051,15531], + [51053,28071], + [51057,11154], + [51059,1135460], + [51061,67174], + [51063,15482], + [51065,25826], + [51067,56279], + [51069,81501], + [51071,16986], + [51073,36765], + [51075,21569], + [51077,15131], + [51079,18842], + [51081,11594], + [51083,35370], + [51085,101066], + [51087,319197], + [51089,52761], + [51091,2205], + [51093,35529], + [51095,70628], + [51097,7026], + [51099,24906], + [51101,16095], + [51103,10966], + [51105,25068], + [51107,350858], + [51109,33993], + [51111,12531], + [51113,13093], + [51115,8899], + [51117,31249], + [51119,10776], + [51121,96726], + [51125,14803], + [51127,19509], + [51131,12024], + [51133,12298], + [51135,15629], + [51137,34626], + [51139,23722], + [51141,18243], + [51143,62559], + [51145,28293], + [51147,22718], + [51149,37336], + [51153,438653], + [51155,34544], + [51157,7424], + [51159,8956], + [51161,93338], + [51163,22326], + [51165,77417], + [51167,28309], + [51169,22774], + [51171,42512], + [51173,31773], + [51175,18327], + [51177,127445], + [51179,135978], + [51181,6788], + [51183,11763], + [51185,44025], + [51187,38476], + [51191,54774], + [51193,17547], + [51195,40653], + [51197,29272], + [51199,66079], + [51510,150268], + [51520,17398], + [51530,6663], + [51540,45081], + [51550,230410], + [51570,17488], + [51580,5832], + [51590,42632], + [51595,5691], + [51600,23270], + [51610,13416], + [51620,8541], + [51630,27833], + [51640,6936], + [51650,137301], + [51660,51635], + [51670,22175], + [51678,7140], + [51680,77999], + [51683,41183], + [51685,15947], + [51690,13414], + [51700,181364], + [51710,245601], + [51720,4111], + [51730,32311], + [51735,12091], + [51740,96069], + [51750,17124], + [51760,214012], + [51770,98938], + [51775,25310], + [51790,24109], + [51800,85770], + [51810,448226], + [51820,21181], + [51830,14618], + [51840,27339], + [53001,19142], + [53003,22127], + [53005,184380], + [53007,73798], + [53009,72052], + [53011,441560], + [53013,4002], + [53015,101481], + [53017,39436], + [53019,7591], + [53021,86600], + [53023,2237], + [53025,91821], + [53027,71066], + [53029,78166], + [53031,29990], + [53033,2047039], + [53035,252434], + [53037,41825], + [53039,20867], + [53041,74974], + [53043,10296], + [53045,60462], + [53047,41087], + [53049,20445], + [53051,12881], + [53053,819164], + [53055,15908], + [53057,118295], + [53059,11308], + [53061,744377], + [53063,478407], + [53065,43258], + [53067,261798], + [53069,4032], + [53071,59378], + [53073,206189], + [53075,46728], + [53077,246809], + [54001,16863], + [54003,108335], + [54005,24089], + [54007,14382], + [54009,23604], + [54011,96895], + [54013,7551], + [54015,9140], + [54017,8546], + [54019,45549], + [54021,8615], + [54023,11755], + [54025,35769], + [54027,23490], + [54029,30358], + [54031,13933], + [54033,68916], + [54035,29176], + [54037,54819], + [54039,191415], + [54041,16478], + [54043,21462], + [54045,35919], + [54047,20907], + [54049,56651], + [54051,32617], + [54053,27120], + [54055,61842], + [54057,27664], + [54059,25971], + [54061,101883], + [54063,13521], + [54065,17393], + [54067,25934], + [54069,43722], + [54071,7375], + [54073,7518], + [54075,8676], + [54077,33683], + [54079,56497], + [54081,78728], + [54083,29532], + [54085,10147], + [54087,14606], + [54089,13594], + [54091,16987], + [54093,7079], + [54095,8989], + [54097,24596], + [54099,41806], + [54101,8833], + [54103,16124], + [54105,5839], + [54107,86502], + [54109,22938], + [55001,20419], + [55003,15967], + [55005,45568], + [55007,15118], + [55009,254264], + [55011,13374], + [55013,15260], + [55015,49648], + [55017,63087], + [55019,34555], + [55021,56549], + [55023,16391], + [55025,509542], + [55027,87964], + [55029,27607], + [55031,43733], + [55033,44013], + [55035,101708], + [55037,4384], + [55039,101783], + [55041,9089], + [55043,50985], + [55045,36918], + [55047,18886], + [55049,23551], + [55051,5829], + [55053,20558], + [55055,84635], + [55057,26563], + [55059,167323], + [55061,20372], + [55063,116839], + [55065,16675], + [55067,19415], + [55069,28318], + [55071,80489], + [55073,134928], + [55075,41283], + [55077,15181], + [55078,4367], + [55079,957751], + [55081,45117], + [55083,37364], + [55085,35534], + [55087,180325], + [55089,87185], + [55091,7351], + [55093,40778], + [55095,43317], + [55097,70466], + [55099,13736], + [55101,194753], + [55103,17811], + [55105,160373], + [55107,14364], + [55109,85649], + [55111,62818], + [55113,16489], + [55115,41409], + [55117,114720], + [55119,20420], + [55121,29493], + [55123,30088], + [55125,21374], + [55127,102871], + [55129,15658], + [55131,132917], + [55133,393887], + [55135,52062], + [55137,24257], + [55139,169279], + [55141,73919], + [56001,37573], + [56003,11939], + [56005,48051], + [56007,15861], + [56009,14365], + [56011,7153], + [56013,40911], + [56015,13551], + [56017,4834], + [56019,8637], + [56021,95731], + [56023,18312], + [56025,81101], + [56027,2544], + [56029,29170], + [56031,8707], + [56033,29735], + [56035,10172], + [56037,45145], + [56039,22326], + [56041,20960], + [56043,8427], + [56045,7136] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2014.json b/data/regional/united-states/demographics/population/us-population-2014.json new file mode 100644 index 0000000..a723b73 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2014.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2014.", + "units" : "people", + "year" : "2014", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2014"], + [1001,54864], + [1003,199064], + [1005,26749], + [1007,22533], + [1009,57546], + [1011,10673], + [1013,20327], + [1015,115941], + [1017,33948], + [1019,25897], + [1021,43779], + [1023,13318], + [1025,24865], + [1027,13440], + [1029,15026], + [1031,50652], + [1033,54461], + [1035,12677], + [1037,11034], + [1039,37755], + [1041,13852], + [1043,81041], + [1045,49409], + [1047,41559], + [1049,71034], + [1051,80562], + [1053,37740], + [1055,103374], + [1057,16768], + [1059,31494], + [1061,26598], + [1063,8587], + [1065,15048], + [1067,17080], + [1069,104148], + [1071,52541], + [1073,659544], + [1075,14070], + [1077,92983], + [1079,33448], + [1081,154211], + [1083,90616], + [1085,10489], + [1087,19640], + [1089,349596], + [1091,19975], + [1093,30200], + [1095,94232], + [1097,414314], + [1099,21931], + [1101,227307], + [1103,119408], + [1105,9819], + [1107,20282], + [1109,33016], + [1111,22350], + [1113,59207], + [1115,86219], + [1117,206152], + [1119,13253], + [1121,81445], + [1123,40886], + [1125,202803], + [1127,65326], + [1129,16851], + [1131,10951], + [1133,24129], + [2013,3325], + [2016,5839], + [2020,300296], + [2050,17929], + [2060,949], + [2068,1913], + [2070,4987], + [2090,99308], + [2100,2555], + [2105,"NA"], + [2110,32490], + [2122,57585], + [2130,13780], + [2150,13906], + [2158,8105], + [2164,1647], + [2170,98104], + [2180,9798], + [2185,9763], + [2188,7756], + [2195,3265], + [2198,6462], + [2220,8844], + [2230,"NA"], + [2240,6929], + [2261,9478], + [2275,"NA"], + [2282,655], + [2290,5463], + [4001,71762], + [4003,127054], + [4005,137209], + [4007,53008], + [4009,38064], + [4011,9319], + [4012,20442], + [4013,4076708], + [4015,203320], + [4017,107613], + [4019,1000916], + [4021,394004], + [4023,46468], + [4025,217509], + [4027,203039], + [5001,18484], + [5003,20958], + [5005,40871], + [5007,244192], + [5009,37090], + [5011,11007], + [5013,5168], + [5015,27715], + [5017,11187], + [5019,22551], + [5021,15295], + [5023,25603], + [5025,8397], + [5027,24014], + [5029,20977], + [5031,102526], + [5033,61797], + [5035,49550], + [5037,17171], + [5039,7687], + [5041,12268], + [5043,18635], + [5045,120463], + [5047,17815], + [5049,12074], + [5051,97720], + [5053,18069], + [5055,43772], + [5057,22348], + [5059,33396], + [5061,13516], + [5063,37043], + [5065,13547], + [5067,17595], + [5069,72422], + [5071,25972], + [5073,7163], + [5075,16970], + [5077,9844], + [5079,14031], + [5081,12522], + [5083,21849], + [5085,71264], + [5087,15721], + [5089,16422], + [5091,43569], + [5093,44232], + [5095,7635], + [5097,9155], + [5099,8651], + [5101,7878], + [5103,24750], + [5105,10352], + [5107,19962], + [5109,10982], + [5111,24144], + [5113,20253], + [5115,63073], + [5117,8349], + [5119,392434], + [5121,17561], + [5123,27078], + [5125,114781], + [5127,10665], + [5129,7915], + [5131,126683], + [5133,17388], + [5135,16817], + [5137,12378], + [5139,40129], + [5141,16887], + [5143,219442], + [5145,78368], + [5147,6871], + [5149,21737], + [6001,1611572], + [6003,1084], + [6005,36748], + [6007,223629], + [6009,44677], + [6011,21268], + [6013,1110971], + [6015,27206], + [6017,183333], + [6019,963170], + [6021,27909], + [6023,134584], + [6025,178868], + [6027,18340], + [6029,871895], + [6031,149862], + [6033,64113], + [6035,31716], + [6037,10072695], + [6039,154103], + [6041,261007], + [6043,17730], + [6045,87375], + [6047,265281], + [6049,9083], + [6051,14072], + [6053,430416], + [6055,140918], + [6057,98614], + [6059,3136750], + [6061,369727], + [6063,18667], + [6065,2321738], + [6067,1477522], + [6069,57974], + [6071,2104038], + [6073,3256875], + [6075,853258], + [6077,713452], + [6079,278534], + [6081,759156], + [6083,440628], + [6085,1896246], + [6087,271529], + [6089,178983], + [6091,2979], + [6093,43390], + [6095,429993], + [6097,499563], + [6099,529544], + [6101,94983], + [6103,62820], + [6105,13122], + [6107,456452], + [6109,53852], + [6111,844749], + [6113,208873], + [6115,73642], + [8001,479488], + [8003,16213], + [8005,617385], + [8007,12222], + [8009,3586], + [8011,5784], + [8013,312505], + [8014,61706], + [8015,18439], + [8017,1834], + [8019,9110], + [8021,8224], + [8023,3554], + [8025,5586], + [8027,4345], + [8029,29947], + [8031,663271], + [8033,1977], + [8035,314250], + [8037,53143], + [8039,23998], + [8041,661792], + [8043,46075], + [8045,57120], + [8047,5736], + [8049,14536], + [8051,15835], + [8053,773], + [8055,6389], + [8057,1385], + [8059,558519], + [8061,1380], + [8063,8007], + [8065,7317], + [8067,53740], + [8069,323673], + [8071,14031], + [8073,5507], + [8075,21958], + [8077,147215], + [8079,703], + [8081,12931], + [8083,25502], + [8085,40553], + [8087,28044], + [8089,18368], + [8091,4560], + [8093,16364], + [8095,4382], + [8097,17664], + [8099,12075], + [8101,161419], + [8103,6636], + [8105,11498], + [8107,24019], + [8109,6186], + [8111,711], + [8113,7704], + [8115,2329], + [8117,29186], + [8119,23431], + [8121,4732], + [8123,275584], + [8125,10175], + [9001,946547], + [9003,898810], + [9005,185585], + [9007,164717], + [9009,864073], + [9011,271864], + [9013,151748], + [9015,116844], + [10001,171664], + [10003,552465], + [10005,210676], + [11001,660797], + [12001,255809], + [12003,27123], + [12005,178221], + [12007,26559], + [12009,556277], + [12011,1866837], + [12013,14452], + [12015,168336], + [12017,138920], + [12019,198719], + [12021,348216], + [12023,67851], + [12027,35271], + [12029,16034], + [12031,897679], + [12033,308103], + [12035,102118], + [12037,11644], + [12039,46147], + [12041,16936], + [12043,12965], + [12045,16006], + [12047,14071], + [12049,27303], + [12051,38473], + [12053,175347], + [12055,98482], + [12057,1319511], + [12059,19570], + [12061,144571], + [12063,48729], + [12065,14046], + [12067,8841], + [12069,315780], + [12071,678241], + [12073,283931], + [12075,39312], + [12077,8416], + [12079,18606], + [12081,351401], + [12083,338368], + [12085,153246], + [12086,2674754], + [12087,76492], + [12089,76242], + [12091,194628], + [12093,39563], + [12095,1258227], + [12097,311748], + [12099,1402065], + [12101,484048], + [12103,937933], + [12105,635152], + [12107,71983], + [12109,217977], + [12111,290594], + [12113,162768], + [12115,396779], + [12117,442174], + [12119,112334], + [12121,43788], + [12123,22575], + [12125,15271], + [12127,507276], + [12129,31408], + [12131,61203], + [12133,24297], + [13001,18502], + [13003,8243], + [13005,11218], + [13007,3295], + [13009,45853], + [13011,18248], + [13013,72959], + [13015,101397], + [13017,17423], + [13019,18821], + [13021,154422], + [13023,12712], + [13025,18337], + [13027,15534], + [13029,33678], + [13031,72734], + [13033,22628], + [13035,23317], + [13037,6516], + [13039,51926], + [13043,10885], + [13045,113596], + [13047,65488], + [13049,13038], + [13051,282858], + [13053,11714], + [13055,24859], + [13057,230396], + [13059,120721], + [13061,3070], + [13063,267405], + [13065,6800], + [13067,729904], + [13069,42977], + [13071,46029], + [13073,139285], + [13075,17319], + [13077,135266], + [13079,12435], + [13081,23076], + [13083,16282], + [13085,22988], + [13087,27194], + [13089,725647], + [13091,21177], + [13093,14245], + [13095,92754], + [13097,138229], + [13099,10444], + [13101,4060], + [13103,55414], + [13105,19394], + [13107,22481], + [13109,10827], + [13111,23846], + [13113,109320], + [13115,95959], + [13117,202945], + [13119,22186], + [13121,994658], + [13123,29037], + [13125,3006], + [13127,82333], + [13129,55878], + [13131,25267], + [13133,16472], + [13135,874472], + [13137,43620], + [13139,189480], + [13141,8575], + [13143,28483], + [13145,32748], + [13147,25395], + [13149,11620], + [13151,213282], + [13153,148926], + [13155,9098], + [13157,62098], + [13159,13554], + [13161,14937], + [13163,16140], + [13165,9041], + [13167,9830], + [13169,28654], + [13171,18185], + [13173,10371], + [13175,47631], + [13177,29138], + [13179,64016], + [13181,7641], + [13183,17196], + [13185,113580], + [13187,31169], + [13189,21524], + [13191,14065], + [13193,13839], + [13195,28330], + [13197,8655], + [13199,21221], + [13201,5949], + [13205,22728], + [13207,26660], + [13209,8936], + [13211,17897], + [13213,39318], + [13215,200714], + [13217,103508], + [13219,35061], + [13221,14538], + [13223,148617], + [13225,27097], + [13227,29840], + [13229,19027], + [13231,17761], + [13233,40961], + [13235,11510], + [13237,21190], + [13239,2290], + [13241,16185], + [13243,7312], + [13245,201292], + [13247,87416], + [13249,5187], + [13251,14000], + [13253,8601], + [13255,63695], + [13257,25441], + [13259,5870], + [13261,31185], + [13263,6509], + [13265,1695], + [13267,25352], + [13269,8374], + [13271,16511], + [13273,9084], + [13275,44909], + [13277,40536], + [13279,27178], + [13281,11080], + [13283,6808], + [13285,69267], + [13287,8063], + [13289,8376], + [13291,21759], + [13293,26178], + [13295,68661], + [13297,87539], + [13299,35582], + [13301,5463], + [13303,20555], + [13305,29913], + [13307,2613], + [13309,7970], + [13311,28035], + [13313,103449], + [13315,8894], + [13317,9965], + [13319,9283], + [13321,21022], + [15001,194240], + [15003,989438], + [15005,89], + [15007,70523], + [15009,163420], + [16001,425627], + [16003,3882], + [16005,83514], + [16007,5922], + [16009,9029], + [16011,45213], + [16013,21388], + [16015,6778], + [16017,41285], + [16019,108237], + [16021,10941], + [16023,2657], + [16025,1057], + [16027,202294], + [16029,6812], + [16031,23478], + [16033,877], + [16035,8508], + [16037,4135], + [16039,26220], + [16041,12917], + [16043,12802], + [16045,16650], + [16047,15048], + [16049,16268], + [16051,26921], + [16053,22817], + [16055,146556], + [16057,38503], + [16059,7720], + [16061,3810], + [16063,5310], + [16065,37891], + [16067,20257], + [16069,39825], + [16071,4175], + [16073,11276], + [16075,22743], + [16077,7680], + [16079,12380], + [16081,10392], + [16083,80836], + [16085,9794], + [16087,9966], + [17001,67016], + [17003,7080], + [17005,17130], + [17007,53742], + [17009,6834], + [17011,33846], + [17013,4926], + [17015,14783], + [17017,13078], + [17019,207081], + [17021,33816], + [17023,16045], + [17025,13441], + [17027,37640], + [17029,52712], + [17031,5253756], + [17033,19281], + [17035,10926], + [17037,104648], + [17039,16218], + [17041,19917], + [17043,932958], + [17045,17764], + [17047,6627], + [17049,34107], + [17051,22063], + [17053,13536], + [17055,39442], + [17057,35992], + [17059,5279], + [17061,13407], + [17063,50279], + [17065,8312], + [17067,18324], + [17069,4238], + [17071,7010], + [17073,49829], + [17075,28723], + [17077,59326], + [17079,9629], + [17081,38376], + [17083,22442], + [17085,22326], + [17087,12889], + [17089,526475], + [17091,111384], + [17093,121377], + [17095,51889], + [17097,704558], + [17099,111682], + [17101,16556], + [17103,34897], + [17105,37012], + [17107,29644], + [17109,31892], + [17111,307555], + [17113,173726], + [17115,108529], + [17117,46185], + [17119,266526], + [17121,38545], + [17123,11959], + [17125,14100], + [17127,14750], + [17129,12507], + [17131,15902], + [17133,33534], + [17135,29442], + [17137,34682], + [17139,14744], + [17141,51967], + [17143,187442], + [17145,21539], + [17147,16411], + [17149,15956], + [17151,4373], + [17153,5795], + [17155,5830], + [17157,33132], + [17159,16026], + [17161,146965], + [17163,265591], + [17165,24496], + [17167,198980], + [17169,7266], + [17171,5169], + [17173,22111], + [17175,5603], + [17177,46264], + [17179,135341], + [17181,17398], + [17183,79800], + [17185,11581], + [17187,17656], + [17189,14389], + [17191,16593], + [17193,14267], + [17195,57036], + [17197,685492], + [17199,67386], + [17201,288670], + [17203,39067], + [18001,34763], + [18003,365084], + [18005,80350], + [18007,8720], + [18009,12339], + [18011,61602], + [18013,14943], + [18015,19956], + [18017,38493], + [18019,114066], + [18021,26424], + [18023,32493], + [18025,10669], + [18027,32678], + [18029,49421], + [18031,26427], + [18033,42387], + [18035,116448], + [18037,42287], + [18039,201673], + [18041,23443], + [18043,76083], + [18045,16694], + [18047,22956], + [18049,20512], + [18051,33723], + [18053,68371], + [18055,32629], + [18057,302828], + [18059,71749], + [18061,39166], + [18063,155717], + [18065,48892], + [18067,82563], + [18069,36603], + [18071,43719], + [18073,33502], + [18075,21140], + [18077,32410], + [18079,27910], + [18081,147017], + [18083,37958], + [18085,78605], + [18087,38443], + [18089,491156], + [18091,111717], + [18093,45646], + [18095,129718], + [18097,935745], + [18099,46938], + [18101,10235], + [18103,36078], + [18105,143405], + [18107,38161], + [18109,69498], + [18111,14091], + [18113,47400], + [18115,5963], + [18117,19762], + [18119,21029], + [18121,17245], + [18123,19332], + [18125,12550], + [18127,167192], + [18129,25599], + [18131,12919], + [18133,37666], + [18135,25313], + [18137,28335], + [18139,16844], + [18141,267733], + [18143,23628], + [18145,44367], + [18147,20761], + [18149,22952], + [18151,34518], + [18153,20999], + [18155,10552], + [18157,183705], + [18159,15392], + [18161,7249], + [18163,182128], + [18165,15657], + [18167,107842], + [18169,32106], + [18171,8335], + [18173,60947], + [18175,27894], + [18177,67353], + [18179,27798], + [18181,24434], + [18183,33439], + [19001,7367], + [19003,3878], + [19005,14044], + [19007,12667], + [19009,5769], + [19011,25630], + [19013,133123], + [19015,26282], + [19017,24674], + [19019,21135], + [19021,20551], + [19023,14958], + [19025,9839], + [19027,20496], + [19029,13394], + [19031,18318], + [19033,43166], + [19035,11802], + [19037,12239], + [19039,9202], + [19041,16491], + [19043,17763], + [19045,47882], + [19047,17167], + [19049,77569], + [19051,8756], + [19053,8200], + [19055,17374], + [19057,40087], + [19059,16830], + [19061,96408], + [19063,9792], + [19065,20274], + [19067,16009], + [19069,10432], + [19071,7032], + [19073,9129], + [19075,12392], + [19077,10681], + [19079,15218], + [19081,11037], + [19083,17327], + [19085,14269], + [19087,19820], + [19089,9352], + [19091,9624], + [19093,6970], + [19095,16312], + [19097,19422], + [19099,36870], + [19101,17693], + [19103,142100], + [19105,20512], + [19107,10282], + [19109,15223], + [19111,35052], + [19113,217821], + [19115,11225], + [19117,8624], + [19119,11701], + [19121,15604], + [19123,22352], + [19125,33260], + [19127,40672], + [19129,14763], + [19131,10693], + [19133,8894], + [19135,7957], + [19137,10378], + [19139,42936], + [19141,14036], + [19143,6227], + [19145,15463], + [19147,9118], + [19149,24897], + [19151,7096], + [19153,460293], + [19155,93199], + [19157,18571], + [19159,4961], + [19161,10048], + [19163,171118], + [19165,11873], + [19167,34566], + [19169,95310], + [19171,17308], + [19173,6164], + [19175,12615], + [19177,7392], + [19179,35382], + [19181,47830], + [19183,22017], + [19185,6374], + [19187,37042], + [19189,10541], + [19191,20693], + [19193,102200], + [19195,7562], + [19197,12902], + [20001,12882], + [20003,7882], + [20005,16524], + [20007,4886], + [20009,27329], + [20011,14794], + [20013,9783], + [20015,65867], + [20017,2653], + [20019,3459], + [20021,20759], + [20023,2685], + [20025,2114], + [20027,8300], + [20029,9327], + [20031,8398], + [20033,1947], + [20035,35844], + [20037,39208], + [20039,2898], + [20041,19299], + [20043,7839], + [20045,116323], + [20047,3018], + [20049,2694], + [20051,28934], + [20053,6346], + [20055,37137], + [20057,34893], + [20059,25531], + [20061,36459], + [20063,2753], + [20065,2557], + [20067,7794], + [20069,6052], + [20071,1301], + [20073,6288], + [20075,2647], + [20077,5832], + [20079,34584], + [20081,4099], + [20083,1888], + [20085,13438], + [20087,18821], + [20089,3047], + [20091,572885], + [20093,3939], + [20095,7678], + [20097,2529], + [20099,20781], + [20101,1666], + [20103,78516], + [20105,3182], + [20107,9536], + [20109,2764], + [20111,33134], + [20113,28863], + [20115,12182], + [20117,9940], + [20119,4344], + [20121,32873], + [20123,6244], + [20125,34067], + [20127,5667], + [20129,3045], + [20131,10081], + [20133,16328], + [20135,3081], + [20137,5533], + [20139,15968], + [20141,3750], + [20143,6028], + [20145,6823], + [20147,5494], + [20149,22744], + [20151,9761], + [20153,2539], + [20155,63678], + [20157,4737], + [20159,9970], + [20161,76295], + [20163,5204], + [20165,3162], + [20167,7007], + [20169,55566], + [20171,5003], + [20173,508921], + [20175,23297], + [20177,178487], + [20179,2503], + [20181,6067], + [20183,3729], + [20185,4286], + [20187,2133], + [20189,5831], + [20191,23379], + [20193,7828], + [20195,2895], + [20197,6932], + [20199,1502], + [20201,5612], + [20203,2181], + [20205,8976], + [20207,3188], + [20209,162106], + [21001,19246], + [21003,20497], + [21005,21824], + [21007,8191], + [21009,43028], + [21011,12129], + [21013,27841], + [21015,126241], + [21017,19976], + [21019,48840], + [21021,29760], + [21023,8347], + [21025,13362], + [21027,19878], + [21029,78053], + [21031,12726], + [21033,12847], + [21035,38423], + [21037,91592], + [21039,4966], + [21041,10708], + [21043,27511], + [21045,15772], + [21047,73327], + [21049,35631], + [21051,21096], + [21053,10198], + [21055,9175], + [21057,6731], + [21059,98421], + [21061,11993], + [21063,7535], + [21065,14439], + [21067,310886], + [21069,14487], + [21071,37994], + [21073,49688], + [21075,6267], + [21077,8612], + [21079,16986], + [21081,24819], + [21083,37523], + [21085,26065], + [21087,11028], + [21089,36288], + [21091,8685], + [21093,108425], + [21095,28016], + [21097,18610], + [21099,18504], + [21101,46381], + [21103,15543], + [21105,4677], + [21107,46172], + [21109,13313], + [21111,761099], + [21113,50848], + [21115,23257], + [21117,163195], + [21119,15923], + [21121,31518], + [21123,14119], + [21125,59840], + [21127,15889], + [21129,6797], + [21131,10833], + [21133,23366], + [21135,13750], + [21137,24447], + [21139,9331], + [21141,26808], + [21143,8413], + [21145,65352], + [21147,17921], + [21149,9410], + [21151,87058], + [21153,12981], + [21155,19051], + [21157,30983], + [21159,12510], + [21161,17137], + [21163,29102], + [21165,6299], + [21167,21345], + [21169,9982], + [21171,10666], + [21173,27360], + [21175,13351], + [21177,31307], + [21179,44857], + [21181,7048], + [21183,23941], + [21185,63924], + [21187,10646], + [21189,4505], + [21191,14472], + [21193,27570], + [21195,62953], + [21197,12361], + [21199,63830], + [21201,2187], + [21203,16827], + [21205,24231], + [21207,17750], + [21209,51212], + [21211,45027], + [21213,17751], + [21215,17733], + [21217,25372], + [21219,12409], + [21221,14136], + [21223,8735], + [21225,15083], + [21227,121005], + [21229,11895], + [21231,20609], + [21233,13191], + [21235,35846], + [21237,7252], + [21239,25536], + [22001,62664], + [22003,25724], + [22005,117263], + [22007,23038], + [22009,41121], + [22011,36261], + [22013,13789], + [22015,124916], + [22017,252789], + [22019,196641], + [22021,9946], + [22023,6715], + [22025,10140], + [22027,16411], + [22029,20474], + [22031,27066], + [22033,445887], + [22035,7440], + [22037,19682], + [22039,33763], + [22041,20428], + [22043,22331], + [22045,73758], + [22047,33136], + [22049,15991], + [22051,435585], + [22053,31450], + [22055,235834], + [22057,97901], + [22059,14870], + [22061,47342], + [22063,135579], + [22065,11819], + [22067,26653], + [22069,39126], + [22071,384763], + [22073,156382], + [22075,23322], + [22077,22305], + [22079,132302], + [22081,8765], + [22083,20764], + [22085,24122], + [22087,44447], + [22089,52732], + [22091,10516], + [22093,21523], + [22095,43743], + [22097,83665], + [22099,53281], + [22101,53273], + [22103,245511], + [22105,126954], + [22107,4854], + [22109,113512], + [22111,22556], + [22113,59567], + [22115,52852], + [22117,46353], + [22119,40299], + [22121,25187], + [22123,11527], + [22125,15368], + [22127,14819], + [23001,107290], + [23003,69513], + [23005,287477], + [23007,30236], + [23009,54519], + [23011,121144], + [23013,39746], + [23015,34038], + [23017,57223], + [23019,152941], + [23021,17040], + [23023,35079], + [23025,51236], + [23027,39000], + [23029,31928], + [23031,200493], + [24001,73045], + [24003,560452], + [24005,826545], + [24009,90567], + [24011,32558], + [24013,167329], + [24015,102249], + [24017,154462], + [24019,32513], + [24021,243776], + [24023,29635], + [24025,249430], + [24027,307784], + [24029,19774], + [24031,1030188], + [24033,901644], + [24035,48822], + [24037,110016], + [24039,25588], + [24041,37582], + [24043,149097], + [24045,101546], + [24047,51581], + [24510,624062], + [25001,214279], + [25003,128645], + [25005,555391], + [25007,17300], + [25009,771468], + [25011,71195], + [25013,469612], + [25015,160867], + [25017,1573084], + [25019,10795], + [25021,691928], + [25023,506496], + [25025,771603], + [25027,815262], + [26001,10449], + [26003,9356], + [26005,113290], + [26007,28874], + [26009,23147], + [26011,15313], + [26013,8640], + [26015,59274], + [26017,106025], + [26019,17473], + [26021,155677], + [26023,43690], + [26025,134602], + [26027,51534], + [26029,26167], + [26031,25637], + [26033,38212], + [26035,30724], + [26037,76906], + [26039,13736], + [26041,36575], + [26043,25890], + [26045,108475], + [26047,32953], + [26049,412673], + [26051,25485], + [26053,15754], + [26055,90816], + [26057,41438], + [26059,45916], + [26061,36347], + [26063,32026], + [26065,284204], + [26067,64229], + [26069,25413], + [26071,11341], + [26073,69933], + [26075,159343], + [26077,258626], + [26079,17349], + [26081,630413], + [26083,2173], + [26085,11390], + [26087,88142], + [26089,21583], + [26091,98692], + [26093,185464], + [26095,6408], + [26097,10981], + [26099,861487], + [26101,24395], + [26103,67734], + [26105,28711], + [26107,43148], + [26109,23508], + [26111,83421], + [26113,14963], + [26115,149796], + [26117,62772], + [26119,9323], + [26121,172171], + [26123,47759], + [26125,1239248], + [26127,26313], + [26129,20961], + [26131,6189], + [26133,23198], + [26135,8316], + [26137,24076], + [26139,277303], + [26141,12954], + [26143,24010], + [26145,195055], + [26147,160018], + [26149,60959], + [26151,41659], + [26153,8139], + [26155,68770], + [26157,53918], + [26159,75153], + [26161,358635], + [26163,1769007], + [26165,32848], + [27001,15856], + [27003,342088], + [27005,33261], + [27007,45629], + [27009,39100], + [27011,5089], + [27013,65268], + [27015,25264], + [27017,35353], + [27019,97343], + [27021,28543], + [27023,12048], + [27025,53797], + [27027,61188], + [27029,8794], + [27031,5235], + [27033,11507], + [27035,63102], + [27037,411845], + [27039,20376], + [27041,36573], + [27043,14107], + [27045,20764], + [27047,30740], + [27049,46003], + [27051,5923], + [27053,1212093], + [27055,18704], + [27057,20634], + [27059,38259], + [27061,45322], + [27063,10271], + [27065,15960], + [27067,42474], + [27069,4453], + [27071,12847], + [27073,6899], + [27075,10599], + [27077,3887], + [27079,27804], + [27081,5766], + [27083,25761], + [27085,35759], + [27087,5502], + [27089,9420], + [27091,20238], + [27093,23138], + [27095,25554], + [27097,32804], + [27099,39371], + [27101,8433], + [27103,33326], + [27105,21702], + [27107,6586], + [27109,150058], + [27111,57521], + [27113,14113], + [27115,29084], + [27117,9313], + [27119,31474], + [27121,10923], + [27123,533367], + [27125,3996], + [27127,15532], + [27129,14923], + [27131,64917], + [27133,9384], + [27135,15681], + [27137,200669], + [27139,139252], + [27141,90867], + [27143,14898], + [27145,153858], + [27147,36489], + [27149,9838], + [27151,9477], + [27153,24363], + [27155,3378], + [27157,21456], + [27159,13589], + [27161,18919], + [27163,248699], + [27165,10950], + [27167,6464], + [27169,51054], + [27171,129802], + [27173,9979], + [28001,31962], + [28003,37235], + [28005,12598], + [28007,18824], + [28009,8298], + [28011,33803], + [28013,14695], + [28015,10233], + [28017,17384], + [28019,8383], + [28021,9164], + [28023,16277], + [28025,20135], + [28027,24842], + [28029,28928], + [28031,19148], + [28033,170640], + [28035,75808], + [28037,7773], + [28039,23310], + [28041,14341], + [28043,21600], + [28045,45939], + [28047,198218], + [28049,245136], + [28051,18509], + [28053,8790], + [28055,1393], + [28057,23394], + [28059,141374], + [28061,16529], + [28063,7577], + [28065,11822], + [28067,68303], + [28069,10248], + [28071,51828], + [28073,60060], + [28075,79213], + [28077,12601], + [28079,23182], + [28081,84758], + [28083,30685], + [28085,34725], + [28087,59779], + [28089,100788], + [28091,25680], + [28093,36166], + [28095,36065], + [28097,10357], + [28099,29428], + [28101,21615], + [28103,11061], + [28105,49024], + [28107,34434], + [28109,55130], + [28111,12051], + [28113,39937], + [28115,30787], + [28117,25405], + [28119,7685], + [28121,148406], + [28123,28500], + [28125,4610], + [28127,27490], + [28129,16211], + [28131,17852], + [28133,27398], + [28135,14701], + [28137,28246], + [28139,21969], + [28141,19413], + [28143,10491], + [28145,28116], + [28147,14837], + [28149,47944], + [28151,48997], + [28153,20451], + [28155,9989], + [28157,9182], + [28159,18601], + [28161,12306], + [28163,27811], + [29001,25537], + [29003,17281], + [29005,5362], + [29007,25815], + [29009,35330], + [29011,11987], + [29013,16520], + [29015,18874], + [29017,12420], + [29019,172787], + [29021,89639], + [29023,42865], + [29025,9005], + [29027,44636], + [29029,44571], + [29031,77896], + [29033,8958], + [29035,6282], + [29037,100865], + [29039,13788], + [29041,7684], + [29043,81840], + [29045,6884], + [29047,233094], + [29049,20259], + [29051,76675], + [29053,17561], + [29055,24610], + [29057,7600], + [29059,16342], + [29061,8323], + [29063,12547], + [29065,15600], + [29067,13516], + [29069,31304], + [29071,101955], + [29073,14809], + [29075,6752], + [29077,285271], + [29079,10177], + [29081,8630], + [29083,22030], + [29085,9293], + [29087,4530], + [29089,10135], + [29091,40133], + [29093,10374], + [29095,683516], + [29097,117763], + [29099,222008], + [29101,54194], + [29103,3993], + [29105,35505], + [29107,32633], + [29109,37908], + [29111,10095], + [29113,54207], + [29115,12310], + [29117,15010], + [29119,22832], + [29121,15448], + [29123,12199], + [29125,9030], + [29127,28761], + [29129,3683], + [29131,24833], + [29133,14156], + [29135,15823], + [29137,8733], + [29139,11731], + [29141,20068], + [29143,18252], + [29145,58131], + [29147,22987], + [29149,10822], + [29151,13617], + [29153,9427], + [29155,17579], + [29157,19121], + [29159,42206], + [29161,44970], + [29163,18502], + [29165,94883], + [29167,31128], + [29169,53616], + [29171,4843], + [29173,10268], + [29175,25048], + [29177,22911], + [29179,6405], + [29181,13926], + [29183,379911], + [29185,9431], + [29186,17926], + [29187,65794], + [29189,1000967], + [29195,23277], + [29197,4389], + [29199,4837], + [29201,38852], + [29203,8299], + [29205,6093], + [29207,29786], + [29209,31445], + [29211,6473], + [29213,53875], + [29215,25652], + [29217,20860], + [29219,33147], + [29221,25069], + [29223,13464], + [29225,36975], + [29227,2056], + [29229,18277], + [29510,317732], + [30001,9333], + [30003,13327], + [30005,6650], + [30007,5657], + [30009,10423], + [30011,1151], + [30013,81991], + [30015,5889], + [30017,12002], + [30019,1795], + [30021,9494], + [30023,9118], + [30025,3110], + [30027,11311], + [30029,94468], + [30031,97029], + [30033,1275], + [30035,13686], + [30037,841], + [30039,3146], + [30041,16486], + [30043,11478], + [30045,1984], + [30047,29138], + [30049,65605], + [30051,2348], + [30053,19157], + [30055,1714], + [30057,7777], + [30059,1854], + [30061,4186], + [30063,112462], + [30065,4630], + [30067,15901], + [30069,494], + [30071,4165], + [30073,6128], + [30075,1777], + [30077,6876], + [30079,1121], + [30081,40723], + [30083,11532], + [30085,11280], + [30087,9315], + [30089,11305], + [30091,3651], + [30093,34578], + [30095,9238], + [30097,3637], + [30099,6018], + [30101,5113], + [30103,689], + [30105,7613], + [30107,2081], + [30109,1085], + [30111,155096], + [31001,31387], + [31003,6422], + [31005,452], + [31007,669], + [31009,490], + [31011,5361], + [31013,11300], + [31015,2021], + [31017,2974], + [31019,48261], + [31021,6544], + [31023,8178], + [31025,25393], + [31027,8542], + [31029,3993], + [31031,5740], + [31033,10115], + [31035,6314], + [31037,10666], + [31039,9032], + [31041,10777], + [31043,20611], + [31045,9026], + [31047,24048], + [31049,1928], + [31051,5755], + [31053,36591], + [31055,543570], + [31057,1867], + [31059,5604], + [31061,3049], + [31063,2722], + [31065,4855], + [31067,21533], + [31069,1909], + [31071,2000], + [31073,2004], + [31075,626], + [31077,2483], + [31079,61202], + [31081,9103], + [31083,3482], + [31085,910], + [31087,2882], + [31089,10367], + [31091,722], + [31093,6352], + [31095,7300], + [31097,5220], + [31099,6590], + [31101,8174], + [31103,796], + [31105,3725], + [31107,8476], + [31109,302852], + [31111,35641], + [31113,767], + [31115,596], + [31117,511], + [31119,35079], + [31121,7785], + [31123,4924], + [31125,3528], + [31127,7126], + [31129,4347], + [31131,15793], + [31133,2726], + [31135,2879], + [31137,9167], + [31139,7206], + [31141,32759], + [31143,5268], + [31145,10898], + [31147,8108], + [31149,1449], + [31151,14310], + [31153,171889], + [31155,20869], + [31157,36468], + [31159,17006], + [31161,5253], + [31163,3034], + [31165,1321], + [31167,6096], + [31169,5213], + [31171,701], + [31173,6963], + [31175,4207], + [31177,20289], + [31179,9424], + [31181,3645], + [31183,786], + [31185,13924], + [32001,23883], + [32003,2064991], + [32005,47434], + [32007,52657], + [32009,826], + [32011,1989], + [32013,17273], + [32015,5991], + [32017,5201], + [32019,51384], + [32021,4486], + [32023,42904], + [32027,6711], + [32029,3798], + [32031,438009], + [32033,10038], + [32510,54155], + [33001,60172], + [33003,47369], + [33005,76263], + [33007,32770], + [33009,89425], + [33011,405062], + [33013,147542], + [33015,300962], + [33017,126003], + [33019,43116], + [34001,274842], + [34003,933348], + [34005,450318], + [34007,510913], + [34009,95146], + [34011,156475], + [34013,797078], + [34015,291151], + [34017,673773], + [34019,126129], + [34021,372974], + [34023,835335], + [34025,628236], + [34027,498481], + [34029,585810], + [34031,510058], + [34033,64360], + [34035,332345], + [34037,144811], + [34039,554069], + [34041,107358], + [35001,673902], + [35003,3549], + [35005,65642], + [35006,27080], + [35007,12693], + [35009,50874], + [35011,1853], + [35013,213200], + [35015,56516], + [35017,28820], + [35019,4443], + [35021,697], + [35023,4545], + [35025,69757], + [35027,19568], + [35028,17710], + [35029,24385], + [35031,72733], + [35033,4616], + [35035,64792], + [35037,8457], + [35039,39667], + [35041,19602], + [35043,136867], + [35045,128958], + [35047,28418], + [35049,146983], + [35051,11265], + [35053,17220], + [35055,32854], + [35057,15550], + [35059,4241], + [35061,75750], + [36001,308195], + [36003,47694], + [36005,1445800], + [36007,197649], + [36009,78726], + [36011,78800], + [36013,131892], + [36015,87414], + [36017,49340], + [36019,81549], + [36021,62018], + [36023,48742], + [36025,46560], + [36027,296058], + [36029,924449], + [36031,38380], + [36033,51158], + [36035,53975], + [36037,58807], + [36039,47984], + [36041,4703], + [36043,63407], + [36045,119044], + [36047,2626644], + [36049,27096], + [36051,64666], + [36053,72241], + [36055,749803], + [36057,49667], + [36059,1360703], + [36061,1646521], + [36063,213475], + [36065,233229], + [36067,468827], + [36069,109420], + [36071,376034], + [36073,41890], + [36075,120657], + [36077,60994], + [36079,99667], + [36081,2328004], + [36083,159938], + [36085,474166], + [36087,323072], + [36089,111601], + [36091,224872], + [36093,155340], + [36095,31795], + [36097,18170], + [36099,34890], + [36101,98208], + [36103,1500638], + [36105,75852], + [36107,49820], + [36109,104286], + [36111,180763], + [36113,64901], + [36115,62478], + [36117,91856], + [36119,972742], + [36121,41160], + [36123,25150], + [37001,155698], + [37003,37092], + [37005,10911], + [37007,25978], + [37009,26838], + [37011,17597], + [37013,47350], + [37015,20353], + [37017,34462], + [37019,118384], + [37021,249302], + [37023,88610], + [37025,191662], + [37027,81681], + [37029,10276], + [37031,68644], + [37033,22831], + [37035,155342], + [37037,66791], + [37039,27093], + [37041,14534], + [37043,10593], + [37045,97012], + [37047,56902], + [37049,104111], + [37051,332721], + [37053,24839], + [37055,34907], + [37057,163530], + [37059,41280], + [37061,59618], + [37063,295462], + [37065,54894], + [37067,364956], + [37069,62738], + [37071,210694], + [37073,11635], + [37075,8626], + [37077,58067], + [37079,21072], + [37081,512541], + [37083,52874], + [37085,126801], + [37087,59152], + [37089,110366], + [37091,24509], + [37093,51639], + [37095,5604], + [37097,166563], + [37099,40989], + [37101,180961], + [37103,9857], + [37105,59501], + [37107,58397], + [37109,79429], + [37111,45080], + [37113,33874], + [37115,21219], + [37117,23425], + [37119,1011315], + [37121,15226], + [37123,27352], + [37125,92847], + [37127,94253], + [37129,216171], + [37131,20673], + [37133,191866], + [37135,140399], + [37137,12884], + [37139,39434], + [37141,55954], + [37143,13535], + [37145,39117], + [37147,175079], + [37149,20382], + [37151,142585], + [37153,45792], + [37155,135035], + [37157,91849], + [37159,138168], + [37161,66557], + [37163,63889], + [37165,35658], + [37167,60659], + [37169,46333], + [37171,72557], + [37173,14243], + [37175,32979], + [37177,4120], + [37179,217948], + [37181,44528], + [37183,998914], + [37185,20377], + [37187,12510], + [37189,52429], + [37191,124664], + [37193,68455], + [37195,81122], + [37197,37889], + [37199,17546], + [38001,2389], + [38003,11064], + [38005,6881], + [38007,914], + [38009,6682], + [38011,3240], + [38013,2261], + [38015,90612], + [38017,166810], + [38019,3844], + [38021,5104], + [38023,2431], + [38025,4373], + [38027,2329], + [38029,3420], + [38031,3339], + [38033,1852], + [38035,69821], + [38037,2374], + [38039,2289], + [38041,2626], + [38043,2448], + [38045,4094], + [38047,1945], + [38049,5979], + [38051,2741], + [38053,10984], + [38055,9553], + [38057,8711], + [38059,29767], + [38061,9767], + [38063,3023], + [38065,1866], + [38067,7078], + [38069,4362], + [38071,11615], + [38073,5442], + [38075,2570], + [38077,16366], + [38079,14724], + [38081,3923], + [38083,1334], + [38085,4459], + [38087,779], + [38089,30338], + [38091,1912], + [38093,21100], + [38095,2276], + [38097,8040], + [38099,10927], + [38101,69627], + [38103,4123], + [38105,32130], + [39001,28063], + [39003,104843], + [39005,53107], + [39007,99021], + [39009,64649], + [39011,45753], + [39013,69348], + [39015,43944], + [39017,373388], + [39019,28131], + [39021,39061], + [39023,136233], + [39025,201377], + [39027,41788], + [39029,105557], + [39031,36526], + [39033,42386], + [39035,1262459], + [39037,52173], + [39039,38481], + [39041,189382], + [39043,75763], + [39045,150309], + [39047,28630], + [39049,1235582], + [39051,42398], + [39053,30347], + [39055,93976], + [39057,164496], + [39059,39689], + [39061,806790], + [39063,75189], + [39065,31763], + [39067,15518], + [39069,27586], + [39071,43073], + [39073,28739], + [39075,43781], + [39077,58562], + [39079,32771], + [39081,67853], + [39083,60929], + [39085,229662], + [39087,61538], + [39089,169295], + [39091,45469], + [39093,304313], + [39095,434372], + [39097,43953], + [39099,233278], + [39101,65784], + [39103,175817], + [39105,23282], + [39107,40721], + [39109,103776], + [39111,14368], + [39113,531992], + [39115,14743], + [39117,34936], + [39119,85859], + [39121,14519], + [39123,40903], + [39125,18976], + [39127,35917], + [39129,56693], + [39131,28307], + [39133,162216], + [39135,41483], + [39137,34181], + [39139,121965], + [39141,77078], + [39143,59823], + [39145,77280], + [39147,55761], + [39149,48934], + [39151,375549], + [39153,542095], + [39155,204974], + [39157,92613], + [39159,53654], + [39161,28308], + [39163,13210], + [39165,221152], + [39167,61118], + [39169,115776], + [39171,37186], + [39173,129230], + [39175,22268], + [40001,22240], + [40003,5813], + [40005,13917], + [40007,5519], + [40009,23600], + [40011,9823], + [40013,44458], + [40015,29455], + [40017,129327], + [40019,48548], + [40021,48215], + [40023,15100], + [40025,2271], + [40027,269577], + [40029,5709], + [40031,124452], + [40033,6120], + [40035,14630], + [40037,70506], + [40039,29387], + [40041,41678], + [40043,4949], + [40045,4116], + [40047,62704], + [40049,27603], + [40051,53881], + [40053,4456], + [40055,6118], + [40057,2780], + [40059,3894], + [40061,12770], + [40063,13668], + [40065,25809], + [40067,6292], + [40069,11096], + [40071,45492], + [40073,15478], + [40075,9273], + [40077,10759], + [40079,49937], + [40081,34531], + [40083,44679], + [40085,9726], + [40087,37239], + [40089,33141], + [40091,19954], + [40093,7773], + [40095,16143], + [40097,40916], + [40099,13755], + [40101,69731], + [40103,11529], + [40105,10488], + [40107,12161], + [40109,766502], + [40111,39090], + [40113,47485], + [40115,31876], + [40117,16359], + [40119,80194], + [40121,44833], + [40123,38288], + [40125,71518], + [40127,11098], + [40129,3759], + [40131,89340], + [40133,25355], + [40135,41441], + [40137,44576], + [40139,21677], + [40141,7679], + [40143,630818], + [40145,75636], + [40147,51924], + [40149,11625], + [40151,9231], + [40153,21518], + [41001,16011], + [41003,86956], + [41005,393355], + [41007,37421], + [41009,49479], + [41011,62333], + [41013,20958], + [41015,22130], + [41017,169497], + [41019,106657], + [41021,1930], + [41023,7191], + [41025,7119], + [41027,22685], + [41029,209140], + [41031,22219], + [41033,83350], + [41035,65364], + [41037,7810], + [41039,357564], + [41041,46349], + [41043,119025], + [41045,30367], + [41047,324461], + [41049,11075], + [41051,777418], + [41053,77656], + [41055,1714], + [41057,25345], + [41059,76670], + [41061,25610], + [41063,6777], + [41065,25293], + [41067,561650], + [41069,1350], + [41071,100744], + [42001,101231], + [42003,1233480], + [42005,67419], + [42007,169185], + [42009,49186], + [42011,414642], + [42013,125502], + [42015,61876], + [42017,625806], + [42019,185701], + [42021,137386], + [42023,4817], + [42025,64259], + [42027,159637], + [42029,512864], + [42031,38861], + [42033,80947], + [42035,39456], + [42037,67108], + [42039,87293], + [42041,243596], + [42043,272219], + [42045,562913], + [42047,31094], + [42049,279351], + [42051,134027], + [42053,7445], + [42055,152459], + [42057,14637], + [42059,37662], + [42061,45869], + [42063,87486], + [42065,44477], + [42067,24433], + [42069,212710], + [42071,533746], + [42073,88801], + [42075,136510], + [42077,358126], + [42079,319206], + [42081,116282], + [42083,42526], + [42085,114777], + [42087,46492], + [42089,167547], + [42091,815947], + [42093,18376], + [42095,299882], + [42097,93709], + [42099,45695], + [42101,1564042], + [42103,55828], + [42105,17157], + [42107,145157], + [42109,40412], + [42111,76292], + [42113,6258], + [42115,42134], + [42117,41932], + [42119,44964], + [42121,53363], + [42123,40710], + [42125,207925], + [42127,51987], + [42129,358962], + [42131,28118], + [42133,440444], + [44001,49047], + [44003,164513], + [44005,82822], + [44007,632087], + [44009,126313], + [45001,24800], + [45003,164176], + [45005,9701], + [45007,191987], + [45009,15173], + [45011,22022], + [45013,175233], + [45015,197612], + [45017,14840], + [45019,379912], + [45021,56352], + [45023,32425], + [45025,46178], + [45027,34201], + [45029,37548], + [45031,67733], + [45033,31296], + [45035,149246], + [45037,26652], + [45039,23028], + [45041,138792], + [45043,60691], + [45045,481656], + [45047,69640], + [45049,20432], + [45051,297963], + [45053,26762], + [45055,63165], + [45057,83402], + [45059,66487], + [45061,18339], + [45063,277432], + [45065,9813], + [45067,31936], + [45069,28023], + [45071,37718], + [45073,75195], + [45075,90005], + [45077,120376], + [45079,400543], + [45081,20098], + [45083,293283], + [45085,107702], + [45087,27914], + [45089,32734], + [45091,244542], + [46003,2747], + [46005,18144], + [46007,3435], + [46009,6981], + [46011,33302], + [46013,38353], + [46015,5277], + [46017,2086], + [46019,10247], + [46021,1404], + [46023,9238], + [46025,3641], + [46027,13901], + [46029,27946], + [46031,4174], + [46033,8432], + [46035,19769], + [46037,5505], + [46039,4300], + [46041,5660], + [46043,2931], + [46045,3973], + [46047,6844], + [46049,2320], + [46051,7176], + [46053,4225], + [46055,1846], + [46057,5911], + [46059,3333], + [46061,3421], + [46063,1246], + [46065,17630], + [46067,7227], + [46069,1394], + [46071,3270], + [46073,2042], + [46075,957], + [46077,5052], + [46079,12089], + [46081,24733], + [46083,51597], + [46085,3859], + [46087,5541], + [46089,2418], + [46091,4691], + [46093,26738], + [46095,2067], + [46097,2282], + [46099,181329], + [46101,6432], + [46102,14217], + [46103,107543], + [46105,3014], + [46107,2307], + [46109,10291], + [46111,2330], + [46115,6556], + [46117,2980], + [46119,1409], + [46121,9933], + [46123,5509], + [46125,8190], + [46127,14989], + [46129,5528], + [46135,22683], + [46137,2860], + [47001,75131], + [47003,46259], + [47005,16176], + [47007,14419], + [47009,125827], + [47011,102816], + [47013,39895], + [47015,13614], + [47017,28358], + [47019,56270], + [47021,39604], + [47023,17101], + [47025,31529], + [47027,7639], + [47029,35201], + [47031,53521], + [47033,14645], + [47035,57836], + [47037,670314], + [47039,11680], + [47041,19219], + [47043,50473], + [47045,37815], + [47047,39031], + [47049,17838], + [47051,41268], + [47053,49368], + [47055,28824], + [47057,22865], + [47059,68440], + [47061,13374], + [47063,62952], + [47065,350602], + [47067,6624], + [47069,25931], + [47071,25794], + [47073,56368], + [47075,18164], + [47077,27987], + [47079,32246], + [47081,24431], + [47083,8216], + [47085,18148], + [47087,11520], + [47089,52384], + [47091,17932], + [47093,447939], + [47095,7669], + [47097,27360], + [47099,42210], + [47101,11896], + [47103,33409], + [47105,50533], + [47107,52538], + [47109,26025], + [47111,22937], + [47113,98064], + [47115,28350], + [47117,31250], + [47119,85345], + [47121,11699], + [47123,45388], + [47125,188979], + [47127,6298], + [47129,21688], + [47131,30815], + [47133,21948], + [47135,7819], + [47137,5068], + [47139,16685], + [47141,74913], + [47143,32525], + [47145,52827], + [47147,67869], + [47149,288608], + [47151,21986], + [47153,14634], + [47155,94570], + [47157,938434], + [47159,19026], + [47161,13218], + [47163,156513], + [47165,172183], + [47167,61566], + [47169,7993], + [47171,17905], + [47173,18990], + [47175,5653], + [47177,39934], + [47179,125736], + [47181,16788], + [47183,33987], + [47185,26229], + [47187,205213], + [47189,125146], + [48001,57837], + [48003,17448], + [48005,87601], + [48007,24581], + [48009,8835], + [48011,1917], + [48013,47700], + [48015,28940], + [48017,6939], + [48019,20814], + [48021,77919], + [48023,3567], + [48025,32837], + [48027,330248], + [48029,1857635], + [48031,10804], + [48033,666], + [48035,17716], + [48037,93428], + [48039,337782], + [48041,208720], + [48043,9150], + [48045,1549], + [48047,7256], + [48049,37500], + [48051,17353], + [48053,43979], + [48055,39693], + [48057,21805], + [48059,13499], + [48061,418838], + [48063,12622], + [48065,6033], + [48067,30121], + [48069,7909], + [48071,38283], + [48073,51174], + [48075,7062], + [48077,10374], + [48079,2934], + [48081,3215], + [48083,8416], + [48085,885632], + [48087,3010], + [48089,20687], + [48091,123120], + [48093,13457], + [48095,4065], + [48097,38691], + [48099,76225], + [48101,1428], + [48103,4906], + [48105,3786], + [48107,5824], + [48109,2280], + [48111,7203], + [48113,2517417], + [48115,13434], + [48117,19099], + [48119,5139], + [48121,753511], + [48123,20516], + [48125,2212], + [48127,11021], + [48129,3502], + [48131,11520], + [48133,18238], + [48135,154566], + [48137,1902], + [48139,159185], + [48141,833495], + [48143,40543], + [48145,17207], + [48147,33615], + [48149,24789], + [48151,3873], + [48153,5945], + [48155,1277], + [48157,683943], + [48159,10563], + [48161,19656], + [48163,18924], + [48165,19319], + [48167,313609], + [48169,6408], + [48171,25465], + [48173,1317], + [48175,7504], + [48177,20357], + [48179,23437], + [48181,123540], + [48183,123027], + [48185,27009], + [48187,146765], + [48189,34490], + [48191,3071], + [48193,8150], + [48195,5535], + [48197,3988], + [48199,55505], + [48201,4452695], + [48203,66626], + [48205,6039], + [48207,5799], + [48209,184871], + [48211,4175], + [48213,79262], + [48215,829210], + [48217,34774], + [48219,23461], + [48221,53842], + [48223,35683], + [48225,22795], + [48227,36501], + [48229,3258], + [48231,88655], + [48233,21898], + [48235,1574], + [48237,8861], + [48239,14721], + [48241,35409], + [48243,2220], + [48245,252708], + [48247,5320], + [48249,41472], + [48251,156749], + [48253,19850], + [48255,14833], + [48257,110914], + [48259,38408], + [48261,431], + [48263,748], + [48265,50275], + [48267,4465], + [48269,264], + [48271,3548], + [48273,31850], + [48275,3801], + [48277,49393], + [48279,13484], + [48281,20127], + [48283,7479], + [48285,19779], + [48287,16633], + [48289,16734], + [48291,78014], + [48293,23499], + [48295,3547], + [48297,12044], + [48299,19639], + [48301,89], + [48303,294610], + [48305,5799], + [48307,8152], + [48309,243091], + [48311,795], + [48313,13843], + [48315,10148], + [48317,5472], + [48319,4078], + [48321,36494], + [48323,57031], + [48325,47834], + [48327,2125], + [48329,156564], + [48331,24147], + [48333,4867], + [48335,9066], + [48337,19381], + [48339,516798], + [48341,22021], + [48343,12618], + [48345,1149], + [48347,65187], + [48349,47918], + [48351,14296], + [48353,15114], + [48355,356452], + [48357,10685], + [48359,2070], + [48361,83245], + [48363,28016], + [48365,23741], + [48367,122127], + [48369,9934], + [48371,15837], + [48373,45825], + [48375,121934], + [48377,7188], + [48379,11005], + [48381,128708], + [48383,3788], + [48385,3348], + [48387,12458], + [48389,14509], + [48391,7354], + [48393,914], + [48395,16460], + [48397,87037], + [48399,10266], + [48401,53173], + [48403,10428], + [48405,8473], + [48407,27056], + [48409,66638], + [48411,5816], + [48413,3163], + [48415,17399], + [48417,3324], + [48419,25667], + [48421,3068], + [48423,219517], + [48425,8553], + [48427,62914], + [48429,9338], + [48431,1335], + [48433,1387], + [48435,3959], + [48437,7552], + [48439,1945378], + [48441,134794], + [48443,907], + [48445,12782], + [48447,1612], + [48449,32460], + [48451,116401], + [48453,1151387], + [48455,14276], + [48457,21448], + [48459,40245], + [48461,3479], + [48463,27062], + [48465,48808], + [48467,52750], + [48469,90988], + [48471,70001], + [48473,46798], + [48475,11578], + [48477,34411], + [48479,267168], + [48481,41073], + [48483,5702], + [48485,132573], + [48487,12970], + [48489,21943], + [48491,488385], + [48493,46143], + [48495,7815], + [48497,61715], + [48499,42818], + [48501,8382], + [48503,18266], + [48505,14396], + [48507,12236], + [49001,6426], + [49003,51302], + [49005,117867], + [49007,20621], + [49009,1123], + [49011,328778], + [49013,20214], + [49015,10637], + [49017,5012], + [49019,9469], + [49021,47050], + [49023,10411], + [49025,7169], + [49027,12537], + [49029,10590], + [49031,1467], + [49033,2274], + [49035,1091271], + [49037,15052], + [49039,28307], + [49041,20734], + [49043,39099], + [49045,61448], + [49047,36905], + [49049,560909], + [49051,27906], + [49053,151179], + [49055,2695], + [49057,240219], + [50001,36870], + [50003,36187], + [50005,30873], + [50007,160455], + [50009,6155], + [50011,48761], + [50013,6966], + [50015,25092], + [50017,28878], + [50019,27022], + [50021,60068], + [50023,58975], + [50025,43638], + [50027,55725], + [51001,32965], + [51003,103835], + [51005,15604], + [51007,12717], + [51009,32039], + [51011,15340], + [51013,226503], + [51015,73885], + [51017,4533], + [51019,77035], + [51021,6587], + [51023,33074], + [51025,16495], + [51027,23134], + [51029,16938], + [51031,55254], + [51033,29754], + [51035,29699], + [51036,6975], + [51037,12177], + [51041,332425], + [51043,14320], + [51045,5178], + [51047,49230], + [51049,9839], + [51051,15348], + [51053,28012], + [51057,11057], + [51059,1139292], + [51061,68161], + [51063,15526], + [51065,25974], + [51067,56272], + [51069,82740], + [51071,16851], + [51073,37019], + [51075,21851], + [51077,15921], + [51079,19092], + [51081,11473], + [51083,35181], + [51085,101709], + [51087,322391], + [51089,52253], + [51091,2238], + [51093,35874], + [51095,72082], + [51097,7081], + [51099,25265], + [51101,16148], + [51103,10874], + [51105,24715], + [51107,362874], + [51109,34319], + [51111,12481], + [51113,13028], + [51115,8815], + [51117,31122], + [51119,10650], + [51121,97250], + [51125,14883], + [51127,20014], + [51131,12032], + [51133,12256], + [51135,15506], + [51137,34937], + [51139,23779], + [51141,18169], + [51143,62371], + [51145,28483], + [51147,22969], + [51149,37401], + [51153,444332], + [51155,34341], + [51157,7331], + [51159,8890], + [51161,93368], + [51163,22429], + [51165,77874], + [51167,28046], + [51169,22529], + [51171,42743], + [51173,31573], + [51175,18222], + [51177,128880], + [51179,138802], + [51181,6781], + [51183,11723], + [51185,43382], + [51187,38958], + [51191,54581], + [51193,17439], + [51195,39884], + [51197,29045], + [51199,66601], + [51510,151828], + [51520,17212], + [51530,6560], + [51540,45575], + [51550,233430], + [51570,17452], + [51580,5773], + [51590,42242], + [51595,5599], + [51600,23304], + [51610,13465], + [51620,8395], + [51630,28227], + [51640,6908], + [51650,137675], + [51660,52658], + [51670,22117], + [51678,7116], + [51680,78134], + [51683,41210], + [51685,15938], + [51690,13321], + [51700,181653], + [51710,246574], + [51720,4152], + [51730,32240], + [51735,12004], + [51740,95802], + [51750,17389], + [51760,217185], + [51770,99520], + [51775,25435], + [51790,24281], + [51800,86880], + [51810,449355], + [51820,21288], + [51830,14619], + [51840,27358], + [53001,19196], + [53003,22192], + [53005,186439], + [53007,74221], + [53009,72438], + [53011,448422], + [53013,3983], + [53015,101784], + [53017,39776], + [53019,7590], + [53021,87768], + [53023,2197], + [53025,92839], + [53027,70818], + [53029,78655], + [53031,30135], + [53033,2081249], + [53035,253381], + [53037,42582], + [53039,20870], + [53041,74837], + [53043,10226], + [53045,60568], + [53047,41243], + [53049,20563], + [53051,12906], + [53053,828819], + [53055,16000], + [53057,119907], + [53059,11376], + [53061,757121], + [53063,482923], + [53065,43490], + [53067,264969], + [53069,4036], + [53071,59483], + [53073,208112], + [53075,46753], + [53077,247064], + [54001,16902], + [54003,110026], + [54005,23708], + [54007,14400], + [54009,23382], + [54011,96514], + [54013,7559], + [54015,8882], + [54017,8467], + [54019,45152], + [54021,8489], + [54023,11632], + [54025,35522], + [54027,23439], + [54029,30228], + [54031,13915], + [54033,68671], + [54035,29126], + [54037,55448], + [54039,190212], + [54041,16438], + [54043,21532], + [54045,35235], + [54047,20329], + [54049,56722], + [54051,32332], + [54053,27121], + [54055,61686], + [54057,27531], + [54059,25696], + [54061,102951], + [54063,13609], + [54065,17456], + [54067,25702], + [54069,43226], + [54071,7229], + [54073,7589], + [54075,8649], + [54077,33920], + [54079,56634], + [54081,78139], + [54083,29316], + [54085,10078], + [54087,14590], + [54089,13331], + [54091,17098], + [54093,7053], + [54095,9067], + [54097,24655], + [54099,41491], + [54101,8757], + [54103,15970], + [54105,5791], + [54107,86451], + [54109,22576], + [55001,20135], + [55003,15990], + [55005,45334], + [55007,14974], + [55009,256243], + [55011,13247], + [55013,15223], + [55015,49489], + [55017,63337], + [55019,34384], + [55021,56615], + [55023,16350], + [55025,515898], + [55027,88124], + [55029,27471], + [55031,43629], + [55033,44046], + [55035,101644], + [55037,4345], + [55039,101952], + [55041,9099], + [55043,51676], + [55045,36841], + [55047,18755], + [55049,23570], + [55051,5858], + [55053,20577], + [55055,84395], + [55057,26337], + [55059,167835], + [55061,20351], + [55063,117404], + [55065,16783], + [55067,19253], + [55069,28096], + [55071,79946], + [55073,135215], + [55075,41041], + [55077,15073], + [55078,4491], + [55079,958864], + [55081,45141], + [55083,37460], + [55085,35306], + [55087,182106], + [55089,87495], + [55091,7301], + [55093,41003], + [55095,43342], + [55097,70416], + [55099,13648], + [55101,194908], + [55103,17736], + [55105,160970], + [55107,14337], + [55109,86555], + [55111,63005], + [55113,16370], + [55115,41344], + [55117,115017], + [55119,20407], + [55121,29458], + [55123,30189], + [55125,21389], + [55127,103266], + [55129,15651], + [55131,133570], + [55133,395078], + [55135,51929], + [55137,24112], + [55139,169295], + [55141,73578], + [56001,37793], + [56003,11859], + [56005,48192], + [56007,15907], + [56009,14219], + [56011,7245], + [56013,40573], + [56015,13544], + [56017,4789], + [56019,8584], + [56021,96123], + [56023,18567], + [56025,81439], + [56027,2489], + [56029,29119], + [56031,8776], + [56033,29888], + [56035,10155], + [56037,44981], + [56039,22817], + [56041,20845], + [56043,8288], + [56045,7142] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2015.json b/data/regional/united-states/demographics/population/us-population-2015.json new file mode 100644 index 0000000..e3ecc0a --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2015.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2015.", + "units" : "people", + "year" : "2015", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2015"], + [1001,54838], + [1003,202863], + [1005,26264], + [1007,22561], + [1009,57590], + [1011,10419], + [1013,20141], + [1015,115505], + [1017,33968], + [1019,25741], + [1021,43706], + [1023,13231], + [1025,24708], + [1027,13414], + [1029,14922], + [1031,50974], + [1033,54358], + [1035,12678], + [1037,10923], + [1039,37550], + [1041,13851], + [1043,81721], + [1045,49344], + [1047,40939], + [1049,71198], + [1051,80912], + [1053,37667], + [1055,102942], + [1057,16688], + [1059,31467], + [1061,26639], + [1063,8510], + [1065,15018], + [1067,17102], + [1069,104249], + [1071,52207], + [1073,660087], + [1075,13931], + [1077,92422], + [1079,33137], + [1081,156740], + [1083,91633], + [1085,10345], + [1087,19304], + [1089,352740], + [1091,19757], + [1093,30116], + [1095,94577], + [1097,414588], + [1099,21720], + [1101,227002], + [1103,119199], + [1105,9653], + [1107,20776], + [1109,33372], + [1111,22588], + [1113,58847], + [1115,86758], + [1117,208877], + [1119,13174], + [1121,81047], + [1123,40617], + [1125,204473], + [1127,64939], + [1129,16812], + [1131,10901], + [1133,23918], + [2013,3346], + [2016,5818], + [2020,298018], + [2050,17951], + [2060,904], + [2068,1931], + [2070,4993], + [2090,99643], + [2100,2516], + [2105,"NA"], + [2110,32612], + [2122,58067], + [2130,13680], + [2150,13753], + [2158,8200], + [2164,1595], + [2170,101064], + [2180,9869], + [2185,9780], + [2188,7752], + [2195,3263], + [2198,6505], + [2220,8786], + [2230,"NA"], + [2240,6807], + [2261,9327], + [2275,"NA"], + [2282,635], + [2290,5463], + [4001,70979], + [4003,126084], + [4005,138682], + [4007,52935], + [4009,37786], + [4011,9549], + [4012,20342], + [4013,4154076], + [4015,204524], + [4017,107543], + [4019,1005323], + [4021,404069], + [4023,46191], + [4025,220621], + [4027,203558], + [5001,18350], + [5003,20837], + [5005,41118], + [5007,251016], + [5009,37091], + [5011,10998], + [5013,5201], + [5015,27751], + [5017,10957], + [5019,22506], + [5021,15197], + [5023,25358], + [5025,8284], + [5027,24089], + [5029,20912], + [5031,104297], + [5033,61877], + [5035,49040], + [5037,17240], + [5039,7529], + [5041,12029], + [5043,18617], + [5045,121113], + [5047,17739], + [5049,12121], + [5051,97734], + [5053,18016], + [5055,44301], + [5057,22103], + [5059,33478], + [5061,13375], + [5063,37010], + [5065,13480], + [5067,17376], + [5069,71822], + [5071,26126], + [5073,7016], + [5075,16700], + [5077,9679], + [5079,13877], + [5081,12420], + [5083,21713], + [5085,71268], + [5087,15696], + [5089,16209], + [5091,43919], + [5093,43717], + [5095,7453], + [5097,9022], + [5099,8515], + [5101,7860], + [5103,24312], + [5105,10299], + [5107,19562], + [5109,10830], + [5111,24010], + [5113,20203], + [5115,63559], + [5117,8301], + [5119,393107], + [5121,17417], + [5123,26636], + [5125,116304], + [5127,10544], + [5129,7828], + [5131,127387], + [5133,17250], + [5135,16817], + [5137,12380], + [5139,40073], + [5141,16769], + [5143,223851], + [5145,78835], + [5147,6718], + [5149,21482], + [6001,1637141], + [6003,1088], + [6005,37047], + [6007,224818], + [6009,44954], + [6011,21341], + [6013,1126027], + [6015,27253], + [6017,184865], + [6019,972333], + [6021,27841], + [6023,135219], + [6025,179839], + [6027,18197], + [6029,879607], + [6031,150482], + [6033,64310], + [6035,31393], + [6037,10123248], + [6039,154423], + [6041,261718], + [6043,17649], + [6045,87318], + [6047,267406], + [6049,9050], + [6051,13954], + [6053,432774], + [6055,141507], + [6057,98715], + [6059,3160576], + [6061,373469], + [6063,18525], + [6065,2352080], + [6067,1496130], + [6069,58364], + [6071,2120794], + [6073,3290044], + [6075,866320], + [6077,723846], + [6079,280402], + [6081,766779], + [6083,443927], + [6085,1919220], + [6087,274299], + [6089,178472], + [6091,2994], + [6093,43351], + [6095,434751], + [6097,502096], + [6099,535000], + [6101,95524], + [6103,63128], + [6105,13092], + [6107,458601], + [6109,53589], + [6111,848925], + [6113,212428], + [6115,74201], + [8001,489822], + [8003,16305], + [8005,628834], + [8007,12382], + [8009,3552], + [8011,5893], + [8013,317968], + [8014,64796], + [8015,18582], + [8017,1811], + [8019,9233], + [8021,8061], + [8023,3569], + [8025,5597], + [8027,4439], + [8029,29902], + [8031,681618], + [8033,1980], + [8035,321484], + [8037,53664], + [8039,24553], + [8041,672453], + [8043,46204], + [8045,57691], + [8047,5791], + [8049,14685], + [8051,16166], + [8053,764], + [8055,6400], + [8057,1351], + [8059,564365], + [8061,1384], + [8063,8202], + [8065,7444], + [8067,54552], + [8069,332840], + [8071,14021], + [8073,5548], + [8075,21968], + [8077,148116], + [8079,743], + [8081,12940], + [8083,25697], + [8085,40534], + [8087,28145], + [8089,18212], + [8091,4589], + [8093,16715], + [8095,4315], + [8097,17862], + [8099,11953], + [8101,163043], + [8103,6515], + [8105,11338], + [8107,24310], + [8109,6239], + [8111,688], + [8113,7785], + [8115,2370], + [8117,29852], + [8119,23377], + [8121,4787], + [8123,284382], + [8125,10064], + [9001,948116], + [9003,897626], + [9005,184349], + [9007,163698], + [9009,861594], + [9011,270266], + [9013,151717], + [9015,116496], + [10001,173332], + [10003,555587], + [10005,215188], + [11001,672736], + [12001,259525], + [12003,27364], + [12005,181184], + [12007,26744], + [12009,566822], + [12011,1891684], + [12013,14414], + [12015,172824], + [12017,140443], + [12019,202529], + [12021,357194], + [12023,68255], + [12027,35475], + [12029,16351], + [12031,911626], + [12033,309529], + [12035,104739], + [12037,11684], + [12039,46119], + [12041,17164], + [12043,13130], + [12045,15940], + [12047,14272], + [12049,27257], + [12051,39094], + [12053,177883], + [12055,99891], + [12057,1350904], + [12059,19284], + [12061,147629], + [12063,48627], + [12065,14099], + [12067,8655], + [12069,325699], + [12071,700421], + [12073,286211], + [12075,39610], + [12077,8404], + [12079,18472], + [12081,363059], + [12083,342757], + [12085,155721], + [12086,2705982], + [12087,77003], + [12089,77891], + [12091,197709], + [12093,39807], + [12095,1292008], + [12097,324189], + [12099,1428378], + [12101,495648], + [12103,949321], + [12105,649644], + [12107,71957], + [12109,226576], + [12111,297929], + [12113,166365], + [12115,405148], + [12117,449132], + [12119,117210], + [12121,43678], + [12123,22358], + [12125,15284], + [12127,517512], + [12129,31518], + [12131,63087], + [12133,24545], + [13001,18450], + [13003,8375], + [13005,11287], + [13007,3201], + [13009,45518], + [13011,18382], + [13013,75067], + [13015,102176], + [13017,17323], + [13019,18988], + [13021,154057], + [13023,12717], + [13025,18393], + [13027,15668], + [13029,34798], + [13031,73233], + [13033,22642], + [13035,23489], + [13037,6552], + [13039,52462], + [13043,10903], + [13045,114491], + [13047,65821], + [13049,13190], + [13051,286819], + [13053,11075], + [13055,24896], + [13057,235424], + [13059,123875], + [13061,3072], + [13063,273675], + [13065,6850], + [13067,742023], + [13069,43099], + [13071,45665], + [13073,144007], + [13075,17097], + [13077,138227], + [13079,12393], + [13081,22962], + [13083,16157], + [13085,23317], + [13087,27083], + [13089,737418], + [13091,21141], + [13093,14034], + [13095,91569], + [13097,140466], + [13099,10449], + [13101,4059], + [13103,57047], + [13105,19306], + [13107,22464], + [13109,10707], + [13111,24418], + [13113,110286], + [13115,96243], + [13117,211384], + [13119,22280], + [13121,1008841], + [13123,29607], + [13125,3020], + [13127,83594], + [13129,56387], + [13131,25117], + [13133,16688], + [13135,892137], + [13137,43819], + [13139,192506], + [13141,8587], + [13143,28701], + [13145,33165], + [13147,25453], + [13149,11552], + [13151,216827], + [13153,149685], + [13155,9159], + [13157,63375], + [13159,13717], + [13161,15015], + [13163,15935], + [13165,8869], + [13167,9734], + [13169,28447], + [13171,18236], + [13173,10277], + [13175,47431], + [13177,29197], + [13179,61524], + [13181,7721], + [13183,17861], + [13185,113424], + [13187,31350], + [13189,21462], + [13191,14033], + [13193,13719], + [13195,28384], + [13197,8576], + [13199,21186], + [13201,5848], + [13205,22437], + [13207,26705], + [13209,8901], + [13211,17951], + [13213,39494], + [13215,198882], + [13217,104958], + [13219,35840], + [13221,14725], + [13223,151771], + [13225,26962], + [13227,30181], + [13229,19123], + [13231,17922], + [13233,41372], + [13235,11397], + [13237,21356], + [13239,2281], + [13241,16252], + [13243,7221], + [13245,201597], + [13247,88687], + [13249,5190], + [13251,14057], + [13253,8562], + [13255,63828], + [13257,25485], + [13259,5867], + [13261,30696], + [13263,6474], + [13265,1645], + [13267,25383], + [13269,8242], + [13271,16493], + [13273,9018], + [13275,44950], + [13277,40626], + [13279,27215], + [13281,11143], + [13283,6798], + [13285,69527], + [13287,7981], + [13289,8317], + [13291,22010], + [13293,26240], + [13295,68499], + [13297,88393], + [13299,35427], + [13301,5379], + [13303,20740], + [13305,29441], + [13307,2632], + [13309,7898], + [13311,28397], + [13313,104029], + [13315,8899], + [13317,9918], + [13319,9082], + [13321,20701], + [15001,196740], + [15003,993716], + [15005,88], + [15007,71387], + [15009,164389], + [16001,432768], + [16003,3889], + [16005,83992], + [16007,5876], + [16009,8988], + [16011,45026], + [16013,21507], + [16015,6960], + [16017,41565], + [16019,109804], + [16021,11264], + [16023,2565], + [16025,1071], + [16027,206621], + [16029,6753], + [16031,23460], + [16033,874], + [16035,8486], + [16037,4063], + [16039,25790], + [16041,12970], + [16043,12792], + [16045,16682], + [16047,15157], + [16049,16262], + [16051,27095], + [16053,22870], + [16055,149414], + [16057,38661], + [16059,7734], + [16061,3780], + [16063,5283], + [16065,37877], + [16067,20372], + [16069,39976], + [16071,4250], + [16073,11279], + [16075,22784], + [16077,7649], + [16079,12433], + [16081,10671], + [16083,82059], + [16085,10043], + [16087,9909], + [17001,67014], + [17003,6759], + [17005,16929], + [17007,53584], + [17009,6800], + [17011,33468], + [17013,4862], + [17015,14645], + [17017,12845], + [17019,208354], + [17021,33470], + [17023,15865], + [17025,13395], + [17027,37654], + [17029,52570], + [17031,5245831], + [17033,19257], + [17035,10872], + [17037,104407], + [17039,16187], + [17041,19852], + [17043,933115], + [17045,17554], + [17047,6508], + [17049,34196], + [17051,22049], + [17053,13522], + [17055,39397], + [17057,35721], + [17059,5221], + [17061,13336], + [17063,50345], + [17065,8246], + [17067,18217], + [17069,4156], + [17071,6994], + [17073,49645], + [17075,28534], + [17077,59289], + [17079,9633], + [17081,38300], + [17083,22193], + [17085,22064], + [17087,12876], + [17089,529995], + [17091,110756], + [17093,122892], + [17095,51313], + [17097,704945], + [17099,111077], + [17101,16495], + [17103,34544], + [17105,36668], + [17107,29412], + [17109,31670], + [17111,307960], + [17113,172718], + [17115,107419], + [17117,45846], + [17119,265994], + [17121,38341], + [17123,11918], + [17125,13859], + [17127,14565], + [17129,12356], + [17131,15747], + [17133,33724], + [17135,29230], + [17137,34542], + [17139,14733], + [17141,51598], + [17143,186520], + [17145,21422], + [17147,16352], + [17149,15918], + [17151,4353], + [17153,5656], + [17155,5727], + [17157,32822], + [17159,15967], + [17161,146249], + [17163,264217], + [17165,24498], + [17167,198634], + [17169,7160], + [17171,5109], + [17173,21829], + [17175,5506], + [17177,45670], + [17179,134393], + [17181,17283], + [17183,79187], + [17185,11599], + [17187,17370], + [17189,14258], + [17191,16526], + [17193,14202], + [17195,56945], + [17197,686920], + [17199,67607], + [17201,287141], + [17203,38963], + [18001,34954], + [18003,367630], + [18005,81286], + [18007,8692], + [18009,12224], + [18011,63037], + [18013,14994], + [18015,19889], + [18017,38168], + [18019,114927], + [18021,26389], + [18023,32411], + [18025,10555], + [18027,32818], + [18029,49452], + [18031,26380], + [18033,42452], + [18035,115811], + [18037,42327], + [18039,203401], + [18041,23391], + [18043,76519], + [18045,16537], + [18047,22913], + [18049,20329], + [18051,33622], + [18053,67519], + [18055,32399], + [18057,308774], + [18059,72398], + [18061,39521], + [18063,157709], + [18065,48664], + [18067,82314], + [18069,36518], + [18071,43902], + [18073,33481], + [18075,21141], + [18077,32313], + [18079,27822], + [18081,148935], + [18083,37759], + [18085,78794], + [18087,38638], + [18089,488316], + [18091,110825], + [18093,45577], + [18095,129390], + [18097,940235], + [18099,46761], + [18101,10215], + [18103,36012], + [18105,144225], + [18107,38298], + [18109,69551], + [18111,13984], + [18113,47543], + [18115,5882], + [18117,19622], + [18119,20831], + [18121,16978], + [18123,19303], + [18125,12458], + [18127,167430], + [18129,25609], + [18131,12800], + [18133,37500], + [18135,25111], + [18137,28388], + [18139,16709], + [18141,268356], + [18143,23658], + [18145,44349], + [18147,20641], + [18149,22855], + [18151,34514], + [18153,20878], + [18155,10614], + [18157,186076], + [18159,15235], + [18161,7200], + [18163,181917], + [18165,15594], + [18167,107473], + [18169,31870], + [18171,8271], + [18173,61548], + [18175,27777], + [18177,66949], + [18179,27835], + [18181,24280], + [18183,33444], + [19001,7141], + [19003,3753], + [19005,13852], + [19007,12570], + [19009,5712], + [19011,25611], + [19013,133435], + [19015,26439], + [19017,24761], + [19019,21109], + [19021,20302], + [19023,14880], + [19025,9790], + [19027,20420], + [19029,13349], + [19031,18300], + [19033,42923], + [19035,11485], + [19037,12123], + [19039,9227], + [19041,16508], + [19043,17715], + [19045,47545], + [19047,17031], + [19049,80491], + [19051,8777], + [19053,8123], + [19055,17371], + [19057,39870], + [19059,16990], + [19061,96813], + [19063,9672], + [19065,20139], + [19067,15895], + [19069,10326], + [19071,6913], + [19073,8951], + [19075,12406], + [19077,10644], + [19079,15232], + [19081,11023], + [19083,17252], + [19085,14144], + [19087,19823], + [19089,9315], + [19091,9544], + [19093,6962], + [19095,16275], + [19097,19357], + [19099,36729], + [19101,17927], + [19103,144527], + [19105,20402], + [19107,10168], + [19109,15153], + [19111,34895], + [19113,219971], + [19115,11256], + [19117,8599], + [19119,11748], + [19121,15713], + [19123,22308], + [19125,33109], + [19127,40346], + [19129,14882], + [19131,10671], + [19133,8863], + [19135,7925], + [19137,10149], + [19139,42964], + [19141,13919], + [19143,6159], + [19145,15447], + [19147,9138], + [19149,24898], + [19151,6962], + [19153,467252], + [19155,93532], + [19157,18381], + [19159,4974], + [19161,9966], + [19163,171724], + [19165,11794], + [19167,34687], + [19169,96348], + [19171,17204], + [19173,6263], + [19175,12425], + [19177,7297], + [19179,35433], + [19181,48466], + [19183,22128], + [19185,6355], + [19187,37015], + [19189,10578], + [19191,20732], + [19193,102455], + [19195,7507], + [19197,12840], + [20001,12657], + [20003,7817], + [20005,16414], + [20007,4828], + [20009,27163], + [20011,14736], + [20013,9704], + [20015,66250], + [20017,2654], + [20019,3389], + [20021,20517], + [20023,2673], + [20025,2081], + [20027,8294], + [20029,9185], + [20031,8293], + [20033,1825], + [20035,35690], + [20037,39032], + [20039,2925], + [20041,19203], + [20043,7786], + [20045,117866], + [20047,2950], + [20049,2571], + [20051,28929], + [20053,6305], + [20055,37191], + [20057,34578], + [20059,25461], + [20061,36682], + [20063,2703], + [20065,2592], + [20067,7727], + [20069,6050], + [20071,1299], + [20073,6233], + [20075,2561], + [20077,5783], + [20079,34783], + [20081,4092], + [20083,1866], + [20085,13284], + [20087,18814], + [20089,2966], + [20091,578920], + [20093,3934], + [20095,7628], + [20097,2566], + [20099,20632], + [20101,1630], + [20103,79010], + [20105,3142], + [20107,9580], + [20109,2781], + [20111,33119], + [20113,28615], + [20115,12044], + [20117,9839], + [20119,4293], + [20121,32751], + [20123,6286], + [20125,33384], + [20127,5624], + [20129,2952], + [20131,10081], + [20133,16262], + [20135,3010], + [20137,5539], + [20139,15859], + [20141,3642], + [20143,5934], + [20145,6771], + [20147,5415], + [20149,23121], + [20151,9685], + [20153,2504], + [20155,63488], + [20157,4681], + [20159,9925], + [20161,76659], + [20163,5180], + [20165,3099], + [20167,7045], + [20169,55491], + [20171,4989], + [20173,510715], + [20175,23174], + [20177,178515], + [20179,2475], + [20181,5960], + [20183,3690], + [20185,4220], + [20187,2066], + [20189,5786], + [20191,23406], + [20193,7875], + [20195,2906], + [20197,6873], + [20199,1506], + [20201,5569], + [20203,2160], + [20205,8852], + [20207,3145], + [20209,163384], + [21001,19298], + [21003,20662], + [21005,21865], + [21007,8217], + [21009,43549], + [21011,12194], + [21013,27379], + [21015,127793], + [21017,20093], + [21019,48507], + [21021,29714], + [21023,8278], + [21025,13361], + [21027,19971], + [21029,78707], + [21031,12723], + [21033,12747], + [21035,38642], + [21037,91906], + [21039,4860], + [21041,10654], + [21043,27436], + [21045,15737], + [21047,73095], + [21049,35666], + [21051,20990], + [21053,10177], + [21055,9170], + [21057,6748], + [21059,99364], + [21061,11986], + [21063,7548], + [21065,14370], + [21067,315055], + [21069,14588], + [21071,37529], + [21073,50008], + [21075,6269], + [21077,8591], + [21079,17219], + [21081,24734], + [21083,37165], + [21085,26130], + [21087,10970], + [21089,35982], + [21091,8645], + [21093,106224], + [21095,27507], + [21097,18636], + [21099,18404], + [21101,46365], + [21103,15566], + [21105,4608], + [21107,46067], + [21109,13330], + [21111,764341], + [21113,51788], + [21115,23137], + [21117,164084], + [21119,15657], + [21121,31404], + [21123,14122], + [21125,59870], + [21127,15862], + [21129,6740], + [21131,10646], + [21133,23055], + [21135,13586], + [21137,24360], + [21139,9295], + [21141,26737], + [21143,8310], + [21145,64976], + [21147,17868], + [21149,9399], + [21151,88156], + [21153,12779], + [21155,19191], + [21157,31045], + [21159,12297], + [21161,17036], + [21163,27749], + [21165,6367], + [21167,21370], + [21169,9908], + [21171,10617], + [21173,27569], + [21175,13262], + [21177,31248], + [21179,45103], + [21181,7058], + [21183,24027], + [21185,64496], + [21187,10724], + [21189,4447], + [21191,14475], + [21193,27357], + [21195,61803], + [21197,12236], + [21199,63827], + [21201,2135], + [21203,16933], + [21205,24604], + [21207,17657], + [21209,52120], + [21211,45752], + [21213,17874], + [21215,17984], + [21217,25601], + [21219,12420], + [21221,14228], + [21223,8744], + [21225,14966], + [21227,123737], + [21229,12008], + [21231,20607], + [21233,13162], + [21235,36092], + [21237,7244], + [21239,25806], + [22001,62696], + [22003,25630], + [22005,119376], + [22007,22895], + [22009,41042], + [22011,36526], + [22013,13830], + [22015,125722], + [22017,251577], + [22019,198542], + [22021,10052], + [22023,6815], + [22025,10038], + [22027,16266], + [22029,20227], + [22031,27111], + [22033,446496], + [22035,7275], + [22037,19545], + [22039,33734], + [22041,20379], + [22043,22279], + [22045,73833], + [22047,33152], + [22049,15946], + [22051,436888], + [22053,31428], + [22055,239665], + [22057,98363], + [22059,14984], + [22061,47634], + [22063,137564], + [22065,11552], + [22067,26309], + [22069,39003], + [22071,390711], + [22073,156911], + [22075,23450], + [22077,22204], + [22079,131993], + [22081,8715], + [22083,20550], + [22085,24229], + [22087,45439], + [22089,52647], + [22091,10455], + [22093,21486], + [22095,43585], + [22097,83625], + [22099,53868], + [22101,52920], + [22103,249320], + [22105,128735], + [22107,4774], + [22109,113928], + [22111,22499], + [22113,59979], + [22115,51497], + [22117,46389], + [22119,40076], + [22121,25570], + [22123,11282], + [22125,15357], + [22127,14643], + [23001,107104], + [23003,68824], + [23005,289361], + [23007,30072], + [23009,54304], + [23011,120983], + [23013,39675], + [23015,33770], + [23017,57068], + [23019,151934], + [23021,16935], + [23023,35113], + [23025,50745], + [23027,39134], + [23029,31747], + [23031,201018], + [24001,72498], + [24003,564390], + [24005,829379], + [24009,90495], + [24011,32620], + [24013,167136], + [24015,102452], + [24017,155793], + [24019,32411], + [24021,245482], + [24023,29416], + [24025,249661], + [24027,312400], + [24029,19696], + [24031,1039370], + [24033,908282], + [24035,49039], + [24037,111100], + [24039,25692], + [24041,37507], + [24043,149198], + [24045,102058], + [24047,51455], + [24510,623031], + [25001,213773], + [25003,127628], + [25005,557239], + [25007,17277], + [25009,777438], + [25011,70803], + [25013,469832], + [25015,160864], + [25017,1584914], + [25019,10901], + [25021,694475], + [25023,509193], + [25025,781326], + [25027,818339], + [26001,10332], + [26003,9246], + [26005,114085], + [26007,28705], + [26009,23035], + [26011,15297], + [26013,8575], + [26015,59389], + [26017,105244], + [26019,17391], + [26021,154802], + [26023,43604], + [26025,134154], + [26027,51295], + [26029,26155], + [26031,25392], + [26033,37965], + [26035,30608], + [26037,76967], + [26039,13850], + [26041,36412], + [26043,25647], + [26045,108435], + [26047,32899], + [26049,410249], + [26051,25206], + [26053,15539], + [26055,91511], + [26057,41308], + [26059,45860], + [26061,36169], + [26063,31755], + [26065,285674], + [26067,64051], + [26069,25325], + [26071,11315], + [26073,70637], + [26075,159191], + [26077,259525], + [26079,17230], + [26081,636508], + [26083,2122], + [26085,11693], + [26087,88350], + [26089,21624], + [26091,98334], + [26093,187114], + [26095,6423], + [26097,10796], + [26099,863979], + [26101,24440], + [26103,67280], + [26105,28721], + [26107,42987], + [26109,23460], + [26111,83630], + [26113,14874], + [26115,149369], + [26117,62728], + [26119,9289], + [26121,172373], + [26123,47863], + [26125,1240999], + [26127,26287], + [26129,20883], + [26131,6037], + [26133,23167], + [26135,8282], + [26137,24188], + [26139,280439], + [26141,12796], + [26143,23914], + [26145,193097], + [26147,159742], + [26149,60785], + [26151,41454], + [26153,8127], + [26155,68458], + [26157,53717], + [26159,75013], + [26161,361815], + [26163,1762098], + [26165,32886], + [27001,15862], + [27003,344514], + [27005,33456], + [27007,45600], + [27009,39315], + [27011,4996], + [27013,65595], + [27015,25228], + [27017,35379], + [27019,98596], + [27021,28677], + [27023,12065], + [27025,54123], + [27027,62064], + [27029,8804], + [27031,5219], + [27033,11430], + [27035,63250], + [27037,414120], + [27039,20404], + [27041,36794], + [27043,13981], + [27045,20716], + [27047,30488], + [27049,46033], + [27051,5867], + [27053,1223385], + [27055,18685], + [27057,20646], + [27059,38259], + [27061,45246], + [27063,10082], + [27065,15872], + [27067,42562], + [27069,4402], + [27071,12804], + [27073,6870], + [27075,10544], + [27077,3870], + [27079,27717], + [27081,5711], + [27083,25771], + [27085,35791], + [27087,5435], + [27089,9408], + [27091,20020], + [27093,23059], + [27095,25481], + [27097,32756], + [27099,39305], + [27101,8386], + [27103,33464], + [27105,21811], + [27107,6619], + [27109,151334], + [27111,57599], + [27113,14248], + [27115,29045], + [27117,9254], + [27119,31458], + [27121,10926], + [27123,537542], + [27125,4029], + [27127,15425], + [27129,14781], + [27131,65149], + [27133,9452], + [27135,15622], + [27137,200343], + [27139,141453], + [27141,91377], + [27143,14853], + [27145,155636], + [27147,36621], + [27149,9833], + [27151,9363], + [27153,24339], + [27155,3367], + [27157,21375], + [27159,13668], + [27161,18929], + [27163,250760], + [27165,10933], + [27167,6362], + [27169,50822], + [27171,130968], + [27173,9835], + [28001,31400], + [28003,37250], + [28005,12546], + [28007,18671], + [28009,8161], + [28011,33251], + [28013,14626], + [28015,10202], + [28017,17384], + [28019,8367], + [28021,9143], + [28023,16023], + [28025,19989], + [28027,24481], + [28029,28812], + [28031,19240], + [28033,173084], + [28035,75643], + [28037,7720], + [28039,23409], + [28041,13543], + [28043,21448], + [28045,46255], + [28047,200521], + [28049,243665], + [28051,18325], + [28053,8703], + [28055,1346], + [28057,23518], + [28059,141236], + [28061,16548], + [28063,7499], + [28065,11640], + [28067,68366], + [28069,10010], + [28071,52654], + [28073,60827], + [28075,78275], + [28077,12672], + [28079,22780], + [28081,84730], + [28083,30194], + [28085,34516], + [28087,59574], + [28089,102364], + [28091,25408], + [28093,35887], + [28095,35830], + [28097,10183], + [28099,29445], + [28101,21479], + [28103,10939], + [28105,49480], + [28107,34153], + [28109,54941], + [28111,12068], + [28113,39862], + [28115,30834], + [28117,25417], + [28119,7512], + [28121,149374], + [28123,28392], + [28125,4563], + [28127,27140], + [28129,16077], + [28131,18035], + [28133,26902], + [28135,14591], + [28137,28379], + [28139,21991], + [28141,19467], + [28143,10260], + [28145,28265], + [28147,14590], + [28149,47510], + [28151,47952], + [28153,20486], + [28155,9869], + [28157,9085], + [28159,18447], + [28161,12462], + [28163,27411], + [29001,25339], + [29003,17311], + [29005,5304], + [29007,25941], + [29009,35325], + [29011,11835], + [29013,16367], + [29015,18782], + [29017,12321], + [29019,174395], + [29021,89223], + [29023,42840], + [29025,9011], + [29027,44704], + [29029,44781], + [29031,78151], + [29033,8882], + [29035,6276], + [29037,101390], + [29039,13788], + [29041,7591], + [29043,83085], + [29045,6801], + [29047,235253], + [29049,20572], + [29051,76857], + [29053,17605], + [29055,24485], + [29057,7575], + [29059,16343], + [29061,8282], + [29063,12544], + [29065,15621], + [29067,13353], + [29069,30825], + [29071,102284], + [29073,14745], + [29075,6653], + [29077,287250], + [29079,10004], + [29081,8622], + [29083,21710], + [29085,9269], + [29087,4483], + [29089,10139], + [29091,40073], + [29093,10211], + [29095,687182], + [29097,118569], + [29099,223106], + [29101,53643], + [29103,3907], + [29105,35442], + [29107,32626], + [29109,37993], + [29111,10135], + [29113,54611], + [29115,12281], + [29117,14933], + [29119,22699], + [29121,15280], + [29123,12183], + [29125,8968], + [29127,28688], + [29129,3660], + [29131,24869], + [29133,13943], + [29135,15877], + [29137,8633], + [29139,11586], + [29141,20058], + [29143,18090], + [29145,58164], + [29147,22629], + [29149,10848], + [29151,13520], + [29153,9347], + [29155,17428], + [29157,19078], + [29159,42305], + [29161,44799], + [29163,18400], + [29165,96405], + [29167,31279], + [29169,53292], + [29171,4861], + [29173,10161], + [29175,25030], + [29177,22770], + [29179,6297], + [29181,13784], + [29183,385038], + [29185,9408], + [29186,17815], + [29187,66242], + [29189,1001127], + [29195,23035], + [29197,4492], + [29199,4814], + [29201,38982], + [29203,8279], + [29205,6101], + [29207,29734], + [29209,31315], + [29211,6369], + [29213,54301], + [29215,25662], + [29217,20631], + [29219,33479], + [29221,24784], + [29223,13416], + [29225,37527], + [29227,2044], + [29229,18228], + [29510,316257], + [30001,9288], + [30003,13277], + [30005,6618], + [30007,5715], + [30009,10389], + [30011,1147], + [30013,81829], + [30015,5767], + [30017,12069], + [30019,1748], + [30021,9558], + [30023,9108], + [30025,3170], + [30027,11285], + [30029,95738], + [30031,100334], + [30033,1284], + [30035,13622], + [30037,818], + [30039,3164], + [30041,16423], + [30043,11553], + [30045,1931], + [30047,29416], + [30049,66138], + [30051,2393], + [30053,19014], + [30055,1699], + [30057,7922], + [30059,1819], + [30061,4184], + [30063,113780], + [30065,4617], + [30067,15963], + [30069,480], + [30071,4141], + [30073,6084], + [30075,1767], + [30077,6793], + [30079,1137], + [30081,41131], + [30083,11894], + [30085,11405], + [30087,9339], + [30089,11286], + [30091,3652], + [30093,34488], + [30095,9422], + [30097,3619], + [30099,6050], + [30101,5076], + [30103,685], + [30105,7608], + [30107,2084], + [30109,1072], + [30111,156324], + [31001,31549], + [31003,6419], + [31005,452], + [31007,715], + [31009,477], + [31011,5317], + [31013,11327], + [31015,2002], + [31017,2982], + [31019,48743], + [31021,6535], + [31023,8057], + [31025,25398], + [31027,8514], + [31029,3987], + [31031,5817], + [31033,10138], + [31035,6291], + [31037,10707], + [31039,9109], + [31041,10835], + [31043,20644], + [31045,8965], + [31047,23971], + [31049,1911], + [31051,5765], + [31053,36505], + [31055,549919], + [31057,1774], + [31059,5554], + [31061,2979], + [31063,2631], + [31065,4832], + [31067,21690], + [31069,1916], + [31071,2015], + [31073,2025], + [31075,646], + [31077,2434], + [31079,61300], + [31081,9142], + [31083,3454], + [31085,914], + [31087,2886], + [31089,10279], + [31091,714], + [31093,6382], + [31095,7212], + [31097,5224], + [31099,6559], + [31101,8136], + [31103,798], + [31105,3715], + [31107,8473], + [31109,306500], + [31111,35499], + [31113,791], + [31115,606], + [31117,490], + [31119,34975], + [31121,7802], + [31123,4935], + [31125,3575], + [31127,6999], + [31129,4316], + [31131,15872], + [31133,2690], + [31135,2938], + [31137,9222], + [31139,7195], + [31141,32864], + [31143,5174], + [31145,10884], + [31147,8020], + [31149,1417], + [31151,14249], + [31153,175190], + [31155,20963], + [31157,36305], + [31159,16981], + [31161,5215], + [31163,3036], + [31165,1276], + [31167,5943], + [31169,5130], + [31171,693], + [31173,7073], + [31175,4152], + [31177,20277], + [31179,9403], + [31181,3591], + [31183,778], + [31185,13810], + [32001,24024], + [32003,2110330], + [32005,47501], + [32007,51849], + [32009,829], + [32011,2030], + [32013,17072], + [32015,5909], + [32017,5138], + [32019,52032], + [32021,4443], + [32023,43052], + [32027,6629], + [32029,3872], + [32031,444358], + [32033,9866], + [32510,54123], + [33001,60248], + [33003,47320], + [33005,76036], + [33007,32322], + [33009,88831], + [33011,406009], + [33013,147843], + [33015,302156], + [33017,126253], + [33019,43116], + [34001,273088], + [34003,938255], + [34005,448844], + [34007,510809], + [34009,94421], + [34011,155261], + [34013,800206], + [34015,291651], + [34017,679907], + [34019,125747], + [34021,373104], + [34023,838332], + [34025,627418], + [34027,498538], + [34029,588707], + [34031,510927], + [34033,63730], + [34035,333399], + [34037,143302], + [34039,557073], + [34041,107282], + [35001,674100], + [35003,3480], + [35005,65554], + [35006,26976], + [35007,12425], + [35009,50068], + [35011,1868], + [35013,213165], + [35015,57479], + [35017,28325], + [35019,4352], + [35021,723], + [35023,4433], + [35025,70985], + [35027,19276], + [35028,17725], + [35029,24281], + [35031,73386], + [35033,4613], + [35035,64178], + [35037,8423], + [35039,39287], + [35041,19064], + [35043,138327], + [35045,128125], + [35047,28144], + [35049,147276], + [35051,11233], + [35053,17076], + [35055,32698], + [35057,15482], + [35059,4157], + [35061,75580], + [36001,308598], + [36003,47372], + [36005,1460412], + [36007,196292], + [36009,78006], + [36011,78319], + [36013,130756], + [36015,87030], + [36017,48799], + [36019,81032], + [36021,61549], + [36023,48294], + [36025,45948], + [36027,295309], + [36029,924122], + [36031,38196], + [36033,50609], + [36035,53853], + [36037,58591], + [36039,47649], + [36041,4704], + [36043,62688], + [36045,116301], + [36047,2643546], + [36049,26836], + [36051,64514], + [36053,71718], + [36055,748504], + [36057,49556], + [36059,1362858], + [36061,1657183], + [36063,212540], + [36065,232014], + [36067,468233], + [36069,109431], + [36071,377544], + [36073,41512], + [36075,119899], + [36077,60676], + [36079,99473], + [36081,2346005], + [36083,159850], + [36085,475313], + [36087,325655], + [36089,110803], + [36091,226551], + [36093,155089], + [36095,31463], + [36097,18020], + [36099,34811], + [36101,97495], + [36103,1498947], + [36105,75136], + [36107,49323], + [36109,104283], + [36111,179952], + [36113,64448], + [36115,62253], + [36117,91359], + [36119,976103], + [36121,40957], + [36123,25065], + [37001,157389], + [37003,37058], + [37005,10869], + [37007,25594], + [37009,26727], + [37011,17440], + [37013,47389], + [37015,20188], + [37017,34211], + [37019,122297], + [37021,252149], + [37023,88644], + [37025,196315], + [37027,81537], + [37029,10289], + [37031,68729], + [37033,22851], + [37035,155805], + [37037,68418], + [37039,27132], + [37041,14284], + [37043,10668], + [37045,96868], + [37047,56686], + [37049,103015], + [37051,331752], + [37053,25135], + [37055,35441], + [37057,163690], + [37059,41677], + [37061,59093], + [37063,301174], + [37065,53770], + [37067,367922], + [37069,63659], + [37071,213182], + [37073,11533], + [37075,8594], + [37077,58252], + [37079,21002], + [37081,517722], + [37083,52230], + [37085,128205], + [37087,59661], + [37089,111975], + [37091,24287], + [37093,52802], + [37095,5437], + [37097,169564], + [37099,41338], + [37101,185357], + [37103,9796], + [37105,59476], + [37107,58126], + [37109,80504], + [37111,45049], + [37113,34113], + [37115,21167], + [37117,23230], + [37119,1034442], + [37121,15101], + [37123,27519], + [37125,94040], + [37127,93929], + [37129,219685], + [37131,20556], + [37133,193088], + [37135,141563], + [37137,12753], + [37139,39385], + [37141,57512], + [37143,13464], + [37145,39191], + [37147,176237], + [37149,20412], + [37151,142685], + [37153,45436], + [37155,134562], + [37157,91733], + [37159,138576], + [37161,66373], + [37163,63673], + [37165,35319], + [37167,60685], + [37169,46153], + [37171,72029], + [37173,14334], + [37175,33198], + [37177,4138], + [37179,222247], + [37181,44433], + [37183,1023859], + [37185,20206], + [37187,12293], + [37189,53108], + [37191,124454], + [37193,68320], + [37195,81393], + [37197,37659], + [37199,17559], + [38001,2393], + [38003,11023], + [38005,6815], + [38007,948], + [38009,6729], + [38011,3280], + [38013,2343], + [38015,93156], + [38017,170923], + [38019,3816], + [38021,5052], + [38023,2454], + [38025,4577], + [38027,2302], + [38029,3405], + [38031,3330], + [38033,1879], + [38035,70361], + [38037,2398], + [38039,2286], + [38041,2655], + [38043,2446], + [38045,4134], + [38047,1929], + [38049,5976], + [38051,2715], + [38053,12795], + [38055,9669], + [38057,8786], + [38059,30190], + [38061,10307], + [38063,2926], + [38065,1863], + [38067,7037], + [38069,4270], + [38071,11646], + [38073,5450], + [38075,2549], + [38077,16319], + [38079,14687], + [38081,3866], + [38083,1310], + [38085,4374], + [38087,782], + [38089,31850], + [38091,1916], + [38093,21005], + [38095,2249], + [38097,7989], + [38099,10872], + [38101,71430], + [38103,4096], + [38105,35301], + [39001,27914], + [39003,104093], + [39005,53224], + [39007,98396], + [39009,65793], + [39011,45749], + [39013,68943], + [39015,43703], + [39017,375569], + [39019,27716], + [39021,38941], + [39023,135624], + [39025,201867], + [39027,41822], + [39029,104632], + [39031,36579], + [39033,42277], + [39035,1257957], + [39037,51956], + [39039,38276], + [39041,193179], + [39043,75310], + [39045,151197], + [39047,28583], + [39049,1253674], + [39051,42283], + [39053,30083], + [39055,93895], + [39057,164047], + [39059,39385], + [39061,808405], + [39063,75493], + [39065,31613], + [39067,15393], + [39069,27472], + [39071,42939], + [39073,28491], + [39075,43868], + [39077,58277], + [39079,32564], + [39081,67471], + [39083,60916], + [39085,229571], + [39087,60921], + [39089,170425], + [39091,45260], + [39093,305291], + [39095,433315], + [39097,44095], + [39099,231764], + [39101,65379], + [39103,176128], + [39105,23187], + [39107,40706], + [39109,103953], + [39111,14266], + [39113,531293], + [39115,14746], + [39117,34950], + [39119,86119], + [39121,14456], + [39123,40758], + [39125,18955], + [39127,35958], + [39129,56975], + [39131,28245], + [39133,162260], + [39135,41266], + [39137,34011], + [39139,121641], + [39141,77068], + [39143,59454], + [39145,76805], + [39147,55569], + [39149,48967], + [39151,374719], + [39153,541270], + [39155,203336], + [39157,92673], + [39159,54254], + [39161,28289], + [39163,13082], + [39165,223735], + [39167,60952], + [39169,116055], + [39171,36997], + [39173,129183], + [39175,22156], + [40001,22109], + [40003,5901], + [40005,13875], + [40007,5435], + [40009,23563], + [40011,9739], + [40013,44971], + [40015,29418], + [40017,133118], + [40019,48500], + [40021,48312], + [40023,14983], + [40025,2202], + [40027,273549], + [40029,5592], + [40031,123487], + [40033,5993], + [40035,14708], + [40037,70717], + [40039,29418], + [40041,41632], + [40043,4961], + [40045,4215], + [40047,63163], + [40049,27888], + [40051,54581], + [40053,4483], + [40055,6029], + [40057,2758], + [40059,3842], + [40061,12694], + [40063,13574], + [40065,25404], + [40067,6265], + [40069,10968], + [40071,45282], + [40073,15553], + [40075,9103], + [40077,10599], + [40079,49766], + [40081,34930], + [40083,45334], + [40085,9794], + [40087,37963], + [40089,33074], + [40091,19808], + [40093,7745], + [40095,16254], + [40097,40878], + [40099,13835], + [40101,69317], + [40103,11526], + [40105,10504], + [40107,12103], + [40109,776643], + [40111,39075], + [40113,47330], + [40115,31805], + [40117,16442], + [40119,80726], + [40121,44701], + [40123,38331], + [40125,71460], + [40127,11142], + [40129,3774], + [40131,90049], + [40133,25394], + [40135,41363], + [40137,44574], + [40139,21379], + [40141,7578], + [40143,639892], + [40145,76703], + [40147,51968], + [40149,11751], + [40151,9283], + [40153,21575], + [41001,15867], + [41003,88106], + [41005,399825], + [41007,37783], + [41009,49648], + [41011,62662], + [41013,21469], + [41015,22283], + [41017,174288], + [41019,107152], + [41021,1867], + [41023,7209], + [41025,7147], + [41027,22955], + [41029,211868], + [41031,22582], + [41033,84422], + [41035,65777], + [41037,7759], + [41039,361721], + [41041,47051], + [41043,120210], + [41045,30204], + [41047,329335], + [41049,11117], + [41051,790305], + [41053,78991], + [41055,1694], + [41057,25616], + [41059,76481], + [41061,25676], + [41063,6810], + [41065,25500], + [41067,572414], + [41069,1326], + [41071,101417], + [42001,101637], + [42003,1230052], + [42005,66638], + [42007,168526], + [42009,48789], + [42011,415261], + [42013,124818], + [42015,61539], + [42017,626209], + [42019,185891], + [42021,135854], + [42023,4765], + [42025,63758], + [42027,160553], + [42029,515226], + [42031,38821], + [42033,80651], + [42035,39367], + [42037,66688], + [42039,86701], + [42041,246244], + [42043,273176], + [42045,563705], + [42047,30788], + [42049,278111], + [42051,133290], + [42053,7357], + [42055,152903], + [42057,14621], + [42059,37336], + [42061,45640], + [42063,86867], + [42065,44240], + [42067,24376], + [42069,211781], + [42071,536534], + [42073,88317], + [42075,137540], + [42077,360505], + [42079,318013], + [42081,115580], + [42083,42247], + [42085,113746], + [42087,46427], + [42089,166835], + [42091,817869], + [42093,18262], + [42095,300466], + [42097,93020], + [42099,45881], + [42101,1570507], + [42103,55535], + [42105,17030], + [42107,143885], + [42109,40745], + [42111,75553], + [42113,6237], + [42115,41763], + [42117,41534], + [42119,45536], + [42121,52966], + [42123,40374], + [42125,207747], + [42127,51713], + [42129,356995], + [42131,27761], + [42133,441822], + [44001,49096], + [44003,163740], + [44005,83419], + [44007,633519], + [44009,126142], + [45001,24802], + [45003,165550], + [45005,9420], + [45007,193921], + [45009,14711], + [45011,21773], + [45013,179896], + [45015,202358], + [45017,14757], + [45019,389329], + [45021,56516], + [45023,32390], + [45025,46185], + [45027,33992], + [45029,37467], + [45031,67588], + [45033,31183], + [45035,153374], + [45037,26709], + [45039,22878], + [45041,138719], + [45043,61310], + [45045,490816], + [45047,69907], + [45049,20031], + [45051,309205], + [45053,27605], + [45055,63626], + [45057,86255], + [45059,66434], + [45061,17811], + [45063,281582], + [45065,9662], + [45067,31747], + [45069,27579], + [45071,37841], + [45073,75812], + [45075,89115], + [45077,121336], + [45079,406101], + [45081,20203], + [45083,296801], + [45085,107276], + [45087,27731], + [45089,32479], + [45091,250640], + [46003,2742], + [46005,18160], + [46007,3401], + [46009,6946], + [46011,33808], + [46013,38505], + [46015,5240], + [46017,2097], + [46019,10208], + [46021,1414], + [46023,9361], + [46025,3644], + [46027,13790], + [46029,27887], + [46031,4176], + [46033,8450], + [46035,19720], + [46037,5501], + [46039,4305], + [46041,5698], + [46043,2952], + [46045,3997], + [46047,6798], + [46049,2306], + [46051,7091], + [46053,4191], + [46055,1849], + [46057,5933], + [46059,3299], + [46061,3386], + [46063,1269], + [46065,17554], + [46067,7268], + [46069,1388], + [46071,3282], + [46073,2020], + [46075,918], + [46077,4954], + [46079,12340], + [46081,24796], + [46083,52993], + [46085,3881], + [46087,5468], + [46089,2398], + [46091,4766], + [46093,26800], + [46095,2026], + [46097,2210], + [46099,183880], + [46101,6467], + [46102,14364], + [46103,108107], + [46105,2975], + [46107,2297], + [46109,10211], + [46111,2345], + [46115,6457], + [46117,2975], + [46119,1406], + [46121,9993], + [46123,5420], + [46125,8128], + [46127,14872], + [46129,5432], + [46135,22682], + [46137,2839], + [47001,75459], + [47003,46892], + [47005,16192], + [47007,14483], + [47009,126832], + [47011,103802], + [47013,39687], + [47015,13754], + [47017,27953], + [47019,56366], + [47021,39571], + [47023,17083], + [47025,31517], + [47027,7683], + [47029,35068], + [47031,54094], + [47033,14578], + [47035,58122], + [47037,681285], + [47039,11600], + [47041,19274], + [47043,51327], + [47045,37782], + [47047,39218], + [47049,17860], + [47051,41324], + [47053,49196], + [47055,28950], + [47057,22851], + [47059,68500], + [47061,13334], + [47063,63384], + [47065,353748], + [47067,6579], + [47069,25783], + [47071,25741], + [47073,56242], + [47075,17973], + [47077,27964], + [47079,32145], + [47081,24366], + [47083,8122], + [47085,18146], + [47087,11523], + [47089,52987], + [47091,17835], + [47093,451321], + [47095,7574], + [47097,26940], + [47099,42449], + [47101,11883], + [47103,33554], + [47105,50852], + [47107,52439], + [47109,25860], + [47111,23120], + [47113,97523], + [47115,28376], + [47117,31543], + [47119,87390], + [47121,11785], + [47123,45693], + [47125,192542], + [47127,6256], + [47129,21487], + [47131,30559], + [47133,22067], + [47135,7848], + [47137,5126], + [47139,16763], + [47141,75098], + [47143,32320], + [47145,52748], + [47147,68429], + [47149,297920], + [47151,21881], + [47153,14631], + [47155,95502], + [47157,937885], + [47159,19228], + [47161,13198], + [47163,156318], + [47165,175193], + [47167,61525], + [47169,8040], + [47171,17779], + [47173,19161], + [47175,5692], + [47177,40206], + [47179,126072], + [47181,16677], + [47183,33846], + [47185,26362], + [47187,211456], + [47189,128434], + [48001,57641], + [48003,18092], + [48005,87901], + [48007,24834], + [48009,8755], + [48011,1902], + [48013,48349], + [48015,29447], + [48017,7199], + [48019,21146], + [48021,80198], + [48023,3649], + [48025,32609], + [48027,336094], + [48029,1894811], + [48031,11038], + [48033,656], + [48035,17863], + [48037,93400], + [48039,345738], + [48041,215891], + [48043,9132], + [48045,1513], + [48047,7238], + [48049,37709], + [48051,17559], + [48053,44781], + [48055,40377], + [48057,21881], + [48059,13580], + [48061,419579], + [48063,12663], + [48065,6007], + [48067,30143], + [48069,7801], + [48071,39059], + [48073,51573], + [48075,7040], + [48077,10353], + [48079,2961], + [48081,3225], + [48083,8315], + [48085,914578], + [48087,3010], + [48089,20910], + [48091,128653], + [48093,13368], + [48095,4140], + [48097,39063], + [48099,76231], + [48101,1438], + [48103,5007], + [48105,3732], + [48107,5916], + [48109,2251], + [48111,7264], + [48113,2554233], + [48115,12984], + [48117,18802], + [48119,5157], + [48121,779572], + [48123,20630], + [48125,2202], + [48127,10981], + [48129,3396], + [48131,11343], + [48133,18161], + [48135,159835], + [48137,1910], + [48139,163285], + [48141,832890], + [48143,41221], + [48145,17230], + [48147,33476], + [48149,24967], + [48151,3871], + [48153,5846], + [48155,1228], + [48157,713881], + [48159,10593], + [48161,19712], + [48163,19260], + [48165,20213], + [48167,321305], + [48169,6369], + [48171,25959], + [48173,1369], + [48175,7510], + [48177,20538], + [48179,23245], + [48181,125549], + [48183,123851], + [48185,27330], + [48187,150585], + [48189,34099], + [48191,3092], + [48193,8070], + [48195,5609], + [48197,3912], + [48199,55758], + [48201,4551362], + [48203,66760], + [48205,5674], + [48207,5817], + [48209,194497], + [48211,4292], + [48213,79447], + [48215,840113], + [48217,34845], + [48219,23315], + [48221,55330], + [48223,35959], + [48225,22736], + [48227,37134], + [48229,3436], + [48231,89674], + [48233,21781], + [48235,1543], + [48237,8839], + [48239,14792], + [48241,35250], + [48243,2204], + [48245,254889], + [48247,5284], + [48249,41469], + [48251,159390], + [48253,19983], + [48255,15247], + [48257,114161], + [48259,39968], + [48261,433], + [48263,747], + [48265,50753], + [48267,4392], + [48269,284], + [48271,3593], + [48273,31398], + [48275,3792], + [48277,49367], + [48279,13269], + [48281,20416], + [48283,7644], + [48285,19916], + [48287,16883], + [48289,17031], + [48291,79542], + [48293,23441], + [48295,3557], + [48297,12158], + [48299,20057], + [48301,119], + [48303,298463], + [48305,5746], + [48307,8253], + [48309,245368], + [48311,829], + [48313,13936], + [48315,10127], + [48317,5676], + [48319,4043], + [48321,36762], + [48323,57658], + [48325,48380], + [48327,2131], + [48329,162012], + [48331,24380], + [48333,4887], + [48335,8856], + [48337,19280], + [48339,535214], + [48341,21880], + [48343,12391], + [48345,1146], + [48347,65464], + [48349,48170], + [48351,14169], + [48353,15041], + [48355,360437], + [48357,10697], + [48359,2064], + [48361,83928], + [48363,27956], + [48365,23660], + [48367,125568], + [48369,9800], + [48371,16017], + [48373,46614], + [48375,121129], + [48377,7054], + [48379,11129], + [48381,130406], + [48383,3809], + [48385,3297], + [48387,12363], + [48389,14906], + [48391,7320], + [48393,910], + [48395,16688], + [48397,90121], + [48399,10356], + [48401,52930], + [48403,10447], + [48405,8340], + [48407,27361], + [48409,67084], + [48411,5917], + [48413,3193], + [48415,17588], + [48417,3345], + [48419,25503], + [48421,3060], + [48423,222410], + [48425,8613], + [48427,63512], + [48429,9383], + [48431,1331], + [48433,1399], + [48435,3896], + [48437,7481], + [48439,1983642], + [48441,135915], + [48443,864], + [48445,12755], + [48447,1559], + [48449,32720], + [48451,117598], + [48453,1178292], + [48455,14507], + [48457,21364], + [48459,40381], + [48461,3650], + [48463,26925], + [48465,48906], + [48467,53410], + [48469,92082], + [48471,70718], + [48473,48639], + [48475,11639], + [48477,34869], + [48479,269795], + [48481,41379], + [48483,5668], + [48485,130871], + [48487,13049], + [48489,21882], + [48491,507420], + [48493,47162], + [48495,7995], + [48497,62864], + [48499,43220], + [48501,8623], + [48503,18146], + [48505,14516], + [48507,12296], + [49001,6344], + [49003,51821], + [49005,119748], + [49007,20366], + [49009,1106], + [49011,334834], + [49013,20766], + [49015,10356], + [49017,4978], + [49019,9547], + [49021,48139], + [49023,10545], + [49025,7046], + [49027,12628], + [49029,11030], + [49031,1492], + [49033,2298], + [49035,1104372], + [49037,15238], + [49039,28686], + [49041,20857], + [49043,39599], + [49045,62641], + [49047,37776], + [49049,573038], + [49051,29273], + [49053,154731], + [49055,2684], + [49057,242978], + [50001,36808], + [50003,36088], + [50005,30634], + [50007,161010], + [50009,6195], + [50011,48933], + [50013,6869], + [50015,25195], + [50017,28885], + [50019,27008], + [50021,59566], + [50023,58617], + [50025,43219], + [50027,55428], + [51001,32911], + [51003,105218], + [51005,15429], + [51007,12784], + [51009,31638], + [51011,15468], + [51013,228969], + [51015,74301], + [51017,4460], + [51019,77562], + [51021,6535], + [51023,33340], + [51025,16502], + [51027,22687], + [51029,17022], + [51031,55258], + [51033,29898], + [51035,29822], + [51036,7038], + [51037,12176], + [51041,335251], + [51043,14255], + [51045,5139], + [51047,49513], + [51049,9746], + [51051,15206], + [51053,27849], + [51057,11078], + [51059,1142197], + [51061,68445], + [51063,15547], + [51065,26122], + [51067,56231], + [51069,83512], + [51071,16773], + [51073,36999], + [51075,22159], + [51077,15953], + [51079,19190], + [51081,11731], + [51083,35070], + [51085,103045], + [51087,324732], + [51089,51936], + [51091,2196], + [51093,36171], + [51095,72838], + [51097,7082], + [51099,25395], + [51101,16281], + [51103,10836], + [51105,24547], + [51107,374697], + [51109,34618], + [51111,12330], + [51113,13034], + [51115,8849], + [51117,30951], + [51119,10678], + [51121,97485], + [51125,14790], + [51127,20382], + [51131,12084], + [51133,12247], + [51135,15604], + [51137,35209], + [51139,23649], + [51141,17946], + [51143,61987], + [51145,28045], + [51147,23100], + [51149,38168], + [51153,451247], + [51155,34340], + [51157,7384], + [51159,8795], + [51161,93296], + [51163,22376], + [51165,78450], + [51167,27826], + [51169,22256], + [51171,42864], + [51173,31413], + [51175,18129], + [51177,130032], + [51179,140891], + [51181,6670], + [51183,11689], + [51185,42898], + [51187,38891], + [51191,54308], + [51193,17553], + [51195,39540], + [51197,29101], + [51199,67821], + [51510,154132], + [51520,17058], + [51530,6543], + [51540,46476], + [51550,235192], + [51570,17496], + [51580,5655], + [51590,41910], + [51595,5529], + [51600,23404], + [51610,13881], + [51620,8329], + [51630,27985], + [51640,6806], + [51650,136296], + [51660,52869], + [51670,22233], + [51678,7117], + [51680,79146], + [51683,41542], + [51685,16026], + [51690,13282], + [51700,181083], + [51710,246352], + [51720,4027], + [51730,32034], + [51735,12013], + [51740,96241], + [51750,17319], + [51760,220943], + [51770,99823], + [51775,25449], + [51790,24192], + [51800,88103], + [51810,450864], + [51820,21502], + [51830,14866], + [51840,27383], + [53001,19201], + [53003,22133], + [53005,190170], + [53007,75168], + [53009,73133], + [53011,457195], + [53013,3966], + [53015,103020], + [53017,40494], + [53019,7521], + [53021,88810], + [53023,2231], + [53025,93380], + [53027,71065], + [53029,79999], + [53031,30350], + [53033,2117696], + [53035,259175], + [53037,43091], + [53039,21008], + [53041,75419], + [53043,10286], + [53045,60984], + [53047,41334], + [53049,20855], + [53051,13064], + [53053,841466], + [53055,16187], + [53057,121414], + [53059,11377], + [53061,769444], + [53063,488899], + [53065,43596], + [53067,268148], + [53069,4017], + [53071,59889], + [53073,211713], + [53075,47914], + [53077,248006], + [54001,16970], + [54003,111497], + [54005,23241], + [54007,14366], + [54009,23200], + [54011,96462], + [54013,7465], + [54015,8876], + [54017,8696], + [54019,44687], + [54021,8287], + [54023,11666], + [54025,35541], + [54027,23318], + [54029,29950], + [54031,13764], + [54033,68514], + [54035,29164], + [54037,55911], + [54039,188119], + [54041,16422], + [54043,21292], + [54045,34419], + [54047,19704], + [54049,56690], + [54051,32184], + [54053,27047], + [54055,61038], + [54057,27366], + [54059,25278], + [54061,103940], + [54063,13574], + [54065,17433], + [54067,25510], + [54069,42950], + [54071,7103], + [54073,7503], + [54075,8571], + [54077,33805], + [54079,56606], + [54081,77335], + [54083,29165], + [54085,10086], + [54087,14372], + [54089,13130], + [54091,16923], + [54093,7087], + [54095,8935], + [54097,24695], + [54099,41187], + [54101,8648], + [54103,15793], + [54105,5805], + [54107,86304], + [54109,22173], + [55001,20032], + [55003,15805], + [55005,45368], + [55007,14980], + [55009,257875], + [55011,13265], + [55013,15130], + [55015,49834], + [55017,63423], + [55019,34390], + [55021,56646], + [55023,16328], + [55025,522074], + [55027,87865], + [55029,27307], + [55031,43475], + [55033,44219], + [55035,102032], + [55037,4346], + [55039,101916], + [55041,8999], + [55043,52057], + [55045,36922], + [55047,18703], + [55049,23572], + [55051,5719], + [55053,20520], + [55055,84525], + [55057,26301], + [55059,167882], + [55061,20336], + [55063,117669], + [55065,16800], + [55067,19038], + [55069,27863], + [55071,79457], + [55073,135394], + [55075,40639], + [55077,15119], + [55078,4510], + [55079,958859], + [55081,45276], + [55083,37476], + [55085,35293], + [55087,183297], + [55089,87801], + [55091,7240], + [55093,41020], + [55095,43233], + [55097,70309], + [55099,13580], + [55101,194763], + [55103,17547], + [55105,161059], + [55107,14109], + [55109,87157], + [55111,63292], + [55113,16297], + [55115,41053], + [55117,115261], + [55119,20297], + [55121,29504], + [55123,30313], + [55125,21415], + [55127,102592], + [55129,15512], + [55131,133874], + [55133,395842], + [55135,51684], + [55137,23981], + [55139,169157], + [55141,73316], + [56001,38036], + [56003,11956], + [56005,49293], + [56007,15645], + [56009,14312], + [56011,7432], + [56013,40237], + [56015,13566], + [56017,4717], + [56019,8616], + [56021,97005], + [56023,18736], + [56025,82134], + [56027,2496], + [56029,29110], + [56031,8797], + [56033,29940], + [56035,10056], + [56037,44732], + [56039,23029], + [56041,20780], + [56043,8296], + [56045,7181] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2016.json b/data/regional/united-states/demographics/population/us-population-2016.json new file mode 100644 index 0000000..2e266d7 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2016.", + "units" : "people", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2016"], + [1001,55278], + [1003,207509], + [1005,25774], + [1007,22633], + [1009,57562], + [1011,10441], + [1013,19965], + [1015,114980], + [1017,33717], + [1019,25766], + [1021,43830], + [1023,13050], + [1025,24350], + [1027,13410], + [1029,14873], + [1031,51217], + [1033,54327], + [1035,12515], + [1037,10809], + [1039,37386], + [1041,13907], + [1043,82322], + [1045,49228], + [1047,40081], + [1049,71216], + [1051,81240], + [1053,37476], + [1055,102726], + [1057,16538], + [1059,31577], + [1061,26516], + [1063,8488], + [1065,14847], + [1067,17092], + [1069,104173], + [1071,52049], + [1073,659747], + [1075,13949], + [1077,92319], + [1079,33232], + [1081,158983], + [1083,92920], + [1085,10241], + [1087,19072], + [1089,356312], + [1091,19505], + [1093,29922], + [1095,95043], + [1097,414852], + [1099,21572], + [1101,226716], + [1103,118819], + [1105,9570], + [1107,20315], + [1109,33215], + [1111,22498], + [1113,58177], + [1115,87482], + [1117,211073], + [1119,12932], + [1121,80386], + [1123,40574], + [1125,206282], + [1127,64561], + [1129,16646], + [1131,10875], + [1133,23887], + [2013,3324], + [2016,5747], + [2020,297376], + [2050,17980], + [2060,905], + [2068,2045], + [2070,4976], + [2090,100602], + [2100,2531], + [2105,"NA"], + [2110,32405], + [2122,58543], + [2130,13727], + [2150,13679], + [2158,8161], + [2164,1602], + [2170,104123], + [2180,9915], + [2185,9685], + [2188,7662], + [2195,3278], + [2198,6507], + [2220,8768], + [2230,"NA"], + [2240,6840], + [2261,9340], + [2275,"NA"], + [2282,612], + [2290,5412], + [4001,71373], + [4003,125355], + [4005,140079], + [4007,53297], + [4009,37767], + [4011,9623], + [4012,20523], + [4013,4233383], + [4015,205385], + [4017,108322], + [4019,1012519], + [4021,415115], + [4023,46075], + [4025,224363], + [4027,205463], + [5001,18215], + [5003,20498], + [5005,41145], + [5007,258704], + [5009,37191], + [5011,10979], + [5013,5162], + [5015,27728], + [5017,10912], + [5019,22550], + [5021,15057], + [5023,25159], + [5025,8260], + [5027,23983], + [5029,20895], + [5031,105781], + [5033,62259], + [5035,49320], + [5037,17037], + [5039,7430], + [5041,11920], + [5043,18628], + [5045,122083], + [5047,17671], + [5049,12039], + [5051,98231], + [5053,18094], + [5055,44715], + [5057,22026], + [5059,33446], + [5061,13438], + [5063,37094], + [5065,13490], + [5067,17309], + [5069,70342], + [5071,26225], + [5073,6928], + [5075,16639], + [5077,9360], + [5079,13810], + [5081,12430], + [5083,21713], + [5085,71757], + [5087,16105], + [5089,16369], + [5091,43874], + [5093,42885], + [5095,7235], + [5097,8949], + [5099,8374], + [5101,7869], + [5103,24019], + [5105,10273], + [5107,19050], + [5109,10817], + [5111,24008], + [5113,20141], + [5115,63852], + [5117,8271], + [5119,393677], + [5121,17408], + [5123,26304], + [5125,117577], + [5127,10360], + [5129,7965], + [5131,127567], + [5133,16955], + [5135,17138], + [5137,12500], + [5139,39867], + [5141,16622], + [5143,227600], + [5145,78838], + [5147,6623], + [5149,21486], + [6001,1653236], + [6003,1057], + [6005,37473], + [6007,226525], + [6009,45315], + [6011,21645], + [6013,1138645], + [6015,27450], + [6017,186272], + [6019,979534], + [6021,27967], + [6023,136449], + [6025,180980], + [6027,18034], + [6029,885086], + [6031,149797], + [6033,63950], + [6035,30944], + [6037,10150558], + [6039,154966], + [6041,261532], + [6043,17524], + [6045,87609], + [6047,268878], + [6049,8941], + [6051,14101], + [6053,436363], + [6055,141649], + [6057,99053], + [6059,3177703], + [6061,379742], + [6063,18787], + [6065,2386522], + [6067,1513260], + [6069,59335], + [6071,2137131], + [6073,3317200], + [6075,876103], + [6077,734294], + [6079,282282], + [6081,769561], + [6083,446296], + [6085,1931575], + [6087,275196], + [6089,178774], + [6091,2964], + [6093,43511], + [6095,440318], + [6097,503833], + [6099,541353], + [6101,96058], + [6103,63444], + [6105,12839], + [6107,460835], + [6109,53787], + [6111,851096], + [6113,215959], + [6115,75185], + [8001,497395], + [8003,16456], + [8005,636949], + [8007,12836], + [8009,3548], + [8011,5681], + [8013,321173], + [8014,66509], + [8015,19082], + [8017,1834], + [8019,9361], + [8021,8072], + [8023,3705], + [8025,5254], + [8027,4601], + [8029,30346], + [8031,694777], + [8033,2062], + [8035,327722], + [8037,54364], + [8039,25041], + [8041,686706], + [8043,46906], + [8045,58906], + [8047,5905], + [8049,15129], + [8051,16491], + [8053,787], + [8055,6582], + [8057,1360], + [8059,570839], + [8061,1348], + [8063,7628], + [8065,7606], + [8067,55216], + [8069,338531], + [8071,14087], + [8073,5562], + [8075,21925], + [8077,149794], + [8079,755], + [8081,13161], + [8083,25975], + [8085,41160], + [8087,28063], + [8089,18239], + [8091,4784], + [8093,17350], + [8095,4281], + [8097,17894], + [8099,11989], + [8101,164834], + [8103,6483], + [8105,11338], + [8107,24679], + [8109,6407], + [8111,689], + [8113,7964], + [8115,2405], + [8117,30332], + [8119,24040], + [8121,4846], + [8123,294243], + [8125,10118], + [9001,949191], + [9003,895497], + [9005,183097], + [9007,163433], + [9009,859973], + [9011,269307], + [9013,151145], + [9015,116042], + [10001,174754], + [10003,557851], + [10005,220093], + [11001,684336], + [12001,264341], + [12003,27915], + [12005,182992], + [12007,26728], + [12009,577899], + [12011,1917122], + [12013,14361], + [12015,178157], + [12017,142990], + [12019,207240], + [12021,366095], + [12023,69274], + [12027,35925], + [12029,16477], + [12031,926380], + [12033,311711], + [12035,107805], + [12037,11799], + [12039,46155], + [12041,17210], + [12043,13460], + [12045,16100], + [12047,14324], + [12049,27371], + [12051,39640], + [12053,182231], + [12055,101558], + [12057,1381627], + [12059,19407], + [12061,151382], + [12063,48292], + [12065,13933], + [12067,8654], + [12069,335431], + [12071,722506], + [12073,287074], + [12075,39851], + [12077,8319], + [12079,18306], + [12081,375563], + [12083,348139], + [12085,158484], + [12086,2736543], + [12087,77304], + [12089,79922], + [12091,199915], + [12093,40697], + [12095,1323598], + [12097,337990], + [12099,1453768], + [12101,510561], + [12103,962106], + [12105,667018], + [12107,72404], + [12109,235046], + [12111,306079], + [12113,170063], + [12115,412879], + [12117,456314], + [12119,122121], + [12121,43835], + [12123,22118], + [12125,15267], + [12127,529038], + [12129,31885], + [12131,65440], + [12133,24450], + [13001,18485], + [13003,8320], + [13005,11365], + [13007,3208], + [13009,45190], + [13011,18309], + [13013,77091], + [13015,103431], + [13017,17190], + [13019,19014], + [13021,153205], + [13023,12898], + [13025,18355], + [13027,15693], + [13029,35842], + [13031,74721], + [13033,22608], + [13035,23710], + [13037,6393], + [13039,52416], + [13043,10915], + [13045,116291], + [13047,66267], + [13049,12751], + [13051,289390], + [13053,10100], + [13055,24833], + [13057,241600], + [13059,125018], + [13061,3006], + [13063,280006], + [13065,6789], + [13067,750477], + [13069,43015], + [13071,45671], + [13073,147451], + [13075,17187], + [13077,140472], + [13079,12291], + [13081,22935], + [13083,16242], + [13085,23613], + [13087,26715], + [13089,746690], + [13091,20837], + [13093,13885], + [13095,90395], + [13097,142021], + [13099,10298], + [13101,3981], + [13103,58553], + [13105,19143], + [13107,22404], + [13109,10668], + [13111,24991], + [13113,111248], + [13115,96620], + [13117,220067], + [13119,22306], + [13121,1024248], + [13123,30033], + [13125,2992], + [13127,84528], + [13129,56987], + [13131,24893], + [13133,16939], + [13135,907101], + [13137,44177], + [13139,196237], + [13141,8657], + [13143,28833], + [13145,33617], + [13147,25548], + [13149,11574], + [13151,221355], + [13153,151862], + [13155,9359], + [13157,64978], + [13159,13821], + [13161,14970], + [13163,15788], + [13165,8770], + [13167,9730], + [13169,28553], + [13171,18470], + [13173,10454], + [13175,47192], + [13177,29230], + [13179,61390], + [13181,7864], + [13183,18594], + [13185,114306], + [13187,31528], + [13189,21456], + [13191,14072], + [13193,13520], + [13195,28827], + [13197,8511], + [13199,21072], + [13201,5881], + [13205,22411], + [13207,26879], + [13209,8983], + [13211,18121], + [13213,39376], + [13215,196307], + [13217,106580], + [13219,36866], + [13221,14710], + [13223,155374], + [13225,26899], + [13227,30695], + [13229,19218], + [13231,17923], + [13233,41730], + [13235,11307], + [13237,21548], + [13239,2333], + [13241,16528], + [13243,7225], + [13245,202008], + [13247,89375], + [13249,5158], + [13251,14032], + [13253,8445], + [13255,64553], + [13257,25724], + [13259,5875], + [13261,30355], + [13263,6353], + [13265,1626], + [13267,25281], + [13269,8199], + [13271,16034], + [13273,8888], + [13275,45090], + [13277,40650], + [13279,27195], + [13281,11349], + [13283,6727], + [13285,69776], + [13287,7972], + [13289,8235], + [13291,22660], + [13293,26213], + [13295,68326], + [13297,89911], + [13299,35776], + [13301,5382], + [13303,20343], + [13305,29985], + [13307,2612], + [13309,8017], + [13311,28825], + [13313,104698], + [13315,8867], + [13317,9822], + [13319,9048], + [13321,20719], + [15001,198681], + [15003,992761], + [15005,88], + [15007,71769], + [15009,165384], + [16001,444269], + [16003,3949], + [16005,84379], + [16007,5942], + [16009,9022], + [16011,45255], + [16013,21741], + [16015,7088], + [16017,42343], + [16019,112025], + [16021,11650], + [16023,2573], + [16025,1084], + [16027,211111], + [16029,6906], + [16031,23462], + [16033,854], + [16035,8555], + [16037,4109], + [16039,26090], + [16041,13347], + [16043,12888], + [16045,16979], + [16047,15094], + [16049,16228], + [16051,27807], + [16053,23257], + [16055,153144], + [16057,38792], + [16059,7732], + [16061,3843], + [16063,5267], + [16065,38781], + [16067,20583], + [16069,40096], + [16071,4321], + [16073,11363], + [16075,22920], + [16077,7661], + [16079,12413], + [16081,11086], + [16083,83536], + [16085,10417], + [16087,10064], + [17001,66673], + [17003,6491], + [17005,16841], + [17007,53562], + [17009,6744], + [17011,33433], + [17013,4859], + [17015,14611], + [17017,12681], + [17019,209267], + [17021,33271], + [17023,15848], + [17025,13311], + [17027,37565], + [17029,52412], + [17031,5231356], + [17033,19142], + [17035,10892], + [17037,104447], + [17039,16159], + [17041,19769], + [17043,931153], + [17045,17472], + [17047,6545], + [17049,34182], + [17051,21816], + [17053,13342], + [17055,39092], + [17057,35517], + [17059,5163], + [17061,13119], + [17063,50269], + [17065,8199], + [17067,18219], + [17069,4099], + [17071,6874], + [17073,49524], + [17075,28214], + [17077,59032], + [17079,9593], + [17081,38308], + [17083,21945], + [17085,21861], + [17087,12961], + [17089,532553], + [17091,110053], + [17093,124573], + [17095,50945], + [17097,704935], + [17099,110507], + [17101,16343], + [17103,34399], + [17105,36475], + [17107,29338], + [17109,31387], + [17111,307972], + [17113,172688], + [17115,106651], + [17117,45653], + [17119,265598], + [17121,38066], + [17123,11898], + [17125,13706], + [17127,14469], + [17129,12399], + [17131,15630], + [17133,33878], + [17135,29079], + [17137,34194], + [17139,14599], + [17141,51168], + [17143,185296], + [17145,21382], + [17147,16526], + [17149,15882], + [17151,4295], + [17153,5603], + [17155,5717], + [17157,32597], + [17159,15858], + [17161,145472], + [17163,263120], + [17165,24253], + [17167,197591], + [17169,7053], + [17171,5055], + [17173,21727], + [17175,5506], + [17177,45540], + [17179,133967], + [17181,17115], + [17183,78560], + [17185,11511], + [17187,17307], + [17189,14210], + [17191,16573], + [17193,14088], + [17195,56541], + [17197,689731], + [17199,67640], + [17201,286088], + [17203,38933], + [18001,35232], + [18003,369972], + [18005,81873], + [18007,8655], + [18009,12075], + [18011,64239], + [18013,15008], + [18015,19967], + [18017,38013], + [18019,115800], + [18021,26203], + [18023,32267], + [18025,10581], + [18027,32997], + [18029,49471], + [18031,26641], + [18033,42620], + [18035,115483], + [18037,42456], + [18039,204146], + [18041,23257], + [18043,76723], + [18045,16477], + [18047,22725], + [18049,20137], + [18051,33579], + [18053,66802], + [18055,32223], + [18057,316296], + [18059,73781], + [18061,39679], + [18063,160336], + [18065,48364], + [18067,82339], + [18069,36368], + [18071,43933], + [18073,33389], + [18075,21040], + [18077,32249], + [18079,27622], + [18081,151543], + [18083,37542], + [18085,78927], + [18087,39133], + [18089,486592], + [18091,110208], + [18093,45575], + [18095,129325], + [18097,944034], + [18099,46652], + [18101,10202], + [18103,36067], + [18105,145692], + [18107,38323], + [18109,69557], + [18111,14049], + [18113,47442], + [18115,5888], + [18117,19481], + [18119,20922], + [18121,16957], + [18123,19010], + [18125,12428], + [18127,167438], + [18129,25632], + [18131,12611], + [18133,37265], + [18135,25059], + [18137,28408], + [18139,16633], + [18141,269613], + [18143,23707], + [18145,44228], + [18147,20493], + [18149,22992], + [18151,34388], + [18153,20737], + [18155,10647], + [18157,188674], + [18159,15154], + [18161,7168], + [18163,181775], + [18165,15611], + [18167,107669], + [18169,31551], + [18171,8174], + [18173,62049], + [18175,27748], + [18177,66591], + [18179,27840], + [18181,24101], + [18183,33484], + [19001,7010], + [19003,3716], + [19005,13869], + [19007,12497], + [19009,5635], + [19011,25641], + [19013,132813], + [19015,26419], + [19017,24784], + [19019,21034], + [19021,20268], + [19023,14687], + [19025,9799], + [19027,20366], + [19029,13180], + [19031,18407], + [19033,43064], + [19035,11404], + [19037,12063], + [19039,9286], + [19041,16325], + [19043,17647], + [19045,47236], + [19047,17036], + [19049,84185], + [19051,8901], + [19053,8045], + [19055,17269], + [19057,39625], + [19059,17104], + [19061,96704], + [19063,9558], + [19065,19986], + [19067,15835], + [19069,10200], + [19071,6960], + [19073,9009], + [19075,12297], + [19077,10650], + [19079,15100], + [19081,10893], + [19083,17193], + [19085,14072], + [19087,19801], + [19089,9272], + [19091,9531], + [19093,6957], + [19095,16184], + [19097,19390], + [19099,36661], + [19101,18172], + [19103,146633], + [19105,20384], + [19107,10177], + [19109,15133], + [19111,34456], + [19113,221900], + [19115,11188], + [19117,8556], + [19119,11788], + [19121,15794], + [19123,22206], + [19125,33149], + [19127,40160], + [19129,15044], + [19131,10657], + [19133,8799], + [19135,7853], + [19137,10134], + [19139,42904], + [19141,13921], + [19143,6084], + [19145,15335], + [19147,9042], + [19149,25205], + [19151,6848], + [19153,474768], + [19155,93508], + [19157,18292], + [19159,4989], + [19161,9818], + [19163,172045], + [19165,11672], + [19167,34891], + [19169,96816], + [19171,17179], + [19173,6237], + [19175,12390], + [19177,7255], + [19179,35270], + [19181,49343], + [19183,22109], + [19185,6437], + [19187,36752], + [19189,10601], + [19191,20409], + [19193,102707], + [19195,7475], + [19197,12816], + [20001,12647], + [20003,7814], + [20005,16373], + [20007,4682], + [20009,26911], + [20011,14672], + [20013,9642], + [20015,66648], + [20017,2644], + [20019,3385], + [20021,20220], + [20023,2671], + [20025,2065], + [20027,8079], + [20029,9100], + [20031,8348], + [20033,1851], + [20035,35621], + [20037,38992], + [20039,2837], + [20041,18981], + [20043,7729], + [20045,119492], + [20047,2900], + [20049,2511], + [20051,28823], + [20053,6311], + [20055,36998], + [20057,34501], + [20059,25547], + [20061,35208], + [20063,2630], + [20065,2568], + [20067,7685], + [20069,5980], + [20071,1280], + [20073,6132], + [20075,2629], + [20077,5680], + [20079,34774], + [20081,4038], + [20083,1833], + [20085,13259], + [20087,18856], + [20089,2888], + [20091,584716], + [20093,3900], + [20095,7414], + [20097,2504], + [20099,20330], + [20101,1600], + [20103,80115], + [20105,3077], + [20107,9626], + [20109,2812], + [20111,33400], + [20113,28402], + [20115,12022], + [20117,9801], + [20119,4251], + [20121,32963], + [20123,6186], + [20125,32867], + [20127,5556], + [20129,2800], + [20131,10100], + [20133,16058], + [20135,2956], + [20137,5506], + [20139,15789], + [20141,3624], + [20143,5919], + [20145,6742], + [20147,5393], + [20149,23593], + [20151,9572], + [20153,2501], + [20155,63040], + [20157,4651], + [20159,9809], + [20161,74548], + [20163,5120], + [20165,3074], + [20167,6990], + [20169,55070], + [20171,5011], + [20173,512641], + [20175,22756], + [20177,178154], + [20179,2482], + [20181,5945], + [20183,3678], + [20185,4200], + [20187,2100], + [20189,5655], + [20191,23203], + [20193,7811], + [20195,2863], + [20197,6890], + [20199,1505], + [20201,5568], + [20203,2131], + [20205,8693], + [20207,3195], + [20209,164418], + [21001,19379], + [21003,20729], + [21005,22144], + [21007,8057], + [21009,43789], + [21011,12271], + [21013,27192], + [21015,129154], + [21017,20057], + [21019,48196], + [21021,29888], + [21023,8350], + [21025,13189], + [21027,19954], + [21029,79209], + [21031,12701], + [21033,12619], + [21035,38772], + [21037,92034], + [21039,4816], + [21041,10599], + [21043,27246], + [21045,15761], + [21047,71735], + [21049,35889], + [21051,20683], + [21053,10220], + [21055,9163], + [21057,6736], + [21059,99844], + [21061,12068], + [21063,7507], + [21065,14345], + [21067,319052], + [21069,14506], + [21071,36969], + [21073,50241], + [21075,6180], + [21077,8728], + [21079,17398], + [21081,24908], + [21083,37148], + [21085,26140], + [21087,11001], + [21089,35795], + [21091,8737], + [21093,106893], + [21095,27016], + [21097,18588], + [21099,18527], + [21101,46244], + [21103,15853], + [21105,4612], + [21107,45708], + [21109,13373], + [21111,767335], + [21113,52255], + [21115,22870], + [21117,164596], + [21119,15510], + [21121,31324], + [21123,14033], + [21125,59990], + [21127,15846], + [21129,6598], + [21131,10439], + [21133,22749], + [21135,13475], + [21137,24346], + [21139,9215], + [21141,26657], + [21143,8083], + [21145,65342], + [21147,17555], + [21149,9342], + [21151,89537], + [21153,12674], + [21155,19143], + [21157,31273], + [21159,11947], + [21161,17158], + [21163,28014], + [21165,6446], + [21167,21393], + [21169,10010], + [21171,10579], + [21173,27661], + [21175,13235], + [21177,31064], + [21179,45512], + [21181,7063], + [21183,24196], + [21185,65336], + [21187,10663], + [21189,4495], + [21191,14576], + [21193,27165], + [21195,60443], + [21197,12295], + [21199,64014], + [21201,2135], + [21203,16871], + [21205,24402], + [21207,17770], + [21209,53416], + [21211,46592], + [21213,17985], + [21215,18239], + [21217,25437], + [21219,12362], + [21221,14313], + [21223,8627], + [21225,14792], + [21227,126341], + [21229,12130], + [21231,20753], + [21233,13174], + [21235,36103], + [21237,7215], + [21239,26091], + [22001,62800], + [22003,25686], + [22005,121488], + [22007,22755], + [22009,41040], + [22011,36998], + [22013,13806], + [22015,126252], + [22017,249145], + [22019,200632], + [22021,10071], + [22023,6886], + [22025,9910], + [22027,16164], + [22029,19994], + [22031,27211], + [22033,447731], + [22035,7249], + [22037,19523], + [22039,33710], + [22041,20364], + [22043,22297], + [22045,73077], + [22047,32917], + [22049,15847], + [22051,438485], + [22053,31370], + [22055,241746], + [22057,98617], + [22059,15052], + [22061,47647], + [22063,140080], + [22065,11485], + [22067,25914], + [22069,38995], + [22071,393021], + [22073,156937], + [22075,23327], + [22077,22156], + [22079,132097], + [22081,8634], + [22083,20452], + [22085,24093], + [22087,45814], + [22089,52864], + [22091,10439], + [22093,21432], + [22095,43480], + [22097,83703], + [22099,53809], + [22101,52174], + [22103,252772], + [22105,130623], + [22107,4677], + [22109,113123], + [22111,22609], + [22113,60214], + [22115,51621], + [22117,46424], + [22119,39795], + [22121,25937], + [22123,11128], + [22125,15325], + [22127,14533], + [23001,107269], + [23003,68116], + [23005,290905], + [23007,30071], + [23009,54398], + [23011,121328], + [23013,39655], + [23015,33993], + [23017,57096], + [23019,151515], + [23021,16876], + [23023,35133], + [23025,50663], + [23027,39425], + [23029,31566], + [23031,202223], + [24001,72194], + [24003,568916], + [24005,831431], + [24009,91099], + [24011,32887], + [24013,167140], + [24015,102701], + [24017,157430], + [24019,32267], + [24021,247881], + [24023,29344], + [24025,250439], + [24027,316966], + [24029,19654], + [24031,1048332], + [24033,911154], + [24035,49178], + [24037,111835], + [24039,25833], + [24041,37204], + [24043,149810], + [24045,102585], + [24047,51514], + [24510,616958], + [25001,213440], + [25003,126858], + [25005,558312], + [25007,17312], + [25009,780633], + [25011,70618], + [25013,469003], + [25015,161658], + [25017,1594314], + [25019,11089], + [25021,696818], + [25023,511820], + [25025,791165], + [25027,820681], + [26001,10383], + [26003,9115], + [26005,114955], + [26007,28657], + [26009,23066], + [26011,15127], + [26013,8536], + [26015,59712], + [26017,104481], + [26019,17524], + [26021,154157], + [26023,43457], + [26025,134178], + [26027,51209], + [26029,26122], + [26031,25404], + [26033,37696], + [26035,30406], + [26037,77530], + [26039,13739], + [26041,36225], + [26043,25515], + [26045,108847], + [26047,32916], + [26049,408607], + [26051,25144], + [26053,15349], + [26055,91914], + [26057,40932], + [26059,45767], + [26061,36287], + [26063,31451], + [26065,287933], + [26067,64182], + [26069,25271], + [26071,11182], + [26073,71133], + [26075,158215], + [26077,261056], + [26079,17300], + [26081,642909], + [26083,2139], + [26085,11861], + [26087,88141], + [26089,21493], + [26091,98510], + [26093,188358], + [26095,6341], + [26097,10694], + [26099,867503], + [26101,24438], + [26103,66461], + [26105,28846], + [26107,43172], + [26109,23221], + [26111,83433], + [26113,15032], + [26115,149223], + [26117,62963], + [26119,9206], + [26121,173102], + [26123,47788], + [26125,1245762], + [26127,26281], + [26129,20902], + [26131,5931], + [26133,23171], + [26135,8262], + [26137,24385], + [26139,283242], + [26141,12725], + [26143,23847], + [26145,192285], + [26147,159507], + [26149,60832], + [26151,41392], + [26153,7990], + [26155,68541], + [26157,53235], + [26159,75201], + [26161,364752], + [26163,1756598], + [26165,33090], + [27001,15776], + [27003,347095], + [27005,33752], + [27007,46011], + [27009,39468], + [27011,5012], + [27013,66244], + [27015,25262], + [27017,35544], + [27019,100327], + [27021,29000], + [27023,12036], + [27025,54600], + [27027,62858], + [27029,8861], + [27031,5311], + [27033,11396], + [27035,63771], + [27037,417421], + [27039,20547], + [27041,37173], + [27043,13855], + [27045,20919], + [27047,30403], + [27049,46240], + [27051,5931], + [27053,1237027], + [27055,18719], + [27057,20719], + [27059,38764], + [27061,45149], + [27063,9942], + [27065,15882], + [27067,42622], + [27069,4318], + [27071,12618], + [27073,6743], + [27075,10516], + [27077,3796], + [27079,27714], + [27081,5708], + [27083,25861], + [27085,35748], + [27087,5494], + [27089,9371], + [27091,19890], + [27093,23099], + [27095,25614], + [27097,32920], + [27099,39329], + [27101,8300], + [27103,33656], + [27105,22016], + [27107,6538], + [27109,153183], + [27111,57981], + [27113,14251], + [27115,28877], + [27117,9193], + [27119,31635], + [27121,10961], + [27123,542812], + [27125,3996], + [27127,15236], + [27129,14580], + [27131,65588], + [27133,9413], + [27135,15559], + [27137,200018], + [27139,143438], + [27141,93236], + [27143,14792], + [27145,156571], + [27147,36703], + [27149,9747], + [27151,9444], + [27153,24404], + [27155,3322], + [27157,21447], + [27159,13566], + [27161,18828], + [27163,252976], + [27165,10911], + [27167,6345], + [27169,50872], + [27171,132387], + [27173,9892], + [28001,31440], + [28003,37240], + [28005,12430], + [28007,18566], + [28009,8265], + [28011,32634], + [28013,14563], + [28015,10211], + [28017,17234], + [28019,8316], + [28021,9129], + [28023,15896], + [28025,19840], + [28027,23820], + [28029,28605], + [28031,19188], + [28033,175545], + [28035,75637], + [28037,7724], + [28039,23715], + [28041,13482], + [28043,21219], + [28045,46647], + [28047,202639], + [28049,241818], + [28051,17960], + [28053,8594], + [28055,1322], + [28057,23403], + [28059,141550], + [28061,16591], + [28063,7322], + [28065,11464], + [28067,68181], + [28069,9954], + [28071,53479], + [28073,61230], + [28075,77228], + [28077,12803], + [28079,22737], + [28081,84816], + [28083,29727], + [28085,34404], + [28087,59460], + [28089,103875], + [28091,25113], + [28093,35780], + [28095,35908], + [28097,10259], + [28099,29439], + [28101,21385], + [28103,10914], + [28105,49579], + [28107,34160], + [28109,55072], + [28111,12076], + [28113,39608], + [28115,31437], + [28117,25394], + [28119,7404], + [28121,151074], + [28123,28378], + [28125,4534], + [28127,26980], + [28129,15971], + [28131,17951], + [28133,26389], + [28135,14383], + [28137,28246], + [28139,22045], + [28141,19460], + [28143,10156], + [28145,28325], + [28147,14570], + [28149,47041], + [28151,47191], + [28153,20450], + [28155,9777], + [28157,9008], + [28159,18360], + [28161,12489], + [28163,27206], + [29001,25223], + [29003,17339], + [29005,5310], + [29007,25875], + [29009,35339], + [29011,11859], + [29013,16371], + [29015,18921], + [29017,12204], + [29019,176555], + [29021,89354], + [29023,42789], + [29025,9070], + [29027,45077], + [29029,45009], + [29031,78390], + [29033,8854], + [29035,6207], + [29037,102780], + [29039,13886], + [29041,7529], + [29043,84159], + [29045,6731], + [29047,238762], + [29049,20530], + [29051,76775], + [29053,17683], + [29055,24232], + [29057,7606], + [29059,16380], + [29061,8233], + [29063,12505], + [29065,15425], + [29067,13352], + [29069,30556], + [29071,102754], + [29073,14750], + [29075,6637], + [29077,287881], + [29079,10080], + [29081,8590], + [29083,21617], + [29085,9374], + [29087,4479], + [29089,10062], + [29091,40140], + [29093,10147], + [29095,693115], + [29097,119298], + [29099,223413], + [29101,53651], + [29103,3945], + [29105,35427], + [29107,32542], + [29109,38224], + [29111,10083], + [29113,55186], + [29115,12140], + [29117,15138], + [29119,22767], + [29121,15143], + [29123,12231], + [29125,8874], + [29127,28667], + [29129,3658], + [29131,24994], + [29133,13737], + [29135,16007], + [29137,8637], + [29139,11477], + [29141,20099], + [29143,17890], + [29145,58219], + [29147,22492], + [29149,10739], + [29151,13596], + [29153,9187], + [29155,17102], + [29157,19201], + [29159,42280], + [29161,44828], + [29163,18504], + [29165,98653], + [29167,31412], + [29169,52611], + [29171,4831], + [29173,10228], + [29175,24970], + [29177,22721], + [29179,6370], + [29181,13781], + [29183,390795], + [29185,9293], + [29186,17880], + [29187,66393], + [29189,998216], + [29195,22852], + [29197,4491], + [29199,4908], + [29201,38723], + [29203,8244], + [29205,6051], + [29207,29483], + [29209,31534], + [29211,6343], + [29213,54749], + [29215,25852], + [29217,20554], + [29219,33815], + [29221,24832], + [29223,13207], + [29225,38065], + [29227,2028], + [29229,18275], + [29510,313144], + [30001,9444], + [30003,13371], + [30005,6657], + [30007,5788], + [30009,10498], + [30011,1177], + [30013,81488], + [30015,5794], + [30017,11821], + [30019,1734], + [30021,9243], + [30023,9069], + [30025,3091], + [30027,11300], + [30029,97693], + [30031,104072], + [30033,1308], + [30035,13669], + [30037,815], + [30039,3292], + [30041,16446], + [30043,11770], + [30045,1949], + [30047,29711], + [30049,66792], + [30051,2428], + [30053,19230], + [30055,1739], + [30057,7969], + [30059,1842], + [30061,4125], + [30063,115896], + [30065,4636], + [30067,16098], + [30069,498], + [30071,4116], + [30073,6028], + [30075,1752], + [30077,6848], + [30079,1166], + [30081,41876], + [30083,11408], + [30085,11219], + [30087,9265], + [30089,11466], + [30091,3596], + [30093,34467], + [30095,9367], + [30097,3628], + [30099,6012], + [30101,4961], + [30103,685], + [30105,7537], + [30107,2111], + [30109,1047], + [30111,157648], + [31001,31657], + [31003,6356], + [31005,470], + [31007,724], + [31009,469], + [31011,5358], + [31013,11192], + [31015,1980], + [31017,2984], + [31019,49382], + [31021,6547], + [31023,8005], + [31025,25594], + [31027,8595], + [31029,3954], + [31031,5829], + [31033,10066], + [31035,6149], + [31037,10659], + [31039,9001], + [31041,10837], + [31043,20401], + [31045,8912], + [31047,23823], + [31049,1868], + [31051,5744], + [31053,36567], + [31055,555894], + [31057,1815], + [31059,5640], + [31061,3012], + [31063,2650], + [31065,4771], + [31067,21609], + [31069,1911], + [31071,2001], + [31073,2023], + [31075,664], + [31077,2405], + [31079,61530], + [31081,9170], + [31083,3462], + [31085,891], + [31087,2844], + [31089,10235], + [31091,691], + [31093,6419], + [31095,7178], + [31097,5208], + [31099,6569], + [31101,8106], + [31103,795], + [31105,3684], + [31107,8501], + [31109,310548], + [31111,35474], + [31113,797], + [31115,616], + [31117,505], + [31119,34935], + [31121,7849], + [31123,4892], + [31125,3577], + [31127,6981], + [31129,4268], + [31131,15984], + [31133,2711], + [31135,2906], + [31137,9184], + [31139,7156], + [31141,32946], + [31143,5202], + [31145,10783], + [31147,7998], + [31149,1412], + [31151,14295], + [31153,178328], + [31155,20995], + [31157,36553], + [31159,17085], + [31161,5239], + [31163,3025], + [31165,1262], + [31167,5987], + [31169,5099], + [31171,722], + [31173,7140], + [31175,4181], + [31177,20568], + [31179,9453], + [31181,3582], + [31183,803], + [31185,13761], + [32001,24016], + [32003,2156724], + [32005,47947], + [32007,52283], + [32009,828], + [32011,1940], + [32013,16873], + [32015,5765], + [32017,5178], + [32019,52854], + [32021,4396], + [32023,43399], + [32027,6606], + [32029,3989], + [32031,452429], + [32033,9744], + [32510,54283], + [33001,60606], + [33003,47399], + [33005,75697], + [33007,31923], + [33009,89311], + [33011,407718], + [33013,148133], + [33015,303922], + [33017,127270], + [33019,43036], + [34001,270830], + [34003,942387], + [34005,448342], + [34007,510741], + [34009,93920], + [34011,153914], + [34013,803876], + [34015,291703], + [34017,686391], + [34019,125061], + [34021,373660], + [34023,839986], + [34025,626782], + [34027,498844], + [34029,592944], + [34031,511265], + [34033,63158], + [34035,334373], + [34037,142288], + [34039,561106], + [34041,106845], + [35001,675588], + [35003,3532], + [35005,65371], + [35006,26996], + [35007,12262], + [35009,50168], + [35011,1841], + [35013,213874], + [35015,57456], + [35017,28033], + [35019,4372], + [35021,692], + [35023,4330], + [35025,69850], + [35027,19294], + [35028,18152], + [35029,24288], + [35031,72958], + [35033,4547], + [35035,65184], + [35037,8381], + [35039,39158], + [35041,19082], + [35043,140224], + [35045,127772], + [35047,27956], + [35049,147943], + [35051,11134], + [35053,16919], + [35055,32857], + [35057,15426], + [35059,4153], + [35061,75639], + [36001,309080], + [36003,47110], + [36005,1468976], + [36007,194830], + [36009,77761], + [36011,77757], + [36013,129638], + [36015,86040], + [36017,48323], + [36019,80973], + [36021,61010], + [36023,47934], + [36025,45425], + [36027,294567], + [36029,923116], + [36031,38014], + [36033,51139], + [36035,53696], + [36037,58163], + [36039,47516], + [36041,4566], + [36043,62479], + [36045,114084], + [36047,2650859], + [36049,26646], + [36051,64202], + [36053,71389], + [36055,747326], + [36057,49266], + [36059,1365857], + [36061,1662164], + [36063,211798], + [36065,231273], + [36067,466635], + [36069,109586], + [36071,379915], + [36073,41292], + [36075,118907], + [36077,60343], + [36079,99107], + [36081,2356044], + [36083,159736], + [36085,477383], + [36087,326875], + [36089,109989], + [36091,227560], + [36093,154972], + [36095,31453], + [36097,17998], + [36099,34781], + [36101,96830], + [36103,1494334], + [36105,75370], + [36107,48778], + [36109,104561], + [36111,179546], + [36113,64519], + [36115,61806], + [36117,90924], + [36119,978604], + [36121,40439], + [36123,25022], + [37001,159325], + [37003,37270], + [37005,10945], + [37007,25119], + [37009,26754], + [37011,17500], + [37013,47361], + [37015,19449], + [37017,33796], + [37019,126353], + [37021,255334], + [37023,88802], + [37025,201573], + [37027,81787], + [37029,10423], + [37031,68855], + [37033,22742], + [37035,156647], + [37037,69824], + [37039,27883], + [37041,14240], + [37043,10819], + [37045,97102], + [37047,56335], + [37049,102857], + [37051,333538], + [37053,25664], + [37055,35760], + [37057,164504], + [37059,41973], + [37061,59559], + [37063,307090], + [37065,53293], + [37067,371614], + [37069,64659], + [37071,216903], + [37073,11593], + [37075,8548], + [37077,58824], + [37079,21144], + [37081,521996], + [37083,51871], + [37085,130899], + [37087,60388], + [37089,113758], + [37091,24096], + [37093,53108], + [37095,5476], + [37097,172529], + [37099,42268], + [37101,191094], + [37103,9625], + [37105,59746], + [37107,57432], + [37109,81075], + [37111,44989], + [37113,34309], + [37115,21434], + [37117,23081], + [37119,1057237], + [37121,15068], + [37123,27438], + [37125,95392], + [37127,94008], + [37129,223234], + [37131,20166], + [37133,192199], + [37135,142723], + [37137,12799], + [37139,39615], + [37141,58897], + [37143,13427], + [37145,39283], + [37147,177627], + [37149,20421], + [37151,143209], + [37153,45054], + [37155,133514], + [37157,91359], + [37159,139529], + [37161,66305], + [37163,63363], + [37165,35250], + [37167,60880], + [37169,45891], + [37171,72049], + [37173,14187], + [37175,33471], + [37177,4039], + [37179,226540], + [37181,44426], + [37183,1049143], + [37185,19889], + [37187,12132], + [37189,54099], + [37191,124476], + [37193,68634], + [37195,81433], + [37197,37726], + [37199,17622], + [38001,2348], + [38003,10929], + [38005,6851], + [38007,953], + [38009,6579], + [38011,3230], + [38013,2227], + [38015,94429], + [38017,174625], + [38019,3810], + [38021,4995], + [38023,2389], + [38025,4373], + [38027,2288], + [38029,3335], + [38031,3310], + [38033,1861], + [38035,70596], + [38037,2396], + [38039,2262], + [38041,2599], + [38043,2463], + [38045,4114], + [38047,1932], + [38049,5988], + [38051,2604], + [38053,12616], + [38055,9665], + [38057,8637], + [38059,30615], + [38061,10245], + [38063,2901], + [38065,1898], + [38067,7063], + [38069,4213], + [38071,11514], + [38073,5373], + [38075,2523], + [38077,16338], + [38079,14667], + [38081,3890], + [38083,1347], + [38085,4455], + [38087,784], + [38089,30856], + [38091,1913], + [38093,21009], + [38095,2247], + [38097,8025], + [38099,10862], + [38101,70153], + [38103,4058], + [38105,34195], + [39001,27832], + [39003,103626], + [39005,53417], + [39007,98169], + [39009,66320], + [39011,45797], + [39013,68568], + [39015,43644], + [39017,377933], + [39019,27637], + [39021,38737], + [39023,134621], + [39025,203016], + [39027,41881], + [39029,103744], + [39031,36644], + [39033,42037], + [39035,1253454], + [39037,51636], + [39039,38121], + [39041,196777], + [39043,74944], + [39045,152681], + [39047,28662], + [39049,1269998], + [39051,42325], + [39053,29996], + [39055,93848], + [39057,165109], + [39059,39200], + [39061,810087], + [39063,75590], + [39065,31407], + [39067,15257], + [39069,27269], + [39071,42993], + [39073,28386], + [39075,43832], + [39077,58391], + [39079,32534], + [39081,66914], + [39083,60832], + [39085,229270], + [39087,60729], + [39089,171822], + [39091,45171], + [39093,306590], + [39095,432562], + [39097,43354], + [39099,230169], + [39101,65334], + [39103,176903], + [39105,23177], + [39107,40710], + [39109,104382], + [39111,14097], + [39113,531395], + [39115,14762], + [39117,34954], + [39119,85929], + [39121,14443], + [39123,40495], + [39125,18839], + [39127,36019], + [39129,57530], + [39131,28237], + [39133,162162], + [39135,41105], + [39137,34016], + [39139,121167], + [39141,76910], + [39143,59281], + [39145,76240], + [39147,55357], + [39149,48726], + [39151,373528], + [39153,540394], + [39155,201701], + [39157,92485], + [39159,55456], + [39161,28166], + [39163,13021], + [39165,226476], + [39167,60535], + [39169,116422], + [39171,36921], + [39173,129704], + [39175,22042], + [40001,22111], + [40003,5914], + [40005,13925], + [40007,5400], + [40009,22432], + [40011,9571], + [40013,45492], + [40015,29542], + [40017,136303], + [40019,48359], + [40021,48751], + [40023,14915], + [40025,2170], + [40027,277670], + [40029,5642], + [40031,121398], + [40033,5913], + [40035,14460], + [40037,71038], + [40039,29045], + [40041,41880], + [40043,4886], + [40045,4083], + [40047,62384], + [40049,27942], + [40051,54727], + [40053,4453], + [40055,5965], + [40057,2693], + [40059,3794], + [40061,12646], + [40063,13422], + [40065,25397], + [40067,6250], + [40069,11091], + [40071,44983], + [40073,15566], + [40075,9028], + [40077,10562], + [40079,49842], + [40081,34954], + [40083,46002], + [40085,9978], + [40087,38599], + [40089,32919], + [40091,19759], + [40093,7741], + [40095,16249], + [40097,40972], + [40099,13862], + [40101,69046], + [40103,11364], + [40105,10401], + [40107,12107], + [40109,784208], + [40111,39104], + [40113,47317], + [40115,31523], + [40117,16505], + [40119,81249], + [40121,44395], + [40123,38443], + [40125,71982], + [40127,11064], + [40129,3690], + [40131,90951], + [40133,25164], + [40135,41364], + [40137,43993], + [40139,21131], + [40141,7530], + [40143,645042], + [40145,77508], + [40147,51914], + [40149,11474], + [40151,9134], + [40153,20924], + [41001,15948], + [41003,89296], + [41005,406680], + [41007,38637], + [41009,50886], + [41011,63375], + [41013,22344], + [41015,22588], + [41017,180675], + [41019,108100], + [41021,1859], + [41023,7184], + [41025,7261], + [41027,23064], + [41029,214706], + [41031,23119], + [41033,85338], + [41035,66283], + [41037,7820], + [41039,368283], + [41041,47897], + [41043,122700], + [41045,30393], + [41047,335766], + [41049,11219], + [41051,801539], + [41053,81442], + [41055,1717], + [41057,26209], + [41059,76649], + [41061,26043], + [41063,6916], + [41065,25871], + [41067,582739], + [41069,1326], + [41071,104117], + [42001,101684], + [42003,1227553], + [42005,66132], + [42007,167123], + [42009,48652], + [42011,415732], + [42013,123927], + [42015,60986], + [42017,626751], + [42019,186207], + [42021,134313], + [42023,4683], + [42025,63515], + [42027,162083], + [42029,516489], + [42031,38558], + [42033,80035], + [42035,38985], + [42037,66152], + [42039,86505], + [42041,247901], + [42043,274121], + [42045,563995], + [42047,30423], + [42049,276321], + [42051,132392], + [42053,7306], + [42055,153564], + [42057,14617], + [42059,37158], + [42061,45503], + [42063,85256], + [42065,43955], + [42067,24475], + [42069,210872], + [42071,539137], + [42073,87631], + [42075,138557], + [42077,363113], + [42079,316801], + [42081,114708], + [42083,41518], + [42085,112673], + [42087,46316], + [42089,166516], + [42091,820656], + [42093,18230], + [42095,301760], + [42097,92479], + [42099,45986], + [42101,1574765], + [42103,55191], + [42105,16925], + [42107,143335], + [42109,40667], + [42111,75070], + [42113,6089], + [42115,41238], + [42117,41227], + [42119,45440], + [42121,52469], + [42123,39998], + [42125,207341], + [42127,51230], + [42129,354788], + [42131,27498], + [42133,443809], + [44001,48878], + [44003,163690], + [44005,83495], + [44007,635522], + [44009,125981], + [45001,24717], + [45003,166922], + [45005,9059], + [45007,195968], + [45009,14530], + [45011,21591], + [45013,183497], + [45015,211863], + [45017,14751], + [45019,396570], + [45021,56725], + [45023,32280], + [45025,46170], + [45027,34239], + [45029,37599], + [45031,67370], + [45033,30817], + [45035,153471], + [45037,26580], + [45039,22630], + [45041,138448], + [45043,61374], + [45045,499034], + [45047,70172], + [45049,19874], + [45051,321440], + [45053,28071], + [45055,64269], + [45057,89855], + [45059,66571], + [45061,17607], + [45063,286394], + [45065,9569], + [45067,31753], + [45069,27036], + [45071,38044], + [45073,76407], + [45075,88334], + [45077,122939], + [45079,409104], + [45081,20295], + [45083,301066], + [45085,107287], + [45087,27685], + [45089,31847], + [45091,257998], + [46003,2750], + [46005,18087], + [46007,3447], + [46009,6968], + [46011,34057], + [46013,38918], + [46015,5213], + [46017,2032], + [46019,10127], + [46021,1388], + [46023,9382], + [46025,3640], + [46027,13938], + [46029,28033], + [46031,4125], + [46033,8616], + [46035,19831], + [46037,5514], + [46039,4238], + [46041,5774], + [46043,2910], + [46045,3938], + [46047,6769], + [46049,2325], + [46051,7095], + [46053,4171], + [46055,1883], + [46057,5878], + [46059,3282], + [46061,3390], + [46063,1265], + [46065,17577], + [46067,7338], + [46069,1339], + [46071,3297], + [46073,2005], + [46075,935], + [46077,4977], + [46079,12605], + [46081,25183], + [46083,54572], + [46085,3920], + [46087,5481], + [46089,2422], + [46091,4790], + [46093,27360], + [46095,2081], + [46097,2241], + [46099,186051], + [46101,6556], + [46102,14392], + [46103,108903], + [46105,2966], + [46107,2270], + [46109,10222], + [46111,2378], + [46115,6404], + [46117,3024], + [46119,1419], + [46121,10099], + [46123,5490], + [46125,8268], + [46127,14992], + [46129,5501], + [46135,22626], + [46137,2874], + [47001,75585], + [47003,47420], + [47005,16059], + [47007,14599], + [47009,128244], + [47011,104407], + [47013,39671], + [47015,13907], + [47017,27924], + [47019,56458], + [47021,39728], + [47023,17102], + [47025,31561], + [47027,7688], + [47029,35160], + [47031,54428], + [47033,14467], + [47035,58532], + [47037,688901], + [47039,11711], + [47041,19442], + [47043,51922], + [47045,37605], + [47047,39575], + [47049,17955], + [47051,41567], + [47053,49103], + [47055,29140], + [47057,23112], + [47059,68559], + [47061,13279], + [47063,63717], + [47065,358061], + [47067,6597], + [47069,25476], + [47071,25759], + [47073,56366], + [47075,17803], + [47077,27793], + [47079,32245], + [47081,24649], + [47083,8118], + [47085,18381], + [47087,11602], + [47089,53157], + [47091,17777], + [47093,456114], + [47095,7530], + [47097,25350], + [47099,42979], + [47101,11912], + [47103,33528], + [47105,51275], + [47107,52659], + [47109,25810], + [47111,23455], + [47113,97514], + [47115,28321], + [47117,31973], + [47119,89588], + [47121,11948], + [47123,45967], + [47125,194795], + [47127,6293], + [47129,21724], + [47131,30526], + [47133,21978], + [47135,7892], + [47137,5085], + [47139,16770], + [47141,76123], + [47143,32392], + [47145,52913], + [47147,69177], + [47149,307683], + [47151,21892], + [47153,14740], + [47155,96609], + [47157,937130], + [47159,19466], + [47161,13174], + [47163,156335], + [47165,179108], + [47167,61176], + [47169,9950], + [47171,17665], + [47173,19232], + [47175,5716], + [47177,40400], + [47179,127220], + [47181,16665], + [47183,33568], + [47185,26451], + [47187,218888], + [47189,132433], + [48001,57558], + [48003,17837], + [48005,87830], + [48007,25275], + [48009,8774], + [48011,1856], + [48013,48666], + [48015,29637], + [48017,7180], + [48019,21710], + [48021,82754], + [48023,3638], + [48025,32835], + [48027,341203], + [48029,1927747], + [48031,11341], + [48033,660], + [48035,18010], + [48037,93881], + [48039,353828], + [48041,219561], + [48043,9193], + [48045,1486], + [48047,7263], + [48049,38065], + [48051,17811], + [48053,45914], + [48055,41108], + [48057,21942], + [48059,13777], + [48061,421766], + [48063,12775], + [48065,6107], + [48067,30080], + [48069,7823], + [48071,40283], + [48073,51896], + [48075,7095], + [48077,10242], + [48079,2911], + [48081,3263], + [48083,8421], + [48085,942453], + [48087,3028], + [48089,21027], + [48091,134142], + [48093,13521], + [48095,4273], + [48097,39244], + [48099,74943], + [48101,1404], + [48103,4807], + [48105,3653], + [48107,5917], + [48109,2219], + [48111,7256], + [48113,2587462], + [48115,13042], + [48117,18850], + [48119,5146], + [48121,808299], + [48123,20618], + [48125,2201], + [48127,10784], + [48129,3392], + [48131,11449], + [48133,18303], + [48135,157580], + [48137,1918], + [48139,168381], + [48141,837147], + [48143,41443], + [48145,17331], + [48147,33855], + [48149,25070], + [48151,3881], + [48153,5876], + [48155,1211], + [48157,741958], + [48159,10659], + [48161,19647], + [48163,19385], + [48165,20481], + [48167,329306], + [48169,6444], + [48171,26305], + [48173,1350], + [48175,7521], + [48177,20863], + [48179,22738], + [48181,128206], + [48183,123594], + [48185,27574], + [48187,154596], + [48189,34209], + [48191,3112], + [48193,8231], + [48195,5532], + [48197,3991], + [48199,56261], + [48201,4617041], + [48203,66730], + [48205,5706], + [48207,5765], + [48209,204345], + [48211,4126], + [48213,80034], + [48215,850187], + [48217,35171], + [48219,23103], + [48221,56758], + [48223,36203], + [48225,22888], + [48227,36618], + [48229,4073], + [48231,91939], + [48233,21570], + [48235,1570], + [48237,8766], + [48239,14851], + [48241,35401], + [48243,2245], + [48245,255954], + [48247,5244], + [48249,41115], + [48251,162915], + [48253,19994], + [48255,15264], + [48257,118046], + [48259,41964], + [48261,428], + [48263,752], + [48265,51296], + [48267,4428], + [48269,294], + [48271,3640], + [48273,31347], + [48275,3740], + [48277,49565], + [48279,13223], + [48281,20657], + [48283,7619], + [48285,19910], + [48287,16998], + [48289,17196], + [48291,81377], + [48293,23527], + [48295,3509], + [48297,12022], + [48299,20570], + [48301,115], + [48303,302301], + [48305,5795], + [48307,8121], + [48309,247478], + [48311,815], + [48313,14094], + [48315,10087], + [48317,5688], + [48319,4161], + [48321,37117], + [48323,57989], + [48325,49196], + [48327,2102], + [48329,163473], + [48331,24735], + [48333,4894], + [48335,8479], + [48337,19436], + [48339,554522], + [48341,21935], + [48343,12490], + [48345,1172], + [48347,65662], + [48349,48375], + [48351,14186], + [48353,14968], + [48355,361529], + [48357,10295], + [48359,2074], + [48361,84508], + [48363,28132], + [48365,23440], + [48367,128861], + [48369,9818], + [48371,15877], + [48373,47735], + [48375,120542], + [48377,7166], + [48379,11307], + [48381,132457], + [48383,3738], + [48385,3397], + [48387,12217], + [48389,15069], + [48391,7293], + [48393,916], + [48395,16858], + [48397,93419], + [48399,10255], + [48401,52856], + [48403,10385], + [48405,8283], + [48407,27757], + [48409,67262], + [48411,5872], + [48413,3064], + [48415,17430], + [48417,3364], + [48419,25777], + [48421,3075], + [48423,225305], + [48425,8680], + [48427,63931], + [48429,9408], + [48431,1351], + [48433,1402], + [48435,3865], + [48437,7440], + [48439,2021746], + [48441,135962], + [48443,818], + [48445,12826], + [48447,1548], + [48449,32615], + [48451,117792], + [48453,1204582], + [48455,14513], + [48457,21434], + [48459,40864], + [48461,3697], + [48463,27106], + [48465,48953], + [48467,54377], + [48469,92379], + [48471,71701], + [48473,50058], + [48475,11589], + [48477,34821], + [48479,272401], + [48481,41634], + [48483,5548], + [48485,131310], + [48487,12894], + [48489,21760], + [48491,527769], + [48493,48190], + [48495,7872], + [48497,64465], + [48499,43823], + [48501,8625], + [48503,18079], + [48505,14449], + [48507,12091], + [49001,6454], + [49003,52974], + [49005,122342], + [49007,20371], + [49009,1081], + [49011,341329], + [49013,20315], + [49015,10222], + [49017,5000], + [49019,9656], + [49021,49796], + [49023,11003], + [49025,7326], + [49027,12682], + [49029,11373], + [49031,1463], + [49033,2306], + [49035,1121379], + [49037,15329], + [49039,29303], + [49041,21147], + [49043,40390], + [49045,64599], + [49047,36194], + [49049,590475], + [49051,30571], + [49053,159237], + [49055,2685], + [49057,247319], + [50001,36844], + [50003,35854], + [50005,30167], + [50007,161522], + [50009,6240], + [50011,48974], + [50013,6933], + [50015,25274], + [50017,28917], + [50019,26751], + [50021,59172], + [50023,58365], + [50025,43147], + [50027,55194], + [51001,32818], + [51003,106419], + [51005,15372], + [51007,12830], + [51009,31667], + [51011,15505], + [51013,231610], + [51015,74774], + [51017,4413], + [51019,77828], + [51021,6475], + [51023,33150], + [51025,16275], + [51027,22102], + [51029,17060], + [51031,55180], + [51033,30071], + [51035,29699], + [51036,7023], + [51037,12130], + [51041,338815], + [51043,14322], + [51045,5140], + [51047,50333], + [51049,9742], + [51051,15040], + [51053,28025], + [51057,11096], + [51059,1144636], + [51061,68784], + [51063,15658], + [51065,26169], + [51067,56159], + [51069,84684], + [51071,16887], + [51073,37101], + [51075,22475], + [51077,15869], + [51079,19331], + [51081,11551], + [51083,34964], + [51085,104347], + [51087,326147], + [51089,51604], + [51091,2212], + [51093,36324], + [51095,74069], + [51097,7067], + [51099,25918], + [51101,16412], + [51103,10778], + [51105,24051], + [51107,386279], + [51109,35276], + [51111,12266], + [51113,13108], + [51115,8806], + [51117,30786], + [51119,10768], + [51121,98440], + [51125,14895], + [51127,21030], + [51131,12006], + [51133,12195], + [51135,15510], + [51137,35481], + [51139,23591], + [51141,17769], + [51143,61673], + [51145,28398], + [51147,23023], + [51149,37807], + [51153,456560], + [51155,34240], + [51157,7333], + [51159,8784], + [51161,93363], + [51163,22411], + [51165,79298], + [51167,27394], + [51169,22028], + [51171,42928], + [51173,31075], + [51175,18019], + [51177,131405], + [51179,143477], + [51181,6570], + [51183,11426], + [51185,42046], + [51187,39066], + [51191,54237], + [51193,17659], + [51195,39034], + [51197,28942], + [51199,67742], + [51510,157288], + [51520,16927], + [51530,6384], + [51540,47286], + [51550,237621], + [51570,17642], + [51580,5582], + [51590,41643], + [51595,5375], + [51600,23827], + [51610,13868], + [51620,8228], + [51630,28271], + [51640,6664], + [51650,135332], + [51660,53943], + [51670,22619], + [51678,7087], + [51680,79912], + [51683,41457], + [51685,16085], + [51690,13119], + [51700,180388], + [51710,245532], + [51720,3988], + [51730,31850], + [51735,11947], + [51740,94997], + [51750,17410], + [51760,225288], + [51770,99743], + [51775,25547], + [51790,24257], + [51800,89294], + [51810,451404], + [51820,21802], + [51830,14952], + [51840,27566], + [53001,19262], + [53003,22310], + [53005,193484], + [53007,75968], + [53009,74098], + [53011,465548], + [53013,3997], + [53015,104756], + [53017,41272], + [53019,7542], + [53021,90315], + [53023,2257], + [53025,93904], + [53027,71625], + [53029,81638], + [53031,30909], + [53033,2155962], + [53035,263109], + [53037,44928], + [53039,21306], + [53041,76630], + [53043,10333], + [53045,62123], + [53047,41479], + [53049,21209], + [53051,13126], + [53053,859752], + [53055,16296], + [53057,123390], + [53059,11593], + [53061,786946], + [53063,497437], + [53065,44214], + [53067,273923], + [53069,4176], + [53071,59992], + [53073,216274], + [53075,48528], + [53077,249323], + [54001,16720], + [54003,113270], + [54005,22795], + [54007,14341], + [54009,22707], + [54011,95669], + [54013,7367], + [54015,8843], + [54017,8583], + [54019,44102], + [54021,8128], + [54023,11643], + [54025,35494], + [54027,23343], + [54029,29621], + [54031,13731], + [54033,68280], + [54035,29172], + [54037,55848], + [54039,186097], + [54041,16292], + [54043,21096], + [54045,33644], + [54047,19139], + [54049,56477], + [54051,31705], + [54053,26909], + [54055,60494], + [54057,27322], + [54059,24677], + [54061,104771], + [54063,13477], + [54065,17583], + [54067,25291], + [54069,42598], + [54071,6987], + [54073,7512], + [54075,8518], + [54077,33711], + [54079,56692], + [54081,76259], + [54083,28962], + [54085,9942], + [54087,14128], + [54089,13004], + [54091,16947], + [54093,7041], + [54095,8958], + [54097,24610], + [54099,40680], + [54101,8575], + [54103,15641], + [54105,5770], + [54107,85718], + [54109,21753], + [55001,19997], + [55003,15634], + [55005,45267], + [55007,14940], + [55009,259586], + [55011,13160], + [55013,15229], + [55015,49648], + [55017,63567], + [55019,34558], + [55021,56893], + [55023,16280], + [55025,530257], + [55027,87428], + [55029,27348], + [55031,43392], + [55033,44327], + [55035,102885], + [55037,4334], + [55039,102210], + [55041,9020], + [55043,51993], + [55045,36812], + [55047,18623], + [55049,23470], + [55051,5665], + [55053,20472], + [55055,84545], + [55057,26359], + [55059,167869], + [55061,20384], + [55063,117723], + [55065,16776], + [55067,19086], + [55069,27854], + [55071,79331], + [55073,135195], + [55075,40289], + [55077,15137], + [55078,4537], + [55079,955369], + [55081,45356], + [55083,37471], + [55085,35374], + [55087,184654], + [55089,88177], + [55091,7266], + [55093,41428], + [55095,43297], + [55097,70188], + [55099,13424], + [55101,195010], + [55103,17520], + [55105,161421], + [55107,14092], + [55109,87645], + [55111,63604], + [55113,16348], + [55115,40941], + [55117,115127], + [55119,20275], + [55121,29624], + [55123,30543], + [55125,21464], + [55127,102775], + [55129,15610], + [55131,134372], + [55133,398225], + [55135,51354], + [55137,24132], + [55139,169555], + [55141,73196], + [56001,37987], + [56003,11941], + [56005,48800], + [56007,15727], + [56009,14127], + [56011,7497], + [56013,40245], + [56015,13355], + [56017,4669], + [56019,8496], + [56021,97968], + [56023,19076], + [56025,80892], + [56027,2470], + [56029,29412], + [56031,8675], + [56033,30049], + [56035,10002], + [56037,44245], + [56039,23180], + [56041,20711], + [56043,8188], + [56045,7198] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2017.json b/data/regional/united-states/demographics/population/us-population-2017.json new file mode 100644 index 0000000..4a4ae30 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "Population in the year 2017.", + "units" : "people", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2017"], + [1001,55504], + [1003,212628], + [1005,25270], + [1007,22668], + [1009,58013], + [1011,10309], + [1013,19825], + [1015,114728], + [1017,33713], + [1019,25857], + [1021,44067], + [1023,12945], + [1025,24083], + [1027,13367], + [1029,14900], + [1031,51874], + [1033,54500], + [1035,12469], + [1037,10754], + [1039,37092], + [1041,13871], + [1043,82755], + [1045,49226], + [1047,39215], + [1049,71617], + [1051,81677], + [1053,37447], + [1055,102755], + [1057,16468], + [1059,31495], + [1061,26421], + [1063,8330], + [1065,14812], + [1067,17147], + [1069,104346], + [1071,51909], + [1073,659197], + [1075,13946], + [1077,92538], + [1079,33049], + [1081,161604], + [1083,94402], + [1085,10076], + [1087,18755], + [1089,361046], + [1091,19375], + [1093,29833], + [1095,95548], + [1097,413955], + [1099,21327], + [1101,226646], + [1103,118818], + [1105,9339], + [1107,20176], + [1109,33267], + [1111,22670], + [1113,57045], + [1115,88199], + [1117,213605], + [1119,12687], + [1121,80065], + [1123,40681], + [1125,207811], + [1127,64058], + [1129,16531], + [1131,10719], + [1133,23722], + [2013,3370], + [2016,5763], + [2020,294356], + [2050,18076], + [2060,867], + [2068,2074], + [2070,4932], + [2090,99703], + [2100,2526], + [2105,"NA"], + [2110,32094], + [2122,58617], + [2130,13856], + [2150,13448], + [2158,8202], + [2164,1620], + [2170,106532], + [2180,9921], + [2185,9782], + [2188,7684], + [2195,3281], + [2198,6443], + [2220,8689], + [2230,"NA"], + [2240,6888], + [2261,9278], + [2275,"NA"], + [2282,605], + [2290,5365], + [4001,71606], + [4003,124756], + [4005,140776], + [4007,53501], + [4009,37466], + [4011,9455], + [4012,20601], + [4013,4307033], + [4015,207200], + [4017,108956], + [4019,1022769], + [4021,430237], + [4023,46212], + [4025,228168], + [4027,207534], + [5001,17967], + [5003,20283], + [5005,41355], + [5007,266300], + [5009,37381], + [5011,10864], + [5013,5247], + [5015,27944], + [5017,10636], + [5019,22293], + [5021,14920], + [5023,25048], + [5025,8202], + [5027,23627], + [5029,20916], + [5031,107115], + [5033,62996], + [5035,48750], + [5037,16863], + [5039,7393], + [5041,11764], + [5043,18547], + [5045,123654], + [5047,17890], + [5049,12055], + [5051,98658], + [5053,18165], + [5055,45053], + [5057,21861], + [5059,33574], + [5061,13478], + [5063,37504], + [5065,13686], + [5067,17135], + [5069,69115], + [5071,26552], + [5073,6862], + [5075,16525], + [5077,9176], + [5079,13646], + [5081,12359], + [5083,21722], + [5085,72898], + [5087,16339], + [5089,16428], + [5091,43984], + [5093,42159], + [5095,7085], + [5097,8919], + [5099,8327], + [5101,7828], + [5103,23868], + [5105,10348], + [5107,18572], + [5109,10726], + [5111,24154], + [5113,20118], + [5115,63835], + [5117,8248], + [5119,393956], + [5121,17557], + [5123,25930], + [5125,119323], + [5127,10445], + [5129,7938], + [5131,128107], + [5133,17115], + [5135,17393], + [5137,12537], + [5139,39449], + [5141,16506], + [5143,231996], + [5145,79016], + [5147,6571], + [5149,21523], + [6001,1663190], + [6003,1120], + [6005,38626], + [6007,229294], + [6009,45670], + [6011,21805], + [6013,1147439], + [6015,27470], + [6017,188987], + [6019,989255], + [6021,28094], + [6023,136754], + [6025,182830], + [6027,18026], + [6029,893119], + [6031,150101], + [6033,64246], + [6035,31163], + [6037,10163507], + [6039,156890], + [6041,260955], + [6043,17569], + [6045,88018], + [6047,272673], + [6049,8859], + [6051,14168], + [6053,437907], + [6055,140973], + [6057,99814], + [6059,3190400], + [6061,386166], + [6063,18742], + [6065,2423266], + [6067,1530615], + [6069,60310], + [6071,2157404], + [6073,3337685], + [6075,884363], + [6077,745424], + [6079,283405], + [6081,771410], + [6083,448150], + [6085,1938153], + [6087,275897], + [6089,179921], + [6091,2999], + [6093,43853], + [6095,445458], + [6097,504217], + [6099,547899], + [6101,96648], + [6103,63926], + [6105,12709], + [6107,464493], + [6109,54248], + [6111,854223], + [6113,219116], + [6115,77031], + [8001,503167], + [8003,16551], + [8005,643052], + [8007,13315], + [8009,3562], + [8011,5938], + [8013,322514], + [8014,68341], + [8015,19638], + [8017,1845], + [8019,9574], + [8021,8184], + [8023,3776], + [8025,5810], + [8027,4874], + [8029,30568], + [8031,704621], + [8033,2067], + [8035,335299], + [8037,54772], + [8039,25642], + [8041,699232], + [8043,47559], + [8045,59118], + [8047,6013], + [8049,15321], + [8051,16939], + [8053,794], + [8055,6662], + [8057,1385], + [8059,574613], + [8061,1376], + [8063,7158], + [8065,7778], + [8067,55589], + [8069,343976], + [8071,14238], + [8073,5546], + [8075,21896], + [8077,151616], + [8079,766], + [8081,13131], + [8083,26140], + [8085,41784], + [8087,28192], + [8089,18326], + [8091,4794], + [8093,17905], + [8095,4292], + [8097,17890], + [8099,12070], + [8101,166475], + [8103,6420], + [8105,11301], + [8107,25220], + [8109,6626], + [8111,715], + [8113,7967], + [8115,2344], + [8117,30585], + [8119,24646], + [8121,4938], + [8123,304633], + [8125,10075], + [9001,949921], + [9003,895388], + [9005,182177], + [9007,163410], + [9009,860435], + [9011,269033], + [9013,151461], + [9015,116359], + [10001,176824], + [10003,559793], + [10005,225322], + [11001,693972], + [12001,266944], + [12003,28283], + [12005,183563], + [12007,27038], + [12009,589162], + [12011,1935878], + [12013,14483], + [12015,182033], + [12017,145647], + [12019,212230], + [12021,372880], + [12023,69612], + [12027,36862], + [12029,16673], + [12031,937934], + [12033,313512], + [12035,110510], + [12037,11727], + [12039,46071], + [12041,17743], + [12043,13754], + [12045,16160], + [12047,14184], + [12049,27411], + [12051,40347], + [12053,186553], + [12055,102883], + [12057,1408566], + [12059,19558], + [12061,154383], + [12063,48330], + [12065,14144], + [12067,8451], + [12069,346017], + [12071,739224], + [12073,290292], + [12075,40355], + [12077,8242], + [12079,18449], + [12081,385571], + [12083,354353], + [12085,159923], + [12086,2751796], + [12087,77013], + [12089,82721], + [12091,202970], + [12093,41605], + [12095,1348975], + [12097,352180], + [12099,1471150], + [12101,525643], + [12103,970637], + [12105,686483], + [12107,73464], + [12109,243812], + [12111,313506], + [12113,174272], + [12115,419119], + [12117,462659], + [12119,125165], + [12121,44190], + [12123,21833], + [12125,15517], + [12127,538692], + [12129,32120], + [12131,68376], + [12133,24567], + [13001,18521], + [13003,8342], + [13005,11319], + [13007,3200], + [13009,44906], + [13011,18634], + [13013,79061], + [13015,105054], + [13017,16996], + [13019,19186], + [13021,152862], + [13023,12830], + [13025,18731], + [13027,15587], + [13029,37060], + [13031,76149], + [13033,22522], + [13035,24059], + [13037,6455], + [13039,53044], + [13043,10797], + [13045,117812], + [13047,66550], + [13049,12715], + [13051,290501], + [13053,10343], + [13055,24770], + [13057,247573], + [13059,127064], + [13061,2962], + [13063,285153], + [13065,6727], + [13067,755754], + [13069,43014], + [13071,45835], + [13073,151579], + [13075,17277], + [13077,143114], + [13079,12295], + [13081,22736], + [13083,16285], + [13085,24379], + [13087,26716], + [13089,753253], + [13091,20730], + [13093,13737], + [13095,89502], + [13097,143882], + [13099,10296], + [13101,3936], + [13103,59982], + [13105,19109], + [13107,22530], + [13109,10775], + [13111,25322], + [13113,112549], + [13115,97613], + [13117,227967], + [13119,22820], + [13121,1041423], + [13123,30674], + [13125,3062], + [13127,85282], + [13129,57089], + [13131,24819], + [13133,17281], + [13135,920260], + [13137,44567], + [13139,199335], + [13141,8561], + [13143,29256], + [13145,33915], + [13147,25794], + [13149,11730], + [13151,225813], + [13153,153479], + [13155,9410], + [13157,67519], + [13159,13964], + [13161,15025], + [13163,15648], + [13165,8767], + [13167,9788], + [13169,28470], + [13171,18599], + [13173,10425], + [13175,47330], + [13177,29470], + [13179,61386], + [13181,7880], + [13183,19014], + [13185,115489], + [13187,32873], + [13189,21498], + [13191,14106], + [13193,13314], + [13195,29302], + [13197,8450], + [13199,21049], + [13201,5838], + [13205,22292], + [13207,27113], + [13209,9031], + [13211,18412], + [13213,39782], + [13215,194058], + [13217,108078], + [13219,38028], + [13221,14877], + [13223,159445], + [13225,27099], + [13227,31588], + [13229,19307], + [13231,18217], + [13233,42085], + [13235,11201], + [13237,21730], + [13239,2358], + [13241,16602], + [13243,7075], + [13245,201800], + [13247,90312], + [13249,5213], + [13251,13953], + [13253,8292], + [13255,65380], + [13257,25890], + [13259,5985], + [13261,29847], + [13263,6249], + [13265,1628], + [13267,25334], + [13269,8142], + [13271,15989], + [13273,8729], + [13275,44779], + [13277,40598], + [13279,26999], + [13281,11506], + [13283,6740], + [13285,69786], + [13287,7961], + [13289,8174], + [13291,23459], + [13293,26135], + [13295,68939], + [13297,91600], + [13299,35871], + [13301,5303], + [13303,20313], + [13305,29817], + [13307,2605], + [13309,7952], + [13311,29453], + [13313,104658], + [13315,8800], + [13317,9892], + [13319,8959], + [13321,20533], + [15001,200381], + [15003,988650], + [15005,88], + [15007,72159], + [15009,166260], + [16001,456849], + [16003,4147], + [16005,85269], + [16007,6028], + [16009,9184], + [16011,45927], + [16013,22024], + [16015,7290], + [16017,43560], + [16019,114595], + [16021,11922], + [16023,2602], + [16025,1102], + [16027,216699], + [16029,7034], + [16031,23664], + [16033,873], + [16035,8546], + [16037,4172], + [16039,26823], + [16041,13564], + [16043,13094], + [16045,17379], + [16047,15124], + [16049,16369], + [16051,28446], + [16053,23627], + [16055,157637], + [16057,39333], + [16059,7875], + [16061,3887], + [16063,5318], + [16065,39141], + [16067,20729], + [16069,40385], + [16071,4427], + [16073,11628], + [16075,23215], + [16077,7600], + [16079,12542], + [16081,11381], + [16083,85124], + [16085,10687], + [16087,10121], + [17001,66234], + [17003,6315], + [17005,16948], + [17007,53513], + [17009,6716], + [17011,33243], + [17013,4833], + [17015,14518], + [17017,12505], + [17019,209399], + [17021,33102], + [17023,15767], + [17025,13269], + [17027,37614], + [17029,51979], + [17031,5211263], + [17033,18961], + [17035,10908], + [17037,104733], + [17039,15942], + [17041,19748], + [17043,930128], + [17045,17328], + [17047,6486], + [17049,34132], + [17051,21784], + [17053,13280], + [17055,39041], + [17057,35110], + [17059,5080], + [17061,13174], + [17063,50586], + [17065,8194], + [17067,18020], + [17069,4046], + [17071,6795], + [17073,49328], + [17075,27876], + [17077,58284], + [17079,9578], + [17081,38179], + [17083,21941], + [17085,21594], + [17087,12900], + [17089,534667], + [17091,109605], + [17093,126218], + [17095,50638], + [17097,703520], + [17099,110067], + [17101,16168], + [17103,34406], + [17105,36518], + [17107,29245], + [17109,30823], + [17111,309122], + [17113,172290], + [17115,105801], + [17117,45446], + [17119,265428], + [17121,37902], + [17123,11730], + [17125,13715], + [17127,14344], + [17129,12245], + [17131,15618], + [17133,34097], + [17135,28790], + [17137,33798], + [17139,14688], + [17141,51063], + [17143,183011], + [17145,21285], + [17147,16445], + [17149,15821], + [17151,4325], + [17153,5509], + [17155,5727], + [17157,32423], + [17159,15901], + [17161,144808], + [17163,262479], + [17165,24102], + [17167,196452], + [17169,7035], + [17171,5002], + [17173,21719], + [17175,5434], + [17177,45054], + [17179,133526], + [17181,17000], + [17183,77909], + [17185,11489], + [17187,17167], + [17189,14030], + [17191,16495], + [17193,13938], + [17195,56118], + [17197,692661], + [17199,67328], + [17201,284778], + [17203,38726], + [18001,35491], + [18003,372877], + [18005,82040], + [18007,8613], + [18009,11976], + [18011,65875], + [18013,15035], + [18015,20039], + [18017,37994], + [18019,116973], + [18021,26198], + [18023,32317], + [18025,10566], + [18027,33113], + [18029,49741], + [18031,26737], + [18033,42836], + [18035,115184], + [18037,42558], + [18039,205032], + [18041,23209], + [18043,77071], + [18045,16505], + [18047,22619], + [18049,20059], + [18051,33576], + [18053,66491], + [18055,32177], + [18057,323747], + [18059,74985], + [18061,39898], + [18063,163685], + [18065,48476], + [18067,82363], + [18069,36337], + [18071,43884], + [18073,33447], + [18075,20945], + [18077,32089], + [18079,27626], + [18081,153897], + [18083,37508], + [18085,79206], + [18087,39303], + [18089,485640], + [18091,110029], + [18093,45666], + [18095,129498], + [18097,950082], + [18099,46498], + [18101,10215], + [18103,35845], + [18105,146986], + [18107,38525], + [18109,69713], + [18111,14130], + [18113,47452], + [18115,5828], + [18117,19426], + [18119,20839], + [18121,16886], + [18123,19081], + [18125,12365], + [18127,168404], + [18129,25595], + [18131,12534], + [18133,37702], + [18135,24922], + [18137,28442], + [18139,16645], + [18141,270434], + [18143,23870], + [18145,44395], + [18147,20394], + [18149,22893], + [18151,34484], + [18153,20746], + [18155,10696], + [18157,190587], + [18159,15128], + [18161,7200], + [18163,181616], + [18165,15505], + [18167,107516], + [18169,31443], + [18171,8201], + [18173,62530], + [18175,27827], + [18177,66185], + [18179,27984], + [18181,24182], + [18183,33756], + [19001,7054], + [19003,3686], + [19005,13884], + [19007,12352], + [19009,5578], + [19011,25642], + [19013,132648], + [19015,26484], + [19017,24911], + [19019,21202], + [19021,20110], + [19023,14606], + [19025,9746], + [19027,20320], + [19029,13145], + [19031,18543], + [19033,43006], + [19035,11316], + [19037,12005], + [19039,9374], + [19041,16170], + [19043,17637], + [19045,47010], + [19047,17056], + [19049,87235], + [19051,8966], + [19053,7950], + [19055,17153], + [19057,39417], + [19059,17199], + [19061,97041], + [19063,9432], + [19065,19796], + [19067,15744], + [19069,10164], + [19071,6948], + [19073,8981], + [19075,12333], + [19077,10670], + [19079,15115], + [19081,10771], + [19083,17048], + [19085,14136], + [19087,19863], + [19089,9228], + [19091,9564], + [19093,6865], + [19095,16103], + [19097,19366], + [19099,36966], + [19101,18422], + [19103,149210], + [19105,20536], + [19107,10153], + [19109,14999], + [19111,34295], + [19113,224115], + [19115,11184], + [19117,8534], + [19119,11792], + [19121,16013], + [19123,22235], + [19125,33105], + [19127,40288], + [19129,15068], + [19131,10631], + [19133,8740], + [19135,7845], + [19137,10137], + [19139,42880], + [19141,13801], + [19143,6045], + [19145,15224], + [19147,9092], + [19149,25220], + [19151,6846], + [19153,481830], + [19155,93386], + [19157,18314], + [19159,5034], + [19161,9817], + [19163,172509], + [19165,11628], + [19167,34860], + [19169,97502], + [19171,17058], + [19173,6178], + [19175,12450], + [19177,7157], + [19179,35044], + [19181,50163], + [19183,22281], + [19185,6476], + [19187,36605], + [19189,10587], + [19191,20201], + [19193,102429], + [19195,7469], + [19197,12784], + [20001,12519], + [20003,7833], + [20005,16332], + [20007,4586], + [20009,26476], + [20011,14754], + [20013,9641], + [20015,66878], + [20017,2683], + [20019,3363], + [20021,20115], + [20023,2683], + [20025,2004], + [20027,7958], + [20029,8991], + [20031,8224], + [20033,1790], + [20035,35361], + [20037,39034], + [20039,2885], + [20041,18902], + [20043,7727], + [20045,120793], + [20047,2893], + [20049,2498], + [20051,28689], + [20053,6330], + [20055,37084], + [20057,34381], + [20059,25733], + [20061,33855], + [20063,2631], + [20065,2495], + [20067,7526], + [20069,5958], + [20071,1249], + [20073,6123], + [20075,2640], + [20077,5590], + [20079,34544], + [20081,4053], + [20083,1842], + [20085,13318], + [20087,18998], + [20089,2850], + [20091,591178], + [20093,3960], + [20095,7360], + [20097,2485], + [20099,20145], + [20101,1559], + [20103,81095], + [20105,3043], + [20107,9726], + [20109,2821], + [20111,33392], + [20113,28708], + [20115,11986], + [20117,9745], + [20119,4303], + [20121,33461], + [20123,6128], + [20125,32556], + [20127,5455], + [20129,2740], + [20131,10118], + [20133,16015], + [20135,2869], + [20137,5441], + [20139,15772], + [20141,3610], + [20143,5863], + [20145,6680], + [20147,5370], + [20149,23908], + [20151,9547], + [20153,2497], + [20155,62510], + [20157,4691], + [20159,9660], + [20161,74172], + [20163,5043], + [20165,3103], + [20167,6915], + [20169,54734], + [20171,4961], + [20173,513687], + [20175,22159], + [20177,178187], + [20179,2527], + [20181,5930], + [20183,3668], + [20185,4207], + [20187,2060], + [20189,5612], + [20191,23159], + [20193,7788], + [20195,2884], + [20197,6874], + [20199,1524], + [20201,5485], + [20203,2125], + [20205,8675], + [20207,3147], + [20209,165288], + [21001,19485], + [21003,20933], + [21005,22544], + [21007,8039], + [21009,43801], + [21011,12378], + [21013,26894], + [21015,130728], + [21017,20029], + [21019,47979], + [21021,29924], + [21023,8267], + [21025,12946], + [21027,20111], + [21029,80246], + [21031,12831], + [21033,12639], + [21035,38919], + [21037,92488], + [21039,4846], + [21041,10713], + [21043,27144], + [21045,15750], + [21047,70416], + [21049,36046], + [21051,20366], + [21053,10276], + [21055,9084], + [21057,6706], + [21059,100374], + [21061,12226], + [21063,7523], + [21065,14277], + [21067,321959], + [21069,14446], + [21071,36271], + [21073,50485], + [21075,6192], + [21077,8776], + [21079,17523], + [21081,24984], + [21083,37121], + [21085,26358], + [21087,11065], + [21089,35518], + [21091,8801], + [21093,108071], + [21095,26713], + [21097,18781], + [21099,18757], + [21101,45928], + [21103,16006], + [21105,4520], + [21107,45547], + [21109,13431], + [21111,771158], + [21113,53375], + [21115,22594], + [21117,165399], + [21119,15291], + [21121,31227], + [21123,14205], + [21125,60174], + [21127,15719], + [21129,6570], + [21131,10334], + [21133,22339], + [21135,13339], + [21137,24456], + [21139,9269], + [21141,27060], + [21143,8082], + [21145,65385], + [21147,17465], + [21149,9201], + [21151,91226], + [21153,12538], + [21155,19395], + [21157,31382], + [21159,11452], + [21161,17174], + [21163,28154], + [21165,6455], + [21167,21521], + [21169,10107], + [21171,10659], + [21173,27928], + [21175,13188], + [21177,30816], + [21179,45640], + [21181,7130], + [21183,24182], + [21185,66415], + [21187,10765], + [21189,4435], + [21191,14573], + [21193,26553], + [21195,58883], + [21197,12374], + [21199,64449], + [21201,2134], + [21203,16698], + [21205,24517], + [21207,17775], + [21209,54873], + [21211,47421], + [21213,18108], + [21215,18507], + [21217,25472], + [21219,12243], + [21221,14444], + [21223,8561], + [21225,14668], + [21227,128845], + [21229,12126], + [21231,20716], + [21233,13018], + [21235,36214], + [21237,7264], + [21239,26368], + [22001,62590], + [22003,25621], + [22005,122948], + [22007,22526], + [22009,40980], + [22011,36928], + [22013,13638], + [22015,127634], + [22017,246581], + [22019,202445], + [22021,9950], + [22023,6912], + [22025,9875], + [22027,15969], + [22029,19866], + [22031,27340], + [22033,446268], + [22035,7126], + [22037,19412], + [22039,33708], + [22041,20260], + [22043,22336], + [22045,72176], + [22047,33027], + [22049,15846], + [22051,439036], + [22053,31477], + [22055,242485], + [22057,98426], + [22059,14933], + [22061,47744], + [22063,138228], + [22065,11316], + [22067,25641], + [22069,39021], + [22071,393292], + [22073,155874], + [22075,23348], + [22077,22268], + [22079,131648], + [22081,8536], + [22083,20411], + [22085,24018], + [22087,46202], + [22089,52749], + [22091,10363], + [22093,21367], + [22095,43441], + [22097,83497], + [22099,54171], + [22101,50973], + [22103,256327], + [22105,132497], + [22107,4615], + [22109,112086], + [22111,22571], + [22113,60136], + [22115,50726], + [22117,46633], + [22119,39378], + [22121,26265], + [22123,10981], + [22125,15380], + [22127,14311], + [23001,107651], + [23003,67653], + [23005,292500], + [23007,29988], + [23009,54497], + [23011,121821], + [23013,39790], + [23015,34204], + [23017,57439], + [23019,151957], + [23021,16773], + [23023,35392], + [23025,50626], + [23027,39832], + [23029,31593], + [23031,204191], + [24001,71615], + [24003,573235], + [24005,832468], + [24009,91502], + [24011,33193], + [24013,167781], + [24015,102746], + [24017,159700], + [24019,32162], + [24021,252022], + [24023,29233], + [24025,252160], + [24027,321113], + [24029,19384], + [24031,1058810], + [24033,912756], + [24035,49770], + [24037,112667], + [24039,25918], + [24041,37103], + [24043,150578], + [24045,102923], + [24047,51690], + [24510,611648], + [25001,213444], + [25003,126313], + [25005,561483], + [25007,17325], + [25009,785205], + [25011,70702], + [25013,469818], + [25015,161834], + [25017,1602947], + [25019,11229], + [25021,700322], + [25023,515142], + [25025,797939], + [25027,826116], + [26001,10351], + [26003,9121], + [26005,116447], + [26007,28462], + [26009,23292], + [26011,15045], + [26013,8441], + [26015,60586], + [26017,104239], + [26019,17573], + [26021,154259], + [26023,43410], + [26025,134128], + [26027,51381], + [26029,26139], + [26031,25369], + [26033,37711], + [26035,30653], + [26037,78443], + [26039,13907], + [26041,35965], + [26043,25415], + [26045,109027], + [26047,33193], + [26049,407385], + [26051,25234], + [26053,15342], + [26055,91807], + [26057,41018], + [26059,45879], + [26061,36305], + [26063,31280], + [26065,290186], + [26067,64291], + [26069,25162], + [26071,11124], + [26073,71063], + [26075,158640], + [26077,262985], + [26079,17634], + [26081,648594], + [26083,2105], + [26085,12013], + [26087,88174], + [26089,21657], + [26091,98623], + [26093,189651], + [26095,6358], + [26097,10712], + [26099,871375], + [26101,24427], + [26103,66502], + [26105,29073], + [26107,43391], + [26109,23046], + [26111,83411], + [26113,14998], + [26115,149649], + [26117,63550], + [26119,9250], + [26121,173693], + [26123,48242], + [26125,1250836], + [26127,26442], + [26129,20981], + [26131,5881], + [26133,23260], + [26135,8287], + [26137,24538], + [26139,286383], + [26141,12791], + [26143,23895], + [26145,191934], + [26147,159350], + [26149,60947], + [26151,41269], + [26153,8049], + [26155,68446], + [26157,52764], + [26159,75353], + [26161,367627], + [26163,1753616], + [26165,33276], + [27001,15829], + [27003,351373], + [27005,34098], + [27007,46513], + [27009,39937], + [27011,5026], + [27013,66973], + [27015,25194], + [27017,35498], + [27019,102119], + [27021,29355], + [27023,11980], + [27025,55308], + [27027,63569], + [27029,8878], + [27031,5398], + [27033,11295], + [27035,64424], + [27037,421751], + [27039,20762], + [27041,37575], + [27043,13784], + [27045,20980], + [27047,30535], + [27049,46304], + [27051,5941], + [27053,1252024], + [27055,18660], + [27057,21018], + [27059,39582], + [27061,45137], + [27063,9946], + [27065,16024], + [27067,42743], + [27069,4250], + [27071,12528], + [27073,6685], + [27075,10524], + [27077,3744], + [27079,28111], + [27081,5678], + [27083,25831], + [27085,35884], + [27087,5596], + [27089,9356], + [27091,19850], + [27093,23131], + [27095,25872], + [27097,33064], + [27099,39566], + [27101,8346], + [27103,33966], + [27105,21944], + [27107,6597], + [27109,154930], + [27111,58345], + [27113,14238], + [27115,29203], + [27117,9087], + [27119,31619], + [27121,10970], + [27123,547974], + [27125,4030], + [27127,15272], + [27129,14645], + [27131,65968], + [27133,9490], + [27135,15327], + [27137,200000], + [27139,145827], + [27141,94570], + [27143,14869], + [27145,157822], + [27147,36887], + [27149,9634], + [27151,9407], + [27153,24515], + [27155,3319], + [27157,21608], + [27159,13669], + [27161,18787], + [27163,256348], + [27165,10840], + [27167,6324], + [27169,50873], + [27171,134286], + [27173,9867], + [28001,31003], + [28003,37210], + [28005,12447], + [28007,18477], + [28009,8312], + [28011,31945], + [28013,14492], + [28015,10139], + [28017,17146], + [28019,8278], + [28021,8950], + [28023,15828], + [28025,19640], + [28027,23154], + [28029,28516], + [28031,19079], + [28033,178751], + [28035,75471], + [28037,7765], + [28039,24094], + [28041,13345], + [28043,21087], + [28045,47053], + [28047,205027], + [28049,239497], + [28051,17739], + [28053,8342], + [28055,1339], + [28057,23508], + [28059,142152], + [28061,16582], + [28063,7262], + [28065,11314], + [28067,67930], + [28069,9883], + [28071,54374], + [28073,61374], + [28075,76155], + [28077,12643], + [28079,22715], + [28081,84933], + [28083,29223], + [28085,34347], + [28087,59186], + [28089,104618], + [28091,25069], + [28093,35619], + [28095,35872], + [28097,10173], + [28099,29369], + [28101,21185], + [28103,10742], + [28105,49799], + [28107,33994], + [28109,55270], + [28111,12032], + [28113,39468], + [28115,31640], + [28117,25261], + [28119,7269], + [28121,152080], + [28123,28420], + [28125,4435], + [28127,26947], + [28129,16078], + [28131,18112], + [28133,25981], + [28135,14125], + [28137,28441], + [28139,21969], + [28141,19542], + [28143,10024], + [28145,28556], + [28147,14499], + [28149,46768], + [28151,46221], + [28153,20446], + [28155,9765], + [28157,8804], + [28159,18246], + [28161,12497], + [28163,27057], + [29001,25377], + [29003,17555], + [29005,5275], + [29007,25641], + [29009,35668], + [29011,11850], + [29013,16334], + [29015,19074], + [29017,12306], + [29019,178271], + [29021,89065], + [29023,42666], + [29025,9100], + [29027,45032], + [29029,45632], + [29031,78161], + [29033,8796], + [29035,6169], + [29037,103724], + [29039,14073], + [29041,7480], + [29043,85432], + [29045,6723], + [29047,242874], + [29049,20554], + [29051,76708], + [29053,17644], + [29055,24102], + [29057,7588], + [29059,16673], + [29061,8361], + [29063,12588], + [29065,15480], + [29067,13300], + [29069,30119], + [29071,103330], + [29073,14726], + [29075,6665], + [29077,289805], + [29079,9949], + [29081,8524], + [29083,21718], + [29085,9475], + [29087,4413], + [29089,10139], + [29091,40103], + [29093,10226], + [29095,698895], + [29097,120217], + [29099,223810], + [29101,53897], + [29103,3977], + [29105,35443], + [29107,32641], + [29109,38434], + [29111,9967], + [29113,56183], + [29115,12194], + [29117,15173], + [29119,22828], + [29121,15251], + [29123,12243], + [29125,8867], + [29127,28634], + [29129,3678], + [29131,25228], + [29133,13586], + [29135,16063], + [29137,8612], + [29139,11438], + [29141,20145], + [29143,17582], + [29145,58290], + [29147,22472], + [29149,10558], + [29151,13662], + [29153,9186], + [29155,16826], + [29157,19225], + [29159,42558], + [29161,44744], + [29163,18567], + [29165,101187], + [29167,31794], + [29169,52059], + [29171,4811], + [29173,10224], + [29175,24945], + [29177,22855], + [29179,6275], + [29181,13564], + [29183,395504], + [29185,9362], + [29186,17843], + [29187,66705], + [29189,996726], + [29195,22660], + [29197,4508], + [29199,4963], + [29201,38541], + [29203,8249], + [29205,6021], + [29207,29369], + [29209,31699], + [29211,6229], + [29213,55355], + [29215,25735], + [29217,20437], + [29219,34373], + [29221,25022], + [29223,13296], + [29225,38665], + [29227,2057], + [29229,18331], + [29510,308626], + [30001,9434], + [30003,13360], + [30005,6708], + [30007,5936], + [30009,10696], + [30011,1222], + [30013,81654], + [30015,5765], + [30017,11721], + [30019,1737], + [30021,8950], + [30023,9106], + [30025,3009], + [30027,11291], + [30029,100000], + [30031,107810], + [30033,1293], + [30035,13640], + [30037,822], + [30039,3358], + [30041,16463], + [30043,11891], + [30045,1961], + [30047,30273], + [30049,67773], + [30051,2427], + [30053,19440], + [30055,1718], + [30057,8175], + [30059,1851], + [30061,4255], + [30063,117441], + [30065,4639], + [30067,16353], + [30069,523], + [30071,4119], + [30073,5960], + [30075,1752], + [30077,6795], + [30079,1109], + [30081,42563], + [30083,11039], + [30085,11098], + [30087,9248], + [30089,11711], + [30091,3469], + [30093,34602], + [30095,9419], + [30097,3691], + [30099,6085], + [30101,4886], + [30103,679], + [30105,7433], + [30107,2140], + [30109,1020], + [30111,158980], + [31001,31678], + [31003,6362], + [31005,457], + [31007,742], + [31009,482], + [31011,5352], + [31013,10886], + [31015,1977], + [31017,3014], + [31019,49732], + [31021,6535], + [31023,8053], + [31025,25889], + [31027,8530], + [31029,3971], + [31031,5818], + [31033,9676], + [31035,6205], + [31037,10585], + [31039,9042], + [31041,10897], + [31043,20186], + [31045,8890], + [31047,23709], + [31049,1883], + [31051,5754], + [31053,36707], + [31055,561620], + [31057,1801], + [31059,5582], + [31061,2990], + [31063,2631], + [31065,4780], + [31067,21601], + [31069,1906], + [31071,2016], + [31073,2028], + [31075,649], + [31077,2374], + [31079,61519], + [31081,9207], + [31083,3443], + [31085,893], + [31087,2834], + [31089,10202], + [31091,674], + [31093,6437], + [31095,7178], + [31097,5185], + [31099,6530], + [31101,8072], + [31103,793], + [31105,3619], + [31107,8472], + [31109,314358], + [31111,35280], + [31113,768], + [31115,609], + [31117,499], + [31119,35144], + [31121,7882], + [31123,4836], + [31125,3607], + [31127,6949], + [31129,4275], + [31131,16027], + [31133,2641], + [31135,2903], + [31137,9060], + [31139,7138], + [31141,33175], + [31143,5328], + [31145,10728], + [31147,7969], + [31149,1436], + [31151,14441], + [31153,181439], + [31155,21057], + [31157,36363], + [31159,17161], + [31161,5289], + [31163,3086], + [31165,1203], + [31167,5988], + [31169,5045], + [31171,725], + [31173,7223], + [31175,4209], + [31177,20721], + [31179,9318], + [31181,3524], + [31183,818], + [31185,13806], + [32001,24230], + [32003,2204079], + [32005,48309], + [32007,52649], + [32009,850], + [32011,1961], + [32013,16826], + [32015,5693], + [32017,5223], + [32019,54122], + [32021,4457], + [32023,44202], + [32027,6508], + [32029,4006], + [32031,460587], + [32033,9592], + [32510,54745], + [33001,60785], + [33003,48064], + [33005,75960], + [33007,31634], + [33009,89386], + [33011,409697], + [33013,149216], + [33015,306363], + [33017,128613], + [33019,43077], + [34001,269918], + [34003,948406], + [34005,448596], + [34007,510719], + [34009,93553], + [34011,152538], + [34013,808285], + [34015,292206], + [34017,691643], + [34019,125059], + [34021,374733], + [34023,842798], + [34025,626351], + [34027,499693], + [34029,597943], + [34031,512607], + [34033,62792], + [34035,335432], + [34037,141682], + [34039,563892], + [34041,106798], + [35001,676773], + [35003,3587], + [35005,64866], + [35006,26853], + [35007,12174], + [35009,49812], + [35011,1829], + [35013,215579], + [35015,56997], + [35017,27687], + [35019,4429], + [35021,692], + [35023,4305], + [35025,68759], + [35027,19395], + [35028,18738], + [35029,24078], + [35031,72564], + [35033,4551], + [35035,65817], + [35037,8306], + [35039,39159], + [35041,18847], + [35043,142507], + [35045,126926], + [35047,27748], + [35049,148750], + [35051,11116], + [35053,16798], + [35055,32795], + [35057,15506], + [35059,4187], + [35061,75940], + [36001,309612], + [36003,46894], + [36005,1471160], + [36007,193639], + [36009,77348], + [36011,77603], + [36013,129046], + [36015,85557], + [36017,47863], + [36019,80980], + [36021,60604], + [36023,47786], + [36025,45001], + [36027,295568], + [36029,925528], + [36031,37956], + [36033,51116], + [36035,53877], + [36037,57956], + [36039,47470], + [36041,4485], + [36043,62240], + [36045,114187], + [36047,2648771], + [36049,26551], + [36051,63799], + [36053,70965], + [36055,747642], + [36057,49258], + [36059,1369514], + [36061,1664727], + [36063,211328], + [36065,231332], + [36067,465398], + [36069,109899], + [36071,382226], + [36073,40983], + [36075,118478], + [36077,60094], + [36079,99323], + [36081,2358582], + [36083,159722], + [36085,479458], + [36087,328868], + [36089,109623], + [36091,229869], + [36093,155565], + [36095,31420], + [36097,18000], + [36099,34498], + [36101,96281], + [36103,1492953], + [36105,75485], + [36107,48578], + [36109,104802], + [36111,179417], + [36113,64532], + [36115,61620], + [36117,90670], + [36119,980244], + [36121,40493], + [36123,24955], + [37001,162391], + [37003,37286], + [37005,11031], + [37007,24991], + [37009,26957], + [37011,17536], + [37013,47088], + [37015,19224], + [37017,33478], + [37019,130897], + [37021,257607], + [37023,89293], + [37025,206872], + [37027,81981], + [37029,10581], + [37031,68881], + [37033,22646], + [37035,157974], + [37037,71472], + [37039,28087], + [37041,14105], + [37043,11074], + [37045,97334], + [37047,55936], + [37049,102578], + [37051,332546], + [37053,26331], + [37055,36099], + [37057,165466], + [37059,42456], + [37061,59039], + [37063,311640], + [37065,52747], + [37067,376320], + [37069,66168], + [37071,220182], + [37073,11544], + [37075,8541], + [37077,59557], + [37079,21015], + [37081,526953], + [37083,51310], + [37085,132754], + [37087,61084], + [37089,115708], + [37091,23906], + [37093,54116], + [37095,5363], + [37097,175711], + [37099,42973], + [37101,196708], + [37103,9597], + [37105,60430], + [37107,56883], + [37109,82403], + [37111,45159], + [37113,34732], + [37115,21746], + [37117,22789], + [37119,1076837], + [37121,15072], + [37123,27435], + [37125,97264], + [37127,93991], + [37129,227198], + [37131,19862], + [37133,193893], + [37135,144946], + [37137,12689], + [37139,39743], + [37141,60958], + [37143,13474], + [37145,39370], + [37147,179042], + [37149,20558], + [37151,143282], + [37153,44798], + [37155,132606], + [37157,90949], + [37159,140644], + [37161,66551], + [37163,63430], + [37165,35093], + [37167,61482], + [37169,45717], + [37171,72224], + [37173,14294], + [37175,33956], + [37177,4052], + [37179,231366], + [37181,44211], + [37183,1072203], + [37185,19883], + [37187,12012], + [37189,55121], + [37191,124172], + [37193,68576], + [37195,81671], + [37197,37774], + [37199,17744], + [38001,2318], + [38003,10734], + [38005,6936], + [38007,940], + [38009,6530], + [38011,3166], + [38013,2131], + [38015,95030], + [38017,177787], + [38019,3762], + [38021,4861], + [38023,2288], + [38025,4289], + [38027,2316], + [38029,3301], + [38031,3257], + [38033,1789], + [38035,70795], + [38037,2376], + [38039,2258], + [38041,2483], + [38043,2482], + [38045,4087], + [38047,1918], + [38049,5900], + [38051,2606], + [38053,12724], + [38055,9685], + [38057,8465], + [38059,30796], + [38061,10265], + [38063,2937], + [38065,1940], + [38067,6972], + [38069,4099], + [38071,11519], + [38073,5297], + [38075,2463], + [38077,16351], + [38079,14531], + [38081,3858], + [38083,1353], + [38085,4376], + [38087,771], + [38089,30209], + [38091,1917], + [38093,21087], + [38095,2253], + [38097,8013], + [38099,10855], + [38101,68946], + [38103,4022], + [38105,33349], + [39001,27726], + [39003,103198], + [39005,53628], + [39007,97807], + [39009,66597], + [39011,45778], + [39013,68029], + [39015,43576], + [39017,380604], + [39019,27385], + [39021,38840], + [39023,134557], + [39025,204214], + [39027,42009], + [39029,103077], + [39031,36544], + [39033,41746], + [39035,1248514], + [39037,51536], + [39039,38156], + [39041,200464], + [39043,74817], + [39045,154733], + [39047,28752], + [39049,1291981], + [39051,42289], + [39053,29973], + [39055,93918], + [39057,166752], + [39059,39093], + [39061,813822], + [39063,75754], + [39065,31364], + [39067,15216], + [39069,27185], + [39071,42971], + [39073,28474], + [39075,43957], + [39077,58494], + [39079,32449], + [39081,66359], + [39083,61261], + [39085,230117], + [39087,60249], + [39089,173448], + [39091,45325], + [39093,307924], + [39095,430887], + [39097,44036], + [39099,229796], + [39101,64967], + [39103,178371], + [39105,23080], + [39107,40873], + [39109,105122], + [39111,13946], + [39113,531542], + [39115,14709], + [39117,34994], + [39119,86149], + [39121,14406], + [39123,40657], + [39125,18845], + [39127,36024], + [39129,57830], + [39131,28270], + [39133,162277], + [39135,41120], + [39137,33878], + [39139,120589], + [39141,77313], + [39143,59195], + [39145,75929], + [39147,55243], + [39149,48759], + [39151,372542], + [39153,541228], + [39155,200380], + [39157,92297], + [39159,56741], + [39161,28217], + [39163,13092], + [39165,228882], + [39167,60418], + [39169,116038], + [39171,36784], + [39173,130492], + [39175,22029], + [40001,21909], + [40003,5907], + [40005,13887], + [40007,5315], + [40009,21793], + [40011,9498], + [40013,46319], + [40015,29173], + [40017,139926], + [40019,48190], + [40021,48888], + [40023,14863], + [40025,2154], + [40027,279641], + [40029,5642], + [40031,121526], + [40033,5823], + [40035,14327], + [40037,71704], + [40039,28800], + [40041,42602], + [40043,4878], + [40045,3966], + [40047,61581], + [40049,27909], + [40051,54943], + [40053,4395], + [40055,5843], + [40057,2689], + [40059,3808], + [40061,12763], + [40063,13302], + [40065,25125], + [40067,6183], + [40069,11060], + [40071,44544], + [40073,15669], + [40075,8893], + [40077,10411], + [40079,49731], + [40081,35142], + [40083,46784], + [40085,10034], + [40087,39343], + [40089,32808], + [40091,19742], + [40093,7693], + [40095,16434], + [40097,40921], + [40099,13853], + [40101,69086], + [40103,11277], + [40105,10306], + [40107,12140], + [40109,787958], + [40111,38930], + [40113,47233], + [40115,31312], + [40117,16472], + [40119,81575], + [40121,44184], + [40123,38224], + [40125,72226], + [40127,11173], + [40129,3716], + [40131,91444], + [40133,24878], + [40135,41252], + [40137,43332], + [40139,20900], + [40141,7433], + [40143,646266], + [40145,78657], + [40147,51932], + [40149,11134], + [40151,9031], + [40153,20459], + [41001,16054], + [41003,90951], + [41005,412672], + [41007,39182], + [41009,51782], + [41011,63888], + [41013,23123], + [41015,22669], + [41017,186875], + [41019,109405], + [41021,1855], + [41023,7190], + [41025,7289], + [41027,23377], + [41029,217479], + [41031,23758], + [41033,86352], + [41035,66935], + [41037,7863], + [41039,374748], + [41041,48920], + [41043,125047], + [41045,30480], + [41047,341286], + [41049,11166], + [41051,807555], + [41053,83696], + [41055,1758], + [41057,26690], + [41059,76985], + [41061,26222], + [41063,7051], + [41065,26437], + [41067,588957], + [41069,1357], + [41071,105722], + [42001,102336], + [42003,1223048], + [42005,65642], + [42007,166140], + [42009,48480], + [42011,417854], + [42013,123457], + [42015,60853], + [42017,628341], + [42019,187108], + [42021,133054], + [42023,4592], + [42025,63853], + [42027,162660], + [42029,519293], + [42031,38458], + [42033,79685], + [42035,38998], + [42037,65932], + [42039,86159], + [42041,250066], + [42043,275710], + [42045,564696], + [42047,30197], + [42049,274541], + [42051,131504], + [42053,7297], + [42055,154234], + [42057,14590], + [42059,36770], + [42061,45491], + [42063,84953], + [42065,43804], + [42067,24514], + [42069,210761], + [42071,542903], + [42073,87069], + [42075,139754], + [42077,366494], + [42079,317343], + [42081,113841], + [42083,41330], + [42085,111750], + [42087,46388], + [42089,168046], + [42091,826075], + [42093,18272], + [42095,303405], + [42097,92029], + [42099,46127], + [42101,1580863], + [42103,55691], + [42105,16802], + [42107,142569], + [42109,40801], + [42111,74501], + [42113,6089], + [42115,40985], + [42117,40793], + [42119,44595], + [42121,51762], + [42123,39659], + [42125,207298], + [42127,51205], + [42129,352627], + [42131,27322], + [42133,446078], + [44001,48912], + [44003,163760], + [44005,83460], + [44007,637357], + [44009,126150], + [45001,24722], + [45003,168179], + [45005,9002], + [45007,198759], + [45009,14381], + [45011,21345], + [45013,186844], + [45015,217937], + [45017,14704], + [45019,401438], + [45021,57105], + [45023,32301], + [45025,45948], + [45027,34057], + [45029,37611], + [45031,67265], + [45033,30666], + [45035,156456], + [45037,26693], + [45039,22607], + [45041,138566], + [45043,61607], + [45045,506837], + [45047,70355], + [45049,19602], + [45051,333268], + [45053,28458], + [45055,65036], + [45057,92550], + [45059,66848], + [45061,17350], + [45063,290642], + [45065,9545], + [45067,31293], + [45069,26825], + [45071,38488], + [45073,77270], + [45075,87476], + [45077,123479], + [45079,411592], + [45081,20452], + [45083,306854], + [45085,106847], + [45087,27537], + [45089,31133], + [45091,266439], + [46003,2738], + [46005,18157], + [46007,3454], + [46009,6984], + [46011,34255], + [46013,39178], + [46015,5312], + [46017,1999], + [46019,10107], + [46021,1379], + [46023,9428], + [46025,3668], + [46027,13990], + [46029,28099], + [46031,4203], + [46033,8691], + [46035,19704], + [46037,5521], + [46039,4281], + [46041,5835], + [46043,2931], + [46045,3919], + [46047,6687], + [46049,2329], + [46051,7061], + [46053,4226], + [46055,1943], + [46057,5948], + [46059,3277], + [46061,3423], + [46063,1242], + [46065,17666], + [46067,7358], + [46069,1318], + [46071,3289], + [46073,2028], + [46075,936], + [46077,4952], + [46079,12809], + [46081,25429], + [46083,56664], + [46085,3904], + [46087,5499], + [46089,2426], + [46091,4804], + [46093,28018], + [46095,2088], + [46097,2228], + [46099,188616], + [46101,6579], + [46102,14354], + [46103,110141], + [46105,2974], + [46107,2231], + [46109,10278], + [46111,2450], + [46115,6410], + [46117,3011], + [46119,1407], + [46121,10065], + [46123,5460], + [46125,8315], + [46127,15029], + [46129,5543], + [46135,22662], + [46137,2756], + [47001,76257], + [47003,48117], + [47005,15986], + [47007,14717], + [47009,129929], + [47011,105560], + [47013,39648], + [47015,14216], + [47017,27860], + [47019,56488], + [47021,40330], + [47023,17119], + [47025,31609], + [47027,7703], + [47029,35556], + [47031,55034], + [47033,14473], + [47035,59078], + [47037,691243], + [47039,11751], + [47041,19852], + [47043,52853], + [47045,37463], + [47047,40036], + [47049,18136], + [47051,41652], + [47053,49111], + [47055,29401], + [47057,23144], + [47059,68808], + [47061,13361], + [47063,64277], + [47065,361613], + [47067,6600], + [47069,25447], + [47071,25846], + [47073,56459], + [47075,17573], + [47077,27751], + [47079,32450], + [47081,24864], + [47083,8213], + [47085,18484], + [47087,11677], + [47089,53804], + [47091,17691], + [47093,461860], + [47095,7468], + [47097,25274], + [47099,43396], + [47101,12035], + [47103,33751], + [47105,52152], + [47107,52877], + [47109,26004], + [47111,24079], + [47113,97643], + [47115,28425], + [47117,32931], + [47119,92163], + [47121,12068], + [47123,46240], + [47125,200182], + [47127,6384], + [47129,21636], + [47131,30385], + [47133,22012], + [47135,7975], + [47137,5073], + [47139,16757], + [47141,77674], + [47143,32691], + [47145,53036], + [47147,70177], + [47149,317157], + [47151,21989], + [47153,14736], + [47155,97638], + [47157,936961], + [47159,19636], + [47161,13355], + [47163,157158], + [47165,183545], + [47167,61366], + [47169,10083], + [47171,17759], + [47173,19442], + [47175,5742], + [47177,40651], + [47179,127806], + [47181,16583], + [47183,33337], + [47185,26753], + [47187,226257], + [47189,136442], + [48001,57741], + [48003,17722], + [48005,87805], + [48007,25572], + [48009,8809], + [48011,1879], + [48013,48981], + [48015,29786], + [48017,7077], + [48019,22351], + [48021,84761], + [48023,3581], + [48025,32563], + [48027,347833], + [48029,1958578], + [48031,11626], + [48033,673], + [48035,18326], + [48037,94012], + [48039,362457], + [48041,222830], + [48043,9337], + [48045,1528], + [48047,7235], + [48049,38053], + [48051,18011], + [48053,46804], + [48055,42338], + [48057,21744], + [48059,13946], + [48061,423725], + [48063,12855], + [48065,6032], + [48067,30012], + [48069,7843], + [48071,41441], + [48073,52240], + [48075,7067], + [48077,10421], + [48079,2851], + [48081,3306], + [48083,8430], + [48085,969603], + [48087,2987], + [48089,21232], + [48091,141009], + [48093,13573], + [48095,2717], + [48097,39895], + [48099,74913], + [48101,1387], + [48103,4740], + [48105,3564], + [48107,5899], + [48109,2231], + [48111,7208], + [48113,2618148], + [48115,12813], + [48117,18836], + [48119,5298], + [48121,836210], + [48123,20226], + [48125,2209], + [48127,10418], + [48129,3311], + [48131,11273], + [48133,18411], + [48135,157087], + [48137,1953], + [48139,173620], + [48141,840410], + [48143,41969], + [48145,17437], + [48147,34446], + [48149,25272], + [48151,3880], + [48153,5855], + [48155,1222], + [48157,764828], + [48159,10767], + [48161,19625], + [48163,19600], + [48165,20638], + [48167,335036], + [48169,6528], + [48171,26646], + [48173,1348], + [48175,7562], + [48177,20893], + [48179,22404], + [48181,131140], + [48183,123367], + [48185,28082], + [48187,159659], + [48189,34134], + [48191,3071], + [48193,8422], + [48195,5447], + [48197,3994], + [48199,57139], + [48201,4652980], + [48203,66661], + [48205,5691], + [48207,5746], + [48209,214485], + [48211,4024], + [48213,81064], + [48215,860661], + [48217,35852], + [48219,23088], + [48221,58273], + [48223,36496], + [48225,23021], + [48227,36040], + [48229,4408], + [48231,93872], + [48233,21375], + [48235,1516], + [48237,8832], + [48239,14805], + [48241,35561], + [48243,2280], + [48245,256299], + [48247,5202], + [48249,40871], + [48251,167301], + [48253,19983], + [48255,15187], + [48257,122883], + [48259,44026], + [48261,417], + [48263,763], + [48265,51720], + [48267,4410], + [48269,296], + [48271,3745], + [48273,31088], + [48275,3710], + [48277,49587], + [48279,13210], + [48281,21027], + [48283,7584], + [48285,20062], + [48287,17183], + [48289,17243], + [48291,83658], + [48293,23527], + [48295,3378], + [48297,12174], + [48299,21210], + [48301,134], + [48303,305225], + [48305,5859], + [48307,7957], + [48309,251259], + [48311,778], + [48313,14222], + [48315,10064], + [48317,5626], + [48319,4222], + [48321,36840], + [48323,58216], + [48325,50066], + [48327,2124], + [48329,165049], + [48331,25053], + [48333,4921], + [48335,8468], + [48337,19539], + [48339,570934], + [48341,22097], + [48343,12467], + [48345,1230], + [48347,65580], + [48349,48701], + [48351,13952], + [48353,14770], + [48355,361221], + [48357,10073], + [48359,2114], + [48361,85047], + [48363,28570], + [48365,23243], + [48367,133463], + [48369,9842], + [48371,15634], + [48373,49162], + [48375,120458], + [48377,7156], + [48379,11762], + [48381,134442], + [48383,3710], + [48385,3429], + [48387,12229], + [48389,15281], + [48391,7224], + [48393,938], + [48395,17203], + [48397,96788], + [48399,10266], + [48401,52833], + [48403,10461], + [48405,8253], + [48407,28270], + [48409,67215], + [48411,5959], + [48413,3001], + [48415,17050], + [48417,3328], + [48419,25513], + [48421,3067], + [48423,227727], + [48425,8845], + [48427,64454], + [48429,9337], + [48431,1295], + [48433,1388], + [48435,3767], + [48437,7515], + [48439,2054475], + [48441,136290], + [48443,810], + [48445,12715], + [48447,1527], + [48449,32904], + [48451,118019], + [48453,1226698], + [48455,14667], + [48457,21539], + [48459,41281], + [48461,3663], + [48463,27132], + [48465,49205], + [48467,55182], + [48469,92084], + [48471,72245], + [48473,51307], + [48475,11472], + [48477,35043], + [48479,274794], + [48481,41968], + [48483,5358], + [48485,132000], + [48487,12764], + [48489,21584], + [48491,547545], + [48493,49304], + [48495,7574], + [48497,66181], + [48499,44314], + [48501,8568], + [48503,17979], + [48505,14322], + [48507,11948], + [49001,6386], + [49003,54079], + [49005,124438], + [49007,20295], + [49009,1029], + [49011,347637], + [49013,20026], + [49015,10077], + [49017,5078], + [49019,9674], + [49021,51001], + [49023,11250], + [49025,7567], + [49027,12863], + [49029,11873], + [49031,1420], + [49033,2391], + [49035,1135649], + [49037,15356], + [49039,30035], + [49041,21316], + [49043,41106], + [49045,67456], + [49047,35150], + [49049,606425], + [49051,32106], + [49053,165662], + [49055,2719], + [49057,251769], + [50001,36776], + [50003,35594], + [50005,30164], + [50007,162372], + [50009,6230], + [50011,49025], + [50013,6998], + [50015,25337], + [50017,28974], + [50019,26841], + [50021,59087], + [50023,58290], + [50025,42869], + [50027,55100], + [51001,32545], + [51003,107702], + [51005,15122], + [51007,13020], + [51009,31594], + [51011,15681], + [51013,234965], + [51015,75144], + [51017,4297], + [51019,77974], + [51021,6350], + [51023,33192], + [51025,16244], + [51027,21514], + [51029,17065], + [51031,55010], + [51033,30461], + [51035,29708], + [51036,7004], + [51037,12119], + [51041,343599], + [51043,14508], + [51045,5062], + [51047,51282], + [51049,9811], + [51051,14782], + [51053,28208], + [51057,11028], + [51059,1148433], + [51061,69465], + [51063,15755], + [51065,26452], + [51067,56445], + [51069,86484], + [51071,16837], + [51073,37292], + [51075,22685], + [51077,15665], + [51079,19612], + [51081,11679], + [51083,34563], + [51085,105923], + [51087,327898], + [51089,51227], + [51091,2212], + [51093,36552], + [51095,75524], + [51097,7003], + [51099,26337], + [51101,16708], + [51103,10788], + [51105,23758], + [51107,398080], + [51109,35860], + [51111,12235], + [51113,13277], + [51115,8779], + [51117,30686], + [51119,10679], + [51121,98559], + [51125,14943], + [51127,21682], + [51131,11846], + [51133,12275], + [51135,15434], + [51137,36073], + [51139,23731], + [51141,17665], + [51143,61258], + [51145,28601], + [51147,22703], + [51149,37809], + [51153,463023], + [51155,34184], + [51157,7321], + [51159,8939], + [51161,93730], + [51163,22659], + [51165,80227], + [51167,27048], + [51169,21865], + [51171,43225], + [51173,30656], + [51175,17750], + [51177,133033], + [51179,146649], + [51181,6540], + [51183,11373], + [51185,41095], + [51187,39563], + [51191,54387], + [51193,17780], + [51195,38586], + [51197,28882], + [51199,67739], + [51510,160035], + [51520,16790], + [51530,6327], + [51540,48019], + [51550,240397], + [51570,17830], + [51580,5531], + [51590,41130], + [51595,5282], + [51600,24097], + [51610,14583], + [51620,8176], + [51630,28360], + [51640,6625], + [51650,134669], + [51660,54215], + [51670,22621], + [51678,7106], + [51680,80995], + [51683,41501], + [51685,16591], + [51690,13142], + [51700,179388], + [51710,244703], + [51720,3936], + [51730,31750], + [51735,12053], + [51740,94572], + [51750,17658], + [51760,227032], + [51770,99837], + [51775,25862], + [51790,24528], + [51800,90237], + [51810,450435], + [51820,22327], + [51830,15031], + [51840,27932], + [53001,19506], + [53003,22535], + [53005,198171], + [53007,76533], + [53009,75474], + [53011,474643], + [53013,4047], + [53015,106910], + [53017,41945], + [53019,7594], + [53021,92125], + [53023,2210], + [53025,95158], + [53027,72697], + [53029,83159], + [53031,31234], + [53033,2188649], + [53035,266414], + [53037,46205], + [53039,21811], + [53041,78200], + [53043,10579], + [53045,63710], + [53047,41742], + [53049,21626], + [53051,13354], + [53053,876764], + [53055,16715], + [53057,125619], + [53059,11837], + [53061,801633], + [53063,506152], + [53065,44730], + [53067,280588], + [53069,4264], + [53071,60567], + [53073,221404], + [53075,49046], + [53077,250193], + [54001,16497], + [54003,114920], + [54005,22349], + [54007,14237], + [54009,22443], + [54011,94958], + [54013,7307], + [54015,8764], + [54017,8560], + [54019,43521], + [54021,8005], + [54023,11670], + [54025,35287], + [54027,23471], + [54029,29448], + [54031,13717], + [54033,67811], + [54035,28976], + [54037,56338], + [54039,183293], + [54041,16226], + [54043,20825], + [54045,32925], + [54047,18456], + [54049,56337], + [54051,31190], + [54053,26801], + [54055,59753], + [54057,27222], + [54059,24127], + [54061,105030], + [54063,13402], + [54065,17686], + [54067,25043], + [54069,42035], + [54071,6996], + [54073,7512], + [54075,8456], + [54077,33679], + [54079,56792], + [54081,75022], + [54083,28785], + [54085,9774], + [54087,14043], + [54089,12993], + [54091,16930], + [54093,6915], + [54095,8795], + [54097,24465], + [54099,40153], + [54101,8372], + [54103,15437], + [54105,5794], + [54107,85104], + [54109,21210], + [55001,19973], + [55003,15500], + [55005,45251], + [55007,15008], + [55009,262052], + [55011,13167], + [55013,15352], + [55015,50067], + [55017,63813], + [55019,34679], + [55021,57248], + [55023,16214], + [55025,536416], + [55027,87786], + [55029,27483], + [55031,43284], + [55033,44693], + [55035,103671], + [55037,4371], + [55039,102548], + [55041,8970], + [55043,51999], + [55045,36851], + [55047,18760], + [55049,23715], + [55051,5671], + [55053,20529], + [55055,84832], + [55057,26576], + [55059,168521], + [55061,20445], + [55063,118274], + [55065,16741], + [55067,19160], + [55069,27838], + [55071,79175], + [55073,135732], + [55075,40310], + [55077,15308], + [55078,4615], + [55079,952085], + [55081,45625], + [55083,37553], + [55085,35254], + [55087,186059], + [55089,88429], + [55091,7254], + [55093,41901], + [55095,43450], + [55097,70474], + [55099,13442], + [55101,196071], + [55103,17516], + [55105,162309], + [55107,14151], + [55109,88703], + [55111,63981], + [55113,16418], + [55115,40935], + [55117,115344], + [55119,20321], + [55121,29472], + [55123,30759], + [55125,21683], + [55127,103082], + [55129,15758], + [55131,135101], + [55133,400621], + [55135,51225], + [55137,24369], + [55139,170414], + [55141,73126], + [56001,38332], + [56003,11906], + [56005,46242], + [56007,15303], + [56009,13809], + [56011,7410], + [56013,39803], + [56015,13378], + [56017,4696], + [56019,8476], + [56021,98327], + [56023,19265], + [56025,79547], + [56027,2397], + [56029,29568], + [56031,8562], + [56033,30210], + [56035,9799], + [56037,43534], + [56039,23265], + [56041,20495], + [56043,8064], + [56045,6927] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-2019.json b/data/regional/united-states/demographics/population/us-population-2019.json new file mode 100644 index 0000000..b800bc3 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population", + "description" : "County population.", + "units" : "people", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2019"], + [1001,55380], + [1003,212830], + [1005,25361], + [1007,22493], + [1009,57681], + [1011,10248], + [1013,19828], + [1015,114618], + [1017,33660], + [1019,25903], + [1021,44055], + [1023,12925], + [1025,24128], + [1027,13337], + [1029,14916], + [1031,51662], + [1033,54771], + [1035,12394], + [1037,10757], + [1039,37200], + [1041,13844], + [1043,82853], + [1045,49277], + [1047,39149], + [1049,71310], + [1051,81144], + [1053,37057], + [1055,102748], + [1057,16494], + [1059,31466], + [1061,26417], + [1063,8324], + [1065,14809], + [1067,17133], + [1069,104702], + [1071,51852], + [1073,659680], + [1075,13885], + [1077,92556], + [1079,33058], + [1081,161152], + [1083,94727], + [1085,10079], + [1087,18708], + [1089,362276], + [1091,19321], + [1093,29866], + [1095,95643], + [1097,414114], + [1099,21270], + [1101,226941], + [1103,119213], + [1105,9293], + [1107,20243], + [1109,33333], + [1111,22647], + [1113,57952], + [1115,87989], + [1117,213432], + [1119,12797], + [1121,80387], + [1123,40541], + [1125,207305], + [1127,64110], + [1129,16541], + [1131,10681], + [1133,23784], + [2013,3385], + [2016,5698], + [2020,293531], + [2050,18134], + [2060,875], + [2068,2246], + [2070,4961], + [2090,99072], + [2100,2518], + [2105,2139], + [2110,32227], + [2122,58464], + [2130,13800], + [2150,13451], + [2158,8250], + [2164,1393], + [2170,105369], + [2180,9988], + [2185,9792], + [2188,7715], + [2195,3257], + [2198,6407], + [2220,8640], + [2230,1107], + [2240,6878], + [2261,9243], + [2275,2502], + [2282,649], + [2290,5377], + [4001,71511], + [4003,125867], + [4005,141274], + [4007,53546], + [4009,37996], + [4011,9522], + [4012,20793], + [4013,4328810], + [4015,207695], + [4017,109270], + [4019,1027207], + [4021,432793], + [4023,46480], + [4025,228067], + [4027,209468], + [5001,17914], + [5003,20270], + [5005,41427], + [5007,265759], + [5009,37331], + [5011,10874], + [5013,5192], + [5015,27965], + [5017,10615], + [5019,22386], + [5021,14889], + [5023,25100], + [5025,8128], + [5027,23776], + [5029,20858], + [5031,107345], + [5033,62739], + [5035,48672], + [5037,16824], + [5039,7279], + [5041,11709], + [5043,18417], + [5045,123624], + [5047,17738], + [5049,12231], + [5051,98555], + [5053,18126], + [5055,44937], + [5057,21842], + [5059,33597], + [5061,13311], + [5063,37427], + [5065,13570], + [5067,17027], + [5069,69282], + [5071,26372], + [5073,6800], + [5075,16549], + [5077,9194], + [5079,13455], + [5081,12347], + [5083,21668], + [5085,72528], + [5087,16211], + [5089,16476], + [5091,43572], + [5093,42126], + [5095,7050], + [5097,8950], + [5099,8351], + [5101,7812], + [5103,23830], + [5105,10355], + [5107,18606], + [5109,10756], + [5111,23896], + [5113,20094], + [5115,63761], + [5117,8189], + [5119,392967], + [5121,17695], + [5123,25900], + [5125,119415], + [5127,10376], + [5129,7908], + [5131,127591], + [5133,17081], + [5135,17139], + [5137,12475], + [5139,39449], + [5141,16642], + [5143,232289], + [5145,78762], + [5147,6533], + [5149,21464], + [6001,1656754], + [6003,1039], + [6005,38429], + [6007,225817], + [6009,45514], + [6011,21454], + [6013,1142251], + [6015,27495], + [6017,188563], + [6019,984521], + [6021,27976], + [6023,135940], + [6025,180701], + [6027,17977], + [6029,887641], + [6031,150691], + [6033,64195], + [6035,30818], + [6037,10081570], + [6039,155433], + [6041,259943], + [6043,17420], + [6045,87224], + [6047,271382], + [6049,8907], + [6051,14310], + [6053,433410], + [6055,139623], + [6057,99244], + [6059,3168044], + [6061,385512], + [6063,18660], + [6065,2411439], + [6067,1524553], + [6069,60376], + [6071,2149031], + [6073,3316073], + [6075,874961], + [6077,742603], + [6079,282165], + [6081,767423], + [6083,444829], + [6085,1927470], + [6087,273962], + [6089,179212], + [6091,3040], + [6093,43468], + [6095,441829], + [6097,499772], + [6099,543194], + [6101,96109], + [6103,63912], + [6105,12700], + [6107,461898], + [6109,54045], + [6111,847263], + [6113,217352], + [6115,76360], + [8001,504108], + [8003,16107], + [8005,644560], + [8007,13253], + [8009,3561], + [8011,5787], + [8013,322510], + [8014,67886], + [8015,19557], + [8017,2026], + [8019,9495], + [8021,8128], + [8023,3745], + [8025,5754], + [8027,4776], + [8029,30565], + [8031,705576], + [8033,1857], + [8035,336041], + [8037,54681], + [8039,25717], + [8041,698974], + [8043,47321], + [8045,59055], + [8047,6018], + [8049,15303], + [8051,16802], + [8053,857], + [8055,6679], + [8057,1261], + [8059,574798], + [8061,1489], + [8063,7447], + [8065,7751], + [8067,55617], + [8069,344786], + [8071,14266], + [8073,5585], + [8075,22380], + [8077,151218], + [8079,824], + [8081,13127], + [8083,26031], + [8085,41686], + [8087,28517], + [8089,18282], + [8091,4796], + [8093,17867], + [8095,4290], + [8097,17926], + [8099,12022], + [8101,165982], + [8103,6384], + [8105,11305], + [8107,25072], + [8109,6592], + [8111,589], + [8113,8049], + [8115,2322], + [8117,30649], + [8119,24524], + [8121,4868], + [8123,305345], + [8125,10003], + [9001,943926], + [9003,893561], + [9005,182002], + [9007,163053], + [9009,857513], + [9011,267390], + [9013,151063], + [9015,116566], + [10001,176699], + [10003,556165], + [10005,224384], + [11001,692683], + [12001,265443], + [12003,28211], + [12005,182161], + [12007,27317], + [12009,585507], + [12011,1926205], + [12013,14362], + [12015,181067], + [12017,145169], + [12019,211405], + [12021,371453], + [12023,69968], + [12027,36903], + [12029,16589], + [12031,936186], + [12033,313491], + [12035,109801], + [12037,11811], + [12039,45945], + [12041,17953], + [12043,13516], + [12045,15576], + [12047,14326], + [12049,27131], + [12051,40732], + [12053,186313], + [12055,103437], + [12057,1422278], + [12059,19432], + [12061,153989], + [12063,47945], + [12065,14161], + [12067,8637], + [12069,345867], + [12071,737468], + [12073,289770], + [12075,40403], + [12077,8345], + [12079,18460], + [12081,384213], + [12083,353526], + [12085,159065], + [12086,2699428], + [12087,75798], + [12089,83098], + [12091,203794], + [12093,41144], + [12095,1349746], + [12097,351955], + [12099,1465027], + [12101,524602], + [12103,964666], + [12105,686218], + [12107,73252], + [12109,244674], + [12111,312947], + [12113,174755], + [12115,419496], + [12117,461402], + [12119,125044], + [12121,44046], + [12123,21870], + [12125,15303], + [12127,536487], + [12129,32321], + [12131,68262], + [12133,24764], + [13001,18440], + [13003,8239], + [13005,11201], + [13007,3132], + [13009,45111], + [13011,18708], + [13013,78991], + [13015,104919], + [13017,17033], + [13019,19152], + [13021,153200], + [13023,12807], + [13025,18756], + [13027,15590], + [13029,37063], + [13031,76120], + [13033,22520], + [13035,24090], + [13037,6365], + [13039,53231], + [13043,10812], + [13045,117183], + [13047,66700], + [13049,13040], + [13051,288496], + [13053,10560], + [13055,24812], + [13057,247515], + [13059,126176], + [13061,2951], + [13063,283538], + [13065,6686], + [13067,751218], + [13069,43021], + [13071,45486], + [13073,150705], + [13075,17177], + [13077,143260], + [13079,12325], + [13081,22713], + [13083,16197], + [13085,24536], + [13087,26682], + [13089,749323], + [13091,20829], + [13093,13736], + [13095,89703], + [13097,143316], + [13099,10312], + [13101,3981], + [13103,60477], + [13105,19166], + [13107,22533], + [13109,10687], + [13111,25395], + [13113,112303], + [13115,97369], + [13117,228383], + [13119,22766], + [13121,1036200], + [13123,30414], + [13125,2996], + [13127,84470], + [13129,57202], + [13131,24828], + [13133,17349], + [13135,915046], + [13137,44626], + [13139,198667], + [13141,8515], + [13143,29227], + [13145,34105], + [13147,25773], + [13149,11736], + [13151,225356], + [13153,153507], + [13155,9320], + [13157,67885], + [13159,13916], + [13161,15036], + [13163,15618], + [13165,8793], + [13167,9691], + [13169,28579], + [13171,18672], + [13173,10380], + [13175,47405], + [13177,29502], + [13179,61349], + [13181,7856], + [13183,18692], + [13185,115364], + [13187,32402], + [13189,21455], + [13191,14174], + [13193,13305], + [13195,29218], + [13197,8432], + [13199,21106], + [13201,5787], + [13205,22244], + [13207,27171], + [13209,9058], + [13211,18507], + [13213,39724], + [13215,195739], + [13217,108079], + [13219,38132], + [13221,14931], + [13223,159825], + [13225,27145], + [13227,31387], + [13229,19250], + [13231,18327], + [13233,41908], + [13235,11216], + [13237,21691], + [13239,2289], + [13241,16645], + [13243,6973], + [13245,201852], + [13247,89717], + [13249,5221], + [13251,13989], + [13253,8321], + [13255,65306], + [13257,25750], + [13259,6293], + [13261,30064], + [13263,6321], + [13265,1611], + [13267,25382], + [13269,8116], + [13271,16035], + [13273,8737], + [13275,44630], + [13277,40541], + [13279,26972], + [13281,11617], + [13283,6795], + [13285,69919], + [13287,7943], + [13289,8229], + [13291,23288], + [13293,26236], + [13295,69039], + [13297,91442], + [13299,35593], + [13301,5297], + [13303,20436], + [13305,29788], + [13307,2610], + [13309,7928], + [13311,29489], + [13313,104237], + [13315,8824], + [13317,9844], + [13319,9010], + [13321,20494], + [15001,199459], + [15003,984821], + [15005,66], + [15007,71769], + [15009,165979], + [16001,456849], + [16003,4097], + [16005,85765], + [16007,6000], + [16009,9138], + [16011,45839], + [16013,22373], + [16015,7378], + [16017,43611], + [16019,114392], + [16021,11845], + [16023,2581], + [16025,1048], + [16027,217633], + [16029,6953], + [16031,23690], + [16033,913], + [16035,8673], + [16037,4169], + [16039,26743], + [16041,13464], + [16043,13020], + [16045,17331], + [16047,15148], + [16049,16411], + [16051,28534], + [16053,23730], + [16055,157322], + [16057,39505], + [16059,7847], + [16061,3838], + [16063,5350], + [16065,39100], + [16067,20705], + [16069,40217], + [16071,4385], + [16073,11552], + [16075,23260], + [16077,7671], + [16079,12609], + [16081,11426], + [16083,84869], + [16085,10709], + [16087,10057], + [17001,66085], + [17003,6260], + [17005,16589], + [17007,53537], + [17009,6628], + [17011,33122], + [17013,4830], + [17015,14466], + [17017,12493], + [17019,209922], + [17021,32931], + [17023,15716], + [17025,13287], + [17027,37634], + [17029,51353], + [17031,5198275], + [17033,18972], + [17035,10836], + [17037,104366], + [17039,15932], + [17041,19623], + [17043,929060], + [17045,17407], + [17047,6455], + [17049,34137], + [17051,21565], + [17053,13270], + [17055,38923], + [17057,35092], + [17059,5064], + [17061,13132], + [17063,50666], + [17065,8176], + [17067,17983], + [17069,3939], + [17071,6809], + [17073,49267], + [17075,27812], + [17077,57977], + [17079,9594], + [17081,37985], + [17083,21937], + [17085,21588], + [17087,12494], + [17089,531376], + [17091,110637], + [17093,126054], + [17095,50508], + [17097,701473], + [17099,109737], + [17101,16033], + [17103,34389], + [17105,36040], + [17107,29003], + [17109,30479], + [17111,307714], + [17113,172578], + [17115,105528], + [17117,45463], + [17119,264776], + [17121,37743], + [17123,11679], + [17125,13621], + [17127,14219], + [17129,12306], + [17131,15589], + [17133,34168], + [17135,28828], + [17137,34247], + [17139,14641], + [17141,51025], + [17143,182770], + [17145,21251], + [17147,16401], + [17149,15672], + [17151,4203], + [17153,5510], + [17155,5721], + [17157,32295], + [17159,15766], + [17161,143873], + [17163,262338], + [17165,23994], + [17167,196861], + [17169,6953], + [17171,5005], + [17173,21737], + [17175,5447], + [17177,45093], + [17179,133195], + [17181,16968], + [17183,77563], + [17185,11546], + [17187,17146], + [17189,14058], + [17191,16402], + [17193,13868], + [17195,56016], + [17197,689315], + [17199,67102], + [17201,284819], + [17203,38700], + [18001,35376], + [18003,372575], + [18005,82481], + [18007,8677], + [18009,12013], + [18011,65544], + [18013,15064], + [18015,20074], + [18017,37880], + [18019,116507], + [18021,26234], + [18023,32273], + [18025,10569], + [18027,33120], + [18029,49479], + [18031,26562], + [18033,42927], + [18035,115020], + [18037,42543], + [18039,204558], + [18041,23194], + [18043,77320], + [18045,16430], + [18047,22774], + [18049,20096], + [18051,33656], + [18053,66452], + [18055,32159], + [18057,323117], + [18059,75164], + [18061,39940], + [18063,163799], + [18065,48255], + [18067,82331], + [18069,36359], + [18071,44025], + [18073,33447], + [18075,20840], + [18077,32201], + [18079,27710], + [18081,153716], + [18083,37065], + [18085,79035], + [18087,39193], + [18089,485707], + [18091,110154], + [18093,45548], + [18095,129455], + [18097,951869], + [18099,46461], + [18101,10212], + [18103,35815], + [18105,146461], + [18107,38287], + [18109,69922], + [18111,13992], + [18113,47506], + [18115,5874], + [18117,19545], + [18119,20835], + [18121,16946], + [18123,19102], + [18125,12378], + [18127,168636], + [18129,25560], + [18131,12559], + [18133,37384], + [18135,24926], + [18137,28391], + [18139,16641], + [18141,270216], + [18143,23759], + [18145,44438], + [18147,20447], + [18149,22952], + [18151,34453], + [18153,20730], + [18155,10685], + [18157,191553], + [18159,15162], + [18161,7113], + [18163,181291], + [18165,15539], + [18167,107459], + [18169,31389], + [18171,8237], + [18173,62280], + [18175,27848], + [18177,66342], + [18179,28011], + [18181,24149], + [18183,33730], + [19001,7085], + [19003,3670], + [19005,13813], + [19007,12452], + [19009,5571], + [19011,25636], + [19013,132393], + [19015,26370], + [19017,24864], + [19019,21118], + [19021,20058], + [19023,14628], + [19025,9744], + [19027,20281], + [19029,13091], + [19031,18457], + [19033,42834], + [19035,11343], + [19037,12026], + [19039,9360], + [19041,16211], + [19043,17625], + [19045,46909], + [19047,17034], + [19049,87099], + [19051,8920], + [19053,7979], + [19055,17183], + [19057,39386], + [19059,17127], + [19061,96982], + [19063,9438], + [19065,19803], + [19067,15786], + [19069,10162], + [19071,6946], + [19073,8950], + [19075,12299], + [19077,10669], + [19079,14997], + [19081,10802], + [19083,17061], + [19085,14089], + [19087,19941], + [19089,9226], + [19091,9554], + [19093,6901], + [19095,16189], + [19097,19401], + [19099,36971], + [19101,18148], + [19103,148577], + [19105,20559], + [19107,10188], + [19109,14978], + [19111,34227], + [19113,223861], + [19115,11178], + [19117,8583], + [19119,11776], + [19121,16012], + [19123,22164], + [19125,33172], + [19127,39964], + [19129,15034], + [19131,10608], + [19133,8730], + [19135,7807], + [19137,10053], + [19139,42889], + [19141,13835], + [19143,6052], + [19145,15268], + [19147,9003], + [19149,25068], + [19151,6797], + [19153,479612], + [19155,93393], + [19157,18388], + [19159,4964], + [19161,9802], + [19163,172446], + [19165,11606], + [19167,34827], + [19169,96941], + [19171,17032], + [19173,6167], + [19175,12358], + [19177,7150], + [19179,35141], + [19181,50076], + [19183,22100], + [19185,6429], + [19187,36545], + [19189,10534], + [19191,20262], + [19193,102586], + [19195,7445], + [19197,12739], + [20001,12556], + [20003,7835], + [20005,16268], + [20007,4624], + [20009,26453], + [20011,14608], + [20013,9626], + [20015,66698], + [20017,2637], + [20019,3323], + [20021,20179], + [20023,2665], + [20025,2026], + [20027,8082], + [20029,8938], + [20031,8254], + [20033,1740], + [20035,35351], + [20037,38968], + [20039,2860], + [20041,18828], + [20043,7684], + [20045,120290], + [20047,2869], + [20049,2523], + [20051,28775], + [20053,6231], + [20055,36750], + [20057,34179], + [20059,25558], + [20061,34025], + [20063,2644], + [20065,2519], + [20067,7467], + [20069,6039], + [20071,1185], + [20073,6081], + [20075,2591], + [20077,5594], + [20079,34503], + [20081,4018], + [20083,1876], + [20085,13266], + [20087,18890], + [20089,2885], + [20091,591506], + [20093,3907], + [20095,7340], + [20097,2505], + [20099,20119], + [20101,1564], + [20103,80745], + [20105,3044], + [20107,9671], + [20109,2805], + [20111,33251], + [20113,28567], + [20115,11964], + [20117,9749], + [20119,4180], + [20121,33417], + [20123,6145], + [20125,32521], + [20127,5566], + [20129,2754], + [20131,10121], + [20133,16108], + [20135,2876], + [20137,5446], + [20139,15881], + [20141,3530], + [20143,5822], + [20145,6629], + [20147,5340], + [20149,23847], + [20151,9452], + [20153,2502], + [20155,62765], + [20157,4658], + [20159,9658], + [20161,75056], + [20163,5053], + [20165,3022], + [20167,6948], + [20169,54701], + [20171,4917], + [20173,513375], + [20175,22349], + [20177,177852], + [20179,2506], + [20181,5938], + [20183,3627], + [20185,4181], + [20187,2052], + [20189,5603], + [20191,23114], + [20193,7810], + [20195,2840], + [20197,6889], + [20199,1574], + [20201,5493], + [20203,2130], + [20205,8688], + [20207,3157], + [20209,164861], + [21001,19222], + [21003,20944], + [21005,22409], + [21007,8032], + [21009,43884], + [21011,12355], + [21013,26791], + [21015,130820], + [21017,20058], + [21019,47682], + [21021,29972], + [21023,8305], + [21025,12977], + [21027,20176], + [21029,80171], + [21031,12764], + [21033,12702], + [21035,38837], + [21037,92861], + [21039,4784], + [21041,10671], + [21043,27159], + [21045,15885], + [21047,71414], + [21049,35971], + [21051,20368], + [21053,10193], + [21055,9000], + [21057,6697], + [21059,100474], + [21061,12138], + [21063,7510], + [21065,14224], + [21067,320601], + [21069,14513], + [21071,36456], + [21073,50529], + [21075,6130], + [21077,8737], + [21079,17445], + [21081,24951], + [21083,37248], + [21085,26247], + [21087,10979], + [21089,35555], + [21091,8720], + [21093,108527], + [21095,26699], + [21097,18722], + [21099,18729], + [21101,45829], + [21103,15911], + [21105,4510], + [21107,45331], + [21109,13369], + [21111,767419], + [21113,53032], + [21115,22634], + [21117,165668], + [21119,15260], + [21121,31365], + [21123,14204], + [21125,60357], + [21127,15671], + [21129,6881], + [21131,10283], + [21133,22295], + [21135,13417], + [21137,24476], + [21139,9235], + [21141,26902], + [21143,8271], + [21145,65268], + [21147,17465], + [21149,9283], + [21151,90802], + [21153,12491], + [21155,19244], + [21157,31192], + [21159,11648], + [21161,17112], + [21163,28182], + [21165,6443], + [21167,21592], + [21169,10036], + [21171,10627], + [21173,27884], + [21175,13288], + [21177,30951], + [21179,45650], + [21181,7153], + [21183,24071], + [21185,65967], + [21187,10796], + [21189,4442], + [21191,14572], + [21193,26624], + [21195,59497], + [21197,12304], + [21199,64350], + [21201,2123], + [21203,16820], + [21205,24507], + [21207,17778], + [21209,54667], + [21211,47325], + [21213,18183], + [21215,18680], + [21217,25571], + [21219,12316], + [21221,14449], + [21223,8558], + [21225,14638], + [21227,128652], + [21229,12023], + [21231,20546], + [21233,13068], + [21235,36131], + [21237,7207], + [21239,26318], + [22001,62457], + [22003,25618], + [22005,123114], + [22007,22478], + [22009,40669], + [22011,37043], + [22013,13564], + [22015,126499], + [22017,245831], + [22019,201619], + [22021,9992], + [22023,6930], + [22025,9766], + [22027,15985], + [22029,19778], + [22031,27289], + [22033,443763], + [22035,7096], + [22037,19371], + [22039,33589], + [22041,20238], + [22043,22340], + [22045,71887], + [22047,32822], + [22049,15879], + [22051,434850], + [22053,31441], + [22055,241973], + [22057,98108], + [22059,14936], + [22061,47246], + [22063,138928], + [22065,11306], + [22067,25610], + [22069,38769], + [22071,390845], + [22073,155494], + [22075,23338], + [22077,22016], + [22079,130970], + [22081,8565], + [22083,20350], + [22085,23991], + [22087,46266], + [22089,52773], + [22091,10297], + [22093,21308], + [22095,43242], + [22097,83172], + [22099,53732], + [22101,50968], + [22103,255155], + [22105,132057], + [22107,4561], + [22109,112054], + [22111,22353], + [22113,59865], + [22115,49646], + [22117,46435], + [22119,39242], + [22121,26101], + [22123,11041], + [22125,15428], + [22127,14313], + [23001,107602], + [23003,67809], + [23005,292307], + [23007,29982], + [23009,54601], + [23011,121753], + [23013,39759], + [23015,34201], + [23017,57550], + [23019,151774], + [23021,16836], + [23023,35452], + [23025,50520], + [23027,39539], + [23029,31491], + [23031,204316], + [24001,71445], + [24003,571275], + [24005,828018], + [24009,91511], + [24011,33049], + [24013,167699], + [24015,102552], + [24017,159428], + [24019,32138], + [24021,251422], + [24023,29235], + [24025,252222], + [24027,318855], + [24029,19536], + [24031,1043530], + [24033,908670], + [24035,49632], + [24037,112290], + [24039,25729], + [24041,37167], + [24043,150109], + [24045,102539], + [24047,51765], + [24510,609032], + [25001,213496], + [25003,126425], + [25005,561037], + [25007,17312], + [25009,783676], + [25011,70577], + [25013,467871], + [25015,161032], + [25017,1600842], + [25019,11168], + [25021,700437], + [25023,515303], + [25025,796605], + [25027,824772], + [26001,10353], + [26003,9151], + [26005,116143], + [26007,28520], + [26009,23206], + [26011,15070], + [26013,8421], + [26015,60540], + [26017,104104], + [26019,17615], + [26021,154133], + [26023,43513], + [26025,134212], + [26027,51523], + [26029,26188], + [26031,25418], + [26033,37629], + [26035,30651], + [26037,78389], + [26039,13892], + [26041,36026], + [26043,25439], + [26045,109456], + [26047,33104], + [26049,407875], + [26051,25279], + [26053,15061], + [26055,92181], + [26057,40916], + [26059,45757], + [26061,36070], + [26063,31349], + [26065,290587], + [26067,64300], + [26069,25197], + [26071,11152], + [26073,70688], + [26075,158636], + [26077,262745], + [26079,17585], + [26081,648121], + [26083,2111], + [26085,11852], + [26087,88038], + [26089,21652], + [26091,98381], + [26093,189754], + [26095,6338], + [26097,10780], + [26099,870325], + [26101,24457], + [26103,66686], + [26105,28954], + [26107,43251], + [26109,23074], + [26111,83355], + [26113,15028], + [26115,149727], + [26117,63413], + [26119,9265], + [26121,173297], + [26123,48366], + [26125,1253185], + [26127,26416], + [26129,20898], + [26131,5877], + [26133,23290], + [26135,8248], + [26137,24490], + [26139,286558], + [26141,12714], + [26143,23851], + [26145,191821], + [26147,159247], + [26149,60836], + [26151,41295], + [26153,8048], + [26155,68340], + [26157,52939], + [26159,75358], + [26161,367000], + [26163,1757299], + [26165,33256], + [27001,15834], + [27003,350253], + [27005,34011], + [27007,46403], + [27009,40129], + [27011,4996], + [27013,66795], + [27015,25163], + [27017,35633], + [27019,101949], + [27021,29268], + [27023,11953], + [27025,55315], + [27027,63446], + [27029,8821], + [27031,5376], + [27033,11299], + [27035,64217], + [27037,421453], + [27039,20669], + [27041,37513], + [27043,13801], + [27045,20949], + [27047,30463], + [27049,46246], + [27051,5935], + [27053,1245837], + [27055,18648], + [27057,21019], + [27059,39430], + [27061,45141], + [27063,9954], + [27065,16089], + [27067,42841], + [27069,4311], + [27071,12515], + [27073,6719], + [27075,10560], + [27077,3771], + [27079,28242], + [27081,5677], + [27083,25758], + [27085,35832], + [27087,5501], + [27089,9372], + [27091,19852], + [27093,23105], + [27095,25865], + [27097,33064], + [27099,39807], + [27101,8296], + [27103,33954], + [27105,21734], + [27107,6520], + [27109,154809], + [27111,58195], + [27113,14183], + [27115,29223], + [27117,9191], + [27119,31521], + [27121,11048], + [27123,544442], + [27125,4015], + [27127,15261], + [27129,14652], + [27131,66185], + [27133,9402], + [27135,15361], + [27137,199759], + [27139,145275], + [27141,94463], + [27143,14892], + [27145,158452], + [27147,36683], + [27149,9789], + [27151,9359], + [27153,24494], + [27155,3311], + [27157,21537], + [27159,13654], + [27161,18740], + [27163,255938], + [27165,10972], + [27167,6291], + [27169,50725], + [27171,134438], + [27173,9814], + [28001,31266], + [28003,37090], + [28005,12412], + [28007,18437], + [28009,8232], + [28011,31848], + [28013,14499], + [28015,10070], + [28017,17193], + [28019,8277], + [28021,9089], + [28023,15770], + [28025,19640], + [28027,23255], + [28029,28501], + [28031,18978], + [28033,178975], + [28035,75224], + [28037,7733], + [28039,23917], + [28041,13645], + [28043,21088], + [28045,46961], + [28047,204502], + [28049,238797], + [28051,17737], + [28053,8389], + [28055,1361], + [28057,23462], + [28059,142376], + [28061,16505], + [28063,7225], + [28065,11339], + [28067,68352], + [28069,9943], + [28071,53590], + [28073,61969], + [28075,76279], + [28077,12633], + [28079,22792], + [28081,85072], + [28083,29222], + [28085,34320], + [28087,59150], + [28089,104562], + [28091,24990], + [28093,35599], + [28095,35673], + [28097,10068], + [28099,29332], + [28101,21360], + [28103,10700], + [28105,49512], + [28107,34190], + [28109,55219], + [28111,12006], + [28113,39532], + [28115,31618], + [28117,25255], + [28119,7187], + [28121,152677], + [28123,28332], + [28125,4404], + [28127,26888], + [28129,16009], + [28131,18276], + [28133,26168], + [28135,14158], + [28137,28404], + [28139,22018], + [28141,19441], + [28143,9988], + [28145,28507], + [28147,14477], + [28149,46519], + [28151,46057], + [28153,20373], + [28155,9768], + [28157,8875], + [28159,18229], + [28161,12367], + [28163,28565], + [29001,25369], + [29003,17503], + [29005,5229], + [29007,25644], + [29009,35530], + [29011,11797], + [29013,16296], + [29015,19107], + [29017,12225], + [29019,177651], + [29021,88460], + [29023,42656], + [29025,9039], + [29027,44889], + [29029,45466], + [29031,78491], + [29033,8781], + [29035,6147], + [29037,103597], + [29039,14043], + [29041,7483], + [29043,85658], + [29045,6779], + [29047,242516], + [29049,20500], + [29051,76723], + [29053,17660], + [29055,24154], + [29057,7578], + [29059,16617], + [29061,8295], + [29063,12526], + [29065,15545], + [29067,13306], + [29069,30027], + [29071,103191], + [29073,14711], + [29075,6616], + [29077,289756], + [29079,9992], + [29081,8491], + [29083,21735], + [29085,9404], + [29087,4432], + [29089,10058], + [29091,40104], + [29093,10164], + [29095,696216], + [29097,119920], + [29099,223951], + [29101,53682], + [29103,3947], + [29105,35531], + [29107,32597], + [29109,38204], + [29111,9955], + [29113,56477], + [29115,12113], + [29117,15126], + [29119,22782], + [29121,15199], + [29123,12179], + [29125,8803], + [29127,28608], + [29129,3644], + [29131,25201], + [29133,13574], + [29135,16046], + [29137,8629], + [29139,11487], + [29141,20271], + [29143,17560], + [29145,58180], + [29147,22359], + [29149,10647], + [29151,13615], + [29153,9207], + [29155,16663], + [29157,19191], + [29159,42355], + [29161,44630], + [29163,18455], + [29165,100682], + [29167,31748], + [29169,52425], + [29171,4781], + [29173,10234], + [29175,24878], + [29177,22875], + [29179,6290], + [29181,13567], + [29183,394290], + [29185,9370], + [29186,17848], + [29187,66643], + [29189,996919], + [29195,22976], + [29197,4555], + [29199,4902], + [29201,38633], + [29203,8217], + [29205,6013], + [29207,29377], + [29209,31615], + [29211,6247], + [29213,55114], + [29215,25604], + [29217,20595], + [29219,34453], + [29221,24860], + [29223,13195], + [29225,38655], + [29227,2027], + [29229,18203], + [29510,308174], + [30001,9415], + [30003,13387], + [30005,6719], + [30007,5945], + [30009,10597], + [30011,1331], + [30013,81625], + [30015,5732], + [30017,11729], + [30019,1730], + [30021,9017], + [30023,9106], + [30025,2921], + [30027,11221], + [30029,99899], + [30031,108063], + [30033,1036], + [30035,13732], + [30037,728], + [30039,3311], + [30041,16436], + [30043,11917], + [30045,1954], + [30047,30013], + [30049,67805], + [30051,2351], + [30053,19537], + [30055,1790], + [30057,8302], + [30059,1888], + [30061,4251], + [30063,117309], + [30065,4766], + [30067,16352], + [30069,453], + [30071,4077], + [30073,5994], + [30075,1607], + [30077,6854], + [30079,1252], + [30081,42512], + [30083,11199], + [30085,11175], + [30087,9152], + [30089,11681], + [30091,3483], + [30093,34770], + [30095,9466], + [30097,3670], + [30099,6086], + [30101,4892], + [30103,668], + [30105,7471], + [30107,2142], + [30109,1122], + [30111,159008], + [31001,31587], + [31003,6341], + [31005,427], + [31007,722], + [31009,477], + [31011,5279], + [31013,10970], + [31015,1937], + [31017,3015], + [31019,49209], + [31021,6510], + [31023,8029], + [31025,25888], + [31027,8498], + [31029,3783], + [31031,5779], + [31033,9604], + [31035,6203], + [31037,10714], + [31039,8952], + [31041,10826], + [31043,20173], + [31045,8810], + [31047,23733], + [31049,1831], + [31051,5719], + [31053,36665], + [31055,560617], + [31057,1913], + [31059,5547], + [31061,2987], + [31063,2640], + [31065,4747], + [31067,21594], + [31069,1864], + [31071,2001], + [31073,2013], + [31075,722], + [31077,2382], + [31079,61265], + [31081,9215], + [31083,3415], + [31085,893], + [31087,2815], + [31089,10177], + [31091,693], + [31093,6417], + [31095,7144], + [31097,5161], + [31099,6529], + [31101,8068], + [31103,760], + [31105,3633], + [31107,8426], + [31109,313158], + [31111,35263], + [31113,927], + [31115,605], + [31117,395], + [31119,35080], + [31121,7798], + [31123,4781], + [31125,3544], + [31127,6973], + [31129,4244], + [31131,15949], + [31133,2649], + [31135,2901], + [31137,9100], + [31139,7144], + [31141,33174], + [31143,5225], + [31145,10768], + [31147,7961], + [31149,1414], + [31151,14270], + [31153,181232], + [31155,21165], + [31157,36074], + [31159,17171], + [31161,5231], + [31163,3033], + [31165,1219], + [31167,5957], + [31169,5057], + [31171,645], + [31173,7181], + [31175,4206], + [31177,20361], + [31179,9332], + [31181,3537], + [31183,783], + [31185,13745], + [32001,24259], + [32003,2182004], + [32005,48132], + [32007,52297], + [32009,969], + [32011,1859], + [32013,16828], + [32015,5643], + [32017,5180], + [32019,54380], + [32021,4460], + [32023,44380], + [32027,6615], + [32029,3988], + [32031,456936], + [32033,9679], + [32510,54773], + [33001,60887], + [33003,48138], + [33005,76042], + [33007,31741], + [33009,89777], + [33011,413035], + [33013,149917], + [33015,306359], + [33017,129124], + [33019,43104], + [34001,266105], + [34003,930390], + [34005,445702], + [34007,506738], + [34009,93086], + [34011,151906], + [34013,795404], + [34015,291165], + [34017,670046], + [34019,124823], + [34021,367922], + [34023,825920], + [34025,621659], + [34027,493379], + [34029,596415], + [34031,503637], + [34033,62990], + [34035,329838], + [34037,141483], + [34039,554033], + [34041,105862], + [35001,677858], + [35003,3526], + [35005,65144], + [35006,26891], + [35007,12168], + [35009,49732], + [35011,2040], + [35013,216069], + [35015,57732], + [35017,27669], + [35019,4353], + [35021,441], + [35023,4297], + [35025,70277], + [35027,19461], + [35028,18625], + [35029,24083], + [35031,72438], + [35033,4536], + [35035,66137], + [35037,8326], + [35039,39159], + [35041,18888], + [35043,142704], + [35045,126515], + [35047,27738], + [35049,149293], + [35051,11031], + [35053,16858], + [35055,32786], + [35057,15519], + [35059,4133], + [35061,76027], + [36001,306968], + [36003,46688], + [36005,1435068], + [36007,193188], + [36009,77121], + [36011,77425], + [36013,128496], + [36015,84895], + [36017,47909], + [36019,80583], + [36021,60371], + [36023,47865], + [36025,44995], + [36027,293754], + [36029,919355], + [36031,37459], + [36033,50477], + [36035,53646], + [36037,57808], + [36039,47424], + [36041,4515], + [36043,62057], + [36045,112842], + [36047,2589974], + [36049,26572], + [36051,63591], + [36053,71205], + [36055,743341], + [36057,49302], + [36059,1356509], + [36061,1631993], + [36063,210820], + [36065,229959], + [36067,462872], + [36069,109511], + [36071,380085], + [36073,40904], + [36075,118339], + [36077,59972], + [36079,98787], + [36081,2287388], + [36083,159185], + [36085,474893], + [36087,324422], + [36089,108913], + [36091,228502], + [36093,154859], + [36095,31222], + [36097,17920], + [36099,34390], + [36101,96422], + [36103,1483832], + [36105,75116], + [36107,48686], + [36109,102642], + [36111,178665], + [36113,64276], + [36115,61616], + [36117,90519], + [36119,968890], + [36121,40305], + [36123,25011], + [37001,163324], + [37003,37213], + [37005,11008], + [37007,24902], + [37009,26863], + [37011,17506], + [37013,47168], + [37015,19380], + [37017,33407], + [37019,131815], + [37021,256886], + [37023,89968], + [37025,206615], + [37027,81884], + [37029,10551], + [37031,69070], + [37033,22684], + [37035,157613], + [37037,71338], + [37039,27969], + [37041,14097], + [37043,10946], + [37045,97282], + [37047,56068], + [37049,102491], + [37051,332861], + [37053,26363], + [37055,36222], + [37057,165381], + [37059,42257], + [37061,58967], + [37063,311848], + [37065,52648], + [37067,375195], + [37069,66362], + [37071,219271], + [37073,11548], + [37075,8509], + [37077,59328], + [37079,21033], + [37081,527868], + [37083,51190], + [37085,132283], + [37087,61053], + [37089,114913], + [37091,24012], + [37093,53957], + [37095,5213], + [37097,175538], + [37099,42938], + [37101,196870], + [37103,9594], + [37105,60481], + [37107,56756], + [37109,82919], + [37111,45227], + [37113,34813], + [37115,21499], + [37117,22849], + [37119,1074475], + [37121,15004], + [37123,27252], + [37125,97294], + [37127,94030], + [37129,227938], + [37131,19946], + [37133,195069], + [37135,144836], + [37137,12701], + [37139,39514], + [37141,60399], + [37143,13430], + [37145,39345], + [37147,178433], + [37149,20557], + [37151,143118], + [37153,44997], + [37155,132596], + [37157,91077], + [37159,140296], + [37161,66599], + [37163,63385], + [37165,35076], + [37167,61588], + [37169,45781], + [37171,71971], + [37173,14260], + [37175,33775], + [37177,4095], + [37179,231053], + [37181,44479], + [37183,1069079], + [37185,19898], + [37187,11922], + [37189,54925], + [37191,123603], + [37193,68469], + [37195,81435], + [37197,37602], + [37199,17760], + [38001,2311], + [38003,10706], + [38005,6873], + [38007,922], + [38009,6502], + [38011,3148], + [38013,2182], + [38015,94793], + [38017,176975], + [38019,3803], + [38021,4938], + [38023,2335], + [38025,4395], + [38027,2301], + [38029,3310], + [38031,3260], + [38033,1845], + [38035,70224], + [38037,2353], + [38039,2409], + [38041,2547], + [38043,2466], + [38045,4125], + [38047,1872], + [38049,5878], + [38051,2597], + [38053,13334], + [38055,9584], + [38057,8462], + [38059,30868], + [38061,10321], + [38063,2894], + [38065,1842], + [38067,6947], + [38069,4126], + [38071,11583], + [38073,5314], + [38075,2442], + [38077,16254], + [38079,14511], + [38081,3872], + [38083,1409], + [38085,4373], + [38087,742], + [38089,31081], + [38091,1744], + [38093,20965], + [38095,2224], + [38097,8008], + [38099,10751], + [38101,68812], + [38103,3976], + [38105,35208], + [39001,27776], + [39003,103175], + [39005,53536], + [39007,97830], + [39009,65917], + [39011,45729], + [39013,68024], + [39015,43572], + [39017,380019], + [39019,27332], + [39021,38845], + [39023,134726], + [39025,204275], + [39027,41957], + [39029,103190], + [39031,36585], + [39033,41821], + [39035,1247451], + [39037,51513], + [39039,38160], + [39041,201135], + [39043,74780], + [39045,154457], + [39047,28620], + [39049,1290360], + [39051,42253], + [39053,30088], + [39055,93843], + [39057,166502], + [39059,39111], + [39061,813589], + [39063,75837], + [39065,31425], + [39067,15211], + [39069,27208], + [39071,43016], + [39073,28390], + [39075,43901], + [39077,58339], + [39079,32450], + [39081,66371], + [39083,61481], + [39085,229954], + [39087,60184], + [39089,173750], + [39091,45316], + [39093,307670], + [39095,431102], + [39097,44135], + [39099,229961], + [39101,65299], + [39103,177980], + [39105,23078], + [39107,40884], + [39109,105371], + [39111,13942], + [39113,531670], + [39115,14640], + [39117,35043], + [39119,86131], + [39121,14416], + [39123,40632], + [39125,18809], + [39127,36022], + [39129,57762], + [39131,28000], + [39133,162511], + [39135,41093], + [39137,33911], + [39139,121100], + [39141,76948], + [39143,59029], + [39145,76040], + [39147,55351], + [39149,48749], + [39151,372404], + [39153,541334], + [39155,200367], + [39157,92335], + [39159,56707], + [39161,28261], + [39163,13083], + [39165,229132], + [39167,60426], + [39169,116099], + [39171,36816], + [39173,130150], + [39175,22000], + [40001,22220], + [40003,5847], + [40005,13823], + [40007,5377], + [40009,22268], + [40011,9556], + [40013,46457], + [40015,29242], + [40017,140455], + [40019,48319], + [40021,48664], + [40023,14807], + [40025,2174], + [40027,279274], + [40029,5581], + [40031,121762], + [40033,5858], + [40035,14390], + [40037,71427], + [40039,29152], + [40041,42433], + [40043,4922], + [40045,4015], + [40047,61898], + [40049,27835], + [40051,55071], + [40053,4397], + [40055,5861], + [40057,2710], + [40059,3760], + [40061,12687], + [40063,13372], + [40065,25063], + [40067,6158], + [40069,11064], + [40071,44402], + [40073,15694], + [40075,8886], + [40077,10348], + [40079,50026], + [40081,34895], + [40083,46683], + [40085,10063], + [40087,39247], + [40089,33016], + [40091,19725], + [40093,7692], + [40095,16505], + [40097,41044], + [40099,13946], + [40101,68736], + [40103,11335], + [40105,10322], + [40107,12067], + [40109,787216], + [40111,38749], + [40113,47226], + [40115,31454], + [40117,16412], + [40119,81815], + [40121,44146], + [40123,38355], + [40125,72154], + [40127,11128], + [40129,3667], + [40131,91353], + [40133,24832], + [40135,41709], + [40137,43647], + [40139,20805], + [40141,7413], + [40143,646419], + [40145,78958], + [40147,51886], + [40149,11225], + [40151,9043], + [40153,20727], + [41001,16019], + [41003,91107], + [41005,410463], + [41007,39102], + [41009,51375], + [41011,63686], + [41013,23011], + [41015,22650], + [41017,186251], + [41019,109114], + [41021,1878], + [41023,7189], + [41025,7267], + [41027,23209], + [41029,216574], + [41031,23607], + [41033,86251], + [41035,66921], + [41037,7837], + [41039,373340], + [41041,48547], + [41043,125048], + [41045,30412], + [41047,339641], + [41049,11303], + [41051,804606], + [41053,83037], + [41055,1642], + [41057,26389], + [41059,77129], + [41061,26337], + [41063,7004], + [41065,26130], + [41067,589481], + [41069,1415], + [41071,104831], + [42001,102470], + [42003,1221744], + [42005,65867], + [42007,165833], + [42009,48337], + [42011,418025], + [42013,123157], + [42015,60963], + [42017,626806], + [42019,186899], + [42021,133009], + [42023,4611], + [42025,63887], + [42027,161960], + [42029,519560], + [42031,38715], + [42033,79908], + [42035,38915], + [42037,65715], + [42039,85665], + [42041,249328], + [42043,275632], + [42045,564554], + [42047,30340], + [42049,273835], + [42051,131302], + [42053,7313], + [42055,154147], + [42057,14506], + [42059,36870], + [42061,45369], + [42063,85032], + [42065,43846], + [42067,24624], + [42069,210652], + [42071,540999], + [42073,86727], + [42075,139729], + [42077,365052], + [42079,317663], + [42081,114330], + [42083,41401], + [42085,111518], + [42087,46276], + [42089,168032], + [42091,823823], + [42093,18259], + [42095,302809], + [42097,91761], + [42099,46053], + [42101,1579075], + [42103,55453], + [42105,16806], + [42107,142674], + [42109,40483], + [42111,74361], + [42113,6135], + [42115,40970], + [42117,40944], + [42119,45111], + [42121,51818], + [42123,39756], + [42125,207212], + [42127,51422], + [42129,352590], + [42131,27327], + [42133,445565], + [44001,48764], + [44003,163869], + [44005,82801], + [44007,635737], + [44009,126060], + [45001,24627], + [45003,168301], + [45005,9024], + [45007,198064], + [45009,14376], + [45011,21346], + [45013,186095], + [45015,215044], + [45017,14663], + [45019,401165], + [45021,56895], + [45023,32311], + [45025,45953], + [45027,33957], + [45029,37585], + [45031,67027], + [45033,30689], + [45035,158299], + [45037,26927], + [45039,22565], + [45041,138475], + [45043,61952], + [45045,507003], + [45047,70411], + [45049,19564], + [45051,332172], + [45053,28657], + [45055,65112], + [45057,92308], + [45059,66846], + [45061,17365], + [45063,290278], + [45065,9531], + [45067,31308], + [45069,26753], + [45071,38194], + [45073,77528], + [45075,87687], + [45077,124029], + [45079,411357], + [45081,20303], + [45083,307617], + [45085,106757], + [45087,27490], + [45089,31324], + [45091,265872], + [46003,2763], + [46005,18346], + [46007,3425], + [46009,6929], + [46011,34601], + [46013,38915], + [46015,5258], + [46017,2026], + [46019,10225], + [46021,1485], + [46023,9349], + [46025,3685], + [46027,13957], + [46029,28026], + [46031,4150], + [46033,8719], + [46035,19871], + [46037,5486], + [46039,4318], + [46041,5833], + [46043,2929], + [46045,3909], + [46047,6747], + [46049,2312], + [46051,7149], + [46053,4186], + [46055,2018], + [46057,6025], + [46059,3256], + [46061,3399], + [46063,1306], + [46065,17608], + [46067,7308], + [46069,1319], + [46071,3290], + [46073,2018], + [46075,793], + [46077,4944], + [46079,12717], + [46081,25478], + [46083,56826], + [46085,3848], + [46087,5548], + [46089,2297], + [46091,4891], + [46093,27717], + [46095,2052], + [46097,2211], + [46099,188674], + [46101,6507], + [46102,14335], + [46103,110685], + [46105,2897], + [46107,2315], + [46109,10287], + [46111,2379], + [46115,6483], + [46117,3017], + [46119,1305], + [46121,10195], + [46123,5458], + [46125,8300], + [46127,15368], + [46129,5457], + [46135,22717], + [46137,2791], + [47001,76061], + [47003,48292], + [47005,16140], + [47007,14836], + [47009,129927], + [47011,105749], + [47013,39797], + [47015,14178], + [47017,27886], + [47019,56433], + [47021,40181], + [47023,17190], + [47025,31732], + [47027,7654], + [47029,35552], + [47031,55209], + [47033,14399], + [47035,59216], + [47037,687488], + [47039,11686], + [47041,19847], + [47043,52680], + [47045,37416], + [47047,40164], + [47049,18213], + [47051,41725], + [47053,49228], + [47055,29285], + [47057,23101], + [47059,68834], + [47061,13344], + [47063,64132], + [47065,360919], + [47067,6587], + [47069,25443], + [47071,25715], + [47073,56611], + [47075,17623], + [47077,27977], + [47079,32284], + [47081,24813], + [47083,8164], + [47085,18435], + [47087,11682], + [47089,53679], + [47091,17753], + [47093,461104], + [47095,7401], + [47097,25989], + [47099,43390], + [47101,12027], + [47103,33924], + [47105,52340], + [47107,53053], + [47109,25844], + [47111,23842], + [47113,97625], + [47115,28538], + [47117,32965], + [47119,91976], + [47121,12104], + [47123,46064], + [47125,200180], + [47127,6378], + [47129,21545], + [47131,30365], + [47133,22068], + [47135,7962], + [47137,5079], + [47139,16814], + [47141,77447], + [47143,32719], + [47145,53075], + [47147,70280], + [47149,315815], + [47151,21969], + [47153,14816], + [47155,97068], + [47157,936374], + [47159,19740], + [47161,13427], + [47163,157050], + [47165,183437], + [47167,61447], + [47169,10231], + [47171,17811], + [47173,19488], + [47175,5760], + [47177,40702], + [47179,127805], + [47181,16693], + [47183,33510], + [47185,26800], + [47187,225389], + [47189,136666], + [48001,57810], + [48003,18036], + [48005,87322], + [48007,24462], + [48009,8716], + [48011,1973], + [48013,49528], + [48015,29764], + [48017,7100], + [48019,22215], + [48021,84522], + [48023,3577], + [48025,32611], + [48027,348574], + [48029,1952843], + [48031,11478], + [48033,613], + [48035,18296], + [48037,93373], + [48039,360677], + [48041,222981], + [48043,9231], + [48045,1457], + [48047,7141], + [48049,37855], + [48051,18058], + [48053,46530], + [48055,42144], + [48057,21668], + [48059,13856], + [48061,421666], + [48063,12878], + [48065,6009], + [48067,30059], + [48069,7673], + [48071,41305], + [48073,52118], + [48075,7253], + [48077,10403], + [48079,2887], + [48081,3303], + [48083,8334], + [48085,973977], + [48087,2969], + [48089,21224], + [48091,141642], + [48093,13529], + [48095,3266], + [48097,40041], + [48099,75280], + [48101,1642], + [48103,4802], + [48105,3484], + [48107,5836], + [48109,2214], + [48111,7304], + [48113,2606868], + [48115,12813], + [48117,18736], + [48119,5249], + [48121,833822], + [48123,20340], + [48125,2203], + [48127,10438], + [48129,3342], + [48131,11268], + [48133,18273], + [48135,160579], + [48137,1918], + [48139,173772], + [48141,836062], + [48143,41841], + [48145,17272], + [48147,34537], + [48149,25141], + [48151,3856], + [48153,5803], + [48155,1275], + [48157,765394], + [48159,10716], + [48161,19714], + [48163,19871], + [48165,20706], + [48167,332885], + [48169,6070], + [48171,26459], + [48173,1510], + [48175,7565], + [48177,20731], + [48179,22410], + [48181,131014], + [48183,123443], + [48185,27984], + [48187,158966], + [48189,33826], + [48191,3048], + [48193,8332], + [48195,5520], + [48197,3945], + [48199,56765], + [48201,4646630], + [48203,66580], + [48205,5669], + [48207,5726], + [48209,213366], + [48211,3994], + [48213,81070], + [48215,855176], + [48217,35689], + [48219,23064], + [48221,58318], + [48223,36486], + [48225,22954], + [48227,36349], + [48229,4415], + [48231,94162], + [48233,21344], + [48235,1620], + [48237,8852], + [48239,14816], + [48241,35506], + [48243,2241], + [48245,254340], + [48247,5231], + [48249,40972], + [48251,167212], + [48253,19943], + [48255,15545], + [48257,123804], + [48259,43769], + [48261,568], + [48263,647], + [48265,51843], + [48267,4373], + [48269,237], + [48271,3659], + [48273,30974], + [48275,3705], + [48277,49611], + [48279,13123], + [48281,20862], + [48283,7416], + [48285,20021], + [48287,17058], + [48289,17225], + [48291,83702], + [48293,23417], + [48295,3398], + [48297,12139], + [48299,21047], + [48301,98], + [48303,304808], + [48305,5830], + [48307,8057], + [48309,251089], + [48311,774], + [48313,14197], + [48315,10017], + [48317,5649], + [48319,4186], + [48321,36774], + [48323,58174], + [48325,50057], + [48327,2119], + [48329,168167], + [48331,24770], + [48333,4889], + [48335,8523], + [48337,19489], + [48339,571949], + [48341,21399], + [48343,12373], + [48345,1252], + [48347,65339], + [48349,48995], + [48351,13914], + [48353,14904], + [48355,361540], + [48357,10131], + [48359,2094], + [48361,84069], + [48363,28540], + [48365,23327], + [48367,133811], + [48369,9718], + [48371,15815], + [48373,48913], + [48375,119674], + [48377,6975], + [48379,11766], + [48381,134026], + [48383,3766], + [48385,3408], + [48387,12171], + [48389,15492], + [48391,7145], + [48393,805], + [48395,16990], + [48397,97175], + [48399,10277], + [48401,53755], + [48403,10471], + [48405,8286], + [48407,28180], + [48409,67008], + [48411,5991], + [48413,2983], + [48415,17096], + [48417,3296], + [48419,25349], + [48421,3059], + [48423,227449], + [48425,8860], + [48427,64078], + [48429,9364], + [48431,1231], + [48433,1476], + [48435,3824], + [48437,7432], + [48439,2049770], + [48441,136870], + [48443,896], + [48445,12528], + [48447,1436], + [48449,32640], + [48451,117986], + [48453,1226805], + [48455,14620], + [48457,21518], + [48459,41018], + [48461,3659], + [48463,26920], + [48465,48969], + [48467,55103], + [48469,92109], + [48471,72321], + [48473,51832], + [48475,11658], + [48477,35163], + [48479,273526], + [48481,41577], + [48483,5338], + [48485,131596], + [48487,12833], + [48489,21588], + [48491,547604], + [48493,49173], + [48495,7867], + [48497,66290], + [48499,44366], + [48501,8631], + [48503,18036], + [48505,14304], + [48507,12039], + [49001,6517], + [49003,53946], + [49005,124165], + [49007,20308], + [49009,613], + [49011,345767], + [49013,20148], + [49015,10117], + [49017,4998], + [49019,9640], + [49021,51213], + [49023,11301], + [49025,7484], + [49027,12854], + [49029,11664], + [49031,1866], + [49033,2389], + [49035,1133646], + [49037,15302], + [49039,29850], + [49041,21280], + [49043,41103], + [49045,67397], + [49047,36084], + [49049,605490], + [49051,31708], + [49053,165811], + [49055,2689], + [49057,251498], + [50001,36882], + [50003,35746], + [50005,30234], + [50007,162646], + [50009,6200], + [50011,49116], + [50013,7022], + [50015,25318], + [50017,28908], + [50019,26901], + [50021,58892], + [50023,58350], + [50025,42823], + [50027,55275], + [51001,32673], + [51003,107405], + [51005,15157], + [51007,12953], + [51009,31775], + [51011,15707], + [51013,233464], + [51015,75079], + [51017,4307], + [51019,78376], + [51021,6388], + [51023,33343], + [51025,16520], + [51027,21788], + [51029,17059], + [51031,55225], + [51033,30381], + [51035,29801], + [51036,7014], + [51037,12040], + [51041,343551], + [51043,14423], + [51045,5110], + [51047,51101], + [51049,9824], + [51051,14756], + [51053,28485], + [51057,10998], + [51059,1145862], + [51061,69728], + [51063,15704], + [51065,26594], + [51067,56187], + [51069,86415], + [51071,16772], + [51073,37222], + [51075,22865], + [51077,15742], + [51079,19519], + [51081,11525], + [51083,34552], + [51085,105537], + [51087,327535], + [51089,51308], + [51091,2204], + [51093,36627], + [51095,74916], + [51097,7042], + [51099,26229], + [51101,16688], + [51103,10724], + [51105,23948], + [51107,395134], + [51109,36040], + [51111,12282], + [51113,13170], + [51115,8788], + [51117,30728], + [51119,10675], + [51121,98140], + [51125,14831], + [51127,21686], + [51131,11885], + [51133,12190], + [51135,15433], + [51137,36010], + [51139,23788], + [51141,17748], + [51143,61256], + [51145,28815], + [51147,22905], + [51149,38114], + [51153,461423], + [51155,34182], + [51157,7378], + [51159,8884], + [51161,93823], + [51163,22570], + [51165,80284], + [51167,27141], + [51169,21902], + [51171,43224], + [51173,30767], + [51175,17880], + [51177,132833], + [51179,146773], + [51181,6523], + [51183,11377], + [51185,41603], + [51187,39492], + [51191,54071], + [51193,17751], + [51195,38486], + [51197,28844], + [51199,67982], + [51510,157613], + [51520,16912], + [51530,6484], + [51540,47096], + [51550,239982], + [51570,17428], + [51580,5598], + [51590,41070], + [51595,5442], + [51600,23531], + [51610,14128], + [51620,8147], + [51630,28622], + [51640,6517], + [51650,135041], + [51660,53273], + [51670,22456], + [51678,7241], + [51680,80569], + [51683,41174], + [51685,16986], + [51690,12852], + [51700,179673], + [51710,244601], + [51720,3970], + [51730,31362], + [51735,12090], + [51740,95097], + [51750,17691], + [51760,226622], + [51770,99229], + [51775,25317], + [51790,24432], + [51800,90093], + [51810,450201], + [51820,22140], + [51830,14927], + [51840,27897], + [53001,19594], + [53003,22421], + [53005,197518], + [53007,76229], + [53009,75392], + [53011,473252], + [53013,3992], + [53015,106778], + [53017,42023], + [53019,7578], + [53021,92009], + [53023,2230], + [53025,95502], + [53027,72779], + [53029,82866], + [53031,31285], + [53033,2195502], + [53035,265882], + [53037,45897], + [53039,21721], + [53041,78145], + [53043,10574], + [53045,63804], + [53047,41842], + [53049,21688], + [53051,13377], + [53053,877013], + [53055,16788], + [53057,125612], + [53059,11753], + [53061,798808], + [53063,505505], + [53065,44655], + [53067,279711], + [53069,4268], + [53071,60365], + [53073,220821], + [53075,49231], + [53077,249697], + [54001,16633], + [54003,115329], + [54005,22368], + [54007,14190], + [54009,22459], + [54011,94339], + [54013,7295], + [54015,8709], + [54017,8560], + [54019,43576], + [54021,8041], + [54023,11616], + [54025,35155], + [54027,23309], + [54029,29383], + [54031,13805], + [54033,67908], + [54035,28907], + [54037,56506], + [54039,183279], + [54041,16166], + [54043,20850], + [54045,33154], + [54047,18661], + [54049,56355], + [54051,31308], + [54053,26820], + [54055,59919], + [54057,27167], + [54059,24290], + [54061,105474], + [54063,13401], + [54065,17709], + [54067,25078], + [54069,42143], + [54071,7001], + [54073,7482], + [54075,8450], + [54077,33683], + [54079,56610], + [54081,75252], + [54083,28930], + [54085,9844], + [54087,14020], + [54089,12848], + [54091,16864], + [54093,6982], + [54095,8811], + [54097,24502], + [54099,40303], + [54101,8386], + [54103,15436], + [54105,5798], + [54107,84960], + [54109,21281], + [55001,20094], + [55003,15617], + [55005,45229], + [55007,14993], + [55009,261368], + [55011,13126], + [55013,15289], + [55015,49928], + [55017,63892], + [55019,34579], + [55021,57133], + [55023,16235], + [55025,536078], + [55027,87715], + [55029,27472], + [55031,43295], + [55033,44759], + [55035,103514], + [55037,4314], + [55039,102597], + [55041,8995], + [55043,51733], + [55045,36896], + [55047,18755], + [55049,23618], + [55051,5687], + [55053,20522], + [55055,84701], + [55057,26478], + [55059,168524], + [55061,20387], + [55063,117894], + [55065,16715], + [55067,19146], + [55069,27744], + [55071,79185], + [55073,135396], + [55075,40391], + [55077,15304], + [55078,4558], + [55079,951226], + [55081,45771], + [55083,37646], + [55085,35381], + [55087,185700], + [55089,88597], + [55091,7265], + [55093,41977], + [55095,43438], + [55097,70632], + [55099,13416], + [55101,195602], + [55103,17459], + [55105,162152], + [55107,14132], + [55109,88732], + [55111,63922], + [55113,16399], + [55115,40904], + [55117,115178], + [55119,20325], + [55121,29499], + [55123,30633], + [55125,21751], + [55127,103074], + [55129,15688], + [55131,134925], + [55133,400475], + [55135,51245], + [55137,24193], + [55139,170411], + [55141,73112], + [56001,38390], + [56003,11882], + [56005,47409], + [56007,15247], + [56009,13921], + [56011,7472], + [56013,39812], + [56015,13342], + [56017,4607], + [56019,8487], + [56021,98320], + [56023,19274], + [56025,80333], + [56027,2422], + [56029,29148], + [56031,8582], + [56033,30140], + [56035,9880], + [56037,43521], + [56039,23280], + [56041,20479], + [56043,8027], + [56045,7049] + ] +} diff --git a/data/regional/united-states/demographics/population/us-population-density-2010.json b/data/regional/united-states/demographics/population/us-population-density-2010.json new file mode 100644 index 0000000..4db22a0 --- /dev/null +++ b/data/regional/united-states/demographics/population/us-population-density-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Population Density", + "description" : "Population density.", + "units" : "people/km²", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","density"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.density.2010"], + [1001,237.762237762238], + [1003,296.814296814297], + [1005,80.2900802900803], + [1007,95.3120953120953], + [1009,230.25123025123], + [1011,45.3250453250453], + [1013,69.9300699300699], + [1015,506.863506863507], + [1017,148.666148666149], + [1019,121.471121471121], + [1021,163.170163170163], + [1023,39.3680393680394], + [1025,54.1310541310541], + [1027,59.8290598290598], + [1029,69.1530691530692], + [1031,190.624190624191], + [1033,237.762237762238], + [1035,40.4040404040404], + [1037,45.8430458430458], + [1039,94.7940947940948], + [1041,59.0520590520591], + [1043,283.346283346283], + [1045,232.064232064232], + [1047,116.032116032116], + [1049,236.985236985237], + [1051,332.038332038332], + [1053,104.895104895105], + [1055,505.568505568506], + [1057,71.2250712250712], + [1059,129.50012950013], + [1061,120.694120694121], + [1063,36.2600362600363], + [1065,63.4550634550635], + [1067,79.7720797720798], + [1069,453.509453509454], + [1071,127.946127946128], + [1073,1534.57653457653], + [1075,62.4190624190624], + [1077,359.49235949236], + [1079,128.723128723129], + [1081,597.772597772598], + [1083,382.802382802383], + [1085,40.9220409220409], + [1087,91.1680911680912], + [1089,1081.84408184408], + [1091,55.6850556850557], + [1093,107.485107485107], + [1095,425.796425796426], + [1097,869.98186998187], + [1099,58.2750582750583], + [1101,757.575757575758], + [1103,534.317534317534], + [1105,38.0730380730381], + [1107,58.016058016058], + [1109,126.651126651127], + [1111,102.305102305102], + [1113,213.934213934214], + [1115,342.657342657343], + [1117,643.615643615644], + [1119,39.3680393680394], + [1121,289.303289303289], + [1123,150.479150479151], + [1125,381.507381507382], + [1127,219.373219373219], + [1129,42.2170422170422], + [1131,33.9290339290339], + [1133,103.341103341103], + [2013,1.03600103600104], + [2016,3.36700336700337], + [2020,443.408443408443], + [2050,1.03600103600104], + [2060,5.18000518000518], + [2068,0.259000259000259], + [2070,0.777000777000777], + [2090,34.4470344470345], + [2100,2.84900284900285], + [2105,0.777000777000777], + [2110,30.04403004403], + [2122,8.80600880600881], + [2130,7.25200725200725], + [2150,5.43900543900544], + [2158,1.03600103600104], + [2164,0.259000259000259], + [2170,9.32400932400932], + [2180,1.03600103600104], + [2185,0.259000259000259], + [2188,0.518000518000518], + [2195,3.10800310800311], + [2198,3.62600362600363], + [2220,8.02900802900803], + [2230,5.43900543900544], + [2240,0.777000777000777], + [2261,0.777000777000777], + [2275,2.33100233100233], + [2282,0.259000259000259], + [2290,0], + [4001,16.5760165760166], + [4003,55.1670551670552], + [4005,18.6480186480187], + [4007,29.2670292670293], + [4009,20.979020979021], + [4011,11.9140119140119], + [4012,11.9140119140119], + [4013,1074.59207459207], + [4015,38.8500388500389], + [4017,27.972027972028], + [4019,276.353276353276], + [4021,181.300181300181], + [4023,99.1970991970992], + [4025,67.3400673400673], + [4027,91.945091945092], + [5001,49.7280497280497], + [5003,61.1240611240611], + [5005,193.991193991194], + [5007,676.508676508676], + [5009,161.875161875162], + [5011,45.8430458430458], + [5013,22.015022015022], + [5015,112.924112924113], + [5017,47.3970473970474], + [5019,68.8940688940689], + [5021,65.2680652680653], + [5023,121.471121471121], + [5025,37.5550375550376], + [5027,83.1390831390831], + [5029,99.7150997150997], + [5031,353.276353276353], + [5033,270.39627039627], + [5035,216.265216265216], + [5037,75.1100751100751], + [5039,31.5980315980316], + [5041,43.7710437710438], + [5043,57.7570577570578], + [5045,452.732452732453], + [5047,77.1820771820772], + [5049,51.2820512820513], + [5051,367.003367003367], + [5053,73.2970732970733], + [5055,188.811188811189], + [5057,80.5490805490806], + [5059,138.565138565139], + [5061,60.6060606060606], + [5063,124.320124320124], + [5065,61.1240611240611], + [5067,73.5560735560736], + [5069,230.25123025123], + [5071,100.2331002331], + [5073,37.5550375550376], + [5075,76.6640766640767], + [5077,44.8070448070448], + [5079,65.2680652680653], + [5081,63.973063973064], + [5083,81.8440818440818], + [5085,229.73322973323], + [5087,48.6920486920487], + [5089,72.2610722610723], + [5091,180.00518000518], + [5093,133.644133644134], + [5095,34.7060347060347], + [5097,31.5980315980316], + [5099,37.8140378140378], + [5101,26.1590261590262], + [5103,92.2040922040922], + [5105,48.9510489510489], + [5107,81.0670810670811], + [5109,48.6920486920487], + [5111,83.9160839160839], + [5113,62.4190624190624], + [5115,196.840196840197], + [5117,34.7060347060347], + [5119,1304.8433048433], + [5121,71.4840714840715], + [5123,115.255115255115], + [5125,383.320383320383], + [5127,32.6340326340326], + [5129,31.8570318570319], + [5131,612.276612276612], + [5133,78.2180782180782], + [5135,74.0740740740741], + [5137,52.8360528360528], + [5139,103.859103859104], + [5141,63.1960631960632], + [5143,558.404558404558], + [5145,192.955192955193], + [5147,32.1160321160321], + [5149,61.9010619010619], + [6001,5292.92929292929], + [6003,4.14400414400414], + [6005,166.019166019166], + [6007,348.096348096348], + [6009,115.773115773116], + [6011,48.1740481740482], + [6013,3794.8717948718], + [6015,73.5560735560736], + [6017,274.540274540275], + [6019,404.558404558405], + [6021,55.4260554260554], + [6023,97.6430976430977], + [6025,108.262108262108], + [6027,4.66200466200466], + [6029,267.547267547268], + [6031,285.159285159285], + [6033,133.385133385133], + [6035,19.9430199430199], + [6037,6266.77026677027], + [6039,182.854182854183], + [6041,1256.41025641026], + [6043,32.6340326340326], + [6045,65.009065009065], + [6047,342.398342398342], + [6049,6.47500647500648], + [6051,12.1730121730122], + [6053,327.635327635328], + [6055,472.416472416472], + [6057,267.029267029267], + [6059,9861.95286195286], + [6061,641.284641284641], + [6063,20.2020202020202], + [6065,786.842786842787], + [6067,3809.37580937581], + [6069,103.082103082103], + [6071,262.885262885263], + [6073,1905.72390572391], + [6075,44493.9134939135], + [6077,1275.83527583528], + [6079,211.603211603212], + [6081,4149.70214970215], + [6083,401.450401450401], + [6085,3576.79357679358], + [6087,1526.54752654753], + [6089,121.471121471121], + [6091,8.80600880600881], + [6093,18.6480186480187], + [6095,1302.7713027713], + [6097,795.389795389796], + [6099,891.478891478892], + [6101,407.407407407407], + [6103,55.6850556850557], + [6105,11.1370111370111], + [6107,237.503237503238], + [6109,64.4910644910645], + [6111,1156.95415695416], + [6113,512.561512561513], + [6115,295.778295778296], + [8001,979.53897953898], + [8003,55.4260554260554], + [8005,1856.25485625486], + [8007,23.0510230510231], + [8009,3.88500388500389], + [8011,11.1370111370111], + [8013,1050.50505050505], + [8014,4382.02538202538], + [8015,45.5840455840456], + [8017,2.59000259000259], + [8019,59.5700595700596], + [8021,16.5760165760166], + [8023,7.51100751100751], + [8025,19.1660191660192], + [8027,15.022015022015], + [8029,70.1890701890702], + [8031,10159.5441595442], + [8033,4.92100492100492], + [8035,879.82387982388], + [8037,80.2900802900803], + [8039,32.3750323750324], + [8041,757.834757834758], + [8043,78.995078995079], + [8045,49.4690494690495], + [8047,94.017094017094], + [8049,20.7200207200207], + [8051,12.1730121730122], + [8053,2.07200207200207], + [8055,10.8780108780109], + [8057,2.33100233100233], + [8059,1811.70681170681], + [8061,2.07200207200207], + [8063,9.84200984200984], + [8065,50.2460502460502], + [8067,78.4770784770785], + [8069,298.886298886299], + [8071,8.28800828800829], + [8073,5.43900543900544], + [8075,32.1160321160321], + [8077,114.219114219114], + [8079,2.07200207200207], + [8081,7.51100751100751], + [8083,32.6340326340326], + [8085,47.6560476560477], + [8087,56.980056980057], + [8089,38.5910385910386], + [8091,21.2380212380212], + [8093,19.1660191660192], + [8095,16.8350168350168], + [8097,45.8430458430458], + [8099,19.9430199430199], + [8101,172.753172753173], + [8103,5.43900543900544], + [8105,33.9290339290339], + [8107,25.9000259000259], + [8109,4.92100492100492], + [8111,4.66200466200466], + [8113,14.7630147630148], + [8115,11.1370111370111], + [8117,119.140119140119], + [8119,108.521108521109], + [8121,4.92100492100492], + [8123,164.206164206164], + [8125,10.8780108780109], + [9001,3800.0518000518], + [9003,3149.96114996115], + [9005,534.317534317534], + [9007,1161.87516187516], + [9009,3695.1566951567], + [9011,1067.59906759907], + [9013,963.998963998964], + [9015,598.031598031598], + [10001,717.171717171717], + [10003,3271.69127169127], + [10005,545.454545454546], + [11001,25528.6195286195], + [12001,732.193732193732], + [12003,119.91711991712], + [12005,576.534576534577], + [12007,251.230251230251], + [12009,1385.65138565139], + [12011,3742.29474229474], + [12013,66.8220668220668], + [12015,609.168609168609], + [12017,628.852628852629], + [12019,817.922817922818], + [12021,416.731416731417], + [12023,219.373219373219], + [12027,141.673141673142], + [12029,60.3470603470604], + [12031,2936.80393680394], + [12033,1174.30717430717], + [12035,510.48951048951], + [12037,55.944055944056], + [12039,232.582232582233], + [12041,125.356125356125], + [12043,41.4400414400414], + [12045,72.7790727790728], + [12047,74.5920745920746], + [12049,112.665112665113], + [12051,88.0600880600881], + [12053,946.904946904947], + [12055,251.748251748252], + [12057,3120.69412069412], + [12059,107.744107744108], + [12061,710.955710955711], + [12063,140.37814037814], + [12065,63.973063973064], + [12067,42.2170422170422], + [12069,819.99481999482], + [12071,2042.73504273504], + [12073,1069.93006993007], + [12075,94.5350945350945], + [12077,25.9000259000259], + [12079,71.4840714840715], + [12081,1125.35612535613], + [12083,541.569541569542], + [12085,697.228697228697], + [12086,3407.14840714841], + [12087,192.437192437192], + [12089,292.670292670293], + [12091,503.496503496504], + [12093,134.680134680135], + [12095,3285.41828541829], + [12097,524.216524216524], + [12099,1735.81973581974], + [12101,1611.49961149961], + [12103,8670.03367003367], + [12105,867.391867391867], + [12107,264.698264698265], + [12109,819.476819476819], + [12111,1257.96425796426], + [12113,387.464387464387], + [12115,1767.93576793577], + [12117,3540.53354053354], + [12119,442.372442372442], + [12121,156.177156177156], + [12123,55.944055944056], + [12125,165.242165242165], + [12127,1163.42916342916], + [12129,131.572131572132], + [12131,137.270137270137], + [12133,110.593110593111], + [13001,93.2400932400932], + [13003,63.973063973064], + [13005,111.111111111111], + [13007,26.1590261590262], + [13009,459.207459207459], + [13011,205.387205387205], + [13013,1120.69412069412], + [13015,564.361564361564], + [13017,182.595182595183], + [13019,110.593110593111], + [13021,1613.05361305361], + [13023,156.695156695157], + [13025,107.744107744108], + [13027,85.2110852110852], + [13029,179.487179487179], + [13031,270.39627039627], + [13033,73.038073038073], + [13035,332.297332297332], + [13037,61.9010619010619], + [13039,213.416213416213], + [13043,117.327117327117], + [13045,573.685573685574], + [13047,1021.23802123802], + [13049,40.6630406630407], + [13051,1610.20461020461], + [13053,117.327117327117], + [13055,214.970214970215], + [13057,1316.49831649832], + [13059,2535.87153587154], + [13061,42.2170422170422], + [13063,4746.17974617975], + [13065,22.015022015022], + [13067,5248.38124838125], + [13069,190.883190883191], + [13071,216.524216524217], + [13073,1107.48510748511], + [13075,196.322196322196], + [13077,747.992747992748], + [13079,100.751100751101], + [13081,222.740222740223], + [13083,247.604247604248], + [13085,274.281274281274], + [13087,120.694120694121], + [13089,6696.9696969697], + [13091,113.960113960114], + [13093,98.6790986790987], + [13095,745.143745143745], + [13097,1714.06371406371], + [13099,55.6850556850557], + [13101,25.1230251230251], + [13103,283.346283346283], + [13105,148.666148666149], + [13107,85.988085988086], + [13109,155.918155918156], + [13111,158.508158508159], + [13113,1420.09842009842], + [13115,489.251489251489], + [13117,2029.26702926703], + [13119,218.855218855219], + [13121,4527.32452732453], + [13123,171.717171717172], + [13125,55.4260554260554], + [13127,491.323491323491], + [13129,401.709401709402], + [13131,142.450142450142], + [13133,106.967106967107], + [13135,4846.41284641285], + [13137,402.745402745403], + [13139,1184.92618492619], + [13141,51.8000518000518], + [13143,264.180264180264], + [13145,178.710178710179], + [13147,281.015281015281], + [13149,103.600103600104], + [13151,1639.47163947164], + [13153,964.775964775965], + [13155,69.6710696710697], + [13157,461.279461279461], + [13159,97.9020979020979], + [13161,118.104118104118], + [13163,83.3980833980834], + [13165,62.1600621600622], + [13167,85.2110852110852], + [13169,188.552188552189], + [13171,258.482258482259], + [13173,140.896140896141], + [13175,155.400155400155], + [13177,205.905205905206], + [13179,335.405335405335], + [13181,98.4200984200984], + [13183,93.4990934990935], + [13185,570.31857031857], + [13187,274.281274281274], + [13189,220.15022015022], + [13191,87.5420875420875], + [13193,95.3120953120953], + [13195,257.964257964258], + [13197,61.9010619010619], + [13199,113.701113701114], + [13201,56.2030562030562], + [13205,118.881118881119], + [13207,173.012173012173], + [13209,98.6790986790987], + [13211,133.126133126133], + [13213,297.850297850298], + [13215,2272.72727272727], + [13217,951.307951307951], + [13219,461.020461020461], + [13221,87.8010878010878], + [13223,1180.52318052318], + [13225,477.337477337477], + [13227,328.412328412328], + [13229,153.587153587154], + [13231,214.193214193214], + [13233,346.024346024346], + [13235,124.838124838125], + [13237,159.54415954416], + [13239,42.994042994043], + [13241,113.960113960114], + [13243,46.6200466200466], + [13245,1601.6576016576], + [13247,1700.3367003367], + [13249,77.7000777000777], + [13251,58.5340585340585], + [13253,96.0890960890961], + [13255,844.599844599845], + [13257,378.399378399378], + [13259,34.1880341880342], + [13261,176.120176120176], + [13263,45.3250453250453], + [13265,22.7920227920228], + [13267,137.788137788138], + [13269,61.1240611240611], + [13271,97.6430976430977], + [13273,72.002072002072], + [13275,212.639212639213], + [13277,401.191401191401], + [13279,193.732193732194], + [13281,162.911162911163], + [13283,89.3550893550894], + [13285,419.321419321419], + [13287,81.0670810670811], + [13289,65.2680652680653], + [13291,171.717171717172], + [13293,217.560217560218], + [13295,398.860398860399], + [13297,666.148666148666], + [13299,105.413105413105], + [13301,53.0950530950531], + [13303,80.8080808080808], + [13305,121.471121471121], + [13307,34.7060347060347], + [13309,65.009065009065], + [13311,292.152292152292], + [13313,914.788914788915], + [13315,63.4550634550635], + [13317,58.5340585340585], + [13319,55.4260554260554], + [13321,98.4200984200984], + [15001,118.881118881119], + [15003,4109.55710955711], + [15005,19.4250194250194], + [15007,280.23828023828], + [15009,345.247345247345], + [16001,965.552965552966], + [16003,7.51100751100751], + [16005,192.955192955193], + [16007,15.7990157990158], + [16009,31.0800310800311], + [16011,56.4620564620565], + [16013,20.979020979021], + [16015,9.58300958300958], + [16017,61.1240611240611], + [16019,144.781144781145], + [16021,22.2740222740223], + [16023,3.36700336700337], + [16025,2.59000259000259], + [16027,832.944832944833], + [16029,10.1010101010101], + [16031,23.0510230510231], + [16033,1.55400155400155], + [16035,9.32400932400932], + [16037,2.33100233100233], + [16039,22.7920227920228], + [16041,49.98704998705], + [16043,18.3890183890184], + [16045,77.1820771820772], + [16047,54.9080549080549], + [16049,4.92100492100492], + [16051,61.9010619010619], + [16053,97.1250971250971], + [16055,288.267288267288], + [16057,89.6140896140896], + [16059,4.4030044030044], + [16061,20.7200207200207], + [16063,11.1370111370111], + [16065,207.200207200207], + [16067,68.6350686350686], + [16069,119.91711991712], + [16071,9.32400932400932], + [16073,3.88500388500389], + [16075,144.004144004144], + [16077,14.5040145040145], + [16079,12.6910126910127], + [16081,58.5340585340585], + [16083,104.118104118104], + [16085,6.99300699300699], + [16087,18.1300181300181], + [17001,203.315203315203], + [17003,90.6500906500907], + [17005,120.953120953121], + [17007,499.8704998705], + [17009,58.7930587930588], + [17011,104.118104118104], + [17013,51.8000518000518], + [17015,89.6140896140896], + [17017,94.017094017094], + [17019,522.662522662523], + [17021,127.169127169127], + [17023,84.4340844340844], + [17025,76.4050764050764], + [17027,206.423206423206], + [17029,274.540274540275], + [17031,14232.3232323232], + [17033,115.773115773116], + [17035,82.6210826210826], + [17037,431.494431494431], + [17039,108.003108003108], + [17041,124.320124320124], + [17043,7251.48925148925], + [17045,77.1820771820772], + [17047,78.2180782180782], + [17049,185.185185185185], + [17051,80.03108003108], + [17053,75.1100751100751], + [17055,250.712250712251], + [17057,110.852110852111], + [17059,44.8070448070448], + [17061,66.3040663040663], + [17063,310.28231028231], + [17065,50.5050505050505], + [17067,62.4190624190624], + [17069,62.9370629370629], + [17071,49.98704998705], + [17073,158.767158767159], + [17075,68.8940688940689], + [17077,267.029267029267], + [17079,50.7640507640508], + [17081,176.120176120176], + [17083,161.098161098161], + [17085,97.6430976430977], + [17087,94.7940947940948], + [17089,2566.17456617457], + [17091,434.343434343434], + [17093,927.738927738928], + [17095,191.401191401191], + [17097,4106.70810670811], + [17099,260.03626003626], + [17101,117.068117068117], + [17103,128.723128723129], + [17105,96.6070966070966], + [17107,126.910126910127], + [17109,143.227143227143], + [17111,1325.82232582233], + [17113,371.147371147371], + [17115,494.172494172494], + [17117,143.486143486143], + [17119,974.617974617975], + [17121,178.451178451178], + [17123,84.6930846930847], + [17125,70.4480704480705], + [17127,168.350168350168], + [17129,104.636104636105], + [17131,75.8870758870759], + [17133,221.704221704222], + [17135,110.852110852111], + [17137,161.875161875162], + [17139,114.478114478114], + [17141,182.595182595183], + [17143,780.10878010878], + [17145,131.054131054131], + [17147,98.6790986790987], + [17149,51.2820512820513], + [17151,31.3390313390313], + [17153,80.03108003108], + [17155,97.1250971250971], + [17157,150.738150738151], + [17159,116.809116809117], + [17161,893.550893550894], + [17163,1063.45506345506], + [17165,169.90416990417], + [17167,588.966588966589], + [17169,44.8070448070448], + [17171,55.1670551670552], + [17173,76.4050764050764], + [17175,53.8720538720539], + [17177,218.855218855219], + [17179,540.27454027454], + [17181,111.629111629112], + [17183,235.431235431235], + [17185,138.565138565139], + [17187,84.4340844340844], + [17189,67.8580678580679], + [17191,60.8650608650609], + [17193,76.6640766640767], + [17195,221.445221445221], + [17197,2096.8660968661], + [17199,408.961408961409], + [17201,1489.76948976949], + [17203,189.84718984719], + [18001,262.626262626263], + [18003,1400.1554001554], + [18005,488.733488733489], + [18007,56.4620564620565], + [18009,200.2072002072], + [18011,346.801346801347], + [18013,126.651126651127], + [18015,140.11914011914], + [18017,244.755244755245], + [18019,765.604765604766], + [18021,194.768194768195], + [18023,212.380212380212], + [18025,90.9090909090909], + [18027,190.883190883191], + [18029,425.019425019425], + [18031,178.969178969179], + [18033,301.476301476302], + [18035,777.259777259777], + [18037,253.820253820254], + [18039,1104.6361046361], + [18041,292.411292411292], + [18043,1305.62030562031], + [18045,112.924112924113], + [18047,155.659155659156], + [18049,146.594146594147], + [18051,177.933177933178], + [18053,438.228438228438], + [18055,158.249158249158], + [18057,1803.6778036778], + [18059,592.592592592593], + [18061,210.30821030821], + [18063,925.666925666926], + [18065,326.858326858327], + [18067,731.416731416731], + [18069,251.230251230251], + [18071,215.488215488216], + [18073,154.882154882155], + [18075,143.486143486143], + [18077,232.841232841233], + [18079,196.063196063196], + [18081,1128.72312872313], + [18083,192.955192955193], + [18085,377.104377104377], + [18087,253.302253302253], + [18089,2574.72157472157], + [18091,482.517482517483], + [18093,265.993265993266], + [18095,754.467754467755], + [18097,5904.1699041699], + [18099,274.799274799275], + [18101,79.7720797720798], + [18103,255.633255633256], + [18105,905.723905723906], + [18107,195.804195804196], + [18109,441.595441595442], + [18111,91.945091945092], + [18113,299.6632996633], + [18115,184.149184149184], + [18117,128.982128982129], + [18119,145.040145040145], + [18121,101.010101010101], + [18123,131.313131313131], + [18125,99.4560994560995], + [18127,1017.87101787102], + [18129,163.947163947164], + [18131,80.03108003108], + [18133,204.610204610205], + [18135,149.96114996115], + [18137,167.314167314167], + [18139,110.33411033411], + [18141,1509.97150997151], + [18143,328.930328930329], + [18145,279.97927997928], + [18147,136.752136752137], + [18149,195.804195804196], + [18151,286.713286713287], + [18153,124.320124320124], + [18155,124.579124579125], + [18157,895.363895363895], + [18159,158.508158508159], + [18161,120.694120694121], + [18163,1993.52499352499], + [18165,163.429163429163], + [18167,692.566692566693], + [18169,206.423206423206], + [18171,60.3470603470604], + [18173,401.709401709402], + [18175,142.450142450142], + [18177,444.185444185444], + [18179,194.509194509195], + [18181,126.392126392126], + [18183,256.928256928257], + [19001,34.965034965035], + [19003,24.6050246050246], + [19005,58.016058016058], + [19007,67.0810670810671], + [19009,35.7420357420357], + [19011,94.2760942760943], + [19013,600.1036001036], + [19015,119.140119140119], + [19017,144.263144263144], + [19019,95.0530950530951], + [19021,91.1680911680912], + [19023,66.3040663040663], + [19025,44.030044030044], + [19027,94.7940947940948], + [19029,63.973063973064], + [19031,82.6210826210826], + [19033,201.243201243201], + [19035,54.1310541310541], + [19037,63.973063973064], + [19039,55.6850556850557], + [19041,76.1460761460761], + [19043,60.3470603470604], + [19045,183.113183113183], + [19047,61.9010619010619], + [19049,291.116291116291], + [19051,45.0660450660451], + [19053,41.1810411810412], + [19055,79.5130795130795], + [19057,250.971250971251], + [19059,113.442113442113], + [19061,398.860398860399], + [19063,67.3400673400673], + [19065,74.0740740740741], + [19067,84.4340844340844], + [19069,47.6560476560477], + [19071,37.8140378140378], + [19073,42.4760424760425], + [19075,64.2320642320642], + [19077,47.9150479150479], + [19079,70.4480704480705], + [19081,51.5410515410515], + [19083,79.7720797720798], + [19085,55.4260554260554], + [19087,120.17612017612], + [19089,52.3180523180523], + [19091,58.5340585340585], + [19093,42.4760424760425], + [19095,72.2610722610723], + [19097,80.8080808080808], + [19099,130.536130536131], + [19101,100.2331002331], + [19103,551.929551929552], + [19105,92.981092981093], + [19107,46.8790468790469], + [19109,41.4400414400414], + [19111,179.487179487179], + [19113,763.014763014763], + [19115,73.2970732970733], + [19117,53.6130536130536], + [19119,51.023051023051], + [19121,72.2610722610723], + [19123,101.528101528102], + [19125,155.659155659156], + [19127,183.890183890184], + [19129,89.0960890960891], + [19131,59.5700595700596], + [19133,34.4470344470345], + [19135,47.6560476560477], + [19137,65.5270655270655], + [19139,253.043253043253], + [19141,65.009065009065], + [19143,41.958041958042], + [19145,77.1820771820772], + [19147,43.2530432530433], + [19149,75.1100751100751], + [19151,32.8930328930329], + [19153,1943.79694379694], + [19155,253.820253820254], + [19157,83.6570836570837], + [19159,24.8640248640249], + [19161,46.6200466200466], + [19163,934.213934213934], + [19165,53.3540533540534], + [19167,113.701113701114], + [19169,404.817404817405], + [19171,63.7140637140637], + [19173,30.8210308210308], + [19175,76.6640766640767], + [19177,40.4040404040404], + [19179,213.675213675214], + [19181,210.04921004921], + [19183,98.938098938099], + [19185,31.5980315980316], + [19187,137.529137529138], + [19189,70.1890701890702], + [19191,78.995078995079], + [19193,303.289303289303], + [19195,49.2100492100492], + [19197,59.0520590520591], + [20001,69.1530691530692], + [20003,36.2600362600363], + [20005,101.787101787102], + [20007,11.1370111370111], + [20009,80.03108003108], + [20011,61.9010619010619], + [20013,45.3250453250453], + [20015,119.399119399119], + [20017,9.32400932400932], + [20019,14.7630147630148], + [20021,95.3120953120953], + [20023,6.99300699300699], + [20025,5.95700595700596], + [20027,34.1880341880342], + [20029,34.4470344470345], + [20031,35.4830354830355], + [20033,6.21600621600622], + [20035,83.6570836570837], + [20037,171.976171976172], + [20039,8.54700854700855], + [20041,60.3470603470604], + [20043,52.3180523180523], + [20045,629.62962962963], + [20047,12.6910126910127], + [20049,11.6550116550117], + [20051,81.8440818440818], + [20053,23.5690235690236], + [20055,73.038073038073], + [20057,79.7720797720798], + [20059,117.845117845118], + [20061,231.287231287231], + [20063,6.47500647500648], + [20065,7.51100751100751], + [20067,35.2240352240352], + [20069,17.8710178710179], + [20071,4.14400414400414], + [20073,15.2810152810153], + [20075,6.99300699300699], + [20077,19.4250194250194], + [20079,166.537166537167], + [20081,19.1660191660192], + [20083,5.6980056980057], + [20085,53.0950530950531], + [20087,92.981092981093], + [20089,8.80600880600881], + [20091,2977.46697746698], + [20093,11.9140119140119], + [20095,23.5690235690236], + [20097,9.06500906500907], + [20099,86.7650867650868], + [20101,6.21600621600622], + [20103,426.573426573427], + [20105,11.6550116550117], + [20107,42.2170422170422], + [20109,6.73400673400673], + [20111,103.082103082103], + [20113,84.1750841750842], + [20115,34.7060347060347], + [20117,29.008029008029], + [20119,12.1730121730122], + [20121,147.630147630148], + [20123,23.5690235690236], + [20125,142.709142709143], + [20127,22.015022015022], + [20129,11.3960113960114], + [20131,36.7780367780368], + [20133,74.8510748510748], + [20135,7.51100751100751], + [20137,16.8350168350168], + [20139,59.8290598290598], + [20141,11.1370111370111], + [20143,22.015022015022], + [20145,23.8280238280238], + [20147,16.5760165760166], + [20149,66.5630665630666], + [20151,33.9290339290339], + [20153,6.21600621600622], + [20155,133.126133126133], + [20157,17.8710178710179], + [20159,36.001036001036], + [20161,301.994301994302], + [20163,15.022015022015], + [20165,11.9140119140119], + [20167,20.4610204610205], + [20169,199.9481999482], + [20171,17.8710178710179], + [20173,1293.96529396529], + [20175,92.981092981093], + [20177,847.189847189847], + [20179,7.51100751100751], + [20181,14.7630147630148], + [20183,11.1370111370111], + [20185,14.5040145040145], + [20187,8.54700854700855], + [20189,20.4610204610205], + [20191,52.8360528360528], + [20193,19.1660191660192], + [20195,8.80600880600881], + [20197,23.0510230510231], + [20199,4.14400414400414], + [20201,16.8350168350168], + [20203,8.02900802900803], + [20205,42.7350427350427], + [20207,17.0940170940171], + [20209,2691.01269101269], + [21001,119.140119140119], + [21003,150.22015022015], + [21005,274.799274799275], + [21007,86.5060865060865], + [21009,224.035224035224], + [21011,107.744107744108], + [21013,206.941206941207], + [21015,1249.15824915825], + [21017,178.710178710179], + [21019,802.641802641803], + [21021,408.702408702409], + [21023,106.967106967107], + [21025,73.038073038073], + [21027,91.6860916860917], + [21029,648.018648018648], + [21031,77.1820771820772], + [21033,97.6430976430977], + [21035,250.19425019425], + [21037,1546.23154623155], + [21039,69.6710696710697], + [21041,217.819217819218], + [21043,175.343175343175], + [21045,92.981092981093], + [21047,267.029267029267], + [21049,365.449365449365], + [21051,119.91711991712], + [21053,134.939134939135], + [21055,67.0810670810671], + [21057,58.2750582750583], + [21059,546.231546231546], + [21061,104.118104118104], + [21063,86.7650867650868], + [21065,150.22015022015], + [21067,2700.8547008547], + [21069,106.708106708107], + [21071,259.77725977726], + [21073,614.348614348614], + [21075,85.988085988086], + [21077,219.63221963222], + [21079,190.36519036519], + [21081,247.604247604248], + [21083,174.307174307174], + [21085,134.162134162134], + [21087,102.046102046102], + [21089,277.648277648278], + [21091,118.104118104118], + [21093,438.487438487439], + [21095,162.911162911163], + [21097,159.285159285159], + [21099,114.478114478114], + [21101,274.281274281274], + [21103,139.60113960114], + [21105,52.3180523180523], + [21107,224.294224294224], + [21109,101.269101269101], + [21111,5045.58404558405], + [21113,731.157731157731], + [21115,231.028231028231], + [21117,2581.45558145558], + [21119,120.43512043512], + [21121,213.675213675214], + [21123,140.637140637141], + [21125,351.204351204351], + [21127,98.938098938099], + [21129,97.9020979020979], + [21131,73.038073038073], + [21133,188.034188034188], + [21135,74.3330743330743], + [21137,191.919191919192], + [21139,78.7360787360787], + [21141,125.874125874126], + [21143,100.751100751101], + [21145,682.724682724683], + [21147,111.111111111111], + [21149,97.9020979020979], + [21151,491.064491064491], + [21153,111.888111888112], + [21155,149.70214970215], + [21157,270.39627039627], + [21159,145.817145817146], + [21161,188.552188552189], + [21163,242.424242424242], + [21165,80.2900802900803], + [21167,221.963221963222], + [21169,90.3910903910904], + [21171,86.2470862470862], + [21173,347.837347837348], + [21175,94.5350945350945], + [21177,174.566174566175], + [21179,269.360269360269], + [21181,94.7940947940948], + [21183,105.154105154105], + [21185,834.498834498835], + [21187,80.03108003108], + [21189,62.4190624190624], + [21191,139.083139083139], + [21193,218.855218855219], + [21195,213.934213934214], + [21197,182.595182595183], + [21199,248.122248122248], + [21201,59.0520590520591], + [21203,139.60113960114], + [21205,216.006216006216], + [21207,179.228179228179], + [21209,433.566433566434], + [21211,286.972286972287], + [21213,191.660191660192], + [21215,236.726236726237], + [21217,238.280238280238], + [21219,86.2470862470862], + [21221,84.1750841750842], + [21223,150.479150479151], + [21225,113.442113442113], + [21227,544.159544159544], + [21229,102.046102046102], + [21231,117.586117586118], + [21233,106.190106190106], + [21235,210.826210826211], + [21237,85.7290857290857], + [21239,342.139342139342], + [22001,244.237244237244], + [22003,87.5420875420875], + [22005,957.523957523958], + [22007,179.228179228179], + [22009,130.795130795131], + [22011,79.7720797720798], + [22013,45.8430458430458], + [22015,360.787360787361], + [22017,751.618751618752], + [22019,469.308469308469], + [22021,49.4690494690495], + [22023,13.7270137270137], + [22025,38.0730380730381], + [22027,59.0520590520591], + [22029,77.4410774410774], + [22031,78.7360787360787], + [22033,2503.4965034965], + [22035,47.6560476560477], + [22037,115.773115773116], + [22039,132.867132867133], + [22041,85.988085988086], + [22043,89.8730898730899], + [22045,330.484330484331], + [22047,139.86013986014], + [22049,74.0740740740741], + [22051,3789.43278943279], + [22053,125.615125615126], + [22055,2135.71613571614], + [22057,233.618233618234], + [22059,61.6420616420616], + [22061,256.669256669257], + [22063,511.525511525512], + [22065,50.2460502460502], + [22067,91.1680911680912], + [22069,81.8440818440818], + [22071,5256.15125615126], + [22073,652.162652162652], + [22075,76.4050764050764], + [22077,105.931105931106], + [22079,258.741258741259], + [22081,60.6060606060606], + [22083,96.0890960890961], + [22085,72.5200725200725], + [22087,246.309246309246], + [22089,489.76948976949], + [22091,70.966070966071], + [22093,236.985236985237], + [22095,558.145558145558], + [22097,233.877233877234], + [22099,183.113183113183], + [22101,254.856254856255], + [22103,715.876715876716], + [22105,396.270396270396], + [22107,22.5330225330225], + [22109,235.172235172235], + [22111,67.0810670810671], + [22113,127.946127946128], + [22115,102.046102046102], + [22117,182.336182336182], + [22119,180.00518000518], + [22121,320.12432012432], + [22123,83.6570836570837], + [22125,100.4921004921], + [22127,41.6990416990417], + [23001,596.218596218596], + [23003,27.972027972028], + [23005,873.348873348873], + [23007,46.8790468790469], + [23009,88.8370888370888], + [23011,364.672364672365], + [23013,281.792281792282], + [23015,195.804195804196], + [23017,72.002072002072], + [23019,117.327117327117], + [23021,11.3960113960114], + [23023,360.26936026936], + [23025,34.4470344470345], + [23027,137.529137529138], + [23029,33.1520331520332], + [23031,515.410515410515], + [24001,458.430458430458], + [24003,3356.38435638436], + [24005,3484.84848484849], + [24009,1078.21807821808], + [24011,268.065268065268], + [24013,967.106967106967], + [24015,756.280756280756], + [24017,829.318829318829], + [24019,156.177156177156], + [24021,915.565915565916], + [24023,120.43512043512], + [24025,1450.66045066045], + [24027,2965.29396529397], + [24029,188.811188811189], + [24031,5123.54312354312], + [24033,4632.99663299663], + [24035,332.815332815333], + [24037,762.496762496763], + [24039,214.452214452214], + [24041,364.413364413364], + [24043,834.239834239834], + [24045,682.983682983683], + [24047,284.641284641285], + [24510,19869.2048692049], + [25001,1420.09842009842], + [25003,366.744366744367], + [25005,2567.46956746957], + [25007,414.918414918415], + [25009,3907.79590779591], + [25011,264.439264439264], + [25013,1945.09194509195], + [25015,776.482776482777], + [25017,4760.16576016576], + [25019,585.858585858586], + [25021,4386.42838642839], + [25023,1944.83294483294], + [25025,32156.6951566952], + [25027,1369.07536907537], + [26001,41.958041958042], + [26003,27.1950271950272], + [26005,349.65034965035], + [26007,134.162134162134], + [26009,128.464128464128], + [26011,113.442113442113], + [26013,25.6410256410256], + [26015,277.130277130277], + [26017,631.183631183631], + [26019,141.932141932142], + [26021,715.358715358715], + [26023,231.546231546232], + [26025,499.352499352499], + [26027,276.353276353276], + [26029,161.357161357161], + [26031,94.7940947940948], + [26033,63.973063973064], + [26035,141.932141932142], + [26037,344.729344729345], + [26039,65.5270655270655], + [26041,82.1030821030821], + [26043,89.0960890960891], + [26045,485.107485107485], + [26047,181.041181041181], + [26049,1731.41673141673], + [26051,132.608132608133], + [26053,38.5910385910386], + [26055,485.107485107485], + [26057,193.473193473193], + [26059,202.279202279202], + [26061,94.017094017094], + [26063,102.564102564103], + [26065,1308.21030821031], + [26067,289.82128982129], + [26069,121.989121989122], + [26071,26.1590261590262], + [26073,318.052318052318], + [26075,591.556591556592], + [26077,1154.36415436415], + [26079,79.2540792540793], + [26081,1842.78684278684], + [26083,10.3600103600104], + [26085,52.5770525770526], + [26087,355.866355866356], + [26089,161.875161875162], + [26091,345.247345247345], + [26093,829.318829318829], + [26095,19.1660191660192], + [26097,28.2310282310282], + [26099,4545.19554519555], + [26101,118.104118104118], + [26103,96.0890960890961], + [26105,150.22015022015], + [26107,199.6891996892], + [26109,59.5700595700596], + [26111,419.58041958042], + [26113,68.1170681170681], + [26115,716.653716653717], + [26117,232.582232582233], + [26119,46.3610463610464], + [26121,893.291893291893], + [26123,154.364154364154], + [26125,3588.96658896659], + [26127,134.421134421134], + [26129,99.7150997150997], + [26131,13.4680134680135], + [26133,107.485107485107], + [26135,39.6270396270396], + [26137,121.471121471121], + [26139,1212.63921263921], + [26141,52.5770525770526], + [26143,121.989121989122], + [26145,648.018648018648], + [26147,585.599585599586], + [26149,317.016317016317], + [26151,116.032116032116], + [26153,18.6480186480187], + [26155,344.729344729345], + [26157,179.74617974618], + [26159,325.045325045325], + [26161,1264.95726495727], + [26163,7703.7037037037], + [26165,149.96114996115], + [27001,23.0510230510231], + [27003,2025.64102564103], + [27005,63.973063973064], + [27007,45.8430458430458], + [27009,243.978243978244], + [27011,27.4540274540275], + [27013,221.704221704222], + [27015,109.81610981611], + [27017,106.449106449106], + [27019,665.371665371665], + [27021,36.5190365190365], + [27023,55.4260554260554], + [27025,336.441336441336], + [27027,146.076146076146], + [27029,22.5330225330225], + [27031,9.32400932400932], + [27033,47.3970473970474], + [27035,162.134162134162], + [27037,1836.31183631184], + [27039,118.363118363118], + [27041,146.335146335146], + [27043,52.8360528360528], + [27045,62.6780626780627], + [27047,114.478114478114], + [27049,157.990157990158], + [27051,28.4900284900285], + [27053,5391.60839160839], + [27055,89.3550893550894], + [27057,57.2390572390572], + [27059,224.812224812225], + [27061,43.7710437710438], + [27063,37.8140378140378], + [27065,80.5490805490806], + [27067,137.270137270137], + [27069,10.6190106190106], + [27071,11.1370111370111], + [27073,24.6050246050246], + [27075,13.4680134680135], + [27077,8.02900802900803], + [27079,159.80315980316], + [27081,28.4900284900285], + [27083,93.7580937580938], + [27085,193.214193214193], + [27087,25.1230251230251], + [27089,13.7270137270137], + [27091,75.8870758870759], + [27093,99.1970991970992], + [27095,118.104118104118], + [27097,76.4050764050764], + [27099,142.709142709143], + [27101,32.1160321160321], + [27103,189.070189070189], + [27105,77.4410774410774], + [27107,20.4610204610205], + [27109,571.872571872572], + [27111,75.3690753690754], + [27113,58.5340585340585], + [27115,54.6490546490547], + [27117,53.3540533540534], + [27119,41.4400414400414], + [27121,42.4760424760425], + [27123,8655.01165501166], + [27125,24.6050246050246], + [27127,47.3970473970474], + [27129,41.4400414400414], + [27131,335.146335146335], + [27133,52.0590520590521], + [27135,24.0870240870241], + [27137,82.8800828800829], + [27139,944.055944055944], + [27141,529.396529396529], + [27143,67.0810670810671], + [27145,290.598290598291], + [27147,220.40922040922], + [27149,44.8070448070448], + [27151,34.1880341880342], + [27153,68.1170681170681], + [27155,16.0580160580161], + [27157,107.226107226107], + [27159,66.8220668220668], + [27161,117.068117068117], + [27163,1605.02460502461], + [27165,66.8220668220668], + [27167,22.7920227920228], + [27169,212.898212898213], + [27171,488.215488215488], + [27173,35.7420357420357], + [28001,180.782180782181], + [28003,239.83423983424], + [28005,46.6200466200466], + [28007,68.8940688940689], + [28009,55.6850556850557], + [28011,101.010101010101], + [28013,66.0450660450661], + [28015,43.7710437710438], + [28017,89.8730898730899], + [28019,52.8360528360528], + [28021,51.023051023051], + [28023,62.6780626780627], + [28025,130.27713027713], + [28027,122.507122507123], + [28029,98.1610981610982], + [28031,122.507122507123], + [28033,877.233877233877], + [28035,416.213416213416], + [28037,37.2960372960373], + [28039,122.248122248122], + [28041,52.3180523180523], + [28043,134.421134421134], + [28045,240.09324009324], + [28047,844.340844340844], + [28049,730.38073038073], + [28051,65.7860657860658], + [28053,58.016058016058], + [28055,8.80600880600881], + [28057,113.701113701114], + [28059,500.3885003885], + [28061,65.2680652680653], + [28063,38.5910385910386], + [28065,79.2540792540793], + [28067,252.525252525253], + [28069,35.2240352240352], + [28071,194.250194250194], + [28073,290.08029008029], + [28075,295.519295519296], + [28077,77.7000777000777], + [28079,105.672105672106], + [28081,477.337477337477], + [28083,141.155141155141], + [28085,154.105154105154], + [28087,306.397306397306], + [28089,344.988344988345], + [28091,129.241129241129], + [28093,136.234136234136], + [28095,125.097125097125], + [28097,69.4120694120694], + [28099,134.939134939135], + [28101,97.3840973840974], + [28103,42.994042994043], + [28105,269.360269360269], + [28107,131.313131313131], + [28109,178.451178451178], + [28111,48.9510489510489], + [28113,255.892255892256], + [28115,155.918155918156], + [28117,157.731157731158], + [28119,52.5770525770526], + [28121,472.934472934473], + [28123,120.17612017612], + [28125,29.5260295260295], + [28127,120.953120953121], + [28129,67.0810670810671], + [28131,103.341103341103], + [28133,109.298109298109], + [28135,61.6420616420616], + [28137,184.926184926185], + [28139,125.874125874126], + [28141,119.65811965812], + [28143,61.3830613830614], + [28145,169.127169127169], + [28147,98.938098938099], + [28149,214.711214711215], + [28151,182.854182854183], + [28153,66.3040663040663], + [28155,63.1960631960632], + [28157,37.8140378140378], + [28159,81.8440818440818], + [28161,70.1890701890702], + [28163,78.7360787360787], + [29001,116.809116809117], + [29003,103.600103600104], + [29005,26.9360269360269], + [29007,95.5710955710956], + [29009,118.363118363118], + [29011,54.3900543900544], + [29013,52.8360528360528], + [29015,70.1890701890702], + [29017,51.8000518000518], + [29019,614.607614607615], + [29021,566.174566174566], + [29023,159.54415954416], + [29025,57.2390572390572], + [29027,137.529137529138], + [29029,173.789173789174], + [29031,338.772338772339], + [29033,34.7060347060347], + [29035,31.8570318570319], + [29037,369.85236985237], + [29039,76.4050764050764], + [29041,26.9360269360269], + [29043,356.384356384356], + [29045,36.5190365190365], + [29047,1446.77544677545], + [29049,128.205128205128], + [29051,499.8704998705], + [29053,80.8080808080808], + [29055,86.2470862470862], + [29057,41.6990416990417], + [29059,80.2900802900803], + [29061,38.8500388500389], + [29063,79.2540792540793], + [29065,53.8720538720539], + [29067,43.5120435120435], + [29069,153.069153069153], + [29071,284.900284900285], + [29073,76.1460761460761], + [29075,35.4830354830355], + [29077,1055.42605542606], + [29079,61.1240611240611], + [29081,32.1160321160321], + [29083,82.8800828800829], + [29085,62.4190624190624], + [29087,27.4540274540275], + [29089,56.7210567210567], + [29091,112.924112924113], + [29093,49.98704998705], + [29095,2888.62988862989], + [29097,476.301476301476], + [29099,862.729862729863], + [29101,164.206164206164], + [29103,21.2380212380212], + [29105,120.43512043512], + [29107,137.529137529138], + [29109,163.688163688164], + [29111,52.3180523180523], + [29113,217.301217301217], + [29115,53.6130536130536], + [29117,73.8150738150738], + [29119,110.852110852111], + [29121,50.2460502460502], + [29123,63.973063973064], + [29125,45.0660450660451], + [29127,170.681170681171], + [29129,21.4970214970215], + [29131,108.262108262108], + [29133,90.3910903910904], + [29135,97.3840973840974], + [29137,35.2240352240352], + [29139,59.0520590520591], + [29141,89.0960890960891], + [29143,72.7790727790728], + [29145,240.870240870241], + [29147,68.8940688940689], + [29149,35.7420357420357], + [29151,59.5700595700596], + [29153,33.9290339290339], + [29155,96.0890960890961], + [29157,103.600103600104], + [29159,160.32116032116], + [29161,174.048174048174], + [29163,71.4840714840715], + [29165,550.634550634551], + [29167,126.910126910127], + [29169,247.345247345247], + [29171,24.8640248640249], + [29173,55.944055944056], + [29175,136.493136493137], + [29177,106.967106967107], + [29179,21.4970214970215], + [29181,58.016058016058], + [29183,1665.88966588967], + [29185,37.8140378140378], + [29186,94.2760942760943], + [29187,374.514374514375], + [29189,5095.0530950531], + [29195,80.03108003108], + [29197,37.2960372960373], + [29199,28.7490287490288], + [29201,241.647241647242], + [29203,21.7560217560218], + [29205,32.8930328930329], + [29207,94.2760942760943], + [29209,179.74617974618], + [29211,26.9360269360269], + [29213,211.603211603212], + [29215,57.2390572390572], + [29217,66.3040663040663], + [29219,196.581196581197], + [29221,85.988085988086], + [29223,46.1020461020461], + [29225,158.249158249158], + [29227,20.979020979021], + [29229,71.4840714840715], + [29510,13357.9383579384], + [30001,4.4030044030044], + [30003,6.73400673400673], + [30005,3.88500388500389], + [30007,12.1730121730122], + [30009,12.6910126910127], + [30011,0.777000777000777], + [30013,77.959077959078], + [30015,3.88500388500389], + [30017,8.02900802900803], + [30019,3.10800310800311], + [30021,9.84200984200984], + [30023,32.6340326340326], + [30025,4.66200466200466], + [30027,6.99300699300699], + [30029,46.3610463610464], + [30031,89.0960890960891], + [30033,0.777000777000777], + [30035,11.6550116550117], + [30037,2.07200207200207], + [30039,4.66200466200466], + [30041,14.5040145040145], + [30043,17.8710178710179], + [30045,2.84900284900285], + [30047,49.98704998705], + [30049,47.3970473970474], + [30051,4.14400414400414], + [30053,13.986013986014], + [30055,1.81300181300181], + [30057,5.43900543900544], + [30059,2.07200207200207], + [30061,9.06500906500907], + [30063,109.039109039109], + [30065,6.21600621600622], + [30067,14.5040145040145], + [30069,0.777000777000777], + [30071,2.07200207200207], + [30073,9.84200984200984], + [30075,1.2950012950013], + [30077,7.77000777000777], + [30079,1.81300181300181], + [30081,43.5120435120435], + [30083,12.1730121730122], + [30085,11.3960113960114], + [30087,4.66200466200466], + [30089,10.6190106190106], + [30091,5.18000518000518], + [30093,123.284123284123], + [30095,13.2090132090132], + [30097,5.18000518000518], + [30099,6.99300699300699], + [30101,7.25200725200725], + [30103,1.81300181300181], + [30105,3.88500388500389], + [30107,3.88500388500389], + [30109,2.84900284900285], + [30111,145.558145558146], + [31001,144.263144263144], + [31003,20.2020202020202], + [31005,1.55400155400155], + [31007,2.33100233100233], + [31009,1.81300181300181], + [31011,20.7200207200207], + [31013,27.1950271950272], + [31015,10.1010101010101], + [31017,6.73400673400673], + [31019,123.284123284123], + [31021,36.2600362600363], + [31023,37.2960372960373], + [31025,117.327117327117], + [31027,31.0800310800311], + [31029,11.3960113960114], + [31031,2.59000259000259], + [31033,21.7560217560218], + [31035,29.5260295260295], + [31037,66.0450660450661], + [31039,41.4400414400414], + [31041,10.8780108780109], + [31043,205.905205905206], + [31045,17.0940170940171], + [31047,62.1600621600622], + [31049,11.3960113960114], + [31051,32.6340326340326], + [31053,179.74617974618], + [31055,4077.70007770008], + [31057,5.6980056980057], + [31059,26.4180264180264], + [31061,14.5040145040145], + [31063,7.25200725200725], + [31065,17.8710178710179], + [31067,67.8580678580679], + [31069,3.10800310800311], + [31071,9.32400932400932], + [31073,11.6550116550117], + [31075,2.07200207200207], + [31077,11.6550116550117], + [31079,277.907277907278], + [31081,43.5120435120435], + [31083,16.0580160580161], + [31085,3.62600362600363], + [31087,10.6190106190106], + [31089,11.1370111370111], + [31091,2.59000259000259], + [31093,28.4900284900285], + [31095,34.1880341880342], + [31097,36.001036001036], + [31099,32.6340326340326], + [31101,20.4610204610205], + [31103,2.84900284900285], + [31105,10.3600103600104], + [31107,20.4610204610205], + [31109,882.672882672883], + [31111,36.7780367780368], + [31113,3.36700336700337], + [31115,2.84900284900285], + [31117,1.55400155400155], + [31119,157.731157731158], + [31121,41.958041958042], + [31123,9.06500906500907], + [31125,22.015022015022], + [31127,46.1020461020461], + [31129,20.2020202020202], + [31131,66.3040663040663], + [31133,16.5760165760166], + [31135,8.80600880600881], + [31137,44.030044030044], + [31139,32.8930328930329], + [31141,123.802123802124], + [31143,31.8570318570319], + [31145,39.8860398860399], + [31147,39.3680393680394], + [31149,3.88500388500389], + [31151,63.973063973064], + [31153,1721.31572131572], + [31155,71.7430717430717], + [31157,129.50012950013], + [31159,75.8870758870759], + [31161,5.6980056980057], + [31163,14.5040145040145], + [31165,1.55400155400155], + [31167,37.037037037037], + [31169,23.5690235690236], + [31171,2.33100233100233], + [31173,45.5840455840456], + [31175,19.4250194250194], + [31177,134.421134421134], + [31179,56.2030562030562], + [31181,17.0940170940171], + [31183,3.62600362600363], + [31185,61.9010619010619], + [32001,12.950012950013], + [32003,640.507640507641], + [32005,171.458171458171], + [32007,7.25200725200725], + [32009,0.518000518000518], + [32011,1.2950012950013], + [32013,4.4030044030044], + [32015,2.84900284900285], + [32017,1.2950012950013], + [32019,67.3400673400673], + [32021,3.36700336700337], + [32023,6.21600621600622], + [32027,2.84900284900285], + [32029,39.6270396270396], + [32031,173.271173271173], + [32033,2.84900284900285], + [32510,989.63998963999], + [33001,388.759388759389], + [33003,133.126133126133], + [33005,282.569282569283], + [33007,47.6560476560477], + [33009,135.198135198135], + [33011,1184.66718466718], + [33013,406.112406112406], + [33015,1100.7511007511], + [33017,864.283864283864], + [33019,210.826210826211], + [34001,1279.72027972028], + [34003,10060.8650608651], + [34005,1455.32245532246], + [34007,6012.69101269101], + [34009,1002.072002072], + [34011,840.19684019684], + [34013,16087.8010878011], + [34015,2318.82931882932], + [34017,35564.3615643616], + [34019,777.000777000777], + [34021,4227.40222740223], + [34023,6789.95078995079], + [34025,3482.77648277648], + [34027,2770.78477078477], + [34029,2375.03237503238], + [34031,7032.63403263403], + [34033,515.669515669516], + [34035,2775.70577570578], + [34037,744.884744884745], + [34039,13509.7125097125], + [34041,788.655788655789], + [35001,1478.37347837348], + [35003,1.2950012950013], + [35005,27.972027972028], + [35006,15.5400155400155], + [35007,9.58300958300958], + [35009,89.0960890960891], + [35011,2.33100233100233], + [35013,142.450142450142], + [35015,33.4110334110334], + [35017,19.1660191660192], + [35019,3.88500388500389], + [35021,0.777000777000777], + [35023,3.62600362600363], + [35025,38.0730380730381], + [35027,10.8780108780109], + [35028,425.796425796426], + [35029,22.015022015022], + [35031,33.9290339290339], + [35033,6.47500647500648], + [35035,24.8640248640249], + [35037,8.02900802900803], + [35039,17.8710178710179], + [35041,20.979020979021], + [35043,91.945091945092], + [35045,61.1240611240611], + [35047,16.0580160580161], + [35049,195.545195545196], + [35051,7.51100751100751], + [35053,6.99300699300699], + [35055,38.8500388500389], + [35057,12.6910126910127], + [35059,3.10800310800311], + [35061,185.962185962186], + [36001,1507.12250712251], + [36003,123.284123284123], + [36005,85220.4092204092], + [36007,736.078736078736], + [36009,159.026159026159], + [36011,299.6632996633], + [36013,329.448329448329], + [36015,564.879564879565], + [36017,146.335146335146], + [36019,204.869204869205], + [36021,257.446257446257], + [36023,256.151256151256], + [36025,86.2470862470862], + [36027,968.401968401968], + [36029,2282.82828282828], + [36031,56.7210567210567], + [36033,82.1030821030821], + [36035,290.33929033929], + [36037,315.721315721316], + [36039,197.099197099197], + [36041,7.25200725200725], + [36043,118.363118363118], + [36045,237.244237244237], + [36047,91606.0606060606], + [36049,55.1670551670552], + [36051,268.065268065268], + [36053,290.598290598291], + [36055,2933.43693343693], + [36057,322.714322714323], + [36059,12185.4441854442], + [36061,179921.004921005], + [36063,1073.29707329707], + [36065,501.683501683502], + [36067,1554.00155400155], + [36069,434.084434084434], + [36071,1189.58818958819], + [36073,283.864283864284], + [36075,332.297332297332], + [36077,161.098161098161], + [36079,1121.21212121212], + [36081,53233.8772338772], + [36083,632.996632996633], + [36085,20798.4977984978], + [36087,4651.38565138565], + [36089,108.262108262108], + [36091,702.149702149702], + [36093,1959.59595959596], + [36095,136.493136493137], + [36097,144.781144781145], + [36099,282.051282051282], + [36101,184.408184408184], + [36103,4240.87024087024], + [36105,207.459207459207], + [36107,255.374255374255], + [36109,554.260554260554], + [36111,420.35742035742], + [36113,196.322196322196], + [36115,197.099197099197], + [36117,402.227402227402], + [36119,5710.17871017871], + [36121,184.149184149184], + [36123,194.250194250194], + [37001,923.335923335923], + [37003,370.629370629371], + [37005,123.025123025123], + [37007,131.313131313131], + [37009,165.760165760166], + [37011,186.480186480187], + [37013,149.443149443149], + [37015,78.7360787360787], + [37017,104.118104118104], + [37019,328.412328412328], + [37021,939.91193991194], + [37023,464.387464387464], + [37025,1274.54027454027], + [37027,456.099456099456], + [37029,107.485107485107], + [37031,340.06734006734], + [37033,144.522144522145], + [37035,1002.59000259], + [37037,241.129241129241], + [37039,156.177156177156], + [37041,222.222222222222], + [37043,127.687127687128], + [37045,547.267547267547], + [37047,160.580160580161], + [37049,378.140378140378], + [37051,1268.32426832427], + [37053,232.841232841233], + [37055,229.215229215229], + [37057,763.273763273763], + [37059,404.558404558405], + [37061,185.703185703186], + [37063,2423.46542346542], + [37065,289.82128982129], + [37067,2225.33022533023], + [37069,319.347319347319], + [37071,1499.0934990935], + [37073,92.7220927220927], + [37075,78.4770784770785], + [37077,291.893291893292], + [37079,207.977207977208], + [37081,1959.07795907796], + [37083,195.545195545196], + [37085,499.093499093499], + [37087,276.094276094276], + [37089,740.999740999741], + [37091,181.041181041181], + [37093,311.318311318311], + [37095,24.6050246050246], + [37097,719.50271950272], + [37099,212.639212639213], + [37101,552.706552706553], + [37103,55.944055944056], + [37105,587.930587930588], + [37107,384.615384615385], + [37109,680.39368039368], + [37111,264.439264439264], + [37113,170.42217042217], + [37115,119.65811965812], + [37117,137.529137529138], + [37119,4546.74954674955], + [37121,182.336182336182], + [37123,146.335146335146], + [37125,327.635327635328], + [37127,459.207459207459], + [37129,2740.48174048174], + [37131,106.708106708107], + [37133,603.729603729604], + [37135,870.758870758871], + [37137,101.269101269101], + [37139,464.128464128464], + [37141,155.400155400155], + [37143,140.896140896141], + [37145,260.554260554261], + [37147,667.961667961668], + [37149,223.517223517224], + [37151,469.049469049469], + [37153,254.856254856255], + [37155,365.967365967366], + [37157,428.904428904429], + [37159,701.113701113701], + [37161,311.318311318311], + [37163,173.789173789174], + [37165,293.706293706294], + [37167,397.047397047397], + [37169,273.504273504274], + [37171,358.456358456359], + [37173,68.6350686350686], + [37175,226.366226366226], + [37177,29.2670292670293], + [37179,825.433825433825], + [37181,464.128464128464], + [37183,2794.09479409479], + [37185,126.651126651127], + [37187,98.4200984200984], + [37189,423.206423206423], + [37191,574.203574203574], + [37193,238.021238021238], + [37195,571.354571354571], + [37197,297.073297073297], + [37199,147.630147630148], + [38001,6.21600621600622], + [38003,19.1660191660192], + [38005,12.4320124320124], + [38007,1.81300181300181], + [38009,10.1010101010101], + [38011,6.99300699300699], + [38013,4.66200466200466], + [38015,128.982128982129], + [38017,219.89121989122], + [38019,6.99300699300699], + [38021,12.1730121730122], + [38023,4.14400414400414], + [38025,4.66200466200466], + [38027,9.84200984200984], + [38029,6.21600621600622], + [38031,13.7270137270137], + [38033,4.4030044030044], + [38035,120.43512043512], + [38037,3.62600362600363], + [38039,8.80600880600881], + [38041,5.6980056980057], + [38043,4.66200466200466], + [38045,9.32400932400932], + [38047,5.18000518000518], + [38049,7.51100751100751], + [38051,7.51100751100751], + [38053,5.95700595700596], + [38055,10.8780108780109], + [38057,20.979020979021], + [38059,37.037037037037], + [38061,10.8780108780109], + [38063,8.28800828800829], + [38065,6.73400673400673], + [38067,17.0940170940171], + [38069,11.1370111370111], + [38071,24.8640248640249], + [38073,16.3170163170163], + [38075,7.25200725200725], + [38077,29.5260295260295], + [38079,39.8860398860399], + [38081,11.6550116550117], + [38083,3.62600362600363], + [38085,9.84200984200984], + [38087,1.55400155400155], + [38089,46.8790468790469], + [38091,7.25200725200725], + [38093,24.6050246050246], + [38095,5.6980056980057], + [38097,24.3460243460243], + [38099,22.5330225330225], + [38101,79.2540792540793], + [38103,8.54700854700855], + [38105,27.972027972028], + [39001,126.651126651127], + [39003,684.278684278684], + [39005,325.304325304325], + [39007,374.514374514375], + [39009,333.074333074333], + [39011,296.555296555297], + [39013,342.657342657343], + [39015,236.985236985237], + [39017,2041.44004144004], + [39019,189.329189329189], + [39021,242.165242165242], + [39023,901.320901320901], + [39025,1130.53613053613], + [39027,266.511266511267], + [39029,524.993524993525], + [39031,169.386169386169], + [39033,282.310282310282], + [39035,7252.00725200725], + [39037,229.215229215229], + [39039,245.791245791246], + [39041,1018.38901838902], + [39043,793.576793576794], + [39045,750.582750582751], + [39047,184.926184926185], + [39049,5662.00466200466], + [39051,272.727272727273], + [39053,171.717171717172], + [39055,604.506604506605], + [39057,1011.39601139601], + [39059,198.912198912199], + [39061,5119.65811965812], + [39063,364.413364413364], + [39065,176.379176379176], + [39067,102.046102046102], + [39069,175.602175602176], + [39071,204.092204092204], + [39073,180.523180523181], + [39075,259.77725977726], + [39077,314.167314167314], + [39079,204.610204610205], + [39081,442.113442113442], + [39083,300.1813001813], + [39085,2619.01061901062], + [39087,356.643356643357], + [39089,631.701631701632], + [39091,259.000259000259], + [39093,1589.22558922559], + [39095,3357.16135716136], + [39097,241.388241388241], + [39099,1502.7195027195], + [39101,426.573426573427], + [39103,1059.31105931106], + [39105,143.227143227143], + [39107,228.697228697229], + [39109,652.939652939653], + [39111,83.1390831390831], + [39113,3003.108003108], + [39115,93.7580937580938], + [39117,222.222222222222], + [39119,335.405335405335], + [39121,95.3120953120953], + [39123,420.875420875421], + [39125,121.989121989122], + [39127,228.956228956229], + [39129,287.749287749288], + [39131,168.868168868169], + [39133,857.808857808858], + [39135,258.223258223258], + [39137,185.185185185185], + [39139,650.867650867651], + [39141,293.447293447293], + [39143,386.428386428386], + [39145,337.477337477338], + [39147,266.770266770267], + [39149,313.908313908314], + [39151,1691.01269101269], + [39153,3399.6373996374], + [39155,880.859880859881], + [39157,422.429422429422], + [39159,313.649313649314], + [39161,182.077182077182], + [39163,84.4340844340844], + [39165,1372.70137270137], + [39167,253.302253302253], + [39169,534.576534576535], + [39171,231.546231546232], + [39173,526.547526547527], + [39175,144.004144004144], + [40001,102.564102564103], + [40003,16.8350168350168], + [40005,37.5550375550376], + [40007,8.02900802900803], + [40009,63.4550634550635], + [40011,33.4110334110334], + [40013,121.471121471121], + [40015,60.0880600880601], + [40017,333.851333851334], + [40019,149.70214970215], + [40021,162.393162393162], + [40023,51.023051023051], + [40025,3.36700336700337], + [40027,1229.47422947423], + [40029,29.7850297850298], + [40031,300.699300699301], + [40033,25.3820253820254], + [40035,51.023051023051], + [40037,190.624190624191], + [40039,72.002072002072], + [40041,145.558145558146], + [40043,12.4320124320124], + [40045,8.80600880600881], + [40047,148.148148148148], + [40049,89.0960890960891], + [40051,123.284123284123], + [40053,11.6550116550117], + [40055,25.3820253820254], + [40057,13.986013986014], + [40059,9.06500906500907], + [40061,57.2390572390572], + [40063,45.0660450660451], + [40065,85.2110852110852], + [40067,22.015022015022], + [40069,44.030044030044], + [40071,131.054131054131], + [40073,43.2530432530433], + [40075,24.0870240870241], + [40077,39.8860398860399], + [40079,82.1030821030821], + [40081,93.2400932400932], + [40083,145.817145817146], + [40085,47.3970473970474], + [40087,156.695156695157], + [40089,46.3610463610464], + [40091,84.6930846930847], + [40093,20.4610204610205], + [40095,110.593110593111], + [40097,163.170163170163], + [40099,83.9160839160839], + [40101,226.884226884227], + [40103,40.9220409220409], + [40105,48.1740481740482], + [40107,51.023051023051], + [40109,2625.74462574463], + [40111,148.925148925149], + [40113,54.6490546490547], + [40115,175.084175084175], + [40117,75.6280756280756], + [40119,292.670292670293], + [40121,90.9090909090909], + [40123,134.680134680135], + [40125,228.438228438228], + [40127,21.4970214970215], + [40129,8.28800828800829], + [40131,333.074333074333], + [40133,104.377104377104], + [40135,163.170163170163], + [40137,134.162134162134], + [40139,26.1590261590262], + [40141,23.8280238280238], + [40143,2740.48174048174], + [40145,336.959336959337], + [40147,317.793317793318], + [40149,30.04403004403], + [40151,17.8710178710179], + [40153,41.958041958042], + [41001,13.7270137270137], + [41003,327.894327894328], + [41005,520.590520590521], + [41007,115.773115773116], + [41009,194.509194509195], + [41011,102.305102305102], + [41013,18.1300181300181], + [41015,35.4830354830355], + [41017,135.457135457135], + [41019,55.4260554260554], + [41021,4.14400414400414], + [41023,4.14400414400414], + [41025,1.81300181300181], + [41027,110.852110852111], + [41029,189.070189070189], + [41031,31.5980315980316], + [41033,130.536130536131], + [41035,29.008029008029], + [41037,2.59000259000259], + [41039,199.9481999482], + [41041,121.730121730122], + [41043,131.831131831132], + [41045,8.28800828800829], + [41047,690.753690753691], + [41049,14.2450142450142], + [41051,4415.69541569542], + [41053,263.662263662264], + [41055,5.43900543900544], + [41057,59.3110593110593], + [41059,61.1240611240611], + [41061,32.6340326340326], + [41063,5.6980056980057], + [41065,27.4540274540275], + [41067,1894.32789432789], + [41069,2.07200207200207], + [41071,358.974358974359], + [42001,506.345506345506], + [42003,4339.80833980834], + [42005,273.245273245273], + [42007,1016.05801605802], + [42009,127.428127428127], + [42011,1244.23724423724], + [42013,626.003626003626], + [42015,141.414141414141], + [42017,2679.87567987568], + [42019,603.729603729604], + [42021,540.533540533541], + [42023,33.1520331520332], + [42025,443.149443149443], + [42027,359.233359233359], + [42029,1721.57472157472], + [42031,172.494172494173], + [42033,184.667184667185], + [42035,114.478114478114], + [42037,360.787360787361], + [42039,227.143227143227], + [42041,1117.84511784512], + [42043,1322.45532245532], + [42045,7874.90287490288], + [42047,99.9740999741], + [42049,909.34990934991], + [42051,447.552447552448], + [42053,46.8790468790469], + [42055,501.683501683502], + [42057,87.8010878010878], + [42059,174.048174048174], + [42061,135.975135975136], + [42063,278.425278425278], + [42065,179.487179487179], + [42067,163.170163170163], + [42069,1209.79020979021], + [42071,1425.53742553743], + [42073,658.896658896659], + [42075,955.969955969956], + [42077,2622.37762237762], + [42079,933.436933436933], + [42081,244.755244755245], + [42083,114.996114996115], + [42085,449.106449106449], + [42087,294.224294224294], + [42089,723.128723128723], + [42091,4288.78528878529], + [42093,363.377363377363], + [42095,2085.98808598809], + [42097,534.058534058534], + [42099,216.006216006216], + [42101,29472.9344729345], + [42103,272.727272727273], + [42105,41.6990416990417], + [42107,493.136493136493], + [42109,312.872312872313], + [42111,187.516187516188], + [42113,37.037037037037], + [42115,136.493136493137], + [42117,95.8300958300958], + [42119,368.298368298368], + [42121,211.085211085211], + [42123,122.507122507123], + [42125,628.075628075628], + [42127,188.552188552189], + [42129,920.48692048692], + [42131,184.408184408184], + [42133,1246.05024605025], + [44001,5345.76534576535], + [44003,2553.48355348355], + [44005,2096.8660968661], + [44007,3963.48096348096], + [44009,998.963998963999], + [45001,134.162134162134], + [45003,387.205387205387], + [45005,66.0450660450661], + [45007,677.544677544678], + [45009,105.154105154105], + [45011,106.708106708107], + [45013,729.085729085729], + [45015,419.062419062419], + [45017,103.082103082103], + [45019,990.15799015799], + [45021,364.931364931365], + [45023,147.889147889148], + [45025,151.515151515152], + [45027,149.184149184149], + [45029,95.3120953120953], + [45031,317.016317016317], + [45033,205.128205128205], + [45035,616.938616938617], + [45037,139.60113960114], + [45039,90.3910903910904], + [45041,443.149443149443], + [45043,191.401191401191], + [45045,1488.47448847449], + [45047,396.788396788397], + [45049,97.6430976430977], + [45051,615.125615125615], + [45053,97.9020979020979], + [45055,219.89121989122], + [45057,361.564361564362], + [45059,241.388241388241], + [45061,121.471121471121], + [45063,972.286972286972], + [45065,73.8150738150738], + [45067,175.084175084175], + [45069,156.177156177156], + [45071,154.105154105154], + [45073,307.174307174307], + [45075,216.524216524217], + [45077,622.118622118622], + [45079,1315.46231546232], + [45081,113.701113701114], + [45083,911.421911421911], + [45085,418.544418544419], + [45087,145.817145817146], + [45089,95.3120953120953], + [45091,860.39886039886], + [46003,9.84200984200984], + [46005,35.7420357420357], + [46007,7.51100751100751], + [46009,32.3750323750324], + [46011,104.377104377104], + [46013,55.1670551670552], + [46015,16.5760165760166], + [46017,10.6190106190106], + [46019,11.6550116550117], + [46021,5.18000518000518], + [46023,21.4970214970215], + [46025,10.1010101010101], + [46027,87.024087024087], + [46029,102.305102305102], + [46031,4.14400414400414], + [46033,13.7270137270137], + [46035,116.032116032116], + [46037,14.5040145040145], + [46039,18.1300181300181], + [46041,5.95700595700596], + [46043,18.1300181300181], + [46045,9.32400932400932], + [46047,10.6190106190106], + [46049,6.21600621600622], + [46051,27.972027972028], + [46053,10.8780108780109], + [46055,2.84900284900285], + [46057,30.04403004403], + [46059,6.21600621600622], + [46061,19.9430199430199], + [46063,1.2950012950013], + [46065,59.5700595700596], + [46067,23.3100233100233], + [46069,4.4030044030044], + [46071,4.14400414400414], + [46073,10.1010101010101], + [46075,2.59000259000259], + [46077,16.0580160580161], + [46079,51.5410515410515], + [46081,77.959077959078], + [46083,201.243201243201], + [46085,5.95700595700596], + [46087,25.3820253820254], + [46089,5.6980056980057], + [46091,14.5040145040145], + [46093,18.9070189070189], + [46095,4.14400414400414], + [46097,10.8780108780109], + [46099,543.900543900544], + [46101,32.3750323750324], + [46102,16.8350168350168], + [46103,94.2760942760943], + [46105,2.59000259000259], + [46107,6.99300699300699], + [46109,23.8280238280238], + [46111,10.6190106190106], + [46115,11.1370111370111], + [46117,5.43900543900544], + [46119,3.62600362600363], + [46121,17.8710178710179], + [46123,9.06500906500907], + [46125,34.965034965035], + [46127,81.0670810670811], + [46129,19.9430199430199], + [46135,111.629111629112], + [46137,3.62600362600363], + [47001,577.052577052577], + [47003,246.309246309246], + [47005,108.262108262108], + [47007,82.1030821030821], + [47009,570.31857031857], + [47011,779.59077959078], + [47013,219.63221963222], + [47015,134.680134680135], + [47017,123.284123284123], + [47019,435.897435897436], + [47021,334.887334887335], + [47023,155.400155400155], + [47025,191.919191919192], + [47027,85.988085988086], + [47029,212.639212639213], + [47031,318.829318829319], + [47033,142.191142191142], + [47035,213.157213157213], + [47037,3220.15022015022], + [47039,91.1680911680912], + [47041,159.285159285159], + [47043,262.626262626263], + [47045,193.732193732194], + [47047,141.155141155141], + [47049,93.2400932400932], + [47051,191.660191660192], + [47053,213.416213416213], + [47055,125.097125097125], + [47057,209.013209013209], + [47059,286.454286454286], + [47061,98.4200984200984], + [47063,1004.92100492101], + [47065,1606.57860657861], + [47067,79.5130795130795], + [47069,105.672105672106], + [47071,116.809116809117], + [47073,302.253302253302], + [47075,91.1680911680912], + [47077,138.306138306138], + [47079,148.925148925149], + [47081,104.377104377104], + [47083,109.039109039109], + [47085,90.3910903910904], + [47087,97.6430976430977], + [47089,485.884485884486], + [47091,158.249158249158], + [47093,2202.7972027972], + [47095,122.248122248122], + [47097,152.551152551153], + [47099,175.602175602176], + [47101,111.629111629112], + [47103,151.515151515152], + [47105,548.562548562549], + [47107,314.685314685315], + [47109,119.91711991712], + [47111,187.516187516188], + [47113,456.876456876457], + [47115,146.853146853147], + [47117,211.085211085211], + [47119,341.880341880342], + [47121,155.918155918156], + [47123,181.300181300181], + [47125,827.764827764828], + [47127,127.428127428127], + [47129,109.039109039109], + [47131,151.256151256151], + [47133,131.831131831132], + [47135,49.4690494690495], + [47137,80.8080808080808], + [47139,100.2331002331], + [47141,466.977466977467], + [47143,261.331261331261], + [47145,389.018389018389], + [47147,360.528360528361], + [47149,1098.1610981611], + [47151,108.262108262108], + [47153,137.529137529138], + [47155,392.903392903393], + [47157,3148.14814814815], + [47159,157.990157990158], + [47161,75.1100751100751], + [47163,982.646982646983], + [47165,785.806785806786], + [47167,345.247345247345], + [47169,178.451178451178], + [47171,254.856254856255], + [47173,221.445221445221], + [47175,52.5770525770526], + [47177,238.539238539239], + [47179,975.653975653976], + [47181,60.0880600880601], + [47183,156.177156177156], + [47185,177.674177674178], + [47187,814.296814296814], + [47189,517.223517223517], + [48001,142.450142450142], + [48003,25.6410256410256], + [48005,281.792281792282], + [48007,238.021238021238], + [48009,25.9000259000259], + [48011,5.43900543900544], + [48013,95.3120953120953], + [48015,113.960113960114], + [48017,22.5330225330225], + [48019,67.0810670810671], + [48021,216.265216265216], + [48023,11.1370111370111], + [48025,93.7580937580938], + [48027,764.568764568765], + [48029,3582.23258223258], + [48031,38.3320383320383], + [48033,1.81300181300181], + [48035,47.9150479150479], + [48037,270.914270914271], + [48039,597.513597513598], + [48041,861.952861952862], + [48043,3.88500388500389], + [48045,4.66200466200466], + [48047,19.9430199430199], + [48049,104.377104377104], + [48051,67.5990675990676], + [48053,111.370111370111], + [48055,180.782180782181], + [48057,109.298109298109], + [48059,39.1090391090391], + [48061,1181.04118104118], + [48063,163.947163947164], + [48065,17.3530173530174], + [48067,84.1750841750842], + [48069,23.3100233100233], + [48071,152.292152292152], + [48073,125.097125097125], + [48075,26.1590261590262], + [48077,25.6410256410256], + [48079,10.3600103600104], + [48081,9.32400932400932], + [48083,18.1300181300181], + [48085,2408.70240870241], + [48087,8.54700854700855], + [48089,56.2030562030562], + [48091,502.201502201502], + [48093,38.5910385910386], + [48095,10.8780108780109], + [48097,113.701113701114], + [48099,185.703185703186], + [48101,4.4030044030044], + [48103,14.5040145040145], + [48105,3.36700336700337], + [48107,17.3530173530174], + [48109,1.55400155400155], + [48111,11.6550116550117], + [48113,7039.62703962704], + [48115,39.8860398860399], + [48117,33.4110334110334], + [48119,52.8360528360528], + [48121,1953.63895363895], + [48123,57.2390572390572], + [48125,6.99300699300699], + [48127,19.4250194250194], + [48129,10.3600103600104], + [48131,17.0940170940171], + [48133,52.0590520590521], + [48135,395.752395752396], + [48137,2.33100233100233], + [48139,414.141414141414], + [48141,2047.65604765605], + [48143,90.6500906500907], + [48145,60.3470603470604], + [48147,98.6790986790987], + [48149,66.8220668220668], + [48151,11.3960113960114], + [48153,16.8350168350168], + [48155,4.92100492100492], + [48157,1759.90675990676], + [48159,96.6070966070966], + [48161,58.5340585340585], + [48163,39.3680393680394], + [48165,30.3030303030303], + [48167,1994.04299404299], + [48169,18.6480186480187], + [48171,60.8650608650609], + [48173,3.62600362600363], + [48175,22.015022015022], + [48177,48.1740481740482], + [48179,62.9370629370629], + [48181,335.664335664336], + [48183,1153.58715358715], + [48185,87.5420875420875], + [48187,478.891478891479], + [48189,93.4990934990935], + [48191,9.84200984200984], + [48193,26.4180264180264], + [48195,15.7990157990158], + [48197,15.5400155400155], + [48199,158.767158767159], + [48201,6222.22222222222], + [48203,188.811188811189], + [48205,10.6190106190106], + [48207,16.8350168350168], + [48209,600.1036001036], + [48211,10.8780108780109], + [48213,232.841232841233], + [48215,1277.38927738928], + [48217,94.7940947940948], + [48219,65.2680652680653], + [48221,315.203315203315], + [48223,118.622118622119], + [48225,49.98704998705], + [48227,100.751100751101], + [48229,2.07200207200207], + [48231,265.475265475266], + [48233,64.7500647500648], + [48235,3.88500388500389], + [48237,25.6410256410256], + [48239,44.030044030044], + [48241,98.4200984200984], + [48243,2.59000259000259], + [48245,745.661745661746], + [48247,12.1730121730122], + [48249,122.248122248122], + [48251,539.49753949754], + [48253,56.4620564620565], + [48255,51.2820512820513], + [48257,342.916342916343], + [48259,130.536130536131], + [48261,0.777000777000777], + [48263,2.33100233100233], + [48265,116.550116550117], + [48267,9.58300958300958], + [48269,0.777000777000777], + [48271,6.73400673400673], + [48273,94.2760942760943], + [48275,11.3960113960114], + [48277,142.191142191142], + [48279,35.7420357420357], + [48281,71.4840714840715], + [48283,11.9140119140119], + [48285,51.5410515410515], + [48287,68.3760683760684], + [48289,40.6630406630407], + [48291,169.127169127169], + [48293,66.8220668220668], + [48295,9.06500906500907], + [48297,28.7490287490288], + [48299,53.6130536130536], + [48301,0.259000259000259], + [48303,806.267806267806], + [48305,17.0940170940171], + [48307,20.2020202020202], + [48309,586.635586635587], + [48311,1.55400155400155], + [48313,75.8870758870759], + [48315,71.7430717430717], + [48317,13.4680134680135], + [48319,11.1370111370111], + [48321,86.5060865060865], + [48323,109.81610981611], + [48325,89.8730898730899], + [48327,6.47500647500648], + [48329,393.680393680394], + [48331,62.9370629370629], + [48333,17.0940170940171], + [48335,26.6770266770267], + [48337,54.9080549080549], + [48339,1133.12613312613], + [48341,62.9370629370629], + [48343,132.867132867133], + [48345,3.10800310800311], + [48347,176.638176638177], + [48349,122.507122507123], + [48351,40.1450401450402], + [48353,43.2530432530433], + [48355,1051.02305102305], + [48357,28.7490287490288], + [48359,3.62600362600363], + [48361,635.327635327635], + [48363,76.4050764050764], + [48365,76.9230769230769], + [48367,335.146335146335], + [48369,30.3030303030303], + [48371,8.54700854700855], + [48373,111.370111370111], + [48375,345.247345247345], + [48377,5.18000518000518], + [48379,123.284123284123], + [48381,342.916342916343], + [48383,7.51100751100751], + [48385,12.1730121730122], + [48387,32.1160321160321], + [48389,13.4680134680135], + [48391,24.8640248640249], + [48393,2.59000259000259], + [48395,50.2460502460502], + [48397,1597.2545972546], + [48399,25.9000259000259], + [48401,149.443149443149], + [48403,56.980056980057], + [48405,43.2530432530433], + [48407,119.91711991712], + [48409,242.165242165242], + [48411,13.986013986014], + [48413,6.73400673400673], + [48415,48.4330484330484], + [48417,9.58300958300958], + [48419,82.8800828800829], + [48421,8.54700854700855], + [48423,589.48458948459], + [48425,117.845117845118], + [48427,128.982128982129], + [48429,27.7130277130277], + [48431,3.10800310800311], + [48433,4.14400414400414], + [48435,7.25200725200725], + [48437,22.7920227920228], + [48439,5425.27842527843], + [48441,371.924371924372], + [48443,1.03600103600104], + [48445,36.7780367780368], + [48447,4.66200466200466], + [48449,206.164206164206], + [48451,187.516187516188], + [48453,2679.09867909868], + [48455,54.3900543900544], + [48457,60.8650608650609], + [48459,174.566174566175], + [48461,6.99300699300699], + [48463,44.030044030044], + [48465,40.1450401450402], + [48467,161.616161616162], + [48469,254.856254856255], + [48471,224.035224035224], + [48473,217.819217819218], + [48475,33.1520331520332], + [48477,144.522144522145], + [48479,192.955192955193], + [48481,98.4200984200984], + [48483,15.2810152810153], + [48485,542.605542605543], + [48487,36.001036001036], + [48489,97.1250971250971], + [48491,979.020979020979], + [48493,138.306138306138], + [48495,22.015022015022], + [48497,169.386169386169], + [48499,168.350168350168], + [48501,25.6410256410256], + [48503,52.5770525770526], + [48505,36.2600362600363], + [48507,23.3100233100233], + [49001,6.73400673400673], + [49003,22.5330225330225], + [49005,250.45325045325], + [49007,37.5550375550376], + [49009,3.88500388500389], + [49011,2656.82465682466], + [49013,14.7630147630148], + [49015,6.47500647500648], + [49017,2.59000259000259], + [49019,6.47500647500648], + [49021,36.2600362600363], + [49023,7.77000777000777], + [49025,4.66200466200466], + [49027,4.92100492100492], + [49029,40.1450401450402], + [49031,5.43900543900544], + [49033,5.6980056980057], + [49035,3592.59259259259], + [49037,4.92100492100492], + [49039,45.3250453250453], + [49041,28.2310282310282], + [49043,50.2460502460502], + [49045,21.7560217560218], + [49047,18.9070189070189], + [49049,667.702667702668], + [49051,51.8000518000518], + [49053,147.371147371147], + [49055,2.84900284900285], + [49057,1039.62703962704], + [50001,124.320124320124], + [50003,142.450142450142], + [50005,124.579124579125], + [50007,755.503755503755], + [50009,24.6050246050246], + [50011,195.027195027195], + [50013,220.668220668221], + [50015,138.047138047138], + [50017,109.039109039109], + [50019,101.787101787102], + [50021,171.717171717172], + [50023,224.294224294224], + [50025,146.853146853147], + [50027,151.515151515152], + [51001,191.142191142191], + [51003,355.607355607356], + [51005,94.5350945350945], + [51007,92.4630924630925], + [51009,176.897176897177], + [51011,116.291116291116], + [51013,20703.4447034447], + [51015,197.617197617198], + [51017,23.0510230510231], + [51019,236.208236208236], + [51021,49.4690494690495], + [51023,158.508158508159], + [51025,79.7720797720798], + [51027,124.061124061124], + [51029,76.6640766640767], + [51031,281.792281792282], + [51033,140.11914011914], + [51035,163.947163947164], + [51036,102.823102823103], + [51037,68.6350686350686], + [51041,1934.99093499094], + [51043,206.423206423206], + [51045,40.6630406630407], + [51047,318.829318829319], + [51049,87.5420875420875], + [51051,124.579124579125], + [51053,144.004144004144], + [51057,112.406112406112], + [51059,7166.01916601917], + [51061,260.813260813261], + [51063,104.118104118104], + [51065,232.582232582233], + [51067,210.567210567211], + [51069,490.546490546491], + [51071,125.874125874126], + [51073,438.228438228438], + [51075,199.9481999482], + [51077,90.9090909090909], + [51079,305.102305102305], + [51081,107.485107485107], + [51083,114.737114737115], + [51085,551.929551929552], + [51087,3401.7094017094], + [51089,366.744366744367], + [51091,14.5040145040145], + [51093,289.56228956229], + [51095,1218.33721833722], + [51097,56.980056980057], + [51099,340.06734006734], + [51101,150.738150738151], + [51103,221.445221445221], + [51105,152.292152292152], + [51107,1569.02356902357], + [51109,173.012173012173], + [51111,77.4410774410774], + [51113,107.485107485107], + [51115,270.655270655271], + [51117,135.457135457135], + [51119,217.819217819218], + [51121,631.701631701632], + [51125,82.6210826210826], + [51127,227.661227661228], + [51131,151.515151515152], + [51133,167.055167055167], + [51135,130.536130536131], + [51137,254.338254338254], + [51139,200.2072002072], + [51141,99.1970991970992], + [51143,169.64516964517], + [51145,279.202279202279], + [51147,173.012173012173], + [51149,348.873348873349], + [51153,3095.0530950531], + [51155,282.310282310282], + [51157,71.7430717430717], + [51159,125.097125097125], + [51161,954.933954933955], + [51163,96.6070966070966], + [51165,232.841232841233], + [51167,157.990157990158], + [51169,112.147112147112], + [51171,213.675213675214], + [51173,184.926184926185], + [51175,80.2900802900803], + [51177,789.69178969179], + [51179,1241.90624190624], + [51181,65.5270655270655], + [51183,63.973063973064], + [51185,225.071225071225], + [51187,455.840455840456], + [51191,253.302253302253], + [51193,197.099197099197], + [51195,266.252266252266], + [51197,163.947163947164], + [51199,1618.23361823362], + [51510,24124.0611240611], + [51520,3549.85754985755], + [51530,2569.02356902357], + [51540,10998.186998187], + [51550,1688.68168868169], + [51570,5996.632996633], + [51580,2823.62082362082], + [51590,2597.2545972546], + [51595,2226.62522662523], + [51600,9367.52136752137], + [51610,15977.984977985], + [51620,2708.62470862471], + [51630,6024.86402486402], + [51640,2213.41621341621], + [51650,6923.59492359492], + [51660,7273.24527324527], + [51670,5692.82569282569], + [51678,7304.3253043253], + [51680,3983.94198394198], + [51683,9913.49391349391], + [51685,14588.4485884486], + [51690,3267.28826728827], + [51700,6811.70681170681], + [51710,11619.7876197876], + [51720,1370.37037037037], + [51730,3661.48666148666], + [51735,2054.39005439005], + [51740,7352.49935249935], + [51750,4304.8433048433], + [51760,8844.08184408184], + [51770,5904.68790468791], + [51775,4449.36544936545], + [51790,3078.99507899508], + [51800,547.526547526548], + [51810,4555.55555555556], + [51820,3617.71561771562], + [51830,4038.59103859104], + [51840,7350.42735042735], + [53001,25.1230251230251], + [53003,88.0600880600881], + [53005,266.770266770267], + [53007,64.2320642320642], + [53009,106.449106449106], + [53011,1751.35975135975], + [53013,12.1730121730122], + [53015,232.582232582233], + [53017,54.6490546490547], + [53019,8.80600880600881], + [53021,162.911162911163], + [53023,8.28800828800829], + [53025,86.2470862470862], + [53027,99.1970991970992], + [53029,975.394975394975], + [53031,42.994042994043], + [53033,2364.41336441336], + [53035,1646.98264698265], + [53037,46.1020461020461], + [53039,28.2310282310282], + [53041,81.3260813260813], + [53043,11.9140119140119], + [53045,163.947163947164], + [53047,20.2020202020202], + [53049,58.016058016058], + [53051,24.0870240870241], + [53053,1233.61823361823], + [53055,234.913234913235], + [53057,174.825174825175], + [53059,17.3530173530174], + [53061,885.262885262885], + [53063,692.048692048692], + [53065,45.5840455840456], + [53067,904.946904946905], + [53069,39.1090391090391], + [53071,119.91711991712], + [53073,247.345247345247], + [53075,53.6130536130536], + [53077,146.594146594147], + [54001,125.874125874126], + [54003,840.19684019684], + [54005,127.169127169127], + [54007,73.5560735560736], + [54009,698.782698782699], + [54011,887.852887852888], + [54013,70.7070707070707], + [54015,71.2250712250712], + [54017,66.5630665630666], + [54019,180.26418026418], + [54021,66.5630665630666], + [54023,64.7500647500648], + [54025,90.1320901320901], + [54027,96.8660968660969], + [54029,961.667961667962], + [54031,62.4190624190624], + [54033,430.19943019943], + [54035,162.911162911163], + [54037,660.968660968661], + [54039,554.519554519555], + [54041,110.07511007511], + [54043,128.723128723129], + [54045,209.79020979021], + [54047,107.485107485107], + [54049,473.193473193473], + [54051,280.756280756281], + [54053,164.206164206164], + [54055,384.874384874385], + [54057,222.999222999223], + [54059,164.206164206164], + [54061,691.789691789692], + [54063,74.0740740740741], + [54065,198.394198394198], + [54067,105.154105154105], + [54069,1087.80108780109], + [54071,28.7490287490288], + [54073,151.515151515152], + [54075,24.0870240870241], + [54077,133.903133903134], + [54079,415.695415695416], + [54081,337.477337477338], + [54083,73.2970732970733], + [54085,59.8290598290598], + [54087,80.03108003108], + [54089,99.9740999741], + [54091,253.302253302253], + [54093,44.030044030044], + [54095,92.981092981093], + [54097,177.156177156177], + [54099,217.560217560218], + [54101,42.7350427350427], + [54103,119.91711991712], + [54105,63.7140637140637], + [54107,614.866614866615], + [54109,123.284123284123], + [55001,83.6570836570837], + [55003,40.1450401450402], + [55005,137.788137788138], + [55007,26.4180264180264], + [55009,1212.63921263921], + [55011,52.3180523180523], + [55013,48.6920486920487], + [55015,398.601398601399], + [55017,160.32116032116], + [55019,74.3330743330743], + [55021,192.178192178192], + [55023,75.6280756280756], + [55025,1055.94405594406], + [55027,262.626262626263], + [55029,149.184149184149], + [55031,87.8010878010878], + [55033,133.644133644134], + [55035,400.932400932401], + [55037,23.5690235690236], + [55039,365.708365708366], + [55041,23.8280238280238], + [55043,115.773115773116], + [55045,163.429163429163], + [55047,141.155141155141], + [55049,80.5490805490806], + [55051,20.2020202020202], + [55053,53.6130536130536], + [55055,389.53638953639], + [55057,90.1320901320901], + [55059,1584.82258482258], + [55061,155.659155659156], + [55063,657.342657342657], + [55065,68.8940688940689], + [55067,59.3110593110593], + [55069,84.6930846930847], + [55071,358.197358197358], + [55073,224.812224812225], + [55075,77.1820771820772], + [55077,87.5420875420875], + [55078,30.5620305620306], + [55079,10168.3501683502], + [55081,128.464128464128], + [55083,97.6430976430977], + [55085,83.6570836570837], + [55087,717.948717948718], + [55089,960.11396011396], + [55091,83.3980833980834], + [55093,185.185185185185], + [55095,125.356125356125], + [55097,226.366226366226], + [55099,29.2670292670293], + [55101,1522.14452214452], + [55103,79.5130795130795], + [55105,578.347578347578], + [55107,41.958041958042], + [55109,302.512302512303], + [55111,193.214193214193], + [55113,34.1880341880342], + [55115,121.730121730122], + [55117,585.081585081585], + [55119,54.9080549080549], + [55121,101.787101787102], + [55123,97.3840973840974], + [55125,64.7500647500648], + [55127,477.078477078477], + [55129,51.8000518000518], + [55131,793.058793058793], + [55133,1837.34783734784], + [55135,181.559181559182], + [55137,101.269101269101], + [55139,995.337995337995], + [55141,243.978243978244], + [56001,22.015022015022], + [56003,9.58300958300958], + [56005,24.8640248640249], + [56007,5.18000518000518], + [56009,8.54700854700855], + [56011,6.47500647500648], + [56013,11.3960113960114], + [56015,15.5400155400155], + [56017,6.21600621600622], + [56019,5.43900543900544], + [56021,88.5780885780886], + [56023,11.3960113960114], + [56025,36.5190365190365], + [56027,2.33100233100233], + [56029,10.6190106190106], + [56031,10.8780108780109], + [56033,29.7850297850298], + [56035,5.43900543900544], + [56037,10.8780108780109], + [56039,13.7270137270137], + [56041,26.1590261590262], + [56043,9.84200984200984], + [56045,7.77000777000777] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-asian-2010.json b/data/regional/united-states/demographics/race/us-race-asian-2010.json new file mode 100644 index 0000000..6e262b0 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-asian-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Asian Population", + "description" : "Percent of the population that is asian in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.asian.2010"], + [1001,0.009], + [1003,0.007], + [1005,0.004], + [1007,0.001], + [1009,0.002], + [1011,0.002], + [1013,0.008], + [1015,0.007], + [1017,0.005], + [1019,0.002], + [1021,0.003], + [1023,0.001], + [1025,0.003], + [1027,0.002], + [1029,0.002], + [1031,0.013], + [1033,0.004], + [1035,0.001], + [1037,0.001], + [1039,0.004], + [1041,0.014], + [1043,0.004], + [1045,0.011], + [1047,0.003], + [1049,0.003], + [1051,0.007], + [1053,0.002], + [1055,0.006], + [1057,0.002], + [1059,0.002], + [1061,0.003], + [1063,0.002], + [1065,0.002], + [1067,0.003], + [1069,0.008], + [1071,0.003], + [1073,0.014], + [1075,0], + [1077,0.007], + [1079,0.001], + [1081,0.026], + [1083,0.011], + [1085,0.001], + [1087,0.004], + [1089,0.025], + [1091,0.003], + [1093,0.002], + [1095,0.005], + [1097,0.018], + [1099,0.003], + [1101,0.021], + [1103,0.006], + [1105,0.003], + [1107,0.002], + [1109,0.02], + [1111,0.002], + [1113,0.004], + [1115,0.006], + [1117,0.019], + [1119,0.002], + [1121,0.004], + [1123,0.005], + [1125,0.012], + [1127,0.003], + [1129,0.001], + [1131,0], + [1133,0.002], + [2013,0.36], + [2016,0.289], + [2020,0.081], + [2050,0.009], + [2060,0.008], + [2068,0.01], + [2070,0.007], + [2090,0.027], + [2100,0.006], + [2105,0.006], + [2110,0.061], + [2122,0.011], + [2130,0.07], + [2150,0.196], + [2158,0.002], + [2164,0.004], + [2170,0.012], + [2180,0.01], + [2185,0.045], + [2188,0.006], + [2195,0.026], + [2198,0.004], + [2220,0.06], + [2230,0.005], + [2240,0.009], + [2261,0.037], + [2275,0.014], + [2282,0.041], + [2290,0.003], + [4001,0.003], + [4003,0.019], + [4005,0.014], + [4007,0.005], + [4009,0.005], + [4011,0.005], + [4012,0.005], + [4013,0.035], + [4015,0.011], + [4017,0.005], + [4019,0.026], + [4021,0.017], + [4023,0.005], + [4025,0.008], + [4027,0.012], + [5001,0.005], + [5003,0.002], + [5005,0.004], + [5007,0.029], + [5009,0.004], + [5011,0.002], + [5013,null], + [5015,0.006], + [5017,0.005], + [5019,0.005], + [5021,0.001], + [5023,0.002], + [5025,0.001], + [5027,0.007], + [5029,0.004], + [5031,0.011], + [5033,0.014], + [5035,0.006], + [5037,0.005], + [5039,0.001], + [5041,0.003], + [5043,0.005], + [5045,0.011], + [5047,0.009], + [5049,0.002], + [5051,0.007], + [5053,0.003], + [5055,0.003], + [5057,0.004], + [5059,0.003], + [5061,0.006], + [5063,0.008], + [5065,0.003], + [5067,0.003], + [5069,0.008], + [5071,0.007], + [5073,0.003], + [5075,0.001], + [5077,0.004], + [5079,0.002], + [5081,0.003], + [5083,0.016], + [5085,0.008], + [5087,0.005], + [5089,0.002], + [5091,0.005], + [5093,0.005], + [5095,0.004], + [5097,0.005], + [5099,0.003], + [5101,0.003], + [5103,0.004], + [5105,0.002], + [5107,0.003], + [5109,0.005], + [5111,0.002], + [5113,0.005], + [5115,0.01], + [5117,0.001], + [5119,0.02], + [5121,0.002], + [5123,0.005], + [5125,0.009], + [5127,0.034], + [5129,0.001], + [5131,0.041], + [5133,0.004], + [5135,0.003], + [5137,0.004], + [5139,0.005], + [5141,0.003], + [5143,0.022], + [5145,0.005], + [5147,0.002], + [5149,0.013], + [6001,0.261], + [6003,0.006], + [6005,0.011], + [6007,0.041], + [6009,0.013], + [6011,0.013], + [6013,0.144], + [6015,0.034], + [6017,0.035], + [6019,0.096], + [6021,0.026], + [6023,0.022], + [6025,0.016], + [6027,0.013], + [6029,0.042], + [6031,0.037], + [6033,0.011], + [6035,0.01], + [6037,0.137], + [6039,0.019], + [6041,0.055], + [6043,0.011], + [6045,0.017], + [6047,0.074], + [6049,0.008], + [6051,0.014], + [6053,0.061], + [6055,0.068], + [6057,0.012], + [6059,0.179], + [6061,0.059], + [6063,0.007], + [6065,0.06], + [6067,0.143], + [6069,0.026], + [6071,0.063], + [6073,0.109], + [6075,0.333], + [6077,0.144], + [6079,0.032], + [6081,0.248], + [6083,0.049], + [6085,0.32], + [6087,0.042], + [6089,0.025], + [6091,0.004], + [6093,0.012], + [6095,0.146], + [6097,0.038], + [6099,0.051], + [6101,0.144], + [6103,0.01], + [6105,0.007], + [6107,0.034], + [6109,0.01], + [6111,0.067], + [6113,0.13], + [6115,0.067], + [8001,0.036], + [8003,0.01], + [8005,0.051], + [8007,0.007], + [8009,0.002], + [8011,0.01], + [8013,0.041], + [8014,0.061], + [8015,0.006], + [8017,0.006], + [8019,0.006], + [8021,0.003], + [8023,0.01], + [8025,0.01], + [8027,0.004], + [8029,0.005], + [8031,0.034], + [8033,0.001], + [8035,0.038], + [8037,0.01], + [8039,0.007], + [8041,0.027], + [8043,0.006], + [8045,0.007], + [8047,0.014], + [8049,0.008], + [8051,0.007], + [8053,0.004], + [8055,0.004], + [8057,0.001], + [8059,0.026], + [8061,0], + [8063,0.004], + [8065,0.005], + [8067,0.006], + [8069,0.019], + [8071,0.007], + [8073,0.008], + [8075,0.006], + [8077,0.008], + [8079,0.001], + [8081,0.006], + [8083,0.005], + [8085,0.006], + [8087,0.005], + [8089,0.008], + [8091,0.006], + [8093,0.006], + [8095,0.006], + [8097,0.012], + [8099,0.003], + [8101,0.008], + [8103,0.003], + [8105,0.004], + [8107,0.006], + [8109,0.008], + [8111,0.011], + [8113,0.007], + [8115,0.007], + [8117,0.01], + [8119,0.007], + [8121,0.002], + [8123,0.012], + [8125,0.002], + [9001,0.046], + [9003,0.042], + [9005,0.015], + [9007,0.026], + [9009,0.035], + [9011,0.042], + [9013,0.034], + [9015,0.012], + [10001,0.02], + [10003,0.043], + [10005,0.01], + [11001,0.035], + [12001,0.054], + [12003,0.005], + [12005,0.02], + [12007,0.005], + [12009,0.021], + [12011,0.032], + [12013,0.005], + [12015,0.012], + [12017,0.014], + [12019,0.029], + [12021,0.011], + [12023,0.009], + [12027,0.005], + [12029,0.003], + [12031,0.042], + [12033,0.027], + [12035,0.021], + [12037,0.002], + [12039,0.005], + [12041,0.004], + [12043,0.004], + [12045,0.003], + [12047,0.005], + [12049,0.011], + [12051,0.007], + [12053,0.011], + [12055,0.015], + [12057,0.034], + [12059,0.004], + [12061,0.012], + [12063,0.005], + [12065,0.004], + [12067,0.001], + [12069,0.017], + [12071,0.014], + [12073,0.029], + [12075,0.006], + [12077,0.002], + [12079,0.002], + [12081,0.016], + [12083,0.013], + [12085,0.011], + [12086,0.015], + [12087,0.011], + [12089,0.009], + [12091,0.029], + [12093,0.009], + [12095,0.049], + [12097,0.028], + [12099,0.024], + [12101,0.021], + [12103,0.03], + [12105,0.016], + [12107,0.006], + [12109,0.021], + [12111,0.016], + [12113,0.018], + [12115,0.013], + [12117,0.037], + [12119,0.007], + [12121,0.005], + [12123,0.007], + [12125,0.002], + [12127,0.015], + [12129,0.006], + [12131,0.009], + [12133,0.005], + [13001,0.007], + [13003,0.003], + [13005,0.003], + [13007,0.007], + [13009,0.013], + [13011,0.009], + [13013,0.034], + [13015,0.007], + [13017,0.007], + [13019,0.004], + [13021,0.016], + [13023,0.008], + [13025,0.002], + [13027,0.003], + [13029,0.016], + [13031,0.015], + [13033,0.003], + [13035,0.005], + [13037,0.004], + [13039,0.014], + [13043,0.005], + [13045,0.008], + [13047,0.012], + [13049,0.006], + [13051,0.024], + [13053,0.022], + [13055,0.004], + [13057,0.017], + [13059,0.042], + [13061,0.003], + [13063,0.05], + [13065,0.002], + [13067,0.045], + [13069,0.007], + [13071,0.006], + [13073,0.038], + [13075,0.007], + [13077,0.015], + [13079,0.003], + [13081,0.008], + [13083,0.007], + [13085,0.006], + [13087,0.005], + [13089,0.051], + [13091,0.005], + [13093,0.006], + [13095,0.008], + [13097,0.014], + [13099,0.003], + [13101,0.003], + [13103,0.008], + [13105,0.006], + [13107,0.007], + [13109,0.007], + [13111,0.003], + [13113,0.039], + [13115,0.013], + [13117,0.062], + [13119,0.005], + [13121,0.056], + [13123,0.003], + [13125,0], + [13127,0.012], + [13129,0.01], + [13131,0.004], + [13133,0.003], + [13135,0.106], + [13137,0.022], + [13139,0.018], + [13141,0.005], + [13143,0.005], + [13145,0.009], + [13147,0.009], + [13149,0.005], + [13151,0.029], + [13153,0.024], + [13155,0.006], + [13157,0.017], + [13159,0.002], + [13161,0.005], + [13163,0.004], + [13165,0.004], + [13167,0.002], + [13169,0.007], + [13171,0.004], + [13173,0.01], + [13175,0.01], + [13177,0.022], + [13179,0.02], + [13181,0.004], + [13183,0.008], + [13185,0.015], + [13187,0.005], + [13189,0.003], + [13191,0.003], + [13193,0.013], + [13195,0.006], + [13197,0.009], + [13199,0.006], + [13201,0.005], + [13205,0.005], + [13207,0.008], + [13209,0.003], + [13211,0.006], + [13213,0.003], + [13215,0.022], + [13217,0.009], + [13219,0.031], + [13221,0.004], + [13223,0.009], + [13225,0.008], + [13227,0.004], + [13229,0.003], + [13231,0.003], + [13233,0.007], + [13235,0.009], + [13237,0.005], + [13239,null], + [13241,0.007], + [13243,0.003], + [13245,0.017], + [13247,0.018], + [13249,0.007], + [13251,0.004], + [13253,0.004], + [13255,0.009], + [13257,0.007], + [13259,0.007], + [13261,0.013], + [13263,0.001], + [13265,0.006], + [13267,0.004], + [13269,0.006], + [13271,0.006], + [13273,0.003], + [13275,0.007], + [13277,0.013], + [13279,0.007], + [13281,0.004], + [13283,0.002], + [13285,0.016], + [13287,0.004], + [13289,0.002], + [13291,0.004], + [13293,0.005], + [13295,0.004], + [13297,0.011], + [13299,0.008], + [13301,0.004], + [13303,0.005], + [13305,0.005], + [13307,0.003], + [13309,0.002], + [13311,0.005], + [13313,0.013], + [13315,0.005], + [13317,0.005], + [13319,0.003], + [13321,0.003], + [15001,0.222], + [15003,0.439], + [15005,0.078], + [15007,0.313], + [15009,0.288], + [16001,0.024], + [16003,0.004], + [16005,0.013], + [16007,0.004], + [16009,0.003], + [16011,0.006], + [16013,0.009], + [16015,0.004], + [16017,0.005], + [16019,0.008], + [16021,0.006], + [16023,0.002], + [16025,0.001], + [16027,0.008], + [16029,0.002], + [16031,0.005], + [16033,0.005], + [16035,0.007], + [16037,null], + [16039,0.028], + [16041,0.001], + [16043,0.002], + [16045,0.005], + [16047,0.005], + [16049,0.004], + [16051,0.004], + [16053,0.003], + [16055,0.007], + [16057,0.021], + [16059,0.004], + [16061,0.004], + [16063,0.004], + [16065,0.009], + [16067,0.004], + [16069,0.007], + [16071,0.005], + [16073,0.005], + [16075,0.008], + [16077,0.004], + [16079,0.004], + [16081,0.005], + [16083,0.012], + [16085,0.004], + [16087,0.009], + [17001,0.007], + [17003,0.002], + [17005,0.004], + [17007,0.013], + [17009,0.002], + [17011,0.007], + [17013,0.002], + [17015,0.003], + [17017,0.003], + [17019,0.089], + [17021,0.005], + [17023,0.003], + [17025,0.005], + [17027,0.004], + [17029,0.01], + [17031,0.062], + [17033,0.005], + [17035,0.002], + [17037,0.023], + [17039,0.004], + [17041,0.004], + [17043,0.101], + [17045,0.002], + [17047,0.003], + [17049,0.004], + [17051,0.002], + [17053,0.003], + [17055,0.003], + [17057,0.003], + [17059,0.001], + [17061,0.001], + [17063,0.007], + [17065,0.002], + [17067,0.002], + [17069,0.005], + [17071,0.002], + [17073,0.004], + [17075,0.003], + [17077,0.032], + [17079,0.002], + [17081,0.006], + [17083,0.003], + [17085,0.003], + [17087,0.002], + [17089,0.035], + [17091,0.009], + [17093,0.03], + [17095,0.006], + [17097,0.063], + [17099,0.007], + [17101,0.002], + [17103,0.007], + [17105,0.005], + [17107,0.006], + [17109,0.018], + [17111,0.025], + [17113,0.043], + [17115,0.01], + [17117,0.003], + [17119,0.008], + [17121,0.006], + [17123,0.004], + [17125,0.003], + [17127,0.003], + [17129,0.002], + [17131,0.003], + [17133,0.004], + [17135,0.004], + [17137,0.005], + [17139,0.002], + [17141,0.005], + [17143,0.031], + [17145,0.004], + [17147,0.003], + [17149,0.002], + [17151,0.002], + [17153,0.002], + [17155,0.002], + [17157,0.003], + [17159,0.007], + [17161,0.016], + [17163,0.012], + [17165,0.004], + [17167,0.016], + [17169,0.001], + [17171,0.002], + [17173,0.003], + [17175,0.003], + [17177,0.006], + [17179,0.007], + [17181,0.003], + [17183,0.007], + [17185,0.006], + [17187,0.005], + [17189,0.003], + [17191,0.004], + [17193,0.002], + [17195,0.005], + [17197,0.046], + [17199,0.008], + [17201,0.023], + [17203,0.006], + [18001,0.002], + [18003,0.027], + [18005,0.034], + [18007,0.002], + [18009,0.001], + [18011,0.017], + [18013,0.003], + [18015,0.001], + [18017,0.011], + [18019,0.008], + [18021,0.002], + [18023,0.002], + [18025,0.002], + [18027,0.005], + [18029,0.004], + [18031,0.007], + [18033,0.005], + [18035,0.01], + [18037,0.005], + [18039,0.01], + [18041,0.003], + [18043,0.009], + [18045,0.002], + [18047,0.002], + [18049,0.005], + [18051,0.005], + [18053,0.006], + [18055,0.003], + [18057,0.048], + [18059,0.008], + [18061,0.004], + [18063,0.021], + [18065,0.003], + [18067,0.009], + [18069,0.004], + [18071,0.008], + [18073,0.004], + [18075,0.004], + [18077,0.007], + [18079,0.002], + [18081,0.02], + [18083,0.006], + [18085,0.008], + [18087,0.003], + [18089,0.012], + [18091,0.005], + [18093,0.005], + [18095,0.004], + [18097,0.02], + [18099,0.005], + [18101,0.003], + [18103,0.003], + [18105,0.052], + [18107,0.006], + [18109,0.004], + [18111,0.003], + [18113,0.004], + [18115,0.003], + [18117,0.003], + [18119,0.003], + [18121,0.002], + [18123,0.004], + [18125,0.002], + [18127,0.012], + [18129,0.003], + [18131,0.002], + [18133,0.007], + [18135,0.002], + [18137,0.005], + [18139,0.003], + [18141,0.019], + [18143,0.004], + [18145,0.005], + [18147,0.003], + [18149,0.002], + [18151,0.005], + [18153,0.002], + [18155,0.002], + [18157,0.062], + [18159,0.004], + [18161,0.003], + [18163,0.011], + [18165,0.002], + [18167,0.017], + [18169,0.004], + [18171,0.004], + [18173,0.016], + [18175,0.003], + [18177,0.008], + [18179,0.004], + [18181,0.004], + [18183,0.003], + [19001,0.003], + [19003,0.006], + [19005,0.002], + [19007,0.003], + [19009,0.004], + [19011,0.003], + [19013,0.013], + [19015,0.003], + [19017,0.007], + [19019,0.004], + [19021,0.056], + [19023,0.002], + [19025,0.002], + [19027,0.004], + [19029,0.002], + [19031,0.005], + [19033,0.009], + [19035,0.005], + [19037,0.003], + [19039,0.004], + [19041,0.006], + [19043,0.002], + [19045,0.006], + [19047,0.006], + [19049,0.025], + [19051,0.003], + [19053,0.007], + [19055,0.003], + [19057,0.007], + [19059,0.004], + [19061,0.009], + [19063,0.004], + [19065,0.005], + [19067,0.013], + [19069,0.003], + [19071,0.003], + [19073,0.003], + [19075,0.002], + [19077,0.003], + [19079,0.02], + [19081,0.004], + [19083,0.005], + [19085,0.003], + [19087,0.023], + [19089,0.003], + [19091,0.003], + [19093,0.003], + [19095,0.003], + [19097,0.002], + [19099,0.004], + [19101,0.085], + [19103,0.052], + [19105,0.004], + [19107,0.002], + [19109,0.004], + [19111,0.005], + [19113,0.018], + [19115,0.009], + [19117,0.002], + [19119,0.002], + [19121,0.003], + [19123,0.011], + [19125,0.011], + [19127,0.013], + [19129,0.004], + [19131,0.003], + [19133,0.002], + [19135,0.004], + [19137,0.002], + [19139,0.008], + [19141,0.006], + [19143,0.003], + [19145,0.007], + [19147,0.003], + [19149,0.005], + [19151,0.002], + [19153,0.035], + [19155,0.006], + [19157,0.014], + [19159,0.003], + [19161,0.002], + [19163,0.02], + [19165,0.004], + [19167,0.008], + [19169,0.06], + [19171,0.003], + [19173,0.003], + [19175,0.005], + [19177,0.005], + [19179,0.007], + [19181,0.005], + [19183,0.003], + [19185,0.003], + [19187,0.006], + [19189,0.008], + [19191,0.011], + [19193,0.024], + [19195,0.003], + [19197,0.002], + [20001,0.005], + [20003,0.005], + [20005,0.004], + [20007,0.004], + [20009,0.002], + [20011,0.005], + [20013,0.003], + [20015,0.007], + [20017,0.003], + [20019,0.001], + [20021,0.003], + [20023,0.007], + [20025,0.008], + [20027,0.003], + [20029,0.002], + [20031,0.004], + [20033,0.003], + [20035,0.016], + [20037,0.012], + [20039,0.002], + [20041,0.003], + [20043,0.002], + [20045,0.037], + [20047,0.004], + [20049,0.004], + [20051,0.014], + [20053,0.004], + [20055,0.034], + [20057,0.014], + [20059,0.004], + [20061,0.032], + [20063,0.004], + [20065,0.003], + [20067,0.003], + [20069,0.002], + [20071,0.003], + [20073,0.003], + [20075,0.003], + [20077,0.001], + [20079,0.007], + [20081,0.002], + [20083,0.004], + [20085,0.004], + [20087,0.002], + [20089,0.002], + [20091,0.042], + [20093,0.003], + [20095,0.005], + [20097,0.006], + [20099,0.004], + [20101,0.002], + [20103,0.013], + [20105,0.002], + [20107,0.003], + [20109,0.004], + [20111,0.023], + [20113,0.005], + [20115,0.002], + [20117,0.002], + [20119,0.004], + [20121,0.004], + [20123,0.003], + [20125,0.006], + [20127,0.002], + [20129,0.019], + [20131,0.001], + [20133,0.005], + [20135,0.001], + [20137,0.005], + [20139,0.002], + [20141,0.005], + [20143,0.001], + [20145,0.005], + [20147,0.007], + [20149,0.007], + [20151,0.003], + [20153,0.002], + [20155,0.005], + [20157,0.003], + [20159,0.004], + [20161,0.042], + [20163,0.004], + [20165,0.002], + [20167,0.005], + [20169,0.021], + [20171,0.005], + [20173,0.041], + [20175,0.027], + [20177,0.012], + [20179,0.002], + [20181,0.003], + [20183,0.002], + [20185,0.004], + [20187,0.001], + [20189,0.003], + [20191,0.002], + [20193,0.005], + [20195,0.002], + [20197,0.001], + [20199,0.001], + [20201,0.003], + [20203,0.001], + [20205,0.004], + [20207,0.001], + [20209,0.025], + [21001,0.002], + [21003,0.002], + [21005,0.005], + [21007,0.002], + [21009,0.004], + [21011,null], + [21013,0.003], + [21015,0.021], + [21017,0.003], + [21019,0.005], + [21021,0.008], + [21023,0.001], + [21025,0.005], + [21027,0.002], + [21029,0.005], + [21031,0.002], + [21033,0.003], + [21035,0.018], + [21037,0.008], + [21039,0.003], + [21041,0.006], + [21043,0.002], + [21045,0.002], + [21047,0.01], + [21049,0.004], + [21051,0.001], + [21053,0.001], + [21055,0.002], + [21057,null], + [21059,0.007], + [21061,0.002], + [21063,0.001], + [21065,0.001], + [21067,0.032], + [21069,0.002], + [21071,0.002], + [21073,0.014], + [21075,0.007], + [21077,0.002], + [21079,null], + [21081,0.003], + [21083,0.003], + [21085,0.002], + [21087,0.002], + [21089,0.005], + [21091,0.002], + [21093,0.02], + [21095,0.003], + [21097,0.002], + [21099,0.002], + [21101,0.004], + [21103,0.002], + [21105,0.002], + [21107,0.006], + [21109,null], + [21111,0.022], + [21113,0.01], + [21115,0.004], + [21117,0.009], + [21119,0.001], + [21121,0.002], + [21123,0.002], + [21125,0.005], + [21127,0.002], + [21129,0.001], + [21131,0.001], + [21133,0.002], + [21135,null], + [21137,0.002], + [21139,null], + [21141,0.002], + [21143,0.003], + [21145,0.008], + [21147,0.001], + [21149,null], + [21151,0.009], + [21153,0.001], + [21155,0.006], + [21157,0.003], + [21159,0.002], + [21161,0.006], + [21163,0.006], + [21165,null], + [21167,0.004], + [21169,0.001], + [21171,0.001], + [21173,0.003], + [21175,0.003], + [21177,0.001], + [21179,0.005], + [21181,0.002], + [21183,0.002], + [21185,0.013], + [21187,0.002], + [21189,null], + [21191,0.001], + [21193,0.005], + [21195,0.005], + [21197,0.001], + [21199,0.005], + [21201,0.001], + [21203,0.001], + [21205,0.008], + [21207,0.002], + [21209,0.009], + [21211,0.006], + [21213,0.007], + [21215,0.004], + [21217,0.005], + [21219,0.001], + [21221,0.003], + [21223,0.004], + [21225,0.003], + [21227,0.028], + [21229,0.003], + [21231,0.003], + [21233,0.003], + [21235,0.004], + [21237,null], + [21239,0.005], + [22001,0.002], + [22003,0.007], + [22005,0.009], + [22007,0.002], + [22009,0.003], + [22011,0.006], + [22013,0.002], + [22015,0.016], + [22017,0.011], + [22019,0.011], + [22021,0.002], + [22023,0.001], + [22025,0], + [22027,0.002], + [22029,0.002], + [22031,0.002], + [22033,0.028], + [22035,0.006], + [22037,0.003], + [22039,0.003], + [22041,0.002], + [22043,0.003], + [22045,0.024], + [22047,0.003], + [22049,0.002], + [22051,0.039], + [22053,0.002], + [22055,0.015], + [22057,0.007], + [22059,0.002], + [22061,0.017], + [22063,0.005], + [22065,0.002], + [22067,0.004], + [22069,0.003], + [22071,0.029], + [22073,0.009], + [22075,0.032], + [22077,0.002], + [22079,0.012], + [22081,0.001], + [22083,0.003], + [22085,0.002], + [22087,0.019], + [22089,0.008], + [22091,0.001], + [22093,0.001], + [22095,0.007], + [22097,0.004], + [22099,0.008], + [22101,0.017], + [22103,0.013], + [22105,0.006], + [22107,0.002], + [22109,0.01], + [22111,0.001], + [22113,0.02], + [22115,0.018], + [22117,0.002], + [22119,0.003], + [22121,0.003], + [22123,0.002], + [22125,0.002], + [22127,0.003], + [23001,0.007], + [23003,0.004], + [23005,0.02], + [23007,0.004], + [23009,0.008], + [23011,0.007], + [23013,0.005], + [23015,0.005], + [23017,0.006], + [23019,0.009], + [23021,0.007], + [23023,0.008], + [23025,0.006], + [23027,0.004], + [23029,0.005], + [23031,0.011], + [24001,0.008], + [24003,0.034], + [24005,0.05], + [24009,0.014], + [24011,0.006], + [24013,0.014], + [24015,0.011], + [24017,0.03], + [24019,0.009], + [24021,0.038], + [24023,0.003], + [24025,0.024], + [24027,0.144], + [24029,0.008], + [24031,0.139], + [24033,0.041], + [24035,0.01], + [24037,0.025], + [24039,0.007], + [24041,0.012], + [24043,0.014], + [24045,0.025], + [24047,0.011], + [24510,0.023], + [25001,0.011], + [25003,0.012], + [25005,0.019], + [25007,0.008], + [25009,0.031], + [25011,0.013], + [25013,0.02], + [25015,0.045], + [25017,0.093], + [25019,0.012], + [25021,0.086], + [25023,0.012], + [25025,0.082], + [25027,0.04], + [26001,0.002], + [26003,0.003], + [26005,0.006], + [26007,0.005], + [26009,0.002], + [26011,0.002], + [26013,0.001], + [26015,0.004], + [26017,0.005], + [26019,0.003], + [26021,0.016], + [26023,0.005], + [26025,0.016], + [26027,0.006], + [26029,0.004], + [26031,0.003], + [26033,0.006], + [26035,0.003], + [26037,0.015], + [26039,0.004], + [26041,0.004], + [26043,0.005], + [26045,0.017], + [26047,0.005], + [26049,0.009], + [26051,0.003], + [26053,0.002], + [26055,0.007], + [26057,0.003], + [26059,0.004], + [26061,0.029], + [26063,0.004], + [26065,0.052], + [26067,0.004], + [26069,0.005], + [26071,0.003], + [26073,0.016], + [26075,0.007], + [26077,0.021], + [26079,0.002], + [26081,0.023], + [26083,0], + [26085,0.001], + [26087,0.003], + [26089,0.004], + [26091,0.005], + [26093,0.008], + [26095,0.003], + [26097,0.002], + [26099,0.03], + [26101,0.003], + [26103,0.006], + [26105,0.005], + [26107,0.007], + [26109,0.003], + [26111,0.019], + [26113,0.003], + [26115,0.006], + [26117,0.004], + [26119,0.002], + [26121,0.005], + [26123,0.004], + [26125,0.056], + [26127,0.002], + [26129,0.004], + [26131,0.002], + [26133,0.002], + [26135,0.001], + [26137,0.004], + [26139,0.026], + [26141,0.003], + [26143,0.003], + [26145,0.011], + [26147,0.005], + [26149,0.007], + [26151,0.003], + [26153,0.002], + [26155,0.004], + [26157,0.003], + [26159,0.004], + [26161,0.079], + [26163,0.025], + [26165,0.006], + [27001,0.002], + [27003,0.039], + [27005,0.004], + [27007,0.007], + [27009,0.011], + [27011,0.001], + [27013,0.02], + [27015,0.006], + [27017,0.005], + [27019,0.027], + [27021,0.003], + [27023,0.005], + [27025,0.009], + [27027,0.014], + [27029,0.002], + [27031,0.005], + [27033,0.027], + [27035,0.004], + [27037,0.044], + [27039,0.004], + [27041,0.005], + [27043,0.003], + [27045,0.003], + [27047,0.008], + [27049,0.006], + [27051,0.002], + [27053,0.062], + [27055,0.005], + [27057,0.002], + [27059,0.008], + [27061,0.003], + [27063,0.014], + [27065,0.003], + [27067,0.004], + [27069,0.004], + [27071,0.003], + [27073,0.004], + [27075,0.003], + [27077,0.008], + [27079,0.006], + [27081,0.002], + [27083,0.026], + [27085,0.007], + [27087,0.001], + [27089,0.002], + [27091,0.005], + [27093,0.003], + [27095,0.003], + [27097,0.003], + [27099,0.017], + [27101,0.009], + [27103,0.013], + [27105,0.055], + [27107,0.004], + [27109,0.054], + [27111,0.005], + [27113,0.006], + [27115,0.004], + [27117,0.007], + [27119,0.007], + [27121,0.004], + [27123,0.117], + [27125,0.001], + [27127,0.032], + [27129,0.003], + [27131,0.02], + [27133,0.005], + [27135,0.025], + [27137,0.009], + [27139,0.057], + [27141,0.013], + [27143,0.006], + [27145,0.02], + [27147,0.008], + [27149,0.015], + [27151,0.002], + [27153,0.004], + [27155,0.001], + [27157,0.004], + [27159,0.003], + [27161,0.007], + [27163,0.051], + [27165,0.008], + [27167,0.003], + [27169,0.021], + [27171,0.012], + [27173,0.003], + [28001,0.004], + [28003,0.003], + [28005,0.001], + [28007,0.003], + [28009,0.001], + [28011,0.006], + [28013,0.001], + [28015,0.002], + [28017,0.003], + [28019,0.001], + [28021,0.004], + [28023,0.002], + [28025,0.002], + [28027,0.005], + [28029,0.003], + [28031,0.002], + [28033,0.013], + [28035,0.007], + [28037,0.001], + [28039,0.002], + [28041,0.001], + [28043,0.003], + [28045,0.01], + [28047,0.028], + [28049,0.008], + [28051,0.002], + [28053,0.002], + [28055,0.004], + [28057,0.002], + [28059,0.022], + [28061,0.001], + [28063,0], + [28065,0.001], + [28067,0.004], + [28069,0.001], + [28071,0.021], + [28073,0.012], + [28075,0.007], + [28077,0.003], + [28079,0.002], + [28081,0.006], + [28083,0.006], + [28085,0.003], + [28087,0.007], + [28089,0.021], + [28091,0.003], + [28093,0.002], + [28095,0.002], + [28097,0.004], + [28099,0.003], + [28101,0.002], + [28103,0.002], + [28105,0.024], + [28107,0.002], + [28109,0.004], + [28111,0.002], + [28113,0.006], + [28115,0.002], + [28117,0.001], + [28119,0.001], + [28121,0.011], + [28123,0.002], + [28125,0.002], + [28127,0.003], + [28129,0.001], + [28131,0.003], + [28133,0.003], + [28135,0.008], + [28137,0.002], + [28139,0.002], + [28141,0.001], + [28143,0.006], + [28145,0.002], + [28147,0.002], + [28149,0.008], + [28151,0.006], + [28153,0.002], + [28155,0.001], + [28157,null], + [28159,0.002], + [28161,0.002], + [28163,0.004], + [29001,0.018], + [29003,0.004], + [29005,0.002], + [29007,0.005], + [29009,0.013], + [29011,0.002], + [29013,0.002], + [29015,0.003], + [29017,0.002], + [29019,0.038], + [29021,0.008], + [29023,0.007], + [29025,0.002], + [29027,0.006], + [29029,0.004], + [29031,0.012], + [29033,0.001], + [29035,0.001], + [29037,0.006], + [29039,0.003], + [29041,0.001], + [29043,0.005], + [29045,0.003], + [29047,0.021], + [29049,0.003], + [29051,0.013], + [29053,0.004], + [29055,0.003], + [29057,0.003], + [29059,0.002], + [29061,0.001], + [29063,0.002], + [29065,0.003], + [29067,0.002], + [29069,0.003], + [29071,0.004], + [29073,0.003], + [29075,0.003], + [29077,0.016], + [29079,0.004], + [29081,0.002], + [29083,0.002], + [29085,0.002], + [29087,0.003], + [29089,0.003], + [29091,0.005], + [29093,0.001], + [29095,0.016], + [29097,0.01], + [29099,0.006], + [29101,0.015], + [29103,0.002], + [29105,0.004], + [29107,0.004], + [29109,0.004], + [29111,0.002], + [29113,0.004], + [29115,0.002], + [29117,0.003], + [29119,0.008], + [29121,0.004], + [29123,0.003], + [29125,0.001], + [29127,0.005], + [29129,0.005], + [29131,0.003], + [29133,0.002], + [29135,0.004], + [29137,0.003], + [29139,0.003], + [29141,0.004], + [29143,0.004], + [29145,0.013], + [29147,0.016], + [29149,0.003], + [29151,0.001], + [29153,0.001], + [29155,0.002], + [29157,0.004], + [29159,0.006], + [29161,0.029], + [29163,0.002], + [29165,0.023], + [29167,0.003], + [29169,0.026], + [29171,0.005], + [29173,0.002], + [29175,0.004], + [29177,0.003], + [29179,0.002], + [29181,0.003], + [29183,0.022], + [29185,0.001], + [29186,0.003], + [29187,0.004], + [29189,0.035], + [29195,0.005], + [29197,0.002], + [29199,0.002], + [29201,0.003], + [29203,0.002], + [29205,0.002], + [29207,0.002], + [29209,0.003], + [29211,0.001], + [29213,0.007], + [29215,0.003], + [29217,0.005], + [29219,0.004], + [29221,0.002], + [29223,0.002], + [29225,0.002], + [29227,0.003], + [29229,0.003], + [29510,0.029], + [30001,0.004], + [30003,0.005], + [30005,0.001], + [30007,0.002], + [30009,0.002], + [30011,0.001], + [30013,0.008], + [30015,0.004], + [30017,0.003], + [30019,0.002], + [30021,0.003], + [30023,0.003], + [30025,0.006], + [30027,0.002], + [30029,0.006], + [30031,0.011], + [30033,0.001], + [30035,0.002], + [30037,0.007], + [30039,0.001], + [30041,0.004], + [30043,0.004], + [30045,0.001], + [30047,0.004], + [30049,0.006], + [30051,0.001], + [30053,0.003], + [30055,0.001], + [30057,0.003], + [30059,0.003], + [30061,0.007], + [30063,0.011], + [30065,0.002], + [30067,0.003], + [30069,0], + [30071,0.002], + [30073,0.002], + [30075,0.002], + [30077,0.005], + [30079,0.005], + [30081,0.005], + [30083,0.002], + [30085,0.004], + [30087,0.005], + [30089,0.003], + [30091,0.004], + [30093,0.005], + [30095,0.003], + [30097,0.007], + [30099,0.001], + [30101,0.004], + [30103,0.004], + [30105,0.005], + [30107,0.006], + [30109,0.005], + [30111,0.006], + [31001,0.014], + [31003,0.003], + [31005,0.002], + [31007,0], + [31009,0], + [31011,null], + [31013,0.003], + [31015,0.008], + [31017,0.002], + [31019,0.013], + [31021,0.002], + [31023,0.003], + [31025,0.003], + [31027,0.001], + [31029,0.001], + [31031,0.004], + [31033,0.016], + [31035,0.002], + [31037,0.003], + [31039,0.002], + [31041,0.001], + [31043,0.03], + [31045,0.01], + [31047,0.006], + [31049,0.003], + [31051,0.002], + [31053,0.005], + [31055,0.027], + [31057,0.001], + [31059,0.002], + [31061,0.001], + [31063,0.001], + [31065,0.002], + [31067,0.004], + [31069,0], + [31071,0.001], + [31073,0.002], + [31075,0.002], + [31077,0.001], + [31079,0.01], + [31081,0.002], + [31083,0.002], + [31085,0.003], + [31087,0.001], + [31089,0.002], + [31091,0], + [31093,0.002], + [31095,0.002], + [31097,0.014], + [31099,0.002], + [31101,0.004], + [31103,0.001], + [31105,0.007], + [31107,0.002], + [31109,0.035], + [31111,0.005], + [31113,0.001], + [31115,0], + [31117,0], + [31119,0.005], + [31121,0.008], + [31123,0.004], + [31125,0.001], + [31127,0.004], + [31129,0.002], + [31131,0.004], + [31133,0.003], + [31135,0.002], + [31137,0.002], + [31139,0.002], + [31141,0.005], + [31143,0.001], + [31145,0.003], + [31147,0.003], + [31149,0.002], + [31151,0.016], + [31153,0.021], + [31155,0.004], + [31157,0.006], + [31159,0.004], + [31161,0.003], + [31163,0.003], + [31165,0.001], + [31167,0.001], + [31169,0.003], + [31171,0.003], + [31173,0.001], + [31175,0.003], + [31177,0.003], + [31179,0.005], + [31181,0.003], + [31183,0.005], + [31185,0.004], + [32001,0.027], + [32003,0.087], + [32005,0.015], + [32007,0.009], + [32009,0.004], + [32011,0.009], + [32013,0.007], + [32015,0.004], + [32017,0.007], + [32019,0.014], + [32021,0.011], + [32023,0.013], + [32027,0.013], + [32029,0.016], + [32031,0.052], + [32033,0.01], + [32510,0.021], + [33001,0.012], + [33003,0.006], + [33005,0.012], + [33007,0.005], + [33009,0.03], + [33011,0.032], + [33013,0.016], + [33015,0.017], + [33017,0.026], + [33019,0.006], + [34001,0.075], + [34003,0.145], + [34005,0.043], + [34007,0.051], + [34009,0.009], + [34011,0.012], + [34013,0.046], + [34015,0.026], + [34017,0.134], + [34019,0.033], + [34021,0.089], + [34023,0.214], + [34025,0.05], + [34027,0.09], + [34029,0.017], + [34031,0.05], + [34033,0.008], + [34035,0.141], + [34037,0.018], + [34039,0.046], + [34041,0.025], + [35001,0.023], + [35003,0.002], + [35005,0.006], + [35006,0.005], + [35007,0.004], + [35009,0.013], + [35011,0], + [35013,0.011], + [35015,0.007], + [35017,0.004], + [35019,0.013], + [35021,0], + [35023,0.005], + [35025,0.005], + [35027,0.004], + [35028,0.06], + [35029,0.005], + [35031,0.008], + [35033,0.003], + [35035,0.012], + [35037,0.01], + [35039,0.004], + [35041,0.009], + [35043,0.015], + [35045,0.004], + [35047,0.008], + [35049,0.012], + [35051,0.004], + [35053,0.012], + [35055,0.007], + [35057,0.004], + [35059,0.005], + [35061,0.005], + [36001,0.048], + [36003,0.009], + [36005,0.036], + [36007,0.035], + [36009,0.007], + [36011,0.005], + [36013,0.005], + [36015,0.012], + [36017,0.004], + [36019,0.011], + [36021,0.016], + [36023,0.008], + [36025,0.008], + [36027,0.035], + [36029,0.026], + [36031,0.007], + [36033,0.004], + [36035,0.006], + [36037,0.006], + [36039,0.008], + [36041,0.005], + [36043,0.005], + [36045,0.013], + [36047,0.105], + [36049,0.003], + [36051,0.012], + [36053,0.008], + [36055,0.033], + [36057,0.007], + [36059,0.076], + [36061,0.113], + [36063,0.008], + [36065,0.028], + [36067,0.031], + [36069,0.01], + [36071,0.024], + [36073,0.004], + [36075,0.006], + [36077,0.011], + [36079,0.019], + [36081,0.229], + [36083,0.022], + [36085,0.075], + [36087,0.062], + [36089,0.01], + [36091,0.018], + [36093,0.032], + [36095,0.007], + [36097,0.003], + [36099,0.007], + [36101,0.012], + [36103,0.034], + [36105,0.014], + [36107,0.007], + [36109,0.086], + [36111,0.017], + [36113,0.007], + [36115,0.004], + [36117,0.005], + [36119,0.054], + [36121,0.004], + [36123,0.004], + [37001,0.012], + [37003,0.01], + [37005,0.005], + [37007,0.011], + [37009,0.004], + [37011,0.003], + [37013,0.003], + [37015,0.005], + [37017,0.002], + [37019,0.005], + [37021,0.01], + [37023,0.035], + [37025,0.02], + [37027,0.005], + [37029,0.015], + [37031,0.009], + [37033,0.003], + [37035,0.035], + [37037,0.011], + [37039,0.005], + [37041,0.004], + [37043,0.002], + [37045,0.008], + [37047,0.003], + [37049,0.02], + [37051,0.022], + [37053,0.006], + [37055,0.006], + [37057,0.012], + [37059,0.006], + [37061,0.003], + [37063,0.046], + [37065,0.002], + [37067,0.019], + [37069,0.005], + [37071,0.012], + [37073,0.001], + [37075,0.003], + [37077,0.005], + [37079,0.003], + [37081,0.039], + [37083,0.007], + [37085,0.009], + [37087,0.004], + [37089,0.01], + [37091,0.005], + [37093,0.01], + [37095,0.003], + [37097,0.018], + [37099,0.009], + [37101,0.006], + [37103,0.003], + [37105,0.008], + [37107,0.004], + [37109,0.005], + [37111,0.008], + [37113,0.006], + [37115,0.003], + [37117,0.003], + [37119,0.046], + [37121,0.003], + [37123,0.016], + [37125,0.009], + [37127,0.008], + [37129,0.012], + [37131,0.002], + [37133,0.019], + [37135,0.067], + [37137,0.004], + [37139,0.011], + [37141,0.004], + [37143,0.003], + [37145,0.003], + [37147,0.016], + [37149,0.003], + [37151,0.01], + [37153,0.009], + [37155,0.007], + [37157,0.005], + [37159,0.01], + [37161,0.004], + [37163,0.004], + [37165,0.008], + [37167,0.018], + [37169,0.003], + [37171,0.005], + [37173,0.005], + [37175,0.004], + [37177,0.018], + [37179,0.016], + [37181,0.004], + [37183,0.054], + [37185,0.002], + [37187,0.003], + [37189,0.009], + [37191,0.012], + [37193,0.004], + [37195,0.008], + [37197,0.002], + [37199,0.002], + [38001,0.004], + [38003,0.005], + [38005,null], + [38007,0.005], + [38009,0.002], + [38011,0.001], + [38013,0.007], + [38015,0.005], + [38017,0.024], + [38019,0.002], + [38021,0.004], + [38023,0.003], + [38025,0.003], + [38027,0.003], + [38029,0.002], + [38031,0.001], + [38033,0.001], + [38035,0.019], + [38037,0.001], + [38039,0.002], + [38041,0], + [38043,0.009], + [38045,0.001], + [38047,0.003], + [38049,0.003], + [38051,0.004], + [38053,0.003], + [38055,0.001], + [38057,0.003], + [38059,0.002], + [38061,0.002], + [38063,0.001], + [38065,0.002], + [38067,0.001], + [38069,0.001], + [38071,0.004], + [38073,0.004], + [38075,0.002], + [38077,0.005], + [38079,0.001], + [38081,0.002], + [38083,0.002], + [38085,0.001], + [38087,0], + [38089,0.012], + [38091,0.001], + [38093,0.005], + [38095,0], + [38097,0.003], + [38099,0.003], + [38101,0.009], + [38103,0.001], + [38105,0.004], + [39001,0.001], + [39003,0.007], + [39005,0.005], + [39007,0.004], + [39009,0.027], + [39011,0.004], + [39013,0.004], + [39015,0.002], + [39017,0.024], + [39019,0.002], + [39021,0.004], + [39023,0.006], + [39025,0.01], + [39027,0.005], + [39029,0.003], + [39031,0.003], + [39033,0.004], + [39035,0.026], + [39037,0.003], + [39039,0.003], + [39041,0.043], + [39043,0.006], + [39045,0.011], + [39047,0.005], + [39049,0.039], + [39051,0.004], + [39053,0.005], + [39055,0.006], + [39057,0.029], + [39059,0.003], + [39061,0.02], + [39063,0.017], + [39065,0.006], + [39067,0.001], + [39069,0.004], + [39071,0.002], + [39073,0.002], + [39075,0.001], + [39077,0.003], + [39079,0.003], + [39081,0.004], + [39083,0.006], + [39085,0.011], + [39087,0.004], + [39089,0.007], + [39091,0.005], + [39093,0.009], + [39095,0.015], + [39097,0.005], + [39099,0.007], + [39101,0.005], + [39103,0.01], + [39105,0.002], + [39107,0.004], + [39109,0.012], + [39111,0.001], + [39113,0.017], + [39115,0.001], + [39117,0.003], + [39119,0.003], + [39121,0.001], + [39123,0.003], + [39125,0.002], + [39127,0.001], + [39129,0.004], + [39131,0.002], + [39133,0.014], + [39135,0.004], + [39137,0.002], + [39139,0.006], + [39141,0.004], + [39143,0.003], + [39145,0.003], + [39147,0.006], + [39149,0.009], + [39151,0.007], + [39153,0.022], + [39155,0.005], + [39157,0.003], + [39159,0.027], + [39161,0.002], + [39163,0.002], + [39165,0.039], + [39167,0.006], + [39169,0.008], + [39171,0.006], + [39173,0.015], + [39175,0.006], + [40001,0.006], + [40003,0.002], + [40005,0.004], + [40007,0.001], + [40009,0.008], + [40011,0.002], + [40013,0.005], + [40015,0.002], + [40017,0.03], + [40019,0.011], + [40021,0.006], + [40023,0.003], + [40025,0.003], + [40027,0.038], + [40029,0.002], + [40031,0.022], + [40033,0.002], + [40035,0.007], + [40037,0.003], + [40039,0.01], + [40041,0.013], + [40043,0.007], + [40045,0.002], + [40047,0.01], + [40049,0.004], + [40051,0.004], + [40053,0.002], + [40055,0.002], + [40057,0.004], + [40059,0.002], + [40061,0.005], + [40063,0.002], + [40065,0.012], + [40067,0.003], + [40069,0.002], + [40071,0.005], + [40073,0.003], + [40075,0.003], + [40077,0.003], + [40079,0.005], + [40081,0.002], + [40083,0.005], + [40085,0.005], + [40087,0.004], + [40089,0.003], + [40091,0.003], + [40093,0.003], + [40095,0.002], + [40097,0.004], + [40099,0.004], + [40101,0.006], + [40103,0.004], + [40105,0.001], + [40107,0.002], + [40109,0.03], + [40111,0.003], + [40113,0.003], + [40115,0.005], + [40117,0.003], + [40119,0.035], + [40121,0.004], + [40123,0.007], + [40125,0.006], + [40127,0.002], + [40129,0.003], + [40131,0.011], + [40133,0.003], + [40135,0.005], + [40137,0.005], + [40139,0.016], + [40141,0.003], + [40143,0.023], + [40145,0.014], + [40147,0.011], + [40149,0.002], + [40151,0.009], + [40153,0.006], + [41001,0.005], + [41003,0.052], + [41005,0.037], + [41007,0.012], + [41009,0.009], + [41011,0.01], + [41013,0.005], + [41015,0.007], + [41017,0.009], + [41019,0.01], + [41021,0.002], + [41023,0.003], + [41025,0.005], + [41027,0.014], + [41029,0.012], + [41031,0.004], + [41033,0.008], + [41035,0.009], + [41037,0.007], + [41039,0.024], + [41041,0.011], + [41043,0.01], + [41045,0.017], + [41047,0.019], + [41049,0.009], + [41051,0.065], + [41053,0.019], + [41055,0.002], + [41057,0.009], + [41059,0.009], + [41061,0.008], + [41063,0.003], + [41065,0.008], + [41067,0.086], + [41069,0.006], + [41071,0.015], + [42001,0.007], + [42003,0.028], + [42005,0.002], + [42007,0.004], + [42009,0.002], + [42011,0.013], + [42013,0.006], + [42015,0.005], + [42017,0.038], + [42019,0.01], + [42021,0.005], + [42023,0.003], + [42025,0.005], + [42027,0.052], + [42029,0.039], + [42031,0.005], + [42033,0.005], + [42035,0.005], + [42037,0.008], + [42039,0.005], + [42041,0.03], + [42043,0.032], + [42045,0.047], + [42047,0.003], + [42049,0.011], + [42051,0.003], + [42053,0.002], + [42055,0.009], + [42057,0.001], + [42059,0.003], + [42061,0.004], + [42063,0.009], + [42065,0.002], + [42067,0.003], + [42069,0.017], + [42071,0.019], + [42073,0.004], + [42075,0.011], + [42077,0.029], + [42079,0.01], + [42081,0.006], + [42083,0.004], + [42085,0.006], + [42087,0.004], + [42089,0.021], + [42091,0.064], + [42093,0.018], + [42095,0.024], + [42097,0.004], + [42099,0.004], + [42101,0.063], + [42103,0.01], + [42105,0.003], + [42107,0.005], + [42109,0.005], + [42111,0.003], + [42113,0.003], + [42115,0.003], + [42117,0.004], + [42119,0.012], + [42121,0.004], + [42123,0.004], + [42125,0.006], + [42127,0.005], + [42129,0.007], + [42131,0.003], + [42133,0.012], + [44001,0.014], + [44003,0.02], + [44005,0.016], + [44007,0.037], + [44009,0.016], + [45001,0.003], + [45003,0.008], + [45005,0.004], + [45007,0.008], + [45009,0.004], + [45011,0.006], + [45013,0.012], + [45015,0.023], + [45017,0.002], + [45019,0.013], + [45021,0.006], + [45023,0.003], + [45025,0.004], + [45027,0.006], + [45029,0.003], + [45031,0.003], + [45033,0.002], + [45035,0.015], + [45037,0.004], + [45039,0.002], + [45041,0.012], + [45043,0.005], + [45045,0.02], + [45047,0.008], + [45049,0.005], + [45051,0.01], + [45053,0.007], + [45055,0.005], + [45057,0.006], + [45059,0.003], + [45061,0.003], + [45063,0.014], + [45065,0.003], + [45067,0.005], + [45069,0.003], + [45071,0.003], + [45073,0.006], + [45075,0.008], + [45077,0.016], + [45079,0.022], + [45081,0.002], + [45083,0.02], + [45085,0.011], + [45087,0.003], + [45089,0.004], + [45091,0.015], + [46003,0.007], + [46005,0.036], + [46007,0.004], + [46009,0.001], + [46011,0.027], + [46013,0.01], + [46015,0.002], + [46017,null], + [46019,0.002], + [46021,0.003], + [46023,0.002], + [46025,0.001], + [46027,0.017], + [46029,0.004], + [46031,0.003], + [46033,0.004], + [46035,0.005], + [46037,0.002], + [46039,0.001], + [46041,0.002], + [46043,0.001], + [46045,0.001], + [46047,0.004], + [46049,null], + [46051,0.003], + [46053,0.003], + [46055,0.004], + [46057,0.002], + [46059,0.003], + [46061,0.003], + [46063,0.001], + [46065,0.005], + [46067,0.002], + [46069,0.002], + [46071,null], + [46073,0.002], + [46075,0], + [46077,0.003], + [46079,0.007], + [46081,0.007], + [46083,0.01], + [46085,0.003], + [46087,0.001], + [46089,0.002], + [46091,0.002], + [46093,0.006], + [46095,0.002], + [46097,0.004], + [46099,0.015], + [46101,0.011], + [46102,0.001], + [46103,0.01], + [46105,0.001], + [46107,0.003], + [46109,0.002], + [46111,0.002], + [46115,0.001], + [46117,0.001], + [46119,0], + [46121,0.002], + [46123,0.002], + [46125,0.002], + [46127,0.009], + [46129,0.002], + [46135,0.005], + [46137,0.001], + [47001,0.011], + [47003,0.008], + [47005,0.004], + [47007,0.001], + [47009,0.007], + [47011,0.008], + [47013,0.003], + [47015,0.001], + [47017,0.002], + [47019,0.003], + [47021,0.004], + [47023,0.004], + [47025,0.005], + [47027,0.001], + [47029,0.003], + [47031,0.009], + [47033,0.002], + [47035,0.004], + [47037,0.03], + [47039,0.002], + [47041,0.003], + [47043,0.005], + [47045,0.005], + [47047,0.005], + [47049,0.002], + [47051,0.007], + [47053,0.002], + [47055,0.004], + [47057,0.001], + [47059,0.004], + [47061,0.002], + [47063,0.007], + [47065,0.018], + [47067,0.001], + [47069,0.005], + [47071,0.004], + [47073,0.005], + [47075,0.001], + [47077,0.003], + [47079,0.003], + [47081,0.002], + [47083,0.003], + [47085,0.002], + [47087,0.001], + [47089,0.004], + [47091,0.002], + [47093,0.019], + [47095,0.001], + [47097,0.002], + [47099,0.003], + [47101,0.004], + [47103,0.004], + [47105,0.006], + [47107,0.007], + [47109,0.002], + [47111,0.002], + [47113,0.009], + [47115,0.004], + [47117,0.004], + [47119,0.006], + [47121,0.002], + [47123,0.003], + [47125,0.021], + [47127,0.004], + [47129,0.002], + [47131,0.002], + [47133,0.002], + [47135,0.002], + [47137,0.001], + [47139,0.001], + [47141,0.012], + [47143,0.004], + [47145,0.005], + [47147,0.005], + [47149,0.03], + [47151,0.002], + [47153,0.003], + [47155,0.009], + [47157,0.023], + [47159,0.002], + [47161,0.01], + [47163,0.006], + [47165,0.01], + [47167,0.006], + [47169,0.002], + [47171,0.002], + [47173,0.001], + [47175,0.001], + [47177,0.005], + [47179,0.012], + [47181,0.002], + [47183,0.011], + [47185,0.003], + [47187,0.03], + [47189,0.011], + [48001,0.005], + [48003,0.006], + [48005,0.009], + [48007,0.02], + [48009,0.002], + [48011,null], + [48013,0.003], + [48015,0.004], + [48017,0.004], + [48019,0.003], + [48021,0.007], + [48023,0.001], + [48025,0.006], + [48027,0.028], + [48029,0.024], + [48031,0.005], + [48033,0.002], + [48035,0.002], + [48037,0.008], + [48039,0.055], + [48041,0.052], + [48043,0.007], + [48045,0], + [48047,0.003], + [48049,0.004], + [48051,0.002], + [48053,0.005], + [48055,0.009], + [48057,0.044], + [48059,0.004], + [48061,0.007], + [48063,0.005], + [48065,0.003], + [48067,0.003], + [48069,null], + [48071,0.01], + [48073,0.005], + [48075,0.007], + [48077,0.003], + [48079,0.002], + [48081,0.002], + [48083,0.004], + [48085,0.112], + [48087,0.001], + [48089,0.004], + [48091,0.008], + [48093,0.003], + [48095,0.003], + [48097,0.008], + [48099,0.019], + [48101,0], + [48103,0.004], + [48105,0.003], + [48107,0.001], + [48109,0.01], + [48111,0.006], + [48113,0.05], + [48115,0.004], + [48117,0.003], + [48119,0.006], + [48121,0.066], + [48123,0.002], + [48125,0.009], + [48127,0.006], + [48129,0.002], + [48131,0.002], + [48133,0.003], + [48135,0.008], + [48137,0.003], + [48139,0.006], + [48141,0.01], + [48143,0.007], + [48145,0.003], + [48147,0.004], + [48149,0.003], + [48151,0.002], + [48153,0.002], + [48155,0.004], + [48157,0.17], + [48159,0.005], + [48161,0.003], + [48163,0.021], + [48165,0.003], + [48167,0.03], + [48169,0.001], + [48171,0.004], + [48173,0.001], + [48175,0.002], + [48177,0.004], + [48179,0.004], + [48181,0.009], + [48183,0.011], + [48185,0.002], + [48187,0.014], + [48189,0.004], + [48191,0.001], + [48193,0.004], + [48195,0.003], + [48197,0.003], + [48199,0.005], + [48201,0.062], + [48203,0.005], + [48205,0.005], + [48207,0.005], + [48209,0.012], + [48211,0.005], + [48213,0.004], + [48215,0.01], + [48217,0.003], + [48219,0.003], + [48221,0.006], + [48223,0.005], + [48225,0.004], + [48227,0.008], + [48229,0.005], + [48231,0.011], + [48233,0.004], + [48235,0.002], + [48237,0.003], + [48239,0.004], + [48241,0.006], + [48243,0.003], + [48245,0.034], + [48247,0.003], + [48249,0.004], + [48251,0.007], + [48253,0.004], + [48255,0.002], + [48257,0.009], + [48259,0.006], + [48261,0.002], + [48263,0], + [48265,0.008], + [48267,0.004], + [48269,0], + [48271,0.003], + [48273,0.023], + [48275,0.002], + [48277,0.006], + [48279,0.001], + [48281,0.01], + [48283,0.001], + [48285,0.003], + [48287,0.003], + [48289,0.005], + [48291,0.005], + [48293,0.004], + [48295,0.003], + [48297,0.005], + [48299,0.004], + [48301,0], + [48303,0.021], + [48305,0.001], + [48307,0.004], + [48309,0.014], + [48311,0.004], + [48313,0.006], + [48315,0.005], + [48317,0.003], + [48319,0.002], + [48321,0.02], + [48323,0.003], + [48325,0.006], + [48327,0.001], + [48329,0.013], + [48331,0.004], + [48333,0.002], + [48335,0.003], + [48337,0.003], + [48339,0.021], + [48341,0.061], + [48343,0.003], + [48345,0], + [48347,0.012], + [48349,0.005], + [48351,0.004], + [48353,0.004], + [48355,0.017], + [48357,0.003], + [48359,0.008], + [48361,0.01], + [48363,0.005], + [48365,0.003], + [48367,0.005], + [48369,0.002], + [48371,0.005], + [48373,0.004], + [48375,0.04], + [48377,0.01], + [48379,0.005], + [48381,0.014], + [48383,0.002], + [48385,0.001], + [48387,0.002], + [48389,0.009], + [48391,0.004], + [48393,0.002], + [48395,0.006], + [48397,0.024], + [48399,0.002], + [48401,0.004], + [48403,0.003], + [48405,0.003], + [48407,0.005], + [48409,0.008], + [48411,0.002], + [48413,0.001], + [48415,0.003], + [48417,0.003], + [48419,0.003], + [48421,0.002], + [48423,0.012], + [48425,0.006], + [48427,0.002], + [48429,0.003], + [48431,0], + [48433,0.009], + [48435,0.002], + [48437,0.001], + [48439,0.047], + [48441,0.016], + [48443,0.004], + [48445,0.002], + [48447,0.004], + [48449,0.007], + [48451,0.01], + [48453,0.058], + [48455,0.003], + [48457,0.002], + [48459,0.004], + [48461,null], + [48463,0.005], + [48465,0.005], + [48467,0.003], + [48469,0.01], + [48471,0.009], + [48473,0.005], + [48475,0.003], + [48477,0.013], + [48479,0.006], + [48481,0.004], + [48483,0.004], + [48485,0.02], + [48487,0.007], + [48489,0.006], + [48491,0.048], + [48493,0.004], + [48495,0.002], + [48497,0.004], + [48499,0.004], + [48501,0.004], + [48503,0.004], + [48505,0.002], + [48507,0], + [49001,0.011], + [49003,0.009], + [49005,0.019], + [49007,0.006], + [49009,0.004], + [49011,0.018], + [49013,0.003], + [49015,0.003], + [49017,0.012], + [49019,0.008], + [49021,0.008], + [49023,0.002], + [49025,0.004], + [49027,0.006], + [49029,0.004], + [49031,0.004], + [49033,0.003], + [49035,0.033], + [49037,0.003], + [49039,0.005], + [49041,0.003], + [49043,0.012], + [49045,0.006], + [49047,0.005], + [49049,0.014], + [49051,0.008], + [49053,0.007], + [49055,0.007], + [49057,0.013], + [50001,0.014], + [50003,0.007], + [50005,0.008], + [50007,0.028], + [50009,0.003], + [50011,0.005], + [50013,0.003], + [50015,0.005], + [50017,0.005], + [50019,0.003], + [50021,0.006], + [50023,0.008], + [50025,0.01], + [50027,0.009], + [51001,0.006], + [51003,0.047], + [51005,0.002], + [51007,0.002], + [51009,0.005], + [51011,0.002], + [51013,0.096], + [51015,0.005], + [51017,0.001], + [51019,0.01], + [51021,0.003], + [51023,0.005], + [51025,0.003], + [51027,0.002], + [51029,0.004], + [51031,0.01], + [51033,0.006], + [51035,0.002], + [51036,0.003], + [51037,0.002], + [51041,0.033], + [51043,0.009], + [51045,0.002], + [51047,0.013], + [51049,0.003], + [51051,0.001], + [51053,0.004], + [51057,0.008], + [51059,0.175], + [51061,0.013], + [51063,0.002], + [51065,0.006], + [51067,0.004], + [51069,0.012], + [51071,0.003], + [51073,0.008], + [51075,0.01], + [51077,0.001], + [51079,0.014], + [51081,0.003], + [51083,0.004], + [51085,0.014], + [51087,0.065], + [51089,0.004], + [51091,0.002], + [51093,0.008], + [51095,0.022], + [51097,0.002], + [51099,0.012], + [51101,0.007], + [51103,0.006], + [51105,0.002], + [51107,0.147], + [51109,0.005], + [51111,0.002], + [51113,0.006], + [51115,0.003], + [51117,0.007], + [51119,0.003], + [51121,0.054], + [51125,0.005], + [51127,0.009], + [51131,0.007], + [51133,0.003], + [51135,0.003], + [51137,0.007], + [51139,0.003], + [51141,0.002], + [51143,0.003], + [51145,0.005], + [51147,0.009], + [51149,0.015], + [51153,0.075], + [51155,0.005], + [51157,0.005], + [51159,0.004], + [51161,0.027], + [51163,0.005], + [51165,0.006], + [51167,0.002], + [51169,0.002], + [51171,0.005], + [51173,0.003], + [51175,0.002], + [51177,0.023], + [51179,0.028], + [51181,0.003], + [51183,0.004], + [51185,0.006], + [51187,0.01], + [51191,0.004], + [51193,0.006], + [51195,0.003], + [51197,0.004], + [51199,0.049], + [51510,0.06], + [51520,0.007], + [51530,0.004], + [51540,0.064], + [51550,0.029], + [51570,0.033], + [51580,0.006], + [51590,0.009], + [51595,0.007], + [51600,0.152], + [51610,0.094], + [51620,0.007], + [51630,0.028], + [51640,0.005], + [51650,0.022], + [51660,0.035], + [51670,0.008], + [51678,0.022], + [51680,0.025], + [51683,0.05], + [51685,0.09], + [51690,0.009], + [51700,0.027], + [51710,0.033], + [51720,0.014], + [51730,0.008], + [51735,0.021], + [51740,0.011], + [51750,0.016], + [51760,0.023], + [51770,0.018], + [51775,0.016], + [51790,0.008], + [51800,0.016], + [51810,0.061], + [51820,0.007], + [51830,0.057], + [51840,0.023], + [53001,0.007], + [53003,0.005], + [53005,0.027], + [53007,0.008], + [53009,0.014], + [53011,0.041], + [53013,0.006], + [53015,0.015], + [53017,0.007], + [53019,0.007], + [53021,0.018], + [53023,0.017], + [53025,0.009], + [53027,0.014], + [53029,0.044], + [53031,0.016], + [53033,0.146], + [53035,0.049], + [53037,0.02], + [53039,0.006], + [53041,0.009], + [53043,0.004], + [53045,0.012], + [53047,0.006], + [53049,0.02], + [53051,0.006], + [53053,0.06], + [53055,0.011], + [53057,0.018], + [53059,0.009], + [53061,0.089], + [53063,0.021], + [53065,0.005], + [53067,0.052], + [53069,0.006], + [53071,0.013], + [53073,0.035], + [53075,0.078], + [53077,0.011], + [54001,0.002], + [54003,0.008], + [54005,0.001], + [54007,0.002], + [54009,0.004], + [54011,0.01], + [54013,0.002], + [54015,null], + [54017,0.002], + [54019,0.002], + [54021,0.004], + [54023,0.002], + [54025,0.004], + [54027,0.002], + [54029,0.003], + [54031,0.01], + [54033,0.005], + [54035,0.003], + [54037,0.012], + [54039,0.01], + [54041,0.003], + [54043,0.001], + [54045,0.003], + [54047,0.001], + [54049,0.005], + [54051,0.004], + [54053,0.003], + [54055,0.005], + [54057,0.004], + [54059,0.002], + [54061,0.031], + [54063,0.001], + [54065,0.003], + [54067,0.003], + [54069,0.008], + [54071,0.003], + [54073,0.001], + [54075,0], + [54077,0.001], + [54079,0.007], + [54081,0.009], + [54083,0.003], + [54085,0.001], + [54087,0.003], + [54089,0.002], + [54091,0.004], + [54093,null], + [54095,0.001], + [54097,0.004], + [54099,0.002], + [54101,0.001], + [54103,0.002], + [54105,0.002], + [54107,0.005], + [54109,0.001], + [55001,0.004], + [55003,0.004], + [55005,0.005], + [55007,0.003], + [55009,0.027], + [55011,0.002], + [55013,0.003], + [55015,0.021], + [55017,0.012], + [55019,0.004], + [55021,0.005], + [55023,0.004], + [55025,0.047], + [55027,0.005], + [55029,0.004], + [55031,0.009], + [55033,0.026], + [55035,0.033], + [55037,0.003], + [55039,0.011], + [55041,0.001], + [55043,0.006], + [55045,0.005], + [55047,0.005], + [55049,0.005], + [55051,0.003], + [55053,0.003], + [55055,0.007], + [55057,0.004], + [55059,0.014], + [55061,0.003], + [55063,0.041], + [55065,0.003], + [55067,0.003], + [55069,0.004], + [55071,0.025], + [55073,0.053], + [55075,0.005], + [55077,0.004], + [55078,0], + [55079,0.034], + [55081,0.006], + [55083,0.003], + [55085,0.005], + [55087,0.03], + [55089,0.017], + [55091,0.002], + [55093,0.007], + [55095,0.004], + [55097,0.028], + [55099,0.004], + [55101,0.011], + [55103,0.005], + [55105,0.01], + [55107,0.003], + [55109,0.011], + [55111,0.005], + [55113,0.003], + [55115,0.004], + [55117,0.046], + [55119,0.003], + [55121,0.004], + [55123,0.003], + [55125,0.003], + [55127,0.008], + [55129,0.004], + [55131,0.011], + [55133,0.027], + [55135,0.004], + [55137,0.004], + [55139,0.023], + [55141,0.018], + [56001,0.028], + [56003,0.003], + [56005,0.006], + [56007,0.007], + [56009,0.003], + [56011,0.002], + [56013,0.004], + [56015,0.003], + [56017,0.004], + [56019,0.004], + [56021,0.011], + [56023,0.003], + [56025,0.007], + [56027,0.004], + [56029,0.006], + [56031,0.004], + [56033,0.007], + [56035,0.005], + [56037,0.008], + [56039,0.011], + [56041,0.003], + [56043,0.006], + [56045,0.003] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-asian-2017.json b/data/regional/united-states/demographics/race/us-race-asian-2017.json new file mode 100644 index 0000000..ef95886 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-asian-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Asian Population", + "description" : "Percent of the population that is asian in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.asian.2017"], + [1001,0.0047], + [1003,0.0035], + [1005,0.0031], + [1007,0], + [1009,0.0007], + [1011,0.0035], + [1013,0.0056], + [1015,0.005], + [1017,0.005], + [1019,0.001], + [1021,0.0021], + [1023,0.0003], + [1025,0.0026], + [1027,0.0002], + [1029,0.0027], + [1031,0.0065], + [1033,0.0025], + [1035,0.0002], + [1037,0], + [1039,0.0021], + [1041,0.007], + [1043,0.0032], + [1045,0.0051], + [1047,0.0022], + [1049,0.0015], + [1051,0.0028], + [1053,0.002], + [1055,0.0034], + [1057,0.0023], + [1059,0.0019], + [1061,0.002], + [1063,0], + [1065,0.0009], + [1067,0], + [1069,0.0043], + [1071,0.0023], + [1073,0.0077], + [1075,0], + [1077,0.0034], + [1079,0.0003], + [1081,0.0192], + [1083,0.0064], + [1085,0], + [1087,0.001], + [1089,0.0128], + [1091,0], + [1093,0.0016], + [1095,0.0028], + [1097,0.0098], + [1099,0.0027], + [1101,0.0123], + [1103,0.0033], + [1105,0.0012], + [1107,0.0003], + [1109,0.011], + [1111,0.0008], + [1113,0.0036], + [1115,0.0042], + [1117,0.0095], + [1119,0.015], + [1121,0.0029], + [1123,0.002], + [1125,0.0077], + [1127,0.0024], + [1129,0.0047], + [1131,0], + [1133,0.0015], + [2013,0.1309], + [2016,0.1913], + [2020,0.0466], + [2050,0.0046], + [2060,0.0071], + [2068,0.0237], + [2070,0.0075], + [2090,0.0157], + [2100,0.0197], + [2105,0.0135], + [2110,0.0367], + [2122,0.0074], + [2130,0.0401], + [2150,0.1107], + [2158,null], + [2164,0.0108], + [2170,0.0065], + [2180,0.0071], + [2185,0.029], + [2188,0.0044], + [2195,0.0339], + [2198,0.0057], + [2220,0.0345], + [2230,0.0202], + [2240,0.0096], + [2261,0.0141], + [2275,0.0156], + [2282,0.0271], + [2290,0.0037], + [4001,0.0017], + [4003,0.0091], + [4005,0.0093], + [4007,0.0044], + [4009,0.0037], + [4011,0.0018], + [4012,0.004], + [4013,0.0197], + [4015,0.0062], + [4017,0.0031], + [4019,0.0139], + [4021,0.0086], + [4023,0.0043], + [4025,0.0048], + [4027,0.0065], + [5001,0.0001], + [5003,0], + [5005,0.0019], + [5007,0.0185], + [5009,0.0025], + [5011,0], + [5013,0.0011], + [5015,0.0052], + [5017,0.0025], + [5019,0.0035], + [5021,0], + [5023,0.004], + [5025,0.0005], + [5027,0.0055], + [5029,0.0005], + [5031,0.0057], + [5033,0.0092], + [5035,0.0033], + [5037,0.0003], + [5039,0.0082], + [5041,0.0007], + [5043,0.0008], + [5045,0.0064], + [5047,0.0024], + [5049,0.0002], + [5051,0.0025], + [5053,0.0002], + [5055,0.0015], + [5057,0.0004], + [5059,0.0014], + [5061,0.0009], + [5063,0.0035], + [5065,0.0009], + [5067,0.0002], + [5069,0.0038], + [5071,0.0082], + [5073,0.0019], + [5075,0.0004], + [5077,0.0005], + [5079,0], + [5081,0], + [5083,0.0064], + [5085,0.0035], + [5087,0.0021], + [5089,0.0022], + [5091,0.0023], + [5093,0.0027], + [5095,0.0025], + [5097,0.0062], + [5099,0.0072], + [5101,0.0027], + [5103,0.0003], + [5105,0.0004], + [5107,0.0003], + [5109,0.004], + [5111,0.0003], + [5113,0.0024], + [5115,0.0051], + [5117,0.0001], + [5119,0.0106], + [5121,0], + [5123,0.0026], + [5125,0.0056], + [5127,0.0177], + [5129,0.0067], + [5131,0.0215], + [5133,0.0019], + [5135,0.0021], + [5137,0.0004], + [5139,0.0027], + [5141,0.0006], + [5143,0.0122], + [5145,0.0034], + [5147,0.0074], + [5149,0.0077], + [6001,0.1446], + [6003,0.0033], + [6005,0.0078], + [6007,0.0226], + [6009,0.0058], + [6011,0.0076], + [6013,0.0801], + [6015,0.0141], + [6017,0.0213], + [6019,0.0504], + [6021,0.013], + [6023,0.0145], + [6025,0.0072], + [6027,0.0075], + [6029,0.0235], + [6031,0.019], + [6033,0.0074], + [6035,0.0074], + [6037,0.0723], + [6039,0.0107], + [6041,0.0286], + [6043,0.0048], + [6045,0.0086], + [6047,0.0378], + [6049,0.0058], + [6051,0.01], + [6053,0.0287], + [6055,0.0395], + [6057,0.0057], + [6059,0.0984], + [6061,0.0347], + [6063,0.004], + [6065,0.0315], + [6067,0.0767], + [6069,0.0141], + [6071,0.0346], + [6073,0.0585], + [6075,0.1709], + [6077,0.0755], + [6079,0.0183], + [6081,0.1381], + [6083,0.027], + [6085,0.1757], + [6087,0.023], + [6089,0.0148], + [6091,0], + [6093,0.0079], + [6095,0.0764], + [6097,0.0196], + [6099,0.0275], + [6101,0.0762], + [6103,0.0072], + [6105,0.0062], + [6107,0.0175], + [6109,0.0056], + [6111,0.036], + [6113,0.0685], + [6115,0.0323], + [8001,0.0195], + [8003,0.0062], + [8005,0.0286], + [8007,0.0037], + [8009,0], + [8011,0.0022], + [8013,0.0226], + [8014,0.0324], + [8015,0.0039], + [8017,0.0153], + [8019,0.0043], + [8021,0.0004], + [8023,0.0074], + [8025,0.0024], + [8027,0], + [8029,0.0048], + [8031,0.018], + [8033,0], + [8035,0.0221], + [8037,0.0044], + [8039,0.0042], + [8041,0.0137], + [8043,0.0036], + [8045,0.004], + [8047,0.0014], + [8049,0.0094], + [8051,0.0029], + [8053,0], + [8055,0.0005], + [8057,0], + [8059,0.0135], + [8061,0], + [8063,0.0018], + [8065,0.0032], + [8067,0.0032], + [8069,0.0103], + [8071,0.0041], + [8073,0.0008], + [8075,0.0048], + [8077,0.0036], + [8079,0.0018], + [8081,0.0009], + [8083,0.0005], + [8085,0.0041], + [8087,0.0027], + [8089,0.005], + [8091,0.0026], + [8093,0.0055], + [8095,0.0018], + [8097,0.0069], + [8099,0.0032], + [8101,0.0044], + [8103,0.0005], + [8105,0.0011], + [8107,0.0054], + [8109,0.0055], + [8111,0], + [8113,0.0063], + [8115,0.0076], + [8117,0.0022], + [8119,0.0056], + [8121,0.0023], + [8123,0.0068], + [8125,0], + [9001,0.0258], + [9003,0.0254], + [9005,0.0096], + [9007,0.0146], + [9009,0.0197], + [9011,0.0207], + [9013,0.0221], + [9015,0.0067], + [10001,0.0101], + [10003,0.0275], + [10005,0.006], + [11001,0.019], + [12001,0.0294], + [12003,0.0036], + [12005,0.0116], + [12007,0.003], + [12009,0.0122], + [12011,0.0179], + [12013,0.004], + [12015,0.0059], + [12017,0.0083], + [12019,0.0151], + [12021,0.0064], + [12023,0.0047], + [12027,0.0008], + [12029,0.0024], + [12031,0.0231], + [12033,0.0146], + [12035,0.0126], + [12037,0.0018], + [12039,0.0025], + [12041,0.0003], + [12043,0.0019], + [12045,0.0028], + [12047,0.0006], + [12049,0.003], + [12051,0.0044], + [12053,0.0061], + [12055,0.0077], + [12057,0.0198], + [12059,0.0013], + [12061,0.0062], + [12063,0.003], + [12065,0.0007], + [12067,0], + [12069,0.0095], + [12071,0.0078], + [12073,0.0168], + [12075,0.0028], + [12077,0.0019], + [12079,0.0049], + [12081,0.0097], + [12083,0.0075], + [12085,0.0064], + [12086,0.0079], + [12087,0.0061], + [12089,0.0046], + [12091,0.0146], + [12093,0.0044], + [12095,0.026], + [12097,0.0127], + [12099,0.013], + [12101,0.0123], + [12103,0.0165], + [12105,0.0084], + [12107,0.0031], + [12109,0.0133], + [12111,0.0095], + [12113,0.0097], + [12115,0.0083], + [12117,0.0213], + [12119,0.0038], + [12121,0.001], + [12123,0.0018], + [12125,0.0024], + [12127,0.009], + [12129,0.0019], + [12131,0.0063], + [12133,0.0016], + [13001,0.0042], + [13003,0], + [13005,0.0047], + [13007,0.0028], + [13009,0.0075], + [13011,0.0062], + [13013,0.0178], + [13015,0.0047], + [13017,0.0008], + [13019,0.0048], + [13021,0.0095], + [13023,0.0009], + [13025,0.0034], + [13027,0.0042], + [13029,0.0078], + [13031,0.0073], + [13033,0.0014], + [13035,0.003], + [13037,0.0027], + [13039,0.007], + [13043,0.0127], + [13045,0.0039], + [13047,0.007], + [13049,0.004], + [13051,0.0127], + [13053,0.0145], + [13055,0.0022], + [13057,0.0094], + [13059,0.0214], + [13061,0], + [13063,0.0264], + [13065,0.0029], + [13067,0.0256], + [13069,0.0036], + [13071,0.0042], + [13073,0.02], + [13075,0.0028], + [13077,0.0091], + [13079,0.0055], + [13081,0.0061], + [13083,0.0077], + [13085,0.0014], + [13087,0.0022], + [13089,0.0303], + [13091,0.0028], + [13093,0.0005], + [13095,0.0043], + [13097,0.0083], + [13099,0.0038], + [13101,0], + [13103,0.005], + [13105,0.0009], + [13107,0.0017], + [13109,0.0038], + [13111,0.0029], + [13113,0.0223], + [13115,0.0077], + [13117,0.0528], + [13119,0.0034], + [13121,0.0334], + [13123,0.0024], + [13125,0], + [13127,0.0064], + [13129,0.0056], + [13131,0.0027], + [13133,0.0048], + [13135,0.0561], + [13137,0.0117], + [13139,0.0086], + [13141,0.0027], + [13143,0.0038], + [13145,0.0051], + [13147,0.0046], + [13149,0.0026], + [13151,0.0165], + [13153,0.0151], + [13155,0.0024], + [13157,0.0086], + [13159,0.0015], + [13161,0], + [13163,0.0005], + [13165,0.0043], + [13167,0.0009], + [13169,0.0035], + [13171,0.0038], + [13173,0.0014], + [13175,0.0055], + [13177,0.0124], + [13179,0.0109], + [13181,0.0012], + [13183,0.0049], + [13185,0.0094], + [13187,0.0019], + [13189,0.0023], + [13191,0], + [13193,0.0081], + [13195,0.0072], + [13197,0.0036], + [13199,0.0031], + [13201,0], + [13205,0.0016], + [13207,0.0039], + [13209,0.0015], + [13211,0.0003], + [13213,0.0018], + [13215,0.0119], + [13217,0.0051], + [13219,0.0205], + [13221,0.0015], + [13223,0.0052], + [13225,0.0056], + [13227,0.0027], + [13229,0.0007], + [13231,0.0009], + [13233,0.0033], + [13235,0], + [13237,0.0027], + [13239,0.0248], + [13241,0.0041], + [13243,0.0072], + [13245,0.0089], + [13247,0.0099], + [13249,0], + [13251,0.0027], + [13253,0.0048], + [13255,0.0047], + [13257,0.0021], + [13259,0.0111], + [13261,0.0056], + [13263,0.0026], + [13265,0.0016], + [13267,0.001], + [13269,0.0045], + [13271,0], + [13273,0.001], + [13275,0.0042], + [13277,0.006], + [13279,0.0046], + [13281,0.0011], + [13283,0], + [13285,0.01], + [13287,0.002], + [13289,0.0005], + [13291,0.0035], + [13293,0.0025], + [13295,0.0033], + [13297,0.0061], + [13299,0.0057], + [13301,0.005], + [13303,0.0031], + [13305,0.0023], + [13307,0], + [13309,0], + [13311,0.0026], + [13313,0.0069], + [13315,0], + [13317,0.004], + [13319,0], + [13321,0.0015], + [15001,0.1111], + [15003,0.2144], + [15005,0.157], + [15007,0.174], + [15009,0.145], + [16001,0.013], + [16003,0], + [16005,0.0068], + [16007,0.0034], + [16009,0.005], + [16011,0.0047], + [16013,0.0056], + [16015,0.0055], + [16017,0.0036], + [16019,0.0044], + [16021,0.0025], + [16023,0], + [16025,0], + [16027,0.0042], + [16029,0.0004], + [16031,0.0028], + [16033,0], + [16035,0.0027], + [16037,0], + [16039,0.0155], + [16041,0.0001], + [16043,0.0005], + [16045,0.0034], + [16047,0.0023], + [16049,0.0014], + [16051,0.0013], + [16053,0.0022], + [16055,0.0036], + [16057,0.0133], + [16059,0.0011], + [16061,0.0039], + [16063,0.0012], + [16065,0.0057], + [16067,0.0021], + [16069,0.0045], + [16071,0], + [16073,0.0009], + [16075,0.0037], + [16077,0], + [16079,0.0024], + [16081,0.0006], + [16083,0.0091], + [16085,0.0006], + [16087,0.005], + [17001,0.0038], + [17003,0.0008], + [17005,0.0058], + [17007,0.0059], + [17009,0.003], + [17011,0.0038], + [17013,0.0046], + [17015,0.0035], + [17017,0.0016], + [17019,0.0517], + [17021,0.0032], + [17023,0.0026], + [17025,0.0037], + [17027,0.0031], + [17029,0.0062], + [17031,0.0349], + [17033,0.0018], + [17035,0.0017], + [17037,0.0121], + [17039,0.0006], + [17041,0.0037], + [17043,0.0568], + [17045,0.0018], + [17047,0.0043], + [17049,0.0012], + [17051,0.0024], + [17053,0.0024], + [17055,0.0027], + [17057,0.0012], + [17059,0.0014], + [17061,0.0009], + [17063,0.0038], + [17065,0.0006], + [17067,0.0022], + [17069,0.0004], + [17071,0.0035], + [17073,0.0029], + [17075,0.0021], + [17077,0.0168], + [17079,0.0001], + [17081,0.0057], + [17083,0.002], + [17085,0.0024], + [17087,0.0009], + [17089,0.0197], + [17091,0.0049], + [17093,0.0162], + [17095,0.0052], + [17097,0.0358], + [17099,0.0039], + [17101,0.0019], + [17103,0.0034], + [17105,0.0033], + [17107,0.004], + [17109,0.0109], + [17111,0.0135], + [17113,0.0253], + [17115,0.0057], + [17117,0.0022], + [17119,0.0046], + [17121,0.0035], + [17123,0.0013], + [17125,0.0008], + [17127,0.0009], + [17129,0.0017], + [17131,0.0014], + [17133,0.0034], + [17135,0.0007], + [17137,0.0035], + [17139,0.001], + [17141,0.0024], + [17143,0.0193], + [17145,0.0028], + [17147,0.0019], + [17149,0.0015], + [17151,0.0052], + [17153,0.0014], + [17155,0.0018], + [17157,0.0018], + [17159,0.0037], + [17161,0.012], + [17163,0.007], + [17165,0.0036], + [17167,0.0097], + [17169,0], + [17171,0.0004], + [17173,0.0018], + [17175,0.0042], + [17177,0.0039], + [17179,0.0048], + [17181,0.0012], + [17183,0.0044], + [17185,0.0058], + [17187,0.0116], + [17189,0.0022], + [17191,0.0022], + [17193,0.0035], + [17195,0.0029], + [17197,0.0262], + [17199,0.0051], + [17201,0.0127], + [17203,0.0039], + [18001,0.0019], + [18003,0.0176], + [18005,0.0313], + [18007,0.0008], + [18009,0.0023], + [18011,0.013], + [18013,0.004], + [18015,0.0007], + [18017,0.0079], + [18019,0.0038], + [18021,0.0013], + [18023,0.0014], + [18025,0.0007], + [18027,0.001], + [18029,0.002], + [18031,0.0079], + [18033,0.0015], + [18035,0.0067], + [18037,0.0032], + [18039,0.0052], + [18041,0.0007], + [18043,0.0055], + [18045,0.0005], + [18047,0.0014], + [18049,0.0021], + [18051,0.0015], + [18053,0.0043], + [18055,0.0018], + [18057,0.029], + [18059,0.0039], + [18061,0.0018], + [18063,0.0128], + [18065,0.0023], + [18067,0.0063], + [18069,0.0041], + [18071,0.0093], + [18073,0.0018], + [18075,0.0026], + [18077,0.0041], + [18079,0.0022], + [18081,0.0141], + [18083,0.0041], + [18085,0.0052], + [18087,0.0012], + [18089,0.0069], + [18091,0.0029], + [18093,0.0021], + [18095,0.0024], + [18097,0.0145], + [18099,0.0024], + [18101,0.001], + [18103,0.0028], + [18105,0.0316], + [18107,0.0039], + [18109,0.0034], + [18111,0.003], + [18113,0.0033], + [18115,0.0017], + [18117,0.0026], + [18119,0.0023], + [18121,0], + [18123,0.0014], + [18125,0.0051], + [18127,0.007], + [18129,0.0022], + [18131,0.0032], + [18133,0.0051], + [18135,0.0012], + [18137,0.0049], + [18139,0.0004], + [18141,0.0108], + [18143,0.002], + [18145,0.0033], + [18147,0.0011], + [18149,0.0025], + [18151,0.0024], + [18153,0.0039], + [18155,0.0024], + [18157,0.04], + [18159,0], + [18161,0.0024], + [18163,0.0062], + [18165,0.001], + [18167,0.0094], + [18169,0.001], + [18171,0.0001], + [18173,0.0123], + [18175,0.0009], + [18177,0.005], + [18179,0.0026], + [18181,0.0009], + [18183,0.0026], + [19001,0.0025], + [19003,0.0028], + [19005,0.0014], + [19007,0.0027], + [19009,0.0023], + [19011,0.0017], + [19013,0.0103], + [19015,0.0019], + [19017,0.0055], + [19019,0.0028], + [19021,0.0454], + [19023,0.0021], + [19025,0.0016], + [19027,0.0008], + [19029,0.0028], + [19031,0.0014], + [19033,0.0056], + [19035,0.0022], + [19037,0.0018], + [19039,0.0051], + [19041,0.0024], + [19043,0.0022], + [19045,0.0035], + [19047,0.0093], + [19049,0.0211], + [19051,0.0017], + [19053,0.0033], + [19055,0.0019], + [19057,0.0032], + [19059,0.0021], + [19061,0.0063], + [19063,0.0012], + [19065,0.0046], + [19067,0.0086], + [19069,0.0005], + [19071,0], + [19073,0.0067], + [19075,0.0014], + [19077,0.0014], + [19079,0.0151], + [19081,0.0019], + [19083,0.003], + [19085,0.0013], + [19087,0.0129], + [19089,0.0012], + [19091,0.0016], + [19093,0.0022], + [19095,0.0009], + [19097,0.0023], + [19099,0.0021], + [19101,0.0259], + [19103,0.0311], + [19105,0.0004], + [19107,0.0022], + [19109,0.0028], + [19111,0.003], + [19113,0.0113], + [19115,0.0197], + [19117,0], + [19119,0.0012], + [19121,0.0057], + [19123,0.0067], + [19125,0.0057], + [19127,0.0164], + [19129,0.0011], + [19131,0.0031], + [19133,0.0008], + [19135,0.0044], + [19137,0], + [19139,0.0056], + [19141,0.0044], + [19143,0.0003], + [19145,0.0055], + [19147,0.0025], + [19149,0.0028], + [19151,0.0029], + [19153,0.0217], + [19155,0.003], + [19157,0.0101], + [19159,0.0043], + [19161,0], + [19163,0.0127], + [19165,0.0016], + [19167,0.0036], + [19169,0.0366], + [19171,0.0018], + [19173,0.0035], + [19175,0.0033], + [19177,0.0005], + [19179,0.0047], + [19181,0.0028], + [19183,0.0028], + [19185,0.0002], + [19187,0.0066], + [19189,0.0061], + [19191,0.0054], + [19193,0.0141], + [19195,0.0015], + [19197,0.0022], + [20001,0.0029], + [20003,0], + [20005,0.0017], + [20007,0.0034], + [20009,0.0009], + [20011,0.0043], + [20013,0.0029], + [20015,0.0058], + [20017,0], + [20019,0], + [20021,0.0008], + [20023,0.0043], + [20025,0.0045], + [20027,0.003], + [20029,0.0016], + [20031,0.0024], + [20033,0], + [20035,0.008], + [20037,0.0089], + [20039,0.0026], + [20041,0.002], + [20043,0.0011], + [20045,0.0243], + [20047,0.0015], + [20049,0.0025], + [20051,0.007], + [20053,0.0028], + [20055,0.0196], + [20057,0.0071], + [20059,0.0015], + [20061,0.0156], + [20063,0.0042], + [20065,0.0037], + [20067,0], + [20069,0.0002], + [20071,0.0008], + [20073,0], + [20075,0], + [20077,0.0009], + [20079,0.003], + [20081,0.0029], + [20083,0.0152], + [20085,0.0011], + [20087,0], + [20089,0.0002], + [20091,0.0238], + [20093,0.0022], + [20095,0.0001], + [20097,0.0061], + [20099,0.0014], + [20101,0], + [20103,0.0075], + [20105,0], + [20107,0.0016], + [20109,0], + [20111,0.0106], + [20113,0.0024], + [20115,0.0015], + [20117,0.0016], + [20119,0.0048], + [20121,0.002], + [20123,0.0026], + [20125,0.0051], + [20127,0.0029], + [20129,0.0007], + [20131,0.0015], + [20133,0.002], + [20135,0.0013], + [20137,0.002], + [20139,0.0011], + [20141,0.0014], + [20143,0.0018], + [20145,0.0003], + [20147,0.0014], + [20149,0.0042], + [20151,0.0005], + [20153,0.0014], + [20155,0.0028], + [20157,0.0034], + [20159,0.0034], + [20161,0.0246], + [20163,0.0022], + [20165,0.003], + [20167,0], + [20169,0.012], + [20171,0.0044], + [20173,0.0218], + [20175,0.0148], + [20177,0.0063], + [20179,0], + [20181,0.0093], + [20183,0.0012], + [20185,0.0012], + [20187,0], + [20189,0.0017], + [20191,0.0018], + [20193,0.0024], + [20195,0.0079], + [20197,0.0027], + [20199,0], + [20201,0.0006], + [20203,0.0023], + [20205,0.0035], + [20207,0.0033], + [20209,0.0194], + [21001,0.0005], + [21003,0.001], + [21005,0.0037], + [21007,0.002], + [21009,0.0024], + [21011,0.0014], + [21013,0.001], + [21015,0.0116], + [21017,0.0016], + [21019,0.0019], + [21021,0.0039], + [21023,0.0024], + [21025,0.0011], + [21027,0.0018], + [21029,0.0033], + [21031,0.0006], + [21033,0], + [21035,0.0092], + [21037,0.0048], + [21039,0.0012], + [21041,0.0013], + [21043,0.0006], + [21045,0.0019], + [21047,0.0069], + [21049,0.0025], + [21051,0], + [21053,0.0009], + [21055,0], + [21057,0.0016], + [21059,0.0064], + [21061,0.0007], + [21063,0], + [21065,0], + [21067,0.0178], + [21069,0.0003], + [21071,0.0015], + [21073,0.0091], + [21075,0.0009], + [21077,0.0007], + [21079,0.0007], + [21081,0.0006], + [21083,0.0024], + [21085,0.0012], + [21087,0.0017], + [21089,0.0019], + [21091,0.0032], + [21093,0.0102], + [21095,0.0021], + [21097,0], + [21099,0.0023], + [21101,0.0019], + [21103,0.0004], + [21105,0.0016], + [21107,0.0027], + [21109,0], + [21111,0.0133], + [21113,0.007], + [21115,0.0058], + [21117,0.0063], + [21119,0.0005], + [21121,0.0019], + [21123,0.0017], + [21125,0.0027], + [21127,0.0022], + [21129,0.0026], + [21131,0.002], + [21133,0.0012], + [21135,0.0006], + [21137,0.0001], + [21139,0.0009], + [21141,0.0007], + [21143,0.0025], + [21145,0.0037], + [21147,0.0012], + [21149,0.0028], + [21151,0.0044], + [21153,0], + [21155,0.0014], + [21157,0.0021], + [21159,0], + [21161,0.0034], + [21163,0.003], + [21165,0.0016], + [21167,0.0033], + [21169,0.0025], + [21171,0.0009], + [21173,0.0001], + [21175,0.0033], + [21177,0.0011], + [21179,0.0018], + [21181,0], + [21183,0.0015], + [21185,0.0072], + [21187,0], + [21189,0], + [21191,0.0021], + [21193,0.0043], + [21195,0.0026], + [21197,0.0049], + [21199,0.0036], + [21201,0], + [21203,0.0003], + [21205,0.0037], + [21207,0.0023], + [21209,0.0049], + [21211,0.0038], + [21213,0.0039], + [21215,0.0048], + [21217,0.0049], + [21219,0.0003], + [21221,0.002], + [21223,0.0005], + [21225,0.0015], + [21227,0.0167], + [21229,0.0038], + [21231,0.001], + [21233,0.0001], + [21235,0.0004], + [21237,0], + [21239,0.0016], + [22001,0.0005], + [22003,0.0036], + [22005,0.0045], + [22007,0.0014], + [22009,0.0007], + [22011,0.0019], + [22013,0.0002], + [22015,0.0077], + [22017,0.0061], + [22019,0.0068], + [22021,0.0008], + [22023,0.0014], + [22025,0.0008], + [22027,0.0002], + [22029,0.0011], + [22031,0.0008], + [22033,0.017], + [22035,0], + [22037,0.0008], + [22039,0.0018], + [22041,0.0002], + [22043,0.001], + [22045,0.0139], + [22047,0.0003], + [22049,0.0024], + [22051,0.0213], + [22053,0.0022], + [22055,0.0088], + [22057,0.004], + [22059,0], + [22061,0.0088], + [22063,0.0024], + [22065,0], + [22067,0.0021], + [22069,0.0034], + [22071,0.0149], + [22073,0.0051], + [22075,0.0167], + [22077,0.0008], + [22079,0.0079], + [22081,0.0002], + [22083,0.0027], + [22085,0.0022], + [22087,0.0122], + [22089,0.0054], + [22091,0.0011], + [22093,0.0012], + [22095,0.0045], + [22097,0.0015], + [22099,0.005], + [22101,0.0069], + [22103,0.0078], + [22105,0.0037], + [22107,0.0004], + [22109,0.0044], + [22111,0.0004], + [22113,0.011], + [22115,0.0093], + [22117,0.0011], + [22119,0.0013], + [22121,0.0016], + [22123,0], + [22125,0.0026], + [22127,0], + [23001,0.0042], + [23003,0.0021], + [23005,0.0106], + [23007,0.0023], + [23009,0.0048], + [23011,0.0044], + [23013,0.0031], + [23015,0.0047], + [23017,0.0029], + [23019,0.0053], + [23021,0.0032], + [23023,0.0031], + [23025,0.0016], + [23027,0.0022], + [23029,0.0023], + [23031,0.006], + [24001,0.0041], + [24003,0.0184], + [24005,0.0296], + [24009,0.0083], + [24011,0.0029], + [24013,0.0083], + [24015,0.0073], + [24017,0.0158], + [24019,0.005], + [24021,0.0227], + [24023,0.0019], + [24025,0.0131], + [24027,0.0869], + [24029,0.0055], + [24031,0.0739], + [24033,0.0214], + [24035,0.0027], + [24037,0.0139], + [24039,0.0052], + [24041,0.0071], + [24043,0.0088], + [24045,0.0164], + [24047,0.0069], + [24510,0.0128], + [25001,0.0074], + [25003,0.0082], + [25005,0.011], + [25007,0.0015], + [25009,0.0171], + [25011,0.008], + [25013,0.0111], + [25015,0.0264], + [25017,0.056], + [25019,0.0119], + [25021,0.0518], + [25023,0.0062], + [25025,0.0434], + [25027,0.0236], + [26001,0.0021], + [26003,0.0005], + [26005,0.0028], + [26007,0.0025], + [26009,0.0016], + [26011,0.0019], + [26013,0.0024], + [26015,0.0026], + [26017,0.0028], + [26019,0.0022], + [26021,0.0098], + [26023,0.0026], + [26025,0.0106], + [26027,0.004], + [26029,0.0022], + [26031,0.002], + [26033,0.0049], + [26035,0.0017], + [26037,0.0078], + [26039,0.0031], + [26041,0.0018], + [26043,0.0029], + [26045,0.0105], + [26047,0.0031], + [26049,0.0052], + [26051,0.0023], + [26053,0.0014], + [26055,0.0032], + [26057,0.0017], + [26059,0.0019], + [26061,0.0146], + [26063,0.0031], + [26065,0.0302], + [26067,0.0019], + [26069,0.0028], + [26071,0.0023], + [26073,0.0083], + [26075,0.0037], + [26077,0.012], + [26079,0.0021], + [26081,0.0143], + [26083,0.0005], + [26085,0.0009], + [26087,0.0025], + [26089,0.0036], + [26091,0.0014], + [26093,0.0047], + [26095,0.0011], + [26097,0.0029], + [26099,0.0185], + [26101,0.0024], + [26103,0.0043], + [26105,0.0024], + [26107,0.0036], + [26109,0.0021], + [26111,0.0112], + [26113,0.0012], + [26115,0.0032], + [26117,0.0023], + [26119,0.0001], + [26121,0.0026], + [26123,0.0017], + [26125,0.0341], + [26127,0.0012], + [26129,0.003], + [26131,0.0007], + [26133,0.0016], + [26135,0.0004], + [26137,0.0025], + [26139,0.0136], + [26141,0.0021], + [26143,0.0009], + [26145,0.0061], + [26147,0.0034], + [26149,0.0027], + [26151,0.002], + [26153,0.0018], + [26155,0.0023], + [26157,0.0017], + [26159,0.0032], + [26161,0.0436], + [26163,0.0156], + [26165,0.0035], + [27001,0.002], + [27003,0.0213], + [27005,0.0028], + [27007,0.0041], + [27009,0.0054], + [27011,0], + [27013,0.0107], + [27015,0.0035], + [27017,0.0025], + [27019,0.0129], + [27021,0.0031], + [27023,0.0036], + [27025,0.0048], + [27027,0.0056], + [27029,0.0022], + [27031,0.004], + [27033,0.0142], + [27035,0.0022], + [27037,0.0236], + [27039,0.0038], + [27041,0.0005], + [27043,0.0013], + [27045,0.0024], + [27047,0.0094], + [27049,0.0027], + [27051,0.0004], + [27053,0.035], + [27055,0.0025], + [27057,0.0032], + [27059,0.0051], + [27061,0.0021], + [27063,0.0127], + [27065,0.0023], + [27067,0.0041], + [27069,0.0018], + [27071,0.0027], + [27073,0.0022], + [27075,0.0002], + [27077,0.0038], + [27079,0.0022], + [27081,0.001], + [27083,0.0188], + [27085,0.003], + [27087,0.0023], + [27089,0.0013], + [27091,0.0046], + [27093,0.0016], + [27095,0.0038], + [27097,0.0025], + [27099,0.0122], + [27101,0.0056], + [27103,0.0082], + [27105,0.0314], + [27107,0.0029], + [27109,0.029], + [27111,0.0031], + [27113,0.0045], + [27115,0.0026], + [27117,0.0047], + [27119,0.0041], + [27121,0.0021], + [27123,0.0702], + [27125,0.0022], + [27127,0.0148], + [27129,0.0025], + [27131,0.011], + [27133,0.005], + [27135,0.0134], + [27137,0.0055], + [27139,0.03], + [27141,0.0057], + [27143,0.0033], + [27145,0.0108], + [27147,0.0061], + [27149,0.0093], + [27151,0.0014], + [27153,0.0021], + [27155,0.0016], + [27157,0.0019], + [27159,0.0019], + [27161,0.0029], + [27163,0.0268], + [27165,0.0048], + [27167,0], + [27169,0.0134], + [27171,0.0058], + [27173,0.003], + [28001,0.0031], + [28003,0.0014], + [28005,0.0014], + [28007,0.0022], + [28009,0], + [28011,0.0047], + [28013,0.001], + [28015,0.0034], + [28017,0.0005], + [28019,0.0007], + [28021,0.0021], + [28023,0], + [28025,0.0033], + [28027,0.0027], + [28029,0.0011], + [28031,0.0012], + [28033,0.0061], + [28035,0.0043], + [28037,0.0001], + [28039,0.0043], + [28041,0], + [28043,0], + [28045,0.0009], + [28047,0.0148], + [28049,0.0041], + [28051,0.0017], + [28053,0.0008], + [28055,0], + [28057,0.0008], + [28059,0.0111], + [28061,0], + [28063,0.0021], + [28065,0], + [28067,0.0027], + [28069,0], + [28071,0.0105], + [28073,0.007], + [28075,0.0034], + [28077,0.0002], + [28079,0.0009], + [28081,0.0041], + [28083,0.0036], + [28085,0.0037], + [28087,0.005], + [28089,0.0124], + [28091,0.0021], + [28093,0.0006], + [28095,0.0012], + [28097,0.0015], + [28099,0.0019], + [28101,0.0023], + [28103,0.0002], + [28105,0.0147], + [28107,0.0001], + [28109,0.0017], + [28111,0.0005], + [28113,0.0024], + [28115,0.0039], + [28117,0.0007], + [28119,0.0004], + [28121,0.0058], + [28123,0.0013], + [28125,0.0021], + [28127,0.0011], + [28129,0.0002], + [28131,0], + [28133,0.0007], + [28135,0.0076], + [28137,0.0013], + [28139,0.0023], + [28141,0.0005], + [28143,0.0044], + [28145,0.0046], + [28147,0.0023], + [28149,0.0024], + [28151,0.0032], + [28153,0.0023], + [28155,0.0008], + [28157,0.0003], + [28159,0.0002], + [28161,0.0008], + [28163,0.0019], + [29001,0.0126], + [29003,0.0011], + [29005,0.0031], + [29007,0.001], + [29009,0.0076], + [29011,0.003], + [29013,0.001], + [29015,0.0006], + [29017,0.002], + [29019,0.0212], + [29021,0.005], + [29023,0.0034], + [29025,0.0019], + [29027,0.0039], + [29029,0.0031], + [29031,0.0071], + [29033,0.0013], + [29035,0], + [29037,0.0041], + [29039,0.0012], + [29041,0.0005], + [29043,0.0023], + [29045,0.0005], + [29047,0.0113], + [29049,0.0014], + [29051,0.007], + [29053,0.0017], + [29055,0.0004], + [29057,0.0006], + [29059,0.001], + [29061,0.0009], + [29063,0.0012], + [29065,0.0019], + [29067,0.0004], + [29069,0.002], + [29071,0.0029], + [29073,0.0008], + [29075,0.0022], + [29077,0.0095], + [29079,0.0013], + [29081,0.0001], + [29083,0.0011], + [29085,0], + [29087,0.0022], + [29089,0.0009], + [29091,0.0023], + [29093,0.0002], + [29095,0.0092], + [29097,0.0056], + [29099,0.0038], + [29101,0.0075], + [29103,0.0006], + [29105,0.0018], + [29107,0.0024], + [29109,0.0027], + [29111,0.001], + [29113,0.002], + [29115,0.0014], + [29117,0.0025], + [29119,0.0069], + [29121,0.002], + [29123,0.002], + [29125,0.0009], + [29127,0.0036], + [29129,0.0031], + [29131,0.0024], + [29133,0.0003], + [29135,0.0002], + [29137,0.001], + [29139,0.0007], + [29141,0.0006], + [29143,0.0002], + [29145,0.0066], + [29147,0.0085], + [29149,0.0042], + [29151,0.0001], + [29153,0.0014], + [29155,0], + [29157,0.0035], + [29159,0.0028], + [29161,0.0183], + [29163,0.0028], + [29165,0.014], + [29167,0.0014], + [29169,0.013], + [29171,0.0014], + [29173,0.0023], + [29175,0.003], + [29177,0.0008], + [29179,0.0006], + [29181,0.0002], + [29183,0.0119], + [29185,0.001], + [29186,0.0004], + [29187,0.0027], + [29189,0.0198], + [29195,0.0042], + [29197,0], + [29199,0], + [29201,0.0019], + [29203,0], + [29205,0.0003], + [29207,0.0003], + [29209,0.0005], + [29211,0.0021], + [29213,0.0043], + [29215,0.001], + [29217,0.0032], + [29219,0.0026], + [29221,0.0001], + [29223,0.0006], + [29225,0.0016], + [29227,0.0017], + [29229,0.0025], + [29510,0.0156], + [30001,0.0028], + [30003,0.0005], + [30005,0], + [30007,0], + [30009,0.0014], + [30011,0], + [30013,0.0045], + [30015,0.0022], + [30017,0.0018], + [30019,0], + [30021,0.0021], + [30023,0.0026], + [30025,0.0048], + [30027,0.0041], + [30029,0.0023], + [30031,0.0065], + [30033,0], + [30035,0.0015], + [30037,0], + [30039,0.0003], + [30041,0.0022], + [30043,0.001], + [30045,0], + [30047,0.0017], + [30049,0.0033], + [30051,0], + [30053,0.0018], + [30055,0.0023], + [30057,0.0005], + [30059,0], + [30061,0.0036], + [30063,0.0072], + [30065,0.0073], + [30067,0.0006], + [30069,0.0077], + [30071,0.0018], + [30073,0.0016], + [30075,0], + [30077,0.0054], + [30079,0], + [30081,0.003], + [30083,0.0024], + [30085,0.0021], + [30087,0.0046], + [30089,0.0026], + [30091,0.0043], + [30093,0.0042], + [30095,0.0022], + [30097,0.0051], + [30099,0.001], + [30101,0.0041], + [30103,0.0076], + [30105,0.0019], + [30107,0], + [30109,0], + [30111,0.0031], + [31001,0.007], + [31003,0.0018], + [31005,0], + [31007,0], + [31009,0.003], + [31011,0.0007], + [31013,0.0013], + [31015,0.0044], + [31017,0.002], + [31019,0.0064], + [31021,0.0021], + [31023,0.0024], + [31025,0.0017], + [31027,0.0004], + [31029,0], + [31031,0.0009], + [31033,0.004], + [31035,0.0017], + [31037,0.0028], + [31039,0.0007], + [31041,0.004], + [31043,0.0152], + [31045,0.0047], + [31047,0.0001], + [31049,0.0016], + [31051,0.0003], + [31053,0.0031], + [31055,0.0172], + [31057,0], + [31059,0.0008], + [31061,0.0012], + [31063,0.0004], + [31065,0.0005], + [31067,0.0031], + [31069,0.0044], + [31071,0.0015], + [31073,0.0032], + [31075,0], + [31077,0.0021], + [31079,0.0063], + [31081,0.0003], + [31083,0.0016], + [31085,0], + [31087,0], + [31089,0.0023], + [31091,0], + [31093,0.0002], + [31095,0.0007], + [31097,0.0043], + [31099,0.0012], + [31101,0.0055], + [31103,0.0007], + [31105,0.0039], + [31107,0.0014], + [31109,0.0212], + [31111,0.0031], + [31113,0], + [31115,0], + [31117,0], + [31119,0.0055], + [31121,0.0005], + [31123,0.0003], + [31125,0.0003], + [31127,0.0036], + [31129,0.0059], + [31131,0.0026], + [31133,0], + [31135,0], + [31137,0.0008], + [31139,0.0018], + [31141,0.0031], + [31143,0.0003], + [31145,0.0014], + [31147,0.0009], + [31149,0], + [31151,0.0143], + [31153,0.0125], + [31155,0.0016], + [31157,0.0031], + [31159,0.0031], + [31161,0.0025], + [31163,0.0028], + [31165,0.0012], + [31167,0.0013], + [31169,0], + [31171,0], + [31173,0.0035], + [31175,0], + [31177,0.0015], + [31179,0.0024], + [31181,0.0032], + [31183,0.0006], + [31185,0.0013], + [32001,0.0122], + [32003,0.0482], + [32005,0.0074], + [32007,0.005], + [32009,0], + [32011,0], + [32013,0.0013], + [32015,0.0003], + [32017,0.0051], + [32019,0.0055], + [32021,0.023], + [32023,0.0085], + [32027,0.0068], + [32029,0.0094], + [32031,0.0268], + [32033,0.0038], + [32510,0.0122], + [33001,0.0048], + [33003,0.0029], + [33005,0.0064], + [33007,0.0028], + [33009,0.0169], + [33011,0.019], + [33013,0.0089], + [33015,0.0096], + [33017,0.0164], + [33019,0.0031], + [34001,0.042], + [34003,0.0814], + [34005,0.0243], + [34007,0.0289], + [34009,0.0048], + [34011,0.0067], + [34013,0.0258], + [34015,0.0153], + [34017,0.0758], + [34019,0.0192], + [34021,0.0536], + [34023,0.1202], + [34025,0.0273], + [34027,0.0506], + [34029,0.0099], + [34031,0.0265], + [34033,0.0048], + [34035,0.0857], + [34037,0.01], + [34039,0.025], + [34041,0.0144], + [35001,0.0124], + [35003,0.0017], + [35005,0.0037], + [35006,0.0024], + [35007,0.0017], + [35009,0.0074], + [35011,0.0012], + [35013,0.0049], + [35015,0.0023], + [35017,0.0014], + [35019,0], + [35021,0], + [35023,0], + [35025,0.0002], + [35027,0.0026], + [35028,0.0298], + [35029,0.0027], + [35031,0.0049], + [35033,0], + [35035,0.0067], + [35037,0.0033], + [35039,0.002], + [35041,0.0024], + [35043,0.0073], + [35045,0.003], + [35047,0.0059], + [35049,0.0063], + [35051,0.0026], + [35053,0.0109], + [35055,0.0015], + [35057,0.001], + [35059,0.0001], + [35061,0.0039], + [36001,0.0321], + [36003,0.0058], + [36005,0.0183], + [36007,0.0212], + [36009,0.0044], + [36011,0.0024], + [36013,0.003], + [36015,0.008], + [36017,0.0021], + [36019,0.0076], + [36021,0.0087], + [36023,0.0041], + [36025,0.0035], + [36027,0.0187], + [36029,0.0173], + [36031,0.0023], + [36033,0.0022], + [36035,0.0036], + [36037,0.0035], + [36039,0.0053], + [36041,0.0001], + [36043,0.0026], + [36045,0.0077], + [36047,0.0596], + [36049,0.0022], + [36051,0.0069], + [36053,0.0042], + [36055,0.0184], + [36057,0.0038], + [36059,0.0453], + [36061,0.06], + [36063,0.005], + [36065,0.0201], + [36067,0.0194], + [36069,0.0065], + [36071,0.013], + [36073,0.0036], + [36075,0.0035], + [36077,0.0068], + [36079,0.0112], + [36081,0.1266], + [36083,0.0126], + [36085,0.0423], + [36087,0.0303], + [36089,0.0055], + [36091,0.0141], + [36093,0.0235], + [36095,0.0043], + [36097,0.0025], + [36099,0.0036], + [36101,0.0075], + [36103,0.0194], + [36105,0.0082], + [36107,0.004], + [36109,0.0517], + [36111,0.0107], + [36113,0.005], + [36115,0.0027], + [36117,0.0034], + [36119,0.0295], + [36121,0.0018], + [36123,0.0033], + [37001,0.0075], + [37003,0.0058], + [37005,0.001], + [37007,0.0059], + [37009,0.0021], + [37011,0.0031], + [37013,0.0008], + [37015,0.0028], + [37017,0], + [37019,0.0032], + [37021,0.0062], + [37023,0.0182], + [37025,0.0153], + [37027,0.0031], + [37029,0.0096], + [37031,0.0055], + [37033,0.0028], + [37035,0.0205], + [37037,0.0072], + [37039,0.0036], + [37041,0.0009], + [37043,0], + [37045,0.0048], + [37047,0.0022], + [37049,0.0142], + [37051,0.0125], + [37053,0.0021], + [37055,0.003], + [37057,0.0074], + [37059,0.0037], + [37061,0.0018], + [37063,0.0238], + [37065,0.0003], + [37067,0.0109], + [37069,0.0023], + [37071,0.0074], + [37073,0.0022], + [37075,0], + [37077,0.002], + [37079,0.0003], + [37081,0.0239], + [37083,0.0043], + [37085,0.0054], + [37087,0.0028], + [37089,0.0058], + [37091,0.0035], + [37093,0.0069], + [37095,0], + [37097,0.0116], + [37099,0.005], + [37101,0.0033], + [37103,0.0009], + [37105,0.0052], + [37107,0.0028], + [37109,0.0027], + [37111,0.0036], + [37113,0.0038], + [37115,0.0029], + [37117,0.006], + [37119,0.0275], + [37121,0.0011], + [37123,0.0076], + [37125,0.006], + [37127,0.0048], + [37129,0.0065], + [37131,0.0016], + [37133,0.0106], + [37135,0.0384], + [37137,0.0011], + [37139,0.0084], + [37141,0.0024], + [37143,0.0017], + [37145,0.0008], + [37147,0.0087], + [37149,0.0021], + [37151,0.0056], + [37153,0.0051], + [37155,0.0033], + [37157,0.0028], + [37159,0.0045], + [37161,0.0023], + [37163,0.0027], + [37165,0.0036], + [37167,0.0096], + [37169,0.0019], + [37171,0.0031], + [37173,0.002], + [37175,0.0035], + [37177,0.002], + [37179,0.0121], + [37181,0.0027], + [37183,0.0323], + [37185,0.0025], + [37187,0.0008], + [37189,0.0042], + [37191,0.0059], + [37193,0.0026], + [37195,0.0039], + [37197,0.0005], + [37199,0.0012], + [38001,0.0131], + [38003,0.0026], + [38005,0.0007], + [38007,0], + [38009,0.0017], + [38011,0], + [38013,0.0002], + [38015,0.0037], + [38017,0.0147], + [38019,0], + [38021,0.0022], + [38023,0.0076], + [38025,0.0072], + [38027,0], + [38029,0.0043], + [38031,0.0012], + [38033,0], + [38035,0.0128], + [38037,0.0004], + [38039,0], + [38041,0], + [38043,0.0008], + [38045,0], + [38047,0.0013], + [38049,0.0006], + [38051,0.005], + [38053,0.0029], + [38055,0], + [38057,0.0019], + [38059,0.0007], + [38061,0.0022], + [38063,0], + [38065,0.0019], + [38067,0.0023], + [38069,0], + [38071,0.0029], + [38073,0.0032], + [38075,0.0026], + [38077,0.002], + [38079,0.0017], + [38081,0.0021], + [38083,0], + [38085,0.0002], + [38087,0], + [38089,0.0061], + [38091,0], + [38093,0.0028], + [38095,0.0007], + [38097,0.0012], + [38099,0.005], + [38101,0.0075], + [38103,0], + [38105,0.0033], + [39001,0.001], + [39003,0.0036], + [39005,0.003], + [39007,0.0024], + [39009,0.0143], + [39011,0.003], + [39013,0.002], + [39015,0.0013], + [39017,0.0145], + [39019,0.0019], + [39021,0.0024], + [39023,0.0032], + [39025,0.0058], + [39027,0.002], + [39029,0.0011], + [39031,0.0017], + [39033,0.002], + [39035,0.0142], + [39037,0.0017], + [39039,0.002], + [39041,0.0276], + [39043,0.003], + [39045,0.0079], + [39047,0.0042], + [39049,0.024], + [39051,0.002], + [39053,0.0033], + [39055,0.0032], + [39057,0.015], + [39059,0.0016], + [39061,0.0123], + [39063,0.0091], + [39065,0.0039], + [39067,0.0027], + [39069,0.0021], + [39071,0.0021], + [39073,0.001], + [39075,0.0011], + [39077,0.0011], + [39079,0.0005], + [39081,0.0019], + [39083,0.0018], + [39085,0.0061], + [39087,0.0026], + [39089,0.005], + [39091,0.0037], + [39093,0.0051], + [39095,0.0089], + [39097,0.0056], + [39099,0.0042], + [39101,0.0026], + [39103,0.006], + [39105,0.0002], + [39107,0.0021], + [39109,0.0063], + [39111,0.0007], + [39113,0.0101], + [39115,0.0012], + [39117,0.0002], + [39119,0.002], + [39121,0.0006], + [39123,0.0009], + [39125,0.002], + [39127,0.0009], + [39129,0.0019], + [39131,0.0003], + [39133,0.0093], + [39135,0.0019], + [39137,0.0012], + [39139,0.0039], + [39141,0.0029], + [39143,0.0016], + [39145,0.002], + [39147,0.0028], + [39149,0.0048], + [39151,0.0041], + [39153,0.0149], + [39155,0.0025], + [39157,0.0021], + [39159,0.016], + [39161,0.0016], + [39163,0.0007], + [39165,0.026], + [39167,0.003], + [39169,0.0049], + [39171,0.003], + [39173,0.0083], + [39175,0.0045], + [40001,0.0031], + [40003,0], + [40005,0.0033], + [40007,0], + [40009,0.0047], + [40011,0.0007], + [40013,0.0024], + [40015,0.002], + [40017,0.0158], + [40019,0.0055], + [40021,0.0035], + [40023,0.0004], + [40025,0.0009], + [40027,0.0221], + [40029,0.0014], + [40031,0.0119], + [40033,0], + [40035,0.0039], + [40037,0.0028], + [40039,0.0059], + [40041,0.0056], + [40043,0.0027], + [40045,0.0044], + [40047,0.0039], + [40049,0.0028], + [40051,0.0024], + [40053,0.0007], + [40055,0], + [40057,0.0062], + [40059,0], + [40061,0.003], + [40063,0.0003], + [40065,0.0068], + [40067,0.0006], + [40069,0.0009], + [40071,0.0027], + [40073,0], + [40075,0.002], + [40077,0.0026], + [40079,0.0023], + [40081,0.0014], + [40083,0.0025], + [40085,0.004], + [40087,0.0019], + [40089,0.0029], + [40091,0.0008], + [40093,0.0028], + [40095,0.0008], + [40097,0.0021], + [40099,0.0029], + [40101,0.0035], + [40103,0.0002], + [40105,0.0013], + [40107,0.0009], + [40109,0.0165], + [40111,0.0018], + [40113,0.0021], + [40115,0.0036], + [40117,0.0019], + [40119,0.0221], + [40121,0.0021], + [40123,0.0039], + [40125,0.0036], + [40127,0.0021], + [40129,0.0001], + [40131,0.0055], + [40133,0.001], + [40135,0.0034], + [40137,0.0034], + [40139,0.0149], + [40141,0.0014], + [40143,0.0153], + [40145,0.0069], + [40147,0.0097], + [40149,0.0009], + [40151,0.0046], + [40153,0.0009], + [41001,0.0039], + [41003,0.0332], + [41005,0.0206], + [41007,0.0047], + [41009,0.0059], + [41011,0.0056], + [41013,0.0017], + [41015,0.0027], + [41017,0.0058], + [41019,0.0047], + [41021,0], + [41023,0.0019], + [41025,0.0022], + [41027,0.0094], + [41029,0.006], + [41031,0.0032], + [41033,0.0032], + [41035,0.0048], + [41037,0.0061], + [41039,0.0128], + [41041,0.0062], + [41043,0.0062], + [41045,0.008], + [41047,0.0099], + [41049,0.003], + [41051,0.0352], + [41053,0.0099], + [41055,0.0006], + [41057,0.0034], + [41059,0.0039], + [41061,0.0048], + [41063,0.0014], + [41065,0.0044], + [41067,0.0491], + [41069,0.0018], + [41071,0.0071], + [42001,0.0036], + [42003,0.0177], + [42005,0.0012], + [42007,0.0024], + [42009,0.0012], + [42011,0.007], + [42013,0.0035], + [42015,0.003], + [42017,0.023], + [42019,0.0058], + [42021,0.0025], + [42023,0.0022], + [42025,0.0023], + [42027,0.0301], + [42029,0.0244], + [42031,0.0027], + [42033,0.0029], + [42035,0.0035], + [42037,0.0058], + [42039,0.0021], + [42041,0.0198], + [42043,0.0196], + [42045,0.0273], + [42047,0.0022], + [42049,0.0081], + [42051,0.001], + [42053,0.0036], + [42055,0.005], + [42057,0.0012], + [42059,0.0018], + [42061,0.0026], + [42063,0.0054], + [42065,0.0013], + [42067,0.0017], + [42069,0.0127], + [42071,0.0107], + [42073,0.0023], + [42075,0.0066], + [42077,0.0166], + [42079,0.0059], + [42081,0.0031], + [42083,0.0022], + [42085,0.0033], + [42087,0.0028], + [42089,0.0113], + [42091,0.0367], + [42093,0.0155], + [42095,0.0138], + [42097,0.0017], + [42099,0.0018], + [42101,0.0355], + [42103,0.0073], + [42105,0.0016], + [42107,0.0025], + [42109,0.0037], + [42111,0.0019], + [42113,0.0023], + [42115,0.0019], + [42117,0.0027], + [42119,0.0087], + [42121,0.0019], + [42123,0.0026], + [42125,0.0048], + [42127,0.0029], + [42129,0.0043], + [42131,0.0018], + [42133,0.0073], + [44001,0.0104], + [44003,0.0125], + [44005,0.01], + [44007,0.0208], + [44009,0.0098], + [45001,0.0014], + [45003,0.0052], + [45005,0], + [45007,0.0045], + [45009,0.0021], + [45011,0.0026], + [45013,0.0061], + [45015,0.0115], + [45017,0], + [45019,0.0067], + [45021,0.0031], + [45023,0.0018], + [45025,0.0023], + [45027,0.0013], + [45029,0.0002], + [45031,0.0022], + [45033,0.0016], + [45035,0.0096], + [45037,0.0026], + [45039,0.0014], + [45041,0.0065], + [45043,0.0019], + [45045,0.0112], + [45047,0.0046], + [45049,0.0022], + [45051,0.0061], + [45053,0.0037], + [45055,0.0025], + [45057,0.0048], + [45059,0.0017], + [45061,0.0002], + [45063,0.0084], + [45065,0.0018], + [45067,0.0033], + [45069,0.0017], + [45071,0.001], + [45073,0.0036], + [45075,0.005], + [45077,0.009], + [45079,0.0137], + [45081,0], + [45083,0.0113], + [45085,0.0059], + [45087,0], + [45089,0.0024], + [45091,0.0095], + [46003,0], + [46005,0.0464], + [46007,0.0016], + [46009,0.007], + [46011,0.0146], + [46013,0.0128], + [46015,0.0016], + [46017,0], + [46019,0], + [46021,0], + [46023,0.0011], + [46025,0.0044], + [46027,0.0123], + [46029,0.0032], + [46031,0.0011], + [46033,0.0021], + [46035,0.0005], + [46037,0.0006], + [46039,0], + [46041,0.0004], + [46043,0.0002], + [46045,0.0005], + [46047,0.008], + [46049,0.0004], + [46051,0.0006], + [46053,0.0026], + [46055,0], + [46057,0.0016], + [46059,0.0011], + [46061,0], + [46063,0.0035], + [46065,0.0018], + [46067,0.001], + [46069,0], + [46071,0.0021], + [46073,0], + [46075,0], + [46077,0.0078], + [46079,0.0095], + [46081,0.0047], + [46083,0.0053], + [46085,0.0023], + [46087,0], + [46089,0.003], + [46091,0.0001], + [46093,0.0059], + [46095,0], + [46097,0.0016], + [46099,0.0096], + [46101,0.0105], + [46102,null], + [46103,0.0056], + [46105,0], + [46107,0.0082], + [46109,0.0006], + [46111,0.003], + [46115,0], + [46117,0], + [46119,0], + [46121,0.0065], + [46123,0], + [46125,0], + [46127,0.0052], + [46129,0.0101], + [46135,0.0033], + [46137,0.0051], + [47001,0.0069], + [47003,0.0019], + [47005,0.0006], + [47007,0.0015], + [47009,0.0034], + [47011,0.0057], + [47013,0.0019], + [47015,0.0004], + [47017,0.0016], + [47019,0.0019], + [47021,0.0029], + [47023,0.0024], + [47025,0.0031], + [47027,0.0023], + [47029,0], + [47031,0.0046], + [47033,0.0008], + [47035,0.0029], + [47037,0.0176], + [47039,0.0015], + [47041,0.0031], + [47043,0.0021], + [47045,0.0036], + [47047,0.0035], + [47049,0.0021], + [47051,0.0032], + [47053,0.0018], + [47055,0.0029], + [47057,0.0015], + [47059,0.0018], + [47061,0.0008], + [47063,0.0048], + [47065,0.0101], + [47067,0.0014], + [47069,0.0036], + [47071,0.0052], + [47073,0.0025], + [47075,0.0004], + [47077,0.0008], + [47079,0.0005], + [47081,0.0009], + [47083,0.0015], + [47085,0.0011], + [47087,0.0002], + [47089,0.0032], + [47091,0.002], + [47093,0.0107], + [47095,0.0009], + [47097,0.0021], + [47099,0.0022], + [47101,0.0134], + [47103,0.0024], + [47105,0.0032], + [47107,0.0029], + [47109,0.0007], + [47111,0.0013], + [47113,0.0053], + [47115,0.0021], + [47117,0.0022], + [47119,0.0046], + [47121,0.0011], + [47123,0.0018], + [47125,0.0109], + [47127,0.0099], + [47129,0.0001], + [47131,0.0017], + [47133,0.0014], + [47135,0.0015], + [47137,0], + [47139,0.0012], + [47141,0.0067], + [47143,0.002], + [47145,0.0037], + [47147,0.0026], + [47149,0.0155], + [47151,0], + [47153,0], + [47155,0.0038], + [47157,0.0126], + [47159,0.0003], + [47161,0.0045], + [47163,0.0028], + [47165,0.0064], + [47167,0.0039], + [47169,0.0015], + [47171,0.0025], + [47173,0.0007], + [47175,0], + [47177,0.0029], + [47179,0.0079], + [47181,0.0073], + [47183,0.0006], + [47185,0.0001], + [47187,0.02], + [47189,0.0077], + [48001,0.0027], + [48003,0.0011], + [48005,0.0053], + [48007,0.0101], + [48009,0.0019], + [48011,0], + [48013,0.0021], + [48015,0.001], + [48017,0.0044], + [48019,0.0011], + [48021,0.0044], + [48023,0], + [48025,0.0025], + [48027,0.0145], + [48029,0.0136], + [48031,0.0029], + [48033,0], + [48035,0.0016], + [48037,0.0048], + [48039,0.0312], + [48041,0.0302], + [48043,0.0079], + [48045,0], + [48047,0], + [48049,0.0033], + [48051,0.0017], + [48053,0.0036], + [48055,0.0051], + [48057,0.0253], + [48059,0.0012], + [48061,0.0034], + [48063,0.0016], + [48065,0.0027], + [48067,0.0021], + [48069,0.0059], + [48071,0.0064], + [48073,0.0031], + [48075,0.0113], + [48077,0.0014], + [48079,0], + [48081,0.0008], + [48083,0.0042], + [48085,0.0679], + [48087,0.0007], + [48089,0.0003], + [48091,0.0053], + [48093,0.003], + [48095,0.0049], + [48097,0.0043], + [48099,0.0094], + [48101,0], + [48103,0], + [48105,0], + [48107,0], + [48109,0.0013], + [48111,0.0044], + [48113,0.03], + [48115,0.0043], + [48117,0.0025], + [48119,0.0037], + [48121,0.0392], + [48123,0], + [48125,0.0004], + [48127,0.001], + [48129,0.0023], + [48131,0.0014], + [48133,0.0012], + [48135,0.0054], + [48137,0], + [48139,0.0034], + [48141,0.0057], + [48143,0.0038], + [48145,0.0009], + [48147,0.0034], + [48149,0.0036], + [48151,0.0025], + [48153,0.0013], + [48155,0], + [48157,0.0967], + [48159,0.0002], + [48161,0.0023], + [48163,0.0031], + [48165,0.0023], + [48167,0.017], + [48169,0.0028], + [48171,0.0006], + [48173,0], + [48175,0.0008], + [48177,0.0009], + [48179,0.0035], + [48181,0.0066], + [48183,0.0069], + [48185,0.0005], + [48187,0.0087], + [48189,0.0012], + [48191,0.0024], + [48193,0.001], + [48195,0], + [48197,0.0024], + [48199,0.0024], + [48201,0.0342], + [48203,0.0035], + [48205,0.007], + [48207,0.0037], + [48209,0.0068], + [48211,0.0016], + [48213,0.0033], + [48215,0.0049], + [48217,0.0015], + [48219,0.001], + [48221,0.0042], + [48223,0.0035], + [48225,0.0019], + [48227,0.0039], + [48229,0.0059], + [48231,0.0061], + [48233,0.003], + [48235,0], + [48237,0.0006], + [48239,0.0015], + [48241,0.0027], + [48243,0.0074], + [48245,0.0182], + [48247,0], + [48249,0.0029], + [48251,0.0039], + [48253,0.0017], + [48255,0.0005], + [48257,0.0054], + [48259,0.0036], + [48261,0.0009], + [48263,0], + [48265,0.005], + [48267,0], + [48269,0], + [48271,0], + [48273,0.01], + [48275,0.0008], + [48277,0.0044], + [48279,0.0029], + [48281,0.006], + [48283,0.0007], + [48285,0.0019], + [48287,0.0048], + [48289,0.0037], + [48291,0.0028], + [48293,0.0033], + [48295,0.0039], + [48297,0.0032], + [48299,0.0019], + [48301,0], + [48303,0.0107], + [48305,0.0013], + [48307,0], + [48309,0.0078], + [48311,0], + [48313,0.0057], + [48315,0], + [48317,0], + [48319,0.0125], + [48321,0.0099], + [48323,0.0022], + [48325,0.0032], + [48327,0], + [48329,0.0097], + [48331,0.0027], + [48333,0.0003], + [48335,0.0019], + [48337,0.0006], + [48339,0.014], + [48341,0.0394], + [48343,0.0005], + [48345,0], + [48347,0.009], + [48349,0.0031], + [48351,0.0004], + [48353,0.0014], + [48355,0.0098], + [48357,0.001], + [48359,0.0005], + [48361,0.0058], + [48363,0.0031], + [48365,0.0032], + [48367,0.0025], + [48369,0.0011], + [48371,0.0021], + [48373,0.0031], + [48375,0.0263], + [48377,0.0249], + [48379,0.0004], + [48381,0.0075], + [48383,0], + [48385,0.0001], + [48387,0], + [48389,0.0057], + [48391,0.0003], + [48393,0.0022], + [48395,0.0014], + [48397,0.0121], + [48399,0.0053], + [48401,0.0023], + [48403,0.0005], + [48405,0], + [48407,0], + [48409,0.0051], + [48411,0.0001], + [48413,0.0006], + [48415,0.0011], + [48417,0.0009], + [48419,0.0027], + [48421,0], + [48423,0.0079], + [48425,0], + [48427,0.0005], + [48429,0.0023], + [48431,0], + [48433,0], + [48435,0], + [48437,0.0009], + [48439,0.0256], + [48441,0.0098], + [48443,0], + [48445,0], + [48447,0.0016], + [48449,0.0042], + [48451,0.0061], + [48453,0.032], + [48455,0.0018], + [48457,0.0017], + [48459,0.0011], + [48461,0.0013], + [48463,0.0052], + [48465,0.0029], + [48467,0.0023], + [48469,0.0054], + [48471,0.0062], + [48473,0.0042], + [48475,0.0014], + [48477,0.009], + [48479,0.0026], + [48481,0.0005], + [48483,0.0006], + [48485,0.0107], + [48487,0.0046], + [48489,0.0005], + [48491,0.0303], + [48493,0.0019], + [48495,0], + [48497,0.0025], + [48499,0.0004], + [48501,0.0002], + [48503,0.0021], + [48505,0.0035], + [48507,0.0002], + [49001,0.0012], + [49003,0.004], + [49005,0.0106], + [49007,0.002], + [49009,0], + [49011,0.0092], + [49013,0.0024], + [49015,0.003], + [49017,0.0008], + [49019,0.0019], + [49021,0.0032], + [49023,0.0006], + [49025,0.0021], + [49027,0.0041], + [49029,0.003], + [49031,0], + [49033,0], + [49035,0.0195], + [49037,0.0025], + [49039,0.0021], + [49041,0.0011], + [49043,0.0082], + [49045,0.0039], + [49047,0.0025], + [49049,0.0075], + [49051,0.0065], + [49053,0.0035], + [49055,0.0046], + [49057,0.0059], + [50001,0.0097], + [50003,0.0019], + [50005,0.0035], + [50007,0.0191], + [50009,0.0026], + [50011,0.0015], + [50013,0.0024], + [50015,0.0032], + [50017,0.0016], + [50019,0.0017], + [50021,0.0053], + [50023,0.0033], + [50025,0.0051], + [50027,0.004], + [51001,0.0035], + [51003,0.0248], + [51005,0.0003], + [51007,0.0006], + [51009,0.0028], + [51011,0.0009], + [51013,0.0514], + [51015,0.0029], + [51017,0.0013], + [51019,0.0066], + [51021,0.0002], + [51023,0.0043], + [51025,0.0027], + [51027,0.0024], + [51029,0.0016], + [51031,0.0045], + [51033,0.0048], + [51035,0.0004], + [51036,0.0048], + [51037,0.0005], + [51041,0.0173], + [51043,0.0052], + [51045,0], + [51047,0.007], + [51049,0], + [51051,0], + [51053,0.0021], + [51057,0.0009], + [51059,0.0943], + [51061,0.0069], + [51063,0.0001], + [51065,0.0034], + [51067,0.002], + [51069,0.0071], + [51071,0.001], + [51073,0.0031], + [51075,0.0059], + [51077,0.0012], + [51079,0.0063], + [51081,0.0003], + [51083,0.0035], + [51085,0.0076], + [51087,0.0399], + [51089,0.0033], + [51091,0], + [51093,0.0042], + [51095,0.0125], + [51097,0], + [51099,0.0053], + [51101,0.0055], + [51103,0.0041], + [51105,0.0008], + [51107,0.086], + [51109,0.0029], + [51111,0.0162], + [51113,0.0061], + [51115,0.0015], + [51117,0.0003], + [51119,0], + [51121,0.0323], + [51125,0.0021], + [51127,0.0049], + [51131,0.0043], + [51133,0.0004], + [51135,0.0014], + [51137,0.0046], + [51139,0.0028], + [51141,0.0014], + [51143,0.0019], + [51145,0.0013], + [51147,0.0054], + [51149,0.0109], + [51153,0.0406], + [51155,0.0035], + [51157,0.006], + [51159,0.0102], + [51161,0.0143], + [51163,0.0032], + [51165,0.0038], + [51167,0.0005], + [51169,0.0014], + [51171,0.004], + [51173,0.0025], + [51175,0.0006], + [51177,0.0131], + [51179,0.0157], + [51181,0.0021], + [51183,0.0016], + [51185,0.0025], + [51187,0.006], + [51191,0.0029], + [51193,0.0025], + [51195,0.0023], + [51197,0.0037], + [51199,0.0267], + [51510,0.031], + [51520,0.0002], + [51530,0.0366], + [51540,0.0362], + [51550,0.0163], + [51570,0.0192], + [51580,0.0075], + [51590,0.0048], + [51595,0.001], + [51600,0.0802], + [51610,0.0463], + [51620,0.0014], + [51630,0.0119], + [51640,0.0004], + [51650,0.0121], + [51660,0.02], + [51670,0.0065], + [51678,0.0218], + [51680,0.0137], + [51683,0.0263], + [51685,0.0524], + [51690,0.0012], + [51700,0.016], + [51710,0.018], + [51720,0.0184], + [51730,0.0056], + [51735,0.0064], + [51740,0.0066], + [51750,0.008], + [51760,0.0104], + [51770,0.0149], + [51775,0.0096], + [51790,0.0042], + [51800,0.0082], + [51810,0.0329], + [51820,0.0048], + [51830,0.029], + [51840,0.0106], + [53001,0.0059], + [53003,0.0046], + [53005,0.0127], + [53007,0.005], + [53009,0.0075], + [53011,0.0226], + [53013,0.0124], + [53015,0.0065], + [53017,0.0041], + [53019,0.0048], + [53021,0.011], + [53023,0.009], + [53025,0.0055], + [53027,0.008], + [53029,0.0226], + [53031,0.0091], + [53033,0.0828], + [53035,0.0242], + [53037,0.0095], + [53039,0.0036], + [53041,0.0065], + [53043,0.0031], + [53045,0.0076], + [53047,0.0045], + [53049,0.0087], + [53051,0.0035], + [53053,0.0305], + [53055,0.0065], + [53057,0.0086], + [53059,0.0057], + [53061,0.05], + [53063,0.0113], + [53065,0.0035], + [53067,0.0285], + [53069,0.0085], + [53071,0.0078], + [53073,0.0203], + [53075,0.0398], + [53077,0.005], + [54001,0.0034], + [54003,0.0055], + [54005,0.0009], + [54007,0], + [54009,0.0022], + [54011,0.0063], + [54013,0], + [54015,0], + [54017,0.0017], + [54019,0.0006], + [54021,0.002], + [54023,0], + [54025,0.0011], + [54027,0.0009], + [54029,0.0024], + [54031,0.0094], + [54033,0.0028], + [54035,0.0015], + [54037,0.0075], + [54039,0.0053], + [54041,0.0021], + [54043,0.0012], + [54045,0.0019], + [54047,0], + [54049,0.0033], + [54051,0.001], + [54053,0.0007], + [54055,0.0033], + [54057,0.0018], + [54059,0.0004], + [54061,0.0166], + [54063,0], + [54065,0.0019], + [54067,0.0015], + [54069,0.0037], + [54071,0.0003], + [54073,0], + [54075,0], + [54077,0.0005], + [54079,0.0029], + [54081,0.0052], + [54083,0.0026], + [54085,0], + [54087,0.0005], + [54089,0], + [54091,0.0059], + [54093,0.0026], + [54095,0.0028], + [54097,0.0008], + [54099,0.0011], + [54101,0], + [54103,0.001], + [54105,0], + [54107,0.0027], + [54109,0.0015], + [55001,0.0029], + [55003,0.0021], + [55005,0.0036], + [55007,0.0027], + [55009,0.0154], + [55011,0.0002], + [55013,0.0015], + [55015,0.0115], + [55017,0.0065], + [55019,0.0018], + [55021,0.0032], + [55023,0.0025], + [55025,0.0283], + [55027,0.0027], + [55029,0.0027], + [55031,0.0052], + [55033,0.0133], + [55035,0.0176], + [55037,0], + [55039,0.007], + [55041,0.002], + [55043,0.004], + [55045,0.0034], + [55047,0.0016], + [55049,0.0031], + [55051,0.0008], + [55053,0.0018], + [55055,0.0034], + [55057,0.0025], + [55059,0.0067], + [55061,0.0019], + [55063,0.0221], + [55065,0.0015], + [55067,0.0014], + [55069,0.0019], + [55071,0.0132], + [55073,0.0284], + [55075,0.0028], + [55077,0.0019], + [55078,0.0022], + [55079,0.0204], + [55081,0.004], + [55083,0.0022], + [55085,0.0025], + [55087,0.0168], + [55089,0.0102], + [55091,0.0017], + [55093,0.0062], + [55095,0.002], + [55097,0.0133], + [55099,0.003], + [55101,0.0061], + [55103,0.0026], + [55105,0.0059], + [55107,0.0005], + [55109,0.0052], + [55111,0.0034], + [55113,0.0027], + [55115,0.0018], + [55117,0.0268], + [55119,0.0008], + [55121,0.003], + [55123,0.0024], + [55125,0.0029], + [55127,0.0049], + [55129,0.0023], + [55131,0.0059], + [55133,0.0162], + [55135,0.0019], + [55137,0.0018], + [55139,0.0131], + [55141,0.0101], + [56001,0.015], + [56003,0.002], + [56005,0.0024], + [56007,0.0041], + [56009,0], + [56011,0.0016], + [56013,0.0007], + [56015,0.0022], + [56017,0], + [56019,0], + [56021,0.006], + [56023,0.0013], + [56025,0.004], + [56027,0.0034], + [56029,0.0026], + [56031,0.0025], + [56033,0.0038], + [56035,0.0005], + [56037,0.0029], + [56039,0.011], + [56041,0.0006], + [56043,0.0007], + [56045,0.0214] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-asian-2019.json b/data/regional/united-states/demographics/race/us-race-asian-2019.json new file mode 100644 index 0000000..eb5c040 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-asian-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Asian Population", + "description" : "Percent of the population that is asian.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.asian.2019"], + [1001,0.01], + [1003,0.009], + [1005,0.005], + [1007,0.001], + [1009,0.004], + [1011,0.005], + [1013,0.003], + [1015,0.009], + [1017,0.011], + [1019,0.002], + [1021,0.004], + [1023,0.001], + [1025,0.004], + [1027,0.002], + [1029,0], + [1031,0.014], + [1033,0.005], + [1035,0.005], + [1037,0], + [1039,0.005], + [1041,0.013], + [1043,0.004], + [1045,0.014], + [1047,0.006], + [1049,0.001], + [1051,0.005], + [1053,0.003], + [1055,0.007], + [1057,0.005], + [1059,0.004], + [1061,0.004], + [1063,0], + [1065,0.002], + [1067,0.004], + [1069,0.009], + [1071,0.004], + [1073,0.016], + [1075,0.001], + [1077,0.006], + [1079,0.002], + [1081,0.043], + [1083,0.014], + [1085,0], + [1087,0.002], + [1089,0.026], + [1091,0], + [1093,0.002], + [1095,0.006], + [1097,0.019], + [1099,0.003], + [1101,0.028], + [1103,0.006], + [1105,0.001], + [1107,0.001], + [1109,0.022], + [1111,0.002], + [1113,0.01], + [1115,0.008], + [1117,0.021], + [1119,0.021], + [1121,0.006], + [1123,0.004], + [1125,0.016], + [1127,0.005], + [1129,0.003], + [1131,0], + [1133,0.002], + [2013,0.197], + [2016,0.403], + [2020,0.096], + [2050,0.011], + [2060,0.002], + [2068,0.026], + [2070,0.014], + [2090,0.032], + [2100,0.013], + [2105,0.016], + [2110,0.069], + [2122,0.016], + [2130,0.082], + [2150,0.227], + [2158,0.001], + [2164,0.017], + [2170,0.014], + [2180,0.017], + [2185,0.055], + [2188,0.01], + [2195,0.047], + [2198,0.014], + [2220,0.067], + [2230,0.008], + [2240,0.027], + [2261,0.041], + [2275,0.007], + [2282,0.049], + [2290,0.007], + [4001,0.003], + [4003,0.019], + [4005,0.02], + [4007,0.008], + [4009,0.006], + [4011,0.005], + [4012,0.007], + [4013,0.042], + [4015,0.011], + [4017,0.006], + [4019,0.029], + [4021,0.016], + [4023,0.009], + [4025,0.01], + [4027,0.013], + [5001,0], + [5003,0.002], + [5005,0.004], + [5007,0.039], + [5009,0.004], + [5011,0.001], + [5013,0], + [5015,0.014], + [5017,0.006], + [5019,0.007], + [5021,0], + [5023,0.007], + [5025,0], + [5027,0.011], + [5029,0.003], + [5031,0.014], + [5033,0.019], + [5035,0.007], + [5037,0], + [5039,0.001], + [5041,0.004], + [5043,0.003], + [5045,0.013], + [5047,0.008], + [5049,0.001], + [5051,0.006], + [5053,0], + [5055,0.004], + [5057,0.001], + [5059,0.004], + [5061,0.003], + [5063,0.007], + [5065,0], + [5067,0], + [5069,0.01], + [5071,0.021], + [5073,0.004], + [5075,0.002], + [5077,0.002], + [5079,0], + [5081,0.003], + [5083,0.022], + [5085,0.009], + [5087,0.013], + [5089,0.009], + [5091,0.004], + [5093,0.006], + [5095,0.004], + [5097,0.004], + [5099,0], + [5101,0.007], + [5103,0.001], + [5105,0], + [5107,0], + [5109,0.006], + [5111,0.001], + [5113,0.003], + [5115,0.01], + [5117,0.002], + [5119,0.022], + [5121,0.001], + [5123,0.006], + [5125,0.013], + [5127,0.007], + [5129,0.007], + [5131,0.045], + [5133,0.004], + [5135,0.001], + [5137,0.005], + [5139,0.007], + [5141,0.002], + [5143,0.025], + [5145,0.007], + [5147,0.009], + [5149,0.011], + [6001,0.301], + [6003,0.01], + [6005,0.013], + [6007,0.046], + [6009,0.015], + [6011,0.014], + [6013,0.167], + [6015,0.032], + [6017,0.045], + [6019,0.103], + [6021,0.029], + [6023,0.031], + [6025,0.015], + [6027,0.019], + [6029,0.047], + [6031,0.039], + [6033,0.011], + [6035,0.014], + [6037,0.146], + [6039,0.021], + [6041,0.059], + [6043,0.012], + [6045,0.021], + [6047,0.075], + [6049,0.011], + [6051,0.026], + [6053,0.056], + [6055,0.081], + [6057,0.011], + [6059,0.205], + [6061,0.075], + [6063,0.012], + [6065,0.065], + [6067,0.157], + [6069,0.03], + [6071,0.072], + [6073,0.119], + [6075,0.344], + [6077,0.156], + [6079,0.036], + [6081,0.287], + [6083,0.056], + [6085,0.365], + [6087,0.048], + [6089,0.032], + [6091,0], + [6093,0.016], + [6095,0.154], + [6097,0.041], + [6099,0.055], + [6101,0.157], + [6103,0.015], + [6105,0.018], + [6107,0.036], + [6109,0.014], + [6111,0.073], + [6113,0.14], + [6115,0.068], + [8001,0.04], + [8003,0.013], + [8005,0.06], + [8007,0.01], + [8009,0], + [8011,0.002], + [8013,0.047], + [8014,0.065], + [8015,0.015], + [8017,0.022], + [8019,0.01], + [8021,0.002], + [8023,0.013], + [8025,0.006], + [8027,0], + [8029,0.011], + [8031,0.037], + [8033,0], + [8035,0.048], + [8037,0.007], + [8039,0.01], + [8041,0.028], + [8043,0.007], + [8045,0.009], + [8047,0], + [8049,0.014], + [8051,0.003], + [8053,0.005], + [8055,0], + [8057,0], + [8059,0.028], + [8061,0], + [8063,0.002], + [8065,0.008], + [8067,0.007], + [8069,0.022], + [8071,0.01], + [8073,0.004], + [8075,0.008], + [8077,0.009], + [8079,0.005], + [8081,0.001], + [8083,0.008], + [8085,0.009], + [8087,0.005], + [8089,0.009], + [8091,0.007], + [8093,0.007], + [8095,0.005], + [8097,0.022], + [8099,0.006], + [8101,0.009], + [8103,0.001], + [8105,0.001], + [8107,0.011], + [8109,0], + [8111,0], + [8113,0.019], + [8115,0.009], + [8117,0.006], + [8119,0.008], + [8121,0.006], + [8123,0.016], + [8125,0], + [9001,0.053], + [9003,0.053], + [9005,0.019], + [9007,0.031], + [9009,0.04], + [9011,0.041], + [9013,0.049], + [9015,0.014], + [10001,0.02], + [10003,0.055], + [10005,0.012], + [11001,0.04], + [12001,0.061], + [12003,0.006], + [12005,0.023], + [12007,0.006], + [12009,0.024], + [12011,0.036], + [12013,0.001], + [12015,0.013], + [12017,0.018], + [12019,0.028], + [12021,0.013], + [12023,0.011], + [12027,0.002], + [12029,0.002], + [12031,0.046], + [12033,0.03], + [12035,0.026], + [12037,0.003], + [12039,0.002], + [12041,0.002], + [12043,0.008], + [12045,0.005], + [12047,0.003], + [12049,0.009], + [12051,0.009], + [12053,0.012], + [12055,0.014], + [12057,0.041], + [12059,0.007], + [12061,0.013], + [12063,0.003], + [12065,0.003], + [12067,0], + [12069,0.02], + [12071,0.016], + [12073,0.035], + [12075,0.009], + [12077,0.002], + [12079,0.009], + [12081,0.021], + [12083,0.014], + [12085,0.014], + [12086,0.016], + [12087,0.014], + [12089,0.01], + [12091,0.03], + [12093,0.01], + [12095,0.052], + [12097,0.027], + [12099,0.027], + [12101,0.026], + [12103,0.034], + [12105,0.018], + [12107,0.006], + [12109,0.027], + [12111,0.02], + [12113,0.02], + [12115,0.017], + [12117,0.045], + [12119,0.009], + [12121,0.001], + [12123,0.008], + [12125,0.006], + [12127,0.018], + [12129,0.005], + [12131,0.01], + [12133,0.007], + [13001,0.004], + [13003,0], + [13005,0.002], + [13007,0.031], + [13009,0.018], + [13011,0.011], + [13013,0.037], + [13015,0.009], + [13017,0.007], + [13019,0.011], + [13021,0.02], + [13023,0.002], + [13025,0.011], + [13027,0.004], + [13029,0.014], + [13031,0.013], + [13033,0.003], + [13035,0.004], + [13037,0.006], + [13039,0.022], + [13043,0.017], + [13045,0.008], + [13047,0.013], + [13049,0.007], + [13051,0.026], + [13053,0.036], + [13055,0.002], + [13057,0.018], + [13059,0.039], + [13061,0.01], + [13063,0.051], + [13065,0], + [13067,0.054], + [13069,0.008], + [13071,0.008], + [13073,0.039], + [13075,0.007], + [13077,0.021], + [13079,0.002], + [13081,0.002], + [13083,0.018], + [13085,0.006], + [13087,0.002], + [13089,0.061], + [13091,0.003], + [13093,0], + [13095,0.01], + [13097,0.016], + [13099,0.006], + [13101,0], + [13103,0.009], + [13105,0.006], + [13107,0.004], + [13109,0.009], + [13111,0.004], + [13113,0.045], + [13115,0.014], + [13117,0.129], + [13119,0.009], + [13121,0.071], + [13123,0.005], + [13125,0], + [13127,0.013], + [13129,0.011], + [13131,0.006], + [13133,0.011], + [13135,0.116], + [13137,0.019], + [13139,0.018], + [13141,0.004], + [13143,0.004], + [13145,0.011], + [13147,0.01], + [13149,0.005], + [13151,0.033], + [13153,0.033], + [13155,0.004], + [13157,0.018], + [13159,0.003], + [13161,0.002], + [13163,0.003], + [13165,0.011], + [13167,0.002], + [13169,0.007], + [13171,0.005], + [13173,0.002], + [13175,0.011], + [13177,0.025], + [13179,0.021], + [13181,0], + [13183,0.011], + [13185,0.017], + [13187,0.008], + [13189,0.004], + [13191,0.013], + [13193,0.004], + [13195,0.004], + [13197,0.009], + [13199,0.002], + [13201,0], + [13205,0.002], + [13207,0.009], + [13209,0.002], + [13211,0.001], + [13213,0.003], + [13215,0.025], + [13217,0.011], + [13219,0.037], + [13221,0.002], + [13223,0.01], + [13225,0.01], + [13227,0.004], + [13229,0], + [13231,0.005], + [13233,0.004], + [13235,0.003], + [13237,0.006], + [13239,0.073], + [13241,0.011], + [13243,0], + [13245,0.019], + [13247,0.02], + [13249,0], + [13251,0.007], + [13253,0.008], + [13255,0.01], + [13257,0.007], + [13259,0.032], + [13261,0.014], + [13263,0.006], + [13265,0.007], + [13267,0.002], + [13269,0.018], + [13271,0.001], + [13273,0.031], + [13275,0.002], + [13277,0.014], + [13279,0.009], + [13281,0.005], + [13283,0], + [13285,0.023], + [13287,0.008], + [13289,0.002], + [13291,0.003], + [13293,0.005], + [13295,0.008], + [13297,0.014], + [13299,0.011], + [13301,0.006], + [13303,0.007], + [13305,0.006], + [13307,0], + [13309,0], + [13311,0.006], + [13313,0.015], + [13315,0], + [13317,0.004], + [13319,0], + [13321,0.008], + [15001,0.225], + [15003,0.427], + [15005,0.212], + [15007,0.33], + [15009,0.293], + [16001,0.025], + [16003,0], + [16005,0.02], + [16007,0.007], + [16009,0.003], + [16011,0.006], + [16013,0.011], + [16015,0.01], + [16017,0.007], + [16019,0.01], + [16021,0.012], + [16023,0], + [16025,0], + [16027,0.008], + [16029,0.001], + [16031,0.006], + [16033,0], + [16035,0.004], + [16037,0], + [16039,0.026], + [16041,0.001], + [16043,0.002], + [16045,0.006], + [16047,0.009], + [16049,0.004], + [16051,0.004], + [16053,0.01], + [16055,0.009], + [16057,0.023], + [16059,0], + [16061,0.014], + [16063,0.004], + [16065,0.016], + [16067,0.003], + [16069,0.008], + [16071,0], + [16073,0.001], + [16075,0.01], + [16077,0], + [16079,0.001], + [16081,0], + [16083,0.018], + [16085,0.003], + [16087,0.004], + [17001,0.008], + [17003,0], + [17005,0.004], + [17007,0.012], + [17009,0], + [17011,0.009], + [17013,0.009], + [17015,0.008], + [17017,0.004], + [17019,0.108], + [17021,0.006], + [17023,0.006], + [17025,0.003], + [17027,0.006], + [17029,0.012], + [17031,0.073], + [17033,0.003], + [17035,0.004], + [17037,0.023], + [17039,0], + [17041,0.007], + [17043,0.119], + [17045,0.002], + [17047,0.003], + [17049,0.005], + [17051,0.005], + [17053,0.007], + [17055,0.005], + [17057,0.001], + [17059,0.001], + [17061,0.002], + [17063,0.008], + [17065,0.001], + [17067,0.004], + [17069,0.001], + [17071,0.006], + [17073,0.005], + [17075,0.004], + [17077,0.034], + [17079,0.001], + [17081,0.012], + [17083,0.003], + [17085,0.006], + [17087,0.004], + [17089,0.041], + [17091,0.008], + [17093,0.032], + [17095,0.011], + [17097,0.077], + [17099,0.007], + [17101,0.005], + [17103,0.006], + [17105,0.009], + [17107,0.008], + [17109,0.021], + [17111,0.028], + [17113,0.051], + [17115,0.01], + [17117,0.005], + [17119,0.011], + [17121,0.006], + [17123,0.004], + [17125,0.002], + [17127,0.002], + [17129,0.003], + [17131,0.004], + [17133,0.013], + [17135,0.003], + [17137,0.007], + [17139,0.002], + [17141,0.005], + [17143,0.041], + [17145,0.007], + [17147,0.005], + [17149,0.004], + [17151,0.006], + [17153,0.001], + [17155,0.008], + [17157,0.006], + [17159,0.005], + [17161,0.025], + [17163,0.015], + [17165,0.007], + [17167,0.02], + [17169,0], + [17171,0.001], + [17173,0.003], + [17175,0.009], + [17177,0.008], + [17179,0.011], + [17181,0.003], + [17183,0.01], + [17185,0.01], + [17187,0.025], + [17189,0.003], + [17191,0.003], + [17193,0.008], + [17195,0.006], + [17197,0.055], + [17199,0.012], + [17201,0.026], + [17203,0.005], + [18001,0.003], + [18003,0.038], + [18005,0.074], + [18007,0.001], + [18009,0.007], + [18011,0.03], + [18013,0.008], + [18015,0.002], + [18017,0.014], + [18019,0.011], + [18021,0.003], + [18023,0.004], + [18025,0], + [18027,0.003], + [18029,0.006], + [18031,0.015], + [18033,0.004], + [18035,0.014], + [18037,0.007], + [18039,0.01], + [18041,0], + [18043,0.011], + [18045,0.004], + [18047,0.009], + [18049,0.004], + [18051,0.004], + [18053,0.01], + [18055,0.002], + [18057,0.06], + [18059,0.008], + [18061,0.004], + [18063,0.029], + [18065,0.004], + [18067,0.013], + [18069,0.007], + [18071,0.022], + [18073,0.003], + [18075,0.008], + [18077,0.009], + [18079,0.002], + [18081,0.034], + [18083,0.009], + [18085,0.013], + [18087,0.001], + [18089,0.014], + [18091,0.006], + [18093,0.005], + [18095,0.005], + [18097,0.033], + [18099,0.005], + [18101,0.002], + [18103,0.006], + [18105,0.067], + [18107,0.008], + [18109,0.008], + [18111,0], + [18113,0.007], + [18115,0.004], + [18117,0.005], + [18119,0.005], + [18121,0], + [18123,0.005], + [18125,0.009], + [18127,0.014], + [18129,0.003], + [18131,0.006], + [18133,0.025], + [18135,0.001], + [18137,0.01], + [18139,0.001], + [18141,0.024], + [18143,0.005], + [18145,0.006], + [18147,0.003], + [18149,0.003], + [18151,0.004], + [18153,0.005], + [18155,0.004], + [18157,0.081], + [18159,0.003], + [18161,0.02], + [18163,0.012], + [18165,0.002], + [18167,0.018], + [18169,0.004], + [18171,0.003], + [18173,0.027], + [18175,0.003], + [18177,0.011], + [18179,0.004], + [18181,0.002], + [18183,0.004], + [19001,0.007], + [19003,0.002], + [19005,0.006], + [19007,0.005], + [19009,0.003], + [19011,0.003], + [19013,0.024], + [19015,0.003], + [19017,0.012], + [19019,0.003], + [19021,0.101], + [19023,0.002], + [19025,0.004], + [19027,0.002], + [19029,0.003], + [19031,0.004], + [19033,0.011], + [19035,0.008], + [19037,0.001], + [19039,0.007], + [19041,0.006], + [19043,0.004], + [19045,0.007], + [19047,0.021], + [19049,0.045], + [19051,0.006], + [19053,0.007], + [19055,0.004], + [19057,0.008], + [19059,0.009], + [19061,0.011], + [19063,0.003], + [19065,0.003], + [19067,0.015], + [19069,0], + [19071,0], + [19073,0.007], + [19075,0.003], + [19077,0.002], + [19079,0.03], + [19081,0.005], + [19083,0.001], + [19085,0.005], + [19087,0.026], + [19089,0.004], + [19091,0.003], + [19093,0.002], + [19095,0.005], + [19097,0.004], + [19099,0.005], + [19101,0.044], + [19103,0.062], + [19105,0.01], + [19107,0.003], + [19109,0.006], + [19111,0.006], + [19113,0.023], + [19115,0.034], + [19117,0], + [19119,0.003], + [19121,0.014], + [19123,0.015], + [19125,0.011], + [19127,0.037], + [19129,0.005], + [19131,0.005], + [19133,0], + [19135,0.001], + [19137,0.002], + [19139,0.009], + [19141,0.01], + [19143,0.001], + [19145,0.01], + [19147,0.003], + [19149,0.007], + [19151,0.013], + [19153,0.046], + [19155,0.008], + [19157,0.021], + [19159,0.01], + [19161,0.005], + [19163,0.027], + [19165,0.002], + [19167,0.007], + [19169,0.08], + [19171,0.005], + [19173,0.01], + [19175,0.015], + [19177,0.005], + [19179,0.012], + [19181,0.007], + [19183,0.006], + [19185,0.001], + [19187,0.014], + [19189,0.013], + [19191,0.007], + [19193,0.028], + [19195,0.003], + [19197,0.005], + [20001,0.007], + [20003,0], + [20005,0.005], + [20007,0.016], + [20009,0.004], + [20011,0.008], + [20013,0.006], + [20015,0.013], + [20017,0.001], + [20019,0.003], + [20021,0.004], + [20023,0], + [20025,0.011], + [20027,0.006], + [20029,0.001], + [20031,0.001], + [20033,0], + [20035,0.016], + [20037,0.019], + [20039,0.004], + [20041,0.005], + [20043,0.001], + [20045,0.053], + [20047,0.008], + [20049,0.005], + [20051,0.011], + [20053,0.013], + [20055,0.041], + [20057,0.014], + [20059,0.004], + [20061,0.03], + [20063,0.005], + [20065,0.017], + [20067,0.004], + [20069,0.001], + [20071,0], + [20073,0.002], + [20075,0], + [20077,0.004], + [20079,0.006], + [20081,0.001], + [20083,0.019], + [20085,0.005], + [20087,0], + [20089,0.002], + [20091,0.051], + [20093,0.004], + [20095,0], + [20097,0.008], + [20099,0.002], + [20101,0.012], + [20103,0.014], + [20105,0], + [20107,0.005], + [20109,0], + [20111,0.021], + [20113,0.007], + [20115,0.004], + [20117,0.004], + [20119,0.007], + [20121,0.006], + [20123,0.003], + [20125,0.01], + [20127,0.006], + [20129,0.006], + [20131,0.001], + [20133,0.001], + [20135,0.003], + [20137,0.005], + [20139,0.002], + [20141,0.001], + [20143,0.007], + [20145,0.001], + [20147,0.005], + [20149,0.008], + [20151,0.001], + [20153,0.001], + [20155,0.006], + [20157,0.002], + [20159,0.008], + [20161,0.051], + [20163,0.001], + [20165,0.006], + [20167,0], + [20169,0.023], + [20171,0.012], + [20173,0.043], + [20175,0.026], + [20177,0.015], + [20179,0], + [20181,0.009], + [20183,0.007], + [20185,0.001], + [20187,0], + [20189,0.003], + [20191,0.006], + [20193,0.009], + [20195,0.017], + [20197,0.013], + [20199,0.004], + [20201,0.001], + [20203,0.007], + [20205,0], + [20207,0], + [20209,0.046], + [21001,0.006], + [21003,0.006], + [21005,0.003], + [21007,0.002], + [21009,0.003], + [21011,0.005], + [21013,0.002], + [21015,0.024], + [21017,0.008], + [21019,0.003], + [21021,0.009], + [21023,0.011], + [21025,0.003], + [21027,0.004], + [21029,0.007], + [21031,0.003], + [21033,0], + [21035,0.011], + [21037,0.01], + [21039,0.008], + [21041,0.003], + [21043,0.001], + [21045,0.002], + [21047,0.016], + [21049,0.006], + [21051,0], + [21053,0.003], + [21055,0], + [21057,0.008], + [21059,0.018], + [21061,0.001], + [21063,0], + [21065,0], + [21067,0.038], + [21069,0.001], + [21071,0.003], + [21073,0.018], + [21075,0.001], + [21077,0.001], + [21079,0.003], + [21081,0.001], + [21083,0.005], + [21085,0.001], + [21087,0.001], + [21089,0.005], + [21091,0.006], + [21093,0.022], + [21095,0.003], + [21097,0], + [21099,0.005], + [21101,0.004], + [21103,0.006], + [21105,0.007], + [21107,0.006], + [21109,0], + [21111,0.029], + [21113,0.014], + [21115,0.015], + [21117,0.013], + [21119,0.002], + [21121,0.004], + [21123,0.004], + [21125,0.004], + [21127,0.002], + [21129,0.002], + [21131,0.004], + [21133,0.003], + [21135,0.001], + [21137,0.002], + [21139,0.001], + [21141,0.003], + [21143,0.004], + [21145,0.009], + [21147,0.005], + [21149,0.002], + [21151,0.009], + [21153,0.001], + [21155,0.002], + [21157,0.002], + [21159,0.001], + [21161,0.009], + [21163,0.007], + [21165,0.003], + [21167,0.005], + [21169,0.004], + [21171,0.003], + [21173,0.001], + [21175,0.006], + [21177,0.008], + [21179,0.005], + [21181,0], + [21183,0.003], + [21185,0.016], + [21187,0], + [21189,0.002], + [21191,0.006], + [21193,0.009], + [21195,0.006], + [21197,0.006], + [21199,0.008], + [21201,0], + [21203,0.001], + [21205,0.008], + [21207,0.008], + [21209,0.012], + [21211,0.009], + [21213,0.007], + [21215,0.003], + [21217,0.011], + [21219,0.001], + [21221,0.005], + [21223,0], + [21225,0.005], + [21227,0.04], + [21229,0.009], + [21231,0.002], + [21233,0.001], + [21235,0.002], + [21237,0.001], + [21239,0.004], + [22001,0.001], + [22003,0.006], + [22005,0.011], + [22007,0.001], + [22009,0.005], + [22011,0.005], + [22013,0], + [22015,0.019], + [22017,0.013], + [22019,0.014], + [22021,0.003], + [22023,0.005], + [22025,0.002], + [22027,0.001], + [22029,0.001], + [22031,0.001], + [22033,0.032], + [22035,0], + [22037,0.003], + [22039,0.005], + [22041,0], + [22043,0.001], + [22045,0.027], + [22047,0], + [22049,0.006], + [22051,0.042], + [22053,0.005], + [22055,0.019], + [22057,0.006], + [22059,0.012], + [22061,0.017], + [22063,0.006], + [22065,0], + [22067,0.005], + [22069,0.007], + [22071,0.029], + [22073,0.01], + [22075,0.039], + [22077,0.003], + [22079,0.013], + [22081,0], + [22083,0.004], + [22085,0.004], + [22087,0.025], + [22089,0.01], + [22091,0.003], + [22093,0.002], + [22095,0.011], + [22097,0.001], + [22099,0.01], + [22101,0.014], + [22103,0.016], + [22105,0.007], + [22107,0.001], + [22109,0.01], + [22111,0.001], + [22113,0.02], + [22115,0.021], + [22117,0.001], + [22119,0.003], + [22121,0.001], + [22123,0], + [22125,0.006], + [22127,0], + [23001,0.008], + [23003,0.005], + [23005,0.022], + [23007,0.004], + [23009,0.011], + [23011,0.009], + [23013,0.005], + [23015,0.01], + [23017,0.004], + [23019,0.01], + [23021,0.008], + [23023,0.008], + [23025,0.004], + [23027,0.005], + [23029,0.005], + [23031,0.013], + [24001,0.009], + [24003,0.038], + [24005,0.06], + [24009,0.019], + [24011,0.007], + [24013,0.019], + [24015,0.014], + [24017,0.032], + [24019,0.011], + [24021,0.045], + [24023,0.004], + [24025,0.026], + [24027,0.181], + [24029,0.012], + [24031,0.148], + [24033,0.041], + [24035,0.01], + [24037,0.026], + [24039,0.01], + [24041,0.014], + [24043,0.018], + [24045,0.031], + [24047,0.012], + [24510,0.026], + [25001,0.015], + [25003,0.018], + [25005,0.023], + [25007,0.003], + [25009,0.034], + [25011,0.013], + [25013,0.024], + [25015,0.053], + [25017,0.119], + [25019,0.006], + [25021,0.111], + [25023,0.014], + [25025,0.089], + [25027,0.049], + [26001,0.002], + [26003,0.001], + [26005,0.007], + [26007,0.006], + [26009,0.004], + [26011,0.004], + [26013,0.004], + [26015,0.006], + [26017,0.006], + [26019,0.004], + [26021,0.019], + [26023,0.008], + [26025,0.024], + [26027,0.008], + [26029,0.005], + [26031,0.004], + [26033,0.01], + [26035,0.001], + [26037,0.015], + [26039,0.009], + [26041,0.004], + [26043,0.007], + [26045,0.023], + [26047,0.006], + [26049,0.01], + [26051,0.005], + [26053,0.005], + [26055,0.006], + [26057,0.004], + [26059,0.004], + [26061,0.028], + [26063,0.006], + [26065,0.068], + [26067,0.004], + [26069,0.008], + [26071,0.006], + [26073,0.018], + [26075,0.008], + [26077,0.024], + [26079,0.005], + [26081,0.03], + [26083,0.002], + [26085,0.002], + [26087,0.006], + [26089,0.006], + [26091,0.003], + [26093,0.009], + [26095,0.005], + [26097,0.007], + [26099,0.04], + [26101,0.004], + [26103,0.009], + [26105,0.006], + [26107,0.009], + [26109,0.004], + [26111,0.023], + [26113,0.002], + [26115,0.006], + [26117,0.004], + [26119,0.002], + [26121,0.006], + [26123,0.004], + [26125,0.075], + [26127,0.002], + [26129,0.007], + [26131,0.004], + [26133,0.003], + [26135,0.001], + [26137,0.006], + [26139,0.027], + [26141,0.006], + [26143,0.003], + [26145,0.012], + [26147,0.006], + [26149,0.005], + [26151,0.003], + [26153,0.004], + [26155,0.003], + [26157,0.003], + [26159,0.007], + [26161,0.091], + [26163,0.034], + [26165,0.005], + [27001,0.003], + [27003,0.045], + [27005,0.006], + [27007,0.007], + [27009,0.01], + [27011,0.001], + [27013,0.022], + [27015,0.007], + [27017,0.006], + [27019,0.028], + [27021,0.006], + [27023,0.009], + [27025,0.011], + [27027,0.013], + [27029,0.005], + [27031,0.009], + [27033,0.04], + [27035,0.004], + [27037,0.048], + [27039,0.009], + [27041,0.003], + [27043,0.004], + [27045,0.005], + [27047,0.026], + [27049,0.008], + [27051,0], + [27053,0.071], + [27055,0.004], + [27057,0.007], + [27059,0.015], + [27061,0.004], + [27063,0.021], + [27065,0.006], + [27067,0.01], + [27069,0.007], + [27071,0.004], + [27073,0.008], + [27075,0.001], + [27077,0.001], + [27079,0.004], + [27081,0.002], + [27083,0.043], + [27085,0.006], + [27087,0.003], + [27089,0.004], + [27091,0.005], + [27093,0.003], + [27095,0.007], + [27097,0.004], + [27099,0.037], + [27101,0.016], + [27103,0.017], + [27105,0.069], + [27107,0.004], + [27109,0.058], + [27111,0.006], + [27113,0.012], + [27115,0.006], + [27117,0.002], + [27119,0.01], + [27121,0.006], + [27123,0.144], + [27125,0], + [27127,0.027], + [27129,0.007], + [27131,0.021], + [27133,0.011], + [27135,0.027], + [27137,0.01], + [27139,0.061], + [27141,0.013], + [27143,0.007], + [27145,0.021], + [27147,0.015], + [27149,0.024], + [27151,0.003], + [27153,0.006], + [27155,0.002], + [27157,0.005], + [27159,0.004], + [27161,0.006], + [27163,0.058], + [27165,0.012], + [27167,0], + [27169,0.026], + [27171,0.011], + [27173,0.006], + [28001,0.006], + [28003,0.003], + [28005,0.002], + [28007,0.002], + [28009,0], + [28011,0.009], + [28013,0.002], + [28015,0], + [28017,0.002], + [28019,0], + [28021,0.011], + [28023,0], + [28025,0.003], + [28027,0.005], + [28029,0.004], + [28031,0], + [28033,0.014], + [28035,0.008], + [28037,0.001], + [28039,0.004], + [28041,0], + [28043,0.002], + [28045,0.006], + [28047,0.028], + [28049,0.008], + [28051,0.001], + [28053,0.001], + [28055,0], + [28057,0], + [28059,0.024], + [28061,0], + [28063,0.006], + [28065,0.001], + [28067,0.003], + [28069,0.001], + [28071,0.021], + [28073,0.013], + [28075,0.007], + [28077,0.002], + [28079,0.005], + [28081,0.01], + [28083,0.006], + [28085,0.005], + [28087,0.01], + [28089,0.026], + [28091,0.005], + [28093,0], + [28095,0.001], + [28097,0.003], + [28099,0.005], + [28101,0.005], + [28103,0], + [28105,0.033], + [28107,0], + [28109,0.002], + [28111,0.001], + [28113,0.003], + [28115,0.001], + [28117,0.022], + [28119,0.002], + [28121,0.012], + [28123,0.003], + [28125,0], + [28127,0.006], + [28129,0.005], + [28131,0], + [28133,0.001], + [28135,0.014], + [28137,0.001], + [28139,0.003], + [28141,0], + [28143,0.014], + [28145,0.004], + [28147,0.001], + [28149,0.007], + [28151,0.006], + [28153,0.001], + [28155,0.003], + [28157,0.001], + [28159,0], + [28161,0.002], + [28163,0.004], + [29001,0.025], + [29003,0.003], + [29005,0.005], + [29007,0.001], + [29009,0.014], + [29011,0], + [29013,0.003], + [29015,0.001], + [29017,0.004], + [29019,0.044], + [29021,0.011], + [29023,0.008], + [29025,0.004], + [29027,0.008], + [29029,0.003], + [29031,0.017], + [29033,0.005], + [29035,0], + [29037,0.008], + [29039,0.002], + [29041,0], + [29043,0.006], + [29045,0.01], + [29047,0.022], + [29049,0.007], + [29051,0.016], + [29053,0.005], + [29055,0.002], + [29057,0.008], + [29059,0.005], + [29061,0.002], + [29063,0.006], + [29065,0.003], + [29067,0.001], + [29069,0.006], + [29071,0.005], + [29073,0.003], + [29075,0.005], + [29077,0.02], + [29079,0.006], + [29081,0.002], + [29083,0.005], + [29085,0.003], + [29087,0.007], + [29089,0.004], + [29091,0.007], + [29093,0.003], + [29095,0.018], + [29097,0.011], + [29099,0.008], + [29101,0.017], + [29103,0.006], + [29105,0.004], + [29107,0.005], + [29109,0], + [29111,0], + [29113,0.003], + [29115,0.004], + [29117,0.006], + [29119,0.015], + [29121,0.006], + [29123,0.006], + [29125,0.01], + [29127,0.006], + [29129,0.005], + [29131,0.005], + [29133,0.001], + [29135,0.001], + [29137,0.005], + [29139,0.003], + [29141,0.009], + [29143,0], + [29145,0.014], + [29147,0.014], + [29149,0.005], + [29151,0], + [29153,0.005], + [29155,0], + [29157,0.012], + [29159,0.007], + [29161,0.036], + [29163,0.003], + [29165,0.027], + [29167,0.002], + [29169,0.025], + [29171,0.001], + [29173,0.006], + [29175,0.006], + [29177,0.002], + [29179,0.003], + [29181,0.004], + [29183,0.026], + [29185,0.004], + [29186,0.006], + [29187,0.005], + [29189,0.043], + [29195,0.008], + [29197,0.003], + [29199,0], + [29201,0.004], + [29203,0], + [29205,0.003], + [29207,0], + [29209,0.002], + [29211,0.001], + [29213,0.01], + [29215,0.007], + [29217,0.007], + [29219,0.006], + [29221,0.002], + [29223,0.003], + [29225,0.004], + [29227,0.001], + [29229,0.002], + [29510,0.034], + [30001,0.006], + [30003,0.001], + [30005,0.001], + [30007,0], + [30009,0.003], + [30011,0], + [30013,0.007], + [30015,0.006], + [30017,0.001], + [30019,0.008], + [30021,0.002], + [30023,0.008], + [30025,0.017], + [30027,0.006], + [30029,0.007], + [30031,0.014], + [30033,0], + [30035,0], + [30037,0], + [30039,0.001], + [30041,0.004], + [30043,0.001], + [30045,0], + [30047,0.003], + [30049,0.007], + [30051,0], + [30053,0.004], + [30055,0.016], + [30057,0], + [30059,0.002], + [30061,0.008], + [30063,0.019], + [30065,0.009], + [30067,0.003], + [30069,0.055], + [30071,0.003], + [30073,0.001], + [30075,0], + [30077,0.004], + [30079,0.008], + [30081,0.005], + [30083,0], + [30085,0.006], + [30087,0.01], + [30089,0.004], + [30091,0.003], + [30093,0.008], + [30095,0.003], + [30097,0.003], + [30099,0.003], + [30101,0.007], + [30103,0.042], + [30105,0.002], + [30107,0.003], + [30109,0.007], + [30111,0.007], + [31001,0.013], + [31003,0.002], + [31005,0], + [31007,0.014], + [31009,0], + [31011,0.005], + [31013,0.011], + [31015,0.01], + [31017,0.005], + [31019,0.013], + [31021,0.008], + [31023,0.007], + [31025,0.003], + [31027,0.001], + [31029,0.003], + [31031,0.005], + [31033,0.007], + [31035,0.001], + [31037,0.007], + [31039,0.003], + [31041,0.008], + [31043,0.034], + [31045,0.007], + [31047,0.006], + [31049,0.006], + [31051,0.004], + [31053,0.004], + [31055,0.038], + [31057,0], + [31059,0.006], + [31061,0.002], + [31063,0.001], + [31065,0.003], + [31067,0.007], + [31069,0.002], + [31071,0.002], + [31073,0.003], + [31075,0], + [31077,0.002], + [31079,0.011], + [31081,0.004], + [31083,0.002], + [31085,0], + [31087,0], + [31089,0.006], + [31091,0], + [31093,0.002], + [31095,0.002], + [31097,0.016], + [31099,0.005], + [31101,0.008], + [31103,0], + [31105,0.003], + [31107,0.003], + [31109,0.042], + [31111,0.009], + [31113,0], + [31115,0], + [31117,0], + [31119,0.017], + [31121,0.005], + [31123,0.005], + [31125,0], + [31127,0.008], + [31129,0.018], + [31131,0.003], + [31133,0], + [31135,0], + [31137,0.002], + [31139,0.006], + [31141,0.008], + [31143,0], + [31145,0.001], + [31147,0.001], + [31149,0], + [31151,0.02], + [31153,0.026], + [31155,0.004], + [31157,0.007], + [31159,0.005], + [31161,0.009], + [31163,0.003], + [31165,0], + [31167,0.005], + [31169,0], + [31171,0], + [31173,0.008], + [31175,0], + [31177,0.003], + [31179,0.005], + [31181,0], + [31183,0.003], + [31185,0.004], + [32001,0.028], + [32003,0.097], + [32005,0.018], + [32007,0.011], + [32009,0], + [32011,0.007], + [32013,0.006], + [32015,0.001], + [32017,0.009], + [32019,0.013], + [32021,0.013], + [32023,0.017], + [32027,0.011], + [32029,0.009], + [32031,0.053], + [32033,0.009], + [32510,0.027], + [33001,0.009], + [33003,0.007], + [33005,0.013], + [33007,0.005], + [33009,0.037], + [33011,0.04], + [33013,0.021], + [33015,0.021], + [33017,0.034], + [33019,0.008], + [34001,0.079], + [34003,0.163], + [34005,0.051], + [34007,0.057], + [34009,0.009], + [34011,0.014], + [34013,0.053], + [34015,0.031], + [34017,0.152], + [34019,0.041], + [34021,0.111], + [34023,0.24], + [34025,0.054], + [34027,0.103], + [34029,0.019], + [34031,0.052], + [34033,0.011], + [34035,0.177], + [34037,0.021], + [34039,0.051], + [34041,0.027], + [35001,0.026], + [35003,0], + [35005,0.01], + [35006,0.001], + [35007,0.004], + [35009,0.013], + [35011,0.003], + [35013,0.011], + [35015,0.005], + [35017,0.006], + [35019,0.002], + [35021,0], + [35023,0], + [35025,0.006], + [35027,0.001], + [35028,0.05], + [35029,0.008], + [35031,0.011], + [35033,0], + [35035,0.013], + [35037,0.009], + [35039,0.005], + [35041,0.006], + [35043,0.014], + [35045,0.008], + [35047,0.012], + [35049,0.013], + [35051,0.008], + [35053,0.033], + [35055,0.009], + [35057,0.001], + [35059,0], + [35061,0.009], + [36001,0.066], + [36003,0.012], + [36005,0.037], + [36007,0.043], + [36009,0.008], + [36011,0.006], + [36013,0.006], + [36015,0.013], + [36017,0.005], + [36019,0.014], + [36021,0.018], + [36023,0.008], + [36025,0.008], + [36027,0.035], + [36029,0.036], + [36031,0.003], + [36033,0.006], + [36035,0.008], + [36037,0.008], + [36039,0.01], + [36041,0.001], + [36043,0.006], + [36045,0.018], + [36047,0.119], + [36049,0.005], + [36051,0.013], + [36053,0.009], + [36055,0.036], + [36057,0.007], + [36059,0.097], + [36061,0.122], + [36063,0.011], + [36065,0.04], + [36067,0.037], + [36069,0.014], + [36071,0.027], + [36073,0.006], + [36075,0.007], + [36077,0.014], + [36079,0.021], + [36081,0.255], + [36083,0.027], + [36085,0.093], + [36087,0.059], + [36089,0.01], + [36091,0.029], + [36093,0.047], + [36095,0.009], + [36097,0.007], + [36099,0.008], + [36101,0.015], + [36103,0.039], + [36105,0.017], + [36107,0.008], + [36109,0.097], + [36111,0.019], + [36113,0.01], + [36115,0.006], + [36117,0.008], + [36119,0.06], + [36121,0.004], + [36123,0.007], + [37001,0.016], + [37003,0.01], + [37005,0.005], + [37007,0.013], + [37009,0.004], + [37011,0.004], + [37013,0.001], + [37015,0.008], + [37017,0.001], + [37019,0.006], + [37021,0.013], + [37023,0.036], + [37025,0.037], + [37027,0.005], + [37029,0.018], + [37031,0.012], + [37033,0.007], + [37035,0.043], + [37037,0.015], + [37039,0.007], + [37041,0.003], + [37043,0.002], + [37045,0.01], + [37047,0.004], + [37049,0.028], + [37051,0.025], + [37053,0.004], + [37055,0.008], + [37057,0.016], + [37059,0.007], + [37061,0.004], + [37063,0.049], + [37065,0.002], + [37067,0.024], + [37069,0.005], + [37071,0.015], + [37073,0.005], + [37075,0], + [37077,0.005], + [37079,0.001], + [37081,0.049], + [37083,0.007], + [37085,0.011], + [37087,0.007], + [37089,0.013], + [37091,0.008], + [37093,0.015], + [37095,0], + [37097,0.025], + [37099,0.007], + [37101,0.006], + [37103,0.001], + [37105,0.013], + [37107,0.005], + [37109,0.007], + [37111,0.009], + [37113,0.009], + [37115,0.006], + [37117,0.006], + [37119,0.059], + [37121,0.002], + [37123,0.014], + [37125,0.013], + [37127,0.009], + [37129,0.013], + [37131,0.003], + [37133,0.022], + [37135,0.078], + [37137,0.006], + [37139,0.012], + [37141,0.004], + [37143,0.004], + [37145,0.004], + [37147,0.017], + [37149,0.007], + [37151,0.012], + [37153,0.01], + [37155,0.006], + [37157,0.006], + [37159,0.009], + [37161,0.004], + [37163,0.006], + [37165,0.008], + [37167,0.018], + [37169,0.004], + [37171,0.006], + [37173,0.004], + [37175,0.001], + [37177,0.004], + [37179,0.03], + [37181,0.007], + [37183,0.069], + [37185,0.005], + [37187,0.002], + [37189,0.012], + [37191,0.012], + [37193,0.006], + [37195,0.008], + [37197,0.001], + [37199,0.003], + [38001,0.025], + [38003,0.01], + [38005,0.001], + [38007,0], + [38009,0.001], + [38011,0], + [38013,0.005], + [38015,0.008], + [38017,0.029], + [38019,0], + [38021,0.002], + [38023,0.012], + [38025,0.008], + [38027,0], + [38029,0.011], + [38031,0], + [38033,0], + [38035,0.028], + [38037,0.012], + [38039,0], + [38041,0], + [38043,0.002], + [38045,0.002], + [38047,0.001], + [38049,0.004], + [38051,0.005], + [38053,0.004], + [38055,0.001], + [38057,0.004], + [38059,0.007], + [38061,0.005], + [38063,0], + [38065,0.017], + [38067,0.005], + [38069,0.004], + [38071,0.009], + [38073,0.011], + [38075,0.002], + [38077,0.004], + [38079,0.001], + [38081,0.003], + [38083,0], + [38085,0], + [38087,0], + [38089,0.012], + [38091,0], + [38093,0.005], + [38095,0.002], + [38097,0.004], + [38099,0.005], + [38101,0.017], + [38103,0.002], + [38105,0.01], + [39001,0], + [39003,0.008], + [39005,0.007], + [39007,0.005], + [39009,0.026], + [39011,0.005], + [39013,0.005], + [39015,0.003], + [39017,0.033], + [39019,0], + [39021,0.005], + [39023,0.006], + [39025,0.012], + [39027,0.005], + [39029,0.002], + [39031,0.003], + [39033,0.005], + [39035,0.03], + [39037,0.005], + [39039,0.004], + [39041,0.063], + [39043,0.006], + [39045,0.016], + [39047,0.01], + [39049,0.053], + [39051,0.004], + [39053,0.008], + [39055,0.007], + [39057,0.029], + [39059,0.004], + [39061,0.026], + [39063,0.019], + [39065,0.008], + [39067,0.005], + [39069,0.003], + [39071,0.004], + [39073,0.002], + [39075,0.003], + [39077,0.002], + [39079,0.001], + [39081,0.005], + [39083,0.005], + [39085,0.012], + [39087,0.005], + [39089,0.013], + [39091,0.008], + [39093,0.012], + [39095,0.017], + [39097,0.007], + [39099,0.009], + [39101,0.006], + [39103,0.011], + [39105,0], + [39107,0.006], + [39109,0.012], + [39111,0.005], + [39113,0.022], + [39115,0.002], + [39117,0.001], + [39119,0.004], + [39121,0.001], + [39123,0.002], + [39125,0.002], + [39127,0.001], + [39129,0.006], + [39131,0.001], + [39133,0.018], + [39135,0.004], + [39137,0.002], + [39139,0.008], + [39141,0.005], + [39143,0.004], + [39145,0.004], + [39147,0.006], + [39149,0.012], + [39151,0.009], + [39153,0.034], + [39155,0.005], + [39157,0.004], + [39159,0.04], + [39161,0.003], + [39163,0.002], + [39165,0.058], + [39167,0.006], + [39169,0.01], + [39171,0.006], + [39173,0.017], + [39175,0.008], + [40001,0.008], + [40003,0], + [40005,0.007], + [40007,0], + [40009,0.003], + [40011,0], + [40013,0.006], + [40015,0.003], + [40017,0.03], + [40019,0.012], + [40021,0.007], + [40023,0.001], + [40025,0.003], + [40027,0.045], + [40029,0.004], + [40031,0.026], + [40033,0], + [40035,0.008], + [40037,0.004], + [40039,0.012], + [40041,0.012], + [40043,0.001], + [40045,0.007], + [40047,0.009], + [40049,0.003], + [40051,0.005], + [40053,0.002], + [40055,0], + [40057,0.007], + [40059,0], + [40061,0.007], + [40063,0.001], + [40065,0.013], + [40067,0], + [40069,0.001], + [40071,0.004], + [40073,0.004], + [40075,0.006], + [40077,0.009], + [40079,0.007], + [40081,0.003], + [40083,0.004], + [40085,0.008], + [40087,0.003], + [40089,0.008], + [40091,0.001], + [40093,0.009], + [40095,0.002], + [40097,0.004], + [40099,0.006], + [40101,0.007], + [40103,0.001], + [40105,0.001], + [40107,0], + [40109,0.034], + [40111,0.004], + [40113,0.004], + [40115,0.007], + [40117,0.004], + [40119,0.043], + [40121,0.003], + [40123,0.008], + [40125,0.007], + [40127,0.004], + [40129,0], + [40131,0.014], + [40133,0.006], + [40135,0.008], + [40137,0.005], + [40139,0.033], + [40141,0.002], + [40143,0.034], + [40145,0.015], + [40147,0.022], + [40149,0.001], + [40151,0.012], + [40153,0.003], + [41001,0.007], + [41003,0.072], + [41005,0.043], + [41007,0.01], + [41009,0.01], + [41011,0.01], + [41013,0.003], + [41015,0.005], + [41017,0.011], + [41019,0.01], + [41021,0.008], + [41023,0.008], + [41025,0], + [41027,0.017], + [41029,0.013], + [41031,0.006], + [41033,0.01], + [41035,0.01], + [41037,0.011], + [41039,0.027], + [41041,0.012], + [41043,0.011], + [41045,0.014], + [41047,0.021], + [41049,0.006], + [41051,0.074], + [41053,0.019], + [41055,0.001], + [41057,0.007], + [41059,0.01], + [41061,0.011], + [41063,0.003], + [41065,0.009], + [41067,0.106], + [41069,0.003], + [41071,0.015], + [42001,0.007], + [42003,0.037], + [42005,0.003], + [42007,0.005], + [42009,0.004], + [42011,0.014], + [42013,0.006], + [42015,0.007], + [42017,0.048], + [42019,0.012], + [42021,0.004], + [42023,0.008], + [42025,0.006], + [42027,0.061], + [42029,0.055], + [42031,0.006], + [42033,0.005], + [42035,0.008], + [42037,0.011], + [42039,0.006], + [42041,0.043], + [42043,0.044], + [42045,0.057], + [42047,0.005], + [42049,0.017], + [42051,0.004], + [42053,0.001], + [42055,0.008], + [42057,0.003], + [42059,0.004], + [42061,0.006], + [42063,0.01], + [42065,0.003], + [42067,0.004], + [42069,0.028], + [42071,0.022], + [42073,0.005], + [42075,0.014], + [42077,0.033], + [42079,0.012], + [42081,0.007], + [42083,0.005], + [42085,0.007], + [42087,0.003], + [42089,0.024], + [42091,0.076], + [42093,0.035], + [42095,0.028], + [42097,0.004], + [42099,0.004], + [42101,0.072], + [42103,0.012], + [42105,0.004], + [42107,0.005], + [42109,0.007], + [42111,0.003], + [42113,0.001], + [42115,0.004], + [42117,0.006], + [42119,0.017], + [42121,0.004], + [42123,0.005], + [42125,0.01], + [42127,0.006], + [42129,0.009], + [42131,0.002], + [42133,0.015], + [44001,0.021], + [44003,0.027], + [44005,0.02], + [44007,0.042], + [44009,0.019], + [45001,0.003], + [45003,0.009], + [45005,0.002], + [45007,0.009], + [45009,0.003], + [45011,0.002], + [45013,0.013], + [45015,0.022], + [45017,0], + [45019,0.015], + [45021,0.006], + [45023,0.002], + [45025,0.005], + [45027,0.006], + [45029,0.001], + [45031,0.004], + [45033,0.001], + [45035,0.018], + [45037,0.003], + [45039,0.002], + [45041,0.013], + [45043,0.005], + [45045,0.025], + [45047,0.01], + [45049,0.003], + [45051,0.014], + [45053,0.004], + [45055,0.002], + [45057,0.013], + [45059,0.005], + [45061,0], + [45063,0.019], + [45065,0.002], + [45067,0.007], + [45069,0.004], + [45071,0.002], + [45073,0.007], + [45075,0.007], + [45077,0.02], + [45079,0.029], + [45081,0], + [45083,0.024], + [45085,0.014], + [45087,0], + [45089,0.007], + [45091,0.021], + [46003,0], + [46005,0.091], + [46007,0.004], + [46009,0.004], + [46011,0.031], + [46013,0.031], + [46015,0.003], + [46017,0], + [46019,0.001], + [46021,0.001], + [46023,0.001], + [46025,0.005], + [46027,0.029], + [46029,0.005], + [46031,0], + [46033,0.003], + [46035,0.007], + [46037,0.001], + [46039,0], + [46041,0.001], + [46043,0], + [46045,0.001], + [46047,0.016], + [46049,0], + [46051,0.001], + [46053,0.018], + [46055,0], + [46057,0.004], + [46059,0.006], + [46061,0], + [46063,0], + [46065,0], + [46067,0.003], + [46069,0], + [46071,0.004], + [46073,0], + [46075,0], + [46077,0.002], + [46079,0.016], + [46081,0.01], + [46083,0.011], + [46085,0.006], + [46087,0], + [46089,0.008], + [46091,0], + [46093,0.012], + [46095,0], + [46097,0.004], + [46099,0.021], + [46101,0.021], + [46102,0], + [46103,0.013], + [46105,0], + [46107,0.018], + [46109,0.001], + [46111,0.005], + [46115,0], + [46117,0], + [46119,0], + [46121,0.019], + [46123,0.008], + [46125,0.003], + [46127,0.013], + [46129,0], + [46135,0.002], + [46137,0.006], + [47001,0.013], + [47003,0.002], + [47005,0.002], + [47007,0.001], + [47009,0.008], + [47011,0.012], + [47013,0.004], + [47015,0], + [47017,0.004], + [47019,0.005], + [47021,0.005], + [47023,0.005], + [47025,0.008], + [47027,0.001], + [47029,0.002], + [47031,0.011], + [47033,0.003], + [47035,0.004], + [47037,0.036], + [47039,0], + [47041,0.003], + [47043,0.005], + [47045,0.008], + [47047,0.007], + [47049,0.005], + [47051,0.004], + [47053,0.003], + [47055,0.002], + [47057,0.003], + [47059,0.004], + [47061,0.002], + [47063,0.009], + [47065,0.021], + [47067,0.006], + [47069,0.007], + [47071,0.005], + [47073,0.005], + [47075,0], + [47077,0.001], + [47079,0.004], + [47081,0.004], + [47083,0.002], + [47085,0.007], + [47087,0], + [47089,0.006], + [47091,0.005], + [47093,0.022], + [47095,0.002], + [47097,0.003], + [47099,0.005], + [47101,0.014], + [47103,0.006], + [47105,0.007], + [47107,0.008], + [47109,0.002], + [47111,0.005], + [47113,0.011], + [47115,0.005], + [47117,0.003], + [47119,0.009], + [47121,0.002], + [47123,0.004], + [47125,0.022], + [47127,0.024], + [47129,0.001], + [47131,0.004], + [47133,0.004], + [47135,0.022], + [47137,0], + [47139,0.001], + [47141,0.013], + [47143,0.005], + [47145,0.008], + [47147,0.006], + [47149,0.034], + [47151,0], + [47153,0], + [47155,0.008], + [47157,0.026], + [47159,0.004], + [47161,0.007], + [47163,0.006], + [47165,0.014], + [47167,0.008], + [47169,0.002], + [47171,0.003], + [47173,0.003], + [47175,0], + [47177,0.007], + [47179,0.017], + [47181,0.008], + [47183,0.003], + [47185,0.002], + [47187,0.042], + [47189,0.017], + [48001,0.006], + [48003,0.004], + [48005,0.011], + [48007,0.02], + [48009,0.002], + [48011,0], + [48013,0.003], + [48015,0.004], + [48017,0.008], + [48019,0.003], + [48021,0.009], + [48023,0], + [48025,0.005], + [48027,0.029], + [48029,0.029], + [48031,0.014], + [48033,0], + [48035,0.005], + [48037,0.011], + [48039,0.067], + [48041,0.061], + [48043,0.018], + [48045,0], + [48047,0], + [48049,0.007], + [48051,0], + [48053,0.009], + [48055,0.01], + [48057,0.055], + [48059,0.005], + [48061,0.007], + [48063,0.004], + [48065,0.004], + [48067,0.006], + [48069,0.006], + [48071,0.011], + [48073,0.005], + [48075,0.01], + [48077,0.011], + [48079,0], + [48081,0], + [48083,0.005], + [48085,0.151], + [48087,0], + [48089,0], + [48091,0.011], + [48093,0.006], + [48095,0.004], + [48097,0.009], + [48099,0.021], + [48101,0], + [48103,0.02], + [48105,0], + [48107,0.006], + [48109,0.006], + [48111,0.019], + [48113,0.063], + [48115,0.002], + [48117,0.006], + [48119,0.005], + [48121,0.087], + [48123,0], + [48125,0.005], + [48127,0.014], + [48129,0.004], + [48131,0], + [48133,0.007], + [48135,0.012], + [48137,0], + [48139,0.006], + [48141,0.012], + [48143,0.009], + [48145,0.005], + [48147,0.007], + [48149,0.005], + [48151,0.003], + [48153,0.002], + [48155,0], + [48157,0.202], + [48159,0], + [48161,0.007], + [48163,0.009], + [48165,0.005], + [48167,0.033], + [48169,0.02], + [48171,0.001], + [48173,0], + [48175,0.007], + [48177,0.004], + [48179,0.007], + [48181,0.016], + [48183,0.013], + [48185,0.002], + [48187,0.017], + [48189,0.003], + [48191,0.003], + [48193,0], + [48195,0.001], + [48197,0], + [48199,0.006], + [48201,0.07], + [48203,0.008], + [48205,0.014], + [48207,0.003], + [48209,0.016], + [48211,0], + [48213,0.006], + [48215,0.01], + [48217,0.004], + [48219,0.004], + [48221,0.007], + [48223,0.007], + [48225,0.004], + [48227,0.007], + [48229,0.008], + [48231,0.013], + [48233,0.004], + [48235,0], + [48237,0.001], + [48239,0.011], + [48241,0.005], + [48243,0], + [48245,0.038], + [48247,0], + [48249,0.005], + [48251,0.01], + [48253,0.004], + [48255,0.01], + [48257,0.013], + [48259,0.009], + [48261,0], + [48263,0], + [48265,0.008], + [48267,0], + [48269,0], + [48271,0], + [48273,0.022], + [48275,0.011], + [48277,0.008], + [48279,0.006], + [48281,0.012], + [48283,0.002], + [48285,0.005], + [48287,0.011], + [48289,0.008], + [48291,0.005], + [48293,0.008], + [48295,0.019], + [48297,0.014], + [48299,0.003], + [48301,0], + [48303,0.022], + [48305,0.008], + [48307,0.007], + [48309,0.016], + [48311,0], + [48313,0.034], + [48315,0.003], + [48317,0.001], + [48319,0.024], + [48321,0.019], + [48323,0.005], + [48325,0.007], + [48327,0], + [48329,0.02], + [48331,0.006], + [48333,0.002], + [48335,0.004], + [48337,0], + [48339,0.029], + [48341,0.068], + [48343,0.002], + [48345,0], + [48347,0.016], + [48349,0.007], + [48351,0.006], + [48353,0.003], + [48355,0.021], + [48357,0.003], + [48359,0.019], + [48361,0.012], + [48363,0.008], + [48365,0.002], + [48367,0.006], + [48369,0.004], + [48371,0.006], + [48373,0.008], + [48375,0.054], + [48377,0.013], + [48379,0.004], + [48381,0.019], + [48383,0.002], + [48385,0.001], + [48387,0.001], + [48389,0.013], + [48391,0.003], + [48393,0], + [48395,0.002], + [48397,0.027], + [48399,0.001], + [48401,0.005], + [48403,0.001], + [48405,0.002], + [48407,0], + [48409,0.01], + [48411,0.002], + [48413,0], + [48415,0.003], + [48417,0.002], + [48419,0.004], + [48421,0], + [48423,0.017], + [48425,0.003], + [48427,0], + [48429,0.003], + [48431,0], + [48433,0], + [48435,0], + [48437,0.002], + [48439,0.054], + [48441,0.022], + [48443,0], + [48445,0], + [48447,0], + [48449,0.011], + [48451,0.013], + [48453,0.067], + [48455,0], + [48457,0.003], + [48459,0.003], + [48461,0.007], + [48463,0.01], + [48465,0.008], + [48467,0.005], + [48469,0.012], + [48471,0.013], + [48473,0.01], + [48475,0.01], + [48477,0.017], + [48479,0.005], + [48481,0.003], + [48483,0.001], + [48485,0.024], + [48487,0.009], + [48489,0], + [48491,0.068], + [48493,0.004], + [48495,0], + [48497,0.005], + [48499,0.006], + [48501,0], + [48503,0.003], + [48505,0.008], + [48507,0.001], + [49001,0.003], + [49003,0.008], + [49005,0.021], + [49007,0], + [49009,0], + [49011,0.018], + [49013,0.005], + [49015,0.007], + [49017,0.001], + [49019,0.016], + [49021,0.009], + [49023,0.001], + [49025,0.006], + [49027,0.012], + [49029,0.006], + [49031,0], + [49033,0], + [49035,0.041], + [49037,0.005], + [49039,0.01], + [49041,0], + [49043,0.018], + [49045,0.008], + [49047,0.005], + [49049,0.015], + [49051,0.014], + [49053,0.008], + [49055,0.003], + [49057,0.012], + [50001,0.018], + [50003,0.01], + [50005,0.005], + [50007,0.04], + [50009,0.005], + [50011,0.006], + [50013,0.005], + [50015,0.008], + [50017,0.002], + [50019,0.003], + [50021,0.011], + [50023,0.008], + [50025,0.01], + [50027,0.009], + [51001,0.008], + [51003,0.052], + [51005,0.001], + [51007,0], + [51009,0.005], + [51011,0.001], + [51013,0.103], + [51015,0.006], + [51017,0.003], + [51019,0.012], + [51021,0.002], + [51023,0.007], + [51025,0.005], + [51027,0.01], + [51029,0.002], + [51031,0.009], + [51033,0.009], + [51035,0.001], + [51036,0.01], + [51037,0.004], + [51041,0.035], + [51043,0.007], + [51045,0], + [51047,0.017], + [51049,0.012], + [51051,0.001], + [51053,0.009], + [51057,0.006], + [51059,0.192], + [51061,0.017], + [51063,0.002], + [51065,0.012], + [51067,0.005], + [51069,0.014], + [51071,0.001], + [51073,0.008], + [51075,0.013], + [51077,0.003], + [51079,0.017], + [51081,0.001], + [51083,0.008], + [51085,0.016], + [51087,0.083], + [51089,0.006], + [51091,0], + [51093,0.01], + [51095,0.025], + [51097,0], + [51099,0.013], + [51101,0.012], + [51103,0.008], + [51105,0.003], + [51107,0.186], + [51109,0.006], + [51111,0.028], + [51113,0.008], + [51115,0.006], + [51117,0.001], + [51119,0.001], + [51121,0.066], + [51125,0.002], + [51127,0.011], + [51131,0.01], + [51133,0.001], + [51135,0.003], + [51137,0.009], + [51139,0.004], + [51141,0.004], + [51143,0.004], + [51145,0.003], + [51147,0.008], + [51149,0.015], + [51153,0.084], + [51155,0.007], + [51157,0.005], + [51159,0.003], + [51161,0.031], + [51163,0.007], + [51165,0.007], + [51167,0], + [51169,0.003], + [51171,0.01], + [51173,0.007], + [51175,0.002], + [51177,0.024], + [51179,0.033], + [51181,0.002], + [51183,0.013], + [51185,0.006], + [51187,0.011], + [51191,0.006], + [51193,0.007], + [51195,0.004], + [51197,0.004], + [51199,0.056], + [51510,0.059], + [51520,0.002], + [51530,0.019], + [51540,0.071], + [51550,0.032], + [51570,0.042], + [51580,0.012], + [51590,0.012], + [51595,0.003], + [51600,0.172], + [51610,0.099], + [51620,0.013], + [51630,0.027], + [51640,0.006], + [51650,0.025], + [51660,0.039], + [51670,0.014], + [51678,0.035], + [51680,0.024], + [51683,0.052], + [51685,0.111], + [51690,0.01], + [51700,0.032], + [51710,0.037], + [51720,0.046], + [51730,0.009], + [51735,0.025], + [51740,0.014], + [51750,0.016], + [51760,0.021], + [51770,0.03], + [51775,0.017], + [51790,0.014], + [51800,0.02], + [51810,0.067], + [51820,0.011], + [51830,0.065], + [51840,0.022], + [53001,0.008], + [53003,0.009], + [53005,0.026], + [53007,0.008], + [53009,0.017], + [53011,0.046], + [53013,0.018], + [53015,0.013], + [53017,0.007], + [53019,0.007], + [53021,0.022], + [53023,0.032], + [53025,0.01], + [53027,0.015], + [53029,0.049], + [53031,0.016], + [53033,0.176], + [53035,0.048], + [53037,0.016], + [53039,0.007], + [53041,0.013], + [53043,0.007], + [53045,0.012], + [53047,0.009], + [53049,0.017], + [53051,0.01], + [53053,0.063], + [53055,0.013], + [53057,0.019], + [53059,0.011], + [53061,0.108], + [53063,0.023], + [53065,0.006], + [53067,0.057], + [53069,0.019], + [53071,0.017], + [53073,0.041], + [53075,0.085], + [53077,0.01], + [54001,0.008], + [54003,0.011], + [54005,0.001], + [54007,0], + [54009,0.005], + [54011,0.014], + [54013,0], + [54015,0], + [54017,0.005], + [54019,0.001], + [54021,0.009], + [54023,0.002], + [54025,0.006], + [54027,0.004], + [54029,0.005], + [54031,0.016], + [54033,0.006], + [54035,0.003], + [54037,0.014], + [54039,0.012], + [54041,0.005], + [54043,0.001], + [54045,0.001], + [54047,0.001], + [54049,0.005], + [54051,0.003], + [54053,0.006], + [54055,0.006], + [54057,0.004], + [54059,0.001], + [54061,0.035], + [54063,0], + [54065,0], + [54067,0.002], + [54069,0.007], + [54071,0], + [54073,0], + [54075,0.001], + [54077,0.003], + [54079,0.008], + [54081,0.01], + [54083,0.006], + [54085,0], + [54087,0.002], + [54089,0], + [54091,0.003], + [54093,0.005], + [54095,0.007], + [54097,0.002], + [54099,0.003], + [54101,0], + [54103,0], + [54105,0], + [54107,0.005], + [54109,0.003], + [55001,0.007], + [55003,0.005], + [55005,0.007], + [55007,0.005], + [55009,0.032], + [55011,0.001], + [55013,0.003], + [55015,0.024], + [55017,0.013], + [55019,0.004], + [55021,0.008], + [55023,0.006], + [55025,0.059], + [55027,0.007], + [55029,0.005], + [55031,0.012], + [55033,0.027], + [55035,0.041], + [55037,0], + [55039,0.012], + [55041,0.008], + [55043,0.01], + [55045,0.006], + [55047,0.007], + [55049,0.007], + [55051,0.005], + [55053,0.004], + [55055,0.006], + [55057,0.006], + [55059,0.016], + [55061,0.003], + [55063,0.044], + [55065,0.005], + [55067,0.002], + [55069,0.004], + [55071,0.027], + [55073,0.058], + [55075,0.003], + [55077,0.005], + [55078,0.002], + [55079,0.043], + [55081,0.009], + [55083,0.004], + [55085,0.004], + [55087,0.035], + [55089,0.021], + [55091,0.003], + [55093,0.013], + [55095,0.005], + [55097,0.03], + [55099,0.006], + [55101,0.013], + [55103,0.007], + [55105,0.013], + [55107,0.002], + [55109,0.01], + [55111,0.006], + [55113,0.006], + [55115,0.004], + [55117,0.057], + [55119,0.002], + [55121,0.004], + [55123,0.005], + [55125,0.006], + [55127,0.009], + [55129,0.006], + [55131,0.013], + [55133,0.035], + [55135,0.004], + [55137,0.004], + [55139,0.028], + [55141,0.02], + [56001,0.034], + [56003,0.005], + [56005,0.005], + [56007,0.011], + [56009,0.002], + [56011,0.007], + [56013,0.005], + [56015,0.008], + [56017,0], + [56019,0], + [56021,0.012], + [56023,0.003], + [56025,0.006], + [56027,0], + [56029,0.005], + [56031,0.012], + [56033,0.007], + [56035,0.001], + [56037,0.008], + [56039,0.013], + [56041,0.002], + [56043,0], + [56045,0.008] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-black-2010.json b/data/regional/united-states/demographics/race/us-race-black-2010.json new file mode 100644 index 0000000..a5d4daf --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-black-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Black Population", + "description" : "Percent of the population that is black in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.black.2010"], + [1001,0.177], + [1003,0.094], + [1005,0.469], + [1007,0.22], + [1009,0.013], + [1011,0.702], + [1013,0.434], + [1015,0.206], + [1017,0.387], + [1019,0.046], + [1021,0.097], + [1023,0.434], + [1025,0.439], + [1027,0.148], + [1029,0.033], + [1031,0.167], + [1033,0.161], + [1035,0.465], + [1037,0.31], + [1039,0.125], + [1041,0.234], + [1043,0.011], + [1045,0.193], + [1047,0.694], + [1049,0.015], + [1051,0.2], + [1053,0.319], + [1055,0.151], + [1057,0.114], + [1059,0.039], + [1061,0.095], + [1063,0.815], + [1065,0.59], + [1067,0.286], + [1069,0.258], + [1071,0.033], + [1073,0.42], + [1075,0.113], + [1077,0.1], + [1079,0.115], + [1081,0.227], + [1083,0.126], + [1085,0.735], + [1087,0.826], + [1089,0.24], + [1091,0.517], + [1093,0.038], + [1095,0.016], + [1097,0.346], + [1099,0.417], + [1101,0.547], + [1103,0.119], + [1105,0.687], + [1107,0.416], + [1109,0.366], + [1111,0.201], + [1113,0.418], + [1115,0.086], + [1117,0.106], + [1119,0.75], + [1121,0.317], + [1123,0.266], + [1125,0.296], + [1127,0.059], + [1129,0.249], + [1131,0.725], + [1133,0.005], + [2013,0.07], + [2016,0.06], + [2020,0.056], + [2050,0.004], + [2060,0], + [2068,0.005], + [2070,0.002], + [2090,0.045], + [2100,0.004], + [2105,0.004], + [2110,0.009], + [2122,0.005], + [2130,0.006], + [2150,0.007], + [2158,0], + [2164,0.006], + [2170,0.01], + [2180,0.003], + [2185,0.01], + [2188,0.005], + [2195,0.004], + [2198,0.003], + [2220,0.005], + [2230,0], + [2240,0.011], + [2261,0.005], + [2275,0.002], + [2282,0.003], + [2290,0.002], + [4001,0.002], + [4003,0.042], + [4005,0.012], + [4007,0.004], + [4009,0.018], + [4011,0.011], + [4012,0.006], + [4013,0.05], + [4015,0.009], + [4017,0.009], + [4019,0.035], + [4021,0.046], + [4023,0.004], + [4025,0.006], + [4027,0.02], + [5001,0.245], + [5003,0.258], + [5005,0.002], + [5007,0.013], + [5009,0.002], + [5011,0.276], + [5013,0.222], + [5015,0.004], + [5017,0.541], + [5019,0.235], + [5021,0.003], + [5023,0.003], + [5025,0.122], + [5027,0.369], + [5029,0.112], + [5031,0.131], + [5033,0.012], + [5035,0.512], + [5037,0.222], + [5039,0.419], + [5041,0.478], + [5043,0.278], + [5045,0.102], + [5047,0.007], + [5049,0.003], + [5051,0.079], + [5053,0.022], + [5055,0.006], + [5057,0.294], + [5059,0.108], + [5061,0.206], + [5063,0.02], + [5065,0.013], + [5067,0.167], + [5069,0.551], + [5071,0.014], + [5073,0.372], + [5075,0.008], + [5077,0.553], + [5079,0.299], + [5081,0.191], + [5083,0.013], + [5085,0.06], + [5087,0.002], + [5089,0.002], + [5091,0.245], + [5093,0.34], + [5095,0.409], + [5097,0.002], + [5099,0.307], + [5101,0.001], + [5103,0.401], + [5105,0.019], + [5107,0.631], + [5109,0.029], + [5111,0.072], + [5113,0.003], + [5115,0.029], + [5117,0.122], + [5119,0.35], + [5121,0.007], + [5123,0.519], + [5125,0.047], + [5127,0.005], + [5129,0.001], + [5131,0.064], + [5133,0.043], + [5135,0.005], + [5137,0.001], + [5139,0.33], + [5141,0.004], + [5143,0.03], + [5145,0.04], + [5147,0.275], + [5149,0.014], + [6001,0.126], + [6003,0], + [6005,0.025], + [6007,0.016], + [6009,0.008], + [6011,0.009], + [6013,0.093], + [6015,0.035], + [6017,0.008], + [6019,0.053], + [6021,0.008], + [6023,0.011], + [6025,0.033], + [6027,0.006], + [6029,0.058], + [6031,0.072], + [6033,0.019], + [6035,0.081], + [6037,0.087], + [6039,0.037], + [6041,0.028], + [6043,0.008], + [6045,0.007], + [6047,0.039], + [6049,0.008], + [6051,0.003], + [6053,0.031], + [6055,0.02], + [6057,0.004], + [6059,0.017], + [6061,0.014], + [6063,0.01], + [6065,0.064], + [6067,0.104], + [6069,0.009], + [6071,0.089], + [6073,0.051], + [6075,0.061], + [6077,0.076], + [6079,0.021], + [6081,0.028], + [6083,0.02], + [6085,0.026], + [6087,0.011], + [6089,0.009], + [6091,0.002], + [6093,0.013], + [6095,0.147], + [6097,0.016], + [6099,0.029], + [6101,0.02], + [6103,0.006], + [6105,0.004], + [6107,0.016], + [6109,0.021], + [6111,0.018], + [6113,0.026], + [6115,0.033], + [8001,0.031], + [8003,0.011], + [8005,0.102], + [8007,0.003], + [8009,0.006], + [8011,0.076], + [8013,0.009], + [8014,0.011], + [8015,0.015], + [8017,0.004], + [8019,0.006], + [8021,0.003], + [8023,0.007], + [8025,0.096], + [8027,0.01], + [8029,0.005], + [8031,0.102], + [8033,0.002], + [8035,0.012], + [8037,0.007], + [8039,0.007], + [8041,0.062], + [8043,0.039], + [8045,0.007], + [8047,0.005], + [8049,0.004], + [8051,0.003], + [8053,0.004], + [8055,0.005], + [8057,0], + [8059,0.011], + [8061,0.003], + [8063,0.027], + [8065,0.004], + [8067,0.004], + [8069,0.008], + [8071,0.014], + [8073,0.053], + [8075,0.04], + [8077,0.006], + [8079,0.003], + [8081,0.003], + [8083,0.002], + [8085,0.004], + [8087,0.029], + [8089,0.008], + [8091,0.002], + [8093,0.004], + [8095,0.004], + [8097,0.005], + [8099,0.005], + [8101,0.02], + [8103,0.008], + [8105,0.004], + [8107,0.004], + [8109,0.002], + [8111,0], + [8113,0.004], + [8115,0.003], + [8117,0.008], + [8119,0.005], + [8121,null], + [8123,0.01], + [8125,0.002], + [9001,0.108], + [9003,0.133], + [9005,0.013], + [9007,0.047], + [9009,0.127], + [9011,0.058], + [9013,0.033], + [9015,0.022], + [10001,0.24], + [10003,0.237], + [10005,0.127], + [11001,0.507], + [12001,0.203], + [12003,0.136], + [12005,0.108], + [12007,0.204], + [12009,0.101], + [12011,0.267], + [12013,0.138], + [12015,0.057], + [12017,0.028], + [12019,0.099], + [12021,0.066], + [12023,0.175], + [12027,0.127], + [12029,0.084], + [12031,0.295], + [12033,0.229], + [12035,0.114], + [12037,0.138], + [12039,0.56], + [12041,0.053], + [12043,0.123], + [12045,0.187], + [12047,0.345], + [12049,0.07], + [12051,0.134], + [12053,0.051], + [12055,0.094], + [12057,0.167], + [12059,0.058], + [12061,0.09], + [12063,0.266], + [12065,0.362], + [12067,0.159], + [12069,0.098], + [12071,0.083], + [12073,0.303], + [12075,0.094], + [12077,0.179], + [12079,0.388], + [12081,0.087], + [12083,0.123], + [12085,0.054], + [12086,0.189], + [12087,0.057], + [12089,0.064], + [12091,0.093], + [12093,0.08], + [12095,0.208], + [12097,0.113], + [12099,0.173], + [12101,0.045], + [12103,0.103], + [12105,0.148], + [12107,0.162], + [12109,0.056], + [12111,0.191], + [12113,0.054], + [12115,0.047], + [12117,0.111], + [12119,0.097], + [12121,0.114], + [12123,0.207], + [12125,0.222], + [12127,0.105], + [12129,0.145], + [12131,0.058], + [12133,0.15], + [13001,0.186], + [13003,0.173], + [13005,0.154], + [13007,0.467], + [13009,0.415], + [13011,0.023], + [13013,0.114], + [13015,0.102], + [13017,0.346], + [13019,0.107], + [13021,0.521], + [13023,0.273], + [13025,0.029], + [13027,0.353], + [13029,0.142], + [13031,0.276], + [13033,0.495], + [13035,0.273], + [13037,0.613], + [13039,0.194], + [13043,0.244], + [13045,0.182], + [13047,0.022], + [13049,0.285], + [13051,0.401], + [13053,0.188], + [13055,0.111], + [13057,0.057], + [13059,0.266], + [13061,0.604], + [13063,0.661], + [13065,0.277], + [13067,0.25], + [13069,0.266], + [13071,0.224], + [13073,0.149], + [13075,0.273], + [13077,0.173], + [13079,0.223], + [13081,0.43], + [13083,0.009], + [13085,0.005], + [13087,0.411], + [13089,0.543], + [13091,0.298], + [13093,0.499], + [13095,0.671], + [13097,0.395], + [13099,0.496], + [13101,0.042], + [13103,0.135], + [13105,0.295], + [13107,0.335], + [13109,0.291], + [13111,0.004], + [13113,0.201], + [13115,0.142], + [13117,0.026], + [13119,0.084], + [13121,0.441], + [13123,0.005], + [13125,0.082], + [13127,0.26], + [13129,0.036], + [13131,0.287], + [13133,0.382], + [13135,0.236], + [13137,0.034], + [13139,0.074], + [13141,0.741], + [13143,0.047], + [13145,0.172], + [13147,0.187], + [13149,0.098], + [13151,0.369], + [13153,0.286], + [13155,0.259], + [13157,0.068], + [13159,0.218], + [13161,0.148], + [13163,0.544], + [13165,0.405], + [13167,0.35], + [13169,0.244], + [13171,0.308], + [13173,0.237], + [13175,0.358], + [13177,0.186], + [13179,0.422], + [13181,0.321], + [13183,0.252], + [13185,0.358], + [13187,0.011], + [13189,0.398], + [13191,0.359], + [13193,0.606], + [13195,0.084], + [13197,0.327], + [13199,0.391], + [13201,0.281], + [13205,0.477], + [13207,0.237], + [13209,0.263], + [13211,0.236], + [13213,0.006], + [13215,0.455], + [13217,0.409], + [13219,0.05], + [13221,0.172], + [13223,0.171], + [13225,0.459], + [13227,0.011], + [13229,0.089], + [13231,0.103], + [13233,0.125], + [13235,0.318], + [13237,0.26], + [13239,0.479], + [13241,0.01], + [13243,0.618], + [13245,0.542], + [13247,0.464], + [13249,0.233], + [13251,0.433], + [13253,0.334], + [13255,0.328], + [13257,0.109], + [13259,0.473], + [13261,0.518], + [13263,0.592], + [13265,0.596], + [13267,0.293], + [13269,0.393], + [13271,0.365], + [13273,0.612], + [13275,0.369], + [13277,0.29], + [13279,0.249], + [13281,0.004], + [13283,0.326], + [13285,0.334], + [13287,0.416], + [13289,0.413], + [13291,0.005], + [13293,0.28], + [13295,0.041], + [13297,0.156], + [13299,0.295], + [13301,0.617], + [13303,0.527], + [13305,0.199], + [13307,0.423], + [13309,0.352], + [13311,0.017], + [13313,0.037], + [13315,0.351], + [13317,0.428], + [13319,0.384], + [13321,0.276], + [15001,0.006], + [15003,0.02], + [15005,0], + [15007,0.004], + [15009,0.006], + [16001,0.011], + [16003,0.001], + [16005,0.008], + [16007,0.001], + [16009,0.003], + [16011,0.002], + [16013,0.002], + [16015,0.002], + [16017,0.001], + [16019,0.006], + [16021,0.003], + [16023,0.002], + [16025,0.003], + [16027,0.006], + [16029,0.001], + [16031,0.003], + [16033,0.007], + [16035,0.002], + [16037,0.002], + [16039,0.027], + [16041,0.002], + [16043,0.003], + [16045,0.001], + [16047,0.002], + [16049,0.003], + [16051,0.002], + [16053,0.003], + [16055,0.003], + [16057,0.008], + [16059,0.002], + [16061,0.004], + [16063,0.004], + [16065,0.005], + [16067,0.004], + [16069,0.003], + [16071,0.002], + [16073,0.002], + [16075,0.002], + [16077,0.003], + [16079,0.002], + [16081,0.002], + [16083,0.004], + [16085,0.001], + [16087,0.002], + [17001,0.035], + [17003,0.354], + [17005,0.061], + [17007,0.02], + [17009,0.185], + [17011,0.006], + [17013,0.001], + [17015,0.008], + [17017,0.031], + [17019,0.124], + [17021,0.014], + [17023,0.003], + [17025,0.003], + [17027,0.035], + [17029,0.038], + [17031,0.248], + [17033,0.047], + [17035,0.003], + [17037,0.064], + [17039,0.005], + [17041,0.003], + [17043,0.046], + [17045,0.003], + [17047,0.004], + [17049,0.002], + [17051,0.044], + [17053,0.006], + [17055,0.003], + [17057,0.034], + [17059,0.002], + [17061,0.009], + [17063,0.012], + [17065,0.004], + [17067,0.003], + [17069,0.003], + [17071,0.002], + [17073,0.016], + [17075,0.008], + [17077,0.143], + [17079,0.001], + [17081,0.084], + [17083,0.004], + [17085,0.005], + [17087,0.08], + [17089,0.057], + [17091,0.151], + [17093,0.057], + [17095,0.072], + [17097,0.07], + [17099,0.019], + [17101,0.096], + [17103,0.048], + [17105,0.049], + [17107,0.075], + [17109,0.05], + [17111,0.011], + [17113,0.073], + [17115,0.163], + [17117,0.008], + [17119,0.079], + [17121,0.039], + [17123,0.003], + [17125,0.004], + [17127,0.059], + [17129,0.006], + [17131,0.003], + [17133,0.002], + [17135,0.032], + [17137,0.06], + [17139,0.003], + [17141,0.009], + [17143,0.177], + [17145,0.083], + [17147,0.003], + [17149,0.017], + [17151,0.06], + [17153,0.324], + [17155,0.005], + [17157,0.097], + [17159,0.005], + [17161,0.09], + [17163,0.305], + [17165,0.04], + [17167,0.118], + [17169,0.032], + [17171,0.002], + [17173,0.002], + [17175,0.005], + [17177,0.09], + [17179,0.01], + [17181,0.009], + [17183,0.13], + [17185,0.006], + [17187,0.017], + [17189,0.007], + [17191,0.003], + [17193,0.004], + [17195,0.013], + [17197,0.112], + [17199,0.038], + [17201,0.122], + [17203,0.005], + [18001,0.003], + [18003,0.117], + [18005,0.018], + [18007,0.005], + [18009,0.004], + [18011,0.009], + [18013,0.003], + [18015,0.002], + [18017,0.015], + [18019,0.069], + [18021,0.003], + [18023,0.004], + [18025,0.002], + [18027,0.005], + [18029,0.006], + [18031,0.003], + [18033,0.004], + [18035,0.069], + [18037,0.003], + [18039,0.057], + [18041,0.013], + [18043,0.052], + [18045,0.002], + [18047,0.002], + [18049,0.007], + [18051,0.018], + [18053,0.07], + [18055,0.001], + [18057,0.035], + [18059,0.021], + [18061,0.005], + [18063,0.049], + [18065,0.022], + [18067,0.069], + [18069,0.004], + [18071,0.007], + [18073,0.006], + [18075,0.003], + [18077,0.017], + [18079,0.008], + [18081,0.011], + [18083,0.026], + [18085,0.007], + [18087,0.003], + [18089,0.259], + [18091,0.108], + [18093,0.004], + [18095,0.083], + [18097,0.267], + [18099,0.005], + [18101,0.001], + [18103,0.045], + [18105,0.033], + [18107,0.009], + [18109,0.003], + [18111,0.004], + [18113,0.004], + [18115,0.004], + [18117,0.009], + [18119,0.003], + [18121,0.023], + [18123,0.024], + [18125,0.003], + [18127,0.03], + [18129,0.009], + [18131,0.007], + [18133,0.04], + [18135,0.004], + [18137,0.002], + [18139,0.008], + [18141,0.127], + [18143,0.002], + [18145,0.01], + [18147,0.005], + [18149,0.003], + [18151,0.005], + [18153,0.045], + [18155,0.003], + [18157,0.04], + [18159,0.002], + [18161,0.004], + [18163,0.091], + [18165,0.001], + [18167,0.069], + [18169,0.005], + [18171,0.001], + [18173,0.013], + [18175,0.002], + [18177,0.05], + [18179,0.003], + [18181,0.003], + [18183,0.003], + [19001,0.001], + [19003,0.002], + [19005,0.008], + [19007,0.005], + [19009,0.002], + [19011,0.004], + [19013,0.089], + [19015,0.008], + [19017,0.008], + [19019,0.003], + [19021,0.027], + [19023,0.002], + [19025,0.002], + [19027,0.004], + [19029,0.003], + [19031,0.003], + [19033,0.013], + [19035,0.005], + [19037,0.003], + [19039,0.004], + [19041,0.004], + [19043,0.003], + [19045,0.026], + [19047,0.012], + [19049,0.014], + [19051,0.001], + [19053,0.018], + [19055,0.003], + [19057,0.051], + [19059,0.002], + [19061,0.027], + [19063,0.006], + [19065,0.009], + [19067,0.012], + [19069,0.004], + [19071,0.005], + [19073,0.003], + [19075,0.002], + [19077,0.001], + [19079,0.003], + [19081,0.005], + [19083,0.012], + [19085,0.002], + [19087,0.022], + [19089,0.003], + [19091,0.004], + [19093,0.002], + [19095,0.003], + [19097,0.003], + [19099,0.013], + [19101,0.013], + [19103,0.048], + [19105,0.02], + [19107,0.005], + [19109,0.003], + [19111,0.031], + [19113,0.04], + [19115,0.005], + [19117,0.002], + [19119,0.001], + [19121,0.003], + [19123,0.011], + [19125,0.007], + [19127,0.017], + [19129,0.004], + [19131,0.002], + [19133,0.004], + [19135,0.003], + [19137,0.002], + [19139,0.014], + [19141,0.005], + [19143,0.003], + [19145,0.022], + [19147,0.005], + [19149,0.003], + [19151,0.004], + [19153,0.06], + [19155,0.014], + [19157,0.012], + [19159,0.003], + [19161,0.003], + [19163,0.071], + [19165,0.003], + [19167,0.004], + [19169,0.025], + [19171,0.003], + [19173,null], + [19175,0.007], + [19177,0.002], + [19179,0.014], + [19181,0.005], + [19183,0.007], + [19185,0.003], + [19187,0.038], + [19189,0.008], + [19191,0.006], + [19193,0.024], + [19195,0.004], + [19197,0.004], + [20001,0.019], + [20003,0.005], + [20005,0.05], + [20007,0.005], + [20009,0.014], + [20011,0.028], + [20013,0.012], + [20015,0.017], + [20017,0.012], + [20019,0.004], + [20021,0.005], + [20023,0.001], + [20025,0], + [20027,0.004], + [20029,0.005], + [20031,0.005], + [20033,0.003], + [20035,0.028], + [20037,0.02], + [20039,0.006], + [20041,0.008], + [20043,0.031], + [20045,0.039], + [20047,0.007], + [20049,0], + [20051,0.009], + [20053,0.046], + [20055,0.023], + [20057,0.021], + [20059,0.013], + [20061,0.184], + [20063,0.003], + [20065,0.038], + [20067,0.006], + [20069,0.004], + [20071,0.005], + [20073,0.003], + [20075,0.003], + [20077,0.004], + [20079,0.016], + [20081,0.003], + [20083,0.01], + [20085,0.005], + [20087,0.005], + [20089,null], + [20091,0.043], + [20093,0.006], + [20095,0.002], + [20097,0.007], + [20099,0.047], + [20101,0.005], + [20103,0.094], + [20105,0.003], + [20107,0.004], + [20109,0.008], + [20111,0.024], + [20113,0.01], + [20115,0.008], + [20117,0.003], + [20119,0.007], + [20121,0.013], + [20123,0.002], + [20125,0.058], + [20127,0.004], + [20129,0.004], + [20131,0.006], + [20133,0.012], + [20135,0.006], + [20137,0.029], + [20139,0.003], + [20141,0.002], + [20143,0.008], + [20145,0.047], + [20147,0.004], + [20149,0.011], + [20151,0.012], + [20153,0.003], + [20155,0.03], + [20157,0.005], + [20159,0.013], + [20161,0.064], + [20163,0.005], + [20165,0.002], + [20167,0.008], + [20169,0.033], + [20171,0.004], + [20173,0.093], + [20175,0.034], + [20177,0.086], + [20179,0.001], + [20181,0.006], + [20183,0.003], + [20185,0.003], + [20187,0.006], + [20189,0.003], + [20191,0.01], + [20193,0.006], + [20195,0.004], + [20197,0.004], + [20199,0.001], + [20201,0.004], + [20203,0.009], + [20205,0.003], + [20207,0.004], + [20209,0.252], + [21001,0.027], + [21003,0.008], + [21005,0.02], + [21007,0.029], + [21009,0.039], + [21011,0.013], + [21013,0.022], + [21015,0.025], + [21017,0.06], + [21019,0.028], + [21021,0.075], + [21023,0.003], + [21025,0.003], + [21027,0.02], + [21029,0.007], + [21031,0.004], + [21033,0.051], + [21035,0.037], + [21037,0.025], + [21039,0.008], + [21041,0.015], + [21043,0.005], + [21045,0.005], + [21047,0.212], + [21049,0.048], + [21051,0.042], + [21053,0.004], + [21055,0.008], + [21057,0.026], + [21059,0.048], + [21061,0.014], + [21063,0.034], + [21065,0.002], + [21067,0.145], + [21069,0.013], + [21071,0.007], + [21073,0.104], + [21075,0.236], + [21077,0.013], + [21079,0.02], + [21081,0.007], + [21083,0.043], + [21085,0.01], + [21087,0.02], + [21089,0.007], + [21091,0.009], + [21093,0.116], + [21095,0.022], + [21097,0.02], + [21099,0.049], + [21101,0.078], + [21103,0.027], + [21105,0.092], + [21107,0.066], + [21109,0.001], + [21111,0.208], + [21113,0.031], + [21115,0.002], + [21117,0.046], + [21119,0.007], + [21121,0.011], + [21123,0.031], + [21125,0.007], + [21127,0.002], + [21129,0.023], + [21131,0.002], + [21133,0.003], + [21135,0.003], + [21137,0.023], + [21139,0.002], + [21141,0.066], + [21143,0.053], + [21145,0.11], + [21147,0.055], + [21149,0.006], + [21151,0.044], + [21153,0.001], + [21155,0.081], + [21157,0.002], + [21159,0.069], + [21161,0.064], + [21163,0.033], + [21165,0.018], + [21167,0.036], + [21169,0.015], + [21171,0.021], + [21173,0.028], + [21175,0.043], + [21177,0.045], + [21179,0.05], + [21181,0.006], + [21183,0.008], + [21185,0.043], + [21187,0.008], + [21189,0.003], + [21191,0.004], + [21193,0.015], + [21195,0.005], + [21197,0.006], + [21199,0.012], + [21201,0.002], + [21203,0.001], + [21205,0.015], + [21207,0.005], + [21209,0.052], + [21211,0.075], + [21213,0.094], + [21215,0.015], + [21217,0.05], + [21219,0.08], + [21221,0.082], + [21223,0.003], + [21225,0.12], + [21227,0.091], + [21229,0.063], + [21231,0.015], + [21233,0.041], + [21235,0.006], + [21237,0.001], + [21239,0.049], + [22001,0.181], + [22003,0.232], + [22005,0.222], + [22007,0.305], + [22009,0.295], + [22011,0.131], + [22013,0.423], + [22015,0.209], + [22017,0.472], + [22019,0.248], + [22021,0.172], + [22023,0.017], + [22025,0.315], + [22027,0.508], + [22029,0.409], + [22031,0.392], + [22033,0.453], + [22035,0.69], + [22037,0.449], + [22039,0.283], + [22041,0.315], + [22043,0.156], + [22045,0.32], + [22047,0.493], + [22049,0.298], + [22051,0.263], + [22053,0.173], + [22055,0.258], + [22057,0.132], + [22059,0.119], + [22061,0.405], + [22063,0.051], + [22065,0.61], + [22067,0.469], + [22069,0.414], + [22071,0.602], + [22073,0.366], + [22075,0.205], + [22077,0.363], + [22079,0.32], + [22081,0.395], + [22083,0.36], + [22085,0.166], + [22087,0.177], + [22089,0.266], + [22091,0.533], + [22093,0.506], + [22095,0.535], + [22097,0.413], + [22099,0.307], + [22101,0.325], + [22103,0.114], + [22105,0.303], + [22107,0.565], + [22109,0.189], + [22111,0.272], + [22113,0.143], + [22115,0.142], + [22117,0.31], + [22119,0.335], + [22121,0.377], + [22123,0.157], + [22125,0.465], + [22127,0.307], + [23001,0.036], + [23003,0.006], + [23005,0.024], + [23007,0.002], + [23009,0.004], + [23011,0.006], + [23013,0.005], + [23015,0.003], + [23017,0.004], + [23019,0.008], + [23021,0.003], + [23023,0.007], + [23025,0.004], + [23027,0.004], + [23029,0.004], + [23031,0.006], + [24001,0.08], + [24003,0.155], + [24005,0.261], + [24009,0.134], + [24011,0.139], + [24013,0.032], + [24015,0.062], + [24017,0.41], + [24019,0.277], + [24021,0.086], + [24023,0.01], + [24025,0.127], + [24027,0.175], + [24029,0.151], + [24031,0.172], + [24033,0.645], + [24035,0.069], + [24037,0.143], + [24039,0.423], + [24041,0.128], + [24043,0.096], + [24045,0.242], + [24047,0.136], + [24510,0.637], + [25001,0.019], + [25003,0.027], + [25005,0.033], + [25007,0.031], + [25009,0.038], + [25011,0.011], + [25013,0.09], + [25015,0.025], + [25017,0.047], + [25019,0.068], + [25021,0.057], + [25023,0.072], + [25025,0.216], + [25027,0.042], + [26001,0.001], + [26003,0.064], + [26005,0.012], + [26007,0.003], + [26009,0.002], + [26011,0.002], + [26013,0.072], + [26015,0.004], + [26017,0.016], + [26019,0.004], + [26021,0.153], + [26023,0.031], + [26025,0.109], + [26027,0.054], + [26029,0.003], + [26031,0.005], + [26033,0.065], + [26035,0.005], + [26037,0.021], + [26039,0.004], + [26041,0.002], + [26043,0.003], + [26045,0.063], + [26047,0.005], + [26049,0.207], + [26051,0.002], + [26053,0.041], + [26055,0.012], + [26057,0.055], + [26059,0.005], + [26061,0.005], + [26063,0.004], + [26065,0.118], + [26067,0.047], + [26069,0.005], + [26071,0.001], + [26073,0.024], + [26075,0.079], + [26077,0.109], + [26079,0.003], + [26081,0.097], + [26083,0.001], + [26085,0.092], + [26087,0.01], + [26089,0.003], + [26091,0.025], + [26093,0.004], + [26095,0.111], + [26097,0.005], + [26099,0.086], + [26101,0.029], + [26103,0.017], + [26105,0.006], + [26107,0.025], + [26109,0.003], + [26111,0.012], + [26113,0.003], + [26115,0.021], + [26117,0.023], + [26119,0.002], + [26121,0.145], + [26123,0.01], + [26125,0.136], + [26127,0.004], + [26129,0.002], + [26131,0.001], + [26133,0.006], + [26135,0.002], + [26137,0.003], + [26139,0.015], + [26141,0.004], + [26143,0.004], + [26145,0.19], + [26147,0.024], + [26149,0.026], + [26151,0.003], + [26153,0.001], + [26155,0.005], + [26157,0.011], + [26159,0.041], + [26161,0.127], + [26163,0.405], + [26165,0.004], + [27001,0.004], + [27003,0.044], + [27005,0.004], + [27007,0.006], + [27009,0.019], + [27011,0.002], + [27013,0.027], + [27015,0.002], + [27017,0.014], + [27019,0.012], + [27021,0.002], + [27023,0.005], + [27025,0.012], + [27027,0.014], + [27029,0.003], + [27031,0.003], + [27033,0.007], + [27035,0.005], + [27037,0.047], + [27039,0.003], + [27041,0.004], + [27043,0.003], + [27045,0.002], + [27047,0.007], + [27049,0.01], + [27051,0.003], + [27053,0.118], + [27055,0.005], + [27057,0.002], + [27059,0.006], + [27061,0.003], + [27063,0.005], + [27065,0.003], + [27067,0.023], + [27069,0.002], + [27071,0.006], + [27073,0.002], + [27075,0.001], + [27077,0.003], + [27079,0.003], + [27081,0.001], + [27083,0.023], + [27085,0.005], + [27087,0.002], + [27089,0.003], + [27091,0.003], + [27093,0.003], + [27095,0.004], + [27097,0.004], + [27099,0.021], + [27101,0.003], + [27103,0.02], + [27105,0.035], + [27107,0.002], + [27109,0.048], + [27111,0.008], + [27113,0.014], + [27115,0.02], + [27117,0.006], + [27119,0.009], + [27121,0.003], + [27123,0.11], + [27125,0.002], + [27127,0.005], + [27129,0.003], + [27131,0.032], + [27133,0.006], + [27135,0.002], + [27137,0.014], + [27139,0.026], + [27141,0.019], + [27143,0.003], + [27145,0.031], + [27147,0.028], + [27149,0.008], + [27151,0.005], + [27153,0.004], + [27155,0.004], + [27157,0.004], + [27159,0.008], + [27161,0.02], + [27163,0.036], + [27165,0.007], + [27167,0.002], + [27169,0.013], + [27171,0.011], + [27173,0.002], + [28001,0.535], + [28003,0.114], + [28005,0.413], + [28007,0.42], + [28009,0.373], + [28011,0.642], + [28013,0.277], + [28015,0.327], + [28017,0.421], + [28019,0.301], + [28021,0.844], + [28023,0.344], + [28025,0.582], + [28027,0.755], + [28029,0.509], + [28031,0.349], + [28033,0.219], + [28035,0.361], + [28037,0.344], + [28039,0.081], + [28041,0.26], + [28043,0.417], + [28045,0.071], + [28047,0.221], + [28049,0.691], + [28051,0.834], + [28053,0.745], + [28055,0.644], + [28057,0.059], + [28059,0.215], + [28061,0.526], + [28063,0.857], + [28065,0.599], + [28067,0.283], + [28069,0.601], + [28071,0.237], + [28073,0.196], + [28075,0.428], + [28077,0.307], + [28079,0.406], + [28081,0.273], + [28083,0.722], + [28085,0.299], + [28087,0.435], + [28089,0.382], + [28091,0.323], + [28093,0.469], + [28095,0.309], + [28097,0.455], + [28099,0.209], + [28101,0.302], + [28103,0.716], + [28105,0.366], + [28107,0.486], + [28109,0.123], + [28111,0.2], + [28113,0.515], + [28115,0.138], + [28117,0.138], + [28119,0.696], + [28121,0.188], + [28123,0.375], + [28125,0.71], + [28127,0.351], + [28129,0.229], + [28131,0.191], + [28133,0.729], + [28135,0.564], + [28137,0.303], + [28139,0.159], + [28141,0.026], + [28143,0.735], + [28145,0.145], + [28147,0.445], + [28149,0.47], + [28151,0.713], + [28153,0.389], + [28155,0.199], + [28157,0.708], + [28159,0.456], + [28161,0.379], + [28163,0.571], + [29001,0.016], + [29003,0.004], + [29005,0.003], + [29007,0.064], + [29009,0.003], + [29011,0.004], + [29013,0.009], + [29015,0.003], + [29017,0.003], + [29019,0.093], + [29021,0.052], + [29023,0.053], + [29025,0.004], + [29027,0.046], + [29029,0.004], + [29031,0.07], + [29033,0.017], + [29035,0.001], + [29037,0.035], + [29039,0.001], + [29041,0.02], + [29043,0.006], + [29045,0.003], + [29047,0.052], + [29049,0.014], + [29051,0.112], + [29053,0.069], + [29055,0.003], + [29057,0.004], + [29059,0.002], + [29061,0.003], + [29063,0.113], + [29065,0.004], + [29067,0.002], + [29069,0.097], + [29071,0.008], + [29073,0.002], + [29075,0.003], + [29077,0.029], + [29079,0.006], + [29081,0.003], + [29083,0.01], + [29085,0.003], + [29087,0.002], + [29089,0.052], + [29091,0.004], + [29093,0.013], + [29095,0.239], + [29097,0.019], + [29099,0.008], + [29101,0.043], + [29103,0.003], + [29105,0.007], + [29107,0.022], + [29109,0.003], + [29111,0.032], + [29113,0.019], + [29115,0.007], + [29117,0.024], + [29119,0.006], + [29121,0.023], + [29123,0.003], + [29125,0.003], + [29127,0.049], + [29129,0.002], + [29131,0.004], + [29133,0.24], + [29135,0.037], + [29137,0.03], + [29139,0.016], + [29141,0.006], + [29143,0.158], + [29145,0.008], + [29147,0.024], + [29149,0.001], + [29151,0.002], + [29153,0.001], + [29155,0.268], + [29157,0.004], + [29159,0.03], + [29161,0.022], + [29163,0.072], + [29165,0.059], + [29167,0.008], + [29169,0.114], + [29171,0.002], + [29173,0.011], + [29175,0.059], + [29177,0.012], + [29179,0.007], + [29181,0.003], + [29183,0.041], + [29185,0.005], + [29186,0.007], + [29187,0.042], + [29189,0.233], + [29195,0.053], + [29197,null], + [29199,0.001], + [29201,0.114], + [29203,0.002], + [29205,0.005], + [29207,0.009], + [29209,0.002], + [29211,0.005], + [29213,0.009], + [29215,0.034], + [29217,0.005], + [29219,0.019], + [29221,0.022], + [29223,0.003], + [29225,0.009], + [29227,0.006], + [29229,0.005], + [29510,0.492], + [30001,0.002], + [30003,0.002], + [30005,0.001], + [30007,0.003], + [30009,0.003], + [30011,0.001], + [30013,0.012], + [30015,0.001], + [30017,0.003], + [30019,0.002], + [30021,0.003], + [30023,0.004], + [30025,0.001], + [30027,0.002], + [30029,0.002], + [30031,0.003], + [30033,0.002], + [30035,0.001], + [30037,0], + [30039,0.001], + [30041,0.003], + [30043,0.001], + [30045,null], + [30047,0.003], + [30049,0.003], + [30051,0.001], + [30053,0.001], + [30055,0.002], + [30057,0.002], + [30059,0.001], + [30061,0.003], + [30063,0.004], + [30065,0.002], + [30067,0.001], + [30069,0], + [30071,0], + [30073,0.001], + [30075,0.001], + [30077,0.01], + [30079,0], + [30081,0.002], + [30083,0.001], + [30085,0.001], + [30087,0.003], + [30089,0.001], + [30091,0.002], + [30093,0.003], + [30095,0.001], + [30097,0.001], + [30099,0], + [30101,0.005], + [30103,0], + [30105,0.002], + [30107,0.003], + [30109,0], + [30111,0.006], + [31001,0.008], + [31003,0.003], + [31005,0], + [31007,0], + [31009,0.002], + [31011,0.004], + [31013,0.005], + [31015,0], + [31017,null], + [31019,0.008], + [31021,0.004], + [31023,0.003], + [31025,0.003], + [31027,0.001], + [31029,0.001], + [31031,0.002], + [31033,0.002], + [31035,0.003], + [31037,0.008], + [31039,0.001], + [31041,0.003], + [31043,0.031], + [31045,0.015], + [31047,0.031], + [31049,0.001], + [31051,0.003], + [31053,0.006], + [31055,0.116], + [31057,0.003], + [31059,0.006], + [31061,0.001], + [31063,0], + [31065,0.002], + [31067,0.003], + [31069,0.002], + [31071,0.001], + [31073,0.004], + [31075,0], + [31077,0.006], + [31079,0.017], + [31081,0.002], + [31083,0], + [31085,0], + [31087,0.002], + [31089,0.002], + [31091,0], + [31093,0.002], + [31095,0.003], + [31097,0.053], + [31099,0.002], + [31101,0.002], + [31103,0], + [31105,0.002], + [31107,0.001], + [31109,0.035], + [31111,0.007], + [31113,0.001], + [31115,0.002], + [31117,0.004], + [31119,0.013], + [31121,0.002], + [31123,0.002], + [31125,0.002], + [31127,0.009], + [31129,0.001], + [31131,0.005], + [31133,0.003], + [31135,null], + [31137,0.001], + [31139,0.002], + [31141,0.004], + [31143,null], + [31145,0.007], + [31147,0.002], + [31149,0.001], + [31151,0.009], + [31153,0.04], + [31155,0.003], + [31157,0.006], + [31159,0.004], + [31161,0.002], + [31163,0.001], + [31165,0.001], + [31167,0.007], + [31169,null], + [31171,0.002], + [31173,0.002], + [31175,0.001], + [31177,0.006], + [31179,0.013], + [31181,0.005], + [31183,0], + [31185,0.012], + [32001,0.016], + [32003,0.105], + [32005,0.004], + [32007,0.008], + [32009,0], + [32011,0.001], + [32013,0.005], + [32015,0.003], + [32017,0.023], + [32019,0.008], + [32021,0.041], + [32023,0.02], + [32027,0.037], + [32029,0.01], + [32031,0.023], + [32033,0.039], + [32510,0.019], + [33001,0.005], + [33003,0.003], + [33005,0.005], + [33007,0.004], + [33009,0.009], + [33011,0.021], + [33013,0.01], + [33015,0.007], + [33017,0.01], + [33019,0.004], + [34001,0.161], + [34003,0.058], + [34005,0.166], + [34007,0.196], + [34009,0.047], + [34011,0.202], + [34013,0.409], + [34015,0.101], + [34017,0.132], + [34019,0.027], + [34021,0.203], + [34023,0.097], + [34025,0.074], + [34027,0.031], + [34029,0.032], + [34031,0.128], + [34033,0.141], + [34035,0.089], + [34037,0.018], + [34039,0.221], + [34041,0.035], + [35001,0.03], + [35003,0.004], + [35005,0.02], + [35006,0.01], + [35007,0.005], + [35009,0.063], + [35011,0.001], + [35013,0.017], + [35015,0.014], + [35017,0.009], + [35019,0.017], + [35021,0.003], + [35023,0.006], + [35025,0.041], + [35027,0.005], + [35028,0.006], + [35029,0.011], + [35031,0.005], + [35033,0.007], + [35035,0.035], + [35037,0.011], + [35039,0.005], + [35041,0.018], + [35043,0.021], + [35045,0.006], + [35047,0.014], + [35049,0.009], + [35051,0.004], + [35053,0.011], + [35055,0.004], + [35057,0.013], + [35059,0.018], + [35061,0.014], + [36001,0.127], + [36003,0.011], + [36005,0.365], + [36007,0.048], + [36009,0.013], + [36011,0.04], + [36013,0.024], + [36015,0.066], + [36017,0.007], + [36019,0.039], + [36021,0.045], + [36023,0.015], + [36025,0.016], + [36027,0.099], + [36029,0.135], + [36031,0.027], + [36033,0.061], + [36035,0.019], + [36037,0.027], + [36039,0.057], + [36041,0.007], + [36043,0.011], + [36045,0.051], + [36047,0.343], + [36049,0.007], + [36051,0.024], + [36053,0.018], + [36055,0.152], + [36057,0.019], + [36059,0.111], + [36061,0.156], + [36063,0.069], + [36065,0.063], + [36067,0.11], + [36069,0.023], + [36071,0.102], + [36073,0.059], + [36075,0.008], + [36077,0.017], + [36079,0.024], + [36081,0.191], + [36083,0.065], + [36085,0.106], + [36087,0.119], + [36089,0.022], + [36091,0.015], + [36093,0.095], + [36095,0.013], + [36097,0.009], + [36099,0.046], + [36101,0.016], + [36103,0.074], + [36105,0.091], + [36107,0.007], + [36109,0.04], + [36111,0.06], + [36113,0.009], + [36115,0.03], + [36117,0.031], + [36119,0.146], + [36121,0.056], + [36123,0.008], + [37001,0.188], + [37003,0.055], + [37005,0.013], + [37007,0.486], + [37009,0.006], + [37011,0.04], + [37013,0.256], + [37015,0.625], + [37017,0.349], + [37019,0.114], + [37021,0.064], + [37023,0.066], + [37025,0.153], + [37027,0.049], + [37029,0.132], + [37031,0.061], + [37033,0.338], + [37035,0.084], + [37037,0.132], + [37039,0.013], + [37041,0.343], + [37043,0.006], + [37045,0.207], + [37047,0.305], + [37049,0.224], + [37051,0.367], + [37053,0.058], + [37055,0.025], + [37057,0.089], + [37059,0.063], + [37061,0.253], + [37063,0.38], + [37065,0.574], + [37067,0.26], + [37069,0.267], + [37071,0.153], + [37073,0.332], + [37075,0.002], + [37077,0.328], + [37079,0.373], + [37081,0.325], + [37083,0.532], + [37085,0.209], + [37087,0.011], + [37089,0.03], + [37091,0.605], + [37093,0.335], + [37095,0.316], + [37097,0.119], + [37099,0.018], + [37101,0.151], + [37103,0.324], + [37105,0.2], + [37107,0.405], + [37109,0.055], + [37111,0.038], + [37113,0.013], + [37115,0.012], + [37117,0.435], + [37119,0.308], + [37121,0.004], + [37123,0.188], + [37125,0.134], + [37127,0.372], + [37129,0.148], + [37131,0.584], + [37133,0.156], + [37135,0.119], + [37137,0.2], + [37139,0.378], + [37141,0.178], + [37143,0.249], + [37145,0.27], + [37147,0.341], + [37149,0.045], + [37151,0.058], + [37153,0.306], + [37155,0.243], + [37157,0.189], + [37159,0.162], + [37161,0.101], + [37163,0.27], + [37165,0.386], + [37167,0.109], + [37169,0.04], + [37171,0.037], + [37173,0.005], + [37175,0.039], + [37177,0.382], + [37179,0.117], + [37181,0.499], + [37183,0.207], + [37185,0.523], + [37187,0.498], + [37189,0.017], + [37191,0.314], + [37193,0.041], + [37195,0.39], + [37197,0.031], + [37199,0.008], + [38001,0.003], + [38003,0.008], + [38005,0], + [38007,0.003], + [38009,0.004], + [38011,null], + [38013,0.002], + [38015,0.006], + [38017,0.023], + [38019,0.001], + [38021,0.007], + [38023,0.002], + [38025,0.002], + [38027,0.002], + [38029,0.001], + [38031,0.001], + [38033,0.006], + [38035,0.02], + [38037,0], + [38039,0.003], + [38041,0.002], + [38043,0.002], + [38045,0.001], + [38047,0.001], + [38049,0.001], + [38051,0.002], + [38053,0.001], + [38055,0.001], + [38057,0.002], + [38059,0.004], + [38061,0.002], + [38063,0.003], + [38065,0.002], + [38067,0.003], + [38069,0.005], + [38071,0.004], + [38073,0.003], + [38075,0.001], + [38077,0.007], + [38079,0.002], + [38081,0.001], + [38083,0.003], + [38085,0.002], + [38087,0], + [38089,0.008], + [38091,0.002], + [38093,0.007], + [38095,0.001], + [38097,0.005], + [38099,0.002], + [38101,0.025], + [38103,0.001], + [38105,0.003], + [39001,0.003], + [39003,0.119], + [39005,0.007], + [39007,0.035], + [39009,0.027], + [39011,0.003], + [39013,0.04], + [39015,0.009], + [39017,0.073], + [39019,0.005], + [39021,0.022], + [39023,0.088], + [39025,0.012], + [39027,0.022], + [39029,0.022], + [39031,0.011], + [39033,0.009], + [39035,0.297], + [39037,0.004], + [39039,0.019], + [39041,0.034], + [39043,0.086], + [39045,0.06], + [39047,0.02], + [39049,0.212], + [39051,0.004], + [39053,0.026], + [39055,0.013], + [39057,0.072], + [39059,0.015], + [39061,0.257], + [39063,0.015], + [39065,0.008], + [39067,0.021], + [39069,0.004], + [39071,0.014], + [39073,0.007], + [39075,0.003], + [39077,0.01], + [39079,0.006], + [39081,0.056], + [39083,0.008], + [39085,0.032], + [39087,0.02], + [39089,0.034], + [39091,0.016], + [39093,0.086], + [39095,0.19], + [39097,0.066], + [39099,0.157], + [39101,0.057], + [39103,0.012], + [39105,0.009], + [39107,0.002], + [39109,0.02], + [39111,0.004], + [39113,0.209], + [39115,0.029], + [39117,0.003], + [39119,0.038], + [39121,0.025], + [39123,0.008], + [39125,0.009], + [39127,0.003], + [39129,0.034], + [39131,0.009], + [39133,0.041], + [39135,0.004], + [39137,0.003], + [39139,0.094], + [39141,0.062], + [39143,0.028], + [39145,0.027], + [39147,0.023], + [39149,0.019], + [39151,0.076], + [39153,0.144], + [39155,0.083], + [39157,0.008], + [39159,0.024], + [39161,0.009], + [39163,0.003], + [39165,0.033], + [39167,0.011], + [39169,0.015], + [39171,0.01], + [39173,0.024], + [39175,0.002], + [40001,0.002], + [40003,0.041], + [40005,0.037], + [40007,0.008], + [40009,0.04], + [40011,0.026], + [40013,0.015], + [40015,0.028], + [40017,0.025], + [40019,0.067], + [40021,0.013], + [40023,0.109], + [40025,0.002], + [40027,0.042], + [40029,0.005], + [40031,0.175], + [40033,0.021], + [40035,0.03], + [40037,0.022], + [40039,0.03], + [40041,0.002], + [40043,0.003], + [40045,0.003], + [40047,0.03], + [40049,0.026], + [40051,0.024], + [40053,0.008], + [40055,0.071], + [40057,0.072], + [40059,null], + [40061,0.004], + [40063,0.053], + [40065,0.075], + [40067,0.006], + [40069,0.019], + [40071,0.021], + [40073,0.011], + [40075,0.042], + [40077,0.007], + [40079,0.021], + [40081,0.018], + [40083,0.091], + [40085,0.018], + [40087,0.007], + [40089,0.087], + [40091,0.032], + [40093,0.004], + [40095,0.015], + [40097,0.004], + [40099,0.013], + [40101,0.113], + [40103,0.018], + [40105,0.02], + [40107,0.083], + [40109,0.154], + [40111,0.087], + [40113,0.114], + [40115,0.008], + [40117,0.007], + [40119,0.036], + [40121,0.033], + [40123,0.024], + [40125,0.029], + [40127,0.007], + [40129,0.004], + [40131,0.01], + [40133,0.046], + [40135,0.017], + [40137,0.019], + [40139,0.016], + [40141,0.077], + [40143,0.107], + [40145,0.037], + [40147,0.024], + [40149,0.007], + [40151,0.033], + [40153,0.016], + [41001,0.004], + [41003,0.009], + [41005,0.008], + [41007,0.005], + [41009,0.004], + [41011,0.004], + [41013,0.002], + [41015,0.003], + [41017,0.004], + [41019,0.003], + [41021,0.002], + [41023,0.002], + [41025,0.003], + [41027,0.005], + [41029,0.007], + [41031,0.006], + [41033,0.004], + [41035,0.007], + [41037,0.005], + [41039,0.01], + [41041,0.004], + [41043,0.005], + [41045,0.012], + [41047,0.011], + [41049,0.005], + [41051,0.056], + [41053,0.006], + [41055,0.002], + [41057,0.003], + [41059,0.008], + [41061,0.005], + [41063,0.004], + [41065,0.004], + [41067,0.018], + [41069,0], + [41071,0.009], + [42001,0.015], + [42003,0.132], + [42005,0.008], + [42007,0.063], + [42009,0.005], + [42011,0.049], + [42013,0.017], + [42015,0.005], + [42017,0.036], + [42019,0.011], + [42021,0.036], + [42023,0.003], + [42025,0.015], + [42027,0.03], + [42029,0.061], + [42031,0.012], + [42033,0.023], + [42035,0.016], + [42037,0.019], + [42039,0.017], + [42041,0.032], + [42043,0.18], + [42045,0.197], + [42047,0.003], + [42049,0.072], + [42051,0.046], + [42053,0.18], + [42055,0.031], + [42057,0.01], + [42059,0.033], + [42061,0.052], + [42063,0.027], + [42065,0.003], + [42067,0.006], + [42069,0.025], + [42071,0.037], + [42073,0.038], + [42075,0.022], + [42077,0.061], + [42079,0.034], + [42081,0.045], + [42083,0.024], + [42085,0.058], + [42087,0.006], + [42089,0.132], + [42091,0.087], + [42093,0.014], + [42095,0.05], + [42097,0.02], + [42099,0.006], + [42101,0.434], + [42103,0.058], + [42105,0.004], + [42107,0.027], + [42109,0.011], + [42111,0.024], + [42113,0.026], + [42115,0.004], + [42117,0.008], + [42119,0.074], + [42121,0.01], + [42123,0.004], + [42125,0.033], + [42127,0.031], + [42129,0.023], + [42131,0.007], + [42133,0.056], + [44001,0.008], + [44003,0.014], + [44005,0.035], + [44007,0.085], + [44009,0.012], + [45001,0.283], + [45003,0.246], + [45005,0.736], + [45007,0.16], + [45009,0.615], + [45011,0.443], + [45013,0.193], + [45015,0.25], + [45017,0.426], + [45019,0.298], + [45021,0.204], + [45023,0.374], + [45025,0.326], + [45027,0.501], + [45029,0.39], + [45031,0.416], + [45033,0.461], + [45035,0.258], + [45037,0.372], + [45039,0.591], + [45041,0.413], + [45043,0.336], + [45045,0.181], + [45047,0.314], + [45049,0.539], + [45051,0.134], + [45053,0.46], + [45055,0.246], + [45057,0.238], + [45059,0.254], + [45061,0.643], + [45063,0.143], + [45065,0.497], + [45067,0.559], + [45069,0.509], + [45071,0.31], + [45073,0.076], + [45075,0.622], + [45077,0.066], + [45079,0.459], + [45081,0.263], + [45083,0.206], + [45085,0.469], + [45087,0.313], + [45089,0.658], + [45091,0.19], + [46003,0.004], + [46005,0.008], + [46007,0.001], + [46009,0.01], + [46011,0.008], + [46013,0.005], + [46015,0.002], + [46017,0.002], + [46019,0.002], + [46021,0.001], + [46023,0.001], + [46025,0.002], + [46027,0.013], + [46029,0.003], + [46031,0.001], + [46033,0.002], + [46035,0.004], + [46037,0.001], + [46039,0.003], + [46041,0.001], + [46043,0.004], + [46045,0.001], + [46047,0.007], + [46049,0.001], + [46051,null], + [46053,null], + [46055,0.002], + [46057,0.002], + [46059,null], + [46061,0], + [46063,0.001], + [46065,0.005], + [46067,0.004], + [46069,0.001], + [46071,0.002], + [46073,0], + [46075,0.001], + [46077,0.001], + [46079,0.005], + [46081,0.004], + [46083,0.007], + [46085,0.001], + [46087,0.001], + [46089,0], + [46091,0.002], + [46093,0.013], + [46095,0.001], + [46097,0.001], + [46099,0.038], + [46101,0.005], + [46102,0], + [46103,0.01], + [46105,0.001], + [46107,0.001], + [46109,0.001], + [46111,null], + [46115,0.003], + [46117,0.003], + [46119,0.001], + [46121,0.002], + [46123,0.001], + [46125,0.002], + [46127,0.007], + [46129,0.001], + [46135,0.015], + [46137,0.002], + [47001,0.038], + [47003,0.079], + [47005,0.019], + [47007,0.037], + [47009,0.027], + [47011,0.043], + [47013,0.003], + [47015,0.012], + [47017,0.101], + [47019,0.013], + [47021,0.014], + [47023,0.092], + [47025,0.009], + [47027,0.013], + [47029,0.019], + [47031,0.035], + [47033,0.126], + [47035,0.003], + [47037,0.277], + [47039,0.029], + [47041,0.013], + [47043,0.041], + [47045,0.143], + [47047,0.281], + [47049,0.002], + [47051,0.051], + [47053,0.188], + [47055,0.102], + [47057,0.005], + [47059,0.02], + [47061,0.003], + [47063,0.04], + [47065,0.202], + [47067,0.004], + [47069,0.414], + [47071,0.034], + [47073,0.013], + [47075,0.504], + [47077,0.079], + [47079,0.08], + [47081,0.045], + [47083,0.023], + [47085,0.025], + [47087,0.003], + [47089,0.02], + [47091,0.021], + [47093,0.088], + [47095,0.277], + [47097,0.349], + [47099,0.015], + [47101,0.016], + [47103,0.068], + [47105,0.011], + [47107,0.04], + [47109,0.059], + [47111,0.004], + [47113,0.363], + [47115,0.036], + [47117,0.065], + [47119,0.125], + [47121,0.01], + [47123,0.021], + [47125,0.191], + [47127,0.023], + [47129,0.037], + [47131,0.106], + [47133,0.004], + [47135,0.015], + [47137,0.001], + [47139,0.003], + [47141,0.02], + [47143,0.019], + [47145,0.027], + [47147,0.074], + [47149,0.125], + [47151,0.001], + [47153,0.001], + [47155,0.008], + [47157,0.521], + [47159,0.021], + [47161,0.014], + [47163,0.021], + [47165,0.064], + [47167,0.187], + [47169,0.096], + [47171,0.002], + [47173,0.001], + [47175,0.004], + [47177,0.029], + [47179,0.039], + [47181,0.057], + [47183,0.078], + [47185,0.018], + [47187,0.043], + [47189,0.064], + [48001,0.211], + [48003,0.015], + [48005,0.15], + [48007,0.013], + [48009,0.004], + [48011,0.006], + [48013,0.008], + [48015,0.094], + [48017,0.012], + [48019,0.005], + [48021,0.078], + [48023,0.02], + [48025,0.081], + [48027,0.215], + [48029,0.075], + [48031,0.007], + [48033,0], + [48035,0.016], + [48037,0.242], + [48039,0.121], + [48041,0.11], + [48043,0.011], + [48045,0.025], + [48047,0.005], + [48049,0.036], + [48051,0.122], + [48053,0.018], + [48055,0.068], + [48057,0.026], + [48059,0.01], + [48061,0.005], + [48063,0.174], + [48065,0.006], + [48067,0.174], + [48069,0.02], + [48071,0.082], + [48073,0.147], + [48075,0.099], + [48077,0.005], + [48079,0.04], + [48081,0.002], + [48083,0.022], + [48085,0.085], + [48087,0.044], + [48089,0.131], + [48091,0.016], + [48093,0.004], + [48095,0.019], + [48097,0.027], + [48099,0.158], + [48101,0.088], + [48103,0.029], + [48105,0.008], + [48107,0.034], + [48109,0.006], + [48111,0.013], + [48113,0.223], + [48115,0.065], + [48117,0.012], + [48119,0.073], + [48121,0.084], + [48123,0.093], + [48125,0.041], + [48127,0.01], + [48129,0.045], + [48131,0.009], + [48133,0.018], + [48135,0.045], + [48137,0.005], + [48139,0.09], + [48141,0.031], + [48143,0.012], + [48145,0.253], + [48147,0.068], + [48149,0.066], + [48151,0.034], + [48153,0.036], + [48155,0.04], + [48157,0.215], + [48159,0.039], + [48161,0.161], + [48163,0.034], + [48165,0.017], + [48167,0.138], + [48169,0.065], + [48171,0.004], + [48173,0.012], + [48175,0.048], + [48177,0.074], + [48179,0.049], + [48181,0.059], + [48183,0.2], + [48185,0.165], + [48187,0.065], + [48189,0.053], + [48191,0.072], + [48193,0.005], + [48195,0.006], + [48197,0.059], + [48199,0.058], + [48201,0.189], + [48203,0.219], + [48205,0.069], + [48207,0.037], + [48209,0.035], + [48211,0.002], + [48213,0.062], + [48215,0.006], + [48217,0.063], + [48219,0.036], + [48221,0.005], + [48223,0.071], + [48225,0.26], + [48227,0.062], + [48229,0.014], + [48231,0.083], + [48233,0.025], + [48235,0.007], + [48237,0.038], + [48239,0.07], + [48241,0.167], + [48243,0.01], + [48245,0.338], + [48247,0.004], + [48249,0.006], + [48251,0.026], + [48253,0.116], + [48255,0.093], + [48257,0.104], + [48259,0.005], + [48261,0.012], + [48263,0.01], + [48265,0.018], + [48267,0.004], + [48269,0], + [48271,0.015], + [48273,0.037], + [48275,0.058], + [48277,0.135], + [48279,0.043], + [48281,0.032], + [48283,0.005], + [48285,0.068], + [48287,0.109], + [48289,0.072], + [48291,0.108], + [48293,0.175], + [48295,0.008], + [48297,0.044], + [48299,0.006], + [48301,0], + [48303,0.075], + [48305,0.021], + [48307,0.019], + [48309,0.148], + [48311,0.011], + [48313,0.199], + [48315,0.22], + [48317,0.016], + [48319,0.004], + [48321,0.114], + [48323,0.002], + [48325,0.022], + [48327,0.006], + [48329,0.066], + [48331,0.1], + [48333,0.005], + [48335,0.113], + [48337,0.003], + [48339,0.043], + [48341,0.015], + [48343,0.23], + [48345,0.02], + [48347,0.182], + [48349,0.138], + [48351,0.201], + [48353,0.047], + [48355,0.04], + [48357,0.004], + [48359,0.03], + [48361,0.085], + [48363,0.022], + [48365,0.163], + [48367,0.016], + [48369,0.012], + [48371,0.037], + [48373,0.115], + [48375,0.102], + [48377,0.006], + [48379,0.023], + [48381,0.024], + [48383,0.021], + [48385,0.007], + [48387,0.174], + [48389,0.05], + [48391,0.065], + [48393,0.001], + [48395,0.216], + [48397,0.058], + [48399,0.018], + [48401,0.177], + [48403,0.072], + [48405,0.227], + [48407,0.103], + [48409,0.017], + [48411,0.033], + [48413,0.011], + [48415,0.047], + [48417,0.009], + [48419,0.174], + [48421,0.005], + [48423,0.179], + [48425,0.007], + [48427,0.001], + [48429,0.021], + [48431,0.012], + [48433,0.026], + [48435,0.004], + [48437,0.072], + [48439,0.149], + [48441,0.074], + [48443,0.007], + [48445,0.048], + [48447,0.007], + [48449,0.096], + [48451,0.04], + [48453,0.085], + [48455,0.094], + [48457,0.11], + [48459,0.087], + [48461,0.019], + [48463,0.006], + [48465,0.015], + [48467,0.027], + [48469,0.064], + [48471,0.225], + [48473,0.249], + [48475,0.049], + [48477,0.176], + [48479,0.005], + [48481,0.141], + [48483,0.021], + [48485,0.105], + [48487,0.08], + [48489,0.021], + [48491,0.062], + [48493,0.016], + [48495,0.022], + [48497,0.011], + [48499,0.047], + [48501,0.009], + [48503,0.013], + [48505,0.001], + [48507,0.008], + [49001,0.002], + [49003,0.003], + [49005,0.006], + [49007,0.004], + [49009,0.004], + [49011,0.012], + [49013,0.002], + [49015,0.002], + [49017,0.004], + [49019,0.003], + [49021,0.005], + [49023,0.002], + [49025,0.002], + [49027,0.001], + [49029,null], + [49031,0.001], + [49033,0], + [49035,0.016], + [49037,0.002], + [49039,0.008], + [49041,0.002], + [49043,0.004], + [49045,0.007], + [49047,0.004], + [49049,0.005], + [49051,0.003], + [49053,0.006], + [49055,0.001], + [49057,0.014], + [50001,0.008], + [50003,0.008], + [50005,0.005], + [50007,0.021], + [50009,0.003], + [50011,0.004], + [50013,0.004], + [50015,0.006], + [50017,0.004], + [50019,0.006], + [50021,0.005], + [50023,0.007], + [50025,0.009], + [50027,0.006], + [51001,0.281], + [51003,0.097], + [51005,0.047], + [51007,0.231], + [51009,0.19], + [51011,0.201], + [51013,0.085], + [51015,0.04], + [51017,0.047], + [51019,0.057], + [51021,0.033], + [51023,0.03], + [51025,0.573], + [51027,0.026], + [51029,0.351], + [51031,0.142], + [51033,0.293], + [51035,0.006], + [51036,0.484], + [51037,0.298], + [51041,0.219], + [51043,0.053], + [51045,0.001], + [51047,0.158], + [51049,0.326], + [51051,0.003], + [51053,0.329], + [51057,0.381], + [51059,0.092], + [51061,0.082], + [51063,0.018], + [51065,0.153], + [51067,0.081], + [51069,0.041], + [51071,0.015], + [51073,0.087], + [51075,0.192], + [51077,0.021], + [51079,0.063], + [51081,0.598], + [51083,0.367], + [51085,0.093], + [51087,0.295], + [51089,0.219], + [51091,0.003], + [51093,0.247], + [51095,0.131], + [51097,0.284], + [51099,0.179], + [51101,0.177], + [51103,0.28], + [51105,0.037], + [51107,0.073], + [51109,0.177], + [51111,0.347], + [51113,0.098], + [51115,0.092], + [51117,0.368], + [51119,0.18], + [51121,0.039], + [51125,0.131], + [51127,0.135], + [51131,0.365], + [51133,0.253], + [51135,0.393], + [51137,0.127], + [51139,0.019], + [51141,0.059], + [51143,0.221], + [51145,0.136], + [51147,0.332], + [51149,0.32], + [51153,0.202], + [51155,0.05], + [51157,0.044], + [51159,0.303], + [51161,0.05], + [51163,0.027], + [51165,0.017], + [51167,0.008], + [51169,0.006], + [51171,0.017], + [51173,0.02], + [51175,0.372], + [51177,0.153], + [51179,0.17], + [51181,0.461], + [51183,0.581], + [51185,0.03], + [51187,0.046], + [51191,0.013], + [51193,0.28], + [51195,0.052], + [51197,0.028], + [51199,0.134], + [51510,0.218], + [51520,0.057], + [51530,0.052], + [51540,0.194], + [51550,0.298], + [51570,0.102], + [51580,0.125], + [51590,0.483], + [51595,0.625], + [51600,0.047], + [51610,0.043], + [51620,0.569], + [51630,0.226], + [51640,0.062], + [51650,0.496], + [51660,0.064], + [51670,0.37], + [51678,0.097], + [51680,0.293], + [51683,0.137], + [51685,0.13], + [51690,0.45], + [51700,0.407], + [51710,0.431], + [51720,0.063], + [51730,0.791], + [51735,0.006], + [51740,0.533], + [51750,0.078], + [51760,0.506], + [51770,0.285], + [51775,0.071], + [51790,0.121], + [51800,0.427], + [51810,0.196], + [51820,0.106], + [51830,0.14], + [51840,0.109], + [53001,0.006], + [53003,0.004], + [53005,0.013], + [53007,0.003], + [53009,0.008], + [53011,0.02], + [53013,0.003], + [53015,0.006], + [53017,0.003], + [53019,0.003], + [53021,0.019], + [53023,0], + [53025,0.011], + [53027,0.011], + [53029,0.022], + [53031,0.008], + [53033,0.062], + [53035,0.026], + [53037,0.009], + [53039,0.002], + [53041,0.005], + [53043,0.003], + [53045,0.011], + [53047,0.004], + [53049,0.004], + [53051,0.004], + [53053,0.068], + [53055,0.003], + [53057,0.007], + [53059,0.004], + [53061,0.025], + [53063,0.017], + [53065,0.003], + [53067,0.027], + [53069,0.003], + [53071,0.018], + [53073,0.01], + [53075,0.017], + [53077,0.01], + [54001,0.007], + [54003,0.071], + [54005,0.005], + [54007,0.004], + [54009,0.012], + [54011,0.05], + [54013,0.002], + [54015,0.001], + [54017,0.014], + [54019,0.046], + [54021,0.123], + [54023,0.007], + [54025,0.028], + [54027,0.01], + [54029,0.023], + [54031,0.025], + [54033,0.016], + [54035,0.003], + [54037,0.066], + [54039,0.073], + [54041,0.005], + [54043,0.001], + [54045,0.021], + [54047,0.095], + [54049,0.033], + [54051,0.005], + [54053,0.006], + [54055,0.061], + [54057,0.028], + [54059,0.018], + [54061,0.036], + [54063,0.007], + [54065,0.006], + [54067,0.002], + [54069,0.037], + [54071,0.019], + [54073,0.013], + [54075,0.007], + [54077,0.011], + [54079,0.009], + [54081,0.082], + [54083,0.012], + [54085,0.002], + [54087,0.001], + [54089,0.048], + [54091,0.007], + [54093,0.002], + [54095,0.002], + [54097,0.007], + [54099,0.002], + [54101,null], + [54103,0.001], + [54105,0.002], + [54107,0.011], + [54109,0.005], + [55001,0.03], + [55003,0.003], + [55005,0.009], + [55007,0.003], + [55009,0.022], + [55011,0.003], + [55013,0.005], + [55015,0.005], + [55017,0.016], + [55019,0.002], + [55021,0.013], + [55023,0.018], + [55025,0.052], + [55027,0.027], + [55029,0.005], + [55031,0.011], + [55033,0.005], + [55035,0.009], + [55037,0.002], + [55039,0.013], + [55041,0.008], + [55043,0.011], + [55045,0.004], + [55047,0.005], + [55049,0.004], + [55051,0.001], + [55053,0.02], + [55055,0.008], + [55057,0.021], + [55059,0.066], + [55061,0.003], + [55063,0.014], + [55065,0.002], + [55067,0.004], + [55069,0.005], + [55071,0.005], + [55073,0.006], + [55075,0.003], + [55077,0.005], + [55078,0.004], + [55079,0.268], + [55081,0.011], + [55083,0.002], + [55085,0.004], + [55087,0.01], + [55089,0.014], + [55091,0.003], + [55093,0.006], + [55095,0.002], + [55097,0.005], + [55099,0.003], + [55101,0.111], + [55103,0.005], + [55105,0.05], + [55107,0.004], + [55109,0.007], + [55111,0.006], + [55113,0.005], + [55115,0.003], + [55117,0.015], + [55119,0.003], + [55121,0.002], + [55123,0.004], + [55125,0.002], + [55127,0.01], + [55129,0.002], + [55131,0.009], + [55133,0.013], + [55135,0.003], + [55137,0.019], + [55139,0.018], + [55141,0.005], + [56001,0.012], + [56003,0.002], + [56005,0.003], + [56007,0.007], + [56009,0.003], + [56011,0.002], + [56013,0.003], + [56015,0.006], + [56017,0.002], + [56019,0.002], + [56021,0.025], + [56023,0.002], + [56025,0.009], + [56027,0.002], + [56029,0.002], + [56031,0.003], + [56033,0.004], + [56035,0.003], + [56037,0.01], + [56039,0.002], + [56041,0.003], + [56043,0.003], + [56045,0.003] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-black-2017.json b/data/regional/united-states/demographics/race/us-race-black-2017.json new file mode 100644 index 0000000..490188f --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-black-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Black Population", + "description" : "Percent of the population that is black in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.black.2017"], + [1001,0.0955], + [1003,0.0477], + [1005,0.2402], + [1007,0.1103], + [1009,0.0079], + [1011,0.3782], + [1013,0.2243], + [1015,0.1027], + [1017,0.1967], + [1019,0.0249], + [1021,0.0478], + [1023,0.2117], + [1025,0.2283], + [1027,0.0738], + [1029,0.0142], + [1031,0.0865], + [1033,0.0801], + [1035,0.2324], + [1037,0.1661], + [1039,0.0658], + [1041,0.118], + [1043,0.0058], + [1045,0.0972], + [1047,0.3518], + [1049,0.0073], + [1051,0.107], + [1053,0.1612], + [1055,0.0778], + [1057,0.0606], + [1059,0.0242], + [1061,0.0459], + [1063,0.4016], + [1065,0.2935], + [1067,0.1392], + [1069,0.1337], + [1071,0.0162], + [1073,0.2129], + [1075,0.0542], + [1077,0.0503], + [1079,0.0571], + [1081,0.1154], + [1083,0.0657], + [1085,0.3726], + [1087,0.4108], + [1089,0.1208], + [1091,0.2707], + [1093,0.0167], + [1095,0.011], + [1097,0.1767], + [1099,0.2076], + [1101,0.2864], + [1103,0.0621], + [1105,0.3479], + [1107,0.203], + [1109,0.19], + [1111,0.0999], + [1113,0.2133], + [1115,0.0467], + [1117,0.0591], + [1119,0.3542], + [1121,0.1607], + [1123,0.1376], + [1125,0.1565], + [1127,0.0305], + [1129,0.123], + [1131,0.3606], + [1133,0.0026], + [2013,0.0262], + [2016,0.0255], + [2020,0.0274], + [2050,0.0033], + [2060,0.0022], + [2068,0.0009], + [2070,0.0022], + [2090,0.0212], + [2100,0.0002], + [2105,0.0144], + [2110,0.0053], + [2122,0.0027], + [2130,0.0027], + [2150,0.001], + [2158,null], + [2164,0.0035], + [2170,0.0056], + [2180,0.0038], + [2185,0.0033], + [2188,0.0038], + [2195,0.0029], + [2198,0.0008], + [2220,0.0048], + [2230,0.0043], + [2240,0.0086], + [2261,0.0007], + [2275,0.0008], + [2282,0.0044], + [2290,0.0005], + [4001,0.0025], + [4003,0.0189], + [4005,0.0072], + [4007,0.0028], + [4009,0.0099], + [4011,0.0102], + [4012,0.0043], + [4013,0.0268], + [4015,0.0054], + [4017,0.0041], + [4019,0.0173], + [4021,0.0225], + [4023,0.0025], + [4025,0.0026], + [4027,0.0104], + [5001,0.1322], + [5003,0.1278], + [5005,0.0009], + [5007,0.0082], + [5009,0.0019], + [5011,0.1464], + [5013,0.1113], + [5015,0.0067], + [5017,0.2708], + [5019,0.1193], + [5021,0.0034], + [5023,0.003], + [5025,0.0551], + [5027,0.1748], + [5029,0.0559], + [5031,0.067], + [5033,0.0067], + [5035,0.2452], + [5037,0.114], + [5039,0.2017], + [5041,0.2375], + [5043,0.1439], + [5045,0.0571], + [5047,0.0049], + [5049,0.0017], + [5051,0.0408], + [5053,0.0147], + [5055,0.0052], + [5057,0.1481], + [5059,0.0547], + [5061,0.1043], + [5063,0.0102], + [5065,0.0095], + [5067,0.0851], + [5069,0.2818], + [5071,0.009], + [5073,0.1895], + [5075,0.0047], + [5077,0.2845], + [5079,0.1569], + [5081,0.1024], + [5083,0.0106], + [5085,0.0301], + [5087,0.0029], + [5089,0.0009], + [5091,0.1233], + [5093,0.1757], + [5095,0.2039], + [5097,0.0014], + [5099,0.1672], + [5101,0.0001], + [5103,0.2045], + [5105,0.0116], + [5107,0.3138], + [5109,0.014], + [5111,0.028], + [5113,0.0025], + [5115,0.0147], + [5117,0.0669], + [5119,0.1805], + [5121,0.0047], + [5123,0.2778], + [5125,0.0321], + [5127,0.001], + [5129,0.0009], + [5131,0.0338], + [5133,0.0242], + [5135,0.0028], + [5137,0.0004], + [5139,0.1635], + [5141,0.0023], + [5143,0.0174], + [5145,0.0203], + [5147,0.1374], + [5149,0.0121], + [6001,0.0554], + [6003,0.0075], + [6005,0.0107], + [6007,0.0075], + [6009,0.0029], + [6011,0.0046], + [6013,0.0429], + [6015,0.009], + [6017,0.0048], + [6019,0.0246], + [6021,0.0039], + [6023,0.0059], + [6025,0.0133], + [6027,0.0048], + [6029,0.0274], + [6031,0.032], + [6033,0.0116], + [6035,0.0437], + [6037,0.041], + [6039,0.016], + [6041,0.011], + [6043,0.0061], + [6045,0.0035], + [6047,0.0161], + [6049,0.0036], + [6051,0.0026], + [6053,0.013], + [6055,0.0106], + [6057,0.0029], + [6059,0.0084], + [6061,0.0077], + [6063,0.0043], + [6065,0.0316], + [6067,0.0493], + [6069,0.0038], + [6071,0.0421], + [6073,0.0251], + [6075,0.0264], + [6077,0.0348], + [6079,0.0096], + [6081,0.0122], + [6083,0.0094], + [6085,0.0126], + [6087,0.0044], + [6089,0.0056], + [6091,0.0007], + [6093,0.0078], + [6095,0.071], + [6097,0.0078], + [6099,0.0141], + [6101,0.0103], + [6103,0.003], + [6105,0.004], + [6107,0.0078], + [6109,0.009], + [6111,0.0087], + [6113,0.0125], + [6115,0.0166], + [8001,0.0161], + [8003,0.0125], + [8005,0.0523], + [8007,0.007], + [8009,0.0077], + [8011,0.0303], + [8013,0.0043], + [8014,0.0056], + [8015,0.008], + [8017,0.0002], + [8019,0.0044], + [8021,0.0024], + [8023,0.0018], + [8025,0.0215], + [8027,0.0124], + [8029,0.0058], + [8031,0.0475], + [8033,0], + [8035,0.0059], + [8037,0.0043], + [8039,0.0033], + [8041,0.0307], + [8043,0.023], + [8045,0.002], + [8047,0.0029], + [8049,0.0019], + [8051,0.0023], + [8053,0], + [8055,0.0032], + [8057,0], + [8059,0.0055], + [8061,0.0029], + [8063,0.0159], + [8065,0.0006], + [8067,0.0025], + [8069,0.0046], + [8071,0.0045], + [8073,0.0457], + [8075,0.0058], + [8077,0.0037], + [8079,0.009], + [8081,0.0048], + [8083,0.0019], + [8085,0.0021], + [8087,0.0154], + [8089,0.0038], + [8091,0], + [8093,0.001], + [8095,0.0015], + [8097,0.0076], + [8099,0.0024], + [8101,0.0111], + [8103,0.0015], + [8105,0.003], + [8107,0.004], + [8109,0], + [8111,0], + [8113,0.0009], + [8115,0.0064], + [8117,0.0048], + [8119,0.0033], + [8121,0.0054], + [8123,0.0056], + [8125,0.0074], + [9001,0.0566], + [9003,0.0679], + [9005,0.0097], + [9007,0.0257], + [9009,0.065], + [9011,0.0287], + [9013,0.0158], + [9015,0.0112], + [10001,0.1244], + [10003,0.1231], + [10005,0.0617], + [11001,0.2387], + [12001,0.1008], + [12003,0.0689], + [12005,0.0548], + [12007,0.096], + [12009,0.0508], + [12011,0.1419], + [12013,0.0649], + [12015,0.0284], + [12017,0.0147], + [12019,0.0499], + [12021,0.0352], + [12023,0.089], + [12027,0.0641], + [12029,0.0357], + [12031,0.1486], + [12033,0.1087], + [12035,0.0513], + [12037,0.0703], + [12039,0.2791], + [12041,0.0301], + [12043,0.068], + [12045,0.0876], + [12047,0.1754], + [12049,0.0404], + [12051,0.0569], + [12053,0.0259], + [12055,0.0473], + [12057,0.083], + [12059,0.037], + [12061,0.0454], + [12063,0.1351], + [12065,0.1761], + [12067,0.0786], + [12069,0.0513], + [12071,0.0433], + [12073,0.1556], + [12075,0.044], + [12077,0.0935], + [12079,0.1956], + [12081,0.0442], + [12083,0.0643], + [12085,0.028], + [12086,0.0898], + [12087,0.036], + [12089,0.0313], + [12091,0.0489], + [12093,0.0422], + [12095,0.1046], + [12097,0.0558], + [12099,0.0926], + [12101,0.027], + [12103,0.0511], + [12105,0.0762], + [12107,0.0814], + [12109,0.0255], + [12111,0.0984], + [12113,0.0292], + [12115,0.0226], + [12117,0.0577], + [12119,0.0378], + [12121,0.0675], + [12123,0.1073], + [12125,0.1107], + [12127,0.0532], + [12129,0.0757], + [12131,0.0244], + [12133,0.0768], + [13001,0.0893], + [13003,0.0902], + [13005,0.0728], + [13007,0.2075], + [13009,0.2074], + [13011,0.0127], + [13013,0.056], + [13015,0.0537], + [13017,0.1811], + [13019,0.059], + [13021,0.2711], + [13023,0.1395], + [13025,0.0189], + [13027,0.1692], + [13029,0.0762], + [13031,0.1432], + [13033,0.2455], + [13035,0.1419], + [13037,0.3036], + [13039,0.0927], + [13043,0.118], + [13045,0.094], + [13047,0.012], + [13049,0.1282], + [13051,0.1987], + [13053,0.0941], + [13055,0.0516], + [13057,0.0331], + [13059,0.1367], + [13061,0.3214], + [13063,0.3437], + [13065,0.1368], + [13067,0.1357], + [13069,0.1401], + [13071,0.1135], + [13073,0.0826], + [13075,0.1363], + [13077,0.0878], + [13079,0.1165], + [13081,0.2158], + [13083,0.0035], + [13085,0.0059], + [13087,0.2106], + [13089,0.2699], + [13091,0.1389], + [13093,0.2486], + [13095,0.3428], + [13097,0.2248], + [13099,0.2548], + [13101,0.0135], + [13103,0.0667], + [13105,0.1527], + [13107,0.1714], + [13109,0.1511], + [13111,0.0011], + [13113,0.1058], + [13115,0.0724], + [13117,0.0147], + [13119,0.0489], + [13121,0.2207], + [13123,0.0087], + [13125,0.0441], + [13127,0.1292], + [13129,0.0204], + [13131,0.1438], + [13133,0.1796], + [13135,0.1334], + [13137,0.0157], + [13139,0.0374], + [13141,0.3651], + [13143,0.0215], + [13145,0.0801], + [13147,0.095], + [13149,0.0501], + [13151,0.2069], + [13153,0.1494], + [13155,0.1404], + [13157,0.0347], + [13159,0.1041], + [13161,0.0838], + [13163,0.2716], + [13165,0.1788], + [13167,0.1688], + [13169,0.1245], + [13171,0.1448], + [13173,0.1203], + [13175,0.1843], + [13177,0.0977], + [13179,0.2053], + [13181,0.1611], + [13183,0.1206], + [13185,0.1817], + [13187,0.0114], + [13189,0.2024], + [13191,0.1758], + [13193,0.2967], + [13195,0.0432], + [13197,0.1787], + [13199,0.1921], + [13201,0.1519], + [13205,0.2382], + [13207,0.1178], + [13209,0.1308], + [13211,0.1178], + [13213,0.0048], + [13215,0.228], + [13217,0.2163], + [13219,0.0271], + [13221,0.0898], + [13223,0.0928], + [13225,0.2224], + [13227,0.0024], + [13229,0.0447], + [13231,0.0515], + [13233,0.0634], + [13235,0.1737], + [13237,0.1304], + [13239,0.2537], + [13241,0.0099], + [13243,0.2987], + [13245,0.28], + [13247,0.2592], + [13249,0.1401], + [13251,0.2086], + [13253,0.1683], + [13255,0.1667], + [13257,0.0587], + [13259,0.2514], + [13261,0.2621], + [13263,0.283], + [13265,0.3091], + [13267,0.1462], + [13269,0.202], + [13271,0.2147], + [13273,0.3099], + [13275,0.1792], + [13277,0.1472], + [13279,0.1276], + [13281,0.006], + [13283,0.1486], + [13285,0.1762], + [13287,0.2146], + [13289,0.2131], + [13291,0.0042], + [13293,0.1423], + [13295,0.0215], + [13297,0.0828], + [13299,0.1485], + [13301,0.303], + [13303,0.2653], + [13305,0.1], + [13307,0.2442], + [13309,0.2111], + [13311,0.0103], + [13313,0.0197], + [13315,0.1774], + [13317,0.2123], + [13319,0.1908], + [13321,0.141], + [15001,0.0031], + [15003,0.0117], + [15005,0], + [15007,0.0035], + [15009,0.0028], + [16001,0.0065], + [16003,0.0016], + [16005,0.0032], + [16007,0.004], + [16009,0.0012], + [16011,0.0016], + [16013,0.0015], + [16015,0.001], + [16017,0.001], + [16019,0.0025], + [16021,0.0011], + [16023,0.0124], + [16025,0], + [16027,0.0023], + [16029,0], + [16031,0.0005], + [16033,0.0009], + [16035,0.0011], + [16037,0.0001], + [16039,0.0147], + [16041,0.0013], + [16043,0.0011], + [16045,0], + [16047,0.0005], + [16049,0.0011], + [16051,0.0003], + [16053,0.0005], + [16055,0.0022], + [16057,0.0036], + [16059,0.001], + [16061,0.0005], + [16063,0], + [16065,0.0032], + [16067,0.0013], + [16069,0.0019], + [16071,0.0004], + [16073,0.0007], + [16075,0.002], + [16077,0.0013], + [16079,0.0014], + [16081,0.0009], + [16083,0.0033], + [16085,0.0004], + [16087,0.0002], + [17001,0.0201], + [17003,0.1729], + [17005,0.0303], + [17007,0.0114], + [17009,0.1077], + [17011,0.0039], + [17013,0.0015], + [17015,0.0067], + [17017,0.0231], + [17019,0.0654], + [17021,0.0083], + [17023,0.0016], + [17025,0.0034], + [17027,0.0179], + [17029,0.019], + [17031,0.1186], + [17033,0.0212], + [17035,0.0005], + [17037,0.0372], + [17039,0.0023], + [17041,0.0016], + [17043,0.0234], + [17045,0.0028], + [17047,0.0024], + [17049,0.0028], + [17051,0.0258], + [17053,0.0045], + [17055,0.0036], + [17057,0.0189], + [17059,0.0013], + [17061,0.0064], + [17063,0.0075], + [17065,0.003], + [17067,0.0033], + [17069,0.0189], + [17071,0.0007], + [17073,0.0088], + [17075,0.0058], + [17077,0.0737], + [17079,0.002], + [17081,0.0427], + [17083,0.0023], + [17085,0.002], + [17087,0.0566], + [17089,0.0281], + [17091,0.076], + [17093,0.0338], + [17095,0.0445], + [17097,0.034], + [17099,0.0125], + [17101,0.0436], + [17103,0.0262], + [17105,0.0204], + [17107,0.0339], + [17109,0.0245], + [17111,0.0067], + [17113,0.041], + [17115,0.0698], + [17117,0.0039], + [17119,0.0429], + [17121,0.017], + [17123,0.0022], + [17125,0.0031], + [17127,0.0305], + [17129,0.0025], + [17131,0.0028], + [17133,0.0021], + [17135,0.0301], + [17137,0.0313], + [17139,0.0029], + [17141,0.0055], + [17143,0.0877], + [17145,0.0435], + [17147,0.0053], + [17149,0.0085], + [17151,0.0253], + [17153,0.1526], + [17155,0.0021], + [17157,0.0531], + [17159,0.0022], + [17161,0.0498], + [17163,0.1494], + [17165,0.0172], + [17167,0.0638], + [17169,0.0277], + [17171,0.0006], + [17173,0.0034], + [17175,0.0033], + [17177,0.0477], + [17179,0.0062], + [17181,0.0049], + [17183,0.0699], + [17185,0.0042], + [17187,0.0139], + [17189,0.0026], + [17191,0.003], + [17193,0.0022], + [17195,0.0086], + [17197,0.0561], + [17199,0.0206], + [17201,0.0631], + [17203,0.0031], + [18001,0.0047], + [18003,0.0572], + [18005,0.0096], + [18007,0.0044], + [18009,0.0012], + [18011,0.008], + [18013,0.0027], + [18015,0.0027], + [18017,0.0069], + [18019,0.0334], + [18021,0.002], + [18023,0.0046], + [18025,0.001], + [18027,0.0092], + [18029,0.0041], + [18031,0.0033], + [18033,0.0015], + [18035,0.0365], + [18037,0.0029], + [18039,0.0275], + [18041,0.0126], + [18043,0.0263], + [18045,0.0018], + [18047,0.0011], + [18049,0.0052], + [18051,0.0102], + [18053,0.0377], + [18055,0.0016], + [18057,0.0182], + [18059,0.0094], + [18061,0.0012], + [18063,0.0313], + [18065,0.0115], + [18067,0.0365], + [18069,0.0044], + [18071,0.0054], + [18073,0.0036], + [18075,0.0017], + [18077,0.0102], + [18079,0.0068], + [18081,0.0118], + [18083,0.0157], + [18085,0.004], + [18087,0.0003], + [18089,0.1216], + [18091,0.0552], + [18093,0.0016], + [18095,0.0383], + [18097,0.1371], + [18099,0.0035], + [18101,0.0027], + [18103,0.0254], + [18105,0.0156], + [18107,0.004], + [18109,0.002], + [18111,0.0006], + [18113,0.0019], + [18115,0.0065], + [18117,0.0065], + [18119,0.0038], + [18121,0.0048], + [18123,0.0142], + [18125,0.0048], + [18127,0.0181], + [18129,0.0076], + [18131,0.0023], + [18133,0.0157], + [18135,0.0033], + [18137,0.0024], + [18139,0.0071], + [18141,0.0648], + [18143,0.0016], + [18145,0.0048], + [18147,0.0031], + [18149,0.0016], + [18151,0.0012], + [18153,0.0194], + [18155,0.0041], + [18157,0.0238], + [18159,0.0009], + [18161,0.0006], + [18163,0.0457], + [18165,0.0021], + [18167,0.0308], + [18169,0.0044], + [18171,0.0024], + [18173,0.0079], + [18175,0.0004], + [18177,0.0257], + [18179,0.0041], + [18181,0.0023], + [18183,0.0022], + [19001,0.0017], + [19003,0.0021], + [19005,0.0047], + [19007,0.0029], + [19009,0.003], + [19011,0.0034], + [19013,0.0444], + [19015,0.002], + [19017,0.0047], + [19019,0.0017], + [19021,0.0133], + [19023,0.0012], + [19025,0.0089], + [19027,0.0074], + [19029,0.0014], + [19031,0.0036], + [19033,0.0085], + [19035,0.0048], + [19037,0.0026], + [19039,0.0005], + [19041,0.0023], + [19043,0.0052], + [19045,0.0129], + [19047,0.0074], + [19049,0.0067], + [19051,0.0006], + [19053,0.0083], + [19055,0.0014], + [19057,0.0303], + [19059,0.0027], + [19061,0.0145], + [19063,0.0085], + [19065,0.0067], + [19067,0.0095], + [19069,0.0075], + [19071,0.0036], + [19073,0.0006], + [19075,0.0034], + [19077,0.0017], + [19079,0.0057], + [19081,0.0031], + [19083,0.0076], + [19085,0.001], + [19087,0.0104], + [19089,0.0035], + [19091,0.0009], + [19093,0.0004], + [19095,0.004], + [19097,0.0028], + [19099,0.008], + [19101,0.0293], + [19103,0.0319], + [19105,0.0127], + [19107,0.0007], + [19109,0.0041], + [19111,0.0125], + [19113,0.0247], + [19115,0.0052], + [19117,0.0005], + [19119,0.0003], + [19121,0.0015], + [19123,0.0077], + [19125,0.003], + [19127,0.0053], + [19129,0.004], + [19131,0.0007], + [19133,0.0006], + [19135,0.0004], + [19137,0], + [19139,0.0102], + [19141,0.0046], + [19143,0.0064], + [19145,0.0102], + [19147,0.01], + [19149,0.0022], + [19151,0.009], + [19153,0.0323], + [19155,0.0073], + [19157,0.0103], + [19159,0.0006], + [19161,0.0043], + [19163,0.0395], + [19165,0.0023], + [19167,0.0018], + [19169,0.0096], + [19171,0.003], + [19173,0.0016], + [19175,0.006], + [19177,0.0029], + [19179,0.015], + [19181,0.0015], + [19183,0.0048], + [19185,0.0034], + [19187,0.0234], + [19189,0.0055], + [19191,0.0052], + [19193,0.0162], + [19195,0.0056], + [19197,0.0024], + [20001,0.0073], + [20003,0.001], + [20005,0.0155], + [20007,0.0034], + [20009,0.0069], + [20011,0.0162], + [20013,0.0055], + [20015,0.011], + [20017,0.0073], + [20019,0.0019], + [20021,0.002], + [20023,0], + [20025,0.0057], + [20027,0.0033], + [20029,0.0035], + [20031,0.0038], + [20033,0], + [20035,0.0151], + [20037,0.0125], + [20039,0.0009], + [20041,0.0045], + [20043,0.0187], + [20045,0.0205], + [20047,0.0066], + [20049,0.0008], + [20051,0.0047], + [20053,0.0191], + [20055,0.011], + [20057,0.0114], + [20059,0.0076], + [20061,0.0865], + [20063,0.0008], + [20065,0.0203], + [20067,0], + [20069,0.0031], + [20071,0.0041], + [20073,0.0012], + [20075,0.0164], + [20077,0.0009], + [20079,0.0101], + [20081,0], + [20083,0], + [20085,0.0033], + [20087,0.0028], + [20089,0.0019], + [20091,0.023], + [20093,0.0034], + [20095,0.0018], + [20097,0.0073], + [20099,0.0193], + [20101,0.0003], + [20103,0.0445], + [20105,0.0034], + [20107,0.0041], + [20109,0.0002], + [20111,0.0109], + [20113,0.0052], + [20115,0.0033], + [20117,0.0014], + [20119,0.0036], + [20121,0.0076], + [20123,0.0034], + [20125,0.0265], + [20127,0.0004], + [20129,0.0041], + [20131,0.0027], + [20133,0.0061], + [20135,0.0012], + [20137,0.0119], + [20139,0.0036], + [20141,0.0023], + [20143,0.0039], + [20145,0.0259], + [20147,0.0021], + [20149,0.0032], + [20151,0.0013], + [20153,0.002], + [20155,0.0141], + [20157,0.0011], + [20159,0.0097], + [20161,0.0324], + [20163,0.0035], + [20165,0.0002], + [20167,0.0062], + [20169,0.0155], + [20171,0], + [20173,0.0452], + [20175,0.0233], + [20177,0.0395], + [20179,0.0024], + [20181,0.0016], + [20183,0.0019], + [20185,0.0033], + [20187,0.0021], + [20189,0.0004], + [20191,0.0048], + [20193,0.0078], + [20195,0.0007], + [20197,0.0016], + [20199,0], + [20201,0.002], + [20203,0.0035], + [20205,0.0026], + [20207,0.0055], + [20209,0.1157], + [21001,0.0181], + [21003,0.0095], + [21005,0.0118], + [21007,0.0195], + [21009,0.0195], + [21011,0.0052], + [21013,0.0166], + [21015,0.0153], + [21017,0.0361], + [21019,0.0125], + [21021,0.0358], + [21023,0.0001], + [21025,0.005], + [21027,0.0087], + [21029,0.0034], + [21031,0.0018], + [21033,0.034], + [21035,0.0186], + [21037,0.0159], + [21039,0.008], + [21041,0.0139], + [21043,0.0042], + [21045,0.0032], + [21047,0.1044], + [21049,0.0253], + [21051,0.0188], + [21053,0.0027], + [21055,0.0067], + [21057,0.0148], + [21059,0.0225], + [21061,0.0078], + [21063,0.0175], + [21065,0.0007], + [21067,0.0725], + [21069,0.0087], + [21071,0.0045], + [21073,0.0499], + [21075,0.1219], + [21077,0.0076], + [21079,0.0047], + [21081,0.0043], + [21083,0.0234], + [21085,0.0066], + [21087,0.0153], + [21089,0.004], + [21091,0.007], + [21093,0.0578], + [21095,0.0131], + [21097,0.0086], + [21099,0.0216], + [21101,0.0361], + [21103,0.0177], + [21105,0.0434], + [21107,0.0312], + [21109,0.0006], + [21111,0.1062], + [21113,0.0197], + [21115,0.0025], + [21117,0.0221], + [21119,0.002], + [21121,0.0062], + [21123,0.0181], + [21125,0.0035], + [21127,0.0019], + [21129,0.0063], + [21131,0.0006], + [21133,0.0015], + [21135,0.002], + [21137,0.0109], + [21139,0.0009], + [21141,0.0314], + [21143,0.0269], + [21145,0.0555], + [21147,0.0277], + [21149,0.0017], + [21151,0.0217], + [21153,0.0001], + [21155,0.0425], + [21157,0.0029], + [21159,0.0249], + [21161,0.0292], + [21163,0.0166], + [21165,0.0003], + [21167,0.0205], + [21169,0.0036], + [21171,0.0129], + [21173,0.0143], + [21175,0.0165], + [21177,0.0243], + [21179,0.0264], + [21181,0.0066], + [21183,0.0102], + [21185,0.0186], + [21187,0.0089], + [21189,0.0205], + [21191,0.0044], + [21193,0.0078], + [21195,0.0042], + [21197,0.0013], + [21199,0.0049], + [21201,0.0093], + [21203,0.001], + [21205,0.0071], + [21207,0.0026], + [21209,0.0237], + [21211,0.0346], + [21213,0.0478], + [21215,0.0052], + [21217,0.0235], + [21219,0.039], + [21221,0.0438], + [21223,0], + [21225,0.0659], + [21227,0.0466], + [21229,0.0261], + [21231,0.0074], + [21233,0.0206], + [21235,0.006], + [21237,0.0017], + [21239,0.0222], + [22001,0.0883], + [22003,0.0975], + [22005,0.1093], + [22007,0.1488], + [22009,0.1507], + [22011,0.0634], + [22013,0.2073], + [22015,0.1093], + [22017,0.2428], + [22019,0.1236], + [22021,0.0848], + [22023,0.014], + [22025,0.1639], + [22027,0.2565], + [22029,0.2056], + [22031,0.1844], + [22033,0.2287], + [22035,0.358], + [22037,0.2233], + [22039,0.1378], + [22041,0.167], + [22043,0.0764], + [22045,0.1575], + [22047,0.2445], + [22049,0.1503], + [22051,0.133], + [22053,0.0814], + [22055,0.129], + [22057,0.0653], + [22059,0.0604], + [22061,0.2032], + [22063,0.0299], + [22065,0.3174], + [22067,0.2397], + [22069,0.2045], + [22071,0.299], + [22073,0.1874], + [22075,0.1043], + [22077,0.177], + [22079,0.1601], + [22081,0.1874], + [22083,0.1803], + [22085,0.0829], + [22087,0.1129], + [22089,0.1328], + [22091,0.2698], + [22093,0.2488], + [22095,0.2775], + [22097,0.2051], + [22099,0.1471], + [22101,0.1556], + [22103,0.0583], + [22105,0.1474], + [22107,0.2772], + [22109,0.0964], + [22111,0.1271], + [22113,0.0714], + [22115,0.0732], + [22117,0.1506], + [22119,0.172], + [22121,0.1941], + [22123,0.0793], + [22125,0.2247], + [22127,0.1561], + [23001,0.0089], + [23003,0.0047], + [23005,0.0144], + [23007,0.0015], + [23009,0.004], + [23011,0.0045], + [23013,0.0035], + [23015,0.0014], + [23017,0.0014], + [23019,0.0039], + [23021,0.0024], + [23023,0.0037], + [23025,0.0024], + [23027,0.0029], + [23029,0.0023], + [23031,0.0043], + [24001,0.0406], + [24003,0.0811], + [24005,0.1397], + [24009,0.0594], + [24011,0.0667], + [24013,0.0167], + [24015,0.034], + [24017,0.2158], + [24019,0.1374], + [24021,0.0449], + [24023,0.0029], + [24025,0.0674], + [24027,0.0924], + [24029,0.0741], + [24031,0.0904], + [24033,0.3162], + [24035,0.035], + [24037,0.0717], + [24039,0.2102], + [24041,0.058], + [24043,0.0524], + [24045,0.1265], + [24047,0.0677], + [24510,0.314], + [25001,0.0137], + [25003,0.0137], + [25005,0.0191], + [25007,0.0195], + [25009,0.0202], + [25011,0.0072], + [25013,0.0437], + [25015,0.0146], + [25017,0.0258], + [25019,0.0417], + [25021,0.033], + [25023,0.0461], + [25025,0.1124], + [25027,0.0242], + [26001,0.0016], + [26003,0.0359], + [26005,0.007], + [26007,0.003], + [26009,0.0017], + [26011,0.0026], + [26013,0.0801], + [26015,0.0027], + [26017,0.0083], + [26019,0.0017], + [26021,0.0737], + [26023,0.012], + [26025,0.0539], + [26027,0.0242], + [26029,0.0019], + [26031,0.0038], + [26033,0.0328], + [26035,0.0027], + [26037,0.0083], + [26039,0.0034], + [26041,0.0013], + [26043,0.003], + [26045,0.0334], + [26047,0.0029], + [26049,0.1001], + [26051,0.0018], + [26053,0.0215], + [26055,0.0058], + [26057,0.0289], + [26059,0.0038], + [26061,0.0038], + [26063,0.002], + [26065,0.0557], + [26067,0.0248], + [26069,0.0034], + [26071,0.0039], + [26073,0.0129], + [26075,0.0415], + [26077,0.0545], + [26079,0.0035], + [26081,0.0485], + [26083,0.0082], + [26085,0.0379], + [26087,0.0063], + [26089,0.0024], + [26091,0.0134], + [26093,0.0028], + [26095,0.0343], + [26097,0.0119], + [26099,0.0552], + [26101,0.0143], + [26103,0.0082], + [26105,0.0047], + [26107,0.0127], + [26109,0.0016], + [26111,0.0073], + [26113,0.0023], + [26115,0.0115], + [26117,0.0102], + [26119,0.0012], + [26121,0.0678], + [26123,0.0066], + [26125,0.0686], + [26127,0.0062], + [26129,0.0016], + [26131,0.0016], + [26133,0.0049], + [26135,0.0029], + [26137,0.0022], + [26139,0.0072], + [26141,0.0026], + [26143,0.0014], + [26145,0.0926], + [26147,0.0104], + [26149,0.0126], + [26151,0.003], + [26153,0.003], + [26155,0.002], + [26157,0.006], + [26159,0.0163], + [26161,0.0594], + [26163,0.1955], + [26165,0.0036], + [27001,0.0025], + [27003,0.0278], + [27005,0.0026], + [27007,0.0049], + [27009,0.014], + [27011,0.0015], + [27013,0.0167], + [27015,0.0014], + [27017,0.0078], + [27019,0.0076], + [27021,0.002], + [27023,0.0031], + [27025,0.0068], + [27027,0.0129], + [27029,0.0022], + [27031,0.0027], + [27033,0.0032], + [27035,0.0032], + [27037,0.0283], + [27039,0.0015], + [27041,0.0033], + [27043,0.0011], + [27045,0.0024], + [27047,0.0066], + [27049,0.0052], + [27051,0.0012], + [27053,0.0635], + [27055,0.0036], + [27057,0.0048], + [27059,0.003], + [27061,0.0021], + [27063,0.0006], + [27065,0.002], + [27067,0.0217], + [27069,0.004], + [27071,0.0043], + [27073,0.0058], + [27075,0.0052], + [27077,0.0001], + [27079,0.0044], + [27081,0.0016], + [27083,0.0167], + [27085,0.0016], + [27087,0.0015], + [27089,0.0016], + [27091,0.0016], + [27093,0.0037], + [27095,0.0022], + [27097,0.0031], + [27099,0.0172], + [27101,0.0032], + [27103,0.0151], + [27105,0.0217], + [27107,0.0044], + [27109,0.0283], + [27111,0.0072], + [27113,0.0079], + [27115,0.0107], + [27117,0.0067], + [27119,0.009], + [27121,0.0023], + [27123,0.0574], + [27125,0.0021], + [27127,0.0039], + [27129,0.0025], + [27131,0.0236], + [27133,0.005], + [27135,0.0043], + [27137,0.008], + [27139,0.0174], + [27141,0.0114], + [27143,0.0031], + [27145,0.0254], + [27147,0.0163], + [27149,0.005], + [27151,0.0113], + [27153,0.002], + [27155,0.0031], + [27157,0.002], + [27159,0.0057], + [27161,0.0104], + [27163,0.0205], + [27165,0.003], + [27167,0.0027], + [27169,0.0074], + [27171,0.0071], + [27173,0.0026], + [28001,0.2659], + [28003,0.0587], + [28005,0.2098], + [28007,0.2143], + [28009,0.1831], + [28011,0.3212], + [28013,0.1363], + [28015,0.1675], + [28017,0.2165], + [28019,0.1545], + [28021,0.4346], + [28023,0.1756], + [28025,0.2951], + [28027,0.386], + [28029,0.2594], + [28031,0.1804], + [28033,0.1269], + [28035,0.1841], + [28037,0.1798], + [28039,0.0386], + [28041,0.1279], + [28043,0.2163], + [28045,0.0433], + [28047,0.1211], + [28049,0.3595], + [28051,0.4159], + [28053,0.3777], + [28055,0.3245], + [28057,0.0384], + [28059,0.1108], + [28061,0.2704], + [28063,0.432], + [28065,0.3082], + [28067,0.1451], + [28069,0.3014], + [28071,0.1192], + [28073,0.0998], + [28075,0.2143], + [28077,0.1661], + [28079,0.2119], + [28081,0.1444], + [28083,0.3662], + [28085,0.154], + [28087,0.2176], + [28089,0.1913], + [28091,0.1607], + [28093,0.2383], + [28095,0.1508], + [28097,0.2106], + [28099,0.1045], + [28101,0.1499], + [28103,0.3604], + [28105,0.1855], + [28107,0.2521], + [28109,0.0644], + [28111,0.0988], + [28113,0.2665], + [28115,0.0763], + [28117,0.067], + [28119,0.355], + [28121,0.1001], + [28123,0.1924], + [28125,0.3617], + [28127,0.1827], + [28129,0.1182], + [28131,0.0963], + [28133,0.3699], + [28135,0.2361], + [28137,0.1502], + [28139,0.0849], + [28141,0.0125], + [28143,0.3925], + [28145,0.0744], + [28147,0.2288], + [28149,0.251], + [28151,0.3593], + [28153,0.2026], + [28155,0.0959], + [28157,0.3565], + [28159,0.2365], + [28161,0.2007], + [28163,0.285], + [29001,0.0121], + [29003,0.0089], + [29005,0.0019], + [29007,0.0305], + [29009,0.0016], + [29011,0.0012], + [29013,0.0062], + [29015,0.0018], + [29017,0.0021], + [29019,0.0427], + [29021,0.0278], + [29023,0.0269], + [29025,0.0025], + [29027,0.0216], + [29029,0.004], + [29031,0.0396], + [29033,0.0043], + [29035,0.0001], + [29037,0.0186], + [29039,0.0003], + [29041,0.0119], + [29043,0.0029], + [29045,0.0013], + [29047,0.0285], + [29049,0.01], + [29051,0.0583], + [29053,0.0325], + [29055,0.0013], + [29057,0.002], + [29059,0.0004], + [29061,0.0039], + [29063,0.049], + [29065,0.0025], + [29067,0.0005], + [29069,0.0486], + [29071,0.0041], + [29073,0.0031], + [29075,0.0047], + [29077,0.0164], + [29079,0.0029], + [29081,0.0039], + [29083,0.0073], + [29085,0.0003], + [29087,0.0016], + [29089,0.0253], + [29091,0.0016], + [29093,0.0077], + [29095,0.1181], + [29097,0.0109], + [29099,0.0051], + [29101,0.0227], + [29103,0.002], + [29105,0.0026], + [29107,0.0101], + [29109,0.0032], + [29111,0.0147], + [29113,0.0093], + [29115,0.0025], + [29117,0.0139], + [29119,0.0092], + [29121,0.0118], + [29123,0.0047], + [29125,0.0019], + [29127,0.0264], + [29129,0.002], + [29131,0.0019], + [29133,0.1206], + [29135,0.0171], + [29137,0.0172], + [29139,0.0076], + [29141,0.0042], + [29143,0.0806], + [29145,0.0048], + [29147,0.0133], + [29149,0.0009], + [29151,0.0033], + [29153,0.0002], + [29155,0.136], + [29157,0.0015], + [29159,0.0142], + [29161,0.0136], + [29163,0.0312], + [29165,0.0338], + [29167,0.0031], + [29169,0.0623], + [29171,0.0023], + [29173,0.0067], + [29175,0.0289], + [29177,0.0077], + [29179,0.0091], + [29181,0.0012], + [29183,0.0213], + [29185,0.0043], + [29186,0.0128], + [29187,0.0218], + [29189,0.1187], + [29195,0.0236], + [29197,0.0042], + [29199,0.0084], + [29201,0.0571], + [29203,0.0004], + [29205,0.0099], + [29207,0.0076], + [29209,0.0008], + [29211,0.009], + [29213,0.005], + [29215,0.0099], + [29217,0.0053], + [29219,0.0116], + [29221,0.0119], + [29223,0.003], + [29225,0.0066], + [29227,0.0015], + [29229,0.003], + [29510,0.238], + [30001,0.0003], + [30003,0.0005], + [30005,0.0012], + [30007,0.0003], + [30009,0.0011], + [30011,0], + [30013,0.0067], + [30015,0.0003], + [30017,0.0025], + [30019,0], + [30021,0.0026], + [30023,0.0019], + [30025,0.0072], + [30027,0.0007], + [30029,0.0013], + [30031,0.0016], + [30033,0], + [30035,0.0014], + [30037,0.0201], + [30039,0.0006], + [30041,0.0013], + [30043,0.0003], + [30045,0], + [30047,0.0011], + [30049,0.0017], + [30051,0], + [30053,0.0004], + [30055,0], + [30057,0.0023], + [30059,0], + [30061,0.0008], + [30063,0.0019], + [30065,0.0041], + [30067,0.0014], + [30069,0], + [30071,0], + [30073,0.0021], + [30075,0], + [30077,0.0031], + [30079,0], + [30081,0.0005], + [30083,0], + [30085,0.0009], + [30087,0.0004], + [30089,0.0007], + [30091,0.0007], + [30093,0.0027], + [30095,0.0011], + [30097,0.0007], + [30099,0.0012], + [30101,0.0004], + [30103,0], + [30105,0.0005], + [30107,0], + [30109,0], + [30111,0.0036], + [31001,0.0036], + [31003,0.0012], + [31005,0], + [31007,0.0027], + [31009,0], + [31011,0.0024], + [31013,0.003], + [31015,0.0024], + [31017,0.0002], + [31019,0.0062], + [31021,0.0031], + [31023,0.0027], + [31025,0.0016], + [31027,0.0001], + [31029,0.0003], + [31031,0.0002], + [31033,0.002], + [31035,0.0022], + [31037,0.0138], + [31039,0.0006], + [31041,0.004], + [31043,0.0219], + [31045,0.0081], + [31047,0.0296], + [31049,0.0003], + [31051,0.0015], + [31053,0.005], + [31055,0.0555], + [31057,0.0007], + [31059,0.0029], + [31061,0.0023], + [31063,0.0002], + [31065,0.0017], + [31067,0.0031], + [31069,0.0008], + [31071,0.001], + [31073,0], + [31075,0.0044], + [31077,0.0031], + [31079,0.0113], + [31081,0.0036], + [31083,0.0046], + [31085,0], + [31087,0.0005], + [31089,0.0007], + [31091,0.0044], + [31093,0.0002], + [31095,0.0001], + [31097,0.0347], + [31099,0.0006], + [31101,0.0035], + [31103,0.0007], + [31105,0.0007], + [31107,0.0012], + [31109,0.0203], + [31111,0.0058], + [31113,0.0033], + [31115,0], + [31117,0], + [31119,0.0074], + [31121,0.003], + [31123,0.0042], + [31125,0.0004], + [31127,0.0071], + [31129,0.0013], + [31131,0.0011], + [31133,0], + [31135,0.0007], + [31137,0.0007], + [31139,0.0017], + [31141,0.0022], + [31143,0.0007], + [31145,0.0057], + [31147,0.0011], + [31149,0.0014], + [31151,0.0037], + [31153,0.0193], + [31155,0.0015], + [31157,0.0038], + [31159,0.0025], + [31161,0.0027], + [31163,0], + [31165,0.002], + [31167,0.0064], + [31169,0.0013], + [31171,0], + [31173,0.0011], + [31175,0.002], + [31177,0.0075], + [31179,0.0104], + [31181,0.0011], + [31183,0], + [31185,0.006], + [32001,0.0126], + [32003,0.0562], + [32005,0.003], + [32007,0.0048], + [32009,0.0036], + [32011,0.0006], + [32013,0.0032], + [32015,0.0003], + [32017,0.0157], + [32019,0.0052], + [32021,0.0039], + [32023,0.0155], + [32027,0.0243], + [32029,0.0036], + [32031,0.0113], + [32033,0.0242], + [32510,0.0086], + [33001,0.0024], + [33003,0.0025], + [33005,0.0038], + [33007,0.012], + [33009,0.0061], + [33011,0.0127], + [33013,0.0061], + [33015,0.0037], + [33017,0.0043], + [33019,0.0027], + [34001,0.0756], + [34003,0.0301], + [34005,0.082], + [34007,0.0969], + [34009,0.0227], + [34011,0.0959], + [34013,0.2001], + [34015,0.0514], + [34017,0.0619], + [34019,0.0135], + [34021,0.1025], + [34023,0.0502], + [34025,0.036], + [34027,0.0161], + [34029,0.0151], + [34031,0.0591], + [34033,0.0664], + [34035,0.047], + [34037,0.0104], + [34039,0.1057], + [34041,0.0218], + [35001,0.0146], + [35003,0.0013], + [35005,0.0083], + [35006,0.006], + [35007,0.0034], + [35009,0.0294], + [35011,0.0074], + [35013,0.0089], + [35015,0.0074], + [35017,0.0049], + [35019,0.0075], + [35021,0], + [35023,0.0034], + [35025,0.0189], + [35027,0.0031], + [35028,0.0015], + [35029,0.0068], + [35031,0.0027], + [35033,0.0003], + [35035,0.0169], + [35037,0.0079], + [35039,0.0029], + [35041,0.0161], + [35043,0.0098], + [35045,0.0028], + [35047,0.0067], + [35049,0.0038], + [35051,0.0028], + [35053,0.0004], + [35055,0.0025], + [35057,0.0086], + [35059,0.0065], + [35061,0.0047], + [36001,0.0615], + [36003,0.0072], + [36005,0.1681], + [36007,0.0288], + [36009,0.0083], + [36011,0.0204], + [36013,0.0132], + [36015,0.0301], + [36017,0.0043], + [36019,0.0212], + [36021,0.0226], + [36023,0.009], + [36025,0.0098], + [36027,0.0525], + [36029,0.0672], + [36031,0.016], + [36033,0.0296], + [36035,0.0092], + [36037,0.0127], + [36039,0.0312], + [36041,0.0039], + [36043,0.0062], + [36045,0.029], + [36047,0.165], + [36049,0.0037], + [36051,0.0131], + [36053,0.0102], + [36055,0.0764], + [36057,0.009], + [36059,0.0577], + [36061,0.0746], + [36063,0.036], + [36065,0.0315], + [36067,0.0561], + [36069,0.0124], + [36071,0.0532], + [36073,0.0302], + [36075,0.005], + [36077,0.0101], + [36079,0.0121], + [36081,0.0912], + [36083,0.0323], + [36085,0.0517], + [36087,0.0625], + [36089,0.0119], + [36091,0.0086], + [36093,0.0516], + [36095,0.0081], + [36097,0.0068], + [36099,0.0246], + [36101,0.0082], + [36103,0.0391], + [36105,0.0432], + [36107,0.003], + [36109,0.02], + [36111,0.0286], + [36113,0.0059], + [36115,0.0168], + [36117,0.0149], + [36119,0.0731], + [36121,0.0259], + [36123,0.0055], + [37001,0.0949], + [37003,0.0294], + [37005,0.0122], + [37007,0.2432], + [37009,0.0039], + [37011,0.0212], + [37013,0.1324], + [37015,0.3101], + [37017,0.1743], + [37019,0.0531], + [37021,0.0315], + [37023,0.0298], + [37025,0.0859], + [37027,0.0246], + [37029,0.0714], + [37031,0.0284], + [37033,0.1652], + [37035,0.0404], + [37037,0.0602], + [37039,0.0069], + [37041,0.1694], + [37043,0.0082], + [37045,0.1041], + [37047,0.1544], + [37049,0.1071], + [37051,0.1829], + [37053,0.0271], + [37055,0.0107], + [37057,0.0457], + [37059,0.0306], + [37061,0.124], + [37063,0.1867], + [37065,0.286], + [37067,0.1301], + [37069,0.1284], + [37071,0.0785], + [37073,0.1646], + [37075,0.0008], + [37077,0.1552], + [37079,0.1796], + [37081,0.1686], + [37083,0.264], + [37085,0.1058], + [37087,0.0054], + [37089,0.0172], + [37091,0.2899], + [37093,0.1667], + [37095,0.1534], + [37097,0.0622], + [37099,0.0148], + [37101,0.0769], + [37103,0.1527], + [37105,0.0954], + [37107,0.1967], + [37109,0.0268], + [37111,0.0192], + [37113,0.0067], + [37115,0.0093], + [37117,0.2095], + [37119,0.1559], + [37121,0.0016], + [37123,0.0932], + [37125,0.0627], + [37127,0.1966], + [37129,0.0711], + [37131,0.2853], + [37133,0.0717], + [37135,0.0582], + [37137,0.0928], + [37139,0.1813], + [37141,0.0783], + [37143,0.121], + [37145,0.1355], + [37147,0.1731], + [37149,0.0258], + [37151,0.0314], + [37153,0.156], + [37155,0.1204], + [37157,0.0931], + [37159,0.0812], + [37161,0.0506], + [37163,0.1266], + [37165,0.1936], + [37167,0.0557], + [37169,0.0199], + [37171,0.0187], + [37173,0.0024], + [37175,0.0205], + [37177,0.1787], + [37179,0.0577], + [37181,0.25], + [37183,0.1019], + [37185,0.2519], + [37187,0.2412], + [37189,0.0078], + [37191,0.1522], + [37193,0.0211], + [37195,0.1985], + [37197,0.0168], + [37199,0.0042], + [38001,0.0082], + [38003,0.0043], + [38005,0], + [38007,0.0046], + [38009,0.0044], + [38011,0.0006], + [38013,0.0022], + [38015,0.0089], + [38017,0.0216], + [38019,0.0017], + [38021,0.0068], + [38023,0.0048], + [38025,0.0049], + [38027,0], + [38029,0], + [38031,0.0008], + [38033,0], + [38035,0.0171], + [38037,0.0004], + [38039,0.0068], + [38041,0.0037], + [38043,0.0024], + [38045,0.0005], + [38047,0.0003], + [38049,0.0008], + [38051,0], + [38053,0.0028], + [38055,0.0035], + [38057,0.0047], + [38059,0.0032], + [38061,0.0055], + [38063,0.0007], + [38065,0.0019], + [38067,0.0011], + [38069,0.0042], + [38071,0.0028], + [38073,0.0035], + [38075,0.0026], + [38077,0.0023], + [38079,0.0023], + [38081,0.0049], + [38083,0], + [38085,0.0002], + [38087,0.0297], + [38089,0.0089], + [38091,0], + [38093,0.0056], + [38095,0], + [38097,0.005], + [38099,0.0018], + [38101,0.0183], + [38103,0], + [38105,0.0172], + [39001,0.0022], + [39003,0.0589], + [39005,0.0039], + [39007,0.0183], + [39009,0.0129], + [39011,0.0018], + [39013,0.0208], + [39015,0.0042], + [39017,0.0396], + [39019,0.0046], + [39021,0.0079], + [39023,0.0408], + [39025,0.0072], + [39027,0.0108], + [39029,0.0112], + [39031,0.0054], + [39033,0.0043], + [39035,0.1479], + [39037,0.0039], + [39039,0.0097], + [39041,0.0171], + [39043,0.0424], + [39045,0.0358], + [39047,0.0099], + [39049,0.1098], + [39051,0.0015], + [39053,0.0141], + [39055,0.0062], + [39057,0.0344], + [39059,0.0063], + [39061,0.1283], + [39063,0.0072], + [39065,0.0035], + [39067,0.01], + [39069,0.003], + [39071,0.0072], + [39073,0.0052], + [39075,0.0008], + [39077,0.008], + [39079,0.0041], + [39081,0.0284], + [39083,0.0051], + [39085,0.0197], + [39087,0.0097], + [39089,0.0179], + [39091,0.0086], + [39093,0.0421], + [39095,0.0951], + [39097,0.029], + [39099,0.0761], + [39101,0.0264], + [39103,0.0076], + [39105,0.0058], + [39107,0.0034], + [39109,0.0106], + [39111,0.0003], + [39113,0.1032], + [39115,0.0172], + [39117,0.0037], + [39119,0.0156], + [39121,0.0272], + [39123,0.0055], + [39125,0.004], + [39127,0.0018], + [39129,0.0163], + [39131,0.0059], + [39133,0.0207], + [39135,0.0027], + [39137,0.0021], + [39139,0.039], + [39141,0.0258], + [39143,0.0142], + [39145,0.0145], + [39147,0.0133], + [39149,0.0142], + [39151,0.0357], + [39153,0.0724], + [39155,0.0418], + [39157,0.0047], + [39159,0.0125], + [39161,0.006], + [39163,0.0023], + [39165,0.0175], + [39167,0.0061], + [39169,0.0069], + [39171,0.0056], + [39173,0.0141], + [39175,0.0016], + [40001,0.0015], + [40003,0.0121], + [40005,0.0186], + [40007,0.0004], + [40009,0.0168], + [40011,0.0198], + [40013,0.0093], + [40015,0.0112], + [40017,0.012], + [40019,0.0318], + [40021,0.0069], + [40023,0.0568], + [40025,0.0016], + [40027,0.0234], + [40029,0.0008], + [40031,0.0861], + [40033,0.0099], + [40035,0.0151], + [40037,0.0111], + [40039,0.0153], + [40041,0.0013], + [40043,0.0008], + [40045,0], + [40047,0.0158], + [40049,0.012], + [40051,0.0108], + [40053,0.0008], + [40055,0.042], + [40057,0.0368], + [40059,0.0004], + [40061,0.0041], + [40063,0.03], + [40065,0.0364], + [40067,0.0065], + [40069,0.006], + [40071,0.0099], + [40073,0.0055], + [40075,0.0162], + [40077,0.0054], + [40079,0.0114], + [40081,0.0092], + [40083,0.0434], + [40085,0.0096], + [40087,0.0055], + [40089,0.0401], + [40091,0.0138], + [40093,0.0016], + [40095,0.0079], + [40097,0.0027], + [40099,0.0083], + [40101,0.0541], + [40103,0.0042], + [40105,0.0112], + [40107,0.0383], + [40109,0.075], + [40111,0.0431], + [40113,0.0566], + [40115,0.0053], + [40117,0.0052], + [40119,0.02], + [40121,0.0159], + [40123,0.0108], + [40125,0.0159], + [40127,0.0042], + [40129,0.0007], + [40131,0.0053], + [40133,0.024], + [40135,0.0098], + [40137,0.009], + [40139,0.0202], + [40141,0.0427], + [40143,0.0499], + [40145,0.0174], + [40147,0.0127], + [40149,0.0006], + [40151,0.0127], + [40153,0.0042], + [41001,0.0047], + [41003,0.005], + [41005,0.0049], + [41007,0.0039], + [41009,0.0024], + [41011,0.0059], + [41013,0.0023], + [41015,0.0017], + [41017,0.0028], + [41019,0.0021], + [41021,0], + [41023,0.0022], + [41025,0.0042], + [41027,0.0006], + [41029,0.0032], + [41031,0.0042], + [41033,0.002], + [41035,0.0038], + [41037,0.0013], + [41039,0.0057], + [41041,0.0023], + [41043,0.0019], + [41045,0.005], + [41047,0.0058], + [41049,0.0015], + [41051,0.0273], + [41053,0.0051], + [41055,0.004], + [41057,0.0016], + [41059,0.0039], + [41061,0.0042], + [41063,0.0011], + [41065,0.0029], + [41067,0.0096], + [41069,0], + [41071,0.005], + [42001,0.0072], + [42003,0.0646], + [42005,0.0048], + [42007,0.0298], + [42009,0.0022], + [42011,0.0254], + [42013,0.0075], + [42015,0.0029], + [42017,0.0198], + [42019,0.0047], + [42021,0.0166], + [42023,0.0058], + [42025,0.0091], + [42027,0.0199], + [42029,0.0293], + [42031,0.0058], + [42033,0.0137], + [42035,0.0076], + [42037,0.0092], + [42039,0.0097], + [42041,0.0185], + [42043,0.0936], + [42045,0.1059], + [42047,0.0026], + [42049,0.0357], + [42051,0.0199], + [42053,0.1599], + [42055,0.0197], + [42057,0.008], + [42059,0.017], + [42061,0.0268], + [42063,0.0116], + [42065,0.003], + [42067,0.0054], + [42069,0.0144], + [42071,0.0213], + [42073,0.0179], + [42075,0.011], + [42077,0.0345], + [42079,0.0215], + [42081,0.0247], + [42083,0.0132], + [42085,0.0289], + [42087,0.0033], + [42089,0.0706], + [42091,0.0451], + [42093,0.009], + [42095,0.0269], + [42097,0.0136], + [42099,0.0045], + [42101,0.2128], + [42103,0.0304], + [42105,0.0018], + [42107,0.014], + [42109,0.0044], + [42111,0.0138], + [42113,0.0128], + [42115,0.0031], + [42117,0.0029], + [42119,0.0332], + [42121,0.0046], + [42123,0.0023], + [42125,0.0151], + [42127,0.0171], + [42129,0.0118], + [42131,0.0034], + [42133,0.0284], + [44001,0.0069], + [44003,0.0073], + [44005,0.0181], + [44007,0.0478], + [44009,0.0068], + [45001,0.1381], + [45003,0.1236], + [45005,0.3689], + [45007,0.0809], + [45009,0.3077], + [45011,0.2269], + [45013,0.0924], + [45015,0.1207], + [45017,0.2083], + [45019,0.1388], + [45021,0.0995], + [45023,0.1823], + [45025,0.1608], + [45027,0.2429], + [45029,0.1906], + [45031,0.2036], + [45033,0.2367], + [45035,0.1285], + [45037,0.1832], + [45039,0.2753], + [45041,0.212], + [45043,0.1572], + [45045,0.0911], + [45047,0.1581], + [45049,0.2659], + [45051,0.0686], + [45053,0.2186], + [45055,0.1208], + [45057,0.1092], + [45059,0.1257], + [45061,0.3218], + [45063,0.0727], + [45065,0.2375], + [45067,0.2837], + [45069,0.2518], + [45071,0.158], + [45073,0.0359], + [45075,0.3097], + [45077,0.0326], + [45079,0.2332], + [45081,0.1282], + [45083,0.1025], + [45085,0.2351], + [45087,0.1546], + [45089,0.3262], + [45091,0.0949], + [46003,0.0082], + [46005,0.002], + [46007,0.0012], + [46009,0.0067], + [46011,0.0079], + [46013,0.0081], + [46015,0], + [46017,0.002], + [46019,0.0031], + [46021,0], + [46023,0.0003], + [46025,0], + [46027,0.0079], + [46029,0.0025], + [46031,0.0023], + [46033,0.001], + [46035,0.003], + [46037,0], + [46039,0], + [46041,0.0006], + [46043,0], + [46045,0.0003], + [46047,0.0035], + [46049,0.0002], + [46051,0], + [46053,0], + [46055,0.0002], + [46057,0.0008], + [46059,0.0002], + [46061,0.0231], + [46063,0.0066], + [46065,0.0024], + [46067,0.0022], + [46069,0], + [46071,0.0011], + [46073,0], + [46075,0], + [46077,0], + [46079,0.0033], + [46081,0.0048], + [46083,0.0053], + [46085,0.0003], + [46087,0.0041], + [46089,0.0006], + [46091,0.0024], + [46093,0.0096], + [46095,0], + [46097,0.0051], + [46099,0.0241], + [46101,0.0029], + [46102,null], + [46103,0.0059], + [46105,0.0005], + [46107,0], + [46109,0.0024], + [46111,0], + [46115,0.0006], + [46117,0], + [46119,0], + [46121,0.0016], + [46123,0], + [46125,0.0018], + [46127,0.0035], + [46129,0.0024], + [46135,0.0094], + [46137,0.0002], + [47001,0.0172], + [47003,0.0339], + [47005,0.0172], + [47007,0.0202], + [47009,0.0128], + [47011,0.0248], + [47013,0.0027], + [47015,0.0073], + [47017,0.0495], + [47019,0.0069], + [47021,0.0065], + [47023,0.0483], + [47025,0.005], + [47027,0.0107], + [47029,0.0104], + [47031,0.0109], + [47033,0.0662], + [47035,0.0033], + [47037,0.1369], + [47039,0.0146], + [47041,0.0068], + [47043,0.0198], + [47045,0.068], + [47047,0.1387], + [47049,0.0009], + [47051,0.0247], + [47053,0.0888], + [47055,0.0489], + [47057,0.0019], + [47059,0.0119], + [47061,0.0024], + [47063,0.0201], + [47065,0.0977], + [47067,0.0023], + [47069,0.2077], + [47071,0.0183], + [47073,0.0067], + [47075,0.25], + [47077,0.0399], + [47079,0.0448], + [47081,0.0248], + [47083,0.0202], + [47085,0.0188], + [47087,0.0031], + [47089,0.009], + [47091,0.0191], + [47093,0.0444], + [47095,0.1472], + [47097,0.1686], + [47099,0.0096], + [47101,0.006], + [47103,0.0346], + [47105,0.0064], + [47107,0.0178], + [47109,0.0286], + [47111,0.0022], + [47113,0.1861], + [47115,0.0094], + [47117,0.038], + [47119,0.0579], + [47121,0.0068], + [47123,0.0098], + [47125,0.0981], + [47127,0.0087], + [47129,0.025], + [47131,0.0517], + [47133,0.0033], + [47135,0.0166], + [47137,0.004], + [47139,0.0013], + [47141,0.0115], + [47143,0.0111], + [47145,0.0118], + [47147,0.0361], + [47149,0.0703], + [47151,0.0027], + [47153,0.0009], + [47155,0.0035], + [47157,0.2668], + [47159,0.0108], + [47161,0.0055], + [47163,0.0095], + [47165,0.0344], + [47167,0.0899], + [47169,0.0569], + [47171,0.0024], + [47173,0.0022], + [47175,0.0015], + [47177,0.0063], + [47179,0.02], + [47181,0.0282], + [47183,0.0434], + [47185,0.0082], + [47187,0.021], + [47189,0.0342], + [48001,0.1046], + [48003,0.0104], + [48005,0.0742], + [48007,0.0082], + [48009,0.006], + [48011,0.0101], + [48013,0.0037], + [48015,0.0448], + [48017,0.0081], + [48019,0.005], + [48021,0.0405], + [48023,0.0172], + [48025,0.0425], + [48027,0.1134], + [48029,0.0377], + [48031,0.0034], + [48033,0], + [48035,0.0071], + [48037,0.1218], + [48039,0.0662], + [48041,0.0519], + [48043,0.0007], + [48045,0.0085], + [48047,0.0046], + [48049,0.0198], + [48051,0.0624], + [48053,0.0077], + [48055,0.0329], + [48057,0.0133], + [48059,0.0074], + [48061,0.0024], + [48063,0.0845], + [48065,0.0032], + [48067,0.0859], + [48069,0.0034], + [48071,0.0401], + [48073,0.0684], + [48075,0.0362], + [48077,0.0028], + [48079,0.014], + [48081,0.0032], + [48083,0.0137], + [48085,0.0467], + [48087,0.0187], + [48089,0.0654], + [48091,0.0099], + [48093,0.006], + [48095,0.004], + [48097,0.0126], + [48099,0.072], + [48101,0.0511], + [48103,0.0219], + [48105,0.0046], + [48107,0.0205], + [48109,0.0018], + [48111,0.0089], + [48113,0.1122], + [48115,0.03], + [48117,0.0058], + [48119,0.0397], + [48121,0.0463], + [48123,0.0463], + [48125,0.0155], + [48127,0.0003], + [48129,0.0188], + [48131,0.0072], + [48133,0.0112], + [48135,0.022], + [48137,0], + [48139,0.0466], + [48141,0.0172], + [48143,0.0084], + [48145,0.1234], + [48147,0.0324], + [48149,0.0298], + [48151,0.0143], + [48153,0.0136], + [48155,0.011], + [48157,0.103], + [48159,0.0228], + [48161,0.0811], + [48163,0.0206], + [48165,0.0122], + [48167,0.0642], + [48169,0.0228], + [48171,0.0007], + [48173,0], + [48175,0.0272], + [48177,0.034], + [48179,0.0226], + [48181,0.028], + [48183,0.1017], + [48185,0.079], + [48187,0.0387], + [48189,0.0245], + [48191,0.0388], + [48193,0.0033], + [48195,0.0015], + [48197,0.0357], + [48199,0.0286], + [48201,0.0947], + [48203,0.1065], + [48205,0.0425], + [48207,0.0158], + [48209,0.0189], + [48211,0.0039], + [48213,0.0343], + [48215,0.0029], + [48217,0.0328], + [48219,0.0188], + [48221,0.0036], + [48223,0.0337], + [48225,0.1253], + [48227,0.0293], + [48229,0.009], + [48231,0.0393], + [48233,0.0108], + [48235,0.016], + [48237,0.0228], + [48239,0.0368], + [48241,0.0838], + [48243,0.0034], + [48245,0.1698], + [48247,0.0002], + [48249,0.003], + [48251,0.0143], + [48253,0.0734], + [48255,0.0441], + [48257,0.0525], + [48259,0.0039], + [48261,0], + [48263,0.0044], + [48265,0.0074], + [48267,0.0001], + [48269,0], + [48271,0.0006], + [48273,0.0189], + [48275,0.03], + [48277,0.0621], + [48279,0.0253], + [48281,0.0152], + [48283,0.0067], + [48285,0.0339], + [48287,0.055], + [48289,0.0372], + [48291,0.0499], + [48293,0.0903], + [48295,0.0019], + [48297,0.0126], + [48299,0.0038], + [48301,0], + [48303,0.0364], + [48305,0.0082], + [48307,0.0099], + [48309,0.0722], + [48311,0], + [48313,0.0872], + [48315,0.1184], + [48317,0.0032], + [48319,0.0001], + [48321,0.0513], + [48323,0.0018], + [48325,0.0126], + [48327,0.0033], + [48329,0.0311], + [48331,0.0448], + [48333,0.0011], + [48335,0.0549], + [48337,0.0011], + [48339,0.0232], + [48341,0.0213], + [48343,0.1186], + [48345,0.0175], + [48347,0.0887], + [48349,0.0667], + [48351,0.1068], + [48353,0.0252], + [48355,0.019], + [48357,0.0024], + [48359,0.0322], + [48361,0.0413], + [48363,0.0121], + [48365,0.0818], + [48367,0.0069], + [48369,0.0082], + [48371,0.0212], + [48373,0.0527], + [48375,0.0482], + [48377,0], + [48379,0.0076], + [48381,0.0144], + [48383,0.0036], + [48385,0.001], + [48387,0.0881], + [48389,0.0244], + [48391,0.0265], + [48393,0], + [48395,0.0986], + [48397,0.0301], + [48399,0.0066], + [48401,0.0856], + [48403,0.0381], + [48405,0.1039], + [48407,0.0562], + [48409,0.0083], + [48411,0.0145], + [48413,0.0014], + [48415,0.0226], + [48417,0.0009], + [48419,0.0954], + [48421,0.0015], + [48423,0.088], + [48425,0.0029], + [48427,0.0003], + [48429,0.0109], + [48431,0.0013], + [48433,0.0175], + [48435,0.0028], + [48437,0.0292], + [48439,0.0795], + [48441,0.0384], + [48443,0.016], + [48445,0.0258], + [48447,0.0006], + [48449,0.0458], + [48451,0.0216], + [48453,0.0413], + [48455,0.0478], + [48457,0.0549], + [48459,0.0452], + [48461,0.034], + [48463,0.0011], + [48465,0.0068], + [48467,0.0134], + [48469,0.0311], + [48471,0.1145], + [48473,0.1263], + [48475,0.0272], + [48477,0.0853], + [48479,0.002], + [48481,0.0714], + [48483,0.0145], + [48485,0.0516], + [48487,0.0421], + [48489,0.0036], + [48491,0.0309], + [48493,0.007], + [48495,0.0188], + [48497,0.006], + [48499,0.0281], + [48501,0.0034], + [48503,0.0075], + [48505,0.0042], + [48507,0.0025], + [49001,0], + [49003,0.0027], + [49005,0.004], + [49007,0.0033], + [49009,0.0007], + [49011,0.0065], + [49013,0.001], + [49015,0.0006], + [49017,0.0009], + [49019,0.0012], + [49021,0.0029], + [49023,0.0011], + [49025,0.0014], + [49027,0.0018], + [49029,0.0018], + [49031,0.0008], + [49033,0.0004], + [49035,0.0086], + [49037,0.0012], + [49039,0.0047], + [49041,0.0022], + [49043,0.0033], + [49045,0.0025], + [49047,0.0026], + [49049,0.003], + [49051,0.0004], + [49053,0.0034], + [49055,0.0007], + [49057,0.0053], + [50001,0.0054], + [50003,0.0049], + [50005,0.0047], + [50007,0.0131], + [50009,0.0052], + [50011,0.0031], + [50013,0.0009], + [50015,0.0045], + [50017,0.0033], + [50019,0.0022], + [50021,0.004], + [50023,0.0043], + [50025,0.0046], + [50027,0.0036], + [51001,0.142], + [51003,0.0478], + [51005,0.0273], + [51007,0.1186], + [51009,0.0878], + [51011,0.1003], + [51013,0.0442], + [51015,0.0202], + [51017,0.0133], + [51019,0.035], + [51021,0.0239], + [51023,0.0155], + [51025,0.2708], + [51027,0.0141], + [51029,0.1727], + [51031,0.07], + [51033,0.1438], + [51035,0.0016], + [51036,0.2311], + [51037,0.1483], + [51041,0.1136], + [51043,0.0245], + [51045,0.0007], + [51047,0.0718], + [51049,0.1623], + [51051,0.0041], + [51053,0.159], + [51057,0.1891], + [51059,0.0483], + [51061,0.0376], + [51063,0.0129], + [51065,0.0678], + [51067,0.0399], + [51069,0.02], + [51071,0.0119], + [51073,0.0418], + [51075,0.0826], + [51077,0.0189], + [51079,0.0306], + [51081,0.2895], + [51083,0.1799], + [51085,0.0459], + [51087,0.1476], + [51089,0.1107], + [51091,0], + [51093,0.1114], + [51095,0.0655], + [51097,0.1305], + [51099,0.0821], + [51101,0.0921], + [51103,0.1401], + [51105,0.0224], + [51107,0.0378], + [51109,0.0761], + [51111,0.1549], + [51113,0.0336], + [51115,0.0525], + [51117,0.1785], + [51119,0.0923], + [51121,0.0227], + [51125,0.0638], + [51127,0.057], + [51131,0.175], + [51133,0.1433], + [51135,0.2013], + [51137,0.0616], + [51139,0.0073], + [51141,0.0277], + [51143,0.1058], + [51145,0.056], + [51147,0.1567], + [51149,0.1615], + [51153,0.1045], + [51155,0.0233], + [51157,0.019], + [51159,0.1288], + [51161,0.0292], + [51163,0.0152], + [51165,0.0127], + [51167,0.0047], + [51169,0.0041], + [51171,0.0091], + [51173,0.0119], + [51175,0.1668], + [51177,0.0793], + [51179,0.0848], + [51181,0.2281], + [51183,0.2846], + [51185,0.0151], + [51187,0.0184], + [51191,0.0071], + [51193,0.1331], + [51195,0.0269], + [51197,0.0159], + [51199,0.0642], + [51510,0.1103], + [51520,0.0386], + [51530,0.0127], + [51540,0.0945], + [51550,0.149], + [51570,0.0665], + [51580,0.0663], + [51590,0.2459], + [51595,0.3213], + [51600,0.0243], + [51610,0.0241], + [51620,0.2944], + [51630,0.1124], + [51640,0.0361], + [51650,0.2504], + [51660,0.035], + [51670,0.203], + [51678,0.0444], + [51680,0.1423], + [51683,0.0667], + [51685,0.0683], + [51690,0.2338], + [51700,0.2033], + [51710,0.2101], + [51720,0.0192], + [51730,0.3787], + [51735,0.0052], + [51740,0.263], + [51750,0.0467], + [51760,0.2409], + [51770,0.1417], + [51775,0.0374], + [51790,0.0559], + [51800,0.2091], + [51810,0.0952], + [51820,0.0679], + [51830,0.073], + [51840,0.0493], + [53001,0.0029], + [53003,0.0024], + [53005,0.0076], + [53007,0.0024], + [53009,0.0058], + [53011,0.0093], + [53013,0.0026], + [53015,0.004], + [53017,0.0016], + [53019,0.0004], + [53021,0.0122], + [53023,0], + [53025,0.0034], + [53027,0.005], + [53029,0.0164], + [53031,0.0029], + [53033,0.0308], + [53035,0.0125], + [53037,0.0055], + [53039,0.0014], + [53041,0.0033], + [53043,0.0029], + [53045,0.0077], + [53047,0.0024], + [53049,0.0017], + [53051,0.0011], + [53053,0.0335], + [53055,0.0032], + [53057,0.0042], + [53059,0.0046], + [53061,0.0138], + [53063,0.0085], + [53065,0.0023], + [53067,0.0149], + [53069,0.001], + [53071,0.0076], + [53073,0.005], + [53075,0.0102], + [53077,0.0049], + [54001,0.0046], + [54003,0.0375], + [54005,0.004], + [54007,0.0023], + [54009,0.0087], + [54011,0.0245], + [54013,0.0001], + [54015,0.0001], + [54017,0.0069], + [54019,0.0257], + [54021,0.0556], + [54023,0.0081], + [54025,0.0129], + [54027,0.006], + [54029,0.0107], + [54031,0.0165], + [54033,0.0085], + [54035,0.0005], + [54037,0.033], + [54039,0.0347], + [54041,0.0011], + [54043,0.0027], + [54045,0.0084], + [54047,0.0414], + [54049,0.0179], + [54051,0.0048], + [54053,0.0016], + [54055,0.0307], + [54057,0.0171], + [54059,0.0095], + [54061,0.0186], + [54063,0.0032], + [54065,0.0034], + [54067,0.0033], + [54069,0.02], + [54071,0.0167], + [54073,0.0003], + [54075,0.0046], + [54077,0.0222], + [54079,0.0061], + [54081,0.039], + [54083,0.0096], + [54085,0.0002], + [54087,0.0002], + [54089,0.0249], + [54091,0.0064], + [54093,0.0023], + [54095,0.0009], + [54097,0.0066], + [54099,0.0014], + [54101,0.0002], + [54103,0.0029], + [54105,0.0047], + [54107,0.0058], + [54109,0.0043], + [55001,0.0136], + [55003,0.0022], + [55005,0.006], + [55007,0.0033], + [55009,0.0114], + [55011,0.0025], + [55013,0.0026], + [55015,0.0043], + [55017,0.0066], + [55019,0.0032], + [55021,0.0068], + [55023,0.0089], + [55025,0.0255], + [55027,0.0122], + [55029,0.0035], + [55031,0.0061], + [55033,0.0031], + [55035,0.0042], + [55037,0.0014], + [55039,0.0061], + [55041,0.0044], + [55043,0.0066], + [55045,0.002], + [55047,0.0033], + [55049,0.0035], + [55051,0.0031], + [55053,0.0112], + [55055,0.0043], + [55057,0.0117], + [55059,0.0376], + [55061,0.0023], + [55063,0.0067], + [55065,0.0021], + [55067,0.0048], + [55069,0.0027], + [55071,0.0036], + [55073,0.0035], + [55075,0.0032], + [55077,0.0031], + [55078,0.0024], + [55079,0.1321], + [55081,0.0077], + [55083,0.0021], + [55085,0.0042], + [55087,0.0063], + [55089,0.0068], + [55091,0.0021], + [55093,0.0028], + [55095,0.0015], + [55097,0.0036], + [55099,0.0036], + [55101,0.055], + [55103,0.0045], + [55105,0.0221], + [55107,0.0052], + [55109,0.0043], + [55111,0.0035], + [55113,0.0033], + [55115,0.0014], + [55117,0.0082], + [55119,0.0023], + [55121,0.0024], + [55123,0.0022], + [55125,0.0013], + [55127,0.0057], + [55129,0.0026], + [55131,0.0057], + [55133,0.0076], + [55135,0.0023], + [55137,0.0084], + [55139,0.0106], + [55141,0.0033], + [56001,0.0073], + [56003,0.003], + [56005,0.0015], + [56007,0.0064], + [56009,0], + [56011,0.001], + [56013,0.0027], + [56015,0.0003], + [56017,0], + [56019,0.0071], + [56021,0.0134], + [56023,0.0015], + [56025,0.0066], + [56027,0.0006], + [56029,0.0027], + [56031,0.0002], + [56033,0.005], + [56035,0], + [56037,0.0041], + [56039,0.0032], + [56041,0.0007], + [56043,0.0015], + [56045,0.0023] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-black-2019.json b/data/regional/united-states/demographics/race/us-race-black-2019.json new file mode 100644 index 0000000..1134222 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-black-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Black Population", + "description" : "Percent of the population that is black.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.black.2019"], + [1001,0.19], + [1003,0.093], + [1005,0.476], + [1007,0.223], + [1009,0.016], + [1011,0.748], + [1013,0.454], + [1015,0.208], + [1017,0.396], + [1019,0.046], + [1021,0.092], + [1023,0.426], + [1025,0.458], + [1027,0.156], + [1029,0.027], + [1031,0.169], + [1033,0.162], + [1035,0.478], + [1037,0.336], + [1039,0.135], + [1041,0.233], + [1043,0.013], + [1045,0.203], + [1047,0.707], + [1049,0.015], + [1051,0.215], + [1053,0.321], + [1055,0.159], + [1057,0.118], + [1059,0.044], + [1061,0.096], + [1063,0.795], + [1065,0.594], + [1067,0.266], + [1069,0.269], + [1071,0.035], + [1073,0.429], + [1075,0.107], + [1077,0.104], + [1079,0.106], + [1081,0.229], + [1083,0.138], + [1085,0.746], + [1087,0.832], + [1089,0.243], + [1091,0.536], + [1093,0.036], + [1095,0.027], + [1097,0.358], + [1099,0.424], + [1101,0.579], + [1103,0.128], + [1105,0.698], + [1107,0.402], + [1109,0.368], + [1111,0.204], + [1113,0.437], + [1115,0.096], + [1117,0.121], + [1119,0.719], + [1121,0.326], + [1123,0.274], + [1125,0.32], + [1127,0.062], + [1129,0.235], + [1131,0.694], + [1133,0.007], + [2013,0.042], + [2016,0.034], + [2020,0.056], + [2050,0.007], + [2060,0.006], + [2068,0.012], + [2070,0.016], + [2090,0.045], + [2100,0], + [2105,0.032], + [2110,0.01], + [2122,0.006], + [2130,0.008], + [2150,0.003], + [2158,0.005], + [2164,0.011], + [2170,0.012], + [2180,0.01], + [2185,0.015], + [2188,0.012], + [2195,0.01], + [2198,0.005], + [2220,0.009], + [2230,0.04], + [2240,0.007], + [2261,0.004], + [2275,0], + [2282,0.008], + [2290,0.001], + [4001,0.005], + [4003,0.041], + [4005,0.012], + [4007,0.007], + [4009,0.02], + [4011,0.022], + [4012,0.01], + [4013,0.056], + [4015,0.011], + [4017,0.009], + [4019,0.036], + [4021,0.044], + [4023,0.006], + [4025,0.007], + [4027,0.022], + [5001,0.259], + [5003,0.254], + [5005,0.002], + [5007,0.017], + [5009,0.003], + [5011,0.288], + [5013,0.217], + [5015,0.01], + [5017,0.539], + [5019,0.243], + [5021,0.007], + [5023,0.004], + [5025,0.128], + [5027,0.361], + [5029,0.104], + [5031,0.145], + [5033,0.016], + [5035,0.48], + [5037,0.187], + [5039,0.432], + [5041,0.466], + [5043,0.287], + [5045,0.114], + [5047,0.01], + [5049,0.005], + [5051,0.082], + [5053,0.027], + [5055,0.019], + [5057,0.301], + [5059,0.114], + [5061,0.209], + [5063,0.019], + [5065,0.018], + [5067,0.123], + [5069,0.565], + [5071,0.016], + [5073,0.36], + [5075,0.011], + [5077,0.556], + [5079,0.305], + [5081,0.219], + [5083,0.014], + [5085,0.057], + [5087,0.003], + [5089,0.005], + [5091,0.248], + [5093,0.337], + [5095,0.43], + [5097,0.003], + [5099,0.345], + [5101,0], + [5103,0.416], + [5105,0.007], + [5107,0.632], + [5109,0.041], + [5111,0.046], + [5113,0.005], + [5115,0.03], + [5117,0.124], + [5119,0.368], + [5121,0.011], + [5123,0.535], + [5125,0.071], + [5127,0.002], + [5129,0.006], + [5131,0.068], + [5133,0.048], + [5135,0.008], + [5137,0.001], + [5139,0.327], + [5141,0.006], + [5143,0.037], + [5145,0.044], + [5147,0.281], + [5149,0.025], + [6001,0.106], + [6003,0.009], + [6005,0.024], + [6007,0.015], + [6009,0.007], + [6011,0.015], + [6013,0.087], + [6015,0.034], + [6017,0.008], + [6019,0.048], + [6021,0.008], + [6023,0.011], + [6025,0.025], + [6027,0.009], + [6029,0.055], + [6031,0.064], + [6033,0.023], + [6035,0.087], + [6037,0.081], + [6039,0.032], + [6041,0.022], + [6043,0.015], + [6045,0.007], + [6047,0.032], + [6049,0.015], + [6051,0.008], + [6053,0.026], + [6055,0.021], + [6057,0.006], + [6059,0.018], + [6061,0.017], + [6063,0.009], + [6065,0.065], + [6067,0.098], + [6069,0.008], + [6071,0.083], + [6073,0.05], + [6075,0.052], + [6077,0.07], + [6079,0.019], + [6081,0.023], + [6083,0.02], + [6085,0.025], + [6087,0.011], + [6089,0.012], + [6091,0.001], + [6093,0.016], + [6095,0.139], + [6097,0.017], + [6099,0.03], + [6101,0.019], + [6103,0.008], + [6105,0.01], + [6107,0.016], + [6109,0.018], + [6111,0.018], + [6113,0.027], + [6115,0.034], + [8001,0.034], + [8003,0.009], + [8005,0.108], + [8007,0.017], + [8009,0.01], + [8011,0.041], + [8013,0.009], + [8014,0.013], + [8015,0.017], + [8017,0.001], + [8019,0.012], + [8021,0.005], + [8023,0.004], + [8025,0.035], + [8027,0.029], + [8029,0.012], + [8031,0.092], + [8033,0], + [8035,0.015], + [8037,0.012], + [8039,0.004], + [8041,0.064], + [8043,0.046], + [8045,0.005], + [8047,0.003], + [8049,0.011], + [8051,0.006], + [8053,0], + [8055,0.005], + [8057,0], + [8059,0.012], + [8061,0.004], + [8063,0.025], + [8065,0.001], + [8067,0.005], + [8069,0.01], + [8071,0.009], + [8073,0.082], + [8075,0.008], + [8077,0.007], + [8079,0.011], + [8081,0.012], + [8083,0.003], + [8085,0.004], + [8087,0.036], + [8089,0.006], + [8091,0.003], + [8093,0.003], + [8095,0.002], + [8097,0.01], + [8099,0.008], + [8101,0.021], + [8103,0.005], + [8105,0.009], + [8107,0.009], + [8109,0.005], + [8111,0], + [8113,0], + [8115,0.008], + [8117,0.011], + [8119,0.008], + [8121,0.013], + [8123,0.012], + [8125,0.011], + [9001,0.116], + [9003,0.138], + [9005,0.017], + [9007,0.056], + [9009,0.135], + [9011,0.058], + [9013,0.032], + [9015,0.023], + [10001,0.257], + [10003,0.252], + [10005,0.12], + [11001,0.463], + [12001,0.201], + [12003,0.136], + [12005,0.11], + [12007,0.203], + [12009,0.096], + [12011,0.286], + [12013,0.133], + [12015,0.056], + [12017,0.03], + [12019,0.11], + [12021,0.068], + [12023,0.181], + [12027,0.126], + [12029,0.089], + [12031,0.296], + [12033,0.219], + [12035,0.1], + [12037,0.141], + [12039,0.561], + [12041,0.059], + [12043,0.135], + [12045,0.172], + [12047,0.345], + [12049,0.076], + [12051,0.115], + [12053,0.053], + [12055,0.097], + [12057,0.168], + [12059,0.07], + [12061,0.089], + [12063,0.268], + [12065,0.346], + [12067,0.161], + [12069,0.109], + [12071,0.086], + [12073,0.309], + [12075,0.088], + [12077,0.158], + [12079,0.386], + [12081,0.087], + [12083,0.129], + [12085,0.057], + [12086,0.174], + [12087,0.073], + [12089,0.061], + [12091,0.098], + [12093,0.083], + [12095,0.209], + [12097,0.115], + [12099,0.187], + [12101,0.058], + [12103,0.103], + [12105,0.153], + [12107,0.163], + [12109,0.054], + [12111,0.202], + [12113,0.062], + [12115,0.045], + [12117,0.12], + [12119,0.071], + [12121,0.129], + [12123,0.201], + [12125,0.219], + [12127,0.109], + [12129,0.151], + [12131,0.046], + [12133,0.152], + [13001,0.193], + [13003,0.175], + [13005,0.152], + [13007,0.397], + [13009,0.423], + [13011,0.026], + [13013,0.118], + [13015,0.104], + [13017,0.366], + [13019,0.117], + [13021,0.544], + [13023,0.275], + [13025,0.035], + [13027,0.359], + [13029,0.144], + [13031,0.279], + [13033,0.481], + [13035,0.29], + [13037,0.605], + [13039,0.188], + [13043,0.254], + [13045,0.193], + [13047,0.022], + [13049,0.262], + [13051,0.399], + [13053,0.215], + [13055,0.105], + [13057,0.07], + [13059,0.279], + [13061,0.624], + [13063,0.693], + [13065,0.284], + [13067,0.276], + [13069,0.285], + [13071,0.234], + [13073,0.167], + [13075,0.27], + [13077,0.179], + [13079,0.22], + [13081,0.455], + [13083,0.008], + [13085,0.011], + [13087,0.421], + [13089,0.54], + [13091,0.287], + [13093,0.491], + [13095,0.696], + [13097,0.469], + [13099,0.525], + [13101,0.02], + [13103,0.133], + [13105,0.299], + [13107,0.339], + [13109,0.297], + [13111,0.002], + [13113,0.227], + [13115,0.139], + [13117,0.035], + [13119,0.093], + [13121,0.441], + [13123,0.005], + [13125,0.102], + [13127,0.263], + [13129,0.038], + [13131,0.298], + [13133,0.352], + [13135,0.278], + [13137,0.032], + [13139,0.072], + [13141,0.732], + [13143,0.051], + [13145,0.161], + [13147,0.194], + [13149,0.087], + [13151,0.439], + [13153,0.31], + [13155,0.287], + [13157,0.068], + [13159,0.204], + [13161,0.167], + [13163,0.533], + [13165,0.349], + [13167,0.332], + [13169,0.246], + [13171,0.294], + [13173,0.244], + [13175,0.373], + [13177,0.207], + [13179,0.412], + [13181,0.31], + [13183,0.249], + [13185,0.365], + [13187,0.021], + [13189,0.399], + [13191,0.355], + [13193,0.615], + [13195,0.106], + [13197,0.309], + [13199,0.399], + [13201,0.305], + [13205,0.465], + [13207,0.232], + [13209,0.264], + [13211,0.235], + [13213,0.01], + [13215,0.463], + [13217,0.449], + [13219,0.052], + [13221,0.176], + [13223,0.191], + [13225,0.448], + [13227,0.01], + [13229,0.093], + [13231,0.09], + [13233,0.12], + [13235,0.379], + [13237,0.262], + [13239,0.519], + [13241,0.027], + [13243,0.624], + [13245,0.565], + [13247,0.547], + [13249,0.254], + [13251,0.416], + [13253,0.332], + [13255,0.341], + [13257,0.119], + [13259,0.529], + [13261,0.523], + [13263,0.577], + [13265,0.621], + [13267,0.293], + [13269,0.38], + [13271,0.413], + [13273,0.597], + [13275,0.364], + [13277,0.296], + [13279,0.258], + [13281,0.015], + [13283,0.264], + [13285,0.362], + [13287,0.408], + [13289,0.428], + [13291,0.007], + [13293,0.278], + [13295,0.041], + [13297,0.177], + [13299,0.302], + [13301,0.611], + [13303,0.531], + [13305,0.206], + [13307,0.372], + [13309,0.434], + [13311,0.015], + [13313,0.038], + [13315,0.355], + [13317,0.426], + [13319,0.389], + [13321,0.28], + [15001,0.006], + [15003,0.024], + [15005,0.03], + [15007,0.004], + [15009,0.005], + [16001,0.014], + [16003,0.004], + [16005,0.007], + [16007,0.009], + [16009,0.001], + [16011,0.003], + [16013,0.004], + [16015,0.003], + [16017,0.003], + [16019,0.005], + [16021,0.005], + [16023,0.002], + [16025,0], + [16027,0.004], + [16029,0], + [16031,0.002], + [16033,0.008], + [16035,0.005], + [16037,0.001], + [16039,0.027], + [16041,0.003], + [16043,0.002], + [16045,0.001], + [16047,0.001], + [16049,0.001], + [16051,0], + [16053,0.002], + [16055,0.003], + [16057,0.012], + [16059,0], + [16061,0.001], + [16063,0], + [16065,0.002], + [16067,0.002], + [16069,0.004], + [16071,0.001], + [16073,0.005], + [16075,0.001], + [16077,0.001], + [16079,0.003], + [16081,0], + [16083,0.008], + [16085,0.001], + [16087,0.002], + [17001,0.041], + [17003,0.335], + [17005,0.076], + [17007,0.022], + [17009,0.192], + [17011,0.011], + [17013,0.003], + [17015,0.012], + [17017,0.052], + [17019,0.135], + [17021,0.013], + [17023,0.007], + [17025,0.008], + [17027,0.034], + [17029,0.039], + [17031,0.234], + [17033,0.065], + [17035,0.001], + [17037,0.079], + [17039,0.005], + [17041,0.007], + [17043,0.048], + [17045,0.003], + [17047,0.009], + [17049,0.007], + [17051,0.047], + [17053,0.011], + [17055,0.009], + [17057,0.038], + [17059,0.005], + [17061,0.014], + [17063,0.014], + [17065,0.004], + [17067,0.006], + [17069,0.027], + [17071,0.001], + [17073,0.019], + [17075,0.009], + [17077,0.15], + [17079,0.005], + [17081,0.084], + [17083,0.004], + [17085,0.006], + [17087,0.113], + [17089,0.055], + [17091,0.152], + [17093,0.074], + [17095,0.089], + [17097,0.068], + [17099,0.027], + [17101,0.083], + [17103,0.055], + [17105,0.042], + [17107,0.069], + [17109,0.047], + [17111,0.015], + [17113,0.084], + [17115,0.148], + [17117,0.01], + [17119,0.087], + [17121,0.037], + [17123,0.003], + [17125,0.008], + [17127,0.058], + [17129,0.004], + [17131,0.006], + [17133,0.002], + [17135,0.037], + [17137,0.07], + [17139,0.008], + [17141,0.01], + [17143,0.178], + [17145,0.091], + [17147,0.006], + [17149,0.012], + [17151,0.042], + [17153,0.303], + [17155,0.007], + [17157,0.101], + [17159,0.008], + [17161,0.104], + [17163,0.299], + [17165,0.026], + [17167,0.129], + [17169,0.09], + [17171,0.001], + [17173,0.007], + [17175,0.01], + [17177,0.096], + [17179,0.012], + [17181,0.016], + [17183,0.141], + [17185,0.007], + [17187,0.029], + [17189,0.009], + [17191,0.015], + [17193,0.007], + [17195,0.017], + [17197,0.113], + [17199,0.043], + [17201,0.13], + [17203,0.007], + [18001,0.011], + [18003,0.115], + [18005,0.019], + [18007,0.005], + [18009,0], + [18011,0.017], + [18013,0.007], + [18015,0.012], + [18017,0.012], + [18019,0.067], + [18021,0.008], + [18023,0.008], + [18025,0.004], + [18027,0.02], + [18029,0.009], + [18031,0.007], + [18033,0.007], + [18035,0.07], + [18037,0.013], + [18039,0.054], + [18041,0.025], + [18043,0.052], + [18045,0.002], + [18047,0.001], + [18049,0.009], + [18051,0.022], + [18053,0.072], + [18055,0.004], + [18057,0.04], + [18059,0.024], + [18061,0.006], + [18063,0.07], + [18065,0.026], + [18067,0.078], + [18069,0.01], + [18071,0.011], + [18073,0.006], + [18075,0.004], + [18077,0.021], + [18079,0.014], + [18081,0.025], + [18083,0.028], + [18085,0.007], + [18087,0.002], + [18089,0.237], + [18091,0.11], + [18093,0.004], + [18095,0.079], + [18097,0.28], + [18099,0.008], + [18101,0.008], + [18103,0.054], + [18105,0.031], + [18107,0.007], + [18109,0.004], + [18111,0.002], + [18113,0.005], + [18115,0.004], + [18117,0.026], + [18119,0.005], + [18121,0.006], + [18123,0.03], + [18125,0.009], + [18127,0.038], + [18129,0.018], + [18131,0.002], + [18133,0.026], + [18135,0.006], + [18137,0.004], + [18139,0.017], + [18141,0.129], + [18143,0.002], + [18145,0.012], + [18147,0.007], + [18149,0.009], + [18151,0.003], + [18153,0.04], + [18155,0.01], + [18157,0.053], + [18159,0.001], + [18161,0.002], + [18163,0.095], + [18165,0.012], + [18167,0.067], + [18169,0.011], + [18171,0.006], + [18173,0.017], + [18175,0.001], + [18177,0.051], + [18179,0.008], + [18181,0.005], + [18183,0.004], + [19001,0.006], + [19003,0.001], + [19005,0.013], + [19007,0.007], + [19009,0.002], + [19011,0.006], + [19013,0.095], + [19015,0.006], + [19017,0.009], + [19019,0.002], + [19021,0.025], + [19023,0.01], + [19025,0.015], + [19027,0.001], + [19029,0.002], + [19031,0.014], + [19033,0.017], + [19035,0.02], + [19037,0.011], + [19039,0.001], + [19041,0.007], + [19043,0.01], + [19045,0.028], + [19047,0.028], + [19049,0.019], + [19051,0], + [19053,0.018], + [19055,0.002], + [19057,0.057], + [19059,0.004], + [19061,0.035], + [19063,0.021], + [19065,0.022], + [19067,0.017], + [19069,0.002], + [19071,0.008], + [19073,0.005], + [19075,0.006], + [19077,0.003], + [19079,0.013], + [19081,0.016], + [19083,0.013], + [19085,0.002], + [19087,0.022], + [19089,0.003], + [19091,0.004], + [19093,0.007], + [19095,0.009], + [19097,0.005], + [19099,0.02], + [19101,0.072], + [19103,0.073], + [19105,0.021], + [19107,0.005], + [19109,0.008], + [19111,0.028], + [19113,0.055], + [19115,0.011], + [19117,0.001], + [19119,0.001], + [19121,0.002], + [19123,0.014], + [19125,0.011], + [19127,0.013], + [19129,0.007], + [19131,0.003], + [19133,0.003], + [19135,0], + [19137,0.001], + [19139,0.025], + [19141,0.013], + [19143,0.013], + [19145,0.02], + [19147,0.024], + [19149,0.01], + [19151,0.006], + [19153,0.068], + [19155,0.018], + [19157,0.019], + [19159,0.001], + [19161,0.007], + [19163,0.075], + [19165,0.008], + [19167,0.004], + [19169,0.023], + [19171,0.009], + [19173,0], + [19175,0.005], + [19177,0.007], + [19179,0.036], + [19181,0.005], + [19183,0.008], + [19185,0.003], + [19187,0.047], + [19189,0.017], + [19191,0.015], + [19193,0.036], + [19195,0.016], + [19197,0.004], + [20001,0.01], + [20003,0.005], + [20005,0.029], + [20007,0.008], + [20009,0.012], + [20011,0.028], + [20013,0.009], + [20015,0.025], + [20017,0.017], + [20019,0.005], + [20021,0.006], + [20023,0], + [20025,0.005], + [20027,0.009], + [20029,0.02], + [20031,0.008], + [20033,0.002], + [20035,0.033], + [20037,0.023], + [20039,0.005], + [20041,0.014], + [20043,0.06], + [20045,0.044], + [20047,0.003], + [20049,0.004], + [20051,0.011], + [20053,0.032], + [20055,0.029], + [20057,0.02], + [20059,0.009], + [20061,0.187], + [20063,0.005], + [20065,0.042], + [20067,0], + [20069,0.009], + [20071,0], + [20073,0.002], + [20075,0.053], + [20077,0.002], + [20079,0.017], + [20081,0], + [20083,0.001], + [20085,0.002], + [20087,0.007], + [20089,0.003], + [20091,0.047], + [20093,0.026], + [20095,0.005], + [20097,0.008], + [20099,0.048], + [20101,0], + [20103,0.088], + [20105,0.002], + [20107,0.008], + [20109,0.001], + [20111,0.023], + [20113,0.012], + [20115,0.008], + [20117,0.003], + [20119,0.006], + [20121,0.015], + [20123,0.007], + [20125,0.05], + [20127,0.002], + [20129,0.008], + [20131,0.007], + [20133,0.013], + [20135,0.005], + [20137,0.028], + [20139,0.006], + [20141,0.005], + [20143,0.01], + [20145,0.046], + [20147,0.007], + [20149,0.013], + [20151,0.025], + [20153,0.006], + [20155,0.03], + [20157,0.011], + [20159,0.02], + [20161,0.062], + [20163,0.018], + [20165,0.002], + [20167,0.023], + [20169,0.028], + [20171,0], + [20173,0.088], + [20175,0.046], + [20177,0.085], + [20179,0.01], + [20181,0.019], + [20183,0.003], + [20185,0.003], + [20187,0], + [20189,0.008], + [20191,0.01], + [20193,0.023], + [20195,0.001], + [20197,0.005], + [20199,0.002], + [20201,0.002], + [20203,0.009], + [20205,0.005], + [20207,0.004], + [20209,0.223], + [21001,0.031], + [21003,0.01], + [21005,0.028], + [21007,0.041], + [21009,0.035], + [21011,0.015], + [21013,0.028], + [21015,0.029], + [21017,0.07], + [21019,0.023], + [21021,0.08], + [21023,0.004], + [21025,0.013], + [21027,0.018], + [21029,0.011], + [21031,0.006], + [21033,0.063], + [21035,0.035], + [21037,0.032], + [21039,0.008], + [21041,0.032], + [21043,0.006], + [21045,0.008], + [21047,0.22], + [21049,0.047], + [21051,0.039], + [21053,0.004], + [21055,0.008], + [21057,0.021], + [21059,0.044], + [21061,0.015], + [21063,0.036], + [21065,0.001], + [21067,0.146], + [21069,0.022], + [21071,0.01], + [21073,0.094], + [21075,0.24], + [21077,0.02], + [21079,0.019], + [21081,0.008], + [21083,0.045], + [21085,0.012], + [21087,0.026], + [21089,0.011], + [21091,0.016], + [21093,0.116], + [21095,0.023], + [21097,0.017], + [21099,0.041], + [21101,0.073], + [21103,0.03], + [21105,0.084], + [21107,0.064], + [21109,0.003], + [21111,0.217], + [21113,0.046], + [21115,0.005], + [21117,0.046], + [21119,0.005], + [21121,0.008], + [21123,0.035], + [21125,0.007], + [21127,0.002], + [21129,0.008], + [21131,0.001], + [21133,0.004], + [21135,0.007], + [21137,0.019], + [21139,0.005], + [21141,0.067], + [21143,0.057], + [21145,0.105], + [21147,0.057], + [21149,0.012], + [21151,0.041], + [21153,0], + [21155,0.073], + [21157,0.009], + [21159,0.055], + [21161,0.063], + [21163,0.038], + [21165,0.002], + [21167,0.042], + [21169,0.016], + [21171,0.025], + [21173,0.028], + [21175,0.034], + [21177,0.045], + [21179,0.051], + [21181,0.016], + [21183,0.009], + [21185,0.037], + [21187,0.006], + [21189,0.055], + [21191,0.011], + [21193,0.019], + [21195,0.009], + [21197,0.004], + [21199,0.009], + [21201,0.018], + [21203,0.002], + [21205,0.015], + [21207,0.003], + [21209,0.046], + [21211,0.069], + [21213,0.103], + [21215,0.019], + [21217,0.043], + [21219,0.082], + [21221,0.074], + [21223,0.002], + [21225,0.133], + [21227,0.089], + [21229,0.054], + [21231,0.02], + [21233,0.036], + [21235,0.009], + [21237,0.001], + [21239,0.045], + [22001,0.174], + [22003,0.189], + [22005,0.218], + [22007,0.303], + [22009,0.269], + [22011,0.125], + [22013,0.432], + [22015,0.228], + [22017,0.492], + [22019,0.249], + [22021,0.164], + [22023,0.034], + [22025,0.323], + [22027,0.52], + [22029,0.411], + [22031,0.354], + [22033,0.461], + [22035,0.697], + [22037,0.436], + [22039,0.276], + [22041,0.339], + [22043,0.162], + [22045,0.317], + [22047,0.482], + [22049,0.297], + [22051,0.27], + [22053,0.165], + [22055,0.259], + [22057,0.136], + [22059,0.113], + [22061,0.409], + [22063,0.06], + [22065,0.637], + [22067,0.491], + [22069,0.413], + [22071,0.595], + [22073,0.374], + [22075,0.203], + [22077,0.358], + [22079,0.316], + [22081,0.391], + [22083,0.361], + [22085,0.16], + [22087,0.233], + [22089,0.266], + [22091,0.525], + [22093,0.496], + [22095,0.565], + [22097,0.415], + [22099,0.291], + [22101,0.305], + [22103,0.121], + [22105,0.295], + [22107,0.554], + [22109,0.19], + [22111,0.248], + [22113,0.145], + [22115,0.147], + [22117,0.302], + [22119,0.34], + [22121,0.401], + [22123,0.161], + [22125,0.445], + [22127,0.317], + [23001,0.024], + [23003,0.01], + [23005,0.03], + [23007,0.002], + [23009,0.009], + [23011,0.009], + [23013,0.005], + [23015,0.004], + [23017,0.004], + [23019,0.009], + [23021,0.006], + [23023,0.008], + [23025,0.006], + [23027,0.006], + [23029,0.008], + [23031,0.009], + [24001,0.081], + [24003,0.168], + [24005,0.289], + [24009,0.117], + [24011,0.141], + [24013,0.035], + [24015,0.068], + [24017,0.46], + [24019,0.266], + [24021,0.097], + [24023,0.009], + [24025,0.138], + [24027,0.189], + [24029,0.143], + [24031,0.185], + [24033,0.627], + [24035,0.067], + [24037,0.146], + [24039,0.424], + [24041,0.105], + [24043,0.106], + [24045,0.259], + [24047,0.129], + [24510,0.624], + [25001,0.029], + [25003,0.028], + [25005,0.043], + [25007,0.047], + [25009,0.043], + [25011,0.015], + [25013,0.089], + [25015,0.026], + [25017,0.053], + [25019,0.078], + [25021,0.071], + [25023,0.1], + [25025,0.224], + [25027,0.05], + [26001,0.004], + [26003,0.077], + [26005,0.014], + [26007,0.006], + [26009,0.004], + [26011,0.004], + [26013,0.093], + [26015,0.007], + [26017,0.017], + [26019,0.002], + [26021,0.146], + [26023,0.024], + [26025,0.105], + [26027,0.052], + [26029,0.005], + [26031,0.008], + [26033,0.06], + [26035,0.006], + [26037,0.018], + [26039,0.007], + [26041,0.003], + [26043,0.006], + [26045,0.068], + [26047,0.007], + [26049,0.199], + [26051,0.003], + [26053,0.039], + [26055,0.009], + [26057,0.057], + [26059,0.007], + [26061,0.008], + [26063,0.005], + [26065,0.117], + [26067,0.046], + [26069,0.007], + [26071,0.005], + [26073,0.027], + [26075,0.078], + [26077,0.111], + [26079,0.01], + [26081,0.096], + [26083,0.009], + [26085,0.079], + [26087,0.013], + [26089,0.005], + [26091,0.025], + [26093,0.006], + [26095,0.068], + [26097,0.034], + [26099,0.117], + [26101,0.029], + [26103,0.017], + [26105,0.009], + [26107,0.03], + [26109,0.003], + [26111,0.014], + [26113,0.006], + [26115,0.024], + [26117,0.022], + [26119,0.002], + [26121,0.136], + [26123,0.012], + [26125,0.136], + [26127,0.011], + [26129,0.003], + [26131,0.005], + [26133,0.011], + [26135,0.005], + [26137,0.007], + [26139,0.015], + [26141,0.006], + [26143,0.002], + [26145,0.186], + [26147,0.022], + [26149,0.022], + [26151,0.005], + [26153,0.004], + [26155,0.007], + [26157,0.01], + [26159,0.033], + [26161,0.119], + [26163,0.387], + [26165,0.007], + [27001,0.005], + [27003,0.062], + [27005,0.005], + [27007,0.016], + [27009,0.04], + [27011,0.001], + [27013,0.039], + [27015,0.007], + [27017,0.019], + [27019,0.018], + [27021,0.004], + [27023,0.009], + [27025,0.013], + [27027,0.037], + [27029,0.002], + [27031,0.001], + [27033,0.009], + [27035,0.008], + [27037,0.063], + [27039,0.003], + [27041,0.004], + [27043,0.003], + [27045,0.005], + [27047,0.011], + [27049,0.013], + [27051,0.003], + [27053,0.133], + [27055,0.013], + [27057,0.006], + [27059,0.005], + [27061,0.005], + [27063,0.004], + [27065,0.002], + [27067,0.053], + [27069,0.015], + [27071,0.006], + [27073,0.009], + [27075,0.006], + [27077,0.001], + [27079,0.008], + [27081,0.004], + [27083,0.035], + [27085,0.006], + [27087,0.005], + [27089,0.004], + [27091,0.005], + [27093,0.004], + [27095,0.005], + [27097,0.006], + [27099,0.039], + [27101,0.004], + [27103,0.028], + [27105,0.043], + [27107,0.01], + [27109,0.062], + [27111,0.015], + [27113,0.011], + [27115,0.023], + [27117,0.013], + [27119,0.022], + [27121,0.004], + [27123,0.121], + [27125,0.005], + [27127,0.008], + [27129,0.004], + [27131,0.057], + [27133,0.009], + [27135,0.01], + [27137,0.016], + [27139,0.043], + [27141,0.025], + [27143,0.011], + [27145,0.064], + [27147,0.032], + [27149,0.02], + [27151,0.022], + [27153,0.007], + [27155,0.005], + [27157,0.006], + [27159,0.006], + [27161,0.024], + [27163,0.046], + [27165,0.009], + [27167,0.004], + [27169,0.013], + [27171,0.014], + [27173,0.007], + [28001,0.563], + [28003,0.121], + [28005,0.419], + [28007,0.423], + [28009,0.342], + [28011,0.642], + [28013,0.274], + [28015,0.347], + [28017,0.443], + [28019,0.31], + [28021,0.872], + [28023,0.355], + [28025,0.6], + [28027,0.776], + [28029,0.516], + [28031,0.366], + [28033,0.273], + [28035,0.372], + [28037,0.36], + [28039,0.08], + [28041,0.259], + [28043,0.434], + [28045,0.08], + [28047,0.249], + [28049,0.726], + [28051,0.84], + [28053,0.76], + [28055,0.616], + [28057,0.073], + [28059,0.213], + [28061,0.543], + [28063,0.858], + [28065,0.613], + [28067,0.294], + [28069,0.617], + [28071,0.236], + [28073,0.201], + [28075,0.437], + [28077,0.325], + [28079,0.419], + [28081,0.295], + [28083,0.742], + [28085,0.319], + [28087,0.438], + [28089,0.38], + [28091,0.326], + [28093,0.478], + [28095,0.312], + [28097,0.442], + [28099,0.209], + [28101,0.305], + [28103,0.722], + [28105,0.37], + [28107,0.486], + [28109,0.128], + [28111,0.198], + [28113,0.543], + [28115,0.16], + [28117,0.1], + [28119,0.72], + [28121,0.208], + [28123,0.381], + [28125,0.746], + [28127,0.366], + [28129,0.23], + [28131,0.183], + [28133,0.739], + [28135,0.537], + [28137,0.299], + [28139,0.167], + [28141,0.027], + [28143,0.785], + [28145,0.155], + [28147,0.463], + [28149,0.494], + [28151,0.722], + [28153,0.41], + [28155,0.204], + [28157,0.711], + [28159,0.469], + [28161,0.397], + [28163,0.596], + [29001,0.027], + [29003,0.014], + [29005,0.005], + [29007,0.057], + [29009,0.002], + [29011,0.003], + [29013,0.015], + [29015,0.003], + [29017,0.004], + [29019,0.09], + [29021,0.052], + [29023,0.055], + [29025,0.006], + [29027,0.044], + [29029,0.008], + [29031,0.074], + [29033,0.019], + [29035,0.001], + [29037,0.041], + [29039,0], + [29041,0.026], + [29043,0.008], + [29045,0.003], + [29047,0.061], + [29049,0.015], + [29051,0.117], + [29053,0.058], + [29055,0.004], + [29057,0.004], + [29059,0.001], + [29061,0.006], + [29063,0.09], + [29065,0.005], + [29067,0.002], + [29069,0.102], + [29071,0.007], + [29073,0.005], + [29075,0.006], + [29077,0.033], + [29079,0.003], + [29081,0.005], + [29083,0.013], + [29085,0], + [29087,0.011], + [29089,0.059], + [29091,0.002], + [29093,0.011], + [29095,0.233], + [29097,0.019], + [29099,0.009], + [29101,0.043], + [29103,0.005], + [29105,0.006], + [29107,0.022], + [29109,0.005], + [29111,0.042], + [29113,0.019], + [29115,0.005], + [29117,0.026], + [29119,0.018], + [29121,0.02], + [29123,0.008], + [29125,0.003], + [29127,0.037], + [29129,0.005], + [29131,0.002], + [29133,0.249], + [29135,0.027], + [29137,0.034], + [29139,0.015], + [29141,0.009], + [29143,0.154], + [29145,0.009], + [29147,0.028], + [29149,0.002], + [29151,0.002], + [29153,0.001], + [29155,0.275], + [29157,0.006], + [29159,0.035], + [29161,0.024], + [29163,0.073], + [29165,0.068], + [29167,0.009], + [29169,0.112], + [29171,0.001], + [29173,0.013], + [29175,0.059], + [29177,0.013], + [29179,0.02], + [29181,0.007], + [29183,0.044], + [29185,0.007], + [29186,0.02], + [29187,0.044], + [29189,0.242], + [29195,0.05], + [29197,0.005], + [29199,0], + [29201,0.116], + [29203,0.002], + [29205,0.016], + [29207,0.015], + [29209,0.002], + [29211,0.023], + [29213,0.015], + [29215,0.022], + [29217,0.005], + [29219,0.02], + [29221,0.021], + [29223,0.006], + [29225,0.01], + [29227,0.005], + [29229,0.005], + [29510,0.464], + [30001,0.001], + [30003,0], + [30005,0.004], + [30007,0.001], + [30009,0.004], + [30011,0], + [30013,0.013], + [30015,0.002], + [30017,0.006], + [30019,0], + [30021,0.008], + [30023,0.007], + [30025,0], + [30027,0.001], + [30029,0.004], + [30031,0.004], + [30033,0.007], + [30035,0.003], + [30037,0.014], + [30039,0.001], + [30041,0.004], + [30043,0.004], + [30045,0], + [30047,0.003], + [30049,0.003], + [30051,0], + [30053,0.002], + [30055,0], + [30057,0.002], + [30059,0.001], + [30061,0.008], + [30063,0.006], + [30065,0], + [30067,0.004], + [30069,0], + [30071,0], + [30073,0.001], + [30075,0], + [30077,0.009], + [30079,0], + [30081,0.001], + [30083,0], + [30085,0.002], + [30087,0.002], + [30089,0.003], + [30091,0], + [30093,0.005], + [30095,0.001], + [30097,0], + [30099,0.005], + [30101,0.005], + [30103,0], + [30105,0.004], + [30107,0], + [30109,0], + [30111,0.007], + [31001,0.006], + [31003,0.01], + [31005,0], + [31007,0], + [31009,0], + [31011,0.003], + [31013,0.014], + [31015,0.006], + [31017,0], + [31019,0.01], + [31021,0.005], + [31023,0.001], + [31025,0.003], + [31027,0.002], + [31029,0.001], + [31031,0], + [31033,0.008], + [31035,0.002], + [31037,0.037], + [31039,0.001], + [31041,0.002], + [31043,0.054], + [31045,0.044], + [31047,0.063], + [31049,0.002], + [31051,0.004], + [31053,0.01], + [31055,0.111], + [31057,0.002], + [31059,0.004], + [31061,0.005], + [31063,0.006], + [31065,0.001], + [31067,0.006], + [31069,0.002], + [31071,0.003], + [31073,0.002], + [31075,0.008], + [31077,0.004], + [31079,0.028], + [31081,0.002], + [31083,0.005], + [31085,0], + [31087,0.001], + [31089,0.001], + [31091,0.01], + [31093,0.002], + [31095,0.006], + [31097,0.061], + [31099,0.001], + [31101,0.012], + [31103,0], + [31105,0.001], + [31107,0.004], + [31109,0.04], + [31111,0.015], + [31113,0], + [31115,0], + [31117,0], + [31119,0.013], + [31121,0.005], + [31123,0.008], + [31125,0.004], + [31127,0.015], + [31129,0.001], + [31131,0.004], + [31133,0.002], + [31135,0.001], + [31137,0.004], + [31139,0.002], + [31141,0.005], + [31143,0.002], + [31145,0.006], + [31147,0.002], + [31149,0.015], + [31151,0.025], + [31153,0.039], + [31155,0.005], + [31157,0.009], + [31159,0.006], + [31161,0.021], + [31163,0.002], + [31165,0.004], + [31167,0.015], + [31169,0.005], + [31171,0], + [31173,0.002], + [31175,0.005], + [31177,0.011], + [31179,0.014], + [31181,0.003], + [31183,0], + [31185,0.016], + [32001,0.025], + [32003,0.117], + [32005,0.008], + [32007,0.005], + [32009,0.026], + [32011,0.001], + [32013,0.006], + [32015,0.009], + [32017,0.045], + [32019,0.008], + [32021,0.051], + [32023,0.019], + [32027,0.038], + [32029,0.017], + [32031,0.023], + [32033,0.059], + [32510,0.021], + [33001,0.007], + [33003,0.005], + [33005,0.009], + [33007,0.026], + [33009,0.012], + [33011,0.029], + [33013,0.014], + [33015,0.008], + [33017,0.01], + [33019,0.008], + [34001,0.146], + [34003,0.06], + [34005,0.169], + [34007,0.193], + [34009,0.045], + [34011,0.195], + [34013,0.397], + [34015,0.102], + [34017,0.121], + [34019,0.026], + [34021,0.207], + [34023,0.103], + [34025,0.072], + [34027,0.035], + [34029,0.031], + [34031,0.112], + [34033,0.132], + [34035,0.097], + [34037,0.023], + [34039,0.212], + [34041,0.045], + [35001,0.03], + [35003,0], + [35005,0.016], + [35006,0.011], + [35007,0.007], + [35009,0.051], + [35011,0.016], + [35013,0.018], + [35015,0.016], + [35017,0.01], + [35019,0.008], + [35021,0], + [35023,0.013], + [35025,0.038], + [35027,0.005], + [35028,0.006], + [35029,0.016], + [35031,0.007], + [35033,0], + [35035,0.035], + [35037,0.017], + [35039,0.006], + [35041,0.028], + [35043,0.023], + [35045,0.008], + [35047,0.013], + [35049,0.011], + [35051,0.004], + [35053,0.006], + [35055,0.005], + [35057,0.008], + [35059,0.016], + [35061,0.014], + [36001,0.124], + [36003,0.015], + [36005,0.352], + [36007,0.057], + [36009,0.014], + [36011,0.043], + [36013,0.026], + [36015,0.063], + [36017,0.01], + [36019,0.043], + [36021,0.045], + [36023,0.019], + [36025,0.018], + [36027,0.105], + [36029,0.135], + [36031,0.032], + [36033,0.057], + [36035,0.021], + [36037,0.021], + [36039,0.058], + [36041,0.008], + [36043,0.013], + [36045,0.061], + [36047,0.322], + [36049,0.007], + [36051,0.029], + [36053,0.018], + [36055,0.153], + [36057,0.022], + [36059,0.117], + [36061,0.148], + [36063,0.07], + [36065,0.06], + [36067,0.114], + [36069,0.025], + [36071,0.11], + [36073,0.058], + [36075,0.011], + [36077,0.022], + [36079,0.031], + [36081,0.183], + [36083,0.065], + [36085,0.103], + [36087,0.123], + [36089,0.024], + [36091,0.017], + [36093,0.101], + [36095,0.016], + [36097,0.01], + [36099,0.051], + [36101,0.017], + [36103,0.078], + [36105,0.08], + [36107,0.007], + [36109,0.038], + [36111,0.06], + [36113,0.013], + [36115,0.032], + [36117,0.028], + [36119,0.149], + [36121,0.041], + [36123,0.01], + [37001,0.195], + [37003,0.058], + [37005,0.024], + [37007,0.486], + [37009,0.007], + [37011,0.04], + [37013,0.25], + [37015,0.616], + [37017,0.347], + [37019,0.098], + [37021,0.063], + [37023,0.061], + [37025,0.18], + [37027,0.046], + [37029,0.138], + [37031,0.053], + [37033,0.327], + [37035,0.082], + [37037,0.113], + [37039,0.012], + [37041,0.352], + [37043,0.021], + [37045,0.21], + [37047,0.305], + [37049,0.216], + [37051,0.37], + [37053,0.055], + [37055,0.03], + [37057,0.092], + [37059,0.05], + [37061,0.238], + [37063,0.365], + [37065,0.576], + [37067,0.262], + [37069,0.25], + [37071,0.163], + [37073,0.334], + [37075,0.002], + [37077,0.301], + [37079,0.349], + [37081,0.339], + [37083,0.528], + [37085,0.208], + [37087,0.009], + [37089,0.035], + [37091,0.594], + [37093,0.338], + [37095,0.297], + [37097,0.122], + [37099,0.022], + [37101,0.16], + [37103,0.305], + [37105,0.203], + [37107,0.391], + [37109,0.05], + [37111,0.036], + [37113,0.017], + [37115,0.016], + [37117,0.421], + [37119,0.316], + [37121,0.004], + [37123,0.176], + [37125,0.124], + [37127,0.393], + [37129,0.137], + [37131,0.564], + [37133,0.14], + [37135,0.114], + [37137,0.184], + [37139,0.366], + [37141,0.143], + [37143,0.24], + [37145,0.263], + [37147,0.347], + [37149,0.049], + [37151,0.06], + [37153,0.319], + [37155,0.238], + [37157,0.184], + [37159,0.162], + [37161,0.095], + [37163,0.254], + [37165,0.389], + [37167,0.114], + [37169,0.042], + [37171,0.037], + [37173,0.005], + [37175,0.048], + [37177,0.371], + [37179,0.114], + [37181,0.498], + [37183,0.204], + [37185,0.503], + [37187,0.475], + [37189,0.018], + [37191,0.305], + [37193,0.04], + [37195,0.396], + [37197,0.035], + [37199,0.007], + [38001,0.021], + [38003,0.022], + [38005,0], + [38007,0], + [38009,0.006], + [38011,0], + [38013,0.002], + [38015,0.023], + [38017,0.056], + [38019,0.001], + [38021,0.013], + [38023,0.032], + [38025,0.017], + [38027,0], + [38029,0], + [38031,0], + [38033,0], + [38035,0.038], + [38037,0.001], + [38039,0], + [38041,0.004], + [38043,0.002], + [38045,0.01], + [38047,0], + [38049,0.004], + [38051,0.005], + [38053,0.016], + [38055,0.007], + [38057,0.009], + [38059,0.01], + [38061,0.014], + [38063,0.001], + [38065,0], + [38067,0.003], + [38069,0.006], + [38071,0.006], + [38073,0.008], + [38075,0.002], + [38077,0.007], + [38079,0.006], + [38081,0.025], + [38083,0], + [38085,0.002], + [38087,0.018], + [38089,0.02], + [38091,0.007], + [38093,0.015], + [38095,0.008], + [38097,0.011], + [38099,0.004], + [38101,0.039], + [38103,0], + [38105,0.045], + [39001,0.005], + [39003,0.119], + [39005,0.007], + [39007,0.036], + [39009,0.03], + [39011,0.006], + [39013,0.039], + [39015,0.008], + [39017,0.08], + [39019,0.003], + [39021,0.018], + [39023,0.081], + [39025,0.014], + [39027,0.021], + [39029,0.02], + [39031,0.011], + [39033,0.01], + [39035,0.296], + [39037,0.007], + [39039,0.018], + [39041,0.034], + [39043,0.091], + [39045,0.074], + [39047,0.025], + [39049,0.226], + [39051,0.004], + [39053,0.022], + [39055,0.014], + [39057,0.069], + [39059,0.011], + [39061,0.255], + [39063,0.017], + [39065,0.007], + [39067,0.029], + [39069,0.009], + [39071,0.015], + [39073,0.008], + [39075,0.001], + [39077,0.014], + [39079,0.007], + [39081,0.055], + [39083,0.01], + [39085,0.043], + [39087,0.02], + [39089,0.038], + [39091,0.018], + [39093,0.085], + [39095,0.19], + [39097,0.059], + [39099,0.151], + [39101,0.057], + [39103,0.015], + [39105,0.011], + [39107,0.008], + [39109,0.02], + [39111,0.004], + [39113,0.204], + [39115,0.049], + [39117,0.009], + [39119,0.032], + [39121,0.056], + [39123,0.012], + [39125,0.008], + [39127,0.004], + [39129,0.036], + [39131,0.017], + [39133,0.041], + [39135,0.005], + [39137,0.004], + [39139,0.089], + [39141,0.053], + [39143,0.03], + [39145,0.029], + [39147,0.031], + [39149,0.026], + [39151,0.075], + [39153,0.145], + [39155,0.082], + [39157,0.007], + [39159,0.026], + [39161,0.013], + [39163,0.003], + [39165,0.034], + [39167,0.013], + [39169,0.014], + [39171,0.011], + [39173,0.026], + [39175,0.002], + [40001,0.002], + [40003,0.031], + [40005,0.036], + [40007,0.006], + [40009,0.042], + [40011,0.042], + [40013,0.018], + [40015,0.023], + [40017,0.028], + [40019,0.065], + [40021,0.014], + [40023,0.11], + [40025,0.002], + [40027,0.047], + [40029,0.002], + [40031,0.168], + [40033,0.023], + [40035,0.031], + [40037,0.021], + [40039,0.031], + [40041,0.005], + [40043,0.002], + [40045,0.002], + [40047,0.024], + [40049,0.023], + [40051,0.024], + [40053,0.009], + [40055,0.065], + [40057,0.094], + [40059,0], + [40061,0.009], + [40063,0.057], + [40065,0.068], + [40067,0.014], + [40069,0.019], + [40071,0.021], + [40073,0.013], + [40075,0.034], + [40077,0.011], + [40079,0.019], + [40081,0.019], + [40083,0.082], + [40085,0.026], + [40087,0.012], + [40089,0.079], + [40091,0.027], + [40093,0.004], + [40095,0.017], + [40097,0.005], + [40099,0.016], + [40101,0.106], + [40103,0.003], + [40105,0.025], + [40107,0.074], + [40109,0.15], + [40111,0.082], + [40113,0.112], + [40115,0.011], + [40117,0.01], + [40119,0.04], + [40121,0.029], + [40123,0.025], + [40125,0.035], + [40127,0.008], + [40129,0.002], + [40131,0.01], + [40133,0.048], + [40135,0.019], + [40137,0.018], + [40139,0.025], + [40141,0.076], + [40143,0.101], + [40145,0.035], + [40147,0.027], + [40149,0.013], + [40151,0.031], + [40153,0.013], + [41001,0.009], + [41003,0.011], + [41005,0.009], + [41007,0.008], + [41009,0.005], + [41011,0.005], + [41013,0.005], + [41015,0.004], + [41017,0.006], + [41019,0.004], + [41021,0], + [41023,0.001], + [41025,0.005], + [41027,0.006], + [41029,0.007], + [41031,0.008], + [41033,0.005], + [41035,0.007], + [41037,0.003], + [41039,0.011], + [41041,0.006], + [41043,0.005], + [41045,0.011], + [41047,0.012], + [41049,0.003], + [41051,0.055], + [41053,0.008], + [41055,0.002], + [41057,0.004], + [41059,0.01], + [41061,0.008], + [41063,0.002], + [41065,0.003], + [41067,0.02], + [41069,0], + [41071,0.008], + [42001,0.014], + [42003,0.129], + [42005,0.008], + [42007,0.058], + [42009,0.006], + [42011,0.054], + [42013,0.017], + [42015,0.006], + [42017,0.04], + [42019,0.01], + [42021,0.035], + [42023,0.001], + [42025,0.023], + [42027,0.038], + [42029,0.059], + [42031,0.014], + [42033,0.029], + [42035,0.018], + [42037,0.018], + [42039,0.016], + [42041,0.04], + [42043,0.195], + [42045,0.216], + [42047,0.009], + [42049,0.072], + [42051,0.042], + [42053,0.259], + [42055,0.037], + [42057,0.015], + [42059,0.031], + [42061,0.056], + [42063,0.023], + [42065,0.005], + [42067,0.011], + [42069,0.028], + [42071,0.042], + [42073,0.036], + [42075,0.025], + [42077,0.074], + [42079,0.051], + [42081,0.05], + [42083,0.025], + [42085,0.057], + [42087,0.005], + [42089,0.147], + [42091,0.092], + [42093,0.018], + [42095,0.057], + [42097,0.027], + [42099,0.01], + [42101,0.421], + [42103,0.064], + [42105,0.004], + [42107,0.032], + [42109,0.01], + [42111,0.026], + [42113,0.024], + [42115,0.007], + [42117,0.007], + [42119,0.064], + [42121,0.008], + [42123,0.005], + [42125,0.031], + [42127,0.032], + [42129,0.024], + [42131,0.011], + [42133,0.059], + [44001,0.013], + [44003,0.019], + [44005,0.04], + [44007,0.099], + [44009,0.014], + [45001,0.276], + [45003,0.25], + [45005,0.738], + [45007,0.157], + [45009,0.611], + [45011,0.458], + [45013,0.177], + [45015,0.24], + [45017,0.409], + [45019,0.267], + [45021,0.201], + [45023,0.371], + [45025,0.32], + [45027,0.475], + [45029,0.383], + [45031,0.411], + [45033,0.489], + [45035,0.251], + [45037,0.353], + [45039,0.586], + [45041,0.427], + [45043,0.309], + [45045,0.177], + [45047,0.317], + [45049,0.534], + [45051,0.133], + [45053,0.416], + [45055,0.236], + [45057,0.21], + [45059,0.241], + [45061,0.643], + [45063,0.148], + [45065,0.448], + [45067,0.567], + [45069,0.505], + [45071,0.311], + [45073,0.069], + [45075,0.617], + [45077,0.068], + [45079,0.469], + [45081,0.251], + [45083,0.204], + [45085,0.467], + [45087,0.307], + [45089,0.645], + [45091,0.192], + [46003,0.017], + [46005,0.012], + [46007,0.001], + [46009,0.015], + [46011,0.014], + [46013,0.024], + [46015,0.005], + [46017,0.001], + [46019,0.007], + [46021,0], + [46023,0.001], + [46025,0.002], + [46027,0.019], + [46029,0.008], + [46031,0.003], + [46033,0.003], + [46035,0.014], + [46037,0.001], + [46039,0], + [46041,0.001], + [46043,0], + [46045,0.002], + [46047,0], + [46049,0], + [46051,0.005], + [46053,0], + [46055,0], + [46057,0.004], + [46059,0.001], + [46061,0], + [46063,0.021], + [46065,0.001], + [46067,0], + [46069,0.024], + [46071,0.003], + [46073,0], + [46075,0.011], + [46077,0], + [46079,0.004], + [46081,0.009], + [46083,0.013], + [46085,0.001], + [46087,0.007], + [46089,0.021], + [46091,0.006], + [46093,0.019], + [46095,0.001], + [46097,0.003], + [46099,0.057], + [46101,0.005], + [46102,0.001], + [46103,0.012], + [46105,0], + [46107,0], + [46109,0.006], + [46111,0], + [46115,0.002], + [46117,0], + [46119,0], + [46121,0.001], + [46123,0], + [46125,0.005], + [46127,0.008], + [46129,0.05], + [46135,0.016], + [46137,0], + [47001,0.035], + [47003,0.081], + [47005,0.03], + [47007,0.033], + [47009,0.027], + [47011,0.051], + [47013,0.003], + [47015,0.019], + [47017,0.103], + [47019,0.017], + [47021,0.016], + [47023,0.089], + [47025,0.01], + [47027,0.024], + [47029,0.019], + [47031,0.039], + [47033,0.13], + [47035,0.01], + [47037,0.271], + [47039,0.044], + [47041,0.018], + [47043,0.042], + [47045,0.129], + [47047,0.274], + [47049,0.003], + [47051,0.048], + [47053,0.171], + [47055,0.098], + [47057,0.005], + [47059,0.022], + [47061,0.007], + [47063,0.046], + [47065,0.191], + [47067,0.005], + [47069,0.419], + [47071,0.039], + [47073,0.013], + [47075,0.508], + [47077,0.078], + [47079,0.082], + [47081,0.052], + [47083,0.054], + [47085,0.023], + [47087,0.003], + [47089,0.017], + [47091,0.035], + [47093,0.087], + [47095,0.285], + [47097,0.337], + [47099,0.017], + [47101,0.018], + [47103,0.072], + [47105,0.01], + [47107,0.037], + [47109,0.055], + [47111,0.002], + [47113,0.372], + [47115,0.026], + [47117,0.076], + [47119,0.115], + [47121,0.019], + [47123,0.021], + [47125,0.201], + [47127,0.022], + [47129,0.058], + [47131,0.103], + [47133,0.007], + [47135,0.027], + [47137,0.002], + [47139,0.003], + [47141,0.022], + [47143,0.023], + [47145,0.023], + [47147,0.073], + [47149,0.148], + [47151,0.006], + [47153,0.002], + [47155,0.009], + [47157,0.537], + [47159,0.028], + [47161,0.01], + [47163,0.02], + [47165,0.073], + [47167,0.184], + [47169,0.102], + [47171,0.003], + [47173,0.005], + [47175,0.003], + [47177,0.021], + [47179,0.042], + [47181,0.068], + [47183,0.084], + [47185,0.021], + [47187,0.041], + [47189,0.071], + [48001,0.21], + [48003,0.007], + [48005,0.148], + [48007,0.014], + [48009,0.01], + [48011,0.003], + [48013,0.003], + [48015,0.09], + [48017,0.006], + [48019,0.007], + [48021,0.075], + [48023,0.034], + [48025,0.074], + [48027,0.242], + [48029,0.077], + [48031,0], + [48033,0], + [48035,0.016], + [48037,0.245], + [48039,0.14], + [48041,0.107], + [48043,0.002], + [48045,0.008], + [48047,0.007], + [48049,0.038], + [48051,0.133], + [48053,0.018], + [48055,0.061], + [48057,0.028], + [48059,0.009], + [48061,0.006], + [48063,0.166], + [48065,0.008], + [48067,0.173], + [48069,0.021], + [48071,0.073], + [48073,0.136], + [48075,0.08], + [48077,0.005], + [48079,0.05], + [48081,0.01], + [48083,0.016], + [48085,0.097], + [48087,0.092], + [48089,0.129], + [48091,0.02], + [48093,0.013], + [48095,0.013], + [48097,0.028], + [48099,0.136], + [48101,0.145], + [48103,0.027], + [48105,0.007], + [48107,0.036], + [48109,0.001], + [48111,0.008], + [48113,0.226], + [48115,0.081], + [48117,0.01], + [48119,0.088], + [48121,0.098], + [48123,0.093], + [48125,0.027], + [48127,0], + [48129,0.057], + [48131,0.013], + [48133,0.033], + [48135,0.048], + [48137,0], + [48139,0.101], + [48141,0.033], + [48143,0.019], + [48145,0.245], + [48147,0.057], + [48149,0.065], + [48151,0.026], + [48153,0.042], + [48155,0.023], + [48157,0.205], + [48159,0.044], + [48161,0.152], + [48163,0.036], + [48165,0.025], + [48167,0.126], + [48169,0.057], + [48171,0.001], + [48173,0], + [48175,0.059], + [48177,0.067], + [48179,0.045], + [48181,0.055], + [48183,0.2], + [48185,0.152], + [48187,0.082], + [48189,0.05], + [48191,0.065], + [48193,0.008], + [48195,0.003], + [48197,0.059], + [48199,0.058], + [48201,0.19], + [48203,0.207], + [48205,0.075], + [48207,0.04], + [48209,0.042], + [48211,0.01], + [48213,0.067], + [48215,0.005], + [48217,0.066], + [48219,0.032], + [48221,0.008], + [48223,0.071], + [48225,0.257], + [48227,0.056], + [48229,0.02], + [48231,0.078], + [48233,0.016], + [48235,0.041], + [48237,0.05], + [48239,0.068], + [48241,0.166], + [48243,0.01], + [48245,0.337], + [48247,0.003], + [48249,0.007], + [48251,0.036], + [48253,0.145], + [48255,0.068], + [48257,0.118], + [48259,0.006], + [48261,0], + [48263,0.009], + [48265,0.015], + [48267,0.011], + [48269,0], + [48271,0.001], + [48273,0.033], + [48275,0.056], + [48277,0.128], + [48279,0.039], + [48281,0.046], + [48283,0.015], + [48285,0.064], + [48287,0.112], + [48289,0.068], + [48291,0.099], + [48293,0.172], + [48295,0.005], + [48297,0.023], + [48299,0.007], + [48301,0], + [48303,0.07], + [48305,0.011], + [48307,0.011], + [48309,0.146], + [48311,0], + [48313,0.164], + [48315,0.229], + [48317,0.008], + [48319,0], + [48321,0.104], + [48323,0.005], + [48325,0.027], + [48327,0], + [48329,0.067], + [48331,0.104], + [48333,0.004], + [48335,0.099], + [48337,0.007], + [48339,0.05], + [48341,0.038], + [48343,0.233], + [48345,0.015], + [48347,0.177], + [48349,0.122], + [48351,0.203], + [48353,0.06], + [48355,0.037], + [48357,0.008], + [48359,0.032], + [48361,0.087], + [48363,0.025], + [48365,0.173], + [48367,0.013], + [48369,0.012], + [48371,0.035], + [48373,0.098], + [48375,0.101], + [48377,0], + [48379,0.035], + [48381,0.027], + [48383,0.008], + [48385,0.006], + [48387,0.168], + [48389,0.029], + [48391,0.067], + [48393,0], + [48395,0.204], + [48397,0.063], + [48399,0.03], + [48401,0.169], + [48403,0.056], + [48405,0.213], + [48407,0.092], + [48409,0.017], + [48411,0.02], + [48413,0.005], + [48415,0.046], + [48417,0.002], + [48419,0.191], + [48421,0.012], + [48423,0.175], + [48425,0.012], + [48427,0.001], + [48429,0.028], + [48431,0], + [48433,0.02], + [48435,0.001], + [48437,0.06], + [48439,0.165], + [48441,0.08], + [48443,0.011], + [48445,0.049], + [48447,0.01], + [48449,0.09], + [48451,0.043], + [48453,0.083], + [48455,0.099], + [48457,0.107], + [48459,0.082], + [48461,0.06], + [48463,0.006], + [48465,0.014], + [48467,0.028], + [48469,0.06], + [48471,0.232], + [48473,0.249], + [48475,0.04], + [48477,0.165], + [48479,0.004], + [48481,0.143], + [48483,0.032], + [48485,0.104], + [48487,0.101], + [48489,0.006], + [48491,0.064], + [48493,0.014], + [48495,0.05], + [48497,0.014], + [48499,0.05], + [48501,0.004], + [48503,0.021], + [48505,0], + [48507,0.003], + [49001,0], + [49003,0.007], + [49005,0.008], + [49007,0.004], + [49009,0.002], + [49011,0.013], + [49013,0.004], + [49015,0], + [49017,0.002], + [49019,0.003], + [49021,0.005], + [49023,0.002], + [49025,0.002], + [49027,0.002], + [49029,0.008], + [49031,0.002], + [49033,0], + [49035,0.019], + [49037,0.002], + [49039,0.007], + [49041,0.006], + [49043,0.008], + [49045,0.005], + [49047,0.004], + [49049,0.006], + [49051,0.003], + [49053,0.007], + [49055,0.002], + [49057,0.011], + [50001,0.015], + [50003,0.007], + [50005,0.01], + [50007,0.027], + [50009,0.01], + [50011,0.005], + [50013,0.008], + [50015,0.012], + [50017,0.007], + [50019,0.006], + [50021,0.009], + [50023,0.009], + [50025,0.012], + [50027,0.007], + [51001,0.286], + [51003,0.095], + [51005,0.058], + [51007,0.212], + [51009,0.18], + [51011,0.198], + [51013,0.091], + [51015,0.043], + [51017,0.03], + [51019,0.069], + [51021,0.038], + [51023,0.03], + [51025,0.545], + [51027,0.027], + [51029,0.345], + [51031,0.14], + [51033,0.27], + [51035,0.007], + [51036,0.454], + [51037,0.28], + [51041,0.231], + [51043,0.054], + [51045,0.001], + [51047,0.145], + [51049,0.301], + [51051,0.006], + [51053,0.318], + [51057,0.393], + [51059,0.098], + [51061,0.074], + [51063,0.015], + [51065,0.142], + [51067,0.075], + [51069,0.039], + [51071,0.022], + [51073,0.09], + [51075,0.16], + [51077,0.057], + [51079,0.054], + [51081,0.594], + [51083,0.346], + [51085,0.094], + [51087,0.297], + [51089,0.227], + [51091,0], + [51093,0.225], + [51095,0.131], + [51097,0.265], + [51099,0.163], + [51101,0.164], + [51103,0.308], + [51105,0.041], + [51107,0.076], + [51109,0.149], + [51111,0.312], + [51113,0.083], + [51115,0.088], + [51117,0.354], + [51119,0.139], + [51121,0.045], + [51125,0.13], + [51127,0.12], + [51131,0.333], + [51133,0.273], + [51135,0.407], + [51137,0.128], + [51139,0.014], + [51141,0.059], + [51143,0.201], + [51145,0.1], + [51147,0.309], + [51149,0.327], + [51153,0.21], + [51155,0.043], + [51157,0.045], + [51159,0.267], + [51161,0.059], + [51163,0.033], + [51165,0.03], + [51167,0.01], + [51169,0.006], + [51171,0.019], + [51173,0.022], + [51175,0.321], + [51177,0.161], + [51179,0.177], + [51181,0.444], + [51183,0.553], + [51185,0.032], + [51187,0.043], + [51191,0.014], + [51193,0.259], + [51195,0.055], + [51197,0.029], + [51199,0.133], + [51510,0.218], + [51520,0.057], + [51530,0.073], + [51540,0.188], + [51550,0.3], + [51570,0.153], + [51580,0.131], + [51590,0.494], + [51595,0.632], + [51600,0.049], + [51610,0.049], + [51620,0.567], + [51630,0.221], + [51640,0.075], + [51650,0.499], + [51660,0.074], + [51670,0.435], + [51678,0.088], + [51680,0.286], + [51683,0.136], + [51685,0.153], + [51690,0.454], + [51700,0.411], + [51710,0.411], + [51720,0.031], + [51730,0.767], + [51735,0.011], + [51740,0.529], + [51750,0.099], + [51760,0.469], + [51770,0.29], + [51775,0.067], + [51790,0.113], + [51800,0.418], + [51810,0.19], + [51820,0.142], + [51830,0.15], + [51840,0.101], + [53001,0.01], + [53003,0.005], + [53005,0.016], + [53007,0.006], + [53009,0.011], + [53011,0.018], + [53013,0.009], + [53015,0.008], + [53017,0.005], + [53019,0.001], + [53021,0.022], + [53023,0], + [53025,0.008], + [53027,0.012], + [53029,0.031], + [53031,0.006], + [53033,0.065], + [53035,0.027], + [53037,0.01], + [53039,0.007], + [53041,0.005], + [53043,0.008], + [53045,0.013], + [53047,0.004], + [53049,0.004], + [53051,0.004], + [53053,0.068], + [53055,0.009], + [53057,0.009], + [53059,0.005], + [53061,0.031], + [53063,0.017], + [53065,0.004], + [53067,0.032], + [53069,0.013], + [53071,0.018], + [53073,0.01], + [53075,0.022], + [53077,0.012], + [54001,0.009], + [54003,0.078], + [54005,0.01], + [54007,0.007], + [54009,0.017], + [54011,0.049], + [54013,0], + [54015,0], + [54017,0.016], + [54019,0.052], + [54021,0.12], + [54023,0.016], + [54025,0.028], + [54027,0.011], + [54029,0.02], + [54031,0.056], + [54033,0.016], + [54035,0.004], + [54037,0.062], + [54039,0.072], + [54041,0.002], + [54043,0.002], + [54045,0.018], + [54047,0.083], + [54049,0.035], + [54051,0.009], + [54053,0.004], + [54055,0.064], + [54057,0.034], + [54059,0.023], + [54061,0.036], + [54063,0.009], + [54065,0.011], + [54067,0.009], + [54069,0.039], + [54071,0.033], + [54073,0.003], + [54075,0.004], + [54077,0.051], + [54079,0.014], + [54081,0.077], + [54083,0.021], + [54085,0.003], + [54087,0.001], + [54089,0.046], + [54091,0.013], + [54093,0.005], + [54095,0.004], + [54097,0.02], + [54099,0.009], + [54101,0], + [54103,0.011], + [54105,0.004], + [54107,0.014], + [54109,0.012], + [55001,0.027], + [55003,0.007], + [55005,0.016], + [55007,0.009], + [55009,0.024], + [55011,0.007], + [55013,0.006], + [55015,0.009], + [55017,0.016], + [55019,0.005], + [55021,0.014], + [55023,0.02], + [55025,0.052], + [55027,0.028], + [55029,0.008], + [55031,0.014], + [55033,0.007], + [55035,0.012], + [55037,0.003], + [55039,0.014], + [55041,0.009], + [55043,0.015], + [55045,0.006], + [55047,0.006], + [55049,0.009], + [55051,0.001], + [55053,0.02], + [55055,0.009], + [55057,0.023], + [55059,0.076], + [55061,0.007], + [55063,0.016], + [55065,0.006], + [55067,0.013], + [55069,0.007], + [55071,0.011], + [55073,0.006], + [55075,0.007], + [55077,0.007], + [55078,0.003], + [55079,0.264], + [55081,0.018], + [55083,0.005], + [55085,0.007], + [55087,0.015], + [55089,0.012], + [55091,0.003], + [55093,0.006], + [55095,0.005], + [55097,0.008], + [55099,0.008], + [55101,0.114], + [55103,0.009], + [55105,0.044], + [55107,0.006], + [55109,0.008], + [55111,0.008], + [55113,0.003], + [55115,0.004], + [55117,0.02], + [55119,0.003], + [55121,0.006], + [55123,0.003], + [55125,0.005], + [55127,0.009], + [55129,0.008], + [55131,0.013], + [55133,0.016], + [55135,0.007], + [55137,0.014], + [55139,0.023], + [55141,0.007], + [56001,0.017], + [56003,0.004], + [56005,0.004], + [56007,0.011], + [56009,0], + [56011,0.001], + [56013,0.005], + [56015,0.004], + [56017,0], + [56019,0.006], + [56021,0.021], + [56023,0], + [56025,0.012], + [56027,0.006], + [56029,0.007], + [56031,0], + [56033,0.004], + [56035,0], + [56037,0.012], + [56039,0.012], + [56041,0.001], + [56043,0], + [56045,0.002] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-hispanic-2010.json b/data/regional/united-states/demographics/race/us-race-hispanic-2010.json new file mode 100644 index 0000000..a5bcb0d --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-hispanic-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Hispanic Population", + "description" : "Percent of the population that is hispanic in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.hispanic.2010"], + [1001,0.024], + [1003,0.044], + [1005,0.051], + [1007,0.018], + [1009,0.081], + [1011,0.071], + [1013,0.009], + [1015,0.033], + [1017,0.016], + [1019,0.012], + [1021,0.078], + [1023,0.005], + [1025,0.01], + [1027,0.029], + [1029,0.021], + [1031,0.064], + [1033,0.02], + [1035,0.012], + [1037,0.02], + [1039,0.013], + [1041,0.015], + [1043,0.043], + [1045,0.056], + [1047,0.007], + [1049,0.136], + [1051,0.027], + [1053,0.019], + [1055,0.033], + [1057,0.012], + [1059,0.149], + [1061,0.034], + [1063,0.008], + [1065,0.009], + [1067,0.022], + [1069,0.029], + [1071,0.025], + [1073,0.039], + [1075,0.012], + [1077,0.022], + [1079,0.017], + [1081,0.033], + [1083,0.055], + [1085,0.008], + [1087,0.011], + [1089,0.046], + [1091,0.017], + [1093,0.021], + [1095,0.121], + [1097,0.024], + [1099,0.01], + [1101,0.036], + [1103,0.077], + [1105,0.011], + [1107,0.016], + [1109,0.022], + [1111,0.028], + [1113,0.037], + [1115,0.021], + [1117,0.059], + [1119,0.006], + [1121,0.02], + [1123,0.025], + [1125,0.031], + [1127,0.02], + [1129,0.009], + [1131,0.006], + [1133,0.026], + [2013,0.123], + [2016,0.131], + [2020,0.076], + [2050,0.011], + [2060,0.024], + [2068,0.023], + [2070,0.021], + [2090,0.058], + [2100,0.019], + [2105,0.036], + [2110,0.051], + [2122,0.03], + [2130,0.04], + [2150,0.073], + [2158,0.001], + [2164,0.026], + [2170,0.037], + [2180,0.012], + [2185,0.026], + [2188,0.008], + [2195,0.034], + [2198,0.023], + [2220,0.049], + [2230,0.022], + [2240,0.033], + [2261,0.036], + [2275,0.016], + [2282,0.026], + [2290,0.012], + [4001,0.058], + [4003,0.324], + [4005,0.135], + [4007,0.179], + [4009,0.304], + [4011,0.479], + [4012,0.235], + [4013,0.296], + [4015,0.148], + [4017,0.108], + [4019,0.346], + [4021,0.285], + [4023,0.828], + [4025,0.136], + [4027,0.597], + [5001,0.027], + [5003,0.049], + [5005,0.017], + [5007,0.155], + [5009,0.018], + [5011,0.132], + [5013,0.028], + [5015,0.127], + [5017,0.046], + [5019,0.04], + [5021,0.013], + [5023,0.02], + [5025,0.017], + [5027,0.022], + [5029,0.036], + [5031,0.044], + [5033,0.061], + [5035,0.02], + [5037,0.015], + [5039,0.023], + [5041,0.044], + [5043,0.025], + [5045,0.039], + [5047,0.02], + [5049,0.008], + [5051,0.048], + [5053,0.022], + [5055,0.021], + [5057,0.12], + [5059,0.028], + [5061,0.098], + [5063,0.058], + [5065,0.015], + [5067,0.024], + [5069,0.016], + [5071,0.121], + [5073,0.017], + [5075,0.009], + [5077,0.016], + [5079,0.032], + [5081,0.027], + [5083,0.023], + [5085,0.033], + [5087,0.048], + [5089,0.017], + [5091,0.024], + [5093,0.036], + [5095,0.016], + [5097,0.038], + [5099,0.024], + [5101,0.017], + [5103,0.016], + [5105,0.024], + [5107,0.013], + [5109,0.064], + [5111,0.022], + [5113,0.058], + [5115,0.067], + [5117,0.009], + [5119,0.058], + [5121,0.016], + [5123,0.041], + [5125,0.038], + [5127,0.07], + [5129,0.015], + [5131,0.123], + [5133,0.306], + [5135,0.017], + [5137,0.013], + [5139,0.035], + [5141,0.027], + [5143,0.155], + [5145,0.037], + [5147,0.012], + [5149,0.191], + [6001,0.225], + [6003,0.071], + [6005,0.125], + [6007,0.141], + [6009,0.103], + [6011,0.551], + [6013,0.244], + [6015,0.178], + [6017,0.121], + [6019,0.503], + [6021,0.375], + [6023,0.098], + [6025,0.804], + [6027,0.194], + [6029,0.492], + [6031,0.509], + [6033,0.171], + [6035,0.175], + [6037,0.477], + [6039,0.537], + [6041,0.155], + [6043,0.092], + [6045,0.222], + [6047,0.549], + [6049,0.139], + [6051,0.265], + [6053,0.554], + [6055,0.322], + [6057,0.085], + [6059,0.337], + [6061,0.128], + [6063,0.08], + [6065,0.455], + [6067,0.216], + [6069,0.564], + [6071,0.492], + [6073,0.32], + [6075,0.151], + [6077,0.389], + [6079,0.208], + [6081,0.254], + [6083,0.429], + [6085,0.269], + [6087,0.32], + [6089,0.084], + [6091,0.083], + [6093,0.103], + [6095,0.24], + [6097,0.249], + [6099,0.419], + [6101,0.288], + [6103,0.219], + [6105,0.07], + [6107,0.606], + [6109,0.107], + [6111,0.403], + [6113,0.303], + [6115,0.25], + [8001,0.38], + [8003,0.46], + [8005,0.184], + [8007,0.178], + [8009,0.092], + [8011,0.305], + [8013,0.133], + [8014,0.111], + [8015,0.094], + [8017,0.097], + [8019,0.047], + [8021,0.56], + [8023,0.66], + [8025,0.29], + [8027,0.047], + [8029,0.14], + [8031,0.318], + [8033,0.04], + [8035,0.075], + [8037,0.301], + [8039,0.053], + [8041,0.151], + [8043,0.123], + [8045,0.283], + [8047,0.049], + [8049,0.075], + [8051,0.082], + [8053,0.028], + [8055,0.353], + [8057,0.108], + [8059,0.143], + [8061,0.056], + [8063,0.19], + [8065,0.391], + [8067,0.118], + [8069,0.106], + [8071,0.416], + [8073,0.125], + [8075,0.156], + [8077,0.133], + [8079,0.029], + [8081,0.144], + [8083,0.11], + [8085,0.197], + [8087,0.338], + [8089,0.403], + [8091,0.044], + [8093,0.048], + [8095,0.187], + [8097,0.091], + [8099,0.352], + [8101,0.414], + [8103,0.1], + [8105,0.424], + [8107,0.068], + [8109,0.401], + [8111,0.12], + [8113,0.086], + [8115,0.121], + [8117,0.142], + [8119,0.055], + [8121,0.085], + [8123,0.284], + [8125,0.208], + [9001,0.169], + [9003,0.153], + [9005,0.045], + [9007,0.047], + [9009,0.15], + [9011,0.085], + [9013,0.043], + [9015,0.096], + [10001,0.058], + [10003,0.087], + [10005,0.086], + [11001,0.091], + [12001,0.084], + [12003,0.019], + [12005,0.048], + [12007,0.036], + [12009,0.081], + [12011,0.251], + [12013,0.052], + [12015,0.058], + [12017,0.047], + [12019,0.077], + [12021,0.259], + [12023,0.049], + [12027,0.299], + [12029,0.031], + [12031,0.076], + [12033,0.047], + [12035,0.086], + [12037,0.046], + [12039,0.095], + [12041,0.05], + [12043,0.211], + [12045,0.043], + [12047,0.088], + [12049,0.429], + [12051,0.492], + [12053,0.103], + [12055,0.174], + [12057,0.249], + [12059,0.022], + [12061,0.112], + [12063,0.043], + [12065,0.037], + [12067,0.121], + [12069,0.121], + [12071,0.183], + [12073,0.056], + [12075,0.075], + [12077,0.062], + [12079,0.047], + [12081,0.149], + [12083,0.109], + [12085,0.122], + [12086,0.65], + [12087,0.206], + [12089,0.032], + [12091,0.068], + [12093,0.239], + [12095,0.269], + [12097,0.455], + [12099,0.19], + [12101,0.117], + [12103,0.08], + [12105,0.177], + [12107,0.09], + [12109,0.052], + [12111,0.166], + [12113,0.043], + [12115,0.079], + [12117,0.171], + [12119,0.06], + [12121,0.087], + [12123,0.034], + [12125,0.048], + [12127,0.112], + [12129,0.033], + [12131,0.053], + [12133,0.029], + [13001,0.093], + [13003,0.243], + [13005,0.071], + [13007,0.042], + [13009,0.02], + [13011,0.057], + [13013,0.087], + [13015,0.077], + [13017,0.058], + [13019,0.046], + [13021,0.028], + [13023,0.023], + [13025,0.019], + [13027,0.053], + [13029,0.044], + [13031,0.035], + [13033,0.026], + [13035,0.025], + [13037,0.039], + [13039,0.051], + [13043,0.112], + [13045,0.062], + [13047,0.023], + [13049,0.025], + [13051,0.054], + [13053,0.124], + [13055,0.04], + [13057,0.096], + [13059,0.104], + [13061,0.008], + [13063,0.137], + [13065,0.035], + [13067,0.123], + [13069,0.103], + [13071,0.171], + [13073,0.05], + [13075,0.059], + [13077,0.067], + [13079,0.024], + [13081,0.032], + [13083,0.018], + [13085,0.041], + [13087,0.05], + [13089,0.098], + [13091,0.034], + [13093,0.058], + [13095,0.022], + [13097,0.084], + [13099,0.016], + [13101,0.293], + [13103,0.029], + [13105,0.048], + [13107,0.041], + [13109,0.131], + [13111,0.018], + [13113,0.063], + [13115,0.093], + [13117,0.094], + [13119,0.039], + [13121,0.079], + [13123,0.095], + [13125,0.011], + [13127,0.064], + [13129,0.14], + [13131,0.1], + [13133,0.056], + [13135,0.201], + [13137,0.124], + [13139,0.261], + [13141,0.015], + [13143,0.011], + [13145,0.027], + [13147,0.031], + [13149,0.019], + [13151,0.058], + [13153,0.061], + [13155,0.024], + [13157,0.062], + [13159,0.037], + [13161,0.105], + [13163,0.031], + [13165,0.04], + [13167,0.019], + [13169,0.011], + [13171,0.019], + [13173,0.046], + [13175,0.024], + [13177,0.02], + [13179,0.097], + [13181,0.012], + [13183,0.123], + [13185,0.048], + [13187,0.045], + [13189,0.022], + [13191,0.016], + [13193,0.036], + [13195,0.041], + [13197,0.065], + [13199,0.016], + [13201,0.015], + [13205,0.044], + [13207,0.02], + [13209,0.053], + [13211,0.028], + [13213,0.13], + [13215,0.064], + [13217,0.046], + [13219,0.044], + [13221,0.037], + [13223,0.051], + [13225,0.068], + [13227,0.028], + [13229,0.047], + [13231,0.011], + [13233,0.118], + [13235,0.039], + [13237,0.063], + [13239,0.014], + [13241,0.08], + [13243,0.015], + [13245,0.041], + [13247,0.095], + [13249,0.032], + [13251,0.012], + [13253,0.023], + [13255,0.038], + [13257,0.024], + [13259,0.24], + [13261,0.052], + [13263,0.013], + [13265,0.02], + [13267,0.098], + [13269,0.018], + [13271,0.123], + [13273,0.017], + [13275,0.029], + [13277,0.101], + [13279,0.112], + [13281,0.02], + [13283,0.015], + [13285,0.032], + [13287,0.032], + [13289,0.014], + [13291,0.024], + [13293,0.022], + [13295,0.016], + [13297,0.032], + [13299,0.033], + [13301,0.009], + [13303,0.019], + [13305,0.057], + [13307,0.035], + [13309,0.048], + [13311,0.024], + [13313,0.316], + [13315,0.037], + [13317,0.034], + [13319,0.022], + [13321,0.015], + [15001,0.116], + [15003,0.081], + [15005,0.011], + [15007,0.094], + [15009,0.101], + [16001,0.071], + [16003,0.024], + [16005,0.067], + [16007,0.036], + [16009,0.025], + [16011,0.172], + [16013,0.2], + [16015,0.035], + [16017,0.022], + [16019,0.114], + [16021,0.037], + [16023,0.041], + [16025,0.067], + [16027,0.239], + [16029,0.048], + [16031,0.249], + [16033,0.405], + [16035,0.031], + [16037,0.04], + [16039,0.152], + [16041,0.066], + [16043,0.128], + [16045,0.08], + [16047,0.281], + [16049,0.026], + [16051,0.101], + [16053,0.31], + [16055,0.038], + [16057,0.036], + [16059,0.023], + [16061,0.033], + [16063,0.283], + [16065,0.059], + [16067,0.324], + [16069,0.028], + [16071,0.029], + [16073,0.258], + [16075,0.149], + [16077,0.298], + [16079,0.03], + [16081,0.169], + [16083,0.137], + [16085,0.039], + [16087,0.168], + [17001,0.012], + [17003,0.019], + [17005,0.031], + [17007,0.202], + [17009,0.058], + [17011,0.077], + [17013,0.008], + [17015,0.028], + [17017,0.168], + [17019,0.053], + [17021,0.014], + [17023,0.011], + [17025,0.011], + [17027,0.028], + [17029,0.021], + [17031,0.24], + [17033,0.018], + [17035,0.007], + [17037,0.101], + [17039,0.021], + [17041,0.061], + [17043,0.133], + [17045,0.01], + [17047,0.009], + [17049,0.017], + [17051,0.014], + [17053,0.021], + [17055,0.012], + [17057,0.024], + [17059,0.012], + [17061,0.008], + [17063,0.082], + [17065,0.012], + [17067,0.01], + [17069,0.013], + [17071,0.011], + [17073,0.048], + [17075,0.053], + [17077,0.04], + [17079,0.008], + [17081,0.021], + [17083,0.01], + [17085,0.027], + [17087,0.03], + [17089,0.307], + [17091,0.09], + [17093,0.156], + [17095,0.048], + [17097,0.199], + [17099,0.08], + [17101,0.033], + [17103,0.05], + [17105,0.039], + [17107,0.029], + [17109,0.027], + [17111,0.114], + [17113,0.044], + [17115,0.019], + [17117,0.009], + [17119,0.027], + [17121,0.014], + [17123,0.025], + [17125,0.008], + [17127,0.019], + [17129,0.01], + [17131,0.019], + [17133,0.014], + [17135,0.015], + [17137,0.02], + [17139,0.009], + [17141,0.089], + [17143,0.038], + [17145,0.027], + [17147,0.01], + [17149,0.01], + [17151,0.014], + [17153,0.016], + [17155,0.042], + [17157,0.026], + [17159,0.013], + [17161,0.116], + [17163,0.033], + [17165,0.014], + [17167,0.018], + [17169,0.012], + [17171,0.008], + [17173,0.008], + [17175,0.01], + [17177,0.029], + [17179,0.019], + [17181,0.048], + [17183,0.042], + [17185,0.013], + [17187,0.084], + [17189,0.013], + [17191,0.011], + [17193,0.011], + [17195,0.11], + [17197,0.156], + [17199,0.02], + [17201,0.109], + [17203,0.014], + [18001,0.041], + [18003,0.065], + [18005,0.062], + [18007,0.049], + [18009,0.009], + [18011,0.022], + [18013,0.012], + [18015,0.035], + [18017,0.126], + [18019,0.049], + [18021,0.011], + [18023,0.132], + [18025,0.012], + [18027,0.042], + [18029,0.01], + [18031,0.017], + [18033,0.024], + [18035,0.018], + [18037,0.06], + [18039,0.141], + [18041,0.009], + [18043,0.026], + [18045,0.022], + [18047,0.009], + [18049,0.042], + [18051,0.013], + [18053,0.036], + [18055,0.01], + [18057,0.034], + [18059,0.017], + [18061,0.015], + [18063,0.03], + [18065,0.014], + [18067,0.027], + [18069,0.017], + [18071,0.057], + [18073,0.054], + [18075,0.027], + [18077,0.023], + [18079,0.02], + [18081,0.031], + [18083,0.015], + [18085,0.073], + [18087,0.035], + [18089,0.167], + [18091,0.055], + [18093,0.012], + [18095,0.032], + [18097,0.093], + [18099,0.084], + [18101,0.007], + [18103,0.025], + [18105,0.029], + [18107,0.046], + [18109,0.012], + [18111,0.05], + [18113,0.096], + [18115,0.011], + [18117,0.01], + [18119,0.009], + [18121,0.012], + [18123,0.01], + [18125,0.009], + [18127,0.085], + [18129,0.01], + [18131,0.024], + [18133,0.015], + [18135,0.03], + [18137,0.015], + [18139,0.011], + [18141,0.073], + [18143,0.015], + [18145,0.037], + [18147,0.025], + [18149,0.033], + [18151,0.029], + [18153,0.014], + [18155,0.014], + [18157,0.075], + [18159,0.022], + [18161,0.011], + [18163,0.022], + [18165,0.008], + [18167,0.023], + [18169,0.021], + [18171,0.008], + [18173,0.016], + [18175,0.011], + [18177,0.026], + [18179,0.02], + [18181,0.071], + [18183,0.015], + [19001,0.013], + [19003,0.009], + [19005,0.053], + [19007,0.014], + [19009,0.006], + [19011,0.011], + [19013,0.037], + [19015,0.019], + [19017,0.01], + [19019,0.012], + [19021,0.227], + [19023,0.009], + [19025,0.009], + [19027,0.016], + [19029,0.018], + [19031,0.015], + [19033,0.038], + [19035,0.023], + [19037,0.022], + [19039,0.1], + [19041,0.029], + [19043,0.017], + [19045,0.025], + [19047,0.242], + [19049,0.061], + [19051,0.01], + [19053,0.021], + [19055,0.008], + [19057,0.026], + [19059,0.011], + [19061,0.019], + [19063,0.074], + [19065,0.018], + [19067,0.02], + [19069,0.113], + [19071,0.025], + [19073,0.018], + [19075,0.01], + [19077,0.018], + [19079,0.05], + [19081,0.035], + [19083,0.037], + [19085,0.012], + [19087,0.038], + [19089,0.012], + [19091,0.036], + [19093,0.014], + [19095,0.019], + [19097,0.011], + [19099,0.015], + [19101,0.024], + [19103,0.047], + [19105,0.013], + [19107,0.009], + [19109,0.014], + [19111,0.03], + [19113,0.026], + [19115,0.158], + [19117,0.01], + [19119,0.018], + [19121,0.013], + [19123,0.016], + [19125,0.016], + [19127,0.173], + [19129,0.024], + [19131,0.01], + [19133,0.012], + [19135,0.021], + [19137,0.028], + [19139,0.159], + [19141,0.038], + [19143,0.067], + [19145,0.027], + [19147,0.016], + [19149,0.03], + [19151,0.023], + [19153,0.076], + [19155,0.066], + [19157,0.024], + [19159,0.018], + [19161,0.019], + [19163,0.056], + [19165,0.018], + [19167,0.089], + [19169,0.03], + [19171,0.074], + [19173,0.058], + [19175,0.018], + [19177,0.012], + [19179,0.091], + [19181,0.019], + [19183,0.052], + [19185,0.011], + [19187,0.038], + [19189,0.033], + [19191,0.02], + [19193,0.137], + [19195,0.019], + [19197,0.096], + [20001,0.029], + [20003,0.015], + [20005,0.023], + [20007,0.024], + [20009,0.133], + [20011,0.02], + [20013,0.031], + [20015,0.039], + [20017,0.036], + [20019,0.024], + [20021,0.02], + [20023,0.052], + [20025,0.074], + [20027,0.019], + [20029,0.03], + [20031,0.02], + [20033,0.039], + [20035,0.091], + [20037,0.045], + [20039,0.01], + [20041,0.039], + [20043,0.021], + [20045,0.051], + [20047,0.176], + [20049,0.027], + [20051,0.046], + [20053,0.05], + [20055,0.467], + [20057,0.512], + [20059,0.036], + [20061,0.124], + [20063,0.016], + [20065,0.023], + [20067,0.439], + [20069,0.142], + [20071,0.137], + [20073,0.033], + [20075,0.307], + [20077,0.049], + [20079,0.108], + [20081,0.27], + [20083,0.062], + [20085,0.033], + [20087,0.018], + [20089,0.02], + [20091,0.072], + [20093,0.285], + [20095,0.025], + [20097,0.039], + [20099,0.04], + [20101,0.042], + [20103,0.057], + [20105,0.022], + [20107,0.019], + [20109,0.029], + [20111,0.201], + [20113,0.035], + [20115,0.023], + [20117,0.019], + [20119,0.148], + [20121,0.025], + [20123,0.011], + [20125,0.052], + [20127,0.036], + [20129,0.193], + [20131,0.012], + [20133,0.042], + [20135,0.074], + [20137,0.042], + [20139,0.02], + [20141,0.012], + [20143,0.02], + [20145,0.066], + [20147,0.021], + [20149,0.044], + [20151,0.054], + [20153,0.032], + [20155,0.081], + [20157,0.011], + [20159,0.101], + [20161,0.065], + [20163,0.021], + [20165,0.025], + [20167,0.016], + [20169,0.097], + [20171,0.153], + [20173,0.13], + [20175,0.566], + [20177,0.108], + [20179,0.033], + [20181,0.108], + [20183,0.015], + [20185,0.119], + [20187,0.37], + [20189,0.326], + [20191,0.045], + [20193,0.047], + [20195,0.017], + [20197,0.029], + [20199,0.073], + [20201,0.025], + [20203,0.246], + [20205,0.023], + [20207,0.021], + [20209,0.264], + [21001,0.017], + [21003,0.015], + [21005,0.013], + [21007,0.011], + [21009,0.026], + [21011,0.014], + [21013,0.007], + [21015,0.035], + [21017,0.068], + [21019,0.014], + [21021,0.028], + [21023,0.011], + [21025,0.006], + [21027,0.009], + [21029,0.014], + [21031,0.025], + [21033,0.01], + [21035,0.024], + [21037,0.017], + [21039,0.016], + [21041,0.073], + [21043,0.012], + [21045,0.024], + [21047,0.061], + [21049,0.025], + [21051,0.018], + [21053,0.022], + [21055,0.005], + [21057,0.009], + [21059,0.026], + [21061,0.008], + [21063,0.008], + [21065,0.007], + [21067,0.069], + [21069,0.01], + [21071,0.006], + [21073,0.028], + [21075,0.008], + [21077,0.043], + [21079,0.024], + [21081,0.023], + [21083,0.057], + [21085,0.01], + [21087,0.014], + [21089,0.008], + [21091,0.011], + [21093,0.05], + [21095,0.007], + [21097,0.018], + [21099,0.014], + [21101,0.019], + [21103,0.029], + [21105,0.012], + [21107,0.016], + [21109,0.006], + [21111,0.044], + [21113,0.028], + [21115,0.005], + [21117,0.026], + [21119,0.006], + [21121,0.008], + [21123,0.028], + [21125,0.012], + [21127,0.005], + [21129,0.007], + [21131,0.004], + [21133,0.005], + [21135,0.006], + [21137,0.015], + [21139,0.013], + [21141,0.024], + [21143,0.009], + [21145,0.021], + [21147,0.021], + [21149,0.011], + [21151,0.022], + [21153,0.007], + [21155,0.024], + [21157,0.011], + [21159,0.03], + [21161,0.014], + [21163,0.03], + [21165,0.008], + [21167,0.023], + [21169,0.011], + [21171,0.026], + [21173,0.025], + [21175,0.008], + [21177,0.012], + [21179,0.02], + [21181,0.014], + [21183,0.035], + [21185,0.035], + [21187,0.023], + [21189,0.008], + [21191,0.01], + [21193,0.006], + [21195,0.007], + [21197,0.01], + [21199,0.021], + [21201,0.01], + [21203,0.006], + [21205,0.013], + [21207,0.033], + [21209,0.042], + [21211,0.091], + [21213,0.019], + [21215,0.014], + [21217,0.018], + [21219,0.04], + [21221,0.012], + [21223,0.025], + [21225,0.016], + [21227,0.045], + [21229,0.034], + [21231,0.029], + [21233,0.043], + [21235,0.009], + [21237,0.006], + [21239,0.067], + [22001,0.017], + [22003,0.013], + [22005,0.047], + [22007,0.021], + [22009,0.014], + [22011,0.028], + [22013,0.014], + [22015,0.06], + [22017,0.024], + [22019,0.026], + [22021,0.022], + [22023,0.023], + [22025,0.009], + [22027,0.01], + [22029,0.01], + [22031,0.025], + [22033,0.037], + [22035,0.016], + [22037,0.01], + [22039,0.023], + [22041,0.009], + [22043,0.042], + [22045,0.031], + [22047,0.02], + [22049,0.013], + [22051,0.124], + [22053,0.017], + [22055,0.039], + [22057,0.038], + [22059,0.022], + [22061,0.025], + [22063,0.03], + [22065,0.016], + [22067,0.009], + [22069,0.019], + [22071,0.052], + [22073,0.018], + [22075,0.046], + [22077,0.022], + [22079,0.026], + [22081,0.011], + [22083,0.016], + [22085,0.034], + [22087,0.092], + [22089,0.05], + [22091,0.009], + [22093,0.012], + [22095,0.047], + [22097,0.016], + [22099,0.021], + [22101,0.053], + [22103,0.047], + [22105,0.035], + [22107,0.012], + [22109,0.04], + [22111,0.042], + [22113,0.024], + [22115,0.072], + [22117,0.019], + [22119,0.016], + [22121,0.023], + [22123,0.026], + [22125,0.016], + [22127,0.016], + [23001,0.015], + [23003,0.009], + [23005,0.018], + [23007,0.01], + [23009,0.011], + [23011,0.012], + [23013,0.008], + [23015,0.008], + [23017,0.01], + [23019,0.011], + [23021,0.01], + [23023,0.013], + [23025,0.008], + [23027,0.009], + [23029,0.014], + [23031,0.013], + [24001,0.014], + [24003,0.061], + [24005,0.042], + [24009,0.027], + [24011,0.055], + [24013,0.026], + [24015,0.034], + [24017,0.043], + [24019,0.035], + [24021,0.073], + [24023,0.007], + [24025,0.035], + [24027,0.058], + [24029,0.045], + [24031,0.17], + [24033,0.149], + [24035,0.03], + [24037,0.038], + [24039,0.033], + [24041,0.055], + [24043,0.035], + [24045,0.045], + [24047,0.032], + [24510,0.042], + [25001,0.022], + [25003,0.035], + [25005,0.06], + [25007,0.023], + [25009,0.165], + [25011,0.032], + [25013,0.209], + [25015,0.047], + [25017,0.065], + [25019,0.094], + [25021,0.033], + [25023,0.032], + [25025,0.199], + [25027,0.094], + [26001,0.011], + [26003,0.012], + [26005,0.067], + [26007,0.01], + [26009,0.017], + [26011,0.014], + [26013,0.01], + [26015,0.023], + [26017,0.047], + [26019,0.017], + [26021,0.045], + [26023,0.04], + [26025,0.045], + [26027,0.03], + [26029,0.014], + [26031,0.008], + [26033,0.012], + [26035,0.015], + [26037,0.039], + [26039,0.013], + [26041,0.009], + [26043,0.01], + [26045,0.047], + [26047,0.013], + [26049,0.03], + [26051,0.012], + [26053,0.009], + [26055,0.022], + [26057,0.054], + [26059,0.018], + [26061,0.011], + [26063,0.02], + [26065,0.073], + [26067,0.044], + [26069,0.016], + [26071,0.014], + [26073,0.031], + [26075,0.03], + [26077,0.04], + [26079,0.012], + [26081,0.097], + [26083,0.007], + [26085,0.021], + [26087,0.041], + [26089,0.037], + [26091,0.076], + [26093,0.019], + [26095,0.012], + [26097,0.011], + [26099,0.023], + [26101,0.026], + [26103,0.011], + [26105,0.04], + [26107,0.017], + [26109,0.012], + [26111,0.02], + [26113,0.021], + [26115,0.031], + [26117,0.031], + [26119,0.01], + [26121,0.048], + [26123,0.055], + [26125,0.035], + [26127,0.137], + [26129,0.014], + [26131,0.009], + [26133,0.015], + [26135,0.009], + [26137,0.012], + [26139,0.086], + [26141,0.009], + [26143,0.011], + [26145,0.078], + [26147,0.029], + [26149,0.066], + [26151,0.033], + [26153,0.008], + [26155,0.024], + [26157,0.028], + [26159,0.102], + [26161,0.04], + [26163,0.052], + [26165,0.016], + [27001,0.009], + [27003,0.036], + [27005,0.012], + [27007,0.015], + [27009,0.016], + [27011,0.008], + [27013,0.025], + [27015,0.033], + [27017,0.014], + [27019,0.039], + [27021,0.012], + [27023,0.049], + [27025,0.015], + [27027,0.035], + [27029,0.014], + [27031,0.011], + [27033,0.062], + [27035,0.01], + [27037,0.06], + [27039,0.046], + [27041,0.009], + [27043,0.056], + [27045,0.01], + [27047,0.088], + [27049,0.029], + [27051,0.016], + [27053,0.067], + [27055,0.007], + [27057,0.016], + [27059,0.015], + [27061,0.009], + [27063,0.027], + [27065,0.013], + [27067,0.112], + [27069,0.015], + [27071,0.011], + [27073,0.015], + [27075,0.007], + [27077,0.009], + [27079,0.052], + [27081,0.012], + [27083,0.06], + [27085,0.049], + [27087,0.018], + [27089,0.036], + [27091,0.036], + [27093,0.033], + [27095,0.014], + [27097,0.012], + [27099,0.106], + [27101,0.028], + [27103,0.037], + [27105,0.225], + [27107,0.04], + [27109,0.042], + [27111,0.026], + [27113,0.027], + [27115,0.024], + [27117,0.037], + [27119,0.054], + [27121,0.009], + [27123,0.072], + [27125,0.025], + [27127,0.021], + [27129,0.066], + [27131,0.08], + [27133,0.02], + [27135,0.007], + [27137,0.012], + [27139,0.044], + [27141,0.022], + [27143,0.072], + [27145,0.028], + [27147,0.062], + [27149,0.035], + [27151,0.036], + [27153,0.052], + [27155,0.014], + [27157,0.027], + [27159,0.013], + [27161,0.051], + [27163,0.034], + [27165,0.209], + [27167,0.02], + [27169,0.024], + [27171,0.024], + [27173,0.038], + [28001,0.067], + [28003,0.027], + [28005,0.008], + [28007,0.017], + [28009,0.017], + [28011,0.019], + [28013,0.054], + [28015,0.01], + [28017,0.037], + [28019,0.009], + [28021,0.008], + [28023,0.008], + [28025,0.01], + [28027,0.011], + [28029,0.026], + [28031,0.019], + [28033,0.05], + [28035,0.035], + [28037,0.006], + [28039,0.02], + [28041,0.009], + [28043,0.009], + [28045,0.033], + [28047,0.053], + [28049,0.015], + [28051,0.007], + [28053,0.022], + [28055,0.006], + [28057,0.013], + [28059,0.046], + [28061,0.008], + [28063,0.004], + [28065,0.008], + [28067,0.047], + [28069,0.005], + [28071,0.023], + [28073,0.022], + [28075,0.018], + [28077,0.021], + [28079,0.043], + [28081,0.024], + [28083,0.023], + [28085,0.009], + [28087,0.015], + [28089,0.029], + [28091,0.012], + [28093,0.032], + [28095,0.01], + [28097,0.009], + [28099,0.016], + [28101,0.013], + [28103,0.008], + [28105,0.014], + [28107,0.014], + [28109,0.029], + [28111,0.01], + [28113,0.012], + [28115,0.062], + [28117,0.012], + [28119,0.007], + [28121,0.027], + [28123,0.107], + [28125,0.008], + [28127,0.014], + [28129,0.012], + [28131,0.013], + [28133,0.014], + [28135,0.056], + [28137,0.022], + [28139,0.044], + [28141,0.028], + [28143,0.023], + [28145,0.045], + [28147,0.015], + [28149,0.018], + [28151,0.01], + [28153,0.012], + [28155,0.01], + [28157,0.004], + [28159,0.01], + [28161,0.012], + [28163,0.046], + [29001,0.02], + [29003,0.017], + [29005,0.01], + [29007,0.026], + [29009,0.077], + [29011,0.019], + [29013,0.016], + [29015,0.015], + [29017,0.008], + [29019,0.03], + [29021,0.052], + [29023,0.016], + [29025,0.015], + [29027,0.016], + [29029,0.023], + [29031,0.02], + [29033,0.013], + [29035,0.017], + [29037,0.04], + [29039,0.015], + [29041,0.005], + [29043,0.025], + [29045,0.006], + [29047,0.059], + [29049,0.016], + [29051,0.024], + [29053,0.013], + [29055,0.015], + [29057,0.015], + [29059,0.015], + [29061,0.01], + [29063,0.017], + [29065,0.009], + [29067,0.008], + [29069,0.054], + [29071,0.014], + [29073,0.01], + [29075,0.005], + [29077,0.03], + [29079,0.017], + [29081,0.016], + [29083,0.017], + [29085,0.009], + [29087,0.008], + [29089,0.012], + [29091,0.017], + [29093,0.013], + [29095,0.084], + [29097,0.068], + [29099,0.016], + [29101,0.031], + [29103,0.008], + [29105,0.02], + [29107,0.022], + [29109,0.063], + [29111,0.016], + [29113,0.02], + [29115,0.015], + [29117,0.012], + [29119,0.112], + [29121,0.01], + [29123,0.02], + [29125,0.008], + [29127,0.014], + [29129,0.007], + [29131,0.014], + [29133,0.016], + [29135,0.038], + [29137,0.01], + [29139,0.014], + [29141,0.018], + [29143,0.011], + [29145,0.044], + [29147,0.013], + [29149,0.012], + [29151,0.006], + [29153,0.013], + [29155,0.019], + [29157,0.017], + [29159,0.072], + [29161,0.02], + [29163,0.018], + [29165,0.05], + [29167,0.02], + [29169,0.09], + [29171,0.007], + [29173,0.01], + [29175,0.016], + [29177,0.018], + [29179,0.01], + [29181,0.01], + [29183,0.028], + [29185,0.017], + [29186,0.008], + [29187,0.012], + [29189,0.025], + [29195,0.082], + [29197,0.007], + [29199,0.007], + [29201,0.018], + [29203,0.016], + [29205,0.011], + [29207,0.012], + [29209,0.017], + [29211,0.186], + [29213,0.048], + [29215,0.016], + [29217,0.016], + [29219,0.029], + [29221,0.01], + [29223,0.01], + [29225,0.017], + [29227,0.011], + [29229,0.013], + [29510,0.035], + [30001,0.037], + [30003,0.04], + [30005,0.018], + [30007,0.022], + [30009,0.019], + [30011,0.007], + [30013,0.033], + [30015,0.016], + [30017,0.022], + [30019,0.015], + [30021,0.02], + [30023,0.029], + [30025,0.012], + [30027,0.015], + [30029,0.023], + [30031,0.028], + [30033,0.002], + [30035,0.018], + [30037,0.035], + [30039,0.014], + [30041,0.023], + [30043,0.02], + [30045,0.012], + [30047,0.035], + [30049,0.025], + [30051,0.003], + [30053,0.023], + [30055,0.007], + [30057,0.024], + [30059,0.015], + [30061,0.019], + [30063,0.026], + [30065,0.026], + [30067,0.021], + [30069,0.01], + [30071,0.019], + [30073,0.014], + [30075,0.014], + [30077,0.017], + [30079,0.014], + [30081,0.03], + [30083,0.03], + [30085,0.013], + [30087,0.034], + [30089,0.02], + [30091,0.015], + [30093,0.037], + [30095,0.023], + [30097,0.014], + [30099,0.013], + [30101,0.024], + [30103,0.035], + [30105,0.012], + [30107,0.015], + [30109,0.013], + [30111,0.047], + [31001,0.081], + [31003,0.027], + [31005,0.041], + [31007,0.038], + [31009,0], + [31011,0.012], + [31013,0.102], + [31015,0.016], + [31017,0.009], + [31019,0.074], + [31021,0.018], + [31023,0.023], + [31025,0.024], + [31027,0.013], + [31029,0.111], + [31031,0.017], + [31033,0.061], + [31035,0.077], + [31037,0.41], + [31039,0.083], + [31041,0.02], + [31043,0.353], + [31045,0.033], + [31047,0.318], + [31049,0.039], + [31051,0.104], + [31053,0.101], + [31055,0.112], + [31057,0.058], + [31059,0.03], + [31061,0.01], + [31063,0.013], + [31065,0.027], + [31067,0.017], + [31069,0.039], + [31071,0.007], + [31073,0.024], + [31075,0.011], + [31077,0.02], + [31079,0.233], + [31081,0.02], + [31083,0.013], + [31085,0.034], + [31087,0.014], + [31089,0.029], + [31091,0.011], + [31093,0.017], + [31095,0.027], + [31097,0.083], + [31099,0.038], + [31101,0.057], + [31103,0.005], + [31105,0.064], + [31107,0.018], + [31109,0.058], + [31111,0.072], + [31113,0.017], + [31115,0.021], + [31117,0.004], + [31119,0.129], + [31121,0.035], + [31123,0.136], + [31125,0.017], + [31127,0.018], + [31129,0.022], + [31131,0.057], + [31133,0.013], + [31135,0.032], + [31137,0.041], + [31139,0.013], + [31141,0.138], + [31143,0.029], + [31145,0.042], + [31147,0.013], + [31149,0.001], + [31151,0.202], + [31153,0.073], + [31155,0.02], + [31157,0.211], + [31159,0.016], + [31161,0.031], + [31163,0.01], + [31165,0.04], + [31167,0.046], + [31169,0.015], + [31171,0.019], + [31173,0.027], + [31175,0.019], + [31177,0.021], + [31179,0.042], + [31181,0.035], + [31183,0.007], + [31185,0.041], + [32001,0.121], + [32003,0.291], + [32005,0.109], + [32007,0.229], + [32009,0.153], + [32011,0.12], + [32013,0.244], + [32015,0.211], + [32017,0.062], + [32019,0.148], + [32021,0.091], + [32023,0.136], + [32027,0.223], + [32029,0.057], + [32031,0.222], + [32033,0.132], + [32510,0.213], + [33001,0.012], + [33003,0.01], + [33005,0.014], + [33007,0.012], + [33009,0.018], + [33011,0.053], + [33013,0.016], + [33015,0.021], + [33017,0.018], + [33019,0.011], + [34001,0.168], + [34003,0.161], + [34005,0.064], + [34007,0.142], + [34009,0.062], + [34011,0.271], + [34013,0.203], + [34015,0.048], + [34017,0.422], + [34019,0.052], + [34021,0.151], + [34023,0.184], + [34025,0.097], + [34027,0.115], + [34029,0.083], + [34031,0.37], + [34033,0.068], + [34035,0.13], + [34037,0.064], + [34039,0.273], + [34041,0.07], + [35001,0.479], + [35003,0.19], + [35005,0.52], + [35006,0.365], + [35007,0.472], + [35009,0.395], + [35011,0.385], + [35013,0.657], + [35015,0.441], + [35017,0.483], + [35019,0.796], + [35021,0.43], + [35023,0.566], + [35025,0.511], + [35027,0.298], + [35028,0.147], + [35029,0.615], + [35031,0.133], + [35033,0.81], + [35035,0.345], + [35037,0.424], + [35039,0.713], + [35041,0.399], + [35043,0.351], + [35045,0.191], + [35047,0.768], + [35049,0.506], + [35051,0.28], + [35053,0.485], + [35055,0.558], + [35057,0.391], + [35059,0.397], + [35061,0.583], + [36001,0.049], + [36003,0.014], + [36005,0.535], + [36007,0.034], + [36009,0.017], + [36011,0.024], + [36013,0.061], + [36015,0.025], + [36017,0.018], + [36019,0.025], + [36021,0.039], + [36023,0.022], + [36025,0.033], + [36027,0.105], + [36029,0.045], + [36031,0.025], + [36033,0.029], + [36035,0.023], + [36037,0.027], + [36039,0.049], + [36041,0.011], + [36043,0.016], + [36045,0.053], + [36047,0.198], + [36049,0.013], + [36051,0.028], + [36053,0.018], + [36055,0.073], + [36057,0.113], + [36059,0.146], + [36061,0.254], + [36063,0.022], + [36065,0.046], + [36067,0.04], + [36069,0.034], + [36071,0.18], + [36073,0.041], + [36075,0.021], + [36077,0.031], + [36079,0.117], + [36081,0.275], + [36083,0.038], + [36085,0.173], + [36087,0.157], + [36089,0.019], + [36091,0.024], + [36093,0.057], + [36095,0.028], + [36097,0.013], + [36099,0.027], + [36101,0.014], + [36103,0.165], + [36105,0.136], + [36107,0.014], + [36109,0.042], + [36111,0.087], + [36113,0.018], + [36115,0.023], + [36117,0.037], + [36119,0.218], + [36121,0.03], + [36123,0.017], + [37001,0.11], + [37003,0.043], + [37005,0.09], + [37007,0.03], + [37009,0.048], + [37011,0.045], + [37013,0.066], + [37015,0.013], + [37017,0.071], + [37019,0.052], + [37021,0.06], + [37023,0.051], + [37025,0.094], + [37027,0.046], + [37029,0.022], + [37031,0.034], + [37033,0.031], + [37035,0.084], + [37037,0.13], + [37039,0.025], + [37041,0.032], + [37043,0.024], + [37045,0.028], + [37047,0.046], + [37049,0.061], + [37051,0.095], + [37053,0.03], + [37055,0.065], + [37057,0.064], + [37059,0.061], + [37061,0.206], + [37063,0.135], + [37065,0.037], + [37067,0.119], + [37069,0.079], + [37071,0.059], + [37073,0.014], + [37075,0.022], + [37077,0.075], + [37079,0.143], + [37081,0.071], + [37083,0.021], + [37085,0.108], + [37087,0.034], + [37089,0.098], + [37091,0.026], + [37093,0.124], + [37095,0.071], + [37097,0.068], + [37099,0.051], + [37101,0.129], + [37103,0.039], + [37105,0.183], + [37107,0.066], + [37109,0.067], + [37111,0.053], + [37113,0.066], + [37115,0.02], + [37117,0.031], + [37119,0.122], + [37121,0.041], + [37123,0.141], + [37125,0.06], + [37127,0.063], + [37129,0.053], + [37131,0.014], + [37133,0.101], + [37135,0.082], + [37137,0.031], + [37139,0.04], + [37141,0.061], + [37143,0.021], + [37145,0.04], + [37147,0.055], + [37149,0.055], + [37151,0.104], + [37153,0.059], + [37155,0.081], + [37157,0.055], + [37159,0.077], + [37161,0.035], + [37163,0.165], + [37165,0.021], + [37167,0.036], + [37169,0.026], + [37171,0.097], + [37173,0.039], + [37175,0.029], + [37177,0.054], + [37179,0.104], + [37181,0.067], + [37183,0.098], + [37185,0.033], + [37187,0.035], + [37189,0.034], + [37191,0.099], + [37193,0.054], + [37195,0.095], + [37197,0.098], + [37199,0.046], + [38001,0.009], + [38003,0.011], + [38005,0.012], + [38007,0.005], + [38009,0.013], + [38011,0.025], + [38013,0.019], + [38015,0.012], + [38017,0.02], + [38019,0.006], + [38021,0.019], + [38023,0.014], + [38025,0.011], + [38027,0.022], + [38029,0.01], + [38031,0.009], + [38033,0.021], + [38035,0.029], + [38037,0.003], + [38039,0.004], + [38041,0.005], + [38043,0.029], + [38045,0.008], + [38047,0.006], + [38049,0.015], + [38051,0.014], + [38053,0.022], + [38055,0.012], + [38057,0.014], + [38059,0.015], + [38061,0.037], + [38063,0.011], + [38065,0.01], + [38067,0.026], + [38069,0.01], + [38071,0.012], + [38073,0.012], + [38075,0.01], + [38077,0.017], + [38079,0.01], + [38081,0.013], + [38083,0.012], + [38085,0.02], + [38087,0.017], + [38089,0.019], + [38091,0.01], + [38093,0.017], + [38095,0.004], + [38097,0.026], + [38099,0.087], + [38101,0.03], + [38103,0.005], + [38105,0.019], + [39001,0.009], + [39003,0.024], + [39005,0.009], + [39007,0.034], + [39009,0.015], + [39011,0.012], + [39013,0.006], + [39015,0.006], + [39017,0.04], + [39019,0.008], + [39021,0.011], + [39023,0.028], + [39025,0.015], + [39027,0.013], + [39029,0.012], + [39031,0.008], + [39033,0.012], + [39035,0.048], + [39037,0.012], + [39039,0.087], + [39041,0.021], + [39043,0.034], + [39045,0.017], + [39047,0.018], + [39049,0.048], + [39051,0.078], + [39053,0.009], + [39055,0.011], + [39057,0.021], + [39059,0.009], + [39061,0.026], + [39063,0.045], + [39065,0.013], + [39067,0.005], + [39069,0.066], + [39071,0.007], + [39073,0.007], + [39075,0.008], + [39077,0.056], + [39079,0.008], + [39081,0.011], + [39083,0.012], + [39085,0.034], + [39087,0.007], + [39089,0.014], + [39091,0.012], + [39093,0.084], + [39095,0.061], + [39097,0.014], + [39099,0.047], + [39101,0.023], + [39103,0.016], + [39105,0.005], + [39107,0.015], + [39109,0.013], + [39111,0.004], + [39113,0.023], + [39115,0.006], + [39117,0.011], + [39119,0.008], + [39121,0.004], + [39123,0.042], + [39125,0.043], + [39127,0.005], + [39129,0.011], + [39131,0.007], + [39133,0.013], + [39135,0.006], + [39137,0.055], + [39139,0.014], + [39141,0.01], + [39143,0.089], + [39145,0.011], + [39147,0.044], + [39149,0.013], + [39151,0.016], + [39153,0.016], + [39155,0.013], + [39157,0.019], + [39159,0.013], + [39161,0.026], + [39163,0.005], + [39165,0.022], + [39167,0.007], + [39169,0.016], + [39171,0.037], + [39173,0.045], + [39175,0.022], + [40001,0.053], + [40003,0.04], + [40005,0.029], + [40007,0.201], + [40009,0.118], + [40011,0.241], + [40013,0.05], + [40015,0.101], + [40017,0.067], + [40019,0.053], + [40021,0.063], + [40023,0.028], + [40025,0.208], + [40027,0.07], + [40029,0.026], + [40031,0.112], + [40033,0.056], + [40035,0.025], + [40037,0.031], + [40039,0.139], + [40041,0.03], + [40043,0.048], + [40045,0.06], + [40047,0.088], + [40049,0.062], + [40051,0.046], + [40053,0.035], + [40055,0.098], + [40057,0.259], + [40059,0.175], + [40061,0.033], + [40063,0.038], + [40065,0.209], + [40067,0.085], + [40069,0.039], + [40071,0.064], + [40073,0.134], + [40075,0.088], + [40077,0.026], + [40079,0.069], + [40081,0.024], + [40083,0.052], + [40085,0.118], + [40087,0.07], + [40089,0.047], + [40091,0.019], + [40093,0.075], + [40095,0.14], + [40097,0.027], + [40099,0.049], + [40101,0.052], + [40103,0.026], + [40105,0.023], + [40107,0.029], + [40109,0.151], + [40111,0.032], + [40113,0.029], + [40115,0.047], + [40117,0.02], + [40119,0.039], + [40121,0.039], + [40123,0.041], + [40125,0.041], + [40127,0.024], + [40129,0.045], + [40131,0.037], + [40133,0.035], + [40135,0.034], + [40137,0.062], + [40139,0.42], + [40141,0.223], + [40143,0.11], + [40145,0.048], + [40147,0.05], + [40149,0.081], + [40151,0.048], + [40153,0.106], + [41001,0.033], + [41003,0.064], + [41005,0.077], + [41007,0.077], + [41009,0.04], + [41011,0.054], + [41013,0.07], + [41015,0.054], + [41017,0.074], + [41019,0.047], + [41021,0.047], + [41023,0.028], + [41025,0.04], + [41027,0.295], + [41029,0.107], + [41031,0.193], + [41033,0.063], + [41035,0.104], + [41037,0.069], + [41039,0.074], + [41041,0.079], + [41043,0.078], + [41045,0.315], + [41047,0.243], + [41049,0.313], + [41051,0.109], + [41053,0.121], + [41055,0.056], + [41057,0.09], + [41059,0.239], + [41061,0.039], + [41063,0.022], + [41065,0.148], + [41067,0.157], + [41069,0.043], + [41071,0.147], + [42001,0.06], + [42003,0.016], + [42005,0.005], + [42007,0.012], + [42009,0.009], + [42011,0.164], + [42013,0.01], + [42015,0.011], + [42017,0.043], + [42019,0.011], + [42021,0.014], + [42023,0.004], + [42025,0.033], + [42027,0.024], + [42029,0.065], + [42031,0.006], + [42033,0.023], + [42035,0.011], + [42037,0.02], + [42039,0.009], + [42041,0.027], + [42043,0.07], + [42045,0.03], + [42047,0.006], + [42049,0.034], + [42051,0.008], + [42053,0.054], + [42055,0.043], + [42057,0.008], + [42059,0.012], + [42061,0.016], + [42063,0.011], + [42065,0.006], + [42067,0.025], + [42069,0.05], + [42071,0.086], + [42073,0.01], + [42075,0.093], + [42077,0.188], + [42079,0.067], + [42081,0.013], + [42083,0.017], + [42085,0.011], + [42087,0.011], + [42089,0.131], + [42091,0.043], + [42093,0.018], + [42095,0.105], + [42097,0.024], + [42099,0.013], + [42101,0.123], + [42103,0.09], + [42105,0.01], + [42107,0.028], + [42109,0.017], + [42111,0.011], + [42113,0.014], + [42115,0.013], + [42117,0.01], + [42119,0.052], + [42121,0.009], + [42123,0.007], + [42125,0.011], + [42127,0.034], + [42129,0.009], + [42131,0.015], + [42133,0.056], + [44001,0.02], + [44003,0.032], + [44005,0.042], + [44007,0.188], + [44009,0.024], + [45001,0.01], + [45003,0.049], + [45005,0.023], + [45007,0.029], + [45009,0.016], + [45011,0.018], + [45013,0.121], + [45015,0.06], + [45017,0.03], + [45019,0.054], + [45021,0.037], + [45023,0.014], + [45025,0.036], + [45027,0.026], + [45029,0.028], + [45031,0.017], + [45033,0.026], + [45035,0.044], + [45037,0.052], + [45039,0.016], + [45041,0.022], + [45043,0.031], + [45045,0.081], + [45047,0.054], + [45049,0.035], + [45051,0.062], + [45053,0.151], + [45055,0.037], + [45057,0.044], + [45059,0.041], + [45061,0.017], + [45063,0.055], + [45065,0.008], + [45067,0.024], + [45069,0.028], + [45071,0.072], + [45073,0.045], + [45075,0.019], + [45077,0.031], + [45079,0.048], + [45081,0.144], + [45083,0.059], + [45085,0.033], + [45087,0.01], + [45089,0.02], + [45091,0.045], + [46003,0.037], + [46005,0.077], + [46007,0.02], + [46009,0.018], + [46011,0.02], + [46013,0.014], + [46015,0.014], + [46017,0.018], + [46019,0.03], + [46021,0.014], + [46023,0.017], + [46025,0.017], + [46027,0.02], + [46029,0.016], + [46031,0.026], + [46033,0.022], + [46035,0.015], + [46037,0.011], + [46039,0.02], + [46041,0.018], + [46043,0.008], + [46045,0.014], + [46047,0.022], + [46049,0.008], + [46051,0.023], + [46053,0.009], + [46055,0.009], + [46057,0.025], + [46059,0.006], + [46061,0.005], + [46063,0.016], + [46065,0.018], + [46067,0.016], + [46069,0.011], + [46071,0.013], + [46073,0.041], + [46075,0.013], + [46077,0.014], + [46079,0.016], + [46081,0.025], + [46083,0.012], + [46085,0.011], + [46087,0.018], + [46089,0.01], + [46091,0.068], + [46093,0.03], + [46095,0.015], + [46097,0.013], + [46099,0.041], + [46101,0.017], + [46102,0.022], + [46103,0.04], + [46105,0.007], + [46107,0.007], + [46109,0.012], + [46111,0.012], + [46115,0.011], + [46117,0.007], + [46119,0.009], + [46121,0.024], + [46123,0.011], + [46125,0.013], + [46127,0.021], + [46129,0.007], + [46135,0.027], + [46137,0.031], + [47001,0.024], + [47003,0.113], + [47005,0.018], + [47007,0.02], + [47009,0.028], + [47011,0.047], + [47013,0.012], + [47015,0.015], + [47017,0.021], + [47019,0.015], + [47021,0.023], + [47023,0.02], + [47025,0.008], + [47027,0.016], + [47029,0.018], + [47031,0.038], + [47033,0.087], + [47035,0.023], + [47037,0.098], + [47039,0.026], + [47041,0.066], + [47043,0.032], + [47045,0.026], + [47047,0.022], + [47049,0.011], + [47051,0.025], + [47053,0.02], + [47055,0.016], + [47057,0.023], + [47059,0.025], + [47061,0.008], + [47063,0.107], + [47065,0.045], + [47067,0.002], + [47069,0.014], + [47071,0.019], + [47073,0.012], + [47075,0.038], + [47077,0.019], + [47079,0.017], + [47081,0.018], + [47083,0.015], + [47085,0.015], + [47087,0.014], + [47089,0.031], + [47091,0.015], + [47093,0.035], + [47095,0.017], + [47097,0.02], + [47099,0.016], + [47101,0.018], + [47103,0.027], + [47105,0.07], + [47107,0.028], + [47109,0.015], + [47111,0.041], + [47113,0.034], + [47115,0.013], + [47117,0.045], + [47119,0.048], + [47121,0.015], + [47123,0.033], + [47125,0.08], + [47127,0.011], + [47129,0.009], + [47131,0.031], + [47133,0.009], + [47135,0.017], + [47137,0.013], + [47139,0.014], + [47141,0.053], + [47143,0.037], + [47145,0.013], + [47147,0.059], + [47149,0.067], + [47151,0.005], + [47153,0.033], + [47155,0.053], + [47157,0.056], + [47159,0.022], + [47161,0.019], + [47163,0.015], + [47165,0.039], + [47167,0.021], + [47169,0.025], + [47171,0.038], + [47173,0.013], + [47175,0.009], + [47177,0.081], + [47179,0.03], + [47181,0.016], + [47183,0.02], + [47185,0.016], + [47187,0.045], + [47189,0.032], + [48001,0.159], + [48003,0.487], + [48005,0.198], + [48007,0.246], + [48009,0.075], + [48011,0.065], + [48013,0.619], + [48015,0.234], + [48017,0.598], + [48019,0.167], + [48021,0.326], + [48023,0.122], + [48025,0.562], + [48027,0.216], + [48029,0.587], + [48031,0.182], + [48033,0.148], + [48035,0.161], + [48037,0.065], + [48039,0.277], + [48041,0.233], + [48043,0.424], + [48045,0.251], + [48047,0.912], + [48049,0.196], + [48051,0.184], + [48053,0.202], + [48055,0.471], + [48057,0.464], + [48059,0.076], + [48061,0.881], + [48063,0.214], + [48065,0.085], + [48067,0.035], + [48069,0.599], + [48071,0.189], + [48073,0.206], + [48075,0.268], + [48077,0.043], + [48079,0.529], + [48081,0.181], + [48083,0.16], + [48085,0.147], + [48087,0.3], + [48089,0.261], + [48091,0.249], + [48093,0.258], + [48095,0.532], + [48097,0.156], + [48099,0.159], + [48101,0.21], + [48103,0.551], + [48105,0.632], + [48107,0.523], + [48109,0.762], + [48111,0.405], + [48113,0.383], + [48115,0.534], + [48117,0.673], + [48119,0.055], + [48121,0.182], + [48123,0.324], + [48125,0.29], + [48127,0.862], + [48129,0.084], + [48131,0.885], + [48133,0.144], + [48135,0.527], + [48137,0.513], + [48139,0.235], + [48141,0.822], + [48143,0.192], + [48145,0.208], + [48147,0.095], + [48149,0.187], + [48151,0.251], + [48153,0.529], + [48155,0.14], + [48157,0.237], + [48159,0.126], + [48161,0.136], + [48163,0.778], + [48165,0.366], + [48167,0.224], + [48169,0.471], + [48171,0.2], + [48173,0.308], + [48175,0.341], + [48177,0.472], + [48179,0.238], + [48181,0.113], + [48183,0.164], + [48185,0.212], + [48187,0.356], + [48189,0.559], + [48191,0.324], + [48193,0.101], + [48195,0.433], + [48197,0.215], + [48199,0.044], + [48201,0.408], + [48203,0.111], + [48205,0.239], + [48207,0.24], + [48209,0.353], + [48211,0.285], + [48213,0.108], + [48215,0.906], + [48217,0.183], + [48219,0.436], + [48221,0.102], + [48223,0.153], + [48225,0.1], + [48227,0.379], + [48229,0.796], + [48231,0.136], + [48233,0.198], + [48235,0.255], + [48237,0.142], + [48239,0.29], + [48241,0.056], + [48243,0.337], + [48245,0.17], + [48247,0.926], + [48249,0.79], + [48251,0.181], + [48253,0.248], + [48255,0.498], + [48257,0.17], + [48259,0.204], + [48261,0.767], + [48263,0.149], + [48265,0.24], + [48267,0.234], + [48269,0.136], + [48271,0.557], + [48273,0.702], + [48275,0.296], + [48277,0.065], + [48279,0.517], + [48281,0.175], + [48283,0.86], + [48285,0.16], + [48287,0.224], + [48289,0.135], + [48291,0.18], + [48293,0.191], + [48295,0.305], + [48297,0.352], + [48299,0.08], + [48301,0.22], + [48303,0.319], + [48305,0.464], + [48307,0.299], + [48309,0.236], + [48311,0.369], + [48313,0.197], + [48315,0.031], + [48317,0.435], + [48319,0.215], + [48321,0.383], + [48323,0.957], + [48325,0.497], + [48327,0.352], + [48329,0.377], + [48331,0.233], + [48333,0.166], + [48335,0.37], + [48337,0.098], + [48339,0.208], + [48341,0.527], + [48343,0.078], + [48345,0.135], + [48347,0.176], + [48349,0.238], + [48351,0.028], + [48353,0.335], + [48355,0.606], + [48357,0.487], + [48359,0.118], + [48361,0.058], + [48363,0.177], + [48365,0.083], + [48367,0.106], + [48369,0.6], + [48371,0.673], + [48373,0.131], + [48375,0.353], + [48377,0.834], + [48379,0.077], + [48381,0.164], + [48383,0.609], + [48385,0.246], + [48387,0.066], + [48389,0.742], + [48391,0.472], + [48393,0.08], + [48395,0.18], + [48397,0.159], + [48399,0.32], + [48401,0.143], + [48403,0.032], + [48405,0.06], + [48407,0.109], + [48409,0.544], + [48411,0.28], + [48413,0.444], + [48415,0.363], + [48417,0.101], + [48419,0.164], + [48421,0.404], + [48423,0.172], + [48425,0.192], + [48427,0.957], + [48429,0.209], + [48431,0.319], + [48433,0.14], + [48435,0.596], + [48437,0.401], + [48439,0.267], + [48441,0.221], + [48443,0.475], + [48445,0.491], + [48447,0.093], + [48449,0.396], + [48451,0.357], + [48453,0.335], + [48455,0.077], + [48457,0.068], + [48459,0.066], + [48461,0.49], + [48463,0.693], + [48465,0.802], + [48467,0.092], + [48469,0.439], + [48471,0.168], + [48473,0.29], + [48475,0.476], + [48477,0.138], + [48479,0.957], + [48481,0.374], + [48483,0.248], + [48485,0.166], + [48487,0.259], + [48489,0.872], + [48491,0.232], + [48493,0.382], + [48495,0.538], + [48497,0.171], + [48499,0.085], + [48501,0.587], + [48503,0.164], + [48505,0.933], + [48507,0.939], + [49001,0.108], + [49003,0.083], + [49005,0.1], + [49007,0.124], + [49009,0.031], + [49011,0.084], + [49013,0.06], + [49015,0.06], + [49017,0.045], + [49019,0.096], + [49021,0.077], + [49023,0.037], + [49025,0.037], + [49027,0.128], + [49029,0.024], + [49031,0.07], + [49033,0.042], + [49035,0.171], + [49037,0.044], + [49039,0.094], + [49041,0.045], + [49043,0.115], + [49045,0.114], + [49047,0.071], + [49049,0.108], + [49051,0.135], + [49053,0.098], + [49055,0.042], + [49057,0.167], + [50001,0.019], + [50003,0.014], + [50005,0.011], + [50007,0.018], + [50009,0.009], + [50011,0.012], + [50013,0.011], + [50015,0.013], + [50017,0.01], + [50019,0.011], + [50021,0.011], + [50023,0.017], + [50025,0.018], + [50027,0.012], + [51001,0.086], + [51003,0.055], + [51005,0.011], + [51007,0.023], + [51009,0.019], + [51011,0.011], + [51013,0.151], + [51015,0.021], + [51017,0.021], + [51019,0.016], + [51021,0.006], + [51023,0.011], + [51025,0.017], + [51027,0.004], + [51029,0.017], + [51031,0.017], + [51033,0.034], + [51035,0.026], + [51036,0.012], + [51037,0.019], + [51041,0.072], + [51043,0.035], + [51045,0.007], + [51047,0.089], + [51049,0.018], + [51051,0.005], + [51053,0.024], + [51057,0.031], + [51059,0.156], + [51061,0.064], + [51063,0.027], + [51065,0.03], + [51067,0.025], + [51069,0.066], + [51071,0.012], + [51073,0.025], + [51075,0.021], + [51077,0.027], + [51079,0.042], + [51081,0.014], + [51083,0.016], + [51085,0.021], + [51087,0.049], + [51089,0.047], + [51091,0.008], + [51093,0.019], + [51095,0.045], + [51097,0.026], + [51099,0.033], + [51101,0.02], + [51103,0.01], + [51105,0.016], + [51107,0.124], + [51109,0.023], + [51111,0.036], + [51113,0.018], + [51115,0.012], + [51117,0.025], + [51119,0.015], + [51121,0.027], + [51125,0.031], + [51127,0.021], + [51131,0.071], + [51133,0.031], + [51135,0.038], + [51137,0.034], + [51139,0.016], + [51141,0.024], + [51143,0.021], + [51145,0.018], + [51147,0.022], + [51149,0.058], + [51153,0.203], + [51155,0.012], + [51157,0.031], + [51159,0.055], + [51161,0.021], + [51163,0.013], + [51165,0.053], + [51167,0.01], + [51169,0.01], + [51171,0.061], + [51173,0.016], + [51175,0.011], + [51177,0.076], + [51179,0.092], + [51181,0.012], + [51183,0.022], + [51185,0.007], + [51187,0.035], + [51191,0.013], + [51193,0.057], + [51195,0.011], + [51197,0.01], + [51199,0.044], + [51510,0.161], + [51520,0.012], + [51530,0.015], + [51540,0.051], + [51550,0.044], + [51570,0.039], + [51580,0.015], + [51590,0.029], + [51595,0.044], + [51600,0.158], + [51610,0.09], + [51620,0.016], + [51630,0.107], + [51640,0.14], + [51650,0.045], + [51660,0.157], + [51670,0.066], + [51678,0.038], + [51680,0.03], + [51683,0.314], + [51685,0.325], + [51690,0.04], + [51700,0.075], + [51710,0.066], + [51720,0.017], + [51730,0.038], + [51735,0.018], + [51740,0.031], + [51750,0.023], + [51760,0.063], + [51770,0.055], + [51775,0.024], + [51790,0.022], + [51800,0.029], + [51810,0.066], + [51820,0.064], + [51830,0.067], + [51840,0.154], + [53001,0.593], + [53003,0.03], + [53005,0.187], + [53007,0.258], + [53009,0.051], + [53011,0.076], + [53013,0.062], + [53015,0.078], + [53017,0.287], + [53019,0.034], + [53021,0.512], + [53023,0.04], + [53025,0.383], + [53027,0.086], + [53029,0.055], + [53031,0.028], + [53033,0.089], + [53035,0.062], + [53037,0.076], + [53039,0.107], + [53041,0.087], + [53043,0.023], + [53045,0.08], + [53047,0.176], + [53049,0.08], + [53051,0.03], + [53053,0.092], + [53055,0.054], + [53057,0.169], + [53059,0.05], + [53061,0.09], + [53063,0.045], + [53065,0.027], + [53067,0.071], + [53069,0.027], + [53071,0.197], + [53073,0.078], + [53075,0.046], + [53077,0.45], + [54001,0.006], + [54003,0.038], + [54005,0.004], + [54007,0.005], + [54009,0.007], + [54011,0.011], + [54013,0.007], + [54015,0.004], + [54017,0.005], + [54019,0.009], + [54021,0.057], + [54023,0.01], + [54025,0.012], + [54027,0.01], + [54029,0.01], + [54031,0.034], + [54033,0.013], + [54035,0.006], + [54037,0.047], + [54039,0.009], + [54041,0.006], + [54043,0.004], + [54045,0.007], + [54047,0.004], + [54049,0.009], + [54051,0.008], + [54053,0.004], + [54055,0.008], + [54057,0.007], + [54059,0.004], + [54061,0.018], + [54063,0.006], + [54065,0.01], + [54067,0.006], + [54069,0.008], + [54071,0.009], + [54073,0.008], + [54075,0.008], + [54077,0.007], + [54079,0.009], + [54081,0.013], + [54083,0.007], + [54085,0.005], + [54087,0.007], + [54089,0.014], + [54091,0.008], + [54093,0.006], + [54095,0.005], + [54097,0.01], + [54099,0.005], + [54101,0.005], + [54103,0.005], + [54105,0.005], + [54107,0.009], + [54109,0.004], + [55001,0.038], + [55003,0.019], + [55005,0.019], + [55007,0.011], + [55009,0.073], + [55011,0.017], + [55013,0.013], + [55015,0.035], + [55017,0.013], + [55019,0.037], + [55021,0.025], + [55023,0.009], + [55025,0.059], + [55027,0.04], + [55029,0.024], + [55031,0.011], + [55033,0.014], + [55035,0.018], + [55037,0.008], + [55039,0.043], + [55041,0.015], + [55043,0.013], + [55045,0.028], + [55047,0.039], + [55049,0.014], + [55051,0.006], + [55053,0.025], + [55055,0.066], + [55057,0.026], + [55059,0.118], + [55061,0.023], + [55063,0.015], + [55065,0.031], + [55067,0.016], + [55069,0.012], + [55071,0.031], + [55073,0.022], + [55075,0.013], + [55077,0.025], + [55078,0.042], + [55079,0.133], + [55081,0.037], + [55083,0.014], + [55085,0.011], + [55087,0.036], + [55089,0.023], + [55091,0.01], + [55093,0.015], + [55095,0.015], + [55097,0.026], + [55099,0.011], + [55101,0.115], + [55103,0.02], + [55105,0.076], + [55107,0.012], + [55109,0.02], + [55111,0.043], + [55113,0.016], + [55115,0.022], + [55117,0.055], + [55119,0.015], + [55121,0.058], + [55123,0.013], + [55125,0.013], + [55127,0.103], + [55129,0.013], + [55131,0.026], + [55133,0.041], + [55135,0.025], + [55137,0.054], + [55139,0.035], + [55141,0.022], + [56001,0.088], + [56003,0.084], + [56005,0.078], + [56007,0.168], + [56009,0.063], + [56011,0.02], + [56013,0.056], + [56015,0.097], + [56017,0.022], + [56019,0.032], + [56021,0.131], + [56023,0.043], + [56025,0.069], + [56027,0.021], + [56029,0.048], + [56031,0.067], + [56033,0.035], + [56035,0.069], + [56037,0.153], + [56039,0.15], + [56041,0.088], + [56043,0.136], + [56045,0.03] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-hispanic-2017.json b/data/regional/united-states/demographics/race/us-race-hispanic-2017.json new file mode 100644 index 0000000..8d8a43a --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-hispanic-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Hispanic Population", + "description" : "Percent of the population that is hispanic in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.hispanic.2017"], + [1001,0.0267], + [1003,0.0444], + [1005,0.0421], + [1007,0.0235], + [1009,0.0901], + [1011,0.0033], + [1013,0.0032], + [1015,0.0357], + [1017,0.0215], + [1019,0.0158], + [1021,0.077], + [1023,0.0054], + [1025,0.0024], + [1027,0.0311], + [1029,0.0238], + [1031,0.0666], + [1033,0.0241], + [1035,0.0183], + [1037,0.0015], + [1039,0.0156], + [1041,0.0182], + [1043,0.0424], + [1045,0.0606], + [1047,0.01], + [1049,0.143], + [1051,0.0286], + [1053,0.0215], + [1055,0.0368], + [1057,0.0166], + [1059,0.1633], + [1061,0.0378], + [1063,0.0118], + [1065,0.0131], + [1067,0.0254], + [1069,0.0323], + [1071,0.0285], + [1073,0.0374], + [1075,0.0151], + [1077,0.0247], + [1079,0.0211], + [1081,0.0371], + [1083,0.0581], + [1085,0.0069], + [1087,0.0163], + [1089,0.0474], + [1091,0.0045], + [1093,0.0247], + [1095,0.133], + [1097,0.0276], + [1099,0.0132], + [1101,0.0336], + [1103,0.0796], + [1105,0.0069], + [1107,0.041], + [1109,0.0085], + [1111,0.0295], + [1113,0.0522], + [1115,0.023], + [1117,0.0577], + [1119,0.0026], + [1121,0.0221], + [1123,0.0238], + [1125,0.0349], + [1127,0.0236], + [1129,0.0048], + [1131,0.0048], + [1133,0.0299], + [2013,0.0971], + [2016,0.1349], + [2020,0.0886], + [2050,0.0219], + [2060,0.0447], + [2068,0.0074], + [2070,0.0312], + [2090,0.0771], + [2100,0.028], + [2105,0.0545], + [2110,0.0637], + [2122,0.0396], + [2130,0.0477], + [2150,0.0885], + [2158,null], + [2164,0.0154], + [2170,0.0461], + [2180,0.0237], + [2185,0.0411], + [2188,0.0254], + [2195,0.1056], + [2198,0.0368], + [2220,0.063], + [2230,0.0684], + [2240,0.0517], + [2261,0.048], + [2275,0.0315], + [2282,0.0557], + [2290,0.0215], + [4001,0.0611], + [4003,0.35], + [4005,0.139], + [4007,0.1865], + [4009,0.3253], + [4011,0.4641], + [4012,0.2629], + [4013,0.306], + [4015,0.1592], + [4017,0.1117], + [4019,0.366], + [4021,0.2961], + [4023,0.8338], + [4025,0.1426], + [4027,0.6289], + [5001,0.0296], + [5003,0.0521], + [5005,0.0214], + [5007,0.1627], + [5009,0.0233], + [5011,0.1478], + [5013,0.0391], + [5015,0.1476], + [5017,0.0519], + [5019,0.046], + [5021,0.019], + [5023,0.0246], + [5025,0.0178], + [5027,0.0254], + [5029,0.038], + [5031,0.0489], + [5033,0.073], + [5035,0.0239], + [5037,0.0189], + [5039,0.0307], + [5041,0.0579], + [5043,0.0307], + [5045,0.04], + [5047,0.0288], + [5049,0.0131], + [5051,0.0537], + [5053,0.0248], + [5055,0.0272], + [5057,0.1248], + [5059,0.0337], + [5061,0.1198], + [5063,0.0609], + [5065,0.021], + [5067,0.0273], + [5069,0.0198], + [5071,0.1372], + [5073,0.0116], + [5075,0.0132], + [5077,0.0138], + [5079,0.0359], + [5081,0.0331], + [5083,0.0291], + [5085,0.0426], + [5087,0.0543], + [5089,0.0216], + [5091,0.0305], + [5093,0.0403], + [5095,0.0255], + [5097,0.0413], + [5099,0.004], + [5101,0.0137], + [5103,0.0214], + [5105,0.0282], + [5107,0.0173], + [5109,0.0655], + [5111,0.0284], + [5113,0.0644], + [5115,0.0851], + [5117,0.0057], + [5119,0.0601], + [5121,0.0187], + [5123,0.0264], + [5125,0.0446], + [5127,0.0751], + [5129,0.0221], + [5131,0.1374], + [5133,0.3287], + [5135,0.0214], + [5137,0.0182], + [5139,0.0379], + [5141,0.0292], + [5143,0.1646], + [5145,0.042], + [5147,0.0049], + [5149,0.1973], + [6001,0.2252], + [6003,0.0973], + [6005,0.1325], + [6007,0.1574], + [6009,0.1147], + [6011,0.5838], + [6013,0.2527], + [6015,0.1924], + [6017,0.1258], + [6019,0.5243], + [6021,0.4083], + [6023,0.1106], + [6025,0.8341], + [6027,0.214], + [6029,0.5222], + [6031,0.5374], + [6033,0.1942], + [6035,0.1852], + [6037,0.4842], + [6039,0.5688], + [6041,0.1587], + [6043,0.1059], + [6045,0.2446], + [6047,0.5821], + [6049,0.1461], + [6051,0.2714], + [6053,0.5793], + [6055,0.3372], + [6057,0.0922], + [6059,0.342], + [6061,0.1364], + [6063,0.0854], + [6065,0.4798], + [6067,0.2278], + [6069,0.5891], + [6071,0.5228], + [6073,0.3336], + [6075,0.1527], + [6077,0.4082], + [6079,0.222], + [6081,0.2489], + [6083,0.4482], + [6085,0.2607], + [6087,0.3334], + [6089,0.0962], + [6091,0.1005], + [6093,0.1199], + [6095,0.2577], + [6097,0.2635], + [6099,0.4495], + [6101,0.3025], + [6103,0.2422], + [6105,0.0719], + [6107,0.6361], + [6109,0.1185], + [6111,0.4225], + [6113,0.3141], + [6115,0.2744], + [8001,0.3933], + [8003,0.4581], + [8005,0.1889], + [8007,0.1834], + [8009,0.105], + [8011,0.3198], + [8013,0.1375], + [8014,0.1207], + [8015,0.1007], + [8017,0.149], + [8019,0.0613], + [8021,0.5344], + [8023,0.6378], + [8025,0.307], + [8027,0.0455], + [8029,0.1498], + [8031,0.3052], + [8033,0.0455], + [8035,0.0833], + [8037,0.2956], + [8039,0.0653], + [8041,0.165], + [8043,0.13], + [8045,0.2809], + [8047,0.0922], + [8049,0.0807], + [8051,0.0912], + [8053,0.0598], + [8055,0.3473], + [8057,0.2442], + [8059,0.1516], + [8061,0.0439], + [8063,0.1925], + [8065,0.3393], + [8067,0.1257], + [8069,0.1118], + [8071,0.4243], + [8073,0.227], + [8075,0.1554], + [8077,0.1423], + [8079,0.1259], + [8081,0.1492], + [8083,0.1224], + [8085,0.2045], + [8087,0.3575], + [8089,0.4154], + [8091,0.0565], + [8093,0.0586], + [8095,0.2008], + [8097,0.0982], + [8099,0.3718], + [8101,0.4273], + [8103,0.0993], + [8105,0.4458], + [8107,0.0691], + [8109,0.3705], + [8111,0.1336], + [8113,0.0988], + [8115,0.1116], + [8117,0.1399], + [8119,0.0618], + [8121,0.0957], + [8123,0.2902], + [8125,0.2264], + [9001,0.1904], + [9003,0.1727], + [9005,0.057], + [9007,0.0586], + [9009,0.1722], + [9011,0.1004], + [9013,0.0518], + [9015,0.111], + [10001,0.0683], + [10003,0.0957], + [10005,0.0921], + [11001,0.1068], + [12001,0.0926], + [12003,0.0235], + [12005,0.0601], + [12007,0.0381], + [12009,0.0969], + [12011,0.2835], + [12013,0.0578], + [12015,0.0685], + [12017,0.0532], + [12019,0.0929], + [12021,0.2717], + [12023,0.0581], + [12027,0.3052], + [12029,0.0387], + [12031,0.0895], + [12033,0.0546], + [12035,0.0999], + [12037,0.0519], + [12039,0.1004], + [12041,0.0551], + [12043,0.208], + [12045,0.0476], + [12047,0.092], + [12049,0.4319], + [12051,0.5186], + [12053,0.1221], + [12055,0.1886], + [12057,0.2745], + [12059,0.0273], + [12061,0.1208], + [12063,0.0465], + [12065,0.0403], + [12067,0.1426], + [12069,0.1441], + [12071,0.2022], + [12073,0.0612], + [12075,0.08], + [12077,0.0486], + [12079,0.0505], + [12081,0.1586], + [12083,0.1235], + [12085,0.132], + [12086,0.6745], + [12087,0.2348], + [12089,0.038], + [12091,0.0866], + [12093,0.2499], + [12095,0.3015], + [12097,0.516], + [12099,0.2132], + [12101,0.1403], + [12103,0.0915], + [12105,0.2061], + [12107,0.0977], + [12109,0.0639], + [12111,0.1813], + [12113,0.0524], + [12115,0.0882], + [12117,0.2006], + [12119,0.0566], + [12121,0.0882], + [12123,0.0409], + [12125,0.0543], + [12127,0.1287], + [12129,0.036], + [12131,0.0601], + [12133,0.0354], + [13001,0.0973], + [13003,0.2464], + [13005,0.0848], + [13007,0.0535], + [13009,0.0219], + [13011,0.0643], + [13013,0.1002], + [13015,0.0816], + [13017,0.0604], + [13019,0.0488], + [13021,0.0316], + [13023,0.027], + [13025,0.0211], + [13027,0.056], + [13029,0.0664], + [13031,0.0371], + [13033,0.0309], + [13035,0.0308], + [13037,0.048], + [13039,0.0637], + [13043,0.1148], + [13045,0.0668], + [13047,0.0286], + [13049,0.0836], + [13051,0.0625], + [13053,0.1531], + [13055,0.0474], + [13057,0.1003], + [13059,0.1063], + [13061,0.0473], + [13063,0.1319], + [13065,0.0491], + [13067,0.1277], + [13069,0.1131], + [13071,0.1892], + [13073,0.0623], + [13075,0.0583], + [13077,0.0676], + [13079,0.007], + [13081,0.0324], + [13083,0.0218], + [13085,0.0422], + [13087,0.0579], + [13089,0.0867], + [13091,0.0343], + [13093,0.0693], + [13095,0.0264], + [13097,0.0921], + [13099,0.0215], + [13101,0.2665], + [13103,0.039], + [13105,0.0553], + [13107,0.0448], + [13109,0.1177], + [13111,0.0216], + [13113,0.0708], + [13115,0.106], + [13117,0.095], + [13119,0.0442], + [13121,0.0738], + [13123,0.1149], + [13125,0.0155], + [13127,0.0672], + [13129,0.154], + [13131,0.1106], + [13133,0.0607], + [13135,0.2075], + [13137,0.1415], + [13139,0.2781], + [13141,0.018], + [13143,0.0146], + [13145,0.0331], + [13147,0.0371], + [13149,0.0067], + [13151,0.0647], + [13153,0.0658], + [13155,0.0125], + [13157,0.0707], + [13159,0.0388], + [13161,0.1145], + [13163,0.0365], + [13165,0.0644], + [13167,0.0233], + [13169,0.0146], + [13171,0.0227], + [13173,0.0546], + [13175,0.0256], + [13177,0.0275], + [13179,0.1245], + [13181,0.0153], + [13183,0.1138], + [13185,0.0542], + [13187,0.0472], + [13189,0.0287], + [13191,0.0151], + [13193,0.0425], + [13195,0.0488], + [13197,0.0168], + [13199,0.0209], + [13201,0.0041], + [13205,0.0443], + [13207,0.0235], + [13209,0.0655], + [13211,0.0314], + [13213,0.1434], + [13215,0.0749], + [13217,0.0513], + [13219,0.0476], + [13221,0.0414], + [13223,0.0582], + [13225,0.0751], + [13227,0.0304], + [13229,0.0511], + [13231,0.0152], + [13233,0.1304], + [13235,0.0356], + [13237,0.0656], + [13239,0.0056], + [13241,0.0807], + [13243,0.0167], + [13245,0.0478], + [13247,0.1021], + [13249,0.0499], + [13251,0.0182], + [13253,0.0296], + [13255,0.0435], + [13257,0.0316], + [13259,0.2027], + [13261,0.053], + [13263,0.0234], + [13265,0.0423], + [13267,0.1076], + [13269,0.0096], + [13271,0.1163], + [13273,0.0271], + [13275,0.035], + [13277,0.1139], + [13279,0.1156], + [13281,0.0146], + [13283,0.0212], + [13285,0.0369], + [13287,0.0458], + [13289,0.0036], + [13291,0.0305], + [13293,0.023], + [13295,0.0199], + [13297,0.0401], + [13299,0.0399], + [13301,0.0057], + [13303,0.0231], + [13305,0.0622], + [13307,0.0206], + [13309,0.0165], + [13311,0.0307], + [13313,0.3416], + [13315,0.0434], + [13317,0.0457], + [13319,0.0271], + [13321,0.0201], + [15001,0.1249], + [15003,0.096], + [15005,0.0465], + [15007,0.1077], + [15009,0.1105], + [16001,0.0787], + [16003,0.0332], + [16005,0.0827], + [16007,0.0412], + [16009,0.0344], + [16011,0.179], + [16013,0.2101], + [16015,0.041], + [16017,0.0289], + [16019,0.1267], + [16021,0.0465], + [16023,0.0253], + [16025,0.0926], + [16027,0.2487], + [16029,0.0541], + [16031,0.27], + [16033,0.4199], + [16035,0.0389], + [16037,0.0396], + [16039,0.1639], + [16041,0.0671], + [16043,0.1245], + [16045,0.083], + [16047,0.2882], + [16049,0.0321], + [16051,0.1043], + [16053,0.3448], + [16055,0.0437], + [16057,0.0417], + [16059,0.0322], + [16061,0.0434], + [16063,0.2978], + [16065,0.0712], + [16067,0.3438], + [16069,0.0371], + [16071,0.0415], + [16073,0.2655], + [16075,0.1701], + [16077,0.3291], + [16079,0.0344], + [16081,0.17], + [16083,0.1564], + [16085,0.0443], + [16087,0.1716], + [17001,0.0148], + [17003,0.01], + [17005,0.0346], + [17007,0.2104], + [17009,0.0361], + [17011,0.0875], + [17013,0.0112], + [17015,0.0358], + [17017,0.1877], + [17019,0.0575], + [17021,0.0156], + [17023,0.015], + [17025,0.0141], + [17027,0.0309], + [17029,0.0241], + [17031,0.2505], + [17033,0.029], + [17035,0.0111], + [17037,0.108], + [17039,0.0256], + [17041,0.072], + [17043,0.1409], + [17045,0.011], + [17047,0.0128], + [17049,0.0193], + [17051,0.0172], + [17053,0.0302], + [17055,0.0165], + [17057,0.0288], + [17059,0.0111], + [17061,0.0041], + [17063,0.0937], + [17065,0.0028], + [17067,0.0143], + [17069,0.0178], + [17071,0.0154], + [17073,0.055], + [17075,0.066], + [17077,0.0426], + [17079,0.0147], + [17081,0.0242], + [17083,0.0129], + [17085,0.0294], + [17087,0.0333], + [17089,0.316], + [17091,0.1006], + [17093,0.1758], + [17095,0.0553], + [17097,0.2114], + [17099,0.0929], + [17101,0.0379], + [17103,0.0589], + [17105,0.0442], + [17107,0.034], + [17109,0.0269], + [17111,0.1251], + [17113,0.0474], + [17115,0.0216], + [17117,0.0111], + [17119,0.0312], + [17121,0.0188], + [17123,0.0306], + [17125,0.0102], + [17127,0.0269], + [17129,0.0144], + [17131,0.0224], + [17133,0.0151], + [17135,0.0172], + [17137,0.0233], + [17139,0.0123], + [17141,0.0984], + [17143,0.0459], + [17145,0.0303], + [17147,0.0127], + [17149,0.0127], + [17151,0.0193], + [17153,0.0209], + [17155,0.0534], + [17157,0.0306], + [17159,0.0165], + [17161,0.1256], + [17163,0.0389], + [17165,0.0173], + [17167,0.022], + [17169,0.0025], + [17171,0.0117], + [17173,0.01], + [17175,0.0142], + [17177,0.0364], + [17179,0.0224], + [17181,0.0498], + [17183,0.0484], + [17185,0.0198], + [17187,0.0924], + [17189,0.014], + [17191,0.0139], + [17193,0.014], + [17195,0.1178], + [17197,0.1679], + [17199,0.0252], + [17201,0.1219], + [17203,0.0173], + [18001,0.0444], + [18003,0.0722], + [18005,0.0648], + [18007,0.0509], + [18009,0.0151], + [18011,0.0274], + [18013,0.0162], + [18015,0.039], + [18017,0.1456], + [18019,0.0526], + [18021,0.0132], + [18023,0.152], + [18025,0.0145], + [18027,0.0477], + [18029,0.012], + [18031,0.0188], + [18033,0.0276], + [18035,0.023], + [18037,0.0707], + [18039,0.1536], + [18041,0.0102], + [18043,0.0309], + [18045,0.0242], + [18047,0.0109], + [18049,0.05], + [18051,0.015], + [18053,0.0414], + [18055,0.0131], + [18057,0.0382], + [18059,0.0219], + [18061,0.0172], + [18063,0.0363], + [18065,0.0167], + [18067,0.0316], + [18069,0.0219], + [18071,0.0644], + [18073,0.0595], + [18075,0.0302], + [18077,0.0262], + [18079,0.0232], + [18081,0.0346], + [18083,0.0181], + [18085,0.0788], + [18087,0.039], + [18089,0.1839], + [18091,0.0626], + [18093,0.0158], + [18095,0.0383], + [18097,0.1007], + [18099,0.0966], + [18101,0.0036], + [18103,0.0296], + [18105,0.0332], + [18107,0.0472], + [18109,0.0147], + [18111,0.0611], + [18113,0.1017], + [18115,0.0098], + [18117,0.0143], + [18119,0.0116], + [18121,0.0148], + [18123,0.013], + [18125,0.0054], + [18127,0.096], + [18129,0.0111], + [18131,0.0287], + [18133,0.0254], + [18135,0.0326], + [18137,0.0179], + [18139,0.0152], + [18141,0.0835], + [18143,0.0209], + [18145,0.0403], + [18147,0.0286], + [18149,0.0354], + [18151,0.0347], + [18153,0.0172], + [18155,0.0139], + [18157,0.0813], + [18159,0.026], + [18161,0.0001], + [18163,0.0254], + [18165,0.0114], + [18167,0.0257], + [18169,0.0253], + [18171,0.0154], + [18173,0.0177], + [18175,0.0131], + [18177,0.0283], + [18179,0.0276], + [18181,0.0791], + [18183,0.0191], + [19001,0.0172], + [19003,0.0119], + [19005,0.0608], + [19007,0.0181], + [19009,0.0042], + [19011,0.014], + [19013,0.0421], + [19015,0.0252], + [19017,0.0143], + [19019,0.0148], + [19021,0.2503], + [19023,0.0129], + [19025,0.0183], + [19027,0.0235], + [19029,0.0242], + [19031,0.0188], + [19033,0.0459], + [19035,0.0339], + [19037,0.022], + [19039,0.1274], + [19041,0.0331], + [19043,0.0187], + [19045,0.0304], + [19047,0.2736], + [19049,0.0611], + [19051,0.013], + [19053,0.0268], + [19055,0.0139], + [19057,0.0293], + [19059,0.0189], + [19061,0.0231], + [19063,0.0932], + [19065,0.0226], + [19067,0.0251], + [19069,0.1208], + [19071,0.0253], + [19073,0.027], + [19075,0.012], + [19077,0.0236], + [19079,0.0595], + [19081,0.0394], + [19083,0.0418], + [19085,0.0161], + [19087,0.0466], + [19089,0.0154], + [19091,0.0397], + [19093,0.0207], + [19095,0.0247], + [19097,0.0139], + [19099,0.0201], + [19101,0.0289], + [19103,0.0545], + [19105,0.0179], + [19107,0.0151], + [19109,0.0223], + [19111,0.0353], + [19113,0.0309], + [19115,0.1579], + [19117,0.0012], + [19119,0.0251], + [19121,0.0183], + [19123,0.0201], + [19125,0.0185], + [19127,0.2074], + [19129,0.0283], + [19131,0.0133], + [19133,0.008], + [19135,0.0276], + [19137,0.0362], + [19139,0.1752], + [19141,0.0446], + [19143,0.0742], + [19145,0.0322], + [19147,0.0238], + [19149,0.0454], + [19151,0.0349], + [19153,0.0812], + [19155,0.0749], + [19157,0.0308], + [19159,0.0223], + [19161,0.0272], + [19163,0.0643], + [19165,0.028], + [19167,0.102], + [19169,0.0327], + [19171,0.0868], + [19173,0.0755], + [19175,0.0278], + [19177,0.0137], + [19179,0.1048], + [19181,0.0261], + [19183,0.0586], + [19185,0.0055], + [19187,0.0451], + [19189,0.0418], + [19191,0.0217], + [19193,0.1575], + [19195,0.0283], + [19197,0.1108], + [20001,0.0335], + [20003,0.0074], + [20005,0.029], + [20007,0.0316], + [20009,0.1446], + [20011,0.0248], + [20013,0.0417], + [20015,0.0455], + [20017,0.0443], + [20019,0.0339], + [20021,0.024], + [20023,0.0646], + [20025,0.1072], + [20027,0.0243], + [20029,0.0317], + [20031,0.0253], + [20033,0.0844], + [20035,0.1058], + [20037,0.0528], + [20039,0.0259], + [20041,0.045], + [20043,0.0273], + [20045,0.0603], + [20047,0.201], + [20049,0.0411], + [20051,0.0557], + [20053,0.0605], + [20055,0.4895], + [20057,0.5388], + [20059,0.0408], + [20061,0.1565], + [20063,0.0266], + [20065,0.032], + [20067,0.4681], + [20069,0.1499], + [20071,0.2207], + [20073,0.0373], + [20075,0.3373], + [20077,0.0633], + [20079,0.1168], + [20081,0.294], + [20083,0.0768], + [20085,0.0441], + [20087,0.0249], + [20089,0.0243], + [20091,0.0744], + [20093,0.3096], + [20095,0.0319], + [20097,0.0638], + [20099,0.0439], + [20101,0.0664], + [20103,0.068], + [20105,0.0301], + [20107,0.0257], + [20109,0.0556], + [20111,0.2088], + [20113,0.0402], + [20115,0.0331], + [20117,0.0235], + [20119,0.1665], + [20121,0.0301], + [20123,0.0223], + [20125,0.062], + [20127,0.045], + [20129,0.2259], + [20131,0.0175], + [20133,0.0496], + [20135,0.107], + [20137,0.0508], + [20139,0.0295], + [20141,0.0198], + [20143,0.0274], + [20145,0.0773], + [20147,0.032], + [20149,0.0532], + [20151,0.0716], + [20153,0.0599], + [20155,0.0905], + [20157,0.0162], + [20159,0.1124], + [20161,0.081], + [20163,0.0251], + [20165,0.0308], + [20167,0.0276], + [20169,0.1091], + [20171,0.1781], + [20173,0.1412], + [20175,0.5962], + [20177,0.1196], + [20179,0.0437], + [20181,0.1195], + [20183,0.019], + [20185,0.1331], + [20187,0.3735], + [20189,0.3524], + [20191,0.0532], + [20193,0.0552], + [20195,0.0124], + [20197,0.034], + [20199,0.0509], + [20201,0.0328], + [20203,0.2772], + [20205,0.0289], + [20207,0.0082], + [20209,0.2805], + [21001,0.0184], + [21003,0.0192], + [21005,0.0166], + [21007,0.0123], + [21009,0.0304], + [21011,0.0153], + [21013,0.0029], + [21015,0.0407], + [21017,0.0666], + [21019,0.017], + [21021,0.0322], + [21023,0.0161], + [21025,0.0093], + [21027,0.0127], + [21029,0.0178], + [21031,0.0313], + [21033,0.0133], + [21035,0.026], + [21037,0.0192], + [21039,0.0229], + [21041,0.0659], + [21043,0.0085], + [21045,0.0282], + [21047,0.075], + [21049,0.0273], + [21051,0.0254], + [21053,0.0276], + [21055,0.0097], + [21057,0.004], + [21059,0.0285], + [21061,0.0087], + [21063,0.0028], + [21065,0.0025], + [21067,0.0696], + [21069,0.0121], + [21071,0.0075], + [21073,0.0304], + [21075,0.007], + [21077,0.0522], + [21079,0.0223], + [21081,0.0265], + [21083,0.061], + [21085,0.0134], + [21087,0.006], + [21089,0.0104], + [21091,0.0146], + [21093,0.0559], + [21095,0.0086], + [21097,0.0225], + [21099,0.0173], + [21101,0.0236], + [21103,0.0321], + [21105,0.0134], + [21107,0.0195], + [21109,0.0001], + [21111,0.0499], + [21113,0.0321], + [21115,0.0037], + [21117,0.0301], + [21119,0.0093], + [21121,0.011], + [21123,0.0321], + [21125,0.0151], + [21127,0.0089], + [21129,0.0082], + [21131,0.0063], + [21133,0.0074], + [21135,0.0016], + [21137,0.0158], + [21139,0.0167], + [21141,0.027], + [21143,0.0123], + [21145,0.0236], + [21147,0.0338], + [21149,0.0129], + [21151,0.0231], + [21153,0.0098], + [21155,0.0255], + [21157,0.0145], + [21159,0.0186], + [21161,0.0073], + [21163,0.0381], + [21165,0.0086], + [21167,0.0267], + [21169,0.0148], + [21171,0.0299], + [21173,0.0265], + [21175,0.012], + [21177,0.0149], + [21179,0.0206], + [21181,0.0154], + [21183,0.0342], + [21185,0.0381], + [21187,0.0258], + [21189,0.0051], + [21191,0.0064], + [21193,0.0097], + [21195,0.009], + [21197,0.0155], + [21199,0.0241], + [21201,0.0222], + [21203,0.0084], + [21205,0.0195], + [21207,0.0358], + [21209,0.0431], + [21211,0.0911], + [21213,0.0223], + [21215,0.0197], + [21217,0.0229], + [21219,0.0381], + [21221,0.0199], + [21223,0.0285], + [21225,0.0188], + [21227,0.051], + [21229,0.043], + [21231,0.0308], + [21233,0.0517], + [21235,0.0118], + [21237,0.0028], + [21239,0.0656], + [22001,0.024], + [22003,0.0485], + [22005,0.0526], + [22007,0.0277], + [22009,0.0183], + [22011,0.0367], + [22013,0.0172], + [22015,0.0653], + [22017,0.0278], + [22019,0.0322], + [22021,0.0313], + [22023,0.0554], + [22025,0.0152], + [22027,0.0144], + [22029,0.0132], + [22031,0.0278], + [22033,0.04], + [22035,0.0052], + [22037,0.0151], + [22039,0.0344], + [22041,0.002], + [22043,0.0486], + [22045,0.0404], + [22047,0.0253], + [22049,0.0157], + [22051,0.1426], + [22053,0.0226], + [22055,0.0456], + [22057,0.0436], + [22059,0.0279], + [22061,0.0292], + [22063,0.0346], + [22065,0.0199], + [22067,0.0126], + [22069,0.0216], + [22071,0.0553], + [22073,0.0218], + [22075,0.0668], + [22077,0.0247], + [22079,0.03], + [22081,0.0195], + [22083,0.0207], + [22085,0.0381], + [22087,0.0989], + [22089,0.0581], + [22091,0.0023], + [22093,0.0156], + [22095,0.0579], + [22097,0.0201], + [22099,0.0281], + [22101,0.0684], + [22103,0.0542], + [22105,0.0409], + [22107,0.0182], + [22109,0.0504], + [22111,0.0466], + [22113,0.0328], + [22115,0.0936], + [22117,0.0209], + [22119,0.0183], + [22121,0.0301], + [22123,0.0324], + [22125,0.0152], + [22127,0.0192], + [23001,0.018], + [23003,0.0111], + [23005,0.0199], + [23007,0.0129], + [23009,0.0133], + [23011,0.0147], + [23013,0.0125], + [23015,0.0111], + [23017,0.0124], + [23019,0.0127], + [23021,0.0136], + [23023,0.0155], + [23025,0.0101], + [23027,0.0118], + [23029,0.0192], + [23031,0.0159], + [24001,0.0173], + [24003,0.0731], + [24005,0.0512], + [24009,0.0361], + [24011,0.0685], + [24013,0.0321], + [24015,0.0413], + [24017,0.0536], + [24019,0.0499], + [24021,0.0879], + [24023,0.0107], + [24025,0.0424], + [24027,0.0651], + [24029,0.0433], + [24031,0.1898], + [24033,0.1739], + [24035,0.0368], + [24037,0.0485], + [24039,0.0351], + [24041,0.0648], + [24043,0.0448], + [24045,0.0504], + [24047,0.0338], + [24510,0.0496], + [25001,0.0274], + [25003,0.0427], + [25005,0.0735], + [25007,0.0162], + [25009,0.1962], + [25011,0.0376], + [25013,0.2394], + [25015,0.0536], + [25017,0.0766], + [25019,0.0864], + [25021,0.0416], + [25023,0.0367], + [25025,0.2225], + [25027,0.1081], + [26001,0.0141], + [26003,0.0142], + [26005,0.0721], + [26007,0.0129], + [26009,0.0209], + [26011,0.0197], + [26013,0.0149], + [26015,0.027], + [26017,0.0515], + [26019,0.0239], + [26021,0.0521], + [26023,0.0446], + [26025,0.0499], + [26027,0.0365], + [26029,0.0179], + [26031,0.0133], + [26033,0.0177], + [26035,0.0187], + [26037,0.0445], + [26039,0.0184], + [26041,0.012], + [26043,0.0142], + [26045,0.0519], + [26047,0.0156], + [26049,0.0331], + [26051,0.0147], + [26053,0.0125], + [26055,0.0272], + [26057,0.0584], + [26059,0.022], + [26061,0.0149], + [26063,0.0226], + [26065,0.076], + [26067,0.0468], + [26069,0.0203], + [26071,0.0182], + [26073,0.038], + [26075,0.034], + [26077,0.0471], + [26079,0.018], + [26081,0.1028], + [26083,0.0066], + [26085,0.026], + [26087,0.0457], + [26089,0.0422], + [26091,0.0777], + [26093,0.0228], + [26095,0.0318], + [26097,0.0161], + [26099,0.025], + [26101,0.0289], + [26103,0.0144], + [26105,0.0447], + [26107,0.0214], + [26109,0.0166], + [26111,0.0258], + [26113,0.0268], + [26115,0.0345], + [26117,0.0339], + [26119,0.0126], + [26121,0.0545], + [26123,0.0577], + [26125,0.0386], + [26127,0.1452], + [26129,0.0198], + [26131,0.0135], + [26133,0.0172], + [26135,0.014], + [26137,0.0163], + [26139,0.0943], + [26141,0.0124], + [26143,0.0163], + [26145,0.0828], + [26147,0.0323], + [26149,0.075], + [26151,0.0365], + [26153,0.0096], + [26155,0.0285], + [26157,0.0325], + [26159,0.1119], + [26161,0.0454], + [26163,0.0572], + [26165,0.0183], + [27001,0.0128], + [27003,0.0423], + [27005,0.0189], + [27007,0.0222], + [27009,0.0216], + [27011,0.0141], + [27013,0.0324], + [27015,0.0408], + [27017,0.017], + [27019,0.041], + [27021,0.0198], + [27023,0.063], + [27025,0.0201], + [27027,0.0433], + [27029,0.0201], + [27031,0.0207], + [27033,0.0712], + [27035,0.0145], + [27037,0.0676], + [27039,0.0491], + [27041,0.0155], + [27043,0.0643], + [27045,0.0143], + [27047,0.095], + [27049,0.0321], + [27051,0.0211], + [27053,0.0686], + [27055,0.0098], + [27057,0.0199], + [27059,0.0184], + [27061,0.0132], + [27063,0.0339], + [27065,0.0155], + [27067,0.1189], + [27069,0.0208], + [27071,0.0016], + [27073,0.0211], + [27075,0.0145], + [27077,0.0174], + [27079,0.0574], + [27081,0.0173], + [27083,0.0622], + [27085,0.0575], + [27087,0.0384], + [27089,0.0422], + [27091,0.0413], + [27093,0.0375], + [27095,0.0224], + [27097,0.0158], + [27099,0.11], + [27101,0.0359], + [27103,0.0427], + [27105,0.2683], + [27107,0.0498], + [27109,0.0477], + [27111,0.0324], + [27113,0.0349], + [27115,0.028], + [27117,0.0586], + [27119,0.062], + [27121,0.0129], + [27123,0.0743], + [27125,0.0349], + [27127,0.0311], + [27129,0.0799], + [27131,0.0786], + [27133,0.0282], + [27135,0.0116], + [27137,0.0156], + [27139,0.0491], + [27141,0.025], + [27143,0.0857], + [27145,0.0319], + [27147,0.0746], + [27149,0.05], + [27151,0.0453], + [27153,0.0552], + [27155,0.0247], + [27157,0.0285], + [27159,0.0177], + [27161,0.0574], + [27163,0.0392], + [27165,0.2334], + [27167,0.007], + [27169,0.0278], + [27171,0.0277], + [27173,0.0434], + [28001,0.0844], + [28003,0.0302], + [28005,0.0023], + [28007,0.0201], + [28009,0.0246], + [28011,0.021], + [28013,0.0567], + [28015,0.0049], + [28017,0.0442], + [28019,0.0049], + [28021,0.0036], + [28023,0.0086], + [28025,0.0064], + [28027,0.0014], + [28029,0.0296], + [28031,0.024], + [28033,0.0476], + [28035,0.0304], + [28037,0.0084], + [28039,0.027], + [28041,0.0113], + [28043,0.0043], + [28045,0.0376], + [28047,0.0535], + [28049,0.015], + [28051,0.0027], + [28053,0.0286], + [28055,0.0116], + [28057,0.0148], + [28059,0.059], + [28061,0], + [28063,0.0012], + [28065,0.0034], + [28067,0.0427], + [28069,0.017], + [28071,0.0249], + [28073,0.0255], + [28075,0.0224], + [28077,0.0054], + [28079,0.0443], + [28081,0.0255], + [28083,0.0257], + [28085,0.0107], + [28087,0.0202], + [28089,0.0286], + [28091,0.0149], + [28093,0.0349], + [28095,0.0117], + [28097,0.0228], + [28099,0.0195], + [28101,0.0181], + [28103,0.0135], + [28105,0.0165], + [28107,0.0175], + [28109,0.0297], + [28111,0.0143], + [28113,0.0156], + [28115,0.0624], + [28117,0.0139], + [28119,0.013], + [28121,0.0265], + [28123,0.1081], + [28125,0.006], + [28127,0.005], + [28129,0.0164], + [28131,0.0192], + [28133,0.0161], + [28135,0.1495], + [28137,0.0252], + [28139,0.0467], + [28141,0.0293], + [28143,0.0075], + [28145,0.0424], + [28147,0.0059], + [28149,0.0059], + [28151,0.0145], + [28153,0.0064], + [28155,0.0147], + [28157,0.0029], + [28159,0.0116], + [28161,0.015], + [28163,0.0564], + [29001,0.0234], + [29003,0.023], + [29005,0.0124], + [29007,0.0293], + [29009,0.0895], + [29011,0.0251], + [29013,0.0207], + [29015,0.0189], + [29017,0.0121], + [29019,0.0328], + [29021,0.0638], + [29023,0.0201], + [29025,0.0208], + [29027,0.02], + [29029,0.027], + [29031,0.0228], + [29033,0.015], + [29035,0.0227], + [29037,0.0422], + [29039,0.0201], + [29041,0.0087], + [29043,0.028], + [29045,0.0051], + [29047,0.066], + [29049,0.02], + [29051,0.0276], + [29053,0.0178], + [29055,0.0188], + [29057,0.0199], + [29059,0.0194], + [29061,0.0149], + [29063,0.0224], + [29065,0.016], + [29067,0.0138], + [29069,0.0636], + [29071,0.0167], + [29073,0.013], + [29075,0.003], + [29077,0.0351], + [29079,0.0208], + [29081,0.0211], + [29083,0.0223], + [29085,0.0154], + [29087,0.0036], + [29089,0.0145], + [29091,0.0205], + [29093,0.0175], + [29095,0.0884], + [29097,0.0769], + [29099,0.0185], + [29101,0.0408], + [29103,0.0098], + [29105,0.0231], + [29107,0.0272], + [29109,0.0716], + [29111,0.0175], + [29113,0.0234], + [29115,0.0207], + [29117,0.0166], + [29119,0.1156], + [29121,0.0128], + [29123,0.0234], + [29125,0.0252], + [29127,0.0162], + [29129,0.0172], + [29131,0.0181], + [29133,0.0199], + [29135,0.0458], + [29137,0.0156], + [29139,0.0178], + [29141,0.0213], + [29143,0.0176], + [29145,0.0514], + [29147,0.016], + [29149,0.0163], + [29151,0.0078], + [29153,0.0172], + [29155,0.0243], + [29157,0.0213], + [29159,0.0857], + [29161,0.0242], + [29163,0.022], + [29165,0.0578], + [29167,0.0232], + [29169,0.1086], + [29171,0.0109], + [29173,0.0124], + [29175,0.0197], + [29177,0.0234], + [29179,0.014], + [29181,0.0128], + [29183,0.0316], + [29185,0.0104], + [29186,0.0108], + [29187,0.015], + [29189,0.0278], + [29195,0.097], + [29197,0.0072], + [29199,0.0029], + [29201,0.0216], + [29203,0.0181], + [29205,0.0171], + [29207,0.0165], + [29209,0.021], + [29211,0.1849], + [29213,0.0556], + [29215,0.0204], + [29217,0.0206], + [29219,0.0322], + [29221,0.0128], + [29223,0.0162], + [29225,0.0195], + [29227,0.0117], + [29229,0.0171], + [29510,0.039], + [30001,0.0417], + [30003,0.0559], + [30005,0.025], + [30007,0.0264], + [30009,0.0239], + [30011,0.003], + [30013,0.0423], + [30015,0.0227], + [30017,0.0316], + [30019,0.028], + [30021,0.03], + [30023,0.0327], + [30025,0.0178], + [30027,0.022], + [30029,0.0263], + [30031,0.0331], + [30033,0.0018], + [30035,0.0283], + [30037,0.087], + [30039,0.0215], + [30041,0.0348], + [30043,0.0231], + [30045,0.0234], + [30047,0.0427], + [30049,0.0308], + [30051,0.0094], + [30053,0.0273], + [30055,0.0324], + [30057,0.0335], + [30059,0.041], + [30061,0.0126], + [30063,0.0309], + [30065,0.0241], + [30067,0.0272], + [30069,0], + [30071,0.0234], + [30073,0.0192], + [30075,0.0248], + [30077,0.0207], + [30079,0.0128], + [30081,0.0334], + [30083,0.0521], + [30085,0.0327], + [30087,0.0477], + [30089,0.0268], + [30091,0.0255], + [30093,0.042], + [30095,0.0353], + [30097,0.0156], + [30099,0.0149], + [30101,0.0346], + [30103,0.0241], + [30105,0.0245], + [30107,0.0285], + [30109,0.0366], + [30111,0.0535], + [31001,0.0942], + [31003,0.0318], + [31005,0], + [31007,0.0783], + [31009,0], + [31011,0.0198], + [31013,0.1209], + [31015,0.0073], + [31017,0.0121], + [31019,0.0866], + [31021,0.0272], + [31023,0.0304], + [31025,0.0308], + [31027,0.0171], + [31029,0.1049], + [31031,0.0314], + [31033,0.0668], + [31035,0.0886], + [31037,0.4478], + [31039,0.0989], + [31041,0.0291], + [31043,0.3843], + [31045,0.0479], + [31047,0.3313], + [31049,0.0779], + [31051,0.1259], + [31053,0.1176], + [31055,0.1223], + [31057,0.1463], + [31059,0.0386], + [31061,0.0205], + [31063,0.0141], + [31065,0.0368], + [31067,0.0227], + [31069,0.0387], + [31071,0.0209], + [31073,0.0203], + [31075,0.0191], + [31077,0.0201], + [31079,0.2676], + [31081,0.0317], + [31083,0.0372], + [31085,0.0585], + [31087,0.0077], + [31089,0.0427], + [31091,0.0292], + [31093,0.0252], + [31095,0.0356], + [31097,0.0992], + [31099,0.058], + [31101,0.0675], + [31103,0.0111], + [31105,0.0879], + [31107,0.0258], + [31109,0.0673], + [31111,0.0825], + [31113,0.0294], + [31115,0], + [31117,0.0093], + [31119,0.1454], + [31121,0.0411], + [31123,0.154], + [31125,0.0252], + [31127,0.026], + [31129,0.0259], + [31131,0.076], + [31133,0.0181], + [31135,0.0382], + [31137,0.0545], + [31139,0.016], + [31141,0.1759], + [31143,0.0479], + [31145,0.0495], + [31147,0.0191], + [31149,0.0094], + [31151,0.2432], + [31153,0.0873], + [31155,0.0211], + [31157,0.2341], + [31159,0.0248], + [31161,0.0467], + [31163,0.0203], + [31165,0.0382], + [31167,0.0528], + [31169,0.0228], + [31171,0.0062], + [31173,0.0512], + [31175,0.028], + [31177,0.0282], + [31179,0.0555], + [31181,0.0467], + [31183,0.0071], + [31185,0.049], + [32001,0.1338], + [32003,0.3069], + [32005,0.1227], + [32007,0.2423], + [32009,0.1561], + [32011,0.0156], + [32013,0.2645], + [32015,0.2679], + [32017,0.0871], + [32019,0.1622], + [32021,0.1107], + [32023,0.1418], + [32027,0.2381], + [32029,0.0671], + [32031,0.2389], + [32033,0.1533], + [32510,0.2336], + [33001,0.0157], + [33003,0.0137], + [33005,0.0171], + [33007,0.0171], + [33009,0.0222], + [33011,0.0626], + [33013,0.0198], + [33015,0.0266], + [33017,0.0221], + [33019,0.0144], + [34001,0.1851], + [34003,0.1886], + [34005,0.0765], + [34007,0.1612], + [34009,0.0735], + [34011,0.2966], + [34013,0.2245], + [34015,0.0577], + [34017,0.4317], + [34019,0.0621], + [34021,0.1692], + [34023,0.2038], + [34025,0.1059], + [34027,0.13], + [34029,0.0903], + [34031,0.4053], + [34033,0.0827], + [34035,0.1437], + [34037,0.0751], + [34039,0.3072], + [34041,0.0862], + [35001,0.495], + [35003,0.1576], + [35005,0.5556], + [35006,0.3796], + [35007,0.4919], + [35009,0.4097], + [35011,0.4603], + [35013,0.677], + [35015,0.4751], + [35017,0.5], + [35019,0.8208], + [35021,0.3736], + [35023,0.5794], + [35025,0.5683], + [35027,0.3192], + [35028,0.1725], + [35029,0.6592], + [35031,0.1413], + [35033,0.7902], + [35035,0.3749], + [35037,0.4469], + [35039,0.7141], + [35041,0.4099], + [35043,0.3787], + [35045,0.1986], + [35047,0.7758], + [35049,0.5119], + [35051,0.2992], + [35053,0.497], + [35055,0.5676], + [35057,0.4208], + [35059,0.4127], + [35061,0.6], + [36001,0.0568], + [36003,0.0154], + [36005,0.5568], + [36007,0.0399], + [36009,0.0202], + [36011,0.0279], + [36013,0.072], + [36015,0.0297], + [36017,0.0215], + [36019,0.028], + [36021,0.0453], + [36023,0.0262], + [36025,0.0368], + [36027,0.1172], + [36029,0.0521], + [36031,0.0321], + [36033,0.0341], + [36035,0.0283], + [36037,0.0311], + [36039,0.0555], + [36041,0.0149], + [36043,0.0206], + [36045,0.0726], + [36047,0.1929], + [36049,0.0169], + [36051,0.0344], + [36053,0.0211], + [36055,0.0835], + [36057,0.1315], + [36059,0.1645], + [36061,0.2608], + [36063,0.0272], + [36065,0.0539], + [36067,0.0466], + [36069,0.0444], + [36071,0.1974], + [36073,0.0474], + [36075,0.0247], + [36077,0.0353], + [36079,0.1376], + [36081,0.2799], + [36083,0.0463], + [36085,0.1818], + [36087,0.1731], + [36089,0.0228], + [36091,0.0298], + [36093,0.0668], + [36095,0.0302], + [36097,0.0176], + [36099,0.0327], + [36101,0.0159], + [36103,0.1863], + [36105,0.1543], + [36107,0.0178], + [36109,0.0481], + [36111,0.0983], + [36113,0.0236], + [36115,0.0261], + [36117,0.0421], + [36119,0.24], + [36121,0.0327], + [36123,0.0216], + [37001,0.1232], + [37003,0.0461], + [37005,0.0945], + [37007,0.0377], + [37009,0.0517], + [37011,0.051], + [37013,0.0756], + [37015,0.0208], + [37017,0.0755], + [37019,0.0474], + [37021,0.0644], + [37023,0.0588], + [37025,0.1], + [37027,0.0509], + [37029,0.0269], + [37031,0.0422], + [37033,0.0375], + [37035,0.0933], + [37037,0.1255], + [37039,0.0296], + [37041,0.0363], + [37043,0.0326], + [37045,0.0331], + [37047,0.0511], + [37049,0.0713], + [37051,0.1122], + [37053,0.0364], + [37055,0.0712], + [37057,0.0687], + [37059,0.0653], + [37061,0.2174], + [37063,0.1346], + [37065,0.0433], + [37067,0.1257], + [37069,0.0809], + [37071,0.0662], + [37073,0.0071], + [37075,0.0114], + [37077,0.0761], + [37079,0.1488], + [37081,0.0773], + [37083,0.0274], + [37085,0.1227], + [37087,0.0374], + [37089,0.0995], + [37091,0.0366], + [37093,0.1283], + [37095,0.0839], + [37097,0.0736], + [37099,0.0549], + [37101,0.1333], + [37103,0.0449], + [37105,0.1929], + [37107,0.0753], + [37109,0.0703], + [37111,0.0603], + [37113,0.0681], + [37115,0.0249], + [37117,0.0372], + [37119,0.1285], + [37121,0.05], + [37123,0.1537], + [37125,0.0641], + [37127,0.067], + [37129,0.054], + [37131,0.0212], + [37133,0.1218], + [37135,0.0833], + [37137,0.0361], + [37139,0.0487], + [37141,0.0676], + [37143,0.0252], + [37145,0.0415], + [37147,0.0605], + [37149,0.0578], + [37151,0.1106], + [37153,0.0624], + [37155,0.0852], + [37157,0.0596], + [37159,0.0832], + [37161,0.0412], + [37163,0.1887], + [37165,0.0283], + [37167,0.0401], + [37169,0.0281], + [37171,0.1017], + [37173,0.0493], + [37175,0.0318], + [37177,0.0758], + [37179,0.1093], + [37181,0.0731], + [37183,0.1002], + [37185,0.0379], + [37187,0.0498], + [37189,0.0342], + [37191,0.1125], + [37193,0.0612], + [37195,0.1007], + [37197,0.1092], + [37199,0.0495], + [38001,0.0055], + [38003,0.0189], + [38005,0.009], + [38007,0.0407], + [38009,0.0217], + [38011,0.0511], + [38013,0.016], + [38015,0.0217], + [38017,0.0246], + [38019,0.0105], + [38021,0.0339], + [38023,0.0105], + [38025,0.0274], + [38027,0.0181], + [38029,0.003], + [38031,0.0133], + [38033,0.0169], + [38035,0.0399], + [38037,0.008], + [38039,0.0031], + [38041,0.0365], + [38043,0.0492], + [38045,0.0105], + [38047,0.016], + [38049,0.0229], + [38051,0.0216], + [38053,0.0703], + [38055,0.0227], + [38057,0.027], + [38059,0.0268], + [38061,0.0696], + [38063,0.0252], + [38065,0.0368], + [38067,0.0326], + [38069,0.0101], + [38071,0.0251], + [38073,0.0159], + [38075,0.0539], + [38077,0.0273], + [38079,0.0049], + [38081,0.0296], + [38083,0.0086], + [38085,0.0391], + [38087,0.0059], + [38089,0.0506], + [38091,0.0261], + [38093,0.0227], + [38095,0.0159], + [38097,0.0339], + [38099,0.1114], + [38101,0.0564], + [38103,0.0125], + [38105,0.0609], + [39001,0.0096], + [39003,0.0288], + [39005,0.0126], + [39007,0.0399], + [39009,0.0185], + [39011,0.0156], + [39013,0.0089], + [39015,0.0088], + [39017,0.0449], + [39019,0.0126], + [39021,0.015], + [39023,0.0317], + [39025,0.0179], + [39027,0.0159], + [39029,0.0156], + [39031,0.0099], + [39033,0.0154], + [39035,0.0559], + [39037,0.0147], + [39039,0.0964], + [39041,0.0245], + [39043,0.0418], + [39045,0.0203], + [39047,0.0197], + [39049,0.0522], + [39051,0.0844], + [39053,0.0131], + [39055,0.0136], + [39057,0.027], + [39059,0.0112], + [39061,0.0302], + [39063,0.0516], + [39065,0.0156], + [39067,0.009], + [39069,0.0746], + [39071,0.0094], + [39073,0.0058], + [39075,0.0089], + [39077,0.0622], + [39079,0.0101], + [39081,0.0134], + [39083,0.0143], + [39085,0.0405], + [39087,0.0093], + [39089,0.0174], + [39091,0.0145], + [39093,0.0952], + [39095,0.0682], + [39097,0.0186], + [39099,0.0556], + [39101,0.025], + [39103,0.0195], + [39105,0.0063], + [39107,0.018], + [39109,0.0156], + [39111,0.0052], + [39113,0.0272], + [39115,0.0087], + [39117,0.014], + [39119,0.0103], + [39121,0.0079], + [39123,0.0492], + [39125,0.0457], + [39127,0.008], + [39129,0.0135], + [39131,0.0099], + [39133,0.0169], + [39135,0.0077], + [39137,0.0599], + [39139,0.0177], + [39141,0.0117], + [39143,0.097], + [39145,0.0127], + [39147,0.0489], + [39149,0.0149], + [39151,0.0192], + [39153,0.0195], + [39155,0.0169], + [39157,0.0243], + [39159,0.0157], + [39161,0.0303], + [39163,0.0053], + [39165,0.0258], + [39167,0.0103], + [39169,0.0186], + [39171,0.0417], + [39173,0.0535], + [39175,0.0274], + [40001,0.0636], + [40003,0.0504], + [40005,0.0337], + [40007,0.2208], + [40009,0.1424], + [40011,0.0979], + [40013,0.0564], + [40015,0.121], + [40017,0.0827], + [40019,0.0683], + [40021,0.0686], + [40023,0.0401], + [40025,0.2085], + [40027,0.0818], + [40029,0.0441], + [40031,0.1268], + [40033,0.073], + [40035,0.0344], + [40037,0.0389], + [40039,0.1747], + [40041,0.0364], + [40043,0.0659], + [40045,0.0726], + [40047,0.1164], + [40049,0.0817], + [40051,0.0551], + [40053,0.0464], + [40055,0.11], + [40057,0.2792], + [40059,0.2225], + [40061,0.0416], + [40063,0.0506], + [40065,0.2331], + [40067,0.0995], + [40069,0.05], + [40071,0.0759], + [40073,0.1517], + [40075,0.1116], + [40077,0.0339], + [40079,0.0679], + [40081,0.0323], + [40083,0.0573], + [40085,0.1491], + [40087,0.0775], + [40089,0.0569], + [40091,0.026], + [40093,0.0924], + [40095,0.1684], + [40097,0.0333], + [40099,0.0599], + [40101,0.0587], + [40103,0.0348], + [40105,0.0287], + [40107,0.0386], + [40109,0.168], + [40111,0.0381], + [40113,0.0341], + [40115,0.0541], + [40117,0.0285], + [40119,0.0459], + [40121,0.0475], + [40123,0.0508], + [40125,0.0493], + [40127,0.0347], + [40129,0.0683], + [40131,0.0442], + [40133,0.0478], + [40135,0.0392], + [40137,0.0724], + [40139,0.4507], + [40141,0.2577], + [40143,0.1214], + [40145,0.0569], + [40147,0.0573], + [40149,0.0964], + [40151,0.0677], + [40153,0.1218], + [41001,0.0395], + [41003,0.0715], + [41005,0.0839], + [41007,0.0831], + [41009,0.0485], + [41011,0.0628], + [41013,0.0756], + [41015,0.0677], + [41017,0.0781], + [41019,0.0548], + [41021,0.0806], + [41023,0.0356], + [41025,0.0499], + [41027,0.3111], + [41029,0.1223], + [41031,0.198], + [41033,0.0714], + [41035,0.1231], + [41037,0.0786], + [41039,0.0843], + [41041,0.0885], + [41043,0.0866], + [41045,0.3313], + [41047,0.2602], + [41049,0.3508], + [41051,0.1128], + [41053,0.134], + [41055,0.0446], + [41057,0.1031], + [41059,0.2598], + [41061,0.0458], + [41063,0.0271], + [41065,0.1737], + [41067,0.1643], + [41069,0.0608], + [41071,0.1572], + [42001,0.0678], + [42003,0.0196], + [42005,0.0071], + [42007,0.0148], + [42009,0.0114], + [42011,0.1959], + [42013,0.0118], + [42015,0.0143], + [42017,0.0501], + [42019,0.0139], + [42021,0.0154], + [42023,0.0082], + [42025,0.0426], + [42027,0.0284], + [42029,0.0724], + [42031,0.008], + [42033,0.0289], + [42035,0.0142], + [42037,0.0259], + [42039,0.012], + [42041,0.0354], + [42043,0.0853], + [42045,0.0357], + [42047,0.0076], + [42049,0.0401], + [42051,0.0108], + [42053,0.0698], + [42055,0.0527], + [42057,0.0119], + [42059,0.0148], + [42061,0.0186], + [42063,0.0127], + [42065,0.0083], + [42067,0.0325], + [42069,0.0669], + [42071,0.1003], + [42073,0.013], + [42075,0.122], + [42077,0.2276], + [42079,0.1011], + [42081,0.0191], + [42083,0.021], + [42085,0.0139], + [42087,0.0144], + [42089,0.1493], + [42091,0.0488], + [42093,0.0254], + [42095,0.1241], + [42097,0.0316], + [42099,0.0176], + [42101,0.1413], + [42103,0.1034], + [42105,0.0124], + [42107,0.0384], + [42109,0.0218], + [42111,0.0142], + [42113,0.0178], + [42115,0.0167], + [42117,0.0124], + [42119,0.0568], + [42121,0.0109], + [42123,0.0101], + [42125,0.0157], + [42127,0.0415], + [42129,0.0109], + [42131,0.0179], + [42133,0.0693], + [44001,0.0272], + [44003,0.0437], + [44005,0.0556], + [44007,0.2162], + [44009,0.0299], + [45001,0.0134], + [45003,0.055], + [45005,0.0306], + [45007,0.0351], + [45009,0.0194], + [45011,0.023], + [45013,0.1126], + [45015,0.0628], + [45017,0.0358], + [45019,0.0503], + [45021,0.0411], + [45023,0.0191], + [45025,0.0419], + [45027,0.03], + [45029,0.0308], + [45031,0.0192], + [45033,0.0267], + [45035,0.0504], + [45037,0.0565], + [45039,0.02], + [45041,0.0248], + [45043,0.0301], + [45045,0.0884], + [45047,0.0584], + [45049,0.0398], + [45051,0.0599], + [45053,0.1324], + [45055,0.0408], + [45057,0.0504], + [45059,0.0448], + [45061,0.0234], + [45063,0.0582], + [45065,0.0088], + [45067,0.027], + [45069,0.033], + [45071,0.0731], + [45073,0.0514], + [45075,0.021], + [45077,0.0351], + [45079,0.0504], + [45081,0.154], + [45083,0.0649], + [45085,0.0381], + [45087,0.0135], + [45089,0.0233], + [45091,0.0515], + [46003,0.0668], + [46005,0.0905], + [46007,0.0727], + [46009,0.0297], + [46011,0.026], + [46013,0.0246], + [46015,0.0254], + [46017,0.0239], + [46019,0.035], + [46021,0.0014], + [46023,0.0307], + [46025,0.0181], + [46027,0.0274], + [46029,0.021], + [46031,0.0074], + [46033,0.0304], + [46035,0.0245], + [46037,0.0201], + [46039,0.0276], + [46041,0.0131], + [46043,0.0058], + [46045,0.0171], + [46047,0.0395], + [46049,0.0116], + [46051,0.0182], + [46053,0.0147], + [46055,0.0053], + [46057,0.0367], + [46059,0.0073], + [46061,0], + [46063,0.018], + [46065,0.0295], + [46067,0.0188], + [46069,0.008], + [46071,0.007], + [46073,0.0221], + [46075,0], + [46077,0.0214], + [46079,0.0232], + [46081,0.0316], + [46083,0.0188], + [46085,0.0219], + [46087,0.0316], + [46089,0.0216], + [46091,0.074], + [46093,0.0408], + [46095,0.0519], + [46097,0.0208], + [46099,0.0466], + [46101,0.0365], + [46102,null], + [46103,0.0481], + [46105,0.0159], + [46107,0.0229], + [46109,0.028], + [46111,0.0296], + [46115,0.0185], + [46117,0.0107], + [46119,0.0094], + [46121,0.0422], + [46123,0.0033], + [46125,0.0209], + [46127,0.0295], + [46129,0.0196], + [46135,0.0371], + [46137,0.0039], + [47001,0.0266], + [47003,0.118], + [47005,0.022], + [47007,0.0214], + [47009,0.0313], + [47011,0.0582], + [47013,0.0122], + [47015,0.0197], + [47017,0.0243], + [47019,0.0172], + [47021,0.0273], + [47023,0.0242], + [47025,0.0119], + [47027,0.0156], + [47029,0.022], + [47031,0.0409], + [47033,0.1012], + [47035,0.0282], + [47037,0.1007], + [47039,0.0319], + [47041,0.0759], + [47043,0.0331], + [47045,0.0327], + [47047,0.0248], + [47049,0.0142], + [47051,0.0317], + [47053,0.0256], + [47055,0.0199], + [47057,0.0304], + [47059,0.0271], + [47061,0.0117], + [47063,0.1145], + [47065,0.0527], + [47067,0.0089], + [47069,0.0169], + [47071,0.0231], + [47073,0.014], + [47075,0.0428], + [47077,0.0222], + [47079,0.0234], + [47081,0.0229], + [47083,0.0076], + [47085,0.0229], + [47087,0.019], + [47089,0.0347], + [47091,0.0188], + [47093,0.0398], + [47095,0.0216], + [47097,0.0237], + [47099,0.0199], + [47101,0.022], + [47103,0.0318], + [47105,0.0817], + [47107,0.0368], + [47109,0.0198], + [47111,0.0511], + [47113,0.0365], + [47115,0.0171], + [47117,0.0494], + [47119,0.0542], + [47121,0.015], + [47123,0.0421], + [47125,0.0972], + [47127,0.0017], + [47129,0.0122], + [47131,0.0396], + [47133,0.0129], + [47135,0.0228], + [47137,0.0087], + [47139,0.0186], + [47141,0.0601], + [47143,0.0462], + [47145,0.017], + [47147,0.0642], + [47149,0.0744], + [47151,0.008], + [47153,0.0351], + [47155,0.0565], + [47157,0.061], + [47159,0.0252], + [47161,0.0258], + [47163,0.0177], + [47165,0.0453], + [47167,0.0265], + [47169,0.0112], + [47171,0.0441], + [47173,0.0151], + [47175,0.0093], + [47177,0.0872], + [47179,0.0327], + [47181,0.0191], + [47183,0.0228], + [47185,0.0231], + [47187,0.0468], + [47189,0.0384], + [48001,0.1728], + [48003,0.554], + [48005,0.2152], + [48007,0.2704], + [48009,0.0831], + [48011,0.0995], + [48013,0.6353], + [48015,0.2594], + [48017,0.6265], + [48019,0.18], + [48021,0.3597], + [48023,0.1013], + [48025,0.5823], + [48027,0.2403], + [48029,0.5978], + [48031,0.1911], + [48033,0.0764], + [48035,0.1757], + [48037,0.074], + [48039,0.2969], + [48041,0.2506], + [48043,0.4424], + [48045,0.3224], + [48047,0.9411], + [48049,0.2149], + [48051,0.201], + [48053,0.219], + [48055,0.5065], + [48057,0.4813], + [48059,0.0914], + [48061,0.893], + [48063,0.2395], + [48065,0.0971], + [48067,0.0434], + [48069,0.6386], + [48071,0.2137], + [48073,0.2249], + [48075,0.2174], + [48077,0.0566], + [48079,0.5703], + [48081,0.2106], + [48083,0.1739], + [48085,0.1508], + [48087,0.3126], + [48089,0.2891], + [48091,0.2677], + [48093,0.2725], + [48095,0.5303], + [48097,0.1734], + [48099,0.1775], + [48101,0.3271], + [48103,0.6278], + [48105,0.6614], + [48107,0.554], + [48109,0.8068], + [48111,0.438], + [48113,0.3963], + [48115,0.5643], + [48117,0.7164], + [48119,0.069], + [48121,0.1911], + [48123,0.3449], + [48125,0.2761], + [48127,0.8651], + [48129,0.1063], + [48131,0.893], + [48133,0.1599], + [48135,0.5873], + [48137,0.5689], + [48139,0.2547], + [48141,0.8219], + [48143,0.2057], + [48145,0.2278], + [48147,0.106], + [48149,0.2042], + [48151,0.2983], + [48153,0.5779], + [48155,0.2164], + [48157,0.2417], + [48159,0.139], + [48161,0.1472], + [48163,0.7852], + [48165,0.4056], + [48167,0.2391], + [48169,0.54], + [48171,0.2255], + [48173,0.4056], + [48175,0.3562], + [48177,0.5007], + [48179,0.2792], + [48181,0.1268], + [48183,0.1819], + [48185,0.2364], + [48187,0.3732], + [48189,0.5877], + [48191,0.3417], + [48193,0.1201], + [48195,0.4644], + [48197,0.213], + [48199,0.0536], + [48201,0.4222], + [48203,0.1271], + [48205,0.2623], + [48207,0.2764], + [48209,0.3778], + [48211,0.3519], + [48213,0.1213], + [48215,0.9181], + [48217,0.1999], + [48219,0.4693], + [48221,0.1198], + [48223,0.1631], + [48225,0.1067], + [48227,0.4119], + [48229,0.7836], + [48231,0.1532], + [48233,0.2252], + [48235,0.2286], + [48237,0.1628], + [48239,0.3226], + [48241,0.0647], + [48243,0.3623], + [48245,0.1953], + [48247,0.9384], + [48249,0.8023], + [48251,0.2027], + [48253,0.2716], + [48255,0.5292], + [48257,0.1987], + [48259,0.2304], + [48261,0.8848], + [48263,0.2162], + [48265,0.2613], + [48267,0.2367], + [48269,0.2664], + [48271,0.6183], + [48273,0.7235], + [48275,0.3344], + [48277,0.0747], + [48279,0.5496], + [48281,0.1922], + [48283,0.7991], + [48285,0.1809], + [48287,0.2324], + [48289,0.1418], + [48291,0.2189], + [48293,0.2127], + [48295,0.2993], + [48297,0.3877], + [48299,0.0982], + [48301,0.1622], + [48303,0.3448], + [48305,0.4716], + [48307,0.3157], + [48309,0.2564], + [48311,0.505], + [48313,0.2242], + [48315,0.0389], + [48317,0.4507], + [48319,0.2428], + [48321,0.4145], + [48323,0.953], + [48325,0.5126], + [48327,0.3731], + [48329,0.4323], + [48331,0.2576], + [48333,0.1825], + [48335,0.3928], + [48337,0.1068], + [48339,0.2297], + [48341,0.5414], + [48343,0.0916], + [48345,0.1634], + [48347,0.1891], + [48349,0.2622], + [48351,0.0345], + [48353,0.364], + [48355,0.6299], + [48357,0.5297], + [48359,0.1546], + [48361,0.0709], + [48363,0.1971], + [48365,0.0856], + [48367,0.1148], + [48369,0.6242], + [48371,0.6848], + [48373,0.1479], + [48375,0.3758], + [48377,0.8141], + [48379,0.0865], + [48381,0.2016], + [48383,0.7015], + [48385,0.1977], + [48387,0.0726], + [48389,0.7502], + [48391,0.4972], + [48393,0.0742], + [48395,0.2022], + [48397,0.1705], + [48399,0.3384], + [48401,0.1614], + [48403,0.0405], + [48405,0.0695], + [48407,0.1251], + [48409,0.5684], + [48411,0.2972], + [48413,0.5183], + [48415,0.3973], + [48417,0.1168], + [48419,0.1783], + [48421,0.4327], + [48423,0.1895], + [48425,0.1905], + [48427,0.9918], + [48429,0.2324], + [48431,0.4083], + [48433,0.2269], + [48435,0.5942], + [48437,0.4314], + [48439,0.2818], + [48441,0.238], + [48443,0.5631], + [48445,0.5377], + [48447,0.1583], + [48449,0.4209], + [48451,0.3884], + [48453,0.3386], + [48455,0.093], + [48457,0.0729], + [48459,0.0806], + [48461,0.4973], + [48463,0.7092], + [48465,0.8138], + [48467,0.1028], + [48469,0.4604], + [48471,0.1777], + [48473,0.2937], + [48475,0.5219], + [48477,0.155], + [48479,0.955], + [48481,0.4027], + [48483,0.2652], + [48485,0.1853], + [48487,0.286], + [48489,0.8795], + [48491,0.2408], + [48493,0.3917], + [48495,0.5939], + [48497,0.1875], + [48499,0.0962], + [48501,0.6504], + [48503,0.1807], + [48505,0.9407], + [48507,0.936], + [49001,0.1091], + [49003,0.0912], + [49005,0.1052], + [49007,0.132], + [49009,0.0328], + [49011,0.0923], + [49013,0.0811], + [49015,0.0622], + [49017,0.0562], + [49019,0.1001], + [49021,0.0846], + [49023,0.0455], + [49025,0.0451], + [49027,0.1299], + [49029,0.0263], + [49031,0.036], + [49033,0.0893], + [49035,0.1791], + [49037,0.0532], + [49039,0.0954], + [49041,0.0496], + [49043,0.1138], + [49045,0.1203], + [49047,0.0825], + [49049,0.1137], + [49051,0.1351], + [49053,0.1006], + [49055,0.0537], + [49057,0.1787], + [50001,0.0216], + [50003,0.0175], + [50005,0.015], + [50007,0.022], + [50009,0.0134], + [50011,0.0144], + [50013,0.0178], + [50015,0.0162], + [50017,0.0134], + [50019,0.0136], + [50021,0.0137], + [50023,0.0185], + [50025,0.0219], + [50027,0.015], + [51001,0.0883], + [51003,0.057], + [51005,0.0143], + [51007,0.0111], + [51009,0.0226], + [51011,0.0127], + [51013,0.1555], + [51015,0.0254], + [51017,0.0565], + [51019,0.0205], + [51021,0.0051], + [51023,0.0157], + [51025,0.021], + [51027,0.0027], + [51029,0.0235], + [51031,0.0214], + [51033,0.0431], + [51035,0.0306], + [51036,0.0179], + [51037,0.0205], + [51041,0.0825], + [51043,0.0478], + [51045,0.0002], + [51047,0.0969], + [51049,0.0014], + [51051,0.0082], + [51053,0.0319], + [51057,0.0341], + [51059,0.1616], + [51061,0.0752], + [51063,0.0282], + [51065,0.0327], + [51067,0.0269], + [51069,0.0778], + [51071,0.0161], + [51073,0.0328], + [51075,0.0256], + [51077,0.0306], + [51079,0.0568], + [51081,0.0393], + [51083,0.0199], + [51085,0.028], + [51087,0.0542], + [51089,0.0521], + [51091,0], + [51093,0.0281], + [51095,0.0544], + [51097,0.0319], + [51099,0.0465], + [51101,0.0079], + [51103,0.0173], + [51105,0.0201], + [51107,0.1346], + [51109,0.0265], + [51111,0.0428], + [51113,0.024], + [51115,0.0068], + [51117,0.0268], + [51119,0.0051], + [51121,0.0305], + [51125,0.0391], + [51127,0.0291], + [51131,0.084], + [51133,0.0048], + [51135,0.0407], + [51137,0.0455], + [51139,0.0187], + [51141,0.028], + [51143,0.0249], + [51145,0.0202], + [51147,0.0376], + [51149,0.0756], + [51153,0.2242], + [51155,0.0162], + [51157,0.0355], + [51159,0.0664], + [51161,0.0284], + [51163,0.0164], + [51165,0.0648], + [51167,0.0127], + [51169,0.0129], + [51171,0.0693], + [51173,0.0199], + [51175,0.015], + [51177,0.0899], + [51179,0.117], + [51181,0.0082], + [51183,0.0285], + [51185,0.0092], + [51187,0.0416], + [51191,0.0148], + [51193,0.0617], + [51195,0.0122], + [51197,0.0114], + [51199,0.0598], + [51510,0.1674], + [51520,0.0054], + [51530,0.0071], + [51540,0.0523], + [51550,0.0561], + [51570,0.0552], + [51580,0.0204], + [51590,0.0388], + [51595,0.0566], + [51600,0.169], + [51610,0.1065], + [51620,0.0071], + [51630,0.1069], + [51640,0.1469], + [51650,0.0542], + [51660,0.187], + [51670,0.0732], + [51678,0.0482], + [51680,0.0366], + [51683,0.3499], + [51685,0.3776], + [51690,0.0505], + [51700,0.0864], + [51710,0.0762], + [51720,0.0087], + [51730,0.0466], + [51735,0.0239], + [51740,0.0407], + [51750,0.0288], + [51760,0.0649], + [51770,0.0604], + [51775,0.0319], + [51790,0.0285], + [51800,0.0401], + [51810,0.0783], + [51820,0.0716], + [51830,0.0767], + [51840,0.1689], + [53001,0.6226], + [53003,0.0365], + [53005,0.2085], + [53007,0.2753], + [53009,0.0602], + [53011,0.09], + [53013,0.0743], + [53015,0.0863], + [53017,0.3092], + [53019,0.0429], + [53021,0.5248], + [53023,0.0238], + [53025,0.407], + [53027,0.0977], + [53029,0.0714], + [53031,0.0348], + [53033,0.0947], + [53035,0.0732], + [53037,0.0864], + [53039,0.1212], + [53041,0.0981], + [53043,0.0312], + [53045,0.0925], + [53047,0.1935], + [53049,0.092], + [53051,0.0357], + [53053,0.1038], + [53055,0.06], + [53057,0.1795], + [53059,0.0596], + [53061,0.0982], + [53063,0.0537], + [53065,0.0354], + [53067,0.0851], + [53069,0.0577], + [53071,0.211], + [53073,0.0902], + [53075,0.0593], + [53077,0.4836], + [54001,0.0089], + [54003,0.0402], + [54005,0.0057], + [54007,0.01], + [54009,0.0089], + [54011,0.0138], + [54013,0.0126], + [54015,0.0027], + [54017,0.0043], + [54019,0.0108], + [54021,0.0414], + [54023,0.0097], + [54025,0.0173], + [54027,0.0133], + [54029,0.0143], + [54031,0.0425], + [54033,0.0155], + [54035,0.0043], + [54037,0.0534], + [54039,0.0106], + [54041,0.0127], + [54043,0.0061], + [54045,0.0084], + [54047,0.0156], + [54049,0.012], + [54051,0.0099], + [54053,0.0065], + [54055,0.0106], + [54057,0.0087], + [54059,0.0002], + [54061,0.0208], + [54063,0.0125], + [54065,0.0143], + [54067,0.0057], + [54069,0.0104], + [54071,0.0109], + [54073,0.0074], + [54075,0.0155], + [54077,0.0215], + [54079,0.0111], + [54081,0.0157], + [54083,0.0086], + [54085,0.0034], + [54087,0.0099], + [54089,0.0125], + [54091,0.0045], + [54093,0.0068], + [54095,0.0026], + [54097,0.0125], + [54099,0.0063], + [54101,0], + [54103,0.0049], + [54105,0.009], + [54107,0.0106], + [54109,0.0025], + [55001,0.0384], + [55003,0.0264], + [55005,0.0241], + [55007,0.0174], + [55009,0.0832], + [55011,0.0218], + [55013,0.0167], + [55015,0.0407], + [55017,0.0166], + [55019,0.0439], + [55021,0.0312], + [55023,0.0131], + [55025,0.0631], + [55027,0.0461], + [55029,0.0286], + [55031,0.0151], + [55033,0.0181], + [55035,0.0233], + [55037,0.0087], + [55039,0.0497], + [55041,0.0217], + [55043,0.0153], + [55045,0.0302], + [55047,0.0462], + [55049,0.0171], + [55051,0.0118], + [55053,0.0322], + [55055,0.0696], + [55057,0.0296], + [55059,0.1272], + [55061,0.0275], + [55063,0.0179], + [55065,0.0361], + [55067,0.0186], + [55069,0.0144], + [55071,0.037], + [55073,0.0268], + [55075,0.0155], + [55077,0.0315], + [55078,0.0599], + [55079,0.1458], + [55081,0.0415], + [55083,0.0171], + [55085,0.0143], + [55087,0.0418], + [55089,0.0277], + [55091,0.0172], + [55093,0.0193], + [55095,0.0187], + [55097,0.0304], + [55099,0.0163], + [55101,0.1269], + [55103,0.0218], + [55105,0.0842], + [55107,0.0177], + [55109,0.0226], + [55111,0.0483], + [55113,0.0247], + [55115,0.0262], + [55117,0.0616], + [55119,0.0181], + [55121,0.0761], + [55123,0.0157], + [55125,0.0221], + [55127,0.1105], + [55129,0.0171], + [55131,0.0308], + [55133,0.0459], + [55135,0.03], + [55137,0.064], + [55139,0.0392], + [55141,0.028], + [56001,0.093], + [56003,0.0877], + [56005,0.0842], + [56007,0.1792], + [56009,0.0782], + [56011,0.0234], + [56013,0.0678], + [56015,0.1056], + [56017,0.0194], + [56019,0.0213], + [56021,0.1426], + [56023,0.0448], + [56025,0.0823], + [56027,0.0432], + [56029,0.0574], + [56031,0.0779], + [56033,0.0421], + [56035,0.0728], + [56037,0.1601], + [56039,0.15], + [56041,0.0907], + [56043,0.1424], + [56045,0.0145] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-hispanic-2019.json b/data/regional/united-states/demographics/race/us-race-hispanic-2019.json new file mode 100644 index 0000000..5c1f465 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-hispanic-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Hispanic Population", + "description" : "Percent of the population that is hispanic.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.hispanic.2019"], + [1001,0.028], + [1003,0.046], + [1005,0.044], + [1007,0.026], + [1009,0.093], + [1011,0.026], + [1013,0.014], + [1015,0.038], + [1017,0.024], + [1019,0.016], + [1021,0.078], + [1023,0.004], + [1025,0.003], + [1027,0.031], + [1029,0.025], + [1031,0.073], + [1033,0.028], + [1035,0.007], + [1037,0.01], + [1039,0.017], + [1041,0.008], + [1043,0.044], + [1045,0.065], + [1047,0.011], + [1049,0.146], + [1051,0.03], + [1053,0.023], + [1055,0.039], + [1057,0.018], + [1059,0.172], + [1061,0.04], + [1063,0.017], + [1065,0], + [1067,0.026], + [1069,0.033], + [1071,0.029], + [1073,0.039], + [1075,0.016], + [1077,0.027], + [1079,0.022], + [1081,0.037], + [1083,0.06], + [1085,0.005], + [1087,0.008], + [1089,0.049], + [1091,0.01], + [1093,0.026], + [1095,0.14], + [1097,0.029], + [1099,0.004], + [1101,0.035], + [1103,0.084], + [1105,0.012], + [1107,0.049], + [1109,0.023], + [1111,0.029], + [1113,0.055], + [1115,0.024], + [1117,0.057], + [1119,0.005], + [1121,0.023], + [1123,0.024], + [1125,0.037], + [1127,0.025], + [1129,0.015], + [1131,0.005], + [1133,0.032], + [2013,0.09], + [2016,0.141], + [2020,0.092], + [2050,0.026], + [2060,0.037], + [2068,0.003], + [2070,0.037], + [2090,0.08], + [2100,0.045], + [2105,0.068], + [2110,0.068], + [2122,0.042], + [2130,0.053], + [2150,0.089], + [2158,0.011], + [2164,0.001], + [2170,0.049], + [2180,0.027], + [2185,0.02], + [2188,0.015], + [2195,0.117], + [2198,0.039], + [2220,0.068], + [2230,0.057], + [2240,0.061], + [2261,0.052], + [2275,0.05], + [2282,0.077], + [2290,0.027], + [4001,0.063], + [4003,0.355], + [4005,0.141], + [4007,0.187], + [4009,0.33], + [4011,0.468], + [4012,0.276], + [4013,0.31], + [4015,0.164], + [4017,0.114], + [4019,0.372], + [4021,0.302], + [4023,0.835], + [4025,0.145], + [4027,0.638], + [5001,0.032], + [5003,0.054], + [5005,0.024], + [5007,0.166], + [5009,0.025], + [5011,0.154], + [5013,0.04], + [5015,0.15], + [5017,0.055], + [5019,0.047], + [5021,0.021], + [5023,0.024], + [5025,0.012], + [5027,0.027], + [5029,0.039], + [5031,0.051], + [5033,0.077], + [5035,0.026], + [5037,0.01], + [5039,0.013], + [5041,0.061], + [5043,0.034], + [5045,0.041], + [5047,0.03], + [5049,0.016], + [5051,0.056], + [5053,0.027], + [5055,0.029], + [5057,0.128], + [5059,0.035], + [5061,0.125], + [5063,0.063], + [5065,0.023], + [5067,0.029], + [5069,0.021], + [5071,0.139], + [5073,0.027], + [5075,0.015], + [5077,0.025], + [5079,0.039], + [5081,0.015], + [5083,0.03], + [5085,0.045], + [5087,0.057], + [5089,0.023], + [5091,0.033], + [5093,0.041], + [5095,0.006], + [5097,0.043], + [5099,0], + [5101,0.004], + [5103,0.023], + [5105,0.029], + [5107,0.019], + [5109,0.065], + [5111,0.03], + [5113,0.066], + [5115,0.09], + [5117,0.017], + [5119,0.062], + [5121,0.021], + [5123,0.052], + [5125,0.048], + [5127,0.077], + [5129,0.024], + [5131,0.142], + [5133,0.334], + [5135,0.023], + [5137,0.019], + [5139,0.04], + [5141,0.031], + [5143,0.168], + [5145,0.043], + [5147,0.005], + [5149,0.202], + [6001,0.224], + [6003,0.125], + [6005,0.139], + [6007,0.163], + [6009,0.121], + [6011,0.594], + [6013,0.256], + [6015,0.197], + [6017,0.128], + [6019,0.531], + [6021,0.418], + [6023,0.116], + [6025,0.842], + [6027,0.224], + [6029,0.533], + [6031,0.545], + [6033,0.206], + [6035,0.19], + [6037,0.485], + [6039,0.578], + [6041,0.16], + [6043,0.113], + [6045,0.251], + [6047,0.596], + [6049,0.145], + [6051,0.27], + [6053,0.587], + [6055,0.341], + [6057,0.094], + [6059,0.341], + [6061,0.14], + [6063,0.089], + [6065,0.489], + [6067,0.232], + [6069,0.598], + [6071,0.533], + [6073,0.337], + [6075,0.152], + [6077,0.414], + [6079,0.225], + [6081,0.244], + [6083,0.454], + [6085,0.255], + [6087,0.336], + [6089,0.1], + [6091,0.107], + [6093,0.126], + [6095,0.265], + [6097,0.267], + [6099,0.463], + [6101,0.31], + [6103,0.25], + [6105,0.073], + [6107,0.646], + [6109,0.122], + [6111,0.427], + [6113,0.316], + [6115,0.282], + [8001,0.4], + [8003,0.468], + [8005,0.192], + [8007,0.184], + [8009,0.11], + [8011,0.321], + [8013,0.139], + [8014,0.124], + [8015,0.1], + [8017,0.171], + [8019,0.07], + [8021,0.524], + [8023,0.619], + [8025,0.319], + [8027,0.092], + [8029,0.152], + [8031,0.299], + [8033,0.071], + [8035,0.087], + [8037,0.296], + [8039,0.07], + [8041,0.171], + [8043,0.133], + [8045,0.284], + [8047,0.084], + [8049,0.088], + [8051,0.094], + [8053,0.057], + [8055,0.343], + [8057,0.174], + [8059,0.154], + [8061,0.048], + [8063,0.191], + [8065,0.324], + [8067,0.128], + [8069,0.115], + [8071,0.415], + [8073,0.225], + [8075,0.168], + [8077,0.145], + [8079,0.096], + [8081,0.156], + [8083,0.125], + [8085,0.206], + [8087,0.361], + [8089,0.419], + [8091,0.02], + [8093,0.061], + [8095,0.239], + [8097,0.101], + [8099,0.38], + [8101,0.43], + [8103,0.103], + [8105,0.444], + [8107,0.07], + [8109,0.363], + [8111,0.085], + [8113,0.107], + [8115,0.134], + [8117,0.143], + [8119,0.066], + [8121,0.1], + [8123,0.294], + [8125,0.234], + [9001,0.197], + [9003,0.18], + [9005,0.063], + [9007,0.062], + [9009,0.181], + [9011,0.106], + [9013,0.055], + [9015,0.118], + [10001,0.071], + [10003,0.099], + [10005,0.092], + [11001,0.11], + [12001,0.099], + [12003,0.026], + [12005,0.065], + [12007,0.042], + [12009,0.103], + [12011,0.298], + [12013,0.058], + [12015,0.073], + [12017,0.057], + [12019,0.099], + [12021,0.279], + [12023,0.063], + [12027,0.316], + [12029,0.041], + [12031,0.097], + [12033,0.057], + [12035,0.104], + [12037,0.055], + [12039,0.104], + [12041,0.058], + [12043,0.213], + [12045,0.044], + [12047,0.094], + [12049,0.436], + [12051,0.537], + [12053,0.135], + [12055,0.201], + [12057,0.287], + [12059,0.028], + [12061,0.124], + [12063,0.049], + [12065,0.041], + [12067,0.157], + [12069,0.156], + [12071,0.214], + [12073,0.064], + [12075,0.084], + [12077,0.047], + [12079,0.055], + [12081,0.164], + [12083,0.132], + [12085,0.136], + [12086,0.685], + [12087,0.243], + [12089,0.043], + [12091,0.093], + [12093,0.255], + [12095,0.316], + [12097,0.541], + [12099,0.224], + [12101,0.152], + [12103,0.097], + [12105,0.225], + [12107,0.1], + [12109,0.07], + [12111,0.19], + [12113,0.056], + [12115,0.092], + [12117,0.214], + [12119,0.057], + [12121,0.093], + [12123,0.064], + [12125,0.056], + [12127,0.139], + [12129,0.037], + [12131,0.062], + [12133,0.037], + [13001,0.099], + [13003,0.249], + [13005,0.083], + [13007,0.055], + [13009,0.023], + [13011,0.069], + [13013,0.109], + [13015,0.086], + [13017,0.061], + [13019,0.051], + [13021,0.033], + [13023,0.03], + [13025,0.022], + [13027,0.059], + [13029,0.071], + [13031,0.04], + [13033,0.032], + [13035,0.032], + [13037,0.047], + [13039,0.067], + [13043,0.118], + [13045,0.069], + [13047,0.03], + [13049,0.084], + [13051,0.064], + [13053,0.159], + [13055,0.052], + [13057,0.105], + [13059,0.108], + [13061,0.004], + [13063,0.132], + [13065,0.042], + [13067,0.13], + [13069,0.117], + [13071,0.192], + [13073,0.067], + [13075,0.058], + [13077,0.07], + [13079,0.033], + [13081,0.034], + [13083,0.023], + [13085,0.047], + [13087,0.061], + [13089,0.085], + [13091,0.035], + [13093,0.069], + [13095,0.029], + [13097,0.097], + [13099,0.008], + [13101,0.273], + [13103,0.044], + [13105,0.057], + [13107,0.045], + [13109,0.117], + [13111,0.024], + [13113,0.072], + [13115,0.111], + [13117,0.095], + [13119,0.046], + [13121,0.072], + [13123,0.116], + [13125,0.012], + [13127,0.066], + [13129,0.158], + [13131,0.115], + [13133,0.06], + [13135,0.212], + [13137,0.148], + [13139,0.284], + [13141,0.017], + [13143,0.017], + [13145,0.036], + [13147,0.036], + [13149,0.027], + [13151,0.068], + [13153,0.065], + [13155,0.038], + [13157,0.077], + [13159,0.039], + [13161,0.121], + [13163,0.038], + [13165,0.082], + [13167,0.025], + [13169,0.017], + [13171,0.025], + [13173,0.057], + [13175,0.027], + [13177,0.03], + [13179,0.126], + [13181,0.018], + [13183,0.113], + [13185,0.057], + [13187,0.048], + [13189,0.031], + [13191,0.003], + [13193,0.043], + [13195,0.055], + [13197,0.073], + [13199,0.022], + [13201,0.004], + [13205,0.046], + [13207,0.023], + [13209,0.066], + [13211,0.032], + [13213,0.15], + [13215,0.076], + [13217,0.056], + [13219,0.053], + [13221,0.046], + [13223,0.063], + [13225,0.077], + [13227,0.031], + [13229,0.051], + [13231,0.016], + [13233,0.131], + [13235,0.031], + [13237,0.064], + [13239,0.007], + [13241,0.08], + [13243,0.014], + [13245,0.049], + [13247,0.102], + [13249,0.065], + [13251,0.022], + [13253,0.032], + [13255,0.046], + [13257,0.035], + [13259,0.188], + [13261,0.057], + [13263,0.006], + [13265,0.04], + [13267,0.115], + [13269,0.026], + [13271,0.114], + [13273,0.028], + [13275,0.037], + [13277,0.118], + [13279,0.117], + [13281,0.027], + [13283,0.013], + [13285,0.037], + [13287,0.048], + [13289,0.007], + [13291,0.033], + [13293,0.023], + [13295,0.022], + [13297,0.044], + [13299,0.041], + [13301,0.005], + [13303,0.025], + [13305,0.063], + [13307,0.087], + [13309,0.001], + [13311,0.032], + [13313,0.351], + [13315,0.047], + [13317,0.051], + [13319,0.029], + [13321,0.022], + [15001,0.127], + [15003,0.098], + [15005,0.03], + [15007,0.111], + [15009,0.113], + [16001,0.082], + [16003,0.036], + [16005,0.086], + [16007,0.043], + [16009,0.036], + [16011,0.18], + [16013,0.226], + [16015,0.046], + [16017,0.031], + [16019,0.13], + [16021,0.05], + [16023,0.051], + [16025,0.016], + [16027,0.253], + [16029,0.058], + [16031,0.272], + [16033,0.485], + [16035,0.042], + [16037,0.042], + [16039,0.171], + [16041,0.068], + [16043,0.125], + [16045,0.084], + [16047,0.291], + [16049,0.034], + [16051,0.105], + [16053,0.361], + [16055,0.046], + [16057,0.044], + [16059,0.034], + [16061,0.046], + [16063,0.307], + [16065,0.076], + [16067,0.353], + [16069,0.039], + [16071,0.045], + [16073,0.262], + [16075,0.173], + [16077,0.341], + [16079,0.036], + [16081,0.169], + [16083,0.164], + [16085,0.046], + [16087,0.17], + [17001,0.016], + [17003,0.013], + [17005,0.035], + [17007,0.218], + [17009,0.066], + [17011,0.091], + [17013,0.013], + [17015,0.037], + [17017,0.189], + [17019,0.06], + [17021,0.016], + [17023,0.016], + [17025,0.001], + [17027,0.031], + [17029,0.025], + [17031,0.253], + [17033,0.033], + [17035,0.011], + [17037,0.112], + [17039,0.027], + [17041,0.073], + [17043,0.143], + [17045,0.012], + [17047,0.014], + [17049,0.021], + [17051,0.019], + [17053,0.033], + [17055,0.017], + [17057,0.03], + [17059,0.013], + [17061,0.012], + [17063,0.099], + [17065,0.007], + [17067,0.015], + [17069,0.009], + [17071,0.018], + [17073,0.057], + [17075,0.07], + [17077,0.044], + [17079,0.004], + [17081,0.027], + [17083,0.014], + [17085,0.03], + [17087,0.032], + [17089,0.319], + [17091,0.104], + [17093,0.187], + [17095,0.058], + [17097,0.217], + [17099,0.097], + [17101,0.038], + [17103,0.062], + [17105,0.046], + [17107,0.034], + [17109,0.028], + [17111,0.131], + [17113,0.049], + [17115,0.023], + [17117,0.012], + [17119,0.033], + [17121,0.02], + [17123,0.03], + [17125,0.011], + [17127,0.029], + [17129,0.015], + [17131,0.024], + [17133,0.015], + [17135,0.018], + [17137,0.025], + [17139,0.014], + [17141,0.101], + [17143,0.048], + [17145,0.031], + [17147,0.014], + [17149,0.013], + [17151,0.028], + [17153,0.023], + [17155,0.056], + [17157,0.031], + [17159,0.017], + [17161,0.129], + [17163,0.041], + [17165,0.018], + [17167,0.023], + [17169,0.01], + [17171,0.013], + [17173,0.011], + [17175,0.017], + [17177,0.04], + [17179,0.023], + [17181,0.052], + [17183,0.05], + [17185,0.027], + [17187,0.096], + [17189,0.014], + [17191,0.006], + [17193,0.015], + [17195,0.12], + [17197,0.174], + [17199,0.026], + [17201,0.128], + [17203,0.018], + [18001,0.045], + [18003,0.075], + [18005,0.068], + [18007,0.052], + [18009,0.016], + [18011,0.03], + [18013,0.017], + [18015,0.041], + [18017,0.154], + [18019,0.054], + [18021,0.005], + [18023,0.159], + [18025,0.015], + [18027,0.05], + [18029,0.013], + [18031,0.02], + [18033,0.028], + [18035,0.025], + [18037,0.078], + [18039,0.159], + [18041,0.012], + [18043,0.033], + [18045,0.025], + [18047,0.008], + [18049,0.052], + [18051,0.016], + [18053,0.043], + [18055,0.015], + [18057,0.04], + [18059,0.024], + [18061,0.019], + [18063,0.039], + [18065,0.018], + [18067,0.034], + [18069,0.025], + [18071,0.07], + [18073,0.06], + [18075,0.031], + [18077,0.028], + [18079,0.025], + [18081,0.036], + [18083,0.02], + [18085,0.08], + [18087,0.04], + [18089,0.19], + [18091,0.066], + [18093,0.017], + [18095,0.041], + [18097,0.104], + [18099,0.101], + [18101,0.011], + [18103,0.032], + [18105,0.034], + [18107,0.048], + [18109,0.016], + [18111,0.064], + [18113,0.103], + [18115,0.013], + [18117,0.006], + [18119,0.013], + [18121,0.016], + [18123,0.014], + [18125,0.009], + [18127,0.1], + [18129,0.012], + [18131,0.03], + [18133,0.019], + [18135,0.035], + [18137,0.018], + [18139,0.017], + [18141,0.087], + [18143,0.023], + [18145,0.042], + [18147,0.029], + [18149,0.038], + [18151,0.035], + [18153,0.017], + [18155,0.02], + [18157,0.083], + [18159,0.028], + [18161,0.018], + [18163,0.027], + [18165,0.009], + [18167,0.027], + [18169,0.026], + [18171,0.018], + [18173,0.019], + [18175,0.013], + [18177,0.03], + [18179,0.031], + [18181,0.084], + [18183,0.021], + [19001,0.021], + [19003,0.013], + [19005,0.066], + [19007,0.02], + [19009,0.006], + [19011,0.015], + [19013,0.044], + [19015,0.026], + [19017,0.016], + [19019,0.016], + [19021,0.255], + [19023,0.014], + [19025,0.019], + [19027,0.025], + [19029,0.027], + [19031,0.02], + [19033,0.049], + [19035,0.016], + [19037,0.025], + [19039,0.143], + [19041,0.037], + [19043,0.019], + [19045,0.031], + [19047,0.281], + [19049,0.061], + [19051,0.015], + [19053,0.03], + [19055,0.016], + [19057,0.032], + [19059,0.02], + [19061,0.025], + [19063,0.097], + [19065,0.024], + [19067,0.032], + [19069,0.128], + [19071,0.028], + [19073,0.029], + [19075,0.013], + [19077,0.027], + [19079,0.06], + [19081,0.044], + [19083,0.044], + [19085,0.017], + [19087,0.049], + [19089,0.016], + [19091,0.044], + [19093,0.024], + [19095,0.029], + [19097,0.015], + [19099,0.023], + [19101,0.03], + [19103,0.056], + [19105,0.02], + [19107,0.017], + [19109,0.027], + [19111,0.036], + [19113,0.032], + [19115,0.158], + [19117,0.02], + [19119,0.026], + [19121,0.02], + [19123,0.022], + [19125,0.019], + [19127,0.219], + [19129,0.032], + [19131,0.015], + [19133,0.02], + [19135,0.01], + [19137,0.038], + [19139,0.179], + [19141,0.049], + [19143,0.081], + [19145,0.035], + [19147,0.028], + [19149,0.052], + [19151,0.038], + [19153,0.084], + [19155,0.077], + [19157,0.032], + [19159,0.025], + [19161,0.031], + [19163,0.067], + [19165,0.03], + [19167,0.107], + [19169,0.035], + [19171,0.098], + [19173,0.077], + [19175,0.03], + [19177,0.016], + [19179,0.108], + [19181,0.028], + [19183,0.062], + [19185,0.016], + [19187,0.05], + [19189,0.046], + [19191,0.022], + [19193,0.166], + [19195,0.03], + [19197,0.121], + [20001,0.036], + [20003,0.019], + [20005,0.03], + [20007,0.055], + [20009,0.148], + [20011,0.027], + [20013,0.046], + [20015,0.049], + [20017,0.047], + [20019,0.039], + [20021,0.026], + [20023,0.068], + [20025,0.055], + [20027,0.025], + [20029,0.032], + [20031,0.027], + [20033,0.038], + [20035,0.109], + [20037,0.057], + [20039,0.03], + [20041,0.047], + [20043,0.028], + [20045,0.063], + [20047,0.207], + [20049,0.046], + [20051,0.057], + [20053,0.062], + [20055,0.499], + [20057,0.551], + [20059,0.042], + [20061,0.162], + [20063,0.034], + [20065,0.02], + [20067,0.476], + [20069,0.16], + [20071,0.247], + [20073,0.039], + [20075,0.33], + [20077,0.061], + [20079,0.119], + [20081,0.306], + [20083,0.079], + [20085,0.046], + [20087,0.027], + [20089,0.024], + [20091,0.077], + [20093,0.317], + [20095,0.036], + [20097,0.064], + [20099,0.045], + [20101,0.067], + [20103,0.07], + [20105,0.034], + [20107,0.027], + [20109,0.061], + [20111,0.212], + [20113,0.042], + [20115,0.037], + [20117,0.025], + [20119,0.205], + [20121,0.032], + [20123,0.024], + [20125,0.068], + [20127,0.05], + [20129,0.234], + [20131,0.021], + [20133,0.056], + [20135,0.102], + [20137,0.052], + [20139,0.032], + [20141,0.022], + [20143,0.027], + [20145,0.077], + [20147,0.034], + [20149,0.052], + [20151,0.072], + [20153,0.072], + [20155,0.095], + [20157,0.02], + [20159,0.114], + [20161,0.083], + [20163,0.025], + [20165,0.032], + [20167,0.034], + [20169,0.113], + [20171,0.156], + [20173,0.146], + [20175,0.612], + [20177,0.123], + [20179,0.051], + [20181,0.122], + [20183,0.022], + [20185,0.133], + [20187,0.406], + [20189,0.364], + [20191,0.054], + [20193,0.065], + [20195,0.021], + [20197,0.038], + [20199,0.047], + [20201,0.036], + [20203,0.352], + [20205,0.032], + [20207,0.004], + [20209,0.289], + [21001,0.02], + [21003,0.022], + [21005,0.018], + [21007,0.014], + [21009,0.032], + [21011,0.017], + [21013,0.011], + [21015,0.042], + [21017,0.068], + [21019,0.018], + [21021,0.033], + [21023,0.008], + [21025,0.009], + [21027,0.016], + [21029,0.02], + [21031,0.033], + [21033,0.025], + [21035,0.027], + [21037,0.02], + [21039,0.023], + [21041,0.068], + [21043,0.014], + [21045,0.029], + [21047,0.079], + [21049,0.029], + [21051,0.026], + [21053,0.028], + [21055,0.012], + [21057,0.014], + [21059,0.031], + [21061,0.007], + [21063,0.005], + [21065,0.001], + [21067,0.072], + [21069,0.011], + [21071,0.008], + [21073,0.034], + [21075,0.02], + [21077,0.053], + [21079,0.022], + [21081,0.028], + [21083,0.067], + [21085,0.014], + [21087,0.009], + [21089,0.011], + [21091,0.015], + [21093,0.057], + [21095,0.01], + [21097,0.024], + [21099,0.018], + [21101,0.026], + [21103,0.033], + [21105,0.018], + [21107,0.021], + [21109,0.002], + [21111,0.054], + [21113,0.035], + [21115,0.003], + [21117,0.032], + [21119,0.01], + [21121,0.012], + [21123,0.032], + [21125,0.016], + [21127,0.012], + [21129,0.004], + [21131,0.005], + [21133,0.008], + [21135,0], + [21137,0.016], + [21139,0.02], + [21141,0.029], + [21143,0.019], + [21145,0.025], + [21147,0.025], + [21149,0.009], + [21151,0.025], + [21153,0.011], + [21155,0.027], + [21157,0.016], + [21159,0.02], + [21161,0.019], + [21163,0.037], + [21165,0.011], + [21167,0.029], + [21169,0.008], + [21171,0.031], + [21173,0.028], + [21175,0.013], + [21177,0.015], + [21179,0.022], + [21181,0.014], + [21183,0.035], + [21185,0.04], + [21187,0.004], + [21189,0], + [21191,0.014], + [21193,0.01], + [21195,0.01], + [21197,0.017], + [21199,0.025], + [21201,0.043], + [21203,0.009], + [21205,0.017], + [21207,0.038], + [21209,0.043], + [21211,0.096], + [21213,0.024], + [21215,0.024], + [21217,0.024], + [21219,0.04], + [21221,0.022], + [21223,0.031], + [21225,0.02], + [21227,0.054], + [21229,0.043], + [21231,0.033], + [21233,0.055], + [21235,0.013], + [21237,0.004], + [21239,0.067], + [22001,0.026], + [22003,0.062], + [22005,0.056], + [22007,0.03], + [22009,0.019], + [22011,0.037], + [22013,0.006], + [22015,0.066], + [22017,0.028], + [22019,0.036], + [22021,0.032], + [22023,0.059], + [22025,0.019], + [22027,0.015], + [22029,0.016], + [22031,0.029], + [22033,0.042], + [22035,0.005], + [22037,0.017], + [22039,0.037], + [22041,0.004], + [22043,0.05], + [22045,0.042], + [22047,0.026], + [22049,0.017], + [22051,0.145], + [22053,0.025], + [22055,0.046], + [22057,0.044], + [22059,0.028], + [22061,0.031], + [22063,0.037], + [22065,0.021], + [22067,0.006], + [22069,0.024], + [22071,0.055], + [22073,0.022], + [22075,0.073], + [22077,0.026], + [22079,0.031], + [22081,0.024], + [22083,0.022], + [22085,0.039], + [22087,0.101], + [22089,0.061], + [22091,0.018], + [22093,0.017], + [22095,0.061], + [22097,0.022], + [22099,0.03], + [22101,0.07], + [22103,0.056], + [22105,0.043], + [22107,0.021], + [22109,0.052], + [22111,0.047], + [22113,0.035], + [22115,0.093], + [22117,0.023], + [22119,0.019], + [22121,0.031], + [22123,0.038], + [22125,0.012], + [22127,0.02], + [23001,0.019], + [23003,0.012], + [23005,0.021], + [23007,0.013], + [23009,0.015], + [23011,0.016], + [23013,0.015], + [23015,0.012], + [23017,0.014], + [23019,0.014], + [23021,0.015], + [23023,0.017], + [23025,0.011], + [23027,0.015], + [23029,0.024], + [23031,0.017], + [24001,0.018], + [24003,0.078], + [24005,0.054], + [24009,0.04], + [24011,0.073], + [24013,0.035], + [24015,0.044], + [24017,0.058], + [24019,0.056], + [24021,0.096], + [24023,0.011], + [24025,0.046], + [24027,0.069], + [24029,0.044], + [24031,0.195], + [24033,0.184], + [24035,0.039], + [24037,0.052], + [24039,0.036], + [24041,0.068], + [24043,0.051], + [24045,0.052], + [24047,0.035], + [24510,0.053], + [25001,0.031], + [25003,0.047], + [25005,0.08], + [25007,0.036], + [25009,0.209], + [25011,0.04], + [25013,0.252], + [25015,0.056], + [25017,0.08], + [25019,0.042], + [25021,0.045], + [25023,0.039], + [25025,0.229], + [25027,0.115], + [26001,0.015], + [26003,0.016], + [26005,0.073], + [26007,0.014], + [26009,0.023], + [26011,0.02], + [26013,0.016], + [26015,0.03], + [26017,0.053], + [26019,0.025], + [26021,0.055], + [26023,0.048], + [26025,0.052], + [26027,0.039], + [26029,0.02], + [26031,0.014], + [26033,0.019], + [26035,0.02], + [26037,0.045], + [26039,0.02], + [26041,0.014], + [26043,0.016], + [26045,0.054], + [26047,0.017], + [26049,0.034], + [26051,0.017], + [26053,0.015], + [26055,0.029], + [26057,0.061], + [26059,0.023], + [26061,0.016], + [26063,0.024], + [26065,0.078], + [26067,0.048], + [26069,0.023], + [26071,0.021], + [26073,0.04], + [26075,0.035], + [26077,0.049], + [26079,0.02], + [26081,0.106], + [26083,0.008], + [26085,0.026], + [26087,0.047], + [26089,0.044], + [26091,0.08], + [26093,0.024], + [26095,0.035], + [26097,0.018], + [26099,0.026], + [26101,0.032], + [26103,0.015], + [26105,0.046], + [26107,0.023], + [26109,0.018], + [26111,0.027], + [26113,0.029], + [26115,0.036], + [26117,0.035], + [26119,0.013], + [26121,0.057], + [26123,0.058], + [26125,0.041], + [26127,0.149], + [26129,0.021], + [26131,0.015], + [26133,0.019], + [26135,0.016], + [26137,0.017], + [26139,0.098], + [26141,0.014], + [26143,0.019], + [26145,0.085], + [26147,0.034], + [26149,0.079], + [26151,0.037], + [26153,0.011], + [26155,0.029], + [26157,0.034], + [26159,0.115], + [26161,0.047], + [26163,0.059], + [26165,0.02], + [27001,0.014], + [27003,0.046], + [27005,0.021], + [27007,0.024], + [27009,0.024], + [27011,0.018], + [27013,0.036], + [27015,0.044], + [27017,0.018], + [27019,0.042], + [27021,0.022], + [27023,0.073], + [27025,0.022], + [27027,0.045], + [27029,0.022], + [27031,0.023], + [27033,0.077], + [27035,0.015], + [27037,0.071], + [27039,0.05], + [27041,0.017], + [27043,0.069], + [27045,0.016], + [27047,0.097], + [27049,0.033], + [27051,0.023], + [27053,0.069], + [27055,0.011], + [27057,0.021], + [27059,0.02], + [27061,0.015], + [27063,0.036], + [27065,0.016], + [27067,0.121], + [27069,0.009], + [27071,0.013], + [27073,0.023], + [27075,0.014], + [27077,0.001], + [27079,0.062], + [27081,0.021], + [27083,0.069], + [27085,0.062], + [27087,0.043], + [27089,0.045], + [27091,0.045], + [27093,0.04], + [27095,0.025], + [27097,0.017], + [27099,0.116], + [27101,0.04], + [27103,0.046], + [27105,0.278], + [27107,0.051], + [27109,0.049], + [27111,0.035], + [27113,0.038], + [27115,0.029], + [27117,0.069], + [27119,0.065], + [27121,0.016], + [27123,0.075], + [27125,0.039], + [27127,0.035], + [27129,0.086], + [27131,0.081], + [27133,0.032], + [27135,0.013], + [27137,0.017], + [27139,0.051], + [27141,0.026], + [27143,0.09], + [27145,0.034], + [27147,0.078], + [27149,0.064], + [27151,0.05], + [27153,0.06], + [27155,0.031], + [27157,0.029], + [27159,0.02], + [27161,0.06], + [27163,0.042], + [27165,0.255], + [27167,0.003], + [27169,0.03], + [27171,0.029], + [27173,0.047], + [28001,0.058], + [28003,0.032], + [28005,0], + [28007,0.02], + [28009,0.026], + [28011,0.022], + [28013,0.06], + [28015,0.002], + [28017,0.049], + [28019,0.006], + [28021,0.001], + [28023,0.006], + [28025,0.001], + [28027,0.004], + [28029,0.032], + [28031,0.024], + [28033,0.049], + [28035,0.029], + [28037,0.003], + [28039,0.029], + [28041,0.012], + [28043,0.006], + [28045,0.038], + [28047,0.055], + [28049,0.015], + [28051,0.002], + [28053,0.033], + [28055,0.013], + [28057,0.016], + [28059,0.065], + [28061,0.005], + [28063,0.072], + [28065,0.004], + [28067,0.045], + [28069,0.006], + [28071,0.026], + [28073,0.027], + [28075,0.023], + [28077,0.009], + [28079,0.046], + [28081,0.026], + [28083,0.026], + [28085,0.004], + [28087,0.02], + [28089,0.03], + [28091,0.016], + [28093,0.037], + [28095,0.013], + [28097,0.014], + [28099,0.021], + [28101,0.019], + [28103,0.014], + [28105,0.017], + [28107,0.02], + [28109,0.031], + [28111,0.015], + [28113,0.016], + [28115,0.069], + [28117,0.015], + [28119,0.012], + [28121,0.028], + [28123,0.113], + [28125,0.001], + [28127,0.003], + [28129,0.017], + [28131,0.02], + [28133,0.018], + [28135,0.095], + [28137,0.026], + [28139,0.048], + [28141,0.032], + [28143,0.01], + [28145,0.044], + [28147,0.008], + [28149,0.021], + [28151,0.016], + [28153,0.006], + [28155,0.007], + [28157,0.002], + [28159,0.013], + [28161,0.014], + [28163,0.046], + [29001,0.025], + [29003,0.025], + [29005,0.013], + [29007,0.031], + [29009,0.093], + [29011,0.016], + [29013,0.022], + [29015,0.02], + [29017,0.011], + [29019,0.034], + [29021,0.065], + [29023,0.021], + [29025,0.016], + [29027,0.021], + [29029,0.027], + [29031,0.023], + [29033,0.016], + [29035,0.026], + [29037,0.044], + [29039,0.023], + [29041,0.005], + [29043,0.029], + [29045,0.006], + [29047,0.068], + [29049,0.021], + [29051,0.028], + [29053,0.02], + [29055,0.02], + [29057,0.021], + [29059,0.021], + [29061,0.016], + [29063,0.026], + [29065,0.018], + [29067,0.009], + [29069,0.066], + [29071,0.017], + [29073,0.014], + [29075,0.016], + [29077,0.037], + [29079,0.024], + [29081,0.023], + [29083,0.025], + [29085,0.017], + [29087,0.011], + [29089,0.016], + [29091,0.021], + [29093,0.018], + [29095,0.09], + [29097,0.08], + [29099,0.02], + [29101,0.044], + [29103,0.011], + [29105,0.025], + [29107,0.029], + [29109,0.075], + [29111,0.005], + [29113,0.025], + [29115,0.024], + [29117,0.018], + [29119,0.116], + [29121,0.015], + [29123,0.024], + [29125,0.013], + [29127,0.018], + [29129,0.023], + [29131,0.019], + [29133,0.022], + [29135,0.049], + [29137,0.017], + [29139,0.02], + [29141,0.023], + [29143,0.019], + [29145,0.053], + [29147,0.017], + [29149,0.018], + [29151,0.008], + [29153,0.018], + [29155,0.026], + [29157,0.023], + [29159,0.087], + [29161,0.025], + [29163,0.022], + [29165,0.06], + [29167,0.024], + [29169,0.112], + [29171,0.005], + [29173,0.013], + [29175,0.021], + [29177,0.025], + [29179,0.008], + [29181,0.015], + [29183,0.033], + [29185,0.013], + [29186,0.012], + [29187,0.016], + [29189,0.029], + [29195,0.102], + [29197,0.017], + [29199,0], + [29201,0.023], + [29203,0.019], + [29205,0.017], + [29207,0.017], + [29209,0.023], + [29211,0.183], + [29213,0.059], + [29215,0.021], + [29217,0.022], + [29219,0.034], + [29221,0.014], + [29223,0.018], + [29225,0.021], + [29227,0.015], + [29229,0.019], + [29510,0.04], + [30001,0.049], + [30003,0.064], + [30005,0.035], + [30007,0.028], + [30009,0.025], + [30011,0.001], + [30013,0.045], + [30015,0.026], + [30017,0.034], + [30019,0.027], + [30021,0.031], + [30023,0.035], + [30025,0.02], + [30027,0.009], + [30029,0.028], + [30031,0.037], + [30033,0.001], + [30035,0.033], + [30037,0.067], + [30039,0.023], + [30041,0.038], + [30043,0.026], + [30045,0.036], + [30047,0.046], + [30049,0.033], + [30051,0.012], + [30053,0.031], + [30055,0.037], + [30057,0.045], + [30059,0.047], + [30061,0.013], + [30063,0.033], + [30065,0.031], + [30067,0.031], + [30069,0], + [30071,0.028], + [30073,0.02], + [30075,0.032], + [30077,0.017], + [30079,0.013], + [30081,0.035], + [30083,0.054], + [30085,0.04], + [30087,0.052], + [30089,0.03], + [30091,0.038], + [30093,0.046], + [30095,0.04], + [30097,0.023], + [30099,0.016], + [30101,0.04], + [30103,0.006], + [30105,0.027], + [30107,0.031], + [30109,0.049], + [30111,0.056], + [31001,0.103], + [31003,0.033], + [31005,0.005], + [31007,0.061], + [31009,0], + [31011,0.022], + [31013,0.125], + [31015,0.009], + [31017,0.018], + [31019,0.09], + [31021,0.031], + [31023,0.036], + [31025,0.033], + [31027,0.021], + [31029,0.123], + [31031,0.025], + [31033,0.07], + [31035,0.089], + [31037,0.454], + [31039,0.101], + [31041,0.032], + [31043,0.388], + [31045,0.054], + [31047,0.333], + [31049,0.085], + [31051,0.137], + [31053,0.129], + [31055,0.126], + [31057,0.118], + [31059,0.039], + [31061,0.023], + [31063,0.013], + [31065,0.043], + [31067,0.025], + [31069,0.046], + [31071,0.018], + [31073,0.05], + [31075,0.012], + [31077,0.021], + [31079,0.277], + [31081,0.035], + [31083,0.026], + [31085,0.083], + [31087,0.005], + [31089,0.049], + [31091,0.065], + [31093,0.025], + [31095,0.043], + [31097,0.102], + [31099,0.063], + [31101,0.072], + [31103,0.009], + [31105,0.096], + [31107,0.029], + [31109,0.07], + [31111,0.086], + [31113,0.047], + [31115,0.018], + [31117,0.015], + [31119,0.15], + [31121,0.045], + [31123,0.154], + [31125,0.028], + [31127,0.028], + [31129,0.028], + [31131,0.081], + [31133,0.018], + [31135,0.042], + [31137,0.057], + [31139,0.015], + [31141,0.19], + [31143,0.055], + [31145,0.053], + [31147,0.019], + [31149,0.012], + [31151,0.253], + [31153,0.093], + [31155,0.023], + [31157,0.238], + [31159,0.026], + [31161,0.055], + [31163,0.022], + [31165,0.034], + [31167,0.055], + [31169,0.026], + [31171,0], + [31173,0.059], + [31175,0.034], + [31177,0.029], + [31179,0.06], + [31181,0.051], + [31183,0.026], + [31185,0.052], + [32001,0.139], + [32003,0.311], + [32005,0.127], + [32007,0.244], + [32009,0.158], + [32011,0.044], + [32013,0.27], + [32015,0.312], + [32017,0.069], + [32019,0.171], + [32021,0.116], + [32023,0.147], + [32027,0.244], + [32029,0.032], + [32031,0.244], + [32033,0.162], + [32510,0.241], + [33001,0.017], + [33003,0.015], + [33005,0.019], + [33007,0.029], + [33009,0.024], + [33011,0.068], + [33013,0.022], + [33015,0.03], + [33017,0.025], + [33019,0.016], + [34001,0.188], + [34003,0.199], + [34005,0.08], + [34007,0.168], + [34009,0.077], + [34011,0.307], + [34013,0.23], + [34015,0.062], + [34017,0.431], + [34019,0.065], + [34021,0.175], + [34023,0.212], + [34025,0.108], + [34027,0.133], + [34029,0.092], + [34031,0.415], + [34033,0.09], + [34035,0.147], + [34037,0.082], + [34039,0.316], + [34041,0.093], + [35001,0.5], + [35003,0.19], + [35005,0.567], + [35006,0.384], + [35007,0.494], + [35009,0.422], + [35011,0.535], + [35013,0.683], + [35015,0.491], + [35017,0.505], + [35019,0.739], + [35021,0.397], + [35023,0.581], + [35025,0.587], + [35027,0.332], + [35028,0.18], + [35029,0.671], + [35031,0.142], + [35033,0.815], + [35035,0.383], + [35037,0.453], + [35039,0.712], + [35041,0.421], + [35043,0.389], + [35045,0.203], + [35047,0.777], + [35049,0.512], + [35051,0.304], + [35053,0.498], + [35055,0.569], + [35057,0.431], + [35059,0.423], + [35061,0.606], + [36001,0.06], + [36003,0.016], + [36005,0.56], + [36007,0.042], + [36009,0.021], + [36011,0.03], + [36013,0.075], + [36015,0.031], + [36017,0.022], + [36019,0.029], + [36021,0.048], + [36023,0.027], + [36025,0.039], + [36027,0.122], + [36029,0.055], + [36031,0.03], + [36033,0.035], + [36035,0.031], + [36037,0.033], + [36039,0.059], + [36041,0.017], + [36043,0.022], + [36045,0.075], + [36047,0.19], + [36049,0.017], + [36051,0.037], + [36053,0.022], + [36055,0.088], + [36057,0.141], + [36059,0.169], + [36061,0.258], + [36063,0.03], + [36065,0.058], + [36067,0.049], + [36069,0.047], + [36071,0.205], + [36073,0.049], + [36075,0.026], + [36077,0.037], + [36079,0.15], + [36081,0.28], + [36083,0.049], + [36085,0.184], + [36087,0.177], + [36089,0.024], + [36091,0.032], + [36093,0.071], + [36095,0.032], + [36097,0.019], + [36099,0.035], + [36101,0.016], + [36103,0.193], + [36105,0.16], + [36107,0.019], + [36109,0.052], + [36111,0.102], + [36113,0.026], + [36115,0.027], + [36117,0.044], + [36119,0.247], + [36121,0.033], + [36123,0.022], + [37001,0.126], + [37003,0.047], + [37005,0.097], + [37007,0.04], + [37009,0.05], + [37011,0.051], + [37013,0.078], + [37015,0.021], + [37017,0.075], + [37019,0.048], + [37021,0.066], + [37023,0.061], + [37025,0.104], + [37027,0.055], + [37029,0.029], + [37031,0.043], + [37033,0.04], + [37035,0.097], + [37037,0.122], + [37039,0.031], + [37041,0.037], + [37043,0.033], + [37045,0.035], + [37047,0.053], + [37049,0.073], + [37051,0.116], + [37053,0.04], + [37055,0.075], + [37057,0.071], + [37059,0.068], + [37061,0.222], + [37063,0.135], + [37065,0.046], + [37067,0.128], + [37069,0.084], + [37071,0.07], + [37073,0.001], + [37075,0.021], + [37077,0.079], + [37079,0.151], + [37081,0.08], + [37083,0.029], + [37085,0.128], + [37087,0.04], + [37089,0.101], + [37091,0.038], + [37093,0.133], + [37095,0.103], + [37097,0.076], + [37099,0.059], + [37101,0.136], + [37103,0.046], + [37105,0.192], + [37107,0.078], + [37109,0.073], + [37111,0.061], + [37113,0.07], + [37115,0.024], + [37117,0.04], + [37119,0.133], + [37121,0.056], + [37123,0.154], + [37125,0.067], + [37127,0.07], + [37129,0.056], + [37131,0.023], + [37133,0.126], + [37135,0.084], + [37137,0.039], + [37139,0.054], + [37141,0.071], + [37143,0.026], + [37145,0.043], + [37147,0.063], + [37149,0.059], + [37151,0.114], + [37153,0.065], + [37155,0.089], + [37157,0.061], + [37159,0.088], + [37161,0.044], + [37163,0.196], + [37165,0.03], + [37167,0.042], + [37169,0.031], + [37171,0.106], + [37173,0.053], + [37175,0.033], + [37177,0.069], + [37179,0.111], + [37181,0.078], + [37183,0.101], + [37185,0.038], + [37187,0.052], + [37189,0.037], + [37191,0.118], + [37193,0.065], + [37195,0.104], + [37197,0.111], + [37199,0.052], + [38001,0.017], + [38003,0.02], + [38005,0.009], + [38007,0.029], + [38009,0.023], + [38011,0.055], + [38013,0.011], + [38015,0.025], + [38017,0.027], + [38019,0.018], + [38021,0.034], + [38023,0.043], + [38025,0.025], + [38027,0.013], + [38029,0.016], + [38031,0.011], + [38033,0.031], + [38035,0.043], + [38037,0.011], + [38039,0.008], + [38041,0.031], + [38043,0.036], + [38045,0.019], + [38047,0.009], + [38049,0.022], + [38051,0.028], + [38053,0.084], + [38055,0.025], + [38057,0.029], + [38059,0.035], + [38061,0.081], + [38063,0.035], + [38065,0.028], + [38067,0.035], + [38069,0.004], + [38071,0.029], + [38073,0.016], + [38075,0.075], + [38077,0.031], + [38079,0.006], + [38081,0.031], + [38083,0], + [38085,0.046], + [38087,0], + [38089,0.054], + [38091,0.017], + [38093,0.025], + [38095,0.04], + [38097,0.036], + [38099,0.115], + [38101,0.061], + [38103,0.025], + [38105,0.077], + [39001,0.01], + [39003,0.031], + [39005,0.014], + [39007,0.042], + [39009,0.019], + [39011,0.017], + [39013,0.01], + [39015,0.01], + [39017,0.047], + [39019,0.013], + [39021,0.016], + [39023,0.034], + [39025,0.019], + [39027,0.016], + [39029,0.018], + [39031,0.011], + [39033,0.017], + [39035,0.059], + [39037,0.016], + [39039,0.1], + [39041,0.026], + [39043,0.044], + [39045,0.022], + [39047,0.021], + [39049,0.055], + [39051,0.087], + [39053,0.014], + [39055,0.015], + [39057,0.028], + [39059,0.012], + [39061,0.033], + [39063,0.055], + [39065,0.017], + [39067,0.004], + [39069,0.077], + [39071,0.011], + [39073,0.01], + [39075,0.01], + [39077,0.066], + [39079,0.011], + [39081,0.015], + [39083,0.015], + [39085,0.044], + [39087,0.01], + [39089,0.019], + [39091,0.016], + [39093,0.1], + [39095,0.071], + [39097,0.02], + [39099,0.06], + [39101,0.027], + [39103,0.021], + [39105,0.007], + [39107,0.019], + [39109,0.017], + [39111,0.012], + [39113,0.03], + [39115,0.004], + [39117,0.015], + [39119,0.011], + [39121,0.009], + [39123,0.05], + [39125,0.048], + [39127,0.009], + [39129,0.014], + [39131,0.005], + [39133,0.018], + [39135,0.009], + [39137,0.062], + [39139,0.019], + [39141,0.013], + [39143,0.099], + [39145,0.014], + [39147,0.051], + [39149,0.016], + [39151,0.021], + [39153,0.021], + [39155,0.018], + [39157,0.028], + [39159,0.017], + [39161,0.034], + [39163,0.007], + [39165,0.028], + [39167,0.011], + [39169,0.02], + [39171,0.045], + [39173,0.056], + [39175,0.03], + [40001,0.068], + [40003,0.056], + [40005,0.035], + [40007,0.238], + [40009,0.146], + [40011,0.111], + [40013,0.06], + [40015,0.129], + [40017,0.09], + [40019,0.073], + [40021,0.072], + [40023,0.044], + [40025,0.224], + [40027,0.087], + [40029,0.047], + [40031,0.131], + [40033,0.08], + [40035,0.037], + [40037,0.042], + [40039,0.183], + [40041,0.038], + [40043,0.075], + [40045,0.071], + [40047,0.124], + [40049,0.089], + [40051,0.058], + [40053,0.05], + [40055,0.114], + [40057,0.291], + [40059,0.223], + [40061,0.044], + [40063,0.056], + [40065,0.241], + [40067,0.106], + [40069,0.054], + [40071,0.08], + [40073,0.159], + [40075,0.118], + [40077,0.038], + [40079,0.07], + [40081,0.034], + [40083,0.062], + [40085,0.157], + [40087,0.08], + [40089,0.061], + [40091,0.028], + [40093,0.097], + [40095,0.177], + [40097,0.036], + [40099,0.066], + [40101,0.062], + [40103,0.039], + [40105,0.031], + [40107,0.04], + [40109,0.174], + [40111,0.042], + [40113,0.036], + [40115,0.057], + [40117,0.031], + [40119,0.047], + [40121,0.051], + [40123,0.054], + [40125,0.052], + [40127,0.04], + [40129,0.072], + [40131,0.048], + [40133,0.051], + [40135,0.042], + [40137,0.078], + [40139,0.459], + [40141,0.27], + [40143,0.127], + [40145,0.062], + [40147,0.06], + [40149,0.098], + [40151,0.073], + [40153,0.128], + [41001,0.043], + [41003,0.074], + [41005,0.087], + [41007,0.085], + [41009,0.052], + [41011,0.065], + [41013,0.076], + [41015,0.071], + [41017,0.08], + [41019,0.058], + [41021,0.061], + [41023,0.038], + [41025,0.051], + [41027,0.314], + [41029,0.128], + [41031,0.2], + [41033,0.074], + [41035,0.131], + [41037,0.082], + [41039,0.089], + [41041,0.092], + [41043,0.091], + [41045,0.337], + [41047,0.266], + [41049,0.365], + [41051,0.116], + [41053,0.139], + [41055,0.049], + [41057,0.103], + [41059,0.268], + [41061,0.048], + [41063,0.031], + [41065,0.182], + [41067,0.167], + [41069,0.086], + [41071,0.159], + [42001,0.071], + [42003,0.021], + [42005,0.008], + [42007,0.016], + [42009,0.012], + [42011,0.21], + [42013,0.013], + [42015,0.015], + [42017,0.053], + [42019,0.015], + [42021,0.016], + [42023,0.011], + [42025,0.048], + [42027,0.029], + [42029,0.074], + [42031,0.01], + [42033,0.03], + [42035,0.015], + [42037,0.028], + [42039,0.013], + [42041,0.039], + [42043,0.092], + [42045,0.038], + [42047,0.008], + [42049,0.042], + [42051,0.012], + [42053,0.055], + [42055,0.056], + [42057,0.012], + [42059,0.015], + [42061,0.02], + [42063,0.013], + [42065,0.009], + [42067,0.038], + [42069,0.075], + [42071,0.105], + [42073,0.015], + [42075,0.131], + [42077,0.245], + [42079,0.119], + [42081,0.02], + [42083,0.021], + [42085,0.015], + [42087,0.016], + [42089,0.159], + [42091,0.051], + [42093,0.028], + [42095,0.132], + [42097,0.035], + [42099,0.02], + [42101,0.147], + [42103,0.109], + [42105,0.014], + [42107,0.044], + [42109,0.021], + [42111,0.015], + [42113,0.018], + [42115,0.017], + [42117,0.013], + [42119,0.059], + [42121,0.011], + [42123,0.011], + [42125,0.017], + [42127,0.045], + [42129,0.012], + [42131,0.019], + [42133,0.075], + [44001,0.03], + [44003,0.05], + [44005,0.057], + [44007,0.228], + [44009,0.032], + [45001,0.015], + [45003,0.057], + [45005,0.033], + [45007,0.038], + [45009,0.021], + [45011,0.025], + [45013,0.111], + [45015,0.066], + [45017,0.038], + [45019,0.051], + [45021,0.044], + [45023,0.02], + [45025,0.043], + [45027,0.031], + [45029,0.032], + [45031,0.02], + [45033,0.028], + [45035,0.054], + [45037,0.06], + [45039,0.022], + [45041,0.026], + [45043,0.031], + [45045,0.092], + [45047,0.06], + [45049,0.04], + [45051,0.06], + [45053,0.134], + [45055,0.044], + [45057,0.054], + [45059,0.049], + [45061,0.025], + [45063,0.06], + [45065,0.008], + [45067,0.028], + [45069,0.033], + [45071,0.075], + [45073,0.055], + [45075,0.022], + [45077,0.037], + [45079,0.052], + [45081,0.155], + [45083,0.068], + [45085,0.04], + [45087,0.016], + [45089,0.023], + [45091,0.055], + [46003,0.073], + [46005,0.101], + [46007,0.028], + [46009,0.027], + [46011,0.031], + [46013,0.029], + [46015,0.028], + [46017,0.041], + [46019,0.036], + [46021,0.002], + [46023,0.036], + [46025,0.033], + [46027,0.03], + [46029,0.023], + [46031,0.005], + [46033,0.039], + [46035,0.031], + [46037,0.023], + [46039,0.034], + [46041,0.01], + [46043,0.006], + [46045,0.025], + [46047,0.04], + [46049,0.003], + [46051,0.045], + [46053,0.009], + [46055,0.006], + [46057,0.043], + [46059,0.017], + [46061,0], + [46063,0.024], + [46065,0.032], + [46067,0.022], + [46069,0.007], + [46071,0.003], + [46073,0.03], + [46075,0], + [46077,0.022], + [46079,0.011], + [46081,0.033], + [46083,0.021], + [46085,0.013], + [46087,0.041], + [46089,0.013], + [46091,0.083], + [46093,0.042], + [46095,0.044], + [46097,0.02], + [46099,0.05], + [46101,0.044], + [46102,0.041], + [46103,0.052], + [46105,0.01], + [46107,0.016], + [46109,0.035], + [46111,0.037], + [46115,0.031], + [46117,0.029], + [46119,0.013], + [46121,0.012], + [46123,0.002], + [46125,0.024], + [46127,0.032], + [46129,0.022], + [46135,0.045], + [46137,0.003], + [47001,0.029], + [47003,0.124], + [47005,0.024], + [47007,0.025], + [47009,0.034], + [47011,0.062], + [47013,0.014], + [47015,0.022], + [47017,0.027], + [47019,0.019], + [47021,0.03], + [47023,0.026], + [47025,0.013], + [47027,0.026], + [47029,0.024], + [47031,0.043], + [47033,0.106], + [47035,0.03], + [47037,0.102], + [47039,0.014], + [47041,0.083], + [47043,0.036], + [47045,0.034], + [47047,0.027], + [47049,0.015], + [47051,0.034], + [47053,0.027], + [47055,0.025], + [47057,0.033], + [47059,0.029], + [47061,0.013], + [47063,0.117], + [47065,0.056], + [47067,0.016], + [47069,0.018], + [47071,0.026], + [47073,0.016], + [47075,0.043], + [47077,0.024], + [47079,0.026], + [47081,0.025], + [47083,0.004], + [47085,0.025], + [47087,0.021], + [47089,0.036], + [47091,0.02], + [47093,0.043], + [47095,0.023], + [47097,0.025], + [47099,0.022], + [47101,0.023], + [47103,0.035], + [47105,0.088], + [47107,0.04], + [47109,0.021], + [47111,0.052], + [47113,0.039], + [47115,0.018], + [47117,0.054], + [47119,0.058], + [47121,0.021], + [47123,0.044], + [47125,0.1], + [47127,0.002], + [47129,0.013], + [47131,0.044], + [47133,0.015], + [47135,0.014], + [47137,0.004], + [47139,0.021], + [47141,0.062], + [47143,0.05], + [47145,0.018], + [47147,0.069], + [47149,0.08], + [47151,0.01], + [47153,0.035], + [47155,0.06], + [47157,0.064], + [47159,0.027], + [47161,0.03], + [47163,0.019], + [47165,0.049], + [47167,0.028], + [47169,0.011], + [47171,0.049], + [47173,0.017], + [47175,0.007], + [47177,0.091], + [47179,0.034], + [47181,0.021], + [47183,0.026], + [47185,0.026], + [47187,0.048], + [47189,0.042], + [48001,0.178], + [48003,0.563], + [48005,0.221], + [48007,0.275], + [48009,0.083], + [48011,0.076], + [48013,0.643], + [48015,0.268], + [48017,0.621], + [48019,0.188], + [48021,0.377], + [48023,0.085], + [48025,0.589], + [48027,0.248], + [48029,0.602], + [48031,0.194], + [48033,0.137], + [48035,0.183], + [48037,0.076], + [48039,0.306], + [48041,0.256], + [48043,0.448], + [48045,0.356], + [48047,0.931], + [48049,0.222], + [48051,0.207], + [48053,0.222], + [48055,0.522], + [48057,0.489], + [48059,0.096], + [48061,0.897], + [48063,0.25], + [48065,0.099], + [48067,0.045], + [48069,0.646], + [48071,0.224], + [48073,0.231], + [48075,0.31], + [48077,0.063], + [48079,0.587], + [48081,0.215], + [48083,0.175], + [48085,0.153], + [48087,0.288], + [48089,0.297], + [48091,0.274], + [48093,0.279], + [48095,0.451], + [48097,0.182], + [48099,0.183], + [48101,0.231], + [48103,0.644], + [48105,0.619], + [48107,0.56], + [48109,0.71], + [48111,0.458], + [48113,0.402], + [48115,0.575], + [48117,0.728], + [48119,0.078], + [48121,0.193], + [48123,0.354], + [48125,0.298], + [48127,0.869], + [48129,0.111], + [48131,0.893], + [48133,0.164], + [48135,0.607], + [48137,0.566], + [48139,0.262], + [48141,0.826], + [48143,0.211], + [48145,0.232], + [48147,0.113], + [48149,0.21], + [48151,0.327], + [48153,0.587], + [48155,0.223], + [48157,0.245], + [48159,0.145], + [48161,0.155], + [48163,0.793], + [48165,0.415], + [48167,0.246], + [48169,0.522], + [48171,0.232], + [48173,0.438], + [48175,0.358], + [48177,0.507], + [48179,0.29], + [48181,0.134], + [48183,0.187], + [48185,0.242], + [48187,0.379], + [48189,0.594], + [48191,0.348], + [48193,0.127], + [48195,0.48], + [48197,0.19], + [48199,0.057], + [48201,0.429], + [48203,0.131], + [48205,0.267], + [48207,0.286], + [48209,0.389], + [48211,0.348], + [48213,0.128], + [48215,0.922], + [48217,0.206], + [48219,0.478], + [48221,0.124], + [48223,0.169], + [48225,0.111], + [48227,0.425], + [48229,0.778], + [48231,0.164], + [48233,0.233], + [48235,0.256], + [48237,0.169], + [48239,0.331], + [48241,0.067], + [48243,0.398], + [48245,0.207], + [48247,0.913], + [48249,0.803], + [48251,0.214], + [48253,0.275], + [48255,0.547], + [48257,0.214], + [48259,0.239], + [48261,0.947], + [48263,0.141], + [48265,0.269], + [48267,0.218], + [48269,0.329], + [48271,0.593], + [48273,0.729], + [48275,0.343], + [48277,0.079], + [48279,0.556], + [48281,0.194], + [48283,0.841], + [48285,0.189], + [48287,0.237], + [48289,0.146], + [48291,0.248], + [48293,0.219], + [48295,0.32], + [48297,0.4], + [48299,0.104], + [48301,0.122], + [48303,0.354], + [48305,0.472], + [48307,0.323], + [48309,0.263], + [48311,0.497], + [48313,0.232], + [48315,0.041], + [48317,0.45], + [48319,0.222], + [48321,0.425], + [48323,0.952], + [48325,0.52], + [48327,0.417], + [48329,0.447], + [48331,0.264], + [48333,0.21], + [48335,0.399], + [48337,0.11], + [48339,0.241], + [48341,0.561], + [48343,0.099], + [48345,0.196], + [48347,0.194], + [48349,0.273], + [48351,0.036], + [48353,0.377], + [48355,0.637], + [48357,0.542], + [48359,0.152], + [48361,0.077], + [48363,0.199], + [48365,0.087], + [48367,0.123], + [48369,0.633], + [48371,0.688], + [48373,0.153], + [48375,0.383], + [48377,0.837], + [48379,0.091], + [48381,0.216], + [48383,0.688], + [48385,0.263], + [48387,0.073], + [48389,0.747], + [48391,0.504], + [48393,0.133], + [48395,0.21], + [48397,0.176], + [48399,0.342], + [48401,0.168], + [48403,0.046], + [48405,0.072], + [48407,0.131], + [48409,0.578], + [48411,0.301], + [48413,0.53], + [48415,0.404], + [48417,0.115], + [48419,0.183], + [48421,0.446], + [48423,0.195], + [48425,0.186], + [48427,0.992], + [48429,0.237], + [48431,0.521], + [48433,0.213], + [48435,0.656], + [48437,0.44], + [48439,0.288], + [48441,0.244], + [48443,0.567], + [48445,0.55], + [48447,0.132], + [48449,0.43], + [48451,0.399], + [48453,0.338], + [48455,0.1], + [48457,0.077], + [48459,0.086], + [48461,0.537], + [48463,0.717], + [48465,0.82], + [48467,0.109], + [48469,0.469], + [48471,0.179], + [48473,0.301], + [48475,0.537], + [48477,0.161], + [48479,0.955], + [48481,0.414], + [48483,0.26], + [48485,0.192], + [48487,0.291], + [48489,0.882], + [48491,0.244], + [48493,0.397], + [48495,0.61], + [48497,0.193], + [48499,0.1], + [48501,0.665], + [48503,0.187], + [48505,0.944], + [48507,0.939], + [49001,0.12], + [49003,0.094], + [49005,0.107], + [49007,0.133], + [49009,0.021], + [49011,0.097], + [49013,0.082], + [49015,0.063], + [49017,0.061], + [49019,0.103], + [49021,0.087], + [49023,0.052], + [49025,0.047], + [49027,0.129], + [49029,0.029], + [49031,0.025], + [49033,0.107], + [49035,0.184], + [49037,0.057], + [49039,0.096], + [49041,0.052], + [49043,0.114], + [49045,0.124], + [49047,0.084], + [49049,0.118], + [49051,0.133], + [49053,0.105], + [49055,0.062], + [49057,0.184], + [50001,0.023], + [50003,0.02], + [50005,0.016], + [50007,0.023], + [50009,0.014], + [50011,0.016], + [50013,0.02], + [50015,0.018], + [50017,0.013], + [50019,0.015], + [50021,0.015], + [50023,0.019], + [50025,0.023], + [50027,0.017], + [51001,0.09], + [51003,0.058], + [51005,0.015], + [51007,0.03], + [51009,0.024], + [51011,0.017], + [51013,0.156], + [51015,0.028], + [51017,0.037], + [51019,0.022], + [51021,0.013], + [51023,0.017], + [51025,0.022], + [51027,0.005], + [51029,0.024], + [51031,0.025], + [51033,0.048], + [51035,0.035], + [51036,0.019], + [51037,0.022], + [51041,0.088], + [51043,0.056], + [51045,0], + [51047,0.107], + [51049,0.009], + [51051,0.009], + [51053,0.035], + [51057,0.036], + [51059,0.163], + [51061,0.083], + [51063,0.029], + [51065,0.035], + [51067,0.028], + [51069,0.086], + [51071,0.017], + [51073,0.036], + [51075,0.028], + [51077,0.034], + [51079,0.059], + [51081,0.025], + [51083,0.021], + [51085,0.03], + [51087,0.056], + [51089,0.055], + [51091,0], + [51093,0.031], + [51095,0.058], + [51097,0.032], + [51099,0.054], + [51101,0.026], + [51103,0.006], + [51105,0.02], + [51107,0.136], + [51109,0.029], + [51111,0.05], + [51113,0.029], + [51115,0.025], + [51117,0.03], + [51119,0.012], + [51121,0.032], + [51125,0.042], + [51127,0.033], + [51131,0.088], + [51133,0.009], + [51135,0.044], + [51137,0.05], + [51139,0.02], + [51141,0.031], + [51143,0.026], + [51145,0.022], + [51147,0.042], + [51149,0.081], + [51153,0.235], + [51155,0.018], + [51157,0.039], + [51159,0.071], + [51161,0.031], + [51163,0.019], + [51165,0.069], + [51167,0.012], + [51169,0.014], + [51171,0.072], + [51173,0.02], + [51175,0.017], + [51177,0.098], + [51179,0.13], + [51181,0.006], + [51183,0.03], + [51185,0.01], + [51187,0.046], + [51191,0.015], + [51193,0.065], + [51195,0.012], + [51197,0.013], + [51199,0.064], + [51510,0.167], + [51520,0.023], + [51530,0.018], + [51540,0.055], + [51550,0.062], + [51570,0.059], + [51580,0.024], + [51590,0.043], + [51595,0.068], + [51600,0.172], + [51610,0.107], + [51620,0.011], + [51630,0.107], + [51640,0.145], + [51650,0.058], + [51660,0.197], + [51670,0.079], + [51678,0.061], + [51680,0.042], + [51683,0.366], + [51685,0.397], + [51690,0.057], + [51700,0.09], + [51710,0.08], + [51720,0.012], + [51730,0.049], + [51735,0.028], + [51740,0.045], + [51750,0.029], + [51760,0.069], + [51770,0.063], + [51775,0.033], + [51790,0.031], + [51800,0.044], + [51810,0.082], + [51820,0.081], + [51830,0.071], + [51840,0.178], + [53001,0.636], + [53003,0.04], + [53005,0.217], + [53007,0.279], + [53009,0.063], + [53011,0.096], + [53013,0.078], + [53015,0.09], + [53017,0.316], + [53019,0.047], + [53021,0.531], + [53023,0.019], + [53025,0.416], + [53027,0.1], + [53029,0.077], + [53031,0.037], + [53033,0.097], + [53035,0.078], + [53037,0.088], + [53039,0.12], + [53041,0.102], + [53043,0.034], + [53045,0.1], + [53047,0.201], + [53049,0.098], + [53051,0.038], + [53053,0.109], + [53055,0.064], + [53057,0.184], + [53059,0.063], + [53061,0.102], + [53063,0.057], + [53065,0.037], + [53067,0.089], + [53069,0.069], + [53071,0.213], + [53073,0.094], + [53075,0.063], + [53077,0.493], + [54001,0.009], + [54003,0.044], + [54005,0.004], + [54007,0.002], + [54009,0.009], + [54011,0.014], + [54013,0.019], + [54015,0.002], + [54017,0.006], + [54019,0.012], + [54021,0.041], + [54023,0.007], + [54025,0.02], + [54027,0.015], + [54029,0.016], + [54031,0.016], + [54033,0.017], + [54035,0.007], + [54037,0.057], + [54039,0.011], + [54041,0.012], + [54043,0.007], + [54045,0.009], + [54047,0.015], + [54049,0.013], + [54051,0.01], + [54053,0.007], + [54055,0.012], + [54057,0.009], + [54059,0], + [54061,0.021], + [54063,0.009], + [54065,0.004], + [54067,0.008], + [54069,0.012], + [54071,0.008], + [54073,0.029], + [54075,0.006], + [54077,0.025], + [54079,0.012], + [54081,0.016], + [54083,0.01], + [54085,0.007], + [54087,0.011], + [54089,0.015], + [54091,0.01], + [54093,0.003], + [54095,0.004], + [54097,0.014], + [54099,0.007], + [54101,0.001], + [54103,0.009], + [54105,0.005], + [54107,0.012], + [54109,0.003], + [55001,0.039], + [55003,0.029], + [55005,0.025], + [55007,0.02], + [55009,0.086], + [55011,0.022], + [55013,0.019], + [55015,0.043], + [55017,0.018], + [55019,0.047], + [55021,0.034], + [55023,0.015], + [55025,0.064], + [55027,0.048], + [55029,0.031], + [55031,0.016], + [55033,0.019], + [55035,0.025], + [55037,0.014], + [55039,0.052], + [55041,0.025], + [55043,0.017], + [55045,0.031], + [55047,0.049], + [55049,0.018], + [55051,0.014], + [55053,0.035], + [55055,0.071], + [55057,0.031], + [55059,0.131], + [55061,0.03], + [55063,0.019], + [55065,0.039], + [55067,0.02], + [55069,0.016], + [55071,0.04], + [55073,0.028], + [55075,0.017], + [55077,0.034], + [55078,0.061], + [55079,0.15], + [55081,0.046], + [55083,0.018], + [55085,0.015], + [55087,0.043], + [55089,0.029], + [55091,0.019], + [55093,0.021], + [55095,0.019], + [55097,0.032], + [55099,0.018], + [55101,0.131], + [55103,0.023], + [55105,0.087], + [55107,0.019], + [55109,0.024], + [55111,0.051], + [55113,0.027], + [55115,0.028], + [55117,0.064], + [55119,0.021], + [55121,0.084], + [55123,0.016], + [55125,0.026], + [55127,0.111], + [55129,0.018], + [55131,0.032], + [55133,0.047], + [55135,0.031], + [55137,0.064], + [55139,0.041], + [55141,0.03], + [56001,0.095], + [56003,0.09], + [56005,0.087], + [56007,0.182], + [56009,0.081], + [56011,0.014], + [56013,0.069], + [56015,0.106], + [56017,0.038], + [56019,0.027], + [56021,0.146], + [56023,0.046], + [56025,0.084], + [56027,0.039], + [56029,0.054], + [56031,0.081], + [56033,0.042], + [56035,0.073], + [56037,0.159], + [56039,0.15], + [56041,0.091], + [56043,0.142], + [56045,0.011] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-mixed-2010.json b/data/regional/united-states/demographics/race/us-race-mixed-2010.json new file mode 100644 index 0000000..66f198c --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-mixed-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Race Mixed Population", + "description" : "Percent of the population that identifies as two or more races in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.mixed.2010"], + [1001,0.016], + [1003,0.015], + [1005,0.009], + [1007,0.009], + [1009,0.012], + [1011,0.008], + [1013,0.008], + [1015,0.017], + [1017,0.011], + [1019,0.015], + [1021,0.012], + [1023,0.004], + [1025,0.007], + [1027,0.017], + [1029,0.011], + [1031,0.025], + [1033,0.016], + [1035,0.01], + [1037,0.009], + [1039,0.014], + [1041,0.015], + [1043,0.011], + [1045,0.03], + [1047,0.007], + [1049,0.022], + [1051,0.014], + [1053,0.015], + [1055,0.015], + [1057,0.01], + [1059,0.017], + [1061,0.016], + [1063,0.005], + [1065,0.006], + [1067,0.01], + [1069,0.017], + [1071,0.026], + [1073,0.011], + [1075,0.013], + [1077,0.014], + [1079,0.043], + [1081,0.016], + [1083,0.018], + [1085,0.005], + [1087,0.011], + [1089,0.025], + [1091,0.008], + [1093,0.011], + [1095,0.017], + [1097,0.015], + [1099,0.014], + [1101,0.013], + [1103,0.02], + [1105,0.004], + [1107,0.012], + [1109,0.015], + [1111,0.011], + [1113,0.021], + [1115,0.013], + [1117,0.014], + [1119,0.003], + [1121,0.013], + [1123,0.01], + [1125,0.011], + [1127,0.012], + [1129,0.012], + [1131,0.004], + [1133,0.014], + [2013,0.049], + [2016,0.056], + [2020,0.081], + [2050,0.042], + [2060,0.168], + [2068,0.044], + [2070,0.09], + [2090,0.068], + [2100,0.059], + [2105,0.102], + [2110,0.095], + [2122,0.056], + [2130,0.093], + [2150,0.076], + [2158,0.02], + [2164,0.101], + [2170,0.065], + [2180,0.062], + [2185,0.052], + [2188,0.06], + [2195,0.085], + [2198,0.085], + [2220,0.098], + [2230,0.04], + [2240,0.049], + [2261,0.072], + [2275,0.094], + [2282,0.154], + [2290,0.056], + [4001,0.02], + [4003,0.04], + [4005,0.031], + [4007,0.02], + [4009,0.028], + [4011,0.038], + [4012,0.037], + [4013,0.035], + [4015,0.027], + [4017,0.025], + [4019,0.037], + [4021,0.038], + [4023,0.02], + [4025,0.025], + [4027,0.038], + [5001,0.013], + [5003,0.011], + [5005,0.015], + [5007,0.027], + [5009,0.018], + [5011,0.013], + [5013,0.014], + [5015,0.023], + [5017,0.008], + [5019,0.015], + [5021,0.013], + [5023,0.014], + [5025,0.007], + [5027,0.01], + [5029,0.02], + [5031,0.018], + [5033,0.029], + [5035,0.011], + [5037,0.01], + [5039,0.013], + [5041,0.009], + [5043,0.012], + [5045,0.02], + [5047,0.017], + [5049,0.017], + [5051,0.023], + [5053,0.011], + [5055,0.013], + [5057,0.019], + [5059,0.017], + [5061,0.013], + [5063,0.015], + [5065,0.013], + [5067,0.015], + [5069,0.012], + [5071,0.019], + [5073,0.008], + [5075,0.012], + [5077,0.012], + [5079,0.01], + [5081,0.02], + [5083,0.018], + [5085,0.018], + [5087,0.017], + [5089,0.016], + [5091,0.017], + [5093,0.015], + [5095,0.012], + [5097,0.02], + [5099,0.014], + [5101,0.022], + [5103,0.016], + [5105,0.016], + [5107,0.009], + [5109,0.016], + [5111,0.013], + [5113,0.023], + [5115,0.022], + [5117,0.009], + [5119,0.021], + [5121,0.014], + [5123,0.015], + [5125,0.014], + [5127,0.025], + [5129,0.022], + [5131,0.036], + [5133,0.031], + [5135,0.017], + [5137,0.016], + [5139,0.013], + [5141,0.02], + [5143,0.028], + [5145,0.018], + [5147,0.014], + [5149,0.017], + [6001,0.06], + [6003,0.024], + [6005,0.036], + [6007,0.047], + [6009,0.039], + [6011,0.036], + [6013,0.059], + [6015,0.045], + [6017,0.038], + [6019,0.045], + [6021,0.036], + [6023,0.053], + [6025,0.044], + [6027,0.035], + [6029,0.045], + [6031,0.049], + [6033,0.047], + [6035,0.035], + [6037,0.045], + [6039,0.042], + [6041,0.042], + [6043,0.041], + [6045,0.045], + [6047,0.047], + [6049,0.038], + [6051,0.029], + [6053,0.051], + [6055,0.041], + [6057,0.032], + [6059,0.042], + [6061,0.043], + [6063,0.036], + [6065,0.048], + [6067,0.066], + [6069,0.049], + [6071,0.05], + [6073,0.051], + [6075,0.047], + [6077,0.064], + [6079,0.038], + [6081,0.053], + [6083,0.046], + [6085,0.049], + [6087,0.047], + [6089,0.044], + [6091,0.024], + [6093,0.053], + [6095,0.076], + [6097,0.044], + [6099,0.054], + [6101,0.056], + [6103,0.043], + [6105,0.052], + [6107,0.042], + [6109,0.037], + [6111,0.045], + [6113,0.058], + [6115,0.071], + [8001,0.04], + [8003,0.044], + [8005,0.043], + [8007,0.028], + [8009,0.016], + [8011,0.019], + [8013,0.027], + [8014,0.028], + [8015,0.016], + [8017,0.01], + [8019,0.017], + [8021,0.041], + [8023,0.043], + [8025,0.017], + [8027,0.017], + [8029,0.023], + [8031,0.041], + [8033,0.024], + [8035,0.026], + [8037,0.021], + [8039,0.019], + [8041,0.051], + [8043,0.019], + [8045,0.026], + [8047,0.018], + [8049,0.016], + [8051,0.02], + [8053,0.018], + [8055,0.039], + [8057,0.011], + [8059,0.027], + [8061,0.015], + [8063,0.014], + [8065,0.036], + [8067,0.031], + [8069,0.026], + [8071,0.034], + [8073,0.019], + [8075,0.015], + [8077,0.027], + [8079,0.014], + [8081,0.022], + [8083,0.026], + [8085,0.024], + [8087,0.024], + [8089,0.038], + [8091,0.014], + [8093,0.024], + [8095,0.014], + [8097,0.014], + [8099,0.026], + [8101,0.037], + [8103,0.023], + [8105,0.032], + [8107,0.016], + [8109,0.028], + [8111,0.023], + [8113,0.018], + [8115,0.016], + [8117,0.016], + [8119,0.025], + [8121,0.015], + [8123,0.029], + [8125,0.011], + [9001,0.026], + [9003,0.027], + [9005,0.016], + [9007,0.021], + [9009,0.026], + [9011,0.037], + [9013,0.018], + [9015,0.023], + [10001,0.035], + [10003,0.025], + [10005,0.023], + [11001,0.029], + [12001,0.026], + [12003,0.016], + [12005,0.031], + [12007,0.016], + [12009,0.026], + [12011,0.029], + [12013,0.024], + [12015,0.017], + [12017,0.016], + [12019,0.029], + [12021,0.019], + [12023,0.019], + [12027,0.024], + [12029,0.015], + [12031,0.029], + [12033,0.032], + [12035,0.023], + [12037,0.017], + [12039,0.013], + [12041,0.015], + [12043,0.017], + [12045,0.018], + [12047,0.017], + [12049,0.02], + [12051,0.027], + [12053,0.02], + [12055,0.022], + [12057,0.031], + [12059,0.02], + [12061,0.016], + [12063,0.019], + [12065,0.013], + [12067,0.014], + [12069,0.023], + [12071,0.021], + [12073,0.022], + [12075,0.019], + [12077,0.017], + [12079,0.013], + [12081,0.02], + [12083,0.021], + [12085,0.016], + [12086,0.024], + [12087,0.018], + [12089,0.016], + [12091,0.039], + [12093,0.019], + [12095,0.034], + [12097,0.041], + [12099,0.023], + [12101,0.022], + [12103,0.022], + [12105,0.024], + [12107,0.017], + [12109,0.018], + [12111,0.026], + [12113,0.03], + [12115,0.016], + [12117,0.029], + [12119,0.011], + [12121,0.019], + [12123,0.017], + [12125,0.014], + [12127,0.021], + [12129,0.018], + [12131,0.024], + [12133,0.021], + [13001,0.011], + [13003,0.016], + [13005,0.013], + [13007,0.012], + [13009,0.012], + [13011,0.014], + [13013,0.023], + [13015,0.021], + [13017,0.013], + [13019,0.013], + [13021,0.014], + [13023,0.01], + [13025,0.015], + [13027,0.012], + [13029,0.025], + [13031,0.017], + [13033,0.013], + [13035,0.013], + [13037,0.01], + [13039,0.03], + [13043,0.01], + [13045,0.022], + [13047,0.016], + [13049,0.016], + [13051,0.021], + [13053,0.044], + [13055,0.016], + [13057,0.021], + [13059,0.022], + [13061,0.012], + [13063,0.025], + [13065,0.014], + [13067,0.027], + [13069,0.014], + [13071,0.014], + [13073,0.028], + [13075,0.014], + [13077,0.021], + [13079,0.013], + [13081,0.01], + [13083,0.013], + [13085,0.014], + [13087,0.012], + [13089,0.024], + [13091,0.01], + [13093,0.009], + [13095,0.012], + [13097,0.024], + [13099,0.008], + [13101,0.028], + [13103,0.019], + [13105,0.01], + [13107,0.009], + [13109,0.011], + [13111,0.012], + [13113,0.022], + [13115,0.019], + [13117,0.016], + [13119,0.017], + [13121,0.022], + [13123,0.013], + [13125,0.011], + [13127,0.018], + [13129,0.02], + [13131,0.016], + [13133,0.011], + [13135,0.031], + [13137,0.018], + [13139,0.022], + [13141,0.006], + [13143,0.014], + [13145,0.015], + [13147,0.013], + [13149,0.017], + [13151,0.024], + [13153,0.028], + [13155,0.009], + [13157,0.018], + [13159,0.017], + [13161,0.012], + [13163,0.009], + [13165,0.012], + [13167,0.008], + [13169,0.011], + [13171,0.017], + [13173,0.023], + [13175,0.012], + [13177,0.014], + [13179,0.047], + [13181,0.009], + [13183,0.034], + [13185,0.021], + [13187,0.018], + [13189,0.014], + [13191,0.012], + [13193,0.01], + [13195,0.012], + [13197,0.016], + [13199,0.012], + [13201,0.012], + [13205,0.01], + [13207,0.01], + [13209,0.011], + [13211,0.013], + [13213,0.016], + [13215,0.03], + [13217,0.021], + [13219,0.014], + [13221,0.019], + [13223,0.023], + [13225,0.015], + [13227,0.012], + [13229,0.014], + [13231,0.013], + [13233,0.018], + [13235,0.01], + [13237,0.012], + [13239,0.004], + [13241,0.015], + [13243,0.008], + [13245,0.026], + [13247,0.021], + [13249,0.01], + [13251,0.011], + [13253,0.01], + [13255,0.016], + [13257,0.02], + [13259,0.01], + [13261,0.012], + [13263,0.01], + [13265,0.014], + [13267,0.013], + [13269,0.008], + [13271,0.017], + [13273,0.009], + [13275,0.012], + [13277,0.016], + [13279,0.015], + [13281,0.006], + [13283,0.01], + [13285,0.015], + [13287,0.007], + [13289,0.011], + [13291,0.012], + [13293,0.012], + [13295,0.016], + [13297,0.015], + [13299,0.015], + [13301,0.006], + [13303,0.01], + [13305,0.02], + [13307,0.01], + [13309,0.008], + [13311,0.014], + [13313,0.026], + [13315,0.01], + [13317,0.015], + [13319,0.011], + [13321,0.011], + [15001,0.295], + [15003,0.223], + [15005,0.156], + [15007,0.249], + [15009,0.235], + [16001,0.028], + [16003,0.017], + [16005,0.027], + [16007,0.011], + [16009,0.036], + [16011,0.021], + [16013,0.015], + [16015,0.023], + [16017,0.021], + [16019,0.021], + [16021,0.021], + [16023,0.015], + [16025,0.032], + [16027,0.03], + [16029,0.015], + [16031,0.023], + [16033,0.015], + [16035,0.021], + [16037,0.01], + [16039,0.041], + [16041,0.016], + [16043,0.015], + [16045,0.022], + [16047,0.024], + [16049,0.019], + [16051,0.015], + [16053,0.021], + [16055,0.024], + [16057,0.025], + [16059,0.016], + [16061,0.024], + [16063,0.022], + [16065,0.015], + [16067,0.024], + [16069,0.025], + [16071,0.01], + [16073,0.024], + [16075,0.028], + [16077,0.024], + [16079,0.02], + [16081,0.015], + [16083,0.023], + [16085,0.014], + [16087,0.022], + [17001,0.016], + [17003,0.017], + [17005,0.018], + [17007,0.026], + [17009,0.006], + [17011,0.013], + [17013,0.004], + [17015,0.011], + [17017,0.014], + [17019,0.027], + [17021,0.009], + [17023,0.007], + [17025,0.008], + [17027,0.011], + [17029,0.015], + [17031,0.025], + [17033,0.009], + [17035,0.008], + [17037,0.02], + [17039,0.012], + [17041,0.012], + [17043,0.022], + [17045,0.007], + [17047,0.008], + [17049,0.008], + [17051,0.01], + [17053,0.011], + [17055,0.011], + [17057,0.009], + [17059,0.012], + [17061,0.007], + [17063,0.015], + [17065,0.007], + [17067,0.009], + [17069,0.008], + [17071,0.01], + [17073,0.014], + [17075,0.013], + [17077,0.026], + [17079,0.006], + [17081,0.016], + [17083,0.012], + [17085,0.009], + [17087,0.01], + [17089,0.026], + [17091,0.021], + [17093,0.023], + [17095,0.025], + [17097,0.026], + [17099,0.014], + [17101,0.01], + [17103,0.015], + [17105,0.013], + [17107,0.013], + [17109,0.018], + [17111,0.017], + [17113,0.023], + [17115,0.025], + [17117,0.009], + [17119,0.018], + [17121,0.016], + [17123,0.009], + [17125,0.009], + [17127,0.02], + [17129,0.011], + [17131,0.007], + [17133,0.008], + [17135,0.007], + [17137,0.016], + [17139,0.006], + [17141,0.014], + [17143,0.028], + [17145,0.014], + [17147,0.009], + [17149,0.007], + [17151,0.009], + [17153,0.019], + [17155,0.011], + [17157,0.009], + [17159,0.009], + [17161,0.03], + [17163,0.022], + [17165,0.018], + [17167,0.022], + [17169,0.005], + [17171,0.007], + [17173,0.006], + [17175,0.01], + [17177,0.025], + [17179,0.013], + [17181,0.015], + [17183,0.022], + [17185,0.011], + [17187,0.016], + [17189,0.008], + [17191,0.008], + [17193,0.007], + [17195,0.022], + [17197,0.023], + [17199,0.017], + [17201,0.028], + [17203,0.011], + [18001,0.009], + [18003,0.029], + [18005,0.016], + [18007,0.011], + [18009,0.013], + [18011,0.014], + [18013,0.011], + [18015,0.01], + [18017,0.016], + [18019,0.022], + [18021,0.009], + [18023,0.013], + [18025,0.011], + [18027,0.011], + [18029,0.01], + [18031,0.009], + [18033,0.012], + [18035,0.021], + [18037,0.009], + [18039,0.025], + [18041,0.01], + [18043,0.021], + [18045,0.01], + [18047,0.008], + [18049,0.011], + [18051,0.016], + [18053,0.024], + [18055,0.009], + [18057,0.018], + [18059,0.012], + [18061,0.01], + [18063,0.016], + [18065,0.012], + [18067,0.025], + [18069,0.011], + [18071,0.013], + [18073,0.01], + [18075,0.009], + [18077,0.013], + [18079,0.012], + [18081,0.015], + [18083,0.012], + [18085,0.014], + [18087,0.008], + [18089,0.024], + [18091,0.023], + [18093,0.011], + [18095,0.018], + [18097,0.028], + [18099,0.015], + [18101,0.007], + [18103,0.018], + [18105,0.025], + [18107,0.012], + [18109,0.01], + [18111,0.011], + [18113,0.013], + [18115,0.007], + [18117,0.012], + [18119,0.009], + [18121,0.006], + [18123,0.008], + [18125,0.008], + [18127,0.019], + [18129,0.011], + [18131,0.01], + [18133,0.011], + [18135,0.011], + [18137,0.009], + [18139,0.008], + [18141,0.029], + [18143,0.007], + [18145,0.012], + [18147,0.008], + [18149,0.013], + [18151,0.009], + [18153,0.01], + [18155,0.008], + [18157,0.022], + [18159,0.01], + [18161,0.011], + [18163,0.023], + [18165,0.008], + [18167,0.022], + [18169,0.011], + [18171,0.007], + [18173,0.013], + [18175,0.009], + [18177,0.027], + [18179,0.009], + [18181,0.014], + [18183,0.011], + [19001,0.007], + [19003,0.005], + [19005,0.006], + [19007,0.01], + [19009,0.006], + [19011,0.009], + [19013,0.023], + [19015,0.01], + [19017,0.01], + [19019,0.011], + [19021,0.018], + [19023,0.007], + [19025,0.006], + [19027,0.009], + [19029,0.006], + [19031,0.011], + [19033,0.016], + [19035,0.009], + [19037,0.005], + [19039,0.01], + [19041,0.011], + [19043,0.008], + [19045,0.018], + [19047,0.016], + [19049,0.015], + [19051,0.008], + [19053,0.01], + [19055,0.006], + [19057,0.023], + [19059,0.007], + [19061,0.013], + [19063,0.015], + [19065,0.009], + [19067,0.008], + [19069,0.016], + [19071,0.009], + [19073,0.007], + [19075,0.007], + [19077,0.009], + [19079,0.014], + [19081,0.009], + [19083,0.011], + [19085,0.008], + [19087,0.016], + [19089,0.008], + [19091,0.01], + [19093,0.006], + [19095,0.008], + [19097,0.01], + [19099,0.009], + [19101,0.016], + [19103,0.023], + [19105,0.006], + [19107,0.006], + [19109,0.008], + [19111,0.019], + [19113,0.023], + [19115,0.015], + [19117,0.006], + [19119,0.006], + [19121,0.009], + [19123,0.011], + [19125,0.01], + [19127,0.02], + [19129,0.011], + [19131,0.005], + [19133,0.01], + [19135,0.013], + [19137,0.009], + [19139,0.019], + [19141,0.008], + [19143,0.008], + [19145,0.014], + [19147,0.008], + [19149,0.01], + [19151,0.011], + [19153,0.024], + [19155,0.019], + [19157,0.014], + [19159,0.007], + [19161,0.008], + [19163,0.03], + [19165,0.007], + [19167,0.009], + [19169,0.017], + [19171,0.025], + [19173,0.009], + [19175,0.01], + [19177,0.007], + [19179,0.015], + [19181,0.012], + [19183,0.015], + [19185,0.007], + [19187,0.018], + [19189,0.01], + [19191,0.008], + [19193,0.032], + [19195,0.009], + [19197,0.016], + [20001,0.025], + [20003,0.012], + [20005,0.025], + [20007,0.014], + [20009,0.02], + [20011,0.023], + [20013,0.032], + [20015,0.022], + [20017,0.018], + [20019,0.038], + [20021,0.039], + [20023,0.007], + [20025,0.03], + [20027,0.012], + [20029,0.014], + [20031,0.015], + [20033,0.013], + [20035,0.034], + [20037,0.026], + [20039,0.009], + [20041,0.022], + [20043,0.023], + [20045,0.037], + [20047,0.011], + [20049,0.023], + [20051,0.016], + [20053,0.017], + [20055,0.029], + [20057,0.027], + [20059,0.028], + [20061,0.069], + [20063,0.006], + [20065,0.029], + [20067,0.023], + [20069,0.012], + [20071,0.014], + [20073,0.022], + [20075,0.014], + [20077,0.014], + [20079,0.023], + [20081,0.02], + [20083,0.016], + [20085,0.031], + [20087,0.017], + [20089,0.013], + [20091,0.025], + [20093,0.021], + [20095,0.013], + [20097,0.01], + [20099,0.04], + [20101,0.017], + [20103,0.033], + [20105,0.008], + [20107,0.015], + [20109,0.013], + [20111,0.027], + [20113,0.017], + [20115,0.016], + [20117,0.013], + [20119,0.017], + [20121,0.019], + [20123,0.008], + [20125,0.049], + [20127,0.016], + [20129,0.018], + [20131,0.01], + [20133,0.02], + [20135,0.009], + [20137,0.012], + [20139,0.015], + [20141,0.01], + [20143,0.014], + [20145,0.02], + [20147,0.01], + [20149,0.026], + [20151,0.019], + [20153,0.009], + [20155,0.026], + [20157,0.007], + [20159,0.027], + [20161,0.035], + [20163,0.009], + [20165,0.011], + [20167,0.013], + [20169,0.031], + [20171,0.012], + [20173,0.04], + [20175,0.031], + [20177,0.041], + [20179,0.011], + [20181,0.017], + [20183,0.016], + [20185,0.012], + [20187,0.022], + [20189,0.015], + [20191,0.024], + [20193,0.011], + [20195,0.008], + [20197,0.021], + [20199,0.011], + [20201,0.009], + [20203,0.017], + [20205,0.022], + [20207,0.019], + [20209,0.037], + [21001,0.011], + [21003,0.013], + [21005,0.012], + [21007,0.018], + [21009,0.017], + [21011,0.011], + [21013,0.015], + [21015,0.018], + [21017,0.018], + [21019,0.014], + [21021,0.021], + [21023,0.01], + [21025,0.005], + [21027,0.012], + [21029,0.012], + [21031,0.009], + [21033,0.013], + [21035,0.015], + [21037,0.015], + [21039,0.009], + [21041,0.023], + [21043,0.009], + [21045,0.009], + [21047,0.033], + [21049,0.014], + [21051,0.009], + [21053,0.012], + [21055,0.007], + [21057,0.013], + [21059,0.018], + [21061,0.009], + [21063,0.005], + [21065,0.007], + [21067,0.025], + [21069,0.008], + [21071,0.006], + [21073,0.022], + [21075,0.018], + [21077,0.02], + [21079,0.01], + [21081,0.009], + [21083,0.018], + [21085,0.01], + [21087,0.013], + [21089,0.01], + [21091,0.011], + [21093,0.035], + [21095,0.01], + [21097,0.012], + [21099,0.013], + [21101,0.017], + [21103,0.016], + [21105,0.016], + [21107,0.019], + [21109,0.005], + [21111,0.022], + [21113,0.018], + [21115,0.008], + [21117,0.02], + [21119,0.006], + [21121,0.011], + [21123,0.016], + [21125,0.01], + [21127,0.008], + [21129,0.007], + [21131,0.006], + [21133,0.005], + [21135,0.006], + [21137,0.015], + [21139,0.011], + [21141,0.015], + [21143,0.011], + [21145,0.021], + [21147,0.015], + [21149,0.008], + [21151,0.02], + [21153,0.007], + [21155,0.017], + [21157,0.008], + [21159,0.005], + [21161,0.018], + [21163,0.025], + [21165,0.012], + [21167,0.018], + [21169,0.009], + [21171,0.011], + [21173,0.011], + [21175,0.007], + [21177,0.011], + [21179,0.016], + [21181,0.007], + [21183,0.01], + [21185,0.017], + [21187,0.01], + [21189,0.006], + [21191,0.009], + [21193,0.01], + [21195,0.007], + [21197,0.009], + [21199,0.011], + [21201,0.01], + [21203,0.009], + [21205,0.01], + [21207,0.01], + [21209,0.018], + [21211,0.022], + [21213,0.018], + [21215,0.012], + [21217,0.016], + [21219,0.014], + [21221,0.017], + [21223,0.012], + [21225,0.015], + [21227,0.021], + [21229,0.014], + [21231,0.012], + [21233,0.014], + [21235,0.012], + [21237,0.006], + [21239,0.018], + [22001,0.013], + [22003,0.016], + [22005,0.012], + [22007,0.009], + [22009,0.016], + [22011,0.024], + [22013,0.012], + [22015,0.022], + [22017,0.015], + [22019,0.019], + [22021,0.009], + [22023,0.011], + [22025,0.007], + [22027,0.008], + [22029,0.009], + [22031,0.012], + [22033,0.013], + [22035,0.007], + [22037,0.011], + [22039,0.011], + [22041,0.008], + [22043,0.016], + [22045,0.016], + [22047,0.008], + [22049,0.012], + [22051,0.021], + [22053,0.019], + [22055,0.016], + [22057,0.018], + [22059,0.01], + [22061,0.011], + [22063,0.011], + [22065,0.009], + [22067,0.01], + [22069,0.021], + [22071,0.017], + [22073,0.011], + [22075,0.027], + [22077,0.01], + [22079,0.017], + [22081,0.006], + [22083,0.009], + [22085,0.034], + [22087,0.029], + [22089,0.016], + [22091,0.008], + [22093,0.007], + [22095,0.014], + [22097,0.013], + [22099,0.014], + [22101,0.02], + [22103,0.018], + [22105,0.014], + [22107,0.008], + [22109,0.021], + [22111,0.008], + [22113,0.014], + [22115,0.041], + [22117,0.011], + [22119,0.012], + [22121,0.011], + [22123,0.01], + [22125,0.006], + [22127,0.011], + [23001,0.02], + [23003,0.014], + [23005,0.018], + [23007,0.014], + [23009,0.012], + [23011,0.017], + [23013,0.014], + [23015,0.011], + [23017,0.015], + [23019,0.015], + [23021,0.012], + [23023,0.016], + [23025,0.013], + [23027,0.014], + [23029,0.017], + [23031,0.014], + [24001,0.016], + [24003,0.029], + [24005,0.024], + [24009,0.027], + [24011,0.021], + [24013,0.015], + [24015,0.022], + [24017,0.037], + [24019,0.019], + [24021,0.028], + [24023,0.007], + [24025,0.025], + [24027,0.036], + [24029,0.018], + [24031,0.04], + [24033,0.032], + [24035,0.017], + [24037,0.032], + [24039,0.017], + [24041,0.016], + [24043,0.026], + [24045,0.025], + [24047,0.017], + [24510,0.021], + [25001,0.022], + [25003,0.021], + [25005,0.026], + [25007,0.034], + [25009,0.026], + [25011,0.021], + [25013,0.029], + [25015,0.025], + [25017,0.025], + [25019,0.018], + [25021,0.019], + [25023,0.026], + [25025,0.039], + [25027,0.023], + [26001,0.009], + [26003,0.027], + [26005,0.019], + [26007,0.011], + [26009,0.014], + [26011,0.013], + [26013,0.044], + [26015,0.013], + [26017,0.022], + [26019,0.013], + [26021,0.024], + [26023,0.015], + [26025,0.031], + [26027,0.03], + [26029,0.018], + [26031,0.026], + [26033,0.046], + [26035,0.014], + [26037,0.02], + [26039,0.011], + [26041,0.021], + [26043,0.012], + [26045,0.026], + [26047,0.022], + [26049,0.026], + [26051,0.01], + [26053,0.014], + [26055,0.017], + [26057,0.014], + [26059,0.013], + [26061,0.013], + [26063,0.009], + [26065,0.04], + [26067,0.014], + [26069,0.015], + [26071,0.014], + [26073,0.028], + [26075,0.025], + [26077,0.033], + [26079,0.016], + [26081,0.03], + [26083,0.012], + [26085,0.026], + [26087,0.014], + [26089,0.017], + [26091,0.022], + [26093,0.013], + [26095,0.031], + [26097,0.053], + [26099,0.021], + [26101,0.019], + [26103,0.02], + [26105,0.019], + [26107,0.021], + [26109,0.012], + [26111,0.015], + [26113,0.012], + [26115,0.018], + [26117,0.016], + [26119,0.015], + [26121,0.028], + [26123,0.017], + [26125,0.022], + [26127,0.02], + [26129,0.014], + [26131,0.013], + [26133,0.016], + [26135,0.013], + [26137,0.015], + [26139,0.02], + [26141,0.01], + [26143,0.012], + [26145,0.025], + [26147,0.02], + [26149,0.022], + [26151,0.012], + [26153,0.033], + [26155,0.015], + [26157,0.012], + [26159,0.027], + [26161,0.034], + [26163,0.024], + [26165,0.015], + [27001,0.013], + [27003,0.026], + [27005,0.03], + [27007,0.031], + [27009,0.016], + [27011,0.008], + [27013,0.016], + [27015,0.007], + [27017,0.024], + [27019,0.016], + [27021,0.022], + [27023,0.012], + [27025,0.012], + [27027,0.022], + [27029,0.03], + [27031,0.021], + [27033,0.013], + [27035,0.015], + [27037,0.029], + [27039,0.014], + [27041,0.009], + [27043,0.009], + [27045,0.008], + [27047,0.017], + [27049,0.016], + [27051,0.011], + [27053,0.032], + [27055,0.012], + [27057,0.018], + [27059,0.016], + [27061,0.02], + [27063,0.01], + [27065,0.015], + [27067,0.012], + [27069,0.005], + [27071,0.019], + [27073,0.008], + [27075,0.013], + [27077,0.021], + [27079,0.011], + [27081,0.008], + [27083,0.016], + [27085,0.01], + [27087,0.086], + [27089,0.009], + [27091,0.009], + [27093,0.007], + [27095,0.019], + [27097,0.011], + [27099,0.019], + [27101,0.008], + [27103,0.014], + [27105,0.018], + [27107,0.023], + [27109,0.022], + [27111,0.012], + [27113,0.018], + [27115,0.019], + [27117,0.019], + [27119,0.021], + [27121,0.009], + [27123,0.035], + [27125,0.015], + [27127,0.02], + [27129,0.01], + [27131,0.018], + [27133,0.012], + [27135,0.013], + [27137,0.023], + [27139,0.023], + [27141,0.017], + [27143,0.012], + [27145,0.016], + [27147,0.014], + [27149,0.018], + [27151,0.009], + [27153,0.013], + [27155,0.011], + [27157,0.01], + [27159,0.015], + [27161,0.015], + [27163,0.021], + [27165,0.012], + [27167,0.011], + [27169,0.012], + [27171,0.015], + [27173,0.012], + [28001,0.014], + [28003,0.01], + [28005,0.006], + [28007,0.006], + [28009,0.01], + [28011,0.006], + [28013,0.011], + [28015,0.009], + [28017,0.01], + [28019,0.011], + [28021,0.006], + [28023,0.006], + [28025,0.006], + [28027,0.005], + [28029,0.008], + [28031,0.008], + [28033,0.016], + [28035,0.014], + [28037,0.006], + [28039,0.009], + [28041,0.009], + [28043,0.008], + [28045,0.021], + [28047,0.027], + [28049,0.009], + [28051,0.006], + [28053,0.007], + [28055,0.002], + [28057,0.006], + [28059,0.019], + [28061,0.006], + [28063,0.003], + [28065,0.007], + [28067,0.009], + [28069,0.007], + [28071,0.01], + [28073,0.011], + [28075,0.008], + [28077,0.007], + [28079,0.008], + [28081,0.012], + [28083,0.006], + [28085,0.008], + [28087,0.011], + [28089,0.008], + [28091,0.009], + [28093,0.008], + [28095,0.008], + [28097,0.005], + [28099,0.014], + [28101,0.009], + [28103,0.005], + [28105,0.012], + [28107,0.009], + [28109,0.017], + [28111,0.01], + [28113,0.008], + [28115,0.014], + [28117,0.01], + [28119,0.008], + [28121,0.011], + [28123,0.014], + [28125,0.004], + [28127,0.008], + [28129,0.006], + [28131,0.011], + [28133,0.005], + [28135,0.012], + [28137,0.012], + [28139,0.014], + [28141,0.008], + [28143,0.009], + [28145,0.012], + [28147,0.011], + [28149,0.009], + [28151,0.006], + [28153,0.008], + [28155,0.008], + [28157,0.003], + [28159,0.009], + [28161,0.009], + [28163,0.015], + [29001,0.017], + [29003,0.011], + [29005,0.007], + [29007,0.017], + [29009,0.019], + [29011,0.025], + [29013,0.014], + [29015,0.013], + [29017,0.008], + [29019,0.028], + [29021,0.024], + [29023,0.022], + [29025,0.017], + [29027,0.019], + [29029,0.013], + [29031,0.018], + [29033,0.011], + [29035,0.016], + [29037,0.02], + [29039,0.018], + [29041,0.008], + [29043,0.018], + [29045,0.01], + [29047,0.027], + [29049,0.016], + [29051,0.019], + [29053,0.017], + [29055,0.012], + [29057,0.022], + [29059,0.017], + [29061,0.012], + [29063,0.008], + [29065,0.016], + [29067,0.018], + [29069,0.016], + [29071,0.012], + [29073,0.011], + [29075,0.007], + [29077,0.026], + [29079,0.01], + [29081,0.009], + [29083,0.015], + [29085,0.015], + [29087,0.005], + [29089,0.019], + [29091,0.016], + [29093,0.015], + [29095,0.031], + [29097,0.032], + [29099,0.013], + [29101,0.026], + [29103,0.01], + [29105,0.019], + [29107,0.019], + [29109,0.017], + [29111,0.014], + [29113,0.018], + [29115,0.012], + [29117,0.012], + [29119,0.032], + [29121,0.016], + [29123,0.008], + [29125,0.011], + [29127,0.021], + [29129,0.01], + [29131,0.015], + [29133,0.011], + [29135,0.012], + [29137,0.012], + [29139,0.015], + [29141,0.018], + [29143,0.015], + [29145,0.031], + [29147,0.009], + [29149,0.017], + [29151,0.005], + [29153,0.014], + [29155,0.015], + [29157,0.009], + [29159,0.023], + [29161,0.022], + [29163,0.014], + [29165,0.025], + [29167,0.015], + [29169,0.048], + [29171,0.008], + [29173,0.01], + [29175,0.021], + [29177,0.014], + [29179,0.016], + [29181,0.014], + [29183,0.018], + [29185,0.018], + [29186,0.01], + [29187,0.012], + [29189,0.019], + [29195,0.024], + [29197,0.008], + [29199,0.005], + [29201,0.016], + [29203,0.023], + [29205,0.007], + [29207,0.01], + [29209,0.014], + [29211,0.012], + [29213,0.022], + [29215,0.018], + [29217,0.014], + [29219,0.018], + [29221,0.012], + [29223,0.016], + [29225,0.015], + [29227,0.006], + [29229,0.013], + [29510,0.024], + [30001,0.016], + [30003,0.026], + [30005,0.02], + [30007,0.015], + [30009,0.01], + [30011,0.008], + [30013,0.036], + [30015,0.016], + [30017,0.016], + [30019,0.017], + [30021,0.016], + [30023,0.025], + [30025,0.013], + [30027,0.015], + [30029,0.021], + [30031,0.019], + [30033,0.005], + [30035,0.028], + [30037,0.021], + [30039,0.017], + [30041,0.033], + [30043,0.022], + [30045,0.007], + [30047,0.073], + [30049,0.024], + [30051,0.012], + [30053,0.023], + [30055,0.012], + [30057,0.014], + [30059,0.013], + [30061,0.024], + [30063,0.026], + [30065,0.019], + [30067,0.016], + [30069,0.012], + [30071,0.04], + [30073,0.024], + [30075,0.021], + [30077,0.013], + [30079,0.028], + [30081,0.019], + [30083,0.021], + [30085,0.03], + [30087,0.028], + [30089,0.031], + [30091,0.02], + [30093,0.021], + [30095,0.016], + [30097,0.015], + [30099,0.019], + [30101,0.019], + [30103,0.029], + [30105,0.021], + [30107,0.024], + [30109,0.012], + [30111,0.028], + [31001,0.013], + [31003,0.006], + [31005,0.009], + [31007,0.007], + [31009,0.006], + [31011,0.003], + [31013,0.025], + [31015,0.01], + [31017,0.008], + [31019,0.014], + [31021,0.012], + [31023,0.007], + [31025,0.015], + [31027,0.007], + [31029,0.012], + [31031,0.025], + [31033,0.013], + [31035,0.015], + [31037,0.02], + [31039,0.011], + [31041,0.01], + [31043,0.023], + [31045,0.025], + [31047,0.021], + [31049,0.012], + [31051,0.01], + [31053,0.014], + [31055,0.028], + [31057,0.013], + [31059,0.008], + [31061,0.011], + [31063,0.008], + [31065,0.011], + [31067,0.013], + [31069,0.014], + [31071,0.002], + [31073,0.013], + [31075,0.008], + [31077,0.005], + [31079,0.021], + [31081,0.007], + [31083,0.005], + [31085,0.001], + [31087,0.009], + [31089,0.005], + [31091,0.005], + [31093,0.011], + [31095,0.012], + [31097,0.005], + [31099,0.012], + [31101,0.016], + [31103,0.004], + [31105,0.018], + [31107,0.013], + [31109,0.028], + [31111,0.014], + [31113,0.003], + [31115,0.002], + [31117,0.015], + [31119,0.017], + [31121,0.01], + [31123,0.015], + [31125,0.01], + [31127,0.01], + [31129,0.014], + [31131,0.011], + [31133,0.012], + [31135,0.004], + [31137,0.01], + [31139,0.005], + [31141,0.015], + [31143,0.01], + [31145,0.011], + [31147,0.018], + [31149,0.004], + [31151,0.016], + [31153,0.031], + [31155,0.011], + [31157,0.02], + [31159,0.011], + [31161,0.03], + [31163,0.004], + [31165,0.011], + [31167,0.011], + [31169,0.009], + [31171,0.011], + [31173,0.019], + [31175,0.008], + [31177,0.01], + [31179,0.011], + [31181,0.015], + [31183,0.009], + [31185,0.01], + [32001,0.042], + [32003,0.051], + [32005,0.031], + [32007,0.032], + [32009,0.043], + [32011,0.022], + [32013,0.028], + [32015,0.025], + [32017,0.023], + [32019,0.037], + [32021,0.044], + [32023,0.035], + [32027,0.031], + [32029,0.022], + [32031,0.038], + [32033,0.025], + [32510,0.029], + [33001,0.013], + [33003,0.011], + [33005,0.014], + [33007,0.014], + [33009,0.018], + [33011,0.02], + [33013,0.014], + [33015,0.014], + [33017,0.019], + [33019,0.014], + [34001,0.032], + [34003,0.025], + [34005,0.029], + [34007,0.026], + [34009,0.019], + [34011,0.035], + [34013,0.032], + [34015,0.021], + [34017,0.044], + [34019,0.013], + [34021,0.028], + [34023,0.03], + [34025,0.02], + [34027,0.021], + [34029,0.015], + [34031,0.037], + [34033,0.022], + [34035,0.025], + [34037,0.016], + [34039,0.031], + [34041,0.018], + [35001,0.044], + [35003,0.031], + [35005,0.032], + [35006,0.031], + [35007,0.036], + [35009,0.041], + [35011,0.039], + [35013,0.03], + [35015,0.03], + [35017,0.028], + [35019,0.033], + [35021,0.014], + [35023,0.018], + [35025,0.026], + [35027,0.025], + [35028,0.026], + [35029,0.026], + [35031,0.031], + [35033,0.033], + [35035,0.042], + [35037,0.034], + [35039,0.033], + [35041,0.032], + [35043,0.039], + [35045,0.035], + [35047,0.039], + [35049,0.036], + [35051,0.033], + [35053,0.028], + [35055,0.049], + [35057,0.043], + [35059,0.023], + [35061,0.04], + [36001,0.025], + [36003,0.011], + [36005,0.053], + [36007,0.025], + [36009,0.017], + [36011,0.018], + [36013,0.02], + [36015,0.027], + [36017,0.013], + [36019,0.014], + [36021,0.02], + [36023,0.017], + [36025,0.013], + [36027,0.026], + [36029,0.018], + [36031,0.012], + [36033,0.012], + [36035,0.014], + [36037,0.018], + [36039,0.017], + [36041,0.011], + [36043,0.012], + [36045,0.028], + [36047,0.03], + [36049,0.009], + [36051,0.014], + [36053,0.013], + [36055,0.026], + [36057,0.02], + [36059,0.024], + [36061,0.04], + [36063,0.022], + [36065,0.021], + [36067,0.028], + [36069,0.017], + [36071,0.031], + [36073,0.019], + [36075,0.013], + [36077,0.017], + [36079,0.02], + [36081,0.045], + [36083,0.024], + [36085,0.026], + [36087,0.025], + [36089,0.014], + [36091,0.017], + [36093,0.037], + [36095,0.014], + [36097,0.013], + [36099,0.013], + [36101,0.014], + [36103,0.024], + [36105,0.029], + [36107,0.011], + [36109,0.032], + [36111,0.028], + [36113,0.014], + [36115,0.011], + [36117,0.019], + [36119,0.032], + [36121,0.009], + [36123,0.011], + [37001,0.021], + [37003,0.014], + [37005,0.011], + [37007,0.013], + [37009,0.01], + [37011,0.008], + [37013,0.013], + [37015,0.009], + [37017,0.015], + [37019,0.018], + [37021,0.021], + [37023,0.018], + [37025,0.021], + [37027,0.015], + [37029,0.021], + [37031,0.02], + [37033,0.016], + [37035,0.019], + [37037,0.019], + [37039,0.025], + [37041,0.012], + [37043,0.014], + [37045,0.015], + [37047,0.015], + [37049,0.027], + [37051,0.046], + [37053,0.018], + [37055,0.018], + [37057,0.015], + [37059,0.017], + [37061,0.016], + [37063,0.026], + [37065,0.01], + [37067,0.022], + [37069,0.018], + [37071,0.018], + [37073,0.018], + [37075,0.017], + [37077,0.017], + [37079,0.015], + [37081,0.023], + [37083,0.012], + [37085,0.031], + [37087,0.011], + [37089,0.019], + [37091,0.012], + [37093,0.045], + [37095,0.012], + [37097,0.018], + [37099,0.019], + [37101,0.02], + [37103,0.019], + [37105,0.024], + [37107,0.013], + [37109,0.016], + [37111,0.012], + [37113,0.011], + [37115,0.013], + [37117,0.01], + [37119,0.026], + [37121,0.011], + [37123,0.014], + [37125,0.017], + [37127,0.016], + [37129,0.02], + [37131,0.01], + [37133,0.044], + [37135,0.025], + [37137,0.014], + [37139,0.022], + [37141,0.018], + [37143,0.013], + [37145,0.015], + [37147,0.02], + [37149,0.014], + [37151,0.017], + [37153,0.021], + [37155,0.025], + [37157,0.018], + [37159,0.016], + [37161,0.018], + [37163,0.02], + [37165,0.022], + [37167,0.012], + [37169,0.012], + [37171,0.014], + [37173,0.042], + [37175,0.017], + [37177,0.014], + [37179,0.019], + [37181,0.013], + [37183,0.025], + [37185,0.016], + [37187,0.012], + [37189,0.014], + [37191,0.023], + [37193,0.013], + [37195,0.016], + [37197,0.012], + [37199,0.009], + [38001,0.011], + [38003,0.014], + [38005,0.014], + [38007,0.001], + [38009,0.018], + [38011,0.005], + [38013,0.006], + [38015,0.014], + [38017,0.019], + [38019,0.008], + [38021,0.012], + [38023,0.008], + [38025,0.017], + [38027,0.01], + [38029,0.008], + [38031,0.005], + [38033,0.008], + [38035,0.024], + [38037,0.013], + [38039,0.002], + [38041,0.013], + [38043,0.004], + [38045,0.006], + [38047,0.007], + [38049,0.009], + [38051,0.006], + [38053,0.016], + [38055,0.015], + [38057,0.011], + [38059,0.016], + [38061,0.026], + [38063,0.015], + [38065,0.007], + [38067,0.013], + [38069,0.008], + [38071,0.026], + [38073,0.009], + [38075,0.012], + [38077,0.013], + [38079,0.021], + [38081,0.007], + [38083,0.012], + [38085,0.029], + [38087,0.003], + [38089,0.013], + [38091,0.006], + [38093,0.013], + [38095,0.007], + [38097,0.012], + [38099,0.013], + [38101,0.027], + [38103,0.006], + [38105,0.029], + [39001,0.013], + [39003,0.026], + [39005,0.01], + [39007,0.021], + [39009,0.021], + [39011,0.009], + [39013,0.013], + [39015,0.01], + [39017,0.021], + [39019,0.011], + [39021,0.019], + [39023,0.025], + [39025,0.013], + [39027,0.019], + [39029,0.013], + [39031,0.012], + [39033,0.011], + [39035,0.021], + [39037,0.009], + [39039,0.02], + [39041,0.018], + [39043,0.028], + [39045,0.019], + [39047,0.017], + [39049,0.03], + [39051,0.015], + [39053,0.016], + [39055,0.008], + [39057,0.026], + [39059,0.018], + [39061,0.021], + [39063,0.018], + [39065,0.013], + [39067,0.016], + [39069,0.013], + [39071,0.015], + [39073,0.011], + [39075,0.005], + [39077,0.016], + [39079,0.014], + [39081,0.017], + [39083,0.012], + [39085,0.015], + [39087,0.014], + [39089,0.019], + [39091,0.019], + [39093,0.03], + [39095,0.031], + [39097,0.015], + [39099,0.021], + [39101,0.017], + [39103,0.012], + [39105,0.012], + [39107,0.009], + [39109,0.018], + [39111,0.012], + [39113,0.024], + [39115,0.033], + [39117,0.013], + [39119,0.025], + [39121,0.008], + [39123,0.013], + [39125,0.016], + [39127,0.014], + [39129,0.012], + [39131,0.016], + [39133,0.017], + [39135,0.012], + [39137,0.009], + [39139,0.019], + [39141,0.021], + [39143,0.026], + [39145,0.017], + [39147,0.019], + [39149,0.019], + [39151,0.022], + [39153,0.021], + [39155,0.018], + [39157,0.012], + [39159,0.014], + [39161,0.014], + [39163,0.011], + [39165,0.015], + [39167,0.015], + [39169,0.014], + [39171,0.012], + [39173,0.017], + [39175,0.01], + [40001,0.105], + [40003,0.021], + [40005,0.071], + [40007,0.031], + [40009,0.028], + [40011,0.038], + [40013,0.071], + [40015,0.06], + [40017,0.041], + [40019,0.066], + [40021,0.091], + [40023,0.066], + [40025,0.018], + [40027,0.056], + [40029,0.078], + [40031,0.065], + [40033,0.055], + [40035,0.085], + [40037,0.066], + [40039,0.039], + [40041,0.08], + [40043,0.032], + [40045,0.016], + [40047,0.035], + [40049,0.049], + [40051,0.044], + [40053,0.024], + [40055,0.035], + [40057,0.041], + [40059,0.023], + [40061,0.07], + [40063,0.067], + [40065,0.049], + [40067,0.047], + [40069,0.079], + [40071,0.05], + [40073,0.032], + [40075,0.044], + [40077,0.077], + [40079,0.06], + [40081,0.051], + [40083,0.041], + [40085,0.049], + [40087,0.053], + [40089,0.062], + [40091,0.072], + [40093,0.025], + [40095,0.06], + [40097,0.09], + [40099,0.062], + [40101,0.082], + [40103,0.041], + [40105,0.093], + [40107,0.065], + [40109,0.053], + [40111,0.08], + [40113,0.071], + [40115,0.076], + [40117,0.062], + [40119,0.052], + [40121,0.076], + [40123,0.072], + [40125,0.063], + [40127,0.057], + [40129,0.023], + [40131,0.081], + [40133,0.072], + [40135,0.093], + [40137,0.048], + [40139,0.028], + [40141,0.041], + [40143,0.058], + [40145,0.074], + [40147,0.061], + [40149,0.042], + [40151,0.027], + [40153,0.026], + [41001,0.024], + [41003,0.036], + [41005,0.032], + [41007,0.028], + [41009,0.034], + [41011,0.043], + [41013,0.02], + [41015,0.037], + [41017,0.025], + [41019,0.032], + [41021,0.014], + [41023,0.023], + [41025,0.03], + [41027,0.032], + [41029,0.035], + [41031,0.038], + [41033,0.032], + [41035,0.041], + [41037,0.033], + [41039,0.042], + [41041,0.037], + [41043,0.033], + [41045,0.029], + [41047,0.039], + [41049,0.026], + [41051,0.046], + [41053,0.038], + [41055,0.018], + [41057,0.024], + [41059,0.031], + [41061,0.023], + [41063,0.02], + [41065,0.025], + [41067,0.043], + [41069,0.031], + [41071,0.033], + [42001,0.013], + [42003,0.018], + [42005,0.008], + [42007,0.017], + [42009,0.008], + [42011,0.025], + [42013,0.012], + [42015,0.01], + [42017,0.017], + [42019,0.009], + [42021,0.012], + [42023,0.008], + [42025,0.012], + [42027,0.015], + [42029,0.018], + [42031,0.008], + [42033,0.009], + [42035,0.008], + [42037,0.011], + [42039,0.011], + [42041,0.018], + [42043,0.031], + [42045,0.02], + [42047,0.007], + [42049,0.021], + [42051,0.013], + [42053,0.006], + [42055,0.018], + [42057,0.01], + [42059,0.01], + [42061,0.009], + [42063,0.009], + [42065,0.008], + [42067,0.01], + [42069,0.015], + [42071,0.02], + [42073,0.016], + [42075,0.016], + [42077,0.029], + [42079,0.015], + [42081,0.017], + [42083,0.009], + [42085,0.015], + [42087,0.01], + [42089,0.029], + [42091,0.019], + [42093,0.01], + [42095,0.022], + [42097,0.01], + [42099,0.01], + [42101,0.028], + [42103,0.021], + [42105,0.008], + [42107,0.01], + [42109,0.008], + [42111,0.006], + [42113,0.007], + [42115,0.008], + [42117,0.01], + [42119,0.016], + [42121,0.011], + [42123,0.008], + [42125,0.015], + [42127,0.011], + [42129,0.012], + [42131,0.009], + [42133,0.02], + [44001,0.015], + [44003,0.018], + [44005,0.03], + [44007,0.042], + [44009,0.018], + [45001,0.011], + [45003,0.019], + [45005,0.008], + [45007,0.015], + [45009,0.01], + [45011,0.015], + [45013,0.021], + [45015,0.027], + [45017,0.012], + [45019,0.016], + [45021,0.014], + [45023,0.015], + [45025,0.016], + [45027,0.008], + [45029,0.015], + [45031,0.011], + [45033,0.016], + [45035,0.026], + [45037,0.013], + [45039,0.011], + [45041,0.011], + [45043,0.009], + [45045,0.019], + [45047,0.012], + [45049,0.013], + [45051,0.02], + [45053,0.014], + [45055,0.016], + [45057,0.013], + [45059,0.013], + [45061,0.009], + [45063,0.019], + [45065,0.009], + [45067,0.012], + [45069,0.018], + [45071,0.012], + [45073,0.016], + [45075,0.012], + [45077,0.015], + [45079,0.022], + [45081,0.014], + [45083,0.017], + [45085,0.019], + [45087,0.012], + [45089,0.008], + [45091,0.018], + [46003,0.005], + [46005,0.016], + [46007,0.04], + [46009,0.014], + [46011,0.014], + [46013,0.017], + [46015,0.024], + [46017,0.009], + [46019,0.026], + [46021,0.008], + [46023,0.027], + [46025,0.008], + [46027,0.023], + [46029,0.013], + [46031,0.026], + [46033,0.02], + [46035,0.016], + [46037,0.017], + [46039,0.009], + [46041,0.036], + [46043,0.009], + [46045,0.01], + [46047,0.029], + [46049,0.007], + [46051,0.008], + [46053,0.022], + [46055,0.026], + [46057,0.008], + [46059,0.008], + [46061,0.005], + [46063,0.017], + [46065,0.023], + [46067,0.009], + [46069,0.019], + [46071,0.048], + [46073,0.007], + [46075,0.019], + [46077,0.008], + [46079,0.011], + [46081,0.02], + [46083,0.014], + [46085,0.029], + [46087,0.007], + [46089,0.013], + [46091,0.011], + [46093,0.029], + [46095,0.056], + [46097,0.008], + [46099,0.023], + [46101,0.027], + [46102,0.009], + [46103,0.038], + [46105,0.011], + [46107,0.009], + [46109,0.03], + [46111,0.011], + [46115,0.009], + [46117,0.028], + [46119,0.022], + [46121,0.018], + [46123,0.024], + [46125,0.009], + [46127,0.016], + [46129,0.026], + [46135,0.014], + [46137,0.03], + [47001,0.019], + [47003,0.021], + [47005,0.014], + [47007,0.012], + [47009,0.016], + [47011,0.018], + [47013,0.011], + [47015,0.013], + [47017,0.016], + [47019,0.012], + [47021,0.013], + [47023,0.016], + [47025,0.012], + [47027,0.012], + [47029,0.017], + [47031,0.018], + [47033,0.015], + [47035,0.01], + [47037,0.025], + [47039,0.012], + [47041,0.013], + [47043,0.018], + [47045,0.018], + [47047,0.009], + [47049,0.009], + [47051,0.017], + [47053,0.013], + [47055,0.02], + [47057,0.01], + [47059,0.012], + [47061,0.011], + [47063,0.02], + [47065,0.017], + [47067,0.011], + [47069,0.01], + [47071,0.015], + [47073,0.011], + [47075,0.009], + [47077,0.017], + [47079,0.016], + [47081,0.014], + [47083,0.016], + [47085,0.012], + [47087,0.01], + [47089,0.014], + [47091,0.01], + [47093,0.019], + [47095,0.013], + [47097,0.013], + [47099,0.016], + [47101,0.015], + [47103,0.018], + [47105,0.011], + [47107,0.02], + [47109,0.013], + [47111,0.01], + [47113,0.015], + [47115,0.012], + [47117,0.017], + [47119,0.02], + [47121,0.013], + [47123,0.017], + [47125,0.044], + [47127,0.011], + [47129,0.012], + [47131,0.011], + [47133,0.011], + [47135,0.015], + [47137,0.006], + [47139,0.013], + [47141,0.015], + [47143,0.016], + [47145,0.016], + [47147,0.014], + [47149,0.024], + [47151,0.009], + [47153,0.012], + [47155,0.013], + [47157,0.014], + [47159,0.013], + [47161,0.018], + [47163,0.013], + [47165,0.016], + [47167,0.016], + [47169,0.018], + [47171,0.011], + [47173,0.013], + [47175,0.009], + [47177,0.016], + [47179,0.017], + [47181,0.01], + [47183,0.014], + [47185,0.014], + [47187,0.015], + [47189,0.016], + [48001,0.017], + [48003,0.02], + [48005,0.018], + [48007,0.023], + [48009,0.015], + [48011,0.011], + [48013,0.023], + [48015,0.022], + [48017,0.02], + [48019,0.018], + [48021,0.029], + [48023,0.021], + [48025,0.023], + [48027,0.05], + [48029,0.035], + [48031,0.019], + [48033,0.016], + [48035,0.017], + [48037,0.021], + [48039,0.026], + [48041,0.023], + [48043,0.028], + [48045,0.024], + [48047,0.014], + [48049,0.021], + [48051,0.019], + [48053,0.019], + [48055,0.025], + [48057,0.021], + [48059,0.018], + [48061,0.015], + [48063,0.027], + [48065,0.017], + [48067,0.014], + [48069,0.016], + [48071,0.021], + [48073,0.022], + [48075,0.014], + [48077,0.017], + [48079,0.027], + [48081,0.019], + [48083,0.019], + [48085,0.03], + [48087,0.041], + [48089,0.019], + [48091,0.022], + [48093,0.016], + [48095,0.019], + [48097,0.022], + [48099,0.05], + [48101,0.021], + [48103,0.023], + [48105,0.017], + [48107,0.02], + [48109,0.028], + [48111,0.037], + [48113,0.028], + [48115,0.023], + [48117,0.024], + [48119,0.028], + [48121,0.029], + [48123,0.023], + [48125,0.017], + [48127,0.016], + [48129,0.018], + [48131,0.017], + [48133,0.016], + [48135,0.025], + [48137,0.011], + [48139,0.022], + [48141,0.025], + [48143,0.017], + [48145,0.019], + [48147,0.021], + [48149,0.014], + [48151,0.02], + [48153,0.012], + [48155,0.007], + [48157,0.029], + [48159,0.018], + [48161,0.016], + [48163,0.02], + [48165,0.02], + [48167,0.027], + [48169,0.012], + [48171,0.012], + [48173,0.012], + [48175,0.024], + [48177,0.022], + [48179,0.024], + [48181,0.027], + [48183,0.023], + [48185,0.022], + [48187,0.03], + [48189,0.029], + [48191,0.016], + [48193,0.01], + [48195,0.023], + [48197,0.026], + [48199,0.013], + [48201,0.032], + [48203,0.017], + [48205,0.011], + [48207,0.026], + [48209,0.028], + [48211,0.018], + [48213,0.018], + [48215,0.013], + [48217,0.02], + [48219,0.025], + [48221,0.015], + [48223,0.02], + [48225,0.014], + [48227,0.021], + [48229,0.022], + [48231,0.024], + [48233,0.027], + [48235,0.021], + [48237,0.011], + [48239,0.021], + [48241,0.015], + [48243,0.02], + [48245,0.02], + [48247,0.015], + [48249,0.016], + [48251,0.021], + [48253,0.017], + [48255,0.013], + [48257,0.023], + [48259,0.019], + [48261,0.029], + [48263,0.014], + [48265,0.021], + [48267,0.008], + [48269,0.014], + [48271,0.021], + [48273,0.024], + [48275,0.03], + [48277,0.027], + [48279,0.023], + [48281,0.032], + [48283,0.012], + [48285,0.017], + [48287,0.019], + [48289,0.014], + [48291,0.02], + [48293,0.02], + [48295,0.022], + [48297,0.015], + [48299,0.014], + [48301,0.073], + [48303,0.025], + [48305,0.023], + [48307,0.018], + [48309,0.025], + [48311,0.025], + [48313,0.017], + [48315,0.021], + [48317,0.018], + [48319,0.01], + [48321,0.023], + [48323,0.01], + [48325,0.022], + [48327,0.017], + [48329,0.024], + [48331,0.018], + [48333,0.015], + [48335,0.016], + [48337,0.016], + [48339,0.023], + [48341,0.021], + [48343,0.02], + [48345,0.011], + [48347,0.02], + [48349,0.022], + [48351,0.015], + [48353,0.023], + [48355,0.024], + [48357,0.023], + [48359,0.015], + [48361,0.017], + [48363,0.018], + [48365,0.018], + [48367,0.018], + [48369,0.021], + [48371,0.021], + [48373,0.017], + [48375,0.03], + [48377,0.019], + [48379,0.016], + [48381,0.022], + [48383,0.018], + [48385,0.02], + [48387,0.018], + [48389,0.015], + [48391,0.02], + [48393,0.02], + [48395,0.02], + [48397,0.021], + [48399,0.017], + [48401,0.02], + [48403,0.016], + [48405,0.014], + [48407,0.02], + [48409,0.024], + [48411,0.015], + [48413,0.028], + [48415,0.023], + [48417,0.018], + [48419,0.014], + [48421,0.015], + [48423,0.02], + [48425,0.027], + [48427,0.005], + [48429,0.017], + [48431,0.019], + [48433,0.019], + [48435,0.015], + [48437,0.019], + [48439,0.03], + [48441,0.032], + [48443,0.015], + [48445,0.026], + [48447,0.008], + [48449,0.023], + [48451,0.028], + [48453,0.033], + [48455,0.015], + [48457,0.012], + [48459,0.022], + [48461,0.021], + [48463,0.03], + [48465,0.021], + [48467,0.018], + [48469,0.024], + [48471,0.021], + [48473,0.022], + [48475,0.033], + [48477,0.016], + [48479,0.015], + [48481,0.018], + [48483,0.023], + [48485,0.029], + [48487,0.025], + [48489,0.018], + [48491,0.032], + [48493,0.021], + [48495,0.031], + [48497,0.021], + [48499,0.014], + [48501,0.027], + [48503,0.019], + [48505,0.006], + [48507,0.014], + [49001,0.014], + [49003,0.022], + [49005,0.019], + [49007,0.024], + [49009,0.01], + [49011,0.027], + [49013,0.029], + [49015,0.009], + [49017,0.009], + [49019,0.02], + [49021,0.023], + [49023,0.015], + [49025,0.013], + [49027,0.015], + [49029,0.01], + [49031,0.013], + [49033,0.012], + [49035,0.031], + [49037,0.023], + [49039,0.018], + [49041,0.015], + [49043,0.016], + [49045,0.028], + [49047,0.023], + [49049,0.027], + [49051,0.014], + [49053,0.023], + [49055,0.017], + [49057,0.03], + [50001,0.017], + [50003,0.013], + [50005,0.014], + [50007,0.019], + [50009,0.013], + [50011,0.021], + [50013,0.028], + [50015,0.015], + [50017,0.015], + [50019,0.016], + [50021,0.013], + [50023,0.018], + [50025,0.02], + [50027,0.017], + [51001,0.016], + [51003,0.024], + [51005,0.014], + [51007,0.014], + [51009,0.021], + [51011,0.017], + [51013,0.037], + [51015,0.012], + [51017,0.008], + [51019,0.012], + [51021,0.007], + [51023,0.01], + [51025,0.009], + [51027,0.005], + [51029,0.016], + [51031,0.017], + [51033,0.029], + [51035,0.006], + [51036,0.026], + [51037,0.014], + [51041,0.026], + [51043,0.019], + [51045,0.007], + [51047,0.028], + [51049,0.019], + [51051,0.005], + [51053,0.015], + [51057,0.021], + [51059,0.041], + [51061,0.024], + [51063,0.011], + [51065,0.021], + [51067,0.012], + [51069,0.02], + [51071,0.009], + [51073,0.023], + [51075,0.012], + [51077,0.009], + [51079,0.022], + [51081,0.008], + [51083,0.011], + [51085,0.015], + [51087,0.023], + [51089,0.016], + [51091,0.002], + [51093,0.018], + [51095,0.026], + [51097,0.018], + [51099,0.029], + [51101,0.023], + [51103,0.009], + [51105,0.009], + [51107,0.04], + [51109,0.023], + [51111,0.017], + [51113,0.022], + [51115,0.019], + [51117,0.015], + [51119,0.015], + [51121,0.021], + [51125,0.017], + [51127,0.023], + [51131,0.014], + [51133,0.012], + [51135,0.013], + [51137,0.024], + [51139,0.011], + [51141,0.011], + [51143,0.011], + [51145,0.012], + [51147,0.016], + [51149,0.028], + [51153,0.051], + [51155,0.014], + [51157,0.016], + [51159,0.015], + [51161,0.015], + [51163,0.014], + [51165,0.014], + [51167,0.006], + [51169,0.007], + [51171,0.016], + [51173,0.01], + [51175,0.014], + [51177,0.033], + [51179,0.04], + [51181,0.017], + [51183,0.008], + [51185,0.009], + [51187,0.022], + [51191,0.007], + [51193,0.022], + [51195,0.009], + [51197,0.012], + [51199,0.034], + [51510,0.037], + [51520,0.019], + [51530,0.017], + [51540,0.03], + [51550,0.03], + [51570,0.022], + [51580,0.019], + [51590,0.013], + [51595,0.015], + [51600,0.04], + [51610,0.04], + [51620,0.019], + [51630,0.039], + [51640,0.02], + [51650,0.037], + [51660,0.031], + [51670,0.032], + [51678,0.018], + [51680,0.022], + [51683,0.043], + [51685,0.054], + [51690,0.019], + [51700,0.043], + [51710,0.036], + [51720,0.024], + [51730,0.018], + [51735,0.014], + [51740,0.026], + [51750,0.025], + [51760,0.023], + [51770,0.028], + [51775,0.015], + [51790,0.023], + [51800,0.023], + [51810,0.04], + [51820,0.032], + [51830,0.035], + [51840,0.031], + [53001,0.028], + [53003,0.024], + [53005,0.036], + [53007,0.027], + [53009,0.038], + [53011,0.04], + [53013,0.027], + [53015,0.037], + [53017,0.026], + [53019,0.048], + [53021,0.032], + [53023,0.019], + [53025,0.035], + [53027,0.039], + [53029,0.045], + [53031,0.034], + [53033,0.05], + [53035,0.058], + [53037,0.03], + [53039,0.033], + [53041,0.032], + [53043,0.022], + [53045,0.041], + [53047,0.035], + [53049,0.034], + [53051,0.029], + [53053,0.068], + [53055,0.025], + [53057,0.032], + [53059,0.03], + [53061,0.046], + [53063,0.038], + [53065,0.033], + [53067,0.053], + [53069,0.031], + [53071,0.031], + [53073,0.038], + [53075,0.036], + [53077,0.037], + [54001,0.015], + [54003,0.026], + [54005,0.006], + [54007,0.009], + [54009,0.011], + [54011,0.02], + [54013,0.007], + [54015,0.008], + [54017,0.011], + [54019,0.013], + [54021,0.017], + [54023,0.009], + [54025,0.015], + [54027,0.011], + [54029,0.013], + [54031,0.01], + [54033,0.015], + [54035,0.009], + [54037,0.026], + [54039,0.02], + [54041,0.01], + [54043,0.006], + [54045,0.008], + [54047,0.011], + [54049,0.015], + [54051,0.009], + [54053,0.01], + [54055,0.014], + [54057,0.012], + [54059,0.009], + [54061,0.018], + [54063,0.013], + [54065,0.013], + [54067,0.009], + [54069,0.019], + [54071,0.012], + [54073,0.01], + [54075,0.01], + [54077,0.008], + [54079,0.011], + [54081,0.017], + [54083,0.008], + [54085,0.008], + [54087,0.009], + [54089,0.013], + [54091,0.01], + [54093,0.006], + [54095,0.005], + [54097,0.01], + [54099,0.008], + [54101,0.01], + [54103,0.006], + [54105,0.009], + [54107,0.015], + [54109,0.01], + [55001,0.013], + [55003,0.033], + [55005,0.011], + [55007,0.029], + [55009,0.022], + [55011,0.008], + [55013,0.024], + [55015,0.012], + [55017,0.01], + [55019,0.005], + [55021,0.011], + [55023,0.008], + [55025,0.025], + [55027,0.01], + [55029,0.01], + [55031,0.027], + [55033,0.012], + [55035,0.016], + [55037,0.011], + [55039,0.013], + [55041,0.024], + [55043,0.006], + [55045,0.009], + [55047,0.007], + [55049,0.008], + [55051,0.009], + [55053,0.015], + [55055,0.013], + [55057,0.012], + [55059,0.029], + [55061,0.009], + [55063,0.016], + [55065,0.006], + [55067,0.014], + [55069,0.01], + [55071,0.013], + [55073,0.013], + [55075,0.011], + [55077,0.008], + [55078,0.013], + [55079,0.03], + [55081,0.014], + [55083,0.01], + [55085,0.013], + [55087,0.015], + [55089,0.011], + [55091,0.006], + [55093,0.013], + [55095,0.01], + [55097,0.012], + [55099,0.01], + [55101,0.025], + [55103,0.007], + [55105,0.023], + [55107,0.01], + [55109,0.014], + [55111,0.012], + [55113,0.031], + [55115,0.02], + [55117,0.016], + [55119,0.007], + [55121,0.009], + [55123,0.009], + [55125,0.012], + [55127,0.015], + [55129,0.015], + [55131,0.012], + [55133,0.013], + [55135,0.009], + [55137,0.012], + [55139,0.015], + [55141,0.011], + [56001,0.027], + [56003,0.012], + [56005,0.021], + [56007,0.022], + [56009,0.017], + [56011,0.012], + [56013,0.028], + [56015,0.012], + [56017,0.015], + [56019,0.011], + [56021,0.031], + [56023,0.012], + [56025,0.024], + [56027,0.016], + [56029,0.016], + [56031,0.015], + [56033,0.015], + [56035,0.014], + [56037,0.023], + [56039,0.016], + [56041,0.02], + [56043,0.024], + [56045,0.017] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-mixed-2017.json b/data/regional/united-states/demographics/race/us-race-mixed-2017.json new file mode 100644 index 0000000..41136f6 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-mixed-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Race Mixed Population", + "description" : "Percent of the population that identifies as two or more races in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.mixed.2017"], + [1001,0.0084], + [1003,0.0082], + [1005,0.0041], + [1007,0.0042], + [1009,0.0085], + [1011,0.0033], + [1013,0.0074], + [1015,0.0114], + [1017,0.0049], + [1019,0.0052], + [1021,0.0087], + [1023,0.0049], + [1025,0.0022], + [1027,0.0049], + [1029,0.0071], + [1031,0.0161], + [1033,0.0099], + [1035,0.0098], + [1037,0.0064], + [1039,0.0061], + [1041,0.0085], + [1043,0.0067], + [1045,0.0196], + [1047,0.0033], + [1049,0.0121], + [1051,0.0078], + [1053,0.0067], + [1055,0.0074], + [1057,0.0096], + [1059,0.0039], + [1061,0.0105], + [1063,0.0098], + [1065,0.0013], + [1067,0.0044], + [1069,0.01], + [1071,0.0144], + [1073,0.0079], + [1075,0.003], + [1077,0.0084], + [1079,0.0264], + [1081,0.009], + [1083,0.0107], + [1085,0.0035], + [1087,0.004], + [1089,0.0148], + [1091,0.0009], + [1093,0.0094], + [1095,0.0093], + [1097,0.0094], + [1099,0.0081], + [1101,0.0092], + [1103,0.0109], + [1105,0], + [1107,0.0074], + [1109,0.0102], + [1111,0.0093], + [1113,0.0198], + [1115,0.0064], + [1117,0.0089], + [1119,0.0025], + [1121,0.0085], + [1123,0.0039], + [1125,0.0058], + [1127,0.0091], + [1129,0.0065], + [1131,0.0023], + [1133,0.0089], + [2013,0.031], + [2016,0.0367], + [2020,0.0486], + [2050,0.0212], + [2060,0.0447], + [2068,0.0484], + [2070,0.0347], + [2090,0.0403], + [2100,0.0329], + [2105,0.0417], + [2110,0.0463], + [2122,0.03], + [2130,0.0471], + [2150,0.0358], + [2158,null], + [2164,0.0338], + [2170,0.0424], + [2180,0.0375], + [2185,0.0311], + [2188,0.0192], + [2195,0.0386], + [2198,0.0508], + [2220,0.0598], + [2230,0.025], + [2240,0.0295], + [2261,0.0422], + [2275,0.043], + [2282,0.0814], + [2290,0.0277], + [4001,0.0113], + [4003,0.0227], + [4005,0.0179], + [4007,0.0144], + [4009,0.013], + [4011,0.002], + [4012,0.0154], + [4013,0.0173], + [4015,0.0113], + [4017,0.0159], + [4019,0.0224], + [4021,0.0179], + [4023,0.0053], + [4025,0.0112], + [4027,0.0126], + [5001,0.0053], + [5003,0.0044], + [5005,0.0073], + [5007,0.0137], + [5009,0.008], + [5011,0.0014], + [5013,0.0047], + [5015,0.0109], + [5017,0.0033], + [5019,0.0076], + [5021,0.0062], + [5023,0.0032], + [5025,0.0106], + [5027,0.0036], + [5029,0.0151], + [5031,0.0147], + [5033,0.0161], + [5035,0.0233], + [5037,0.0119], + [5039,0.0076], + [5041,0.0053], + [5043,0.0048], + [5045,0.0113], + [5047,0.0078], + [5049,0.0092], + [5051,0.0122], + [5053,0.0079], + [5055,0.0087], + [5057,0.0124], + [5059,0.0119], + [5061,0.0092], + [5063,0.011], + [5065,0.0066], + [5067,0.0141], + [5069,0.0057], + [5071,0.0124], + [5073,0.0043], + [5075,0.0068], + [5077,0.0042], + [5079,0.0017], + [5081,0.0084], + [5083,0.01], + [5085,0.0114], + [5087,0.0124], + [5089,0.0078], + [5091,0.0113], + [5093,0.0078], + [5095,0.0114], + [5097,0.0073], + [5099,0.0064], + [5101,0.0119], + [5103,0.0074], + [5105,0.0113], + [5107,0.0045], + [5109,0.0102], + [5111,0.0228], + [5113,0.016], + [5115,0.0144], + [5117,0.0032], + [5119,0.0142], + [5121,0.0085], + [5123,0.0054], + [5125,0.0095], + [5127,0.0141], + [5129,0.0118], + [5131,0.0206], + [5133,0.0115], + [5135,0.0152], + [5137,0.0123], + [5139,0.0047], + [5141,0.0135], + [5143,0.0163], + [5145,0.0128], + [5147,0.006], + [5149,0.0034], + [6001,0.0319], + [6003,0.0333], + [6005,0.0232], + [6007,0.0305], + [6009,0.0193], + [6011,0.013], + [6013,0.0333], + [6015,0.0367], + [6017,0.0183], + [6019,0.0198], + [6021,0.0107], + [6023,0.0289], + [6025,0.0231], + [6027,0.0145], + [6029,0.0168], + [6031,0.021], + [6033,0.0127], + [6035,0.0094], + [6037,0.0191], + [6039,0.016], + [6041,0.0236], + [6043,0.0206], + [6045,0.0255], + [6047,0.0227], + [6049,0.0109], + [6051,0.0143], + [6053,0.0206], + [6055,0.0189], + [6057,0.0165], + [6059,0.0195], + [6061,0.0245], + [6063,0.0217], + [6065,0.0225], + [6067,0.0352], + [6069,0.0231], + [6071,0.0234], + [6073,0.0254], + [6075,0.0253], + [6077,0.0487], + [6079,0.0174], + [6081,0.0267], + [6083,0.0219], + [6085,0.0246], + [6087,0.0231], + [6089,0.0218], + [6091,0.0095], + [6093,0.0315], + [6095,0.0368], + [6097,0.0265], + [6099,0.0215], + [6101,0.0325], + [6103,0.0202], + [6105,0.0151], + [6107,0.0157], + [6109,0.0224], + [6111,0.0218], + [6113,0.0311], + [6115,0.0411], + [8001,0.0174], + [8003,0.015], + [8005,0.0222], + [8007,0.0054], + [8009,0.007], + [8011,0.0065], + [8013,0.0147], + [8014,0.0181], + [8015,0.0132], + [8017,0.0106], + [8019,0.0126], + [8021,0.0096], + [8023,0.0156], + [8025,0.0253], + [8027,0.0133], + [8029,0.0066], + [8031,0.0172], + [8033,0.0167], + [8035,0.0151], + [8037,0.0084], + [8039,0.013], + [8041,0.0286], + [8043,0.0095], + [8045,0.0126], + [8047,0.0149], + [8049,0.0015], + [8051,0.0092], + [8053,0.0079], + [8055,0.0068], + [8057,0.0018], + [8059,0.0137], + [8061,0.0351], + [8063,0.005], + [8065,0.0057], + [8067,0.0117], + [8069,0.0158], + [8071,0.0211], + [8073,0.005], + [8075,0.0226], + [8077,0.0117], + [8079,0.0126], + [8081,0.0093], + [8083,0.0143], + [8085,0.0082], + [8087,0.0222], + [8089,0.0101], + [8091,0.0047], + [8093,0.0069], + [8095,0.0106], + [8097,0.0077], + [8099,0.0104], + [8101,0.0207], + [8103,0.0101], + [8105,0.0071], + [8107,0.0043], + [8109,0.0158], + [8111,0], + [8113,0.0085], + [8115,0.018], + [8117,0.0099], + [8119,0.0125], + [8121,0.0063], + [8123,0.0136], + [8125,0.0094], + [9001,0.0142], + [9003,0.0168], + [9005,0.008], + [9007,0.0099], + [9009,0.0148], + [9011,0.0261], + [9013,0.0117], + [9015,0.0179], + [10001,0.0211], + [10003,0.0127], + [10005,0.0114], + [11001,0.0143], + [12001,0.0158], + [12003,0.0043], + [12005,0.0163], + [12007,0.0083], + [12009,0.0141], + [12011,0.0152], + [12013,0.0151], + [12015,0.01], + [12017,0.0075], + [12019,0.0216], + [12021,0.0059], + [12023,0.0131], + [12027,0.0058], + [12029,0.0167], + [12031,0.0161], + [12033,0.026], + [12035,0.0107], + [12037,0.0097], + [12039,0.0062], + [12041,0.0074], + [12043,0.0072], + [12045,0.0141], + [12047,0.0083], + [12049,0.0051], + [12051,0.0145], + [12053,0.0102], + [12055,0.0106], + [12057,0.0166], + [12059,0.0095], + [12061,0.0098], + [12063,0.0085], + [12065,0.0058], + [12067,0.0124], + [12069,0.0111], + [12071,0.0089], + [12073,0.0117], + [12075,0.0131], + [12077,0.005], + [12079,0.0028], + [12081,0.0085], + [12083,0.0125], + [12085,0.0081], + [12086,0.0076], + [12087,0.0077], + [12089,0.0058], + [12091,0.0216], + [12093,0.0067], + [12095,0.017], + [12097,0.02], + [12099,0.0108], + [12101,0.0121], + [12103,0.0142], + [12105,0.0124], + [12107,0.0109], + [12109,0.0115], + [12111,0.011], + [12113,0.0208], + [12115,0.0078], + [12117,0.0165], + [12119,0.0079], + [12121,0.0113], + [12123,0.0077], + [12125,0.0079], + [12127,0.0103], + [12129,0.0072], + [12131,0.0149], + [12133,0.009], + [13001,0.0068], + [13003,0.0045], + [13005,0.0114], + [13007,0], + [13009,0.0087], + [13011,0.008], + [13013,0.0127], + [13015,0.009], + [13017,0.0032], + [13019,0.0044], + [13021,0.0087], + [13023,0.0049], + [13025,0.0073], + [13027,0.0144], + [13029,0.0141], + [13031,0.013], + [13033,0.0036], + [13035,0.0053], + [13037,0.0068], + [13039,0.0176], + [13043,0.0115], + [13045,0.0106], + [13047,0.0107], + [13049,0.0136], + [13051,0.0136], + [13053,0.0239], + [13055,0.0071], + [13057,0.0108], + [13059,0.0113], + [13061,0.0248], + [13063,0.0112], + [13065,0.006], + [13067,0.0142], + [13069,0.0047], + [13071,0.0091], + [13073,0.0155], + [13075,0.0065], + [13077,0.0123], + [13079,0.0074], + [13081,0.0077], + [13083,0.0048], + [13085,0.0079], + [13087,0.0038], + [13089,0.0133], + [13091,0.016], + [13093,0.0089], + [13095,0.0089], + [13097,0.01], + [13099,0.0034], + [13101,0.0178], + [13103,0.0106], + [13105,0.0024], + [13107,0.0101], + [13109,0.0032], + [13111,0.0078], + [13113,0.0161], + [13115,0.0083], + [13117,0.0103], + [13119,0.0057], + [13121,0.0117], + [13123,0.008], + [13125,0.0093], + [13127,0.013], + [13129,0.0078], + [13131,0.0074], + [13133,0.0074], + [13135,0.0145], + [13137,0.0084], + [13139,0.0101], + [13141,0.0026], + [13143,0.0103], + [13145,0.0155], + [13147,0.007], + [13149,0.02], + [13151,0.0156], + [13153,0.0169], + [13155,0.0132], + [13157,0.0101], + [13159,0.006], + [13161,0.0058], + [13163,0.0066], + [13165,0.0039], + [13167,0.0055], + [13169,0.0058], + [13171,0.0193], + [13173,0.006], + [13175,0.0042], + [13177,0.0131], + [13179,0.0264], + [13181,0.0026], + [13183,0.0263], + [13185,0.01], + [13187,0.0074], + [13189,0.0069], + [13191,0.0069], + [13193,0.0052], + [13195,0.0081], + [13197,0.0087], + [13199,0.0103], + [13201,0.0006], + [13205,0.0071], + [13207,0.0048], + [13209,0.0068], + [13211,0.0071], + [13213,0.005], + [13215,0.0194], + [13217,0.0129], + [13219,0.0073], + [13221,0.0078], + [13223,0.0119], + [13225,0.0045], + [13227,0.0117], + [13229,0.0075], + [13231,0.0066], + [13233,0.0077], + [13235,0.0073], + [13237,0.0075], + [13239,0.0082], + [13241,0.0056], + [13243,0.0049], + [13245,0.0123], + [13247,0.0111], + [13249,0.0049], + [13251,0.0071], + [13253,0.0068], + [13255,0.0081], + [13257,0.0081], + [13259,0.0128], + [13261,0.0097], + [13263,0.0023], + [13265,0.0008], + [13267,0.0106], + [13269,0.0014], + [13271,0.0025], + [13273,0.0048], + [13275,0.0114], + [13277,0.0072], + [13279,0.0098], + [13281,0.0101], + [13283,0.0014], + [13285,0.0115], + [13287,0.0032], + [13289,0.0097], + [13291,0.0045], + [13293,0.0042], + [13295,0.0098], + [13297,0.0077], + [13299,0.0063], + [13301,0.0037], + [13303,0.0047], + [13305,0.0141], + [13307,0.0032], + [13309,0.0007], + [13311,0.0074], + [13313,0.0071], + [13315,0.0044], + [13317,0.0044], + [13319,0.0106], + [13321,0.006], + [15001,0.1432], + [15003,0.1158], + [15005,0.064], + [15007,0.1065], + [15009,0.115], + [16001,0.0151], + [16003,0.0096], + [16005,0.0156], + [16007,0.0054], + [16009,0.0119], + [16011,0.0155], + [16013,0.0068], + [16015,0.0118], + [16017,0.0122], + [16019,0.0129], + [16021,0.0134], + [16023,0.0017], + [16025,0.0017], + [16027,0.0157], + [16029,0.0045], + [16031,0.006], + [16033,0.0104], + [16035,0.0098], + [16037,0.0136], + [16039,0.0147], + [16041,0.0054], + [16043,0.0138], + [16045,0.0136], + [16047,0.0125], + [16049,0.0111], + [16051,0.0153], + [16053,0.0089], + [16055,0.0131], + [16057,0.0124], + [16059,0.0135], + [16061,0.0158], + [16063,0.0146], + [16065,0.0108], + [16067,0.0079], + [16069,0.0138], + [16071,0.0107], + [16073,0.0113], + [16075,0.0167], + [16077,0.0035], + [16079,0.012], + [16081,0.0093], + [16083,0.0074], + [16085,0.0026], + [16087,0.0149], + [17001,0.0074], + [17003,0.0109], + [17005,0.006], + [17007,0.0109], + [17009,0.0047], + [17011,0.0077], + [17013,0.0059], + [17015,0.006], + [17017,0.0061], + [17019,0.0138], + [17021,0.0033], + [17023,0.0076], + [17025,0.0037], + [17027,0.006], + [17029,0.008], + [17031,0.0125], + [17033,0.0086], + [17035,0.0068], + [17037,0.0125], + [17039,0.0379], + [17041,0.0064], + [17043,0.013], + [17045,0.0038], + [17047,0.0068], + [17049,0.0054], + [17051,0.0035], + [17053,0.0043], + [17055,0.005], + [17057,0.0051], + [17059,0.0094], + [17061,0.0059], + [17063,0.0072], + [17065,0], + [17067,0.0062], + [17069,0.0083], + [17071,0.0071], + [17073,0.008], + [17075,0.0059], + [17077,0.0168], + [17079,0.0041], + [17081,0.0118], + [17083,0.0093], + [17085,0.0056], + [17087,0.003], + [17089,0.0121], + [17091,0.0095], + [17093,0.0127], + [17095,0.0081], + [17097,0.0136], + [17099,0.0069], + [17101,0.0125], + [17103,0.0087], + [17105,0.009], + [17107,0.0141], + [17109,0.01], + [17111,0.0095], + [17113,0.011], + [17115,0.0294], + [17117,0.0075], + [17119,0.0098], + [17121,0.0111], + [17123,0.0062], + [17125,0.007], + [17127,0.0133], + [17129,0.0068], + [17131,0.0064], + [17133,0.0046], + [17135,0.0068], + [17137,0.0092], + [17139,0.0037], + [17141,0.008], + [17143,0.0183], + [17145,0.007], + [17147,0.0235], + [17149,0.0052], + [17151,0.0077], + [17153,0.0151], + [17155,0.0086], + [17157,0.0074], + [17159,0.0066], + [17161,0.0177], + [17163,0.0145], + [17165,0.0128], + [17167,0.012], + [17169,0.0038], + [17171,0.0041], + [17173,0.0018], + [17175,0.0049], + [17177,0.0155], + [17179,0.007], + [17181,0.0139], + [17183,0.0073], + [17185,0.0072], + [17187,0.0096], + [17189,0.0061], + [17191,0.0046], + [17193,0.0034], + [17195,0.0094], + [17197,0.0137], + [17199,0.012], + [17201,0.0152], + [17203,0.0068], + [18001,0.0021], + [18003,0.0176], + [18005,0.0094], + [18007,0.0052], + [18009,0.0083], + [18011,0.0082], + [18013,0.0075], + [18015,0.0061], + [18017,0.0132], + [18019,0.0168], + [18021,0.0078], + [18023,0.0049], + [18025,0.0079], + [18027,0.0048], + [18029,0.0042], + [18031,0.0047], + [18033,0.0088], + [18035,0.0108], + [18037,0.0045], + [18039,0.0154], + [18041,0.0025], + [18043,0.0105], + [18045,0.0069], + [18047,0.0018], + [18049,0.0051], + [18051,0.0088], + [18053,0.0139], + [18055,0.0062], + [18057,0.0112], + [18059,0.0098], + [18061,0.0065], + [18063,0.0085], + [18065,0.008], + [18067,0.0116], + [18069,0.0043], + [18071,0.0053], + [18073,0.008], + [18075,0.0052], + [18077,0.006], + [18079,0.0014], + [18081,0.0056], + [18083,0.0061], + [18085,0.0092], + [18087,0.0084], + [18089,0.0144], + [18091,0.0145], + [18093,0.0078], + [18095,0.0137], + [18097,0.0154], + [18099,0.0091], + [18101,0.0033], + [18103,0.0076], + [18105,0.0162], + [18107,0.01], + [18109,0.0063], + [18111,0.0089], + [18113,0.0072], + [18115,0.0021], + [18117,0.0056], + [18119,0.006], + [18121,0.01], + [18123,0.0092], + [18125,0.0034], + [18127,0.0104], + [18129,0.005], + [18131,0.0082], + [18133,0.007], + [18135,0.008], + [18137,0.0029], + [18139,0.0039], + [18141,0.0157], + [18143,0.0067], + [18145,0.0072], + [18147,0.0053], + [18149,0.0065], + [18151,0.0085], + [18153,0.0082], + [18155,0.0082], + [18157,0.0112], + [18159,0.01], + [18161,0.0178], + [18163,0.0132], + [18165,0.0048], + [18167,0.0182], + [18169,0.007], + [18171,0.006], + [18173,0.0065], + [18175,0.0057], + [18177,0.0128], + [18179,0.0045], + [18181,0.0084], + [18183,0.0096], + [19001,0.0055], + [19003,0.005], + [19005,0.0076], + [19007,0.0063], + [19009,0.008], + [19011,0.0045], + [19013,0.0115], + [19015,0.007], + [19017,0.006], + [19019,0.005], + [19021,0.0045], + [19023,0.0057], + [19025,0.0063], + [19027,0.0035], + [19029,0.0045], + [19031,0.0064], + [19033,0.0079], + [19035,0.0047], + [19037,0.0026], + [19039,0.01], + [19041,0.0117], + [19043,0.0026], + [19045,0.0105], + [19047,0.0094], + [19049,0.0106], + [19051,0.0075], + [19053,0.0076], + [19055,0.0053], + [19057,0.0117], + [19059,0.0048], + [19061,0.0087], + [19063,0.0041], + [19065,0.0093], + [19067,0.0059], + [19069,0.0033], + [19071,0.0059], + [19073,0.0034], + [19075,0.0034], + [19077,0.0058], + [19079,0.0013], + [19081,0.0073], + [19083,0.0064], + [19085,0.0059], + [19087,0.0097], + [19089,0.0038], + [19091,0.0061], + [19093,0.0039], + [19095,0.0046], + [19097,0.0062], + [19099,0.0094], + [19101,0.0185], + [19103,0.012], + [19105,0.0045], + [19107,0.0051], + [19109,0.0046], + [19111,0.0129], + [19113,0.0139], + [19115,0.0026], + [19117,0.0031], + [19119,0.0049], + [19121,0.0045], + [19123,0.0056], + [19125,0.0077], + [19127,0.0124], + [19129,0.0054], + [19131,0.0051], + [19133,0.0058], + [19135,0.0066], + [19137,0.0128], + [19139,0.016], + [19141,0.0034], + [19143,0.0059], + [19145,0.0068], + [19147,0.0039], + [19149,0.0064], + [19151,0.0045], + [19153,0.0139], + [19155,0.0107], + [19157,0.0064], + [19159,0.0021], + [19161,0.0053], + [19163,0.0121], + [19165,0.0064], + [19167,0.0069], + [19169,0.0143], + [19171,0.0086], + [19173,0.0038], + [19175,0.0028], + [19177,0.0062], + [19179,0.0085], + [19181,0.0083], + [19183,0.0052], + [19185,0.0099], + [19187,0.0067], + [19189,0.0074], + [19191,0.003], + [19193,0.0147], + [19195,0.0075], + [19197,0.0076], + [20001,0.0183], + [20003,0.0032], + [20005,0.0258], + [20007,0.0078], + [20009,0.0105], + [20011,0.011], + [20013,0.0174], + [20015,0.0107], + [20017,0.0144], + [20019,0.0215], + [20021,0.0249], + [20023,0.0106], + [20025,0.0139], + [20027,0.0063], + [20029,0.0115], + [20031,0.0107], + [20033,0.0037], + [20035,0.0191], + [20037,0.0138], + [20039,0.0071], + [20041,0.0136], + [20043,0.0115], + [20045,0.0232], + [20047,0.0054], + [20049,0.018], + [20051,0.0113], + [20053,0.0111], + [20055,0.018], + [20057,0.0103], + [20059,0.0139], + [20061,0.0318], + [20063,0.0051], + [20065,0.0172], + [20067,0.0106], + [20069,0.0022], + [20071,0.0112], + [20073,0.0188], + [20075,0.0092], + [20077,0.0036], + [20079,0.0114], + [20081,0.0029], + [20083,0.0061], + [20085,0.0201], + [20087,0.0134], + [20089,0.0071], + [20091,0.0146], + [20093,0.0108], + [20095,0.0114], + [20097,0.0079], + [20099,0.0274], + [20101,0.0009], + [20103,0.0215], + [20105,0.0027], + [20107,0.0079], + [20109,0.0163], + [20111,0.0227], + [20113,0.0111], + [20115,0.0128], + [20117,0.0079], + [20119,0.0088], + [20121,0.0067], + [20123,0.0035], + [20125,0.0215], + [20127,0.0126], + [20129,0.0278], + [20131,0.0063], + [20133,0.0134], + [20135,0.0007], + [20137,0.018], + [20139,0.0127], + [20141,0.0098], + [20143,0.0114], + [20145,0.0153], + [20147,0.0097], + [20149,0.0118], + [20151,0.0057], + [20153,0.006], + [20155,0.0137], + [20157,0.0053], + [20159,0.0127], + [20161,0.0209], + [20163,0.0085], + [20165,0.0085], + [20167,0.0096], + [20169,0.0182], + [20171,0.0036], + [20173,0.0197], + [20175,0.0135], + [20177,0.024], + [20179,0.0004], + [20181,0.0043], + [20183,0.011], + [20185,0.0106], + [20187,0.0261], + [20189,0.0202], + [20191,0.0126], + [20193,0.0059], + [20195,0.006], + [20197,0.0121], + [20199,0.0063], + [20201,0.0095], + [20203,0.0074], + [20205,0.0187], + [20207,0.0184], + [20209,0.022], + [21001,0.0045], + [21003,0.0036], + [21005,0.0068], + [21007,0.0078], + [21009,0.0097], + [21011,0.0083], + [21013,0.0078], + [21015,0.0107], + [21017,0.003], + [21019,0.012], + [21021,0.0135], + [21023,0.0064], + [21025,0.0044], + [21027,0.0092], + [21029,0.0086], + [21031,0.0059], + [21033,0.0045], + [21035,0.0122], + [21037,0.0073], + [21039,0.0069], + [21041,0.0071], + [21043,0.0045], + [21045,0.005], + [21047,0.0199], + [21049,0.0063], + [21051,0.0076], + [21053,0.0046], + [21055,0.0064], + [21057,0.0115], + [21059,0.0121], + [21061,0.0102], + [21063,0.0005], + [21065,0.0084], + [21067,0.0161], + [21069,0.005], + [21071,0.0043], + [21073,0.0176], + [21075,0.0181], + [21077,0.0093], + [21079,0.0119], + [21081,0.0079], + [21083,0.0105], + [21085,0.0051], + [21087,0.008], + [21089,0.0073], + [21091,0.006], + [21093,0.0242], + [21095,0.0052], + [21097,0.0112], + [21099,0.0062], + [21101,0.0141], + [21103,0.0059], + [21105,0.0131], + [21107,0.0118], + [21109,0.0025], + [21111,0.0141], + [21113,0.0092], + [21115,0.0031], + [21117,0.0124], + [21119,0.0071], + [21121,0.0041], + [21123,0.0076], + [21125,0.0056], + [21127,0.0067], + [21129,0.0028], + [21131,0.0051], + [21133,0.0048], + [21135,0.0039], + [21137,0.0121], + [21139,0.0102], + [21141,0.0103], + [21143,0.0077], + [21145,0.0107], + [21147,0.0107], + [21149,0.0069], + [21151,0.0114], + [21153,0], + [21155,0.0055], + [21157,0.005], + [21159,0.006], + [21161,0.0161], + [21163,0.014], + [21165,0.0048], + [21167,0.0067], + [21169,0.01], + [21171,0.0034], + [21173,0.0067], + [21175,0.0084], + [21177,0.0087], + [21179,0.0086], + [21181,0.0059], + [21183,0.0046], + [21185,0.0132], + [21187,0.0018], + [21189,0.0016], + [21191,0.0073], + [21193,0.0035], + [21195,0.0035], + [21197,0.007], + [21199,0.0071], + [21201,0.0065], + [21203,0.0021], + [21205,0.0062], + [21207,0.0029], + [21209,0.0149], + [21211,0.0137], + [21213,0.0079], + [21215,0.0077], + [21217,0.0125], + [21219,0.0094], + [21221,0.0027], + [21223,0.0092], + [21225,0.0127], + [21227,0.0116], + [21229,0.0139], + [21231,0.0087], + [21233,0.0137], + [21235,0.0057], + [21237,0.0029], + [21239,0.0118], + [22001,0.0105], + [22003,0.0154], + [22005,0.014], + [22007,0.0047], + [22009,0.0077], + [22011,0.0136], + [22013,0.0052], + [22015,0.0127], + [22017,0.0101], + [22019,0.0124], + [22021,0.0015], + [22023,0.0004], + [22025,0.0013], + [22027,0.0092], + [22029,0.0014], + [22031,0.0066], + [22033,0.0081], + [22035,0.0031], + [22037,0.0042], + [22039,0.0081], + [22041,0.0053], + [22043,0.0133], + [22045,0.014], + [22047,0.004], + [22049,0.0016], + [22051,0.0095], + [22053,0.0096], + [22055,0.009], + [22057,0.0125], + [22059,0.0049], + [22061,0.0084], + [22063,0.0078], + [22065,0.0014], + [22067,0.0056], + [22069,0.0083], + [22071,0.0088], + [22073,0.0045], + [22075,0.019], + [22077,0.0067], + [22079,0.0082], + [22081,0.0175], + [22083,0.0056], + [22085,0.0212], + [22087,0.0124], + [22089,0.0051], + [22091,0.0038], + [22093,0.0039], + [22095,0.0097], + [22097,0.0089], + [22099,0.0095], + [22101,0.0195], + [22103,0.0096], + [22105,0.01], + [22107,0.0008], + [22109,0.0114], + [22111,0.0079], + [22113,0.0077], + [22115,0.0165], + [22117,0.0088], + [22119,0.0059], + [22121,0.0053], + [22123,0.0054], + [22125,0.0042], + [22127,0.0057], + [23001,0.0251], + [23003,0.0079], + [23005,0.0115], + [23007,0.0094], + [23009,0.0082], + [23011,0.0072], + [23013,0.0083], + [23015,0.0049], + [23017,0.0109], + [23019,0.0095], + [23021,0.0075], + [23023,0.0126], + [23025,0.0097], + [23027,0.0093], + [23029,0.0124], + [23031,0.0075], + [24001,0.0109], + [24003,0.0182], + [24005,0.0134], + [24009,0.0215], + [24011,0.016], + [24013,0.0097], + [24015,0.0108], + [24017,0.0275], + [24019,0.0191], + [24021,0.0166], + [24023,0.0079], + [24025,0.0151], + [24027,0.0202], + [24029,0.0074], + [24031,0.0203], + [24033,0.0134], + [24035,0.0104], + [24037,0.016], + [24039,0.0091], + [24041,0.0134], + [24043,0.0182], + [24045,0.0124], + [24047,0.009], + [24510,0.0116], + [25001,0.01], + [25003,0.0131], + [25005,0.0146], + [25007,0.024], + [25009,0.0136], + [25011,0.0123], + [25013,0.0136], + [25015,0.013], + [25017,0.0146], + [25019,0.0313], + [25021,0.0111], + [25023,0.0116], + [25025,0.0307], + [25027,0.0139], + [26001,0.0063], + [26003,0.0206], + [26005,0.0113], + [26007,0.0073], + [26009,0.0087], + [26011,0.0064], + [26013,0.0241], + [26015,0.0079], + [26017,0.0122], + [26019,0.008], + [26021,0.0155], + [26023,0.0083], + [26025,0.0191], + [26027,0.0165], + [26029,0.0124], + [26031,0.0175], + [26033,0.0347], + [26035,0.0092], + [26037,0.0126], + [26039,0.0075], + [26041,0.0168], + [26043,0.0071], + [26045,0.0125], + [26047,0.0189], + [26049,0.0156], + [26051,0.0055], + [26053,0.0103], + [26055,0.0098], + [26057,0.0093], + [26059,0.007], + [26061,0.0109], + [26063,0.0052], + [26065,0.0287], + [26067,0.0108], + [26069,0.0083], + [26071,0.006], + [26073,0.0201], + [26075,0.0127], + [26077,0.0221], + [26079,0.0087], + [26081,0.0183], + [26083,0.0002], + [26085,0.0217], + [26087,0.0078], + [26089,0.0118], + [26091,0.0131], + [26093,0.0075], + [26095,0.0287], + [26097,0.0261], + [26099,0.0115], + [26101,0.0162], + [26103,0.0154], + [26105,0.0105], + [26107,0.0134], + [26109,0.0115], + [26111,0.009], + [26113,0.009], + [26115,0.0084], + [26117,0.0093], + [26119,0.0093], + [26121,0.0207], + [26123,0.0086], + [26125,0.0139], + [26127,0.0072], + [26129,0.005], + [26131,0.0117], + [26133,0.0071], + [26135,0.009], + [26137,0.0125], + [26139,0.0126], + [26141,0.0079], + [26143,0.0085], + [26145,0.0157], + [26147,0.0143], + [26149,0.0127], + [26151,0.0068], + [26153,0.0254], + [26155,0.0095], + [26157,0.0071], + [26159,0.0229], + [26161,0.0218], + [26163,0.0117], + [26165,0.0093], + [27001,0.0089], + [27003,0.0161], + [27005,0.0164], + [27007,0.0179], + [27009,0.0115], + [27011,0.002], + [27013,0.0119], + [27015,0.0046], + [27017,0.0152], + [27019,0.0116], + [27021,0.0146], + [27023,0.0078], + [27025,0.0074], + [27027,0.0139], + [27029,0.0197], + [27031,0.0119], + [27033,0.0084], + [27035,0.0081], + [27037,0.0165], + [27039,0.0078], + [27041,0.0057], + [27043,0.0077], + [27045,0.0035], + [27047,0.0062], + [27049,0.0118], + [27051,0.0096], + [27053,0.0183], + [27055,0.0063], + [27057,0.0098], + [27059,0.0101], + [27061,0.0115], + [27063,0.0049], + [27065,0.0079], + [27067,0.0071], + [27069,0.0034], + [27071,0.0068], + [27073,0.0032], + [27075,0.0057], + [27077,0.0276], + [27079,0.0057], + [27081,0.0037], + [27083,0.0081], + [27085,0.0085], + [27087,0.0455], + [27089,0.0074], + [27091,0.005], + [27093,0.0053], + [27095,0.0143], + [27097,0.0058], + [27099,0.0115], + [27101,0.0038], + [27103,0.0075], + [27105,0.0084], + [27107,0.0115], + [27109,0.0127], + [27111,0.007], + [27113,0.0081], + [27115,0.0144], + [27117,0.0133], + [27119,0.0121], + [27121,0.0052], + [27123,0.0215], + [27125,0.0093], + [27127,0.0055], + [27129,0.0063], + [27131,0.0092], + [27133,0.0028], + [27135,0.0103], + [27137,0.0136], + [27139,0.0139], + [27141,0.0102], + [27143,0.0047], + [27145,0.0081], + [27147,0.0055], + [27149,0.0063], + [27151,0.0024], + [27153,0.0102], + [27155,0.0103], + [27157,0.0075], + [27159,0.0061], + [27161,0.0085], + [27163,0.0148], + [27165,0.006], + [27167,0.011], + [27169,0.0066], + [27171,0.0072], + [27173,0.0086], + [28001,0.0083], + [28003,0.0095], + [28005,0.0009], + [28007,0.0064], + [28009,0.0046], + [28011,0.001], + [28013,0.0082], + [28015,0.0059], + [28017,0.0099], + [28019,0.0017], + [28021,0.0014], + [28023,0.0027], + [28025,0.0011], + [28027,0.0026], + [28029,0.0057], + [28031,0.0049], + [28033,0.0105], + [28035,0.0108], + [28037,0.0017], + [28039,0.0048], + [28041,0.0051], + [28043,0.0049], + [28045,0.0124], + [28047,0.0134], + [28049,0.003], + [28051,0.0022], + [28053,0.0042], + [28055,0], + [28057,0.0024], + [28059,0.0097], + [28061,0.0028], + [28063,0], + [28065,0.0008], + [28067,0.0049], + [28069,0.0004], + [28071,0.0056], + [28073,0.0068], + [28075,0.0062], + [28077,0.0041], + [28079,0.0015], + [28081,0.0059], + [28083,0.0032], + [28085,0.0011], + [28087,0.0057], + [28089,0.0029], + [28091,0.0029], + [28093,0.005], + [28095,0.0078], + [28097,0.0152], + [28099,0.011], + [28101,0.0073], + [28103,0.0021], + [28105,0.0071], + [28107,0.0051], + [28109,0.0088], + [28111,0.0063], + [28113,0.0035], + [28115,0.0065], + [28117,0.01], + [28119,0.0024], + [28121,0.0064], + [28123,0.0006], + [28125,0], + [28127,0.0054], + [28129,0.0016], + [28131,0.0081], + [28133,0.0019], + [28135,0.003], + [28137,0.0113], + [28139,0.0066], + [28141,0.0046], + [28143,0.0034], + [28145,0.0065], + [28147,0.0022], + [28149,0.0056], + [28151,0.004], + [28153,0.0032], + [28155,0.0053], + [28157,0.0014], + [28159,0.001], + [28161,0.0007], + [28163,0.0117], + [29001,0.0111], + [29003,0.0067], + [29005,0.0045], + [29007,0.017], + [29009,0.0107], + [29011,0.0116], + [29013,0.0088], + [29015,0.0098], + [29017,0.0038], + [29019,0.0219], + [29021,0.0179], + [29023,0.0122], + [29025,0.0108], + [29027,0.0112], + [29029,0.0045], + [29031,0.0112], + [29033,0.0125], + [29035,0.0161], + [29037,0.0123], + [29039,0.0132], + [29041,0.0076], + [29043,0.0122], + [29045,0.0084], + [29047,0.0185], + [29049,0.0071], + [29051,0.0095], + [29053,0.015], + [29055,0.0109], + [29057,0.0141], + [29059,0.0134], + [29061,0.0034], + [29063,0.0144], + [29065,0.0099], + [29067,0.0015], + [29069,0.0109], + [29071,0.008], + [29073,0.0061], + [29075,0.0056], + [29077,0.0146], + [29079,0.0081], + [29081,0.0072], + [29083,0.0081], + [29085,0.0065], + [29087,0.0047], + [29089,0.0096], + [29091,0.0124], + [29093,0.008], + [29095,0.0151], + [29097,0.0148], + [29099,0.0077], + [29101,0.0175], + [29103,0.0102], + [29105,0.0131], + [29107,0.0117], + [29109,0.0087], + [29111,0.0078], + [29113,0.0085], + [29115,0.0104], + [29117,0.0076], + [29119,0.0161], + [29121,0.0103], + [29123,0.0056], + [29125,0.0011], + [29127,0.0117], + [29129,0.0071], + [29131,0.0052], + [29133,0.0077], + [29135,0.0089], + [29137,0.0055], + [29139,0.0098], + [29141,0.01], + [29143,0.0093], + [29145,0.0159], + [29147,0.005], + [29149,0.0097], + [29151,0.0024], + [29153,0.0137], + [29155,0.0096], + [29157,0.0043], + [29159,0.015], + [29161,0.0085], + [29163,0.0124], + [29165,0.0153], + [29167,0.0119], + [29169,0.0263], + [29171,0.0123], + [29173,0.0045], + [29175,0.0119], + [29177,0.0093], + [29179,0.007], + [29181,0.0115], + [29183,0.0124], + [29185,0.015], + [29186,0.0029], + [29187,0.0072], + [29189,0.0125], + [29195,0.02], + [29197,0.0071], + [29199,0.0026], + [29201,0.0085], + [29203,0.0125], + [29205,0.0026], + [29207,0.0057], + [29209,0.0071], + [29211,0.0084], + [29213,0.0126], + [29215,0.0121], + [29217,0.01], + [29219,0.0077], + [29221,0.0099], + [29223,0.0099], + [29225,0.008], + [29227,0.0075], + [29229,0.0062], + [29510,0.0105], + [30001,0.0094], + [30003,0.0115], + [30005,0.0102], + [30007,0.0091], + [30009,0.0067], + [30011,0.008], + [30013,0.0188], + [30015,0.0097], + [30017,0.0122], + [30019,0], + [30021,0.0065], + [30023,0.0215], + [30025,0.0072], + [30027,0.0038], + [30029,0.012], + [30031,0.0104], + [30033,0.0005], + [30035,0.0111], + [30037,0.0281], + [30039,0.0136], + [30041,0.0168], + [30043,0.0159], + [30045,0.0061], + [30047,0.0339], + [30049,0.0134], + [30051,0.0056], + [30053,0.0139], + [30055,0.0046], + [30057,0.0106], + [30059,0.0063], + [30061,0.005], + [30063,0.0163], + [30065,0.0087], + [30067,0.0127], + [30069,0], + [30071,0.0123], + [30073,0.0096], + [30075,0.018], + [30077,0.0123], + [30079,0], + [30081,0.0132], + [30083,0.0072], + [30085,0.0315], + [30087,0.0078], + [30089,0.0168], + [30091,0.0213], + [30093,0.0071], + [30095,0.0085], + [30097,0.0177], + [30099,0.0137], + [30101,0.0135], + [30103,0.0076], + [30105,0.0165], + [30107,0.0076], + [30109,0], + [30111,0.0138], + [31001,0.0091], + [31003,0.0027], + [31005,0.0107], + [31007,0.011], + [31009,0], + [31011,0.0033], + [31013,0.0134], + [31015,0.0068], + [31017,0.0098], + [31019,0.0102], + [31021,0.005], + [31023,0.0054], + [31025,0.0085], + [31027,0.0023], + [31029,0.0026], + [31031,0.0236], + [31033,0.0127], + [31035,0.0062], + [31037,0.0143], + [31039,0.0068], + [31041,0.0032], + [31043,0.0103], + [31045,0.0152], + [31047,0.0072], + [31049,0.0079], + [31051,0.0057], + [31053,0.0084], + [31055,0.0152], + [31057,0.002], + [31059,0.0054], + [31061,0.0056], + [31063,0.0074], + [31065,0.0079], + [31067,0.0045], + [31069,0.0031], + [31071,0.0028], + [31073,0.0052], + [31075,0.0051], + [31077,0.0033], + [31079,0.0064], + [31081,0.0048], + [31083,0.0053], + [31085,0.0021], + [31087,0.0016], + [31089,0.0037], + [31091,0], + [31093,0.0082], + [31095,0.01], + [31097,0.0043], + [31099,0.0055], + [31101,0.0018], + [31103,0.0069], + [31105,0.0126], + [31107,0.0085], + [31109,0.0152], + [31111,0.0093], + [31113,0.0114], + [31115,0], + [31117,0.0116], + [31119,0.0075], + [31121,0.0116], + [31123,0.0102], + [31125,0], + [31127,0.0036], + [31129,0.0021], + [31131,0.0106], + [31133,0.0155], + [31135,0.0029], + [31137,0.0092], + [31139,0.0067], + [31141,0.0056], + [31143,0.007], + [31145,0.0069], + [31147,0.0171], + [31149,0.0058], + [31151,0.0088], + [31153,0.016], + [31155,0.0079], + [31157,0.0114], + [31159,0.0072], + [31161,0.028], + [31163,0.0013], + [31165,0.0271], + [31167,0.0047], + [31169,0.0088], + [31171,0.0086], + [31173,0.0104], + [31175,0.0045], + [31177,0.0065], + [31179,0.0056], + [31181,0.0136], + [31183,0.0012], + [31185,0.0107], + [32001,0.0205], + [32003,0.025], + [32005,0.016], + [32007,0.0093], + [32009,0.0041], + [32011,0], + [32013,0.0131], + [32015,0.0051], + [32017,0.0043], + [32019,0.0205], + [32021,0.022], + [32023,0.0129], + [32027,0.0095], + [32029,0.013], + [32031,0.0215], + [32033,0.0043], + [32510,0.0158], + [33001,0.0073], + [33003,0.0071], + [33005,0.0095], + [33007,0.0076], + [33009,0.0099], + [33011,0.0115], + [33013,0.0098], + [33015,0.0081], + [33017,0.0119], + [33019,0.0088], + [34001,0.0178], + [34003,0.0114], + [34005,0.0196], + [34007,0.0152], + [34009,0.0089], + [34011,0.0228], + [34013,0.0129], + [34015,0.0135], + [34017,0.0164], + [34019,0.0068], + [34021,0.0103], + [34023,0.0121], + [34025,0.0099], + [34027,0.0103], + [34029,0.0077], + [34031,0.0168], + [34033,0.0147], + [34035,0.0102], + [34037,0.0076], + [34039,0.0126], + [34041,0.0077], + [35001,0.0207], + [35003,0.0017], + [35005,0.0131], + [35006,0.0114], + [35007,0.0143], + [35009,0.0212], + [35011,0.0273], + [35013,0.0093], + [35015,0.0062], + [35017,0.0111], + [35019,0.0178], + [35021,0.0238], + [35023,0.0117], + [35025,0.0112], + [35027,0.0116], + [35028,0.0166], + [35029,0.0075], + [35031,0.0177], + [35033,0.0062], + [35035,0.0187], + [35037,0.0155], + [35039,0.0129], + [35041,0.0201], + [35043,0.022], + [35045,0.0146], + [35047,0.0177], + [35049,0.0137], + [35051,0.0121], + [35053,0.0251], + [35055,0.0101], + [35057,0.0211], + [35059,0.0184], + [35061,0.015], + [36001,0.0184], + [36003,0.0056], + [36005,0.0175], + [36007,0.014], + [36009,0.01], + [36011,0.0123], + [36013,0.0099], + [36015,0.0158], + [36017,0.0093], + [36019,0.0073], + [36021,0.0138], + [36023,0.0098], + [36025,0.0072], + [36027,0.0151], + [36029,0.0117], + [36031,0.0105], + [36033,0.0095], + [36035,0.0076], + [36037,0.0111], + [36039,0.0087], + [36041,0.0108], + [36043,0.0069], + [36045,0.0205], + [36047,0.0135], + [36049,0.006], + [36051,0.0088], + [36053,0.0071], + [36055,0.0145], + [36057,0.0179], + [36059,0.0168], + [36061,0.0221], + [36063,0.0115], + [36065,0.0122], + [36067,0.0172], + [36069,0.0075], + [36071,0.0173], + [36073,0.0099], + [36075,0.0091], + [36077,0.0096], + [36079,0.0118], + [36081,0.0169], + [36083,0.0173], + [36085,0.0115], + [36087,0.0128], + [36089,0.0092], + [36091,0.0079], + [36093,0.0176], + [36095,0.0053], + [36097,0.0065], + [36099,0.0091], + [36101,0.0073], + [36103,0.0125], + [36105,0.0177], + [36107,0.008], + [36109,0.0194], + [36111,0.0195], + [36113,0.0063], + [36115,0.0073], + [36117,0.0101], + [36119,0.0148], + [36121,0.0071], + [36123,0.0059], + [37001,0.0128], + [37003,0.006], + [37005,0.0037], + [37007,0.0058], + [37009,0.007], + [37011,0.0041], + [37013,0.007], + [37015,0.0043], + [37017,0.0077], + [37019,0.0106], + [37021,0.0117], + [37023,0.0078], + [37025,0.0108], + [37027,0.0053], + [37029,0.0047], + [37031,0.013], + [37033,0.0065], + [37035,0.0115], + [37037,0.0138], + [37039,0.0109], + [37041,0.007], + [37043,0.0001], + [37045,0.0077], + [37047,0.0049], + [37049,0.0133], + [37051,0.0291], + [37053,0.0136], + [37055,0.0137], + [37057,0.0079], + [37059,0.0082], + [37061,0.0077], + [37063,0.0146], + [37065,0.0094], + [37067,0.0099], + [37069,0.012], + [37071,0.0119], + [37073,0.0113], + [37075,0.0034], + [37077,0.0201], + [37079,0.0153], + [37081,0.0116], + [37083,0.0096], + [37085,0.0181], + [37087,0.0067], + [37089,0.0091], + [37091,0.0172], + [37093,0.0277], + [37095,0.0049], + [37097,0.0078], + [37099,0.0128], + [37101,0.0122], + [37103,0.0121], + [37105,0.013], + [37107,0.0162], + [37109,0.0121], + [37111,0.0049], + [37113,0.0051], + [37115,0.004], + [37117,0.0059], + [37119,0.0144], + [37121,0.0072], + [37123,0.0069], + [37125,0.0092], + [37127,0.0103], + [37129,0.0105], + [37131,0.0082], + [37133,0.0297], + [37135,0.0147], + [37137,0.0132], + [37139,0.0119], + [37141,0.0118], + [37143,0.0063], + [37145,0.0098], + [37147,0.0115], + [37149,0.0049], + [37151,0.0092], + [37153,0.0112], + [37155,0.0119], + [37157,0.0097], + [37159,0.0091], + [37161,0.0069], + [37163,0.0142], + [37165,0.0139], + [37167,0.0078], + [37169,0.0079], + [37171,0.0083], + [37173,0.023], + [37175,0.0077], + [37177,0.0122], + [37179,0.0103], + [37181,0.0086], + [37183,0.0136], + [37185,0.012], + [37187,0.0176], + [37189,0.0106], + [37191,0.0178], + [37193,0.0078], + [37195,0.0092], + [37197,0.0082], + [37199,0.005], + [38001,0.0032], + [38003,0.0089], + [38005,0.0105], + [38007,0.0137], + [38009,0.0126], + [38011,0.0046], + [38013,0.0089], + [38015,0.009], + [38017,0.0129], + [38019,0.0089], + [38021,0.0033], + [38023,0.0132], + [38025,0.0089], + [38027,0.0159], + [38029,0.0103], + [38031,0.0075], + [38033,0.0185], + [38035,0.013], + [38037,0.0042], + [38039,0.0062], + [38041,0.0094], + [38043,0.0022], + [38045,0.0051], + [38047,0.0067], + [38049,0.0046], + [38051,0.0069], + [38053,0.0105], + [38055,0.0054], + [38057,0.0014], + [38059,0.0081], + [38061,0.019], + [38063,0.0032], + [38065,0.006], + [38067,0.0109], + [38069,0.002], + [38071,0.0174], + [38073,0.0092], + [38075,0.0075], + [38077,0.0097], + [38079,0.0091], + [38081,0.0085], + [38083,0.0061], + [38085,0.0144], + [38087,0.0052], + [38089,0.0132], + [38091,0], + [38093,0.012], + [38095,0.021], + [38097,0.0078], + [38099,0.0052], + [38101,0.0161], + [38103,0.0064], + [38105,0.0218], + [39001,0.0062], + [39003,0.0168], + [39005,0.0065], + [39007,0.0115], + [39009,0.0138], + [39011,0.0061], + [39013,0.0068], + [39015,0.0063], + [39017,0.0126], + [39019,0.0045], + [39021,0.0144], + [39023,0.0177], + [39025,0.0073], + [39027,0.0135], + [39029,0.0087], + [39031,0.007], + [39033,0.0075], + [39035,0.0144], + [39037,0.0046], + [39039,0.0132], + [39041,0.0107], + [39043,0.0177], + [39045,0.0112], + [39047,0.0121], + [39049,0.0191], + [39051,0.01], + [39053,0.0069], + [39055,0.0059], + [39057,0.0165], + [39059,0.0109], + [39061,0.0141], + [39063,0.013], + [39065,0.0089], + [39067,0.0061], + [39069,0.0102], + [39071,0.0098], + [39073,0.0075], + [39075,0.0052], + [39077,0.0093], + [39079,0.0104], + [39081,0.0112], + [39083,0.0087], + [39085,0.0112], + [39087,0.0102], + [39089,0.0127], + [39091,0.0117], + [39093,0.0188], + [39095,0.0211], + [39097,0.0105], + [39099,0.0141], + [39101,0.0161], + [39103,0.0061], + [39105,0.006], + [39107,0.004], + [39109,0.0108], + [39111,0.0022], + [39113,0.0155], + [39115,0.015], + [39117,0.0082], + [39119,0.0184], + [39121,0.007], + [39123,0.0083], + [39125,0.0093], + [39127,0.0089], + [39129,0.0109], + [39131,0.0101], + [39133,0.0114], + [39135,0.0083], + [39137,0.0051], + [39139,0.0202], + [39141,0.0168], + [39143,0.0132], + [39145,0.0081], + [39147,0.0101], + [39149,0.0067], + [39151,0.0165], + [39153,0.0139], + [39155,0.0111], + [39157,0.0068], + [39159,0.0083], + [39161,0.0068], + [39163,0.01], + [39165,0.0084], + [39167,0.0065], + [39169,0.0087], + [39171,0.006], + [39173,0.0109], + [39175,0.0045], + [40001,0.055], + [40003,0.081], + [40005,0.0496], + [40007,0.004], + [40009,0.0302], + [40011,0.029], + [40013,0.0278], + [40015,0.0311], + [40017,0.0295], + [40019,0.0429], + [40021,0.0511], + [40023,0.0407], + [40025,0.0032], + [40027,0.0368], + [40029,0.07], + [40031,0.0445], + [40033,0.0426], + [40035,0.0408], + [40037,0.0253], + [40039,0.0452], + [40041,0.0519], + [40043,0.0441], + [40045,0.0206], + [40047,0.0242], + [40049,0.0388], + [40051,0.0292], + [40053,0.0322], + [40055,0.028], + [40057,0.0455], + [40059,0.0128], + [40061,0.0521], + [40063,0.0291], + [40065,0.0346], + [40067,0.0179], + [40069,0.1001], + [40071,0.0396], + [40073,0.0178], + [40075,0.0386], + [40077,0.0484], + [40079,0.0445], + [40081,0.0202], + [40083,0.0207], + [40085,0.0234], + [40087,0.0304], + [40089,0.052], + [40091,0.0515], + [40093,0.015], + [40095,0.0471], + [40097,0.0822], + [40099,0.0554], + [40101,0.0417], + [40103,0.0331], + [40105,0.0585], + [40107,0.0684], + [40109,0.0338], + [40111,0.0577], + [40113,0.0413], + [40115,0.0604], + [40117,0.0327], + [40119,0.0247], + [40121,0.0769], + [40123,0.0881], + [40125,0.0227], + [40127,0.0495], + [40129,0.0362], + [40131,0.0484], + [40133,0.0314], + [40135,0.0592], + [40137,0.0241], + [40139,0.016], + [40141,0.037], + [40143,0.0406], + [40145,0.0485], + [40147,0.0301], + [40149,0.0316], + [40151,0.0295], + [40153,0.026], + [41001,0.0091], + [41003,0.0182], + [41005,0.0178], + [41007,0.0224], + [41009,0.0168], + [41011,0.0248], + [41013,0.0157], + [41015,0.0236], + [41017,0.0141], + [41019,0.0204], + [41021,0], + [41023,0.014], + [41025,0.0162], + [41027,0.0144], + [41029,0.0195], + [41031,0.0125], + [41033,0.0171], + [41035,0.0239], + [41037,0.0199], + [41039,0.0248], + [41041,0.022], + [41043,0.0173], + [41045,0.0169], + [41047,0.033], + [41049,0.0157], + [41051,0.0271], + [41053,0.0199], + [41055,0.0107], + [41057,0.0175], + [41059,0.0232], + [41061,0.0135], + [41063,0.0161], + [41065,0.0114], + [41067,0.0253], + [41069,0.0212], + [41071,0.0199], + [42001,0.0112], + [42003,0.0133], + [42005,0.0043], + [42007,0.0123], + [42009,0.0064], + [42011,0.0286], + [42013,0.0086], + [42015,0.0067], + [42017,0.009], + [42019,0.0075], + [42021,0.0103], + [42023,0.0038], + [42025,0.0057], + [42027,0.0079], + [42029,0.0106], + [42031,0.0057], + [42033,0.005], + [42035,0.0057], + [42037,0.0051], + [42039,0.0079], + [42041,0.0115], + [42043,0.016], + [42045,0.0116], + [42047,0.0028], + [42049,0.0144], + [42051,0.0127], + [42053,0.0089], + [42055,0.0063], + [42057,0.0037], + [42059,0.0083], + [42061,0.0091], + [42063,0.0079], + [42065,0.004], + [42067,0.0035], + [42069,0.0084], + [42071,0.0103], + [42073,0.0113], + [42075,0.0106], + [42077,0.0154], + [42079,0.009], + [42081,0.0089], + [42083,0.0077], + [42085,0.0089], + [42087,0.006], + [42089,0.0154], + [42091,0.0119], + [42093,0.0032], + [42095,0.016], + [42097,0.0048], + [42099,0.0053], + [42101,0.014], + [42103,0.0092], + [42105,0.0078], + [42107,0.0075], + [42109,0.0058], + [42111,0.0049], + [42113,0.0089], + [42115,0.0038], + [42117,0.0067], + [42119,0.0089], + [42121,0.008], + [42123,0.0047], + [42125,0.0096], + [42127,0.0066], + [42129,0.008], + [42131,0.0069], + [42133,0.0124], + [44001,0.0066], + [44003,0.011], + [44005,0.0147], + [44007,0.0178], + [44009,0.0082], + [45001,0.0102], + [45003,0.0115], + [45005,0.0024], + [45007,0.0094], + [45009,0.0017], + [45011,0.0043], + [45013,0.0109], + [45015,0.016], + [45017,0.0039], + [45019,0.0105], + [45021,0.0116], + [45023,0.0114], + [45025,0.0114], + [45027,0.0055], + [45029,0.0045], + [45031,0.0086], + [45033,0.0121], + [45035,0.0135], + [45037,0.0056], + [45039,0.0256], + [45041,0.0065], + [45043,0.0094], + [45045,0.0106], + [45047,0.0098], + [45049,0.0068], + [45051,0.0076], + [45053,0.0057], + [45055,0.0119], + [45057,0.0106], + [45059,0.0109], + [45061,0.01], + [45063,0.0114], + [45065,0.0088], + [45067,0.0046], + [45069,0.019], + [45071,0.0056], + [45073,0.0113], + [45075,0.0091], + [45077,0.0087], + [45079,0.0138], + [45081,0.0068], + [45083,0.0102], + [45085,0.013], + [45087,0.0136], + [45089,0.0057], + [45091,0.0113], + [46003,0.0046], + [46005,0.0027], + [46007,0.093], + [46009,0.0096], + [46011,0.0057], + [46013,0.0073], + [46015,0.0126], + [46017,0.011], + [46019,0.0138], + [46021,0.008], + [46023,0.0183], + [46025,0.0043], + [46027,0.0134], + [46029,0.0107], + [46031,0.0092], + [46033,0.0109], + [46035,0.0099], + [46037,0.0079], + [46039,0.0018], + [46041,0.0081], + [46043,0.0105], + [46045,0.0021], + [46047,0.0182], + [46049,0.0013], + [46051,0.0036], + [46053,0.0141], + [46055,0.0151], + [46057,0.0044], + [46059,0.0056], + [46061,0.0019], + [46063,0.0023], + [46065,0.0179], + [46067,0.0044], + [46069,0.0208], + [46071,0.0188], + [46073,0.0054], + [46075,0], + [46077,0.0042], + [46079,0.0078], + [46081,0.0081], + [46083,0.0098], + [46085,0.007], + [46087,0.0055], + [46089,0.0038], + [46091,0.0086], + [46093,0.0145], + [46095,0.0044], + [46097,0.0069], + [46099,0.0147], + [46101,0.0291], + [46102,null], + [46103,0.0257], + [46105,0.0061], + [46107,0.0084], + [46109,0.0143], + [46111,0.0027], + [46115,0.0043], + [46117,0.0107], + [46119,0.0137], + [46121,0.0579], + [46123,0.0213], + [46125,0.0066], + [46127,0.0117], + [46129,0.0163], + [46135,0.0106], + [46137,0.0035], + [47001,0.0133], + [47003,0.0178], + [47005,0.0044], + [47007,0.0155], + [47009,0.0101], + [47011,0.0074], + [47013,0.0046], + [47015,0.0079], + [47017,0.0114], + [47019,0.0061], + [47021,0.0084], + [47023,0.007], + [47025,0.0071], + [47027,0.0016], + [47029,0.011], + [47031,0.0182], + [47033,0.0108], + [47035,0.005], + [47037,0.0123], + [47039,0.0108], + [47041,0.0078], + [47043,0.011], + [47045,0.0105], + [47047,0.0027], + [47049,0.0056], + [47051,0.0133], + [47053,0.0119], + [47055,0.0123], + [47057,0.0056], + [47059,0.0076], + [47061,0.0836], + [47063,0.0134], + [47065,0.0094], + [47067,0.0025], + [47069,0.0058], + [47071,0.0039], + [47073,0.007], + [47075,0.0061], + [47077,0.0097], + [47079,0.0055], + [47081,0.0097], + [47083,0.0107], + [47085,0.0052], + [47087,0.0093], + [47089,0.0073], + [47091,0.0063], + [47093,0.0107], + [47095,0.0063], + [47097,0.0109], + [47099,0.0067], + [47101,0.0022], + [47103,0.0122], + [47105,0.0078], + [47107,0.0114], + [47109,0.0094], + [47111,0.0099], + [47113,0.0086], + [47115,0.0194], + [47117,0.0065], + [47119,0.0095], + [47121,0.0108], + [47123,0.0079], + [47125,0.0221], + [47127,0.0059], + [47129,0.0019], + [47131,0.0104], + [47133,0.0055], + [47135,0.0085], + [47137,0.0082], + [47139,0.0094], + [47141,0.0081], + [47143,0.0096], + [47145,0.0099], + [47147,0.009], + [47149,0.0151], + [47151,0.0041], + [47153,0.0494], + [47155,0.0102], + [47157,0.0087], + [47159,0.0074], + [47161,0.0146], + [47163,0.0101], + [47165,0.0094], + [47167,0.0104], + [47169,0.011], + [47171,0.0044], + [47173,0.0064], + [47175,0.0124], + [47177,0.0176], + [47179,0.0101], + [47181,0.002], + [47183,0.0083], + [47185,0.0107], + [47187,0.008], + [47189,0.0073], + [48001,0.0081], + [48003,0.0093], + [48005,0.0091], + [48007,0.0235], + [48009,0.0119], + [48011,0.0062], + [48013,0.0176], + [48015,0.0132], + [48017,0.0006], + [48019,0.0235], + [48021,0.0093], + [48023,0.0157], + [48025,0.0066], + [48027,0.0256], + [48029,0.0157], + [48031,0.017], + [48033,0], + [48035,0.0104], + [48037,0.0137], + [48039,0.0113], + [48041,0.0155], + [48043,0.0106], + [48045,0.0295], + [48047,0.0135], + [48049,0.0084], + [48051,0.0109], + [48053,0.0072], + [48055,0.0098], + [48057,0.0196], + [48059,0.0129], + [48061,0.0044], + [48063,0.0104], + [48065,0.0125], + [48067,0.0094], + [48069,0.0094], + [48071,0.0063], + [48073,0.0122], + [48075,0.0079], + [48077,0.0108], + [48079,0.0218], + [48081,0.0036], + [48083,0.0083], + [48085,0.0158], + [48087,0.0142], + [48089,0.0061], + [48091,0.0106], + [48093,0.0046], + [48095,0.0022], + [48097,0.0141], + [48099,0.04], + [48101,0.0097], + [48103,0.0066], + [48105,0], + [48107,0.0084], + [48109,0.0066], + [48111,0.0153], + [48113,0.0135], + [48115,0.0121], + [48117,0.0213], + [48119,0.02], + [48121,0.0169], + [48123,0.0114], + [48125,0.0112], + [48127,0.0002], + [48129,0.0143], + [48131,0.0013], + [48133,0.0071], + [48135,0.0152], + [48137,0], + [48139,0.0177], + [48141,0.0114], + [48143,0.0126], + [48145,0.0064], + [48147,0.0141], + [48149,0.0053], + [48151,0.0093], + [48153,0.0074], + [48155,0.0301], + [48157,0.0124], + [48159,0.0118], + [48161,0.0059], + [48163,0.0063], + [48165,0.0031], + [48167,0.0141], + [48169,0.0096], + [48171,0.0177], + [48173,0], + [48175,0.0015], + [48177,0.0107], + [48179,0.0126], + [48181,0.0148], + [48183,0.0112], + [48185,0.012], + [48187,0.0154], + [48189,0.0234], + [48191,0.0187], + [48193,0.0088], + [48195,0.0051], + [48197,0.0113], + [48199,0.0071], + [48201,0.0114], + [48203,0.0086], + [48205,0.0231], + [48207,0.0102], + [48209,0.0145], + [48211,0.0151], + [48213,0.005], + [48215,0.0059], + [48217,0.009], + [48219,0.0107], + [48221,0.0062], + [48223,0.0109], + [48225,0.0119], + [48227,0.0166], + [48229,0.0134], + [48231,0.0105], + [48233,0.0186], + [48235,0.0091], + [48237,0.0048], + [48239,0.0099], + [48241,0.0068], + [48243,0.0031], + [48245,0.0077], + [48247,0.0035], + [48249,0.0019], + [48251,0.0113], + [48253,0.0232], + [48255,0.0069], + [48257,0.0122], + [48259,0.0192], + [48261,0], + [48263,0.0015], + [48265,0.0101], + [48267,0.0121], + [48269,0], + [48271,0], + [48273,0.0095], + [48275,0.0081], + [48277,0.0211], + [48279,0.0127], + [48281,0.0187], + [48283,0.0172], + [48285,0.0123], + [48287,0.0058], + [48289,0.0028], + [48291,0.0081], + [48293,0.0059], + [48295,0.02], + [48297,0.0088], + [48299,0.0147], + [48301,0.0203], + [48303,0.0138], + [48305,0.0277], + [48307,0.0249], + [48309,0.0118], + [48311,0], + [48313,0.0215], + [48315,0.0052], + [48317,0.0025], + [48319,0.0306], + [48321,0.0151], + [48323,0.0025], + [48325,0.0104], + [48327,0.0495], + [48329,0.0109], + [48331,0.0139], + [48333,0.0015], + [48335,0.0121], + [48337,0.0145], + [48339,0.0117], + [48341,0.0123], + [48343,0.0131], + [48345,0.0135], + [48347,0.0108], + [48349,0.0103], + [48351,0.0067], + [48353,0.0086], + [48355,0.0085], + [48357,0.0168], + [48359,0.0156], + [48361,0.0097], + [48363,0.0084], + [48365,0.0053], + [48367,0.0097], + [48369,0.0153], + [48371,0.003], + [48373,0.0103], + [48375,0.0184], + [48377,0], + [48379,0.0152], + [48381,0.0146], + [48383,0.004], + [48385,0.0001], + [48387,0.0097], + [48389,0.0068], + [48391,0.0331], + [48393,0.0079], + [48395,0.0083], + [48397,0.0147], + [48399,0.0078], + [48401,0.0092], + [48403,0.0086], + [48405,0.0096], + [48407,0.0077], + [48409,0.0122], + [48411,0.0158], + [48413,0.0003], + [48415,0.0124], + [48417,0.0112], + [48419,0.0022], + [48421,0.0111], + [48423,0.0079], + [48425,0.0068], + [48427,0.0021], + [48429,0.0137], + [48431,0.0075], + [48433,0.006], + [48435,0.0012], + [48437,0.0259], + [48439,0.0159], + [48441,0.0138], + [48443,0.0333], + [48445,0.0096], + [48447,0.0062], + [48449,0.0092], + [48451,0.0109], + [48453,0.0162], + [48455,0.0089], + [48457,0.0084], + [48459,0.0091], + [48461,0.0029], + [48463,0.0123], + [48465,0.0074], + [48467,0.0095], + [48469,0.01], + [48471,0.0072], + [48473,0.0136], + [48475,0.0054], + [48477,0.0061], + [48479,0.0026], + [48481,0.0044], + [48483,0.0154], + [48485,0.0201], + [48487,0.0134], + [48489,0.0022], + [48491,0.019], + [48493,0.0125], + [48495,0.0084], + [48497,0.0115], + [48499,0.0066], + [48501,0.011], + [48503,0.0038], + [48505,0], + [48507,0.0035], + [49001,0.0012], + [49003,0.0087], + [49005,0.0112], + [49007,0.0137], + [49009,0.0085], + [49011,0.0167], + [49013,0.0095], + [49015,0.005], + [49017,0.0083], + [49019,0.0018], + [49021,0.0101], + [49023,0.0081], + [49025,0.0142], + [49027,0.0079], + [49029,0.005], + [49031,0.0016], + [49033,0.0011], + [49035,0.0153], + [49037,0.0086], + [49039,0.0095], + [49041,0.0051], + [49043,0.0073], + [49045,0.0128], + [49047,0.0102], + [49049,0.0137], + [49051,0.0096], + [49053,0.0112], + [49055,0.0022], + [49057,0.0162], + [50001,0.0089], + [50003,0.0107], + [50005,0.009], + [50007,0.0096], + [50009,0.0063], + [50011,0.0129], + [50013,0.0183], + [50015,0.0084], + [50017,0.0079], + [50019,0.0106], + [50021,0.0046], + [50023,0.0102], + [50025,0.0141], + [50027,0.0089], + [51001,0.0074], + [51003,0.0122], + [51005,0.0076], + [51007,0.01], + [51009,0.0191], + [51011,0.0091], + [51013,0.016], + [51015,0.008], + [51017,0.034], + [51019,0.0073], + [51021,0.0024], + [51023,0.0059], + [51025,0.0094], + [51027,0.0029], + [51029,0.008], + [51031,0.0128], + [51033,0.0122], + [51035,0.0085], + [51036,0.0161], + [51037,0.0031], + [51041,0.0154], + [51043,0.0147], + [51045,0.002], + [51047,0.0201], + [51049,0.0168], + [51051,0.004], + [51053,0.0106], + [51057,0.0131], + [51059,0.0219], + [51061,0.0151], + [51063,0.0051], + [51065,0.0185], + [51067,0.0063], + [51069,0.0106], + [51071,0.0025], + [51073,0.0145], + [51075,0.0092], + [51077,0.0094], + [51079,0.0163], + [51081,0.0079], + [51083,0.0081], + [51085,0.0101], + [51087,0.0148], + [51089,0.0102], + [51091,0.0016], + [51093,0.0168], + [51095,0.016], + [51097,0.0247], + [51099,0.0208], + [51101,0.0139], + [51103,0.006], + [51105,0.0031], + [51107,0.0244], + [51109,0.0165], + [51111,0.0098], + [51113,0.0248], + [51115,0.0148], + [51117,0.0071], + [51119,0.0131], + [51121,0.0086], + [51125,0.006], + [51127,0.0223], + [51131,0.0079], + [51133,0.0039], + [51135,0.0056], + [51137,0.0156], + [51139,0.0073], + [51141,0.0048], + [51143,0.0093], + [51145,0.0085], + [51147,0.0082], + [51149,0.0196], + [51153,0.0262], + [51155,0.0102], + [51157,0.0156], + [51159,0.0232], + [51161,0.0101], + [51163,0.0092], + [51165,0.0095], + [51167,0.0049], + [51169,0.0026], + [51171,0.0111], + [51173,0.0059], + [51175,0.0202], + [51177,0.0179], + [51179,0.0266], + [51181,0.0063], + [51183,0.0119], + [51185,0.0069], + [51187,0.0185], + [51191,0.0051], + [51193,0.0123], + [51195,0.0065], + [51197,0.0042], + [51199,0.0207], + [51510,0.0236], + [51520,0.0139], + [51530,0.0055], + [51540,0.0155], + [51550,0.0173], + [51570,0.0134], + [51580,0.0147], + [51590,0.014], + [51595,0.0126], + [51600,0.0277], + [51610,0.0242], + [51620,0.0139], + [51630,0.0318], + [51640,0.0075], + [51650,0.0168], + [51660,0.0245], + [51670,0.015], + [51678,0.0125], + [51680,0.0129], + [51683,0.023], + [51685,0.0193], + [51690,0.01], + [51700,0.0242], + [51710,0.0196], + [51720,0.0079], + [51730,0.0145], + [51735,0.0147], + [51740,0.0179], + [51750,0.0173], + [51760,0.0176], + [51770,0.0171], + [51775,0.0107], + [51790,0.0189], + [51800,0.0183], + [51810,0.0257], + [51820,0.0108], + [51830,0.0237], + [51840,0.0226], + [53001,0.0082], + [53003,0.0168], + [53005,0.0202], + [53007,0.0142], + [53009,0.018], + [53011,0.0235], + [53013,0.0116], + [53015,0.0238], + [53017,0.0221], + [53019,0.0346], + [53021,0.0185], + [53023,0.0191], + [53025,0.0212], + [53027,0.0192], + [53029,0.0223], + [53031,0.0184], + [53033,0.0306], + [53035,0.0358], + [53037,0.0168], + [53039,0.0091], + [53041,0.0221], + [53043,0.0117], + [53045,0.0238], + [53047,0.0245], + [53049,0.0234], + [53051,0.0137], + [53053,0.0387], + [53055,0.0114], + [53057,0.0201], + [53059,0.0062], + [53061,0.0297], + [53063,0.022], + [53065,0.0216], + [53067,0.0289], + [53069,0.0117], + [53071,0.0215], + [53073,0.0211], + [53075,0.0234], + [53077,0.0159], + [54001,0.0068], + [54003,0.0135], + [54005,0.0029], + [54007,0.0065], + [54009,0.0044], + [54011,0.011], + [54013,0.0065], + [54015,0.0066], + [54017,0.0104], + [54019,0.0042], + [54021,0.0202], + [54023,0.0029], + [54025,0.0125], + [54027,0.0049], + [54029,0.0093], + [54031,0.0017], + [54033,0.0096], + [54035,0.006], + [54037,0.0126], + [54039,0.0158], + [54041,0.0057], + [54043,0.0023], + [54045,0.0048], + [54047,0.0075], + [54049,0.0071], + [54051,0.0037], + [54053,0.0093], + [54055,0.0081], + [54057,0.0051], + [54059,0.0062], + [54061,0.0116], + [54063,0.0063], + [54065,0.0072], + [54067,0.0048], + [54069,0.0081], + [54071,0.0025], + [54073,0.0063], + [54075,0.0087], + [54077,0.0051], + [54079,0.0066], + [54081,0.0082], + [54083,0.0017], + [54085,0.0027], + [54087,0.0079], + [54089,0.0094], + [54091,0.0041], + [54093,0.005], + [54095,0.0045], + [54097,0.0035], + [54099,0.0061], + [54101,0.0007], + [54103,0.006], + [54105,0.0027], + [54107,0.0087], + [54109,0.0059], + [55001,0.0111], + [55003,0.0159], + [55005,0.0055], + [55007,0.011], + [55009,0.0158], + [55011,0.0057], + [55013,0.016], + [55015,0.005], + [55017,0.0104], + [55019,0.0062], + [55021,0.0085], + [55023,0.0081], + [55025,0.015], + [55027,0.0094], + [55029,0.0066], + [55031,0.0133], + [55033,0.0105], + [55035,0.0106], + [55037,0.0016], + [55039,0.009], + [55041,0.0133], + [55043,0.0044], + [55045,0.0061], + [55047,0.0065], + [55049,0.0046], + [55051,0.0069], + [55053,0.0121], + [55055,0.0103], + [55057,0.0058], + [55059,0.0146], + [55061,0.0068], + [55063,0.0096], + [55065,0.004], + [55067,0.0082], + [55069,0.0086], + [55071,0.007], + [55073,0.0086], + [55075,0.006], + [55077,0.0071], + [55078,0.0135], + [55079,0.0174], + [55081,0.0085], + [55083,0.0071], + [55085,0.0056], + [55087,0.0083], + [55089,0.008], + [55091,0.0041], + [55093,0.0073], + [55095,0.0063], + [55097,0.0076], + [55099,0.0041], + [55101,0.0167], + [55103,0.005], + [55105,0.0162], + [55107,0.0085], + [55109,0.0066], + [55111,0.0096], + [55113,0.0142], + [55115,0.0119], + [55117,0.0103], + [55119,0.0052], + [55121,0.004], + [55123,0.0052], + [55125,0.0155], + [55127,0.01], + [55129,0.008], + [55131,0.0074], + [55133,0.0074], + [55135,0.0062], + [55137,0.0092], + [55139,0.0077], + [55141,0.0071], + [56001,0.0166], + [56003,0.0073], + [56005,0.0144], + [56007,0.0085], + [56009,0.0055], + [56011,0.0063], + [56013,0.0183], + [56015,0.0127], + [56017,0.007], + [56019,0.0119], + [56021,0.0167], + [56023,0.0121], + [56025,0.0129], + [56027,0.0087], + [56029,0.0101], + [56031,0.0137], + [56033,0.0088], + [56035,0.0175], + [56037,0.0124], + [56039,0.0032], + [56041,0.0156], + [56043,0.0183], + [56045,0.0106] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-mixed-2019.json b/data/regional/united-states/demographics/race/us-race-mixed-2019.json new file mode 100644 index 0000000..4386ef4 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-mixed-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Race Mixed Population", + "description" : "Percent of the population that identifies as two or more races.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.mixed.2019"], + [1001,0.022], + [1003,0.017], + [1005,0.012], + [1007,0.006], + [1009,0.016], + [1011,0.008], + [1013,0.021], + [1015,0.024], + [1017,0.01], + [1019,0.009], + [1021,0.025], + [1023,0.004], + [1025,0.007], + [1027,0.007], + [1029,0.02], + [1031,0.033], + [1033,0.02], + [1035,0.008], + [1037,0], + [1039,0.011], + [1041,0.031], + [1043,0.02], + [1045,0.033], + [1047,0.006], + [1049,0.024], + [1051,0.017], + [1053,0.01], + [1055,0.018], + [1057,0.024], + [1059,0.013], + [1061,0.016], + [1063,0.027], + [1065,0.004], + [1067,0.012], + [1069,0.022], + [1071,0.027], + [1073,0.017], + [1075,0.008], + [1077,0.014], + [1079,0.052], + [1081,0.019], + [1083,0.018], + [1085,0.005], + [1087,0.005], + [1089,0.031], + [1091,0.004], + [1093,0.017], + [1095,0.018], + [1097,0.018], + [1099,0.009], + [1101,0.019], + [1103,0.022], + [1105,0], + [1107,0.015], + [1109,0.024], + [1111,0.018], + [1113,0.036], + [1115,0.012], + [1117,0.02], + [1119,0.002], + [1121,0.017], + [1123,0.013], + [1125,0.011], + [1127,0.018], + [1129,0.024], + [1131,0.031], + [1133,0.019], + [2013,0.092], + [2016,0.087], + [2020,0.095], + [2050,0.034], + [2060,0.105], + [2068,0.096], + [2070,0.07], + [2090,0.073], + [2100,0.078], + [2105,0.104], + [2110,0.11], + [2122,0.057], + [2130,0.09], + [2150,0.081], + [2158,0.031], + [2164,0.059], + [2170,0.077], + [2180,0.057], + [2185,0.077], + [2188,0.037], + [2195,0.094], + [2198,0.103], + [2220,0.141], + [2230,0.04], + [2240,0.041], + [2261,0.071], + [2275,0.1], + [2282,0.083], + [2290,0.069], + [4001,0.017], + [4003,0.041], + [4005,0.036], + [4007,0.03], + [4009,0.029], + [4011,0.005], + [4012,0.028], + [4013,0.037], + [4015,0.025], + [4017,0.029], + [4019,0.049], + [4021,0.042], + [4023,0.013], + [4025,0.026], + [4027,0.027], + [5001,0.013], + [5003,0.007], + [5005,0.017], + [5007,0.03], + [5009,0.024], + [5011,0.002], + [5013,0.015], + [5015,0.021], + [5017,0.012], + [5019,0.013], + [5021,0.017], + [5023,0.008], + [5025,0.013], + [5027,0.01], + [5029,0.037], + [5031,0.027], + [5033,0.032], + [5035,0.071], + [5037,0.075], + [5039,0.015], + [5041,0.019], + [5043,0.014], + [5045,0.027], + [5047,0.019], + [5049,0.026], + [5051,0.028], + [5053,0.02], + [5055,0.018], + [5057,0.021], + [5059,0.017], + [5061,0.022], + [5063,0.027], + [5065,0.026], + [5067,0.094], + [5069,0.012], + [5071,0.026], + [5073,0.016], + [5075,0.017], + [5077,0.007], + [5079,0.009], + [5081,0.022], + [5083,0.029], + [5085,0.024], + [5087,0.02], + [5089,0.016], + [5091,0.02], + [5093,0.032], + [5095,0.016], + [5097,0.026], + [5099,0.024], + [5101,0.019], + [5103,0.011], + [5105,0.012], + [5107,0.005], + [5109,0.014], + [5111,0.06], + [5113,0.034], + [5115,0.026], + [5117,0.005], + [5119,0.027], + [5121,0.019], + [5123,0.018], + [5125,0.02], + [5127,0.051], + [5129,0.022], + [5131,0.047], + [5133,0.017], + [5135,0.034], + [5137,0.023], + [5139,0.011], + [5141,0.023], + [5143,0.035], + [5145,0.022], + [5147,0.011], + [5149,0.011], + [6001,0.065], + [6003,0.051], + [6005,0.048], + [6007,0.061], + [6009,0.052], + [6011,0.028], + [6013,0.068], + [6015,0.063], + [6017,0.039], + [6019,0.041], + [6021,0.023], + [6023,0.064], + [6025,0.036], + [6027,0.047], + [6029,0.035], + [6031,0.041], + [6033,0.037], + [6035,0.025], + [6037,0.04], + [6039,0.033], + [6041,0.049], + [6043,0.043], + [6045,0.049], + [6047,0.041], + [6049,0.023], + [6051,0.037], + [6053,0.043], + [6055,0.039], + [6057,0.038], + [6059,0.041], + [6061,0.049], + [6063,0.04], + [6065,0.044], + [6067,0.075], + [6069,0.053], + [6071,0.05], + [6073,0.052], + [6075,0.056], + [6077,0.109], + [6079,0.037], + [6081,0.057], + [6083,0.042], + [6085,0.052], + [6087,0.048], + [6089,0.042], + [6091,0.008], + [6093,0.065], + [6095,0.075], + [6097,0.054], + [6099,0.042], + [6101,0.071], + [6103,0.045], + [6105,0.02], + [6107,0.034], + [6109,0.044], + [6111,0.045], + [6113,0.063], + [6115,0.074], + [8001,0.043], + [8003,0.027], + [8005,0.045], + [8007,0.015], + [8009,0.023], + [8011,0.014], + [8013,0.03], + [8014,0.036], + [8015,0.019], + [8017,0.039], + [8019,0.032], + [8021,0.026], + [8023,0.04], + [8025,0.048], + [8027,0.024], + [8029,0.015], + [8031,0.038], + [8033,0.015], + [8035,0.03], + [8037,0.018], + [8039,0.03], + [8041,0.06], + [8043,0.022], + [8045,0.019], + [8047,0.045], + [8049,0.011], + [8051,0.019], + [8053,0.021], + [8055,0.042], + [8057,0.004], + [8059,0.028], + [8061,0.031], + [8063,0.007], + [8065,0.016], + [8067,0.023], + [8069,0.032], + [8071,0.052], + [8073,0.009], + [8075,0.041], + [8077,0.023], + [8079,0.044], + [8081,0.026], + [8083,0.021], + [8085,0.016], + [8087,0.034], + [8089,0.031], + [8091,0.008], + [8093,0.034], + [8095,0.015], + [8097,0.014], + [8099,0.017], + [8101,0.04], + [8103,0.056], + [8105,0.021], + [8107,0.009], + [8109,0.044], + [8111,0.017], + [8113,0.018], + [8115,0.014], + [8117,0.019], + [8119,0.027], + [8121,0.015], + [8123,0.03], + [8125,0.015], + [9001,0.032], + [9003,0.036], + [9005,0.022], + [9007,0.021], + [9009,0.033], + [9011,0.053], + [9013,0.024], + [9015,0.037], + [10001,0.041], + [10003,0.026], + [10005,0.023], + [11001,0.031], + [12001,0.034], + [12003,0.019], + [12005,0.038], + [12007,0.011], + [12009,0.035], + [12011,0.033], + [12013,0.029], + [12015,0.018], + [12017,0.017], + [12019,0.045], + [12021,0.013], + [12023,0.027], + [12027,0.012], + [12029,0.028], + [12031,0.036], + [12033,0.053], + [12035,0.022], + [12037,0.015], + [12039,0.01], + [12041,0.021], + [12043,0.011], + [12045,0.017], + [12047,0.015], + [12049,0.011], + [12051,0.033], + [12053,0.027], + [12055,0.021], + [12057,0.037], + [12059,0.016], + [12061,0.021], + [12063,0.022], + [12065,0.012], + [12067,0.031], + [12069,0.022], + [12071,0.018], + [12073,0.028], + [12075,0.025], + [12077,0.016], + [12079,0.006], + [12081,0.019], + [12083,0.023], + [12085,0.017], + [12086,0.017], + [12087,0.012], + [12089,0.012], + [12091,0.05], + [12093,0.02], + [12095,0.036], + [12097,0.039], + [12099,0.023], + [12101,0.027], + [12103,0.031], + [12105,0.025], + [12107,0.019], + [12109,0.024], + [12111,0.024], + [12113,0.041], + [12115,0.018], + [12117,0.031], + [12119,0.015], + [12121,0.031], + [12123,0.008], + [12125,0.017], + [12127,0.021], + [12129,0.009], + [12131,0.039], + [12133,0.017], + [13001,0.009], + [13003,0.001], + [13005,0.029], + [13007,0.005], + [13009,0.016], + [13011,0.011], + [13013,0.025], + [13015,0.024], + [13017,0.01], + [13019,0.017], + [13021,0.022], + [13023,0.008], + [13025,0.012], + [13027,0.012], + [13029,0.043], + [13031,0.035], + [13033,0.012], + [13035,0.014], + [13037,0.016], + [13039,0.035], + [13043,0.023], + [13045,0.017], + [13047,0.023], + [13049,0.028], + [13051,0.029], + [13053,0.036], + [13055,0.014], + [13057,0.024], + [13059,0.027], + [13061,0.002], + [13063,0.03], + [13065,0.022], + [13067,0.031], + [13069,0.014], + [13071,0.016], + [13073,0.042], + [13075,0.02], + [13077,0.022], + [13079,0.012], + [13081,0.011], + [13083,0.024], + [13085,0.016], + [13087,0.004], + [13089,0.028], + [13091,0.022], + [13093,0.018], + [13095,0.015], + [13097,0.025], + [13099,0.014], + [13101,0.045], + [13103,0.028], + [13105,0.009], + [13107,0.02], + [13109,0.014], + [13111,0.018], + [13113,0.033], + [13115,0.029], + [13117,0.023], + [13119,0.018], + [13121,0.023], + [13123,0.019], + [13125,0.008], + [13127,0.024], + [13129,0.019], + [13131,0.034], + [13133,0.008], + [13135,0.03], + [13137,0.024], + [13139,0.021], + [13141,0.005], + [13143,0.018], + [13145,0.029], + [13147,0.016], + [13149,0.033], + [13151,0.035], + [13153,0.036], + [13155,0.005], + [13157,0.025], + [13159,0.011], + [13161,0.033], + [13163,0.012], + [13165,0.009], + [13167,0.022], + [13169,0.015], + [13171,0.03], + [13173,0.007], + [13175,0.009], + [13177,0.026], + [13179,0.066], + [13181,0.01], + [13183,0.053], + [13185,0.024], + [13187,0.013], + [13189,0.019], + [13191,0.006], + [13193,0.009], + [13195,0.011], + [13197,0.013], + [13199,0.009], + [13201,0.006], + [13205,0.029], + [13207,0.01], + [13209,0.013], + [13211,0.017], + [13213,0.01], + [13215,0.046], + [13217,0.023], + [13219,0.022], + [13221,0.02], + [13223,0.033], + [13225,0.01], + [13227,0.083], + [13229,0.015], + [13231,0.02], + [13233,0.027], + [13235,0.014], + [13237,0.013], + [13239,0.028], + [13241,0.008], + [13243,0.018], + [13245,0.026], + [13247,0.024], + [13249,0.011], + [13251,0.011], + [13253,0.033], + [13255,0.016], + [13257,0.014], + [13259,0.015], + [13261,0.017], + [13263,0.004], + [13265,0.002], + [13267,0.015], + [13269,0.004], + [13271,0.011], + [13273,0.004], + [13275,0.024], + [13277,0.015], + [13279,0.017], + [13281,0.01], + [13283,0.004], + [13285,0.017], + [13287,0.002], + [13289,0.012], + [13291,0.013], + [13293,0.017], + [13295,0.022], + [13297,0.016], + [13299,0.02], + [13301,0.007], + [13303,0.016], + [13305,0.027], + [13307,0.019], + [13309,0.003], + [13311,0.02], + [13313,0.014], + [13315,0.005], + [13317,0.009], + [13319,0.013], + [13321,0.018], + [15001,0.289], + [15003,0.232], + [15005,0.227], + [15007,0.239], + [15009,0.219], + [16001,0.034], + [16003,0.02], + [16005,0.032], + [16007,0.011], + [16009,0.027], + [16011,0.034], + [16013,0.016], + [16015,0.029], + [16017,0.024], + [16019,0.028], + [16021,0.016], + [16023,0], + [16025,0.003], + [16027,0.039], + [16029,0.023], + [16031,0.014], + [16033,0], + [16035,0.025], + [16037,0.064], + [16039,0.041], + [16041,0.019], + [16043,0.023], + [16045,0.028], + [16047,0.025], + [16049,0.015], + [16051,0.017], + [16053,0.017], + [16055,0.028], + [16057,0.026], + [16059,0.039], + [16061,0.028], + [16063,0.028], + [16065,0.029], + [16067,0.013], + [16069,0.027], + [16071,0.018], + [16073,0.034], + [16075,0.038], + [16077,0.002], + [16079,0.026], + [16081,0.021], + [16083,0.019], + [16085,0.004], + [16087,0.033], + [17001,0.015], + [17003,0.019], + [17005,0.003], + [17007,0.024], + [17009,0.003], + [17011,0.014], + [17013,0.006], + [17015,0.015], + [17017,0.011], + [17019,0.027], + [17021,0.011], + [17023,0.012], + [17025,0.024], + [17027,0.016], + [17029,0.015], + [17031,0.027], + [17033,0.024], + [17035,0.016], + [17037,0.024], + [17039,0.02], + [17041,0.012], + [17043,0.028], + [17045,0.004], + [17047,0.014], + [17049,0.009], + [17051,0.004], + [17053,0.007], + [17055,0.011], + [17057,0.013], + [17059,0.021], + [17061,0.01], + [17063,0.018], + [17065,0], + [17067,0.015], + [17069,0.014], + [17071,0.017], + [17073,0.013], + [17075,0.019], + [17077,0.03], + [17079,0.02], + [17081,0.027], + [17083,0.024], + [17085,0.01], + [17087,0.003], + [17089,0.029], + [17091,0.019], + [17093,0.027], + [17095,0.018], + [17097,0.029], + [17099,0.018], + [17101,0.019], + [17103,0.02], + [17105,0.016], + [17107,0.028], + [17109,0.027], + [17111,0.019], + [17113,0.024], + [17115,0.055], + [17117,0.013], + [17119,0.021], + [17121,0.025], + [17123,0.017], + [17125,0.016], + [17127,0.028], + [17129,0.018], + [17131,0.015], + [17133,0.007], + [17135,0.009], + [17137,0.019], + [17139,0.007], + [17141,0.016], + [17143,0.037], + [17145,0.015], + [17147,0.016], + [17149,0.011], + [17151,0.015], + [17153,0.036], + [17155,0.012], + [17157,0.015], + [17159,0.014], + [17161,0.037], + [17163,0.03], + [17165,0.03], + [17167,0.026], + [17169,0.014], + [17171,0.009], + [17173,0.006], + [17175,0.009], + [17177,0.031], + [17179,0.014], + [17181,0.022], + [17183,0.018], + [17185,0.022], + [17187,0.011], + [17189,0.013], + [17191,0.012], + [17193,0.006], + [17195,0.02], + [17197,0.03], + [17199,0.026], + [17201,0.033], + [17203,0.017], + [18001,0.008], + [18003,0.037], + [18005,0.026], + [18007,0.016], + [18009,0.018], + [18011,0.017], + [18013,0.016], + [18015,0.006], + [18017,0.027], + [18019,0.035], + [18021,0.022], + [18023,0.008], + [18025,0.021], + [18027,0.012], + [18029,0.009], + [18031,0.007], + [18033,0.014], + [18035,0.026], + [18037,0.011], + [18039,0.031], + [18041,0.006], + [18043,0.025], + [18045,0.015], + [18047,0.013], + [18049,0.016], + [18051,0.022], + [18053,0.029], + [18055,0.015], + [18057,0.024], + [18059,0.02], + [18061,0.013], + [18063,0.019], + [18065,0.015], + [18067,0.023], + [18069,0.008], + [18071,0.015], + [18073,0.022], + [18075,0.01], + [18077,0.012], + [18079,0.004], + [18081,0.016], + [18083,0.014], + [18085,0.02], + [18087,0.017], + [18089,0.034], + [18091,0.033], + [18093,0.016], + [18095,0.027], + [18097,0.034], + [18099,0.022], + [18101,0.006], + [18103,0.014], + [18105,0.034], + [18107,0.024], + [18109,0.013], + [18111,0.007], + [18113,0.018], + [18115,0.014], + [18117,0.012], + [18119,0.017], + [18121,0.027], + [18123,0.012], + [18125,0.01], + [18127,0.024], + [18129,0.012], + [18131,0.022], + [18133,0.012], + [18135,0.025], + [18137,0.009], + [18139,0.009], + [18141,0.036], + [18143,0.013], + [18145,0.016], + [18147,0.011], + [18149,0.01], + [18151,0.023], + [18153,0.021], + [18155,0.013], + [18157,0.024], + [18159,0.023], + [18161,0.007], + [18163,0.027], + [18165,0.007], + [18167,0.033], + [18169,0.01], + [18171,0.014], + [18173,0.012], + [18175,0.011], + [18177,0.029], + [18179,0.017], + [18181,0.017], + [18183,0.019], + [19001,0.01], + [19003,0.002], + [19005,0.01], + [19007,0.015], + [19009,0.025], + [19011,0.013], + [19013,0.023], + [19015,0.017], + [19017,0.012], + [19019,0.018], + [19021,0.014], + [19023,0.009], + [19025,0.017], + [19027,0.007], + [19029,0.012], + [19031,0.004], + [19033,0.019], + [19035,0.019], + [19037,0.005], + [19039,0.019], + [19041,0.025], + [19043,0.006], + [19045,0.023], + [19047,0.021], + [19049,0.02], + [19051,0.012], + [19053,0.018], + [19055,0.011], + [19057,0.029], + [19059,0.007], + [19061,0.015], + [19063,0.017], + [19065,0.017], + [19067,0.018], + [19069,0.003], + [19071,0.012], + [19073,0.019], + [19075,0.008], + [19077,0.018], + [19079,0.001], + [19081,0.006], + [19083,0.014], + [19085,0.014], + [19087,0.026], + [19089,0.011], + [19091,0.012], + [19093,0.008], + [19095,0.013], + [19097,0.013], + [19099,0.017], + [19101,0.038], + [19103,0.023], + [19105,0.014], + [19107,0.012], + [19109,0.011], + [19111,0.022], + [19113,0.031], + [19115,0.009], + [19117,0.004], + [19119,0.011], + [19121,0.011], + [19123,0.013], + [19125,0.014], + [19127,0.023], + [19129,0.008], + [19131,0.01], + [19133,0.009], + [19135,0.003], + [19137,0.018], + [19139,0.029], + [19141,0.01], + [19143,0.017], + [19145,0.022], + [19147,0.01], + [19149,0.011], + [19151,0.006], + [19153,0.029], + [19155,0.019], + [19157,0.016], + [19159,0.007], + [19161,0.008], + [19163,0.031], + [19165,0.014], + [19167,0.017], + [19169,0.025], + [19171,0.01], + [19173,0.016], + [19175,0.01], + [19177,0.011], + [19179,0.02], + [19181,0.016], + [19183,0.014], + [19185,0.016], + [19187,0.018], + [19189,0.011], + [19191,0.005], + [19193,0.035], + [19195,0.012], + [19197,0.016], + [20001,0.045], + [20003,0.007], + [20005,0.059], + [20007,0.019], + [20009,0.019], + [20011,0.036], + [20013,0.041], + [20015,0.023], + [20017,0.021], + [20019,0.066], + [20021,0.063], + [20023,0.004], + [20025,0.022], + [20027,0.013], + [20029,0.017], + [20031,0.031], + [20033,0.002], + [20035,0.044], + [20037,0.036], + [20039,0.005], + [20041,0.02], + [20043,0.008], + [20045,0.044], + [20047,0.02], + [20049,0.036], + [20051,0.034], + [20053,0.031], + [20055,0.029], + [20057,0.022], + [20059,0.034], + [20061,0.055], + [20063,0.028], + [20065,0.038], + [20067,0.007], + [20069,0.016], + [20071,0.015], + [20073,0.042], + [20075,0.006], + [20077,0.017], + [20079,0.031], + [20081,0.011], + [20083,0.019], + [20085,0.039], + [20087,0.024], + [20089,0.011], + [20091,0.029], + [20093,0.007], + [20095,0.023], + [20097,0.029], + [20099,0.05], + [20101,0], + [20103,0.044], + [20105,0.017], + [20107,0.021], + [20109,0.028], + [20111,0.042], + [20113,0.02], + [20115,0.028], + [20117,0.02], + [20119,0.027], + [20121,0.013], + [20123,0.011], + [20125,0.046], + [20127,0.028], + [20129,0.04], + [20131,0.014], + [20133,0.032], + [20135,0.015], + [20137,0.019], + [20139,0.03], + [20141,0.022], + [20143,0.015], + [20145,0.028], + [20147,0.015], + [20149,0.021], + [20151,0.018], + [20153,0.016], + [20155,0.027], + [20157,0.009], + [20159,0.032], + [20161,0.043], + [20163,0.012], + [20165,0.035], + [20167,0.017], + [20169,0.042], + [20171,0.014], + [20173,0.044], + [20175,0.02], + [20177,0.037], + [20179,0.006], + [20181,0.018], + [20183,0.019], + [20185,0.02], + [20187,0.025], + [20189,0.04], + [20191,0.024], + [20193,0.011], + [20195,0.009], + [20197,0.021], + [20199,0.034], + [20201,0.006], + [20203,0.014], + [20205,0.043], + [20207,0.054], + [20209,0.046], + [21001,0.01], + [21003,0.016], + [21005,0.015], + [21007,0.022], + [21009,0.029], + [21011,0.013], + [21013,0.014], + [21015,0.024], + [21017,0.004], + [21019,0.025], + [21021,0.022], + [21023,0.014], + [21025,0.006], + [21027,0.017], + [21029,0.015], + [21031,0.011], + [21033,0.007], + [21035,0.029], + [21037,0.014], + [21039,0.019], + [21041,0.011], + [21043,0.008], + [21045,0.013], + [21047,0.03], + [21049,0.016], + [21051,0.017], + [21053,0.015], + [21055,0.016], + [21057,0.021], + [21059,0.026], + [21061,0.025], + [21063,0.002], + [21065,0.006], + [21067,0.038], + [21069,0.012], + [21071,0.011], + [21073,0.039], + [21075,0.026], + [21077,0.018], + [21079,0.015], + [21081,0.017], + [21083,0.026], + [21085,0.015], + [21087,0.015], + [21089,0.013], + [21091,0.017], + [21093,0.052], + [21095,0.016], + [21097,0.026], + [21099,0.015], + [21101,0.029], + [21103,0.018], + [21105,0.033], + [21107,0.024], + [21109,0.016], + [21111,0.025], + [21113,0.017], + [21115,0.005], + [21117,0.025], + [21119,0.013], + [21121,0.014], + [21123,0.016], + [21125,0.013], + [21127,0.007], + [21129,0.023], + [21131,0.015], + [21133,0.012], + [21135,0.012], + [21137,0.027], + [21139,0.02], + [21141,0.016], + [21143,0.013], + [21145,0.025], + [21147,0.026], + [21149,0.011], + [21151,0.024], + [21153,0], + [21155,0.017], + [21157,0.012], + [21159,0.007], + [21161,0.018], + [21163,0.025], + [21165,0.013], + [21167,0.016], + [21169,0.02], + [21171,0.008], + [21173,0.015], + [21175,0.011], + [21177,0.015], + [21179,0.019], + [21181,0.015], + [21183,0.011], + [21185,0.026], + [21187,0.003], + [21189,0], + [21191,0.009], + [21193,0.009], + [21195,0.007], + [21197,0.013], + [21199,0.013], + [21201,0], + [21203,0.005], + [21205,0.013], + [21207,0.015], + [21209,0.033], + [21211,0.027], + [21213,0.022], + [21215,0.012], + [21217,0.03], + [21219,0.016], + [21221,0.013], + [21223,0.013], + [21225,0.025], + [21227,0.029], + [21229,0.024], + [21231,0.013], + [21233,0.033], + [21235,0.013], + [21237,0.01], + [21239,0.025], + [22001,0.028], + [22003,0.028], + [22005,0.031], + [22007,0.011], + [22009,0.049], + [22011,0.028], + [22013,0.009], + [22015,0.019], + [22017,0.02], + [22019,0.024], + [22021,0.006], + [22023,0.014], + [22025,0.002], + [22027,0.012], + [22029,0.002], + [22031,0.02], + [22033,0.019], + [22035,0.008], + [22037,0.009], + [22039,0.015], + [22041,0.006], + [22043,0.024], + [22045,0.03], + [22047,0.015], + [22049,0.004], + [22051,0.022], + [22053,0.019], + [22055,0.017], + [22057,0.027], + [22059,0.011], + [22061,0.011], + [22063,0.018], + [22065,0.003], + [22067,0.005], + [22069,0.018], + [22071,0.019], + [22073,0.012], + [22075,0.05], + [22077,0.009], + [22079,0.023], + [22081,0.03], + [22083,0.013], + [22085,0.071], + [22087,0.024], + [22089,0.01], + [22091,0.002], + [22093,0.005], + [22095,0.015], + [22097,0.016], + [22099,0.021], + [22101,0.043], + [22103,0.019], + [22105,0.021], + [22107,0], + [22109,0.027], + [22111,0.017], + [22113,0.011], + [22115,0.033], + [22117,0.017], + [22119,0.014], + [22121,0.012], + [22123,0.014], + [22125,0.011], + [22127,0.008], + [23001,0.05], + [23003,0.016], + [23005,0.025], + [23007,0.024], + [23009,0.014], + [23011,0.017], + [23013,0.021], + [23015,0.011], + [23017,0.025], + [23019,0.02], + [23021,0.013], + [23023,0.022], + [23025,0.019], + [23027,0.019], + [23029,0.021], + [23031,0.017], + [24001,0.023], + [24003,0.041], + [24005,0.028], + [24009,0.044], + [24011,0.027], + [24013,0.02], + [24015,0.029], + [24017,0.055], + [24019,0.054], + [24021,0.033], + [24023,0.015], + [24025,0.034], + [24027,0.044], + [24029,0.023], + [24031,0.044], + [24033,0.03], + [24035,0.016], + [24037,0.037], + [24039,0.024], + [24041,0.044], + [24043,0.041], + [24045,0.027], + [24047,0.024], + [24510,0.025], + [25001,0.021], + [25003,0.028], + [25005,0.03], + [25007,0.041], + [25009,0.03], + [25011,0.026], + [25013,0.03], + [25015,0.033], + [25017,0.03], + [25019,0.031], + [25021,0.024], + [25023,0.022], + [25025,0.066], + [25027,0.029], + [26001,0.015], + [26003,0.035], + [26005,0.026], + [26007,0.014], + [26009,0.015], + [26011,0.016], + [26013,0.064], + [26015,0.014], + [26017,0.023], + [26019,0.018], + [26021,0.031], + [26023,0.016], + [26025,0.045], + [26027,0.03], + [26029,0.021], + [26031,0.033], + [26033,0.079], + [26035,0.021], + [26037,0.025], + [26039,0.016], + [26041,0.035], + [26043,0.017], + [26045,0.027], + [26047,0.031], + [26049,0.035], + [26051,0.015], + [26053,0.018], + [26055,0.023], + [26057,0.019], + [26059,0.016], + [26061,0.022], + [26063,0.013], + [26065,0.053], + [26067,0.023], + [26069,0.016], + [26071,0.012], + [26073,0.035], + [26075,0.032], + [26077,0.048], + [26079,0.016], + [26081,0.041], + [26083,0.015], + [26085,0.035], + [26087,0.016], + [26089,0.019], + [26091,0.028], + [26093,0.015], + [26095,0.061], + [26097,0.051], + [26099,0.024], + [26101,0.033], + [26103,0.031], + [26105,0.021], + [26107,0.023], + [26109,0.026], + [26111,0.02], + [26113,0.02], + [26115,0.021], + [26117,0.018], + [26119,0.016], + [26121,0.037], + [26123,0.018], + [26125,0.028], + [26127,0.018], + [26129,0.013], + [26131,0.021], + [26133,0.016], + [26135,0.016], + [26137,0.026], + [26139,0.028], + [26141,0.015], + [26143,0.022], + [26145,0.032], + [26147,0.028], + [26149,0.032], + [26151,0.015], + [26153,0.056], + [26155,0.019], + [26157,0.02], + [26159,0.042], + [26161,0.042], + [26163,0.025], + [26165,0.023], + [27001,0.02], + [27003,0.033], + [27005,0.035], + [27007,0.045], + [27009,0.027], + [27011,0.018], + [27013,0.025], + [27015,0.007], + [27017,0.03], + [27019,0.025], + [27021,0.024], + [27023,0.008], + [27025,0.016], + [27027,0.02], + [27029,0.05], + [27031,0.025], + [27033,0.014], + [27035,0.018], + [27037,0.037], + [27039,0.014], + [27041,0.015], + [27043,0.014], + [27045,0.01], + [27047,0.019], + [27049,0.02], + [27051,0.022], + [27053,0.037], + [27055,0.009], + [27057,0.021], + [27059,0.02], + [27061,0.024], + [27063,0.017], + [27065,0.026], + [27067,0.018], + [27069,0.01], + [27071,0.014], + [27073,0.01], + [27075,0.012], + [27077,0.055], + [27079,0.014], + [27081,0.011], + [27083,0.018], + [27085,0.014], + [27087,0.121], + [27089,0.013], + [27091,0.014], + [27093,0.013], + [27095,0.032], + [27097,0.014], + [27099,0.021], + [27101,0.01], + [27103,0.026], + [27105,0.026], + [27107,0.025], + [27109,0.028], + [27111,0.015], + [27113,0.019], + [27115,0.029], + [27117,0.029], + [27119,0.022], + [27121,0.014], + [27123,0.043], + [27125,0.022], + [27127,0.017], + [27129,0.014], + [27131,0.024], + [27133,0.01], + [27135,0.017], + [27137,0.03], + [27139,0.029], + [27141,0.02], + [27143,0.008], + [27145,0.021], + [27147,0.011], + [27149,0.011], + [27151,0.008], + [27153,0.016], + [27155,0.026], + [27157,0.012], + [27159,0.021], + [27161,0.017], + [27163,0.03], + [27165,0.011], + [27167,0.009], + [27169,0.017], + [27171,0.019], + [27173,0.02], + [28001,0.011], + [28003,0.018], + [28005,0.003], + [28007,0.019], + [28009,0.03], + [28011,0.005], + [28013,0.019], + [28015,0.007], + [28017,0.015], + [28019,0.005], + [28021,0.002], + [28023,0.006], + [28025,0.004], + [28027,0.007], + [28029,0.014], + [28031,0.006], + [28033,0.022], + [28035,0.021], + [28037,0.004], + [28039,0.013], + [28041,0.004], + [28043,0.007], + [28045,0.027], + [28047,0.029], + [28049,0.006], + [28051,0.001], + [28053,0], + [28055,0], + [28057,0.008], + [28059,0.024], + [28061,0.005], + [28063,0.001], + [28065,0.005], + [28067,0.01], + [28069,0.001], + [28071,0.011], + [28073,0.018], + [28075,0.007], + [28077,0.011], + [28079,0.005], + [28081,0.011], + [28083,0.003], + [28085,0.001], + [28087,0.013], + [28089,0.008], + [28091,0.002], + [28093,0.009], + [28095,0.005], + [28097,0.021], + [28099,0.016], + [28101,0.012], + [28103,0.005], + [28105,0.016], + [28107,0.023], + [28109,0.021], + [28111,0.01], + [28113,0.007], + [28115,0.013], + [28117,0.037], + [28119,0.006], + [28121,0.013], + [28123,0.007], + [28125,0], + [28127,0.01], + [28129,0.004], + [28131,0.031], + [28133,0.003], + [28135,0.004], + [28137,0.026], + [28139,0.017], + [28141,0.01], + [28143,0.007], + [28145,0.017], + [28147,0.002], + [28149,0.009], + [28151,0.006], + [28153,0.008], + [28155,0.001], + [28157,0.007], + [28159,0.01], + [28161,0.007], + [28163,0.012], + [29001,0.025], + [29003,0.018], + [29005,0.004], + [29007,0.042], + [29009,0.033], + [29011,0.04], + [29013,0.013], + [29015,0.019], + [29017,0.013], + [29019,0.04], + [29021,0.039], + [29023,0.025], + [29025,0.024], + [29027,0.018], + [29029,0.014], + [29031,0.026], + [29033,0.016], + [29035,0.013], + [29037,0.025], + [29039,0.027], + [29041,0.02], + [29043,0.024], + [29045,0.011], + [29047,0.04], + [29049,0.017], + [29051,0.021], + [29053,0.037], + [29055,0.021], + [29057,0.021], + [29059,0.015], + [29061,0.012], + [29063,0.033], + [29065,0.029], + [29067,0.003], + [29069,0.021], + [29071,0.02], + [29073,0.013], + [29075,0.01], + [29077,0.031], + [29079,0.022], + [29081,0.014], + [29083,0.021], + [29085,0.016], + [29087,0.005], + [29089,0.009], + [29091,0.016], + [29093,0.023], + [29095,0.033], + [29097,0.035], + [29099,0.018], + [29101,0.037], + [29103,0.019], + [29105,0.027], + [29107,0.02], + [29109,0.02], + [29111,0.018], + [29113,0.021], + [29115,0.018], + [29117,0.021], + [29119,0.027], + [29121,0.021], + [29123,0.015], + [29125,0.009], + [29127,0.032], + [29129,0.01], + [29131,0.012], + [29133,0.01], + [29135,0.006], + [29137,0.009], + [29139,0.023], + [29141,0.018], + [29143,0.027], + [29145,0.033], + [29147,0.015], + [29149,0.019], + [29151,0.004], + [29153,0.024], + [29155,0.018], + [29157,0.006], + [29159,0.022], + [29161,0.024], + [29163,0.022], + [29165,0.036], + [29167,0.018], + [29169,0.06], + [29171,0.031], + [29173,0.009], + [29175,0.023], + [29177,0.02], + [29179,0.026], + [29181,0.015], + [29183,0.026], + [29185,0.023], + [29186,0.006], + [29187,0.015], + [29189,0.025], + [29195,0.029], + [29197,0.022], + [29199,0.006], + [29201,0.018], + [29203,0.04], + [29205,0.014], + [29207,0.014], + [29209,0.017], + [29211,0.02], + [29213,0.022], + [29215,0.022], + [29217,0.024], + [29219,0.021], + [29221,0.019], + [29223,0.023], + [29225,0.018], + [29227,0.015], + [29229,0.016], + [29510,0.024], + [30001,0.027], + [30003,0.043], + [30005,0.02], + [30007,0.027], + [30009,0.011], + [30011,0.023], + [30013,0.044], + [30015,0.022], + [30017,0.036], + [30019,0.003], + [30021,0.016], + [30023,0.032], + [30025,0.018], + [30027,0.011], + [30029,0.023], + [30031,0.025], + [30033,0], + [30035,0.018], + [30037,0.037], + [30039,0.032], + [30041,0.042], + [30043,0.033], + [30045,0.028], + [30047,0.075], + [30049,0.03], + [30051,0.005], + [30053,0.023], + [30055,0], + [30057,0.029], + [30059,0.011], + [30061,0.028], + [30063,0.035], + [30065,0.023], + [30067,0.025], + [30069,0], + [30071,0.054], + [30073,0.017], + [30075,0.039], + [30077,0.034], + [30079,0], + [30081,0.024], + [30083,0.036], + [30085,0.052], + [30087,0.024], + [30089,0.031], + [30091,0.04], + [30093,0.019], + [30095,0.02], + [30097,0.025], + [30099,0.03], + [30101,0.016], + [30103,0.009], + [30105,0.035], + [30107,0.018], + [30109,0], + [30111,0.032], + [31001,0.02], + [31003,0.004], + [31005,0.03], + [31007,0.022], + [31009,0], + [31011,0.005], + [31013,0.022], + [31015,0.015], + [31017,0.018], + [31019,0.02], + [31021,0.012], + [31023,0.015], + [31025,0.02], + [31027,0.006], + [31029,0.003], + [31031,0.063], + [31033,0.026], + [31035,0.017], + [31037,0.02], + [31039,0.013], + [31041,0.013], + [31043,0.029], + [31045,0.014], + [31047,0.01], + [31049,0.021], + [31051,0.01], + [31053,0.018], + [31055,0.032], + [31057,0.004], + [31059,0.012], + [31061,0.012], + [31063,0.017], + [31065,0.02], + [31067,0.011], + [31069,0.003], + [31071,0], + [31073,0.013], + [31075,0.014], + [31077,0.007], + [31079,0.018], + [31081,0.016], + [31083,0.017], + [31085,0], + [31087,0.002], + [31089,0.008], + [31091,0], + [31093,0.016], + [31095,0.016], + [31097,0.011], + [31099,0.015], + [31101,0.006], + [31103,0.013], + [31105,0.041], + [31107,0.023], + [31109,0.036], + [31111,0.016], + [31113,0.002], + [31115,0], + [31117,0], + [31119,0.013], + [31121,0.023], + [31123,0.019], + [31125,0.001], + [31127,0.007], + [31129,0.006], + [31131,0.029], + [31133,0.033], + [31135,0.005], + [31137,0.021], + [31139,0.018], + [31141,0.011], + [31143,0.013], + [31145,0.025], + [31147,0.03], + [31149,0], + [31151,0.028], + [31153,0.035], + [31155,0.012], + [31157,0.024], + [31159,0.019], + [31161,0.052], + [31163,0.009], + [31165,0.031], + [31167,0.007], + [31169,0.018], + [31171,0.04], + [31173,0.019], + [31175,0.009], + [31177,0.016], + [31179,0.02], + [31181,0.025], + [31183,0.003], + [31185,0.015], + [32001,0.045], + [32003,0.054], + [32005,0.028], + [32007,0.012], + [32009,0.001], + [32011,0], + [32013,0.02], + [32015,0.017], + [32017,0.008], + [32019,0.04], + [32021,0.03], + [32023,0.036], + [32027,0.047], + [32029,0.092], + [32031,0.044], + [32033,0.011], + [32510,0.026], + [33001,0.015], + [33003,0.015], + [33005,0.022], + [33007,0.021], + [33009,0.022], + [33011,0.025], + [33013,0.017], + [33015,0.017], + [33017,0.026], + [33019,0.017], + [34001,0.036], + [34003,0.027], + [34005,0.038], + [34007,0.032], + [34009,0.02], + [34011,0.041], + [34013,0.027], + [34015,0.032], + [34017,0.038], + [34019,0.015], + [34021,0.021], + [34023,0.029], + [34025,0.02], + [34027,0.022], + [34029,0.017], + [34031,0.027], + [34033,0.033], + [34035,0.023], + [34037,0.018], + [34039,0.028], + [34041,0.024], + [35001,0.042], + [35003,0], + [35005,0.024], + [35006,0.032], + [35007,0.042], + [35009,0.055], + [35011,0.086], + [35013,0.019], + [35015,0.015], + [35017,0.015], + [35019,0.03], + [35021,0.036], + [35023,0.013], + [35025,0.017], + [35027,0.012], + [35028,0.05], + [35029,0.013], + [35031,0.037], + [35033,0.007], + [35035,0.034], + [35037,0.013], + [35039,0.021], + [35041,0.05], + [35043,0.039], + [35045,0.03], + [35047,0.033], + [35049,0.028], + [35051,0.026], + [35053,0.023], + [35055,0.023], + [35057,0.014], + [35059,0.042], + [35061,0.033], + [36001,0.042], + [36003,0.012], + [36005,0.039], + [36007,0.033], + [36009,0.021], + [36011,0.025], + [36013,0.02], + [36015,0.033], + [36017,0.017], + [36019,0.014], + [36021,0.027], + [36023,0.019], + [36025,0.018], + [36027,0.035], + [36029,0.024], + [36031,0.021], + [36033,0.016], + [36035,0.015], + [36037,0.027], + [36039,0.019], + [36041,0.014], + [36043,0.016], + [36045,0.038], + [36047,0.032], + [36049,0.009], + [36051,0.017], + [36053,0.017], + [36055,0.029], + [36057,0.028], + [36059,0.03], + [36061,0.046], + [36063,0.028], + [36065,0.03], + [36067,0.036], + [36069,0.017], + [36071,0.035], + [36073,0.024], + [36075,0.018], + [36077,0.022], + [36079,0.021], + [36081,0.036], + [36083,0.036], + [36085,0.023], + [36087,0.027], + [36089,0.019], + [36091,0.019], + [36093,0.048], + [36095,0.014], + [36097,0.015], + [36099,0.016], + [36101,0.015], + [36103,0.023], + [36105,0.046], + [36107,0.015], + [36109,0.044], + [36111,0.042], + [36113,0.015], + [36115,0.014], + [36117,0.021], + [36119,0.031], + [36121,0.02], + [36123,0.012], + [37001,0.024], + [37003,0.014], + [37005,0.005], + [37007,0.015], + [37009,0.015], + [37011,0.01], + [37013,0.018], + [37015,0.009], + [37017,0.01], + [37019,0.024], + [37021,0.02], + [37023,0.018], + [37025,0.027], + [37027,0.02], + [37029,0.012], + [37031,0.027], + [37033,0.013], + [37035,0.022], + [37037,0.03], + [37039,0.022], + [37041,0.009], + [37043,0.004], + [37045,0.013], + [37047,0.016], + [37049,0.023], + [37051,0.059], + [37053,0.024], + [37055,0.018], + [37057,0.018], + [37059,0.029], + [37061,0.019], + [37063,0.031], + [37065,0.015], + [37067,0.025], + [37069,0.028], + [37071,0.026], + [37073,0.018], + [37075,0.01], + [37077,0.044], + [37079,0.032], + [37081,0.027], + [37083,0.02], + [37085,0.037], + [37087,0.015], + [37089,0.016], + [37091,0.025], + [37093,0.049], + [37095,0.01], + [37097,0.022], + [37099,0.035], + [37101,0.027], + [37103,0.017], + [37105,0.016], + [37107,0.038], + [37109,0.022], + [37111,0.014], + [37113,0.006], + [37115,0.016], + [37117,0.011], + [37119,0.028], + [37121,0.024], + [37123,0.024], + [37125,0.018], + [37127,0.03], + [37129,0.022], + [37131,0.024], + [37133,0.07], + [37135,0.027], + [37137,0.033], + [37139,0.032], + [37141,0.028], + [37143,0.01], + [37145,0.028], + [37147,0.026], + [37149,0.008], + [37151,0.022], + [37153,0.019], + [37155,0.021], + [37157,0.024], + [37159,0.024], + [37161,0.02], + [37163,0.027], + [37165,0.023], + [37167,0.018], + [37169,0.014], + [37171,0.013], + [37173,0.042], + [37175,0.014], + [37177,0.02], + [37179,0.023], + [37181,0.024], + [37183,0.029], + [37185,0.023], + [37187,0.044], + [37189,0.014], + [37191,0.032], + [37193,0.018], + [37195,0.025], + [37197,0.017], + [37199,0.014], + [38001,0.004], + [38003,0.01], + [38005,0.037], + [38007,0.012], + [38009,0.016], + [38011,0.013], + [38013,0.016], + [38015,0.018], + [38017,0.029], + [38019,0.018], + [38021,0.006], + [38023,0.014], + [38025,0.016], + [38027,0.036], + [38029,0.025], + [38031,0.019], + [38033,0.048], + [38035,0.025], + [38037,0.014], + [38039,0.021], + [38041,0.031], + [38043,0.003], + [38045,0.014], + [38047,0.017], + [38049,0.01], + [38051,0.007], + [38053,0.025], + [38055,0.013], + [38057,0.003], + [38059,0.021], + [38061,0.026], + [38063,0.01], + [38065,0.06], + [38067,0.02], + [38069,0.015], + [38071,0.035], + [38073,0.017], + [38075,0.02], + [38077,0.028], + [38079,0.025], + [38081,0.021], + [38083,0.004], + [38085,0.023], + [38087,0.012], + [38089,0.028], + [38091,0.01], + [38093,0.027], + [38095,0.026], + [38097,0.018], + [38099,0.014], + [38101,0.041], + [38103,0.015], + [38105,0.046], + [39001,0.005], + [39003,0.035], + [39005,0.016], + [39007,0.024], + [39009,0.027], + [39011,0.013], + [39013,0.018], + [39015,0.013], + [39017,0.028], + [39019,0.003], + [39021,0.025], + [39023,0.037], + [39025,0.018], + [39027,0.027], + [39029,0.021], + [39031,0.014], + [39033,0.014], + [39035,0.031], + [39037,0.009], + [39039,0.033], + [39041,0.026], + [39043,0.031], + [39045,0.03], + [39047,0.022], + [39049,0.038], + [39051,0.024], + [39053,0.021], + [39055,0.01], + [39057,0.035], + [39059,0.024], + [39061,0.033], + [39063,0.026], + [39065,0.02], + [39067,0.012], + [39069,0.022], + [39071,0.019], + [39073,0.018], + [39075,0.011], + [39077,0.019], + [39079,0.023], + [39081,0.024], + [39083,0.017], + [39085,0.023], + [39087,0.017], + [39089,0.029], + [39091,0.023], + [39093,0.036], + [39095,0.046], + [39097,0.029], + [39099,0.032], + [39101,0.032], + [39103,0.015], + [39105,0.015], + [39107,0.007], + [39109,0.027], + [39111,0.009], + [39113,0.035], + [39115,0.023], + [39117,0.021], + [39119,0.038], + [39121,0.008], + [39123,0.014], + [39125,0.021], + [39127,0.018], + [39129,0.019], + [39131,0.021], + [39133,0.027], + [39135,0.019], + [39137,0.013], + [39139,0.03], + [39141,0.033], + [39143,0.028], + [39145,0.019], + [39147,0.017], + [39149,0.017], + [39151,0.031], + [39153,0.029], + [39155,0.025], + [39157,0.02], + [39159,0.015], + [39161,0.013], + [39163,0.023], + [39165,0.018], + [39167,0.015], + [39169,0.018], + [39171,0.019], + [39173,0.025], + [39175,0.012], + [40001,0.101], + [40003,0.067], + [40005,0.12], + [40007,0.023], + [40009,0.042], + [40011,0.056], + [40013,0.07], + [40015,0.077], + [40017,0.062], + [40019,0.086], + [40021,0.11], + [40023,0.093], + [40025,0.002], + [40027,0.072], + [40029,0.176], + [40031,0.099], + [40033,0.067], + [40035,0.079], + [40037,0.06], + [40039,0.078], + [40041,0.096], + [40043,0.058], + [40045,0.038], + [40047,0.054], + [40049,0.082], + [40051,0.057], + [40053,0.046], + [40055,0.075], + [40057,0.072], + [40059,0.018], + [40061,0.154], + [40063,0.052], + [40065,0.07], + [40067,0.048], + [40069,0.179], + [40071,0.074], + [40073,0.035], + [40075,0.068], + [40077,0.102], + [40079,0.087], + [40081,0.052], + [40083,0.045], + [40085,0.053], + [40087,0.062], + [40089,0.111], + [40091,0.11], + [40093,0.033], + [40095,0.093], + [40097,0.138], + [40099,0.102], + [40101,0.097], + [40103,0.084], + [40105,0.128], + [40107,0.139], + [40109,0.065], + [40111,0.119], + [40113,0.097], + [40115,0.097], + [40117,0.084], + [40119,0.062], + [40121,0.17], + [40123,0.14], + [40125,0.046], + [40127,0.107], + [40129,0.035], + [40131,0.091], + [40133,0.058], + [40135,0.117], + [40137,0.053], + [40139,0.042], + [40141,0.077], + [40143,0.079], + [40145,0.092], + [40147,0.062], + [40149,0.05], + [40151,0.051], + [40153,0.043], + [41001,0.022], + [41003,0.043], + [41005,0.041], + [41007,0.046], + [41009,0.041], + [41011,0.058], + [41013,0.03], + [41015,0.063], + [41017,0.03], + [41019,0.044], + [41021,0.021], + [41023,0.023], + [41025,0.063], + [41027,0.037], + [41029,0.037], + [41031,0.04], + [41033,0.036], + [41035,0.045], + [41037,0.036], + [41039,0.054], + [41041,0.046], + [41043,0.046], + [41045,0.03], + [41047,0.066], + [41049,0.031], + [41051,0.054], + [41053,0.037], + [41055,0.052], + [41057,0.035], + [41059,0.04], + [41061,0.029], + [41063,0.025], + [41065,0.032], + [41067,0.054], + [41069,0.037], + [41071,0.041], + [42001,0.023], + [42003,0.029], + [42005,0.011], + [42007,0.028], + [42009,0.01], + [42011,0.046], + [42013,0.017], + [42015,0.013], + [42017,0.02], + [42019,0.017], + [42021,0.021], + [42023,0.023], + [42025,0.008], + [42027,0.018], + [42029,0.023], + [42031,0.014], + [42033,0.014], + [42035,0.007], + [42037,0.011], + [42039,0.02], + [42041,0.027], + [42043,0.031], + [42045,0.026], + [42047,0.005], + [42049,0.032], + [42051,0.024], + [42053,0.026], + [42055,0.021], + [42057,0.011], + [42059,0.022], + [42061,0.017], + [42063,0.016], + [42065,0.011], + [42067,0.007], + [42069,0.023], + [42071,0.025], + [42073,0.024], + [42075,0.021], + [42077,0.035], + [42079,0.02], + [42081,0.018], + [42083,0.015], + [42085,0.019], + [42087,0.015], + [42089,0.031], + [42091,0.026], + [42093,0.007], + [42095,0.035], + [42097,0.014], + [42099,0.012], + [42101,0.031], + [42103,0.024], + [42105,0.015], + [42107,0.014], + [42109,0.013], + [42111,0.014], + [42113,0.007], + [42115,0.011], + [42117,0.014], + [42119,0.022], + [42121,0.019], + [42123,0.011], + [42125,0.02], + [42127,0.019], + [42129,0.017], + [42131,0.014], + [42133,0.025], + [44001,0.018], + [44003,0.023], + [44005,0.025], + [44007,0.041], + [44009,0.02], + [45001,0.019], + [45003,0.024], + [45005,0.005], + [45007,0.023], + [45009,0.005], + [45011,0.009], + [45013,0.023], + [45015,0.035], + [45017,0.006], + [45019,0.021], + [45021,0.024], + [45023,0.018], + [45025,0.028], + [45027,0.013], + [45029,0.009], + [45031,0.016], + [45033,0.021], + [45035,0.032], + [45037,0.018], + [45039,0.019], + [45041,0.014], + [45043,0.014], + [45045,0.026], + [45047,0.019], + [45049,0.012], + [45051,0.017], + [45053,0.021], + [45055,0.03], + [45057,0.025], + [45059,0.029], + [45061,0.012], + [45063,0.024], + [45065,0.027], + [45067,0.01], + [45069,0.041], + [45071,0.009], + [45073,0.027], + [45075,0.021], + [45077,0.016], + [45079,0.03], + [45081,0.012], + [45083,0.022], + [45085,0.032], + [45087,0.034], + [45089,0.009], + [45091,0.02], + [46003,0.014], + [46005,0.01], + [46007,0.053], + [46009,0.018], + [46011,0.014], + [46013,0.015], + [46015,0.019], + [46017,0.01], + [46019,0.018], + [46021,0.005], + [46023,0.05], + [46025,0.023], + [46027,0.023], + [46029,0.019], + [46031,0.015], + [46033,0.019], + [46035,0.02], + [46037,0.02], + [46039,0.005], + [46041,0.007], + [46043,0.029], + [46045,0.005], + [46047,0.041], + [46049,0.005], + [46051,0.012], + [46053,0.029], + [46055,0.026], + [46057,0.015], + [46059,0.012], + [46061,0.005], + [46063,0.014], + [46065,0.027], + [46067,0.017], + [46069,0.025], + [46071,0.023], + [46073,0.005], + [46075,0], + [46077,0.006], + [46079,0.024], + [46081,0.023], + [46083,0.022], + [46085,0.012], + [46087,0.014], + [46089,0.004], + [46091,0.015], + [46093,0.027], + [46095,0.022], + [46097,0.018], + [46099,0.03], + [46101,0.053], + [46102,0.013], + [46103,0.051], + [46105,0.011], + [46107,0.035], + [46109,0.022], + [46111,0.01], + [46115,0.01], + [46117,0.024], + [46119,0.026], + [46121,0.018], + [46123,0.072], + [46125,0.011], + [46127,0.02], + [46129,0.033], + [46135,0.022], + [46137,0.006], + [47001,0.027], + [47003,0.022], + [47005,0.015], + [47007,0.04], + [47009,0.02], + [47011,0.019], + [47013,0.014], + [47015,0.015], + [47017,0.02], + [47019,0.008], + [47021,0.018], + [47023,0.025], + [47025,0.014], + [47027,0.009], + [47029,0.021], + [47031,0.021], + [47033,0.023], + [47035,0.012], + [47037,0.026], + [47039,0.031], + [47041,0.016], + [47043,0.019], + [47045,0.028], + [47047,0.009], + [47049,0.011], + [47051,0.033], + [47053,0.033], + [47055,0.027], + [47057,0.017], + [47059,0.018], + [47061,0.099], + [47063,0.024], + [47065,0.021], + [47067,0.005], + [47069,0.013], + [47071,0.011], + [47073,0.016], + [47075,0.01], + [47077,0.022], + [47079,0.016], + [47081,0.014], + [47083,0.011], + [47085,0.023], + [47087,0.022], + [47089,0.018], + [47091,0.013], + [47093,0.022], + [47095,0.021], + [47097,0.02], + [47099,0.016], + [47101,0.013], + [47103,0.022], + [47105,0.02], + [47107,0.02], + [47109,0.022], + [47111,0.02], + [47113,0.02], + [47115,0.034], + [47117,0.014], + [47119,0.027], + [47121,0.015], + [47123,0.017], + [47125,0.048], + [47127,0.01], + [47129,0.006], + [47131,0.021], + [47133,0.009], + [47135,0.019], + [47137,0.003], + [47139,0.021], + [47141,0.019], + [47143,0.019], + [47145,0.022], + [47147,0.023], + [47149,0.033], + [47151,0.012], + [47153,0.025], + [47155,0.021], + [47157,0.017], + [47159,0.018], + [47161,0.033], + [47163,0.022], + [47165,0.022], + [47167,0.021], + [47169,0.038], + [47171,0.016], + [47173,0.011], + [47175,0.033], + [47177,0.027], + [47179,0.021], + [47181,0.005], + [47183,0.014], + [47185,0.017], + [47187,0.023], + [47189,0.017], + [48001,0.015], + [48003,0.034], + [48005,0.016], + [48007,0.04], + [48009,0.019], + [48011,0.036], + [48013,0.047], + [48015,0.028], + [48017,0], + [48019,0.066], + [48021,0.026], + [48023,0.006], + [48025,0.035], + [48027,0.054], + [48029,0.034], + [48031,0.036], + [48033,0.024], + [48035,0.018], + [48037,0.028], + [48039,0.022], + [48041,0.03], + [48043,0.027], + [48045,0.097], + [48047,0.018], + [48049,0.023], + [48051,0.023], + [48053,0.017], + [48055,0.014], + [48057,0.04], + [48059,0.031], + [48061,0.008], + [48063,0.029], + [48065,0.021], + [48067,0.024], + [48069,0.035], + [48071,0.022], + [48073,0.02], + [48075,0.023], + [48077,0.016], + [48079,0.025], + [48081,0.008], + [48083,0.037], + [48085,0.031], + [48087,0.031], + [48089,0.019], + [48091,0.024], + [48093,0.011], + [48095,0.003], + [48097,0.028], + [48099,0.089], + [48101,0.049], + [48103,0], + [48105,0.01], + [48107,0.015], + [48109,0.028], + [48111,0.022], + [48113,0.026], + [48115,0.041], + [48117,0.037], + [48119,0.02], + [48121,0.036], + [48123,0.012], + [48125,0.002], + [48127,0.006], + [48129,0.02], + [48131,0.001], + [48133,0.007], + [48135,0.03], + [48137,0.001], + [48139,0.038], + [48141,0.027], + [48143,0.019], + [48145,0.01], + [48147,0.033], + [48149,0.008], + [48151,0.048], + [48153,0.017], + [48155,0.097], + [48157,0.028], + [48159,0.037], + [48161,0.017], + [48163,0.018], + [48165,0.003], + [48167,0.029], + [48169,0.013], + [48171,0.031], + [48173,0], + [48175,0.005], + [48177,0.016], + [48179,0.028], + [48181,0.035], + [48183,0.027], + [48185,0.028], + [48187,0.032], + [48189,0.046], + [48191,0.04], + [48193,0.013], + [48195,0.01], + [48197,0.023], + [48199,0.014], + [48201,0.024], + [48203,0.02], + [48205,0.04], + [48207,0.021], + [48209,0.025], + [48211,0.024], + [48213,0.014], + [48215,0.017], + [48217,0.019], + [48219,0.024], + [48221,0.013], + [48223,0.02], + [48225,0.018], + [48227,0.032], + [48229,0.027], + [48231,0.021], + [48233,0.042], + [48235,0.009], + [48237,0.008], + [48239,0.017], + [48241,0.014], + [48243,0.008], + [48245,0.017], + [48247,0.007], + [48249,0.009], + [48251,0.019], + [48253,0.057], + [48255,0.039], + [48257,0.025], + [48259,0.043], + [48261,0], + [48263,0.005], + [48265,0.025], + [48267,0.029], + [48269,0], + [48271,0], + [48273,0.022], + [48275,0.026], + [48277,0.039], + [48279,0.026], + [48281,0.038], + [48283,0.037], + [48285,0.029], + [48287,0.01], + [48289,0.009], + [48291,0.01], + [48293,0.011], + [48295,0.039], + [48297,0.011], + [48299,0.028], + [48301,0], + [48303,0.029], + [48305,0.047], + [48307,0.051], + [48309,0.022], + [48311,0], + [48313,0.026], + [48315,0.014], + [48317,0.007], + [48319,0.058], + [48321,0.018], + [48323,0.007], + [48325,0.02], + [48327,0.088], + [48329,0.025], + [48331,0.019], + [48333,0], + [48335,0.022], + [48337,0.019], + [48339,0.027], + [48341,0.025], + [48343,0.027], + [48345,0.031], + [48347,0.019], + [48349,0.029], + [48351,0.03], + [48353,0.011], + [48355,0.017], + [48357,0.03], + [48359,0.028], + [48361,0.016], + [48363,0.016], + [48365,0.006], + [48367,0.024], + [48369,0.053], + [48371,0.015], + [48373,0.02], + [48375,0.03], + [48377,0], + [48379,0.012], + [48381,0.034], + [48383,0.017], + [48385,0], + [48387,0.023], + [48389,0.008], + [48391,0.042], + [48393,0.029], + [48395,0.011], + [48397,0.031], + [48399,0.012], + [48401,0.026], + [48403,0.033], + [48405,0.023], + [48407,0.024], + [48409,0.024], + [48411,0.049], + [48413,0.002], + [48415,0.029], + [48417,0.025], + [48419,0.005], + [48421,0.043], + [48423,0.018], + [48425,0.001], + [48427,0.004], + [48429,0.032], + [48431,0.01], + [48433,0.008], + [48435,0], + [48437,0.05], + [48439,0.032], + [48441,0.025], + [48443,0.025], + [48445,0.015], + [48447,0.01], + [48449,0.023], + [48451,0.02], + [48453,0.036], + [48455,0.019], + [48457,0.023], + [48459,0.02], + [48461,0.001], + [48463,0.007], + [48465,0.009], + [48467,0.018], + [48469,0.024], + [48471,0.014], + [48473,0.016], + [48475,0.015], + [48477,0.018], + [48479,0.005], + [48481,0.01], + [48483,0.039], + [48485,0.034], + [48487,0.021], + [48489,0.003], + [48491,0.042], + [48493,0.033], + [48495,0.035], + [48497,0.023], + [48499,0.015], + [48501,0.015], + [48503,0.004], + [48505,0.004], + [48507,0.007], + [49001,0.026], + [49003,0.015], + [49005,0.025], + [49007,0.013], + [49009,0], + [49011,0.033], + [49013,0.022], + [49015,0.01], + [49017,0.005], + [49019,0.013], + [49021,0.025], + [49023,0.023], + [49025,0.026], + [49027,0.015], + [49029,0.011], + [49031,0.004], + [49033,0], + [49035,0.034], + [49037,0.026], + [49039,0.014], + [49041,0.006], + [49043,0.022], + [49045,0.034], + [49047,0.027], + [49049,0.031], + [49051,0.022], + [49053,0.021], + [49055,0.012], + [49057,0.035], + [50001,0.018], + [50003,0.017], + [50005,0.02], + [50007,0.022], + [50009,0.014], + [50011,0.028], + [50013,0.036], + [50015,0.016], + [50017,0.018], + [50019,0.02], + [50021,0.01], + [50023,0.02], + [50025,0.025], + [50027,0.019], + [51001,0.01], + [51003,0.024], + [51005,0.011], + [51007,0.028], + [51009,0.032], + [51011,0.019], + [51013,0.038], + [51015,0.018], + [51017,0.043], + [51019,0.021], + [51021,0.01], + [51023,0.018], + [51025,0.022], + [51027,0.006], + [51029,0.015], + [51031,0.028], + [51033,0.038], + [51035,0.015], + [51036,0.03], + [51037,0.015], + [51041,0.031], + [51043,0.026], + [51045,0.012], + [51047,0.034], + [51049,0.044], + [51051,0.011], + [51053,0.016], + [51057,0.017], + [51059,0.047], + [51061,0.032], + [51063,0.016], + [51065,0.032], + [51067,0.02], + [51069,0.028], + [51071,0.009], + [51073,0.022], + [51075,0.02], + [51077,0.009], + [51079,0.04], + [51081,0.024], + [51083,0.028], + [51085,0.022], + [51087,0.035], + [51089,0.018], + [51091,0.005], + [51093,0.028], + [51095,0.033], + [51097,0.051], + [51099,0.036], + [51101,0.025], + [51103,0.002], + [51105,0.012], + [51107,0.052], + [51109,0.035], + [51111,0.027], + [51113,0.037], + [51115,0.023], + [51117,0.011], + [51119,0.039], + [51121,0.017], + [51125,0.011], + [51127,0.039], + [51131,0.029], + [51133,0.018], + [51135,0.006], + [51137,0.034], + [51139,0.021], + [51141,0.005], + [51143,0.03], + [51145,0.018], + [51147,0.025], + [51149,0.043], + [51153,0.056], + [51155,0.022], + [51157,0.023], + [51159,0.054], + [51161,0.021], + [51163,0.019], + [51165,0.02], + [51167,0.01], + [51169,0.007], + [51171,0.026], + [51173,0.007], + [51175,0.043], + [51177,0.045], + [51179,0.054], + [51181,0.023], + [51183,0.028], + [51185,0.012], + [51187,0.035], + [51191,0.014], + [51193,0.025], + [51195,0.017], + [51197,0.014], + [51199,0.046], + [51510,0.053], + [51520,0.032], + [51530,0.006], + [51540,0.029], + [51550,0.04], + [51570,0.031], + [51580,0.035], + [51590,0.032], + [51595,0.084], + [51600,0.051], + [51610,0.037], + [51620,0.041], + [51630,0.071], + [51640,0.003], + [51650,0.042], + [51660,0.067], + [51670,0.024], + [51678,0.028], + [51680,0.025], + [51683,0.052], + [51685,0.039], + [51690,0.04], + [51700,0.052], + [51710,0.047], + [51720,0.025], + [51730,0.023], + [51735,0.021], + [51740,0.036], + [51750,0.032], + [51760,0.034], + [51770,0.044], + [51775,0.03], + [51790,0.032], + [51800,0.038], + [51810,0.056], + [51820,0.021], + [51830,0.036], + [51840,0.042], + [53001,0.021], + [53003,0.039], + [53005,0.039], + [53007,0.038], + [53009,0.039], + [53011,0.051], + [53013,0.053], + [53015,0.056], + [53017,0.034], + [53019,0.086], + [53021,0.048], + [53023,0.055], + [53025,0.042], + [53027,0.043], + [53029,0.047], + [53031,0.038], + [53033,0.064], + [53035,0.076], + [53037,0.037], + [53039,0.022], + [53041,0.053], + [53043,0.026], + [53045,0.058], + [53047,0.055], + [53049,0.038], + [53051,0.026], + [53053,0.083], + [53055,0.025], + [53057,0.039], + [53059,0.023], + [53061,0.063], + [53063,0.048], + [53065,0.038], + [53067,0.061], + [53069,0.017], + [53071,0.046], + [53073,0.047], + [53075,0.048], + [53077,0.033], + [54001,0.019], + [54003,0.03], + [54005,0.009], + [54007,0.018], + [54009,0.01], + [54011,0.023], + [54013,0.007], + [54015,0.003], + [54017,0.017], + [54019,0.008], + [54021,0.019], + [54023,0.008], + [54025,0.02], + [54027,0.01], + [54029,0.025], + [54031,0.008], + [54033,0.022], + [54035,0.008], + [54037,0.031], + [54039,0.027], + [54041,0.012], + [54043,0.013], + [54045,0.012], + [54047,0.013], + [54049,0.014], + [54051,0.009], + [54053,0.014], + [54055,0.015], + [54057,0.012], + [54059,0.011], + [54061,0.027], + [54063,0.014], + [54065,0.024], + [54067,0.01], + [54069,0.019], + [54071,0.007], + [54073,0.009], + [54075,0.005], + [54077,0.012], + [54079,0.011], + [54081,0.02], + [54083,0.004], + [54085,0.017], + [54087,0.016], + [54089,0.022], + [54091,0.014], + [54093,0.013], + [54095,0.009], + [54097,0.007], + [54099,0.007], + [54101,0.003], + [54103,0.009], + [54105,0], + [54107,0.013], + [54109,0.011], + [55001,0.019], + [55003,0.027], + [55005,0.012], + [55007,0.023], + [55009,0.034], + [55011,0.01], + [55013,0.034], + [55015,0.01], + [55017,0.018], + [55019,0.015], + [55021,0.015], + [55023,0.016], + [55025,0.031], + [55027,0.018], + [55029,0.009], + [55031,0.024], + [55033,0.02], + [55035,0.017], + [55037,0.011], + [55039,0.022], + [55041,0.023], + [55043,0.007], + [55045,0.012], + [55047,0.012], + [55049,0.01], + [55051,0.01], + [55053,0.03], + [55055,0.023], + [55057,0.015], + [55059,0.028], + [55061,0.013], + [55063,0.02], + [55065,0.007], + [55067,0.018], + [55069,0.016], + [55071,0.014], + [55073,0.021], + [55075,0.015], + [55077,0.015], + [55078,0.047], + [55079,0.037], + [55081,0.014], + [55083,0.015], + [55085,0.011], + [55087,0.02], + [55089,0.022], + [55091,0.009], + [55093,0.018], + [55095,0.012], + [55097,0.015], + [55099,0.01], + [55101,0.031], + [55103,0.009], + [55105,0.032], + [55107,0.022], + [55109,0.018], + [55111,0.021], + [55113,0.035], + [55115,0.026], + [55117,0.021], + [55119,0.015], + [55121,0.009], + [55123,0.013], + [55125,0.036], + [55127,0.024], + [55129,0.016], + [55131,0.015], + [55133,0.016], + [55135,0.011], + [55137,0.018], + [55139,0.017], + [55141,0.017], + [56001,0.03], + [56003,0.016], + [56005,0.031], + [56007,0.021], + [56009,0.031], + [56011,0.022], + [56013,0.038], + [56015,0.023], + [56017,0.01], + [56019,0.012], + [56021,0.037], + [56023,0.029], + [56025,0.022], + [56027,0.005], + [56029,0.02], + [56031,0.025], + [56033,0.015], + [56035,0.034], + [56037,0.023], + [56039,0.007], + [56041,0.035], + [56043,0.038], + [56045,0.013] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-native-2010.json b/data/regional/united-states/demographics/race/us-race-native-2010.json new file mode 100644 index 0000000..64c548d --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-native-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Native American Population", + "description" : "Percent of the population that is native american in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.native.2010"], + [1001,0.004], + [1003,0.007], + [1005,0.004], + [1007,0.003], + [1009,0.005], + [1011,0.002], + [1013,0.003], + [1015,0.005], + [1017,0.002], + [1019,0.005], + [1021,0.004], + [1023,0.001], + [1025,0.004], + [1027,0.004], + [1029,0.003], + [1031,0.013], + [1033,0.005], + [1035,0.003], + [1037,0.003], + [1039,0.006], + [1041,0.004], + [1043,0.005], + [1045,0.007], + [1047,0.002], + [1049,0.014], + [1051,0.004], + [1053,0.034], + [1055,0.004], + [1057,0.003], + [1059,0.007], + [1061,0.008], + [1063,0.002], + [1065,0.002], + [1067,0.003], + [1069,0.004], + [1071,0.014], + [1073,0.003], + [1075,0.002], + [1077,0.004], + [1079,0.057], + [1081,0.003], + [1083,0.007], + [1085,0.002], + [1087,0.001], + [1089,0.008], + [1091,0.002], + [1093,0.003], + [1095,0.008], + [1097,0.009], + [1099,0.011], + [1101,0.003], + [1103,0.009], + [1105,0.002], + [1107,0.001], + [1109,0.006], + [1111,0.004], + [1113,0.004], + [1115,0.003], + [1117,0.003], + [1119,0.001], + [1121,0.003], + [1123,0.003], + [1125,0.003], + [1127,0.004], + [1129,0.08], + [1131,0.001], + [1133,0.007], + [2013,0.279], + [2016,0.154], + [2020,0.079], + [2050,0.829], + [2060,0.335], + [2068,0.036], + [2070,0.716], + [2090,0.07], + [2100,0.092], + [2105,0.414], + [2110,0.118], + [2122,0.074], + [2130,0.142], + [2150,0.132], + [2158,0.95], + [2164,0.651], + [2170,0.055], + [2180,0.758], + [2185,0.541], + [2188,0.814], + [2195,0.161], + [2198,0.397], + [2220,0.168], + [2230,0.035], + [2240,0.115], + [2261,0.136], + [2275,0.162], + [2282,0.358], + [2290,0.714], + [4001,0.729], + [4003,0.012], + [4005,0.273], + [4007,0.148], + [4009,0.144], + [4011,0.023], + [4012,0.128], + [4013,0.021], + [4015,0.022], + [4017,0.434], + [4019,0.033], + [4021,0.056], + [4023,0.007], + [4025,0.017], + [4027,0.016], + [5001,0.002], + [5003,0.003], + [5005,0.006], + [5007,0.017], + [5009,0.007], + [5011,0.005], + [5013,0.003], + [5015,0.009], + [5017,0.002], + [5019,0.004], + [5021,0.003], + [5023,0.005], + [5025,0.003], + [5027,0.003], + [5029,0.007], + [5031,0.004], + [5033,0.022], + [5035,0.003], + [5037,0.003], + [5039,0.004], + [5041,0.003], + [5043,0.002], + [5045,0.006], + [5047,0.01], + [5049,0.006], + [5051,0.006], + [5053,0.004], + [5055,0.005], + [5057,0.004], + [5059,0.005], + [5061,0.007], + [5063,0.005], + [5065,0.008], + [5067,0.005], + [5069,0.003], + [5071,0.009], + [5073,0.002], + [5075,0.004], + [5077,0.005], + [5079,0.003], + [5081,0.015], + [5083,0.011], + [5085,0.005], + [5087,0.012], + [5089,0.007], + [5091,0.007], + [5093,0.003], + [5095,0.004], + [5097,0.008], + [5099,0.003], + [5101,0.011], + [5103,0.003], + [5105,0.007], + [5107,0.002], + [5109,0.006], + [5111,0.002], + [5113,0.018], + [5115,0.008], + [5117,0.003], + [5119,0.004], + [5121,0.005], + [5123,0.005], + [5125,0.005], + [5127,0.019], + [5129,0.012], + [5131,0.019], + [5133,0.023], + [5135,0.01], + [5137,0.007], + [5139,0.003], + [5141,0.007], + [5143,0.012], + [5145,0.006], + [5147,0.002], + [5149,0.007], + [6001,0.006], + [6003,0.204], + [6005,0.018], + [6007,0.02], + [6009,0.015], + [6011,0.02], + [6013,0.006], + [6015,0.078], + [6017,0.011], + [6019,0.017], + [6021,0.022], + [6023,0.057], + [6025,0.018], + [6027,0.114], + [6029,0.015], + [6031,0.017], + [6033,0.032], + [6035,0.035], + [6037,0.007], + [6039,0.027], + [6041,0.006], + [6043,0.029], + [6045,0.049], + [6047,0.014], + [6049,0.038], + [6051,0.021], + [6053,0.013], + [6055,0.008], + [6057,0.011], + [6059,0.006], + [6061,0.009], + [6063,0.027], + [6065,0.011], + [6067,0.01], + [6069,0.016], + [6071,0.011], + [6073,0.009], + [6075,0.005], + [6077,0.011], + [6079,0.009], + [6081,0.005], + [6083,0.013], + [6085,0.007], + [6087,0.009], + [6089,0.028], + [6091,0.014], + [6093,0.04], + [6095,0.008], + [6097,0.013], + [6099,0.011], + [6101,0.014], + [6103,0.026], + [6105,0.048], + [6107,0.016], + [6109,0.019], + [6111,0.01], + [6113,0.011], + [6115,0.023], + [8001,0.013], + [8003,0.028], + [8005,0.008], + [8007,0.019], + [8009,0.013], + [8011,0.024], + [8013,0.006], + [8014,0.006], + [8015,0.011], + [8017,0.007], + [8019,0.008], + [8021,0.022], + [8023,0.03], + [8025,0.024], + [8027,0.007], + [8029,0.01], + [8031,0.014], + [8033,0.029], + [8035,0.004], + [8037,0.007], + [8039,0.007], + [8041,0.01], + [8043,0.017], + [8045,0.011], + [8047,0.008], + [8049,0.005], + [8051,0.014], + [8053,0.011], + [8055,0.032], + [8057,0.012], + [8059,0.009], + [8061,0.005], + [8063,0.007], + [8065,0.013], + [8067,0.058], + [8069,0.007], + [8071,0.024], + [8073,0.009], + [8075,0.012], + [8077,0.011], + [8079,0.006], + [8081,0.009], + [8083,0.122], + [8085,0.011], + [8087,0.008], + [8089,0.018], + [8091,0.004], + [8093,0.009], + [8095,0.005], + [8097,0.003], + [8099,0.009], + [8101,0.019], + [8103,0.009], + [8105,0.018], + [8107,0.005], + [8109,0.019], + [8111,0.003], + [8113,0.008], + [8115,0.004], + [8117,0.003], + [8119,0.009], + [8121,0.001], + [8123,0.011], + [8125,0.005], + [9001,0.003], + [9003,0.003], + [9005,0.002], + [9007,0.002], + [9009,0.003], + [9011,0.009], + [9013,0.002], + [9015,0.005], + [10001,0.006], + [10003,0.003], + [10005,0.008], + [11001,0.003], + [12001,0.003], + [12003,0.003], + [12005,0.007], + [12007,0.003], + [12009,0.004], + [12011,0.003], + [12013,0.011], + [12015,0.003], + [12017,0.003], + [12019,0.005], + [12021,0.003], + [12023,0.005], + [12027,0.004], + [12029,0.004], + [12031,0.004], + [12033,0.009], + [12035,0.003], + [12037,0.005], + [12039,0.003], + [12041,0.005], + [12043,0.046], + [12045,0.004], + [12047,0.006], + [12049,0.006], + [12051,0.017], + [12053,0.004], + [12055,0.005], + [12057,0.004], + [12059,0.008], + [12061,0.003], + [12063,0.007], + [12065,0.003], + [12067,0.004], + [12069,0.005], + [12071,0.004], + [12073,0.003], + [12075,0.004], + [12077,0.011], + [12079,0.005], + [12081,0.003], + [12083,0.004], + [12085,0.006], + [12086,0.002], + [12087,0.004], + [12089,0.004], + [12091,0.006], + [12093,0.01], + [12095,0.004], + [12097,0.005], + [12099,0.005], + [12101,0.004], + [12103,0.003], + [12105,0.004], + [12107,0.005], + [12109,0.003], + [12111,0.004], + [12113,0.009], + [12115,0.002], + [12117,0.003], + [12119,0.004], + [12121,0.005], + [12123,0.008], + [12125,0.004], + [12127,0.004], + [12129,0.006], + [12131,0.009], + [12133,0.013], + [13001,0.004], + [13003,0.006], + [13005,0.002], + [13007,0.003], + [13009,0.002], + [13011,0.003], + [13013,0.003], + [13015,0.004], + [13017,0.003], + [13019,0.003], + [13021,0.002], + [13023,0.001], + [13025,0.003], + [13027,0.003], + [13029,0.003], + [13031,0.003], + [13033,0.002], + [13035,0.002], + [13037,0.001], + [13039,0.005], + [13043,0.001], + [13045,0.004], + [13047,0.003], + [13049,0.004], + [13051,0.003], + [13053,0.007], + [13055,0.003], + [13057,0.004], + [13059,0.002], + [13061,0.003], + [13063,0.004], + [13065,0.006], + [13067,0.003], + [13069,0.003], + [13071,0.005], + [13073,0.003], + [13075,0.002], + [13077,0.003], + [13079,0.005], + [13081,0.001], + [13083,0.004], + [13085,0.004], + [13087,0.004], + [13089,0.004], + [13091,0.003], + [13093,0.001], + [13095,0.002], + [13097,0.003], + [13099,0.004], + [13101,0.018], + [13103,0.003], + [13105,0.002], + [13107,0.003], + [13109,0.002], + [13111,0.003], + [13113,0.003], + [13115,0.004], + [13117,0.003], + [13119,0.002], + [13121,0.002], + [13123,0.003], + [13125,0.002], + [13127,0.003], + [13129,0.004], + [13131,0.007], + [13133,0.003], + [13135,0.005], + [13137,0.005], + [13139,0.005], + [13141,0.004], + [13143,0.002], + [13145,0.003], + [13147,0.001], + [13149,0.003], + [13151,0.003], + [13153,0.003], + [13155,0], + [13157,0.002], + [13159,0.004], + [13161,0.002], + [13163,0.001], + [13165,0.003], + [13167,0.002], + [13169,0.002], + [13171,0.003], + [13173,0.005], + [13175,0.002], + [13177,0.003], + [13179,0.006], + [13181,0.004], + [13183,0.006], + [13185,0.004], + [13187,0.006], + [13189,0.003], + [13191,0.004], + [13193,0.003], + [13195,0.003], + [13197,0.005], + [13199,0.004], + [13201,0.002], + [13205,0.003], + [13207,0.003], + [13209,0.001], + [13211,0.003], + [13213,0.004], + [13215,0.004], + [13217,0.002], + [13219,0.001], + [13221,0.002], + [13223,0.003], + [13225,0.002], + [13227,0.003], + [13229,0.004], + [13231,0.003], + [13233,0.003], + [13235,0.003], + [13237,0.002], + [13239,0.002], + [13241,0.004], + [13243,0.001], + [13245,0.003], + [13247,0.003], + [13249,0], + [13251,0.003], + [13253,0.001], + [13255,0.003], + [13257,0.003], + [13259,0.002], + [13261,0.003], + [13263,0.003], + [13265,0.001], + [13267,0.003], + [13269,0.001], + [13271,0.002], + [13273,0.002], + [13275,0.004], + [13277,0.002], + [13279,0.003], + [13281,0.003], + [13283,0.002], + [13285,0.003], + [13287,0.003], + [13289,0.003], + [13291,0.003], + [13293,0.003], + [13295,0.003], + [13297,0.003], + [13299,0.003], + [13301,0.002], + [13303,0.001], + [13305,0.004], + [13307,0], + [13309,0.001], + [13311,0.005], + [13313,0.006], + [13315,0.002], + [13317,0.002], + [13319,0.003], + [13321,0.003], + [15001,0.005], + [15003,0.003], + [15005,0], + [15007,0.004], + [15009,0.004], + [16001,0.007], + [16003,0.01], + [16005,0.032], + [16007,0.005], + [16009,0.087], + [16011,0.065], + [16013,0.006], + [16015,0.008], + [16017,0.008], + [16019,0.008], + [16021,0.017], + [16023,0.004], + [16025,0.005], + [16027,0.011], + [16029,0.003], + [16031,0.008], + [16033,0.01], + [16035,0.022], + [16037,0.006], + [16039,0.01], + [16041,0.004], + [16043,0.007], + [16045,0.006], + [16047,0.008], + [16049,0.03], + [16051,0.008], + [16053,0.013], + [16055,0.013], + [16057,0.006], + [16059,0.007], + [16061,0.047], + [16063,0.007], + [16065,0.003], + [16067,0.012], + [16069,0.056], + [16071,0.005], + [16073,0.043], + [16075,0.011], + [16077,0.023], + [16079,0.014], + [16081,0.003], + [16083,0.008], + [16085,0.007], + [16087,0.01], + [17001,0.002], + [17003,0.003], + [17005,0.005], + [17007,0.004], + [17009,0.002], + [17011,0.003], + [17013,0.002], + [17015,0.003], + [17017,0.003], + [17019,0.003], + [17021,0.001], + [17023,0.002], + [17025,0.002], + [17027,0.002], + [17029,0.002], + [17031,0.004], + [17033,0.002], + [17035,0.002], + [17037,0.003], + [17039,0.002], + [17041,0.002], + [17043,0.003], + [17045,0.001], + [17047,0.001], + [17049,0.001], + [17051,0.002], + [17053,0.002], + [17055,0.003], + [17057,0.004], + [17059,0.003], + [17061,0.002], + [17063,0.002], + [17065,0.002], + [17067,0.002], + [17069,0.006], + [17071,0.002], + [17073,0.002], + [17075,0.002], + [17077,0.004], + [17079,0.001], + [17081,0.002], + [17083,0.003], + [17085,0.002], + [17087,0.002], + [17089,0.006], + [17091,0.003], + [17093,0.003], + [17095,0.002], + [17097,0.005], + [17099,0.003], + [17101,0.002], + [17103,0.002], + [17105,0.002], + [17107,0.002], + [17109,0.002], + [17111,0.003], + [17113,0.002], + [17115,0.002], + [17117,0.003], + [17119,0.002], + [17121,0.003], + [17123,0.002], + [17125,0.002], + [17127,0.004], + [17129,0.003], + [17131,0.001], + [17133,0.002], + [17135,0.002], + [17137,0.002], + [17139,0.002], + [17141,0.002], + [17143,0.003], + [17145,0.002], + [17147,0.002], + [17149,0.002], + [17151,0.006], + [17153,0.004], + [17155,0.001], + [17157,0.002], + [17159,0.002], + [17161,0.003], + [17163,0.002], + [17165,0.004], + [17167,0.002], + [17169,0.002], + [17171,0.002], + [17173,0.002], + [17175,0.002], + [17177,0.002], + [17179,0.003], + [17181,0.005], + [17183,0.002], + [17185,0.002], + [17187,0.002], + [17189,0.001], + [17191,0.002], + [17193,0.003], + [17195,0.003], + [17197,0.003], + [17199,0.004], + [17201,0.003], + [17203,0.002], + [18001,0.002], + [18003,0.004], + [18005,0.003], + [18007,0.001], + [18009,0.002], + [18011,0.002], + [18013,0.003], + [18015,0.002], + [18017,0.005], + [18019,0.003], + [18021,0.002], + [18023,0.002], + [18025,0.004], + [18027,0.002], + [18029,0.002], + [18031,0.002], + [18033,0.002], + [18035,0.003], + [18037,0.002], + [18039,0.004], + [18041,0.001], + [18043,0.002], + [18045,0.003], + [18047,0.001], + [18049,0.005], + [18051,0.002], + [18053,0.003], + [18055,0.003], + [18057,0.002], + [18059,0.002], + [18061,0.002], + [18063,0.002], + [18065,0.001], + [18067,0.003], + [18069,0.004], + [18071,0.002], + [18073,0.002], + [18075,0.001], + [18077,0.002], + [18079,0.001], + [18081,0.002], + [18083,0.002], + [18085,0.003], + [18087,0.002], + [18089,0.003], + [18091,0.003], + [18093,0.003], + [18095,0.002], + [18097,0.003], + [18099,0.002], + [18101,0.003], + [18103,0.009], + [18105,0.003], + [18107,0.003], + [18109,0.003], + [18111,0.003], + [18113,0.002], + [18115,0.002], + [18117,0.003], + [18119,0.003], + [18121,0.004], + [18123,0.002], + [18125,0.002], + [18127,0.003], + [18129,0.002], + [18131,0.003], + [18133,0.003], + [18135,0.003], + [18137,0.002], + [18139,0.002], + [18141,0.004], + [18143,0.002], + [18145,0.002], + [18147,0.002], + [18149,0.003], + [18151,0.003], + [18153,0.003], + [18155,0.002], + [18157,0.003], + [18159,0.001], + [18161,0.003], + [18163,0.002], + [18165,0.002], + [18167,0.003], + [18169,0.007], + [18171,0.002], + [18173,0.002], + [18175,0.002], + [18177,0.002], + [18179,0.003], + [18181,0.003], + [18183,0.003], + [19001,0.001], + [19003,0.005], + [19005,0.003], + [19007,0.002], + [19009,0.001], + [19011,0.002], + [19013,0.002], + [19015,0.003], + [19017,0.001], + [19019,0.002], + [19021,0.003], + [19023,0.001], + [19025,0.002], + [19027,0.001], + [19029,0.002], + [19031,0.002], + [19033,0.002], + [19035,0.003], + [19037,0.001], + [19039,0.003], + [19041,0.002], + [19043,0.001], + [19045,0.002], + [19047,0.003], + [19049,0.002], + [19051,0.002], + [19053,0.004], + [19055,0.001], + [19057,0.002], + [19059,0.001], + [19061,0.002], + [19063,0.007], + [19065,0.001], + [19067,0.001], + [19069,0.002], + [19071,0.003], + [19073,0.003], + [19075,null], + [19077,0.002], + [19079,0.002], + [19081,0.001], + [19083,0.002], + [19085,0.003], + [19087,0.003], + [19089,0.001], + [19091,0.002], + [19093,0.002], + [19095,0.002], + [19097,0.002], + [19099,0.003], + [19101,0.002], + [19103,0.002], + [19105,0.002], + [19107,0.001], + [19109,0.001], + [19111,0.002], + [19113,0.003], + [19115,0.003], + [19117,0.002], + [19119,0.001], + [19121,0.002], + [19123,0.003], + [19125,0.002], + [19127,0.005], + [19129,0.003], + [19131,0.001], + [19133,0.01], + [19135,0.001], + [19137,0.004], + [19139,0.003], + [19141,0.001], + [19143,0.003], + [19145,0.005], + [19147,0.002], + [19149,0.003], + [19151,0.002], + [19153,0.003], + [19155,0.005], + [19157,0.003], + [19159,0.003], + [19161,0.001], + [19163,0.003], + [19165,0.002], + [19167,0.003], + [19169,0.002], + [19171,0.075], + [19173,0.001], + [19175,0.003], + [19177,0.001], + [19179,0.005], + [19181,0.002], + [19183,0.003], + [19185,0.002], + [19187,0.003], + [19189,0.002], + [19191,0.001], + [19193,0.022], + [19195,0.002], + [19197,0.002], + [20001,0.008], + [20003,0.005], + [20005,0.005], + [20007,0.006], + [20009,0.005], + [20011,0.008], + [20013,0.093], + [20015,0.01], + [20017,0.004], + [20019,0.041], + [20021,0.041], + [20023,0.002], + [20025,0.006], + [20027,0.004], + [20029,0.003], + [20031,0.007], + [20033,0.002], + [20035,0.02], + [20037,0.009], + [20039,0.004], + [20041,0.005], + [20043,0.01], + [20045,0.027], + [20047,0.007], + [20049,0.015], + [20051,0.003], + [20053,0.006], + [20055,0.009], + [20057,0.01], + [20059,0.008], + [20061,0.01], + [20063,0.001], + [20065,0.007], + [20067,0.012], + [20069,0.005], + [20071,0.006], + [20073,0.01], + [20075,0.012], + [20077,0.011], + [20079,0.007], + [20081,0.007], + [20083,0.002], + [20085,0.08], + [20087,0.009], + [20089,0.006], + [20091,0.004], + [20093,0.01], + [20095,0.006], + [20097,0.009], + [20099,0.022], + [20101,0.008], + [20103,0.008], + [20105,0.005], + [20107,0.007], + [20109,0.005], + [20111,0.007], + [20113,0.004], + [20115,0.006], + [20117,0.003], + [20119,0.008], + [20121,0.006], + [20123,0.004], + [20125,0.033], + [20127,0.005], + [20129,0.011], + [20131,0.005], + [20133,0.011], + [20135,0.003], + [20137,0.002], + [20139,0.007], + [20141,0.005], + [20143,0.004], + [20145,0.006], + [20147,0.004], + [20149,0.008], + [20151,0.006], + [20153,0.002], + [20155,0.007], + [20157,0.002], + [20159,0.007], + [20161,0.006], + [20163,0.003], + [20165,0.005], + [20167,0.006], + [20169,0.005], + [20171,0.006], + [20173,0.012], + [20175,0.008], + [20177,0.012], + [20179,0.004], + [20181,0.003], + [20183,0.003], + [20185,0.012], + [20187,0.012], + [20189,0.009], + [20191,0.012], + [20193,0.005], + [20195,0.002], + [20197,0.005], + [20199,0.005], + [20201,0.002], + [20203,0.005], + [20205,0.011], + [20207,0.011], + [20209,0.008], + [21001,0.002], + [21003,0.003], + [21005,0.001], + [21007,0.002], + [21009,0.002], + [21011,0.003], + [21013,0.002], + [21015,0.002], + [21017,0.002], + [21019,0.002], + [21021,0.002], + [21023,0.002], + [21025,0.001], + [21027,0.003], + [21029,0.003], + [21031,0.003], + [21033,0.001], + [21035,0.002], + [21037,0.001], + [21039,0.005], + [21041,0.003], + [21043,0.002], + [21045,0.002], + [21047,0.006], + [21049,0.001], + [21051,0.002], + [21053,0.002], + [21055,0.004], + [21057,0.001], + [21059,0.001], + [21061,0.003], + [21063,0.001], + [21065,0.002], + [21067,0.003], + [21069,0.001], + [21071,0.001], + [21073,0.002], + [21075,0.003], + [21077,0.001], + [21079,0.001], + [21081,0.002], + [21083,0.002], + [21085,0.002], + [21087,0.004], + [21089,0.003], + [21091,0.003], + [21093,0.005], + [21095,0.001], + [21097,0.002], + [21099,0.002], + [21101,0.002], + [21103,0.002], + [21105,0.002], + [21107,0.001], + [21109,0.002], + [21111,0.002], + [21113,0.003], + [21115,0.001], + [21117,0.002], + [21119,0.001], + [21121,0.002], + [21123,0.003], + [21125,0.003], + [21127,0.001], + [21129,0.003], + [21131,0.001], + [21133,0.002], + [21135,0.002], + [21137,0.002], + [21139,0.003], + [21141,0.002], + [21143,0.001], + [21145,0.002], + [21147,0.007], + [21149,0.002], + [21151,0.003], + [21153,0.003], + [21155,0.002], + [21157,0.002], + [21159,0.004], + [21161,0.002], + [21163,0.005], + [21165,0.001], + [21167,0.002], + [21169,0.001], + [21171,0.001], + [21173,0.002], + [21175,0.002], + [21177,0.001], + [21179,0.001], + [21181,0.001], + [21183,0.002], + [21185,0.003], + [21187,0.002], + [21189,0.003], + [21191,0.002], + [21193,0.001], + [21195,0.001], + [21197,0.001], + [21199,0.002], + [21201,null], + [21203,0.003], + [21205,0.001], + [21207,0.003], + [21209,0.003], + [21211,0.003], + [21213,0.002], + [21215,0.002], + [21217,0.001], + [21219,0.002], + [21221,0.003], + [21223,0.004], + [21225,0.002], + [21227,0.003], + [21229,0.001], + [21231,0.002], + [21233,0.002], + [21235,0.003], + [21237,0.003], + [21239,0.002], + [22001,0.003], + [22003,0.024], + [22005,0.003], + [22007,0.006], + [22009,0.012], + [22011,0.01], + [22013,0.003], + [22015,0.005], + [22017,0.004], + [22019,0.005], + [22021,0.002], + [22023,0.005], + [22025,0.003], + [22027,0.004], + [22029,0.003], + [22031,0.008], + [22033,0.002], + [22035,0.002], + [22037,0.003], + [22039,0.003], + [22041,0.002], + [22043,0.01], + [22045,0.004], + [22047,0.002], + [22049,0.002], + [22051,0.005], + [22053,0.005], + [22055,0.003], + [22057,0.028], + [22059,0.01], + [22061,0.003], + [22063,0.004], + [22065,0.002], + [22067,0.001], + [22069,0.01], + [22071,0.003], + [22073,0.002], + [22075,0.016], + [22077,0.001], + [22079,0.008], + [22081,0.004], + [22083,0.003], + [22085,0.086], + [22087,0.007], + [22089,0.003], + [22091,0.003], + [22093,0.002], + [22095,0.003], + [22097,0.003], + [22099,0.004], + [22101,0.018], + [22103,0.005], + [22105,0.003], + [22107,0.001], + [22109,0.057], + [22111,0.003], + [22113,0.004], + [22115,0.014], + [22117,0.003], + [22119,0.004], + [22121,0.001], + [22123,0.004], + [22125,0.001], + [22127,0.007], + [23001,0.004], + [23003,0.017], + [23005,0.003], + [23007,0.004], + [23009,0.004], + [23011,0.005], + [23013,0.004], + [23015,0.003], + [23017,0.004], + [23019,0.012], + [23021,0.005], + [23023,0.004], + [23025,0.005], + [23027,0.004], + [23029,0.049], + [23031,0.003], + [24001,0.001], + [24003,0.003], + [24005,0.003], + [24009,0.004], + [24011,0.004], + [24013,0.002], + [24015,0.003], + [24017,0.007], + [24019,0.003], + [24021,0.003], + [24023,0.001], + [24025,0.003], + [24027,0.003], + [24029,0.002], + [24031,0.004], + [24033,0.005], + [24035,0.003], + [24037,0.004], + [24039,0.003], + [24041,0.002], + [24043,0.002], + [24045,0.002], + [24047,0.003], + [24510,0.004], + [25001,0.006], + [25003,0.002], + [25005,0.004], + [25007,0.011], + [25009,0.004], + [25011,0.003], + [25013,0.004], + [25015,0.002], + [25017,0.002], + [25019,null], + [25021,0.002], + [25023,0.002], + [25025,0.004], + [25027,0.002], + [26001,0.006], + [26003,0.041], + [26005,0.006], + [26007,0.005], + [26009,0.01], + [26011,0.012], + [26013,0.131], + [26015,0.005], + [26017,0.005], + [26019,0.014], + [26021,0.005], + [26023,0.004], + [26025,0.006], + [26027,0.01], + [26029,0.015], + [26031,0.03], + [26033,0.158], + [26035,0.007], + [26037,0.004], + [26039,0.005], + [26041,0.024], + [26043,0.006], + [26045,0.004], + [26047,0.037], + [26049,0.005], + [26051,0.005], + [26053,0.024], + [26055,0.012], + [26057,0.005], + [26059,0.004], + [26061,0.006], + [26063,0.003], + [26065,0.006], + [26067,0.005], + [26069,0.007], + [26071,0.009], + [26073,0.034], + [26075,0.004], + [26077,0.004], + [26079,0.009], + [26081,0.005], + [26083,0.001], + [26085,0.008], + [26087,0.005], + [26089,0.035], + [26091,0.005], + [26093,0.004], + [26095,0.05], + [26097,0.173], + [26099,0.003], + [26101,0.021], + [26103,0.017], + [26105,0.01], + [26107,0.006], + [26109,0.027], + [26111,0.004], + [26113,0.006], + [26115,0.003], + [26117,0.005], + [26119,0.004], + [26121,0.008], + [26123,0.008], + [26125,0.003], + [26127,0.011], + [26129,0.007], + [26131,0.011], + [26133,0.005], + [26135,0.006], + [26137,0.007], + [26139,0.004], + [26141,0.007], + [26143,0.006], + [26145,0.004], + [26147,0.004], + [26149,0.005], + [26151,0.005], + [26153,0.088], + [26155,0.005], + [26157,0.005], + [26159,0.009], + [26161,0.003], + [26163,0.004], + [26165,0.006], + [27001,0.024], + [27003,0.007], + [27005,0.076], + [27007,0.203], + [27009,0.004], + [27011,0.004], + [27013,0.003], + [27015,0.001], + [27017,0.059], + [27019,0.002], + [27021,0.112], + [27023,0.01], + [27025,0.006], + [27027,0.014], + [27029,0.09], + [27031,0.086], + [27033,0.002], + [27035,0.008], + [27037,0.004], + [27039,0.003], + [27041,0.003], + [27043,0.004], + [27045,0.001], + [27047,0.002], + [27049,0.012], + [27051,0.001], + [27053,0.009], + [27055,0.002], + [27057,0.027], + [27059,0.005], + [27061,0.035], + [27063,0.002], + [27065,0.006], + [27067,0.003], + [27069,0.001], + [27071,0.023], + [27073,0.002], + [27075,0.005], + [27077,0.007], + [27079,0.003], + [27081,0.002], + [27083,0.004], + [27085,0.003], + [27087,0.409], + [27089,0.005], + [27091,0.003], + [27093,0.002], + [27095,0.06], + [27097,0.002], + [27099,0.002], + [27101,0.001], + [27103,0.003], + [27105,0.005], + [27107,0.016], + [27109,0.002], + [27111,0.005], + [27113,0.015], + [27115,0.031], + [27117,0.01], + [27119,0.014], + [27121,0.002], + [27123,0.008], + [27125,0.013], + [27127,0.05], + [27129,0.006], + [27131,0.005], + [27133,0.004], + [27135,0.013], + [27137,0.022], + [27139,0.008], + [27141,0.005], + [27143,0.002], + [27145,0.003], + [27147,0.002], + [27149,0.009], + [27151,0.004], + [27153,0.003], + [27155,0.039], + [27157,0.002], + [27159,0.005], + [27161,0.008], + [27163,0.005], + [27165,0.004], + [27167,0.01], + [27169,0.003], + [27171,0.003], + [27173,0.03], + [28001,0.003], + [28003,0.002], + [28005,0.002], + [28007,0.002], + [28009,0.003], + [28011,0.001], + [28013,0.001], + [28015,0.001], + [28017,0.001], + [28019,0.002], + [28021,0.001], + [28023,0.004], + [28025,0.001], + [28027,0.001], + [28029,0.002], + [28031,0.001], + [28033,0.003], + [28035,0.002], + [28037,0.002], + [28039,0.003], + [28041,0.003], + [28043,0.002], + [28045,0.005], + [28047,0.005], + [28049,0.002], + [28051,0.001], + [28053,0.001], + [28055,0.002], + [28057,0.002], + [28059,0.004], + [28061,0.001], + [28063,0.002], + [28065,0.003], + [28067,0.005], + [28069,0.037], + [28071,0.003], + [28073,0.002], + [28075,0.002], + [28077,0.001], + [28079,0.06], + [28081,0.002], + [28083,0.002], + [28085,0.002], + [28087,0.002], + [28089,0.002], + [28091,0.002], + [28093,0.002], + [28095,0.002], + [28097,0.001], + [28099,0.162], + [28101,0.05], + [28103,0.002], + [28105,0.002], + [28107,0.002], + [28109,0.006], + [28111,0.003], + [28113,0.003], + [28115,0.002], + [28117,0.002], + [28119,0.002], + [28121,0.002], + [28123,0.003], + [28125,0.001], + [28127,0.002], + [28129,0.001], + [28131,0.005], + [28133,0.002], + [28135,0.003], + [28137,0.002], + [28139,0.002], + [28141,0.002], + [28143,0.001], + [28145,0.002], + [28147,0.004], + [28149,0.003], + [28151,0.001], + [28153,0.002], + [28155,0.002], + [28157,0.001], + [28159,0.011], + [28161,0.003], + [28163,0.003], + [29001,0.003], + [29003,0.003], + [29005,0.002], + [29007,0.004], + [29009,0.009], + [29011,0.011], + [29013,0.006], + [29015,0.006], + [29017,0.006], + [29019,0.004], + [29021,0.004], + [29023,0.005], + [29025,0.004], + [29027,0.005], + [29029,0.005], + [29031,0.002], + [29033,0.002], + [29035,0.011], + [29037,0.005], + [29039,0.006], + [29041,0.002], + [29043,0.006], + [29045,0.001], + [29047,0.005], + [29049,0.007], + [29051,0.003], + [29053,0.003], + [29055,0.005], + [29057,0.009], + [29059,0.008], + [29061,0.004], + [29063,0.004], + [29065,0.009], + [29067,0.006], + [29069,0.002], + [29071,0.003], + [29073,0.002], + [29075,0.002], + [29077,0.007], + [29079,0.004], + [29081,0.004], + [29083,0.005], + [29085,0.007], + [29087,0.01], + [29089,0.005], + [29091,0.007], + [29093,0.005], + [29095,0.005], + [29097,0.015], + [29099,0.003], + [29101,0.005], + [29103,null], + [29105,0.007], + [29107,0.004], + [29109,0.009], + [29111,0.003], + [29113,0.003], + [29115,0.002], + [29117,0.003], + [29119,0.029], + [29121,0.002], + [29123,0.004], + [29125,0.006], + [29127,0.002], + [29129,0.004], + [29131,0.005], + [29133,0.002], + [29135,0.003], + [29137,0.003], + [29139,0.002], + [29141,0.007], + [29143,0.002], + [29145,0.023], + [29147,0.002], + [29149,0.012], + [29151,0.002], + [29153,0.007], + [29155,0.003], + [29157,0.003], + [29159,0.004], + [29161,0.006], + [29163,0.002], + [29165,0.005], + [29167,0.006], + [29169,0.008], + [29171,0.001], + [29173,0.001], + [29175,0.003], + [29177,0.005], + [29179,0.006], + [29181,0.009], + [29183,0.002], + [29185,0.007], + [29186,0.003], + [29187,0.004], + [29189,0.002], + [29195,0.003], + [29197,0.002], + [29199,0.002], + [29201,0.002], + [29203,0.009], + [29205,0.002], + [29207,0.004], + [29209,0.006], + [29211,0.007], + [29213,0.008], + [29215,0.007], + [29217,0.007], + [29219,0.004], + [29221,0.004], + [29223,0.004], + [29225,0.007], + [29227,0.002], + [29229,0.006], + [29510,0.003], + [30001,0.014], + [30003,0.643], + [30005,0.494], + [30007,0.013], + [30009,0.008], + [30011,0.009], + [30013,0.043], + [30015,0.218], + [30017,0.017], + [30019,0.021], + [30021,0.017], + [30023,0.031], + [30025,0.004], + [30027,0.012], + [30029,0.011], + [30031,0.009], + [30033,0.004], + [30035,0.656], + [30037,0.01], + [30039,0.004], + [30041,0.217], + [30043,0.014], + [30045,0.008], + [30047,0.22], + [30049,0.021], + [30051,0.002], + [30053,0.009], + [30055,0.004], + [30057,0.005], + [30059,0.003], + [30061,0.015], + [30063,0.026], + [30065,0.013], + [30067,0.008], + [30069,0], + [30071,0.083], + [30073,0.145], + [30075,0.015], + [30077,0.044], + [30079,0.002], + [30081,0.009], + [30083,0.017], + [30085,0.604], + [30087,0.347], + [30089,0.044], + [30091,0.017], + [30093,0.019], + [30095,0.008], + [30097,0.004], + [30099,0.014], + [30101,0.045], + [30103,0.008], + [30105,0.098], + [30107,0.005], + [30109,0.004], + [30111,0.04], + [31001,0.004], + [31003,0.002], + [31005,0.004], + [31007,0.004], + [31009,0], + [31011,0.002], + [31013,0.036], + [31015,0.006], + [31017,0.003], + [31019,0.003], + [31021,0.017], + [31023,0.001], + [31025,0.003], + [31027,0.002], + [31029,0.001], + [31031,0.059], + [31033,0.007], + [31035,0.005], + [31037,0.011], + [31039,0.003], + [31041,0.003], + [31043,0.027], + [31045,0.039], + [31047,0.008], + [31049,0.005], + [31051,0.004], + [31053,0.005], + [31055,0.007], + [31057,0.006], + [31059,0.005], + [31061,0.003], + [31063,0.003], + [31065,0.004], + [31067,0.005], + [31069,0.006], + [31071,0], + [31073,0.001], + [31075,0.002], + [31077,0.002], + [31079,0.009], + [31081,0.002], + [31083,0.004], + [31085,0.002], + [31087,0.004], + [31089,0.003], + [31091,0.005], + [31093,0.004], + [31095,0.004], + [31097,0.011], + [31099,0.002], + [31101,0.005], + [31103,0.001], + [31105,0.013], + [31107,0.09], + [31109,0.007], + [31111,0.006], + [31113,0.009], + [31115,0.002], + [31117,0], + [31119,0.011], + [31121,0.004], + [31123,0.011], + [31125,0.003], + [31127,0.003], + [31129,0.002], + [31131,0.003], + [31133,0.001], + [31135,0.002], + [31137,0.004], + [31139,0.002], + [31141,0.007], + [31143,0.002], + [31145,0.005], + [31147,0.03], + [31149,0.006], + [31151,0.004], + [31153,0.005], + [31155,0.003], + [31157,0.021], + [31159,0.003], + [31161,0.113], + [31163,0.001], + [31165,0.002], + [31167,0.004], + [31169,0.002], + [31171,0.002], + [31173,0.571], + [31175,0.001], + [31177,0.002], + [31179,0.003], + [31181,0.002], + [31183,0.001], + [31185,0.004], + [32001,0.045], + [32003,0.007], + [32005,0.019], + [32007,0.053], + [32009,0.042], + [32011,0.024], + [32013,0.042], + [32015,0.042], + [32017,0.011], + [32019,0.025], + [32021,0.155], + [32023,0.016], + [32027,0.032], + [32029,0.016], + [32031,0.017], + [32033,0.042], + [32510,0.024], + [33001,0.002], + [33003,0.003], + [33005,0.003], + [33007,0.004], + [33009,0.004], + [33011,0.002], + [33013,0.003], + [33015,0.002], + [33017,0.002], + [33019,0.003], + [34001,0.004], + [34003,0.002], + [34005,0.002], + [34007,0.003], + [34009,0.002], + [34011,0.011], + [34013,0.004], + [34015,0.002], + [34017,0.006], + [34019,0.001], + [34021,0.003], + [34023,0.003], + [34025,0.002], + [34027,0.002], + [34029,0.002], + [34031,0.007], + [34033,0.004], + [34035,0.002], + [34037,0.002], + [34039,0.004], + [34041,0.001], + [35001,0.048], + [35003,0.027], + [35005,0.012], + [35006,0.41], + [35007,0.015], + [35009,0.012], + [35011,0.006], + [35013,0.015], + [35015,0.015], + [35017,0.014], + [35019,0.019], + [35021,0.012], + [35023,0.008], + [35025,0.012], + [35027,0.024], + [35028,0.008], + [35029,0.013], + [35031,0.755], + [35033,0.013], + [35035,0.067], + [35037,0.012], + [35039,0.16], + [35041,0.013], + [35043,0.129], + [35045,0.366], + [35047,0.017], + [35049,0.031], + [35051,0.017], + [35053,0.117], + [35055,0.062], + [35057,0.023], + [35059,0.02], + [35061,0.038], + [36001,0.002], + [36003,0.002], + [36005,0.013], + [36007,0.002], + [36009,0.03], + [36011,0.004], + [36013,0.005], + [36015,0.003], + [36017,0.003], + [36019,0.003], + [36021,0.002], + [36023,0.003], + [36025,0.003], + [36027,0.003], + [36029,0.006], + [36031,0.003], + [36033,0.074], + [36035,0.002], + [36037,0.011], + [36039,0.003], + [36041,0.002], + [36043,0.002], + [36045,0.005], + [36047,0.005], + [36049,0.002], + [36051,0.003], + [36053,0.007], + [36055,0.003], + [36057,0.003], + [36059,0.002], + [36061,0.005], + [36063,0.011], + [36065,0.003], + [36067,0.008], + [36069,0.003], + [36071,0.005], + [36073,0.006], + [36075,0.004], + [36077,0.002], + [36079,0.002], + [36081,0.007], + [36083,0.002], + [36085,0.004], + [36087,0.003], + [36089,0.01], + [36091,0.002], + [36093,0.004], + [36095,0.002], + [36097,0.003], + [36099,0.003], + [36101,0.002], + [36103,0.004], + [36105,0.005], + [36107,0.002], + [36109,0.004], + [36111,0.003], + [36113,0.002], + [36115,0.002], + [36117,0.003], + [36119,0.004], + [36121,0.003], + [36123,0.001], + [37001,0.007], + [37003,0.003], + [37005,0.002], + [37007,0.006], + [37009,0.002], + [37011,0.004], + [37013,0.004], + [37015,0.005], + [37017,0.021], + [37019,0.007], + [37021,0.004], + [37023,0.004], + [37025,0.004], + [37027,0.003], + [37029,0.003], + [37031,0.005], + [37033,0.004], + [37035,0.003], + [37037,0.005], + [37039,0.013], + [37041,0.003], + [37043,0.003], + [37045,0.002], + [37047,0.032], + [37049,0.005], + [37051,0.016], + [37053,0.005], + [37055,0.004], + [37057,0.005], + [37059,0.004], + [37061,0.005], + [37063,0.005], + [37065,0.003], + [37067,0.004], + [37069,0.005], + [37071,0.004], + [37073,0.005], + [37075,0.064], + [37077,0.006], + [37079,0.007], + [37081,0.005], + [37083,0.038], + [37085,0.012], + [37087,0.005], + [37089,0.004], + [37091,0.011], + [37093,0.096], + [37095,0.005], + [37097,0.003], + [37099,0.094], + [37101,0.006], + [37103,0.006], + [37105,0.007], + [37107,0.004], + [37109,0.003], + [37111,0.004], + [37113,0.005], + [37115,0.002], + [37117,0.003], + [37119,0.005], + [37121,0.004], + [37123,0.004], + [37125,0.008], + [37127,0.007], + [37129,0.005], + [37131,0.005], + [37133,0.007], + [37135,0.004], + [37137,0.006], + [37139,0.003], + [37141,0.006], + [37143,0.003], + [37145,0.007], + [37147,0.003], + [37149,0.004], + [37151,0.007], + [37153,0.025], + [37155,0.384], + [37157,0.004], + [37159,0.003], + [37161,0.003], + [37163,0.02], + [37165,0.109], + [37167,0.003], + [37169,0.003], + [37171,0.003], + [37173,0.27], + [37175,0.003], + [37177,0.004], + [37179,0.004], + [37181,0.003], + [37183,0.005], + [37185,0.05], + [37187,0.002], + [37189,0.003], + [37191,0.004], + [37193,0.002], + [37195,0.003], + [37197,0.002], + [37199,0.004], + [38001,0.007], + [38003,0.007], + [38005,0.55], + [38007,0.004], + [38009,0.021], + [38011,0.006], + [38013,0.008], + [38015,0.042], + [38017,0.012], + [38019,0.009], + [38021,0.006], + [38023,0.005], + [38025,0.127], + [38027,0.024], + [38029,0.004], + [38031,0.006], + [38033,0.006], + [38035,0.025], + [38037,0.011], + [38039,0.003], + [38041,0.021], + [38043,0.002], + [38045,0.004], + [38047,0.005], + [38049,0.006], + [38051,0.004], + [38053,0.222], + [38055,0.07], + [38057,0.023], + [38059,0.036], + [38061,0.306], + [38063,0.01], + [38065,0.015], + [38067,0.019], + [38069,0.039], + [38071,0.087], + [38073,0.004], + [38075,0.004], + [38077,0.02], + [38079,0.772], + [38081,0.005], + [38083,0.011], + [38085,0.841], + [38087,0.022], + [38089,0.01], + [38091,0.012], + [38093,0.014], + [38095,0.022], + [38097,0.008], + [38099,0.015], + [38101,0.026], + [38103,0.003], + [38105,0.04], + [39001,0.004], + [39003,0.002], + [39005,0.002], + [39007,0.002], + [39009,0.003], + [39011,0.002], + [39013,0.001], + [39015,0.002], + [39017,0.002], + [39019,0.003], + [39021,0.004], + [39023,0.003], + [39025,0.002], + [39027,0.002], + [39029,0.002], + [39031,0.002], + [39033,0.001], + [39035,0.002], + [39037,0.002], + [39039,0.003], + [39041,0.001], + [39043,0.003], + [39045,0.002], + [39047,0.002], + [39049,0.002], + [39051,0.003], + [39053,0.004], + [39055,0.001], + [39057,0.003], + [39059,0.002], + [39061,0.002], + [39063,0.002], + [39065,0.002], + [39067,0.001], + [39069,0.003], + [39071,0.003], + [39073,0.003], + [39075,0.001], + [39077,0.002], + [39079,0.004], + [39081,0.001], + [39083,0.002], + [39085,0.001], + [39087,0.002], + [39089,0.003], + [39091,0.003], + [39093,0.003], + [39095,0.003], + [39097,0.002], + [39099,0.002], + [39101,0.002], + [39103,0.001], + [39105,0.002], + [39107,0.002], + [39109,0.002], + [39111,0.001], + [39113,0.002], + [39115,0.003], + [39117,0.001], + [39119,0.002], + [39121,0.003], + [39123,0.002], + [39125,0.003], + [39127,0.002], + [39129,0.002], + [39131,0.005], + [39133,0.002], + [39135,0.002], + [39137,0.002], + [39139,0.002], + [39141,0.003], + [39143,0.002], + [39145,0.005], + [39147,0.002], + [39149,0.002], + [39151,0.003], + [39153,0.002], + [39155,0.002], + [39157,0.003], + [39159,0.002], + [39161,0.001], + [39163,0.004], + [39165,0.002], + [39167,0.002], + [39169,0.002], + [39171,0.002], + [39173,0.002], + [39175,0.002], + [40001,0.433], + [40003,0.029], + [40005,0.138], + [40007,0.011], + [40009,0.028], + [40011,0.08], + [40013,0.129], + [40015,0.245], + [40017,0.048], + [40019,0.089], + [40021,0.34], + [40023,0.165], + [40025,0.008], + [40027,0.047], + [40029,0.167], + [40031,0.059], + [40033,0.089], + [40035,0.204], + [40037,0.1], + [40039,0.063], + [40041,0.224], + [40043,0.058], + [40045,0.016], + [40047,0.023], + [40049,0.078], + [40051,0.054], + [40053,0.019], + [40055,0.027], + [40057,0.013], + [40059,0.008], + [40061,0.159], + [40063,0.182], + [40065,0.018], + [40067,0.062], + [40069,0.155], + [40071,0.096], + [40073,0.031], + [40075,0.066], + [40077,0.204], + [40079,0.123], + [40081,0.065], + [40083,0.033], + [40085,0.062], + [40087,0.064], + [40089,0.151], + [40091,0.185], + [40093,0.02], + [40095,0.097], + [40097,0.214], + [40099,0.121], + [40101,0.175], + [40103,0.085], + [40105,0.191], + [40107,0.197], + [40109,0.035], + [40111,0.163], + [40113,0.144], + [40115,0.189], + [40117,0.116], + [40119,0.047], + [40121,0.138], + [40123,0.174], + [40125,0.129], + [40127,0.176], + [40129,0.058], + [40131,0.131], + [40133,0.182], + [40135,0.208], + [40137,0.051], + [40139,0.013], + [40141,0.034], + [40143,0.06], + [40145,0.1], + [40147,0.103], + [40149,0.03], + [40151,0.024], + [40153,0.028], + [41001,0.011], + [41003,0.007], + [41005,0.008], + [41007,0.01], + [41009,0.013], + [41011,0.025], + [41013,0.014], + [41015,0.019], + [41017,0.009], + [41019,0.018], + [41021,0.01], + [41023,0.012], + [41025,0.031], + [41027,0.008], + [41029,0.012], + [41031,0.169], + [41033,0.014], + [41035,0.041], + [41037,0.021], + [41039,0.012], + [41041,0.035], + [41043,0.013], + [41045,0.012], + [41047,0.016], + [41049,0.012], + [41051,0.011], + [41053,0.021], + [41055,0.016], + [41057,0.01], + [41059,0.035], + [41061,0.011], + [41063,0.006], + [41065,0.044], + [41067,0.007], + [41069,0.012], + [41071,0.015], + [42001,0.002], + [42003,0.001], + [42005,0.001], + [42007,0.001], + [42009,0.002], + [42011,0.003], + [42013,0.001], + [42015,0.002], + [42017,0.002], + [42019,0.001], + [42021,0.001], + [42023,0.003], + [42025,0.002], + [42027,0.001], + [42029,0.002], + [42031,0.001], + [42033,0.001], + [42035,0.001], + [42037,0.001], + [42039,0.002], + [42041,0.002], + [42043,0.002], + [42045,0.002], + [42047,0.001], + [42049,0.002], + [42051,0.001], + [42053,0.002], + [42055,0.002], + [42057,0.002], + [42059,0.002], + [42061,0.001], + [42063,0.001], + [42065,0.002], + [42067,0.001], + [42069,0.002], + [42071,0.002], + [42073,0.001], + [42075,0.002], + [42077,0.004], + [42079,0.002], + [42081,0.002], + [42083,0.002], + [42085,0.001], + [42087,0.001], + [42089,0.003], + [42091,0.001], + [42093,0.001], + [42095,0.002], + [42097,0.002], + [42099,0.002], + [42101,0.005], + [42103,0.003], + [42105,0.003], + [42107,0.001], + [42109,0.001], + [42111,0.001], + [42113,0.004], + [42115,0.001], + [42117,0.002], + [42119,0.004], + [42121,0.002], + [42123,0.002], + [42125,0.001], + [42127,0.002], + [42129,0.001], + [42131,0.002], + [42133,0.002], + [44001,0.002], + [44003,0.003], + [44005,0.004], + [44007,0.007], + [44009,0.009], + [45001,0.002], + [45003,0.004], + [45005,0.002], + [45007,0.003], + [45009,0.003], + [45011,0.004], + [45013,0.003], + [45015,0.006], + [45017,0.003], + [45019,0.003], + [45021,0.004], + [45023,0.004], + [45025,0.005], + [45027,0.002], + [45029,0.008], + [45031,0.003], + [45033,0.025], + [45035,0.007], + [45037,0.002], + [45039,0.002], + [45041,0.003], + [45043,0.002], + [45045,0.003], + [45047,0.003], + [45049,0.003], + [45051,0.005], + [45053,0.005], + [45055,0.003], + [45057,0.003], + [45059,0.002], + [45061,0.003], + [45063,0.004], + [45065,0.001], + [45067,0.004], + [45069,0.045], + [45071,0.003], + [45073,0.002], + [45075,0.005], + [45077,0.002], + [45079,0.003], + [45081,0.004], + [45083,0.003], + [45085,0.004], + [45087,0.002], + [45089,0.003], + [45091,0.009], + [46003,0.015], + [46005,0.011], + [46007,0.615], + [46009,0.071], + [46011,0.009], + [46013,0.03], + [46015,0.085], + [46017,0.84], + [46019,0.019], + [46021,0.003], + [46023,0.317], + [46025,0.001], + [46027,0.031], + [46029,0.02], + [46031,0.67], + [46033,0.029], + [46035,0.025], + [46037,0.095], + [46039,0.003], + [46041,0.749], + [46043,0.018], + [46045,0.004], + [46047,0.071], + [46049,0.001], + [46051,0.005], + [46053,0.075], + [46055,0.019], + [46057,0.003], + [46059,0.002], + [46061,0.003], + [46063,0.015], + [46065,0.105], + [46067,0.007], + [46069,0.085], + [46071,0.52], + [46073,0.002], + [46075,0.02], + [46077,0.005], + [46079,0.007], + [46081,0.02], + [46083,0.005], + [46085,0.382], + [46087,0.004], + [46089,0], + [46091,0.076], + [46093,0.023], + [46095,0.541], + [46097,0.002], + [46099,0.025], + [46101,0.14], + [46102,0.96], + [46103,0.097], + [46105,0.013], + [46107,0.009], + [46109,0.345], + [46111,0.003], + [46115,0.012], + [46117,0.066], + [46119,0.012], + [46121,0.881], + [46123,0.14], + [46125,0.008], + [46127,0.006], + [46129,0.143], + [46135,0.025], + [46137,0.749], + [47001,0.003], + [47003,0.004], + [47005,0.004], + [47007,0.004], + [47009,0.003], + [47011,0.003], + [47013,0.003], + [47015,0.002], + [47017,0.004], + [47019,0.002], + [47021,0.003], + [47023,0.004], + [47025,0.003], + [47027,0.003], + [47029,0.004], + [47031,0.003], + [47033,0.001], + [47035,0.003], + [47037,0.003], + [47039,0.002], + [47041,0.002], + [47043,0.003], + [47045,0.002], + [47047,0.003], + [47049,0.002], + [47051,0.004], + [47053,0.002], + [47055,0.003], + [47057,0.002], + [47059,0.002], + [47061,0.005], + [47063,0.003], + [47065,0.003], + [47067,0.003], + [47069,0.002], + [47071,0.003], + [47073,0.002], + [47075,0.002], + [47077,0.002], + [47079,0.003], + [47081,0.005], + [47083,0.003], + [47085,0.004], + [47087,0.005], + [47089,0.003], + [47091,0.002], + [47093,0.003], + [47095,0.003], + [47097,0.006], + [47099,0.004], + [47101,0.003], + [47103,0.005], + [47105,0.003], + [47107,0.003], + [47109,0.002], + [47111,0.004], + [47113,0.002], + [47115,0.004], + [47117,0.004], + [47119,0.003], + [47121,0.005], + [47123,0.005], + [47125,0.006], + [47127,0.003], + [47129,0.003], + [47131,0.002], + [47133,0.003], + [47135,0.006], + [47137,0.002], + [47139,0.004], + [47141,0.004], + [47143,0.004], + [47145,0.003], + [47147,0.004], + [47149,0.004], + [47151,0.003], + [47153,0.004], + [47155,0.004], + [47157,0.002], + [47159,0.005], + [47161,0.006], + [47163,0.003], + [47165,0.003], + [47167,0.004], + [47169,0.004], + [47171,0.002], + [47173,0.003], + [47175,0.003], + [47177,0.003], + [47179,0.003], + [47181,0.003], + [47183,0.003], + [47185,0.003], + [47187,0.002], + [47189,0.003], + [48001,0.004], + [48003,0.01], + [48005,0.005], + [48007,0.007], + [48009,0.007], + [48011,0.008], + [48013,0.008], + [48015,0.005], + [48017,0.014], + [48019,0.008], + [48021,0.01], + [48023,0.003], + [48025,0.005], + [48027,0.008], + [48029,0.008], + [48031,0.007], + [48033,0.003], + [48035,0.006], + [48037,0.007], + [48039,0.006], + [48041,0.004], + [48043,0.011], + [48045,0.002], + [48047,0.003], + [48049,0.006], + [48051,0.006], + [48053,0.007], + [48055,0.008], + [48057,0.005], + [48059,0.006], + [48061,0.004], + [48063,0.007], + [48065,0.011], + [48067,0.005], + [48069,0.009], + [48071,0.006], + [48073,0.007], + [48075,0.006], + [48077,0.011], + [48079,0.012], + [48081,0.011], + [48083,0.007], + [48085,0.006], + [48087,0.017], + [48089,0.006], + [48091,0.006], + [48093,0.007], + [48095,0.004], + [48097,0.01], + [48099,0.008], + [48101,0.003], + [48103,0.01], + [48105,0.009], + [48107,0.006], + [48109,0.013], + [48111,0.012], + [48113,0.007], + [48115,0.007], + [48117,0.009], + [48119,0.014], + [48121,0.007], + [48123,0.004], + [48125,0.016], + [48127,0.003], + [48129,0.005], + [48131,0.004], + [48133,0.007], + [48135,0.01], + [48137,0.013], + [48139,0.006], + [48141,0.008], + [48143,0.008], + [48145,0.006], + [48147,0.011], + [48149,0.007], + [48151,0.005], + [48153,0.007], + [48155,0.002], + [48157,0.004], + [48159,0.007], + [48161,0.007], + [48163,0.005], + [48165,0.006], + [48167,0.006], + [48169,0.006], + [48171,0.006], + [48173,0.003], + [48175,0.007], + [48177,0.01], + [48179,0.009], + [48181,0.015], + [48183,0.006], + [48185,0.005], + [48187,0.007], + [48189,0.01], + [48191,0.008], + [48193,0.008], + [48195,0.009], + [48197,0.006], + [48199,0.004], + [48201,0.007], + [48203,0.007], + [48205,0.004], + [48207,0.007], + [48209,0.008], + [48211,0.004], + [48213,0.006], + [48215,0.003], + [48217,0.005], + [48219,0.009], + [48221,0.007], + [48223,0.006], + [48225,0.004], + [48227,0.009], + [48229,0.011], + [48231,0.009], + [48233,0.016], + [48235,0.004], + [48237,0.007], + [48239,0.004], + [48241,0.006], + [48243,0.006], + [48245,0.005], + [48247,0.004], + [48249,0.007], + [48251,0.007], + [48253,0.006], + [48255,0.005], + [48257,0.007], + [48259,0.006], + [48261,0.014], + [48263,0.009], + [48265,0.007], + [48267,0.008], + [48269,0.01], + [48271,0.007], + [48273,0.006], + [48275,0.006], + [48277,0.014], + [48279,0.009], + [48281,0.009], + [48283,0.006], + [48285,0.003], + [48287,0.006], + [48289,0.004], + [48291,0.006], + [48293,0.005], + [48295,0.011], + [48297,0.008], + [48299,0.006], + [48301,0.049], + [48303,0.007], + [48305,0.012], + [48307,0.007], + [48309,0.006], + [48311,0], + [48313,0.005], + [48315,0.008], + [48317,0.006], + [48319,0.004], + [48321,0.007], + [48323,0.012], + [48325,0.007], + [48327,0.008], + [48329,0.007], + [48331,0.007], + [48333,0.004], + [48335,0.007], + [48337,0.009], + [48339,0.007], + [48341,0.013], + [48343,0.007], + [48345,0.008], + [48347,0.006], + [48349,0.006], + [48351,0.006], + [48353,0.006], + [48355,0.006], + [48357,0.01], + [48359,0.006], + [48361,0.005], + [48363,0.007], + [48365,0.004], + [48367,0.008], + [48369,0.01], + [48371,0.008], + [48373,0.019], + [48375,0.008], + [48377,0.007], + [48379,0.01], + [48381,0.007], + [48383,0.006], + [48385,0.011], + [48387,0.01], + [48389,0.005], + [48391,0.006], + [48393,0.003], + [48395,0.006], + [48397,0.006], + [48399,0.007], + [48401,0.005], + [48403,0.005], + [48405,0.004], + [48407,0.006], + [48409,0.006], + [48411,0.008], + [48413,0.005], + [48415,0.006], + [48417,0.006], + [48419,0.003], + [48421,0.008], + [48423,0.005], + [48425,0.008], + [48427,0.001], + [48429,0.005], + [48431,0.02], + [48433,0.005], + [48435,0.004], + [48437,0.009], + [48439,0.007], + [48441,0.007], + [48443,0.009], + [48445,0.006], + [48447,0.007], + [48449,0.011], + [48451,0.008], + [48453,0.008], + [48455,0.005], + [48457,0.005], + [48459,0.007], + [48461,0.017], + [48463,0.006], + [48465,0.005], + [48467,0.009], + [48469,0.006], + [48471,0.004], + [48473,0.008], + [48475,0.009], + [48477,0.003], + [48479,0.004], + [48481,0.004], + [48483,0.008], + [48485,0.011], + [48487,0.011], + [48489,0.003], + [48491,0.006], + [48493,0.007], + [48495,0.01], + [48497,0.008], + [48499,0.007], + [48501,0.007], + [48503,0.007], + [48505,0.003], + [48507,0.004], + [49001,0.011], + [49003,0.008], + [49005,0.006], + [49007,0.012], + [49009,0.008], + [49011,0.005], + [49013,0.045], + [49015,0.007], + [49017,0.016], + [49019,0.041], + [49021,0.022], + [49023,0.009], + [49025,0.015], + [49027,0.01], + [49029,0.002], + [49031,0.003], + [49033,0.007], + [49035,0.009], + [49037,0.504], + [49039,0.011], + [49041,0.011], + [49043,0.003], + [49045,0.01], + [49047,0.077], + [49049,0.006], + [49051,0.005], + [49053,0.014], + [49055,0.005], + [49057,0.008], + [50001,0.002], + [50003,0.003], + [50005,0.004], + [50007,0.003], + [50009,0.006], + [50011,0.01], + [50013,0.009], + [50015,0.004], + [50017,0.003], + [50019,0.005], + [50021,0.002], + [50023,0.003], + [50025,0.003], + [50027,0.003], + [51001,0.004], + [51003,0.003], + [51005,0.002], + [51007,0.004], + [51009,0.009], + [51011,0.002], + [51013,0.005], + [51015,0.002], + [51017,0.001], + [51019,0.003], + [51021,0], + [51023,0.003], + [51025,0.002], + [51027,0.001], + [51029,0.003], + [51031,0.003], + [51033,0.007], + [51035,0.002], + [51036,0.071], + [51037,0.003], + [51041,0.004], + [51043,0.003], + [51045,0.002], + [51047,0.004], + [51049,0.004], + [51051,0.002], + [51053,0.003], + [51057,0.005], + [51059,0.004], + [51061,0.004], + [51063,0.001], + [51065,0.002], + [51067,0.003], + [51069,0.003], + [51071,0.001], + [51073,0.004], + [51075,0.002], + [51077,0.002], + [51079,0.002], + [51081,0.002], + [51083,0.003], + [51085,0.004], + [51087,0.003], + [51089,0.002], + [51091,0.002], + [51093,0.004], + [51095,0.003], + [51097,0.016], + [51099,0.005], + [51101,0.014], + [51103,0.002], + [51105,0.004], + [51107,0.003], + [51109,0.004], + [51111,0.003], + [51113,0.002], + [51115,0.002], + [51117,0.002], + [51119,0.003], + [51121,0.002], + [51125,0.003], + [51127,0.011], + [51131,0.002], + [51133,0.002], + [51135,0.004], + [51137,0.003], + [51139,0.002], + [51141,0.003], + [51143,0.002], + [51145,0.003], + [51147,0.003], + [51149,0.006], + [51153,0.006], + [51155,0.002], + [51157,0.002], + [51159,0.004], + [51161,0.001], + [51163,0.005], + [51165,0.003], + [51167,0.002], + [51169,0.002], + [51171,0.002], + [51173,0.001], + [51175,0.003], + [51177,0.003], + [51179,0.004], + [51181,0.003], + [51183,0.002], + [51185,0.001], + [51187,0.003], + [51191,0.002], + [51193,0.004], + [51195,0.001], + [51197,0.001], + [51199,0.004], + [51510,0.004], + [51520,0.003], + [51530,0.011], + [51540,0.003], + [51550,0.004], + [51570,0.004], + [51580,0.003], + [51590,0.002], + [51595,0.003], + [51600,0.005], + [51610,0.003], + [51620,0.003], + [51630,0.004], + [51640,0.001], + [51650,0.004], + [51660,0.003], + [51670,0.004], + [51678,0.001], + [51680,0.003], + [51683,0.006], + [51685,0.004], + [51690,0.002], + [51700,0.005], + [51710,0.005], + [51720,0.001], + [51730,0.003], + [51735,0.003], + [51740,0.004], + [51750,0.002], + [51760,0.003], + [51770,0.003], + [51775,0.002], + [51790,0.002], + [51800,0.003], + [51810,0.004], + [51820,0.003], + [51830,0.003], + [51840,0.004], + [53001,0.019], + [53003,0.014], + [53005,0.009], + [53007,0.01], + [53009,0.051], + [53011,0.009], + [53013,0.014], + [53015,0.015], + [53017,0.011], + [53019,0.167], + [53021,0.007], + [53023,0.003], + [53025,0.012], + [53027,0.046], + [53029,0.008], + [53031,0.023], + [53033,0.008], + [53035,0.016], + [53037,0.01], + [53039,0.024], + [53041,0.014], + [53043,0.016], + [53045,0.037], + [53047,0.114], + [53049,0.023], + [53051,0.038], + [53053,0.014], + [53055,0.007], + [53057,0.022], + [53059,0.016], + [53061,0.014], + [53063,0.015], + [53065,0.055], + [53067,0.014], + [53069,0.013], + [53071,0.01], + [53073,0.028], + [53075,0.007], + [53077,0.043], + [54001,0.006], + [54003,0.003], + [54005,0.001], + [54007,0.003], + [54009,0.001], + [54011,0.002], + [54013,0.003], + [54015,0.002], + [54017,0.003], + [54019,0.002], + [54021,0.005], + [54023,0.002], + [54025,0.003], + [54027,0.002], + [54029,0.001], + [54031,0.002], + [54033,0.002], + [54035,0.002], + [54037,0.002], + [54039,0.002], + [54041,0.002], + [54043,0.001], + [54045,0.001], + [54047,0.002], + [54049,0.002], + [54051,0.001], + [54053,0.002], + [54055,0.002], + [54057,0.001], + [54059,0.001], + [54061,0.002], + [54063,0.002], + [54065,0.003], + [54067,0.002], + [54069,0.001], + [54071,0.002], + [54073,0.002], + [54075,0.002], + [54077,0.002], + [54079,0.002], + [54081,0.002], + [54083,0.002], + [54085,0.001], + [54087,0.002], + [54089,0.003], + [54091,0.002], + [54093,0.002], + [54095,0.002], + [54097,0.002], + [54099,0.003], + [54101,0.001], + [54103,0.001], + [54105,0.002], + [54107,0.002], + [54109,0.001], + [55001,0.01], + [55003,0.111], + [55005,0.009], + [55007,0.096], + [55009,0.027], + [55011,0.003], + [55013,0.046], + [55015,0.004], + [55017,0.005], + [55019,0.005], + [55021,0.005], + [55023,0.002], + [55025,0.004], + [55027,0.004], + [55029,0.006], + [55031,0.02], + [55033,0.004], + [55035,0.005], + [55037,0.007], + [55039,0.005], + [55041,0.135], + [55043,0.002], + [55045,0.002], + [55047,0.003], + [55049,0.002], + [55051,0.006], + [55053,0.062], + [55055,0.003], + [55057,0.015], + [55059,0.005], + [55061,0.004], + [55063,0.004], + [55065,0.003], + [55067,0.01], + [55069,0.003], + [55071,0.006], + [55073,0.005], + [55075,0.006], + [55077,0.006], + [55078,0.875], + [55079,0.007], + [55081,0.011], + [55083,0.012], + [55085,0.009], + [55087,0.017], + [55089,0.002], + [55091,0.003], + [55093,0.004], + [55095,0.01], + [55097,0.004], + [55099,0.004], + [55101,0.004], + [55103,0.003], + [55105,0.003], + [55107,0.005], + [55109,0.004], + [55111,0.012], + [55113,0.167], + [55115,0.076], + [55117,0.004], + [55119,0.002], + [55121,0.002], + [55123,0.002], + [55125,0.111], + [55127,0.003], + [55129,0.012], + [55131,0.003], + [55133,0.003], + [55135,0.005], + [55137,0.005], + [55139,0.006], + [55141,0.008], + [56001,0.007], + [56003,0.009], + [56005,0.012], + [56007,0.01], + [56009,0.008], + [56011,0.007], + [56013,0.212], + [56015,0.008], + [56017,0.015], + [56019,0.011], + [56021,0.01], + [56023,0.008], + [56025,0.01], + [56027,0.008], + [56029,0.006], + [56031,0.004], + [56033,0.012], + [56035,0.008], + [56037,0.01], + [56039,0.005], + [56041,0.008], + [56043,0.011], + [56045,0.013] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-native-2017.json b/data/regional/united-states/demographics/race/us-race-native-2017.json new file mode 100644 index 0000000..67deb50 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-native-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Native American Population", + "description" : "Percent of the population that is native american in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.native.2017"], + [1001,0.0015], + [1003,0.0041], + [1005,0.001], + [1007,0.0018], + [1009,0.0018], + [1011,0.0052], + [1013,0.0003], + [1015,0.0018], + [1017,0.0014], + [1019,0.0024], + [1021,0.0029], + [1023,0.0002], + [1025,0.0003], + [1027,0.0045], + [1029,0.0014], + [1031,0.0053], + [1033,0.0037], + [1035,0.0008], + [1037,0.0004], + [1039,0.0017], + [1041,0.0041], + [1043,0.0021], + [1045,0.0026], + [1047,0.0002], + [1049,0.0068], + [1051,0.0017], + [1053,0.0182], + [1055,0.0035], + [1057,0], + [1059,0.0046], + [1061,0.0034], + [1063,0.0032], + [1065,0.0008], + [1067,0.0001], + [1069,0.0019], + [1071,0.0055], + [1073,0.0012], + [1075,0.0016], + [1077,0.0018], + [1079,0.026], + [1081,0.0005], + [1083,0.0039], + [1085,0.0004], + [1087,0.0014], + [1089,0.0031], + [1091,0.0003], + [1093,0.0021], + [1095,0.0035], + [1097,0.0031], + [1099,0.0063], + [1101,0.0009], + [1103,0.0028], + [1105,0.0004], + [1107,0.0005], + [1109,0.0032], + [1111,0.0011], + [1113,0.0018], + [1115,0.0014], + [1117,0.0011], + [1119,0.0026], + [1121,0.0018], + [1123,0.0022], + [1125,0.0008], + [1127,0.0008], + [1129,0.0379], + [1131,0.0003], + [1133,0.0014], + [2013,0.1907], + [2016,0.0588], + [2020,0.0364], + [2050,0.4134], + [2060,0.1728], + [2068,0.0109], + [2070,0.3646], + [2090,0.0342], + [2100,0.0382], + [2105,0.1955], + [2110,0.0557], + [2122,0.0365], + [2130,0.0706], + [2150,0.0663], + [2158,null], + [2164,0.3378], + [2170,0.0257], + [2180,0.3677], + [2185,0.2605], + [2188,0.409], + [2195,0.0359], + [2198,0.2033], + [2220,0.0716], + [2230,0.0332], + [2240,0.0576], + [2261,0.0711], + [2275,0.1107], + [2282,0.1452], + [2290,0.3548], + [4001,0.3665], + [4003,0.0061], + [4005,0.1329], + [4007,0.0792], + [4009,0.066], + [4011,0.0202], + [4012,0.0637], + [4013,0.0095], + [4015,0.0118], + [4017,0.2208], + [4019,0.0173], + [4021,0.0251], + [4023,0.0023], + [4025,0.0085], + [4027,0.0064], + [5001,0.0001], + [5003,0.0012], + [5005,0.0025], + [5007,0.0074], + [5009,0.0053], + [5011,0.0083], + [5013,0.0007], + [5015,0.0036], + [5017,0.002], + [5019,0.0016], + [5021,0.0025], + [5023,0.0036], + [5025,0.0019], + [5027,0.0015], + [5029,0.0017], + [5031,0.0028], + [5033,0.0099], + [5035,0.0014], + [5037,0.0002], + [5039,0.0021], + [5041,0.0011], + [5043,0.0005], + [5045,0.0018], + [5047,0.0101], + [5049,0.0043], + [5051,0.0039], + [5053,0.0011], + [5055,0.0018], + [5057,0.0013], + [5059,0.0015], + [5061,0.0012], + [5063,0.0013], + [5065,0.0073], + [5067,0.0009], + [5069,0.0012], + [5071,0.0012], + [5073,0.0014], + [5075,0.0026], + [5077,0.0011], + [5079,0.0021], + [5081,0.0066], + [5083,0.0053], + [5085,0.0026], + [5087,0.0054], + [5089,0.0061], + [5091,0.0057], + [5093,0.0002], + [5095,0], + [5097,0.0133], + [5099,0.0004], + [5101,0.0077], + [5103,0.0011], + [5105,0.0025], + [5107,0.0001], + [5109,0.0022], + [5111,0.0012], + [5113,0.0064], + [5115,0.0021], + [5117,0.0022], + [5119,0.0011], + [5121,0.0035], + [5123,0.0016], + [5125,0.0017], + [5127,0.0066], + [5129,0.0052], + [5131,0.0062], + [5133,0.0091], + [5135,0.0025], + [5137,0.0032], + [5139,0.0048], + [5141,0.0031], + [5143,0.0042], + [5145,0.0013], + [5147,0], + [5149,0.0041], + [6001,0.0031], + [6003,0.1093], + [6005,0.004], + [6007,0.0058], + [6009,0.0055], + [6011,0.0057], + [6013,0.0024], + [6015,0.0393], + [6017,0.0036], + [6019,0.005], + [6021,0.0097], + [6023,0.026], + [6025,0.0055], + [6027,0.0575], + [6029,0.0055], + [6031,0.0075], + [6033,0.0172], + [6035,0.0154], + [6037,0.0034], + [6039,0.0083], + [6041,0.0013], + [6043,0.0132], + [6045,0.0212], + [6047,0.0034], + [6049,0.0204], + [6051,0.0133], + [6053,0.0033], + [6055,0.0044], + [6057,0.0047], + [6059,0.0023], + [6061,0.0027], + [6063,0.0106], + [6065,0.0042], + [6067,0.0035], + [6069,0.0036], + [6071,0.004], + [6073,0.0032], + [6075,0.0019], + [6077,0.003], + [6079,0.0036], + [6081,0.0017], + [6083,0.0044], + [6085,0.0024], + [6087,0.0028], + [6089,0.0123], + [6091,0.0049], + [6093,0.0174], + [6095,0.0024], + [6097,0.0057], + [6099,0.0035], + [6101,0.0047], + [6103,0.0119], + [6105,0.0214], + [6107,0.0063], + [6109,0.0086], + [6111,0.0041], + [6113,0.0031], + [6115,0.0069], + [8001,0.006], + [8003,0.0128], + [8005,0.0029], + [8007,0.0124], + [8009,0.0054], + [8011,0.0048], + [8013,0.0027], + [8014,0.0023], + [8015,0.0021], + [8017,0.0009], + [8019,0.0032], + [8021,0.0102], + [8023,0.0073], + [8025,0.0071], + [8027,0.0048], + [8029,0.0048], + [8031,0.0048], + [8033,0.0043], + [8035,0.0013], + [8037,0.0021], + [8039,0.0036], + [8041,0.0033], + [8043,0.0062], + [8045,0.0049], + [8047,0.0063], + [8049,0.0001], + [8051,0.0043], + [8053,0.0116], + [8055,0.0095], + [8057,0.0018], + [8059,0.004], + [8061,0], + [8063,0.0007], + [8065,0.0015], + [8067,0.0296], + [8069,0.0032], + [8071,0.0179], + [8073,0.0052], + [8075,0.0043], + [8077,0.0038], + [8079,0.006], + [8081,0.003], + [8083,0.0595], + [8085,0.004], + [8087,0.002], + [8089,0.0075], + [8091,0.0016], + [8093,0.0054], + [8095,0.0052], + [8097,0.0009], + [8099,0.0013], + [8101,0.0178], + [8103,0.0007], + [8105,0.0119], + [8107,0.0032], + [8109,0.0068], + [8111,0.0026], + [8113,0.0021], + [8115,0.0051], + [8117,0.0013], + [8119,0.0019], + [8121,0.0014], + [8123,0.0036], + [8125,0.0016], + [9001,0.0013], + [9003,0.0014], + [9005,0.0009], + [9007,0.0008], + [9009,0.0007], + [9011,0.0032], + [9013,0.0002], + [9015,0.0032], + [10001,0.0031], + [10003,0.0014], + [10005,0.0021], + [11001,0.0013], + [12001,0.0016], + [12003,0.0019], + [12005,0.0039], + [12007,0.0017], + [12009,0.0017], + [12011,0.0013], + [12013,0.0047], + [12015,0.0015], + [12017,0.0018], + [12019,0.0006], + [12021,0.0015], + [12023,0.0011], + [12027,0.0015], + [12029,0.0021], + [12031,0.0011], + [12033,0.0023], + [12035,0.0019], + [12037,0.0022], + [12039,0.0007], + [12041,0.001], + [12043,0.0198], + [12045,0.0023], + [12047,0.0029], + [12049,0.0008], + [12051,0.0101], + [12053,0.0014], + [12055,0.0016], + [12057,0.0015], + [12059,0.0056], + [12061,0.0013], + [12063,0.0037], + [12065,0.0021], + [12067,0.0007], + [12069,0.0019], + [12071,0.0009], + [12073,0.0012], + [12075,0.0017], + [12077,0.0018], + [12079,0.0012], + [12081,0.0012], + [12083,0.0016], + [12085,0.0029], + [12086,0.0007], + [12087,0.0007], + [12089,0.002], + [12091,0.003], + [12093,0.0049], + [12095,0.001], + [12097,0.0024], + [12099,0.0008], + [12101,0.0018], + [12103,0.0014], + [12105,0.0016], + [12107,0.0015], + [12109,0.0015], + [12111,0.0016], + [12113,0.0026], + [12115,0.001], + [12117,0.0009], + [12119,0.0016], + [12121,0.0009], + [12123,0.0023], + [12125,0.0033], + [12127,0.0019], + [12129,0.0018], + [12131,0.0031], + [12133,0.0076], + [13001,0.0028], + [13003,0.0035], + [13005,0], + [13007,0.0009], + [13009,0.0013], + [13011,0.0013], + [13013,0.0013], + [13015,0.0016], + [13017,0], + [13019,0.003], + [13021,0.0008], + [13023,0.0004], + [13025,0.001], + [13027,0.0002], + [13029,0.0023], + [13031,0.0015], + [13033,0.0001], + [13035,0.0004], + [13037,0], + [13039,0.004], + [13043,0.0036], + [13045,0.0021], + [13047,0.001], + [13049,0.008], + [13051,0.0016], + [13053,0.0041], + [13055,0.0003], + [13057,0.0015], + [13059,0.0006], + [13061,0], + [13063,0.0012], + [13065,0.0015], + [13067,0.0011], + [13069,0.0008], + [13071,0.002], + [13073,0.002], + [13075,0.0015], + [13077,0.0007], + [13079,0.0007], + [13081,0], + [13083,0.0033], + [13085,0.0004], + [13087,0.0007], + [13089,0.0033], + [13091,0.0002], + [13093,0], + [13095,0.0008], + [13097,0.0006], + [13099,0.0004], + [13101,0.0097], + [13103,0.0006], + [13105,0], + [13107,0], + [13109,0], + [13111,0.0015], + [13113,0.0015], + [13115,0.0005], + [13117,0.0012], + [13119,0.0003], + [13121,0.0019], + [13123,0.0043], + [13125,0.004], + [13127,0.0022], + [13129,0.0042], + [13131,0.0025], + [13133,0.0003], + [13135,0.0017], + [13137,0.0006], + [13139,0.0013], + [13141,0], + [13143,0.0012], + [13145,0.0006], + [13147,0.0002], + [13149,0.0002], + [13151,0.0003], + [13153,0.002], + [13155,0], + [13157,0.0004], + [13159,0.0009], + [13161,0], + [13163,0.0004], + [13165,0.0073], + [13167,0], + [13169,0.0008], + [13171,0.0004], + [13173,0], + [13175,0.0004], + [13177,0.0003], + [13179,0.0025], + [13181,0.0003], + [13183,0.0011], + [13185,0.0012], + [13187,0.0038], + [13189,0], + [13191,0.0007], + [13193,0.0022], + [13195,0.0017], + [13197,0], + [13199,0.0009], + [13201,0.0042], + [13205,0.0007], + [13207,0.0006], + [13209,0.0022], + [13211,0.0007], + [13213,0.0004], + [13215,0.0019], + [13217,0.0015], + [13219,0.0003], + [13221,0.0006], + [13223,0.0009], + [13225,0.0003], + [13227,0.0004], + [13229,0.002], + [13231,0], + [13233,0.002], + [13235,0.0009], + [13237,0.0002], + [13239,0], + [13241,0.0024], + [13243,0], + [13245,0.0011], + [13247,0.0006], + [13249,0], + [13251,0.0014], + [13253,0], + [13255,0.002], + [13257,0.0013], + [13259,0.0013], + [13261,0.0004], + [13263,0.0004], + [13265,0], + [13267,0.0017], + [13269,0], + [13271,0.0001], + [13273,0.0006], + [13275,0.0006], + [13277,0.0005], + [13279,0], + [13281,0.003], + [13283,0], + [13285,0.0006], + [13287,0.0012], + [13289,0.0002], + [13291,0.0021], + [13293,0.0015], + [13295,0.0007], + [13297,0.0011], + [13299,0.002], + [13301,0], + [13303,0], + [13305,0.0005], + [13307,0.0004], + [13309,0.0017], + [13311,0.0012], + [13313,0.003], + [13315,0.0014], + [13317,0], + [13319,0.0004], + [13321,0.0046], + [15001,0.0018], + [15003,0.0007], + [15005,0], + [15007,0.0026], + [15009,0.0009], + [16001,0.0027], + [16003,0.0062], + [16005,0.0156], + [16007,0.0011], + [16009,0.0443], + [16011,0.0307], + [16013,0.0002], + [16015,0.0069], + [16017,0.0035], + [16019,0.0018], + [16021,0.0069], + [16023,0.0002], + [16025,0], + [16027,0.0051], + [16029,0.0007], + [16031,0.005], + [16033,0.0284], + [16035,0.011], + [16037,0.006], + [16039,0.0084], + [16041,0.0028], + [16043,0.0017], + [16045,0.0061], + [16047,0.0058], + [16049,0.0161], + [16051,0.0016], + [16053,0.0022], + [16055,0.0071], + [16057,0.0045], + [16059,0.0035], + [16061,0.0369], + [16063,0.0025], + [16065,0.0001], + [16067,0.0032], + [16069,0.0284], + [16071,0.0021], + [16073,0.0169], + [16075,0.0038], + [16077,0.0198], + [16079,0.0112], + [16081,0.0009], + [16083,0.0055], + [16085,0.001], + [16087,0.0038], + [17001,0.0017], + [17003,0.0032], + [17005,0.0016], + [17007,0.0017], + [17009,0.0002], + [17011,0.0007], + [17013,0.0007], + [17015,0.0005], + [17017,0.0002], + [17019,0.0008], + [17021,0.0013], + [17023,0.0003], + [17025,0.0003], + [17027,0.0014], + [17029,0.001], + [17031,0.0013], + [17033,0.0003], + [17035,0.0011], + [17037,0.0003], + [17039,0.0009], + [17041,0.0025], + [17043,0.001], + [17045,0.0009], + [17047,0], + [17049,0.0005], + [17051,0.0014], + [17053,0.0019], + [17055,0.0014], + [17057,0.001], + [17059,0.0025], + [17061,0.0012], + [17063,0.0004], + [17065,0.0004], + [17067,0.0001], + [17069,0.001], + [17071,0.0016], + [17073,0.0006], + [17075,0.0001], + [17077,0.002], + [17079,0.0003], + [17081,0.0005], + [17083,0.0006], + [17085,0.0009], + [17087,0.0005], + [17089,0.0021], + [17091,0.0016], + [17093,0.0006], + [17095,0.0017], + [17097,0.001], + [17099,0.0013], + [17101,0.0015], + [17103,0.0009], + [17105,0.0001], + [17107,0.0006], + [17109,0.0011], + [17111,0.0004], + [17113,0.0009], + [17115,0.0017], + [17117,0.0004], + [17119,0.001], + [17121,0.001], + [17123,0.0008], + [17125,0.0005], + [17127,0.0005], + [17129,0.0006], + [17131,0.0003], + [17133,0.0003], + [17135,0.0009], + [17137,0.0011], + [17139,0.001], + [17141,0.0007], + [17143,0.0013], + [17145,0.0013], + [17147,0.0005], + [17149,0.0011], + [17151,0.0008], + [17153,0.0011], + [17155,0], + [17157,0.0005], + [17159,0.0019], + [17161,0.0017], + [17163,0.001], + [17165,0.0004], + [17167,0.0004], + [17169,0.0001], + [17171,0.0024], + [17173,0.001], + [17175,0], + [17177,0.0007], + [17179,0.0007], + [17181,0.0004], + [17183,0.0013], + [17185,0.0003], + [17187,0.0002], + [17189,0.0015], + [17191,0.0015], + [17193,0.0006], + [17195,0.0009], + [17197,0.0009], + [17199,0.001], + [17201,0.0015], + [17203,0.0003], + [18001,0.0002], + [18003,0.001], + [18005,0.0012], + [18007,0.0001], + [18009,0.001], + [18011,0.0009], + [18013,0], + [18015,0.0013], + [18017,0.0021], + [18019,0.0006], + [18021,0.0003], + [18023,0.001], + [18025,0.0041], + [18027,0.0002], + [18029,0.0012], + [18031,0.0018], + [18033,0.0003], + [18035,0.0004], + [18037,0.0012], + [18039,0.0008], + [18041,0], + [18043,0.0023], + [18045,0.0013], + [18047,0.0001], + [18049,0.0025], + [18051,0.0004], + [18053,0.0009], + [18055,0.0001], + [18057,0.0007], + [18059,0.0005], + [18061,0.0028], + [18063,0.0011], + [18065,0.0013], + [18067,0.0022], + [18069,0.0013], + [18071,0.0019], + [18073,0.0006], + [18075,0.0007], + [18077,0.0013], + [18079,0.0011], + [18081,0.001], + [18083,0.0003], + [18085,0.0013], + [18087,0.0003], + [18089,0.0015], + [18091,0.0014], + [18093,0.0023], + [18095,0.0011], + [18097,0.0013], + [18099,0.0013], + [18101,0.0036], + [18103,0.004], + [18105,0.001], + [18107,0.0009], + [18109,0.0003], + [18111,0.0007], + [18113,0.0001], + [18115,0.0004], + [18117,0.0007], + [18119,0.0014], + [18121,0.0009], + [18123,0.0012], + [18125,0], + [18127,0.0011], + [18129,0.0001], + [18131,0.0007], + [18133,0.001], + [18135,0.0002], + [18137,0.0026], + [18139,0], + [18141,0.0021], + [18143,0.001], + [18145,0.0006], + [18147,0.0013], + [18149,0.0006], + [18151,0.0004], + [18153,0.0009], + [18155,0], + [18157,0.0009], + [18159,0.0001], + [18161,0], + [18163,0.001], + [18165,0.0014], + [18167,0.001], + [18169,0.0034], + [18171,0.0012], + [18173,0.0009], + [18175,0.0016], + [18177,0.0009], + [18179,0.0008], + [18181,0.0013], + [18183,0.0016], + [19001,0], + [19003,0.0009], + [19005,0.0007], + [19007,0.0007], + [19009,0.0001], + [19011,0.0006], + [19013,0.0017], + [19015,0.0014], + [19017,0.0011], + [19019,0.0014], + [19021,0.0001], + [19023,0.0016], + [19025,0.0017], + [19027,0.0004], + [19029,0.0015], + [19031,0.0017], + [19033,0.0021], + [19035,0.0018], + [19037,0.0013], + [19039,0.0008], + [19041,0.0001], + [19043,0.0006], + [19045,0.002], + [19047,0.0037], + [19049,0.0003], + [19051,0], + [19053,0.0015], + [19055,0.0003], + [19057,0.0008], + [19059,0.0014], + [19061,0.0007], + [19063,0.0022], + [19065,0.0002], + [19067,0.0018], + [19069,0.0005], + [19071,0.0025], + [19073,0.0004], + [19075,0.0001], + [19077,0.0015], + [19079,0.0002], + [19081,0.0015], + [19083,0.0019], + [19085,0.0029], + [19087,0.0018], + [19089,0], + [19091,0.0016], + [19093,0.0042], + [19095,0.0001], + [19097,0.0001], + [19099,0.0008], + [19101,0], + [19103,0.001], + [19105,0.002], + [19107,0.0005], + [19109,0.0007], + [19111,0.0011], + [19113,0.0008], + [19115,0.0014], + [19117,0.0002], + [19119,0.0028], + [19121,0.0002], + [19123,0.0013], + [19125,0.0015], + [19127,0.0014], + [19129,0.0036], + [19131,0.0013], + [19133,0.013], + [19135,0], + [19137,0.0031], + [19139,0.0009], + [19141,0.0015], + [19143,0.0004], + [19145,0.0044], + [19147,0.0008], + [19149,0.0017], + [19151,0], + [19153,0.0015], + [19155,0.0017], + [19157,0], + [19159,0.0017], + [19161,0], + [19163,0.0015], + [19165,0.0009], + [19167,0.0018], + [19169,0.0014], + [19171,0.0386], + [19173,0.0017], + [19175,0.0015], + [19177,0.0006], + [19179,0.0006], + [19181,0.0008], + [19183,0.0013], + [19185,0.0015], + [19187,0.0016], + [19189,0.0016], + [19191,0.0008], + [19193,0.0091], + [19195,0.0005], + [19197,0.0011], + [20001,0.0005], + [20003,0.0177], + [20005,0.0025], + [20007,0.0077], + [20009,0.0038], + [20011,0.0037], + [20013,0.0434], + [20015,0.0041], + [20017,0], + [20019,0.0264], + [20021,0.0155], + [20023,0], + [20025,0.0072], + [20027,0.0029], + [20029,0.0017], + [20031,0.0031], + [20033,0], + [20035,0.0099], + [20037,0.0029], + [20039,0.0047], + [20041,0.0045], + [20043,0.0075], + [20045,0.0117], + [20047,0.001], + [20049,0.0095], + [20051,0.0009], + [20053,0.0091], + [20055,0.0046], + [20057,0.0027], + [20059,0.002], + [20061,0.0041], + [20063,0.0047], + [20065,0.0006], + [20067,0.0016], + [20069,0], + [20071,0.0037], + [20073,0.001], + [20075,0.0008], + [20077,0.0118], + [20079,0.0027], + [20081,0.0064], + [20083,0.0005], + [20085,0.0393], + [20087,0.003], + [20089,0.0015], + [20091,0.0013], + [20093,0.0032], + [20095,0.0018], + [20097,0.0032], + [20099,0.0053], + [20101,0.0115], + [20103,0.0032], + [20105,0.0005], + [20107,0.0055], + [20109,0.002], + [20111,0.0027], + [20113,0.0032], + [20115,0.0036], + [20117,0.0016], + [20119,0], + [20121,0.0038], + [20123,0.0021], + [20125,0.0155], + [20127,0.001], + [20129,0.0003], + [20131,0.0032], + [20133,0.0018], + [20135,0.001], + [20137,0.0052], + [20139,0.0013], + [20141,0.002], + [20143,0.001], + [20145,0.0014], + [20147,0.0014], + [20149,0.0064], + [20151,0.0044], + [20153,0.0022], + [20155,0.0035], + [20157,0.0013], + [20159,0.0014], + [20161,0.0027], + [20163,0.0013], + [20165,0.0011], + [20167,0.0019], + [20169,0.0017], + [20171,0.0052], + [20173,0.0045], + [20175,0.0038], + [20177,0.0037], + [20179,0.0062], + [20181,0.0008], + [20183,0.0028], + [20185,0.0009], + [20187,0.0014], + [20189,0.0015], + [20191,0.0052], + [20193,0.0044], + [20195,0.0067], + [20197,0.0025], + [20199,0.0019], + [20201,0.0005], + [20203,0.0019], + [20205,0.0025], + [20207,0.0031], + [20209,0.0026], + [21001,0.0007], + [21003,0.0002], + [21005,0], + [21007,0.0021], + [21009,0.0011], + [21011,0.0005], + [21013,0.0004], + [21015,0.0006], + [21017,0.0002], + [21019,0.0005], + [21021,0.0012], + [21023,0.0009], + [21025,0.0011], + [21027,0.0007], + [21029,0.0009], + [21031,0.0009], + [21033,0], + [21035,0.0015], + [21037,0.0002], + [21039,0.003], + [21041,0.0007], + [21043,0.0021], + [21045,0.0016], + [21047,0.0033], + [21049,0.0003], + [21051,0.0014], + [21053,0], + [21055,0], + [21057,0], + [21059,0.0009], + [21061,0.0019], + [21063,0.0003], + [21065,0.002], + [21067,0.0016], + [21069,0.0002], + [21071,0.0004], + [21073,0.0014], + [21075,0.0006], + [21077,0], + [21079,0.0009], + [21081,0.0006], + [21083,0.0008], + [21085,0.0021], + [21087,0], + [21089,0.0003], + [21091,0.0006], + [21093,0.0013], + [21095,0.0004], + [21097,0], + [21099,0.0022], + [21101,0.0008], + [21103,0.0014], + [21105,0.0015], + [21107,0.0017], + [21109,0.0001], + [21111,0.0007], + [21113,0.0029], + [21115,0.0003], + [21117,0.0006], + [21119,0.0001], + [21121,0.0028], + [21123,0.0005], + [21125,0.0025], + [21127,0.0002], + [21129,0.0016], + [21131,0], + [21133,0.0009], + [21135,0.0041], + [21137,0.0008], + [21139,0.0009], + [21141,0.0009], + [21143,0.0026], + [21145,0.0012], + [21147,0.0039], + [21149,0.0009], + [21151,0.0013], + [21153,0.0002], + [21155,0], + [21157,0.0006], + [21159,0.0004], + [21161,0.0001], + [21163,0.0039], + [21165,0], + [21167,0.0011], + [21169,0.0009], + [21171,0.0001], + [21173,0.0015], + [21175,0.0003], + [21177,0.0012], + [21179,0.0006], + [21181,0.0011], + [21183,0.0002], + [21185,0.001], + [21187,0.0013], + [21189,0.0017], + [21191,0.0006], + [21193,0.0007], + [21195,0.0007], + [21197,0.0006], + [21199,0.0012], + [21201,0], + [21203,0.005], + [21205,0.0006], + [21207,0.0008], + [21209,0.0011], + [21211,0.0002], + [21213,0.0049], + [21215,0.0002], + [21217,0], + [21219,0.0003], + [21221,0], + [21223,0.0014], + [21225,0.0003], + [21227,0.0018], + [21229,0], + [21231,0.0004], + [21233,0.0006], + [21235,0.0015], + [21237,0.0021], + [21239,0.0002], + [22001,0.0003], + [22003,0.01], + [22005,0.0002], + [22007,0.0031], + [22009,0.0061], + [22011,0.0038], + [22013,0.0004], + [22015,0.0031], + [22017,0.0021], + [22019,0.0016], + [22021,0.003], + [22023,0], + [22025,0.0007], + [22027,0.0015], + [22029,0.0003], + [22031,0.0055], + [22033,0.0011], + [22035,0], + [22037,0.0015], + [22039,0.0005], + [22041,0.0002], + [22043,0.0075], + [22045,0.0005], + [22047,0.0013], + [22049,0.0003], + [22051,0.0021], + [22053,0.0047], + [22055,0.001], + [22057,0.0124], + [22059,0.0064], + [22061,0.0009], + [22063,0.0012], + [22065,0.0004], + [22067,0.0004], + [22069,0.0058], + [22071,0.0008], + [22073,0.0012], + [22075,0.0051], + [22077,0.0013], + [22079,0.0031], + [22081,0.0022], + [22083,0], + [22085,0.04], + [22087,0.0032], + [22089,0.0013], + [22091,0.0038], + [22093,0.0005], + [22095,0], + [22097,0.0007], + [22099,0.0031], + [22101,0.0053], + [22103,0.0026], + [22105,0.0014], + [22107,0], + [22109,0.0274], + [22111,0.0003], + [22113,0.0024], + [22115,0.0074], + [22117,0.0013], + [22119,0.002], + [22121,0.0017], + [22123,0.0019], + [22125,0.001], + [22127,0.0025], + [23001,0.0009], + [23003,0.0086], + [23005,0.0011], + [23007,0.0021], + [23009,0.0019], + [23011,0.0032], + [23013,0.0021], + [23015,0.0024], + [23017,0.0017], + [23019,0.0057], + [23021,0.0033], + [23023,0.0018], + [23025,0.002], + [23027,0.0015], + [23029,0.0236], + [23031,0.0019], + [24001,0.0008], + [24003,0.0009], + [24005,0.0014], + [24009,0.0008], + [24011,0.0015], + [24013,0.001], + [24015,0.0014], + [24017,0.0029], + [24019,0.0004], + [24021,0.0013], + [24023,0.0011], + [24025,0.0009], + [24027,0.0009], + [24029,0.001], + [24031,0.0015], + [24033,0.0018], + [24035,0.0004], + [24037,0.001], + [24039,0.0018], + [24041,0.0004], + [24043,0.0011], + [24045,0.001], + [24047,0.001], + [24510,0.0015], + [25001,0.0024], + [25003,0.0015], + [25005,0.0004], + [25007,0.0078], + [25009,0.0011], + [25011,0.001], + [25013,0.0015], + [25015,0.001], + [25017,0.0008], + [25019,0.0029], + [25021,0.0005], + [25023,0.0007], + [25025,0.0017], + [25027,0.0011], + [26001,0.0032], + [26003,0.0164], + [26005,0.0024], + [26007,0.0022], + [26009,0.0043], + [26011,0.0069], + [26013,0.0239], + [26015,0.0011], + [26017,0.0018], + [26019,0.0076], + [26021,0.0016], + [26023,0.0015], + [26025,0.0034], + [26027,0.0057], + [26029,0.006], + [26031,0.0103], + [26033,0.0707], + [26035,0.0027], + [26037,0.0007], + [26039,0.0027], + [26041,0.0096], + [26043,0.004], + [26045,0.0028], + [26047,0.0116], + [26049,0.0019], + [26051,0.0033], + [26053,0.0137], + [26055,0.0052], + [26057,0.0022], + [26059,0.0019], + [26061,0.0016], + [26063,0.0018], + [26065,0.0017], + [26067,0.0015], + [26069,0.004], + [26071,0.0061], + [26073,0.0144], + [26075,0.0018], + [26077,0.0013], + [26079,0.0032], + [26081,0.002], + [26083,0.0012], + [26085,0.0037], + [26087,0.0018], + [26089,0.0146], + [26091,0.0023], + [26093,0.0013], + [26095,0.0345], + [26097,0.0855], + [26099,0.0014], + [26101,0.0083], + [26103,0.0042], + [26105,0.0039], + [26107,0.0021], + [26109,0.0124], + [26111,0.0023], + [26113,0.003], + [26115,0.002], + [26117,0.0029], + [26119,0.0038], + [26121,0.0032], + [26123,0.0042], + [26125,0.0013], + [26127,0.0043], + [26129,0.006], + [26131,0.0058], + [26133,0.0042], + [26135,0.0023], + [26137,0.0028], + [26139,0.0017], + [26141,0.002], + [26143,0.0044], + [26145,0.0014], + [26147,0.0008], + [26149,0.0022], + [26151,0.0019], + [26153,0.0356], + [26155,0.0011], + [26157,0.0015], + [26159,0.0046], + [26161,0.0017], + [26163,0.0016], + [26165,0.0027], + [27001,0.011], + [27003,0.0031], + [27005,0.0385], + [27007,0.1045], + [27009,0.0018], + [27011,0], + [27013,0.0015], + [27015,0.0011], + [27017,0.0266], + [27019,0.001], + [27021,0.0564], + [27023,0.0078], + [27025,0.0024], + [27027,0.0069], + [27029,0.0431], + [27031,0.0411], + [27033,0.0026], + [27035,0.0057], + [27037,0.0013], + [27039,0.0016], + [27041,0.002], + [27043,0.0004], + [27045,0.0005], + [27047,0.0017], + [27049,0.0048], + [27051,0.0008], + [27053,0.0033], + [27055,0.0011], + [27057,0.0108], + [27059,0.0017], + [27061,0.0184], + [27063,0.0005], + [27065,0.0045], + [27067,0.002], + [27069,0.001], + [27071,0.0183], + [27073,0.0008], + [27075,0.0024], + [27077,0.0009], + [27079,0.0012], + [27081,0.0036], + [27083,0.0022], + [27085,0.0009], + [27087,0.2139], + [27089,0.0013], + [27091,0.0003], + [27093,0.0007], + [27095,0.0246], + [27097,0.0013], + [27099,0.0005], + [27101,0.0013], + [27103,0.0009], + [27105,0.003], + [27107,0.0103], + [27109,0.0014], + [27111,0.002], + [27113,0.0083], + [27115,0.0121], + [27117,0.0052], + [27119,0.0062], + [27121,0.0017], + [27123,0.0034], + [27125,0.0075], + [27127,0.024], + [27129,0.0064], + [27131,0.0019], + [27133,0.0035], + [27135,0.0059], + [27137,0.0092], + [27139,0.004], + [27141,0.0025], + [27143,0.0009], + [27145,0.0017], + [27147,0.001], + [27149,0.0109], + [27151,0.0001], + [27153,0.0028], + [27155,0.02], + [27157,0.0008], + [27159,0.004], + [27161,0.0048], + [27163,0.002], + [27165,0.0029], + [27167,0.0146], + [27169,0.0017], + [27171,0.0021], + [27173,0.0196], + [28001,0.0012], + [28003,0.0004], + [28005,0.0001], + [28007,0.0007], + [28009,0], + [28011,0.0014], + [28013,0], + [28015,0.0003], + [28017,0.0007], + [28019,0.0026], + [28021,0.0008], + [28023,0.0005], + [28025,0.0017], + [28027,0.0006], + [28029,0], + [28031,0], + [28033,0.0007], + [28035,0.0012], + [28037,0], + [28039,0.0025], + [28041,0.0008], + [28043,0.0015], + [28045,0.0018], + [28047,0.0026], + [28049,0.0005], + [28051,0.0003], + [28053,0.0008], + [28055,0], + [28057,0], + [28059,0.0019], + [28061,0], + [28063,0], + [28065,0], + [28067,0.0011], + [28069,0.0187], + [28071,0.0003], + [28073,0.0003], + [28075,0.0008], + [28077,0], + [28079,0.0289], + [28081,0.0008], + [28083,0], + [28085,0.0001], + [28087,0.001], + [28089,0.0009], + [28091,0.0015], + [28093,0.0005], + [28095,0.0001], + [28097,0], + [28099,0.081], + [28101,0.0254], + [28103,0.0009], + [28105,0.0005], + [28107,0.0003], + [28109,0.0007], + [28111,0], + [28113,0.0024], + [28115,0.0001], + [28117,0], + [28119,0], + [28121,0.0006], + [28123,0.0037], + [28125,0.0005], + [28127,0.0001], + [28129,0], + [28131,0.0021], + [28133,0.0013], + [28135,0.0024], + [28137,0.0005], + [28139,0.0002], + [28141,0.0013], + [28143,0], + [28145,0.0003], + [28147,0], + [28149,0.0005], + [28151,0.0006], + [28153,0.0016], + [28155,0.0009], + [28157,0], + [28159,0.0062], + [28161,0.0022], + [28163,0.0018], + [29001,0.0011], + [29003,0.0007], + [29005,0.0019], + [29007,0.0011], + [29009,0.0034], + [29011,0.0097], + [29013,0.0023], + [29015,0.0037], + [29017,0.0033], + [29019,0.0013], + [29021,0.0016], + [29023,0.0023], + [29025,0.0024], + [29027,0.0023], + [29029,0.0029], + [29031,0.001], + [29033,0], + [29035,0.0068], + [29037,0.0028], + [29039,0.0001], + [29041,0.0011], + [29043,0.0025], + [29045,0.0012], + [29047,0.0022], + [29049,0.0026], + [29051,0.0016], + [29053,0.0017], + [29055,0], + [29057,0.0035], + [29059,0.0048], + [29061,0.0035], + [29063,0.0034], + [29065,0.0044], + [29067,0.0005], + [29069,0.0018], + [29071,0.001], + [29073,0.0019], + [29075,0.0036], + [29077,0.0024], + [29079,0.0051], + [29081,0.0009], + [29083,0.0036], + [29085,0.0087], + [29087,0.008], + [29089,0.0026], + [29091,0.0018], + [29093,0.0033], + [29095,0.0022], + [29097,0.007], + [29099,0.0012], + [29101,0.0031], + [29103,0], + [29105,0.003], + [29107,0.0012], + [29109,0.0027], + [29111,0.0032], + [29113,0.0013], + [29115,0.001], + [29117,0.0031], + [29119,0.0128], + [29121,0.0013], + [29123,0.0014], + [29125,0.0046], + [29127,0.0009], + [29129,0], + [29131,0.0061], + [29133,0.0045], + [29135,0.0037], + [29137,0.0009], + [29139,0.0005], + [29141,0.0026], + [29143,0.0022], + [29145,0.0118], + [29147,0.0014], + [29149,0.0051], + [29151,0.0023], + [29153,0.0008], + [29155,0.0005], + [29157,0.0029], + [29159,0.0008], + [29161,0.0043], + [29163,0.0024], + [29165,0.0022], + [29167,0.0053], + [29169,0.0047], + [29171,0.0009], + [29173,0.0024], + [29175,0.0025], + [29177,0.0025], + [29179,0.0042], + [29181,0.0018], + [29183,0.0009], + [29185,0.0037], + [29186,0], + [29187,0.0015], + [29189,0.0008], + [29195,0.0013], + [29197,0.0001], + [29199,0], + [29201,0.0024], + [29203,0.0072], + [29205,0.0002], + [29207,0.0005], + [29209,0.0055], + [29211,0.0025], + [29213,0.004], + [29215,0.0109], + [29217,0.0028], + [29219,0.0024], + [29221,0.0029], + [29223,0.0022], + [29225,0.0016], + [29227,0.0005], + [29229,0.0009], + [29510,0.0014], + [30001,0.01], + [30003,0.331], + [30005,0.2522], + [30007,0.0073], + [30009,0.0046], + [30011,0.0019], + [30013,0.0234], + [30015,0.099], + [30017,0.0097], + [30019,0.0028], + [30021,0.0109], + [30023,0.0067], + [30025,0.0053], + [30027,0.0052], + [30029,0.0073], + [30031,0.0049], + [30033,0], + [30035,0.3228], + [30037,0], + [30039,0.0022], + [30041,0.121], + [30043,0.0072], + [30045,0.0069], + [30047,0.1218], + [30049,0.0098], + [30051,0], + [30053,0.005], + [30055,0.0353], + [30057,0.0024], + [30059,0.006], + [30061,0.0017], + [30063,0.0131], + [30065,0.0033], + [30067,0.0036], + [30069,0], + [30071,0.0561], + [30073,0.0743], + [30075,0.0075], + [30077,0.0225], + [30079,0.006], + [30081,0.0032], + [30083,0.0183], + [30085,0.2772], + [30087,0.1852], + [30089,0.0182], + [30091,0.0069], + [30093,0.0115], + [30095,0.0052], + [30097,0], + [30099,0.0068], + [30101,0.0272], + [30103,0], + [30105,0.046], + [30107,0.0147], + [30109,0.0009], + [30111,0.0213], + [31001,0.0017], + [31003,0.0016], + [31005,0], + [31007,0], + [31009,0], + [31011,0.0003], + [31013,0.0166], + [31015,0.0076], + [31017,0.001], + [31019,0.0008], + [31021,0.01], + [31023,0.0012], + [31025,0.0008], + [31027,0.004], + [31029,0], + [31031,0.0202], + [31033,0.0022], + [31035,0.0014], + [31037,0.0067], + [31039,0.0019], + [31041,0.0004], + [31043,0.0142], + [31045,0.0144], + [31047,0.0031], + [31049,0.005], + [31051,0.0023], + [31053,0.0044], + [31055,0.0024], + [31057,0.0002], + [31059,0.0026], + [31061,0], + [31063,0.003], + [31065,0.0012], + [31067,0.0022], + [31069,0.001], + [31071,0], + [31073,0.0002], + [31075,0], + [31077,0], + [31079,0.0029], + [31081,0.0034], + [31083,0.0026], + [31085,0], + [31087,0.0002], + [31089,0.0039], + [31091,0], + [31093,0.0002], + [31095,0.0049], + [31097,0.0063], + [31099,0.0013], + [31101,0.0035], + [31103,0], + [31105,0.0049], + [31107,0.0488], + [31109,0.0028], + [31111,0.0012], + [31113,0.0011], + [31115,0.0019], + [31117,0], + [31119,0.0076], + [31121,0.0008], + [31123,0.0025], + [31125,0.0024], + [31127,0.0031], + [31129,0.0005], + [31131,0.0026], + [31133,0.0011], + [31135,0.0003], + [31137,0.0012], + [31139,0.0007], + [31141,0.0016], + [31143,0.0025], + [31145,0], + [31147,0.0137], + [31149,0], + [31151,0.0019], + [31153,0.0019], + [31155,0.001], + [31157,0.0075], + [31159,0.0006], + [31161,0.0474], + [31163,0.0002], + [31165,0.0008], + [31167,0], + [31169,0.0014], + [31171,0.0016], + [31173,0.2845], + [31175,0.0011], + [31177,0.0004], + [31179,0.0026], + [31181,0], + [31183,0], + [31185,0.0017], + [32001,0.022], + [32003,0.0032], + [32005,0.0101], + [32007,0.0279], + [32009,0.0118], + [32011,0.0084], + [32013,0.0234], + [32015,0.0358], + [32017,0.016], + [32019,0.0119], + [32021,0.1318], + [32023,0.0085], + [32027,0.0164], + [32029,0.0068], + [32031,0.0081], + [32033,0.0316], + [32510,0.0126], + [33001,0.0014], + [33003,0.0004], + [33005,0.0009], + [33007,0.0021], + [33009,0.0023], + [33011,0.0006], + [33013,0.0007], + [33015,0.0006], + [33017,0.0002], + [33019,0.0017], + [34001,0.0017], + [34003,0.0009], + [34005,0.0004], + [34007,0.0011], + [34009,0.0002], + [34011,0.004], + [34013,0.0013], + [34015,0.0001], + [34017,0.0016], + [34019,0.0003], + [34021,0.0004], + [34023,0.0009], + [34025,0.0008], + [34027,0.0006], + [34029,0.0003], + [34031,0.002], + [34033,0.001], + [34035,0.0011], + [34037,0.0001], + [34039,0.0014], + [34041,0.0006], + [35001,0.0235], + [35003,0.0003], + [35005,0.0076], + [35006,0.208], + [35007,0.0101], + [35009,0.0054], + [35011,0], + [35013,0.0056], + [35015,0.007], + [35017,0.0093], + [35019,0.009], + [35021,0.0009], + [35023,0.0029], + [35025,0.0042], + [35027,0.0088], + [35028,0.0059], + [35029,0.0053], + [35031,0.3785], + [35033,0.0003], + [35035,0.0338], + [35037,0.007], + [35039,0.079], + [35041,0.0037], + [35043,0.0624], + [35045,0.1952], + [35047,0.0065], + [35049,0.0175], + [35051,0.0104], + [35053,0.057], + [35055,0.0363], + [35057,0.0057], + [35059,0.0187], + [35061,0.0218], + [36001,0.0008], + [36003,0.0014], + [36005,0.0033], + [36007,0.0011], + [36009,0.0148], + [36011,0.0015], + [36013,0.0016], + [36015,0.0023], + [36017,0.0016], + [36019,0.0009], + [36021,0.0002], + [36023,0.0009], + [36025,0.0007], + [36027,0.0019], + [36029,0.0025], + [36031,0.001], + [36033,0.0346], + [36035,0.0014], + [36037,0.0048], + [36039,0.0017], + [36041,0.0001], + [36043,0.0015], + [36045,0.003], + [36047,0.0017], + [36049,0.001], + [36051,0.0008], + [36053,0.003], + [36055,0.0021], + [36057,0.0004], + [36059,0.0012], + [36061,0.0018], + [36063,0.0053], + [36065,0.0009], + [36067,0.0027], + [36069,0.0022], + [36071,0.0016], + [36073,0.0019], + [36075,0.0008], + [36077,0.0008], + [36079,0.0013], + [36081,0.0019], + [36083,0.0006], + [36085,0.0014], + [36087,0.0009], + [36089,0.0034], + [36091,0.0011], + [36093,0.0012], + [36095,0.0009], + [36097,0.0006], + [36099,0.0017], + [36101,0.0007], + [36103,0.0012], + [36105,0.0013], + [36107,0.0002], + [36109,0.0012], + [36111,0.0009], + [36113,0.0012], + [36115,0.001], + [36117,0.001], + [36119,0.0021], + [36121,0.002], + [36123,0.0009], + [37001,0.0017], + [37003,0.0011], + [37005,0.0095], + [37007,0.0017], + [37009,0.0018], + [37011,0.0023], + [37013,0.0002], + [37015,0.0034], + [37017,0.012], + [37019,0.0023], + [37021,0.002], + [37023,0.0027], + [37025,0.0015], + [37027,0.0021], + [37029,0.0013], + [37031,0.0012], + [37033,0.0006], + [37035,0.0014], + [37037,0.0012], + [37039,0.0062], + [37041,0.0042], + [37043,0.0005], + [37045,0.0011], + [37047,0.0185], + [37049,0.0037], + [37051,0.007], + [37053,0.0022], + [37055,0.0017], + [37057,0.0017], + [37059,0.0007], + [37061,0.0014], + [37063,0.0013], + [37065,0.0006], + [37067,0.0015], + [37069,0.0054], + [37071,0.002], + [37073,0.0046], + [37075,0.0532], + [37077,0.003], + [37079,0.0019], + [37081,0.0022], + [37083,0.0191], + [37085,0.0046], + [37087,0.0021], + [37089,0.0012], + [37091,0.0057], + [37093,0.041], + [37095,0.0006], + [37097,0.0016], + [37099,0.0421], + [37101,0.0034], + [37103,0.0016], + [37105,0.0035], + [37107,0.0019], + [37109,0.001], + [37111,0.002], + [37113,0.0028], + [37115,0.0022], + [37117,0.0018], + [37119,0.0015], + [37121,0.003], + [37123,0.001], + [37125,0.0045], + [37127,0.0034], + [37129,0.0014], + [37131,0.0035], + [37133,0.0025], + [37135,0.0022], + [37137,0.0028], + [37139,0.0005], + [37141,0.002], + [37143,0.0012], + [37145,0.0041], + [37147,0.0012], + [37149,0.001], + [37151,0.002], + [37153,0.0097], + [37155,0.1946], + [37157,0.0026], + [37159,0.0011], + [37161,0.0024], + [37163,0.0093], + [37165,0.0558], + [37167,0.0017], + [37169,0.0017], + [37171,0.0018], + [37173,0.1483], + [37175,0.0021], + [37177,0.0071], + [37179,0.0017], + [37181,0.0087], + [37183,0.0018], + [37185,0.0254], + [37187,0.0003], + [37189,0.0016], + [37191,0.0013], + [37193,0.0014], + [37195,0.003], + [37197,0.0006], + [37199,0.0023], + [38001,0.0055], + [38003,0.0101], + [38005,0.2804], + [38007,0.0031], + [38009,0.012], + [38011,0.0062], + [38013,0.0138], + [38015,0.0188], + [38017,0.005], + [38019,0.0056], + [38021,0.0054], + [38023,0.0057], + [38025,0.0505], + [38027,0.0282], + [38029,0.0004], + [38031,0.0047], + [38033,0.004], + [38035,0.0125], + [38037,0.0071], + [38039,0.0046], + [38041,0.0131], + [38043,0.0008], + [38045,0.0037], + [38047,0.0013], + [38049,0.008], + [38051,0.0015], + [38053,0.0666], + [38055,0.033], + [38057,0.0134], + [38059,0.0205], + [38061,0.1346], + [38063,0.0017], + [38065,0.0198], + [38067,0.0116], + [38069,0.018], + [38071,0.0481], + [38073,0.0011], + [38075,0.0024], + [38077,0.0134], + [38079,0.3911], + [38081,0.0045], + [38083,0.0021], + [38085,0.4197], + [38087,0], + [38089,0.006], + [38091,0], + [38093,0.0073], + [38095,0.019], + [38097,0.0051], + [38099,0.0118], + [38101,0.0118], + [38103,0.0018], + [38105,0.014], + [39001,0.0028], + [39003,0.0011], + [39005,0.0001], + [39007,0.001], + [39009,0.0015], + [39011,0.0009], + [39013,0.0013], + [39015,0.0008], + [39017,0.001], + [39019,0.0004], + [39021,0.0005], + [39023,0.001], + [39025,0.001], + [39027,0.0006], + [39029,0.0008], + [39031,0.001], + [39033,0.0003], + [39035,0.0013], + [39037,0.0011], + [39039,0.0019], + [39041,0.0004], + [39043,0.0012], + [39045,0.0007], + [39047,0], + [39049,0.0009], + [39051,0.001], + [39053,0.0023], + [39055,0.0006], + [39057,0.0006], + [39059,0.001], + [39061,0.0006], + [39063,0.0003], + [39065,0.0002], + [39067,0.0006], + [39069,0.0009], + [39071,0.0008], + [39073,0.0002], + [39075,0.0001], + [39077,0.0004], + [39079,0], + [39081,0.0007], + [39083,0.0007], + [39085,0.0006], + [39087,0.0001], + [39089,0.0007], + [39091,0.0008], + [39093,0.0015], + [39095,0.0013], + [39097,0.0017], + [39099,0.0013], + [39101,0.0009], + [39103,0.0007], + [39105,0.0007], + [39107,0], + [39109,0.0007], + [39111,0.0001], + [39113,0.0012], + [39115,0.0003], + [39117,0.0005], + [39119,0.0012], + [39121,0.0004], + [39123,0.0007], + [39125,0.001], + [39127,0.001], + [39129,0.0011], + [39131,0.0022], + [39133,0.0007], + [39135,0.0011], + [39137,0.0002], + [39139,0.0007], + [39141,0.0001], + [39143,0.0012], + [39145,0.0021], + [39147,0.001], + [39149,0.0015], + [39151,0.0005], + [39153,0.001], + [39155,0.0008], + [39157,0.0013], + [39159,0.0015], + [39161,0.001], + [39163,0.0004], + [39165,0.0004], + [39167,0.0025], + [39169,0.0011], + [39171,0.0018], + [39173,0.0009], + [39175,0], + [40001,0.2172], + [40003,0.0094], + [40005,0.0578], + [40007,0.0028], + [40009,0.0074], + [40011,0.0349], + [40013,0.0768], + [40015,0.1231], + [40017,0.0191], + [40019,0.0376], + [40021,0.1724], + [40023,0.0777], + [40025,0.0029], + [40027,0.0186], + [40029,0.0655], + [40031,0.0274], + [40033,0.0448], + [40035,0.1044], + [40037,0.0592], + [40039,0.0109], + [40041,0.1066], + [40043,0.0041], + [40045,0.0093], + [40047,0.0103], + [40049,0.0274], + [40051,0.026], + [40053,0.0024], + [40055,0.0155], + [40057,0.0015], + [40059,0.0016], + [40061,0.0708], + [40063,0.1002], + [40065,0.0097], + [40067,0.036], + [40069,0.0303], + [40071,0.0396], + [40073,0.0164], + [40075,0.0228], + [40077,0.1031], + [40079,0.0522], + [40081,0.04], + [40083,0.0177], + [40085,0.0312], + [40087,0.0287], + [40089,0.0674], + [40091,0.0826], + [40093,0.0128], + [40095,0.0377], + [40097,0.0728], + [40099,0.0421], + [40101,0.0913], + [40103,0.0379], + [40105,0.0826], + [40107,0.0685], + [40109,0.014], + [40111,0.0679], + [40113,0.0687], + [40115,0.0771], + [40117,0.0627], + [40119,0.0253], + [40121,0.0374], + [40123,0.0439], + [40125,0.0733], + [40127,0.0692], + [40129,0.0112], + [40131,0.0586], + [40133,0.1006], + [40135,0.0961], + [40137,0.0265], + [40139,0.0028], + [40141,0.0113], + [40143,0.0234], + [40145,0.0424], + [40147,0.0527], + [40149,0.0054], + [40151,0.0067], + [40153,0.0076], + [41001,0.0055], + [41003,0.0026], + [41005,0.0037], + [41007,0.0031], + [41009,0.0055], + [41011,0.0111], + [41013,0.0047], + [41015,0.0118], + [41017,0.0023], + [41019,0.0061], + [41021,0.0259], + [41023,0.005], + [41025,0.0161], + [41027,0.0035], + [41029,0.0043], + [41031,0.088], + [41033,0.0072], + [41035,0.017], + [41037,0.0107], + [41039,0.0053], + [41041,0.0159], + [41043,0.0052], + [41045,0.0053], + [41047,0.0044], + [41049,0.0089], + [41051,0.0044], + [41053,0.0078], + [41055,0.004], + [41057,0.0028], + [41059,0.0156], + [41061,0.0056], + [41063,0.0009], + [41065,0.0195], + [41067,0.003], + [41069,0.0053], + [41071,0.0059], + [42001,0.0003], + [42003,0.0006], + [42005,0.0001], + [42007,0.0004], + [42009,0.0006], + [42011,0.0044], + [42013,0.0001], + [42015,0.0003], + [42017,0.0009], + [42019,0.0003], + [42021,0.0002], + [42023,0.0011], + [42025,0.0002], + [42027,0.0006], + [42029,0.0006], + [42031,0.0009], + [42033,0.001], + [42035,0.0007], + [42037,0.0006], + [42039,0.0003], + [42041,0.0005], + [42043,0.001], + [42045,0.0007], + [42047,0.0012], + [42049,0.0013], + [42051,0.0002], + [42053,0.0016], + [42055,0.001], + [42057,0.0013], + [42059,0.0005], + [42061,0.0003], + [42063,0.001], + [42065,0.0012], + [42067,0.0001], + [42069,0.0004], + [42071,0.0008], + [42073,0.0003], + [42075,0.0004], + [42077,0.0011], + [42079,0.0012], + [42081,0.0007], + [42083,0.0007], + [42085,0.0005], + [42087,0.0004], + [42089,0.0022], + [42091,0.0005], + [42093,0.0001], + [42095,0.0018], + [42097,0.0014], + [42099,0.0009], + [42101,0.0018], + [42103,0.0006], + [42105,0.0011], + [42107,0.0008], + [42109,0.0003], + [42111,0.0003], + [42113,0.0026], + [42115,0.001], + [42117,0.0006], + [42119,0.0027], + [42121,0.0002], + [42123,0.0006], + [42125,0.0006], + [42127,0.0014], + [42129,0.0004], + [42131,0.0004], + [42133,0.0006], + [44001,0.0003], + [44003,0.0007], + [44005,0.0017], + [44007,0.003], + [44009,0.0042], + [45001,0.0005], + [45003,0.0012], + [45005,0.0024], + [45007,0.0011], + [45009,0.0016], + [45011,0.0017], + [45013,0.0012], + [45015,0.0021], + [45017,0.0023], + [45019,0.0007], + [45021,0.0009], + [45023,0.0014], + [45025,0.0018], + [45027,0.0005], + [45029,0.0034], + [45031,0.0017], + [45033,0.0115], + [45035,0.0023], + [45037,0.0021], + [45039,0.0016], + [45041,0.001], + [45043,0.0006], + [45045,0.0014], + [45047,0.0002], + [45049,0.0009], + [45051,0.0023], + [45053,0.0004], + [45055,0.0011], + [45057,0.0009], + [45059,0.0006], + [45061,0.0018], + [45063,0.0014], + [45065,0.0008], + [45067,0.0025], + [45069,0.0166], + [45071,0.0017], + [45073,0.0018], + [45075,0.0017], + [45077,0.0013], + [45079,0.0006], + [45081,0.0015], + [45083,0.0008], + [45085,0.0016], + [45087,0.0006], + [45089,0.0015], + [45091,0.0031], + [46003,0.0155], + [46005,0.0072], + [46007,0.244], + [46009,0.0265], + [46011,0.0053], + [46013,0.017], + [46015,0.0522], + [46017,0.4182], + [46019,0.0088], + [46021,0.0052], + [46023,0.1594], + [46025,0.0128], + [46027,0.0144], + [46029,0.009], + [46031,0.3385], + [46033,0.0188], + [46035,0.0153], + [46037,0.0516], + [46039,0.0004], + [46041,0.3886], + [46043,0.0136], + [46045,0.0021], + [46047,0.028], + [46049,0.0247], + [46051,0.0172], + [46053,0.0361], + [46055,0.0384], + [46057,0.0037], + [46059,0], + [46061,0.0056], + [46063,0.0113], + [46065,0.0559], + [46067,0.0104], + [46069,0.0473], + [46071,0.2618], + [46073,0.0022], + [46075,0], + [46077,0.0026], + [46079,0.0002], + [46081,0.0118], + [46083,0.0024], + [46085,0.2021], + [46087,0.0043], + [46089,0.0332], + [46091,0.0371], + [46093,0.0129], + [46095,0.2888], + [46097,0.0018], + [46099,0.0121], + [46101,0.0565], + [46102,null], + [46103,0.0446], + [46105,0.014], + [46107,0.0116], + [46109,0.1852], + [46111,0.0034], + [46115,0.0096], + [46117,0.0458], + [46119,0.009], + [46121,0.3896], + [46123,0.0682], + [46125,0.0031], + [46127,0.0042], + [46129,0.0614], + [46135,0.0117], + [46137,0.3731], + [47001,0.0007], + [47003,0.0006], + [47005,0.0017], + [47007,0.0059], + [47009,0.0017], + [47011,0.0007], + [47013,0.0015], + [47015,0.0023], + [47017,0.0018], + [47019,0.0015], + [47021,0.001], + [47023,0.0002], + [47025,0.0009], + [47027,0.0036], + [47029,0.0032], + [47031,0.0024], + [47033,0.0012], + [47035,0.003], + [47037,0.0015], + [47039,0], + [47041,0.0012], + [47043,0.002], + [47045,0.002], + [47047,0.0016], + [47049,0.0006], + [47051,0.0011], + [47053,0.0025], + [47055,0.0002], + [47057,0.0016], + [47059,0.0013], + [47061,0.0006], + [47063,0.0008], + [47065,0.0008], + [47067,0.0035], + [47069,0.0014], + [47071,0.0004], + [47073,0.001], + [47075,0], + [47077,0], + [47079,0.001], + [47081,0.001], + [47083,0.0026], + [47085,0.0018], + [47087,0], + [47089,0.0009], + [47091,0.0024], + [47093,0.0015], + [47095,0.0005], + [47097,0.0028], + [47099,0.0012], + [47101,0], + [47103,0.0012], + [47105,0.0007], + [47107,0.0011], + [47109,0.0008], + [47111,0.002], + [47113,0.0004], + [47115,0.0013], + [47117,0.0001], + [47119,0.002], + [47121,0.0014], + [47123,0.0046], + [47125,0.0028], + [47127,0.008], + [47129,0.0006], + [47131,0.0013], + [47133,0.0007], + [47135,0.0017], + [47137,0], + [47139,0.0013], + [47141,0.0013], + [47143,0.0014], + [47145,0.0017], + [47147,0.002], + [47149,0.0011], + [47151,0.0021], + [47153,0.0016], + [47155,0.0017], + [47157,0.0008], + [47159,0.003], + [47161,0.0023], + [47163,0.0007], + [47165,0.0017], + [47167,0.0025], + [47169,0.0007], + [47171,0.0004], + [47173,0.0002], + [47175,0], + [47177,0.0008], + [47179,0.0019], + [47181,0.0016], + [47183,0.0012], + [47185,0.0002], + [47187,0.0009], + [47189,0.0016], + [48001,0.0024], + [48003,0.0005], + [48005,0.0023], + [48007,0.002], + [48009,0.0021], + [48011,0.0067], + [48013,0.0013], + [48015,0.0002], + [48017,0.0005], + [48019,0.0057], + [48021,0.0029], + [48023,0], + [48025,0.0026], + [48027,0.0038], + [48029,0.0032], + [48031,0.0046], + [48033,0], + [48035,0.0018], + [48037,0.0044], + [48039,0.0028], + [48041,0.0021], + [48043,0.0094], + [48045,0], + [48047,0.0048], + [48049,0.0017], + [48051,0.0009], + [48053,0.0032], + [48055,0.0044], + [48057,0.0003], + [48059,0.0003], + [48061,0.0013], + [48063,0.0019], + [48065,0.0019], + [48067,0.0006], + [48069,0.0008], + [48071,0.0005], + [48073,0.0032], + [48075,0.0048], + [48077,0.0067], + [48079,0.001], + [48081,0.0031], + [48083,0.0038], + [48085,0.0022], + [48087,0.023], + [48089,0.0009], + [48091,0.0011], + [48093,0.0026], + [48095,0.001], + [48097,0.0036], + [48099,0.0041], + [48101,0.0017], + [48103,0.0006], + [48105,0], + [48107,0], + [48109,0], + [48111,0.0065], + [48113,0.0016], + [48115,0.0093], + [48117,0.003], + [48119,0.0009], + [48121,0.0021], + [48123,0.0035], + [48125,0.0052], + [48127,0], + [48129,0.0036], + [48131,0.0014], + [48133,0.0022], + [48135,0.0026], + [48137,0.0002], + [48139,0.0056], + [48141,0.0034], + [48143,0.005], + [48145,0.0016], + [48147,0.0027], + [48149,0.0003], + [48151,0.0035], + [48153,0.001], + [48155,0], + [48157,0.0015], + [48159,0.0027], + [48161,0.0008], + [48163,0.0003], + [48165,0.0011], + [48167,0.0023], + [48169,0.0015], + [48171,0.0122], + [48173,0], + [48175,0], + [48177,0.0009], + [48179,0.0084], + [48181,0.0067], + [48183,0.0017], + [48185,0.0059], + [48187,0.0016], + [48189,0.0029], + [48191,0.0016], + [48193,0.0035], + [48195,0.0005], + [48197,0.002], + [48199,0.0012], + [48201,0.0022], + [48203,0.0021], + [48205,0.0001], + [48207,0.0028], + [48209,0.0016], + [48211,0.0022], + [48213,0.0049], + [48215,0.001], + [48217,0.0055], + [48219,0.0053], + [48221,0.0047], + [48223,0.0014], + [48225,0.001], + [48227,0.0049], + [48229,0], + [48231,0.0042], + [48233,0.0079], + [48235,0], + [48237,0.0019], + [48239,0], + [48241,0.0007], + [48243,0.0022], + [48245,0.0018], + [48247,0.0002], + [48249,0.0012], + [48251,0.0029], + [48253,0.0047], + [48255,0.0005], + [48257,0.0022], + [48259,0.0028], + [48261,0], + [48263,0.0059], + [48265,0.0042], + [48267,0.0037], + [48269,0], + [48271,0.0008], + [48273,0.0022], + [48275,0.0036], + [48277,0.0015], + [48279,0.0015], + [48281,0.0024], + [48283,0], + [48285,0.0002], + [48287,0.0002], + [48289,0.003], + [48291,0.0019], + [48293,0.0056], + [48295,0.0034], + [48297,0.0008], + [48299,0.0047], + [48301,0.027], + [48303,0.0052], + [48305,0.004], + [48307,0.0001], + [48309,0.0024], + [48311,0.0042], + [48313,0.0009], + [48315,0.0017], + [48317,0.0114], + [48319,0.008], + [48321,0.0034], + [48323,0.0065], + [48325,0.0028], + [48327,0.0073], + [48329,0.0023], + [48331,0.0009], + [48333,0], + [48335,0.0028], + [48337,0.0013], + [48339,0.0016], + [48341,0.0034], + [48343,0.002], + [48345,0], + [48347,0.0038], + [48349,0.0095], + [48351,0.001], + [48353,0.0034], + [48355,0.0024], + [48357,0.0096], + [48359,0.0002], + [48361,0.0015], + [48363,0.0034], + [48365,0.0003], + [48367,0.0035], + [48369,0.0031], + [48371,0.0034], + [48373,0.0076], + [48375,0.002], + [48377,0.0054], + [48379,0.0048], + [48381,0.0029], + [48383,0], + [48385,0], + [48387,0.0019], + [48389,0.0033], + [48391,0.001], + [48393,0], + [48395,0.0025], + [48397,0.0011], + [48399,0.0029], + [48401,0.0011], + [48403,0.0009], + [48405,0.0106], + [48407,0.0024], + [48409,0.0014], + [48411,0], + [48413,0], + [48415,0.0031], + [48417,0.0015], + [48419,0.0031], + [48421,0.0011], + [48423,0.0018], + [48425,0.0045], + [48427,0.0003], + [48429,0.0047], + [48431,0], + [48433,0], + [48435,0.0012], + [48437,0.018], + [48439,0.0023], + [48441,0.0043], + [48443,0.0035], + [48445,0.0016], + [48447,0], + [48449,0.0035], + [48451,0.0017], + [48453,0.0023], + [48455,0.0015], + [48457,0.0005], + [48459,0.0038], + [48461,0.0006], + [48463,0.0053], + [48465,0.0012], + [48467,0.0032], + [48469,0.0014], + [48471,0.0019], + [48473,0.0017], + [48475,0.0106], + [48477,0.0028], + [48479,0.0011], + [48481,0.0003], + [48483,0.0009], + [48485,0.005], + [48487,0.0087], + [48489,0.0009], + [48491,0.0014], + [48493,0.0013], + [48495,0.0054], + [48497,0.002], + [48499,0.0036], + [48501,0.0008], + [48503,0.0035], + [48505,0], + [48507,0.0005], + [49001,0.0005], + [49003,0.006], + [49005,0.0024], + [49007,0.0052], + [49009,0.0043], + [49011,0.0021], + [49013,0.0215], + [49015,0.0037], + [49017,0.0136], + [49019,0.0057], + [49021,0.0129], + [49023,0.0043], + [49025,0.0073], + [49027,0.0052], + [49029,0.0006], + [49031,0.0005], + [49033,0], + [49035,0.0038], + [49037,0.2417], + [49039,0.0065], + [49041,0.0076], + [49043,0.0013], + [49045,0.0041], + [49047,0.0377], + [49049,0.0025], + [49051,0.0006], + [49053,0.0069], + [49055,0.0009], + [49057,0.0034], + [50001,0.0014], + [50003,0.0004], + [50005,0.0011], + [50007,0.0014], + [50009,0.0016], + [50011,0.003], + [50013,0.004], + [50015,0.0041], + [50017,0.002], + [50019,0.0027], + [50021,0.0021], + [50023,0.0016], + [50025,0.0005], + [50027,0.0008], + [51001,0.0017], + [51003,0.001], + [51005,0], + [51007,0.0017], + [51009,0.0012], + [51011,0.0005], + [51013,0.0022], + [51015,0.0012], + [51017,0], + [51019,0.0009], + [51021,0], + [51023,0.0018], + [51025,0.0012], + [51027,0.0027], + [51029,0.0023], + [51031,0.0009], + [51033,0.0018], + [51035,0.001], + [51036,0.0328], + [51037,0.0006], + [51041,0.0013], + [51043,0.0018], + [51045,0], + [51047,0.0023], + [51049,0.0045], + [51051,0], + [51053,0.0001], + [51057,0.0049], + [51059,0.0011], + [51061,0.0014], + [51063,0.0008], + [51065,0.0004], + [51067,0.0011], + [51069,0.0014], + [51071,0.0009], + [51073,0.0012], + [51075,0.0009], + [51077,0.0013], + [51079,0.0009], + [51081,0.0014], + [51083,0.0016], + [51085,0.0008], + [51087,0.0009], + [51089,0.0007], + [51091,0.0014], + [51093,0.0015], + [51095,0.001], + [51097,0.003], + [51099,0.0012], + [51101,0.004], + [51103,0], + [51105,0.0026], + [51107,0.0013], + [51109,0.0018], + [51111,0.0007], + [51113,0], + [51115,0.0016], + [51117,0.0013], + [51119,0.0019], + [51121,0.0015], + [51125,0.0011], + [51127,0.0045], + [51131,0.0008], + [51133,0.0013], + [51135,0.0004], + [51137,0.0012], + [51139,0.0007], + [51141,0.0023], + [51143,0.0003], + [51145,0.0014], + [51147,0.0025], + [51149,0.003], + [51153,0.0018], + [51155,0.0001], + [51157,0.0008], + [51159,0.0016], + [51161,0.0004], + [51163,0.0013], + [51165,0.0015], + [51167,0.0002], + [51169,0.0011], + [51171,0.0007], + [51173,0.0002], + [51175,0.0018], + [51177,0.0022], + [51179,0.0014], + [51181,0.0001], + [51183,0.0018], + [51185,0.0011], + [51187,0.0013], + [51191,0.0005], + [51193,0.0021], + [51195,0.0006], + [51197,0.0005], + [51199,0.001], + [51510,0.001], + [51520,0], + [51530,0], + [51540,0.0015], + [51550,0.0009], + [51570,0.0025], + [51580,0], + [51590,0.0005], + [51595,0.0004], + [51600,0.0008], + [51610,0], + [51620,0], + [51630,0.0007], + [51640,0.0003], + [51650,0.0022], + [51660,0.0005], + [51670,0.0005], + [51678,0], + [51680,0.0011], + [51683,0.0037], + [51685,0.0014], + [51690,0.0014], + [51700,0.0013], + [51710,0.002], + [51720,0.0004], + [51730,0.0013], + [51735,0.0004], + [51740,0.0021], + [51750,0.0001], + [51760,0.0021], + [51770,0.0011], + [51775,0.0002], + [51790,0.0012], + [51800,0.0008], + [51810,0.0012], + [51820,0.0038], + [51830,0.0019], + [51840,0.0017], + [53001,0.0144], + [53003,0.0081], + [53005,0.0039], + [53007,0.0049], + [53009,0.023], + [53011,0.003], + [53013,0.0025], + [53015,0.0062], + [53017,0.0044], + [53019,0.0717], + [53021,0.0038], + [53023,0.0011], + [53025,0.006], + [53027,0.0233], + [53029,0.0061], + [53031,0.0095], + [53033,0.0034], + [53035,0.0055], + [53037,0.0033], + [53039,0.0162], + [53041,0.0031], + [53043,0.0068], + [53045,0.0157], + [53047,0.0491], + [53049,0.0077], + [53051,0.0188], + [53053,0.0061], + [53055,0.0044], + [53057,0.0083], + [53059,0.0121], + [53061,0.0047], + [53063,0.0069], + [53065,0.0232], + [53067,0.0074], + [53069,0.0096], + [53071,0.0048], + [53073,0.0156], + [53075,0.0032], + [53077,0.0204], + [54001,0.0019], + [54003,0.0004], + [54005,0.0002], + [54007,0.0003], + [54009,0], + [54011,0.0007], + [54013,0.0007], + [54015,0.0024], + [54017,0.0005], + [54019,0.0016], + [54021,0.0022], + [54023,0], + [54025,0], + [54027,0.0023], + [54029,0.0007], + [54031,0.0006], + [54033,0.0002], + [54035,0.0038], + [54037,0.001], + [54039,0.0005], + [54041,0.002], + [54043,0.0008], + [54045,0.0015], + [54047,0.0006], + [54049,0.0006], + [54051,0.002], + [54053,0.0005], + [54055,0.0015], + [54057,0.0001], + [54059,0.0004], + [54061,0.0006], + [54063,0.0027], + [54065,0.0012], + [54067,0.0018], + [54069,0.001], + [54071,0], + [54073,0], + [54075,0], + [54077,0.0024], + [54079,0.0008], + [54081,0.0022], + [54083,0.0015], + [54085,0], + [54087,0.0009], + [54089,0.0016], + [54091,0], + [54093,0], + [54095,0.0008], + [54097,0.0012], + [54099,0.0006], + [54101,0.0006], + [54103,0.0002], + [54105,0.0015], + [54107,0.0006], + [54109,0.0001], + [55001,0.0035], + [55003,0.0565], + [55005,0.0039], + [55007,0.0508], + [55009,0.012], + [55011,0.0015], + [55013,0.021], + [55015,0.0029], + [55017,0.0009], + [55019,0.0012], + [55021,0.0021], + [55023,0.002], + [55025,0.0014], + [55027,0.0029], + [55029,0.0027], + [55031,0.0087], + [55033,0.0014], + [55035,0.0024], + [55037,0.0001], + [55039,0.0024], + [55041,0.0734], + [55043,0.0009], + [55045,0.0009], + [55047,0.0015], + [55049,0.0013], + [55051,0.004], + [55053,0.0293], + [55055,0.0006], + [55057,0.0075], + [55059,0.0019], + [55061,0.0015], + [55063,0.0015], + [55065,0.0019], + [55067,0.0048], + [55069,0.0018], + [55071,0.0021], + [55073,0.0016], + [55075,0.0024], + [55077,0.0024], + [55078,0.4351], + [55079,0.0028], + [55081,0.005], + [55083,0.0042], + [55085,0.0053], + [55087,0.0083], + [55089,0.0016], + [55091,0.001], + [55093,0.0011], + [55095,0.0053], + [55097,0.0029], + [55099,0.0048], + [55101,0.0026], + [55103,0.0017], + [55105,0.0007], + [55107,0.0016], + [55109,0.0018], + [55111,0.0057], + [55113,0.0882], + [55115,0.037], + [55117,0.0012], + [55119,0.0009], + [55121,0.0015], + [55123,0.0014], + [55125,0.045], + [55127,0.0018], + [55129,0.0073], + [55131,0.0009], + [55133,0.0011], + [55135,0.0024], + [55137,0.0019], + [55139,0.0028], + [55141,0.0028], + [56001,0.0036], + [56003,0.0055], + [56005,0.0063], + [56007,0.0088], + [56009,0.0007], + [56011,0.0071], + [56013,0.1044], + [56015,0.0049], + [56017,0.0113], + [56019,0.0133], + [56021,0.0043], + [56023,0.0016], + [56025,0.0044], + [56027,0.0228], + [56029,0.0056], + [56031,0.0002], + [56033,0.0061], + [56035,0.0007], + [56037,0.0051], + [56039,0.002], + [56041,0.0051], + [56043,0.0032], + [56045,0.0004] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-native-2019.json b/data/regional/united-states/demographics/race/us-race-native-2019.json new file mode 100644 index 0000000..2d363ea --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-native-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Native American Population", + "description" : "Percent of the population that is native american in the year 2017.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.native.2019"], + [1001,0.003], + [1003,0.008], + [1005,0.003], + [1007,0.001], + [1009,0.001], + [1011,0], + [1013,0.001], + [1015,0.003], + [1017,0.003], + [1019,0.011], + [1021,0.008], + [1023,0.001], + [1025,0.001], + [1027,0.003], + [1029,0.001], + [1031,0.012], + [1033,0.006], + [1035,0.002], + [1037,0.001], + [1039,0.001], + [1041,0.007], + [1043,0.003], + [1045,0.008], + [1047,0.001], + [1049,0.012], + [1051,0.003], + [1053,0.04], + [1055,0.006], + [1057,0], + [1059,0.013], + [1061,0.009], + [1063,0.004], + [1065,0.002], + [1067,0.002], + [1069,0.003], + [1071,0.012], + [1073,0.002], + [1075,0], + [1077,0.004], + [1079,0.056], + [1081,0.002], + [1083,0.008], + [1085,0.001], + [1087,0.001], + [1089,0.006], + [1091,0.001], + [1093,0.005], + [1095,0.004], + [1097,0.008], + [1099,0.017], + [1101,0.002], + [1103,0.005], + [1105,0], + [1107,0.001], + [1109,0.006], + [1111,0.002], + [1113,0.003], + [1115,0.004], + [1117,0.003], + [1119,0.001], + [1121,0.004], + [1123,0.002], + [1125,0.002], + [1127,0.002], + [1129,0.074], + [1131,0.002], + [1133,0.003], + [2013,0.467], + [2016,0.108], + [2020,0.079], + [2050,0.831], + [2060,0.342], + [2068,0.022], + [2070,0.719], + [2090,0.079], + [2100,0.088], + [2105,0.376], + [2110,0.106], + [2122,0.078], + [2130,0.143], + [2150,0.124], + [2158,0.921], + [2164,0.698], + [2170,0.062], + [2180,0.758], + [2185,0.512], + [2188,0.822], + [2195,0.078], + [2198,0.392], + [2220,0.131], + [2230,0.06], + [2240,0.139], + [2261,0.139], + [2275,0.245], + [2282,0.387], + [2290,0.694], + [4001,0.738], + [4003,0.012], + [4005,0.265], + [4007,0.163], + [4009,0.126], + [4011,0.039], + [4012,0.15], + [4013,0.02], + [4015,0.023], + [4017,0.447], + [4019,0.039], + [4021,0.05], + [4023,0.008], + [4025,0.017], + [4027,0.015], + [5001,0.002], + [5003,0.002], + [5005,0.004], + [5007,0.014], + [5009,0.006], + [5011,0.011], + [5013,0.002], + [5015,0.008], + [5017,0.001], + [5019,0.004], + [5021,0.003], + [5023,0.012], + [5025,0.002], + [5027,0.002], + [5029,0.003], + [5031,0.004], + [5033,0.023], + [5035,0.003], + [5037,0.002], + [5039,0.006], + [5041,0.003], + [5043,0], + [5045,0.004], + [5047,0.016], + [5049,0.003], + [5051,0.009], + [5053,0.002], + [5055,0.003], + [5057,0.004], + [5059,0.005], + [5061,0.004], + [5063,0.002], + [5065,0.012], + [5067,0.002], + [5069,0.003], + [5071,0.002], + [5073,0.004], + [5075,0.003], + [5077,0.004], + [5079,0.005], + [5081,0.01], + [5083,0.008], + [5085,0.007], + [5087,0.013], + [5089,0.009], + [5091,0.012], + [5093,0.001], + [5095,0.003], + [5097,0.015], + [5099,0.002], + [5101,0.025], + [5103,0.001], + [5105,0.001], + [5107,0], + [5109,0.005], + [5111,0.002], + [5113,0.015], + [5115,0.006], + [5117,0.004], + [5119,0.003], + [5121,0.007], + [5123,0.004], + [5125,0.004], + [5127,0.019], + [5129,0.028], + [5131,0.011], + [5133,0.023], + [5135,0.003], + [5137,0.005], + [5139,0.009], + [5141,0.006], + [5143,0.009], + [5145,0.006], + [5147,0], + [5149,0.005], + [6001,0.007], + [6003,0.34], + [6005,0.008], + [6007,0.012], + [6009,0.008], + [6011,0.01], + [6013,0.005], + [6015,0.072], + [6017,0.008], + [6019,0.012], + [6021,0.024], + [6023,0.05], + [6025,0.011], + [6027,0.113], + [6029,0.01], + [6031,0.016], + [6033,0.036], + [6035,0.028], + [6037,0.007], + [6039,0.016], + [6041,0.004], + [6043,0.019], + [6045,0.044], + [6047,0.009], + [6049,0.042], + [6051,0.035], + [6053,0.007], + [6055,0.009], + [6057,0.007], + [6059,0.005], + [6061,0.005], + [6063,0.015], + [6065,0.008], + [6067,0.007], + [6069,0.007], + [6071,0.008], + [6073,0.007], + [6075,0.004], + [6077,0.006], + [6079,0.009], + [6081,0.004], + [6083,0.01], + [6085,0.005], + [6087,0.005], + [6089,0.027], + [6091,0.017], + [6093,0.037], + [6095,0.005], + [6097,0.009], + [6099,0.008], + [6101,0.009], + [6103,0.02], + [6105,0.056], + [6107,0.013], + [6109,0.018], + [6111,0.008], + [6113,0.006], + [6115,0.012], + [8001,0.011], + [8003,0.033], + [8005,0.007], + [8007,0.014], + [8009,0.016], + [8011,0.01], + [8013,0.004], + [8014,0.004], + [8015,0.005], + [8017,0.001], + [8019,0.003], + [8021,0.025], + [8023,0.021], + [8025,0.014], + [8027,0.009], + [8029,0.009], + [8031,0.009], + [8033,0.017], + [8035,0.004], + [8037,0.002], + [8039,0.01], + [8041,0.008], + [8043,0.014], + [8045,0.007], + [8047,0.027], + [8049,0], + [8051,0.01], + [8053,0.023], + [8055,0.018], + [8057,0], + [8059,0.007], + [8061,0], + [8063,0.004], + [8065,0.015], + [8067,0.066], + [8069,0.008], + [8071,0.038], + [8073,0.008], + [8075,0.008], + [8077,0.009], + [8079,0.015], + [8081,0.005], + [8083,0.123], + [8085,0.009], + [8087,0.004], + [8089,0.012], + [8091,0.003], + [8093,0.004], + [8095,0], + [8097,0.001], + [8099,0.015], + [8101,0.04], + [8103,0.011], + [8105,0.024], + [8107,0.004], + [8109,0.02], + [8111,0.01], + [8113,0.006], + [8115,0.006], + [8117,0.004], + [8119,0.004], + [8121,0.001], + [8123,0.008], + [8125,0.006], + [9001,0.002], + [9003,0.003], + [9005,0.003], + [9007,0.002], + [9009,0.002], + [9011,0.006], + [9013,0.001], + [9015,0.006], + [10001,0.007], + [10003,0.003], + [10005,0.003], + [11001,0.003], + [12001,0.004], + [12003,0.005], + [12005,0.003], + [12007,0.004], + [12009,0.003], + [12011,0.003], + [12013,0.011], + [12015,0.003], + [12017,0.003], + [12019,0.001], + [12021,0.002], + [12023,0.003], + [12027,0.001], + [12029,0], + [12031,0.002], + [12033,0.004], + [12035,0.003], + [12037,0.001], + [12039,0.002], + [12041,0.001], + [12043,0.04], + [12045,0.004], + [12047,0.012], + [12049,0.001], + [12051,0.018], + [12053,0.003], + [12055,0.002], + [12057,0.003], + [12059,0.014], + [12061,0.003], + [12063,0.007], + [12065,0.005], + [12067,0.002], + [12069,0.004], + [12071,0.002], + [12073,0.002], + [12075,0.002], + [12077,0.012], + [12079,0.003], + [12081,0.002], + [12083,0.003], + [12085,0.006], + [12086,0.002], + [12087,0.001], + [12089,0.005], + [12091,0.004], + [12093,0.005], + [12095,0.002], + [12097,0.004], + [12099,0.002], + [12101,0.004], + [12103,0.003], + [12105,0.003], + [12107,0.004], + [12109,0.004], + [12111,0.004], + [12113,0.005], + [12115,0.002], + [12117,0.003], + [12119,0.003], + [12121,0.001], + [12123,0.003], + [12125,0.008], + [12127,0.003], + [12129,0.002], + [12131,0.006], + [12133,0.014], + [13001,0.005], + [13003,0.01], + [13005,0], + [13007,0], + [13009,0.002], + [13011,0.005], + [13013,0.002], + [13015,0.003], + [13017,0], + [13019,0.005], + [13021,0.002], + [13023,0.001], + [13025,0.003], + [13027,0], + [13029,0.004], + [13031,0.004], + [13033,0], + [13035,0], + [13037,0], + [13039,0.007], + [13043,0], + [13045,0.01], + [13047,0.004], + [13049,0.02], + [13051,0.003], + [13053,0.003], + [13055,0.001], + [13057,0.004], + [13059,0.001], + [13061,0], + [13063,0.002], + [13065,0], + [13067,0.003], + [13069,0], + [13071,0.011], + [13073,0.003], + [13075,0.003], + [13077,0.003], + [13079,0.001], + [13081,0], + [13083,0], + [13085,0.001], + [13087,0.001], + [13089,0.01], + [13091,0], + [13093,0], + [13095,0.002], + [13097,0.001], + [13099,0.003], + [13101,0.022], + [13103,0.002], + [13105,0], + [13107,0.003], + [13109,0.001], + [13111,0.001], + [13113,0.002], + [13115,0.002], + [13117,0.003], + [13119,0.001], + [13121,0.004], + [13123,0.017], + [13125,0.003], + [13127,0.004], + [13129,0.013], + [13131,0.005], + [13133,0], + [13135,0.004], + [13137,0.001], + [13139,0.002], + [13141,0], + [13143,0.001], + [13145,0.001], + [13147,0], + [13149,0], + [13151,0.001], + [13153,0.005], + [13155,0.001], + [13157,0.001], + [13159,0.001], + [13161,0], + [13163,0.001], + [13165,0.014], + [13167,0], + [13169,0.002], + [13171,0.001], + [13173,0.002], + [13175,0.001], + [13177,0.001], + [13179,0.005], + [13181,0.001], + [13183,0.002], + [13185,0.004], + [13187,0.003], + [13189,0], + [13191,0.001], + [13193,0], + [13195,0.004], + [13197,0.002], + [13199,0.001], + [13201,0.006], + [13205,0.003], + [13207,0.002], + [13209,0], + [13211,0.001], + [13213,0.001], + [13215,0.004], + [13217,0.003], + [13219,0.001], + [13221,0], + [13223,0.003], + [13225,0.006], + [13227,0.009], + [13229,0.004], + [13231,0], + [13233,0.005], + [13235,0.001], + [13237,0], + [13239,0], + [13241,0.003], + [13243,0], + [13245,0.003], + [13247,0.001], + [13249,0], + [13251,0.002], + [13253,0], + [13255,0.004], + [13257,0.002], + [13259,0.001], + [13261,0], + [13263,0], + [13265,0], + [13267,0.003], + [13269,0], + [13271,0.001], + [13273,0.001], + [13275,0.001], + [13277,0.003], + [13279,0], + [13281,0.004], + [13283,0], + [13285,0.003], + [13287,0], + [13289,0], + [13291,0.005], + [13293,0.006], + [13295,0.002], + [13297,0.001], + [13299,0.006], + [13301,0], + [13303,0.002], + [13305,0.001], + [13307,0.003], + [13309,0], + [13311,0.006], + [13313,0.008], + [13315,0.004], + [13317,0], + [13319,0.001], + [13321,0.004], + [15001,0.005], + [15003,0.002], + [15005,0.015], + [15007,0.006], + [15009,0.003], + [16001,0.005], + [16003,0.018], + [16005,0.03], + [16007,0.011], + [16009,0.093], + [16011,0.064], + [16013,0.007], + [16015,0.004], + [16017,0.009], + [16019,0.004], + [16021,0.014], + [16023,0], + [16025,0], + [16027,0.01], + [16029,0.002], + [16031,0.012], + [16033,0.046], + [16035,0.022], + [16037,0.011], + [16039,0.021], + [16041,0.009], + [16043,0.001], + [16045,0.014], + [16047,0.005], + [16049,0.04], + [16051,0.012], + [16053,0.007], + [16055,0.014], + [16057,0.013], + [16059,0.005], + [16061,0.084], + [16063,0.006], + [16065,0.001], + [16067,0.013], + [16069,0.061], + [16071,0.002], + [16073,0.032], + [16075,0.006], + [16077,0.059], + [16079,0.031], + [16081,0.007], + [16083,0.007], + [16085,0.002], + [16087,0.01], + [17001,0.004], + [17003,0.006], + [17005,0.005], + [17007,0.003], + [17009,0.004], + [17011,0.002], + [17013,0.005], + [17015,0.001], + [17017,0.002], + [17019,0.002], + [17021,0.003], + [17023,0.001], + [17025,0.002], + [17027,0.003], + [17029,0.002], + [17031,0.003], + [17033,0.001], + [17035,0], + [17037,0.001], + [17039,0], + [17041,0.007], + [17043,0.002], + [17045,0.001], + [17047,0.006], + [17049,0.001], + [17051,0.003], + [17053,0.005], + [17055,0.002], + [17057,0.005], + [17059,0.005], + [17061,0], + [17063,0.001], + [17065,0], + [17067,0], + [17069,0.002], + [17071,0], + [17073,0.001], + [17075,0.001], + [17077,0.003], + [17079,0], + [17081,0.002], + [17083,0.001], + [17085,0.003], + [17087,0.001], + [17089,0.005], + [17091,0.002], + [17093,0.001], + [17095,0.005], + [17097,0.003], + [17099,0.001], + [17101,0.01], + [17103,0.003], + [17105,0], + [17107,0.003], + [17109,0.001], + [17111,0.001], + [17113,0.002], + [17115,0.002], + [17117,0.002], + [17119,0.002], + [17121,0.002], + [17123,0.001], + [17125,0.002], + [17127,0], + [17129,0.003], + [17131,0.001], + [17133,0], + [17135,0.002], + [17137,0.003], + [17139,0.004], + [17141,0.003], + [17143,0.003], + [17145,0.001], + [17147,0.001], + [17149,0.002], + [17151,0], + [17153,0.001], + [17155,0], + [17157,0.002], + [17159,0.005], + [17161,0.004], + [17163,0.002], + [17165,0.002], + [17167,0.001], + [17169,0.001], + [17171,0.006], + [17173,0.001], + [17175,0], + [17177,0.002], + [17179,0.001], + [17181,0.001], + [17183,0.003], + [17185,0], + [17187,0.002], + [17189,0.001], + [17191,0.002], + [17193,0.002], + [17195,0.002], + [17197,0.003], + [17199,0.002], + [17201,0.003], + [17203,0.001], + [18001,0.001], + [18003,0.002], + [18005,0.002], + [18007,0.001], + [18009,0.003], + [18011,0.002], + [18013,0], + [18015,0.001], + [18017,0.005], + [18019,0.002], + [18021,0], + [18023,0.002], + [18025,0.004], + [18027,0], + [18029,0.001], + [18031,0.005], + [18033,0], + [18035,0.001], + [18037,0.003], + [18039,0.002], + [18041,0.002], + [18043,0.004], + [18045,0.002], + [18047,0], + [18049,0.003], + [18051,0], + [18053,0.002], + [18055,0], + [18057,0.002], + [18059,0], + [18061,0.001], + [18063,0.002], + [18065,0.003], + [18067,0.006], + [18069,0.004], + [18071,0.002], + [18073,0], + [18075,0.001], + [18077,0.002], + [18079,0.005], + [18081,0.001], + [18083,0.001], + [18085,0.005], + [18087,0.001], + [18089,0.003], + [18091,0.003], + [18093,0.006], + [18095,0.002], + [18097,0.003], + [18099,0], + [18101,0.003], + [18103,0.008], + [18105,0.002], + [18107,0.002], + [18109,0], + [18111,0.001], + [18113,0.001], + [18115,0.001], + [18117,0.001], + [18119,0.004], + [18121,0.007], + [18123,0.002], + [18125,0], + [18127,0.002], + [18129,0.001], + [18131,0.002], + [18133,0.001], + [18135,0.001], + [18137,0.003], + [18139,0], + [18141,0.005], + [18143,0.003], + [18145,0.001], + [18147,0.002], + [18149,0.001], + [18151,0.001], + [18153,0.001], + [18155,0], + [18157,0.003], + [18159,0], + [18161,0], + [18163,0.001], + [18165,0.003], + [18167,0.002], + [18169,0.008], + [18171,0], + [18173,0.002], + [18175,0.004], + [18177,0.004], + [18179,0.002], + [18181,0.003], + [18183,0.003], + [19001,0], + [19003,0.001], + [19005,0.003], + [19007,0.002], + [19009,0], + [19011,0.002], + [19013,0.004], + [19015,0.004], + [19017,0.004], + [19019,0.004], + [19021,0], + [19023,0.002], + [19025,0.004], + [19027,0.004], + [19029,0.005], + [19031,0.003], + [19033,0.005], + [19035,0.003], + [19037,0.002], + [19039,0.004], + [19041,0], + [19043,0.002], + [19045,0.003], + [19047,0.006], + [19049,0.001], + [19051,0.004], + [19053,0.003], + [19055,0.003], + [19057,0.002], + [19059,0.003], + [19061,0.003], + [19063,0.002], + [19065,0.002], + [19067,0.006], + [19069,0.001], + [19071,0.006], + [19073,0.001], + [19075,0.001], + [19077,0.001], + [19079,0.001], + [19081,0.002], + [19083,0.016], + [19085,0.002], + [19087,0.002], + [19089,0], + [19091,0.003], + [19093,0.006], + [19095,0.001], + [19097,0], + [19099,0.002], + [19101,0], + [19103,0.002], + [19105,0.001], + [19107,0.002], + [19109,0.004], + [19111,0.002], + [19113,0.002], + [19115,0.009], + [19117,0], + [19119,0.006], + [19121,0.001], + [19123,0.003], + [19125,0.002], + [19127,0.003], + [19129,0.009], + [19131,0.005], + [19133,0.017], + [19135,0], + [19137,0.009], + [19139,0.002], + [19141,0.002], + [19143,0.003], + [19145,0.005], + [19147,0.002], + [19149,0.005], + [19151,0.003], + [19153,0.003], + [19155,0.004], + [19157,0], + [19159,0.004], + [19161,0], + [19163,0.003], + [19165,0.003], + [19167,0.003], + [19169,0.002], + [19171,0.084], + [19173,0.002], + [19175,0], + [19177,0], + [19179,0.001], + [19181,0.001], + [19183,0.003], + [19185,0.004], + [19187,0.003], + [19189,0.003], + [19191,0.001], + [19193,0.02], + [19195,0.001], + [19197,0], + [20001,0.003], + [20003,0.021], + [20005,0.004], + [20007,0.008], + [20009,0.011], + [20011,0.003], + [20013,0.088], + [20015,0.007], + [20017,0.006], + [20019,0.039], + [20021,0.018], + [20023,0], + [20025,0.01], + [20027,0.007], + [20029,0.002], + [20031,0.003], + [20033,0], + [20035,0.015], + [20037,0.004], + [20039,0.005], + [20041,0.009], + [20043,0.005], + [20045,0.025], + [20047,0], + [20049,0.017], + [20051,0.002], + [20053,0.009], + [20055,0.004], + [20057,0.009], + [20059,0.006], + [20061,0.012], + [20063,0.003], + [20065,0], + [20067,0], + [20069,0.002], + [20071,0.006], + [20073,0.001], + [20075,0], + [20077,0.015], + [20079,0.003], + [20081,0.014], + [20083,0.003], + [20085,0.085], + [20087,0.008], + [20089,0.006], + [20091,0.003], + [20093,0], + [20095,0.004], + [20097,0.007], + [20099,0.008], + [20101,0.008], + [20103,0.007], + [20105,0], + [20107,0.007], + [20109,0.008], + [20111,0.007], + [20113,0.006], + [20115,0.002], + [20117,0.001], + [20119,0.002], + [20121,0.008], + [20123,0.007], + [20125,0.033], + [20127,0.001], + [20129,0.002], + [20131,0.007], + [20133,0.004], + [20135,0.003], + [20137,0.01], + [20139,0.002], + [20141,0.004], + [20143,0.006], + [20145,0.01], + [20147,0.004], + [20149,0.009], + [20151,0.011], + [20153,0.008], + [20155,0.012], + [20157,0.002], + [20159,0.007], + [20161,0.004], + [20163,0.002], + [20165,0], + [20167,0.009], + [20169,0.005], + [20171,0.001], + [20173,0.01], + [20175,0.006], + [20177,0.009], + [20179,0.003], + [20181,0.008], + [20183,0.005], + [20185,0.011], + [20187,0.001], + [20189,0.004], + [20191,0.014], + [20193,0.004], + [20195,0.001], + [20197,0.006], + [20199,0], + [20201,0.001], + [20203,0.009], + [20205,0.005], + [20207,0.011], + [20209,0.005], + [21001,0.002], + [21003,0], + [21005,0], + [21007,0.006], + [21009,0.001], + [21011,0.001], + [21013,0.002], + [21015,0.001], + [21017,0], + [21019,0.001], + [21021,0.003], + [21023,0.003], + [21025,0.002], + [21027,0.003], + [21029,0.002], + [21031,0.002], + [21033,0], + [21035,0.003], + [21037,0.001], + [21039,0.006], + [21041,0.003], + [21043,0.005], + [21045,0.003], + [21047,0.008], + [21049,0.002], + [21051,0.001], + [21053,0], + [21055,0.002], + [21057,0], + [21059,0.002], + [21061,0.004], + [21063,0.001], + [21065,0.002], + [21067,0.002], + [21069,0.001], + [21071,0], + [21073,0.001], + [21075,0.007], + [21077,0], + [21079,0.002], + [21081,0.001], + [21083,0.001], + [21085,0.004], + [21087,0.007], + [21089,0], + [21091,0.001], + [21093,0.002], + [21095,0], + [21097,0], + [21099,0.005], + [21101,0.002], + [21103,0], + [21105,0.004], + [21107,0.002], + [21109,0], + [21111,0.002], + [21113,0.003], + [21115,0.001], + [21117,0.001], + [21119,0.001], + [21121,0.008], + [21123,0.001], + [21125,0.004], + [21127,0], + [21129,0.007], + [21131,0], + [21133,0.002], + [21135,0.002], + [21137,0], + [21139,0.001], + [21141,0.001], + [21143,0.006], + [21145,0.004], + [21147,0.007], + [21149,0.005], + [21151,0.004], + [21153,0], + [21155,0.002], + [21157,0.001], + [21159,0.002], + [21161,0], + [21163,0.007], + [21165,0], + [21167,0.001], + [21169,0.003], + [21171,0.001], + [21173,0.003], + [21175,0.005], + [21177,0.002], + [21179,0.001], + [21181,0.003], + [21183,0], + [21185,0.002], + [21187,0.002], + [21189,0], + [21191,0], + [21193,0], + [21195,0.001], + [21197,0.006], + [21199,0.003], + [21201,0], + [21203,0.012], + [21205,0.002], + [21207,0], + [21209,0.002], + [21211,0], + [21213,0.004], + [21215,0.002], + [21217,0.001], + [21219,0], + [21221,0], + [21223,0.005], + [21225,0], + [21227,0.003], + [21229,0], + [21231,0], + [21233,0.001], + [21235,0.003], + [21237,0.003], + [21239,0], + [22001,0.001], + [22003,0.021], + [22005,0.001], + [22007,0.004], + [22009,0.009], + [22011,0.005], + [22013,0], + [22015,0.005], + [22017,0.004], + [22019,0.003], + [22021,0.003], + [22023,0.005], + [22025,0.001], + [22027,0.003], + [22029,0], + [22031,0.009], + [22033,0.002], + [22035,0], + [22037,0.005], + [22039,0.003], + [22041,0.001], + [22043,0.003], + [22045,0.001], + [22047,0.001], + [22049,0.001], + [22051,0.004], + [22053,0.008], + [22055,0.003], + [22057,0.022], + [22059,0.01], + [22061,0.002], + [22063,0.004], + [22065,0.002], + [22067,0.001], + [22069,0.008], + [22071,0.002], + [22073,0.002], + [22075,0.011], + [22077,0], + [22079,0.008], + [22081,0], + [22083,0], + [22085,0.066], + [22087,0.004], + [22089,0.004], + [22091,0.011], + [22093,0], + [22095,0], + [22097,0.002], + [22099,0.006], + [22101,0.016], + [22103,0.006], + [22105,0.003], + [22107,0], + [22109,0.057], + [22111,0.003], + [22113,0.005], + [22115,0.013], + [22117,0.002], + [22119,0.004], + [22121,0.001], + [22123,0.002], + [22125,0.002], + [22127,0.005], + [23001,0.002], + [23003,0.019], + [23005,0.002], + [23007,0.001], + [23009,0.005], + [23011,0.005], + [23013,0.005], + [23015,0.004], + [23017,0.003], + [23019,0.013], + [23021,0.008], + [23023,0.004], + [23025,0.005], + [23027,0.004], + [23029,0.053], + [23031,0.004], + [24001,0.001], + [24003,0.002], + [24005,0.003], + [24009,0.001], + [24011,0.004], + [24013,0.003], + [24015,0.001], + [24017,0.006], + [24019,0.001], + [24021,0.003], + [24023,0.002], + [24025,0.002], + [24027,0.003], + [24029,0.001], + [24031,0.003], + [24033,0.004], + [24035,0.001], + [24037,0.001], + [24039,0.004], + [24041,0.002], + [24043,0.001], + [24045,0.003], + [24047,0.001], + [24510,0.003], + [25001,0.006], + [25003,0.003], + [25005,0.001], + [25007,0.008], + [25009,0.002], + [25011,0.003], + [25013,0.002], + [25015,0.002], + [25017,0.002], + [25019,0.003], + [25021,0.001], + [25023,0.002], + [25025,0.003], + [25027,0.003], + [26001,0.006], + [26003,0.036], + [26005,0.003], + [26007,0.004], + [26009,0.008], + [26011,0.013], + [26013,0.1], + [26015,0.004], + [26017,0.003], + [26019,0.017], + [26021,0.004], + [26023,0.004], + [26025,0.006], + [26027,0.011], + [26029,0.016], + [26031,0.021], + [26033,0.142], + [26035,0.007], + [26037,0.002], + [26039,0.003], + [26041,0.02], + [26043,0.009], + [26045,0.006], + [26047,0.029], + [26049,0.003], + [26051,0.005], + [26053,0.026], + [26055,0.01], + [26057,0.006], + [26059,0.004], + [26061,0.004], + [26063,0.002], + [26065,0.004], + [26067,0.002], + [26069,0.01], + [26071,0.017], + [26073,0.032], + [26075,0.004], + [26077,0.002], + [26079,0.009], + [26081,0.004], + [26083,0.004], + [26085,0.009], + [26087,0.003], + [26089,0.031], + [26091,0.005], + [26093,0.003], + [26095,0.065], + [26097,0.161], + [26099,0.003], + [26101,0.018], + [26103,0.008], + [26105,0.01], + [26107,0.006], + [26109,0.023], + [26111,0.004], + [26113,0.005], + [26115,0.002], + [26117,0.005], + [26119,0.012], + [26121,0.008], + [26123,0.009], + [26125,0.003], + [26127,0.01], + [26129,0.011], + [26131,0.008], + [26133,0.007], + [26135,0.007], + [26137,0.003], + [26139,0.003], + [26141,0.005], + [26143,0.007], + [26145,0.003], + [26147,0.002], + [26149,0.003], + [26151,0.003], + [26153,0.07], + [26155,0.003], + [26157,0.003], + [26159,0.01], + [26161,0.004], + [26163,0.003], + [26165,0.005], + [27001,0.021], + [27003,0.007], + [27005,0.074], + [27007,0.202], + [27009,0.002], + [27011,0.003], + [27013,0.003], + [27015,0.003], + [27017,0.051], + [27019,0.002], + [27021,0.118], + [27023,0.02], + [27025,0.005], + [27027,0.018], + [27029,0.083], + [27031,0.088], + [27033,0.001], + [27035,0.009], + [27037,0.003], + [27039,0.004], + [27041,0.003], + [27043,0.003], + [27045,0], + [27047,0.005], + [27049,0.008], + [27051,0.003], + [27053,0.007], + [27055,0.002], + [27057,0.022], + [27059,0.003], + [27061,0.037], + [27063,0], + [27065,0.005], + [27067,0.003], + [27069,0.005], + [27071,0.031], + [27073,0.002], + [27075,0.009], + [27077,0.013], + [27079,0.002], + [27081,0.006], + [27083,0.004], + [27085,0.002], + [27087,0.399], + [27089,0.004], + [27091,0.002], + [27093,0.001], + [27095,0.05], + [27097,0.002], + [27099,0.001], + [27101,0.003], + [27103,0], + [27105,0.007], + [27107,0.022], + [27109,0.004], + [27111,0.005], + [27113,0.016], + [27115,0.024], + [27117,0.019], + [27119,0.017], + [27121,0.003], + [27123,0.006], + [27125,0.017], + [27127,0.05], + [27129,0.015], + [27131,0.004], + [27133,0.003], + [27135,0.018], + [27137,0.018], + [27139,0.005], + [27141,0.006], + [27143,0.003], + [27145,0.002], + [27147,0.004], + [27149,0.017], + [27151,0], + [27153,0.005], + [27155,0.05], + [27157,0.003], + [27159,0.011], + [27161,0.007], + [27163,0.004], + [27165,0.001], + [27167,0.003], + [27169,0.004], + [27171,0.003], + [27173,0.025], + [28001,0.003], + [28003,0.002], + [28005,0], + [28007,0.001], + [28009,0], + [28011,0.001], + [28013,0], + [28015,0], + [28017,0.001], + [28019,0.004], + [28021,0.001], + [28023,0.001], + [28025,0.005], + [28027,0.002], + [28029,0], + [28031,0.002], + [28033,0.002], + [28035,0.002], + [28037,0.002], + [28039,0.005], + [28041,0.002], + [28043,0.007], + [28045,0.006], + [28047,0.006], + [28049,0.001], + [28051,0], + [28053,0.003], + [28055,0], + [28057,0.004], + [28059,0.004], + [28061,0], + [28063,0.002], + [28065,0], + [28067,0.002], + [28069,0.037], + [28071,0.002], + [28073,0.001], + [28075,0.002], + [28077,0.002], + [28079,0.057], + [28081,0.003], + [28083,0], + [28085,0], + [28087,0.001], + [28089,0.002], + [28091,0], + [28093,0.001], + [28095,0], + [28097,0], + [28099,0.167], + [28101,0.053], + [28103,0], + [28105,0.001], + [28107,0.002], + [28109,0.006], + [28111,0], + [28113,0.005], + [28115,0], + [28117,0.001], + [28119,0], + [28121,0.002], + [28123,0.004], + [28125,0.001], + [28127,0], + [28129,0], + [28131,0.002], + [28133,0.001], + [28135,0.002], + [28137,0.001], + [28139,0.001], + [28141,0.002], + [28143,0], + [28145,0], + [28147,0], + [28149,0.003], + [28151,0.001], + [28153,0.001], + [28155,0.002], + [28157,0], + [28159,0.013], + [28161,0.001], + [28163,0.003], + [29001,0.001], + [29003,0.003], + [29005,0.008], + [29007,0.004], + [29009,0.007], + [29011,0.025], + [29013,0.006], + [29015,0.015], + [29017,0.009], + [29019,0.003], + [29021,0.005], + [29023,0.006], + [29025,0.007], + [29027,0.005], + [29029,0.006], + [29031,0.001], + [29033,0.002], + [29035,0.016], + [29037,0.006], + [29039,0.003], + [29041,0], + [29043,0.005], + [29045,0.003], + [29047,0.005], + [29049,0.004], + [29051,0.004], + [29053,0.005], + [29055,0], + [29057,0.009], + [29059,0.014], + [29061,0.006], + [29063,0.008], + [29065,0.007], + [29067,0.005], + [29069,0.002], + [29071,0.002], + [29073,0.005], + [29075,0.003], + [29077,0.005], + [29079,0.006], + [29081,0.007], + [29083,0.004], + [29085,0.016], + [29087,0.01], + [29089,0.009], + [29091,0.012], + [29093,0.007], + [29095,0.004], + [29097,0.015], + [29099,0.003], + [29101,0.004], + [29103,0], + [29105,0.01], + [29107,0.003], + [29109,0.008], + [29111,0.008], + [29113,0.003], + [29115,0.003], + [29117,0.006], + [29119,0.029], + [29121,0.007], + [29123,0.002], + [29125,0.01], + [29127,0.004], + [29129,0], + [29131,0.012], + [29133,0.009], + [29135,0.004], + [29137,0.006], + [29139,0], + [29141,0.004], + [29143,0.004], + [29145,0.024], + [29147,0.002], + [29149,0.016], + [29151,0.001], + [29153,0.01], + [29155,0], + [29157,0.005], + [29159,0.001], + [29161,0.008], + [29163,0.003], + [29165,0.003], + [29167,0.013], + [29169,0.009], + [29171,0.002], + [29173,0.006], + [29175,0.007], + [29177,0.005], + [29179,0.004], + [29181,0.006], + [29183,0.002], + [29185,0.009], + [29186,0], + [29187,0.004], + [29189,0.002], + [29195,0.002], + [29197,0], + [29199,0.001], + [29201,0.004], + [29203,0.002], + [29205,0.002], + [29207,0], + [29209,0.007], + [29211,0.014], + [29213,0.01], + [29215,0.017], + [29217,0.006], + [29219,0.009], + [29221,0.003], + [29223,0.002], + [29225,0.005], + [29227,0], + [29229,0.003], + [29510,0.003], + [30001,0.014], + [30003,0.654], + [30005,0.513], + [30007,0.004], + [30009,0.013], + [30011,0.008], + [30013,0.046], + [30015,0.187], + [30017,0.01], + [30019,0.032], + [30021,0.024], + [30023,0.019], + [30025,0.01], + [30027,0.014], + [30029,0.015], + [30031,0.009], + [30033,0], + [30035,0.65], + [30037,0.004], + [30039,0.004], + [30041,0.237], + [30043,0.01], + [30045,0.023], + [30047,0.243], + [30049,0.017], + [30051,0], + [30053,0.013], + [30055,0.06], + [30057,0.002], + [30059,0.014], + [30061,0.027], + [30063,0.02], + [30065,0.026], + [30067,0.008], + [30069,0], + [30071,0.094], + [30073,0.154], + [30075,0.017], + [30077,0.049], + [30079,0.012], + [30081,0.009], + [30083,0.02], + [30085,0.578], + [30087,0.374], + [30089,0.035], + [30091,0.01], + [30093,0.023], + [30095,0.01], + [30097,0.01], + [30099,0.01], + [30101,0.076], + [30103,0], + [30105,0.089], + [30107,0.034], + [30109,0.012], + [30111,0.044], + [31001,0.004], + [31003,0.001], + [31005,0.002], + [31007,0], + [31009,0], + [31011,0.001], + [31013,0.023], + [31015,0.01], + [31017,0.004], + [31019,0.002], + [31021,0.023], + [31023,0.004], + [31025,0.005], + [31027,0.008], + [31029,0], + [31031,0.036], + [31033,0.006], + [31035,0.003], + [31037,0.013], + [31039,0.004], + [31041,0.002], + [31043,0.022], + [31045,0.035], + [31047,0.005], + [31049,0.015], + [31051,0.004], + [31053,0.01], + [31055,0.006], + [31057,0], + [31059,0.006], + [31061,0], + [31063,0.003], + [31065,0.002], + [31067,0.007], + [31069,0.005], + [31071,0], + [31073,0.002], + [31075,0], + [31077,0.003], + [31079,0.006], + [31081,0.002], + [31083,0.003], + [31085,0], + [31087,0.001], + [31089,0.006], + [31091,0.006], + [31093,0], + [31095,0.002], + [31097,0.007], + [31099,0.008], + [31101,0.009], + [31103,0], + [31105,0.012], + [31107,0.095], + [31109,0.007], + [31111,0.004], + [31113,0.011], + [31115,0.003], + [31117,0], + [31119,0.016], + [31121,0], + [31123,0.005], + [31125,0.005], + [31127,0.005], + [31129,0.001], + [31131,0.001], + [31133,0], + [31135,0.001], + [31137,0.002], + [31139,0.001], + [31141,0.004], + [31143,0.002], + [31145,0.003], + [31147,0.029], + [31149,0.008], + [31151,0.002], + [31153,0.005], + [31155,0.004], + [31157,0.019], + [31159,0.001], + [31161,0.085], + [31163,0], + [31165,0.005], + [31167,0], + [31169,0.003], + [31171,0.009], + [31173,0.586], + [31175,0.005], + [31177,0.001], + [31179,0.002], + [31181,0.009], + [31183,0], + [31185,0.005], + [32001,0.046], + [32003,0.009], + [32005,0.02], + [32007,0.066], + [32009,0.017], + [32011,0.051], + [32013,0.057], + [32015,0.034], + [32017,0.011], + [32019,0.027], + [32021,0.206], + [32023,0.018], + [32027,0.034], + [32029,0.004], + [32031,0.016], + [32033,0.056], + [32510,0.023], + [33001,0.004], + [33003,0.001], + [33005,0.002], + [33007,0.003], + [33009,0.003], + [33011,0.001], + [33013,0.003], + [33015,0], + [33017,0.001], + [33019,0.003], + [34001,0.004], + [34003,0.002], + [34005,0.001], + [34007,0.002], + [34009,0], + [34011,0.008], + [34013,0.002], + [34015,0.001], + [34017,0.004], + [34019,0.001], + [34021,0.002], + [34023,0.002], + [34025,0.002], + [34027,0.001], + [34029,0.001], + [34031,0.003], + [34033,0.003], + [34035,0.003], + [34037,0], + [34039,0.003], + [34041,0.002], + [35001,0.049], + [35003,0.001], + [35005,0.017], + [35006,0.415], + [35007,0.02], + [35009,0.01], + [35011,0.002], + [35013,0.011], + [35015,0.017], + [35017,0.021], + [35019,0.058], + [35021,0], + [35023,0.015], + [35025,0.01], + [35027,0.006], + [35028,0.011], + [35029,0.009], + [35031,0.759], + [35033,0.003], + [35035,0.068], + [35037,0.019], + [35039,0.163], + [35041,0.01], + [35043,0.128], + [35045,0.396], + [35047,0.014], + [35049,0.032], + [35051,0.044], + [35053,0.122], + [35055,0.065], + [35057,0.003], + [35059,0.021], + [35061,0.043], + [36001,0.002], + [36003,0.002], + [36005,0.007], + [36007,0.002], + [36009,0.032], + [36011,0.001], + [36013,0.003], + [36015,0.003], + [36017,0.004], + [36019,0.003], + [36021,0.001], + [36023,0.002], + [36025,0.001], + [36027,0.003], + [36029,0.005], + [36031,0.002], + [36033,0.071], + [36035,0.004], + [36037,0.008], + [36039,0.006], + [36041,0.001], + [36043,0.002], + [36045,0.005], + [36047,0.003], + [36049,0.003], + [36051,0.002], + [36053,0.005], + [36055,0.004], + [36057,0.001], + [36059,0.003], + [36061,0.004], + [36063,0.01], + [36065,0.002], + [36067,0.006], + [36069,0.004], + [36071,0.004], + [36073,0.003], + [36075,0.002], + [36077,0.002], + [36079,0.002], + [36081,0.005], + [36083,0.001], + [36085,0.002], + [36087,0.002], + [36089,0.008], + [36091,0.002], + [36093,0.002], + [36095,0.002], + [36097,0.001], + [36099,0.004], + [36101,0.001], + [36103,0.003], + [36105,0.003], + [36107,0.002], + [36109,0.002], + [36111,0.002], + [36113,0.003], + [36115,0.003], + [36117,0.002], + [36119,0.004], + [36121,0.005], + [36123,0.002], + [37001,0.004], + [37003,0.004], + [37005,0.004], + [37007,0.003], + [37009,0.004], + [37011,0.013], + [37013,0.003], + [37015,0.007], + [37017,0.025], + [37019,0.007], + [37021,0.004], + [37023,0.009], + [37025,0.003], + [37027,0.004], + [37029,0.001], + [37031,0.003], + [37033,0.002], + [37035,0.003], + [37037,0.001], + [37039,0.015], + [37041,0.004], + [37043,0.004], + [37045,0.003], + [37047,0.037], + [37049,0.009], + [37051,0.015], + [37053,0.003], + [37055,0.004], + [37057,0.003], + [37059,0.003], + [37061,0.005], + [37063,0.002], + [37065,0.001], + [37067,0.004], + [37069,0.012], + [37071,0.003], + [37073,0.009], + [37075,0.101], + [37077,0.004], + [37079,0.005], + [37081,0.005], + [37083,0.038], + [37085,0.01], + [37087,0.005], + [37089,0.004], + [37091,0.012], + [37093,0.081], + [37095,0.001], + [37097,0.003], + [37099,0.08], + [37101,0.007], + [37103,0.01], + [37105,0.008], + [37107,0.002], + [37109,0.002], + [37111,0.003], + [37113,0.007], + [37115,0.004], + [37117,0.002], + [37119,0.004], + [37121,0.001], + [37123,0.003], + [37125,0.008], + [37127,0.006], + [37129,0.003], + [37131,0.007], + [37133,0.005], + [37135,0.006], + [37137,0.002], + [37139,0.001], + [37141,0.005], + [37143,0.003], + [37145,0.007], + [37147,0.003], + [37149,0.003], + [37151,0.005], + [37153,0.024], + [37155,0.399], + [37157,0.005], + [37159,0.004], + [37161,0.004], + [37163,0.018], + [37165,0.119], + [37167,0.005], + [37169,0.004], + [37171,0.003], + [37173,0.299], + [37175,0.003], + [37177,0.009], + [37179,0.002], + [37181,0.015], + [37183,0.004], + [37185,0.056], + [37187,0.003], + [37189,0.007], + [37191,0.003], + [37193,0.003], + [37195,0.006], + [37197,0.004], + [37199,0.005], + [38001,0.01], + [38003,0.017], + [38005,0.553], + [38007,0], + [38009,0.041], + [38011,0.012], + [38013,0.007], + [38015,0.042], + [38017,0.01], + [38019,0.014], + [38021,0.013], + [38023,0.013], + [38025,0.096], + [38027,0.053], + [38029,0.001], + [38031,0.018], + [38033,0.025], + [38035,0.027], + [38037,0.008], + [38039,0.018], + [38041,0.028], + [38043,0.015], + [38045,0.003], + [38047,0.002], + [38049,0.011], + [38051,0.006], + [38053,0.11], + [38055,0.072], + [38057,0.029], + [38059,0.033], + [38061,0.286], + [38063,0.003], + [38065,0.01], + [38067,0.028], + [38069,0.037], + [38071,0.106], + [38073,0.006], + [38075,0.001], + [38077,0.022], + [38079,0.783], + [38081,0.005], + [38083,0.007], + [38085,0.833], + [38087,0.007], + [38089,0.013], + [38091,0], + [38093,0.016], + [38095,0.042], + [38097,0.01], + [38099,0.022], + [38101,0.021], + [38103,0.002], + [38105,0.031], + [39001,0], + [39003,0.002], + [39005,0], + [39007,0.001], + [39009,0.002], + [39011,0.002], + [39013,0.002], + [39015,0.002], + [39017,0.003], + [39019,0], + [39021,0.004], + [39023,0.002], + [39025,0.001], + [39027,0.001], + [39029,0.001], + [39031,0.002], + [39033,0.001], + [39035,0.003], + [39037,0.003], + [39039,0.005], + [39041,0.001], + [39043,0.004], + [39045,0.001], + [39047,0], + [39049,0.002], + [39051,0.004], + [39053,0.004], + [39055,0.001], + [39057,0.001], + [39059,0.003], + [39061,0.001], + [39063,0.001], + [39065,0], + [39067,0.001], + [39069,0.002], + [39071,0.003], + [39073,0], + [39075,0], + [39077,0.002], + [39079,0], + [39081,0.001], + [39083,0.002], + [39085,0.001], + [39087,0], + [39089,0.001], + [39091,0.001], + [39093,0.004], + [39095,0.003], + [39097,0.001], + [39099,0.003], + [39101,0.003], + [39103,0.001], + [39105,0.001], + [39107,0], + [39109,0.001], + [39111,0], + [39113,0.002], + [39115,0.001], + [39117,0.001], + [39119,0.003], + [39121,0.002], + [39123,0.003], + [39125,0.001], + [39127,0.003], + [39129,0.003], + [39131,0.005], + [39133,0.001], + [39135,0.001], + [39137,0], + [39139,0.001], + [39141,0], + [39143,0.003], + [39145,0.003], + [39147,0.002], + [39149,0.003], + [39151,0.001], + [39153,0.002], + [39155,0.001], + [39157,0.002], + [39159,0.003], + [39161,0.002], + [39163,0.001], + [39165,0.001], + [39167,0.005], + [39169,0.002], + [39171,0.003], + [39173,0.002], + [39175,0], + [40001,0.441], + [40003,0.019], + [40005,0.104], + [40007,0.014], + [40009,0.023], + [40011,0.075], + [40013,0.145], + [40015,0.228], + [40017,0.041], + [40019,0.078], + [40021,0.335], + [40023,0.156], + [40025,0.004], + [40027,0.042], + [40029,0.1], + [40031,0.052], + [40033,0.097], + [40035,0.218], + [40037,0.116], + [40039,0.037], + [40041,0.222], + [40043,0.048], + [40045,0.023], + [40047,0.02], + [40049,0.055], + [40051,0.049], + [40053,0.017], + [40055,0.034], + [40057,0.004], + [40059,0.004], + [40061,0.096], + [40063,0.216], + [40065,0.017], + [40067,0.058], + [40069,0.071], + [40071,0.091], + [40073,0.031], + [40075,0.048], + [40077,0.212], + [40079,0.113], + [40081,0.073], + [40083,0.036], + [40085,0.055], + [40087,0.06], + [40089,0.13], + [40091,0.161], + [40093,0.03], + [40095,0.07], + [40097,0.179], + [40099,0.108], + [40101,0.18], + [40103,0.077], + [40105,0.15], + [40107,0.147], + [40109,0.029], + [40111,0.142], + [40113,0.128], + [40115,0.181], + [40117,0.114], + [40119,0.042], + [40121,0.06], + [40123,0.127], + [40125,0.147], + [40127,0.143], + [40129,0.06], + [40131,0.127], + [40133,0.203], + [40135,0.199], + [40137,0.053], + [40139,0.013], + [40141,0.027], + [40143,0.05], + [40145,0.088], + [40147,0.105], + [40149,0.016], + [40151,0.016], + [40153,0.017], + [41001,0.012], + [41003,0.007], + [41005,0.008], + [41007,0.004], + [41009,0.009], + [41011,0.021], + [41013,0.01], + [41015,0.015], + [41017,0.006], + [41019,0.011], + [41021,0.039], + [41023,0.013], + [41025,0.015], + [41027,0.007], + [41029,0.013], + [41031,0.174], + [41033,0.012], + [41035,0.043], + [41037,0.025], + [41039,0.011], + [41041,0.028], + [41043,0.01], + [41045,0.013], + [41047,0.009], + [41049,0.014], + [41051,0.009], + [41053,0.02], + [41055,0.007], + [41057,0.009], + [41059,0.032], + [41061,0.012], + [41063,0.011], + [41065,0.031], + [41067,0.006], + [41069,0.008], + [41071,0.012], + [42001,0.001], + [42003,0.001], + [42005,0], + [42007,0.001], + [42009,0.001], + [42011,0.006], + [42013,0.001], + [42015,0], + [42017,0.002], + [42019,0], + [42021,0], + [42023,0], + [42025,0.002], + [42027,0.001], + [42029,0.001], + [42031,0.001], + [42033,0.002], + [42035,0.003], + [42037,0.001], + [42039,0], + [42041,0.001], + [42043,0.003], + [42045,0.002], + [42047,0.001], + [42049,0.003], + [42051,0], + [42053,0.001], + [42055,0.003], + [42057,0.003], + [42059,0], + [42061,0.002], + [42063,0.001], + [42065,0.001], + [42067,0], + [42069,0.001], + [42071,0.002], + [42073,0.001], + [42075,0.001], + [42077,0.003], + [42079,0.002], + [42081,0.002], + [42083,0.002], + [42085,0.001], + [42087,0.002], + [42089,0.003], + [42091,0.001], + [42093,0.001], + [42095,0.002], + [42097,0.004], + [42099,0.002], + [42101,0.004], + [42103,0.001], + [42105,0.002], + [42107,0.002], + [42109,0.001], + [42111,0.001], + [42113,0.001], + [42115,0], + [42117,0.001], + [42119,0.005], + [42121,0], + [42123,0.001], + [42125,0.001], + [42127,0.002], + [42129,0.001], + [42131,0.001], + [42133,0.002], + [44001,0.001], + [44003,0.003], + [44005,0.005], + [44007,0.005], + [44009,0.007], + [45001,0.001], + [45003,0.003], + [45005,0.003], + [45007,0.002], + [45009,0.004], + [45011,0.002], + [45013,0.003], + [45015,0.004], + [45017,0.008], + [45019,0.002], + [45021,0.002], + [45023,0.005], + [45025,0.003], + [45027,0.001], + [45029,0.008], + [45031,0.002], + [45033,0.021], + [45035,0.004], + [45037,0.004], + [45039,0.002], + [45041,0.003], + [45043,0.001], + [45045,0.005], + [45047,0.001], + [45049,0.001], + [45051,0.005], + [45053,0.002], + [45055,0.002], + [45057,0.001], + [45059,0.001], + [45061,0], + [45063,0.003], + [45065,0.002], + [45067,0.006], + [45069,0.03], + [45071,0.003], + [45073,0.006], + [45075,0.004], + [45077,0.002], + [45079,0.002], + [45081,0.003], + [45083,0.001], + [45085,0.003], + [45087,0.001], + [45089,0.005], + [45091,0.008], + [46003,0.023], + [46005,0.014], + [46007,0.603], + [46009,0.072], + [46011,0.011], + [46013,0.035], + [46015,0.109], + [46017,0.849], + [46019,0.033], + [46021,0.011], + [46023,0.313], + [46025,0.002], + [46027,0.03], + [46029,0.025], + [46031,0.691], + [46033,0.04], + [46035,0.02], + [46037,0.105], + [46039,0.002], + [46041,0.789], + [46043,0.021], + [46045,0.009], + [46047,0.065], + [46049,0.03], + [46051,0.01], + [46053,0.067], + [46055,0.075], + [46057,0], + [46059,0], + [46061,0], + [46063,0.025], + [46065,0.123], + [46067,0.015], + [46069,0.064], + [46071,0.579], + [46073,0.02], + [46075,0.059], + [46077,0.002], + [46079,0.014], + [46081,0.023], + [46083,0.004], + [46085,0.416], + [46087,0.006], + [46089,0.003], + [46091,0.076], + [46093,0.027], + [46095,0.589], + [46097,0.006], + [46099,0.021], + [46101,0.122], + [46102,0.933], + [46103,0.089], + [46105,0.037], + [46107,0.025], + [46109,0.385], + [46111,0.008], + [46115,0.017], + [46117,0.054], + [46119,0.014], + [46121,0.878], + [46123,0.109], + [46125,0.005], + [46127,0.013], + [46129,0.109], + [46135,0.033], + [46137,0.751], + [47001,0.006], + [47003,0.002], + [47005,0.004], + [47007,0.021], + [47009,0.002], + [47011,0.001], + [47013,0.002], + [47015,0.003], + [47017,0.002], + [47019,0.004], + [47021,0.004], + [47023,0], + [47025,0.002], + [47027,0], + [47029,0.009], + [47031,0], + [47033,0.001], + [47035,0.006], + [47037,0.002], + [47039,0], + [47041,0.003], + [47043,0.005], + [47045,0.006], + [47047,0.009], + [47049,0.004], + [47051,0], + [47053,0.004], + [47055,0.003], + [47057,0.003], + [47059,0.003], + [47061,0.01], + [47063,0.003], + [47065,0.002], + [47067,0], + [47069,0.003], + [47071,0.002], + [47073,0.002], + [47075,0], + [47077,0], + [47079,0.003], + [47081,0.006], + [47083,0.007], + [47085,0.008], + [47087,0.002], + [47089,0.001], + [47091,0.005], + [47093,0.003], + [47095,0.001], + [47097,0.008], + [47099,0.003], + [47101,0], + [47103,0.002], + [47105,0.002], + [47107,0.004], + [47109,0.002], + [47111,0.004], + [47113,0.001], + [47115,0.001], + [47117,0.001], + [47119,0.002], + [47121,0.003], + [47123,0.006], + [47125,0.006], + [47127,0.016], + [47129,0.004], + [47131,0.003], + [47133,0.001], + [47135,0.002], + [47137,0], + [47139,0.003], + [47141,0.003], + [47143,0.003], + [47145,0.004], + [47147,0.003], + [47149,0.003], + [47151,0.003], + [47153,0.001], + [47155,0.004], + [47157,0.002], + [47159,0.005], + [47161,0.002], + [47163,0.001], + [47165,0.003], + [47167,0.003], + [47169,0.005], + [47171,0.001], + [47173,0], + [47175,0], + [47177,0.003], + [47179,0.004], + [47181,0.001], + [47183,0.004], + [47185,0], + [47187,0.001], + [47189,0.003], + [48001,0.005], + [48003,0], + [48005,0.006], + [48007,0.002], + [48009,0.011], + [48011,0.011], + [48013,0.002], + [48015,0.002], + [48017,0.011], + [48019,0.012], + [48021,0.005], + [48023,0.003], + [48025,0.005], + [48027,0.006], + [48029,0.007], + [48031,0.017], + [48033,0], + [48035,0.006], + [48037,0.009], + [48039,0.007], + [48041,0.004], + [48043,0.024], + [48045,0], + [48047,0.01], + [48049,0.005], + [48051,0.004], + [48053,0.004], + [48055,0.006], + [48057,0.001], + [48059,0], + [48061,0.002], + [48063,0.005], + [48065,0.016], + [48067,0.002], + [48069,0.002], + [48071,0.002], + [48073,0.006], + [48075,0], + [48077,0.01], + [48079,0.001], + [48081,0.007], + [48083,0.011], + [48085,0.005], + [48087,0.021], + [48089,0.003], + [48091,0.003], + [48093,0.007], + [48095,0.004], + [48097,0.008], + [48099,0.008], + [48101,0.009], + [48103,0.003], + [48105,0], + [48107,0], + [48109,0], + [48111,0.012], + [48113,0.004], + [48115,0.011], + [48117,0.007], + [48119,0.001], + [48121,0.005], + [48123,0.012], + [48125,0.01], + [48127,0], + [48129,0.004], + [48131,0], + [48133,0.004], + [48135,0.006], + [48137,0.001], + [48139,0.008], + [48141,0.006], + [48143,0.016], + [48145,0.005], + [48147,0.008], + [48149,0], + [48151,0.012], + [48153,0.001], + [48155,0.005], + [48157,0.003], + [48159,0.003], + [48161,0.004], + [48163,0.001], + [48165,0.003], + [48167,0.004], + [48169,0.003], + [48171,0.032], + [48173,0], + [48175,0], + [48177,0.003], + [48179,0.013], + [48181,0.011], + [48183,0.002], + [48185,0.005], + [48187,0.003], + [48189,0.007], + [48191,0.011], + [48193,0.014], + [48195,0.001], + [48197,0.011], + [48199,0.003], + [48201,0.004], + [48203,0.003], + [48205,0.004], + [48207,0.005], + [48209,0.004], + [48211,0], + [48213,0.009], + [48215,0.002], + [48217,0.011], + [48219,0.005], + [48221,0.011], + [48223,0.003], + [48225,0.004], + [48227,0.012], + [48229,0], + [48231,0.011], + [48233,0.016], + [48235,0], + [48237,0.003], + [48239,0], + [48241,0.003], + [48243,0], + [48245,0.004], + [48247,0], + [48249,0.005], + [48251,0.005], + [48253,0.006], + [48255,0.002], + [48257,0.004], + [48259,0.005], + [48261,0], + [48263,0.02], + [48265,0.006], + [48267,0.003], + [48269,0], + [48271,0], + [48273,0.002], + [48275,0.002], + [48277,0.006], + [48279,0.004], + [48281,0.006], + [48283,0], + [48285,0.002], + [48287,0], + [48289,0.006], + [48291,0.006], + [48293,0.017], + [48295,0.019], + [48297,0.003], + [48299,0.015], + [48301,0.031], + [48303,0.01], + [48305,0.003], + [48307,0.003], + [48309,0.004], + [48311,0.012], + [48313,0.002], + [48315,0.001], + [48317,0.02], + [48319,0.02], + [48321,0.004], + [48323,0.014], + [48325,0.006], + [48327,0.001], + [48329,0.006], + [48331,0.003], + [48333,0.002], + [48335,0.021], + [48337,0.008], + [48339,0.004], + [48341,0.005], + [48343,0.003], + [48345,0], + [48347,0.011], + [48349,0.019], + [48351,0.003], + [48353,0.005], + [48355,0.005], + [48357,0.009], + [48359,0], + [48361,0.003], + [48363,0.007], + [48365,0.002], + [48367,0.009], + [48369,0.004], + [48371,0.011], + [48373,0.016], + [48375,0.006], + [48377,0.029], + [48379,0.006], + [48381,0.005], + [48383,0], + [48385,0], + [48387,0.005], + [48389,0.001], + [48391,0.003], + [48393,0], + [48395,0.005], + [48397,0.004], + [48399,0.002], + [48401,0.002], + [48403,0.007], + [48405,0.016], + [48407,0.008], + [48409,0.003], + [48411,0], + [48413,0], + [48415,0.002], + [48417,0.003], + [48419,0.01], + [48421,0.004], + [48423,0.003], + [48425,0.013], + [48427,0.001], + [48429,0.006], + [48431,0], + [48433,0.026], + [48435,0.004], + [48437,0.032], + [48439,0.005], + [48441,0.008], + [48443,0.003], + [48445,0.001], + [48447,0], + [48449,0.009], + [48451,0.004], + [48453,0.006], + [48455,0.001], + [48457,0.001], + [48459,0.005], + [48461,0.006], + [48463,0.004], + [48465,0.004], + [48467,0.005], + [48469,0.002], + [48471,0.004], + [48473,0.009], + [48475,0.015], + [48477,0.003], + [48479,0.002], + [48481,0.001], + [48483,0.003], + [48485,0.01], + [48487,0.015], + [48489,0.007], + [48491,0.003], + [48493,0.004], + [48495,0.014], + [48497,0.005], + [48499,0.009], + [48501,0.002], + [48503,0.007], + [48505,0], + [48507,0], + [49001,0.01], + [49003,0.012], + [49005,0.005], + [49007,0.005], + [49009,0.003], + [49011,0.005], + [49013,0.038], + [49015,0.007], + [49017,0.045], + [49019,0.035], + [49021,0.02], + [49023,0.012], + [49025,0.016], + [49027,0.011], + [49029,0.001], + [49031,0.002], + [49033,0], + [49035,0.008], + [49037,0.476], + [49039,0.011], + [49041,0.019], + [49043,0.002], + [49045,0.006], + [49047,0.074], + [49049,0.005], + [49051,0.003], + [49053,0.016], + [49055,0.002], + [49057,0.007], + [50001,0.004], + [50003,0.002], + [50005,0.003], + [50007,0.002], + [50009,0.003], + [50011,0.009], + [50013,0.006], + [50015,0.008], + [50017,0.004], + [50019,0.004], + [50021,0.002], + [50023,0.003], + [50025,0.003], + [50027,0.002], + [51001,0.005], + [51003,0.003], + [51005,0], + [51007,0.002], + [51009,0.007], + [51011,0], + [51013,0.004], + [51015,0.003], + [51017,0.001], + [51019,0.001], + [51021,0], + [51023,0.001], + [51025,0], + [51027,0.002], + [51029,0.007], + [51031,0.002], + [51033,0.003], + [51035,0.003], + [51036,0.066], + [51037,0], + [51041,0.003], + [51043,0], + [51045,0], + [51047,0.004], + [51049,0.001], + [51051,0.001], + [51053,0], + [51057,0], + [51059,0.002], + [51061,0.004], + [51063,0.006], + [51065,0.002], + [51067,0.003], + [51069,0.003], + [51071,0], + [51073,0], + [51075,0], + [51077,0.002], + [51079,0.002], + [51081,0.001], + [51083,0.003], + [51085,0.003], + [51087,0.002], + [51089,0.001], + [51091,0.001], + [51093,0.004], + [51095,0.001], + [51097,0], + [51099,0.002], + [51101,0.008], + [51103,0], + [51105,0.003], + [51107,0.003], + [51109,0.002], + [51111,0], + [51113,0], + [51115,0.004], + [51117,0.006], + [51119,0.005], + [51121,0.004], + [51125,0], + [51127,0.008], + [51131,0], + [51133,0.002], + [51135,0.001], + [51137,0.003], + [51139,0.001], + [51141,0.002], + [51143,0.001], + [51145,0.001], + [51147,0.003], + [51149,0.006], + [51153,0.004], + [51155,0], + [51157,0.012], + [51159,0.002], + [51161,0.002], + [51163,0.004], + [51165,0.003], + [51167,0.002], + [51169,0.004], + [51171,0.001], + [51173,0.004], + [51175,0.006], + [51177,0.004], + [51179,0.003], + [51181,0], + [51183,0], + [51185,0.002], + [51187,0.002], + [51191,0.001], + [51193,0.005], + [51195,0.001], + [51197,0.002], + [51199,0.003], + [51510,0.002], + [51520,0], + [51530,0.001], + [51540,0.002], + [51550,0.002], + [51570,0.003], + [51580,0], + [51590,0.001], + [51595,0.001], + [51600,0.001], + [51610,0.002], + [51620,0], + [51630,0.002], + [51640,0], + [51650,0.005], + [51660,0.001], + [51670,0.001], + [51678,0], + [51680,0.003], + [51683,0.008], + [51685,0.001], + [51690,0.004], + [51700,0.003], + [51710,0.004], + [51720,0], + [51730,0.002], + [51735,0.001], + [51740,0.004], + [51750,0], + [51760,0.004], + [51770,0.002], + [51775,0.001], + [51790,0.003], + [51800,0.002], + [51810,0.003], + [51820,0.005], + [51830,0.004], + [51840,0.002], + [53001,0.041], + [53003,0.011], + [53005,0.008], + [53007,0.009], + [53009,0.049], + [53011,0.006], + [53013,0.002], + [53015,0.015], + [53017,0.007], + [53019,0.131], + [53021,0.013], + [53023,0], + [53025,0.012], + [53027,0.042], + [53029,0.01], + [53031,0.02], + [53033,0.006], + [53035,0.01], + [53037,0.006], + [53039,0.025], + [53041,0.007], + [53043,0.015], + [53045,0.025], + [53047,0.096], + [53049,0.025], + [53051,0.039], + [53053,0.013], + [53055,0.01], + [53057,0.019], + [53059,0.018], + [53061,0.009], + [53063,0.013], + [53065,0.05], + [53067,0.014], + [53069,0.007], + [53071,0.007], + [53073,0.029], + [53075,0.003], + [53077,0.04], + [54001,0.003], + [54003,0.001], + [54005,0], + [54007,0.003], + [54009,0.001], + [54011,0.002], + [54013,0.003], + [54015,0.001], + [54017,0.005], + [54019,0.003], + [54021,0.002], + [54023,0], + [54025,0], + [54027,0.003], + [54029,0], + [54031,0.006], + [54033,0], + [54035,0.008], + [54037,0.003], + [54039,0.002], + [54041,0.005], + [54043,0], + [54045,0.002], + [54047,0.003], + [54049,0.004], + [54051,0.001], + [54053,0.001], + [54055,0.002], + [54057,0], + [54059,0.001], + [54061,0.001], + [54063,0.005], + [54065,0.007], + [54067,0.004], + [54069,0.002], + [54071,0.001], + [54073,0], + [54075,0], + [54077,0.007], + [54079,0.001], + [54081,0.003], + [54083,0.002], + [54085,0], + [54087,0.001], + [54089,0], + [54091,0], + [54093,0], + [54095,0.002], + [54097,0.001], + [54099,0.002], + [54101,0], + [54103,0], + [54105,0], + [54107,0.004], + [54109,0], + [55001,0.008], + [55003,0.119], + [55005,0.007], + [55007,0.101], + [55009,0.025], + [55011,0.004], + [55013,0.041], + [55015,0.005], + [55017,0.001], + [55019,0.002], + [55021,0.005], + [55023,0.004], + [55025,0.003], + [55027,0.004], + [55029,0.009], + [55031,0.019], + [55033,0.002], + [55035,0.005], + [55037,0.003], + [55039,0.005], + [55041,0.155], + [55043,0.002], + [55045,0.003], + [55047,0.003], + [55049,0.002], + [55051,0.018], + [55053,0.055], + [55055,0.001], + [55057,0.012], + [55059,0.005], + [55061,0.003], + [55063,0.004], + [55065,0.002], + [55067,0.007], + [55069,0.004], + [55071,0.005], + [55073,0.003], + [55075,0.006], + [55077,0.006], + [55078,0.839], + [55079,0.006], + [55081,0.011], + [55083,0.012], + [55085,0.013], + [55087,0.016], + [55089,0.002], + [55091,0.002], + [55093,0.002], + [55095,0.01], + [55097,0.003], + [55099,0.01], + [55101,0.005], + [55103,0.004], + [55105,0.003], + [55107,0.005], + [55109,0.002], + [55111,0.011], + [55113,0.177], + [55115,0.077], + [55117,0.003], + [55119,0.002], + [55121,0.004], + [55123,0.002], + [55125,0.081], + [55127,0.003], + [55129,0.014], + [55131,0.002], + [55133,0.002], + [55135,0.006], + [55137,0.008], + [55139,0.006], + [55141,0.005], + [56001,0.009], + [56003,0.008], + [56005,0.013], + [56007,0.02], + [56009,0.008], + [56011,0.013], + [56013,0.208], + [56015,0.01], + [56017,0.026], + [56019,0.043], + [56021,0.009], + [56023,0.004], + [56025,0.011], + [56027,0.037], + [56029,0.01], + [56031,0], + [56033,0.019], + [56035,0.003], + [56037,0.012], + [56039,0.003], + [56041,0.007], + [56043,0.009], + [56045,0.002] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-other-2017.json b/data/regional/united-states/demographics/race/us-race-other-2017.json new file mode 100644 index 0000000..9365007 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-other-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Other-Race Population", + "description" : "Percent of the population that identifies as another single race in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.other.single.2017"], + [1001,0.0065], + [1003,0.0039], + [1005,0.0187], + [1007,0.0002], + [1009,0.0037], + [1011,0.0001], + [1013,0.0003], + [1015,0.0063], + [1017,0.0035], + [1019,0.001], + [1021,0.0219], + [1023,0.0003], + [1025,0], + [1027,0.0009], + [1029,0.0017], + [1031,0.0043], + [1033,0.0057], + [1035,0.0001], + [1037,0], + [1039,0.001], + [1041,0.0051], + [1043,0.0044], + [1045,0.0089], + [1047,0.0011], + [1049,0.0365], + [1051,0.0047], + [1053,0.0043], + [1055,0.0031], + [1057,0], + [1059,0.0355], + [1061,0.0052], + [1063,0], + [1065,0.0059], + [1067,0.0014], + [1069,0.0028], + [1071,0.0059], + [1073,0.0098], + [1075,0.0039], + [1077,0.0015], + [1079,0], + [1081,0.0063], + [1083,0.0051], + [1085,0], + [1087,0.0038], + [1089,0.0053], + [1091,0.0013], + [1093,0.0039], + [1095,0.01], + [1097,0.0047], + [1099,0], + [1101,0.006], + [1103,0.0148], + [1105,0.0021], + [1107,0.0082], + [1109,0.0003], + [1111,0.0034], + [1113,0.0075], + [1115,0.0039], + [1117,0.0175], + [1119,0.0021], + [1121,0.0046], + [1123,0.0053], + [1125,0.0056], + [1127,0.0012], + [1129,0.0002], + [1131,0.0024], + [1133,0.0026], + [2013,0.0283], + [2016,0.0258], + [2020,0.0109], + [2050,0.0026], + [2060,0.0115], + [2068,0.0011], + [2070,0.0037], + [2090,0.0051], + [2100,0.0073], + [2105,0.0056], + [2110,0.0065], + [2122,0.0037], + [2130,0.0033], + [2150,0.0119], + [2158,null], + [2164,0.0008], + [2170,0.0029], + [2180,0.0006], + [2185,0.0072], + [2188,0.0052], + [2195,0.0023], + [2198,0.0012], + [2220,0.003], + [2230,0.0034], + [2240,0.004], + [2261,0.0029], + [2275,0.0002], + [2282,0.0051], + [2290,0.0006], + [4001,0.0035], + [4003,0.0191], + [4005,0.0141], + [4007,0.0115], + [4009,0.0116], + [4011,0.0104], + [4012,0.0348], + [4013,0.0356], + [4015,0.0126], + [4017,0.0163], + [4019,0.0439], + [4021,0.0219], + [4023,0.0546], + [4025,0.0128], + [4027,0.0982], + [5001,0.0013], + [5003,0.007], + [5005,0.0053], + [5007,0.0091], + [5009,0.0002], + [5011,0.0323], + [5013,0.001], + [5015,0.007], + [5017,0.0055], + [5019,0.0082], + [5021,0.0066], + [5023,0.001], + [5025,0], + [5027,0.0113], + [5029,0.0009], + [5031,0.0095], + [5033,0.01], + [5035,0.0019], + [5037,0.0017], + [5039,0.0044], + [5041,0.0125], + [5043,0.0062], + [5045,0.01], + [5047,0.0016], + [5049,0.0019], + [5051,0.0122], + [5053,0.0002], + [5055,0.0039], + [5057,0.038], + [5059,0.006], + [5061,0.051], + [5063,0.013], + [5065,0.0013], + [5067,0.0024], + [5069,0.0048], + [5071,0.0091], + [5073,0.0027], + [5075,0.0007], + [5077,0], + [5079,0.0061], + [5081,0.0135], + [5083,0.0077], + [5085,0.0064], + [5087,0.002], + [5089,0.0016], + [5091,0.0044], + [5093,0.0088], + [5095,0.0031], + [5097,0.013], + [5099,0], + [5101,0], + [5103,0.0005], + [5105,0.0071], + [5107,0.0002], + [5109,0.022], + [5111,0.0041], + [5113,0.0142], + [5115,0.008], + [5117,0.0011], + [5119,0.008], + [5121,0.0021], + [5123,0.0062], + [5125,0.0026], + [5127,0.0118], + [5129,0.0028], + [5131,0.0292], + [5133,0.1301], + [5135,0.0015], + [5137,0.0012], + [5139,0.0019], + [5141,0.002], + [5143,0.0507], + [5145,0.0065], + [5147,0.0004], + [5149,0.0686], + [6001,0.0476], + [6003,0], + [6005,0.0183], + [6007,0.0214], + [6009,0.0052], + [6011,0.0272], + [6013,0.0458], + [6015,0.0166], + [6017,0.0136], + [6019,0.0815], + [6021,0.0455], + [6023,0.0196], + [6025,0.1246], + [6027,0.0112], + [6029,0.0503], + [6031,0.0894], + [6033,0.062], + [6035,0.0137], + [6037,0.104], + [6039,0.065], + [6041,0.0437], + [6043,0.0087], + [6045,0.0265], + [6047,0.1318], + [6049,0.0017], + [6051,0.0334], + [6053,0.1075], + [6055,0.0623], + [6057,0.0092], + [6059,0.0592], + [6061,0.0155], + [6063,0.0098], + [6065,0.1008], + [6067,0.0365], + [6069,0.0442], + [6071,0.0849], + [6073,0.0316], + [6075,0.0375], + [6077,0.0556], + [6079,0.0211], + [6081,0.0539], + [6083,0.0631], + [6085,0.0552], + [6087,0.06], + [6089,0.0104], + [6091,0.0002], + [6093,0.0079], + [6095,0.0454], + [6097,0.062], + [6099,0.056], + [6101,0.0219], + [6103,0.0277], + [6105,0.016], + [6107,0.0576], + [6109,0.0152], + [6111,0.0292], + [6113,0.0467], + [6115,0.0353], + [8001,0.0259], + [8003,0.0219], + [8005,0.0333], + [8007,0.0511], + [8009,0.0034], + [8011,0.0066], + [8013,0.0121], + [8014,0.0109], + [8015,0.0045], + [8017,0.0005], + [8019,0.003], + [8021,0.0234], + [8023,0.0092], + [8025,0.0088], + [8027,0.0031], + [8029,0.0081], + [8031,0.0274], + [8033,0.0003], + [8035,0.007], + [8037,0.036], + [8039,0.0053], + [8041,0.0238], + [8043,0.0061], + [8045,0.0376], + [8047,0.0104], + [8049,0.0161], + [8051,0.0022], + [8053,0.0067], + [8055,0.0057], + [8057,0.0302], + [8059,0.0088], + [8061,0], + [8063,0.017], + [8065,0.0461], + [8067,0.0093], + [8069,0.0094], + [8071,0.0261], + [8073,0.0024], + [8075,0.0033], + [8077,0.0063], + [8079,0.0426], + [8081,0.0047], + [8083,0.0082], + [8085,0.0118], + [8087,0.0198], + [8089,0.0183], + [8091,0.0003], + [8093,0.0027], + [8095,0.0116], + [8097,0.0185], + [8099,0.0069], + [8101,0.0569], + [8103,0.0013], + [8105,0.0176], + [8107,0.0094], + [8109,0.0198], + [8111,0.0114], + [8113,0.0038], + [8115,0.0121], + [8117,0.0302], + [8119,0.0041], + [8121,0.0062], + [8123,0.026], + [8125,0.0141], + [9001,0.0343], + [9003,0.0294], + [9005,0.0067], + [9007,0.0048], + [9009,0.0277], + [9011,0.0154], + [9013,0.0068], + [9015,0.0157], + [10001,0.0069], + [10003,0.0111], + [10005,0.0089], + [11001,0.023], + [12001,0.0044], + [12003,0.004], + [12005,0.0039], + [12007,0.0014], + [12009,0.0065], + [12011,0.0152], + [12013,0.0098], + [12015,0.0037], + [12017,0.0022], + [12019,0.0084], + [12021,0.0106], + [12023,0.0052], + [12027,0.0097], + [12029,0.0067], + [12031,0.0071], + [12033,0.006], + [12035,0.0106], + [12037,0.0026], + [12039,0.004], + [12041,0.0022], + [12043,0.0044], + [12045,0.0015], + [12047,0.0107], + [12049,0.0449], + [12051,0.0252], + [12053,0.0079], + [12055,0.0263], + [12057,0.0242], + [12059,0.0028], + [12061,0.0073], + [12063,0.0029], + [12065,0.0079], + [12067,0.0039], + [12069,0.0114], + [12071,0.0152], + [12073,0.0043], + [12075,0.0009], + [12077,0.0043], + [12079,0.007], + [12081,0.0083], + [12083,0.004], + [12085,0.0157], + [12086,0.0157], + [12087,0.0062], + [12089,0.0044], + [12091,0.0168], + [12093,0.0061], + [12095,0.0323], + [12097,0.0364], + [12099,0.0118], + [12101,0.0057], + [12103,0.0069], + [12105,0.0099], + [12107,0.0053], + [12109,0.0027], + [12111,0.0113], + [12113,0.0075], + [12115,0.0038], + [12117,0.0117], + [12119,0.0053], + [12121,0.003], + [12123,0.0058], + [12125,0.0066], + [12127,0.0107], + [12129,0.0025], + [12131,0.0191], + [12133,0.0012], + [13001,0.0163], + [13003,0.0432], + [13005,0.0085], + [13007,0.0069], + [13009,0.0036], + [13011,0.0064], + [13013,0.013], + [13015,0.0124], + [13017,0.0145], + [13019,0.0048], + [13021,0.0024], + [13023,0.0044], + [13025,0.0004], + [13027,0.0121], + [13029,0.0111], + [13031,0.0066], + [13033,0.0075], + [13035,0.0053], + [13037,0.0178], + [13039,0.0098], + [13043,0.0171], + [13045,0.0147], + [13047,0.0056], + [13049,0.0122], + [13051,0.0085], + [13053,0.013], + [13055,0.0039], + [13057,0.013], + [13059,0.0129], + [13061,0.0025], + [13063,0.0243], + [13065,0.0222], + [13067,0.0234], + [13069,0.013], + [13071,0.0498], + [13073,0.0048], + [13075,0.0065], + [13077,0.0059], + [13079,0.0007], + [13081,0.0016], + [13083,0.001], + [13085,0.0013], + [13087,0.0207], + [13089,0.0098], + [13091,0.007], + [13093,0.0229], + [13095,0.0051], + [13097,0.0147], + [13099,0.0067], + [13101,0.0682], + [13103,0.0048], + [13105,0.0028], + [13107,0.008], + [13109,0.0464], + [13111,0.0011], + [13113,0.0083], + [13115,0.019], + [13117,0.0059], + [13119,0.0109], + [13121,0.007], + [13123,0.0201], + [13125,0.0015], + [13127,0.0107], + [13129,0.0111], + [13131,0.0102], + [13133,0.0126], + [13135,0.0407], + [13137,0.0309], + [13139,0.0219], + [13141,0.0065], + [13143,0.0033], + [13145,0.0035], + [13147,0.0086], + [13149,0.0001], + [13151,0.0067], + [13153,0.0078], + [13155,0.0009], + [13157,0.0077], + [13159,0.0104], + [13161,0.0267], + [13163,0.0041], + [13165,0], + [13167,0], + [13169,0.0001], + [13171,0.0004], + [13173,0.0027], + [13175,0.0066], + [13177,0.0034], + [13179,0.018], + [13181,0.0026], + [13183,0.0235], + [13185,0.0077], + [13187,0.0059], + [13189,0.0104], + [13191,0.0045], + [13193,0.0131], + [13195,0.0156], + [13197,0.0088], + [13199,0.0049], + [13201,0.0005], + [13205,0.0057], + [13207,0.0048], + [13209,0.0203], + [13211,0.0035], + [13213,0.0048], + [13215,0.0153], + [13217,0.0038], + [13219,0.0012], + [13221,0.0069], + [13223,0.0077], + [13225,0.024], + [13227,0.0044], + [13229,0.0108], + [13231,0.0008], + [13233,0.0464], + [13235,0.001], + [13237,0.0158], + [13239,0], + [13241,0.0169], + [13243,0.0056], + [13245,0.0053], + [13247,0.0077], + [13249,0.009], + [13251,0.0014], + [13253,0.0112], + [13255,0.0039], + [13257,0.0097], + [13259,0.0848], + [13261,0.0111], + [13263,0.0013], + [13265,0.0033], + [13267,0.0406], + [13269,0.0046], + [13271,0.0099], + [13273,0.0017], + [13275,0.0043], + [13277,0.0209], + [13279,0.0443], + [13281,0.0013], + [13283,0.0014], + [13285,0.0067], + [13287,0.0022], + [13289,0], + [13291,0.0003], + [13293,0], + [13295,0.0035], + [13297,0.0069], + [13299,0.0107], + [13301,0.001], + [13303,0.0022], + [13305,0.0094], + [13307,0.0049], + [13309,0], + [13311,0.0061], + [13313,0.0211], + [13315,0.0042], + [13317,0.0152], + [13319,0.0036], + [13321,0.0025], + [15001,0.006], + [15003,0.0048], + [15005,0.0058], + [15007,0.0026], + [15009,0.0055], + [16001,0.0072], + [16003,0.0027], + [16005,0.0083], + [16007,0.0103], + [16009,0.0006], + [16011,0.0316], + [16013,0.0157], + [16015,0.0017], + [16017,0.003], + [16019,0.0311], + [16021,0.0042], + [16023,0.0034], + [16025,0.0186], + [16027,0.0354], + [16029,0.0099], + [16031,0.0144], + [16033,0.0275], + [16035,0.0061], + [16037,0.0046], + [16039,0.0111], + [16041,0.0071], + [16043,0.0137], + [16045,0.0171], + [16047,0.0289], + [16049,0.0031], + [16051,0.0267], + [16053,0.0089], + [16055,0.0021], + [16057,0.0034], + [16059,0.0019], + [16061,0.0029], + [16063,0.0139], + [16065,0.011], + [16067,0.0133], + [16069,0.0016], + [16071,0.0006], + [16073,0.0416], + [16075,0.0193], + [16077,0.0736], + [16079,0.0018], + [16081,0.0419], + [16083,0.0112], + [16085,0], + [16087,0.0362], + [17001,0.001], + [17003,0.0012], + [17005,0.0025], + [17007,0.0313], + [17009,0.0018], + [17011,0.0149], + [17013,0.0002], + [17015,0.0041], + [17017,0.0134], + [17019,0.0044], + [17021,0.0006], + [17023,0.0029], + [17025,0], + [17027,0.0029], + [17029,0.0012], + [17031,0.0494], + [17033,0.0012], + [17035,0], + [17037,0.0166], + [17039,0.0061], + [17041,0.0037], + [17043,0.0143], + [17045,0.0004], + [17047,0], + [17049,0.0037], + [17051,0.0006], + [17053,0.0032], + [17055,0.0014], + [17057,0.0018], + [17059,0.0006], + [17061,0.0001], + [17063,0.0106], + [17065,0], + [17067,0.0005], + [17069,0.0018], + [17071,0.0007], + [17073,0.0113], + [17075,0.0196], + [17077,0.0064], + [17079,0.0008], + [17081,0.0014], + [17083,0.0011], + [17085,0.001], + [17087,0.0009], + [17089,0.0773], + [17091,0.0087], + [17093,0.0239], + [17095,0.0096], + [17097,0.0234], + [17099,0.0074], + [17101,0.0032], + [17103,0.0059], + [17105,0.0031], + [17107,0.0056], + [17109,0.0017], + [17111,0.0078], + [17113,0.0047], + [17115,0.0026], + [17117,0.001], + [17119,0.0023], + [17121,0.0034], + [17123,0.0029], + [17125,0], + [17127,0.0008], + [17129,0.0009], + [17131,0.0034], + [17133,0.0006], + [17135,0.0014], + [17137,0.0007], + [17139,0.001], + [17141,0.0114], + [17143,0.0081], + [17145,0.002], + [17147,0.0012], + [17149,0.0008], + [17151,0.0042], + [17153,0.0025], + [17155,0.0023], + [17157,0.0019], + [17159,0.003], + [17161,0.0107], + [17163,0.0055], + [17165,0.0023], + [17167,0.0031], + [17169,0], + [17171,0.0006], + [17173,0.0002], + [17175,0], + [17177,0.0029], + [17179,0.0018], + [17181,0.0075], + [17183,0.0038], + [17185,0.0005], + [17187,0.0164], + [17189,0.0034], + [17191,0.0004], + [17193,0.0001], + [17195,0.0112], + [17197,0.035], + [17199,0.0019], + [17201,0.013], + [17203,0.0014], + [18001,0.0065], + [18003,0.0089], + [18005,0.0209], + [18007,0.0012], + [18009,0.0001], + [18011,0.0014], + [18013,0.0015], + [18015,0.0074], + [18017,0.0532], + [18019,0.0039], + [18021,0.0015], + [18023,0.0129], + [18025,0], + [18027,0.0085], + [18029,0.003], + [18031,0.002], + [18033,0.0017], + [18035,0.0027], + [18037,0.017], + [18039,0.013], + [18041,0.0032], + [18043,0.0042], + [18045,0.0014], + [18047,0.0008], + [18049,0.0122], + [18051,0.0039], + [18053,0.0032], + [18055,0.0006], + [18057,0.0041], + [18059,0.0011], + [18061,0.0039], + [18063,0.0054], + [18065,0.0018], + [18067,0.0041], + [18069,0.0034], + [18071,0.0183], + [18073,0.0112], + [18075,0.0022], + [18077,0.0017], + [18079,0.0028], + [18081,0.0072], + [18083,0.0025], + [18085,0.0105], + [18087,0.0005], + [18089,0.0457], + [18091,0.0102], + [18093,0.003], + [18095,0.0047], + [18097,0.0183], + [18099,0.0217], + [18101,0.0005], + [18103,0.0052], + [18105,0.0028], + [18107,0.0013], + [18109,0.0012], + [18111,0.0087], + [18113,0.0021], + [18115,0.0031], + [18117,0.0014], + [18119,0], + [18121,0.0022], + [18123,0.0014], + [18125,0.0008], + [18127,0.0051], + [18129,0.0005], + [18131,0.0059], + [18133,0.0024], + [18135,0.0053], + [18137,0.0014], + [18139,0.0025], + [18141,0.0108], + [18143,0.001], + [18145,0.0121], + [18147,0.0051], + [18149,0.0062], + [18151,0.0011], + [18153,0.0011], + [18155,0.0023], + [18157,0.0083], + [18159,0.0064], + [18161,0.0001], + [18163,0.0049], + [18165,0.0011], + [18167,0.0033], + [18169,0.0054], + [18171,0.0005], + [18173,0.0019], + [18175,0.0004], + [18177,0.0055], + [18179,0.005], + [18181,0.0272], + [18183,0.0013], + [19001,0.0006], + [19003,0.0022], + [19005,0.0015], + [19007,0.0003], + [19009,0], + [19011,0.001], + [19013,0.0074], + [19015,0.0013], + [19017,0.0022], + [19019,0.0005], + [19021,0.0401], + [19023,0.0003], + [19025,0.0018], + [19027,0.0022], + [19029,0.0018], + [19031,0.0018], + [19033,0.0036], + [19035,0.0003], + [19037,0.0012], + [19039,0.0123], + [19041,0.0032], + [19043,0.0004], + [19045,0.0027], + [19047,0.0271], + [19049,0.0043], + [19051,0.0002], + [19053,0.0012], + [19055,0.0004], + [19057,0.0014], + [19059,0.0026], + [19061,0.002], + [19063,0.0032], + [19065,0.0013], + [19067,0.0012], + [19069,0.026], + [19071,0.0072], + [19073,0], + [19075,0.0004], + [19077,0.0027], + [19079,0.0086], + [19081,0.0022], + [19083,0.0039], + [19085,0.0006], + [19087,0.0049], + [19089,0.0006], + [19091,0.002], + [19093,0.0015], + [19095,0.0019], + [19097,0.0009], + [19099,0.001], + [19101,0.01], + [19103,0.0087], + [19105,0.0013], + [19107,0.0004], + [19109,0.0015], + [19111,0.0025], + [19113,0.0047], + [19115,0.0134], + [19117,0], + [19119,0.005], + [19121,0.0002], + [19123,0.0019], + [19125,0.0036], + [19127,0.0434], + [19129,0.0028], + [19131,0.0004], + [19133,0.0007], + [19135,0.0075], + [19137,0.0077], + [19139,0.0121], + [19141,0.0129], + [19143,0.0135], + [19145,0.0033], + [19147,0.0009], + [19149,0.009], + [19151,0.0019], + [19153,0.007], + [19155,0.0103], + [19157,0.0014], + [19159,0.0057], + [19161,0.0025], + [19163,0.0043], + [19165,0.0094], + [19167,0.019], + [19169,0.0025], + [19171,0.0068], + [19173,0.0114], + [19175,0.0009], + [19177,0.0003], + [19179,0.0291], + [19181,0.0025], + [19183,0.0023], + [19185,0], + [19187,0.0021], + [19189,0.0031], + [19191,0.0009], + [19193,0.0132], + [19195,0.0001], + [19197,0.0191], + [20001,0.0022], + [20003,0], + [20005,0.0011], + [20007,0.0002], + [20009,0.013], + [20011,0.0011], + [20013,0.0014], + [20015,0.0015], + [20017,0.0047], + [20019,0], + [20021,0.0016], + [20023,0.0174], + [20025,0], + [20027,0.001], + [20029,0.0067], + [20031,0.0005], + [20033,0.002], + [20035,0.0066], + [20037,0.0038], + [20039,0.0009], + [20041,0.0029], + [20043,0.0007], + [20045,0.0054], + [20047,0.0141], + [20049,0.0015], + [20051,0.0021], + [20053,0.0107], + [20055,0.0636], + [20057,0.0228], + [20059,0.0108], + [20061,0.0092], + [20063,0.0002], + [20065,0], + [20067,0.0699], + [20069,0.0002], + [20071,0.0397], + [20073,0.0021], + [20075,0.0424], + [20077,0.001], + [20079,0.0043], + [20081,0.0452], + [20083,0], + [20085,0.0002], + [20087,0.0017], + [20089,0.0017], + [20091,0.0046], + [20093,0.048], + [20095,0.0009], + [20097,0.0032], + [20099,0.002], + [20101,0.0009], + [20103,0.0084], + [20105,0], + [20107,0.0005], + [20109,0.003], + [20111,0.0104], + [20113,0.0037], + [20115,0.0011], + [20117,0.002], + [20119,0.0458], + [20121,0.0013], + [20123,0.0014], + [20125,0.0048], + [20127,0.0035], + [20129,0.0136], + [20131,0.0006], + [20133,0.0033], + [20135,0.0062], + [20137,0.0032], + [20139,0.0002], + [20141,0.003], + [20143,0.0012], + [20145,0.0075], + [20147,0], + [20149,0.003], + [20151,0.0009], + [20153,0.0058], + [20155,0.0048], + [20157,0], + [20159,0.0133], + [20161,0.0067], + [20163,0.0015], + [20165,0.003], + [20167,0], + [20169,0.0165], + [20171,0.0137], + [20173,0.0132], + [20175,0.1426], + [20177,0.0116], + [20179,0.0034], + [20181,0.0238], + [20183,0.0005], + [20185,0.0056], + [20187,0.0494], + [20189,0.0329], + [20191,0.0033], + [20193,0.0089], + [20195,0.0012], + [20197,0.0013], + [20199,0.0079], + [20201,0.004], + [20203,0.0334], + [20205,0.0006], + [20207,0.0009], + [20209,0.038], + [21001,0.0033], + [21003,0.005], + [21005,0.0009], + [21007,0.0006], + [21009,0.0019], + [21011,0.0039], + [21013,0.0007], + [21015,0.0051], + [21017,0.0071], + [21019,0.0012], + [21021,0.0039], + [21023,0.0046], + [21025,0.0009], + [21027,0.0017], + [21029,0.0019], + [21031,0.0064], + [21033,0], + [21035,0.0017], + [21037,0.0027], + [21039,0.0007], + [21041,0.0235], + [21043,0.0003], + [21045,0.0011], + [21047,0.0051], + [21049,0.0021], + [21051,0.0037], + [21053,0.0051], + [21055,0.001], + [21057,0.0068], + [21059,0.0015], + [21061,0], + [21063,0.0007], + [21065,0.0002], + [21067,0.0137], + [21069,0.0043], + [21071,0.0005], + [21073,0.0083], + [21075,0.0022], + [21077,0.0118], + [21079,0.001], + [21081,0.012], + [21083,0.0093], + [21085,0.0031], + [21087,0], + [21089,0.0017], + [21091,0], + [21093,0.0063], + [21095,0.002], + [21097,0.0049], + [21099,0.002], + [21101,0.0049], + [21103,0.0093], + [21105,0.0017], + [21107,0.0024], + [21109,0], + [21111,0.0038], + [21113,0.0017], + [21115,0.0005], + [21117,0.0063], + [21119,0.0001], + [21121,0], + [21123,0.0086], + [21125,0.0003], + [21127,0.0002], + [21129,0], + [21131,0.0035], + [21133,0.0005], + [21135,0], + [21137,0.0017], + [21139,0.0001], + [21141,0.0043], + [21143,0.0013], + [21145,0.0021], + [21147,0.003], + [21149,0.0005], + [21151,0.0027], + [21153,0], + [21155,0.0047], + [21157,0.0006], + [21159,0.0003], + [21161,0.0005], + [21163,0.0022], + [21165,0.0001], + [21167,0.0064], + [21169,0.0016], + [21171,0.0031], + [21173,0.0046], + [21175,0.0014], + [21177,0.0016], + [21179,0.0041], + [21181,0.0034], + [21183,0.0023], + [21185,0.0045], + [21187,0.0083], + [21189,0.0026], + [21191,0], + [21193,0.0006], + [21195,0.0016], + [21197,0.0025], + [21199,0.0031], + [21201,0], + [21203,0], + [21205,0.0012], + [21207,0.0123], + [21209,0.0142], + [21211,0.0114], + [21213,0.0067], + [21215,0.0013], + [21217,0.0012], + [21219,0.0169], + [21221,0], + [21223,0.0012], + [21225,0.0008], + [21227,0.0121], + [21229,0.01], + [21231,0.0033], + [21233,0.0112], + [21235,0.0019], + [21237,0.001], + [21239,0.0099], + [22001,0.0062], + [22003,0.006], + [22005,0.0041], + [22007,0.0035], + [22009,0.0011], + [22011,0.0022], + [22013,0.0083], + [22015,0.0045], + [22017,0.0048], + [22019,0.0038], + [22021,0.0007], + [22023,0.0072], + [22025,0.001], + [22027,0.0024], + [22029,0.0027], + [22031,0.0032], + [22033,0.0065], + [22035,0], + [22037,0.0015], + [22039,0.0118], + [22041,0], + [22043,0.0076], + [22045,0.0068], + [22047,0.0025], + [22049,0.005], + [22051,0.0179], + [22053,0.0004], + [22055,0.0034], + [22057,0.0112], + [22059,0.0034], + [22061,0.0095], + [22063,0.0035], + [22065,0.0024], + [22067,0.003], + [22069,0.0079], + [22071,0.0061], + [22073,0.0021], + [22075,0.011], + [22077,0.0071], + [22079,0.0017], + [22081,0.0036], + [22083,0.0024], + [22085,0.0028], + [22087,0.0095], + [22089,0.006], + [22091,0.0012], + [22093,0.0031], + [22095,0.005], + [22097,0.0029], + [22099,0.0055], + [22101,0.0086], + [22103,0.0049], + [22105,0.0015], + [22107,0.0019], + [22109,0.0053], + [22111,0.0044], + [22113,0.0018], + [22115,0.0105], + [22117,0.0024], + [22119,0.0007], + [22121,0.0039], + [22123,0.0087], + [22125,0.0008], + [22127,0.0014], + [23001,0.001], + [23003,0.001], + [23005,0.0019], + [23007,0.0011], + [23009,0.0004], + [23011,0.001], + [23013,0.0003], + [23015,0.0005], + [23017,0.0009], + [23019,0.001], + [23021,0.0021], + [23023,0.0006], + [23025,0.0003], + [23027,0.0012], + [23029,0.003], + [23031,0.0007], + [24001,0.0014], + [24003,0.0116], + [24005,0.0053], + [24009,0.003], + [24011,0.011], + [24013,0.003], + [24015,0.0048], + [24017,0.0037], + [24019,0.0086], + [24021,0.008], + [24023,0.0003], + [24025,0.0065], + [24027,0.006], + [24029,0.0007], + [24031,0.0424], + [24033,0.053], + [24035,0.0045], + [24037,0.0031], + [24039,0.008], + [24041,0.005], + [24043,0.0046], + [24045,0.0048], + [24047,0.0014], + [24510,0.0084], + [25001,0.0052], + [25003,0.0078], + [25005,0.0279], + [25007,0.0065], + [25009,0.0445], + [25011,0.0033], + [25013,0.0281], + [25015,0.0043], + [25017,0.013], + [25019,0.009], + [25021,0.0066], + [25023,0.0155], + [25025,0.0354], + [25027,0.0149], + [26001,0.0008], + [26003,0.0007], + [26005,0.0046], + [26007,0.0004], + [26009,0.0037], + [26011,0.0011], + [26013,0.0018], + [26015,0.0045], + [26017,0.0022], + [26019,0.001], + [26021,0.007], + [26023,0.0059], + [26025,0.0021], + [26027,0.0054], + [26029,0.0018], + [26031,0.0005], + [26033,0.0007], + [26035,0.0016], + [26037,0.0018], + [26039,0.0028], + [26041,0.0008], + [26043,0.0003], + [26045,0.0067], + [26047,0.0012], + [26049,0.0025], + [26051,0.0004], + [26053,0.0009], + [26055,0.0018], + [26057,0.0014], + [26059,0.0007], + [26061,0.0017], + [26063,0.0012], + [26065,0.0085], + [26067,0.0038], + [26069,0.0009], + [26071,0.0024], + [26073,0.0021], + [26075,0.0028], + [26077,0.0029], + [26079,0.0017], + [26081,0.0152], + [26083,0], + [26085,0.0012], + [26087,0.0036], + [26089,0.003], + [26091,0.0061], + [26093,0.0016], + [26095,0.0032], + [26097,0.0003], + [26099,0.0027], + [26101,0.0013], + [26103,0.0011], + [26105,0.001], + [26107,0.0018], + [26109,0.0006], + [26111,0.0024], + [26113,0.0015], + [26115,0.0024], + [26117,0.0024], + [26119,0.0009], + [26121,0.0023], + [26123,0.0135], + [26125,0.0038], + [26127,0.0075], + [26129,0.0017], + [26131,0.0008], + [26133,0.0003], + [26135,0.0019], + [26137,0.0005], + [26139,0.0148], + [26141,0.002], + [26143,0.0005], + [26145,0.0088], + [26147,0.0031], + [26149,0.0151], + [26151,0.0026], + [26153,0.0002], + [26155,0.0011], + [26157,0.001], + [26159,0.0206], + [26161,0.0037], + [26163,0.0097], + [26165,0.0007], + [27001,0.0002], + [27003,0.0086], + [27005,0.0009], + [27007,0.0007], + [27009,0.0005], + [27011,0.0001], + [27013,0.0015], + [27015,0.0089], + [27017,0.001], + [27019,0.0029], + [27021,0.0004], + [27023,0.0093], + [27025,0.0014], + [27027,0.0027], + [27029,0.0006], + [27031,0.0052], + [27033,0.0199], + [27035,0.0007], + [27037,0.0147], + [27039,0.0043], + [27041,0.0027], + [27043,0.0032], + [27045,0.0005], + [27047,0.0047], + [27049,0.0027], + [27051,0.0007], + [27053,0.0144], + [27055,0.0009], + [27057,0.0016], + [27059,0.0022], + [27061,0.0009], + [27063,0.0051], + [27065,0.0013], + [27067,0.0245], + [27069,0.0005], + [27071,0], + [27073,0.0044], + [27075,0.0022], + [27077,0], + [27079,0.0061], + [27081,0.0018], + [27083,0.0138], + [27085,0.0095], + [27087,0.0022], + [27089,0.003], + [27091,0.0031], + [27093,0.0018], + [27095,0.001], + [27097,0.0027], + [27099,0.007], + [27101,0.0017], + [27103,0.0039], + [27105,0.0448], + [27107,0.0053], + [27109,0.0051], + [27111,0.0044], + [27113,0.0013], + [27115,0.0027], + [27117,0.0072], + [27119,0.0048], + [27121,0.0033], + [27123,0.0107], + [27125,0.0032], + [27127,0.0079], + [27129,0.0234], + [27131,0.0144], + [27133,0.0022], + [27135,0.0008], + [27137,0.0015], + [27139,0.012], + [27141,0.0048], + [27143,0.0035], + [27145,0.0066], + [27147,0.0167], + [27149,0.0014], + [27151,0.0094], + [27153,0.0058], + [27155,0.0016], + [27157,0.0014], + [27159,0.001], + [27161,0.0059], + [27163,0.0039], + [27165,0.0464], + [27167,0.0004], + [27169,0.0024], + [27171,0.0044], + [27173,0.0036], + [28001,0.0085], + [28003,0.0042], + [28005,0], + [28007,0.0057], + [28009,0.0082], + [28011,0.0076], + [28013,0.0185], + [28015,0], + [28017,0.0041], + [28019,0.0004], + [28021,0.0008], + [28023,0.0021], + [28025,0], + [28027,0.0001], + [28029,0.0081], + [28031,0], + [28033,0.008], + [28035,0.0015], + [28037,0], + [28039,0.0042], + [28041,0.0002], + [28043,0.0003], + [28045,0.0043], + [28047,0.0054], + [28049,0.0027], + [28051,0.001], + [28053,0.0082], + [28055,0.0039], + [28057,0.0026], + [28059,0.0076], + [28061,0.0014], + [28063,0], + [28065,0.0008], + [28067,0.0015], + [28069,0], + [28071,0.0056], + [28073,0.0059], + [28075,0.0029], + [28077,0], + [28079,0.0007], + [28081,0.0034], + [28083,0.0044], + [28085,0], + [28087,0.001], + [28089,0.0093], + [28091,0.0036], + [28093,0.009], + [28095,0.0003], + [28097,0.0028], + [28099,0.0008], + [28101,0.0007], + [28103,0.0001], + [28105,0.0036], + [28107,0.0002], + [28109,0.0035], + [28111,0.0007], + [28113,0.0015], + [28115,0.0185], + [28117,0.0026], + [28119,0.0025], + [28121,0.0045], + [28123,0.0137], + [28125,0.0013], + [28127,0.0007], + [28129,0.0001], + [28131,0], + [28133,0.0014], + [28135,0.0723], + [28137,0.0045], + [28139,0.008], + [28141,0.0069], + [28143,0.0018], + [28145,0.0077], + [28147,0.0012], + [28149,0.0005], + [28151,0.0033], + [28153,0.0011], + [28155,0.0008], + [28157,0.0021], + [28159,0.0034], + [28161,0.0025], + [28163,0.0082], + [29001,0.0016], + [29003,0.0008], + [29005,0], + [29007,0.0028], + [29009,0.0087], + [29011,0.0062], + [29013,0.0021], + [29015,0.0002], + [29017,0], + [29019,0.0052], + [29021,0.0059], + [29023,0.0016], + [29025,0.0014], + [29027,0.0021], + [29029,0.0045], + [29031,0.0013], + [29033,0.0018], + [29035,0], + [29037,0.0032], + [29039,0.0012], + [29041,0], + [29043,0.0022], + [29045,0], + [29047,0.0085], + [29049,0.0026], + [29051,0.007], + [29053,0.0035], + [29055,0.0032], + [29057,0.0012], + [29059,0.0011], + [29061,0.0016], + [29063,0.0012], + [29065,0.0013], + [29067,0.0024], + [29069,0.0141], + [29071,0.003], + [29073,0.0007], + [29075,0], + [29077,0.0045], + [29079,0.0008], + [29081,0.0021], + [29083,0.0013], + [29085,0.0016], + [29087,0], + [29089,0.002], + [29091,0.0023], + [29093,0.0005], + [29095,0.0208], + [29097,0.0088], + [29099,0.001], + [29101,0.0022], + [29103,0.0019], + [29105,0.0007], + [29107,0.0034], + [29109,0.0082], + [29111,0], + [29113,0.0032], + [29115,0.0027], + [29117,0.0021], + [29119,0.008], + [29121,0.0018], + [29123,0], + [29125,0], + [29127,0.0009], + [29129,0.003], + [29131,0.0025], + [29133,0.0004], + [29135,0.0065], + [29137,0], + [29139,0.0031], + [29141,0.0019], + [29143,0.0012], + [29145,0.0027], + [29147,0.0012], + [29149,0.0021], + [29151,0.0013], + [29153,0.0023], + [29155,0.0046], + [29157,0.001], + [29159,0.0132], + [29161,0.0003], + [29163,0.0037], + [29165,0.0052], + [29167,0.0003], + [29169,0.017], + [29171,0.0007], + [29173,0], + [29175,0.002], + [29177,0.001], + [29179,0.0014], + [29181,0.0009], + [29183,0.0022], + [29185,0.0003], + [29186,0.0002], + [29187,0.0009], + [29189,0.0037], + [29195,0.0191], + [29197,0], + [29199,0], + [29201,0.003], + [29203,0.0019], + [29205,0.0007], + [29207,0.0002], + [29209,0.0032], + [29211,0.0124], + [29213,0.0112], + [29215,0.0023], + [29217,0.0008], + [29219,0.0094], + [29221,0], + [29223,0], + [29225,0.0038], + [29227,0], + [29229,0.0055], + [29510,0.0047], + [30001,0.0026], + [30003,0.001], + [30005,0.0033], + [30007,0.0025], + [30009,0.0014], + [30011,0], + [30013,0.0039], + [30015,0.0053], + [30017,0.0016], + [30019,0.0028], + [30021,0.0048], + [30023,0.0016], + [30025,0], + [30027,0.0037], + [30029,0.0032], + [30031,0.0031], + [30033,0], + [30035,0.0014], + [30037,0], + [30039,0], + [30041,0.0048], + [30043,0.002], + [30045,0], + [30047,0.0023], + [30049,0.0024], + [30051,0.0011], + [30053,0.0025], + [30055,0], + [30057,0.0067], + [30059,0.0088], + [30061,0.0008], + [30063,0.0016], + [30065,0], + [30067,0.0004], + [30069,0], + [30071,0.0005], + [30073,0.0019], + [30075,0.0012], + [30077,0.0013], + [30079,0], + [30081,0.0012], + [30083,0.0022], + [30085,0.0036], + [30087,0.0038], + [30089,0.0014], + [30091,0.0036], + [30093,0.0027], + [30095,0.0046], + [30097,0], + [30099,0.0025], + [30101,0.0004], + [30103,0.0108], + [30105,0.0005], + [30107,0], + [30109,0], + [30111,0.0034], + [31001,0.012], + [31003,0.0047], + [31005,0.0012], + [31007,0.0014], + [31009,0], + [31011,0.0005], + [31013,0.0043], + [31015,0.0012], + [31017,0], + [31019,0.0115], + [31021,0.0027], + [31023,0.0049], + [31025,0.0029], + [31027,0.0023], + [31029,0.0009], + [31031,0], + [31033,0.0031], + [31035,0.0045], + [31037,0.0238], + [31039,0.0227], + [31041,0.0048], + [31043,0.0823], + [31045,0.0035], + [31047,0.011], + [31049,0.006], + [31051,0.016], + [31053,0.0074], + [31055,0.0103], + [31057,0.0022], + [31059,0.003], + [31061,0], + [31063,0], + [31065,0.0045], + [31067,0.0033], + [31069,0.0013], + [31071,0.0041], + [31073,0.001], + [31075,0], + [31077,0.0025], + [31079,0.0258], + [31081,0.0083], + [31083,0.0043], + [31085,0.0016], + [31087,0.0002], + [31089,0.0027], + [31091,0.0015], + [31093,0.007], + [31095,0.0005], + [31097,0.0199], + [31099,0.0025], + [31101,0.0017], + [31103,0.0028], + [31105,0.005], + [31107,0.0055], + [31109,0.0076], + [31111,0.0031], + [31113,0.0054], + [31115,0], + [31117,0], + [31119,0.0139], + [31121,0.0066], + [31123,0.0056], + [31125,0.0004], + [31127,0.0008], + [31129,0.0008], + [31131,0.0065], + [31133,0], + [31135,0.0007], + [31137,0.0034], + [31139,0.0007], + [31141,0.01], + [31143,0.0038], + [31145,0.0006], + [31147,0.0009], + [31149,0.0029], + [31151,0.0181], + [31153,0.0071], + [31155,0.0014], + [31157,0.0119], + [31159,0.0038], + [31161,0.0027], + [31163,0.0039], + [31165,0], + [31167,0.0014], + [31169,0.0015], + [31171,0.0016], + [31173,0.0018], + [31175,0.0002], + [31177,0.0019], + [31179,0.0036], + [31181,0.0026], + [31183,0.0035], + [31185,0.0061], + [32001,0.0085], + [32003,0.0558], + [32005,0.0207], + [32007,0.0151], + [32009,0.0309], + [32011,0], + [32013,0.0182], + [32015,0.0102], + [32017,0.0226], + [32019,0.0265], + [32021,0.0101], + [32023,0.0384], + [32027,0.0249], + [32029,0.0022], + [32031,0.0311], + [32033,0.006], + [32510,0.0458], + [33001,0.0007], + [33003,0.0002], + [33005,0.0017], + [33007,0.0024], + [33009,0.0011], + [33011,0.0046], + [33013,0.0017], + [33015,0.0027], + [33017,0.0016], + [33019,0.0005], + [34001,0.0282], + [34003,0.0219], + [34005,0.0109], + [34007,0.0417], + [34009,0.0067], + [34011,0.0394], + [34013,0.0495], + [34015,0.011], + [34017,0.0672], + [34019,0.0054], + [34021,0.0159], + [34023,0.0192], + [34025,0.0154], + [34027,0.015], + [34029,0.0103], + [34031,0.0829], + [34033,0.0098], + [34035,0.0178], + [34037,0.0067], + [34039,0.0722], + [34041,0.0087], + [35001,0.0583], + [35003,0.0055], + [35005,0.0529], + [35006,0.0443], + [35007,0.0297], + [35009,0.0949], + [35011,0.0928], + [35013,0.0295], + [35015,0.0191], + [35017,0.006], + [35019,0.0462], + [35021,0.0092], + [35023,0.007], + [35025,0.0244], + [35027,0.0175], + [35028,0.0133], + [35029,0.0199], + [35031,0.0147], + [35033,0.2096], + [35035,0.0326], + [35037,0.0245], + [35039,0.1233], + [35041,0.0959], + [35043,0.0473], + [35045,0.0236], + [35047,0.2115], + [35049,0.0438], + [35051,0.0107], + [35053,0.0195], + [35055,0.0397], + [35057,0.0095], + [35059,0.0371], + [35061,0.051], + [36001,0.0069], + [36003,0.0025], + [36005,0.1874], + [36007,0.0045], + [36009,0.002], + [36011,0.0035], + [36013,0.0085], + [36015,0.0026], + [36017,0.0021], + [36019,0.0078], + [36021,0.0064], + [36023,0.0027], + [36025,0.0036], + [36027,0.0185], + [36029,0.011], + [36031,0.0061], + [36033,0.0102], + [36035,0.0044], + [36037,0.0074], + [36039,0.0049], + [36041,0.0014], + [36043,0.0023], + [36045,0.0077], + [36047,0.0441], + [36049,0.0034], + [36051,0.0038], + [36053,0.0014], + [36055,0.009], + [36057,0.0277], + [36059,0.0345], + [36061,0.0594], + [36063,0.0033], + [36065,0.0072], + [36067,0.0052], + [36069,0.0072], + [36071,0.0439], + [36073,0.0079], + [36075,0.0033], + [36077,0.005], + [36079,0.0181], + [36081,0.0646], + [36083,0.0048], + [36085,0.0188], + [36087,0.039], + [36089,0.0046], + [36091,0.0022], + [36093,0.0173], + [36095,0.0014], + [36097,0.0008], + [36099,0.0027], + [36101,0.0016], + [36103,0.0253], + [36105,0.0223], + [36107,0.0013], + [36109,0.0056], + [36111,0.0124], + [36113,0.0013], + [36115,0.0033], + [36117,0.0049], + [36119,0.0534], + [36121,0.0038], + [36123,0.0028], + [37001,0.0304], + [37003,0.0173], + [37005,0.0144], + [37007,0.0031], + [37009,0.0106], + [37011,0.004], + [37013,0.003], + [37015,0.003], + [37017,0.024], + [37019,0.0127], + [37021,0.004], + [37023,0.0176], + [37025,0.023], + [37027,0.0188], + [37029,0.0017], + [37031,0.0048], + [37033,0.0105], + [37035,0.0322], + [37037,0.0164], + [37039,0.0041], + [37041,0.0059], + [37043,0.0005], + [37045,0.0063], + [37047,0.0123], + [37049,0.0107], + [37051,0.0121], + [37053,0.0036], + [37055,0.0132], + [37057,0.0072], + [37059,0.0116], + [37061,0.0294], + [37063,0.0187], + [37065,0.0113], + [37067,0.015], + [37069,0.0129], + [37071,0.0153], + [37073,0.0022], + [37075,0.0019], + [37077,0.0142], + [37079,0.0136], + [37081,0.0129], + [37083,0.0015], + [37085,0.028], + [37087,0.0041], + [37089,0.0125], + [37091,0.0053], + [37093,0.0299], + [37095,0.0001], + [37097,0.0094], + [37099,0.0074], + [37101,0.0153], + [37103,0.0026], + [37105,0.0215], + [37107,0.0068], + [37109,0.0141], + [37111,0.0137], + [37113,0.016], + [37115,0.0019], + [37117,0.0036], + [37119,0.0249], + [37121,0.0046], + [37123,0.0057], + [37125,0.004], + [37127,0.0189], + [37129,0.0058], + [37131,0.003], + [37133,0.0109], + [37135,0.013], + [37137,0.0088], + [37139,0.0024], + [37141,0.0209], + [37143,0.0023], + [37145,0.0092], + [37147,0.0168], + [37149,0.0073], + [37151,0.0273], + [37153,0.0041], + [37155,0.0247], + [37157,0.012], + [37159,0.0154], + [37161,0.0072], + [37163,0.0293], + [37165,0.0084], + [37167,0.0044], + [37169,0.0026], + [37171,0.0104], + [37173,0.0048], + [37175,0.0133], + [37177,0.0246], + [37179,0.0105], + [37181,0.0098], + [37183,0.0179], + [37185,0.0073], + [37187,0.0057], + [37189,0.006], + [37191,0.0178], + [37193,0.0109], + [37195,0.0311], + [37197,0.0195], + [37199,0.0066], + [38001,0.0025], + [38003,0.0036], + [38005,0.0009], + [38007,0.0066], + [38009,0.0029], + [38011,0.0113], + [38013,0.0029], + [38015,0.0013], + [38017,0.003], + [38019,0.0052], + [38021,0.0002], + [38023,0], + [38025,0.0057], + [38027,0], + [38029,0], + [38031,0.0005], + [38033,0], + [38035,0.005], + [38037,0.0013], + [38039,0.0015], + [38041,0.0102], + [38043,0.0096], + [38045,0.0009], + [38047,0.0008], + [38049,0.0009], + [38051,0], + [38053,0.0032], + [38055,0.0029], + [38057,0.0064], + [38059,0.0048], + [38061,0.0095], + [38063,0.0042], + [38065,0.0008], + [38067,0.0023], + [38069,0.0005], + [38071,0.0012], + [38073,0], + [38075,0.0029], + [38077,0.0071], + [38079,0.0011], + [38081,0], + [38083,0.0025], + [38085,0.002], + [38087,0], + [38089,0.0049], + [38091,0.0029], + [38093,0.0038], + [38095,0.0009], + [38097,0.0067], + [38099,0.0156], + [38101,0.0067], + [38103,0.0011], + [38105,0.0176], + [39001,0.0002], + [39003,0.0044], + [39005,0.002], + [39007,0.002], + [39009,0.0025], + [39011,0.0029], + [39013,0.002], + [39015,0.0013], + [39017,0.0052], + [39019,0.0013], + [39021,0.0019], + [39023,0.004], + [39025,0.0016], + [39027,0.0021], + [39029,0.0033], + [39031,0.0007], + [39033,0.0013], + [39035,0.0072], + [39037,0.0013], + [39039,0.0181], + [39041,0.0023], + [39043,0.0053], + [39045,0.0028], + [39047,0.0036], + [39049,0.0075], + [39051,0.0165], + [39053,0.0007], + [39055,0.0006], + [39057,0.0024], + [39059,0.0018], + [39061,0.0047], + [39063,0.0074], + [39065,0.0019], + [39067,0.0009], + [39069,0.0109], + [39071,0.0004], + [39073,0.0007], + [39075,0.0004], + [39077,0.0094], + [39079,0.0003], + [39081,0.0005], + [39083,0.0007], + [39085,0.0035], + [39087,0.0004], + [39089,0.0016], + [39091,0.0005], + [39093,0.0061], + [39095,0.0112], + [39097,0.0006], + [39099,0.0036], + [39101,0.0048], + [39103,0.0017], + [39105,0.0002], + [39107,0.0031], + [39109,0.001], + [39111,0], + [39113,0.0039], + [39115,0.0004], + [39117,0.0009], + [39119,0.0023], + [39121,0.0031], + [39123,0.0072], + [39125,0.0084], + [39127,0.0005], + [39129,0.0027], + [39131,0.0021], + [39133,0.0029], + [39135,0.0001], + [39137,0.0178], + [39139,0.002], + [39141,0.0029], + [39143,0.0203], + [39145,0.0014], + [39147,0.0039], + [39149,0.0014], + [39151,0.0019], + [39153,0.002], + [39155,0.0009], + [39157,0.001], + [39159,0.0022], + [39161,0.0025], + [39163,0], + [39165,0.0031], + [39167,0.001], + [39169,0.0029], + [39171,0.0058], + [39173,0.0043], + [39175,0.0044], + [40001,0.0077], + [40003,0.0099], + [40005,0.0053], + [40007,0.0748], + [40009,0.0242], + [40011,0.0208], + [40013,0.0104], + [40015,0.0161], + [40017,0.0158], + [40019,0.0113], + [40021,0.0078], + [40023,0.0075], + [40025,0.0342], + [40027,0.0066], + [40029,0.013], + [40031,0.0108], + [40033,0.0009], + [40035,0.0039], + [40037,0.0027], + [40039,0.0164], + [40041,0.0071], + [40043,0.0009], + [40045,0.0052], + [40047,0.0219], + [40049,0.0041], + [40051,0.003], + [40053,0.015], + [40055,0.0245], + [40057,0.079], + [40059,0.0183], + [40061,0.0029], + [40063,0.0014], + [40065,0.0663], + [40067,0.0207], + [40069,0.0045], + [40071,0.014], + [40073,0.0437], + [40075,0.027], + [40077,0.003], + [40079,0.0101], + [40081,0.0017], + [40083,0.0025], + [40085,0.0129], + [40087,0.0121], + [40089,0.0106], + [40091,0.0008], + [40093,0.0208], + [40095,0.0556], + [40097,0.0015], + [40099,0.0066], + [40101,0.0139], + [40103,0.0019], + [40105,0.0049], + [40107,0.0027], + [40109,0.0168], + [40111,0.0019], + [40113,0.0053], + [40115,0.0089], + [40117,0.0012], + [40119,0.0021], + [40121,0.0063], + [40123,0.0028], + [40125,0.0038], + [40127,0.0026], + [40129,0.0011], + [40131,0.0075], + [40133,0.0032], + [40135,0.0073], + [40137,0.017], + [40139,0.1391], + [40141,0.0703], + [40143,0.0195], + [40145,0.0062], + [40147,0.0039], + [40149,0.0084], + [40151,0.0047], + [40153,0.0157], + [41001,0.0085], + [41003,0.0066], + [41005,0.0087], + [41007,0.0104], + [41009,0.0032], + [41011,0.01], + [41013,0.0103], + [41015,0.0017], + [41017,0.0065], + [41019,0.0036], + [41021,0.0037], + [41023,0.0028], + [41025,0.0062], + [41027,0.035], + [41029,0.0085], + [41031,0.0405], + [41033,0.0096], + [41035,0.0089], + [41037,0.0061], + [41039,0.0117], + [41041,0.012], + [41043,0.0103], + [41045,0.0289], + [41047,0.0315], + [41049,0.0325], + [41051,0.0138], + [41053,0.0108], + [41055,0], + [41057,0.0134], + [41059,0.0265], + [41061,0.0048], + [41063,0.002], + [41065,0.0217], + [41067,0.024], + [41069,0.0004], + [41071,0.0197], + [42001,0.0159], + [42003,0.002], + [42005,0.0004], + [42007,0.0019], + [42009,0.0014], + [42011,0.0204], + [42013,0.0017], + [42015,0.0021], + [42017,0.0052], + [42019,0.001], + [42021,0.0014], + [42023,0.0007], + [42025,0.0018], + [42027,0.0025], + [42029,0.006], + [42031,0.0007], + [42033,0.0013], + [42035,0.0012], + [42037,0.0037], + [42039,0.0015], + [42041,0.0057], + [42043,0.0128], + [42045,0.0057], + [42047,0.0002], + [42049,0.0047], + [42051,0.0013], + [42053,0.0137], + [42055,0.0027], + [42057,0.0004], + [42059,0.0012], + [42061,0.0019], + [42063,0.001], + [42065,0.0001], + [42067,0.0055], + [42069,0.003], + [42071,0.014], + [42073,0.0032], + [42075,0.0348], + [42077,0.0392], + [42079,0.0166], + [42081,0.0023], + [42083,0.003], + [42085,0.0022], + [42087,0.0015], + [42089,0.0157], + [42091,0.0063], + [42093,0.0004], + [42095,0.0105], + [42097,0.0021], + [42099,0.0014], + [42101,0.0278], + [42103,0.0075], + [42105,0.0012], + [42107,0.0059], + [42109,0.0027], + [42111,0.0022], + [42113,0.0037], + [42115,0.0021], + [42117,0.0014], + [42119,0.0093], + [42121,0.0008], + [42123,0.0004], + [42125,0.0012], + [42127,0.0019], + [42129,0.0008], + [42131,0.0014], + [42133,0.0065], + [44001,0.0017], + [44003,0.0062], + [44005,0.0077], + [44007,0.0436], + [44009,0.0046], + [45001,0.0015], + [45003,0.0055], + [45005,0.0007], + [45007,0.0045], + [45009,0.007], + [45011,0.0058], + [45013,0.0157], + [45015,0.0137], + [45017,0.0108], + [45019,0.0039], + [45021,0.01], + [45023,0.0001], + [45025,0.0077], + [45027,0.004], + [45029,0.0115], + [45031,0.0008], + [45033,0.0007], + [45035,0.0067], + [45037,0.0109], + [45039,0.0014], + [45041,0.002], + [45043,0.0104], + [45045,0.009], + [45047,0.0074], + [45049,0.0097], + [45051,0.0107], + [45053,0.0143], + [45055,0.0059], + [45057,0.0039], + [45059,0.0109], + [45061,0.0016], + [45063,0.007], + [45065,0.0009], + [45067,0.0045], + [45069,0.0055], + [45071,0.0207], + [45073,0.0076], + [45075,0.004], + [45077,0.0051], + [45079,0.0084], + [45081,0.0435], + [45083,0.0085], + [45085,0.0029], + [45087,0.002], + [45089,0.0044], + [45091,0.0072], + [46003,0.0111], + [46005,0.0129], + [46007,0.002], + [46009,0.0044], + [46011,0.0028], + [46013,0.0003], + [46015,0.0004], + [46017,0], + [46019,0.0021], + [46021,0], + [46023,0.0012], + [46025,0], + [46027,0.0035], + [46029,0.0008], + [46031,0.0018], + [46033,0.0016], + [46035,0.007], + [46037,0.001], + [46039,0], + [46041,0.0002], + [46043,0.0002], + [46045,0.0015], + [46047,0.0085], + [46049,0], + [46051,0.0013], + [46053,0.0043], + [46055,0], + [46057,0.0039], + [46059,0], + [46061,0], + [46063,0.0051], + [46065,0.0025], + [46067,0.0005], + [46069,0.0015], + [46071,0.0005], + [46073,0.0012], + [46075,0], + [46077,0.0063], + [46079,0.0011], + [46081,0.0036], + [46083,0.0025], + [46085,0], + [46087,0.0078], + [46089,0], + [46091,0.0178], + [46093,0.0029], + [46095,0], + [46097,0.0038], + [46099,0.0082], + [46101,0.0014], + [46102,null], + [46103,0.0027], + [46105,0.0008], + [46107,0.0037], + [46109,0.0014], + [46111,0.0011], + [46115,0.0012], + [46117,0], + [46119,0], + [46121,0], + [46123,0], + [46125,0.0008], + [46127,0.0043], + [46129,0.0063], + [46135,0.0026], + [46137,0.0004], + [47001,0.0039], + [47003,0.0248], + [47005,0.0004], + [47007,0.0027], + [47009,0.0007], + [47011,0.0049], + [47013,0.0007], + [47015,0.0013], + [47017,0.0013], + [47019,0.0003], + [47021,0.0045], + [47023,0.0094], + [47025,0.0003], + [47027,0.0005], + [47029,0.0007], + [47031,0.0091], + [47033,0.023], + [47035,0.001], + [47037,0.0132], + [47039,0.0004], + [47041,0.0099], + [47043,0.0022], + [47045,0.0034], + [47047,0.0034], + [47049,0.0019], + [47051,0.0065], + [47053,0.0028], + [47055,0.0033], + [47057,0], + [47059,0.0039], + [47061,0.0005], + [47063,0.0213], + [47065,0.0049], + [47067,0.0004], + [47069,0.0014], + [47071,0.0006], + [47073,0.0024], + [47075,0.0157], + [47077,0.0021], + [47079,0.0012], + [47081,0.0026], + [47083,0], + [47085,0.0008], + [47087,0.0034], + [47089,0.0021], + [47091,0.0046], + [47093,0.0053], + [47095,0.0043], + [47097,0.0047], + [47099,0.0044], + [47101,0.0025], + [47103,0.0006], + [47105,0.0064], + [47107,0.004], + [47109,0.0008], + [47111,0.0041], + [47113,0.0025], + [47115,0.0009], + [47117,0.0045], + [47119,0.0056], + [47121,0], + [47123,0.0026], + [47125,0.0071], + [47127,0], + [47129,0.0015], + [47131,0.0087], + [47133,0.0002], + [47135,0], + [47137,0], + [47139,0.0037], + [47141,0.0026], + [47143,0.0025], + [47145,0.0012], + [47147,0.0086], + [47149,0.0055], + [47151,0.0005], + [47153,0.0017], + [47155,0.009], + [47157,0.0138], + [47159,0.004], + [47161,0.0036], + [47163,0.0034], + [47165,0.0056], + [47167,0.0022], + [47169,0], + [47171,0.0034], + [47173,0.0008], + [47175,0], + [47177,0.0103], + [47179,0.0025], + [47181,0.0009], + [47183,0.0045], + [47185,0.0002], + [47187,0.0021], + [47189,0.0065], + [48001,0.0157], + [48003,0.0195], + [48005,0.0187], + [48007,0.0173], + [48009,0.0053], + [48011,0.0049], + [48013,0.014], + [48015,0.0376], + [48017,0.0565], + [48019,0.0033], + [48021,0.0631], + [48023,0.0097], + [48025,0.009], + [48027,0.0185], + [48029,0.0322], + [48031,0.0124], + [48033,0], + [48035,0.0078], + [48037,0.0084], + [48039,0.0189], + [48041,0.0261], + [48043,0.0107], + [48045,0.0038], + [48047,0.0379], + [48049,0.0081], + [48051,0.0288], + [48053,0.0084], + [48055,0.0586], + [48057,0.0084], + [48059,0.0052], + [48061,0.0187], + [48063,0.0433], + [48065,0.0019], + [48067,0.0098], + [48069,0.0172], + [48071,0.0096], + [48073,0.0071], + [48075,0.0106], + [48077,0.0055], + [48079,0.0171], + [48081,0.0415], + [48083,0.0088], + [48085,0.0117], + [48087,0.0613], + [48089,0.0524], + [48091,0.0201], + [48093,0.0081], + [48095,0.0016], + [48097,0.006], + [48099,0.009], + [48101,0.0367], + [48103,0.2159], + [48105,0.2939], + [48107,0.0133], + [48109,0.0727], + [48111,0.0104], + [48113,0.0358], + [48115,0.0533], + [48117,0.0301], + [48119,0.0046], + [48121,0.0158], + [48123,0.0996], + [48125,0.018], + [48127,0.0303], + [48129,0.0017], + [48131,0.0584], + [48133,0.0188], + [48135,0.0432], + [48137,0.0052], + [48139,0.0193], + [48141,0.0561], + [48143,0.0118], + [48145,0.0098], + [48147,0.0093], + [48149,0.0089], + [48151,0.0148], + [48153,0.0066], + [48155,0.0378], + [48157,0.0249], + [48159,0.0191], + [48161,0.0053], + [48163,0.113], + [48165,0.0134], + [48167,0.0116], + [48169,0.0392], + [48171,0.0056], + [48173,0.1141], + [48175,0.0954], + [48177,0.1714], + [48179,0.0273], + [48181,0.0084], + [48183,0.0065], + [48185,0.0172], + [48187,0.0714], + [48189,0.0194], + [48191,0.0463], + [48193,0.0051], + [48195,0.0321], + [48197,0.0154], + [48199,0.0011], + [48201,0.0408], + [48203,0.0141], + [48205,0.0154], + [48207,0.0185], + [48209,0.0201], + [48211,0.0148], + [48213,0.0062], + [48215,0.0407], + [48217,0.0106], + [48219,0.0163], + [48221,0.004], + [48223,0.0303], + [48225,0.0192], + [48227,0.0276], + [48229,0.0994], + [48231,0.0456], + [48233,0.0176], + [48235,0.0628], + [48237,0.0088], + [48239,0.0183], + [48241,0.0153], + [48243,0.0036], + [48245,0.0096], + [48247,0.0076], + [48249,0.0096], + [48251,0.0082], + [48253,0.0556], + [48255,0.1039], + [48257,0.0161], + [48259,0.0155], + [48261,0.0195], + [48263,0.0309], + [48265,0.0202], + [48267,0.0311], + [48269,0.0017], + [48271,0.0149], + [48273,0.0218], + [48275,0.0249], + [48277,0.0032], + [48279,0.0198], + [48281,0.0098], + [48283,0.0973], + [48285,0.0611], + [48287,0.0335], + [48289,0.0048], + [48291,0.0328], + [48293,0.014], + [48295,0.0318], + [48297,0.0198], + [48299,0.0066], + [48301,0], + [48303,0.0318], + [48305,0.0452], + [48307,0.0374], + [48309,0.0196], + [48311,0.0217], + [48313,0.0191], + [48315,0.0082], + [48317,0.0673], + [48319,0.0165], + [48321,0.0462], + [48323,0.02], + [48325,0.0186], + [48327,0.0384], + [48329,0.0319], + [48331,0.0163], + [48333,0.0071], + [48335,0.0358], + [48337,0.0079], + [48339,0.0169], + [48341,0.0411], + [48343,0.0214], + [48345,0.0346], + [48347,0.0067], + [48349,0.0269], + [48351,0], + [48353,0.0237], + [48355,0.0167], + [48357,0.0291], + [48359,0.0005], + [48361,0.0027], + [48363,0.0136], + [48365,0.006], + [48367,0.0099], + [48369,0.0432], + [48371,0.07], + [48373,0.0043], + [48375,0.0127], + [48377,0.0147], + [48379,0.0207], + [48381,0.0115], + [48383,0.2598], + [48385,0.0061], + [48387,0.0041], + [48389,0.0705], + [48391,0.0409], + [48393,0.0022], + [48395,0.0078], + [48397,0.0122], + [48399,0.0198], + [48401,0.0062], + [48403,0.0047], + [48405,0.0046], + [48407,0.0018], + [48409,0.0111], + [48411,0.0309], + [48413,0.1792], + [48415,0.0212], + [48417,0.0018], + [48419,0.0026], + [48421,0.0289], + [48423,0.0094], + [48425,0.0191], + [48427,0.0212], + [48429,0.018], + [48431,0.0334], + [48433,0.0051], + [48435,0.1432], + [48437,0.0116], + [48439,0.0327], + [48441,0.0443], + [48443,0.1283], + [48445,0.0157], + [48447,0], + [48449,0.0765], + [48451,0.0346], + [48453,0.0332], + [48455,0.0078], + [48457,0.0137], + [48459,0.0169], + [48461,0.2055], + [48463,0.0309], + [48465,0.0186], + [48467,0.0035], + [48469,0.0145], + [48471,0.0048], + [48473,0.0308], + [48475,0.0345], + [48477,0.0066], + [48479,0.0158], + [48481,0.0165], + [48483,0.0281], + [48485,0.0209], + [48487,0.0252], + [48489,0.0131], + [48491,0.0142], + [48493,0.009], + [48495,0.023], + [48497,0.0082], + [48499,0.0124], + [48501,0.0051], + [48503,0.0054], + [48505,0.0177], + [48507,0.0365], + [49001,0.0131], + [49003,0.0121], + [49005,0.0198], + [49007,0.0118], + [49009,0.0043], + [49011,0.0138], + [49013,0.0148], + [49015,0.0003], + [49017,0.0037], + [49019,0.0011], + [49021,0.0155], + [49023,0.0157], + [49025,0.0079], + [49027,0.0387], + [49029,0.0013], + [49031,0.0008], + [49033,0.0134], + [49035,0.0445], + [49037,0.0025], + [49039,0.0293], + [49041,0.0087], + [49043,0.0048], + [49045,0.024], + [49047,0.0047], + [49049,0.0094], + [49051,0.0048], + [49053,0.0179], + [49055,0.002], + [49057,0.0202], + [50001,0.0021], + [50003,0.0011], + [50005,0.0002], + [50007,0.0025], + [50009,0.0014], + [50011,0.0032], + [50013,0.0009], + [50015,0.0007], + [50017,0.0012], + [50019,0.0014], + [50021,0.0008], + [50023,0.0007], + [50025,0.0014], + [50027,0.003], + [51001,0.0033], + [51003,0.0065], + [51005,0.002], + [51007,0.0016], + [51009,0.0038], + [51011,0.0015], + [51013,0.0284], + [51015,0.0019], + [51017,0.0024], + [51019,0.002], + [51021,0], + [51023,0.003], + [51025,0.005], + [51027,0.0006], + [51029,0.0088], + [51031,0.0037], + [51033,0.0066], + [51035,0.0011], + [51036,0.001], + [51037,0.0046], + [51041,0.0107], + [51043,0.0073], + [51045,0.0001], + [51047,0.0138], + [51049,0], + [51051,0.0007], + [51053,0.0043], + [51057,0.0137], + [51059,0.0215], + [51061,0.0044], + [51063,0.0019], + [51065,0.0039], + [51067,0.0055], + [51069,0.0041], + [51071,0.0001], + [51073,0.0009], + [51075,0.0028], + [51077,0.0026], + [51079,0.0111], + [51081,0.0029], + [51083,0.0031], + [51085,0.0015], + [51087,0.009], + [51089,0.0154], + [51091,0], + [51093,0.0032], + [51095,0.0033], + [51097,0.0007], + [51099,0.0032], + [51101,0.0017], + [51103,0], + [51105,0.0045], + [51107,0.015], + [51109,0.01], + [51111,0.007], + [51113,0.0102], + [51115,0], + [51117,0.0041], + [51119,0.0023], + [51121,0.004], + [51125,0.0049], + [51127,0.0028], + [51131,0.002], + [51133,0], + [51135,0.0052], + [51137,0.0053], + [51139,0.0031], + [51141,0.0038], + [51143,0.008], + [51145,0.0014], + [51147,0.0049], + [51149,0.0119], + [51153,0.0317], + [51155,0.0024], + [51157,0.0019], + [51159,0.0109], + [51161,0.0026], + [51163,0.0039], + [51165,0.006], + [51167,0.0014], + [51169,0.0004], + [51171,0.0044], + [51173,0.0006], + [51175,0.0022], + [51177,0.0222], + [51179,0.026], + [51181,0.001], + [51183,0.0082], + [51185,0.0006], + [51187,0.0027], + [51191,0.003], + [51193,0.0068], + [51195,0.0012], + [51197,0.0016], + [51199,0.0044], + [51510,0.0222], + [51520,0.0052], + [51530,0], + [51540,0.0018], + [51550,0.0069], + [51570,0.0116], + [51580,0], + [51590,0.0059], + [51595,0.0005], + [51600,0.0252], + [51610,0.0103], + [51620,0.003], + [51630,0.0205], + [51640,0.0138], + [51650,0.009], + [51660,0.0078], + [51670,0.0173], + [51678,0], + [51680,0.0042], + [51683,0.0398], + [51685,0.0354], + [51690,0.0072], + [51700,0.009], + [51710,0.0131], + [51720,0], + [51730,0.0137], + [51735,0.001], + [51740,0.008], + [51750,0.0034], + [51760,0.0055], + [51770,0.0093], + [51775,0.0007], + [51790,0.0015], + [51800,0.0031], + [51810,0.0085], + [51820,0.0039], + [51830,0.0027], + [51840,0.0144], + [53001,0.1181], + [53003,0.0019], + [53005,0.0533], + [53007,0.0264], + [53009,0.0052], + [53011,0.0157], + [53013,0.0128], + [53015,0.0068], + [53017,0.1114], + [53019,0.0045], + [53021,0.0956], + [53023,0], + [53025,0.1159], + [53027,0.0029], + [53029,0.0066], + [53031,0.0029], + [53033,0.0174], + [53035,0.0096], + [53037,0.0191], + [53039,0.0139], + [53041,0.0077], + [53043,0.0027], + [53045,0.0226], + [53047,0.0496], + [53049,0.0064], + [53051,0.0101], + [53053,0.0148], + [53055,0.0092], + [53057,0.0412], + [53059,0.0066], + [53061,0.0133], + [53063,0.0058], + [53065,0.0047], + [53067,0.0059], + [53069,0.0051], + [53071,0.0334], + [53073,0.0158], + [53075,0.0085], + [53077,0.0636], + [54001,0.0005], + [54003,0.0064], + [54005,0.0009], + [54007,0.0002], + [54009,0.0011], + [54011,0.0024], + [54013,0.0001], + [54015,0.0005], + [54017,0.0004], + [54019,0.0006], + [54021,0.0094], + [54023,0.0012], + [54025,0.0038], + [54027,0.0006], + [54029,0], + [54031,0.001], + [54033,0.0004], + [54035,0.0003], + [54037,0.0084], + [54039,0.0011], + [54041,0], + [54043,0], + [54045,0.0006], + [54047,0.0046], + [54049,0.0015], + [54051,0.0004], + [54053,0.0005], + [54055,0.0003], + [54057,0.0013], + [54059,0.0031], + [54061,0.0029], + [54063,0], + [54065,0.0007], + [54067,0.0013], + [54069,0.0013], + [54071,0.0013], + [54073,0], + [54075,0.0013], + [54077,0.003], + [54079,0.0014], + [54081,0.0045], + [54083,0.0011], + [54085,0.0029], + [54087,0.0014], + [54089,0.0008], + [54091,0.0017], + [54093,0], + [54095,0.0008], + [54097,0.0002], + [54099,0.0014], + [54101,0], + [54103,0], + [54105,0.0004], + [54107,0.0008], + [54109,0.0008], + [55001,0.0041], + [55003,0.0021], + [55005,0.0026], + [55007,0.001], + [55009,0.0193], + [55011,0.0034], + [55013,0.0011], + [55015,0.0025], + [55017,0.001], + [55019,0.0051], + [55021,0.0033], + [55023,0.0008], + [55025,0.0098], + [55027,0.0043], + [55029,0.002], + [55031,0.0014], + [55033,0.0016], + [55035,0.0007], + [55037,0], + [55039,0.0099], + [55041,0.0017], + [55043,0.0018], + [55045,0.0038], + [55047,0.0064], + [55049,0.0039], + [55051,0.0014], + [55053,0.0045], + [55055,0.0099], + [55057,0.0025], + [55059,0.0099], + [55061,0.0031], + [55063,0.0041], + [55065,0.0056], + [55067,0.002], + [55069,0.0002], + [55071,0.0012], + [55073,0.0017], + [55075,0.0012], + [55077,0.0057], + [55078,0], + [55079,0.0243], + [55081,0.008], + [55083,0.0021], + [55085,0.0012], + [55087,0.0108], + [55089,0.0022], + [55091,0.0011], + [55093,0.0014], + [55095,0.003], + [55097,0.0047], + [55099,0.0016], + [55101,0.0185], + [55103,0.006], + [55105,0.0107], + [55107,0.0024], + [55109,0.0011], + [55111,0.0064], + [55113,0.0054], + [55115,0.0003], + [55117,0.0064], + [55119,0.002], + [55121,0.026], + [55123,0.0027], + [55125,0.0019], + [55127,0.0092], + [55129,0.0004], + [55131,0.0026], + [55133,0.0047], + [55135,0.0044], + [55137,0.0121], + [55139,0.0036], + [55141,0.0043], + [56001,0.0086], + [56003,0.0045], + [56005,0.0023], + [56007,0.0073], + [56009,0.0038], + [56011,0.001], + [56013,0.0073], + [56015,0.0138], + [56017,0.0027], + [56019,0.0064], + [56021,0.0153], + [56023,0.0038], + [56025,0.0056], + [56027,0.0022], + [56029,0.0078], + [56031,0.0077], + [56033,0.0045], + [56035,0], + [56037,0.0089], + [56039,0.0297], + [56041,0.0079], + [56043,0.0264], + [56045,0] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-other-2019.json b/data/regional/united-states/demographics/race/us-race-other-2019.json new file mode 100644 index 0000000..5e508bd --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-other-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Other-Race Population", + "description" : "Percent of the population that identifies as another single race in the year 2017.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.native.2019"], + [1001,0.003], + [1003,0.008], + [1005,0.003], + [1007,0.001], + [1009,0.001], + [1011,0], + [1013,0.001], + [1015,0.003], + [1017,0.003], + [1019,0.011], + [1021,0.008], + [1023,0.001], + [1025,0.001], + [1027,0.003], + [1029,0.001], + [1031,0.012], + [1033,0.006], + [1035,0.002], + [1037,0.001], + [1039,0.001], + [1041,0.007], + [1043,0.003], + [1045,0.008], + [1047,0.001], + [1049,0.012], + [1051,0.003], + [1053,0.04], + [1055,0.006], + [1057,0], + [1059,0.013], + [1061,0.009], + [1063,0.004], + [1065,0.002], + [1067,0.002], + [1069,0.003], + [1071,0.012], + [1073,0.002], + [1075,0], + [1077,0.004], + [1079,0.056], + [1081,0.002], + [1083,0.008], + [1085,0.001], + [1087,0.001], + [1089,0.006], + [1091,0.001], + [1093,0.005], + [1095,0.004], + [1097,0.008], + [1099,0.017], + [1101,0.002], + [1103,0.005], + [1105,0], + [1107,0.001], + [1109,0.006], + [1111,0.002], + [1113,0.003], + [1115,0.004], + [1117,0.003], + [1119,0.001], + [1121,0.004], + [1123,0.002], + [1125,0.002], + [1127,0.002], + [1129,0.074], + [1131,0.002], + [1133,0.003], + [2013,0.467], + [2016,0.108], + [2020,0.079], + [2050,0.831], + [2060,0.342], + [2068,0.022], + [2070,0.719], + [2090,0.079], + [2100,0.088], + [2105,0.376], + [2110,0.106], + [2122,0.078], + [2130,0.143], + [2150,0.124], + [2158,0.921], + [2164,0.698], + [2170,0.062], + [2180,0.758], + [2185,0.512], + [2188,0.822], + [2195,0.078], + [2198,0.392], + [2220,0.131], + [2230,0.06], + [2240,0.139], + [2261,0.139], + [2275,0.245], + [2282,0.387], + [2290,0.694], + [4001,0.738], + [4003,0.012], + [4005,0.265], + [4007,0.163], + [4009,0.126], + [4011,0.039], + [4012,0.15], + [4013,0.02], + [4015,0.023], + [4017,0.447], + [4019,0.039], + [4021,0.05], + [4023,0.008], + [4025,0.017], + [4027,0.015], + [5001,0.002], + [5003,0.002], + [5005,0.004], + [5007,0.014], + [5009,0.006], + [5011,0.011], + [5013,0.002], + [5015,0.008], + [5017,0.001], + [5019,0.004], + [5021,0.003], + [5023,0.012], + [5025,0.002], + [5027,0.002], + [5029,0.003], + [5031,0.004], + [5033,0.023], + [5035,0.003], + [5037,0.002], + [5039,0.006], + [5041,0.003], + [5043,0], + [5045,0.004], + [5047,0.016], + [5049,0.003], + [5051,0.009], + [5053,0.002], + [5055,0.003], + [5057,0.004], + [5059,0.005], + [5061,0.004], + [5063,0.002], + [5065,0.012], + [5067,0.002], + [5069,0.003], + [5071,0.002], + [5073,0.004], + [5075,0.003], + [5077,0.004], + [5079,0.005], + [5081,0.01], + [5083,0.008], + [5085,0.007], + [5087,0.013], + [5089,0.009], + [5091,0.012], + [5093,0.001], + [5095,0.003], + [5097,0.015], + [5099,0.002], + [5101,0.025], + [5103,0.001], + [5105,0.001], + [5107,0], + [5109,0.005], + [5111,0.002], + [5113,0.015], + [5115,0.006], + [5117,0.004], + [5119,0.003], + [5121,0.007], + [5123,0.004], + [5125,0.004], + [5127,0.019], + [5129,0.028], + [5131,0.011], + [5133,0.023], + [5135,0.003], + [5137,0.005], + [5139,0.009], + [5141,0.006], + [5143,0.009], + [5145,0.006], + [5147,0], + [5149,0.005], + [6001,0.007], + [6003,0.34], + [6005,0.008], + [6007,0.012], + [6009,0.008], + [6011,0.01], + [6013,0.005], + [6015,0.072], + [6017,0.008], + [6019,0.012], + [6021,0.024], + [6023,0.05], + [6025,0.011], + [6027,0.113], + [6029,0.01], + [6031,0.016], + [6033,0.036], + [6035,0.028], + [6037,0.007], + [6039,0.016], + [6041,0.004], + [6043,0.019], + [6045,0.044], + [6047,0.009], + [6049,0.042], + [6051,0.035], + [6053,0.007], + [6055,0.009], + [6057,0.007], + [6059,0.005], + [6061,0.005], + [6063,0.015], + [6065,0.008], + [6067,0.007], + [6069,0.007], + [6071,0.008], + [6073,0.007], + [6075,0.004], + [6077,0.006], + [6079,0.009], + [6081,0.004], + [6083,0.01], + [6085,0.005], + [6087,0.005], + [6089,0.027], + [6091,0.017], + [6093,0.037], + [6095,0.005], + [6097,0.009], + [6099,0.008], + [6101,0.009], + [6103,0.02], + [6105,0.056], + [6107,0.013], + [6109,0.018], + [6111,0.008], + [6113,0.006], + [6115,0.012], + [8001,0.011], + [8003,0.033], + [8005,0.007], + [8007,0.014], + [8009,0.016], + [8011,0.01], + [8013,0.004], + [8014,0.004], + [8015,0.005], + [8017,0.001], + [8019,0.003], + [8021,0.025], + [8023,0.021], + [8025,0.014], + [8027,0.009], + [8029,0.009], + [8031,0.009], + [8033,0.017], + [8035,0.004], + [8037,0.002], + [8039,0.01], + [8041,0.008], + [8043,0.014], + [8045,0.007], + [8047,0.027], + [8049,0], + [8051,0.01], + [8053,0.023], + [8055,0.018], + [8057,0], + [8059,0.007], + [8061,0], + [8063,0.004], + [8065,0.015], + [8067,0.066], + [8069,0.008], + [8071,0.038], + [8073,0.008], + [8075,0.008], + [8077,0.009], + [8079,0.015], + [8081,0.005], + [8083,0.123], + [8085,0.009], + [8087,0.004], + [8089,0.012], + [8091,0.003], + [8093,0.004], + [8095,0], + [8097,0.001], + [8099,0.015], + [8101,0.04], + [8103,0.011], + [8105,0.024], + [8107,0.004], + [8109,0.02], + [8111,0.01], + [8113,0.006], + [8115,0.006], + [8117,0.004], + [8119,0.004], + [8121,0.001], + [8123,0.008], + [8125,0.006], + [9001,0.002], + [9003,0.003], + [9005,0.003], + [9007,0.002], + [9009,0.002], + [9011,0.006], + [9013,0.001], + [9015,0.006], + [10001,0.007], + [10003,0.003], + [10005,0.003], + [11001,0.003], + [12001,0.004], + [12003,0.005], + [12005,0.003], + [12007,0.004], + [12009,0.003], + [12011,0.003], + [12013,0.011], + [12015,0.003], + [12017,0.003], + [12019,0.001], + [12021,0.002], + [12023,0.003], + [12027,0.001], + [12029,0], + [12031,0.002], + [12033,0.004], + [12035,0.003], + [12037,0.001], + [12039,0.002], + [12041,0.001], + [12043,0.04], + [12045,0.004], + [12047,0.012], + [12049,0.001], + [12051,0.018], + [12053,0.003], + [12055,0.002], + [12057,0.003], + [12059,0.014], + [12061,0.003], + [12063,0.007], + [12065,0.005], + [12067,0.002], + [12069,0.004], + [12071,0.002], + [12073,0.002], + [12075,0.002], + [12077,0.012], + [12079,0.003], + [12081,0.002], + [12083,0.003], + [12085,0.006], + [12086,0.002], + [12087,0.001], + [12089,0.005], + [12091,0.004], + [12093,0.005], + [12095,0.002], + [12097,0.004], + [12099,0.002], + [12101,0.004], + [12103,0.003], + [12105,0.003], + [12107,0.004], + [12109,0.004], + [12111,0.004], + [12113,0.005], + [12115,0.002], + [12117,0.003], + [12119,0.003], + [12121,0.001], + [12123,0.003], + [12125,0.008], + [12127,0.003], + [12129,0.002], + [12131,0.006], + [12133,0.014], + [13001,0.005], + [13003,0.01], + [13005,0], + [13007,0], + [13009,0.002], + [13011,0.005], + [13013,0.002], + [13015,0.003], + [13017,0], + [13019,0.005], + [13021,0.002], + [13023,0.001], + [13025,0.003], + [13027,0], + [13029,0.004], + [13031,0.004], + [13033,0], + [13035,0], + [13037,0], + [13039,0.007], + [13043,0], + [13045,0.01], + [13047,0.004], + [13049,0.02], + [13051,0.003], + [13053,0.003], + [13055,0.001], + [13057,0.004], + [13059,0.001], + [13061,0], + [13063,0.002], + [13065,0], + [13067,0.003], + [13069,0], + [13071,0.011], + [13073,0.003], + [13075,0.003], + [13077,0.003], + [13079,0.001], + [13081,0], + [13083,0], + [13085,0.001], + [13087,0.001], + [13089,0.01], + [13091,0], + [13093,0], + [13095,0.002], + [13097,0.001], + [13099,0.003], + [13101,0.022], + [13103,0.002], + [13105,0], + [13107,0.003], + [13109,0.001], + [13111,0.001], + [13113,0.002], + [13115,0.002], + [13117,0.003], + [13119,0.001], + [13121,0.004], + [13123,0.017], + [13125,0.003], + [13127,0.004], + [13129,0.013], + [13131,0.005], + [13133,0], + [13135,0.004], + [13137,0.001], + [13139,0.002], + [13141,0], + [13143,0.001], + [13145,0.001], + [13147,0], + [13149,0], + [13151,0.001], + [13153,0.005], + [13155,0.001], + [13157,0.001], + [13159,0.001], + [13161,0], + [13163,0.001], + [13165,0.014], + [13167,0], + [13169,0.002], + [13171,0.001], + [13173,0.002], + [13175,0.001], + [13177,0.001], + [13179,0.005], + [13181,0.001], + [13183,0.002], + [13185,0.004], + [13187,0.003], + [13189,0], + [13191,0.001], + [13193,0], + [13195,0.004], + [13197,0.002], + [13199,0.001], + [13201,0.006], + [13205,0.003], + [13207,0.002], + [13209,0], + [13211,0.001], + [13213,0.001], + [13215,0.004], + [13217,0.003], + [13219,0.001], + [13221,0], + [13223,0.003], + [13225,0.006], + [13227,0.009], + [13229,0.004], + [13231,0], + [13233,0.005], + [13235,0.001], + [13237,0], + [13239,0], + [13241,0.003], + [13243,0], + [13245,0.003], + [13247,0.001], + [13249,0], + [13251,0.002], + [13253,0], + [13255,0.004], + [13257,0.002], + [13259,0.001], + [13261,0], + [13263,0], + [13265,0], + [13267,0.003], + [13269,0], + [13271,0.001], + [13273,0.001], + [13275,0.001], + [13277,0.003], + [13279,0], + [13281,0.004], + [13283,0], + [13285,0.003], + [13287,0], + [13289,0], + [13291,0.005], + [13293,0.006], + [13295,0.002], + [13297,0.001], + [13299,0.006], + [13301,0], + [13303,0.002], + [13305,0.001], + [13307,0.003], + [13309,0], + [13311,0.006], + [13313,0.008], + [13315,0.004], + [13317,0], + [13319,0.001], + [13321,0.004], + [15001,0.005], + [15003,0.002], + [15005,0.015], + [15007,0.006], + [15009,0.003], + [16001,0.005], + [16003,0.018], + [16005,0.03], + [16007,0.011], + [16009,0.093], + [16011,0.064], + [16013,0.007], + [16015,0.004], + [16017,0.009], + [16019,0.004], + [16021,0.014], + [16023,0], + [16025,0], + [16027,0.01], + [16029,0.002], + [16031,0.012], + [16033,0.046], + [16035,0.022], + [16037,0.011], + [16039,0.021], + [16041,0.009], + [16043,0.001], + [16045,0.014], + [16047,0.005], + [16049,0.04], + [16051,0.012], + [16053,0.007], + [16055,0.014], + [16057,0.013], + [16059,0.005], + [16061,0.084], + [16063,0.006], + [16065,0.001], + [16067,0.013], + [16069,0.061], + [16071,0.002], + [16073,0.032], + [16075,0.006], + [16077,0.059], + [16079,0.031], + [16081,0.007], + [16083,0.007], + [16085,0.002], + [16087,0.01], + [17001,0.004], + [17003,0.006], + [17005,0.005], + [17007,0.003], + [17009,0.004], + [17011,0.002], + [17013,0.005], + [17015,0.001], + [17017,0.002], + [17019,0.002], + [17021,0.003], + [17023,0.001], + [17025,0.002], + [17027,0.003], + [17029,0.002], + [17031,0.003], + [17033,0.001], + [17035,0], + [17037,0.001], + [17039,0], + [17041,0.007], + [17043,0.002], + [17045,0.001], + [17047,0.006], + [17049,0.001], + [17051,0.003], + [17053,0.005], + [17055,0.002], + [17057,0.005], + [17059,0.005], + [17061,0], + [17063,0.001], + [17065,0], + [17067,0], + [17069,0.002], + [17071,0], + [17073,0.001], + [17075,0.001], + [17077,0.003], + [17079,0], + [17081,0.002], + [17083,0.001], + [17085,0.003], + [17087,0.001], + [17089,0.005], + [17091,0.002], + [17093,0.001], + [17095,0.005], + [17097,0.003], + [17099,0.001], + [17101,0.01], + [17103,0.003], + [17105,0], + [17107,0.003], + [17109,0.001], + [17111,0.001], + [17113,0.002], + [17115,0.002], + [17117,0.002], + [17119,0.002], + [17121,0.002], + [17123,0.001], + [17125,0.002], + [17127,0], + [17129,0.003], + [17131,0.001], + [17133,0], + [17135,0.002], + [17137,0.003], + [17139,0.004], + [17141,0.003], + [17143,0.003], + [17145,0.001], + [17147,0.001], + [17149,0.002], + [17151,0], + [17153,0.001], + [17155,0], + [17157,0.002], + [17159,0.005], + [17161,0.004], + [17163,0.002], + [17165,0.002], + [17167,0.001], + [17169,0.001], + [17171,0.006], + [17173,0.001], + [17175,0], + [17177,0.002], + [17179,0.001], + [17181,0.001], + [17183,0.003], + [17185,0], + [17187,0.002], + [17189,0.001], + [17191,0.002], + [17193,0.002], + [17195,0.002], + [17197,0.003], + [17199,0.002], + [17201,0.003], + [17203,0.001], + [18001,0.001], + [18003,0.002], + [18005,0.002], + [18007,0.001], + [18009,0.003], + [18011,0.002], + [18013,0], + [18015,0.001], + [18017,0.005], + [18019,0.002], + [18021,0], + [18023,0.002], + [18025,0.004], + [18027,0], + [18029,0.001], + [18031,0.005], + [18033,0], + [18035,0.001], + [18037,0.003], + [18039,0.002], + [18041,0.002], + [18043,0.004], + [18045,0.002], + [18047,0], + [18049,0.003], + [18051,0], + [18053,0.002], + [18055,0], + [18057,0.002], + [18059,0], + [18061,0.001], + [18063,0.002], + [18065,0.003], + [18067,0.006], + [18069,0.004], + [18071,0.002], + [18073,0], + [18075,0.001], + [18077,0.002], + [18079,0.005], + [18081,0.001], + [18083,0.001], + [18085,0.005], + [18087,0.001], + [18089,0.003], + [18091,0.003], + [18093,0.006], + [18095,0.002], + [18097,0.003], + [18099,0], + [18101,0.003], + [18103,0.008], + [18105,0.002], + [18107,0.002], + [18109,0], + [18111,0.001], + [18113,0.001], + [18115,0.001], + [18117,0.001], + [18119,0.004], + [18121,0.007], + [18123,0.002], + [18125,0], + [18127,0.002], + [18129,0.001], + [18131,0.002], + [18133,0.001], + [18135,0.001], + [18137,0.003], + [18139,0], + [18141,0.005], + [18143,0.003], + [18145,0.001], + [18147,0.002], + [18149,0.001], + [18151,0.001], + [18153,0.001], + [18155,0], + [18157,0.003], + [18159,0], + [18161,0], + [18163,0.001], + [18165,0.003], + [18167,0.002], + [18169,0.008], + [18171,0], + [18173,0.002], + [18175,0.004], + [18177,0.004], + [18179,0.002], + [18181,0.003], + [18183,0.003], + [19001,0], + [19003,0.001], + [19005,0.003], + [19007,0.002], + [19009,0], + [19011,0.002], + [19013,0.004], + [19015,0.004], + [19017,0.004], + [19019,0.004], + [19021,0], + [19023,0.002], + [19025,0.004], + [19027,0.004], + [19029,0.005], + [19031,0.003], + [19033,0.005], + [19035,0.003], + [19037,0.002], + [19039,0.004], + [19041,0], + [19043,0.002], + [19045,0.003], + [19047,0.006], + [19049,0.001], + [19051,0.004], + [19053,0.003], + [19055,0.003], + [19057,0.002], + [19059,0.003], + [19061,0.003], + [19063,0.002], + [19065,0.002], + [19067,0.006], + [19069,0.001], + [19071,0.006], + [19073,0.001], + [19075,0.001], + [19077,0.001], + [19079,0.001], + [19081,0.002], + [19083,0.016], + [19085,0.002], + [19087,0.002], + [19089,0], + [19091,0.003], + [19093,0.006], + [19095,0.001], + [19097,0], + [19099,0.002], + [19101,0], + [19103,0.002], + [19105,0.001], + [19107,0.002], + [19109,0.004], + [19111,0.002], + [19113,0.002], + [19115,0.009], + [19117,0], + [19119,0.006], + [19121,0.001], + [19123,0.003], + [19125,0.002], + [19127,0.003], + [19129,0.009], + [19131,0.005], + [19133,0.017], + [19135,0], + [19137,0.009], + [19139,0.002], + [19141,0.002], + [19143,0.003], + [19145,0.005], + [19147,0.002], + [19149,0.005], + [19151,0.003], + [19153,0.003], + [19155,0.004], + [19157,0], + [19159,0.004], + [19161,0], + [19163,0.003], + [19165,0.003], + [19167,0.003], + [19169,0.002], + [19171,0.084], + [19173,0.002], + [19175,0], + [19177,0], + [19179,0.001], + [19181,0.001], + [19183,0.003], + [19185,0.004], + [19187,0.003], + [19189,0.003], + [19191,0.001], + [19193,0.02], + [19195,0.001], + [19197,0], + [20001,0.003], + [20003,0.021], + [20005,0.004], + [20007,0.008], + [20009,0.011], + [20011,0.003], + [20013,0.088], + [20015,0.007], + [20017,0.006], + [20019,0.039], + [20021,0.018], + [20023,0], + [20025,0.01], + [20027,0.007], + [20029,0.002], + [20031,0.003], + [20033,0], + [20035,0.015], + [20037,0.004], + [20039,0.005], + [20041,0.009], + [20043,0.005], + [20045,0.025], + [20047,0], + [20049,0.017], + [20051,0.002], + [20053,0.009], + [20055,0.004], + [20057,0.009], + [20059,0.006], + [20061,0.012], + [20063,0.003], + [20065,0], + [20067,0], + [20069,0.002], + [20071,0.006], + [20073,0.001], + [20075,0], + [20077,0.015], + [20079,0.003], + [20081,0.014], + [20083,0.003], + [20085,0.085], + [20087,0.008], + [20089,0.006], + [20091,0.003], + [20093,0], + [20095,0.004], + [20097,0.007], + [20099,0.008], + [20101,0.008], + [20103,0.007], + [20105,0], + [20107,0.007], + [20109,0.008], + [20111,0.007], + [20113,0.006], + [20115,0.002], + [20117,0.001], + [20119,0.002], + [20121,0.008], + [20123,0.007], + [20125,0.033], + [20127,0.001], + [20129,0.002], + [20131,0.007], + [20133,0.004], + [20135,0.003], + [20137,0.01], + [20139,0.002], + [20141,0.004], + [20143,0.006], + [20145,0.01], + [20147,0.004], + [20149,0.009], + [20151,0.011], + [20153,0.008], + [20155,0.012], + [20157,0.002], + [20159,0.007], + [20161,0.004], + [20163,0.002], + [20165,0], + [20167,0.009], + [20169,0.005], + [20171,0.001], + [20173,0.01], + [20175,0.006], + [20177,0.009], + [20179,0.003], + [20181,0.008], + [20183,0.005], + [20185,0.011], + [20187,0.001], + [20189,0.004], + [20191,0.014], + [20193,0.004], + [20195,0.001], + [20197,0.006], + [20199,0], + [20201,0.001], + [20203,0.009], + [20205,0.005], + [20207,0.011], + [20209,0.005], + [21001,0.002], + [21003,0], + [21005,0], + [21007,0.006], + [21009,0.001], + [21011,0.001], + [21013,0.002], + [21015,0.001], + [21017,0], + [21019,0.001], + [21021,0.003], + [21023,0.003], + [21025,0.002], + [21027,0.003], + [21029,0.002], + [21031,0.002], + [21033,0], + [21035,0.003], + [21037,0.001], + [21039,0.006], + [21041,0.003], + [21043,0.005], + [21045,0.003], + [21047,0.008], + [21049,0.002], + [21051,0.001], + [21053,0], + [21055,0.002], + [21057,0], + [21059,0.002], + [21061,0.004], + [21063,0.001], + [21065,0.002], + [21067,0.002], + [21069,0.001], + [21071,0], + [21073,0.001], + [21075,0.007], + [21077,0], + [21079,0.002], + [21081,0.001], + [21083,0.001], + [21085,0.004], + [21087,0.007], + [21089,0], + [21091,0.001], + [21093,0.002], + [21095,0], + [21097,0], + [21099,0.005], + [21101,0.002], + [21103,0], + [21105,0.004], + [21107,0.002], + [21109,0], + [21111,0.002], + [21113,0.003], + [21115,0.001], + [21117,0.001], + [21119,0.001], + [21121,0.008], + [21123,0.001], + [21125,0.004], + [21127,0], + [21129,0.007], + [21131,0], + [21133,0.002], + [21135,0.002], + [21137,0], + [21139,0.001], + [21141,0.001], + [21143,0.006], + [21145,0.004], + [21147,0.007], + [21149,0.005], + [21151,0.004], + [21153,0], + [21155,0.002], + [21157,0.001], + [21159,0.002], + [21161,0], + [21163,0.007], + [21165,0], + [21167,0.001], + [21169,0.003], + [21171,0.001], + [21173,0.003], + [21175,0.005], + [21177,0.002], + [21179,0.001], + [21181,0.003], + [21183,0], + [21185,0.002], + [21187,0.002], + [21189,0], + [21191,0], + [21193,0], + [21195,0.001], + [21197,0.006], + [21199,0.003], + [21201,0], + [21203,0.012], + [21205,0.002], + [21207,0], + [21209,0.002], + [21211,0], + [21213,0.004], + [21215,0.002], + [21217,0.001], + [21219,0], + [21221,0], + [21223,0.005], + [21225,0], + [21227,0.003], + [21229,0], + [21231,0], + [21233,0.001], + [21235,0.003], + [21237,0.003], + [21239,0], + [22001,0.001], + [22003,0.021], + [22005,0.001], + [22007,0.004], + [22009,0.009], + [22011,0.005], + [22013,0], + [22015,0.005], + [22017,0.004], + [22019,0.003], + [22021,0.003], + [22023,0.005], + [22025,0.001], + [22027,0.003], + [22029,0], + [22031,0.009], + [22033,0.002], + [22035,0], + [22037,0.005], + [22039,0.003], + [22041,0.001], + [22043,0.003], + [22045,0.001], + [22047,0.001], + [22049,0.001], + [22051,0.004], + [22053,0.008], + [22055,0.003], + [22057,0.022], + [22059,0.01], + [22061,0.002], + [22063,0.004], + [22065,0.002], + [22067,0.001], + [22069,0.008], + [22071,0.002], + [22073,0.002], + [22075,0.011], + [22077,0], + [22079,0.008], + [22081,0], + [22083,0], + [22085,0.066], + [22087,0.004], + [22089,0.004], + [22091,0.011], + [22093,0], + [22095,0], + [22097,0.002], + [22099,0.006], + [22101,0.016], + [22103,0.006], + [22105,0.003], + [22107,0], + [22109,0.057], + [22111,0.003], + [22113,0.005], + [22115,0.013], + [22117,0.002], + [22119,0.004], + [22121,0.001], + [22123,0.002], + [22125,0.002], + [22127,0.005], + [23001,0.002], + [23003,0.019], + [23005,0.002], + [23007,0.001], + [23009,0.005], + [23011,0.005], + [23013,0.005], + [23015,0.004], + [23017,0.003], + [23019,0.013], + [23021,0.008], + [23023,0.004], + [23025,0.005], + [23027,0.004], + [23029,0.053], + [23031,0.004], + [24001,0.001], + [24003,0.002], + [24005,0.003], + [24009,0.001], + [24011,0.004], + [24013,0.003], + [24015,0.001], + [24017,0.006], + [24019,0.001], + [24021,0.003], + [24023,0.002], + [24025,0.002], + [24027,0.003], + [24029,0.001], + [24031,0.003], + [24033,0.004], + [24035,0.001], + [24037,0.001], + [24039,0.004], + [24041,0.002], + [24043,0.001], + [24045,0.003], + [24047,0.001], + [24510,0.003], + [25001,0.006], + [25003,0.003], + [25005,0.001], + [25007,0.008], + [25009,0.002], + [25011,0.003], + [25013,0.002], + [25015,0.002], + [25017,0.002], + [25019,0.003], + [25021,0.001], + [25023,0.002], + [25025,0.003], + [25027,0.003], + [26001,0.006], + [26003,0.036], + [26005,0.003], + [26007,0.004], + [26009,0.008], + [26011,0.013], + [26013,0.1], + [26015,0.004], + [26017,0.003], + [26019,0.017], + [26021,0.004], + [26023,0.004], + [26025,0.006], + [26027,0.011], + [26029,0.016], + [26031,0.021], + [26033,0.142], + [26035,0.007], + [26037,0.002], + [26039,0.003], + [26041,0.02], + [26043,0.009], + [26045,0.006], + [26047,0.029], + [26049,0.003], + [26051,0.005], + [26053,0.026], + [26055,0.01], + [26057,0.006], + [26059,0.004], + [26061,0.004], + [26063,0.002], + [26065,0.004], + [26067,0.002], + [26069,0.01], + [26071,0.017], + [26073,0.032], + [26075,0.004], + [26077,0.002], + [26079,0.009], + [26081,0.004], + [26083,0.004], + [26085,0.009], + [26087,0.003], + [26089,0.031], + [26091,0.005], + [26093,0.003], + [26095,0.065], + [26097,0.161], + [26099,0.003], + [26101,0.018], + [26103,0.008], + [26105,0.01], + [26107,0.006], + [26109,0.023], + [26111,0.004], + [26113,0.005], + [26115,0.002], + [26117,0.005], + [26119,0.012], + [26121,0.008], + [26123,0.009], + [26125,0.003], + [26127,0.01], + [26129,0.011], + [26131,0.008], + [26133,0.007], + [26135,0.007], + [26137,0.003], + [26139,0.003], + [26141,0.005], + [26143,0.007], + [26145,0.003], + [26147,0.002], + [26149,0.003], + [26151,0.003], + [26153,0.07], + [26155,0.003], + [26157,0.003], + [26159,0.01], + [26161,0.004], + [26163,0.003], + [26165,0.005], + [27001,0.021], + [27003,0.007], + [27005,0.074], + [27007,0.202], + [27009,0.002], + [27011,0.003], + [27013,0.003], + [27015,0.003], + [27017,0.051], + [27019,0.002], + [27021,0.118], + [27023,0.02], + [27025,0.005], + [27027,0.018], + [27029,0.083], + [27031,0.088], + [27033,0.001], + [27035,0.009], + [27037,0.003], + [27039,0.004], + [27041,0.003], + [27043,0.003], + [27045,0], + [27047,0.005], + [27049,0.008], + [27051,0.003], + [27053,0.007], + [27055,0.002], + [27057,0.022], + [27059,0.003], + [27061,0.037], + [27063,0], + [27065,0.005], + [27067,0.003], + [27069,0.005], + [27071,0.031], + [27073,0.002], + [27075,0.009], + [27077,0.013], + [27079,0.002], + [27081,0.006], + [27083,0.004], + [27085,0.002], + [27087,0.399], + [27089,0.004], + [27091,0.002], + [27093,0.001], + [27095,0.05], + [27097,0.002], + [27099,0.001], + [27101,0.003], + [27103,0], + [27105,0.007], + [27107,0.022], + [27109,0.004], + [27111,0.005], + [27113,0.016], + [27115,0.024], + [27117,0.019], + [27119,0.017], + [27121,0.003], + [27123,0.006], + [27125,0.017], + [27127,0.05], + [27129,0.015], + [27131,0.004], + [27133,0.003], + [27135,0.018], + [27137,0.018], + [27139,0.005], + [27141,0.006], + [27143,0.003], + [27145,0.002], + [27147,0.004], + [27149,0.017], + [27151,0], + [27153,0.005], + [27155,0.05], + [27157,0.003], + [27159,0.011], + [27161,0.007], + [27163,0.004], + [27165,0.001], + [27167,0.003], + [27169,0.004], + [27171,0.003], + [27173,0.025], + [28001,0.003], + [28003,0.002], + [28005,0], + [28007,0.001], + [28009,0], + [28011,0.001], + [28013,0], + [28015,0], + [28017,0.001], + [28019,0.004], + [28021,0.001], + [28023,0.001], + [28025,0.005], + [28027,0.002], + [28029,0], + [28031,0.002], + [28033,0.002], + [28035,0.002], + [28037,0.002], + [28039,0.005], + [28041,0.002], + [28043,0.007], + [28045,0.006], + [28047,0.006], + [28049,0.001], + [28051,0], + [28053,0.003], + [28055,0], + [28057,0.004], + [28059,0.004], + [28061,0], + [28063,0.002], + [28065,0], + [28067,0.002], + [28069,0.037], + [28071,0.002], + [28073,0.001], + [28075,0.002], + [28077,0.002], + [28079,0.057], + [28081,0.003], + [28083,0], + [28085,0], + [28087,0.001], + [28089,0.002], + [28091,0], + [28093,0.001], + [28095,0], + [28097,0], + [28099,0.167], + [28101,0.053], + [28103,0], + [28105,0.001], + [28107,0.002], + [28109,0.006], + [28111,0], + [28113,0.005], + [28115,0], + [28117,0.001], + [28119,0], + [28121,0.002], + [28123,0.004], + [28125,0.001], + [28127,0], + [28129,0], + [28131,0.002], + [28133,0.001], + [28135,0.002], + [28137,0.001], + [28139,0.001], + [28141,0.002], + [28143,0], + [28145,0], + [28147,0], + [28149,0.003], + [28151,0.001], + [28153,0.001], + [28155,0.002], + [28157,0], + [28159,0.013], + [28161,0.001], + [28163,0.003], + [29001,0.001], + [29003,0.003], + [29005,0.008], + [29007,0.004], + [29009,0.007], + [29011,0.025], + [29013,0.006], + [29015,0.015], + [29017,0.009], + [29019,0.003], + [29021,0.005], + [29023,0.006], + [29025,0.007], + [29027,0.005], + [29029,0.006], + [29031,0.001], + [29033,0.002], + [29035,0.016], + [29037,0.006], + [29039,0.003], + [29041,0], + [29043,0.005], + [29045,0.003], + [29047,0.005], + [29049,0.004], + [29051,0.004], + [29053,0.005], + [29055,0], + [29057,0.009], + [29059,0.014], + [29061,0.006], + [29063,0.008], + [29065,0.007], + [29067,0.005], + [29069,0.002], + [29071,0.002], + [29073,0.005], + [29075,0.003], + [29077,0.005], + [29079,0.006], + [29081,0.007], + [29083,0.004], + [29085,0.016], + [29087,0.01], + [29089,0.009], + [29091,0.012], + [29093,0.007], + [29095,0.004], + [29097,0.015], + [29099,0.003], + [29101,0.004], + [29103,0], + [29105,0.01], + [29107,0.003], + [29109,0.008], + [29111,0.008], + [29113,0.003], + [29115,0.003], + [29117,0.006], + [29119,0.029], + [29121,0.007], + [29123,0.002], + [29125,0.01], + [29127,0.004], + [29129,0], + [29131,0.012], + [29133,0.009], + [29135,0.004], + [29137,0.006], + [29139,0], + [29141,0.004], + [29143,0.004], + [29145,0.024], + [29147,0.002], + [29149,0.016], + [29151,0.001], + [29153,0.01], + [29155,0], + [29157,0.005], + [29159,0.001], + [29161,0.008], + [29163,0.003], + [29165,0.003], + [29167,0.013], + [29169,0.009], + [29171,0.002], + [29173,0.006], + [29175,0.007], + [29177,0.005], + [29179,0.004], + [29181,0.006], + [29183,0.002], + [29185,0.009], + [29186,0], + [29187,0.004], + [29189,0.002], + [29195,0.002], + [29197,0], + [29199,0.001], + [29201,0.004], + [29203,0.002], + [29205,0.002], + [29207,0], + [29209,0.007], + [29211,0.014], + [29213,0.01], + [29215,0.017], + [29217,0.006], + [29219,0.009], + [29221,0.003], + [29223,0.002], + [29225,0.005], + [29227,0], + [29229,0.003], + [29510,0.003], + [30001,0.014], + [30003,0.654], + [30005,0.513], + [30007,0.004], + [30009,0.013], + [30011,0.008], + [30013,0.046], + [30015,0.187], + [30017,0.01], + [30019,0.032], + [30021,0.024], + [30023,0.019], + [30025,0.01], + [30027,0.014], + [30029,0.015], + [30031,0.009], + [30033,0], + [30035,0.65], + [30037,0.004], + [30039,0.004], + [30041,0.237], + [30043,0.01], + [30045,0.023], + [30047,0.243], + [30049,0.017], + [30051,0], + [30053,0.013], + [30055,0.06], + [30057,0.002], + [30059,0.014], + [30061,0.027], + [30063,0.02], + [30065,0.026], + [30067,0.008], + [30069,0], + [30071,0.094], + [30073,0.154], + [30075,0.017], + [30077,0.049], + [30079,0.012], + [30081,0.009], + [30083,0.02], + [30085,0.578], + [30087,0.374], + [30089,0.035], + [30091,0.01], + [30093,0.023], + [30095,0.01], + [30097,0.01], + [30099,0.01], + [30101,0.076], + [30103,0], + [30105,0.089], + [30107,0.034], + [30109,0.012], + [30111,0.044], + [31001,0.004], + [31003,0.001], + [31005,0.002], + [31007,0], + [31009,0], + [31011,0.001], + [31013,0.023], + [31015,0.01], + [31017,0.004], + [31019,0.002], + [31021,0.023], + [31023,0.004], + [31025,0.005], + [31027,0.008], + [31029,0], + [31031,0.036], + [31033,0.006], + [31035,0.003], + [31037,0.013], + [31039,0.004], + [31041,0.002], + [31043,0.022], + [31045,0.035], + [31047,0.005], + [31049,0.015], + [31051,0.004], + [31053,0.01], + [31055,0.006], + [31057,0], + [31059,0.006], + [31061,0], + [31063,0.003], + [31065,0.002], + [31067,0.007], + [31069,0.005], + [31071,0], + [31073,0.002], + [31075,0], + [31077,0.003], + [31079,0.006], + [31081,0.002], + [31083,0.003], + [31085,0], + [31087,0.001], + [31089,0.006], + [31091,0.006], + [31093,0], + [31095,0.002], + [31097,0.007], + [31099,0.008], + [31101,0.009], + [31103,0], + [31105,0.012], + [31107,0.095], + [31109,0.007], + [31111,0.004], + [31113,0.011], + [31115,0.003], + [31117,0], + [31119,0.016], + [31121,0], + [31123,0.005], + [31125,0.005], + [31127,0.005], + [31129,0.001], + [31131,0.001], + [31133,0], + [31135,0.001], + [31137,0.002], + [31139,0.001], + [31141,0.004], + [31143,0.002], + [31145,0.003], + [31147,0.029], + [31149,0.008], + [31151,0.002], + [31153,0.005], + [31155,0.004], + [31157,0.019], + [31159,0.001], + [31161,0.085], + [31163,0], + [31165,0.005], + [31167,0], + [31169,0.003], + [31171,0.009], + [31173,0.586], + [31175,0.005], + [31177,0.001], + [31179,0.002], + [31181,0.009], + [31183,0], + [31185,0.005], + [32001,0.046], + [32003,0.009], + [32005,0.02], + [32007,0.066], + [32009,0.017], + [32011,0.051], + [32013,0.057], + [32015,0.034], + [32017,0.011], + [32019,0.027], + [32021,0.206], + [32023,0.018], + [32027,0.034], + [32029,0.004], + [32031,0.016], + [32033,0.056], + [32510,0.023], + [33001,0.004], + [33003,0.001], + [33005,0.002], + [33007,0.003], + [33009,0.003], + [33011,0.001], + [33013,0.003], + [33015,0], + [33017,0.001], + [33019,0.003], + [34001,0.004], + [34003,0.002], + [34005,0.001], + [34007,0.002], + [34009,0], + [34011,0.008], + [34013,0.002], + [34015,0.001], + [34017,0.004], + [34019,0.001], + [34021,0.002], + [34023,0.002], + [34025,0.002], + [34027,0.001], + [34029,0.001], + [34031,0.003], + [34033,0.003], + [34035,0.003], + [34037,0], + [34039,0.003], + [34041,0.002], + [35001,0.049], + [35003,0.001], + [35005,0.017], + [35006,0.415], + [35007,0.02], + [35009,0.01], + [35011,0.002], + [35013,0.011], + [35015,0.017], + [35017,0.021], + [35019,0.058], + [35021,0], + [35023,0.015], + [35025,0.01], + [35027,0.006], + [35028,0.011], + [35029,0.009], + [35031,0.759], + [35033,0.003], + [35035,0.068], + [35037,0.019], + [35039,0.163], + [35041,0.01], + [35043,0.128], + [35045,0.396], + [35047,0.014], + [35049,0.032], + [35051,0.044], + [35053,0.122], + [35055,0.065], + [35057,0.003], + [35059,0.021], + [35061,0.043], + [36001,0.002], + [36003,0.002], + [36005,0.007], + [36007,0.002], + [36009,0.032], + [36011,0.001], + [36013,0.003], + [36015,0.003], + [36017,0.004], + [36019,0.003], + [36021,0.001], + [36023,0.002], + [36025,0.001], + [36027,0.003], + [36029,0.005], + [36031,0.002], + [36033,0.071], + [36035,0.004], + [36037,0.008], + [36039,0.006], + [36041,0.001], + [36043,0.002], + [36045,0.005], + [36047,0.003], + [36049,0.003], + [36051,0.002], + [36053,0.005], + [36055,0.004], + [36057,0.001], + [36059,0.003], + [36061,0.004], + [36063,0.01], + [36065,0.002], + [36067,0.006], + [36069,0.004], + [36071,0.004], + [36073,0.003], + [36075,0.002], + [36077,0.002], + [36079,0.002], + [36081,0.005], + [36083,0.001], + [36085,0.002], + [36087,0.002], + [36089,0.008], + [36091,0.002], + [36093,0.002], + [36095,0.002], + [36097,0.001], + [36099,0.004], + [36101,0.001], + [36103,0.003], + [36105,0.003], + [36107,0.002], + [36109,0.002], + [36111,0.002], + [36113,0.003], + [36115,0.003], + [36117,0.002], + [36119,0.004], + [36121,0.005], + [36123,0.002], + [37001,0.004], + [37003,0.004], + [37005,0.004], + [37007,0.003], + [37009,0.004], + [37011,0.013], + [37013,0.003], + [37015,0.007], + [37017,0.025], + [37019,0.007], + [37021,0.004], + [37023,0.009], + [37025,0.003], + [37027,0.004], + [37029,0.001], + [37031,0.003], + [37033,0.002], + [37035,0.003], + [37037,0.001], + [37039,0.015], + [37041,0.004], + [37043,0.004], + [37045,0.003], + [37047,0.037], + [37049,0.009], + [37051,0.015], + [37053,0.003], + [37055,0.004], + [37057,0.003], + [37059,0.003], + [37061,0.005], + [37063,0.002], + [37065,0.001], + [37067,0.004], + [37069,0.012], + [37071,0.003], + [37073,0.009], + [37075,0.101], + [37077,0.004], + [37079,0.005], + [37081,0.005], + [37083,0.038], + [37085,0.01], + [37087,0.005], + [37089,0.004], + [37091,0.012], + [37093,0.081], + [37095,0.001], + [37097,0.003], + [37099,0.08], + [37101,0.007], + [37103,0.01], + [37105,0.008], + [37107,0.002], + [37109,0.002], + [37111,0.003], + [37113,0.007], + [37115,0.004], + [37117,0.002], + [37119,0.004], + [37121,0.001], + [37123,0.003], + [37125,0.008], + [37127,0.006], + [37129,0.003], + [37131,0.007], + [37133,0.005], + [37135,0.006], + [37137,0.002], + [37139,0.001], + [37141,0.005], + [37143,0.003], + [37145,0.007], + [37147,0.003], + [37149,0.003], + [37151,0.005], + [37153,0.024], + [37155,0.399], + [37157,0.005], + [37159,0.004], + [37161,0.004], + [37163,0.018], + [37165,0.119], + [37167,0.005], + [37169,0.004], + [37171,0.003], + [37173,0.299], + [37175,0.003], + [37177,0.009], + [37179,0.002], + [37181,0.015], + [37183,0.004], + [37185,0.056], + [37187,0.003], + [37189,0.007], + [37191,0.003], + [37193,0.003], + [37195,0.006], + [37197,0.004], + [37199,0.005], + [38001,0.01], + [38003,0.017], + [38005,0.553], + [38007,0], + [38009,0.041], + [38011,0.012], + [38013,0.007], + [38015,0.042], + [38017,0.01], + [38019,0.014], + [38021,0.013], + [38023,0.013], + [38025,0.096], + [38027,0.053], + [38029,0.001], + [38031,0.018], + [38033,0.025], + [38035,0.027], + [38037,0.008], + [38039,0.018], + [38041,0.028], + [38043,0.015], + [38045,0.003], + [38047,0.002], + [38049,0.011], + [38051,0.006], + [38053,0.11], + [38055,0.072], + [38057,0.029], + [38059,0.033], + [38061,0.286], + [38063,0.003], + [38065,0.01], + [38067,0.028], + [38069,0.037], + [38071,0.106], + [38073,0.006], + [38075,0.001], + [38077,0.022], + [38079,0.783], + [38081,0.005], + [38083,0.007], + [38085,0.833], + [38087,0.007], + [38089,0.013], + [38091,0], + [38093,0.016], + [38095,0.042], + [38097,0.01], + [38099,0.022], + [38101,0.021], + [38103,0.002], + [38105,0.031], + [39001,0], + [39003,0.002], + [39005,0], + [39007,0.001], + [39009,0.002], + [39011,0.002], + [39013,0.002], + [39015,0.002], + [39017,0.003], + [39019,0], + [39021,0.004], + [39023,0.002], + [39025,0.001], + [39027,0.001], + [39029,0.001], + [39031,0.002], + [39033,0.001], + [39035,0.003], + [39037,0.003], + [39039,0.005], + [39041,0.001], + [39043,0.004], + [39045,0.001], + [39047,0], + [39049,0.002], + [39051,0.004], + [39053,0.004], + [39055,0.001], + [39057,0.001], + [39059,0.003], + [39061,0.001], + [39063,0.001], + [39065,0], + [39067,0.001], + [39069,0.002], + [39071,0.003], + [39073,0], + [39075,0], + [39077,0.002], + [39079,0], + [39081,0.001], + [39083,0.002], + [39085,0.001], + [39087,0], + [39089,0.001], + [39091,0.001], + [39093,0.004], + [39095,0.003], + [39097,0.001], + [39099,0.003], + [39101,0.003], + [39103,0.001], + [39105,0.001], + [39107,0], + [39109,0.001], + [39111,0], + [39113,0.002], + [39115,0.001], + [39117,0.001], + [39119,0.003], + [39121,0.002], + [39123,0.003], + [39125,0.001], + [39127,0.003], + [39129,0.003], + [39131,0.005], + [39133,0.001], + [39135,0.001], + [39137,0], + [39139,0.001], + [39141,0], + [39143,0.003], + [39145,0.003], + [39147,0.002], + [39149,0.003], + [39151,0.001], + [39153,0.002], + [39155,0.001], + [39157,0.002], + [39159,0.003], + [39161,0.002], + [39163,0.001], + [39165,0.001], + [39167,0.005], + [39169,0.002], + [39171,0.003], + [39173,0.002], + [39175,0], + [40001,0.441], + [40003,0.019], + [40005,0.104], + [40007,0.014], + [40009,0.023], + [40011,0.075], + [40013,0.145], + [40015,0.228], + [40017,0.041], + [40019,0.078], + [40021,0.335], + [40023,0.156], + [40025,0.004], + [40027,0.042], + [40029,0.1], + [40031,0.052], + [40033,0.097], + [40035,0.218], + [40037,0.116], + [40039,0.037], + [40041,0.222], + [40043,0.048], + [40045,0.023], + [40047,0.02], + [40049,0.055], + [40051,0.049], + [40053,0.017], + [40055,0.034], + [40057,0.004], + [40059,0.004], + [40061,0.096], + [40063,0.216], + [40065,0.017], + [40067,0.058], + [40069,0.071], + [40071,0.091], + [40073,0.031], + [40075,0.048], + [40077,0.212], + [40079,0.113], + [40081,0.073], + [40083,0.036], + [40085,0.055], + [40087,0.06], + [40089,0.13], + [40091,0.161], + [40093,0.03], + [40095,0.07], + [40097,0.179], + [40099,0.108], + [40101,0.18], + [40103,0.077], + [40105,0.15], + [40107,0.147], + [40109,0.029], + [40111,0.142], + [40113,0.128], + [40115,0.181], + [40117,0.114], + [40119,0.042], + [40121,0.06], + [40123,0.127], + [40125,0.147], + [40127,0.143], + [40129,0.06], + [40131,0.127], + [40133,0.203], + [40135,0.199], + [40137,0.053], + [40139,0.013], + [40141,0.027], + [40143,0.05], + [40145,0.088], + [40147,0.105], + [40149,0.016], + [40151,0.016], + [40153,0.017], + [41001,0.012], + [41003,0.007], + [41005,0.008], + [41007,0.004], + [41009,0.009], + [41011,0.021], + [41013,0.01], + [41015,0.015], + [41017,0.006], + [41019,0.011], + [41021,0.039], + [41023,0.013], + [41025,0.015], + [41027,0.007], + [41029,0.013], + [41031,0.174], + [41033,0.012], + [41035,0.043], + [41037,0.025], + [41039,0.011], + [41041,0.028], + [41043,0.01], + [41045,0.013], + [41047,0.009], + [41049,0.014], + [41051,0.009], + [41053,0.02], + [41055,0.007], + [41057,0.009], + [41059,0.032], + [41061,0.012], + [41063,0.011], + [41065,0.031], + [41067,0.006], + [41069,0.008], + [41071,0.012], + [42001,0.001], + [42003,0.001], + [42005,0], + [42007,0.001], + [42009,0.001], + [42011,0.006], + [42013,0.001], + [42015,0], + [42017,0.002], + [42019,0], + [42021,0], + [42023,0], + [42025,0.002], + [42027,0.001], + [42029,0.001], + [42031,0.001], + [42033,0.002], + [42035,0.003], + [42037,0.001], + [42039,0], + [42041,0.001], + [42043,0.003], + [42045,0.002], + [42047,0.001], + [42049,0.003], + [42051,0], + [42053,0.001], + [42055,0.003], + [42057,0.003], + [42059,0], + [42061,0.002], + [42063,0.001], + [42065,0.001], + [42067,0], + [42069,0.001], + [42071,0.002], + [42073,0.001], + [42075,0.001], + [42077,0.003], + [42079,0.002], + [42081,0.002], + [42083,0.002], + [42085,0.001], + [42087,0.002], + [42089,0.003], + [42091,0.001], + [42093,0.001], + [42095,0.002], + [42097,0.004], + [42099,0.002], + [42101,0.004], + [42103,0.001], + [42105,0.002], + [42107,0.002], + [42109,0.001], + [42111,0.001], + [42113,0.001], + [42115,0], + [42117,0.001], + [42119,0.005], + [42121,0], + [42123,0.001], + [42125,0.001], + [42127,0.002], + [42129,0.001], + [42131,0.001], + [42133,0.002], + [44001,0.001], + [44003,0.003], + [44005,0.005], + [44007,0.005], + [44009,0.007], + [45001,0.001], + [45003,0.003], + [45005,0.003], + [45007,0.002], + [45009,0.004], + [45011,0.002], + [45013,0.003], + [45015,0.004], + [45017,0.008], + [45019,0.002], + [45021,0.002], + [45023,0.005], + [45025,0.003], + [45027,0.001], + [45029,0.008], + [45031,0.002], + [45033,0.021], + [45035,0.004], + [45037,0.004], + [45039,0.002], + [45041,0.003], + [45043,0.001], + [45045,0.005], + [45047,0.001], + [45049,0.001], + [45051,0.005], + [45053,0.002], + [45055,0.002], + [45057,0.001], + [45059,0.001], + [45061,0], + [45063,0.003], + [45065,0.002], + [45067,0.006], + [45069,0.03], + [45071,0.003], + [45073,0.006], + [45075,0.004], + [45077,0.002], + [45079,0.002], + [45081,0.003], + [45083,0.001], + [45085,0.003], + [45087,0.001], + [45089,0.005], + [45091,0.008], + [46003,0.023], + [46005,0.014], + [46007,0.603], + [46009,0.072], + [46011,0.011], + [46013,0.035], + [46015,0.109], + [46017,0.849], + [46019,0.033], + [46021,0.011], + [46023,0.313], + [46025,0.002], + [46027,0.03], + [46029,0.025], + [46031,0.691], + [46033,0.04], + [46035,0.02], + [46037,0.105], + [46039,0.002], + [46041,0.789], + [46043,0.021], + [46045,0.009], + [46047,0.065], + [46049,0.03], + [46051,0.01], + [46053,0.067], + [46055,0.075], + [46057,0], + [46059,0], + [46061,0], + [46063,0.025], + [46065,0.123], + [46067,0.015], + [46069,0.064], + [46071,0.579], + [46073,0.02], + [46075,0.059], + [46077,0.002], + [46079,0.014], + [46081,0.023], + [46083,0.004], + [46085,0.416], + [46087,0.006], + [46089,0.003], + [46091,0.076], + [46093,0.027], + [46095,0.589], + [46097,0.006], + [46099,0.021], + [46101,0.122], + [46102,0.933], + [46103,0.089], + [46105,0.037], + [46107,0.025], + [46109,0.385], + [46111,0.008], + [46115,0.017], + [46117,0.054], + [46119,0.014], + [46121,0.878], + [46123,0.109], + [46125,0.005], + [46127,0.013], + [46129,0.109], + [46135,0.033], + [46137,0.751], + [47001,0.006], + [47003,0.002], + [47005,0.004], + [47007,0.021], + [47009,0.002], + [47011,0.001], + [47013,0.002], + [47015,0.003], + [47017,0.002], + [47019,0.004], + [47021,0.004], + [47023,0], + [47025,0.002], + [47027,0], + [47029,0.009], + [47031,0], + [47033,0.001], + [47035,0.006], + [47037,0.002], + [47039,0], + [47041,0.003], + [47043,0.005], + [47045,0.006], + [47047,0.009], + [47049,0.004], + [47051,0], + [47053,0.004], + [47055,0.003], + [47057,0.003], + [47059,0.003], + [47061,0.01], + [47063,0.003], + [47065,0.002], + [47067,0], + [47069,0.003], + [47071,0.002], + [47073,0.002], + [47075,0], + [47077,0], + [47079,0.003], + [47081,0.006], + [47083,0.007], + [47085,0.008], + [47087,0.002], + [47089,0.001], + [47091,0.005], + [47093,0.003], + [47095,0.001], + [47097,0.008], + [47099,0.003], + [47101,0], + [47103,0.002], + [47105,0.002], + [47107,0.004], + [47109,0.002], + [47111,0.004], + [47113,0.001], + [47115,0.001], + [47117,0.001], + [47119,0.002], + [47121,0.003], + [47123,0.006], + [47125,0.006], + [47127,0.016], + [47129,0.004], + [47131,0.003], + [47133,0.001], + [47135,0.002], + [47137,0], + [47139,0.003], + [47141,0.003], + [47143,0.003], + [47145,0.004], + [47147,0.003], + [47149,0.003], + [47151,0.003], + [47153,0.001], + [47155,0.004], + [47157,0.002], + [47159,0.005], + [47161,0.002], + [47163,0.001], + [47165,0.003], + [47167,0.003], + [47169,0.005], + [47171,0.001], + [47173,0], + [47175,0], + [47177,0.003], + [47179,0.004], + [47181,0.001], + [47183,0.004], + [47185,0], + [47187,0.001], + [47189,0.003], + [48001,0.005], + [48003,0], + [48005,0.006], + [48007,0.002], + [48009,0.011], + [48011,0.011], + [48013,0.002], + [48015,0.002], + [48017,0.011], + [48019,0.012], + [48021,0.005], + [48023,0.003], + [48025,0.005], + [48027,0.006], + [48029,0.007], + [48031,0.017], + [48033,0], + [48035,0.006], + [48037,0.009], + [48039,0.007], + [48041,0.004], + [48043,0.024], + [48045,0], + [48047,0.01], + [48049,0.005], + [48051,0.004], + [48053,0.004], + [48055,0.006], + [48057,0.001], + [48059,0], + [48061,0.002], + [48063,0.005], + [48065,0.016], + [48067,0.002], + [48069,0.002], + [48071,0.002], + [48073,0.006], + [48075,0], + [48077,0.01], + [48079,0.001], + [48081,0.007], + [48083,0.011], + [48085,0.005], + [48087,0.021], + [48089,0.003], + [48091,0.003], + [48093,0.007], + [48095,0.004], + [48097,0.008], + [48099,0.008], + [48101,0.009], + [48103,0.003], + [48105,0], + [48107,0], + [48109,0], + [48111,0.012], + [48113,0.004], + [48115,0.011], + [48117,0.007], + [48119,0.001], + [48121,0.005], + [48123,0.012], + [48125,0.01], + [48127,0], + [48129,0.004], + [48131,0], + [48133,0.004], + [48135,0.006], + [48137,0.001], + [48139,0.008], + [48141,0.006], + [48143,0.016], + [48145,0.005], + [48147,0.008], + [48149,0], + [48151,0.012], + [48153,0.001], + [48155,0.005], + [48157,0.003], + [48159,0.003], + [48161,0.004], + [48163,0.001], + [48165,0.003], + [48167,0.004], + [48169,0.003], + [48171,0.032], + [48173,0], + [48175,0], + [48177,0.003], + [48179,0.013], + [48181,0.011], + [48183,0.002], + [48185,0.005], + [48187,0.003], + [48189,0.007], + [48191,0.011], + [48193,0.014], + [48195,0.001], + [48197,0.011], + [48199,0.003], + [48201,0.004], + [48203,0.003], + [48205,0.004], + [48207,0.005], + [48209,0.004], + [48211,0], + [48213,0.009], + [48215,0.002], + [48217,0.011], + [48219,0.005], + [48221,0.011], + [48223,0.003], + [48225,0.004], + [48227,0.012], + [48229,0], + [48231,0.011], + [48233,0.016], + [48235,0], + [48237,0.003], + [48239,0], + [48241,0.003], + [48243,0], + [48245,0.004], + [48247,0], + [48249,0.005], + [48251,0.005], + [48253,0.006], + [48255,0.002], + [48257,0.004], + [48259,0.005], + [48261,0], + [48263,0.02], + [48265,0.006], + [48267,0.003], + [48269,0], + [48271,0], + [48273,0.002], + [48275,0.002], + [48277,0.006], + [48279,0.004], + [48281,0.006], + [48283,0], + [48285,0.002], + [48287,0], + [48289,0.006], + [48291,0.006], + [48293,0.017], + [48295,0.019], + [48297,0.003], + [48299,0.015], + [48301,0.031], + [48303,0.01], + [48305,0.003], + [48307,0.003], + [48309,0.004], + [48311,0.012], + [48313,0.002], + [48315,0.001], + [48317,0.02], + [48319,0.02], + [48321,0.004], + [48323,0.014], + [48325,0.006], + [48327,0.001], + [48329,0.006], + [48331,0.003], + [48333,0.002], + [48335,0.021], + [48337,0.008], + [48339,0.004], + [48341,0.005], + [48343,0.003], + [48345,0], + [48347,0.011], + [48349,0.019], + [48351,0.003], + [48353,0.005], + [48355,0.005], + [48357,0.009], + [48359,0], + [48361,0.003], + [48363,0.007], + [48365,0.002], + [48367,0.009], + [48369,0.004], + [48371,0.011], + [48373,0.016], + [48375,0.006], + [48377,0.029], + [48379,0.006], + [48381,0.005], + [48383,0], + [48385,0], + [48387,0.005], + [48389,0.001], + [48391,0.003], + [48393,0], + [48395,0.005], + [48397,0.004], + [48399,0.002], + [48401,0.002], + [48403,0.007], + [48405,0.016], + [48407,0.008], + [48409,0.003], + [48411,0], + [48413,0], + [48415,0.002], + [48417,0.003], + [48419,0.01], + [48421,0.004], + [48423,0.003], + [48425,0.013], + [48427,0.001], + [48429,0.006], + [48431,0], + [48433,0.026], + [48435,0.004], + [48437,0.032], + [48439,0.005], + [48441,0.008], + [48443,0.003], + [48445,0.001], + [48447,0], + [48449,0.009], + [48451,0.004], + [48453,0.006], + [48455,0.001], + [48457,0.001], + [48459,0.005], + [48461,0.006], + [48463,0.004], + [48465,0.004], + [48467,0.005], + [48469,0.002], + [48471,0.004], + [48473,0.009], + [48475,0.015], + [48477,0.003], + [48479,0.002], + [48481,0.001], + [48483,0.003], + [48485,0.01], + [48487,0.015], + [48489,0.007], + [48491,0.003], + [48493,0.004], + [48495,0.014], + [48497,0.005], + [48499,0.009], + [48501,0.002], + [48503,0.007], + [48505,0], + [48507,0], + [49001,0.01], + [49003,0.012], + [49005,0.005], + [49007,0.005], + [49009,0.003], + [49011,0.005], + [49013,0.038], + [49015,0.007], + [49017,0.045], + [49019,0.035], + [49021,0.02], + [49023,0.012], + [49025,0.016], + [49027,0.011], + [49029,0.001], + [49031,0.002], + [49033,0], + [49035,0.008], + [49037,0.476], + [49039,0.011], + [49041,0.019], + [49043,0.002], + [49045,0.006], + [49047,0.074], + [49049,0.005], + [49051,0.003], + [49053,0.016], + [49055,0.002], + [49057,0.007], + [50001,0.004], + [50003,0.002], + [50005,0.003], + [50007,0.002], + [50009,0.003], + [50011,0.009], + [50013,0.006], + [50015,0.008], + [50017,0.004], + [50019,0.004], + [50021,0.002], + [50023,0.003], + [50025,0.003], + [50027,0.002], + [51001,0.005], + [51003,0.003], + [51005,0], + [51007,0.002], + [51009,0.007], + [51011,0], + [51013,0.004], + [51015,0.003], + [51017,0.001], + [51019,0.001], + [51021,0], + [51023,0.001], + [51025,0], + [51027,0.002], + [51029,0.007], + [51031,0.002], + [51033,0.003], + [51035,0.003], + [51036,0.066], + [51037,0], + [51041,0.003], + [51043,0], + [51045,0], + [51047,0.004], + [51049,0.001], + [51051,0.001], + [51053,0], + [51057,0], + [51059,0.002], + [51061,0.004], + [51063,0.006], + [51065,0.002], + [51067,0.003], + [51069,0.003], + [51071,0], + [51073,0], + [51075,0], + [51077,0.002], + [51079,0.002], + [51081,0.001], + [51083,0.003], + [51085,0.003], + [51087,0.002], + [51089,0.001], + [51091,0.001], + [51093,0.004], + [51095,0.001], + [51097,0], + [51099,0.002], + [51101,0.008], + [51103,0], + [51105,0.003], + [51107,0.003], + [51109,0.002], + [51111,0], + [51113,0], + [51115,0.004], + [51117,0.006], + [51119,0.005], + [51121,0.004], + [51125,0], + [51127,0.008], + [51131,0], + [51133,0.002], + [51135,0.001], + [51137,0.003], + [51139,0.001], + [51141,0.002], + [51143,0.001], + [51145,0.001], + [51147,0.003], + [51149,0.006], + [51153,0.004], + [51155,0], + [51157,0.012], + [51159,0.002], + [51161,0.002], + [51163,0.004], + [51165,0.003], + [51167,0.002], + [51169,0.004], + [51171,0.001], + [51173,0.004], + [51175,0.006], + [51177,0.004], + [51179,0.003], + [51181,0], + [51183,0], + [51185,0.002], + [51187,0.002], + [51191,0.001], + [51193,0.005], + [51195,0.001], + [51197,0.002], + [51199,0.003], + [51510,0.002], + [51520,0], + [51530,0.001], + [51540,0.002], + [51550,0.002], + [51570,0.003], + [51580,0], + [51590,0.001], + [51595,0.001], + [51600,0.001], + [51610,0.002], + [51620,0], + [51630,0.002], + [51640,0], + [51650,0.005], + [51660,0.001], + [51670,0.001], + [51678,0], + [51680,0.003], + [51683,0.008], + [51685,0.001], + [51690,0.004], + [51700,0.003], + [51710,0.004], + [51720,0], + [51730,0.002], + [51735,0.001], + [51740,0.004], + [51750,0], + [51760,0.004], + [51770,0.002], + [51775,0.001], + [51790,0.003], + [51800,0.002], + [51810,0.003], + [51820,0.005], + [51830,0.004], + [51840,0.002], + [53001,0.041], + [53003,0.011], + [53005,0.008], + [53007,0.009], + [53009,0.049], + [53011,0.006], + [53013,0.002], + [53015,0.015], + [53017,0.007], + [53019,0.131], + [53021,0.013], + [53023,0], + [53025,0.012], + [53027,0.042], + [53029,0.01], + [53031,0.02], + [53033,0.006], + [53035,0.01], + [53037,0.006], + [53039,0.025], + [53041,0.007], + [53043,0.015], + [53045,0.025], + [53047,0.096], + [53049,0.025], + [53051,0.039], + [53053,0.013], + [53055,0.01], + [53057,0.019], + [53059,0.018], + [53061,0.009], + [53063,0.013], + [53065,0.05], + [53067,0.014], + [53069,0.007], + [53071,0.007], + [53073,0.029], + [53075,0.003], + [53077,0.04], + [54001,0.003], + [54003,0.001], + [54005,0], + [54007,0.003], + [54009,0.001], + [54011,0.002], + [54013,0.003], + [54015,0.001], + [54017,0.005], + [54019,0.003], + [54021,0.002], + [54023,0], + [54025,0], + [54027,0.003], + [54029,0], + [54031,0.006], + [54033,0], + [54035,0.008], + [54037,0.003], + [54039,0.002], + [54041,0.005], + [54043,0], + [54045,0.002], + [54047,0.003], + [54049,0.004], + [54051,0.001], + [54053,0.001], + [54055,0.002], + [54057,0], + [54059,0.001], + [54061,0.001], + [54063,0.005], + [54065,0.007], + [54067,0.004], + [54069,0.002], + [54071,0.001], + [54073,0], + [54075,0], + [54077,0.007], + [54079,0.001], + [54081,0.003], + [54083,0.002], + [54085,0], + [54087,0.001], + [54089,0], + [54091,0], + [54093,0], + [54095,0.002], + [54097,0.001], + [54099,0.002], + [54101,0], + [54103,0], + [54105,0], + [54107,0.004], + [54109,0], + [55001,0.008], + [55003,0.119], + [55005,0.007], + [55007,0.101], + [55009,0.025], + [55011,0.004], + [55013,0.041], + [55015,0.005], + [55017,0.001], + [55019,0.002], + [55021,0.005], + [55023,0.004], + [55025,0.003], + [55027,0.004], + [55029,0.009], + [55031,0.019], + [55033,0.002], + [55035,0.005], + [55037,0.003], + [55039,0.005], + [55041,0.155], + [55043,0.002], + [55045,0.003], + [55047,0.003], + [55049,0.002], + [55051,0.018], + [55053,0.055], + [55055,0.001], + [55057,0.012], + [55059,0.005], + [55061,0.003], + [55063,0.004], + [55065,0.002], + [55067,0.007], + [55069,0.004], + [55071,0.005], + [55073,0.003], + [55075,0.006], + [55077,0.006], + [55078,0.839], + [55079,0.006], + [55081,0.011], + [55083,0.012], + [55085,0.013], + [55087,0.016], + [55089,0.002], + [55091,0.002], + [55093,0.002], + [55095,0.01], + [55097,0.003], + [55099,0.01], + [55101,0.005], + [55103,0.004], + [55105,0.003], + [55107,0.005], + [55109,0.002], + [55111,0.011], + [55113,0.177], + [55115,0.077], + [55117,0.003], + [55119,0.002], + [55121,0.004], + [55123,0.002], + [55125,0.081], + [55127,0.003], + [55129,0.014], + [55131,0.002], + [55133,0.002], + [55135,0.006], + [55137,0.008], + [55139,0.006], + [55141,0.005], + [56001,0.009], + [56003,0.008], + [56005,0.013], + [56007,0.02], + [56009,0.008], + [56011,0.013], + [56013,0.208], + [56015,0.01], + [56017,0.026], + [56019,0.043], + [56021,0.009], + [56023,0.004], + [56025,0.011], + [56027,0.037], + [56029,0.01], + [56031,0], + [56033,0.019], + [56035,0.003], + [56037,0.012], + [56039,0.003], + [56041,0.007], + [56043,0.009], + [56045,0.002] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-pacisl-2010.json b/data/regional/united-states/demographics/race/us-race-pacisl-2010.json new file mode 100644 index 0000000..78e43d3 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-pacisl-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Pacific Islander Population", + "description" : "Percent of the population that is pacific islander in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.pacisl.2010"], + [1001,null], + [1003,null], + [1005,null], + [1007,null], + [1009,null], + [1011,null], + [1013,0], + [1015,0.001], + [1017,0], + [1019,0], + [1021,null], + [1023,0], + [1025,null], + [1027,null], + [1029,null], + [1031,0.002], + [1033,null], + [1035,0], + [1037,null], + [1039,null], + [1041,null], + [1043,null], + [1045,0.001], + [1047,null], + [1049,0.002], + [1051,null], + [1053,null], + [1055,null], + [1057,null], + [1059,0], + [1061,null], + [1063,0], + [1065,null], + [1067,null], + [1069,null], + [1071,null], + [1073,0], + [1075,0], + [1077,null], + [1079,null], + [1081,null], + [1083,null], + [1085,null], + [1087,null], + [1089,0.001], + [1091,null], + [1093,null], + [1095,0.001], + [1097,0], + [1099,null], + [1101,null], + [1103,0.001], + [1105,null], + [1107,null], + [1109,null], + [1111,null], + [1113,0.002], + [1115,null], + [1117,null], + [1119,null], + [1121,null], + [1123,null], + [1125,null], + [1127,null], + [1129,null], + [1131,null], + [1133,null], + [2013,0.006], + [2016,0.019], + [2020,0.02], + [2050,0.002], + [2060,0.003], + [2068,0.001], + [2070,0.001], + [2090,0.004], + [2100,0], + [2105,0], + [2110,0.007], + [2122,0.002], + [2130,0.002], + [2150,0.006], + [2158,null], + [2164,0.003], + [2170,0.002], + [2180,null], + [2185,0.011], + [2188,0.002], + [2195,0.002], + [2198,0.004], + [2220,0.003], + [2230,0.001], + [2240,0.003], + [2261,0.006], + [2275,0], + [2282,0.018], + [2290,0.001], + [4001,0], + [4003,0.003], + [4005,0.001], + [4007,0.001], + [4009,0.001], + [4011,0.001], + [4012,0], + [4013,0.002], + [4015,0.002], + [4017,0.001], + [4019,0.002], + [4021,0.004], + [4023,0], + [4025,0.001], + [4027,0.002], + [5001,null], + [5003,0], + [5005,null], + [5007,0.003], + [5009,null], + [5011,null], + [5013,0], + [5015,0.001], + [5017,null], + [5019,0], + [5021,0], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,null], + [5033,null], + [5035,null], + [5037,null], + [5039,0], + [5041,null], + [5043,null], + [5045,null], + [5047,0.001], + [5049,0], + [5051,null], + [5053,null], + [5055,null], + [5057,null], + [5059,null], + [5061,null], + [5063,0.001], + [5065,null], + [5067,null], + [5069,null], + [5071,null], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,null], + [5087,0.001], + [5089,0], + [5091,null], + [5093,null], + [5095,null], + [5097,null], + [5099,0], + [5101,null], + [5103,null], + [5105,null], + [5107,null], + [5109,null], + [5111,null], + [5113,0], + [5115,null], + [5117,0], + [5119,0.001], + [5121,null], + [5123,null], + [5125,null], + [5127,null], + [5129,null], + [5131,0.001], + [5133,0], + [5135,null], + [5137,null], + [5139,null], + [5141,0], + [5143,0.02], + [5145,null], + [5147,0.001], + [5149,0], + [6001,0.008], + [6003,0], + [6005,0.002], + [6007,0.002], + [6009,0.002], + [6011,0.003], + [6013,0.005], + [6015,0.001], + [6017,0.002], + [6019,0.002], + [6021,0.001], + [6023,0.003], + [6025,0.001], + [6027,0.001], + [6029,0.001], + [6031,0.002], + [6033,0.002], + [6035,0.005], + [6037,0.003], + [6039,0.001], + [6041,0.002], + [6043,0.001], + [6045,0.001], + [6047,0.002], + [6049,0.002], + [6051,0.001], + [6053,0.005], + [6055,0.003], + [6057,0.001], + [6059,0.003], + [6061,0.002], + [6063,0.001], + [6065,0.003], + [6067,0.01], + [6069,0.002], + [6071,0.003], + [6073,0.005], + [6075,0.004], + [6077,0.005], + [6079,0.001], + [6081,0.014], + [6083,0.002], + [6085,0.004], + [6087,0.001], + [6089,0.002], + [6091,0.001], + [6093,0.002], + [6095,0.009], + [6097,0.003], + [6099,0.007], + [6101,0.003], + [6103,0.001], + [6105,0.001], + [6107,0.001], + [6109,0.001], + [6111,0.002], + [6113,0.005], + [6115,0.004], + [8001,0.001], + [8003,0.001], + [8005,0.002], + [8007,null], + [8009,0], + [8011,0.001], + [8013,0.001], + [8014,null], + [8015,null], + [8017,0.001], + [8019,null], + [8021,0], + [8023,0.003], + [8025,null], + [8027,0], + [8029,null], + [8031,0.001], + [8033,0.001], + [8035,0.001], + [8037,0], + [8039,0.001], + [8041,0.004], + [8043,0], + [8045,0.001], + [8047,0.002], + [8049,0.001], + [8051,null], + [8053,0], + [8055,0.002], + [8057,0], + [8059,0.001], + [8061,0], + [8063,null], + [8065,0.001], + [8067,0.001], + [8069,0.001], + [8071,0], + [8073,0], + [8075,0.001], + [8077,0.001], + [8079,0], + [8081,null], + [8083,0.001], + [8085,0.001], + [8087,0.001], + [8089,0.001], + [8091,null], + [8093,null], + [8095,0.001], + [8097,null], + [8099,0], + [8101,0.001], + [8103,0.002], + [8105,0], + [8107,0.001], + [8109,0], + [8111,0], + [8113,0.001], + [8115,0], + [8117,0.001], + [8119,0.001], + [8121,null], + [8123,0.001], + [8125,null], + [9001,0], + [9003,0], + [9005,null], + [9007,null], + [9009,0], + [9011,0.001], + [9013,null], + [9015,0], + [10001,0.001], + [10003,0], + [10005,0.001], + [11001,0.001], + [12001,null], + [12003,null], + [12005,0.001], + [12007,0], + [12009,0.001], + [12011,0.001], + [12013,0.001], + [12015,null], + [12017,null], + [12019,0.001], + [12021,0], + [12023,null], + [12027,0], + [12029,null], + [12031,0.001], + [12033,0.001], + [12035,null], + [12037,0.001], + [12039,null], + [12041,null], + [12043,0], + [12045,0], + [12047,null], + [12049,0], + [12051,null], + [12053,null], + [12055,null], + [12057,0.001], + [12059,null], + [12061,null], + [12063,null], + [12065,0], + [12067,null], + [12069,0.001], + [12071,0.001], + [12073,0.001], + [12075,null], + [12077,0], + [12079,null], + [12081,0.001], + [12083,null], + [12085,0.001], + [12086,0], + [12087,0.001], + [12089,null], + [12091,0.002], + [12093,0.001], + [12095,0.001], + [12097,0.001], + [12099,0.001], + [12101,null], + [12103,0.001], + [12105,0.001], + [12107,0.001], + [12109,null], + [12111,0.001], + [12113,0.001], + [12115,null], + [12117,0.001], + [12119,0], + [12121,null], + [12123,null], + [12125,null], + [12127,null], + [12129,null], + [12131,null], + [12133,0.001], + [13001,null], + [13003,0.003], + [13005,0.001], + [13007,null], + [13009,null], + [13011,0], + [13013,null], + [13015,null], + [13017,null], + [13019,0], + [13021,null], + [13023,null], + [13025,null], + [13027,null], + [13029,0.001], + [13031,null], + [13033,null], + [13035,null], + [13037,0.003], + [13039,0.002], + [13043,null], + [13045,null], + [13047,null], + [13049,0], + [13051,0.001], + [13053,0.006], + [13055,0.001], + [13057,null], + [13059,0.001], + [13061,0], + [13063,0.001], + [13065,0.001], + [13067,0.001], + [13069,0], + [13071,null], + [13073,0.002], + [13075,null], + [13077,null], + [13079,null], + [13081,0], + [13083,null], + [13085,null], + [13087,null], + [13089,0], + [13091,null], + [13093,0], + [13095,null], + [13097,null], + [13099,0], + [13101,null], + [13103,null], + [13105,null], + [13107,null], + [13109,0.002], + [13111,null], + [13113,null], + [13115,0.001], + [13117,null], + [13119,null], + [13121,0], + [13123,0.001], + [13125,0], + [13127,0.001], + [13129,0.001], + [13131,null], + [13133,0.001], + [13135,0.001], + [13137,0.002], + [13139,0.001], + [13141,0], + [13143,null], + [13145,null], + [13147,null], + [13149,0], + [13151,null], + [13153,0.001], + [13155,null], + [13157,null], + [13159,null], + [13161,0], + [13163,null], + [13165,0], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,null], + [13177,null], + [13179,0.006], + [13181,0], + [13183,0.004], + [13185,0.001], + [13187,0.001], + [13189,null], + [13191,null], + [13193,0.001], + [13195,null], + [13197,0.001], + [13199,0], + [13201,0], + [13205,0], + [13207,null], + [13209,null], + [13211,null], + [13213,null], + [13215,0.002], + [13217,null], + [13219,null], + [13221,null], + [13223,null], + [13225,null], + [13227,null], + [13229,0.001], + [13231,null], + [13233,0.001], + [13235,0], + [13237,0.001], + [13239,0], + [13241,0], + [13243,0], + [13245,0.002], + [13247,0.001], + [13249,0], + [13251,0], + [13253,0], + [13255,null], + [13257,0.001], + [13259,0], + [13261,null], + [13263,null], + [13265,0], + [13267,0.001], + [13269,null], + [13271,0], + [13273,null], + [13275,0], + [13277,null], + [13279,null], + [13281,0], + [13283,0], + [13285,0.001], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,null], + [13297,null], + [13299,null], + [13301,0], + [13303,null], + [13305,null], + [13307,0], + [13309,0], + [13311,0], + [13313,0.001], + [13315,null], + [13317,null], + [13319,0], + [13321,null], + [15001,0.121], + [15003,0.095], + [15005,0.489], + [15007,0.09], + [15009,0.104], + [16001,0.002], + [16003,0.001], + [16005,0.002], + [16007,0], + [16009,0.001], + [16011,0.001], + [16013,0.001], + [16015,0.001], + [16017,0.001], + [16019,0.001], + [16021,0.001], + [16023,0.002], + [16025,0], + [16027,0.002], + [16029,0.002], + [16031,0.001], + [16033,0], + [16035,0.001], + [16037,null], + [16039,0.004], + [16041,null], + [16043,0.001], + [16045,0.001], + [16047,null], + [16049,null], + [16051,0.001], + [16053,0.001], + [16055,0.001], + [16057,0.001], + [16059,null], + [16061,0.001], + [16063,null], + [16065,0.001], + [16067,null], + [16069,0.001], + [16071,0], + [16073,0], + [16075,null], + [16077,0.001], + [16079,0.001], + [16081,0.001], + [16083,0.001], + [16085,0], + [16087,0], + [17001,null], + [17003,null], + [17005,null], + [17007,null], + [17009,0], + [17011,null], + [17013,0], + [17015,null], + [17017,null], + [17019,0.001], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,null], + [17031,0], + [17033,null], + [17035,null], + [17037,0], + [17039,null], + [17041,null], + [17043,null], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,0], + [17055,null], + [17057,null], + [17059,null], + [17061,null], + [17063,null], + [17065,null], + [17067,null], + [17069,0.001], + [17071,null], + [17073,null], + [17075,null], + [17077,0.001], + [17079,null], + [17081,null], + [17083,null], + [17085,null], + [17087,null], + [17089,0], + [17091,null], + [17093,null], + [17095,null], + [17097,0], + [17099,null], + [17101,0], + [17103,null], + [17105,null], + [17107,null], + [17109,null], + [17111,null], + [17113,null], + [17115,null], + [17117,null], + [17119,null], + [17121,null], + [17123,null], + [17125,0], + [17127,0], + [17129,0], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,null], + [17145,null], + [17147,null], + [17149,null], + [17151,0], + [17153,0], + [17155,0], + [17157,null], + [17159,0], + [17161,null], + [17163,0.001], + [17165,null], + [17167,null], + [17169,null], + [17171,0], + [17173,null], + [17175,0], + [17177,0], + [17179,null], + [17181,null], + [17183,null], + [17185,0], + [17187,0.001], + [17189,null], + [17191,null], + [17193,null], + [17195,null], + [17197,null], + [17199,null], + [17201,null], + [17203,null], + [18001,null], + [18003,0.001], + [18005,null], + [18007,0], + [18009,0], + [18011,null], + [18013,null], + [18015,null], + [18017,0.001], + [18019,null], + [18021,null], + [18023,null], + [18025,0.001], + [18027,null], + [18029,0.001], + [18031,null], + [18033,null], + [18035,0.001], + [18037,null], + [18039,0], + [18041,null], + [18043,null], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,null], + [18055,null], + [18057,null], + [18059,null], + [18061,null], + [18063,null], + [18065,null], + [18067,null], + [18069,null], + [18071,0.001], + [18073,0], + [18075,null], + [18077,null], + [18079,null], + [18081,null], + [18083,0], + [18085,null], + [18087,null], + [18089,0], + [18091,null], + [18093,null], + [18095,null], + [18097,0.001], + [18099,null], + [18101,null], + [18103,null], + [18105,0], + [18107,null], + [18109,null], + [18111,0], + [18113,null], + [18115,null], + [18117,0], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,null], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,0], + [18139,null], + [18141,0.001], + [18143,0.001], + [18145,null], + [18147,null], + [18149,null], + [18151,null], + [18153,null], + [18155,null], + [18157,null], + [18159,null], + [18161,null], + [18163,0.001], + [18165,null], + [18167,null], + [18169,null], + [18171,null], + [18173,0], + [18175,null], + [18177,null], + [18179,null], + [18181,0], + [18183,null], + [19001,0], + [19003,0], + [19005,null], + [19007,null], + [19009,0], + [19011,null], + [19013,0.002], + [19015,0], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,null], + [19035,0.001], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,null], + [19047,null], + [19049,0.001], + [19051,null], + [19053,0.002], + [19055,null], + [19057,0.001], + [19059,null], + [19061,0.003], + [19063,null], + [19065,null], + [19067,0], + [19069,null], + [19071,null], + [19073,null], + [19075,0.001], + [19077,null], + [19079,null], + [19081,null], + [19083,0], + [19085,null], + [19087,0.001], + [19089,0.001], + [19091,0], + [19093,0], + [19095,null], + [19097,0.004], + [19099,0], + [19101,null], + [19103,null], + [19105,0], + [19107,null], + [19109,null], + [19111,0], + [19113,0.001], + [19115,0.001], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,0.001], + [19129,null], + [19131,null], + [19133,null], + [19135,0], + [19137,0], + [19139,null], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,0.001], + [19151,null], + [19153,0.001], + [19155,null], + [19157,null], + [19159,0], + [19161,null], + [19163,null], + [19165,0], + [19167,0], + [19169,0], + [19171,null], + [19173,0], + [19175,0], + [19177,0], + [19179,null], + [19181,null], + [19183,null], + [19185,0], + [19187,null], + [19189,null], + [19191,null], + [19193,0.001], + [19195,null], + [19197,0], + [20001,0], + [20003,null], + [20005,0], + [20007,0], + [20009,0.001], + [20011,0], + [20013,null], + [20015,null], + [20017,0], + [20019,0.001], + [20021,null], + [20023,null], + [20025,0.001], + [20027,0], + [20029,0], + [20031,null], + [20033,0.001], + [20035,null], + [20037,0.002], + [20039,0], + [20041,null], + [20043,0], + [20045,0.001], + [20047,0], + [20049,0], + [20051,0], + [20053,null], + [20055,0], + [20057,0.002], + [20059,null], + [20061,0.008], + [20063,0], + [20065,null], + [20067,0], + [20069,0], + [20071,0], + [20073,0], + [20075,0.001], + [20077,0.002], + [20079,null], + [20081,0], + [20083,0], + [20085,null], + [20087,null], + [20089,null], + [20091,0.001], + [20093,0], + [20095,null], + [20097,0], + [20099,null], + [20101,0.001], + [20103,0.001], + [20105,0], + [20107,null], + [20109,0], + [20111,null], + [20113,0.001], + [20115,0.001], + [20117,null], + [20119,0], + [20121,null], + [20123,null], + [20125,null], + [20127,null], + [20129,0.002], + [20131,0], + [20133,null], + [20135,0], + [20137,null], + [20139,0], + [20141,null], + [20143,null], + [20145,0.001], + [20147,0], + [20149,null], + [20151,null], + [20153,0], + [20155,null], + [20157,0], + [20159,null], + [20161,0.002], + [20163,null], + [20165,0], + [20167,null], + [20169,0], + [20171,null], + [20173,0.001], + [20175,0.002], + [20177,0.001], + [20179,0], + [20181,0.001], + [20183,0.001], + [20185,0], + [20187,0], + [20189,null], + [20191,0], + [20193,null], + [20195,0.001], + [20197,0], + [20199,0], + [20201,0], + [20203,0], + [20205,null], + [20207,0], + [20209,0.001], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,null], + [21011,0.001], + [21013,0], + [21015,null], + [21017,null], + [21019,null], + [21021,null], + [21023,null], + [21025,null], + [21027,null], + [21029,null], + [21031,0], + [21033,0], + [21035,null], + [21037,null], + [21039,0], + [21041,null], + [21043,null], + [21045,0], + [21047,0.004], + [21049,null], + [21051,null], + [21053,0.003], + [21055,0.001], + [21057,0], + [21059,null], + [21061,0], + [21063,null], + [21065,0], + [21067,0], + [21069,0], + [21071,0], + [21073,null], + [21075,0], + [21077,0], + [21079,0], + [21081,0.002], + [21083,null], + [21085,null], + [21087,0], + [21089,null], + [21091,0], + [21093,0.003], + [21095,null], + [21097,null], + [21099,null], + [21101,null], + [21103,null], + [21105,0], + [21107,null], + [21109,null], + [21111,0.001], + [21113,0], + [21115,null], + [21117,null], + [21119,null], + [21121,null], + [21123,null], + [21125,null], + [21127,null], + [21129,null], + [21131,null], + [21133,null], + [21135,0], + [21137,null], + [21139,null], + [21141,null], + [21143,null], + [21145,0], + [21147,null], + [21149,null], + [21151,null], + [21153,0], + [21155,0], + [21157,null], + [21159,0], + [21161,null], + [21163,0.001], + [21165,null], + [21167,null], + [21169,0], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,null], + [21181,0], + [21183,null], + [21185,null], + [21187,null], + [21189,null], + [21191,null], + [21193,null], + [21195,null], + [21197,0], + [21199,null], + [21201,0], + [21203,null], + [21205,null], + [21207,null], + [21209,null], + [21211,0.001], + [21213,0], + [21215,0.001], + [21217,null], + [21219,null], + [21221,null], + [21223,0.001], + [21225,null], + [21227,0.001], + [21229,0], + [21231,0], + [21233,0.003], + [21235,null], + [21237,null], + [21239,null], + [22001,null], + [22003,null], + [22005,null], + [22007,null], + [22009,null], + [22011,null], + [22013,0], + [22015,0.001], + [22017,null], + [22019,null], + [22021,0], + [22023,null], + [22025,0], + [22027,null], + [22029,null], + [22031,null], + [22033,null], + [22035,0], + [22037,0], + [22039,null], + [22041,null], + [22043,null], + [22045,null], + [22047,null], + [22049,null], + [22051,0], + [22053,null], + [22055,null], + [22057,null], + [22059,null], + [22061,null], + [22063,null], + [22065,0], + [22067,null], + [22069,null], + [22071,0], + [22073,null], + [22075,null], + [22077,null], + [22079,null], + [22081,null], + [22083,0], + [22085,null], + [22087,0.001], + [22089,null], + [22091,null], + [22093,0], + [22095,null], + [22097,null], + [22099,null], + [22101,null], + [22103,null], + [22105,null], + [22107,0], + [22109,null], + [22111,null], + [22113,null], + [22115,0.005], + [22117,null], + [22119,null], + [22121,null], + [22123,null], + [22125,null], + [22127,0], + [23001,null], + [23003,null], + [23005,0], + [23007,null], + [23009,null], + [23011,null], + [23013,null], + [23015,null], + [23017,null], + [23019,null], + [23021,null], + [23023,0], + [23025,null], + [23027,null], + [23029,null], + [23031,null], + [24001,null], + [24003,0.001], + [24005,0], + [24009,null], + [24011,null], + [24013,null], + [24015,null], + [24017,0.001], + [24019,null], + [24021,null], + [24023,null], + [24025,0.001], + [24027,0], + [24029,0], + [24031,0.001], + [24033,0.001], + [24035,null], + [24037,0.001], + [24039,null], + [24041,0.001], + [24043,0], + [24045,null], + [24047,null], + [24510,0], + [25001,null], + [25003,null], + [25005,0], + [25007,0.001], + [25009,0], + [25011,null], + [25013,0.001], + [25015,0], + [25017,0], + [25019,0], + [25021,null], + [25023,0], + [25025,0], + [25027,0], + [26001,null], + [26003,null], + [26005,null], + [26007,null], + [26009,0], + [26011,null], + [26013,null], + [26015,null], + [26017,null], + [26019,null], + [26021,0.001], + [26023,null], + [26025,null], + [26027,null], + [26029,0], + [26031,null], + [26033,0.001], + [26035,null], + [26037,null], + [26039,null], + [26041,null], + [26043,null], + [26045,null], + [26047,null], + [26049,null], + [26051,0], + [26053,null], + [26055,null], + [26057,null], + [26059,null], + [26061,null], + [26063,null], + [26065,0], + [26067,null], + [26069,null], + [26071,0], + [26073,0], + [26075,0], + [26077,0], + [26079,null], + [26081,0], + [26083,0], + [26085,null], + [26087,null], + [26089,null], + [26091,null], + [26093,0], + [26095,null], + [26097,0], + [26099,null], + [26101,null], + [26103,null], + [26105,null], + [26107,null], + [26109,null], + [26111,null], + [26113,0], + [26115,null], + [26117,0], + [26119,0], + [26121,null], + [26123,null], + [26125,null], + [26127,0], + [26129,null], + [26131,null], + [26133,0], + [26135,null], + [26137,null], + [26139,null], + [26141,null], + [26143,null], + [26145,null], + [26147,null], + [26149,null], + [26151,null], + [26153,0], + [26155,null], + [26157,null], + [26159,null], + [26161,0], + [26163,0], + [26165,null], + [27001,null], + [27003,null], + [27005,null], + [27007,0], + [27009,null], + [27011,0], + [27013,0], + [27015,null], + [27017,null], + [27019,null], + [27021,null], + [27023,null], + [27025,null], + [27027,null], + [27029,null], + [27031,null], + [27033,0.001], + [27035,0], + [27037,0.001], + [27039,null], + [27041,null], + [27043,0], + [27045,null], + [27047,null], + [27049,null], + [27051,0], + [27053,0], + [27055,null], + [27057,null], + [27059,null], + [27061,null], + [27063,0], + [27065,null], + [27067,0], + [27069,0], + [27071,0], + [27073,0], + [27075,null], + [27077,0], + [27079,null], + [27081,0], + [27083,null], + [27085,0], + [27087,null], + [27089,0], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,null], + [27101,null], + [27103,null], + [27105,0], + [27107,0], + [27109,null], + [27111,0.001], + [27113,null], + [27115,null], + [27117,null], + [27119,0], + [27121,0], + [27123,0], + [27125,0.001], + [27127,0], + [27129,null], + [27131,0.001], + [27133,null], + [27135,null], + [27137,null], + [27139,null], + [27141,null], + [27143,0], + [27145,null], + [27147,null], + [27149,null], + [27151,0], + [27153,null], + [27155,0], + [27157,0], + [27159,null], + [27161,null], + [27163,null], + [27165,null], + [27167,null], + [27169,null], + [27171,null], + [27173,null], + [28001,null], + [28003,0], + [28005,null], + [28007,0], + [28009,0], + [28011,null], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,null], + [28029,null], + [28031,null], + [28033,null], + [28035,null], + [28037,0], + [28039,0], + [28041,null], + [28043,null], + [28045,null], + [28047,0.001], + [28049,0], + [28051,0], + [28053,0], + [28055,0], + [28057,0], + [28059,null], + [28061,null], + [28063,null], + [28065,null], + [28067,null], + [28069,null], + [28071,null], + [28073,null], + [28075,null], + [28077,null], + [28079,null], + [28081,null], + [28083,null], + [28085,null], + [28087,null], + [28089,null], + [28091,null], + [28093,null], + [28095,null], + [28097,null], + [28099,null], + [28101,0], + [28103,0], + [28105,null], + [28107,null], + [28109,null], + [28111,null], + [28113,null], + [28115,null], + [28117,0], + [28119,null], + [28121,null], + [28123,null], + [28125,0], + [28127,null], + [28129,0], + [28131,null], + [28133,null], + [28135,0.001], + [28137,null], + [28139,null], + [28141,null], + [28143,0.001], + [28145,null], + [28147,null], + [28149,null], + [28151,null], + [28153,null], + [28155,null], + [28157,0], + [28159,0], + [28161,0], + [28163,null], + [29001,0.001], + [29003,null], + [29005,0.001], + [29007,null], + [29009,null], + [29011,0], + [29013,null], + [29015,null], + [29017,0], + [29019,null], + [29021,null], + [29023,null], + [29025,0], + [29027,null], + [29029,null], + [29031,null], + [29033,null], + [29035,null], + [29037,null], + [29039,null], + [29041,0], + [29043,null], + [29045,null], + [29047,0.003], + [29049,null], + [29051,null], + [29053,null], + [29055,0], + [29057,0], + [29059,null], + [29061,0], + [29063,null], + [29065,null], + [29067,null], + [29069,null], + [29071,null], + [29073,null], + [29075,0], + [29077,0.001], + [29079,null], + [29081,0.001], + [29083,null], + [29085,0.001], + [29087,null], + [29089,0], + [29091,null], + [29093,null], + [29095,0.002], + [29097,0.002], + [29099,null], + [29101,0.002], + [29103,0], + [29105,0.001], + [29107,null], + [29109,0.001], + [29111,null], + [29113,null], + [29115,0], + [29117,null], + [29119,0.011], + [29121,null], + [29123,0], + [29125,0], + [29127,0.001], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,0.009], + [29147,null], + [29149,null], + [29151,null], + [29153,0], + [29155,null], + [29157,null], + [29159,0.001], + [29161,0.001], + [29163,null], + [29165,0.003], + [29167,null], + [29169,0.006], + [29171,0], + [29173,null], + [29175,null], + [29177,null], + [29179,0], + [29181,null], + [29183,null], + [29185,null], + [29186,0], + [29187,null], + [29189,0], + [29195,0.007], + [29197,null], + [29199,null], + [29201,null], + [29203,null], + [29205,0], + [29207,null], + [29209,null], + [29211,0.001], + [29213,0.001], + [29215,null], + [29217,null], + [29219,null], + [29221,null], + [29223,null], + [29225,null], + [29227,0], + [29229,null], + [29510,null], + [30001,null], + [30003,null], + [30005,null], + [30007,0.002], + [30009,null], + [30011,0], + [30013,0.001], + [30015,0.001], + [30017,0.001], + [30019,0], + [30021,null], + [30023,null], + [30025,null], + [30027,0], + [30029,0.001], + [30031,0.001], + [30033,0], + [30035,0], + [30037,0], + [30039,null], + [30041,null], + [30043,0], + [30045,0], + [30047,0.001], + [30049,0.001], + [30051,0], + [30053,null], + [30055,0], + [30057,0], + [30059,0], + [30061,null], + [30063,0.001], + [30065,null], + [30067,null], + [30069,0], + [30071,null], + [30073,0], + [30075,0], + [30077,0], + [30079,0], + [30081,0.001], + [30083,null], + [30085,null], + [30087,0], + [30089,null], + [30091,null], + [30093,0.001], + [30095,null], + [30097,null], + [30099,0], + [30101,null], + [30103,0], + [30105,null], + [30107,0], + [30109,0], + [30111,0.001], + [31001,null], + [31003,0], + [31005,0], + [31007,0], + [31009,0], + [31011,null], + [31013,null], + [31015,0.001], + [31017,null], + [31019,null], + [31021,null], + [31023,0], + [31025,null], + [31027,null], + [31029,null], + [31031,0], + [31033,null], + [31035,0], + [31037,0], + [31039,null], + [31041,0], + [31043,0.002], + [31045,0.005], + [31047,0.002], + [31049,0], + [31051,null], + [31053,0.002], + [31055,0.001], + [31057,0.001], + [31059,null], + [31061,0], + [31063,0], + [31065,0], + [31067,0], + [31069,0], + [31071,0], + [31073,0], + [31075,0], + [31077,0], + [31079,0.002], + [31081,0], + [31083,0], + [31085,0.001], + [31087,0], + [31089,0.001], + [31091,0], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,0], + [31103,0], + [31105,null], + [31107,0], + [31109,0.001], + [31111,null], + [31113,0], + [31115,0], + [31117,0], + [31119,null], + [31121,null], + [31123,0], + [31125,0], + [31127,null], + [31129,0], + [31131,null], + [31133,0], + [31135,0], + [31137,0], + [31139,null], + [31141,0], + [31143,0], + [31145,null], + [31147,0], + [31149,0], + [31151,null], + [31153,0.001], + [31155,null], + [31157,null], + [31159,0], + [31161,null], + [31163,null], + [31165,0], + [31167,0], + [31169,0], + [31171,0], + [31173,0], + [31175,0], + [31177,0], + [31179,null], + [31181,0.003], + [31183,0], + [31185,0.001], + [32001,0.002], + [32003,0.007], + [32005,0.001], + [32007,0.001], + [32009,0], + [32011,0], + [32013,0.001], + [32015,null], + [32017,null], + [32019,0.003], + [32021,0.001], + [32023,0.005], + [32027,0.001], + [32029,0.004], + [32031,0.006], + [32033,0.001], + [32510,0.002], + [33001,null], + [33003,null], + [33005,null], + [33007,null], + [33009,null], + [33011,0], + [33013,null], + [33015,null], + [33017,null], + [33019,null], + [34001,0], + [34003,0], + [34005,null], + [34007,0], + [34009,0], + [34011,0], + [34013,0], + [34015,null], + [34017,0.001], + [34019,null], + [34021,0.001], + [34023,0], + [34025,0], + [34027,0], + [34029,null], + [34031,0], + [34033,null], + [34035,0], + [34037,null], + [34039,0], + [34041,null], + [35001,0.001], + [35003,0], + [35005,0.001], + [35006,0.001], + [35007,0.001], + [35009,0.001], + [35011,0], + [35013,0.001], + [35015,0], + [35017,0.001], + [35019,null], + [35021,0], + [35023,0], + [35025,0.001], + [35027,0], + [35028,null], + [35029,null], + [35031,0], + [35033,null], + [35035,0.002], + [35037,0], + [35039,0], + [35041,0], + [35043,0.001], + [35045,0.001], + [35047,0.001], + [35049,0.001], + [35051,0], + [35053,0], + [35055,0], + [35057,0], + [35059,0], + [35061,0.001], + [36001,null], + [36003,null], + [36005,0.001], + [36007,null], + [36009,null], + [36011,null], + [36013,null], + [36015,null], + [36017,null], + [36019,null], + [36021,null], + [36023,null], + [36025,null], + [36027,null], + [36029,null], + [36031,0], + [36033,null], + [36035,null], + [36037,null], + [36039,null], + [36041,0.001], + [36043,null], + [36045,0.003], + [36047,0], + [36049,0.001], + [36051,null], + [36053,null], + [36055,0], + [36057,null], + [36059,0], + [36061,0.001], + [36063,null], + [36065,null], + [36067,null], + [36069,null], + [36071,0], + [36073,null], + [36075,null], + [36077,0], + [36079,null], + [36081,0.001], + [36083,null], + [36085,0], + [36087,0], + [36089,null], + [36091,null], + [36093,0.001], + [36095,null], + [36097,null], + [36099,null], + [36101,null], + [36103,0], + [36105,0], + [36107,null], + [36109,null], + [36111,null], + [36113,null], + [36115,null], + [36117,null], + [36119,0], + [36121,null], + [36123,null], + [37001,null], + [37003,null], + [37005,null], + [37007,null], + [37009,null], + [37011,null], + [37013,null], + [37015,null], + [37017,0], + [37019,null], + [37021,0.001], + [37023,0.003], + [37025,null], + [37027,null], + [37029,null], + [37031,0.001], + [37033,null], + [37035,0], + [37037,0], + [37039,null], + [37041,null], + [37043,0], + [37045,null], + [37047,null], + [37049,0.001], + [37051,0.004], + [37053,null], + [37055,null], + [37057,null], + [37059,null], + [37061,0.001], + [37063,0.001], + [37065,null], + [37067,0.001], + [37069,null], + [37071,null], + [37073,null], + [37075,null], + [37077,null], + [37079,null], + [37081,0], + [37083,null], + [37085,0.001], + [37087,null], + [37089,null], + [37091,null], + [37093,0.002], + [37095,0], + [37097,null], + [37099,null], + [37101,null], + [37103,null], + [37105,0], + [37107,0.001], + [37109,null], + [37111,null], + [37113,null], + [37115,null], + [37117,0], + [37119,0.001], + [37121,0], + [37123,0], + [37125,0.001], + [37127,null], + [37129,0.001], + [37131,0], + [37133,0.003], + [37135,null], + [37137,null], + [37139,null], + [37141,null], + [37143,null], + [37145,null], + [37147,0.001], + [37149,null], + [37151,null], + [37153,null], + [37155,0.001], + [37157,0.001], + [37159,null], + [37161,null], + [37163,0.001], + [37165,null], + [37167,null], + [37169,0], + [37171,null], + [37173,null], + [37175,null], + [37177,0], + [37179,null], + [37181,null], + [37183,0], + [37185,null], + [37187,null], + [37189,0], + [37191,0.001], + [37193,0], + [37195,null], + [37197,null], + [37199,0], + [38001,null], + [38003,0], + [38005,null], + [38007,0], + [38009,0], + [38011,0], + [38013,0], + [38015,null], + [38017,0], + [38019,0], + [38021,0], + [38023,0], + [38025,0], + [38027,0.001], + [38029,0], + [38031,0], + [38033,0.001], + [38035,0.001], + [38037,0], + [38039,0], + [38041,0.001], + [38043,0], + [38045,0], + [38047,0], + [38049,0], + [38051,0], + [38053,0], + [38055,null], + [38057,0.001], + [38059,null], + [38061,null], + [38063,0], + [38065,0], + [38067,0], + [38069,0], + [38071,null], + [38073,0.001], + [38075,0], + [38077,0.001], + [38079,null], + [38081,0.001], + [38083,0.002], + [38085,null], + [38087,0], + [38089,null], + [38091,0], + [38093,null], + [38095,0], + [38097,null], + [38099,null], + [38101,0.001], + [38103,0], + [38105,null], + [39001,null], + [39003,null], + [39005,null], + [39007,null], + [39009,null], + [39011,null], + [39013,null], + [39015,null], + [39017,null], + [39019,null], + [39021,null], + [39023,null], + [39025,null], + [39027,null], + [39029,null], + [39031,null], + [39033,null], + [39035,0], + [39037,null], + [39039,null], + [39041,null], + [39043,null], + [39045,null], + [39047,null], + [39049,0.001], + [39051,null], + [39053,0], + [39055,null], + [39057,0.001], + [39059,null], + [39061,null], + [39063,null], + [39065,null], + [39067,null], + [39069,null], + [39071,null], + [39073,0], + [39075,null], + [39077,0], + [39079,null], + [39081,null], + [39083,null], + [39085,null], + [39087,null], + [39089,null], + [39091,null], + [39093,null], + [39095,null], + [39097,null], + [39099,null], + [39101,null], + [39103,null], + [39105,0], + [39107,null], + [39109,null], + [39111,null], + [39113,null], + [39115,0], + [39117,null], + [39119,null], + [39121,0], + [39123,0], + [39125,null], + [39127,null], + [39129,null], + [39131,null], + [39133,null], + [39135,null], + [39137,null], + [39139,null], + [39141,null], + [39143,null], + [39145,null], + [39147,null], + [39149,0.001], + [39151,null], + [39153,null], + [39155,null], + [39157,0.002], + [39159,null], + [39161,0], + [39163,0], + [39165,null], + [39167,null], + [39169,null], + [39171,null], + [39173,null], + [39175,null], + [40001,null], + [40003,0], + [40005,null], + [40007,0], + [40009,null], + [40011,0], + [40013,null], + [40015,0], + [40017,null], + [40019,null], + [40021,null], + [40023,null], + [40025,0], + [40027,0.001], + [40029,0], + [40031,0.006], + [40033,0.002], + [40035,null], + [40037,null], + [40039,0], + [40041,null], + [40043,null], + [40045,0], + [40047,0.018], + [40049,0], + [40051,0.001], + [40053,null], + [40055,null], + [40057,null], + [40059,0], + [40061,0], + [40063,null], + [40065,0.002], + [40067,null], + [40069,null], + [40071,null], + [40073,null], + [40075,0], + [40077,null], + [40079,null], + [40081,null], + [40083,0], + [40085,null], + [40087,null], + [40089,null], + [40091,0], + [40093,null], + [40095,null], + [40097,null], + [40099,null], + [40101,null], + [40103,null], + [40105,0], + [40107,0.001], + [40109,0.001], + [40111,null], + [40113,0], + [40115,0.009], + [40117,0], + [40119,null], + [40121,null], + [40123,null], + [40125,0.001], + [40127,0], + [40129,0], + [40131,null], + [40133,0.001], + [40135,null], + [40137,null], + [40139,0.002], + [40141,0.001], + [40143,0.001], + [40145,null], + [40147,null], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,0.002], + [41005,0.002], + [41007,0.002], + [41009,0.002], + [41011,0.002], + [41013,null], + [41015,0.001], + [41017,0.001], + [41019,0.001], + [41021,0.007], + [41023,0.001], + [41025,0], + [41027,0.002], + [41029,0.003], + [41031,0.001], + [41033,0.002], + [41035,0.001], + [41037,0.001], + [41039,0.002], + [41041,0.001], + [41043,0.001], + [41045,0.001], + [41047,0.007], + [41049,0.001], + [41051,0.005], + [41053,0.003], + [41055,0.001], + [41057,0.002], + [41059,0.001], + [41061,0.009], + [41063,null], + [41065,0.006], + [41067,0.005], + [41069,0.001], + [41071,0.002], + [42001,null], + [42003,0], + [42005,null], + [42007,null], + [42009,null], + [42011,0], + [42013,null], + [42015,null], + [42017,null], + [42019,null], + [42021,null], + [42023,0], + [42025,null], + [42027,0], + [42029,null], + [42031,null], + [42033,null], + [42035,null], + [42037,null], + [42039,null], + [42041,null], + [42043,0], + [42045,null], + [42047,null], + [42049,null], + [42051,null], + [42053,0], + [42055,null], + [42057,null], + [42059,null], + [42061,null], + [42063,null], + [42065,null], + [42067,0], + [42069,null], + [42071,0], + [42073,null], + [42075,null], + [42077,0], + [42079,null], + [42081,null], + [42083,null], + [42085,null], + [42087,null], + [42089,null], + [42091,null], + [42093,0], + [42095,0], + [42097,null], + [42099,null], + [42101,0], + [42103,null], + [42105,null], + [42107,null], + [42109,null], + [42111,null], + [42113,0], + [42115,null], + [42117,null], + [42119,null], + [42121,null], + [42123,null], + [42125,null], + [42127,null], + [42129,null], + [42131,null], + [42133,null], + [44001,null], + [44003,null], + [44005,0.001], + [44007,0.001], + [44009,null], + [45001,null], + [45003,null], + [45005,0], + [45007,null], + [45009,null], + [45011,null], + [45013,0.001], + [45015,0.001], + [45017,null], + [45019,0.001], + [45021,null], + [45023,null], + [45025,null], + [45027,null], + [45029,0], + [45031,null], + [45033,null], + [45035,0.001], + [45037,null], + [45039,null], + [45041,null], + [45043,null], + [45045,0.001], + [45047,0], + [45049,null], + [45051,0.001], + [45053,0.001], + [45055,null], + [45057,null], + [45059,0.001], + [45061,null], + [45063,null], + [45065,null], + [45067,null], + [45069,null], + [45071,0.001], + [45073,null], + [45075,0], + [45077,null], + [45079,0.001], + [45081,0.003], + [45083,null], + [45085,0.001], + [45087,null], + [45089,null], + [45091,null], + [46003,0], + [46005,null], + [46007,0.001], + [46009,0], + [46011,0], + [46013,0.001], + [46015,0], + [46017,0], + [46019,0.001], + [46021,0], + [46023,0], + [46025,null], + [46027,null], + [46029,null], + [46031,0], + [46033,null], + [46035,0.001], + [46037,0], + [46039,null], + [46041,null], + [46043,0], + [46045,null], + [46047,0], + [46049,0], + [46051,0], + [46053,0], + [46055,0.001], + [46057,0], + [46059,0], + [46061,null], + [46063,0], + [46065,0], + [46067,0], + [46069,0.001], + [46071,null], + [46073,0.001], + [46075,0.004], + [46077,0], + [46079,0], + [46081,null], + [46083,null], + [46085,0], + [46087,0.001], + [46089,0.001], + [46091,0], + [46093,0.001], + [46095,0], + [46097,0], + [46099,0.001], + [46101,0], + [46102,0], + [46103,0.001], + [46105,0], + [46107,0], + [46109,0], + [46111,null], + [46115,null], + [46117,0], + [46119,0], + [46121,null], + [46123,0], + [46125,0], + [46127,null], + [46129,null], + [46135,null], + [46137,0], + [47001,null], + [47003,0.001], + [47005,0], + [47007,null], + [47009,null], + [47011,null], + [47013,null], + [47015,null], + [47017,null], + [47019,null], + [47021,0], + [47023,null], + [47025,null], + [47027,0], + [47029,null], + [47031,null], + [47033,0], + [47035,null], + [47037,0.001], + [47039,null], + [47041,null], + [47043,null], + [47045,null], + [47047,null], + [47049,0], + [47051,null], + [47053,null], + [47055,null], + [47057,null], + [47059,null], + [47061,0], + [47063,0.001], + [47065,0.001], + [47067,null], + [47069,null], + [47071,0], + [47073,null], + [47075,null], + [47077,null], + [47079,null], + [47081,null], + [47083,0], + [47085,null], + [47087,null], + [47089,null], + [47091,null], + [47093,0.001], + [47095,0], + [47097,null], + [47099,null], + [47101,0], + [47103,null], + [47105,null], + [47107,null], + [47109,0], + [47111,0], + [47113,null], + [47115,null], + [47117,null], + [47119,null], + [47121,0], + [47123,null], + [47125,0.004], + [47127,0], + [47129,0], + [47131,null], + [47133,null], + [47135,0], + [47137,0], + [47139,null], + [47141,0.001], + [47143,null], + [47145,null], + [47147,null], + [47149,null], + [47151,0], + [47153,null], + [47155,null], + [47157,0], + [47159,null], + [47161,null], + [47163,null], + [47165,null], + [47167,0.001], + [47169,null], + [47171,null], + [47173,null], + [47175,0], + [47177,0], + [47179,null], + [47181,null], + [47183,null], + [47185,null], + [47187,null], + [47189,null], + [48001,null], + [48003,null], + [48005,null], + [48007,0], + [48009,null], + [48011,0], + [48013,0.001], + [48015,null], + [48017,null], + [48019,null], + [48021,0.001], + [48023,0.001], + [48025,null], + [48027,0.008], + [48029,0.001], + [48031,null], + [48033,0], + [48035,null], + [48037,null], + [48039,null], + [48041,0.001], + [48043,0.001], + [48045,0], + [48047,0], + [48049,null], + [48051,null], + [48053,0], + [48055,0], + [48057,0], + [48059,0.001], + [48061,0], + [48063,0.001], + [48065,null], + [48067,0], + [48069,0], + [48071,0.001], + [48073,0], + [48075,0], + [48077,null], + [48079,0.001], + [48081,null], + [48083,null], + [48085,0.001], + [48087,0], + [48089,0.001], + [48091,null], + [48093,null], + [48095,0.001], + [48097,null], + [48099,0.009], + [48101,0.001], + [48103,0], + [48105,0.001], + [48107,0.001], + [48109,0], + [48111,0.001], + [48113,0.001], + [48115,0.001], + [48117,0], + [48119,null], + [48121,0.001], + [48123,0], + [48125,0], + [48127,0], + [48129,0.001], + [48131,null], + [48133,null], + [48135,0.001], + [48137,0], + [48139,null], + [48141,0.001], + [48143,null], + [48145,null], + [48147,null], + [48149,0], + [48151,0], + [48153,0], + [48155,0], + [48157,0], + [48159,0], + [48161,null], + [48163,0], + [48165,null], + [48167,0.001], + [48169,0], + [48171,null], + [48173,0.002], + [48175,null], + [48177,0], + [48179,null], + [48181,0], + [48183,null], + [48185,0], + [48187,0.001], + [48189,0.001], + [48191,0.001], + [48193,0], + [48195,0], + [48197,0], + [48199,null], + [48201,0.001], + [48203,null], + [48205,0], + [48207,null], + [48209,0.001], + [48211,0.001], + [48213,null], + [48215,0], + [48217,null], + [48219,0], + [48221,null], + [48223,0.001], + [48225,0], + [48227,null], + [48229,null], + [48231,0.002], + [48233,null], + [48235,0], + [48237,0], + [48239,0], + [48241,null], + [48243,0], + [48245,0], + [48247,0], + [48249,0], + [48251,0.003], + [48253,null], + [48255,0], + [48257,0], + [48259,null], + [48261,0], + [48263,0], + [48265,null], + [48267,null], + [48269,0], + [48271,0], + [48273,0.001], + [48275,0], + [48277,null], + [48279,0], + [48281,0.002], + [48283,null], + [48285,null], + [48287,null], + [48289,null], + [48291,null], + [48293,null], + [48295,0], + [48297,null], + [48299,null], + [48301,0], + [48303,0.001], + [48305,null], + [48307,null], + [48309,0], + [48311,0], + [48313,null], + [48315,null], + [48317,0.001], + [48319,null], + [48321,0], + [48323,0], + [48325,0.001], + [48327,0], + [48329,0], + [48331,null], + [48333,0], + [48335,null], + [48337,null], + [48339,null], + [48341,0.001], + [48343,0.001], + [48345,0], + [48347,0], + [48349,0.008], + [48351,null], + [48353,0], + [48355,0.001], + [48357,null], + [48359,null], + [48361,null], + [48363,null], + [48365,null], + [48367,null], + [48369,0.002], + [48371,null], + [48373,null], + [48375,0.001], + [48377,null], + [48379,null], + [48381,null], + [48383,0], + [48385,null], + [48387,null], + [48389,null], + [48391,0], + [48393,0], + [48395,0], + [48397,null], + [48399,null], + [48401,null], + [48403,null], + [48405,0], + [48407,0], + [48409,0.001], + [48411,null], + [48413,null], + [48415,null], + [48417,0], + [48419,0], + [48421,0], + [48423,null], + [48425,0], + [48427,0], + [48429,null], + [48431,0], + [48433,0], + [48435,0], + [48437,null], + [48439,0.002], + [48441,0.001], + [48443,0], + [48445,null], + [48447,0], + [48449,0], + [48451,0.001], + [48453,0.001], + [48455,null], + [48457,null], + [48459,0], + [48461,0], + [48463,0], + [48465,0.001], + [48467,null], + [48469,0], + [48471,0], + [48473,null], + [48475,null], + [48477,null], + [48479,null], + [48481,0], + [48483,0], + [48485,0.001], + [48487,null], + [48489,null], + [48491,0.001], + [48493,null], + [48495,0], + [48497,null], + [48499,null], + [48501,null], + [48503,0], + [48505,0], + [48507,0.001], + [49001,0.003], + [49003,0.002], + [49005,0.004], + [49007,null], + [49009,0.001], + [49011,0.006], + [49013,0.003], + [49015,0.001], + [49017,null], + [49019,0], + [49021,0.003], + [49023,0.001], + [49025,null], + [49027,0.001], + [49029,0.001], + [49031,0.001], + [49033,0], + [49035,0.015], + [49037,0], + [49039,0.005], + [49041,0.002], + [49043,null], + [49045,0.004], + [49047,0.002], + [49049,0.008], + [49051,0.001], + [49053,0.008], + [49055,0.001], + [49057,0.003], + [50001,null], + [50003,null], + [50005,null], + [50007,0], + [50009,0], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,null], + [50023,null], + [50025,null], + [50027,null], + [51001,0.001], + [51003,null], + [51005,null], + [51007,null], + [51009,null], + [51011,null], + [51013,0.001], + [51015,null], + [51017,0], + [51019,null], + [51021,null], + [51023,null], + [51025,null], + [51027,null], + [51029,null], + [51031,null], + [51033,null], + [51035,0], + [51036,0.001], + [51037,0], + [51041,0.001], + [51043,null], + [51045,0], + [51047,null], + [51049,0], + [51051,0], + [51053,null], + [51057,null], + [51059,0.001], + [51061,0.001], + [51063,null], + [51065,null], + [51067,null], + [51069,null], + [51071,0], + [51073,0], + [51075,null], + [51077,0], + [51079,null], + [51081,null], + [51083,null], + [51085,null], + [51087,null], + [51089,0], + [51091,0], + [51093,null], + [51095,null], + [51097,null], + [51099,0.001], + [51101,0], + [51103,0], + [51105,null], + [51107,0.001], + [51109,null], + [51111,null], + [51113,null], + [51115,0], + [51117,null], + [51119,0], + [51121,null], + [51125,0], + [51127,null], + [51131,null], + [51133,0], + [51135,0], + [51137,null], + [51139,null], + [51141,0], + [51143,null], + [51145,null], + [51147,0.001], + [51149,0.003], + [51153,0.001], + [51155,null], + [51157,0], + [51159,0], + [51161,null], + [51163,null], + [51165,null], + [51167,null], + [51169,null], + [51171,null], + [51173,null], + [51175,null], + [51177,null], + [51179,0.001], + [51181,null], + [51183,null], + [51185,0], + [51187,null], + [51191,null], + [51193,null], + [51195,null], + [51197,null], + [51199,0.002], + [51510,0.001], + [51520,null], + [51530,null], + [51540,null], + [51550,0.001], + [51570,0], + [51580,null], + [51590,null], + [51595,0.001], + [51600,0.001], + [51610,0], + [51620,null], + [51630,0.001], + [51640,null], + [51650,0.001], + [51660,null], + [51670,0.001], + [51678,null], + [51680,0], + [51683,0.001], + [51685,0.001], + [51690,0], + [51700,0.002], + [51710,0.002], + [51720,0], + [51730,null], + [51735,null], + [51740,0.001], + [51750,null], + [51760,0.001], + [51770,0.001], + [51775,null], + [51790,null], + [51800,null], + [51810,0.002], + [51820,null], + [51830,0], + [51840,null], + [53001,0], + [53003,null], + [53005,0.001], + [53007,0.001], + [53009,0.001], + [53011,0.006], + [53013,null], + [53015,0.002], + [53017,0.001], + [53019,0.001], + [53021,0.001], + [53023,null], + [53025,0.001], + [53027,0.003], + [53029,0.005], + [53031,0.002], + [53033,0.008], + [53035,0.009], + [53037,0.001], + [53039,0.001], + [53041,0.002], + [53043,0], + [53045,0.004], + [53047,0.001], + [53049,0.001], + [53051,0.001], + [53053,0.013], + [53055,0.001], + [53057,0.002], + [53059,0.001], + [53061,0.004], + [53063,0.004], + [53065,0.002], + [53067,0.008], + [53069,0.002], + [53071,0.003], + [53073,0.002], + [53075,0.002], + [53077,0.001], + [54001,null], + [54003,null], + [54005,null], + [54007,null], + [54009,null], + [54011,0], + [54013,null], + [54015,0], + [54017,0], + [54019,null], + [54021,null], + [54023,null], + [54025,null], + [54027,null], + [54029,null], + [54031,0], + [54033,null], + [54035,null], + [54037,null], + [54039,0], + [54041,0], + [54043,null], + [54045,null], + [54047,null], + [54049,null], + [54051,null], + [54053,null], + [54055,null], + [54057,null], + [54059,null], + [54061,null], + [54063,null], + [54065,null], + [54067,null], + [54069,null], + [54071,null], + [54073,0], + [54075,0], + [54077,null], + [54079,null], + [54081,null], + [54083,null], + [54085,0], + [54087,0], + [54089,null], + [54091,null], + [54093,0], + [54095,null], + [54097,null], + [54099,null], + [54101,null], + [54103,null], + [54105,0], + [54107,null], + [54109,0], + [55001,null], + [55003,null], + [55005,null], + [55007,null], + [55009,null], + [55011,null], + [55013,0], + [55015,null], + [55017,null], + [55019,null], + [55021,null], + [55023,null], + [55025,null], + [55027,null], + [55029,null], + [55031,null], + [55033,null], + [55035,null], + [55037,null], + [55039,null], + [55041,null], + [55043,null], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,null], + [55057,null], + [55059,null], + [55061,null], + [55063,null], + [55065,null], + [55067,null], + [55069,null], + [55071,null], + [55073,null], + [55075,null], + [55077,0], + [55078,0], + [55079,0], + [55081,null], + [55083,null], + [55085,0], + [55087,null], + [55089,null], + [55091,null], + [55093,null], + [55095,null], + [55097,0], + [55099,null], + [55101,0], + [55103,null], + [55105,0], + [55107,0], + [55109,null], + [55111,null], + [55113,null], + [55115,0], + [55117,null], + [55119,0], + [55121,null], + [55123,null], + [55125,null], + [55127,null], + [55129,null], + [55131,null], + [55133,null], + [55135,null], + [55137,null], + [55139,null], + [55141,null], + [56001,0.001], + [56003,0], + [56005,0], + [56007,0.001], + [56009,null], + [56011,0], + [56013,0], + [56015,0.001], + [56017,0.001], + [56019,0], + [56021,0.002], + [56023,null], + [56025,0.001], + [56027,0], + [56029,null], + [56031,null], + [56033,0.001], + [56035,0], + [56037,null], + [56039,null], + [56041,0.002], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-pacisl-2017.json b/data/regional/united-states/demographics/race/us-race-pacisl-2017.json new file mode 100644 index 0000000..867598a --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-pacisl-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Pacific Islander Population", + "description" : "Percent of the population that is pacific islander in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.pacisl.2017"], + [1001,0.0004], + [1003,0], + [1005,0], + [1007,0], + [1009,0], + [1011,0], + [1013,0], + [1015,0], + [1017,0], + [1019,0], + [1021,0], + [1023,0], + [1025,0.0004], + [1027,0], + [1029,0], + [1031,0], + [1033,0.0002], + [1035,0], + [1037,0], + [1039,0.0001], + [1041,0], + [1043,0], + [1045,0.0001], + [1047,0.0003], + [1049,0.0045], + [1051,0], + [1053,0.0007], + [1055,0.0003], + [1057,0], + [1059,0.0005], + [1061,0], + [1063,0], + [1065,0], + [1067,0], + [1069,0.0001], + [1071,0.0006], + [1073,0.0001], + [1075,0], + [1077,0.0001], + [1079,0], + [1081,0], + [1083,0.0003], + [1085,0], + [1087,0], + [1089,0.0005], + [1091,0], + [1093,0], + [1095,0.0003], + [1097,0.0001], + [1099,0], + [1101,0.0001], + [1103,0.0002], + [1105,0], + [1107,0.0002], + [1109,0], + [1111,0.0008], + [1113,0.0012], + [1115,0.0001], + [1117,0.0001], + [1119,0], + [1121,0.0001], + [1123,0], + [1125,0.0002], + [1127,0], + [1129,0], + [1131,0], + [1133,0.0004], + [2013,0.0069], + [2016,0.013], + [2020,0.0119], + [2050,0.0001], + [2060,0.0016], + [2068,0], + [2070,0], + [2090,0.0027], + [2100,0.001], + [2105,0.0005], + [2110,0.0048], + [2122,0.0016], + [2130,0.0002], + [2150,0.0057], + [2158,null], + [2164,0.0012], + [2170,0.001], + [2180,0.0015], + [2185,0.0095], + [2188,0.0001], + [2195,0.0055], + [2198,0.0031], + [2220,0.0021], + [2230,0], + [2240,0.0002], + [2261,0.0031], + [2275,0], + [2282,0.0066], + [2290,0], + [4001,0.0004], + [4003,0.002], + [4005,0.0007], + [4007,0], + [4009,0.0008], + [4011,0], + [4012,0.0011], + [4013,0.0011], + [4015,0.0007], + [4017,0.0006], + [4019,0.0008], + [4021,0.0018], + [4023,0], + [4025,0.0002], + [4027,0.0003], + [5001,0], + [5003,0], + [5005,0.0001], + [5007,0.0023], + [5009,0.0004], + [5011,0], + [5013,0.001], + [5015,0.0032], + [5017,0], + [5019,0], + [5021,0], + [5023,0], + [5025,0], + [5027,0], + [5029,0], + [5031,0.0007], + [5033,0], + [5035,0.0006], + [5037,0], + [5039,0.0012], + [5041,0], + [5043,0], + [5045,0.0007], + [5047,0.0007], + [5049,0.0003], + [5051,0], + [5053,0.0001], + [5055,0.0005], + [5057,0.0018], + [5059,0], + [5061,0], + [5063,0.0001], + [5065,0], + [5067,0], + [5069,0], + [5071,0.0005], + [5073,0], + [5075,0.0001], + [5077,0], + [5079,0], + [5081,0], + [5083,0], + [5085,0.0005], + [5087,0.0023], + [5089,0], + [5091,0.0003], + [5093,0.0002], + [5095,0], + [5097,0], + [5099,0.0001], + [5101,0], + [5103,0], + [5105,0], + [5107,0], + [5109,0], + [5111,0], + [5113,0], + [5115,0], + [5117,0], + [5119,0.0002], + [5121,0], + [5123,0], + [5125,0.0006], + [5127,0], + [5129,0], + [5131,0.0001], + [5133,0.0012], + [5135,0], + [5137,0], + [5139,0], + [5141,0], + [5143,0.01], + [5145,0.0001], + [5147,0.0004], + [5149,0], + [6001,0.0042], + [6003,0.0033], + [6005,0.0011], + [6007,0.0009], + [6009,0.0023], + [6011,0.0004], + [6013,0.0025], + [6015,0.0004], + [6017,0.0009], + [6019,0.001], + [6021,0.002], + [6023,0.0015], + [6025,0.0007], + [6027,0.0009], + [6029,0.0009], + [6031,0.0012], + [6033,0.0003], + [6035,0.0035], + [6037,0.0014], + [6039,0.0007], + [6041,0.0009], + [6043,0.0016], + [6045,0.0011], + [6047,0.0009], + [6049,0.0004], + [6051,0], + [6053,0.0024], + [6055,0.0011], + [6057,0.0005], + [6059,0.0015], + [6061,0.0012], + [6063,0.0015], + [6065,0.0015], + [6067,0.0054], + [6069,0.0011], + [6071,0.0016], + [6073,0.0022], + [6075,0.0019], + [6077,0.0029], + [6079,0.0005], + [6081,0.0071], + [6083,0.0008], + [6085,0.0019], + [6087,0.0005], + [6089,0.0004], + [6091,0], + [6093,0.0018], + [6095,0.0044], + [6097,0.0017], + [6099,0.0034], + [6101,0.0028], + [6103,0.0002], + [6105,0.0045], + [6107,0.0007], + [6109,0.0014], + [6111,0.001], + [6113,0.0021], + [6115,0.002], + [8001,0.0006], + [8003,0.0011], + [8005,0.0011], + [8007,0], + [8009,0], + [8011,0], + [8013,0.0004], + [8014,0], + [8015,0], + [8017,0.0007], + [8019,0.001], + [8021,0.0006], + [8023,0], + [8025,0], + [8027,0.0003], + [8029,0], + [8031,0.0007], + [8033,0], + [8035,0.0003], + [8037,0.0004], + [8039,0.0001], + [8041,0.0021], + [8043,0.0003], + [8045,0.0001], + [8047,0], + [8049,0.0036], + [8051,0.0004], + [8053,0], + [8055,0], + [8057,0], + [8059,0.0003], + [8061,0], + [8063,0.0025], + [8065,0.0023], + [8067,0.0002], + [8069,0.0005], + [8071,0.0007], + [8073,0.0013], + [8075,0], + [8077,0.0007], + [8079,0], + [8081,0.0029], + [8083,0.0006], + [8085,0.0019], + [8087,0.0005], + [8089,0.0043], + [8091,0.0004], + [8093,0.0037], + [8095,0], + [8097,0], + [8099,0], + [8101,0.0004], + [8103,0.0006], + [8105,0.001], + [8107,0.0001], + [8109,0], + [8111,0], + [8113,0], + [8115,0], + [8117,0.0012], + [8119,0], + [8121,0], + [8123,0.0005], + [8125,0], + [9001,0.0002], + [9003,0.0002], + [9005,0], + [9007,0], + [9009,0.0001], + [9011,0.0001], + [9013,0], + [9015,0.0001], + [10001,0.0003], + [10003,0.0002], + [10005,0.0004], + [11001,0.0002], + [12001,0.0003], + [12003,0.0002], + [12005,0.0001], + [12007,0.0001], + [12009,0.0004], + [12011,0.0003], + [12013,0], + [12015,0.0002], + [12017,0], + [12019,0.0004], + [12021,0], + [12023,0.0003], + [12027,0.0006], + [12029,0.0007], + [12031,0.0005], + [12033,0.0006], + [12035,0.0001], + [12037,0.0033], + [12039,0.0003], + [12041,0], + [12043,0], + [12045,0.001], + [12047,0], + [12049,0.0002], + [12051,0.0006], + [12053,0.0001], + [12055,0.0001], + [12057,0.0003], + [12059,0.0008], + [12061,0], + [12063,0.0005], + [12065,0], + [12067,0.0052], + [12069,0.0004], + [12071,0.0003], + [12073,0.0001], + [12075,0], + [12077,0], + [12079,0.0001], + [12081,0.0006], + [12083,0.0003], + [12085,0.0004], + [12086,0.0001], + [12087,0], + [12089,0], + [12091,0.0008], + [12093,0.0009], + [12095,0.0004], + [12097,0.0006], + [12099,0.0002], + [12101,0.0003], + [12103,0.0004], + [12105,0.0002], + [12107,0], + [12109,0.0004], + [12111,0.0006], + [12113,0.0011], + [12115,0.0001], + [12117,0.0004], + [12119,0.0002], + [12121,0.0005], + [12123,0.0008], + [12125,0.0002], + [12127,0.0002], + [12129,0], + [12131,0.0008], + [12133,0.0015], + [13001,0], + [13003,0], + [13005,0.0011], + [13007,0.0025], + [13009,0.0008], + [13011,0], + [13013,0], + [13015,0], + [13017,0.0002], + [13019,0], + [13021,0.0001], + [13023,0], + [13025,0.0007], + [13027,0.0001], + [13029,0.0004], + [13031,0.0001], + [13033,0], + [13035,0.0004], + [13037,0], + [13039,0.0004], + [13043,0], + [13045,0.0005], + [13047,0.0002], + [13049,0.0005], + [13051,0.0006], + [13053,0.0011], + [13055,0], + [13057,0.0001], + [13059,0.0002], + [13061,0], + [13063,0], + [13065,0], + [13067,0.0003], + [13069,0], + [13071,0], + [13073,0], + [13075,0], + [13077,0.0002], + [13079,0], + [13081,0.0011], + [13083,0.0042], + [13085,0], + [13087,0], + [13089,0.0002], + [13091,0], + [13093,0], + [13095,0.0001], + [13097,0.0001], + [13099,0], + [13101,0], + [13103,0.0003], + [13105,0], + [13107,0], + [13109,0], + [13111,0.0005], + [13113,0.0004], + [13115,0], + [13117,0.0001], + [13119,0], + [13121,0.0002], + [13123,0.0001], + [13125,0], + [13127,0.0002], + [13129,0.0001], + [13131,0.0015], + [13133,0.0001], + [13135,0.0002], + [13137,0.001], + [13139,0.0001], + [13141,0.0007], + [13143,0], + [13145,0], + [13147,0.0001], + [13149,0.0004], + [13151,0], + [13153,0], + [13155,0], + [13157,0.0001], + [13159,0], + [13161,0], + [13163,0], + [13165,0], + [13167,0], + [13169,0], + [13171,0], + [13173,0], + [13175,0.0001], + [13177,0.0004], + [13179,0.0026], + [13181,0.0001], + [13183,0.0008], + [13185,0.0002], + [13187,0], + [13189,0.0042], + [13191,0.0007], + [13193,0.0001], + [13195,0], + [13197,0.0023], + [13199,0], + [13201,0], + [13205,0.0003], + [13207,0], + [13209,0], + [13211,0], + [13213,0], + [13215,0.0008], + [13217,0.0006], + [13219,0], + [13221,0], + [13223,0.0002], + [13225,0.0004], + [13227,0.0002], + [13229,0], + [13231,0], + [13233,0.0003], + [13235,0], + [13237,0], + [13239,0.0009], + [13241,0], + [13243,0], + [13245,0.0011], + [13247,0.0012], + [13249,0], + [13251,0], + [13253,0], + [13255,0.0001], + [13257,0], + [13259,0], + [13261,0], + [13263,0], + [13265,0], + [13267,0.0001], + [13269,0], + [13271,0], + [13273,0], + [13275,0.0002], + [13277,0.0002], + [13279,0], + [13281,0], + [13283,0], + [13285,0.0001], + [13287,0], + [13289,0], + [13291,0], + [13293,0.0007], + [13295,0], + [13297,0.0004], + [13299,0.0002], + [13301,0.0014], + [13303,0], + [13305,0], + [13307,0], + [13309,0], + [13311,0], + [13313,0], + [13315,0], + [13317,0], + [13319,0.0004], + [13321,0], + [15001,0.0654], + [15003,0.0468], + [15005,0.1686], + [15007,0.047], + [15009,0.0533], + [16001,0.0008], + [16003,0.001], + [16005,0.0011], + [16007,0], + [16009,0.0011], + [16011,0], + [16013,0.0022], + [16015,0.0004], + [16017,0.0003], + [16019,0.0008], + [16021,0.0022], + [16023,0], + [16025,0], + [16027,0.001], + [16029,0], + [16031,0.0003], + [16033,0], + [16035,0.0018], + [16037,0], + [16039,0.0016], + [16041,0.0005], + [16043,0.001], + [16045,0.0001], + [16047,0.0012], + [16049,0.0005], + [16051,0.0011], + [16053,0.0015], + [16055,0.0005], + [16057,0.0002], + [16059,0.0002], + [16061,0.0001], + [16063,0], + [16065,0.0005], + [16067,0.0007], + [16069,0.0003], + [16071,0], + [16073,0], + [16075,0], + [16077,0.0002], + [16079,0], + [16081,0], + [16083,0.0004], + [16085,0], + [16087,0], + [17001,0.0003], + [17003,0], + [17005,0], + [17007,0], + [17009,0], + [17011,0], + [17013,0], + [17015,0], + [17017,0.0017], + [17019,0.0003], + [17021,0.0004], + [17023,0], + [17025,0], + [17027,0], + [17029,0.0012], + [17031,0.0002], + [17033,0.0002], + [17035,0.0007], + [17037,0], + [17039,0.0008], + [17041,0.0003], + [17043,0.0002], + [17045,0], + [17047,0], + [17049,0.0001], + [17051,0], + [17053,0.0001], + [17055,0.0005], + [17057,0.0004], + [17059,0], + [17061,0], + [17063,0.0001], + [17065,0], + [17067,0], + [17069,0], + [17071,0], + [17073,0], + [17075,0], + [17077,0.0001], + [17079,0], + [17081,0], + [17083,0.0005], + [17085,0.0004], + [17087,0], + [17089,0.0001], + [17091,0.0002], + [17093,0], + [17095,0], + [17097,0.0003], + [17099,0.0001], + [17101,0], + [17103,0.0007], + [17105,0], + [17107,0.0001], + [17109,0.0005], + [17111,0.0002], + [17113,0.0001], + [17115,0], + [17117,0], + [17119,0.0002], + [17121,0], + [17123,0.0008], + [17125,0], + [17127,0], + [17129,0.0019], + [17131,0], + [17133,0], + [17135,0.0002], + [17137,0], + [17139,0], + [17141,0.0001], + [17143,0], + [17145,0], + [17147,0], + [17149,0], + [17151,0], + [17153,0], + [17155,0], + [17157,0], + [17159,0], + [17161,0.0002], + [17163,0.0001], + [17165,0], + [17167,0.0002], + [17169,0], + [17171,0.0007], + [17173,0], + [17175,0], + [17177,0], + [17179,0.0001], + [17181,0], + [17183,0.0001], + [17185,0], + [17187,0], + [17189,0.0003], + [17191,0], + [17193,0.0004], + [17195,0.0005], + [17197,0.0001], + [17199,0.0001], + [17201,0.0001], + [17203,0], + [18001,0], + [18003,0.0002], + [18005,0.0004], + [18007,0], + [18009,0], + [18011,0], + [18013,0], + [18015,0.0001], + [18017,0.0006], + [18019,0.0001], + [18021,0], + [18023,0.0006], + [18025,0], + [18027,0.0002], + [18029,0], + [18031,0], + [18033,0], + [18035,0.0005], + [18037,0], + [18039,0.0003], + [18041,0], + [18043,0], + [18045,0], + [18047,0], + [18049,0.0003], + [18051,0], + [18053,0], + [18055,0.0002], + [18057,0], + [18059,0.0001], + [18061,0], + [18063,0], + [18065,0.0001], + [18067,0.0002], + [18069,0], + [18071,0], + [18073,0], + [18075,0], + [18077,0], + [18079,0], + [18081,0.0001], + [18083,0.0005], + [18085,0.0001], + [18087,0.0001], + [18089,0.0002], + [18091,0.0002], + [18093,0.0002], + [18095,0.0002], + [18097,0.0002], + [18099,0], + [18101,0.0012], + [18103,0.0004], + [18105,0.0002], + [18107,0.0001], + [18109,0], + [18111,0], + [18113,0], + [18115,0], + [18117,0], + [18119,0], + [18121,0.0027], + [18123,0], + [18125,0], + [18127,0.0006], + [18129,0], + [18131,0], + [18133,0.0001], + [18135,0], + [18137,0], + [18139,0], + [18141,0.0005], + [18143,0], + [18145,0], + [18147,0.0004], + [18149,0], + [18151,0.0002], + [18153,0], + [18155,0], + [18157,0.0002], + [18159,0.0018], + [18161,0], + [18163,0.0007], + [18165,0], + [18167,0.0002], + [18169,0], + [18171,0], + [18173,0.0001], + [18175,0], + [18177,0], + [18179,0], + [18181,0], + [18183,0], + [19001,0], + [19003,0], + [19005,0.0001], + [19007,0], + [19009,0], + [19011,0], + [19013,0.0012], + [19015,0.0033], + [19017,0.0001], + [19019,0], + [19021,0.0063], + [19023,0.0003], + [19025,0], + [19027,0], + [19029,0.0008], + [19031,0], + [19033,0], + [19035,0], + [19037,0], + [19039,0], + [19041,0.0002], + [19043,0], + [19045,0], + [19047,0.0004], + [19049,0.0003], + [19051,0], + [19053,0.001], + [19055,0], + [19057,0], + [19059,0], + [19061,0.0018], + [19063,0], + [19065,0], + [19067,0.0003], + [19069,0], + [19071,0], + [19073,0.0002], + [19075,0], + [19077,0], + [19079,0], + [19081,0.0004], + [19083,0], + [19085,0.0005], + [19087,0.0002], + [19089,0], + [19091,0], + [19093,0], + [19095,0.0002], + [19097,0.0033], + [19099,0.0007], + [19101,0], + [19103,0.0006], + [19105,0], + [19107,0.0003], + [19109,0], + [19111,0], + [19113,0.0003], + [19115,0], + [19117,0], + [19119,0.0006], + [19121,0.0006], + [19123,0.0003], + [19125,0], + [19127,0.0002], + [19129,0], + [19131,0], + [19133,0], + [19135,0], + [19137,0], + [19139,0.0003], + [19141,0.0001], + [19143,0.0003], + [19145,0.0003], + [19147,0], + [19149,0.0005], + [19151,0.0006], + [19153,0.0004], + [19155,0], + [19157,0.0002], + [19159,0], + [19161,0], + [19163,0.0001], + [19165,0], + [19167,0.0001], + [19169,0.0002], + [19171,0.0002], + [19173,0], + [19175,0.0006], + [19177,0], + [19179,0.0014], + [19181,0.0017], + [19183,0.0002], + [19185,0], + [19187,0.0001], + [19189,0], + [19191,0], + [19193,0.0011], + [19195,0.0001], + [19197,0], + [20001,0.0007], + [20003,0], + [20005,0.0003], + [20007,0], + [20009,0.0014], + [20011,0], + [20013,0.0005], + [20015,0.0001], + [20017,0], + [20019,0], + [20021,0.0023], + [20023,0], + [20025,0], + [20027,0], + [20029,0], + [20031,0], + [20033,0], + [20035,0.0004], + [20037,0], + [20039,0], + [20041,0], + [20043,0], + [20045,0], + [20047,0], + [20049,0], + [20051,0.0004], + [20053,0], + [20055,0], + [20057,0.0001], + [20059,0], + [20061,0.004], + [20063,0], + [20065,0], + [20067,0], + [20069,0.0012], + [20071,0], + [20073,0], + [20075,0], + [20077,0], + [20079,0.0008], + [20081,0.0001], + [20083,0], + [20085,0.0013], + [20087,0], + [20089,0.0003], + [20091,0.0002], + [20093,0], + [20095,0], + [20097,0], + [20099,0], + [20101,0.0021], + [20103,0.0002], + [20105,0], + [20107,0], + [20109,0], + [20111,0], + [20113,0.0002], + [20115,0], + [20117,0.0014], + [20119,0.0005], + [20121,0], + [20123,0], + [20125,0.0008], + [20127,0], + [20129,0], + [20131,0], + [20133,0.0002], + [20135,0], + [20137,0.0016], + [20139,0], + [20141,0], + [20143,0], + [20145,0], + [20147,0.0005], + [20149,0], + [20151,0], + [20153,0], + [20155,0.0003], + [20157,0], + [20159,0.0008], + [20161,0.0011], + [20163,0], + [20165,0], + [20167,0.0054], + [20169,0.0002], + [20171,0], + [20173,0.0002], + [20175,0], + [20177,0.0003], + [20179,0], + [20181,0], + [20183,0], + [20185,0], + [20187,0], + [20189,0.001], + [20191,0], + [20193,0.0003], + [20195,0], + [20197,0], + [20199,0], + [20201,0], + [20203,0], + [20205,0], + [20207,0], + [20209,0.0005], + [21001,0], + [21003,0], + [21005,0], + [21007,0], + [21009,0], + [21011,0], + [21013,0], + [21015,0], + [21017,0], + [21019,0], + [21021,0], + [21023,0], + [21025,0], + [21027,0], + [21029,0.0004], + [21031,0.0001], + [21033,0], + [21035,0.0003], + [21037,0.0002], + [21039,0], + [21041,0], + [21043,0.0001], + [21045,0], + [21047,0.0018], + [21049,0], + [21051,0.0004], + [21053,0], + [21055,0], + [21057,0], + [21059,0], + [21061,0], + [21063,0], + [21065,0.0001], + [21067,0.0003], + [21069,0], + [21071,0], + [21073,0.0001], + [21075,0], + [21077,0], + [21079,0], + [21081,0], + [21083,0.0011], + [21085,0.0003], + [21087,0], + [21089,0], + [21091,0], + [21093,0.0015], + [21095,0], + [21097,0], + [21099,0.0001], + [21101,0], + [21103,0.0005], + [21105,0], + [21107,0], + [21109,0], + [21111,0.0002], + [21113,0], + [21115,0], + [21117,0.0002], + [21119,0.0005], + [21121,0], + [21123,0], + [21125,0], + [21127,0], + [21129,0], + [21131,0], + [21133,0], + [21135,0], + [21137,0.0001], + [21139,0.0001], + [21141,0], + [21143,0], + [21145,0.0002], + [21147,0], + [21149,0], + [21151,0.0002], + [21153,0], + [21155,0], + [21157,0], + [21159,0.0003], + [21161,0], + [21163,0], + [21165,0], + [21167,0], + [21169,0], + [21171,0.0004], + [21173,0.0005], + [21175,0], + [21177,0.0001], + [21179,0], + [21181,0], + [21183,0], + [21185,0.0003], + [21187,0.0005], + [21189,0], + [21191,0], + [21193,0.0018], + [21195,0], + [21197,0.0005], + [21199,0], + [21201,0], + [21203,0.0004], + [21205,0], + [21207,0.0032], + [21209,0], + [21211,0.0002], + [21213,0], + [21215,0], + [21217,0], + [21219,0], + [21221,0], + [21223,0.0014], + [21225,0], + [21227,0.0012], + [21229,0], + [21231,0], + [21233,0.0002], + [21235,0.0002], + [21237,0], + [21239,0.0001], + [22001,0.0001], + [22003,0], + [22005,0], + [22007,0], + [22009,0.0006], + [22011,0.0001], + [22013,0], + [22015,0.0008], + [22017,0.0001], + [22019,0], + [22021,0], + [22023,0], + [22025,0], + [22027,0], + [22029,0.0006], + [22031,0.0003], + [22033,0.0001], + [22035,0], + [22037,0], + [22039,0], + [22041,0], + [22043,0], + [22045,0], + [22047,0], + [22049,0], + [22051,0.0001], + [22053,0], + [22055,0], + [22057,0.0001], + [22059,0.0005], + [22061,0], + [22063,0.0001], + [22065,0], + [22067,0], + [22069,0], + [22071,0.0002], + [22073,0.0002], + [22075,0], + [22077,0], + [22079,0], + [22081,0.0011], + [22083,0], + [22085,0.0002], + [22087,0.0004], + [22089,0], + [22091,0], + [22093,0], + [22095,0], + [22097,0], + [22099,0], + [22101,0.0001], + [22103,0.0002], + [22105,0], + [22107,0], + [22109,0.0003], + [22111,0.0007], + [22113,0], + [22115,0.0022], + [22117,0.0001], + [22119,0.0003], + [22121,0], + [22123,0.0003], + [22125,0], + [22127,0], + [23001,0], + [23003,0], + [23005,0], + [23007,0.0005], + [23009,0.0004], + [23011,0.0002], + [23013,0], + [23015,0], + [23017,0], + [23019,0.0001], + [23021,0], + [23023,0], + [23025,0.0002], + [23027,0], + [23029,0.0001], + [23031,0.0001], + [24001,0.0002], + [24003,0.0004], + [24005,0.0002], + [24009,0.0002], + [24011,0.0003], + [24013,0.0002], + [24015,0.0002], + [24017,0.0005], + [24019,0], + [24021,0.0004], + [24023,0], + [24025,0], + [24027,0.0001], + [24029,0], + [24031,0.0002], + [24033,0.0002], + [24035,0.0007], + [24037,0.0001], + [24039,0.0003], + [24041,0.0004], + [24043,0.0002], + [24045,0.0004], + [24047,0.0005], + [24510,0.0002], + [25001,0.0004], + [25003,0.0002], + [25005,0.0003], + [25007,0], + [25009,0.0002], + [25011,0.0004], + [25013,0.0002], + [25015,0.0002], + [25017,0.0001], + [25019,0.0003], + [25021,0.0002], + [25023,0.0002], + [25025,0.0001], + [25027,0.0001], + [26001,0.0001], + [26003,0], + [26005,0.0001], + [26007,0.0005], + [26009,0], + [26011,0], + [26013,0.0002], + [26015,0.0001], + [26017,0], + [26019,0.0001], + [26021,0.0002], + [26023,0.0002], + [26025,0.0002], + [26027,0.0002], + [26029,0.0003], + [26031,0], + [26033,0.0004], + [26035,0], + [26037,0], + [26039,0.0003], + [26041,0.0002], + [26043,0], + [26045,0.0002], + [26047,0.0003], + [26049,0.0002], + [26051,0.0001], + [26053,0.0004], + [26055,0.0005], + [26057,0.0002], + [26059,0], + [26061,0.0002], + [26063,0], + [26065,0.0002], + [26067,0], + [26069,0.0002], + [26071,0], + [26073,0], + [26075,0.0001], + [26077,0.0002], + [26079,0], + [26081,0.0001], + [26083,0], + [26085,0.0002], + [26087,0.0001], + [26089,0.0001], + [26091,0.0003], + [26093,0.0003], + [26095,0.0002], + [26097,0.0001], + [26099,0.0002], + [26101,0.0002], + [26103,0.0002], + [26105,0], + [26107,0.0002], + [26109,0], + [26111,0.0005], + [26113,0], + [26115,0], + [26117,0.0003], + [26119,0.0001], + [26121,0.0001], + [26123,0], + [26125,0.0001], + [26127,0.0001], + [26129,0], + [26131,0.0003], + [26133,0], + [26135,0.0006], + [26137,0], + [26139,0], + [26141,0], + [26143,0], + [26145,0], + [26147,0.0001], + [26149,0.0002], + [26151,0.0001], + [26153,0], + [26155,0.0001], + [26157,0], + [26159,0.0003], + [26161,0.0002], + [26163,0.0001], + [26165,0.0001], + [27001,0.0001], + [27003,0.0002], + [27005,0.0001], + [27007,0.0005], + [27009,0], + [27011,0], + [27013,0.0001], + [27015,0.0005], + [27017,0], + [27019,0.0002], + [27021,0.0002], + [27023,0.0051], + [27025,0.0001], + [27027,0.0001], + [27029,0.0007], + [27031,0], + [27033,0.0013], + [27035,0], + [27037,0.0002], + [27039,0], + [27041,0], + [27043,0], + [27045,0.0001], + [27047,0.0002], + [27049,0], + [27051,0], + [27053,0.0002], + [27055,0.0001], + [27057,0], + [27059,0.0001], + [27061,0.0001], + [27063,0.0001], + [27065,0.0001], + [27067,0], + [27069,0], + [27071,0], + [27073,0], + [27075,0.0002], + [27077,0], + [27079,0.0001], + [27081,0], + [27083,0], + [27085,0], + [27087,0.0017], + [27089,0.0002], + [27091,0.0001], + [27093,0.0003], + [27095,0.0004], + [27097,0], + [27099,0], + [27101,0], + [27103,0], + [27105,0.0002], + [27107,0], + [27109,0.0001], + [27111,0.0001], + [27113,0.0001], + [27115,0.0005], + [27117,0], + [27119,0.0003], + [27121,0], + [27123,0.0002], + [27125,0], + [27127,0], + [27129,0], + [27131,0.0002], + [27133,0], + [27135,0.0001], + [27137,0.0002], + [27139,0.0005], + [27141,0.0001], + [27143,0.0001], + [27145,0.0001], + [27147,0.0001], + [27149,0.0013], + [27151,0.0006], + [27153,0], + [27155,0], + [27157,0], + [27159,0], + [27161,0.0001], + [27163,0.0003], + [27165,0], + [27167,0], + [27169,0.0001], + [27171,0], + [27173,0], + [28001,0], + [28003,0], + [28005,0], + [28007,0], + [28009,0], + [28011,0], + [28013,0.0013], + [28015,0], + [28017,0], + [28019,0.0004], + [28021,0], + [28023,0], + [28025,0], + [28027,0], + [28029,0], + [28031,0.0005], + [28033,0], + [28035,0.0001], + [28037,0], + [28039,0], + [28041,0], + [28043,0], + [28045,0], + [28047,0.0001], + [28049,0.0002], + [28051,0], + [28053,0], + [28055,0], + [28057,0.0001], + [28059,0.0002], + [28061,0], + [28063,0], + [28065,0], + [28067,0.0004], + [28069,0], + [28071,0.0002], + [28073,0], + [28075,0.0002], + [28077,0], + [28079,0], + [28081,0.0001], + [28083,0], + [28085,0], + [28087,0.0001], + [28089,0], + [28091,0.0003], + [28093,0], + [28095,0], + [28097,0], + [28099,0], + [28101,0], + [28103,0], + [28105,0.0001], + [28107,0], + [28109,0], + [28111,0], + [28113,0.0001], + [28115,0], + [28117,0], + [28119,0], + [28121,0.0001], + [28123,0], + [28125,0], + [28127,0], + [28129,0], + [28131,0], + [28133,0], + [28135,0.0008], + [28137,0.0005], + [28139,0.0003], + [28141,0], + [28143,0], + [28145,0.0008], + [28147,0], + [28149,0], + [28151,0], + [28153,0], + [28155,0], + [28157,0], + [28159,0], + [28161,0], + [28163,0], + [29001,0.0006], + [29003,0.0021], + [29005,0], + [29007,0.0002], + [29009,0], + [29011,0.0002], + [29013,0.0003], + [29015,0.0001], + [29017,0], + [29019,0.0006], + [29021,0.0011], + [29023,0.0001], + [29025,0], + [29027,0.0001], + [29029,0], + [29031,0.0001], + [29033,0], + [29035,0], + [29037,0.0001], + [29039,0.0009], + [29041,0], + [29043,0.0003], + [29045,0], + [29047,0.001], + [29049,0.0002], + [29051,0.0003], + [29053,0.0004], + [29055,0], + [29057,0.0004], + [29059,0], + [29061,0], + [29063,0.0005], + [29065,0], + [29067,0], + [29069,0.0001], + [29071,0.0002], + [29073,0], + [29075,0.0003], + [29077,0.0004], + [29079,0.0006], + [29081,0], + [29083,0.0002], + [29085,0.0003], + [29087,0.0002], + [29089,0.0007], + [29091,0], + [29093,0.0002], + [29095,0.0013], + [29097,0.0007], + [29099,0.0001], + [29101,0.0016], + [29103,0.0018], + [29105,0], + [29107,0.0003], + [29109,0], + [29111,0.0006], + [29113,0.0005], + [29115,0.0003], + [29117,0.0008], + [29119,0.0078], + [29121,0], + [29123,0], + [29125,0], + [29127,0.0006], + [29129,0.0005], + [29131,0], + [29133,0.0002], + [29135,0], + [29137,0.0012], + [29139,0.0011], + [29141,0], + [29143,0], + [29145,0.0047], + [29147,0.0013], + [29149,0], + [29151,0], + [29153,0], + [29155,0.0001], + [29157,0], + [29159,0.0004], + [29161,0], + [29163,0.0003], + [29165,0.0002], + [29167,0.0003], + [29169,0.0018], + [29171,0], + [29173,0.0001], + [29175,0.0003], + [29177,0], + [29179,0.0011], + [29181,0.0019], + [29183,0.0002], + [29185,0], + [29186,0], + [29187,0], + [29189,0.0001], + [29195,0.0047], + [29197,0], + [29199,0], + [29201,0], + [29203,0], + [29205,0], + [29207,0], + [29209,0.0005], + [29211,0.0002], + [29213,0.0003], + [29215,0], + [29217,0], + [29219,0.0011], + [29221,0.0001], + [29223,0], + [29225,0.0009], + [29227,0], + [29229,0], + [29510,0.0003], + [30001,0.0002], + [30003,0.0001], + [30005,0.0008], + [30007,0], + [30009,0], + [30011,0], + [30013,0.0005], + [30015,0.0002], + [30017,0], + [30019,0], + [30021,0], + [30023,0.0003], + [30025,0], + [30027,0.0035], + [30029,0.0002], + [30031,0.0001], + [30033,0], + [30035,0.0007], + [30037,0], + [30039,0], + [30041,0], + [30043,0], + [30045,0], + [30047,0.0007], + [30049,0.0003], + [30051,0], + [30053,0.0001], + [30055,0], + [30057,0], + [30059,0], + [30061,0], + [30063,0.0002], + [30065,0], + [30067,0.0004], + [30069,0], + [30071,0], + [30073,0], + [30075,0], + [30077,0], + [30079,0], + [30081,0], + [30083,0], + [30085,0], + [30087,0], + [30089,0], + [30091,0], + [30093,0], + [30095,0], + [30097,0], + [30099,0], + [30101,0], + [30103,0], + [30105,0.0016], + [30107,0], + [30109,0], + [30111,0.0005], + [31001,0.0002], + [31003,0], + [31005,0], + [31007,0], + [31009,0.007], + [31011,0.0007], + [31013,0.0014], + [31015,0], + [31017,0], + [31019,0.0001], + [31021,0], + [31023,0], + [31025,0.0015], + [31027,0.0001], + [31029,0], + [31031,0.0008], + [31033,0], + [31035,0], + [31037,0.0005], + [31039,0.001], + [31041,0], + [31043,0.0006], + [31045,0.0109], + [31047,0.0003], + [31049,0], + [31051,0.0004], + [31053,0.0008], + [31055,0.0003], + [31057,0], + [31059,0], + [31061,0], + [31063,0], + [31065,0.0005], + [31067,0.0011], + [31069,0], + [31071,0], + [31073,0], + [31075,0], + [31077,0], + [31079,0.0013], + [31081,0], + [31083,0.0001], + [31085,0], + [31087,0], + [31089,0.0001], + [31091,0], + [31093,0.0005], + [31095,0], + [31097,0], + [31099,0], + [31101,0.0014], + [31103,0], + [31105,0], + [31107,0.0008], + [31109,0.0003], + [31111,0.0002], + [31113,0], + [31115,0], + [31117,0], + [31119,0], + [31121,0], + [31123,0], + [31125,0.0004], + [31127,0.0001], + [31129,0], + [31131,0], + [31133,0], + [31135,0], + [31137,0], + [31139,0.0004], + [31141,0.0001], + [31143,0], + [31145,0], + [31147,0], + [31149,0], + [31151,0.0007], + [31153,0.0005], + [31155,0], + [31157,0.0004], + [31159,0], + [31161,0.0002], + [31163,0], + [31165,0], + [31167,0], + [31169,0], + [31171,0], + [31173,0], + [31175,0], + [31177,0], + [31179,0], + [31181,0.0011], + [31183,0], + [31185,0], + [32001,0.0011], + [32003,0.0037], + [32005,0.0015], + [32007,0.0012], + [32009,0], + [32011,0], + [32013,0.0001], + [32015,0.0025], + [32017,0], + [32019,0.001], + [32021,0], + [32023,0.0019], + [32027,0.0023], + [32029,0], + [32031,0.003], + [32033,0.0009], + [32510,0.0007], + [33001,0.0001], + [33003,0.0001], + [33005,0.0002], + [33007,0.0006], + [33009,0.0003], + [33011,0.0002], + [33013,0], + [33015,0], + [33017,0], + [33019,0.0002], + [34001,0.0002], + [34003,0.0002], + [34005,0.0002], + [34007,0.0002], + [34009,0.0004], + [34011,0], + [34013,0.0001], + [34015,0.0001], + [34017,0.0004], + [34019,0.0001], + [34021,0.0002], + [34023,0.0001], + [34025,0.0002], + [34027,0.0001], + [34029,0.0002], + [34031,0.0001], + [34033,0], + [34035,0], + [34037,0], + [34039,0.0002], + [34041,0.0001], + [35001,0.0004], + [35003,0], + [35005,0.0002], + [35006,0], + [35007,0], + [35009,0.001], + [35011,0], + [35013,0.0001], + [35015,0.0002], + [35017,0.0001], + [35019,0], + [35021,0], + [35023,0], + [35025,0.0003], + [35027,0], + [35028,0], + [35029,0], + [35031,0.0002], + [35033,0], + [35035,0.0006], + [35037,0.001], + [35039,0.0001], + [35041,0.0002], + [35043,0.0006], + [35045,0.0003], + [35047,0.001], + [35049,0.0005], + [35051,0], + [35053,0], + [35055,0.0001], + [35057,0], + [35059,0], + [35061,0], + [36001,0.0002], + [36003,0.0001], + [36005,0.0003], + [36007,0.0002], + [36009,0], + [36011,0], + [36013,0.0002], + [36015,0.0001], + [36017,0.0002], + [36019,0.0001], + [36021,0.0001], + [36023,0.0001], + [36025,0], + [36027,0.0002], + [36029,0.0002], + [36031,0.0001], + [36033,0.0012], + [36035,0.0001], + [36037,0], + [36039,0.0001], + [36041,0.0001], + [36043,0.0007], + [36045,0.0014], + [36047,0.0002], + [36049,0.0004], + [36051,0.0001], + [36053,0.0003], + [36055,0.0001], + [36057,0], + [36059,0.0001], + [36061,0.0003], + [36063,0.0002], + [36065,0.0001], + [36067,0.0001], + [36069,0.0006], + [36071,0.0003], + [36073,0.0003], + [36075,0], + [36077,0], + [36079,0.0001], + [36081,0.0003], + [36083,0], + [36085,0.0002], + [36087,0.0001], + [36089,0.0003], + [36091,0.0001], + [36093,0.0001], + [36095,0.0002], + [36097,0], + [36099,0], + [36101,0.0001], + [36103,0.0002], + [36105,0], + [36107,0.0001], + [36109,0.0001], + [36111,0.0003], + [36113,0.0003], + [36115,0], + [36117,0.0004], + [36119,0.0001], + [36121,0], + [36123,0], + [37001,0.0002], + [37003,0.0004], + [37005,0.0001], + [37007,0.0002], + [37009,0.0002], + [37011,0], + [37013,0.0006], + [37015,0], + [37017,0], + [37019,0.0005], + [37021,0.0005], + [37023,0.0006], + [37025,0.0003], + [37027,0.0002], + [37029,0], + [37031,0.0003], + [37033,0.0009], + [37035,0], + [37037,0.0003], + [37039,0], + [37041,0.0001], + [37043,0], + [37045,0], + [37047,0.0001], + [37049,0.0001], + [37051,0.0013], + [37053,0.0002], + [37055,0], + [37057,0.0001], + [37059,0], + [37061,0.0002], + [37063,0.0002], + [37065,0.0003], + [37067,0.0005], + [37069,0.0008], + [37071,0.0003], + [37073,0], + [37075,0.0001], + [37077,0.0001], + [37079,0], + [37081,0.0003], + [37083,0.0002], + [37085,0.0009], + [37087,0.0002], + [37089,0.0004], + [37091,0.0007], + [37093,0.0004], + [37095,0], + [37097,0.0001], + [37099,0], + [37101,0], + [37103,0], + [37105,0.0002], + [37107,0.0003], + [37109,0.0002], + [37111,0.0001], + [37113,0], + [37115,0], + [37117,0.001], + [37119,0.0003], + [37121,0], + [37123,0.0001], + [37125,0.0001], + [37127,0.0001], + [37129,0.0004], + [37131,0], + [37133,0.0013], + [37135,0], + [37137,0.0036], + [37139,0.0016], + [37141,0.0003], + [37143,0.0005], + [37145,0.0002], + [37147,0.0002], + [37149,0.0002], + [37151,0.0001], + [37153,0], + [37155,0.0002], + [37157,0.0003], + [37159,0.0001], + [37161,0.0001], + [37163,0.0001], + [37165,0.0001], + [37167,0.0001], + [37169,0.0002], + [37171,0.0002], + [37173,0], + [37175,0.0002], + [37177,0], + [37179,0.0002], + [37181,0.0002], + [37183,0.0002], + [37185,0.0002], + [37187,0], + [37189,0.0006], + [37191,0.0001], + [37193,0.0005], + [37195,0], + [37197,0.0003], + [37199,0.0006], + [38001,0], + [38003,0.0005], + [38005,0], + [38007,0], + [38009,0], + [38011,0], + [38013,0], + [38015,0.0002], + [38017,0.0002], + [38019,0], + [38021,0], + [38023,0], + [38025,0.0011], + [38027,0.0006], + [38029,0], + [38031,0], + [38033,0], + [38035,0.0006], + [38037,0], + [38039,0], + [38041,0.001], + [38043,0], + [38045,0], + [38047,0], + [38049,0], + [38051,0], + [38053,0], + [38055,0], + [38057,0], + [38059,0], + [38061,0], + [38063,0], + [38065,0], + [38067,0], + [38069,0], + [38071,0], + [38073,0], + [38075,0], + [38077,0.0002], + [38079,0], + [38081,0], + [38083,0], + [38085,0.0002], + [38087,0], + [38089,0.0001], + [38091,0], + [38093,0.0005], + [38095,0], + [38097,0.0011], + [38099,0], + [38101,0.0005], + [38103,0], + [38105,0.0002], + [39001,0], + [39003,0], + [39005,0], + [39007,0.0002], + [39009,0.0004], + [39011,0.0003], + [39013,0], + [39015,0], + [39017,0.0004], + [39019,0.0003], + [39021,0.0004], + [39023,0.0004], + [39025,0.0002], + [39027,0.0002], + [39029,0], + [39031,0], + [39033,0.0001], + [39035,0.0001], + [39037,0], + [39039,0.0001], + [39041,0.0002], + [39043,0], + [39045,0.0001], + [39047,0.0003], + [39049,0.0002], + [39051,0.0003], + [39053,0.0003], + [39055,0], + [39057,0.0001], + [39059,0], + [39061,0.0003], + [39063,0], + [39065,0], + [39067,0], + [39069,0], + [39071,0], + [39073,0], + [39075,0], + [39077,0], + [39079,0.0004], + [39081,0], + [39083,0.0001], + [39085,0.0001], + [39087,0], + [39089,0.0001], + [39091,0], + [39093,0.0002], + [39095,0.0002], + [39097,0.0001], + [39099,0.0001], + [39101,0], + [39103,0], + [39105,0], + [39107,0.0019], + [39109,0.0001], + [39111,0], + [39113,0.0002], + [39115,0], + [39117,0], + [39119,0.0001], + [39121,0], + [39123,0], + [39125,0.0004], + [39127,0.0001], + [39129,0], + [39131,0], + [39133,0.0001], + [39135,0], + [39137,0.0001], + [39139,0.0001], + [39141,0.0001], + [39143,0.0001], + [39145,0], + [39147,0], + [39149,0], + [39151,0.0001], + [39153,0.0001], + [39155,0], + [39157,0], + [39159,0.0007], + [39161,0], + [39163,0], + [39165,0], + [39167,0.0002], + [39169,0.0001], + [39171,0.0001], + [39173,0.0001], + [39175,0], + [40001,0.0011], + [40003,0], + [40005,0.0003], + [40007,0], + [40009,0.0004], + [40011,0], + [40013,0.0004], + [40015,0.0004], + [40017,0.0001], + [40019,0.0001], + [40021,0.0015], + [40023,0.0009], + [40025,0], + [40027,0.0004], + [40029,0], + [40031,0.0025], + [40033,0], + [40035,0.0019], + [40037,0.0003], + [40039,0.0003], + [40041,0.0006], + [40043,0], + [40045,0], + [40047,0.014], + [40049,0], + [40051,0.0001], + [40053,0.0004], + [40055,0], + [40057,0], + [40059,0], + [40061,0.0001], + [40063,0.0002], + [40065,0], + [40067,0], + [40069,0.0007], + [40071,0], + [40073,0.0002], + [40075,0.0004], + [40077,0], + [40079,0.0005], + [40081,0.0004], + [40083,0.0003], + [40085,0], + [40087,0.0003], + [40089,0.004], + [40091,0.0003], + [40093,0], + [40095,0], + [40097,0.0013], + [40099,0], + [40101,0.0001], + [40103,0.0001], + [40105,0.0002], + [40107,0], + [40109,0.0005], + [40111,0.0002], + [40113,0.0003], + [40115,0.0034], + [40117,0.0004], + [40119,0.0003], + [40121,0.0003], + [40123,0.0004], + [40125,0.0003], + [40127,0.0003], + [40129,0], + [40131,0.0003], + [40133,0], + [40135,0.0003], + [40137,0.0002], + [40139,0.0004], + [40141,0.0002], + [40143,0.0004], + [40145,0.0003], + [40147,0.0001], + [40149,0], + [40151,0], + [40153,0.0001], + [41001,0.0018], + [41003,0.0013], + [41005,0.0014], + [41007,0.0016], + [41009,0.0012], + [41011,0.0008], + [41013,0.0021], + [41015,0.0006], + [41017,0.0006], + [41019,0.0005], + [41021,0.0037], + [41023,0], + [41025,0.0006], + [41027,0.0002], + [41029,0.0014], + [41031,0.0018], + [41033,0], + [41035,0.0006], + [41037,0], + [41039,0.0012], + [41041,0.001], + [41043,0.0005], + [41045,0.0004], + [41047,0.0041], + [41049,0.0013], + [41051,0.003], + [41053,0.0021], + [41055,0], + [41057,0.0023], + [41059,0.0009], + [41061,0.006], + [41063,0.0005], + [41065,0.0032], + [41067,0.002], + [41069,0], + [41071,0.0012], + [42001,0], + [42003,0.0001], + [42005,0], + [42007,0.0002], + [42009,0], + [42011,0.0001], + [42013,0.0002], + [42015,0.0001], + [42017,0], + [42019,0.0002], + [42021,0.0001], + [42023,0], + [42025,0.0001], + [42027,0.0002], + [42029,0.0001], + [42031,0.0002], + [42033,0], + [42035,0.0001], + [42037,0.0002], + [42039,0.0001], + [42041,0], + [42043,0.0001], + [42045,0.0001], + [42047,0], + [42049,0.0001], + [42051,0.0011], + [42053,0], + [42055,0.0002], + [42057,0.0005], + [42059,0], + [42061,0.0001], + [42063,0.0001], + [42065,0.0002], + [42067,0], + [42069,0.0001], + [42071,0], + [42073,0], + [42075,0.0003], + [42077,0.0002], + [42079,0.0001], + [42081,0.0001], + [42083,0.0002], + [42085,0], + [42087,0.0005], + [42089,0.0001], + [42091,0.0001], + [42093,0], + [42095,0.0001], + [42097,0.0005], + [42099,0], + [42101,0.0003], + [42103,0.0002], + [42105,0], + [42107,0.0001], + [42109,0], + [42111,0.0002], + [42113,0], + [42115,0.0003], + [42117,0.0002], + [42119,0.0002], + [42121,0], + [42123,0], + [42125,0.0001], + [42127,0], + [42129,0.0001], + [42131,0], + [42133,0.0002], + [44001,0.0001], + [44003,0.0001], + [44005,0.0003], + [44007,0.0004], + [44009,0.0004], + [45001,0], + [45003,0.0002], + [45005,0.0002], + [45007,0.0002], + [45009,0], + [45011,0.0003], + [45013,0.0003], + [45015,0.0004], + [45017,0], + [45019,0.0002], + [45021,0.0003], + [45023,0], + [45025,0.0003], + [45027,0.0001], + [45029,0.0045], + [45031,0.0001], + [45033,0.0001], + [45035,0.0001], + [45037,0], + [45039,0], + [45041,0.0003], + [45043,0.0001], + [45045,0.0004], + [45047,0], + [45049,0.0011], + [45051,0.0005], + [45053,0], + [45055,0], + [45057,0.0003], + [45059,0.0004], + [45061,0], + [45063,0.0004], + [45065,0], + [45067,0], + [45069,0], + [45071,0.0001], + [45073,0], + [45075,0], + [45077,0.0005], + [45079,0.0005], + [45081,0], + [45083,0.0002], + [45085,0.0002], + [45087,0], + [45089,0], + [45091,0.0003], + [46003,0], + [46005,0.0001], + [46007,0], + [46009,0], + [46011,0.0001], + [46013,0], + [46015,0], + [46017,0.0098], + [46019,0], + [46021,0], + [46023,0.0005], + [46025,0], + [46027,0], + [46029,0.0001], + [46031,0], + [46033,0], + [46035,0], + [46037,0], + [46039,0], + [46041,0], + [46043,0], + [46045,0], + [46047,0], + [46049,0], + [46051,0], + [46053,0], + [46055,0], + [46057,0], + [46059,0], + [46061,0], + [46063,0], + [46065,0], + [46067,0], + [46069,0], + [46071,0], + [46073,0], + [46075,0], + [46077,0], + [46079,0], + [46081,0.0008], + [46083,0.0001], + [46085,0.0004], + [46087,0], + [46089,0], + [46091,0], + [46093,0.0002], + [46095,0], + [46097,0], + [46099,0.0002], + [46101,0], + [46102,null], + [46103,0.0004], + [46105,0], + [46107,0], + [46109,0], + [46111,0], + [46115,0.0011], + [46117,0.0047], + [46119,0], + [46121,0], + [46123,0], + [46125,0], + [46127,0], + [46129,0.0022], + [46135,0.0004], + [46137,0], + [47001,0.0003], + [47003,0.0004], + [47005,0], + [47007,0], + [47009,0.0004], + [47011,0.0002], + [47013,0], + [47015,0], + [47017,0.0007], + [47019,0], + [47021,0.0014], + [47023,0], + [47025,0.0007], + [47027,0], + [47029,0.0001], + [47031,0], + [47033,0], + [47035,0], + [47037,0.0003], + [47039,0], + [47041,0.0005], + [47043,0], + [47045,0.0005], + [47047,0], + [47049,0], + [47051,0.0003], + [47053,0.0007], + [47055,0], + [47057,0], + [47059,0], + [47061,0.0004], + [47063,0.0001], + [47065,0.0002], + [47067,0], + [47069,0], + [47071,0.0005], + [47073,0.0001], + [47075,0.0004], + [47077,0], + [47079,0], + [47081,0], + [47083,0], + [47085,0.0004], + [47087,0], + [47089,0.0001], + [47091,0], + [47093,0.0003], + [47095,0.0003], + [47097,0], + [47099,0.0001], + [47101,0], + [47103,0], + [47105,0], + [47107,0.0003], + [47109,0], + [47111,0.0008], + [47113,0], + [47115,0], + [47117,0], + [47119,0.0001], + [47121,0], + [47123,0.0006], + [47125,0.002], + [47127,0], + [47129,0], + [47131,0.0002], + [47133,0.0008], + [47135,0], + [47137,0], + [47139,0], + [47141,0.0002], + [47143,0], + [47145,0], + [47147,0.0005], + [47149,0.0001], + [47151,0], + [47153,0], + [47155,0.0001], + [47157,0.0002], + [47159,0], + [47161,0.0014], + [47163,0.0003], + [47165,0.0004], + [47167,0.0009], + [47169,0], + [47171,0], + [47173,0.0008], + [47175,0], + [47177,0.0018], + [47179,0], + [47181,0], + [47183,0.0003], + [47185,0], + [47187,0.0002], + [47189,0.0006], + [48001,0.0002], + [48003,0.0003], + [48005,0.0001], + [48007,0], + [48009,0], + [48011,0], + [48013,0], + [48015,0], + [48017,0.0011], + [48019,0], + [48021,0], + [48023,0], + [48025,0], + [48027,0.0037], + [48029,0.0006], + [48031,0], + [48033,0], + [48035,0], + [48037,0.0003], + [48039,0], + [48041,0.0002], + [48043,0], + [48045,0.005], + [48047,0], + [48049,0], + [48051,0], + [48053,0], + [48055,0.0003], + [48057,0.0003], + [48059,0], + [48061,0.0001], + [48063,0], + [48065,0.0011], + [48067,0.0002], + [48069,0.0001], + [48071,0], + [48073,0], + [48075,0.0171], + [48077,0], + [48079,0], + [48081,0], + [48083,0], + [48085,0.0003], + [48087,0], + [48089,0], + [48091,0.0002], + [48093,0], + [48095,0], + [48097,0.0008], + [48099,0.0044], + [48101,0], + [48103,0], + [48105,0], + [48107,0], + [48109,0], + [48111,0], + [48113,0.0003], + [48115,0.0001], + [48117,0.0006], + [48119,0], + [48121,0.0004], + [48123,0], + [48125,0], + [48127,0], + [48129,0], + [48131,0], + [48133,0], + [48135,0.0001], + [48137,0], + [48139,0.0003], + [48141,0.0006], + [48143,0.0002], + [48145,0.0005], + [48147,0.0003], + [48149,0], + [48151,0.0005], + [48153,0], + [48155,0], + [48157,0.0001], + [48159,0.0006], + [48161,0], + [48163,0], + [48165,0.0002], + [48167,0.0002], + [48169,0], + [48171,0], + [48173,0], + [48175,0], + [48177,0.0001], + [48179,0.0005], + [48181,0.0003], + [48183,0.0003], + [48185,0], + [48187,0.0008], + [48189,0.0001], + [48191,0], + [48193,0], + [48195,0], + [48197,0], + [48199,0.0002], + [48201,0.0003], + [48203,0.0002], + [48205,0], + [48207,0], + [48209,0.0006], + [48211,0], + [48213,0.0003], + [48215,0.0001], + [48217,0.001], + [48219,0.0003], + [48221,0.0001], + [48223,0.0004], + [48225,0], + [48227,0.0004], + [48229,0], + [48231,0.0002], + [48233,0.0016], + [48235,0], + [48237,0], + [48239,0.0005], + [48241,0.0005], + [48243,0], + [48245,0.0002], + [48247,0], + [48249,0.0006], + [48251,0.0019], + [48253,0], + [48255,0], + [48257,0.0004], + [48259,0.0004], + [48261,0], + [48263,0], + [48265,0.0002], + [48267,0.0002], + [48269,0], + [48271,0], + [48273,0], + [48275,0], + [48277,0.0018], + [48279,0], + [48281,0.0059], + [48283,0], + [48285,0], + [48287,0], + [48289,0.0009], + [48291,0.0001], + [48293,0], + [48295,0.0001], + [48297,0], + [48299,0], + [48301,0], + [48303,0.0003], + [48305,0], + [48307,0], + [48309,0.0002], + [48311,0], + [48313,0.0008], + [48315,0.0008], + [48317,0.0009], + [48319,0], + [48321,0.0006], + [48323,0.0003], + [48325,0.0001], + [48327,0], + [48329,0.0002], + [48331,0], + [48333,0], + [48335,0], + [48337,0], + [48339,0.0004], + [48341,0], + [48343,0.0003], + [48345,0], + [48347,0], + [48349,0.0052], + [48351,0], + [48353,0.0001], + [48355,0.0003], + [48357,0], + [48359,0], + [48361,0], + [48363,0.0004], + [48365,0.0002], + [48367,0.0003], + [48369,0.0012], + [48371,0.0003], + [48373,0.0006], + [48375,0.0004], + [48377,0], + [48379,0], + [48381,0.0004], + [48383,0], + [48385,0], + [48387,0], + [48389,0], + [48391,0], + [48393,0], + [48395,0.0005], + [48397,0], + [48399,0], + [48401,0], + [48403,0], + [48405,0], + [48407,0], + [48409,0.0002], + [48411,0], + [48413,0], + [48415,0], + [48417,0], + [48419,0.0004], + [48421,0], + [48423,0.0005], + [48425,0.0028], + [48427,0], + [48429,0], + [48431,0], + [48433,0], + [48435,0.0051], + [48437,0.0003], + [48439,0.0009], + [48441,0.0003], + [48443,0], + [48445,0], + [48447,0], + [48449,0.0002], + [48451,0.0002], + [48453,0.0003], + [48455,0], + [48457,0], + [48459,0], + [48461,0], + [48463,0.0004], + [48465,0.0005], + [48467,0.0005], + [48469,0.0003], + [48471,0.0001], + [48473,0.0002], + [48475,0], + [48477,0.0006], + [48479,0], + [48481,0], + [48483,0.0012], + [48485,0.0002], + [48487,0], + [48489,0.0001], + [48491,0.0003], + [48493,0.0003], + [48495,0], + [48497,0.001], + [48499,0.0004], + [48501,0], + [48503,0], + [48505,0], + [48507,0], + [49001,0], + [49003,0.0005], + [49005,0.0018], + [49007,0.0008], + [49009,0], + [49011,0.0031], + [49013,0.002], + [49015,0.0001], + [49017,0.0024], + [49019,0], + [49021,0.0002], + [49023,0.0008], + [49025,0.0008], + [49027,0.0004], + [49029,0.0004], + [49031,0], + [49033,0], + [49035,0.0077], + [49037,0.0027], + [49039,0.0026], + [49041,0.0009], + [49043,0.0002], + [49045,0.0026], + [49047,0.0006], + [49049,0.0039], + [49051,0], + [49053,0.0041], + [49055,0.0056], + [49057,0.0012], + [50001,0], + [50003,0.0002], + [50005,0], + [50007,0.0001], + [50009,0], + [50011,0.0003], + [50013,0], + [50015,0], + [50017,0.0003], + [50019,0], + [50021,0], + [50023,0.0001], + [50025,0.0003], + [50027,0.0005], + [51001,0], + [51003,0.0002], + [51005,0.0003], + [51007,0], + [51009,0.0002], + [51011,0], + [51013,0.0004], + [51015,0.0004], + [51017,0], + [51019,0.0001], + [51021,0.0002], + [51023,0], + [51025,0], + [51027,0], + [51029,0.0004], + [51031,0.0002], + [51033,0], + [51035,0], + [51036,0], + [51037,0], + [51041,0.0003], + [51043,0], + [51045,0], + [51047,0.0001], + [51049,0], + [51051,0], + [51053,0.0002], + [51057,0], + [51059,0.0003], + [51061,0.0001], + [51063,0], + [51065,0], + [51067,0], + [51069,0.0004], + [51071,0.0003], + [51073,0], + [51075,0], + [51077,0], + [51079,0], + [51081,0], + [51083,0.0001], + [51085,0.0004], + [51087,0.0002], + [51089,0], + [51091,0], + [51093,0.0003], + [51095,0.0001], + [51097,0], + [51099,0.0003], + [51101,0], + [51103,0], + [51105,0], + [51107,0.0004], + [51109,0], + [51111,0], + [51113,0], + [51115,0.0002], + [51117,0.0002], + [51119,0.0007], + [51121,0.0002], + [51125,0], + [51127,0], + [51131,0.0004], + [51133,0], + [51135,0.0015], + [51137,0], + [51139,0], + [51141,0], + [51143,0.0001], + [51145,0.0005], + [51147,0], + [51149,0.0006], + [51153,0.0006], + [51155,0], + [51157,0], + [51159,0], + [51161,0], + [51163,0.0007], + [51165,0.0005], + [51167,0], + [51169,0], + [51171,0], + [51173,0.0003], + [51175,0], + [51177,0.0005], + [51179,0.0004], + [51181,0], + [51183,0.0002], + [51185,0.0002], + [51187,0], + [51191,0.0001], + [51193,0], + [51195,0.0003], + [51197,0], + [51199,0.0015], + [51510,0.0002], + [51520,0], + [51530,0], + [51540,0.0002], + [51550,0.0005], + [51570,0], + [51580,0.0012], + [51590,0.0003], + [51595,0], + [51600,0.0003], + [51610,0], + [51620,0], + [51630,0.0006], + [51640,0], + [51650,0.0005], + [51660,0.0002], + [51670,0], + [51678,0], + [51680,0.0003], + [51683,0.0009], + [51685,0.0002], + [51690,0], + [51700,0.0009], + [51710,0.0003], + [51720,0], + [51730,0.0002], + [51735,0], + [51740,0.0007], + [51750,0.0002], + [51760,0.0001], + [51770,0.0009], + [51775,0], + [51790,0], + [51800,0.0002], + [51810,0.0005], + [51820,0.0012], + [51830,0], + [51840,0.0004], + [53001,0], + [53003,0.0007], + [53005,0.0005], + [53007,0.0007], + [53009,0.0003], + [53011,0.0035], + [53013,0.0038], + [53015,0.0011], + [53017,0.0004], + [53019,0.0034], + [53021,0.0009], + [53023,0], + [53025,0.0003], + [53027,0.0016], + [53029,0.0017], + [53031,0.0017], + [53033,0.0039], + [53035,0.004], + [53037,0.001], + [53039,0], + [53041,0.0007], + [53043,0.0017], + [53045,0.0014], + [53047,0.0009], + [53049,0.0014], + [53051,0.0012], + [53053,0.0072], + [53055,0.0008], + [53057,0.0017], + [53059,0.0002], + [53061,0.0026], + [53063,0.0024], + [53065,0.0002], + [53067,0.0042], + [53069,0.0001], + [53071,0.0003], + [53073,0.0014], + [53075,0.0007], + [53077,0.0004], + [54001,0], + [54003,0.0004], + [54005,0], + [54007,0.001], + [54009,0.0008], + [54011,0.0002], + [54013,0], + [54015,0.0007], + [54017,0], + [54019,0], + [54021,0], + [54023,0], + [54025,0], + [54027,0], + [54029,0.0001], + [54031,0], + [54033,0.0003], + [54035,0], + [54037,0], + [54039,0], + [54041,0], + [54043,0], + [54045,0.0001], + [54047,0], + [54049,0], + [54051,0.0007], + [54053,0], + [54055,0.0002], + [54057,0], + [54059,0], + [54061,0], + [54063,0], + [54065,0], + [54067,0], + [54069,0], + [54071,0], + [54073,0], + [54075,0], + [54077,0.0004], + [54079,0.0001], + [54081,0.0006], + [54083,0], + [54085,0], + [54087,0], + [54089,0], + [54091,0], + [54093,0], + [54095,0], + [54097,0.0007], + [54099,0], + [54101,0.0003], + [54103,0], + [54105,0], + [54107,0.0002], + [54109,0], + [55001,0], + [55003,0], + [55005,0], + [55007,0], + [55009,0], + [55011,0], + [55013,0.0001], + [55015,0], + [55017,0], + [55019,0], + [55021,0.0001], + [55023,0], + [55025,0.0002], + [55027,0], + [55029,0], + [55031,0], + [55033,0], + [55035,0.002], + [55037,0], + [55039,0.0001], + [55041,0.0004], + [55043,0.0001], + [55045,0.0002], + [55047,0], + [55049,0.0004], + [55051,0], + [55053,0], + [55055,0.0002], + [55057,0], + [55059,0.0001], + [55061,0], + [55063,0.0001], + [55065,0], + [55067,0], + [55069,0], + [55071,0.0002], + [55073,0.0001], + [55075,0.0001], + [55077,0.0002], + [55078,0], + [55079,0.0001], + [55081,0.0001], + [55083,0], + [55085,0.0001], + [55087,0.0001], + [55089,0.0002], + [55091,0], + [55093,0], + [55095,0], + [55097,0.0001], + [55099,0.0042], + [55101,0.0001], + [55103,0.0001], + [55105,0.0001], + [55107,0], + [55109,0], + [55111,0.0001], + [55113,0], + [55115,0.0001], + [55117,0], + [55119,0], + [55121,0], + [55123,0], + [55125,0.0003], + [55127,0.0003], + [55129,0], + [55131,0.0001], + [55133,0.0002], + [55135,0.0001], + [55137,0.0002], + [55139,0.0001], + [55141,0.0001], + [56001,0.0001], + [56003,0.0007], + [56005,0], + [56007,0.0004], + [56009,0], + [56011,0], + [56013,0.0003], + [56015,0], + [56017,0], + [56019,0], + [56021,0.001], + [56023,0.0002], + [56025,0], + [56027,0], + [56029,0.0001], + [56031,0], + [56033,0], + [56035,0], + [56037,0.0023], + [56039,0], + [56041,0], + [56043,0], + [56045,0.0002] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-pacisl-2019.json b/data/regional/united-states/demographics/race/us-race-pacisl-2019.json new file mode 100644 index 0000000..cb93bdb --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-pacisl-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Pacific Islander Population", + "description" : "Percent of the population that is pacific islander in the year 2017.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.pacisl.2019"], + [1001,0], + [1003,0], + [1005,0], + [1007,0], + [1009,0], + [1011,0], + [1013,0], + [1015,0], + [1017,0], + [1019,0], + [1021,0], + [1023,0], + [1025,0], + [1027,0], + [1029,0], + [1031,0], + [1033,0.001], + [1035,0], + [1037,0], + [1039,0.001], + [1041,0.001], + [1043,0], + [1045,0], + [1047,0.001], + [1049,0.008], + [1051,0], + [1053,0.001], + [1055,0], + [1057,0], + [1059,0], + [1061,0], + [1063,0], + [1065,0], + [1067,0.001], + [1069,0.001], + [1071,0.001], + [1073,0], + [1075,0], + [1077,0.001], + [1079,0.001], + [1081,0], + [1083,0.001], + [1085,0], + [1087,0], + [1089,0.001], + [1091,0], + [1093,0], + [1095,0.001], + [1097,0], + [1099,0], + [1101,0], + [1103,0.001], + [1105,0], + [1107,0.001], + [1109,0], + [1111,0], + [1113,0], + [1115,0], + [1117,0], + [1119,0], + [1121,0.001], + [1123,0], + [1125,0], + [1127,0], + [1129,0], + [1131,0], + [1133,0.001], + [2013,0.01], + [2016,0.027], + [2020,0.024], + [2050,0.002], + [2060,0.002], + [2068,0], + [2070,0.001], + [2090,0.005], + [2100,0.002], + [2105,0], + [2110,0.01], + [2122,0.003], + [2130,0.002], + [2150,0.003], + [2158,0.001], + [2164,0.004], + [2170,0.003], + [2180,0.001], + [2185,0.019], + [2188,0.001], + [2195,0.006], + [2198,0.006], + [2220,0.001], + [2230,0], + [2240,0.002], + [2261,0.006], + [2275,0.004], + [2282,0.012], + [2290,0], + [4001,0], + [4003,0.004], + [4005,0.002], + [4007,0], + [4009,0.001], + [4011,0], + [4012,0], + [4013,0.002], + [4015,0.002], + [4017,0.001], + [4019,0.002], + [4021,0.003], + [4023,0], + [4025,0.001], + [4027,0.001], + [5001,0], + [5003,0], + [5005,0], + [5007,0.006], + [5009,0.001], + [5011,0], + [5013,0.003], + [5015,0.009], + [5017,0], + [5019,0], + [5021,0], + [5023,0], + [5025,0], + [5027,0], + [5029,0], + [5031,0], + [5033,0], + [5035,0], + [5037,0], + [5039,0.002], + [5041,0], + [5043,0], + [5045,0.001], + [5047,0.002], + [5049,0.001], + [5051,0], + [5053,0.001], + [5055,0], + [5057,0.003], + [5059,0], + [5061,0.001], + [5063,0], + [5065,0], + [5067,0], + [5069,0.001], + [5071,0.001], + [5073,0], + [5075,0], + [5077,0], + [5079,0], + [5081,0], + [5083,0], + [5085,0.003], + [5087,0.006], + [5089,0], + [5091,0], + [5093,0.001], + [5095,0], + [5097,0], + [5099,0], + [5101,0.008], + [5103,0], + [5105,0], + [5107,0], + [5109,0], + [5111,0], + [5113,0], + [5115,0], + [5117,0], + [5119,0.001], + [5121,0.003], + [5123,0.001], + [5125,0.001], + [5127,0], + [5129,0], + [5131,0], + [5133,0.005], + [5135,0], + [5137,0], + [5139,0], + [5141,0.001], + [5143,0.023], + [5145,0], + [5147,0], + [5149,0], + [6001,0.008], + [6003,0.006], + [6005,0.001], + [6007,0.003], + [6009,0], + [6011,0.002], + [6013,0.005], + [6015,0.002], + [6017,0.003], + [6019,0.002], + [6021,0], + [6023,0.004], + [6025,0.002], + [6027,0.002], + [6029,0.002], + [6031,0.002], + [6033,0.001], + [6035,0.008], + [6037,0.003], + [6039,0.001], + [6041,0.002], + [6043,0.003], + [6045,0.002], + [6047,0.002], + [6049,0.001], + [6051,0], + [6053,0.005], + [6055,0.002], + [6057,0.001], + [6059,0.003], + [6061,0.002], + [6063,0.005], + [6065,0.003], + [6067,0.011], + [6069,0.001], + [6071,0.003], + [6073,0.004], + [6075,0.004], + [6077,0.006], + [6079,0.001], + [6081,0.014], + [6083,0.001], + [6085,0.004], + [6087,0.001], + [6089,0.001], + [6091,0], + [6093,0.004], + [6095,0.009], + [6097,0.003], + [6099,0.007], + [6101,0.006], + [6103,0], + [6105,0.002], + [6107,0.002], + [6109,0.002], + [6111,0.002], + [6113,0.004], + [6115,0.005], + [8001,0.001], + [8003,0.005], + [8005,0.002], + [8007,0.001], + [8009,0.001], + [8011,0], + [8013,0.001], + [8014,0], + [8015,0], + [8017,0.002], + [8019,0.001], + [8021,0.003], + [8023,0], + [8025,0], + [8027,0], + [8029,0], + [8031,0.002], + [8033,0], + [8035,0.001], + [8037,0.001], + [8039,0.001], + [8041,0.004], + [8043,0], + [8045,0.001], + [8047,0], + [8049,0.001], + [8051,0.002], + [8053,0], + [8055,0], + [8057,0], + [8059,0.001], + [8061,0], + [8063,0.003], + [8065,0], + [8067,0], + [8069,0.001], + [8071,0], + [8073,0.002], + [8075,0.009], + [8077,0.001], + [8079,0], + [8081,0], + [8083,0.001], + [8085,0.003], + [8087,0.002], + [8089,0.001], + [8091,0.001], + [8093,0.001], + [8095,0], + [8097,0], + [8099,0], + [8101,0.001], + [8103,0], + [8105,0.001], + [8107,0], + [8109,0], + [8111,0], + [8113,0], + [8115,0], + [8117,0.003], + [8119,0], + [8121,0], + [8123,0.001], + [8125,0], + [9001,0.001], + [9003,0], + [9005,0], + [9007,0], + [9009,0], + [9011,0], + [9013,0], + [9015,0], + [10001,0.001], + [10003,0], + [10005,0.001], + [11001,0.001], + [12001,0.001], + [12003,0], + [12005,0.001], + [12007,0], + [12009,0.001], + [12011,0.001], + [12013,0], + [12015,0.001], + [12017,0], + [12019,0], + [12021,0], + [12023,0], + [12027,0.001], + [12029,0.001], + [12031,0.001], + [12033,0.001], + [12035,0.001], + [12037,0.004], + [12039,0], + [12041,0], + [12043,0], + [12045,0], + [12047,0], + [12049,0.001], + [12051,0], + [12053,0], + [12055,0], + [12057,0.001], + [12059,0.003], + [12061,0], + [12063,0.002], + [12065,0], + [12067,0.003], + [12069,0], + [12071,0.001], + [12073,0], + [12075,0], + [12077,0], + [12079,0], + [12081,0], + [12083,0.001], + [12085,0.001], + [12086,0], + [12087,0.002], + [12089,0], + [12091,0.001], + [12093,0.003], + [12095,0.001], + [12097,0.001], + [12099,0], + [12101,0.001], + [12103,0.001], + [12105,0], + [12107,0], + [12109,0.001], + [12111,0.001], + [12113,0.003], + [12115,0], + [12117,0.001], + [12119,0.001], + [12121,0.001], + [12123,0], + [12125,0.001], + [12127,0], + [12129,0], + [12131,0], + [12133,0.004], + [13001,0], + [13003,0], + [13005,0.002], + [13007,0.007], + [13009,0], + [13011,0], + [13013,0], + [13015,0], + [13017,0], + [13019,0], + [13021,0], + [13023,0], + [13025,0], + [13027,0.001], + [13029,0.001], + [13031,0.003], + [13033,0], + [13035,0], + [13037,0], + [13039,0.001], + [13043,0], + [13045,0.001], + [13047,0], + [13049,0.001], + [13051,0.001], + [13053,0.001], + [13055,0], + [13057,0], + [13059,0.001], + [13061,0], + [13063,0.001], + [13065,0], + [13067,0.001], + [13069,0], + [13071,0], + [13073,0], + [13075,0], + [13077,0], + [13079,0], + [13081,0.001], + [13083,0.001], + [13085,0], + [13087,0], + [13089,0], + [13091,0], + [13093,0], + [13095,0], + [13097,0], + [13099,0], + [13101,0], + [13103,0], + [13105,0], + [13107,0], + [13109,0], + [13111,0.001], + [13113,0.002], + [13115,0], + [13117,0], + [13119,0], + [13121,0], + [13123,0], + [13125,0], + [13127,0.001], + [13129,0.002], + [13131,0], + [13133,0], + [13135,0], + [13137,0.005], + [13139,0], + [13141,0.001], + [13143,0], + [13145,0], + [13147,0], + [13149,0.001], + [13151,0], + [13153,0], + [13155,0], + [13157,0.001], + [13159,0], + [13161,0], + [13163,0], + [13165,0], + [13167,0], + [13169,0], + [13171,0], + [13173,0], + [13175,0], + [13177,0.001], + [13179,0.005], + [13181,0], + [13183,0.004], + [13185,0.001], + [13187,0.001], + [13189,0.012], + [13191,0.001], + [13193,0], + [13195,0], + [13197,0.006], + [13199,0], + [13201,0.003], + [13205,0.001], + [13207,0], + [13209,0], + [13211,0], + [13213,0], + [13215,0.001], + [13217,0.001], + [13219,0.001], + [13221,0], + [13223,0], + [13225,0.001], + [13227,0.001], + [13229,0], + [13231,0], + [13233,0], + [13235,0], + [13237,0], + [13239,0.002], + [13241,0], + [13243,0], + [13245,0.002], + [13247,0.002], + [13249,0], + [13251,0], + [13253,0], + [13255,0], + [13257,0], + [13259,0], + [13261,0], + [13263,0], + [13265,0], + [13267,0], + [13269,0], + [13271,0], + [13273,0], + [13275,0.001], + [13277,0], + [13279,0], + [13281,0], + [13283,0], + [13285,0], + [13287,0], + [13289,0], + [13291,0], + [13293,0.008], + [13295,0], + [13297,0], + [13299,0.001], + [13301,0], + [13303,0], + [13305,0], + [13307,0], + [13309,0], + [13311,0], + [13313,0], + [13315,0], + [13317,0], + [13319,0.001], + [13321,0], + [15001,0.122], + [15003,0.095], + [15005,0.273], + [15007,0.092], + [15009,0.109], + [16001,0.002], + [16003,0.002], + [16005,0.002], + [16007,0], + [16009,0.008], + [16011,0.001], + [16013,0.002], + [16015,0.001], + [16017,0.001], + [16019,0.001], + [16021,0.005], + [16023,0], + [16025,0], + [16027,0.003], + [16029,0], + [16031,0.001], + [16033,0], + [16035,0.002], + [16037,0], + [16039,0.004], + [16041,0], + [16043,0.006], + [16045,0], + [16047,0.002], + [16049,0], + [16051,0], + [16053,0.004], + [16055,0.001], + [16057,0.001], + [16059,0.001], + [16061,0], + [16063,0], + [16065,0.002], + [16067,0.001], + [16069,0], + [16071,0], + [16073,0], + [16075,0.001], + [16077,0], + [16079,0], + [16081,0], + [16083,0.001], + [16085,0], + [16087,0], + [17001,0], + [17003,0.006], + [17005,0], + [17007,0], + [17009,0], + [17011,0], + [17013,0], + [17015,0], + [17017,0], + [17019,0.001], + [17021,0.001], + [17023,0], + [17025,0], + [17027,0], + [17029,0], + [17031,0], + [17033,0.001], + [17035,0.001], + [17037,0], + [17039,0.001], + [17041,0.001], + [17043,0], + [17045,0], + [17047,0], + [17049,0], + [17051,0.001], + [17053,0], + [17055,0.001], + [17057,0.001], + [17059,0], + [17061,0.001], + [17063,0], + [17065,0], + [17067,0], + [17069,0], + [17071,0], + [17073,0], + [17075,0], + [17077,0.001], + [17079,0], + [17081,0], + [17083,0], + [17085,0], + [17087,0], + [17089,0], + [17091,0], + [17093,0], + [17095,0], + [17097,0], + [17099,0], + [17101,0], + [17103,0.001], + [17105,0], + [17107,0], + [17109,0], + [17111,0], + [17113,0], + [17115,0], + [17117,0], + [17119,0], + [17121,0], + [17123,0], + [17125,0], + [17127,0], + [17129,0], + [17131,0], + [17133,0], + [17135,0], + [17137,0], + [17139,0], + [17141,0], + [17143,0], + [17145,0], + [17147,0], + [17149,0], + [17151,0], + [17153,0], + [17155,0], + [17157,0], + [17159,0], + [17161,0], + [17163,0], + [17165,0.002], + [17167,0.001], + [17169,0], + [17171,0.003], + [17173,0], + [17175,0], + [17177,0], + [17179,0], + [17181,0.002], + [17183,0], + [17185,0], + [17187,0], + [17189,0], + [17191,0], + [17193,0.001], + [17195,0.001], + [17197,0], + [17199,0], + [17201,0], + [17203,0], + [18001,0], + [18003,0], + [18005,0.001], + [18007,0.001], + [18009,0], + [18011,0], + [18013,0], + [18015,0], + [18017,0], + [18019,0], + [18021,0], + [18023,0.002], + [18025,0], + [18027,0], + [18029,0], + [18031,0], + [18033,0], + [18035,0.002], + [18037,0], + [18039,0.001], + [18041,0], + [18043,0], + [18045,0], + [18047,0], + [18049,0.001], + [18051,0], + [18053,0], + [18055,0.001], + [18057,0], + [18059,0], + [18061,0], + [18063,0], + [18065,0], + [18067,0], + [18069,0.001], + [18071,0], + [18073,0], + [18075,0], + [18077,0], + [18079,0], + [18081,0], + [18083,0.001], + [18085,0], + [18087,0], + [18089,0], + [18091,0], + [18093,0.001], + [18095,0], + [18097,0], + [18099,0], + [18101,0], + [18103,0], + [18105,0], + [18107,0], + [18109,0], + [18111,0], + [18113,0], + [18115,0], + [18117,0], + [18119,0], + [18121,0], + [18123,0], + [18125,0], + [18127,0.001], + [18129,0], + [18131,0.002], + [18133,0], + [18135,0], + [18137,0], + [18139,0], + [18141,0.001], + [18143,0], + [18145,0], + [18147,0], + [18149,0], + [18151,0.001], + [18153,0], + [18155,0.007], + [18157,0], + [18159,0], + [18161,0], + [18163,0.002], + [18165,0], + [18167,0.001], + [18169,0], + [18171,0], + [18173,0], + [18175,0], + [18177,0], + [18179,0], + [18181,0], + [18183,0], + [19001,0], + [19003,0], + [19005,0], + [19007,0], + [19009,0], + [19011,0], + [19013,0.003], + [19015,0.004], + [19017,0.001], + [19019,0], + [19021,0.015], + [19023,0.001], + [19025,0], + [19027,0], + [19029,0.001], + [19031,0], + [19033,0.001], + [19035,0], + [19037,0], + [19039,0], + [19041,0], + [19043,0], + [19045,0], + [19047,0.002], + [19049,0.001], + [19051,0], + [19053,0.003], + [19055,0], + [19057,0], + [19059,0], + [19061,0.005], + [19063,0], + [19065,0], + [19067,0.002], + [19069,0], + [19071,0], + [19073,0], + [19075,0], + [19077,0], + [19079,0.002], + [19081,0.001], + [19083,0], + [19085,0], + [19087,0], + [19089,0], + [19091,0], + [19093,0], + [19095,0], + [19097,0.009], + [19099,0], + [19101,0], + [19103,0.001], + [19105,0], + [19107,0], + [19109,0], + [19111,0], + [19113,0.001], + [19115,0], + [19117,0], + [19119,0.003], + [19121,0.001], + [19123,0.002], + [19125,0], + [19127,0], + [19129,0], + [19131,0], + [19133,0.004], + [19135,0], + [19137,0], + [19139,0], + [19141,0], + [19143,0], + [19145,0.001], + [19147,0], + [19149,0], + [19151,0.007], + [19153,0.001], + [19155,0], + [19157,0], + [19159,0], + [19161,0], + [19163,0], + [19165,0], + [19167,0], + [19169,0], + [19171,0], + [19173,0], + [19175,0.002], + [19177,0], + [19179,0.007], + [19181,0.003], + [19183,0], + [19185,0], + [19187,0], + [19189,0], + [19191,0], + [19193,0.003], + [19195,0], + [19197,0], + [20001,0.002], + [20003,0], + [20005,0], + [20007,0], + [20009,0.003], + [20011,0], + [20013,0], + [20015,0.001], + [20017,0], + [20019,0], + [20021,0.004], + [20023,0], + [20025,0], + [20027,0], + [20029,0], + [20031,0], + [20033,0], + [20035,0.001], + [20037,0], + [20039,0], + [20041,0], + [20043,0], + [20045,0], + [20047,0], + [20049,0], + [20051,0.004], + [20053,0], + [20055,0], + [20057,0], + [20059,0], + [20061,0.01], + [20063,0], + [20065,0], + [20067,0], + [20069,0.004], + [20071,0], + [20073,0], + [20075,0], + [20077,0.002], + [20079,0.002], + [20081,0], + [20083,0], + [20085,0.001], + [20087,0], + [20089,0.001], + [20091,0.001], + [20093,0], + [20095,0], + [20097,0], + [20099,0], + [20101,0.003], + [20103,0.001], + [20105,0], + [20107,0], + [20109,0.004], + [20111,0], + [20113,0], + [20115,0], + [20117,0.003], + [20119,0.002], + [20121,0], + [20123,0], + [20125,0.002], + [20127,0], + [20129,0], + [20131,0], + [20133,0], + [20135,0], + [20137,0], + [20139,0], + [20141,0], + [20143,0], + [20145,0], + [20147,0.001], + [20149,0], + [20151,0], + [20153,0], + [20155,0], + [20157,0], + [20159,0.002], + [20161,0.002], + [20163,0.002], + [20165,0], + [20167,0.003], + [20169,0], + [20171,0.001], + [20173,0], + [20175,0.002], + [20177,0.001], + [20179,0], + [20181,0], + [20183,0], + [20185,0], + [20187,0], + [20189,0], + [20191,0], + [20193,0], + [20195,0], + [20197,0.001], + [20199,0], + [20201,0], + [20203,0], + [20205,0], + [20207,0], + [20209,0.002], + [21001,0], + [21003,0], + [21005,0], + [21007,0], + [21009,0], + [21011,0], + [21013,0], + [21015,0], + [21017,0], + [21019,0], + [21021,0], + [21023,0], + [21025,0], + [21027,0], + [21029,0], + [21031,0], + [21033,0], + [21035,0.002], + [21037,0], + [21039,0], + [21041,0], + [21043,0], + [21045,0], + [21047,0.005], + [21049,0], + [21051,0], + [21053,0], + [21055,0], + [21057,0], + [21059,0.003], + [21061,0], + [21063,0], + [21065,0], + [21067,0], + [21069,0], + [21071,0], + [21073,0.001], + [21075,0], + [21077,0], + [21079,0], + [21081,0], + [21083,0.003], + [21085,0], + [21087,0], + [21089,0], + [21091,0], + [21093,0.003], + [21095,0], + [21097,0], + [21099,0], + [21101,0], + [21103,0.001], + [21105,0], + [21107,0], + [21109,0], + [21111,0.001], + [21113,0], + [21115,0], + [21117,0], + [21119,0.001], + [21121,0.001], + [21123,0], + [21125,0], + [21127,0], + [21129,0], + [21131,0], + [21133,0], + [21135,0], + [21137,0.001], + [21139,0], + [21141,0], + [21143,0.001], + [21145,0.001], + [21147,0], + [21149,0], + [21151,0.003], + [21153,0], + [21155,0.001], + [21157,0], + [21159,0.001], + [21161,0], + [21163,0], + [21165,0], + [21167,0.001], + [21169,0], + [21171,0], + [21173,0.001], + [21175,0.003], + [21177,0.001], + [21179,0], + [21181,0], + [21183,0], + [21185,0], + [21187,0.001], + [21189,0], + [21191,0.004], + [21193,0.003], + [21195,0], + [21197,0], + [21199,0], + [21201,0], + [21203,0], + [21205,0], + [21207,0], + [21209,0], + [21211,0.001], + [21213,0], + [21215,0], + [21217,0], + [21219,0], + [21221,0], + [21223,0.008], + [21225,0], + [21227,0.004], + [21229,0], + [21231,0], + [21233,0.001], + [21235,0], + [21237,0], + [21239,0], + [22001,0], + [22003,0], + [22005,0], + [22007,0], + [22009,0.002], + [22011,0], + [22013,0], + [22015,0.001], + [22017,0.001], + [22019,0], + [22021,0], + [22023,0], + [22025,0], + [22027,0], + [22029,0], + [22031,0], + [22033,0], + [22035,0], + [22037,0], + [22039,0.001], + [22041,0], + [22043,0], + [22045,0], + [22047,0], + [22049,0], + [22051,0], + [22053,0], + [22055,0], + [22057,0], + [22059,0.001], + [22061,0], + [22063,0], + [22065,0], + [22067,0], + [22069,0], + [22071,0], + [22073,0], + [22075,0], + [22077,0], + [22079,0], + [22081,0], + [22083,0], + [22085,0], + [22087,0.001], + [22089,0], + [22091,0], + [22093,0.002], + [22095,0], + [22097,0], + [22099,0], + [22101,0], + [22103,0], + [22105,0], + [22107,0], + [22109,0.001], + [22111,0], + [22113,0.001], + [22115,0.004], + [22117,0], + [22119,0.001], + [22121,0], + [22123,0.001], + [22125,0], + [22127,0], + [23001,0], + [23003,0], + [23005,0], + [23007,0.002], + [23009,0.001], + [23011,0.001], + [23013,0], + [23015,0], + [23017,0], + [23019,0], + [23021,0], + [23023,0], + [23025,0], + [23027,0], + [23029,0], + [23031,0], + [24001,0], + [24003,0.001], + [24005,0.001], + [24009,0.001], + [24011,0], + [24013,0], + [24015,0], + [24017,0], + [24019,0], + [24021,0.001], + [24023,0], + [24025,0], + [24027,0], + [24029,0], + [24031,0], + [24033,0.001], + [24035,0.001], + [24037,0], + [24039,0], + [24041,0], + [24043,0.001], + [24045,0], + [24047,0.001], + [24510,0], + [25001,0.001], + [25003,0.001], + [25005,0.001], + [25007,0], + [25009,0], + [25011,0.002], + [25013,0], + [25015,0.001], + [25017,0], + [25019,0.001], + [25021,0], + [25023,0], + [25025,0.001], + [25027,0], + [26001,0.001], + [26003,0], + [26005,0], + [26007,0.001], + [26009,0], + [26011,0], + [26013,0.001], + [26015,0], + [26017,0], + [26019,0.001], + [26021,0], + [26023,0], + [26025,0], + [26027,0], + [26029,0.001], + [26031,0], + [26033,0.001], + [26035,0], + [26037,0], + [26039,0], + [26041,0], + [26043,0], + [26045,0], + [26047,0.001], + [26049,0], + [26051,0], + [26053,0.001], + [26055,0], + [26057,0.001], + [26059,0], + [26061,0.001], + [26063,0], + [26065,0], + [26067,0], + [26069,0], + [26071,0], + [26073,0], + [26075,0], + [26077,0], + [26079,0], + [26081,0], + [26083,0], + [26085,0.001], + [26087,0], + [26089,0.001], + [26091,0], + [26093,0.001], + [26095,0.001], + [26097,0.002], + [26099,0.001], + [26101,0.001], + [26103,0], + [26105,0], + [26107,0], + [26109,0], + [26111,0.001], + [26113,0], + [26115,0], + [26117,0.001], + [26119,0], + [26121,0], + [26123,0], + [26125,0], + [26127,0], + [26129,0], + [26131,0.001], + [26133,0], + [26135,0], + [26137,0], + [26139,0], + [26141,0], + [26143,0], + [26145,0], + [26147,0], + [26149,0.001], + [26151,0], + [26153,0], + [26155,0], + [26157,0], + [26159,0], + [26161,0], + [26163,0], + [26165,0.001], + [27001,0.001], + [27003,0], + [27005,0], + [27007,0.001], + [27009,0], + [27011,0], + [27013,0], + [27015,0], + [27017,0], + [27019,0], + [27021,0], + [27023,0.011], + [27025,0], + [27027,0.001], + [27029,0], + [27031,0], + [27033,0.002], + [27035,0], + [27037,0.001], + [27039,0], + [27041,0], + [27043,0], + [27045,0], + [27047,0], + [27049,0], + [27051,0], + [27053,0], + [27055,0], + [27057,0], + [27059,0], + [27061,0], + [27063,0], + [27065,0], + [27067,0], + [27069,0], + [27071,0], + [27073,0], + [27075,0.002], + [27077,0], + [27079,0], + [27081,0], + [27083,0], + [27085,0], + [27087,0.002], + [27089,0.001], + [27091,0.001], + [27093,0], + [27095,0.001], + [27097,0], + [27099,0.006], + [27101,0], + [27103,0], + [27105,0], + [27107,0], + [27109,0.001], + [27111,0], + [27113,0], + [27115,0], + [27117,0], + [27119,0.001], + [27121,0], + [27123,0], + [27125,0], + [27127,0], + [27129,0], + [27131,0.001], + [27133,0], + [27135,0.001], + [27137,0], + [27139,0], + [27141,0], + [27143,0], + [27145,0], + [27147,0.001], + [27149,0.002], + [27151,0.006], + [27153,0], + [27155,0], + [27157,0], + [27159,0], + [27161,0], + [27163,0.001], + [27165,0], + [27167,0], + [27169,0], + [27171,0], + [27173,0], + [28001,0], + [28003,0], + [28005,0], + [28007,0], + [28009,0.002], + [28011,0], + [28013,0], + [28015,0], + [28017,0], + [28019,0.001], + [28021,0], + [28023,0], + [28025,0], + [28027,0], + [28029,0], + [28031,0], + [28033,0], + [28035,0], + [28037,0], + [28039,0], + [28041,0], + [28043,0], + [28045,0], + [28047,0], + [28049,0], + [28051,0], + [28053,0], + [28055,0], + [28057,0], + [28059,0.001], + [28061,0], + [28063,0], + [28065,0], + [28067,0.001], + [28069,0], + [28071,0], + [28073,0], + [28075,0], + [28077,0], + [28079,0], + [28081,0], + [28083,0], + [28085,0], + [28087,0], + [28089,0], + [28091,0.001], + [28093,0], + [28095,0], + [28097,0], + [28099,0], + [28101,0], + [28103,0], + [28105,0.001], + [28107,0.001], + [28109,0], + [28111,0], + [28113,0], + [28115,0], + [28117,0], + [28119,0], + [28121,0], + [28123,0], + [28125,0], + [28127,0], + [28129,0.002], + [28131,0.001], + [28133,0], + [28135,0.001], + [28137,0.001], + [28139,0], + [28141,0], + [28143,0], + [28145,0], + [28147,0], + [28149,0], + [28151,0], + [28153,0], + [28155,0], + [28157,0], + [28159,0], + [28161,0], + [28163,0], + [29001,0.002], + [29003,0.007], + [29005,0], + [29007,0.001], + [29009,0], + [29011,0.001], + [29013,0.002], + [29015,0], + [29017,0], + [29019,0.001], + [29021,0.005], + [29023,0.001], + [29025,0], + [29027,0.003], + [29029,0], + [29031,0], + [29033,0], + [29035,0], + [29037,0.001], + [29039,0], + [29041,0], + [29043,0], + [29045,0], + [29047,0.002], + [29049,0], + [29051,0], + [29053,0.002], + [29055,0], + [29057,0], + [29059,0], + [29061,0.001], + [29063,0.003], + [29065,0], + [29067,0], + [29069,0], + [29071,0], + [29073,0], + [29075,0.001], + [29077,0.001], + [29079,0.001], + [29081,0], + [29083,0], + [29085,0], + [29087,0], + [29089,0], + [29091,0], + [29093,0.001], + [29095,0.003], + [29097,0.001], + [29099,0], + [29101,0.003], + [29103,0.001], + [29105,0], + [29107,0.002], + [29109,0.002], + [29111,0.002], + [29113,0], + [29115,0.001], + [29117,0.001], + [29119,0.022], + [29121,0], + [29123,0], + [29125,0], + [29127,0.001], + [29129,0], + [29131,0], + [29133,0], + [29135,0], + [29137,0], + [29139,0.001], + [29141,0], + [29143,0], + [29145,0.01], + [29147,0.001], + [29149,0.001], + [29151,0], + [29153,0], + [29155,0], + [29157,0], + [29159,0], + [29161,0], + [29163,0.001], + [29165,0.005], + [29167,0.001], + [29169,0.007], + [29171,0], + [29173,0], + [29175,0], + [29177,0], + [29179,0.002], + [29181,0.002], + [29183,0], + [29185,0], + [29186,0], + [29187,0], + [29189,0], + [29195,0.011], + [29197,0], + [29199,0], + [29201,0], + [29203,0], + [29205,0], + [29207,0], + [29209,0.001], + [29211,0.001], + [29213,0], + [29215,0], + [29217,0], + [29219,0], + [29221,0.003], + [29223,0], + [29225,0.002], + [29227,0], + [29229,0.002], + [29510,0.001], + [30001,0.001], + [30003,0], + [30005,0], + [30007,0], + [30009,0], + [30011,0], + [30013,0.001], + [30015,0], + [30017,0.002], + [30019,0], + [30021,0], + [30023,0.001], + [30025,0], + [30027,0.019], + [30029,0], + [30031,0], + [30033,0], + [30035,0.001], + [30037,0], + [30039,0], + [30041,0], + [30043,0], + [30045,0], + [30047,0.002], + [30049,0.001], + [30051,0], + [30053,0.002], + [30055,0], + [30057,0], + [30059,0], + [30061,0], + [30063,0.001], + [30065,0], + [30067,0.001], + [30069,0], + [30071,0], + [30073,0], + [30075,0], + [30077,0], + [30079,0], + [30081,0], + [30083,0.002], + [30085,0], + [30087,0], + [30089,0], + [30091,0], + [30093,0], + [30095,0], + [30097,0], + [30099,0], + [30101,0], + [30103,0], + [30105,0.003], + [30107,0], + [30109,0], + [30111,0.001], + [31001,0], + [31003,0], + [31005,0], + [31007,0], + [31009,0], + [31011,0.001], + [31013,0], + [31015,0], + [31017,0], + [31019,0], + [31021,0], + [31023,0], + [31025,0.002], + [31027,0], + [31029,0], + [31031,0.001], + [31033,0], + [31035,0], + [31037,0.002], + [31039,0.001], + [31041,0], + [31043,0.001], + [31045,0], + [31047,0.002], + [31049,0], + [31051,0], + [31053,0.002], + [31055,0.001], + [31057,0], + [31059,0], + [31061,0.001], + [31063,0], + [31065,0], + [31067,0], + [31069,0], + [31071,0], + [31073,0.003], + [31075,0], + [31077,0], + [31079,0.003], + [31081,0.001], + [31083,0], + [31085,0], + [31087,0], + [31089,0], + [31091,0], + [31093,0], + [31095,0], + [31097,0], + [31099,0], + [31101,0.002], + [31103,0], + [31105,0], + [31107,0], + [31109,0.001], + [31111,0], + [31113,0], + [31115,0], + [31117,0], + [31119,0], + [31121,0], + [31123,0], + [31125,0], + [31127,0], + [31129,0.001], + [31131,0], + [31133,0], + [31135,0], + [31137,0], + [31139,0.002], + [31141,0], + [31143,0], + [31145,0], + [31147,0], + [31149,0], + [31151,0], + [31153,0.001], + [31155,0], + [31157,0.001], + [31159,0], + [31161,0], + [31163,0], + [31165,0], + [31167,0], + [31169,0], + [31171,0], + [31173,0], + [31175,0], + [31177,0.001], + [31179,0], + [31181,0.004], + [31183,0], + [31185,0], + [32001,0.001], + [32003,0.008], + [32005,0.003], + [32007,0.002], + [32009,0], + [32011,0], + [32013,0], + [32015,0], + [32017,0], + [32019,0.002], + [32021,0], + [32023,0.005], + [32027,0.003], + [32029,0], + [32031,0.007], + [32033,0.001], + [32510,0.001], + [33001,0], + [33003,0], + [33005,0.001], + [33007,0.001], + [33009,0], + [33011,0.001], + [33013,0], + [33015,0], + [33017,0], + [33019,0], + [34001,0.001], + [34003,0], + [34005,0.001], + [34007,0], + [34009,0], + [34011,0], + [34013,0], + [34015,0], + [34017,0.001], + [34019,0], + [34021,0], + [34023,0], + [34025,0], + [34027,0], + [34029,0], + [34031,0], + [34033,0], + [34035,0], + [34037,0], + [34039,0], + [34041,0], + [35001,0.001], + [35003,0], + [35005,0], + [35006,0], + [35007,0], + [35009,0.004], + [35011,0], + [35013,0], + [35015,0], + [35017,0], + [35019,0], + [35021,0.007], + [35023,0], + [35025,0], + [35027,0], + [35028,0], + [35029,0], + [35031,0], + [35033,0], + [35035,0.002], + [35037,0.002], + [35039,0], + [35041,0.001], + [35043,0.002], + [35045,0.001], + [35047,0.001], + [35049,0.001], + [35051,0], + [35053,0], + [35055,0], + [35057,0], + [35059,0], + [35061,0], + [36001,0], + [36003,0], + [36005,0.001], + [36007,0], + [36009,0], + [36011,0], + [36013,0.001], + [36015,0], + [36017,0], + [36019,0], + [36021,0], + [36023,0], + [36025,0], + [36027,0.001], + [36029,0], + [36031,0], + [36033,0.002], + [36035,0], + [36037,0], + [36039,0], + [36041,0], + [36043,0.002], + [36045,0.002], + [36047,0], + [36049,0.001], + [36051,0], + [36053,0.001], + [36055,0], + [36057,0], + [36059,0], + [36061,0.001], + [36063,0], + [36065,0], + [36067,0], + [36069,0], + [36071,0.001], + [36073,0], + [36075,0], + [36077,0], + [36079,0], + [36081,0], + [36083,0], + [36085,0], + [36087,0], + [36089,0.001], + [36091,0], + [36093,0.001], + [36095,0], + [36097,0], + [36099,0], + [36101,0], + [36103,0], + [36105,0], + [36107,0], + [36109,0.001], + [36111,0.001], + [36113,0.001], + [36115,0], + [36117,0.001], + [36119,0], + [36121,0], + [36123,0], + [37001,0], + [37003,0], + [37005,0], + [37007,0.001], + [37009,0.001], + [37011,0], + [37013,0], + [37015,0], + [37017,0], + [37019,0], + [37021,0.001], + [37023,0.002], + [37025,0.001], + [37027,0], + [37029,0.001], + [37031,0.001], + [37033,0.001], + [37035,0], + [37037,0.001], + [37039,0], + [37041,0], + [37043,0.002], + [37045,0], + [37047,0], + [37049,0.001], + [37051,0.003], + [37053,0], + [37055,0], + [37057,0], + [37059,0], + [37061,0.001], + [37063,0], + [37065,0.001], + [37067,0.001], + [37069,0.002], + [37071,0.001], + [37073,0], + [37075,0], + [37077,0.001], + [37079,0], + [37081,0.001], + [37083,0.001], + [37085,0.003], + [37087,0], + [37089,0], + [37091,0.002], + [37093,0.001], + [37095,0], + [37097,0.001], + [37099,0], + [37101,0], + [37103,0], + [37105,0.001], + [37107,0], + [37109,0.001], + [37111,0], + [37113,0], + [37115,0], + [37117,0.003], + [37119,0.001], + [37121,0], + [37123,0], + [37125,0.001], + [37127,0.001], + [37129,0.001], + [37131,0], + [37133,0.001], + [37135,0], + [37137,0], + [37139,0], + [37141,0.001], + [37143,0.001], + [37145,0.001], + [37147,0.001], + [37149,0], + [37151,0.001], + [37153,0.001], + [37155,0], + [37157,0], + [37159,0], + [37161,0], + [37163,0], + [37165,0], + [37167,0], + [37169,0], + [37171,0.002], + [37173,0], + [37175,0.001], + [37177,0], + [37179,0], + [37181,0.001], + [37183,0], + [37185,0.002], + [37187,0], + [37189,0.001], + [37191,0], + [37193,0.003], + [37195,0], + [37197,0.001], + [37199,0], + [38001,0], + [38003,0.001], + [38005,0.001], + [38007,0], + [38009,0], + [38011,0.001], + [38013,0], + [38015,0.001], + [38017,0], + [38019,0], + [38021,0], + [38023,0], + [38025,0.002], + [38027,0], + [38029,0], + [38031,0.003], + [38033,0], + [38035,0.006], + [38037,0], + [38039,0], + [38041,0], + [38043,0], + [38045,0], + [38047,0], + [38049,0], + [38051,0], + [38053,0], + [38055,0.002], + [38057,0], + [38059,0], + [38061,0], + [38063,0], + [38065,0.005], + [38067,0], + [38069,0], + [38071,0], + [38073,0], + [38075,0], + [38077,0], + [38079,0], + [38081,0], + [38083,0], + [38085,0.001], + [38087,0], + [38089,0.003], + [38091,0], + [38093,0], + [38095,0], + [38097,0.003], + [38099,0], + [38101,0.001], + [38103,0], + [38105,0.001], + [39001,0], + [39003,0], + [39005,0], + [39007,0], + [39009,0.001], + [39011,0], + [39013,0], + [39015,0], + [39017,0.001], + [39019,0], + [39021,0], + [39023,0], + [39025,0], + [39027,0], + [39029,0], + [39031,0], + [39033,0.001], + [39035,0], + [39037,0], + [39039,0], + [39041,0], + [39043,0], + [39045,0], + [39047,0], + [39049,0], + [39051,0], + [39053,0.001], + [39055,0], + [39057,0.001], + [39059,0], + [39061,0.001], + [39063,0], + [39065,0], + [39067,0], + [39069,0], + [39071,0], + [39073,0], + [39075,0], + [39077,0], + [39079,0.001], + [39081,0], + [39083,0], + [39085,0], + [39087,0], + [39089,0], + [39091,0.001], + [39093,0], + [39095,0], + [39097,0], + [39099,0], + [39101,0], + [39103,0], + [39105,0], + [39107,0.006], + [39109,0], + [39111,0], + [39113,0], + [39115,0], + [39117,0], + [39119,0], + [39121,0], + [39123,0], + [39125,0.001], + [39127,0.001], + [39129,0], + [39131,0], + [39133,0], + [39135,0], + [39137,0], + [39139,0], + [39141,0], + [39143,0], + [39145,0], + [39147,0], + [39149,0], + [39151,0], + [39153,0], + [39155,0], + [39157,0], + [39159,0.001], + [39161,0], + [39163,0], + [39165,0], + [39167,0], + [39169,0], + [39171,0], + [39173,0.001], + [39175,0], + [40001,0.002], + [40003,0], + [40005,0.001], + [40007,0], + [40009,0.001], + [40011,0], + [40013,0.001], + [40015,0.002], + [40017,0], + [40019,0], + [40021,0.003], + [40023,0.002], + [40025,0], + [40027,0.001], + [40029,0], + [40031,0.004], + [40033,0], + [40035,0.001], + [40037,0], + [40039,0], + [40041,0.001], + [40043,0], + [40045,0], + [40047,0.035], + [40049,0], + [40051,0], + [40053,0.001], + [40055,0], + [40057,0], + [40059,0], + [40061,0], + [40063,0], + [40065,0.001], + [40067,0], + [40069,0.002], + [40071,0], + [40073,0], + [40075,0.001], + [40077,0], + [40079,0], + [40081,0.001], + [40083,0], + [40085,0], + [40087,0.001], + [40089,0.011], + [40091,0.001], + [40093,0.001], + [40095,0], + [40097,0.004], + [40099,0], + [40101,0], + [40103,0], + [40105,0.002], + [40107,0], + [40109,0.001], + [40111,0], + [40113,0], + [40115,0.007], + [40117,0], + [40119,0.001], + [40121,0.002], + [40123,0.001], + [40125,0.001], + [40127,0.001], + [40129,0], + [40131,0.001], + [40133,0], + [40135,0.001], + [40137,0.001], + [40139,0], + [40141,0], + [40143,0.001], + [40145,0.001], + [40147,0], + [40149,0], + [40151,0], + [40153,0], + [41001,0.004], + [41003,0.002], + [41005,0.003], + [41007,0.003], + [41009,0.002], + [41011,0.001], + [41013,0.004], + [41015,0.001], + [41017,0.002], + [41019,0.001], + [41021,0.007], + [41023,0.002], + [41025,0], + [41027,0], + [41029,0.003], + [41031,0.001], + [41033,0.001], + [41035,0.001], + [41037,0], + [41039,0.003], + [41041,0.002], + [41043,0.001], + [41045,0.001], + [41047,0.009], + [41049,0.005], + [41051,0.006], + [41053,0.005], + [41055,0.014], + [41057,0.005], + [41059,0.003], + [41061,0.015], + [41063,0.001], + [41065,0.006], + [41067,0.004], + [41069,0.001], + [41071,0.003], + [42001,0], + [42003,0], + [42005,0], + [42007,0.001], + [42009,0], + [42011,0], + [42013,0], + [42015,0.002], + [42017,0], + [42019,0], + [42021,0], + [42023,0], + [42025,0], + [42027,0], + [42029,0], + [42031,0.001], + [42033,0], + [42035,0], + [42037,0], + [42039,0], + [42041,0], + [42043,0], + [42045,0], + [42047,0.001], + [42049,0], + [42051,0.001], + [42053,0], + [42055,0], + [42057,0], + [42059,0], + [42061,0], + [42063,0], + [42065,0], + [42067,0], + [42069,0], + [42071,0], + [42073,0], + [42075,0], + [42077,0], + [42079,0.001], + [42081,0], + [42083,0.001], + [42085,0], + [42087,0.001], + [42089,0], + [42091,0], + [42093,0], + [42095,0], + [42097,0], + [42099,0], + [42101,0], + [42103,0.001], + [42105,0], + [42107,0], + [42109,0], + [42111,0], + [42113,0], + [42115,0], + [42117,0], + [42119,0], + [42121,0], + [42123,0], + [42125,0], + [42127,0], + [42129,0], + [42131,0], + [42133,0.001], + [44001,0], + [44003,0], + [44005,0.002], + [44007,0.001], + [44009,0.001], + [45001,0], + [45003,0], + [45005,0], + [45007,0], + [45009,0], + [45011,0.001], + [45013,0.001], + [45015,0.001], + [45017,0.004], + [45019,0.001], + [45021,0], + [45023,0], + [45025,0.001], + [45027,0], + [45029,0], + [45031,0], + [45033,0], + [45035,0.001], + [45037,0], + [45039,0], + [45041,0.001], + [45043,0], + [45045,0.003], + [45047,0], + [45049,0], + [45051,0], + [45053,0], + [45055,0.001], + [45057,0], + [45059,0.001], + [45061,0], + [45063,0.001], + [45065,0], + [45067,0], + [45069,0], + [45071,0], + [45073,0], + [45075,0.001], + [45077,0], + [45079,0.001], + [45081,0], + [45083,0], + [45085,0.001], + [45087,0], + [45089,0], + [45091,0], + [46003,0], + [46005,0.004], + [46007,0], + [46009,0], + [46011,0], + [46013,0], + [46015,0], + [46017,0], + [46019,0], + [46021,0], + [46023,0.001], + [46025,0], + [46027,0], + [46029,0], + [46031,0], + [46033,0], + [46035,0], + [46037,0], + [46039,0], + [46041,0.002], + [46043,0], + [46045,0], + [46047,0], + [46049,0], + [46051,0], + [46053,0], + [46055,0], + [46057,0], + [46059,0], + [46061,0], + [46063,0], + [46065,0], + [46067,0], + [46069,0], + [46071,0], + [46073,0], + [46075,0], + [46077,0], + [46079,0.001], + [46081,0.001], + [46083,0], + [46085,0.001], + [46087,0], + [46089,0], + [46091,0], + [46093,0.001], + [46095,0], + [46097,0], + [46099,0], + [46101,0], + [46102,0], + [46103,0.002], + [46105,0], + [46107,0], + [46109,0], + [46111,0], + [46115,0.002], + [46117,0.012], + [46119,0], + [46121,0], + [46123,0], + [46125,0], + [46127,0], + [46129,0], + [46135,0.001], + [46137,0], + [47001,0.001], + [47003,0], + [47005,0], + [47007,0], + [47009,0.001], + [47011,0], + [47013,0], + [47015,0], + [47017,0.001], + [47019,0], + [47021,0], + [47023,0], + [47025,0.002], + [47027,0], + [47029,0.001], + [47031,0], + [47033,0], + [47035,0], + [47037,0.001], + [47039,0], + [47041,0.001], + [47043,0], + [47045,0.001], + [47047,0], + [47049,0], + [47051,0.001], + [47053,0.001], + [47055,0], + [47057,0], + [47059,0.001], + [47061,0], + [47063,0.003], + [47065,0], + [47067,0], + [47069,0], + [47071,0], + [47073,0.001], + [47075,0], + [47077,0.001], + [47079,0], + [47081,0], + [47083,0.002], + [47085,0], + [47087,0], + [47089,0], + [47091,0], + [47093,0], + [47095,0], + [47097,0], + [47099,0.002], + [47101,0], + [47103,0], + [47105,0], + [47107,0.001], + [47109,0], + [47111,0.002], + [47113,0], + [47115,0], + [47117,0], + [47119,0], + [47121,0], + [47123,0], + [47125,0.004], + [47127,0], + [47129,0], + [47131,0], + [47133,0.004], + [47135,0], + [47137,0], + [47139,0], + [47141,0], + [47143,0], + [47145,0], + [47147,0.001], + [47149,0], + [47151,0], + [47153,0], + [47155,0], + [47157,0], + [47159,0], + [47161,0.004], + [47163,0.001], + [47165,0.001], + [47167,0], + [47169,0], + [47171,0], + [47173,0.003], + [47175,0], + [47177,0.002], + [47179,0], + [47181,0], + [47183,0.001], + [47185,0], + [47187,0], + [47189,0], + [48001,0], + [48003,0.002], + [48005,0], + [48007,0], + [48009,0], + [48011,0], + [48013,0], + [48015,0], + [48017,0], + [48019,0], + [48021,0], + [48023,0.011], + [48025,0], + [48027,0.007], + [48029,0.001], + [48031,0.004], + [48033,0], + [48035,0], + [48037,0], + [48039,0], + [48041,0.001], + [48043,0], + [48045,0.015], + [48047,0], + [48049,0], + [48051,0], + [48053,0], + [48055,0.001], + [48057,0], + [48059,0], + [48061,0], + [48063,0], + [48065,0], + [48067,0], + [48069,0], + [48071,0], + [48073,0.001], + [48075,0], + [48077,0], + [48079,0], + [48081,0], + [48083,0], + [48085,0.001], + [48087,0], + [48089,0], + [48091,0], + [48093,0], + [48095,0], + [48097,0.001], + [48099,0.008], + [48101,0], + [48103,0], + [48105,0], + [48107,0.002], + [48109,0], + [48111,0], + [48113,0], + [48115,0], + [48117,0.001], + [48119,0], + [48121,0.001], + [48123,0], + [48125,0], + [48127,0], + [48129,0], + [48131,0], + [48133,0], + [48135,0], + [48137,0], + [48139,0], + [48141,0.001], + [48143,0.002], + [48145,0], + [48147,0], + [48149,0], + [48151,0], + [48153,0], + [48155,0], + [48157,0.001], + [48159,0], + [48161,0], + [48163,0], + [48165,0], + [48167,0], + [48169,0], + [48171,0], + [48173,0], + [48175,0], + [48177,0], + [48179,0.002], + [48181,0], + [48183,0.001], + [48185,0], + [48187,0.002], + [48189,0], + [48191,0], + [48193,0], + [48195,0], + [48197,0], + [48199,0], + [48201,0.001], + [48203,0], + [48205,0], + [48207,0], + [48209,0], + [48211,0], + [48213,0], + [48215,0], + [48217,0.002], + [48219,0.001], + [48221,0.001], + [48223,0.001], + [48225,0], + [48227,0.001], + [48229,0], + [48231,0], + [48233,0.007], + [48235,0], + [48237,0], + [48239,0.001], + [48241,0.002], + [48243,0], + [48245,0.001], + [48247,0], + [48249,0.001], + [48251,0.004], + [48253,0], + [48255,0], + [48257,0.001], + [48259,0.001], + [48261,0], + [48263,0], + [48265,0.001], + [48267,0], + [48269,0], + [48271,0], + [48273,0], + [48275,0], + [48277,0.001], + [48279,0], + [48281,0.005], + [48283,0], + [48285,0], + [48287,0], + [48289,0.003], + [48291,0], + [48293,0.003], + [48295,0], + [48297,0], + [48299,0], + [48301,0], + [48303,0.001], + [48305,0.001], + [48307,0], + [48309,0.001], + [48311,0], + [48313,0.001], + [48315,0.004], + [48317,0.001], + [48319,0], + [48321,0.003], + [48323,0], + [48325,0], + [48327,0], + [48329,0], + [48331,0], + [48333,0], + [48335,0], + [48337,0], + [48339,0], + [48341,0], + [48343,0.001], + [48345,0], + [48347,0], + [48349,0.016], + [48351,0], + [48353,0], + [48355,0.001], + [48357,0], + [48359,0], + [48361,0], + [48363,0.001], + [48365,0], + [48367,0.001], + [48369,0.003], + [48371,0.002], + [48373,0.001], + [48375,0.002], + [48377,0], + [48379,0], + [48381,0.003], + [48383,0], + [48385,0], + [48387,0], + [48389,0.001], + [48391,0], + [48393,0], + [48395,0.001], + [48397,0], + [48399,0], + [48401,0.001], + [48403,0.003], + [48405,0], + [48407,0], + [48409,0.001], + [48411,0], + [48413,0.004], + [48415,0], + [48417,0], + [48419,0], + [48421,0], + [48423,0.001], + [48425,0.008], + [48427,0], + [48429,0], + [48431,0], + [48433,0], + [48435,0.002], + [48437,0.001], + [48439,0.002], + [48441,0], + [48443,0], + [48445,0], + [48447,0], + [48449,0], + [48451,0.001], + [48453,0.001], + [48455,0], + [48457,0], + [48459,0], + [48461,0], + [48463,0.001], + [48465,0], + [48467,0.001], + [48469,0.001], + [48471,0], + [48473,0], + [48475,0], + [48477,0.001], + [48479,0], + [48481,0], + [48483,0], + [48485,0.001], + [48487,0], + [48489,0], + [48491,0.001], + [48493,0.001], + [48495,0], + [48497,0.002], + [48499,0.001], + [48501,0], + [48503,0], + [48505,0], + [48507,0], + [49001,0], + [49003,0.001], + [49005,0.004], + [49007,0.001], + [49009,0], + [49011,0.007], + [49013,0.003], + [49015,0.003], + [49017,0.001], + [49019,0.006], + [49021,0.001], + [49023,0.001], + [49025,0.001], + [49027,0.001], + [49029,0.003], + [49031,0], + [49033,0], + [49035,0.014], + [49037,0.003], + [49039,0.005], + [49041,0.001], + [49043,0], + [49045,0.006], + [49047,0.001], + [49049,0.009], + [49051,0], + [49053,0.008], + [49055,0.016], + [49057,0.003], + [50001,0], + [50003,0.003], + [50005,0], + [50007,0.001], + [50009,0], + [50011,0], + [50013,0], + [50015,0], + [50017,0.001], + [50019,0], + [50021,0], + [50023,0.001], + [50025,0], + [50027,0.001], + [51001,0], + [51003,0], + [51005,0], + [51007,0], + [51009,0.001], + [51011,0], + [51013,0.001], + [51015,0.001], + [51017,0], + [51019,0], + [51021,0], + [51023,0], + [51025,0], + [51027,0], + [51029,0], + [51031,0], + [51033,0], + [51035,0], + [51036,0], + [51037,0], + [51041,0.001], + [51043,0], + [51045,0], + [51047,0.001], + [51049,0], + [51051,0], + [51053,0.001], + [51057,0], + [51059,0.001], + [51061,0], + [51063,0], + [51065,0.001], + [51067,0], + [51069,0.001], + [51071,0.002], + [51073,0], + [51075,0], + [51077,0], + [51079,0], + [51081,0], + [51083,0], + [51085,0.001], + [51087,0], + [51089,0], + [51091,0], + [51093,0.001], + [51095,0], + [51097,0], + [51099,0], + [51101,0], + [51103,0], + [51105,0], + [51107,0.001], + [51109,0], + [51111,0], + [51113,0], + [51115,0], + [51117,0], + [51119,0.003], + [51121,0], + [51125,0], + [51127,0], + [51131,0], + [51133,0], + [51135,0.002], + [51137,0], + [51139,0], + [51141,0], + [51143,0], + [51145,0.002], + [51147,0], + [51149,0.004], + [51153,0.001], + [51155,0.001], + [51157,0], + [51159,0], + [51161,0], + [51163,0], + [51165,0.001], + [51167,0], + [51169,0], + [51171,0], + [51173,0.001], + [51175,0], + [51177,0.001], + [51179,0.001], + [51181,0], + [51183,0], + [51185,0.001], + [51187,0], + [51191,0], + [51193,0], + [51195,0], + [51197,0], + [51199,0.003], + [51510,0], + [51520,0], + [51530,0.002], + [51540,0.001], + [51550,0.001], + [51570,0.001], + [51580,0.002], + [51590,0.001], + [51595,0], + [51600,0], + [51610,0], + [51620,0], + [51630,0.001], + [51640,0.002], + [51650,0.002], + [51660,0], + [51670,0], + [51678,0], + [51680,0], + [51683,0.002], + [51685,0], + [51690,0.001], + [51700,0.002], + [51710,0.001], + [51720,0], + [51730,0.001], + [51735,0], + [51740,0.003], + [51750,0], + [51760,0], + [51770,0], + [51775,0.001], + [51790,0.001], + [51800,0], + [51810,0.001], + [51820,0.003], + [51830,0], + [51840,0], + [53001,0.002], + [53003,0.002], + [53005,0.001], + [53007,0], + [53009,0], + [53011,0.008], + [53013,0.011], + [53015,0.002], + [53017,0.003], + [53019,0.003], + [53021,0.002], + [53023,0], + [53025,0], + [53027,0.003], + [53029,0.004], + [53031,0.002], + [53033,0.008], + [53035,0.008], + [53037,0.009], + [53039,0], + [53041,0.002], + [53043,0.003], + [53045,0.004], + [53047,0.003], + [53049,0.004], + [53051,0], + [53053,0.015], + [53055,0.002], + [53057,0.002], + [53059,0.001], + [53061,0.005], + [53063,0.006], + [53065,0.001], + [53067,0.008], + [53069,0], + [53071,0.002], + [53073,0.003], + [53075,0.002], + [53077,0.001], + [54001,0], + [54003,0], + [54005,0], + [54007,0.001], + [54009,0.002], + [54011,0], + [54013,0], + [54015,0.001], + [54017,0], + [54019,0.001], + [54021,0], + [54023,0.002], + [54025,0], + [54027,0], + [54029,0], + [54031,0], + [54033,0], + [54035,0], + [54037,0], + [54039,0], + [54041,0], + [54043,0.001], + [54045,0], + [54047,0], + [54049,0], + [54051,0.003], + [54053,0], + [54055,0], + [54057,0], + [54059,0], + [54061,0], + [54063,0], + [54065,0], + [54067,0], + [54069,0], + [54071,0], + [54073,0], + [54075,0], + [54077,0], + [54079,0.001], + [54081,0], + [54083,0], + [54085,0], + [54087,0], + [54089,0], + [54091,0], + [54093,0], + [54095,0], + [54097,0], + [54099,0], + [54101,0], + [54103,0], + [54105,0], + [54107,0.001], + [54109,0], + [55001,0], + [55003,0], + [55005,0], + [55007,0], + [55009,0], + [55011,0], + [55013,0], + [55015,0], + [55017,0], + [55019,0], + [55021,0], + [55023,0], + [55025,0], + [55027,0], + [55029,0], + [55031,0], + [55033,0.001], + [55035,0.004], + [55037,0], + [55039,0], + [55041,0.001], + [55043,0], + [55045,0], + [55047,0], + [55049,0.001], + [55051,0], + [55053,0], + [55055,0], + [55057,0], + [55059,0], + [55061,0], + [55063,0], + [55065,0], + [55067,0], + [55069,0], + [55071,0], + [55073,0.001], + [55075,0], + [55077,0], + [55078,0], + [55079,0], + [55081,0], + [55083,0], + [55085,0], + [55087,0], + [55089,0.001], + [55091,0.001], + [55093,0], + [55095,0.001], + [55097,0], + [55099,0.008], + [55101,0], + [55103,0], + [55105,0], + [55107,0.001], + [55109,0], + [55111,0], + [55113,0], + [55115,0], + [55117,0], + [55119,0], + [55121,0], + [55123,0], + [55125,0.001], + [55127,0.001], + [55129,0.003], + [55131,0], + [55133,0], + [55135,0], + [55137,0], + [55139,0.001], + [55141,0], + [56001,0], + [56003,0], + [56005,0.002], + [56007,0.001], + [56009,0], + [56011,0], + [56013,0], + [56015,0.002], + [56017,0], + [56019,0], + [56021,0.002], + [56023,0], + [56025,0.002], + [56027,0.01], + [56029,0], + [56031,0], + [56033,0], + [56035,0], + [56037,0], + [56039,0.001], + [56041,0], + [56043,0], + [56045,0.001] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-white-2010.json b/data/regional/united-states/demographics/race/us-race-white-2010.json new file mode 100644 index 0000000..74d0d47 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-white-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "White Population", + "description" : "Percent of the population that is white in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.white.2010"], + [1001,0.785], + [1003,0.857], + [1005,0.48], + [1007,0.758], + [1009,0.926], + [1011,0.23], + [1013,0.544], + [1015,0.749], + [1017,0.588], + [1019,0.927], + [1021,0.841], + [1023,0.558], + [1025,0.545], + [1027,0.817], + [1029,0.94], + [1031,0.747], + [1033,0.805], + [1035,0.513], + [1037,0.663], + [1039,0.848], + [1041,0.726], + [1043,0.947], + [1045,0.741], + [1047,0.291], + [1049,0.845], + [1051,0.762], + [1053,0.621], + [1055,0.803], + [1057,0.865], + [1059,0.83], + [1061,0.863], + [1063,0.174], + [1065,0.398], + [1067,0.686], + [1069,0.7], + [1071,0.908], + [1073,0.53], + [1075,0.867], + [1077,0.864], + [1079,0.776], + [1081,0.713], + [1083,0.803], + [1085,0.253], + [1087,0.155], + [1089,0.682], + [1091,0.464], + [1093,0.936], + [1095,0.876], + [1097,0.602], + [1099,0.551], + [1101,0.395], + [1103,0.798], + [1105,0.303], + [1107,0.563], + [1109,0.582], + [1111,0.765], + [1113,0.537], + [1115,0.882], + [1117,0.83], + [1119,0.242], + [1121,0.653], + [1123,0.699], + [1125,0.663], + [1127,0.912], + [1129,0.655], + [1131,0.268], + [1133,0.956], + [2013,0.21], + [2016,0.36], + [2020,0.66], + [2050,0.111], + [2060,0.482], + [2068,0.896], + [2070,0.181], + [2090,0.77], + [2100,0.832], + [2105,0.472], + [2110,0.697], + [2122,0.846], + [2130,0.681], + [2150,0.553], + [2158,0.027], + [2164,0.233], + [2170,0.849], + [2180,0.164], + [2185,0.334], + [2188,0.112], + [2195,0.711], + [2198,0.504], + [2220,0.653], + [2230,0.914], + [2240,0.804], + [2261,0.74], + [2275,0.726], + [2282,0.424], + [2290,0.222], + [4001,0.233], + [4003,0.785], + [4005,0.617], + [4007,0.768], + [4009,0.721], + [4011,0.772], + [4012,0.698], + [4013,0.73], + [4015,0.869], + [4017,0.493], + [4019,0.743], + [4021,0.724], + [4023,0.735], + [4025,0.893], + [4027,0.704], + [5001,0.718], + [5003,0.693], + [5005,0.969], + [5007,0.826], + [5009,0.965], + [5011,0.603], + [5013,0.745], + [5015,0.896], + [5017,0.412], + [5019,0.718], + [5021,0.975], + [5023,0.968], + [5025,0.858], + [5027,0.599], + [5029,0.842], + [5031,0.812], + [5033,0.891], + [5035,0.461], + [5037,0.755], + [5039,0.552], + [5041,0.479], + [5043,0.688], + [5045,0.843], + [5047,0.95], + [5049,0.968], + [5051,0.864], + [5053,0.949], + [5055,0.964], + [5057,0.594], + [5059,0.856], + [5061,0.718], + [5063,0.919], + [5065,0.958], + [5067,0.798], + [5069,0.42], + [5071,0.872], + [5073,0.607], + [5075,0.973], + [5077,0.42], + [5079,0.666], + [5081,0.755], + [5083,0.932], + [5085,0.898], + [5087,0.936], + [5089,0.97], + [5091,0.716], + [5093,0.616], + [5095,0.563], + [5097,0.944], + [5099,0.659], + [5101,0.961], + [5103,0.57], + [5105,0.952], + [5107,0.35], + [5109,0.9], + [5111,0.899], + [5113,0.927], + [5115,0.895], + [5117,0.864], + [5119,0.575], + [5121,0.965], + [5123,0.442], + [5125,0.905], + [5127,0.88], + [5129,0.96], + [5131,0.766], + [5133,0.7], + [5135,0.96], + [5137,0.968], + [5139,0.631], + [5141,0.96], + [5143,0.799], + [5145,0.914], + [5147,0.699], + [5149,0.867], + [6001,0.43], + [6003,0.75], + [6005,0.87], + [6007,0.819], + [6009,0.889], + [6011,0.647], + [6013,0.586], + [6015,0.737], + [6017,0.866], + [6019,0.554], + [6021,0.711], + [6023,0.817], + [6025,0.588], + [6027,0.741], + [6029,0.595], + [6031,0.543], + [6033,0.805], + [6035,0.732], + [6037,0.503], + [6039,0.626], + [6041,0.8], + [6043,0.882], + [6045,0.765], + [6047,0.58], + [6049,0.835], + [6051,0.824], + [6053,0.556], + [6055,0.715], + [6057,0.914], + [6059,0.608], + [6061,0.835], + [6063,0.89], + [6065,0.61], + [6067,0.575], + [6069,0.637], + [6071,0.567], + [6073,0.64], + [6075,0.485], + [6077,0.51], + [6079,0.826], + [6081,0.534], + [6083,0.696], + [6085,0.47], + [6087,0.725], + [6089,0.867], + [6091,0.933], + [6093,0.847], + [6095,0.51], + [6097,0.768], + [6099,0.656], + [6101,0.61], + [6103,0.815], + [6105,0.873], + [6107,0.601], + [6109,0.872], + [6111,0.687], + [6113,0.632], + [6115,0.684], + [8001,0.733], + [8003,0.748], + [8005,0.727], + [8007,0.864], + [8009,0.926], + [8011,0.792], + [8013,0.872], + [8014,0.861], + [8015,0.932], + [8017,0.932], + [8019,0.953], + [8021,0.762], + [8023,0.68], + [8025,0.774], + [8027,0.953], + [8029,0.897], + [8031,0.689], + [8033,0.93], + [8035,0.902], + [8037,0.832], + [8039,0.947], + [8041,0.798], + [8043,0.902], + [8045,0.822], + [8047,0.948], + [8049,0.935], + [8051,0.924], + [8053,0.951], + [8055,0.828], + [8057,0.925], + [8059,0.884], + [8061,0.963], + [8063,0.885], + [8065,0.807], + [8067,0.868], + [8069,0.905], + [8071,0.836], + [8073,0.89], + [8075,0.89], + [8077,0.894], + [8079,0.973], + [8081,0.9], + [8083,0.811], + [8085,0.867], + [8087,0.794], + [8089,0.785], + [8091,0.964], + [8093,0.947], + [8095,0.892], + [8097,0.935], + [8099,0.81], + [8101,0.794], + [8103,0.919], + [8105,0.783], + [8107,0.948], + [8109,0.823], + [8111,0.926], + [8113,0.929], + [8115,0.922], + [8117,0.897], + [8119,0.943], + [8121,0.953], + [8123,0.829], + [8125,0.882], + [9001,0.748], + [9003,0.724], + [9005,0.939], + [9007,0.892], + [9009,0.748], + [9011,0.822], + [9013,0.898], + [9015,0.896], + [10001,0.678], + [10003,0.655], + [10005,0.79], + [11001,0.385], + [12001,0.696], + [12003,0.837], + [12005,0.822], + [12007,0.764], + [12009,0.83], + [12011,0.631], + [12013,0.808], + [12015,0.9], + [12017,0.93], + [12019,0.818], + [12021,0.839], + [12023,0.779], + [12027,0.662], + [12029,0.888], + [12031,0.609], + [12033,0.689], + [12035,0.823], + [12037,0.826], + [12039,0.359], + [12041,0.909], + [12043,0.71], + [12045,0.781], + [12047,0.598], + [12049,0.722], + [12051,0.599], + [12053,0.895], + [12055,0.81], + [12057,0.713], + [12059,0.905], + [12061,0.843], + [12063,0.691], + [12065,0.604], + [12067,0.774], + [12069,0.82], + [12071,0.83], + [12073,0.63], + [12075,0.855], + [12077,0.773], + [12079,0.576], + [12081,0.819], + [12083,0.81], + [12085,0.873], + [12086,0.738], + [12087,0.895], + [12089,0.898], + [12091,0.811], + [12093,0.775], + [12095,0.636], + [12097,0.71], + [12099,0.735], + [12101,0.882], + [12103,0.821], + [12105,0.752], + [12107,0.773], + [12109,0.893], + [12111,0.718], + [12113,0.878], + [12115,0.902], + [12117,0.782], + [12119,0.866], + [12121,0.825], + [12123,0.752], + [12125,0.75], + [12127,0.825], + [12129,0.82], + [12131,0.878], + [12133,0.804], + [13001,0.734], + [13003,0.622], + [13005,0.786], + [13007,0.485], + [13009,0.549], + [13011,0.917], + [13013,0.788], + [13015,0.827], + [13017,0.592], + [13019,0.847], + [13021,0.432], + [13023,0.701], + [13025,0.944], + [13027,0.599], + [13029,0.802], + [13031,0.672], + [13033,0.475], + [13035,0.699], + [13037,0.347], + [13039,0.744], + [13043,0.659], + [13045,0.756], + [13047,0.936], + [13049,0.686], + [13051,0.528], + [13053,0.688], + [13055,0.839], + [13057,0.866], + [13059,0.619], + [13061,0.376], + [13063,0.189], + [13065,0.674], + [13067,0.622], + [13069,0.647], + [13071,0.647], + [13073,0.765], + [13075,0.67], + [13077,0.759], + [13079,0.746], + [13081,0.533], + [13083,0.96], + [13085,0.956], + [13087,0.542], + [13089,0.333], + [13091,0.668], + [13093,0.456], + [13095,0.296], + [13097,0.525], + [13099,0.484], + [13101,0.749], + [13103,0.826], + [13105,0.659], + [13107,0.616], + [13109,0.588], + [13111,0.971], + [13113,0.711], + [13115,0.769], + [13117,0.854], + [13119,0.873], + [13121,0.445], + [13123,0.923], + [13125,0.898], + [13127,0.676], + [13129,0.852], + [13131,0.628], + [13133,0.566], + [13135,0.533], + [13137,0.857], + [13139,0.741], + [13141,0.244], + [13143,0.928], + [13145,0.793], + [13147,0.774], + [13149,0.869], + [13151,0.55], + [13153,0.633], + [13155,0.714], + [13157,0.868], + [13159,0.739], + [13161,0.761], + [13163,0.426], + [13165,0.549], + [13167,0.631], + [13169,0.732], + [13171,0.66], + [13173,0.706], + [13175,0.606], + [13177,0.769], + [13179,0.471], + [13181,0.657], + [13183,0.624], + [13185,0.581], + [13187,0.944], + [13189,0.572], + [13191,0.615], + [13193,0.351], + [13195,0.876], + [13197,0.601], + [13199,0.579], + [13201,0.696], + [13205,0.479], + [13207,0.733], + [13209,0.69], + [13211,0.727], + [13213,0.891], + [13215,0.463], + [13217,0.538], + [13219,0.884], + [13221,0.783], + [13223,0.777], + [13225,0.483], + [13227,0.957], + [13229,0.869], + [13231,0.873], + [13233,0.771], + [13235,0.639], + [13237,0.679], + [13239,0.513], + [13241,0.933], + [13243,0.366], + [13245,0.397], + [13247,0.448], + [13249,0.73], + [13251,0.546], + [13253,0.641], + [13255,0.627], + [13257,0.851], + [13259,0.28], + [13261,0.422], + [13263,0.39], + [13265,0.373], + [13267,0.627], + [13269,0.585], + [13271,0.57], + [13273,0.366], + [13275,0.596], + [13277,0.614], + [13279,0.651], + [13281,0.977], + [13283,0.652], + [13285,0.615], + [13287,0.547], + [13289,0.568], + [13291,0.968], + [13293,0.688], + [13295,0.93], + [13297,0.801], + [13299,0.664], + [13301,0.369], + [13303,0.45], + [13305,0.749], + [13307,0.54], + [13309,0.613], + [13311,0.951], + [13313,0.766], + [13315,0.617], + [13317,0.53], + [13319,0.585], + [13321,0.703], + [15001,0.337], + [15003,0.208], + [15005,0.267], + [15007,0.33], + [15009,0.344], + [16001,0.903], + [16003,0.961], + [16005,0.898], + [16007,0.963], + [16009,0.866], + [16011,0.806], + [16013,0.849], + [16015,0.954], + [16017,0.96], + [16019,0.906], + [16021,0.948], + [16023,0.955], + [16025,0.941], + [16027,0.83], + [16029,0.953], + [16031,0.818], + [16033,0.724], + [16035,0.939], + [16037,0.964], + [16039,0.822], + [16041,0.944], + [16043,0.895], + [16045,0.934], + [16047,0.807], + [16049,0.938], + [16051,0.912], + [16053,0.8], + [16055,0.945], + [16057,0.928], + [16059,0.964], + [16061,0.903], + [16063,0.801], + [16065,0.939], + [16067,0.802], + [16069,0.901], + [16071,0.967], + [16073,0.76], + [16075,0.886], + [16077,0.751], + [16079,0.954], + [16081,0.856], + [16083,0.889], + [16085,0.958], + [16087,0.866], + [17001,0.937], + [17003,0.609], + [17005,0.909], + [17007,0.844], + [17009,0.761], + [17011,0.942], + [17013,0.989], + [17015,0.969], + [17017,0.863], + [17019,0.734], + [17021,0.966], + [17023,0.981], + [17025,0.977], + [17027,0.934], + [17029,0.929], + [17031,0.554], + [17033,0.928], + [17035,0.983], + [17037,0.851], + [17039,0.968], + [17041,0.957], + [17043,0.779], + [17045,0.983], + [17047,0.98], + [17049,0.976], + [17051,0.937], + [17053,0.971], + [17055,0.977], + [17057,0.934], + [17059,0.979], + [17061,0.979], + [17063,0.937], + [17065,0.982], + [17067,0.98], + [17069,0.973], + [17071,0.982], + [17073,0.948], + [17075,0.947], + [17077,0.778], + [17079,0.986], + [17081,0.884], + [17083,0.976], + [17085,0.972], + [17087,0.89], + [17089,0.746], + [17091,0.776], + [17093,0.836], + [17095,0.875], + [17097,0.751], + [17099,0.932], + [17101,0.873], + [17103,0.909], + [17105,0.918], + [17107,0.891], + [17109,0.904], + [17111,0.901], + [17113,0.843], + [17115,0.793], + [17117,0.976], + [17119,0.882], + [17121,0.931], + [17123,0.971], + [17125,0.981], + [17127,0.91], + [17129,0.975], + [17131,0.983], + [17133,0.98], + [17135,0.951], + [17137,0.909], + [17139,0.985], + [17141,0.932], + [17143,0.744], + [17145,0.879], + [17147,0.98], + [17149,0.969], + [17151,0.917], + [17153,0.644], + [17155,0.966], + [17157,0.876], + [17159,0.973], + [17161,0.816], + [17163,0.646], + [17165,0.93], + [17167,0.836], + [17169,0.955], + [17171,0.986], + [17173,0.986], + [17175,0.977], + [17177,0.865], + [17179,0.962], + [17181,0.948], + [17183,0.825], + [17185,0.969], + [17187,0.913], + [17189,0.977], + [17191,0.98], + [17193,0.981], + [17195,0.922], + [17197,0.76], + [17199,0.927], + [17201,0.774], + [17203,0.974], + [18001,0.97], + [18003,0.793], + [18005,0.896], + [18007,0.959], + [18009,0.977], + [18011,0.953], + [18013,0.976], + [18015,0.968], + [18017,0.882], + [18019,0.871], + [18021,0.978], + [18023,0.91], + [18025,0.974], + [18027,0.95], + [18029,0.975], + [18031,0.973], + [18033,0.969], + [18035,0.891], + [18037,0.951], + [18039,0.829], + [18041,0.969], + [18043,0.904], + [18045,0.975], + [18047,0.983], + [18049,0.95], + [18051,0.955], + [18053,0.882], + [18055,0.981], + [18057,0.885], + [18059,0.952], + [18061,0.974], + [18063,0.901], + [18065,0.957], + [18067,0.886], + [18069,0.971], + [18071,0.945], + [18073,0.958], + [18075,0.97], + [18077,0.952], + [18079,0.968], + [18081,0.939], + [18083,0.949], + [18085,0.933], + [18087,0.966], + [18089,0.644], + [18091,0.841], + [18093,0.973], + [18095,0.877], + [18097,0.627], + [18099,0.935], + [18101,0.984], + [18103,0.918], + [18105,0.878], + [18107,0.952], + [18109,0.977], + [18111,0.962], + [18113,0.925], + [18115,0.981], + [18117,0.97], + [18119,0.979], + [18121,0.961], + [18123,0.96], + [18125,0.982], + [18127,0.913], + [18129,0.972], + [18131,0.972], + [18133,0.934], + [18135,0.961], + [18137,0.976], + [18139,0.974], + [18141,0.787], + [18143,0.979], + [18145,0.954], + [18147,0.969], + [18149,0.971], + [18151,0.968], + [18153,0.937], + [18155,0.978], + [18157,0.84], + [18159,0.976], + [18161,0.975], + [18163,0.862], + [18165,0.983], + [18167,0.883], + [18169,0.966], + [18171,0.983], + [18173,0.95], + [18175,0.981], + [18177,0.902], + [18179,0.973], + [18181,0.939], + [18183,0.976], + [19001,0.984], + [19003,0.981], + [19005,0.96], + [19007,0.977], + [19009,0.986], + [19011,0.981], + [19013,0.856], + [19015,0.97], + [19017,0.972], + [19019,0.978], + [19021,0.807], + [19023,0.984], + [19025,0.985], + [19027,0.973], + [19029,0.977], + [19031,0.978], + [19033,0.95], + [19035,0.966], + [19037,0.974], + [19039,0.943], + [19041,0.965], + [19043,0.978], + [19045,0.94], + [19047,0.829], + [19049,0.922], + [19051,0.984], + [19053,0.954], + [19055,0.986], + [19057,0.91], + [19059,0.983], + [19061,0.941], + [19063,0.931], + [19065,0.97], + [19067,0.958], + [19069,0.936], + [19071,0.969], + [19073,0.976], + [19075,0.985], + [19077,0.976], + [19079,0.938], + [19081,0.966], + [19083,0.958], + [19085,0.982], + [19087,0.921], + [19089,0.981], + [19091,0.96], + [19093,0.981], + [19095,0.978], + [19097,0.974], + [19099,0.967], + [19101,0.876], + [19103,0.856], + [19105,0.964], + [19107,0.984], + [19109,0.979], + [19111,0.935], + [19113,0.908], + [19115,0.902], + [19117,0.986], + [19119,0.979], + [19121,0.981], + [19123,0.957], + [19125,0.967], + [19127,0.887], + [19129,0.972], + [19131,0.986], + [19133,0.971], + [19135,0.974], + [19137,0.974], + [19139,0.89], + [19141,0.96], + [19143,0.952], + [19145,0.944], + [19147,0.978], + [19149,0.964], + [19151,0.975], + [19153,0.847], + [19155,0.929], + [19157,0.949], + [19159,0.975], + [19161,0.978], + [19163,0.861], + [19165,0.979], + [19167,0.933], + [19169,0.886], + [19171,0.865], + [19173,0.961], + [19175,0.969], + [19177,0.983], + [19179,0.921], + [19181,0.971], + [19183,0.958], + [19185,0.98], + [19187,0.923], + [19189,0.961], + [19191,0.966], + [19193,0.836], + [19195,0.979], + [19197,0.948], + [20001,0.933], + [20003,0.968], + [20005,0.91], + [20007,0.961], + [20009,0.888], + [20011,0.93], + [20013,0.851], + [20015,0.935], + [20017,0.954], + [20019,0.908], + [20021,0.903], + [20023,0.977], + [20025,0.924], + [20027,0.973], + [20029,0.964], + [20031,0.965], + [20033,0.965], + [20035,0.862], + [20037,0.912], + [20039,0.974], + [20041,0.951], + [20043,0.931], + [20045,0.845], + [20047,0.908], + [20049,0.951], + [20051,0.938], + [20053,0.922], + [20055,0.77], + [20057,0.753], + [20059,0.937], + [20061,0.662], + [20063,0.982], + [20065,0.918], + [20067,0.813], + [20069,0.934], + [20071,0.917], + [20073,0.956], + [20075,0.793], + [20077,0.946], + [20079,0.914], + [20081,0.855], + [20083,0.943], + [20085,0.872], + [20087,0.963], + [20089,0.973], + [20091,0.86], + [20093,0.873], + [20095,0.969], + [20097,0.956], + [20099,0.88], + [20101,0.952], + [20103,0.838], + [20105,0.974], + [20107,0.964], + [20109,0.96], + [20111,0.835], + [20113,0.951], + [20115,0.96], + [20117,0.974], + [20119,0.927], + [20121,0.952], + [20123,0.98], + [20125,0.833], + [20127,0.96], + [20129,0.879], + [20131,0.973], + [20133,0.941], + [20135,0.956], + [20137,0.945], + [20139,0.969], + [20141,0.976], + [20143,0.967], + [20145,0.907], + [20147,0.97], + [20149,0.936], + [20151,0.941], + [20153,0.972], + [20155,0.906], + [20157,0.98], + [20159,0.914], + [20161,0.832], + [20163,0.975], + [20165,0.972], + [20167,0.963], + [20169,0.876], + [20171,0.901], + [20173,0.763], + [20175,0.705], + [20177,0.812], + [20179,0.968], + [20181,0.931], + [20183,0.969], + [20185,0.926], + [20187,0.837], + [20189,0.871], + [20191,0.941], + [20193,0.951], + [20195,0.973], + [20197,0.965], + [20199,0.939], + [20201,0.971], + [20203,0.883], + [20205,0.956], + [20207,0.955], + [20209,0.546], + [21001,0.949], + [21003,0.97], + [21005,0.955], + [21007,0.947], + [21009,0.925], + [21011,0.964], + [21013,0.956], + [21015,0.918], + [21017,0.881], + [21019,0.947], + [21021,0.882], + [21023,0.978], + [21025,0.983], + [21027,0.957], + [21029,0.968], + [21031,0.97], + [21033,0.928], + [21035,0.92], + [21037,0.943], + [21039,0.972], + [21041,0.921], + [21043,0.978], + [21045,0.972], + [21047,0.715], + [21049,0.922], + [21051,0.942], + [21053,0.967], + [21055,0.977], + [21057,0.954], + [21059,0.912], + [21061,0.969], + [21063,0.956], + [21065,0.985], + [21067,0.757], + [21069,0.97], + [21071,0.982], + [21073,0.844], + [21075,0.734], + [21077,0.947], + [21079,0.953], + [21081,0.967], + [21083,0.904], + [21085,0.973], + [21087,0.957], + [21089,0.973], + [21091,0.973], + [21093,0.805], + [21095,0.961], + [21097,0.957], + [21099,0.929], + [21101,0.891], + [21103,0.937], + [21105,0.884], + [21107,0.901], + [21109,0.989], + [21111,0.727], + [21113,0.929], + [21115,0.984], + [21117,0.91], + [21119,0.983], + [21121,0.971], + [21123,0.939], + [21125,0.97], + [21127,0.985], + [21129,0.964], + [21131,0.988], + [21133,0.988], + [21135,0.989], + [21137,0.952], + [21139,0.979], + [21141,0.901], + [21143,0.93], + [21145,0.85], + [21147,0.914], + [21149,0.976], + [21151,0.916], + [21153,0.986], + [21155,0.881], + [21157,0.983], + [21159,0.92], + [21161,0.903], + [21163,0.924], + [21165,0.965], + [21167,0.928], + [21169,0.968], + [21171,0.951], + [21173,0.945], + [21175,0.943], + [21177,0.937], + [21179,0.919], + [21181,0.979], + [21183,0.962], + [21185,0.91], + [21187,0.966], + [21189,0.987], + [21191,0.982], + [21193,0.965], + [21195,0.98], + [21197,0.977], + [21199,0.961], + [21201,0.982], + [21203,0.984], + [21205,0.961], + [21207,0.965], + [21209,0.899], + [21211,0.854], + [21213,0.873], + [21215,0.962], + [21217,0.92], + [21219,0.89], + [21221,0.891], + [21223,0.964], + [21225,0.855], + [21227,0.836], + [21229,0.908], + [21231,0.952], + [21233,0.914], + [21235,0.974], + [21237,0.988], + [21239,0.897], + [22001,0.795], + [22003,0.716], + [22005,0.733], + [22007,0.668], + [22009,0.67], + [22011,0.822], + [22013,0.553], + [22015,0.722], + [22017,0.49], + [22019,0.708], + [22021,0.811], + [22023,0.957], + [22025,0.671], + [22027,0.475], + [22029,0.574], + [22031,0.58], + [22033,0.488], + [22035,0.289], + [22037,0.532], + [22039,0.69], + [22041,0.671], + [22043,0.814], + [22045,0.622], + [22047,0.488], + [22049,0.681], + [22051,0.629], + [22053,0.795], + [22055,0.694], + [22057,0.794], + [22059,0.852], + [22061,0.552], + [22063,0.919], + [22065,0.372], + [22067,0.513], + [22069,0.543], + [22071,0.33], + [22073,0.604], + [22075,0.705], + [22077,0.614], + [22079,0.633], + [22081,0.59], + [22083,0.621], + [22085,0.708], + [22087,0.74], + [22089,0.692], + [22091,0.449], + [22093,0.48], + [22095,0.425], + [22097,0.559], + [22099,0.658], + [22101,0.593], + [22103,0.836], + [22105,0.662], + [22107,0.419], + [22109,0.703], + [22111,0.69], + [22113,0.809], + [22115,0.757], + [22117,0.667], + [22119,0.642], + [22121,0.6], + [22123,0.818], + [22125,0.52], + [22127,0.668], + [23001,0.928], + [23003,0.957], + [23005,0.928], + [23007,0.973], + [23009,0.969], + [23011,0.962], + [23013,0.971], + [23015,0.976], + [23017,0.968], + [23019,0.954], + [23021,0.969], + [23023,0.962], + [23025,0.971], + [23027,0.971], + [23029,0.921], + [23031,0.964], + [24001,0.892], + [24003,0.754], + [24005,0.646], + [24009,0.814], + [24011,0.798], + [24013,0.929], + [24015,0.892], + [24017,0.503], + [24019,0.676], + [24021,0.815], + [24023,0.978], + [24025,0.812], + [24027,0.622], + [24029,0.801], + [24031,0.575], + [24033,0.192], + [24035,0.887], + [24037,0.786], + [24039,0.535], + [24041,0.814], + [24043,0.851], + [24045,0.687], + [24047,0.82], + [24510,0.296], + [25001,0.927], + [25003,0.925], + [25005,0.884], + [25007,0.876], + [25009,0.819], + [25011,0.942], + [25013,0.765], + [25015,0.887], + [25017,0.8], + [25019,0.876], + [25021,0.823], + [25023,0.855], + [25025,0.56], + [25027,0.856], + [26001,0.979], + [26003,0.863], + [26005,0.929], + [26007,0.975], + [26009,0.968], + [26011,0.968], + [26013,0.75], + [26015,0.969], + [26017,0.941], + [26019,0.961], + [26021,0.783], + [26023,0.929], + [26025,0.822], + [26027,0.889], + [26029,0.956], + [26031,0.935], + [26033,0.723], + [26035,0.968], + [26037,0.929], + [26039,0.975], + [26041,0.947], + [26043,0.972], + [26045,0.878], + [26047,0.929], + [26049,0.745], + [26051,0.977], + [26053,0.917], + [26055,0.947], + [26057,0.906], + [26059,0.97], + [26061,0.945], + [26063,0.975], + [26065,0.762], + [26067,0.916], + [26069,0.964], + [26071,0.971], + [26073,0.892], + [26075,0.877], + [26077,0.817], + [26079,0.968], + [26081,0.799], + [26083,0.985], + [26085,0.87], + [26087,0.955], + [26089,0.931], + [26091,0.923], + [26093,0.967], + [26095,0.804], + [26097,0.765], + [26099,0.854], + [26101,0.922], + [26103,0.938], + [26105,0.948], + [26107,0.937], + [26109,0.953], + [26111,0.945], + [26113,0.971], + [26115,0.944], + [26117,0.943], + [26119,0.976], + [26121,0.8], + [26123,0.941], + [26125,0.773], + [26127,0.901], + [26129,0.971], + [26131,0.973], + [26133,0.969], + [26135,0.977], + [26137,0.969], + [26139,0.901], + [26141,0.976], + [26143,0.973], + [26145,0.746], + [26147,0.939], + [26149,0.906], + [26151,0.966], + [26153,0.876], + [26155,0.967], + [26157,0.961], + [26159,0.867], + [26161,0.745], + [26163,0.523], + [26165,0.965], + [27001,0.956], + [27003,0.87], + [27005,0.884], + [27007,0.751], + [27009,0.945], + [27011,0.982], + [27013,0.928], + [27015,0.975], + [27017,0.897], + [27019,0.928], + [27021,0.859], + [27023,0.935], + [27025,0.958], + [27027,0.927], + [27029,0.872], + [27031,0.881], + [27033,0.922], + [27035,0.966], + [27037,0.852], + [27039,0.961], + [27041,0.977], + [27043,0.965], + [27045,0.982], + [27047,0.932], + [27049,0.946], + [27051,0.974], + [27053,0.744], + [27055,0.976], + [27057,0.945], + [27059,0.96], + [27061,0.936], + [27063,0.958], + [27065,0.97], + [27067,0.928], + [27069,0.985], + [27071,0.946], + [27073,0.976], + [27075,0.977], + [27077,0.958], + [27079,0.955], + [27081,0.98], + [27083,0.903], + [27085,0.959], + [27087,0.501], + [27089,0.966], + [27091,0.967], + [27093,0.973], + [27095,0.911], + [27097,0.977], + [27099,0.906], + [27101,0.967], + [27103,0.937], + [27105,0.758], + [27107,0.942], + [27109,0.857], + [27111,0.961], + [27113,0.938], + [27115,0.919], + [27117,0.935], + [27119,0.933], + [27121,0.979], + [27123,0.701], + [27125,0.962], + [27127,0.891], + [27129,0.954], + [27131,0.893], + [27133,0.967], + [27135,0.945], + [27137,0.93], + [27139,0.864], + [27141,0.94], + [27143,0.948], + [27145,0.918], + [27147,0.931], + [27149,0.937], + [27151,0.966], + [27153,0.953], + [27155,0.942], + [27157,0.969], + [27159,0.967], + [27161,0.937], + [27163,0.878], + [27165,0.869], + [27167,0.97], + [27169,0.944], + [27171,0.95], + [27173,0.939], + [28001,0.427], + [28003,0.854], + [28005,0.577], + [28007,0.562], + [28009,0.605], + [28011,0.335], + [28013,0.675], + [28015,0.656], + [28017,0.54], + [28019,0.684], + [28021,0.142], + [28023,0.642], + [28025,0.405], + [28027,0.229], + [28029,0.463], + [28031,0.63], + [28033,0.722], + [28035,0.597], + [28037,0.648], + [28039,0.898], + [28041,0.725], + [28043,0.569], + [28045,0.884], + [28047,0.697], + [28049,0.284], + [28051,0.156], + [28053,0.235], + [28055,0.346], + [28057,0.924], + [28059,0.721], + [28061,0.463], + [28063,0.137], + [28065,0.387], + [28067,0.672], + [28069,0.353], + [28071,0.718], + [28073,0.773], + [28075,0.548], + [28077,0.667], + [28079,0.495], + [28081,0.693], + [28083,0.249], + [28085,0.684], + [28087,0.54], + [28089,0.57], + [28091,0.658], + [28093,0.501], + [28095,0.677], + [28097,0.53], + [28099,0.606], + [28101,0.632], + [28103,0.271], + [28105,0.592], + [28107,0.494], + [28109,0.84], + [28111,0.782], + [28113,0.464], + [28115,0.801], + [28117,0.843], + [28119,0.29], + [28121,0.773], + [28123,0.533], + [28125,0.279], + [28127,0.628], + [28129,0.758], + [28131,0.786], + [28133,0.254], + [28135,0.389], + [28137,0.669], + [28139,0.8], + [28141,0.945], + [28143,0.237], + [28145,0.81], + [28147,0.534], + [28149,0.503], + [28151,0.27], + [28153,0.593], + [28155,0.787], + [28157,0.287], + [28159,0.519], + [28161,0.605], + [28163,0.4], + [29001,0.94], + [29003,0.974], + [29005,0.985], + [29007,0.898], + [29009,0.921], + [29011,0.95], + [29013,0.966], + [29015,0.971], + [29017,0.979], + [29019,0.828], + [29021,0.891], + [29023,0.908], + [29025,0.965], + [29027,0.92], + [29029,0.965], + [29031,0.887], + [29033,0.966], + [29035,0.966], + [29037,0.917], + [29039,0.969], + [29041,0.967], + [29043,0.957], + [29045,0.982], + [29047,0.875], + [29049,0.955], + [29051,0.844], + [29053,0.904], + [29055,0.973], + [29057,0.96], + [29059,0.965], + [29061,0.98], + [29063,0.869], + [29065,0.966], + [29067,0.971], + [29069,0.851], + [29071,0.968], + [29073,0.979], + [29075,0.984], + [29077,0.912], + [29079,0.969], + [29081,0.976], + [29083,0.964], + [29085,0.97], + [29087,0.977], + [29089,0.918], + [29091,0.963], + [29093,0.964], + [29095,0.669], + [29097,0.882], + [29099,0.965], + [29101,0.9], + [29103,0.98], + [29105,0.957], + [29107,0.941], + [29109,0.936], + [29111,0.944], + [29113,0.95], + [29115,0.972], + [29117,0.954], + [29119,0.85], + [29121,0.952], + [29123,0.971], + [29125,0.977], + [29127,0.918], + [29129,0.978], + [29131,0.967], + [29133,0.741], + [29135,0.924], + [29137,0.951], + [29139,0.957], + [29141,0.961], + [29143,0.817], + [29145,0.893], + [29147,0.945], + [29149,0.966], + [29151,0.988], + [29153,0.974], + [29155,0.704], + [29157,0.972], + [29159,0.897], + [29161,0.917], + [29163,0.902], + [29165,0.872], + [29167,0.962], + [29169,0.775], + [29171,0.982], + [29173,0.973], + [29175,0.91], + [29177,0.963], + [29179,0.967], + [29181,0.968], + [29183,0.907], + [29185,0.965], + [29186,0.976], + [29187,0.936], + [29189,0.703], + [29195,0.862], + [29197,0.986], + [29199,0.986], + [29201,0.857], + [29203,0.96], + [29205,0.981], + [29207,0.973], + [29209,0.972], + [29211,0.887], + [29213,0.936], + [29215,0.936], + [29217,0.965], + [29219,0.944], + [29221,0.958], + [29223,0.972], + [29225,0.963], + [29227,0.977], + [29229,0.972], + [29510,0.439], + [30001,0.948], + [30003,0.314], + [30005,0.482], + [30007,0.962], + [30009,0.972], + [30011,0.978], + [30013,0.892], + [30015,0.758], + [30017,0.955], + [30019,0.957], + [30021,0.957], + [30023,0.931], + [30025,0.974], + [30027,0.966], + [30029,0.955], + [30031,0.951], + [30033,0.986], + [30035,0.311], + [30037,0.94], + [30039,0.975], + [30041,0.739], + [30043,0.955], + [30045,0.983], + [30047,0.694], + [30049,0.94], + [30051,0.982], + [30053,0.959], + [30055,0.98], + [30057,0.968], + [30059,0.979], + [30061,0.949], + [30063,0.927], + [30065,0.961], + [30067,0.965], + [30069,0.988], + [30071,0.87], + [30073,0.827], + [30075,0.95], + [30077,0.924], + [30079,0.964], + [30081,0.959], + [30083,0.95], + [30085,0.358], + [30087,0.613], + [30089,0.916], + [30091,0.954], + [30093,0.944], + [30095,0.968], + [30097,0.966], + [30099,0.963], + [30101,0.92], + [30103,0.939], + [30105,0.87], + [30107,0.958], + [30109,0.976], + [30111,0.907], + [31001,0.919], + [31003,0.975], + [31005,0.954], + [31007,0.957], + [31009,0.992], + [31011,0.985], + [31013,0.898], + [31015,0.97], + [31017,0.982], + [31019,0.927], + [31021,0.959], + [31023,0.976], + [31025,0.969], + [31027,0.983], + [31029,0.919], + [31031,0.907], + [31033,0.941], + [31035,0.93], + [31037,0.726], + [31039,0.932], + [31041,0.975], + [31043,0.705], + [31045,0.894], + [31047,0.78], + [31049,0.97], + [31051,0.925], + [31053,0.909], + [31055,0.764], + [31057,0.953], + [31059,0.968], + [31061,0.981], + [31063,0.984], + [31065,0.969], + [31067,0.969], + [31069,0.966], + [31071,0.992], + [31073,0.971], + [31075,0.984], + [31077,0.976], + [31079,0.826], + [31081,0.981], + [31083,0.984], + [31085,0.971], + [31087,0.976], + [31089,0.971], + [31091,0.989], + [31093,0.976], + [31095,0.97], + [31097,0.871], + [31099,0.968], + [31101,0.957], + [31103,0.992], + [31105,0.942], + [31107,0.891], + [31109,0.871], + [31111,0.943], + [31113,0.984], + [31115,0.989], + [31117,0.981], + [31119,0.882], + [31121,0.962], + [31123,0.912], + [31125,0.98], + [31127,0.969], + [31129,0.974], + [31131,0.949], + [31133,0.977], + [31135,0.971], + [31137,0.969], + [31139,0.984], + [31141,0.9], + [31143,0.979], + [31145,0.96], + [31147,0.943], + [31149,0.985], + [31151,0.83], + [31153,0.874], + [31155,0.972], + [31157,0.874], + [31159,0.974], + [31161,0.846], + [31163,0.99], + [31165,0.961], + [31167,0.949], + [31169,0.979], + [31171,0.981], + [31173,0.404], + [31175,0.975], + [31177,0.972], + [31179,0.947], + [31181,0.96], + [31183,0.983], + [31185,0.95], + [32001,0.82], + [32003,0.609], + [32005,0.896], + [32007,0.794], + [32009,0.844], + [32011,0.893], + [32013,0.79], + [32015,0.84], + [32017,0.911], + [32019,0.85], + [32021,0.725], + [32023,0.859], + [32027,0.819], + [32029,0.921], + [32031,0.769], + [32033,0.855], + [32510,0.811], + [33001,0.966], + [33003,0.975], + [33005,0.963], + [33007,0.969], + [33009,0.936], + [33011,0.904], + [33013,0.953], + [33015,0.955], + [33017,0.938], + [33019,0.97], + [34001,0.654], + [34003,0.719], + [34005,0.738], + [34007,0.653], + [34009,0.898], + [34011,0.627], + [34013,0.426], + [34015,0.836], + [34017,0.54], + [34019,0.914], + [34021,0.614], + [34023,0.586], + [34025,0.826], + [34027,0.826], + [34029,0.91], + [34031,0.626], + [34033,0.798], + [34035,0.701], + [34037,0.935], + [34039,0.613], + [34041,0.903], + [35001,0.694], + [35003,0.898], + [35005,0.709], + [35006,0.418], + [35007,0.838], + [35009,0.697], + [35011,0.873], + [35013,0.741], + [35015,0.774], + [35017,0.849], + [35019,0.704], + [35021,0.869], + [35023,0.853], + [35025,0.75], + [35027,0.851], + [35028,0.878], + [35029,0.777], + [35031,0.152], + [35033,0.709], + [35035,0.727], + [35037,0.861], + [35039,0.516], + [35041,0.769], + [35043,0.68], + [35045,0.516], + [35047,0.666], + [35049,0.762], + [35051,0.856], + [35053,0.751], + [35055,0.687], + [35057,0.761], + [35059,0.817], + [35061,0.732], + [36001,0.782], + [36003,0.962], + [36005,0.279], + [36007,0.88], + [36009,0.929], + [36011,0.925], + [36013,0.926], + [36015,0.887], + [36017,0.969], + [36019,0.925], + [36021,0.906], + [36023,0.951], + [36025,0.952], + [36027,0.801], + [36029,0.8], + [36031,0.942], + [36033,0.842], + [36035,0.953], + [36037,0.929], + [36039,0.903], + [36041,0.973], + [36043,0.966], + [36045,0.887], + [36047,0.428], + [36049,0.977], + [36051,0.938], + [36053,0.95], + [36055,0.761], + [36057,0.906], + [36059,0.73], + [36061,0.574], + [36063,0.885], + [36065,0.871], + [36067,0.811], + [36069,0.937], + [36071,0.772], + [36073,0.898], + [36075,0.963], + [36077,0.947], + [36079,0.907], + [36081,0.397], + [36083,0.875], + [36085,0.729], + [36087,0.732], + [36089,0.939], + [36091,0.943], + [36093,0.796], + [36095,0.959], + [36097,0.971], + [36099,0.925], + [36101,0.953], + [36103,0.808], + [36105,0.82], + [36107,0.969], + [36109,0.826], + [36111,0.867], + [36113,0.965], + [36115,0.946], + [36117,0.929], + [36119,0.681], + [36121,0.916], + [36123,0.972], + [37001,0.711], + [37003,0.896], + [37005,0.922], + [37007,0.472], + [37009,0.955], + [37011,0.919], + [37013,0.682], + [37015,0.352], + [37017,0.563], + [37019,0.83], + [37021,0.874], + [37023,0.844], + [37025,0.754], + [37027,0.902], + [37029,0.821], + [37031,0.893], + [37033,0.625], + [37035,0.817], + [37037,0.76], + [37039,0.936], + [37041,0.62], + [37043,0.966], + [37045,0.756], + [37047,0.615], + [37049,0.7], + [37051,0.514], + [37053,0.903], + [37055,0.923], + [37057,0.843], + [37059,0.875], + [37061,0.572], + [37063,0.464], + [37065,0.388], + [37067,0.623], + [37069,0.66], + [37071,0.782], + [37073,0.637], + [37075,0.903], + [37077,0.604], + [37079,0.508], + [37081,0.57], + [37083,0.4], + [37085,0.683], + [37087,0.955], + [37089,0.889], + [37091,0.356], + [37093,0.453], + [37095,0.64], + [37097,0.807], + [37099,0.832], + [37101,0.742], + [37103,0.63], + [37105,0.669], + [37107,0.534], + [37109,0.894], + [37111,0.906], + [37113,0.938], + [37115,0.965], + [37117,0.531], + [37119,0.553], + [37121,0.953], + [37123,0.689], + [37125,0.804], + [37127,0.559], + [37129,0.791], + [37131,0.392], + [37133,0.74], + [37135,0.744], + [37137,0.763], + [37139,0.567], + [37141,0.761], + [37143,0.721], + [37145,0.683], + [37147,0.589], + [37149,0.908], + [37151,0.855], + [37153,0.602], + [37155,0.29], + [37157,0.757], + [37159,0.765], + [37161,0.859], + [37163,0.567], + [37165,0.465], + [37167,0.836], + [37169,0.929], + [37171,0.881], + [37173,0.666], + [37175,0.924], + [37177,0.545], + [37179,0.79], + [37181,0.442], + [37183,0.663], + [37185,0.388], + [37187,0.46], + [37189,0.945], + [37191,0.588], + [37193,0.906], + [37195,0.52], + [37197,0.885], + [37199,0.952], + [38001,0.973], + [38003,0.964], + [38005,0.434], + [38007,0.986], + [38009,0.951], + [38011,0.979], + [38013,0.978], + [38015,0.93], + [38017,0.917], + [38019,0.977], + [38021,0.965], + [38023,0.98], + [38025,0.849], + [38027,0.952], + [38029,0.985], + [38031,0.984], + [38033,0.974], + [38035,0.903], + [38037,0.972], + [38039,0.988], + [38041,0.962], + [38043,0.963], + [38045,0.985], + [38047,0.984], + [38049,0.978], + [38051,0.981], + [38053,0.753], + [38055,0.91], + [38057,0.956], + [38059,0.936], + [38061,0.656], + [38063,0.972], + [38065,0.973], + [38067,0.955], + [38069,0.941], + [38071,0.877], + [38073,0.978], + [38075,0.979], + [38077,0.95], + [38079,0.203], + [38081,0.98], + [38083,0.967], + [38085,0.126], + [38087,0.975], + [38089,0.952], + [38091,0.976], + [38093,0.956], + [38095,0.967], + [38097,0.962], + [38099,0.935], + [38101,0.903], + [38103,0.989], + [38105,0.921], + [39001,0.977], + [39003,0.838], + [39005,0.973], + [39007,0.927], + [39009,0.918], + [39011,0.978], + [39013,0.94], + [39015,0.975], + [39017,0.86], + [39019,0.978], + [39021,0.947], + [39023,0.863], + [39025,0.959], + [39027,0.947], + [39029,0.955], + [39031,0.97], + [39033,0.972], + [39035,0.636], + [39037,0.978], + [39039,0.928], + [39041,0.897], + [39043,0.87], + [39045,0.902], + [39047,0.946], + [39049,0.692], + [39051,0.949], + [39053,0.947], + [39055,0.969], + [39057,0.864], + [39059,0.96], + [39061,0.688], + [39063,0.934], + [39065,0.967], + [39067,0.959], + [39069,0.952], + [39071,0.965], + [39073,0.975], + [39075,0.987], + [39077,0.949], + [39079,0.971], + [39081,0.919], + [39083,0.967], + [39085,0.925], + [39087,0.959], + [39089,0.932], + [39091,0.953], + [39093,0.848], + [39095,0.74], + [39097,0.906], + [39099,0.799], + [39101,0.911], + [39103,0.961], + [39105,0.974], + [39107,0.974], + [39109,0.944], + [39111,0.981], + [39113,0.739], + [39115,0.932], + [39117,0.977], + [39119,0.93], + [39121,0.961], + [39123,0.965], + [39125,0.957], + [39127,0.979], + [39129,0.945], + [39131,0.966], + [39133,0.923], + [39135,0.976], + [39137,0.957], + [39139,0.875], + [39141,0.907], + [39143,0.912], + [39145,0.944], + [39147,0.937], + [39149,0.947], + [39151,0.887], + [39153,0.806], + [39155,0.89], + [39157,0.966], + [39159,0.929], + [39161,0.966], + [39163,0.979], + [39165,0.905], + [39167,0.965], + [39169,0.957], + [39171,0.959], + [39173,0.928], + [39175,0.969], + [40001,0.43], + [40003,0.894], + [40005,0.738], + [40007,0.828], + [40009,0.85], + [40011,0.797], + [40013,0.762], + [40015,0.631], + [40017,0.831], + [40019,0.744], + [40021,0.523], + [40023,0.649], + [40025,0.847], + [40027,0.793], + [40029,0.743], + [40031,0.645], + [40033,0.813], + [40035,0.667], + [40037,0.797], + [40039,0.781], + [40041,0.67], + [40043,0.891], + [40045,0.944], + [40047,0.839], + [40049,0.815], + [40051,0.858], + [40053,0.93], + [40055,0.83], + [40057,0.732], + [40059,0.874], + [40061,0.749], + [40063,0.681], + [40065,0.728], + [40067,0.844], + [40069,0.731], + [40071,0.802], + [40073,0.845], + [40075,0.802], + [40077,0.702], + [40079,0.751], + [40081,0.859], + [40083,0.81], + [40085,0.788], + [40087,0.845], + [40089,0.671], + [40091,0.703], + [40093,0.91], + [40095,0.738], + [40097,0.68], + [40099,0.78], + [40101,0.598], + [40103,0.842], + [40105,0.69], + [40107,0.644], + [40109,0.646], + [40111,0.658], + [40113,0.66], + [40115,0.69], + [40117,0.806], + [40119,0.819], + [40121,0.736], + [40123,0.712], + [40125,0.763], + [40127,0.75], + [40129,0.898], + [40131,0.753], + [40133,0.685], + [40135,0.665], + [40137,0.851], + [40139,0.757], + [40141,0.735], + [40143,0.692], + [40145,0.757], + [40147,0.783], + [40149,0.883], + [40151,0.884], + [40153,0.867], + [41001,0.946], + [41003,0.871], + [41005,0.882], + [41007,0.909], + [41009,0.925], + [41011,0.898], + [41013,0.927], + [41015,0.92], + [41017,0.922], + [41019,0.924], + [41021,0.952], + [41023,0.95], + [41025,0.919], + [41027,0.831], + [41029,0.887], + [41031,0.69], + [41033,0.924], + [41035,0.859], + [41037,0.903], + [41039,0.883], + [41041,0.877], + [41043,0.906], + [41045,0.775], + [41047,0.782], + [41049,0.777], + [41051,0.765], + [41053,0.859], + [41055,0.934], + [41057,0.915], + [41059,0.791], + [41061,0.931], + [41063,0.96], + [41065,0.861], + [41067,0.766], + [41069,0.924], + [41071,0.854], + [42001,0.937], + [42003,0.815], + [42005,0.98], + [42007,0.912], + [42009,0.98], + [42011,0.832], + [42013,0.962], + [42015,0.975], + [42017,0.892], + [42019,0.966], + [42021,0.941], + [42023,0.983], + [42025,0.958], + [42027,0.894], + [42029,0.855], + [42031,0.972], + [42033,0.954], + [42035,0.965], + [42037,0.954], + [42039,0.963], + [42041,0.909], + [42043,0.727], + [42045,0.725], + [42047,0.985], + [42049,0.882], + [42051,0.933], + [42053,0.769], + [42055,0.92], + [42057,0.973], + [42059,0.946], + [42061,0.925], + [42063,0.949], + [42065,0.983], + [42067,0.968], + [42069,0.92], + [42071,0.886], + [42073,0.938], + [42075,0.91], + [42077,0.791], + [42079,0.907], + [42081,0.926], + [42083,0.959], + [42085,0.916], + [42087,0.975], + [42089,0.772], + [42091,0.811], + [42093,0.953], + [42095,0.863], + [42097,0.954], + [42099,0.974], + [42101,0.41], + [42103,0.886], + [42105,0.981], + [42107,0.944], + [42109,0.969], + [42111,0.96], + [42113,0.959], + [42115,0.98], + [42117,0.973], + [42119,0.877], + [42121,0.971], + [42123,0.981], + [42125,0.941], + [42127,0.942], + [42129,0.953], + [42131,0.974], + [42133,0.885], + [44001,0.957], + [44003,0.934], + [44005,0.902], + [44007,0.734], + [44009,0.938], + [45001,0.696], + [45003,0.696], + [45005,0.237], + [45007,0.801], + [45009,0.361], + [45011,0.526], + [45013,0.719], + [45015,0.665], + [45017,0.539], + [45019,0.642], + [45021,0.75], + [45023,0.598], + [45025,0.628], + [45027,0.47], + [45029,0.57], + [45031,0.559], + [45033,0.48], + [45035,0.678], + [45037,0.586], + [45039,0.386], + [45041,0.549], + [45043,0.632], + [45045,0.738], + [45047,0.629], + [45049,0.427], + [45051,0.799], + [45053,0.43], + [45055,0.713], + [45057,0.715], + [45059,0.704], + [45061,0.334], + [45063,0.793], + [45065,0.487], + [45067,0.406], + [45069,0.414], + [45071,0.621], + [45073,0.878], + [45075,0.343], + [45077,0.887], + [45079,0.473], + [45081,0.611], + [45083,0.723], + [45085,0.482], + [45087,0.666], + [45089,0.318], + [45091,0.748], + [46003,0.951], + [46005,0.897], + [46007,0.337], + [46009,0.898], + [46011,0.932], + [46013,0.932], + [46015,0.884], + [46017,0.148], + [46019,0.942], + [46021,0.983], + [46023,0.65], + [46025,0.981], + [46027,0.911], + [46029,0.953], + [46031,0.297], + [46033,0.942], + [46035,0.944], + [46037,0.881], + [46039,0.975], + [46041,0.21], + [46043,0.966], + [46045,0.978], + [46047,0.886], + [46049,0.989], + [46051,0.971], + [46053,0.896], + [46055,0.947], + [46057,0.967], + [46059,0.984], + [46061,0.986], + [46063,0.959], + [46065,0.857], + [46067,0.974], + [46069,0.891], + [46071,0.427], + [46073,0.97], + [46075,0.956], + [46077,0.981], + [46079,0.962], + [46081,0.944], + [46083,0.961], + [46085,0.583], + [46087,0.98], + [46089,0.982], + [46091,0.854], + [46093,0.92], + [46095,0.397], + [46097,0.978], + [46099,0.881], + [46101,0.81], + [46102,0.029], + [46103,0.836], + [46105,0.969], + [46107,0.976], + [46109,0.617], + [46111,0.98], + [46115,0.971], + [46117,0.9], + [46119,0.966], + [46121,0.096], + [46123,0.831], + [46125,0.975], + [46127,0.955], + [46129,0.826], + [46135,0.928], + [46137,0.218], + [47001,0.919], + [47003,0.818], + [47005,0.954], + [47007,0.936], + [47009,0.935], + [47011,0.903], + [47013,0.977], + [47015,0.966], + [47017,0.868], + [47019,0.964], + [47021,0.956], + [47023,0.877], + [47025,0.969], + [47027,0.965], + [47029,0.951], + [47031,0.92], + [47033,0.787], + [47035,0.968], + [47037,0.614], + [47039,0.947], + [47041,0.927], + [47043,0.918], + [47045,0.82], + [47047,0.692], + [47049,0.981], + [47051,0.908], + [47053,0.785], + [47055,0.864], + [47057,0.97], + [47059,0.95], + [47061,0.977], + [47063,0.866], + [47065,0.739], + [47067,0.98], + [47069,0.564], + [47071,0.937], + [47073,0.965], + [47075,0.459], + [47077,0.892], + [47079,0.892], + [47081,0.928], + [47083,0.951], + [47085,0.951], + [47087,0.978], + [47089,0.945], + [47091,0.962], + [47093,0.856], + [47095,0.701], + [47097,0.62], + [47099,0.957], + [47101,0.958], + [47103,0.894], + [47105,0.934], + [47107,0.917], + [47109,0.918], + [47111,0.96], + [47113,0.592], + [47115,0.939], + [47117,0.885], + [47119,0.824], + [47121,0.965], + [47123,0.936], + [47125,0.71], + [47127,0.954], + [47129,0.944], + [47131,0.859], + [47133,0.977], + [47135,0.958], + [47137,0.983], + [47139,0.975], + [47141,0.92], + [47143,0.934], + [47145,0.944], + [47147,0.874], + [47149,0.782], + [47151,0.983], + [47153,0.96], + [47155,0.937], + [47157,0.406], + [47159,0.949], + [47161,0.946], + [47163,0.951], + [47165,0.889], + [47167,0.778], + [47169,0.871], + [47171,0.958], + [47173,0.977], + [47175,0.981], + [47177,0.895], + [47179,0.916], + [47181,0.923], + [47183,0.889], + [47185,0.957], + [47187,0.894], + [47189,0.889], + [48001,0.661], + [48003,0.795], + [48005,0.721], + [48007,0.874], + [48009,0.939], + [48011,0.933], + [48013,0.849], + [48015,0.788], + [48017,0.753], + [48019,0.928], + [48021,0.738], + [48023,0.915], + [48025,0.788], + [48027,0.614], + [48029,0.729], + [48031,0.903], + [48033,0.936], + [48035,0.899], + [48037,0.688], + [48039,0.701], + [48041,0.733], + [48043,0.866], + [48045,0.875], + [48047,0.896], + [48049,0.865], + [48051,0.779], + [48053,0.885], + [48055,0.758], + [48057,0.815], + [48059,0.939], + [48061,0.87], + [48063,0.678], + [48065,0.939], + [48067,0.79], + [48069,0.686], + [48071,0.786], + [48073,0.717], + [48075,0.82], + [48077,0.951], + [48079,0.732], + [48081,0.914], + [48083,0.882], + [48085,0.716], + [48087,0.765], + [48089,0.751], + [48091,0.895], + [48093,0.889], + [48095,0.869], + [48097,0.857], + [48099,0.703], + [48101,0.805], + [48103,0.741], + [48105,0.831], + [48107,0.79], + [48109,0.789], + [48111,0.801], + [48113,0.535], + [48115,0.767], + [48117,0.778], + [48119,0.853], + [48121,0.75], + [48123,0.757], + [48125,0.84], + [48127,0.886], + [48129,0.899], + [48131,0.87], + [48133,0.899], + [48135,0.763], + [48137,0.869], + [48139,0.786], + [48141,0.821], + [48143,0.856], + [48145,0.606], + [48147,0.86], + [48149,0.835], + [48151,0.867], + [48153,0.763], + [48155,0.906], + [48157,0.506], + [48159,0.865], + [48161,0.731], + [48163,0.774], + [48165,0.84], + [48167,0.725], + [48169,0.828], + [48171,0.913], + [48173,0.852], + [48175,0.837], + [48177,0.715], + [48179,0.815], + [48181,0.839], + [48183,0.673], + [48185,0.73], + [48187,0.798], + [48189,0.708], + [48191,0.769], + [48193,0.929], + [48195,0.818], + [48197,0.855], + [48199,0.906], + [48201,0.566], + [48203,0.686], + [48205,0.87], + [48207,0.827], + [48209,0.807], + [48211,0.869], + [48213,0.858], + [48215,0.88], + [48217,0.835], + [48219,0.785], + [48221,0.926], + [48223,0.815], + [48225,0.67], + [48227,0.741], + [48229,0.788], + [48231,0.816], + [48233,0.855], + [48235,0.916], + [48237,0.875], + [48239,0.813], + [48241,0.777], + [48243,0.902], + [48245,0.522], + [48247,0.879], + [48249,0.872], + [48251,0.872], + [48253,0.712], + [48255,0.702], + [48257,0.791], + [48259,0.907], + [48261,0.875], + [48263,0.932], + [48265,0.877], + [48267,0.915], + [48269,0.937], + [48271,0.886], + [48273,0.799], + [48275,0.764], + [48277,0.793], + [48279,0.744], + [48281,0.853], + [48283,0.897], + [48285,0.86], + [48287,0.789], + [48289,0.849], + [48291,0.772], + [48293,0.69], + [48295,0.862], + [48297,0.877], + [48299,0.949], + [48301,0.793], + [48303,0.773], + [48305,0.803], + [48307,0.839], + [48309,0.698], + [48311,0.909], + [48313,0.67], + [48315,0.735], + [48317,0.847], + [48319,0.93], + [48321,0.712], + [48323,0.914], + [48325,0.856], + [48327,0.824], + [48329,0.769], + [48331,0.781], + [48333,0.9], + [48335,0.684], + [48337,0.932], + [48339,0.835], + [48341,0.725], + [48343,0.697], + [48345,0.921], + [48347,0.686], + [48349,0.694], + [48351,0.769], + [48353,0.836], + [48355,0.815], + [48357,0.856], + [48359,0.902], + [48361,0.861], + [48363,0.871], + [48365,0.768], + [48367,0.914], + [48369,0.776], + [48371,0.794], + [48373,0.773], + [48375,0.698], + [48377,0.859], + [48379,0.912], + [48381,0.889], + [48383,0.771], + [48385,0.905], + [48387,0.765], + [48389,0.772], + [48391,0.805], + [48393,0.938], + [48395,0.677], + [48397,0.836], + [48399,0.832], + [48401,0.722], + [48403,0.891], + [48405,0.719], + [48407,0.822], + [48409,0.859], + [48411,0.843], + [48413,0.803], + [48415,0.787], + [48417,0.931], + [48419,0.686], + [48421,0.883], + [48423,0.701], + [48425,0.85], + [48427,0.961], + [48429,0.847], + [48431,0.886], + [48433,0.877], + [48435,0.887], + [48437,0.751], + [48439,0.666], + [48441,0.794], + [48443,0.841], + [48445,0.813], + [48447,0.948], + [48449,0.676], + [48451,0.817], + [48453,0.693], + [48455,0.843], + [48457,0.824], + [48459,0.851], + [48461,0.75], + [48463,0.781], + [48465,0.85], + [48467,0.909], + [48469,0.795], + [48471,0.671], + [48473,0.585], + [48475,0.772], + [48477,0.742], + [48479,0.88], + [48481,0.722], + [48483,0.826], + [48485,0.771], + [48487,0.782], + [48489,0.858], + [48491,0.781], + [48493,0.891], + [48495,0.737], + [48497,0.887], + [48499,0.887], + [48501,0.745], + [48503,0.903], + [48505,0.936], + [48507,0.882], + [49001,0.89], + [49003,0.918], + [49005,0.891], + [49007,0.923], + [49009,0.959], + [49011,0.9], + [49013,0.892], + [49015,0.939], + [49017,0.941], + [49019,0.89], + [49021,0.907], + [49023,0.959], + [49025,0.957], + [49027,0.876], + [49029,0.975], + [49031,0.947], + [49033,0.97], + [49035,0.812], + [49037,0.458], + [49039,0.904], + [49041,0.949], + [49043,0.905], + [49045,0.907], + [49047,0.866], + [49049,0.894], + [49051,0.904], + [49053,0.897], + [49055,0.948], + [49057,0.852], + [50001,0.953], + [50003,0.966], + [50005,0.965], + [50007,0.925], + [50009,0.973], + [50011,0.956], + [50013,0.953], + [50015,0.967], + [50017,0.97], + [50019,0.966], + [50021,0.971], + [50023,0.961], + [50025,0.953], + [50027,0.963], + [51001,0.653], + [51003,0.806], + [51005,0.932], + [51007,0.735], + [51009,0.767], + [51011,0.775], + [51013,0.717], + [51015,0.934], + [51017,0.937], + [51019,0.914], + [51021,0.955], + [51023,0.949], + [51025,0.404], + [51027,0.966], + [51029,0.621], + [51031,0.821], + [51033,0.653], + [51035,0.971], + [51036,0.409], + [51037,0.673], + [51041,0.683], + [51043,0.902], + [51045,0.987], + [51047,0.751], + [51049,0.639], + [51051,0.988], + [51053,0.639], + [51057,0.571], + [51059,0.627], + [51061,0.853], + [51063,0.959], + [51065,0.807], + [51067,0.885], + [51069,0.893], + [51071,0.967], + [51073,0.872], + [51075,0.775], + [51077,0.953], + [51079,0.876], + [51081,0.385], + [51083,0.607], + [51085,0.867], + [51087,0.592], + [51089,0.729], + [51091,0.986], + [51093,0.718], + [51095,0.803], + [51097,0.671], + [51099,0.767], + [51101,0.772], + [51103,0.701], + [51105,0.942], + [51107,0.687], + [51109,0.784], + [51111,0.608], + [51113,0.867], + [51115,0.88], + [51117,0.599], + [51119,0.792], + [51121,0.876], + [51125,0.833], + [51127,0.817], + [51131,0.579], + [51133,0.714], + [51135,0.566], + [51137,0.824], + [51139,0.959], + [51141,0.911], + [51143,0.755], + [51145,0.838], + [51147,0.633], + [51149,0.611], + [51153,0.578], + [51155,0.925], + [51157,0.927], + [51159,0.648], + [51161,0.9], + [51163,0.946], + [51165,0.933], + [51167,0.978], + [51169,0.979], + [51171,0.93], + [51173,0.958], + [51175,0.604], + [51177,0.755], + [51179,0.725], + [51181,0.513], + [51183,0.393], + [51185,0.951], + [51187,0.909], + [51191,0.97], + [51193,0.659], + [51195,0.93], + [51197,0.951], + [51199,0.764], + [51510,0.609], + [51520,0.909], + [51530,0.91], + [51540,0.691], + [51550,0.626], + [51570,0.823], + [51580,0.841], + [51590,0.477], + [51595,0.327], + [51600,0.696], + [51610,0.799], + [51620,0.394], + [51630,0.642], + [51640,0.858], + [51650,0.427], + [51660,0.784], + [51670,0.554], + [51678,0.852], + [51680,0.644], + [51683,0.617], + [51685,0.559], + [51690,0.499], + [51700,0.49], + [51710,0.471], + [51720,0.887], + [51730,0.161], + [51735,0.951], + [51740,0.416], + [51750,0.87], + [51760,0.408], + [51770,0.642], + [51775,0.882], + [51790,0.837], + [51800,0.523], + [51810,0.677], + [51820,0.822], + [51830,0.74], + [51840,0.745], + [53001,0.625], + [53003,0.943], + [53005,0.824], + [53007,0.793], + [53009,0.87], + [53011,0.854], + [53013,0.93], + [53015,0.889], + [53017,0.796], + [53019,0.763], + [53021,0.605], + [53023,0.938], + [53025,0.728], + [53027,0.849], + [53029,0.861], + [53031,0.91], + [53033,0.687], + [53035,0.826], + [53037,0.893], + [53039,0.877], + [53041,0.897], + [53043,0.95], + [53045,0.861], + [53047,0.739], + [53049,0.874], + [53051,0.916], + [53053,0.742], + [53055,0.926], + [53057,0.834], + [53059,0.928], + [53061,0.784], + [53063,0.892], + [53065,0.894], + [53067,0.824], + [53069,0.94], + [53071,0.845], + [53073,0.854], + [53075,0.846], + [53077,0.637], + [54001,0.968], + [54003,0.878], + [54005,0.985], + [54007,0.982], + [54009,0.97], + [54011,0.916], + [54013,0.984], + [54015,0.988], + [54017,0.97], + [54019,0.935], + [54021,0.825], + [54023,0.977], + [54025,0.946], + [54027,0.972], + [54029,0.957], + [54031,0.938], + [54033,0.96], + [54035,0.982], + [54037,0.876], + [54039,0.891], + [54041,0.979], + [54043,0.99], + [54045,0.965], + [54047,0.891], + [54049,0.943], + [54051,0.98], + [54053,0.977], + [54055,0.916], + [54057,0.953], + [54059,0.971], + [54061,0.91], + [54063,0.975], + [54065,0.973], + [54067,0.984], + [54069,0.932], + [54071,0.962], + [54073,0.973], + [54075,0.978], + [54077,0.976], + [54079,0.968], + [54081,0.885], + [54083,0.973], + [54085,0.987], + [54087,0.984], + [54089,0.93], + [54091,0.975], + [54093,0.987], + [54095,0.99], + [54097,0.976], + [54099,0.986], + [54101,0.986], + [54103,0.987], + [54105,0.985], + [54107,0.964], + [54109,0.982], + [55001,0.93], + [55003,0.846], + [55005,0.961], + [55007,0.867], + [55009,0.865], + [55011,0.975], + [55013,0.916], + [55015,0.943], + [55017,0.953], + [55019,0.961], + [55021,0.958], + [55023,0.966], + [55025,0.847], + [55027,0.938], + [55029,0.966], + [55031,0.932], + [55033,0.947], + [55035,0.931], + [55037,0.974], + [55039,0.941], + [55041,0.827], + [55043,0.97], + [55045,0.966], + [55047,0.967], + [55049,0.976], + [55051,0.979], + [55053,0.893], + [55055,0.94], + [55057,0.94], + [55059,0.838], + [55061,0.97], + [55063,0.921], + [55065,0.968], + [55067,0.964], + [55069,0.972], + [55071,0.938], + [55073,0.913], + [55075,0.971], + [55077,0.969], + [55078,0.107], + [55079,0.606], + [55081,0.939], + [55083,0.967], + [55085,0.966], + [55087,0.913], + [55089,0.949], + [55091,0.982], + [55093,0.966], + [55095,0.968], + [55097,0.942], + [55099,0.971], + [55101,0.797], + [55103,0.973], + [55105,0.876], + [55107,0.976], + [55109,0.959], + [55111,0.945], + [55113,0.793], + [55115,0.888], + [55117,0.899], + [55119,0.979], + [55121,0.945], + [55123,0.977], + [55125,0.871], + [55127,0.919], + [55129,0.964], + [55131,0.958], + [55133,0.933], + [55135,0.971], + [55137,0.939], + [55139,0.925], + [55141,0.95], + [56001,0.901], + [56003,0.944], + [56005,0.932], + [56007,0.888], + [56009,0.951], + [56011,0.972], + [56013,0.743], + [56015,0.945], + [56017,0.958], + [56019,0.965], + [56021,0.885], + [56023,0.954], + [56025,0.928], + [56027,0.965], + [56029,0.956], + [56031,0.954], + [56033,0.954], + [56035,0.932], + [56037,0.885], + [56039,0.884], + [56041,0.924], + [56043,0.914], + [56045,0.955] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-white-2019.json b/data/regional/united-states/demographics/race/us-race-white-2019.json new file mode 100644 index 0000000..2fd7a65 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-white-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "White Population", + "description" : "Percent of the population that is white.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.white.2019"], + [1001,0.768], + [1003,0.862], + [1005,0.468], + [1007,0.768], + [1009,0.955], + [1011,0.219], + [1013,0.518], + [1015,0.737], + [1017,0.577], + [1019,0.929], + [1021,0.836], + [1023,0.568], + [1025,0.53], + [1027,0.832], + [1029,0.939], + [1031,0.757], + [1033,0.79], + [1035,0.507], + [1037,0.658], + [1039,0.846], + [1041,0.714], + [1043,0.951], + [1045,0.724], + [1047,0.279], + [1049,0.854], + [1051,0.753], + [1053,0.622], + [1055,0.798], + [1057,0.853], + [1059,0.83], + [1061,0.866], + [1063,0.173], + [1065,0.395], + [1067,0.707], + [1069,0.691], + [1071,0.915], + [1073,0.518], + [1075,0.875], + [1077,0.869], + [1079,0.78], + [1081,0.703], + [1083,0.802], + [1085,0.248], + [1087,0.16], + [1089,0.679], + [1091,0.458], + [1093,0.929], + [1095,0.93], + [1097,0.586], + [1099,0.545], + [1101,0.358], + [1103,0.799], + [1105,0.295], + [1107,0.567], + [1109,0.579], + [1111,0.771], + [1113,0.492], + [1115,0.873], + [1117,0.801], + [1119,0.252], + [1121,0.639], + [1123,0.7], + [1125,0.642], + [1127,0.906], + [1129,0.663], + [1131,0.273], + [1133,0.961], + [2013,0.151], + [2016,0.291], + [2020,0.626], + [2050,0.112], + [2060,0.527], + [2068,0.842], + [2070,0.175], + [2090,0.754], + [2100,0.816], + [2105,0.461], + [2110,0.68], + [2122,0.825], + [2130,0.665], + [2150,0.547], + [2158,0.036], + [2164,0.21], + [2170,0.829], + [2180,0.156], + [2185,0.314], + [2188,0.113], + [2195,0.761], + [2198,0.477], + [2220,0.643], + [2230,0.849], + [2240,0.764], + [2261,0.718], + [2275,0.63], + [2282,0.451], + [2290,0.227], + [4001,0.228], + [4003,0.855], + [4005,0.639], + [4007,0.769], + [4009,0.799], + [4011,0.915], + [4012,0.771], + [4013,0.776], + [4015,0.902], + [4017,0.471], + [4019,0.76], + [4021,0.799], + [4023,0.857], + [4025,0.913], + [4027,0.763], + [5001,0.721], + [5003,0.724], + [5005,0.967], + [5007,0.876], + [5009,0.962], + [5011,0.659], + [5013,0.762], + [5015,0.921], + [5017,0.435], + [5019,0.702], + [5021,0.959], + [5023,0.969], + [5025,0.858], + [5027,0.605], + [5029,0.851], + [5031,0.788], + [5033,0.881], + [5035,0.435], + [5037,0.736], + [5039,0.534], + [5041,0.488], + [5043,0.685], + [5045,0.821], + [5047,0.94], + [5049,0.96], + [5051,0.861], + [5053,0.948], + [5055,0.947], + [5057,0.573], + [5059,0.846], + [5061,0.674], + [5063,0.911], + [5065,0.94], + [5067,0.777], + [5069,0.397], + [5071,0.912], + [5073,0.6], + [5075,0.966], + [5077,0.43], + [5079,0.659], + [5081,0.739], + [5083,0.918], + [5085,0.887], + [5087,0.936], + [5089,0.96], + [5091,0.698], + [5093,0.603], + [5095,0.546], + [5097,0.921], + [5099,0.628], + [5101,0.942], + [5103,0.57], + [5105,0.962], + [5107,0.361], + [5109,0.909], + [5111,0.884], + [5113,0.916], + [5115,0.912], + [5117,0.857], + [5119,0.559], + [5121,0.952], + [5123,0.41], + [5125,0.884], + [5127,0.89], + [5129,0.932], + [5131,0.735], + [5133,0.629], + [5135,0.95], + [5137,0.965], + [5139,0.639], + [5141,0.95], + [5143,0.772], + [5145,0.911], + [5147,0.698], + [5149,0.786], + [6001,0.405], + [6003,0.577], + [6005,0.867], + [6007,0.816], + [6009,0.905], + [6011,0.883], + [6013,0.558], + [6015,0.749], + [6017,0.876], + [6019,0.65], + [6021,0.811], + [6023,0.799], + [6025,0.651], + [6027,0.788], + [6029,0.744], + [6031,0.677], + [6033,0.769], + [6035,0.822], + [6037,0.513], + [6039,0.695], + [6041,0.778], + [6043,0.884], + [6045,0.836], + [6047,0.551], + [6049,0.895], + [6051,0.833], + [6053,0.533], + [6055,0.734], + [6057,0.924], + [6059,0.61], + [6061,0.822], + [6063,0.903], + [6065,0.599], + [6067,0.573], + [6069,0.816], + [6071,0.612], + [6073,0.707], + [6075,0.464], + [6077,0.565], + [6079,0.855], + [6081,0.506], + [6083,0.775], + [6085,0.445], + [6087,0.748], + [6089,0.866], + [6091,0.975], + [6093,0.848], + [6095,0.526], + [6097,0.748], + [6099,0.766], + [6101,0.69], + [6103,0.857], + [6105,0.86], + [6107,0.737], + [6109,0.878], + [6111,0.801], + [6113,0.693], + [6115,0.76], + [8001,0.816], + [8003,0.864], + [8005,0.715], + [8007,0.84], + [8009,0.943], + [8011,0.914], + [8013,0.89], + [8014,0.863], + [8015,0.937], + [8017,0.935], + [8019,0.942], + [8021,0.888], + [8023,0.884], + [8025,0.886], + [8027,0.93], + [8029,0.944], + [8031,0.761], + [8033,0.967], + [8035,0.889], + [8037,0.889], + [8039,0.936], + [8041,0.796], + [8043,0.898], + [8045,0.861], + [8047,0.924], + [8049,0.948], + [8051,0.957], + [8053,0.942], + [8055,0.919], + [8057,0.979], + [8059,0.906], + [8061,0.962], + [8063,0.921], + [8065,0.853], + [8067,0.88], + [8069,0.913], + [8071,0.849], + [8073,0.89], + [8075,0.914], + [8077,0.94], + [8079,0.874], + [8081,0.944], + [8083,0.81], + [8085,0.942], + [8087,0.888], + [8089,0.901], + [8091,0.977], + [8093,0.943], + [8095,0.966], + [8097,0.911], + [8099,0.944], + [8101,0.804], + [8103,0.924], + [8105,0.915], + [8107,0.957], + [8109,0.902], + [8111,0.973], + [8113,0.947], + [8115,0.937], + [8117,0.913], + [8119,0.947], + [8121,0.953], + [8123,0.903], + [8125,0.958], + [9001,0.73], + [9003,0.707], + [9005,0.928], + [9007,0.88], + [9009,0.733], + [9011,0.807], + [9013,0.879], + [9015,0.892], + [10001,0.662], + [10003,0.642], + [10005,0.82], + [11001,0.413], + [12001,0.689], + [12003,0.825], + [12005,0.811], + [12007,0.772], + [12009,0.825], + [12011,0.607], + [12013,0.804], + [12015,0.899], + [12017,0.928], + [12019,0.792], + [12021,0.888], + [12023,0.767], + [12027,0.842], + [12029,0.864], + [12031,0.598], + [12033,0.681], + [12035,0.823], + [12037,0.809], + [12039,0.396], + [12041,0.912], + [12043,0.798], + [12045,0.795], + [12047,0.615], + [12049,0.804], + [12051,0.786], + [12053,0.887], + [12055,0.808], + [12057,0.705], + [12059,0.887], + [12061,0.864], + [12063,0.689], + [12065,0.628], + [12067,0.802], + [12069,0.825], + [12071,0.844], + [12073,0.614], + [12075,0.876], + [12077,0.801], + [12079,0.58], + [12081,0.854], + [12083,0.819], + [12085,0.881], + [12086,0.751], + [12087,0.88], + [12089,0.903], + [12091,0.782], + [12093,0.854], + [12095,0.636], + [12097,0.728], + [12099,0.735], + [12101,0.869], + [12103,0.815], + [12105,0.771], + [12107,0.803], + [12109,0.884], + [12111,0.731], + [12113,0.854], + [12115,0.909], + [12117,0.758], + [12119,0.89], + [12121,0.827], + [12123,0.763], + [12125,0.736], + [12127,0.814], + [12129,0.822], + [12131,0.868], + [12133,0.797], + [13001,0.746], + [13003,0.752], + [13005,0.8], + [13007,0.546], + [13009,0.537], + [13011,0.93], + [13013,0.788], + [13015,0.837], + [13017,0.597], + [13019,0.83], + [13021,0.402], + [13023,0.699], + [13025,0.939], + [13027,0.596], + [13029,0.77], + [13031,0.651], + [13033,0.488], + [13035,0.68], + [13037,0.34], + [13039,0.73], + [13043,0.67], + [13045,0.747], + [13047,0.923], + [13049,0.664], + [13051,0.527], + [13053,0.676], + [13055,0.857], + [13057,0.863], + [13059,0.633], + [13061,0.358], + [13063,0.163], + [13065,0.656], + [13067,0.586], + [13069,0.678], + [13071,0.638], + [13073,0.739], + [13075,0.687], + [13077,0.764], + [13079,0.749], + [13081,0.527], + [13083,0.946], + [13085,0.963], + [13087,0.525], + [13089,0.343], + [13091,0.672], + [13093,0.451], + [13095,0.264], + [13097,0.462], + [13099,0.453], + [13101,0.738], + [13103,0.816], + [13105,0.681], + [13107,0.624], + [13109,0.58], + [13111,0.965], + [13113,0.669], + [13115,0.783], + [13117,0.792], + [13119,0.853], + [13121,0.446], + [13123,0.915], + [13125,0.886], + [13127,0.685], + [13129,0.879], + [13131,0.655], + [13133,0.591], + [13135,0.485], + [13137,0.861], + [13139,0.856], + [13141,0.244], + [13143,0.923], + [13145,0.792], + [13147,0.774], + [13149,0.869], + [13151,0.479], + [13153,0.604], + [13155,0.698], + [13157,0.865], + [13159,0.754], + [13161,0.772], + [13163,0.435], + [13165,0.592], + [13167,0.642], + [13169,0.729], + [13171,0.662], + [13173,0.74], + [13175,0.586], + [13177,0.734], + [13179,0.458], + [13181,0.674], + [13183,0.639], + [13185,0.57], + [13187,0.943], + [13189,0.54], + [13191,0.623], + [13193,0.343], + [13195,0.843], + [13197,0.616], + [13199,0.573], + [13201,0.681], + [13205,0.491], + [13207,0.737], + [13209,0.668], + [13211,0.74], + [13213,0.968], + [13215,0.433], + [13217,0.504], + [13219,0.884], + [13221,0.798], + [13223,0.75], + [13225,0.489], + [13227,0.892], + [13229,0.857], + [13231,0.881], + [13233,0.793], + [13235,0.601], + [13237,0.69], + [13239,0.378], + [13241,0.92], + [13243,0.347], + [13245,0.371], + [13247,0.388], + [13249,0.697], + [13251,0.556], + [13253,0.621], + [13255,0.625], + [13257,0.846], + [13259,0.236], + [13261,0.427], + [13263,0.412], + [13265,0.34], + [13267,0.587], + [13269,0.577], + [13271,0.521], + [13273,0.362], + [13275,0.6], + [13277,0.645], + [13279,0.636], + [13281,0.959], + [13283,0.73], + [13285,0.583], + [13287,0.573], + [13289,0.558], + [13291,0.97], + [13293,0.681], + [13295,0.92], + [13297,0.775], + [13299,0.648], + [13301,0.375], + [13303,0.436], + [13305,0.747], + [13307,0.533], + [13309,0.563], + [13311,0.939], + [13313,0.887], + [13315,0.631], + [13317,0.526], + [13319,0.592], + [13321,0.686], + [15001,0.333], + [15003,0.209], + [15005,0.242], + [15007,0.324], + [15009,0.355], + [16001,0.905], + [16003,0.955], + [16005,0.89], + [16007,0.943], + [16009,0.866], + [16011,0.822], + [16013,0.948], + [16015,0.951], + [16017,0.95], + [16019,0.895], + [16021,0.941], + [16023,0.995], + [16025,0.997], + [16027,0.827], + [16029,0.954], + [16031,0.931], + [16033,0.904], + [16035,0.927], + [16037,0.913], + [16039,0.851], + [16041,0.947], + [16043,0.948], + [16045,0.901], + [16047,0.93], + [16049,0.933], + [16051,0.913], + [16053,0.934], + [16055,0.94], + [16057,0.92], + [16059,0.947], + [16061,0.867], + [16063,0.93], + [16065,0.928], + [16067,0.936], + [16069,0.896], + [16071,0.979], + [16073,0.791], + [16075,0.879], + [16077,0.841], + [16079,0.935], + [16081,0.889], + [16083,0.918], + [16085,0.988], + [16087,0.878], + [17001,0.929], + [17003,0.632], + [17005,0.909], + [17007,0.875], + [17009,0.794], + [17011,0.934], + [17013,0.977], + [17015,0.96], + [17017,0.885], + [17019,0.718], + [17021,0.965], + [17023,0.968], + [17025,0.962], + [17027,0.937], + [17029,0.929], + [17031,0.567], + [17033,0.902], + [17035,0.973], + [17037,0.84], + [17039,0.961], + [17041,0.958], + [17043,0.768], + [17045,0.989], + [17047,0.968], + [17049,0.97], + [17051,0.939], + [17053,0.95], + [17055,0.969], + [17057,0.94], + [17059,0.965], + [17061,0.969], + [17063,0.933], + [17065,0.992], + [17067,0.974], + [17069,0.956], + [17071,0.976], + [17073,0.94], + [17075,0.926], + [17077,0.763], + [17079,0.973], + [17081,0.873], + [17083,0.967], + [17085,0.972], + [17087,0.877], + [17089,0.73], + [17091,0.796], + [17093,0.814], + [17095,0.856], + [17097,0.758], + [17099,0.926], + [17101,0.878], + [17103,0.905], + [17105,0.926], + [17107,0.885], + [17109,0.898], + [17111,0.923], + [17113,0.833], + [17115,0.779], + [17117,0.967], + [17119,0.874], + [17121,0.925], + [17123,0.971], + [17125,0.97], + [17127,0.911], + [17129,0.97], + [17131,0.97], + [17133,0.973], + [17135,0.946], + [17137,0.9], + [17139,0.977], + [17141,0.943], + [17143,0.727], + [17145,0.884], + [17147,0.97], + [17149,0.969], + [17151,0.926], + [17153,0.657], + [17155,0.967], + [17157,0.868], + [17159,0.963], + [17161,0.802], + [17163,0.641], + [17165,0.927], + [17167,0.819], + [17169,0.894], + [17171,0.976], + [17173,0.983], + [17175,0.971], + [17177,0.858], + [17179,0.957], + [17181,0.941], + [17183,0.822], + [17185,0.958], + [17187,0.881], + [17189,0.967], + [17191,0.966], + [17193,0.975], + [17195,0.944], + [17197,0.735], + [17199,0.907], + [17201,0.788], + [17203,0.968], + [18001,0.964], + [18003,0.789], + [18005,0.852], + [18007,0.974], + [18009,0.971], + [18011,0.928], + [18013,0.966], + [18015,0.961], + [18017,0.841], + [18019,0.876], + [18021,0.965], + [18023,0.916], + [18025,0.971], + [18027,0.949], + [18029,0.972], + [18031,0.966], + [18033,0.972], + [18035,0.884], + [18037,0.945], + [18039,0.873], + [18041,0.964], + [18043,0.904], + [18045,0.975], + [18047,0.975], + [18049,0.939], + [18051,0.947], + [18053,0.878], + [18055,0.977], + [18057,0.868], + [18059,0.943], + [18061,0.966], + [18063,0.87], + [18065,0.946], + [18067,0.873], + [18069,0.958], + [18071,0.909], + [18073,0.943], + [18075,0.97], + [18077,0.945], + [18079,0.965], + [18081,0.91], + [18083,0.941], + [18085,0.938], + [18087,0.978], + [18089,0.619], + [18091,0.828], + [18093,0.965], + [18095,0.877], + [18097,0.617], + [18099,0.937], + [18101,0.982], + [18103,0.904], + [18105,0.861], + [18107,0.953], + [18109,0.972], + [18111,0.973], + [18113,0.964], + [18115,0.969], + [18117,0.955], + [18119,0.969], + [18121,0.953], + [18123,0.947], + [18125,0.968], + [18127,0.91], + [18129,0.962], + [18131,0.951], + [18133,0.932], + [18135,0.949], + [18137,0.973], + [18139,0.972], + [18141,0.779], + [18143,0.975], + [18145,0.948], + [18147,0.973], + [18149,0.972], + [18151,0.965], + [18153,0.929], + [18155,0.965], + [18157,0.815], + [18159,0.962], + [18161,0.97], + [18163,0.85], + [18165,0.972], + [18167,0.871], + [18169,0.956], + [18171,0.976], + [18173,0.937], + [18175,0.98], + [18177,0.898], + [18179,0.957], + [18181,0.909], + [18183,0.968], + [19001,0.975], + [19003,0.986], + [19005,0.965], + [19007,0.97], + [19009,0.969], + [19011,0.969], + [19013,0.837], + [19015,0.957], + [19017,0.961], + [19019,0.974], + [19021,0.77], + [19023,0.975], + [19025,0.956], + [19027,0.974], + [19029,0.97], + [19031,0.975], + [19033,0.941], + [19035,0.949], + [19037,0.979], + [19039,0.956], + [19041,0.953], + [19043,0.974], + [19045,0.936], + [19047,0.858], + [19049,0.906], + [19051,0.976], + [19053,0.946], + [19055,0.975], + [19057,0.901], + [19059,0.974], + [19061,0.926], + [19063,0.946], + [19065,0.954], + [19067,0.94], + [19069,0.951], + [19071,0.952], + [19073,0.958], + [19075,0.982], + [19077,0.967], + [19079,0.939], + [19081,0.966], + [19083,0.95], + [19085,0.975], + [19087,0.916], + [19089,0.981], + [19091,0.973], + [19093,0.973], + [19095,0.968], + [19097,0.968], + [19099,0.953], + [19101,0.832], + [19103,0.817], + [19105,0.954], + [19107,0.975], + [19109,0.967], + [19111,0.937], + [19113,0.88], + [19115,0.903], + [19117,0.991], + [19119,0.967], + [19121,0.97], + [19123,0.953], + [19125,0.958], + [19127,0.858], + [19129,0.964], + [19131,0.974], + [19133,0.965], + [19135,0.972], + [19137,0.946], + [19139,0.904], + [19141,0.958], + [19143,0.945], + [19145,0.937], + [19147,0.958], + [19149,0.945], + [19151,0.96], + [19153,0.84], + [19155,0.93], + [19157,0.939], + [19159,0.959], + [19161,0.974], + [19163,0.856], + [19165,0.969], + [19167,0.946], + [19169,0.861], + [19171,0.878], + [19173,0.946], + [19175,0.967], + [19177,0.973], + [19179,0.873], + [19181,0.96], + [19183,0.952], + [19185,0.972], + [19187,0.906], + [19189,0.949], + [19191,0.967], + [19193,0.857], + [19195,0.965], + [19197,0.934], + [20001,0.93], + [20003,0.967], + [20005,0.896], + [20007,0.947], + [20009,0.939], + [20011,0.924], + [20013,0.853], + [20015,0.93], + [20017,0.948], + [20019,0.884], + [20021,0.901], + [20023,0.958], + [20025,0.946], + [20027,0.965], + [20029,0.952], + [20031,0.956], + [20033,0.991], + [20035,0.88], + [20037,0.912], + [20039,0.978], + [20041,0.948], + [20043,0.925], + [20045,0.824], + [20047,0.951], + [20049,0.938], + [20051,0.931], + [20053,0.906], + [20055,0.81], + [20057,0.893], + [20059,0.934], + [20061,0.678], + [20063,0.958], + [20065,0.903], + [20067,0.883], + [20069,0.968], + [20071,0.879], + [20073,0.951], + [20075,0.909], + [20077,0.957], + [20079,0.931], + [20081,0.861], + [20083,0.956], + [20085,0.863], + [20087,0.958], + [20089,0.964], + [20091,0.86], + [20093,0.945], + [20095,0.966], + [20097,0.939], + [20099,0.888], + [20101,0.968], + [20103,0.825], + [20105,0.981], + [20107,0.957], + [20109,0.948], + [20111,0.892], + [20113,0.955], + [20115,0.956], + [20117,0.967], + [20119,0.847], + [20121,0.955], + [20123,0.97], + [20125,0.842], + [20127,0.961], + [20129,0.919], + [20131,0.968], + [20133,0.949], + [20135,0.933], + [20137,0.924], + [20139,0.96], + [20141,0.962], + [20143,0.962], + [20145,0.896], + [20147,0.967], + [20149,0.943], + [20151,0.943], + [20153,0.924], + [20155,0.913], + [20157,0.974], + [20159,0.91], + [20161,0.823], + [20163,0.962], + [20165,0.954], + [20167,0.945], + [20169,0.877], + [20171,0.942], + [20173,0.779], + [20175,0.594], + [20177,0.824], + [20179,0.964], + [20181,0.908], + [20183,0.965], + [20185,0.948], + [20187,0.971], + [20189,0.864], + [20191,0.94], + [20193,0.938], + [20195,0.969], + [20197,0.949], + [20199,0.94], + [20201,0.981], + [20203,0.89], + [20205,0.946], + [20207,0.928], + [20209,0.588], + [21001,0.949], + [21003,0.965], + [21005,0.952], + [21007,0.928], + [21009,0.928], + [21011,0.965], + [21013,0.953], + [21015,0.907], + [21017,0.904], + [21019,0.941], + [21021,0.875], + [21023,0.969], + [21025,0.971], + [21027,0.955], + [21029,0.959], + [21031,0.969], + [21033,0.93], + [21035,0.914], + [21037,0.937], + [21039,0.958], + [21041,0.918], + [21043,0.98], + [21045,0.971], + [21047,0.712], + [21049,0.926], + [21051,0.936], + [21053,0.97], + [21055,0.969], + [21057,0.928], + [21059,0.902], + [21061,0.955], + [21063,0.959], + [21065,0.991], + [21067,0.749], + [21069,0.962], + [21071,0.975], + [21073,0.824], + [21075,0.719], + [21077,0.929], + [21079,0.959], + [21081,0.955], + [21083,0.896], + [21085,0.959], + [21087,0.952], + [21089,0.97], + [21091,0.961], + [21093,0.794], + [21095,0.955], + [21097,0.952], + [21099,0.933], + [21101,0.88], + [21103,0.933], + [21105,0.868], + [21107,0.9], + [21109,0.981], + [21111,0.716], + [21113,0.913], + [21115,0.973], + [21117,0.901], + [21119,0.973], + [21121,0.964], + [21123,0.928], + [21125,0.97], + [21127,0.988], + [21129,0.961], + [21131,0.976], + [21133,0.978], + [21135,0.978], + [21137,0.946], + [21139,0.972], + [21141,0.907], + [21143,0.916], + [21145,0.851], + [21147,0.901], + [21149,0.968], + [21151,0.914], + [21153,0.998], + [21155,0.902], + [21157,0.974], + [21159,0.93], + [21161,0.906], + [21163,0.918], + [21165,0.983], + [21167,0.93], + [21169,0.957], + [21171,0.957], + [21173,0.945], + [21175,0.938], + [21177,0.927], + [21179,0.914], + [21181,0.961], + [21183,0.966], + [21185,0.914], + [21187,0.988], + [21189,0.934], + [21191,0.97], + [21193,0.959], + [21195,0.975], + [21197,0.969], + [21199,0.963], + [21201,0.982], + [21203,0.98], + [21205,0.96], + [21207,0.946], + [21209,0.878], + [21211,0.87], + [21213,0.857], + [21215,0.962], + [21217,0.913], + [21219,0.875], + [21221,0.904], + [21223,0.964], + [21225,0.832], + [21227,0.816], + [21229,0.901], + [21231,0.943], + [21233,0.91], + [21235,0.97], + [21237,0.985], + [21239,0.916], + [22001,0.793], + [22003,0.739], + [22005,0.722], + [22007,0.674], + [22009,0.663], + [22011,0.835], + [22013,0.548], + [22015,0.719], + [22017,0.462], + [22019,0.7], + [22021,0.817], + [22023,0.928], + [22025,0.667], + [22027,0.455], + [22029,0.578], + [22031,0.615], + [22033,0.468], + [22035,0.294], + [22037,0.545], + [22039,0.679], + [22041,0.654], + [22043,0.786], + [22045,0.607], + [22047,0.496], + [22049,0.678], + [22051,0.624], + [22053,0.801], + [22055,0.694], + [22057,0.79], + [22059,0.842], + [22061,0.542], + [22063,0.903], + [22065,0.353], + [22067,0.494], + [22069,0.533], + [22071,0.339], + [22073,0.591], + [22075,0.679], + [22077,0.619], + [22079,0.635], + [22081,0.577], + [22083,0.619], + [22085,0.693], + [22087,0.694], + [22089,0.692], + [22091,0.457], + [22093,0.486], + [22095,0.382], + [22097,0.56], + [22099,0.668], + [22101,0.589], + [22103,0.828], + [22105,0.671], + [22107,0.434], + [22109,0.702], + [22111,0.715], + [22113,0.814], + [22115,0.758], + [22117,0.669], + [22119,0.637], + [22121,0.583], + [22123,0.801], + [22125,0.535], + [22127,0.662], + [23001,0.914], + [23003,0.949], + [23005,0.917], + [23007,0.965], + [23009,0.959], + [23011,0.957], + [23013,0.961], + [23015,0.969], + [23017,0.962], + [23019,0.945], + [23021,0.958], + [23023,0.957], + [23025,0.965], + [23027,0.962], + [23029,0.908], + [23031,0.955], + [24001,0.882], + [24003,0.727], + [24005,0.606], + [24009,0.812], + [24011,0.799], + [24013,0.916], + [24015,0.878], + [24017,0.44], + [24019,0.655], + [24021,0.806], + [24023,0.969], + [24025,0.786], + [24027,0.57], + [24029,0.807], + [24031,0.531], + [24033,0.166], + [24035,0.893], + [24037,0.78], + [24039,0.527], + [24041,0.829], + [24043,0.821], + [24045,0.665], + [24047,0.83], + [24510,0.305], + [25001,0.916], + [25003,0.906], + [25005,0.841], + [25007,0.881], + [25009,0.799], + [25011,0.928], + [25013,0.814], + [25015,0.876], + [25017,0.767], + [25019,0.873], + [25021,0.776], + [25023,0.829], + [25025,0.552], + [25027,0.837], + [26001,0.969], + [26003,0.849], + [26005,0.935], + [26007,0.968], + [26009,0.961], + [26011,0.962], + [26013,0.734], + [26015,0.963], + [26017,0.947], + [26019,0.957], + [26021,0.787], + [26023,0.939], + [26025,0.813], + [26027,0.889], + [26029,0.953], + [26031,0.932], + [26033,0.707], + [26035,0.962], + [26037,0.936], + [26039,0.96], + [26041,0.937], + [26043,0.957], + [26045,0.864], + [26047,0.924], + [26049,0.748], + [26051,0.97], + [26053,0.91], + [26055,0.948], + [26057,0.91], + [26059,0.966], + [26061,0.932], + [26063,0.97], + [26065,0.743], + [26067,0.917], + [26069,0.956], + [26071,0.958], + [26073,0.88], + [26075,0.873], + [26077,0.808], + [26079,0.959], + [26081,0.796], + [26083,0.97], + [26085,0.869], + [26087,0.956], + [26089,0.929], + [26091,0.931], + [26093,0.963], + [26095,0.796], + [26097,0.744], + [26099,0.81], + [26101,0.912], + [26103,0.932], + [26105,0.948], + [26107,0.929], + [26109,0.943], + [26111,0.932], + [26113,0.962], + [26115,0.942], + [26117,0.946], + [26119,0.966], + [26121,0.808], + [26123,0.93], + [26125,0.75], + [26127,0.946], + [26129,0.965], + [26131,0.96], + [26133,0.961], + [26135,0.968], + [26137,0.957], + [26139,0.896], + [26141,0.966], + [26143,0.965], + [26145,0.752], + [26147,0.935], + [26149,0.92], + [26151,0.966], + [26153,0.865], + [26155,0.966], + [26157,0.961], + [26159,0.862], + [26161,0.736], + [26163,0.531], + [26165,0.957], + [27001,0.948], + [27003,0.836], + [27005,0.876], + [27007,0.729], + [27009,0.913], + [27011,0.976], + [27013,0.907], + [27015,0.955], + [27017,0.894], + [27019,0.92], + [27021,0.845], + [27023,0.901], + [27025,0.953], + [27027,0.906], + [27029,0.858], + [27031,0.862], + [27033,0.894], + [27035,0.958], + [27037,0.821], + [27039,0.947], + [27041,0.969], + [27043,0.967], + [27045,0.976], + [27047,0.916], + [27049,0.94], + [27051,0.968], + [27053,0.721], + [27055,0.969], + [27057,0.934], + [27059,0.951], + [27061,0.928], + [27063,0.945], + [27065,0.959], + [27067,0.883], + [27069,0.963], + [27071,0.936], + [27073,0.96], + [27075,0.969], + [27077,0.93], + [27079,0.955], + [27081,0.975], + [27083,0.862], + [27085,0.95], + [27087,0.468], + [27089,0.968], + [27091,0.963], + [27093,0.97], + [27095,0.902], + [27097,0.963], + [27099,0.868], + [27101,0.965], + [27103,0.92], + [27105,0.778], + [27107,0.933], + [27109,0.837], + [27111,0.949], + [27113,0.94], + [27115,0.914], + [27117,0.92], + [27119,0.917], + [27121,0.965], + [27123,0.663], + [27125,0.952], + [27127,0.88], + [27129,0.894], + [27131,0.856], + [27133,0.964], + [27135,0.925], + [27137,0.921], + [27139,0.84], + [27141,0.924], + [27143,0.953], + [27145,0.878], + [27147,0.905], + [27149,0.904], + [27151,0.945], + [27153,0.943], + [27155,0.907], + [27157,0.965], + [27159,0.951], + [27161,0.929], + [27163,0.854], + [27165,0.858], + [27167,0.983], + [27169,0.936], + [27171,0.941], + [27173,0.926], + [28001,0.409], + [28003,0.844], + [28005,0.574], + [28007,0.538], + [28009,0.614], + [28011,0.33], + [28013,0.652], + [28015,0.645], + [28017,0.503], + [28019,0.678], + [28021,0.113], + [28023,0.636], + [28025,0.388], + [28027,0.209], + [28029,0.451], + [28031,0.626], + [28033,0.667], + [28035,0.594], + [28037,0.634], + [28039,0.889], + [28041,0.734], + [28043,0.549], + [28045,0.875], + [28047,0.679], + [28049,0.253], + [28051,0.155], + [28053,0.208], + [28055,0.378], + [28057,0.911], + [28059,0.708], + [28061,0.447], + [28063,0.133], + [28065,0.379], + [28067,0.686], + [28069,0.345], + [28071,0.714], + [28073,0.764], + [28075,0.542], + [28077,0.65], + [28079,0.512], + [28081,0.669], + [28083,0.24], + [28085,0.675], + [28087,0.534], + [28089,0.572], + [28091,0.653], + [28093,0.495], + [28095,0.681], + [28097,0.529], + [28099,0.6], + [28101,0.614], + [28103,0.273], + [28105,0.574], + [28107,0.487], + [28109,0.838], + [28111,0.79], + [28113,0.438], + [28115,0.777], + [28117,0.836], + [28119,0.27], + [28121,0.756], + [28123,0.572], + [28125,0.251], + [28127,0.618], + [28129,0.758], + [28131,0.782], + [28133,0.252], + [28135,0.354], + [28137,0.665], + [28139,0.774], + [28141,0.961], + [28143,0.191], + [28145,0.791], + [28147,0.529], + [28149,0.483], + [28151,0.256], + [28153,0.574], + [28155,0.788], + [28157,0.279], + [28159,0.505], + [28161,0.59], + [28163,0.369], + [29001,0.916], + [29003,0.953], + [29005,0.976], + [29007,0.889], + [29009,0.921], + [29011,0.929], + [29013,0.954], + [29015,0.961], + [29017,0.971], + [29019,0.812], + [29021,0.873], + [29023,0.904], + [29025,0.957], + [29027,0.92], + [29029,0.963], + [29031,0.878], + [29033,0.956], + [29035,0.97], + [29037,0.912], + [29039,0.962], + [29041,0.954], + [29043,0.953], + [29045,0.973], + [29047,0.851], + [29049,0.957], + [29051,0.84], + [29053,0.888], + [29055,0.967], + [29057,0.955], + [29059,0.962], + [29061,0.971], + [29063,0.859], + [29065,0.952], + [29067,0.983], + [29069,0.846], + [29071,0.96], + [29073,0.972], + [29075,0.974], + [29077,0.899], + [29079,0.96], + [29081,0.963], + [29083,0.954], + [29085,0.962], + [29087,0.968], + [29089,0.916], + [29091,0.962], + [29093,0.956], + [29095,0.67], + [29097,0.904], + [29099,0.961], + [29101,0.89], + [29103,0.964], + [29105,0.95], + [29107,0.938], + [29109,0.948], + [29111,0.93], + [29113,0.949], + [29115,0.969], + [29117,0.935], + [29119,0.871], + [29121,0.944], + [29123,0.969], + [29125,0.967], + [29127,0.916], + [29129,0.974], + [29131,0.967], + [29133,0.73], + [29135,0.96], + [29137,0.945], + [29139,0.948], + [29141,0.959], + [29143,0.815], + [29145,0.903], + [29147,0.937], + [29149,0.954], + [29151,0.991], + [29153,0.96], + [29155,0.695], + [29157,0.971], + [29159,0.914], + [29161,0.905], + [29163,0.89], + [29165,0.853], + [29167,0.956], + [29169,0.757], + [29171,0.964], + [29173,0.963], + [29175,0.9], + [29177,0.958], + [29179,0.944], + [29181,0.965], + [29183,0.896], + [29185,0.956], + [29186,0.967], + [29187,0.929], + [29189,0.679], + [29195,0.864], + [29197,0.97], + [29199,0.993], + [29201,0.852], + [29203,0.957], + [29205,0.959], + [29207,0.969], + [29209,0.963], + [29211,0.906], + [29213,0.917], + [29215,0.928], + [29217,0.956], + [29219,0.927], + [29221,0.953], + [29223,0.966], + [29225,0.955], + [29227,0.978], + [29229,0.966], + [29510,0.465], + [30001,0.948], + [30003,0.299], + [30005,0.45], + [30007,0.965], + [30009,0.966], + [30011,0.969], + [30013,0.877], + [30015,0.777], + [30017,0.937], + [30019,0.957], + [30021,0.945], + [30023,0.929], + [30025,0.953], + [30027,0.945], + [30029,0.941], + [30031,0.938], + [30033,0.993], + [30035,0.319], + [30037,0.945], + [30039,0.963], + [30041,0.702], + [30043,0.942], + [30045,0.95], + [30047,0.67], + [30049,0.938], + [30051,0.995], + [30053,0.947], + [30055,0.923], + [30057,0.95], + [30059,0.926], + [30061,0.927], + [30063,0.916], + [30065,0.941], + [30067,0.956], + [30069,0.945], + [30071,0.844], + [30073,0.814], + [30075,0.943], + [30077,0.903], + [30079,0.978], + [30081,0.958], + [30083,0.933], + [30085,0.361], + [30087,0.57], + [30089,0.925], + [30091,0.945], + [30093,0.944], + [30095,0.959], + [30097,0.963], + [30099,0.944], + [30101,0.895], + [30103,0.946], + [30105,0.861], + [30107,0.945], + [30109,0.981], + [30111,0.902], + [31001,0.93], + [31003,0.973], + [31005,0.963], + [31007,0.96], + [31009,1], + [31011,0.984], + [31013,0.925], + [31015,0.958], + [31017,0.973], + [31019,0.918], + [31021,0.949], + [31023,0.964], + [31025,0.959], + [31027,0.974], + [31029,0.993], + [31031,0.894], + [31033,0.949], + [31035,0.966], + [31037,0.888], + [31039,0.942], + [31041,0.967], + [31043,0.688], + [31045,0.9], + [31047,0.875], + [31049,0.954], + [31051,0.932], + [31053,0.947], + [31055,0.792], + [31057,0.994], + [31059,0.969], + [31061,0.977], + [31063,0.973], + [31065,0.967], + [31067,0.965], + [31069,0.985], + [31071,0.979], + [31073,0.976], + [31075,0.97], + [31077,0.975], + [31079,0.84], + [31081,0.961], + [31083,0.963], + [31085,0.983], + [31087,0.995], + [31089,0.976], + [31091,0.977], + [31093,0.966], + [31095,0.969], + [31097,0.864], + [31099,0.967], + [31101,0.96], + [31103,0.986], + [31105,0.942], + [31107,0.868], + [31109,0.861], + [31111,0.948], + [31113,0.987], + [31115,0.997], + [31117,0.985], + [31119,0.916], + [31121,0.95], + [31123,0.953], + [31125,0.989], + [31127,0.959], + [31129,0.972], + [31131,0.941], + [31133,0.966], + [31135,0.986], + [31137,0.964], + [31139,0.971], + [31141,0.948], + [31143,0.973], + [31145,0.957], + [31147,0.937], + [31149,0.97], + [31151,0.888], + [31153,0.874], + [31155,0.973], + [31157,0.916], + [31159,0.964], + [31161,0.826], + [31163,0.978], + [31165,0.927], + [31167,0.967], + [31169,0.967], + [31171,0.95], + [31173,0.383], + [31175,0.979], + [31177,0.966], + [31179,0.953], + [31181,0.954], + [31183,0.991], + [31185,0.947], + [32001,0.816], + [32003,0.602], + [32005,0.891], + [32007,0.856], + [32009,0.957], + [32011,0.938], + [32013,0.864], + [32015,0.933], + [32017,0.886], + [32019,0.851], + [32021,0.682], + [32023,0.831], + [32027,0.802], + [32029,0.876], + [32031,0.776], + [32033,0.851], + [32510,0.82], + [33001,0.963], + [33003,0.972], + [33005,0.951], + [33007,0.94], + [33009,0.922], + [33011,0.894], + [33013,0.941], + [33015,0.947], + [33017,0.926], + [33019,0.963], + [34001,0.658], + [34003,0.716], + [34005,0.72], + [34007,0.636], + [34009,0.914], + [34011,0.681], + [34013,0.429], + [34015,0.814], + [34017,0.548], + [34019,0.905], + [34021,0.629], + [34023,0.579], + [34025,0.824], + [34027,0.815], + [34029,0.909], + [34031,0.64], + [34033,0.8], + [34035,0.663], + [34037,0.928], + [34039,0.549], + [34041,0.885], + [35001,0.743], + [35003,0.979], + [35005,0.876], + [35006,0.481], + [35007,0.854], + [35009,0.664], + [35011,0.669], + [35013,0.871], + [35015,0.901], + [35017,0.926], + [35019,0.78], + [35021,0.823], + [35023,0.938], + [35025,0.884], + [35027,0.968], + [35028,0.855], + [35029,0.923], + [35031,0.144], + [35033,0.659], + [35035,0.791], + [35037,0.886], + [35039,0.531], + [35041,0.755], + [35043,0.721], + [35045,0.523], + [35047,0.609], + [35049,0.838], + [35051,0.898], + [35053,0.797], + [35055,0.844], + [35057,0.91], + [35059,0.867], + [35061,0.83], + [36001,0.753], + [36003,0.955], + [36005,0.22], + [36007,0.855], + [36009,0.919], + [36011,0.918], + [36013,0.922], + [36015,0.881], + [36017,0.961], + [36019,0.909], + [36021,0.89], + [36023,0.946], + [36025,0.947], + [36027,0.782], + [36029,0.778], + [36031,0.929], + [36033,0.827], + [36035,0.944], + [36037,0.919], + [36039,0.896], + [36041,0.973], + [36043,0.957], + [36045,0.864], + [36047,0.437], + [36049,0.968], + [36051,0.926], + [36053,0.946], + [36055,0.76], + [36057,0.872], + [36059,0.68], + [36061,0.565], + [36063,0.872], + [36065,0.853], + [36067,0.796], + [36069,0.926], + [36071,0.741], + [36073,0.889], + [36075,0.956], + [36077,0.934], + [36079,0.869], + [36081,0.383], + [36083,0.861], + [36085,0.741], + [36087,0.707], + [36089,0.928], + [36091,0.927], + [36093,0.763], + [36095,0.954], + [36097,0.965], + [36099,0.912], + [36101,0.947], + [36103,0.807], + [36105,0.798], + [36107,0.963], + [36109,0.802], + [36111,0.845], + [36113,0.956], + [36115,0.936], + [36117,0.929], + [36119,0.643], + [36121,0.915], + [36123,0.964], + [37001,0.698], + [37003,0.877], + [37005,0.954], + [37007,0.478], + [37009,0.954], + [37011,0.92], + [37013,0.72], + [37015,0.352], + [37017,0.577], + [37019,0.842], + [37021,0.888], + [37023,0.843], + [37025,0.705], + [37027,0.889], + [37029,0.826], + [37031,0.899], + [37033,0.631], + [37035,0.791], + [37037,0.809], + [37039,0.933], + [37041,0.611], + [37043,0.967], + [37045,0.746], + [37047,0.62], + [37049,0.704], + [37051,0.5], + [37053,0.904], + [37055,0.927], + [37057,0.858], + [37059,0.893], + [37061,0.712], + [37063,0.519], + [37065,0.394], + [37067,0.661], + [37069,0.673], + [37071,0.771], + [37073,0.633], + [37075,0.874], + [37077,0.61], + [37079,0.595], + [37081,0.552], + [37083,0.405], + [37085,0.671], + [37087,0.955], + [37089,0.912], + [37091,0.351], + [37093,0.444], + [37095,0.665], + [37097,0.812], + [37099,0.831], + [37101,0.772], + [37103,0.657], + [37105,0.737], + [37107,0.55], + [37109,0.894], + [37111,0.916], + [37113,0.935], + [37115,0.954], + [37117,0.545], + [37119,0.538], + [37121,0.965], + [37123,0.756], + [37125,0.822], + [37127,0.521], + [37129,0.811], + [37131,0.396], + [37133,0.747], + [37135,0.754], + [37137,0.761], + [37139,0.584], + [37141,0.777], + [37143,0.737], + [37145,0.676], + [37147,0.572], + [37149,0.903], + [37151,0.838], + [37153,0.617], + [37155,0.28], + [37157,0.754], + [37159,0.767], + [37161,0.868], + [37163,0.628], + [37165,0.437], + [37167,0.836], + [37169,0.93], + [37171,0.908], + [37173,0.641], + [37175,0.916], + [37177,0.554], + [37179,0.813], + [37181,0.426], + [37183,0.654], + [37185,0.397], + [37187,0.457], + [37189,0.938], + [37191,0.637], + [37193,0.911], + [37195,0.507], + [37197,0.921], + [37199,0.962], + [38001,0.94], + [38003,0.938], + [38005,0.406], + [38007,0.971], + [38009,0.93], + [38011,0.961], + [38013,0.962], + [38015,0.906], + [38017,0.87], + [38019,0.949], + [38021,0.966], + [38023,0.929], + [38025,0.849], + [38027,0.911], + [38029,0.961], + [38031,0.959], + [38033,0.927], + [38035,0.861], + [38037,0.965], + [38039,0.953], + [38041,0.92], + [38043,0.961], + [38045,0.965], + [38047,0.979], + [38049,0.97], + [38051,0.96], + [38053,0.833], + [38055,0.899], + [38057,0.93], + [38059,0.912], + [38061,0.644], + [38063,0.965], + [38065,0.907], + [38067,0.943], + [38069,0.938], + [38071,0.843], + [38073,0.954], + [38075,0.968], + [38077,0.93], + [38079,0.182], + [38081,0.942], + [38083,0.989], + [38085,0.133], + [38087,0.964], + [38089,0.912], + [38091,0.979], + [38093,0.929], + [38095,0.923], + [38097,0.933], + [38099,0.942], + [38101,0.866], + [38103,0.979], + [38105,0.817], + [39001,0.988], + [39003,0.825], + [39005,0.967], + [39007,0.928], + [39009,0.911], + [39011,0.965], + [39013,0.932], + [39015,0.97], + [39017,0.844], + [39019,0.992], + [39021,0.945], + [39023,0.868], + [39025,0.951], + [39027,0.943], + [39029,0.947], + [39031,0.969], + [39033,0.966], + [39035,0.624], + [39037,0.973], + [39039,0.907], + [39041,0.87], + [39043,0.855], + [39045,0.871], + [39047,0.936], + [39049,0.663], + [39051,0.93], + [39053,0.938], + [39055,0.967], + [39057,0.858], + [39059,0.95], + [39061,0.674], + [39063,0.921], + [39065,0.96], + [39067,0.952], + [39069,0.935], + [39071,0.957], + [39073,0.97], + [39075,0.984], + [39077,0.956], + [39079,0.968], + [39081,0.913], + [39083,0.964], + [39085,0.91], + [39087,0.955], + [39089,0.914], + [39091,0.946], + [39093,0.85], + [39095,0.721], + [39097,0.902], + [39099,0.797], + [39101,0.896], + [39103,0.953], + [39105,0.971], + [39107,0.97], + [39109,0.937], + [39111,0.982], + [39113,0.727], + [39115,0.925], + [39117,0.964], + [39119,0.918], + [39121,0.926], + [39123,0.954], + [39125,0.954], + [39127,0.972], + [39129,0.932], + [39131,0.955], + [39133,0.906], + [39135,0.969], + [39137,0.943], + [39139,0.867], + [39141,0.904], + [39143,0.912], + [39145,0.941], + [39147,0.937], + [39149,0.941], + [39151,0.877], + [39153,0.786], + [39155,0.885], + [39157,0.966], + [39159,0.91], + [39161,0.963], + [39163,0.972], + [39165,0.884], + [39167,0.958], + [39169,0.945], + [39171,0.949], + [39173,0.919], + [39175,0.971], + [40001,0.421], + [40003,0.853], + [40005,0.727], + [40007,0.806], + [40009,0.845], + [40011,0.796], + [40013,0.739], + [40015,0.637], + [40017,0.81], + [40019,0.746], + [40021,0.509], + [40023,0.628], + [40025,0.982], + [40027,0.777], + [40029,0.7], + [40031,0.626], + [40033,0.801], + [40035,0.655], + [40037,0.791], + [40039,0.802], + [40041,0.653], + [40043,0.891], + [40045,0.92], + [40047,0.82], + [40049,0.832], + [40051,0.858], + [40053,0.905], + [40055,0.787], + [40057,0.648], + [40059,0.924], + [40061,0.723], + [40063,0.67], + [40065,0.718], + [40067,0.848], + [40069,0.718], + [40071,0.779], + [40073,0.852], + [40075,0.797], + [40077,0.664], + [40079,0.755], + [40081,0.849], + [40083,0.83], + [40085,0.835], + [40087,0.846], + [40089,0.637], + [40091,0.698], + [40093,0.892], + [40095,0.702], + [40097,0.665], + [40099,0.759], + [40101,0.578], + [40103,0.829], + [40105,0.679], + [40107,0.635], + [40109,0.685], + [40111,0.647], + [40113,0.648], + [40115,0.676], + [40117,0.785], + [40119,0.806], + [40121,0.729], + [40123,0.687], + [40125,0.759], + [40127,0.734], + [40129,0.881], + [40131,0.746], + [40133,0.68], + [40135,0.642], + [40137,0.824], + [40139,0.634], + [40141,0.654], + [40143,0.7], + [40145,0.753], + [40147,0.769], + [40149,0.894], + [40151,0.885], + [40153,0.895], + [41001,0.927], + [41003,0.847], + [41005,0.875], + [41007,0.919], + [41009,0.927], + [41011,0.884], + [41013,0.93], + [41015,0.909], + [41017,0.932], + [41019,0.924], + [41021,0.919], + [41023,0.947], + [41025,0.916], + [41027,0.891], + [41029,0.913], + [41031,0.708], + [41033,0.924], + [41035,0.87], + [41037,0.918], + [41039,0.865], + [41041,0.882], + [41043,0.896], + [41045,0.897], + [41047,0.813], + [41049,0.896], + [41051,0.779], + [41053,0.881], + [41055,0.916], + [41057,0.931], + [41059,0.858], + [41061,0.917], + [41063,0.949], + [41065,0.881], + [41067,0.759], + [41069,0.932], + [41071,0.875], + [42001,0.927], + [42003,0.799], + [42005,0.977], + [42007,0.904], + [42009,0.976], + [42011,0.824], + [42013,0.955], + [42015,0.967], + [42017,0.876], + [42019,0.958], + [42021,0.935], + [42023,0.965], + [42025,0.957], + [42027,0.876], + [42029,0.848], + [42031,0.964], + [42033,0.947], + [42035,0.962], + [42037,0.951], + [42039,0.955], + [42041,0.877], + [42043,0.701], + [42045,0.687], + [42047,0.978], + [42049,0.865], + [42051,0.925], + [42053,0.697], + [42055,0.924], + [42057,0.966], + [42059,0.94], + [42061,0.915], + [42063,0.947], + [42065,0.978], + [42067,0.97], + [42069,0.911], + [42071,0.885], + [42073,0.931], + [42075,0.866], + [42077,0.793], + [42079,0.876], + [42081,0.921], + [42083,0.945], + [42085,0.913], + [42087,0.969], + [42089,0.763], + [42091,0.791], + [42093,0.939], + [42095,0.856], + [42097,0.946], + [42099,0.969], + [42101,0.407], + [42103,0.885], + [42105,0.973], + [42107,0.937], + [42109,0.964], + [42111,0.952], + [42113,0.956], + [42115,0.975], + [42117,0.969], + [42119,0.869], + [42121,0.966], + [42123,0.977], + [42125,0.936], + [42127,0.937], + [42129,0.947], + [42131,0.971], + [42133,0.884], + [44001,0.942], + [44003,0.913], + [44005,0.899], + [44007,0.729], + [44009,0.929], + [45001,0.699], + [45003,0.707], + [45005,0.234], + [45007,0.798], + [45009,0.364], + [45011,0.509], + [45013,0.747], + [45015,0.666], + [45017,0.557], + [45019,0.683], + [45021,0.755], + [45023,0.604], + [45025,0.63], + [45027,0.493], + [45029,0.573], + [45031,0.566], + [45033,0.467], + [45035,0.675], + [45037,0.6], + [45039,0.391], + [45041,0.536], + [45043,0.648], + [45045,0.735], + [45047,0.643], + [45049,0.421], + [45051,0.811], + [45053,0.524], + [45055,0.712], + [45057,0.743], + [45059,0.701], + [45061,0.329], + [45063,0.791], + [45065,0.515], + [45067,0.397], + [45069,0.415], + [45071,0.632], + [45073,0.878], + [45075,0.348], + [45077,0.883], + [45079,0.449], + [45081,0.659], + [45083,0.732], + [45085,0.472], + [45087,0.655], + [45089,0.318], + [45091,0.742], + [46003,0.922], + [46005,0.807], + [46007,0.336], + [46009,0.885], + [46011,0.924], + [46013,0.893], + [46015,0.864], + [46017,0.139], + [46019,0.937], + [46021,0.983], + [46023,0.632], + [46025,0.951], + [46027,0.885], + [46029,0.943], + [46031,0.29], + [46033,0.933], + [46035,0.926], + [46037,0.869], + [46039,0.992], + [46041,0.199], + [46043,0.95], + [46045,0.977], + [46047,0.87], + [46049,0.964], + [46051,0.936], + [46053,0.881], + [46055,0.898], + [46057,0.967], + [46059,0.981], + [46061,0.995], + [46063,0.933], + [46065,0.841], + [46067,0.965], + [46069,0.884], + [46071,0.39], + [46073,0.96], + [46075,0.929], + [46077,0.979], + [46079,0.938], + [46081,0.931], + [46083,0.945], + [46085,0.563], + [46087,0.96], + [46089,0.963], + [46091,0.871], + [46093,0.907], + [46095,0.387], + [46097,0.963], + [46099,0.858], + [46101,0.796], + [46102,0.051], + [46103,0.829], + [46105,0.95], + [46107,0.915], + [46109,0.577], + [46111,0.963], + [46115,0.966], + [46117,0.91], + [46119,0.96], + [46121,0.083], + [46123,0.811], + [46125,0.975], + [46127,0.937], + [46129,0.801], + [46135,0.924], + [46137,0.235], + [47001,0.909], + [47003,0.852], + [47005,0.949], + [47007,0.899], + [47009,0.939], + [47011,0.898], + [47013,0.973], + [47015,0.959], + [47017,0.868], + [47019,0.963], + [47021,0.946], + [47023,0.861], + [47025,0.964], + [47027,0.948], + [47029,0.948], + [47031,0.904], + [47033,0.795], + [47035,0.965], + [47037,0.64], + [47039,0.922], + [47041,0.936], + [47043,0.926], + [47045,0.818], + [47047,0.695], + [47049,0.973], + [47051,0.904], + [47053,0.782], + [47055,0.861], + [47057,0.973], + [47059,0.946], + [47061,0.881], + [47063,0.884], + [47065,0.753], + [47067,0.983], + [47069,0.551], + [47071,0.943], + [47073,0.96], + [47075,0.468], + [47077,0.897], + [47079,0.891], + [47081,0.923], + [47083,0.924], + [47085,0.937], + [47087,0.957], + [47089,0.954], + [47091,0.94], + [47093,0.855], + [47095,0.675], + [47097,0.629], + [47099,0.952], + [47101,0.951], + [47103,0.897], + [47105,0.939], + [47107,0.925], + [47109,0.915], + [47111,0.956], + [47113,0.579], + [47115,0.93], + [47117,0.896], + [47119,0.839], + [47121,0.961], + [47123,0.942], + [47125,0.705], + [47127,0.928], + [47129,0.929], + [47131,0.852], + [47133,0.975], + [47135,0.926], + [47137,0.995], + [47139,0.961], + [47141,0.933], + [47143,0.944], + [47145,0.937], + [47147,0.875], + [47149,0.768], + [47151,0.978], + [47153,0.971], + [47155,0.947], + [47157,0.391], + [47159,0.934], + [47161,0.936], + [47163,0.944], + [47165,0.872], + [47167,0.777], + [47169,0.849], + [47171,0.964], + [47173,0.976], + [47175,0.963], + [47177,0.914], + [47179,0.911], + [47181,0.914], + [47183,0.885], + [47185,0.959], + [47187,0.888], + [47189,0.878], + [48001,0.73], + [48003,0.893], + [48005,0.798], + [48007,0.904], + [48009,0.954], + [48011,0.929], + [48013,0.924], + [48015,0.778], + [48017,0.838], + [48019,0.9], + [48021,0.68], + [48023,0.92], + [48025,0.864], + [48027,0.634], + [48029,0.794], + [48031,0.894], + [48033,0.976], + [48035,0.947], + [48037,0.692], + [48039,0.724], + [48041,0.768], + [48043,0.905], + [48045,0.862], + [48047,0.903], + [48049,0.913], + [48051,0.799], + [48053,0.914], + [48055,0.808], + [48057,0.86], + [48059,0.942], + [48061,0.943], + [48063,0.725], + [48065,0.941], + [48067,0.779], + [48069,0.909], + [48071,0.88], + [48073,0.813], + [48075,0.853], + [48077,0.95], + [48079,0.888], + [48081,0.899], + [48083,0.876], + [48085,0.692], + [48087,0.769], + [48089,0.731], + [48091,0.909], + [48093,0.938], + [48095,0.967], + [48097,0.917], + [48099,0.728], + [48101,0.7], + [48103,0.53], + [48105,0.429], + [48107,0.882], + [48109,0.783], + [48111,0.897], + [48113,0.613], + [48115,0.752], + [48117,0.897], + [48119,0.875], + [48121,0.743], + [48123,0.647], + [48125,0.918], + [48127,0.897], + [48129,0.898], + [48131,0.95], + [48133,0.92], + [48135,0.805], + [48137,0.997], + [48139,0.815], + [48141,0.797], + [48143,0.889], + [48145,0.72], + [48147,0.877], + [48149,0.902], + [48151,0.884], + [48153,0.926], + [48155,0.822], + [48157,0.517], + [48159,0.86], + [48161,0.804], + [48163,0.822], + [48165,0.946], + [48167,0.788], + [48169,0.843], + [48171,0.91], + [48173,0.664], + [48175,0.809], + [48177,0.665], + [48179,0.852], + [48181,0.865], + [48183,0.746], + [48185,0.777], + [48187,0.735], + [48189,0.858], + [48191,0.78], + [48193,0.953], + [48195,0.916], + [48197,0.879], + [48199,0.913], + [48201,0.625], + [48203,0.747], + [48205,0.848], + [48207,0.893], + [48209,0.885], + [48211,0.909], + [48213,0.895], + [48215,0.863], + [48217,0.86], + [48219,0.884], + [48221,0.952], + [48223,0.845], + [48225,0.697], + [48227,0.834], + [48229,0.674], + [48231,0.799], + [48233,0.892], + [48235,0.761], + [48237,0.929], + [48239,0.871], + [48241,0.773], + [48243,0.967], + [48245,0.583], + [48247,0.987], + [48249,0.952], + [48251,0.907], + [48253,0.702], + [48255,0.761], + [48257,0.814], + [48259,0.899], + [48261,0.998], + [48263,0.915], + [48265,0.884], + [48267,0.921], + [48269,0.987], + [48271,0.962], + [48273,0.885], + [48275,0.848], + [48277,0.813], + [48279,0.901], + [48281,0.873], + [48283,0.87], + [48285,0.787], + [48287,0.818], + [48289,0.89], + [48291,0.805], + [48293,0.769], + [48295,0.818], + [48297,0.933], + [48299,0.924], + [48301,0.969], + [48303,0.821], + [48305,0.892], + [48307,0.828], + [48309,0.784], + [48311,0.988], + [48313,0.73], + [48315,0.728], + [48317,0.793], + [48319,0.885], + [48321,0.684], + [48323,0.93], + [48325,0.908], + [48327,0.807], + [48329,0.822], + [48331,0.853], + [48333,0.983], + [48335,0.801], + [48337,0.955], + [48339,0.864], + [48341,0.767], + [48343,0.693], + [48345,0.875], + [48347,0.764], + [48349,0.743], + [48351,0.756], + [48353,0.878], + [48355,0.901], + [48357,0.877], + [48359,0.921], + [48361,0.874], + [48363,0.916], + [48365,0.81], + [48367,0.932], + [48369,0.865], + [48371,0.826], + [48373,0.84], + [48375,0.782], + [48377,0.941], + [48379,0.893], + [48381,0.887], + [48383,0.456], + [48385,0.952], + [48387,0.792], + [48389,0.775], + [48391,0.807], + [48393,0.971], + [48395,0.764], + [48397,0.85], + [48399,0.925], + [48401,0.781], + [48403,0.893], + [48405,0.738], + [48407,0.856], + [48409,0.923], + [48411,0.851], + [48413,0.621], + [48415,0.861], + [48417,0.958], + [48419,0.778], + [48421,0.883], + [48423,0.768], + [48425,0.888], + [48427,0.953], + [48429,0.901], + [48431,0.911], + [48433,0.923], + [48435,0.626], + [48437,0.837], + [48439,0.67], + [48441,0.767], + [48443,0.661], + [48445,0.911], + [48447,0.978], + [48449,0.704], + [48451,0.868], + [48453,0.725], + [48455,0.859], + [48457,0.846], + [48459,0.866], + [48461,0.45], + [48463,0.933], + [48465,0.927], + [48467,0.932], + [48469,0.874], + [48471,0.73], + [48473,0.581], + [48475,0.862], + [48477,0.784], + [48479,0.959], + [48481,0.806], + [48483,0.876], + [48485,0.79], + [48487,0.781], + [48489,0.972], + [48491,0.797], + [48493,0.926], + [48495,0.878], + [48497,0.935], + [48499,0.893], + [48501,0.963], + [48503,0.957], + [48505,0.937], + [48507,0.953], + [49001,0.936], + [49003,0.931], + [49005,0.908], + [49007,0.953], + [49009,0.977], + [49011,0.902], + [49013,0.897], + [49015,0.973], + [49017,0.93], + [49019,0.927], + [49021,0.918], + [49023,0.938], + [49025,0.932], + [49027,0.899], + [49029,0.965], + [49031,0.977], + [49033,0.94], + [49035,0.791], + [49037,0.485], + [49039,0.885], + [49041,0.947], + [49043,0.93], + [49045,0.898], + [49047,0.878], + [49049,0.916], + [49051,0.944], + [49053,0.905], + [49055,0.958], + [49057,0.892], + [50001,0.939], + [50003,0.957], + [50005,0.958], + [50007,0.902], + [50009,0.965], + [50011,0.947], + [50013,0.944], + [50015,0.954], + [50017,0.966], + [50019,0.964], + [50021,0.966], + [50023,0.959], + [50025,0.947], + [50027,0.956], + [51001,0.682], + [51003,0.818], + [51005,0.924], + [51007,0.758], + [51009,0.767], + [51011,0.781], + [51013,0.715], + [51015,0.926], + [51017,0.913], + [51019,0.894], + [51021,0.95], + [51023,0.942], + [51025,0.42], + [51027,0.949], + [51029,0.616], + [51031,0.815], + [51033,0.652], + [51035,0.974], + [51036,0.437], + [51037,0.699], + [51041,0.672], + [51043,0.898], + [51045,0.986], + [51047,0.757], + [51049,0.635], + [51051,0.981], + [51053,0.646], + [51057,0.556], + [51059,0.612], + [51061,0.866], + [51063,0.953], + [51065,0.803], + [51067,0.891], + [51069,0.907], + [51071,0.966], + [51073,0.879], + [51075,0.803], + [51077,0.925], + [51079,0.867], + [51081,0.377], + [51083,0.612], + [51085,0.858], + [51087,0.563], + [51089,0.726], + [51091,0.993], + [51093,0.721], + [51095,0.804], + [51097,0.675], + [51099,0.782], + [51101,0.79], + [51103,0.681], + [51105,0.936], + [51107,0.65], + [51109,0.797], + [51111,0.632], + [51113,0.855], + [51115,0.878], + [51117,0.625], + [51119,0.783], + [51121,0.856], + [51125,0.845], + [51127,0.814], + [51131,0.62], + [51133,0.706], + [51135,0.571], + [51137,0.815], + [51139,0.953], + [51141,0.921], + [51143,0.754], + [51145,0.872], + [51147,0.643], + [51149,0.589], + [51153,0.566], + [51155,0.921], + [51157,0.903], + [51159,0.644], + [51161,0.88], + [51163,0.933], + [51165,0.93], + [51167,0.977], + [51169,0.979], + [51171,0.934], + [51173,0.956], + [51175,0.624], + [51177,0.721], + [51179,0.673], + [51181,0.53], + [51183,0.399], + [51185,0.944], + [51187,0.89], + [51191,0.961], + [51193,0.679], + [51195,0.921], + [51197,0.949], + [51199,0.744], + [51510,0.622], + [51520,0.905], + [51530,0.892], + [51540,0.706], + [51550,0.611], + [51570,0.755], + [51580,0.821], + [51590,0.455], + [51595,0.28], + [51600,0.678], + [51610,0.794], + [51620,0.369], + [51630,0.623], + [51640,0.896], + [51650,0.411], + [51660,0.804], + [51670,0.509], + [51678,0.837], + [51680,0.65], + [51683,0.661], + [51685,0.623], + [51690,0.48], + [51700,0.479], + [51710,0.47], + [51720,0.898], + [51730,0.175], + [51735,0.939], + [51740,0.398], + [51750,0.848], + [51760,0.455], + [51770,0.624], + [51775,0.874], + [51790,0.834], + [51800,0.515], + [51810,0.663], + [51820,0.814], + [51830,0.734], + [51840,0.82], + [53001,0.651], + [53003,0.925], + [53005,0.821], + [53007,0.804], + [53009,0.877], + [53011,0.846], + [53013,0.894], + [53015,0.89], + [53017,0.693], + [53019,0.764], + [53021,0.705], + [53023,0.913], + [53025,0.689], + [53027,0.877], + [53029,0.846], + [53031,0.909], + [53033,0.64], + [53035,0.809], + [53037,0.885], + [53039,0.929], + [53041,0.899], + [53043,0.934], + [53045,0.835], + [53047,0.725], + [53049,0.872], + [53051,0.899], + [53053,0.729], + [53055,0.923], + [53057,0.821], + [53059,0.928], + [53061,0.754], + [53063,0.878], + [53065,0.891], + [53067,0.815], + [53069,0.908], + [53071,0.837], + [53073,0.833], + [53075,0.824], + [53077,0.773], + [54001,0.958], + [54003,0.868], + [54005,0.98], + [54007,0.969], + [54009,0.963], + [54011,0.906], + [54013,0.99], + [54015,0.994], + [54017,0.955], + [54019,0.935], + [54021,0.832], + [54023,0.97], + [54025,0.939], + [54027,0.971], + [54029,0.95], + [54031,0.914], + [54033,0.953], + [54035,0.976], + [54037,0.872], + [54039,0.885], + [54041,0.974], + [54043,0.983], + [54045,0.967], + [54047,0.891], + [54049,0.936], + [54051,0.975], + [54053,0.973], + [54055,0.912], + [54057,0.948], + [54059,0.958], + [54061,0.895], + [54063,0.972], + [54065,0.955], + [54067,0.971], + [54069,0.929], + [54071,0.955], + [54073,0.962], + [54075,0.986], + [54077,0.922], + [54079,0.964], + [54081,0.881], + [54083,0.964], + [54085,0.974], + [54087,0.979], + [54089,0.931], + [54091,0.963], + [54093,0.974], + [54095,0.976], + [54097,0.969], + [54099,0.976], + [54101,0.996], + [54103,0.978], + [54105,0.994], + [54107,0.962], + [54109,0.973], + [55001,0.927], + [55003,0.838], + [55005,0.946], + [55007,0.861], + [55009,0.85], + [55011,0.969], + [55013,0.915], + [55015,0.946], + [55017,0.95], + [55019,0.965], + [55021,0.95], + [55023,0.954], + [55025,0.839], + [55027,0.936], + [55029,0.963], + [55031,0.929], + [55033,0.94], + [55035,0.919], + [55037,0.982], + [55039,0.928], + [55041,0.802], + [55043,0.965], + [55045,0.962], + [55047,0.963], + [55049,0.968], + [55051,0.966], + [55053,0.875], + [55055,0.941], + [55057,0.938], + [55059,0.855], + [55061,0.969], + [55063,0.909], + [55065,0.973], + [55067,0.953], + [55069,0.968], + [55071,0.94], + [55073,0.905], + [55075,0.967], + [55077,0.96], + [55078,0.109], + [55079,0.592], + [55081,0.929], + [55083,0.963], + [55085,0.961], + [55087,0.898], + [55089,0.936], + [55091,0.981], + [55093,0.957], + [55095,0.964], + [55097,0.929], + [55099,0.953], + [55101,0.809], + [55103,0.955], + [55105,0.871], + [55107,0.962], + [55109,0.959], + [55111,0.941], + [55113,0.771], + [55115,0.887], + [55117,0.888], + [55119,0.974], + [55121,0.927], + [55123,0.973], + [55125,0.869], + [55127,0.932], + [55129,0.952], + [55131,0.948], + [55133,0.922], + [55135,0.962], + [55137,0.928], + [55139,0.918], + [55141,0.942], + [56001,0.895], + [56003,0.928], + [56005,0.94], + [56007,0.913], + [56009,0.956], + [56011,0.956], + [56013,0.726], + [56015,0.929], + [56017,0.959], + [56019,0.935], + [56021,0.897], + [56023,0.958], + [56025,0.942], + [56027,0.94], + [56029,0.948], + [56031,0.962], + [56033,0.951], + [56035,0.962], + [56037,0.934], + [56039,0.893], + [56041,0.934], + [56043,0.897], + [56045,0.974] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2010.json b/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2010.json new file mode 100644 index 0000000..196d0bb --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "White (Non-Hispanic) Population", + "description" : "Percent of the population that is white (non-hispanic) in the year 2010.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.white.nonhispanic.2010"], + [1001,0.772], + [1003,0.835], + [1005,0.468], + [1007,0.75], + [1009,0.889], + [1011,0.219], + [1013,0.541], + [1015,0.736], + [1017,0.581], + [1019,0.921], + [1021,0.811], + [1023,0.556], + [1025,0.54], + [1027,0.803], + [1029,0.932], + [1031,0.723], + [1033,0.796], + [1035,0.511], + [1037,0.659], + [1039,0.841], + [1041,0.721], + [1043,0.927], + [1045,0.711], + [1047,0.289], + [1049,0.816], + [1051,0.75], + [1053,0.613], + [1055,0.793], + [1057,0.86], + [1059,0.796], + [1061,0.847], + [1063,0.173], + [1065,0.394], + [1067,0.678], + [1069,0.687], + [1071,0.901], + [1073,0.517], + [1075,0.861], + [1077,0.855], + [1079,0.769], + [1081,0.698], + [1083,0.787], + [1085,0.251], + [1087,0.152], + [1089,0.661], + [1091,0.457], + [1093,0.926], + [1095,0.839], + [1097,0.591], + [1099,0.547], + [1101,0.384], + [1103,0.775], + [1105,0.297], + [1107,0.558], + [1109,0.574], + [1111,0.754], + [1113,0.521], + [1115,0.873], + [1117,0.802], + [1119,0.24], + [1121,0.645], + [1123,0.693], + [1125,0.65], + [1127,0.904], + [1129,0.652], + [1131,0.266], + [1133,0.949], + [2013,0.135], + [2016,0.314], + [2020,0.626], + [2050,0.109], + [2060,0.477], + [2068,0.884], + [2070,0.176], + [2090,0.741], + [2100,0.822], + [2105,0.462], + [2110,0.674], + [2122,0.828], + [2130,0.662], + [2150,0.525], + [2158,0.027], + [2164,0.222], + [2170,0.828], + [2180,0.159], + [2185,0.324], + [2188,0.11], + [2195,0.694], + [2198,0.496], + [2220,0.635], + [2230,0.901], + [2240,0.787], + [2261,0.721], + [2275,0.717], + [2282,0.405], + [2290,0.218], + [4001,0.204], + [4003,0.585], + [4005,0.552], + [4007,0.659], + [4009,0.523], + [4011,0.481], + [4012,0.627], + [4013,0.587], + [4015,0.796], + [4017,0.439], + [4019,0.553], + [4021,0.587], + [4023,0.16], + [4025,0.82], + [4027,0.353], + [5001,0.71], + [5003,0.682], + [5005,0.96], + [5007,0.766], + [5009,0.952], + [5011,0.58], + [5013,0.734], + [5015,0.84], + [5017,0.403], + [5019,0.704], + [5021,0.969], + [5023,0.959], + [5025,0.851], + [5027,0.592], + [5029,0.824], + [5031,0.796], + [5033,0.868], + [5035,0.452], + [5037,0.747], + [5039,0.541], + [5041,0.468], + [5043,0.68], + [5045,0.824], + [5047,0.938], + [5049,0.964], + [5051,0.84], + [5053,0.941], + [5055,0.954], + [5057,0.565], + [5059,0.841], + [5061,0.674], + [5063,0.898], + [5065,0.95], + [5067,0.788], + [5069,0.414], + [5071,0.835], + [5073,0.599], + [5075,0.967], + [5077,0.414], + [5079,0.658], + [5081,0.746], + [5083,0.922], + [5085,0.879], + [5087,0.919], + [5089,0.959], + [5091,0.706], + [5093,0.605], + [5095,0.558], + [5097,0.928], + [5099,0.651], + [5101,0.948], + [5103,0.563], + [5105,0.936], + [5107,0.346], + [5109,0.882], + [5111,0.89], + [5113,0.898], + [5115,0.869], + [5117,0.857], + [5119,0.553], + [5121,0.959], + [5123,0.424], + [5125,0.89], + [5127,0.853], + [5129,0.952], + [5131,0.728], + [5133,0.611], + [5135,0.95], + [5137,0.961], + [5139,0.618], + [5141,0.941], + [5143,0.741], + [5145,0.896], + [5147,0.694], + [5149,0.767], + [6001,0.341], + [6003,0.725], + [6005,0.796], + [6007,0.752], + [6009,0.835], + [6011,0.398], + [6013,0.478], + [6015,0.647], + [6017,0.799], + [6019,0.327], + [6021,0.559], + [6023,0.772], + [6025,0.137], + [6027,0.663], + [6029,0.386], + [6031,0.352], + [6033,0.741], + [6035,0.667], + [6037,0.278], + [6039,0.38], + [6041,0.728], + [6043,0.832], + [6045,0.686], + [6047,0.319], + [6049,0.79], + [6051,0.682], + [6053,0.329], + [6055,0.564], + [6057,0.865], + [6059,0.441], + [6061,0.761], + [6063,0.85], + [6065,0.397], + [6067,0.484], + [6069,0.383], + [6071,0.333], + [6073,0.485], + [6075,0.419], + [6077,0.359], + [6079,0.711], + [6081,0.423], + [6083,0.479], + [6085,0.352], + [6087,0.596], + [6089,0.824], + [6091,0.881], + [6093,0.795], + [6095,0.408], + [6097,0.661], + [6099,0.467], + [6101,0.504], + [6103,0.719], + [6105,0.835], + [6107,0.326], + [6109,0.819], + [6111,0.487], + [6113,0.499], + [6115,0.588], + [8001,0.532], + [8003,0.496], + [8005,0.632], + [8007,0.782], + [8009,0.877], + [8011,0.59], + [8013,0.794], + [8014,0.794], + [8015,0.866], + [8017,0.881], + [8019,0.921], + [8021,0.418], + [8023,0.308], + [8025,0.579], + [8027,0.92], + [8029,0.83], + [8031,0.522], + [8033,0.909], + [8035,0.852], + [8037,0.673], + [8039,0.91], + [8041,0.72], + [8043,0.804], + [8045,0.688], + [8047,0.909], + [8049,0.897], + [8051,0.891], + [8053,0.932], + [8055,0.619], + [8057,0.874], + [8059,0.799], + [8061,0.933], + [8063,0.764], + [8065,0.582], + [8067,0.803], + [8069,0.845], + [8071,0.542], + [8073,0.795], + [8075,0.782], + [8077,0.831], + [8079,0.952], + [8081,0.827], + [8083,0.751], + [8085,0.775], + [8087,0.617], + [8089,0.565], + [8091,0.934], + [8093,0.916], + [8095,0.794], + [8097,0.879], + [8099,0.627], + [8101,0.541], + [8103,0.863], + [8105,0.551], + [8107,0.906], + [8109,0.564], + [8111,0.851], + [8113,0.885], + [8115,0.856], + [8117,0.827], + [8119,0.906], + [8121,0.894], + [8123,0.676], + [8125,0.779], + [9001,0.662], + [9003,0.661], + [9005,0.913], + [9007,0.864], + [9009,0.675], + [9011,0.783], + [9013,0.875], + [9015,0.854], + [10001,0.652], + [10003,0.616], + [10005,0.756], + [11001,0.348], + [12001,0.637], + [12003,0.824], + [12005,0.792], + [12007,0.739], + [12009,0.776], + [12011,0.435], + [12013,0.777], + [12015,0.86], + [12017,0.896], + [12019,0.772], + [12021,0.657], + [12023,0.747], + [12027,0.561], + [12029,0.866], + [12031,0.566], + [12033,0.662], + [12035,0.761], + [12037,0.796], + [12039,0.331], + [12041,0.879], + [12043,0.617], + [12045,0.749], + [12047,0.549], + [12049,0.48], + [12051,0.349], + [12053,0.821], + [12055,0.707], + [12057,0.537], + [12059,0.889], + [12061,0.774], + [12063,0.666], + [12065,0.587], + [12067,0.706], + [12069,0.745], + [12071,0.71], + [12073,0.593], + [12075,0.808], + [12077,0.736], + [12079,0.55], + [12081,0.734], + [12083,0.74], + [12085,0.803], + [12086,0.154], + [12087,0.713], + [12089,0.879], + [12091,0.771], + [12093,0.657], + [12095,0.46], + [12097,0.403], + [12099,0.601], + [12101,0.801], + [12103,0.769], + [12105,0.646], + [12107,0.726], + [12109,0.853], + [12111,0.612], + [12113,0.85], + [12115,0.849], + [12117,0.663], + [12119,0.828], + [12121,0.777], + [12123,0.73], + [12125,0.716], + [12127,0.754], + [12129,0.795], + [12131,0.851], + [12133,0.785], + [13001,0.705], + [13003,0.57], + [13005,0.76], + [13007,0.476], + [13009,0.54], + [13011,0.898], + [13013,0.746], + [13015,0.797], + [13017,0.576], + [13019,0.832], + [13021,0.421], + [13023,0.689], + [13025,0.934], + [13027,0.58], + [13029,0.776], + [13031,0.659], + [13033,0.465], + [13035,0.685], + [13037,0.336], + [13039,0.712], + [13043,0.632], + [13045,0.729], + [13047,0.925], + [13049,0.667], + [13051,0.504], + [13053,0.629], + [13055,0.83], + [13057,0.813], + [13059,0.571], + [13061,0.373], + [13063,0.141], + [13065,0.667], + [13067,0.563], + [13069,0.612], + [13071,0.588], + [13073,0.738], + [13075,0.649], + [13077,0.727], + [13079,0.735], + [13081,0.521], + [13083,0.95], + [13085,0.934], + [13087,0.525], + [13089,0.294], + [13091,0.655], + [13093,0.433], + [13095,0.289], + [13097,0.49], + [13099,0.477], + [13101,0.633], + [13103,0.81], + [13105,0.642], + [13107,0.608], + [13109,0.566], + [13111,0.961], + [13113,0.678], + [13115,0.737], + [13117,0.803], + [13119,0.856], + [13121,0.408], + [13123,0.886], + [13125,0.892], + [13127,0.648], + [13129,0.799], + [13131,0.595], + [13133,0.548], + [13135,0.44], + [13137,0.804], + [13139,0.636], + [13141,0.235], + [13143,0.921], + [13145,0.776], + [13147,0.762], + [13149,0.861], + [13151,0.525], + [13153,0.605], + [13155,0.704], + [13157,0.838], + [13159,0.726], + [13161,0.734], + [13163,0.414], + [13165,0.541], + [13167,0.623], + [13169,0.727], + [13171,0.652], + [13173,0.685], + [13175,0.597], + [13177,0.758], + [13179,0.427], + [13181,0.65], + [13183,0.587], + [13185,0.561], + [13187,0.918], + [13189,0.563], + [13191,0.608], + [13193,0.337], + [13195,0.857], + [13197,0.583], + [13199,0.573], + [13201,0.692], + [13205,0.464], + [13207,0.723], + [13209,0.673], + [13211,0.717], + [13213,0.85], + [13215,0.437], + [13217,0.52], + [13219,0.863], + [13221,0.767], + [13223,0.75], + [13225,0.451], + [13227,0.945], + [13229,0.846], + [13231,0.868], + [13233,0.735], + [13235,0.624], + [13237,0.661], + [13239,0.503], + [13241,0.889], + [13243,0.36], + [13245,0.38], + [13247,0.409], + [13249,0.721], + [13251,0.541], + [13253,0.632], + [13255,0.608], + [13257,0.841], + [13259,0.273], + [13261,0.409], + [13263,0.384], + [13265,0.364], + [13267,0.595], + [13269,0.575], + [13271,0.511], + [13273,0.361], + [13275,0.583], + [13277,0.587], + [13279,0.62], + [13281,0.965], + [13283,0.649], + [13285,0.603], + [13287,0.54], + [13289,0.561], + [13291,0.953], + [13293,0.682], + [13295,0.921], + [13297,0.784], + [13299,0.649], + [13301,0.366], + [13303,0.441], + [13305,0.723], + [13307,0.533], + [13309,0.594], + [13311,0.938], + [13313,0.622], + [13315,0.599], + [13317,0.519], + [13319,0.578], + [13321,0.694], + [15001,0.312], + [15003,0.191], + [15005,0.267], + [15007,0.307], + [15009,0.318], + [16001,0.865], + [16003,0.948], + [16005,0.864], + [16007,0.947], + [16009,0.853], + [16011,0.749], + [16013,0.78], + [16015,0.932], + [16017,0.944], + [16019,0.853], + [16021,0.921], + [16023,0.938], + [16025,0.902], + [16027,0.723], + [16029,0.931], + [16031,0.729], + [16033,0.568], + [16035,0.92], + [16037,0.94], + [16039,0.751], + [16041,0.918], + [16043,0.851], + [16045,0.891], + [16047,0.696], + [16049,0.924], + [16051,0.877], + [16053,0.669], + [16055,0.92], + [16057,0.906], + [16059,0.95], + [16061,0.889], + [16063,0.693], + [16065,0.912], + [16067,0.652], + [16069,0.887], + [16071,0.95], + [16073,0.683], + [16075,0.813], + [16077,0.661], + [16079,0.935], + [16081,0.815], + [16083,0.827], + [16085,0.941], + [16087,0.801], + [17001,0.93], + [17003,0.605], + [17005,0.889], + [17007,0.752], + [17009,0.748], + [17011,0.9], + [17013,0.983], + [17015,0.949], + [17017,0.794], + [17019,0.709], + [17021,0.958], + [17023,0.975], + [17025,0.972], + [17027,0.921], + [17029,0.916], + [17031,0.439], + [17033,0.919], + [17035,0.979], + [17037,0.797], + [17039,0.957], + [17041,0.922], + [17043,0.705], + [17045,0.977], + [17047,0.975], + [17049,0.968], + [17051,0.93], + [17053,0.96], + [17055,0.969], + [17057,0.928], + [17059,0.971], + [17061,0.973], + [17063,0.889], + [17065,0.974], + [17067,0.974], + [17069,0.966], + [17071,0.973], + [17073,0.921], + [17075,0.924], + [17077,0.76], + [17079,0.981], + [17081,0.874], + [17083,0.969], + [17085,0.956], + [17087,0.879], + [17089,0.59], + [17091,0.734], + [17093,0.742], + [17095,0.853], + [17097,0.652], + [17099,0.883], + [17101,0.861], + [17103,0.883], + [17105,0.896], + [17107,0.877], + [17109,0.889], + [17111,0.837], + [17113,0.819], + [17115,0.784], + [17117,0.97], + [17119,0.867], + [17121,0.924], + [17123,0.959], + [17125,0.975], + [17127,0.898], + [17129,0.97], + [17131,0.968], + [17133,0.971], + [17135,0.941], + [17137,0.898], + [17139,0.978], + [17141,0.886], + [17143,0.727], + [17145,0.871], + [17147,0.973], + [17149,0.962], + [17151,0.907], + [17153,0.639], + [17155,0.941], + [17157,0.864], + [17159,0.966], + [17161,0.757], + [17163,0.629], + [17165,0.924], + [17167,0.825], + [17169,0.949], + [17171,0.98], + [17173,0.98], + [17175,0.972], + [17177,0.851], + [17179,0.95], + [17181,0.924], + [17183,0.804], + [17185,0.962], + [17187,0.88], + [17189,0.969], + [17191,0.975], + [17193,0.976], + [17195,0.859], + [17197,0.672], + [17199,0.915], + [17201,0.725], + [17203,0.965], + [18001,0.946], + [18003,0.765], + [18005,0.87], + [18007,0.937], + [18009,0.972], + [18011,0.938], + [18013,0.968], + [18015,0.952], + [18017,0.837], + [18019,0.852], + [18021,0.972], + [18023,0.853], + [18025,0.97], + [18027,0.938], + [18029,0.969], + [18031,0.963], + [18033,0.957], + [18035,0.881], + [18037,0.926], + [18039,0.772], + [18041,0.964], + [18043,0.892], + [18045,0.963], + [18047,0.979], + [18049,0.933], + [18051,0.948], + [18053,0.865], + [18055,0.975], + [18057,0.864], + [18059,0.941], + [18061,0.965], + [18063,0.885], + [18065,0.949], + [18067,0.871], + [18069,0.961], + [18071,0.916], + [18073,0.926], + [18075,0.958], + [18077,0.939], + [18079,0.959], + [18081,0.923], + [18083,0.941], + [18085,0.899], + [18087,0.95], + [18089,0.553], + [18091,0.814], + [18093,0.966], + [18095,0.863], + [18097,0.595], + [18099,0.895], + [18101,0.98], + [18103,0.903], + [18105,0.861], + [18107,0.928], + [18109,0.969], + [18111,0.933], + [18113,0.886], + [18115,0.974], + [18117,0.965], + [18119,0.973], + [18121,0.954], + [18123,0.953], + [18125,0.977], + [18127,0.859], + [18129,0.967], + [18131,0.957], + [18133,0.925], + [18135,0.951], + [18137,0.967], + [18139,0.968], + [18141,0.756], + [18143,0.971], + [18145,0.937], + [18147,0.959], + [18149,0.951], + [18151,0.951], + [18153,0.928], + [18155,0.972], + [18157,0.804], + [18159,0.964], + [18161,0.969], + [18163,0.852], + [18165,0.978], + [18167,0.867], + [18169,0.954], + [18171,0.978], + [18173,0.94], + [18175,0.974], + [18177,0.89], + [18179,0.963], + [18181,0.912], + [18183,0.966], + [19001,0.977], + [19003,0.973], + [19005,0.93], + [19007,0.968], + [19009,0.982], + [19011,0.974], + [19013,0.839], + [19015,0.958], + [19017,0.966], + [19019,0.971], + [19021,0.679], + [19023,0.979], + [19025,0.979], + [19027,0.967], + [19029,0.967], + [19031,0.967], + [19033,0.926], + [19035,0.957], + [19037,0.969], + [19039,0.884], + [19041,0.951], + [19043,0.969], + [19045,0.925], + [19047,0.734], + [19049,0.887], + [19051,0.977], + [19053,0.94], + [19055,0.98], + [19057,0.894], + [19059,0.975], + [19061,0.929], + [19063,0.905], + [19065,0.957], + [19067,0.947], + [19069,0.874], + [19071,0.957], + [19073,0.966], + [19075,0.979], + [19077,0.967], + [19079,0.915], + [19081,0.947], + [19083,0.937], + [19085,0.973], + [19087,0.901], + [19089,0.974], + [19091,0.946], + [19093,0.974], + [19095,0.967], + [19097,0.969], + [19099,0.958], + [19101,0.863], + [19103,0.831], + [19105,0.955], + [19107,0.979], + [19109,0.973], + [19111,0.916], + [19113,0.893], + [19115,0.818], + [19117,0.98], + [19119,0.973], + [19121,0.972], + [19123,0.949], + [19125,0.956], + [19127,0.782], + [19129,0.956], + [19131,0.98], + [19133,0.963], + [19135,0.963], + [19137,0.956], + [19139,0.808], + [19141,0.945], + [19143,0.919], + [19145,0.927], + [19147,0.967], + [19149,0.952], + [19151,0.963], + [19153,0.807], + [19155,0.897], + [19157,0.936], + [19159,0.968], + [19161,0.969], + [19163,0.828], + [19165,0.967], + [19167,0.893], + [19169,0.869], + [19171,0.837], + [19173,0.93], + [19175,0.96], + [19177,0.974], + [19179,0.875], + [19181,0.958], + [19183,0.927], + [19185,0.975], + [19187,0.9], + [19189,0.943], + [19191,0.957], + [19193,0.776], + [19195,0.965], + [19197,0.887], + [20001,0.919], + [20003,0.96], + [20005,0.895], + [20007,0.948], + [20009,0.834], + [20011,0.92], + [20013,0.84], + [20015,0.91], + [20017,0.931], + [20019,0.897], + [20021,0.892], + [20023,0.933], + [20025,0.888], + [20027,0.959], + [20029,0.948], + [20031,0.951], + [20033,0.943], + [20035,0.822], + [20037,0.89], + [20039,0.969], + [20041,0.927], + [20043,0.917], + [20045,0.817], + [20047,0.805], + [20049,0.935], + [20051,0.917], + [20053,0.882], + [20055,0.464], + [20057,0.44], + [20059,0.919], + [20061,0.599], + [20063,0.971], + [20065,0.908], + [20067,0.542], + [20069,0.841], + [20071,0.847], + [20073,0.935], + [20075,0.67], + [20077,0.925], + [20079,0.846], + [20081,0.713], + [20083,0.912], + [20085,0.859], + [20087,0.95], + [20089,0.962], + [20091,0.82], + [20093,0.685], + [20095,0.953], + [20097,0.931], + [20099,0.855], + [20101,0.93], + [20103,0.803], + [20105,0.961], + [20107,0.951], + [20109,0.947], + [20111,0.733], + [20113,0.931], + [20115,0.947], + [20117,0.961], + [20119,0.822], + [20121,0.937], + [20123,0.972], + [20125,0.809], + [20127,0.941], + [20129,0.763], + [20131,0.967], + [20133,0.917], + [20135,0.91], + [20137,0.911], + [20139,0.955], + [20141,0.97], + [20143,0.957], + [20145,0.863], + [20147,0.956], + [20149,0.911], + [20151,0.913], + [20153,0.953], + [20155,0.861], + [20157,0.974], + [20159,0.861], + [20161,0.795], + [20163,0.961], + [20165,0.957], + [20167,0.953], + [20169,0.821], + [20171,0.83], + [20173,0.699], + [20175,0.36], + [20177,0.756], + [20179,0.953], + [20181,0.868], + [20183,0.963], + [20185,0.858], + [20187,0.604], + [20189,0.654], + [20191,0.913], + [20193,0.929], + [20195,0.967], + [20197,0.945], + [20199,0.912], + [20201,0.958], + [20203,0.737], + [20205,0.942], + [20207,0.949], + [20209,0.433], + [21001,0.941], + [21003,0.962], + [21005,0.948], + [21007,0.941], + [21009,0.915], + [21011,0.96], + [21013,0.951], + [21015,0.9], + [21017,0.852], + [21019,0.938], + [21021,0.869], + [21023,0.972], + [21025,0.978], + [21027,0.954], + [21029,0.96], + [21031,0.96], + [21033,0.921], + [21035,0.905], + [21037,0.934], + [21039,0.961], + [21041,0.886], + [21043,0.972], + [21045,0.961], + [21047,0.686], + [21049,0.91], + [21051,0.929], + [21053,0.96], + [21055,0.973], + [21057,0.949], + [21059,0.9], + [21061,0.965], + [21063,0.952], + [21065,0.982], + [21067,0.73], + [21069,0.966], + [21071,0.979], + [21073,0.832], + [21075,0.73], + [21077,0.926], + [21079,0.944], + [21081,0.955], + [21083,0.878], + [21085,0.967], + [21087,0.95], + [21089,0.969], + [21091,0.967], + [21093,0.778], + [21095,0.957], + [21097,0.947], + [21099,0.922], + [21101,0.882], + [21103,0.926], + [21105,0.877], + [21107,0.894], + [21109,0.985], + [21111,0.705], + [21113,0.913], + [21115,0.98], + [21117,0.898], + [21119,0.98], + [21121,0.966], + [21123,0.923], + [21125,0.964], + [21127,0.982], + [21129,0.959], + [21131,0.986], + [21133,0.984], + [21135,0.984], + [21137,0.946], + [21139,0.971], + [21141,0.892], + [21143,0.923], + [21145,0.839], + [21147,0.904], + [21149,0.973], + [21151,0.904], + [21153,0.983], + [21155,0.872], + [21157,0.975], + [21159,0.892], + [21161,0.897], + [21163,0.906], + [21165,0.96], + [21167,0.92], + [21169,0.963], + [21171,0.941], + [21173,0.933], + [21175,0.937], + [21177,0.93], + [21179,0.909], + [21181,0.97], + [21183,0.945], + [21185,0.892], + [21187,0.956], + [21189,0.98], + [21191,0.976], + [21193,0.962], + [21195,0.976], + [21197,0.972], + [21199,0.951], + [21201,0.978], + [21203,0.982], + [21205,0.954], + [21207,0.949], + [21209,0.878], + [21211,0.81], + [21213,0.862], + [21215,0.954], + [21217,0.911], + [21219,0.867], + [21221,0.884], + [21223,0.954], + [21225,0.843], + [21227,0.816], + [21229,0.888], + [21231,0.941], + [21233,0.898], + [21235,0.969], + [21237,0.985], + [21239,0.864], + [22001,0.786], + [22003,0.709], + [22005,0.708], + [22007,0.659], + [22009,0.663], + [22011,0.806], + [22013,0.547], + [22015,0.692], + [22017,0.478], + [22019,0.694], + [22021,0.794], + [22023,0.945], + [22025,0.667], + [22027,0.47], + [22029,0.568], + [22031,0.566], + [22033,0.47], + [22035,0.283], + [22037,0.526], + [22039,0.679], + [22041,0.667], + [22043,0.778], + [22045,0.608], + [22047,0.479], + [22049,0.675], + [22051,0.56], + [22053,0.786], + [22055,0.672], + [22057,0.78], + [22059,0.841], + [22061,0.542], + [22063,0.901], + [22065,0.364], + [22067,0.509], + [22069,0.534], + [22071,0.305], + [22073,0.596], + [22075,0.678], + [22077,0.603], + [22079,0.62], + [22081,0.584], + [22083,0.613], + [22085,0.692], + [22087,0.685], + [22089,0.662], + [22091,0.446], + [22093,0.474], + [22095,0.4], + [22097,0.552], + [22099,0.649], + [22101,0.572], + [22103,0.806], + [22105,0.643], + [22107,0.415], + [22109,0.686], + [22111,0.678], + [22113,0.798], + [22115,0.722], + [22117,0.658], + [22119,0.633], + [22121,0.586], + [22123,0.805], + [22125,0.512], + [22127,0.66], + [23001,0.919], + [23003,0.951], + [23005,0.918], + [23007,0.966], + [23009,0.962], + [23011,0.954], + [23013,0.965], + [23015,0.97], + [23017,0.961], + [23019,0.947], + [23021,0.963], + [23023,0.954], + [23025,0.966], + [23027,0.966], + [23029,0.913], + [23031,0.956], + [24001,0.882], + [24003,0.724], + [24005,0.627], + [24009,0.797], + [24011,0.782], + [24013,0.912], + [24015,0.874], + [24017,0.484], + [24019,0.662], + [24021,0.778], + [24023,0.973], + [24025,0.792], + [24027,0.592], + [24029,0.781], + [24031,0.493], + [24033,0.149], + [24035,0.873], + [24037,0.765], + [24039,0.521], + [24041,0.79], + [24043,0.833], + [24045,0.666], + [24047,0.803], + [24510,0.28], + [25001,0.914], + [25003,0.906], + [25005,0.856], + [25007,0.863], + [25009,0.76], + [25011,0.924], + [25013,0.677], + [25015,0.862], + [25017,0.765], + [25019,0.805], + [25021,0.803], + [25023,0.839], + [25025,0.481], + [25027,0.807], + [26001,0.971], + [26003,0.855], + [26005,0.897], + [26007,0.967], + [26009,0.956], + [26011,0.958], + [26013,0.745], + [26015,0.955], + [26017,0.912], + [26019,0.951], + [26021,0.761], + [26023,0.909], + [26025,0.798], + [26027,0.874], + [26029,0.948], + [26031,0.93], + [26033,0.715], + [26035,0.958], + [26037,0.905], + [26039,0.965], + [26041,0.942], + [26043,0.966], + [26045,0.849], + [26047,0.922], + [26049,0.727], + [26051,0.969], + [26053,0.911], + [26055,0.933], + [26057,0.874], + [26059,0.959], + [26061,0.936], + [26063,0.961], + [26065,0.724], + [26067,0.891], + [26069,0.955], + [26071,0.962], + [26073,0.875], + [26075,0.859], + [26077,0.799], + [26079,0.959], + [26081,0.76], + [26083,0.982], + [26085,0.858], + [26087,0.93], + [26089,0.912], + [26091,0.876], + [26093,0.953], + [26095,0.796], + [26097,0.757], + [26099,0.839], + [26101,0.906], + [26103,0.93], + [26105,0.926], + [26107,0.926], + [26109,0.945], + [26111,0.931], + [26113,0.958], + [26115,0.925], + [26117,0.926], + [26119,0.969], + [26121,0.773], + [26123,0.91], + [26125,0.751], + [26127,0.837], + [26129,0.962], + [26131,0.965], + [26133,0.958], + [26135,0.97], + [26137,0.96], + [26139,0.857], + [26141,0.97], + [26143,0.965], + [26145,0.705], + [26147,0.921], + [26149,0.88], + [26151,0.948], + [26153,0.871], + [26155,0.952], + [26157,0.943], + [26159,0.827], + [26161,0.721], + [26163,0.496], + [26165,0.955], + [27001,0.95], + [27003,0.852], + [27005,0.878], + [27007,0.744], + [27009,0.935], + [27011,0.977], + [27013,0.912], + [27015,0.952], + [27017,0.889], + [27019,0.907], + [27021,0.854], + [27023,0.914], + [27025,0.947], + [27027,0.906], + [27029,0.867], + [27031,0.875], + [27033,0.893], + [27035,0.96], + [27037,0.823], + [27039,0.935], + [27041,0.971], + [27043,0.929], + [27045,0.976], + [27047,0.886], + [27049,0.932], + [27051,0.969], + [27053,0.717], + [27055,0.971], + [27057,0.936], + [27059,0.951], + [27061,0.931], + [27063,0.945], + [27065,0.961], + [27067,0.851], + [27069,0.974], + [27071,0.94], + [27073,0.97], + [27075,0.972], + [27077,0.955], + [27079,0.927], + [27081,0.975], + [27083,0.875], + [27085,0.928], + [27087,0.498], + [27089,0.948], + [27091,0.948], + [27093,0.954], + [27095,0.904], + [27097,0.969], + [27099,0.842], + [27101,0.954], + [27103,0.915], + [27105,0.672], + [27107,0.918], + [27109,0.834], + [27111,0.947], + [27113,0.924], + [27115,0.905], + [27117,0.925], + [27119,0.902], + [27121,0.975], + [27123,0.669], + [27125,0.948], + [27127,0.879], + [27129,0.912], + [27131,0.851], + [27133,0.954], + [27135,0.94], + [27137,0.923], + [27139,0.845], + [27141,0.926], + [27143,0.909], + [27145,0.906], + [27147,0.89], + [27149,0.918], + [27151,0.948], + [27153,0.926], + [27155,0.934], + [27157,0.956], + [27159,0.958], + [27161,0.904], + [27163,0.857], + [27165,0.77], + [27167,0.957], + [27169,0.929], + [27171,0.937], + [27173,0.918], + [28001,0.387], + [28003,0.845], + [28005,0.572], + [28007,0.555], + [28009,0.599], + [28011,0.329], + [28013,0.658], + [28015,0.654], + [28017,0.532], + [28019,0.679], + [28021,0.141], + [28023,0.638], + [28025,0.401], + [28027,0.226], + [28029,0.455], + [28031,0.624], + [28033,0.704], + [28035,0.584], + [28037,0.644], + [28039,0.886], + [28041,0.72], + [28043,0.564], + [28045,0.863], + [28047,0.672], + [28049,0.28], + [28051,0.156], + [28053,0.228], + [28055,0.343], + [28057,0.918], + [28059,0.699], + [28061,0.46], + [28063,0.137], + [28065,0.385], + [28067,0.656], + [28069,0.351], + [28071,0.708], + [28073,0.76], + [28075,0.54], + [28077,0.663], + [28079,0.488], + [28081,0.686], + [28083,0.245], + [28085,0.68], + [28087,0.533], + [28089,0.56], + [28091,0.652], + [28093,0.489], + [28095,0.672], + [28097,0.528], + [28099,0.6], + [28101,0.626], + [28103,0.27], + [28105,0.584], + [28107,0.489], + [28109,0.822], + [28111,0.777], + [28113,0.459], + [28115,0.785], + [28117,0.838], + [28119,0.288], + [28121,0.763], + [28123,0.508], + [28125,0.278], + [28127,0.623], + [28129,0.753], + [28131,0.777], + [28133,0.252], + [28135,0.363], + [28137,0.661], + [28139,0.783], + [28141,0.935], + [28143,0.231], + [28145,0.798], + [28147,0.527], + [28149,0.495], + [28151,0.267], + [28153,0.59], + [28155,0.781], + [28157,0.285], + [28159,0.515], + [28161,0.6], + [28163,0.373], + [29001,0.928], + [29003,0.962], + [29005,0.977], + [29007,0.886], + [29009,0.885], + [29011,0.944], + [29013,0.956], + [29015,0.961], + [29017,0.974], + [29019,0.81], + [29021,0.863], + [29023,0.9], + [29025,0.959], + [29027,0.91], + [29029,0.953], + [29031,0.879], + [29033,0.957], + [29035,0.956], + [29037,0.895], + [29039,0.961], + [29041,0.963], + [29043,0.943], + [29045,0.977], + [29047,0.841], + [29049,0.945], + [29051,0.832], + [29053,0.895], + [29055,0.964], + [29057,0.948], + [29059,0.956], + [29061,0.974], + [29063,0.857], + [29065,0.959], + [29067,0.966], + [29069,0.829], + [29071,0.96], + [29073,0.972], + [29075,0.98], + [29077,0.895], + [29079,0.96], + [29081,0.967], + [29083,0.953], + [29085,0.964], + [29087,0.972], + [29089,0.911], + [29091,0.953], + [29093,0.956], + [29095,0.633], + [29097,0.86], + [29099,0.954], + [29101,0.882], + [29103,0.975], + [29105,0.944], + [29107,0.929], + [29109,0.91], + [29111,0.935], + [29113,0.939], + [29115,0.964], + [29117,0.947], + [29119,0.81], + [29121,0.947], + [29123,0.964], + [29125,0.971], + [29127,0.91], + [29129,0.973], + [29131,0.96], + [29133,0.733], + [29135,0.907], + [29137,0.943], + [29139,0.951], + [29141,0.952], + [29143,0.811], + [29145,0.877], + [29147,0.936], + [29149,0.956], + [29151,0.984], + [29153,0.965], + [29155,0.696], + [29157,0.965], + [29159,0.87], + [29161,0.903], + [29163,0.892], + [29165,0.841], + [29167,0.95], + [29169,0.724], + [29171,0.977], + [29173,0.967], + [29175,0.9], + [29177,0.951], + [29179,0.961], + [29181,0.962], + [29183,0.891], + [29185,0.955], + [29186,0.97], + [29187,0.928], + [29189,0.689], + [29195,0.832], + [29197,0.982], + [29199,0.983], + [29201,0.849], + [29203,0.949], + [29205,0.973], + [29207,0.965], + [29209,0.961], + [29211,0.797], + [29213,0.911], + [29215,0.923], + [29217,0.955], + [29219,0.929], + [29221,0.951], + [29223,0.965], + [29225,0.952], + [29227,0.974], + [29229,0.963], + [29510,0.422], + [30001,0.927], + [30003,0.304], + [30005,0.479], + [30007,0.946], + [30009,0.959], + [30011,0.976], + [30013,0.874], + [30015,0.755], + [30017,0.941], + [30019,0.944], + [30021,0.945], + [30023,0.916], + [30025,0.966], + [30027,0.957], + [30029,0.94], + [30031,0.933], + [30033,0.984], + [30035,0.307], + [30037,0.93], + [30039,0.964], + [30041,0.729], + [30043,0.94], + [30045,0.972], + [30047,0.681], + [30049,0.924], + [30051,0.98], + [30053,0.942], + [30055,0.974], + [30057,0.954], + [30059,0.966], + [30061,0.936], + [30063,0.91], + [30065,0.943], + [30067,0.952], + [30069,0.984], + [30071,0.862], + [30073,0.822], + [30075,0.944], + [30077,0.914], + [30079,0.954], + [30081,0.939], + [30083,0.933], + [30085,0.356], + [30087,0.602], + [30089,0.904], + [30091,0.946], + [30093,0.921], + [30095,0.953], + [30097,0.956], + [30099,0.954], + [30101,0.904], + [30103,0.928], + [30105,0.864], + [30107,0.952], + [30109,0.971], + [30111,0.882], + [31001,0.885], + [31003,0.96], + [31005,0.946], + [31007,0.951], + [31009,0.992], + [31011,0.978], + [31013,0.846], + [31015,0.964], + [31017,0.977], + [31019,0.892], + [31021,0.951], + [31023,0.964], + [31025,0.954], + [31027,0.978], + [31029,0.88], + [31031,0.9], + [31033,0.908], + [31035,0.908], + [31037,0.574], + [31039,0.905], + [31041,0.965], + [31043,0.552], + [31045,0.878], + [31047,0.636], + [31049,0.947], + [31051,0.882], + [31053,0.875], + [31055,0.719], + [31057,0.922], + [31059,0.954], + [31061,0.975], + [31063,0.975], + [31065,0.957], + [31067,0.961], + [31069,0.944], + [31071,0.987], + [31073,0.956], + [31075,0.977], + [31077,0.966], + [31079,0.726], + [31081,0.969], + [31083,0.977], + [31085,0.96], + [31087,0.97], + [31089,0.96], + [31091,0.98], + [31093,0.967], + [31095,0.957], + [31097,0.835], + [31099,0.95], + [31101,0.924], + [31103,0.989], + [31105,0.906], + [31107,0.884], + [31109,0.843], + [31111,0.902], + [31113,0.969], + [31115,0.976], + [31117,0.98], + [31119,0.833], + [31121,0.944], + [31123,0.844], + [31125,0.971], + [31127,0.957], + [31129,0.963], + [31131,0.921], + [31133,0.968], + [31135,0.959], + [31137,0.946], + [31139,0.977], + [31141,0.843], + [31143,0.959], + [31145,0.936], + [31147,0.936], + [31149,0.984], + [31151,0.762], + [31153,0.838], + [31155,0.962], + [31157,0.756], + [31159,0.964], + [31161,0.834], + [31163,0.982], + [31165,0.946], + [31167,0.935], + [31169,0.971], + [31171,0.972], + [31173,0.395], + [31175,0.969], + [31177,0.959], + [31179,0.927], + [31181,0.941], + [31183,0.98], + [31185,0.931], + [32001,0.765], + [32003,0.48], + [32005,0.832], + [32007,0.691], + [32009,0.773], + [32011,0.836], + [32013,0.689], + [32015,0.737], + [32017,0.879], + [32019,0.782], + [32021,0.685], + [32023,0.789], + [32027,0.682], + [32029,0.881], + [32031,0.66], + [32033,0.763], + [32510,0.707], + [33001,0.958], + [33003,0.968], + [33005,0.954], + [33007,0.962], + [33009,0.923], + [33011,0.876], + [33013,0.943], + [33015,0.942], + [33017,0.927], + [33019,0.962], + [34001,0.586], + [34003,0.625], + [34005,0.706], + [34007,0.603], + [34009,0.869], + [34011,0.503], + [34013,0.332], + [34015,0.811], + [34017,0.308], + [34019,0.877], + [34021,0.545], + [34023,0.492], + [34025,0.767], + [34027,0.751], + [34029,0.859], + [34031,0.453], + [34033,0.768], + [34035,0.624], + [34037,0.888], + [34039,0.454], + [34041,0.857], + [35001,0.415], + [35003,0.76], + [35005,0.439], + [35006,0.215], + [35007,0.499], + [35009,0.507], + [35011,0.593], + [35013,0.301], + [35015,0.522], + [35017,0.486], + [35019,0.161], + [35021,0.563], + [35023,0.414], + [35025,0.43], + [35027,0.664], + [35028,0.763], + [35029,0.359], + [35031,0.103], + [35033,0.179], + [35035,0.528], + [35037,0.536], + [35039,0.128], + [35041,0.555], + [35043,0.475], + [35045,0.425], + [35047,0.197], + [35049,0.439], + [35051,0.684], + [35053,0.376], + [35055,0.363], + [35057,0.56], + [35059,0.56], + [35061,0.362], + [36001,0.76], + [36003,0.954], + [36005,0.109], + [36007,0.863], + [36009,0.919], + [36011,0.913], + [36013,0.893], + [36015,0.874], + [36017,0.956], + [36019,0.911], + [36021,0.882], + [36023,0.937], + [36025,0.932], + [36027,0.746], + [36029,0.777], + [36031,0.929], + [36033,0.826], + [36035,0.938], + [36037,0.915], + [36039,0.871], + [36041,0.964], + [36043,0.956], + [36045,0.858], + [36047,0.357], + [36049,0.968], + [36051,0.922], + [36053,0.938], + [36055,0.728], + [36057,0.851], + [36059,0.655], + [36061,0.48], + [36063,0.873], + [36065,0.848], + [36067,0.792], + [36069,0.918], + [36071,0.682], + [36073,0.878], + [36075,0.951], + [36077,0.927], + [36079,0.829], + [36081,0.276], + [36083,0.857], + [36085,0.64], + [36087,0.653], + [36089,0.929], + [36091,0.927], + [36093,0.772], + [36095,0.939], + [36097,0.962], + [36099,0.908], + [36101,0.944], + [36103,0.716], + [36105,0.745], + [36107,0.96], + [36109,0.802], + [36111,0.817], + [36113,0.952], + [36115,0.933], + [36117,0.91], + [36119,0.574], + [36121,0.902], + [36123,0.961], + [37001,0.673], + [37003,0.878], + [37005,0.884], + [37007,0.458], + [37009,0.932], + [37011,0.901], + [37013,0.664], + [37015,0.347], + [37017,0.547], + [37019,0.808], + [37021,0.844], + [37023,0.83], + [37025,0.716], + [37027,0.886], + [37029,0.812], + [37031,0.874], + [37033,0.612], + [37035,0.78], + [37037,0.712], + [37039,0.923], + [37041,0.611], + [37043,0.952], + [37045,0.742], + [37047,0.604], + [37049,0.671], + [37051,0.472], + [37053,0.887], + [37055,0.886], + [37057,0.82], + [37059,0.855], + [37061,0.529], + [37063,0.421], + [37065,0.378], + [37067,0.587], + [37069,0.635], + [37071,0.758], + [37073,0.63], + [37075,0.896], + [37077,0.577], + [37079,0.47], + [37081,0.543], + [37083,0.394], + [37085,0.643], + [37087,0.938], + [37089,0.844], + [37091,0.344], + [37093,0.408], + [37095,0.591], + [37097,0.778], + [37099,0.814], + [37101,0.698], + [37103,0.612], + [37105,0.593], + [37107,0.513], + [37109,0.858], + [37111,0.889], + [37113,0.902], + [37115,0.95], + [37117,0.522], + [37119,0.506], + [37121,0.941], + [37123,0.643], + [37125,0.776], + [37127,0.54], + [37129,0.768], + [37131,0.389], + [37133,0.689], + [37135,0.708], + [37137,0.748], + [37139,0.55], + [37141,0.739], + [37143,0.714], + [37145,0.668], + [37147,0.571], + [37149,0.884], + [37151,0.813], + [37153,0.587], + [37155,0.27], + [37157,0.734], + [37159,0.737], + [37161,0.841], + [37163,0.532], + [37165,0.459], + [37167,0.823], + [37169,0.917], + [37171,0.85], + [37173,0.656], + [37175,0.908], + [37177,0.533], + [37179,0.746], + [37181,0.421], + [37183,0.622], + [37185,0.38], + [37187,0.453], + [37189,0.925], + [37191,0.556], + [37193,0.888], + [37195,0.494], + [37197,0.86], + [37199,0.935], + [38001,0.967], + [38003,0.958], + [38005,0.43], + [38007,0.985], + [38009,0.943], + [38011,0.964], + [38013,0.961], + [38015,0.923], + [38017,0.905], + [38019,0.974], + [38021,0.954], + [38023,0.969], + [38025,0.844], + [38027,0.94], + [38029,0.977], + [38031,0.979], + [38033,0.96], + [38035,0.886], + [38037,0.971], + [38039,0.986], + [38041,0.958], + [38043,0.956], + [38045,0.979], + [38047,0.982], + [38049,0.967], + [38051,0.97], + [38053,0.746], + [38055,0.905], + [38057,0.949], + [38059,0.93], + [38061,0.643], + [38063,0.965], + [38065,0.965], + [38067,0.937], + [38069,0.937], + [38071,0.872], + [38073,0.968], + [38075,0.972], + [38077,0.941], + [38079,0.201], + [38081,0.971], + [38083,0.963], + [38085,0.124], + [38087,0.972], + [38089,0.941], + [38091,0.97], + [38093,0.948], + [38095,0.964], + [38097,0.947], + [38099,0.884], + [38101,0.887], + [38103,0.985], + [38105,0.909], + [39001,0.971], + [39003,0.825], + [39005,0.966], + [39007,0.908], + [39009,0.908], + [39011,0.971], + [39013,0.936], + [39015,0.972], + [39017,0.843], + [39019,0.973], + [39021,0.941], + [39023,0.853], + [39025,0.949], + [39027,0.939], + [39029,0.949], + [39031,0.966], + [39033,0.964], + [39035,0.614], + [39037,0.97], + [39039,0.88], + [39041,0.884], + [39043,0.849], + [39045,0.892], + [39047,0.938], + [39049,0.673], + [39051,0.903], + [39053,0.942], + [39055,0.961], + [39057,0.851], + [39059,0.955], + [39061,0.676], + [39063,0.908], + [39065,0.96], + [39067,0.956], + [39069,0.917], + [39071,0.96], + [39073,0.97], + [39075,0.982], + [39077,0.917], + [39079,0.966], + [39081,0.911], + [39083,0.96], + [39085,0.909], + [39087,0.954], + [39089,0.924], + [39091,0.946], + [39093,0.802], + [39095,0.71], + [39097,0.898], + [39099,0.776], + [39101,0.898], + [39103,0.95], + [39105,0.971], + [39107,0.967], + [39109,0.936], + [39111,0.978], + [39113,0.727], + [39115,0.928], + [39117,0.97], + [39119,0.925], + [39121,0.958], + [39123,0.936], + [39125,0.935], + [39127,0.975], + [39129,0.938], + [39131,0.962], + [39133,0.914], + [39135,0.972], + [39137,0.935], + [39139,0.865], + [39141,0.902], + [39143,0.862], + [39145,0.938], + [39147,0.912], + [39149,0.939], + [39151,0.877], + [39153,0.797], + [39155,0.881], + [39157,0.957], + [39159,0.921], + [39161,0.952], + [39163,0.975], + [39165,0.89], + [39167,0.96], + [39169,0.947], + [39171,0.937], + [39173,0.901], + [39175,0.961], + [40001,0.421], + [40003,0.873], + [40005,0.728], + [40007,0.765], + [40009,0.789], + [40011,0.629], + [40013,0.738], + [40015,0.595], + [40017,0.797], + [40019,0.725], + [40021,0.502], + [40023,0.637], + [40025,0.765], + [40027,0.757], + [40029,0.731], + [40031,0.589], + [40033,0.792], + [40035,0.656], + [40037,0.784], + [40039,0.734], + [40041,0.659], + [40043,0.86], + [40045,0.906], + [40047,0.805], + [40049,0.79], + [40051,0.836], + [40053,0.915], + [40055,0.784], + [40057,0.629], + [40059,0.802], + [40061,0.733], + [40063,0.668], + [40065,0.658], + [40067,0.806], + [40069,0.717], + [40071,0.776], + [40073,0.8], + [40075,0.773], + [40077,0.692], + [40079,0.731], + [40081,0.846], + [40083,0.785], + [40085,0.763], + [40087,0.81], + [40089,0.658], + [40091,0.694], + [40093,0.881], + [40095,0.698], + [40097,0.669], + [40099,0.759], + [40101,0.583], + [40103,0.833], + [40105,0.678], + [40107,0.632], + [40109,0.593], + [40111,0.644], + [40113,0.647], + [40115,0.674], + [40117,0.797], + [40119,0.797], + [40121,0.719], + [40123,0.693], + [40125,0.744], + [40127,0.739], + [40129,0.873], + [40131,0.737], + [40133,0.672], + [40135,0.652], + [40137,0.825], + [40139,0.528], + [40141,0.646], + [40143,0.652], + [40145,0.734], + [40147,0.759], + [40149,0.859], + [40151,0.866], + [40153,0.828], + [41001,0.926], + [41003,0.836], + [41005,0.845], + [41007,0.872], + [41009,0.903], + [41011,0.87], + [41013,0.894], + [41015,0.887], + [41017,0.884], + [41019,0.895], + [41021,0.922], + [41023,0.934], + [41025,0.896], + [41027,0.658], + [41029,0.837], + [41031,0.618], + [41033,0.886], + [41035,0.811], + [41037,0.871], + [41039,0.847], + [41041,0.844], + [41043,0.871], + [41045,0.636], + [41047,0.687], + [41049,0.646], + [41051,0.721], + [41053,0.805], + [41055,0.916], + [41057,0.867], + [41059,0.694], + [41061,0.909], + [41063,0.945], + [41065,0.776], + [41067,0.697], + [41069,0.907], + [41071,0.791], + [42001,0.906], + [42003,0.806], + [42005,0.977], + [42007,0.904], + [42009,0.975], + [42011,0.769], + [42013,0.956], + [42015,0.967], + [42017,0.869], + [42019,0.959], + [42021,0.933], + [42023,0.98], + [42025,0.937], + [42027,0.879], + [42029,0.821], + [42031,0.968], + [42033,0.944], + [42035,0.959], + [42037,0.944], + [42039,0.957], + [42041,0.894], + [42043,0.699], + [42045,0.711], + [42047,0.981], + [42049,0.865], + [42051,0.929], + [42053,0.758], + [42055,0.902], + [42057,0.969], + [42059,0.941], + [42061,0.919], + [42063,0.944], + [42065,0.979], + [42067,0.957], + [42069,0.897], + [42071,0.849], + [42073,0.932], + [42075,0.869], + [42077,0.716], + [42079,0.882], + [42081,0.919], + [42083,0.945], + [42085,0.91], + [42087,0.968], + [42089,0.705], + [42091,0.79], + [42093,0.942], + [42095,0.81], + [42097,0.943], + [42099,0.966], + [42101,0.369], + [42103,0.829], + [42105,0.974], + [42107,0.932], + [42109,0.96], + [42111,0.955], + [42113,0.947], + [42115,0.971], + [42117,0.966], + [42119,0.852], + [42121,0.965], + [42123,0.976], + [42125,0.934], + [42127,0.92], + [42129,0.948], + [42131,0.964], + [42133,0.862], + [44001,0.943], + [44003,0.916], + [44005,0.879], + [44007,0.661], + [44009,0.924], + [45001,0.691], + [45003,0.678], + [45005,0.231], + [45007,0.788], + [45009,0.356], + [45011,0.518], + [45013,0.661], + [45015,0.639], + [45017,0.531], + [45019,0.62], + [45021,0.74], + [45023,0.591], + [45025,0.616], + [45027,0.462], + [45029,0.559], + [45031,0.553], + [45033,0.473], + [45035,0.655], + [45037,0.563], + [45039,0.38], + [45041,0.541], + [45043,0.62], + [45045,0.703], + [45047,0.613], + [45049,0.412], + [45051,0.773], + [45053,0.374], + [45055,0.697], + [45057,0.698], + [45059,0.69], + [45061,0.329], + [45063,0.77], + [45065,0.483], + [45067,0.4], + [45069,0.403], + [45071,0.605], + [45073,0.859], + [45075,0.337], + [45077,0.872], + [45079,0.453], + [45081,0.581], + [45083,0.701], + [45085,0.469], + [45087,0.661], + [45089,0.312], + [45091,0.727], + [46003,0.934], + [46005,0.858], + [46007,0.333], + [46009,0.889], + [46011,0.923], + [46013,0.926], + [46015,0.878], + [46017,0.148], + [46019,0.926], + [46021,0.975], + [46023,0.646], + [46025,0.974], + [46027,0.9], + [46029,0.946], + [46031,0.297], + [46033,0.928], + [46035,0.938], + [46037,0.876], + [46039,0.967], + [46041,0.209], + [46043,0.963], + [46045,0.97], + [46047,0.874], + [46049,0.983], + [46051,0.961], + [46053,0.894], + [46055,0.941], + [46057,0.962], + [46059,0.982], + [46061,0.984], + [46063,0.954], + [46065,0.85], + [46067,0.966], + [46069,0.889], + [46071,0.426], + [46073,0.946], + [46075,0.943], + [46077,0.969], + [46079,0.956], + [46081,0.927], + [46083,0.953], + [46085,0.581], + [46087,0.97], + [46089,0.978], + [46091,0.846], + [46093,0.902], + [46095,0.393], + [46097,0.971], + [46099,0.862], + [46101,0.806], + [46102,0.028], + [46103,0.817], + [46105,0.967], + [46107,0.97], + [46109,0.615], + [46111,0.975], + [46115,0.966], + [46117,0.895], + [46119,0.964], + [46121,0.095], + [46123,0.828], + [46125,0.968], + [46127,0.945], + [46129,0.822], + [46135,0.916], + [46137,0.217], + [47001,0.907], + [47003,0.785], + [47005,0.944], + [47007,0.927], + [47009,0.921], + [47011,0.885], + [47013,0.97], + [47015,0.956], + [47017,0.857], + [47019,0.955], + [47021,0.944], + [47023,0.866], + [47025,0.964], + [47027,0.957], + [47029,0.942], + [47031,0.9], + [47033,0.771], + [47035,0.958], + [47037,0.574], + [47039,0.931], + [47041,0.907], + [47043,0.904], + [47045,0.81], + [47047,0.682], + [47049,0.976], + [47051,0.897], + [47053,0.776], + [47055,0.855], + [47057,0.96], + [47059,0.939], + [47061,0.972], + [47063,0.829], + [47065,0.72], + [47067,0.979], + [47069,0.558], + [47071,0.926], + [47073,0.958], + [47075,0.448], + [47077,0.882], + [47079,0.882], + [47081,0.918], + [47083,0.941], + [47085,0.944], + [47087,0.968], + [47089,0.929], + [47091,0.952], + [47093,0.839], + [47095,0.691], + [47097,0.612], + [47099,0.948], + [47101,0.946], + [47103,0.881], + [47105,0.902], + [47107,0.904], + [47109,0.91], + [47111,0.942], + [47113,0.581], + [47115,0.932], + [47117,0.868], + [47119,0.802], + [47121,0.958], + [47123,0.924], + [47125,0.671], + [47127,0.949], + [47129,0.939], + [47131,0.848], + [47133,0.971], + [47135,0.948], + [47137,0.978], + [47139,0.967], + [47141,0.899], + [47143,0.921], + [47145,0.937], + [47147,0.847], + [47149,0.756], + [47151,0.981], + [47153,0.95], + [47155,0.916], + [47157,0.387], + [47159,0.939], + [47161,0.936], + [47163,0.944], + [47165,0.87], + [47167,0.767], + [47169,0.859], + [47171,0.947], + [47173,0.97], + [47175,0.975], + [47177,0.872], + [47179,0.902], + [47181,0.913], + [47183,0.877], + [47185,0.948], + [47187,0.867], + [47189,0.875], + [48001,0.612], + [48003,0.479], + [48005,0.633], + [48007,0.706], + [48009,0.904], + [48011,0.907], + [48013,0.363], + [48015,0.657], + [48017,0.383], + [48019,0.809], + [48021,0.572], + [48023,0.845], + [48025,0.344], + [48027,0.507], + [48029,0.303], + [48031,0.794], + [48033,0.841], + [48035,0.807], + [48037,0.663], + [48039,0.532], + [48041,0.591], + [48043,0.543], + [48045,0.71], + [48047,0.079], + [48049,0.747], + [48051,0.681], + [48053,0.761], + [48055,0.442], + [48057,0.458], + [48059,0.891], + [48061,0.107], + [48063,0.589], + [48065,0.885], + [48067,0.772], + [48069,0.373], + [48071,0.706], + [48073,0.627], + [48075,0.615], + [48077,0.925], + [48079,0.425], + [48081,0.798], + [48083,0.801], + [48085,0.631], + [48087,0.634], + [48089,0.599], + [48091,0.713], + [48093,0.726], + [48095,0.443], + [48097,0.787], + [48099,0.62], + [48101,0.693], + [48103,0.403], + [48105,0.353], + [48107,0.433], + [48109,0.21], + [48111,0.556], + [48113,0.331], + [48115,0.391], + [48117,0.307], + [48119,0.832], + [48121,0.644], + [48123,0.571], + [48125,0.651], + [48127,0.122], + [48129,0.853], + [48131,0.102], + [48133,0.822], + [48135,0.411], + [48137,0.473], + [48139,0.655], + [48141,0.131], + [48143,0.775], + [48145,0.525], + [48147,0.809], + [48149,0.735], + [48151,0.704], + [48153,0.431], + [48155,0.814], + [48157,0.362], + [48159,0.811], + [48161,0.689], + [48163,0.162], + [48165,0.606], + [48167,0.593], + [48169,0.458], + [48171,0.784], + [48173,0.673], + [48175,0.602], + [48177,0.446], + [48179,0.691], + [48181,0.787], + [48183,0.608], + [48185,0.606], + [48187,0.548], + [48189,0.376], + [48191,0.596], + [48193,0.88], + [48195,0.55], + [48197,0.71], + [48199,0.88], + [48201,0.33], + [48203,0.65], + [48205,0.678], + [48207,0.703], + [48209,0.586], + [48211,0.698], + [48213,0.809], + [48215,0.078], + [48217,0.736], + [48219,0.514], + [48221,0.871], + [48223,0.754], + [48225,0.624], + [48227,0.537], + [48229,0.181], + [48231,0.748], + [48233,0.744], + [48235,0.721], + [48237,0.806], + [48239,0.629], + [48241,0.754], + [48243,0.636], + [48245,0.446], + [48247,0.063], + [48249,0.197], + [48251,0.766], + [48253,0.621], + [48255,0.402], + [48257,0.7], + [48259,0.771], + [48261,0.207], + [48263,0.828], + [48265,0.722], + [48267,0.749], + [48269,0.846], + [48271,0.416], + [48273,0.233], + [48275,0.631], + [48277,0.761], + [48279,0.431], + [48281,0.754], + [48283,0.13], + [48285,0.762], + [48287,0.65], + [48289,0.778], + [48291,0.692], + [48293,0.617], + [48295,0.67], + [48297,0.59], + [48299,0.896], + [48301,0.732], + [48303,0.573], + [48305,0.504], + [48307,0.672], + [48309,0.589], + [48311,0.611], + [48313,0.588], + [48315,0.717], + [48317,0.537], + [48319,0.771], + [48321,0.474], + [48323,0.029], + [48325,0.465], + [48327,0.636], + [48329,0.532], + [48331,0.655], + [48333,0.815], + [48335,0.505], + [48337,0.88], + [48339,0.712], + [48341,0.382], + [48343,0.668], + [48345,0.837], + [48347,0.615], + [48349,0.599], + [48351,0.749], + [48353,0.604], + [48355,0.329], + [48357,0.495], + [48359,0.828], + [48361,0.83], + [48363,0.781], + [48365,0.736], + [48367,0.853], + [48369,0.384], + [48371,0.279], + [48373,0.723], + [48375,0.49], + [48377,0.145], + [48379,0.875], + [48381,0.782], + [48383,0.362], + [48385,0.725], + [48387,0.739], + [48389,0.195], + [48391,0.452], + [48393,0.905], + [48395,0.591], + [48397,0.741], + [48399,0.651], + [48401,0.661], + [48403,0.875], + [48405,0.697], + [48407,0.766], + [48409,0.422], + [48411,0.674], + [48413,0.541], + [48415,0.578], + [48417,0.877], + [48419,0.65], + [48421,0.581], + [48423,0.621], + [48425,0.777], + [48427,0.04], + [48429,0.757], + [48431,0.641], + [48433,0.809], + [48435,0.397], + [48437,0.512], + [48439,0.518], + [48441,0.67], + [48443,0.503], + [48445,0.454], + [48447,0.885], + [48449,0.492], + [48451,0.579], + [48453,0.505], + [48455,0.81], + [48457,0.804], + [48459,0.821], + [48461,0.48], + [48463,0.29], + [48465,0.175], + [48467,0.858], + [48469,0.479], + [48471,0.585], + [48473,0.446], + [48475,0.462], + [48477,0.664], + [48479,0.033], + [48481,0.477], + [48483,0.711], + [48485,0.684], + [48487,0.634], + [48489,0.101], + [48491,0.638], + [48493,0.587], + [48495,0.425], + [48497,0.797], + [48499,0.849], + [48501,0.392], + [48503,0.806], + [48505,0.061], + [48507,0.055], + [49001,0.86], + [49003,0.883], + [49005,0.855], + [49007,0.841], + [49009,0.944], + [49011,0.858], + [49013,0.871], + [49015,0.921], + [49017,0.916], + [49019,0.841], + [49021,0.871], + [49023,0.94], + [49025,0.932], + [49027,0.847], + [49029,0.961], + [49031,0.912], + [49033,0.941], + [49035,0.74], + [49037,0.439], + [49039,0.867], + [49041,0.929], + [49043,0.854], + [49045,0.845], + [49047,0.828], + [49049,0.842], + [49051,0.842], + [49053,0.856], + [49055,0.934], + [49057,0.781], + [50001,0.941], + [50003,0.957], + [50005,0.958], + [50007,0.913], + [50009,0.966], + [50011,0.949], + [50013,0.947], + [50015,0.957], + [50017,0.964], + [50019,0.96], + [50021,0.963], + [50023,0.949], + [50025,0.941], + [50027,0.955], + [51001,0.611], + [51003,0.779], + [51005,0.926], + [51007,0.728], + [51009,0.757], + [51011,0.767], + [51013,0.64], + [51015,0.922], + [51017,0.922], + [51019,0.903], + [51021,0.952], + [51023,0.942], + [51025,0.398], + [51027,0.963], + [51029,0.612], + [51031,0.813], + [51033,0.636], + [51035,0.959], + [51036,0.405], + [51037,0.666], + [51041,0.654], + [51043,0.883], + [51045,0.983], + [51047,0.717], + [51049,0.632], + [51051,0.984], + [51053,0.629], + [51057,0.56], + [51059,0.546], + [51061,0.819], + [51063,0.941], + [51065,0.791], + [51067,0.874], + [51069,0.863], + [51071,0.959], + [51073,0.857], + [51075,0.764], + [51077,0.942], + [51079,0.858], + [51081,0.378], + [51083,0.602], + [51085,0.855], + [51087,0.569], + [51089,0.715], + [51091,0.984], + [51093,0.708], + [51095,0.777], + [51097,0.655], + [51099,0.746], + [51101,0.76], + [51103,0.696], + [51105,0.934], + [51107,0.624], + [51109,0.771], + [51111,0.599], + [51113,0.856], + [51115,0.873], + [51117,0.587], + [51119,0.785], + [51121,0.859], + [51125,0.818], + [51127,0.803], + [51131,0.545], + [51133,0.701], + [51135,0.555], + [51137,0.807], + [51139,0.951], + [51141,0.902], + [51143,0.744], + [51145,0.828], + [51147,0.622], + [51149,0.583], + [51153,0.487], + [51155,0.917], + [51157,0.902], + [51159,0.622], + [51161,0.886], + [51163,0.938], + [51165,0.913], + [51167,0.974], + [51169,0.974], + [51171,0.902], + [51173,0.951], + [51175,0.6], + [51177,0.72], + [51179,0.678], + [51181,0.508], + [51183,0.386], + [51185,0.947], + [51187,0.887], + [51191,0.962], + [51193,0.635], + [51195,0.924], + [51197,0.946], + [51199,0.74], + [51510,0.535], + [51520,0.903], + [51530,0.9], + [51540,0.663], + [51550,0.604], + [51570,0.805], + [51580,0.831], + [51590,0.467], + [51595,0.312], + [51600,0.614], + [51610,0.737], + [51620,0.388], + [51630,0.608], + [51640,0.781], + [51650,0.41], + [51660,0.724], + [51670,0.531], + [51678,0.825], + [51680,0.63], + [51683,0.476], + [51685,0.425], + [51690,0.485], + [51700,0.46], + [51710,0.443], + [51720,0.879], + [51730,0.151], + [51735,0.938], + [51740,0.403], + [51750,0.858], + [51760,0.391], + [51770,0.619], + [51775,0.873], + [51790,0.825], + [51800,0.509], + [51810,0.645], + [51820,0.795], + [51830,0.707], + [51840,0.69], + [53001,0.388], + [53003,0.926], + [53005,0.745], + [53007,0.707], + [53009,0.846], + [53011,0.818], + [53013,0.895], + [53015,0.858], + [53017,0.678], + [53019,0.75], + [53021,0.432], + [53023,0.928], + [53025,0.573], + [53027,0.814], + [53029,0.831], + [53031,0.893], + [53033,0.648], + [53035,0.791], + [53037,0.861], + [53039,0.838], + [53041,0.86], + [53043,0.936], + [53045,0.829], + [53047,0.683], + [53049,0.846], + [53051,0.898], + [53053,0.703], + [53055,0.902], + [53057,0.767], + [53059,0.896], + [53061,0.743], + [53063,0.867], + [53065,0.879], + [53067,0.789], + [53069,0.925], + [53071,0.742], + [53073,0.819], + [53075,0.821], + [53077,0.477], + [54001,0.965], + [54003,0.858], + [54005,0.983], + [54007,0.978], + [54009,0.966], + [54011,0.909], + [54013,0.979], + [54015,0.985], + [54017,0.966], + [54019,0.929], + [54021,0.8], + [54023,0.973], + [54025,0.939], + [54027,0.966], + [54029,0.95], + [54031,0.922], + [54033,0.95], + [54035,0.978], + [54037,0.852], + [54039,0.886], + [54041,0.975], + [54043,0.987], + [54045,0.96], + [54047,0.888], + [54049,0.937], + [54051,0.974], + [54053,0.974], + [54055,0.911], + [54057,0.948], + [54059,0.967], + [54061,0.897], + [54063,0.971], + [54065,0.966], + [54067,0.979], + [54069,0.926], + [54071,0.956], + [54073,0.967], + [54075,0.973], + [54077,0.971], + [54079,0.962], + [54081,0.878], + [54083,0.968], + [54085,0.983], + [54087,0.979], + [54089,0.922], + [54091,0.969], + [54093,0.984], + [54095,0.985], + [54097,0.969], + [54099,0.982], + [54101,0.982], + [54103,0.984], + [54105,0.981], + [54107,0.959], + [54109,0.978], + [55001,0.911], + [55003,0.838], + [55005,0.95], + [55007,0.863], + [55009,0.837], + [55011,0.967], + [55013,0.91], + [55015,0.926], + [55017,0.946], + [55019,0.947], + [55021,0.944], + [55023,0.961], + [55025,0.819], + [55027,0.916], + [55029,0.953], + [55031,0.925], + [55033,0.94], + [55035,0.921], + [55037,0.969], + [55039,0.919], + [55041,0.822], + [55043,0.963], + [55045,0.953], + [55047,0.944], + [55049,0.967], + [55051,0.976], + [55053,0.88], + [55055,0.907], + [55057,0.927], + [55059,0.78], + [55061,0.959], + [55063,0.911], + [55065,0.956], + [55067,0.957], + [55069,0.966], + [55071,0.923], + [55073,0.903], + [55075,0.964], + [55077,0.954], + [55078,0.106], + [55079,0.543], + [55081,0.924], + [55083,0.96], + [55085,0.96], + [55087,0.896], + [55089,0.934], + [55091,0.978], + [55093,0.957], + [55095,0.961], + [55097,0.927], + [55099,0.965], + [55101,0.744], + [55103,0.961], + [55105,0.845], + [55107,0.968], + [55109,0.947], + [55111,0.925], + [55113,0.785], + [55115,0.881], + [55117,0.87], + [55119,0.972], + [55121,0.929], + [55123,0.97], + [55125,0.865], + [55127,0.868], + [55129,0.957], + [55131,0.943], + [55133,0.906], + [55135,0.957], + [55137,0.911], + [55139,0.907], + [55141,0.939], + [56001,0.848], + [56003,0.894], + [56005,0.889], + [56007,0.798], + [56009,0.913], + [56011,0.959], + [56013,0.715], + [56015,0.879], + [56017,0.946], + [56019,0.944], + [56021,0.808], + [56023,0.935], + [56025,0.891], + [56027,0.95], + [56029,0.925], + [56031,0.912], + [56033,0.931], + [56035,0.904], + [56037,0.809], + [56039,0.822], + [56041,0.885], + [56043,0.839], + [56045,0.938] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2017.json b/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2017.json new file mode 100644 index 0000000..75c55b3 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "White (Non-Hispanic) Population", + "description" : "Percent of the population that is white (non-hispanic) in the year 2017.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.white.nonhispanic.2017"], + [1001,0.7542], + [1003,0.8308], + [1005,0.4574], + [1007,0.7462], + [1009,0.8737], + [1011,0.2161], + [1013,0.5225], + [1015,0.7272], + [1017,0.5619], + [1019,0.9178], + [1021,0.8037], + [1023,0.5626], + [1025,0.5302], + [1027,0.802], + [1029,0.9266], + [1031,0.71], + [1033,0.7877], + [1035,0.503], + [1037,0.6527], + [1039,0.8348], + [1041,0.712], + [1043,0.9233], + [1045,0.6946], + [1047,0.2774], + [1049,0.8078], + [1051,0.7342], + [1053,0.6023], + [1055,0.783], + [1057,0.8503], + [1059,0.7768], + [1061,0.8399], + [1063,0.171], + [1065,0.3951], + [1067,0.6871], + [1069,0.672], + [1071,0.8932], + [1073,0.5038], + [1075,0.8602], + [1077,0.849], + [1079,0.7658], + [1081,0.676], + [1083,0.7719], + [1085,0.2427], + [1087,0.1546], + [1089,0.6515], + [1091,0.4512], + [1093,0.9195], + [1095,0.8177], + [1097,0.5754], + [1099,0.5446], + [1101,0.3519], + [1103,0.7637], + [1105,0.2937], + [1107,0.5411], + [1109,0.5636], + [1111,0.7526], + [1113,0.478], + [1115,0.8624], + [1117,0.7851], + [1119,0.2459], + [1121,0.6312], + [1123,0.689], + [1125,0.624], + [1127,0.8939], + [1129,0.6513], + [1131,0.269], + [1133,0.9411], + [2013,0.1546], + [2016,0.2481], + [2020,0.5919], + [2050,0.1017], + [2060,0.5027], + [2068,0.8272], + [2070,0.1624], + [2090,0.7108], + [2100,0.7895], + [2105,0.4357], + [2110,0.6541], + [2122,0.8099], + [2130,0.6442], + [2150,0.5011], + [2158,null], + [2164,0.2175], + [2170,0.7992], + [2180,0.1485], + [2185,0.3128], + [2188,0.111], + [2195,0.6715], + [2198,0.4528], + [2220,0.6241], + [2230,0.7861], + [2240,0.7493], + [2261,0.7022], + [2275,0.6444], + [2282,0.437], + [2290,0.2135], + [4001,0.1845], + [4003,0.5565], + [4005,0.5429], + [4007,0.6277], + [4009,0.5117], + [4011,0.4758], + [4012,0.5873], + [4013,0.5631], + [4015,0.7802], + [4017,0.4164], + [4019,0.5262], + [4021,0.5744], + [4023,0.1504], + [4025,0.809], + [4027,0.3182], + [5001,0.7015], + [5003,0.6801], + [5005,0.951], + [5007,0.7422], + [5009,0.9424], + [5011,0.5588], + [5013,0.726], + [5015,0.806], + [5017,0.3914], + [5019,0.6908], + [5021,0.9577], + [5023,0.9482], + [5025,0.847], + [5027,0.5936], + [5029,0.8179], + [5031,0.7734], + [5033,0.8505], + [5035,0.4318], + [5037,0.7296], + [5039,0.5322], + [5041,0.4573], + [5043,0.6693], + [5045,0.8064], + [5047,0.9242], + [5049,0.9556], + [5051,0.8258], + [5053,0.9301], + [5055,0.9387], + [5057,0.5519], + [5059,0.828], + [5061,0.6496], + [5063,0.8916], + [5065,0.9353], + [5067,0.7723], + [5069,0.3959], + [5071,0.8035], + [5073,0.5928], + [5075,0.9577], + [5077,0.4068], + [5079,0.6455], + [5081,0.732], + [5083,0.9082], + [5085,0.8653], + [5087,0.9016], + [5089,0.9467], + [5091,0.6943], + [5093,0.5872], + [5095,0.5437], + [5097,0.9094], + [5099,0.6336], + [5101,0.9432], + [5103,0.5555], + [5105,0.9225], + [5107,0.3457], + [5109,0.8756], + [5111,0.874], + [5113,0.8803], + [5115,0.8474], + [5117,0.8496], + [5119,0.5319], + [5121,0.9506], + [5123,0.4039], + [5125,0.8587], + [5127,0.8449], + [5129,0.9345], + [5131,0.7044], + [5133,0.5834], + [5135,0.9387], + [5137,0.9494], + [5139,0.6108], + [5141,0.9368], + [5143,0.7192], + [5145,0.8844], + [5147,0.692], + [5149,0.7558], + [6001,0.3221], + [6003,0.6459], + [6005,0.7927], + [6007,0.729], + [6009,0.8197], + [6011,0.3631], + [6013,0.4493], + [6015,0.628], + [6017,0.7845], + [6019,0.3023], + [6021,0.5249], + [6023,0.7488], + [6025,0.1132], + [6027,0.6352], + [6029,0.3535], + [6031,0.3311], + [6033,0.717], + [6035,0.6613], + [6037,0.2649], + [6039,0.3506], + [6041,0.7146], + [6043,0.8103], + [6045,0.6592], + [6047,0.2883], + [6049,0.7802], + [6051,0.6607], + [6053,0.3061], + [6055,0.532], + [6057,0.8538], + [6059,0.414], + [6061,0.738], + [6063,0.8353], + [6065,0.3657], + [6067,0.4575], + [6069,0.3557], + [6071,0.2982], + [6073,0.462], + [6075,0.4084], + [6077,0.3317], + [6079,0.6938], + [6081,0.3992], + [6083,0.4531], + [6085,0.3256], + [6087,0.5782], + [6089,0.8044], + [6091,0.8697], + [6093,0.7716], + [6095,0.3895], + [6097,0.6384], + [6099,0.4335], + [6101,0.4733], + [6103,0.6922], + [6105,0.8281], + [6107,0.2951], + [6109,0.8083], + [6111,0.4613], + [6113,0.4753], + [6115,0.5629], + [8001,0.5109], + [8003,0.4863], + [8005,0.6131], + [8007,0.7672], + [8009,0.857], + [8011,0.608], + [8013,0.7816], + [8014,0.7761], + [8015,0.8531], + [8017,0.8002], + [8019,0.8988], + [8021,0.4393], + [8023,0.3208], + [8025,0.6237], + [8027,0.8972], + [8029,0.8162], + [8031,0.5361], + [8033,0.913], + [8035,0.8331], + [8037,0.6731], + [8039,0.8938], + [8041,0.6991], + [8043,0.7947], + [8045,0.6864], + [8047,0.8617], + [8049,0.8686], + [8051,0.8741], + [8053,0.9085], + [8055,0.6419], + [8057,0.7485], + [8059,0.7866], + [8061,0.8801], + [8063,0.7627], + [8065,0.6427], + [8067,0.7904], + [8069,0.8318], + [8071,0.5271], + [8073,0.6639], + [8075,0.7806], + [8077,0.8176], + [8079,0.8381], + [8081,0.8145], + [8083,0.7309], + [8085,0.7622], + [8087,0.5925], + [8089,0.5449], + [8091,0.9248], + [8093,0.8967], + [8095,0.774], + [8097,0.8572], + [8099,0.6003], + [8101,0.5243], + [8103,0.8835], + [8105,0.5216], + [8107,0.8976], + [8109,0.5825], + [8111,0.8612], + [8113,0.8692], + [8115,0.8252], + [8117,0.8195], + [8119,0.8947], + [8121,0.8775], + [8123,0.6641], + [8125,0.7567], + [9001,0.6284], + [9003,0.6251], + [9005,0.8945], + [9007,0.8441], + [9009,0.6414], + [9011,0.7618], + [9013,0.8544], + [9015,0.8351], + [10001,0.6274], + [10003,0.5854], + [10005,0.7485], + [11001,0.3598], + [12001,0.6201], + [12003,0.819], + [12005,0.7729], + [12007,0.7452], + [12009,0.7528], + [12011,0.3815], + [12013,0.7687], + [12015,0.8444], + [12017,0.8862], + [12019,0.7416], + [12021,0.6363], + [12023,0.7305], + [12027,0.5545], + [12029,0.8481], + [12031,0.5409], + [12033,0.6484], + [12035,0.7474], + [12037,0.7822], + [12039,0.3259], + [12041,0.8715], + [12043,0.6066], + [12045,0.7447], + [12047,0.5487], + [12049,0.4737], + [12051,0.3353], + [12053,0.793], + [12055,0.6838], + [12057,0.5028], + [12059,0.8711], + [12061,0.7592], + [12063,0.6554], + [12065,0.5822], + [12067,0.6832], + [12069,0.711], + [12071,0.6845], + [12073,0.5718], + [12075,0.8026], + [12077,0.7487], + [12079,0.544], + [12081,0.7187], + [12083,0.7128], + [12085,0.7899], + [12086,0.1374], + [12087,0.6729], + [12089,0.875], + [12091,0.7451], + [12093,0.6401], + [12095,0.4161], + [12097,0.3417], + [12099,0.56], + [12101,0.7643], + [12103,0.7466], + [12105,0.6098], + [12107,0.7173], + [12109,0.836], + [12111,0.5859], + [12113,0.8286], + [12115,0.8349], + [12117,0.6227], + [12119,0.8473], + [12121,0.7575], + [12123,0.7184], + [12125,0.6988], + [12127,0.7291], + [12129,0.7932], + [12131,0.8432], + [12133,0.7763], + [13001,0.6965], + [13003,0.5663], + [13005,0.7364], + [13007,0.5214], + [13009,0.5286], + [13011,0.8836], + [13013,0.7298], + [13015,0.7825], + [13017,0.5651], + [13019,0.8232], + [13021,0.3933], + [13023,0.6885], + [13025,0.9265], + [13027,0.5677], + [13029,0.7427], + [13031,0.6398], + [13033,0.4704], + [13035,0.6659], + [13037,0.3249], + [13039,0.7011], + [13043,0.6123], + [13045,0.7111], + [13047,0.914], + [13049,0.6204], + [13051,0.4908], + [13053,0.591], + [13055,0.831], + [13057,0.7986], + [13059,0.5557], + [13061,0.3026], + [13063,0.1125], + [13065,0.657], + [13067,0.5307], + [13069,0.5859], + [13071,0.565], + [13073,0.7014], + [13075,0.6493], + [13077,0.7155], + [13079,0.735], + [13081,0.5061], + [13083,0.9381], + [13085,0.9278], + [13087,0.5086], + [13089,0.2905], + [13091,0.6527], + [13093,0.4256], + [13095,0.262], + [13097,0.4338], + [13099,0.4605], + [13101,0.6502], + [13103,0.7926], + [13105,0.6346], + [13107,0.5945], + [13109,0.5649], + [13111,0.9529], + [13113,0.6414], + [13115,0.7139], + [13117,0.749], + [13119,0.8394], + [13121,0.3992], + [13123,0.8554], + [13125,0.8738], + [13127,0.6376], + [13129,0.7799], + [13131,0.5835], + [13133,0.5641], + [13135,0.3926], + [13137,0.773], + [13139,0.6156], + [13141,0.2406], + [13143,0.912], + [13145,0.7713], + [13147,0.751], + [13149,0.8497], + [13151,0.4674], + [13153,0.5747], + [13155,0.6763], + [13157,0.8235], + [13159,0.7362], + [13161,0.7164], + [13163,0.4171], + [13165,0.5624], + [13167,0.6264], + [13169,0.7189], + [13171,0.6502], + [13173,0.687], + [13175,0.5815], + [13177,0.728], + [13179,0.4026], + [13181,0.6542], + [13183,0.5851], + [13185,0.5452], + [13187,0.9077], + [13189,0.5417], + [13191,0.6172], + [13193,0.3262], + [13195,0.8291], + [13197,0.5918], + [13199,0.5632], + [13201,0.6837], + [13205,0.4626], + [13207,0.7209], + [13209,0.6448], + [13211,0.7163], + [13213,0.8332], + [13215,0.4107], + [13217,0.4871], + [13219,0.8485], + [13221,0.7592], + [13223,0.7303], + [13225,0.4597], + [13227,0.9365], + [13229,0.8408], + [13231,0.867], + [13233,0.7197], + [13235,0.6005], + [13237,0.6538], + [13239,0.4192], + [13241,0.8706], + [13243,0.3623], + [13245,0.3554], + [13247,0.3458], + [13249,0.6722], + [13251,0.5451], + [13253,0.6161], + [13255,0.5937], + [13257,0.8283], + [13259,0.2582], + [13261,0.3979], + [13263,0.402], + [13265,0.3373], + [13267,0.584], + [13269,0.5749], + [13271,0.4907], + [13273,0.3551], + [13275,0.5767], + [13277,0.5634], + [13279,0.6051], + [13281,0.9499], + [13283,0.6798], + [13285,0.5725], + [13287,0.5467], + [13289,0.5493], + [13291,0.9417], + [13293,0.6758], + [13295,0.9139], + [13297,0.7595], + [13299,0.6381], + [13301,0.3719], + [13303,0.4323], + [13305,0.7121], + [13307,0.4838], + [13309,0.5615], + [13311,0.9251], + [13313,0.595], + [13315,0.5849], + [13317,0.5113], + [13319,0.5683], + [13321,0.6737], + [15001,0.3033], + [15003,0.1872], + [15005,0.2093], + [15007,0.2962], + [15009,0.3051], + [16001,0.8522], + [16003,0.9265], + [16005,0.8453], + [16007,0.9366], + [16009,0.8472], + [16011,0.7401], + [16013,0.765], + [16015,0.9176], + [16017,0.9355], + [16019,0.8361], + [16021,0.9091], + [16023,0.946], + [16025,0.9041], + [16027,0.7093], + [16029,0.9352], + [16031,0.7039], + [16033,0.5137], + [16035,0.9098], + [16037,0.922], + [16039,0.7335], + [16041,0.9132], + [16043,0.8511], + [16045,0.8804], + [16047,0.6814], + [16049,0.9133], + [16051,0.8707], + [16053,0.6311], + [16055,0.9101], + [16057,0.8942], + [16059,0.9333], + [16061,0.8562], + [16063,0.6728], + [16065,0.8899], + [16067,0.6306], + [16069,0.8724], + [16071,0.9372], + [16073,0.6817], + [16075,0.7881], + [16077,0.625], + [16079,0.9181], + [16081,0.8112], + [16083,0.8021], + [16085,0.9471], + [16087,0.7867], + [17001,0.9204], + [17003,0.6184], + [17005,0.8783], + [17007,0.74], + [17009,0.7361], + [17011,0.8841], + [17013,0.9669], + [17015,0.934], + [17017,0.762], + [17019,0.6834], + [17021,0.9521], + [17023,0.9667], + [17025,0.9638], + [17027,0.9158], + [17029,0.9096], + [17031,0.4268], + [17033,0.9101], + [17035,0.9672], + [17037,0.7764], + [17039,0.8908], + [17041,0.9051], + [17043,0.6786], + [17045,0.9716], + [17047,0.9673], + [17049,0.9602], + [17051,0.9179], + [17053,0.9434], + [17055,0.9602], + [17057,0.9196], + [17059,0.9585], + [17061,0.9672], + [17063,0.8713], + [17065,0.9892], + [17067,0.9633], + [17069,0.9313], + [17071,0.9629], + [17073,0.9084], + [17075,0.9034], + [17077,0.7445], + [17079,0.9719], + [17081,0.858], + [17083,0.9607], + [17085,0.9492], + [17087,0.8467], + [17089,0.5755], + [17091,0.7217], + [17093,0.7116], + [17095,0.8337], + [17097,0.6278], + [17099,0.8609], + [17101,0.8458], + [17103,0.8674], + [17105,0.8923], + [17107,0.8649], + [17109,0.8818], + [17111,0.8192], + [17113,0.7981], + [17115,0.767], + [17117,0.963], + [17119,0.8552], + [17121,0.9152], + [17123,0.9485], + [17125,0.967], + [17127,0.8869], + [17129,0.9581], + [17131,0.9582], + [17133,0.9655], + [17135,0.9087], + [17137,0.8902], + [17139,0.9705], + [17141,0.873], + [17143,0.7039], + [17145,0.8626], + [17147,0.9271], + [17149,0.9551], + [17151,0.9046], + [17153,0.6364], + [17155,0.9244], + [17157,0.8501], + [17159,0.9557], + [17161,0.7261], + [17163,0.6212], + [17165,0.9159], + [17167,0.8076], + [17169,0.9343], + [17171,0.9718], + [17173,0.9739], + [17175,0.9609], + [17177,0.8333], + [17179,0.9418], + [17181,0.9139], + [17183,0.7876], + [17185,0.9494], + [17187,0.8437], + [17189,0.9621], + [17191,0.964], + [17193,0.9661], + [17195,0.8489], + [17197,0.6474], + [17199,0.9014], + [17201,0.7024], + [17203,0.9568], + [18001,0.9373], + [18003,0.746], + [18005,0.8322], + [18007,0.9283], + [18009,0.9596], + [18011,0.9163], + [18013,0.9588], + [18015,0.9421], + [18017,0.8098], + [18019,0.8389], + [18021,0.9641], + [18023,0.83], + [18025,0.9638], + [18027,0.923], + [18029,0.9634], + [18031,0.9491], + [18033,0.9513], + [18035,0.8708], + [18037,0.9121], + [18039,0.7535], + [18041,0.9583], + [18043,0.8825], + [18045,0.9556], + [18047,0.9836], + [18049,0.9227], + [18051,0.9424], + [18053,0.8534], + [18055,0.9682], + [18057,0.8446], + [18059,0.9304], + [18061,0.9566], + [18063,0.8578], + [18065,0.9384], + [18067,0.8579], + [18069,0.9517], + [18071,0.893], + [18073,0.9173], + [18075,0.951], + [18077,0.9299], + [18079,0.9537], + [18081,0.9029], + [18083,0.9292], + [18085,0.886], + [18087,0.9438], + [18089,0.5448], + [18091,0.7988], + [18093,0.9591], + [18095,0.8535], + [18097,0.5669], + [18099,0.8796], + [18101,0.9719], + [18103,0.8929], + [18105,0.8413], + [18107,0.9222], + [18109,0.9632], + [18111,0.9153], + [18113,0.876], + [18115,0.9673], + [18117,0.9556], + [18119,0.9645], + [18121,0.9482], + [18123,0.9433], + [18125,0.968], + [18127,0.8396], + [18129,0.9616], + [18131,0.9465], + [18133,0.9186], + [18135,0.9387], + [18137,0.9563], + [18139,0.961], + [18141,0.7357], + [18143,0.9584], + [18145,0.9263], + [18147,0.9507], + [18149,0.945], + [18151,0.9402], + [18153,0.9212], + [18155,0.9567], + [18157,0.7701], + [18159,0.9534], + [18161,0.9585], + [18163,0.8412], + [18165,0.9682], + [18167,0.8584], + [18169,0.9453], + [18171,0.9647], + [18173,0.928], + [18175,0.9691], + [18177,0.885], + [18179,0.9496], + [18181,0.8983], + [18183,0.9575], + [19001,0.9664], + [19003,0.968], + [19005,0.9122], + [19007,0.9571], + [19009,0.9713], + [19011,0.9664], + [19013,0.8217], + [19015,0.9456], + [19017,0.9532], + [19019,0.9638], + [19021,0.6145], + [19023,0.9681], + [19025,0.9476], + [19027,0.9529], + [19029,0.9577], + [19031,0.958], + [19033,0.9123], + [19035,0.9399], + [19037,0.963], + [19039,0.8462], + [19041,0.9398], + [19043,0.9615], + [19045,0.9146], + [19047,0.6753], + [19049,0.862], + [19051,0.9705], + [19053,0.9315], + [19055,0.9699], + [19057,0.8803], + [19059,0.9614], + [19061,0.9141], + [19063,0.8795], + [19065,0.9412], + [19067,0.9281], + [19069,0.8586], + [19071,0.953], + [19073,0.9506], + [19075,0.9713], + [19077,0.956], + [19079,0.8961], + [19081,0.9379], + [19083,0.9227], + [19085,0.9651], + [19087,0.886], + [19089,0.9666], + [19091,0.9403], + [19093,0.9598], + [19095,0.9564], + [19097,0.9571], + [19099,0.9418], + [19101,0.8063], + [19103,0.7964], + [19105,0.9441], + [19107,0.9681], + [19109,0.9546], + [19111,0.9097], + [19113,0.8701], + [19115,0.7863], + [19117,0.9913], + [19119,0.9607], + [19121,0.9594], + [19123,0.938], + [19125,0.9478], + [19127,0.7248], + [19129,0.9457], + [19131,0.9681], + [19133,0.9516], + [19135,0.9349], + [19137,0.9415], + [19139,0.7777], + [19141,0.9316], + [19143,0.9037], + [19145,0.9156], + [19147,0.9435], + [19149,0.9279], + [19151,0.9359], + [19153,0.7854], + [19155,0.8829], + [19157,0.9201], + [19159,0.9603], + [19161,0.9551], + [19163,0.8066], + [19165,0.9503], + [19167,0.8751], + [19169,0.8453], + [19171,0.8222], + [19173,0.9073], + [19175,0.9447], + [19177,0.9685], + [19179,0.8379], + [19181,0.947], + [19183,0.915], + [19185,0.9646], + [19187,0.881], + [19189,0.9226], + [19191,0.9523], + [19193,0.7466], + [19195,0.9467], + [19197,0.8671], + [20001,0.9069], + [20003,0.9518], + [20005,0.8842], + [20007,0.9238], + [20009,0.8201], + [20011,0.9049], + [20013,0.8339], + [20015,0.8948], + [20017,0.9156], + [20019,0.8666], + [20021,0.8858], + [20023,0.9025], + [20025,0.8315], + [20027,0.9449], + [20029,0.9332], + [20031,0.9366], + [20033,0.9081], + [20035,0.8019], + [20037,0.8736], + [20039,0.9471], + [20041,0.9113], + [20043,0.9024], + [20045,0.7914], + [20047,0.7722], + [20049,0.9105], + [20051,0.9018], + [20053,0.861], + [20055,0.4258], + [20057,0.4076], + [20059,0.9098], + [20061,0.5723], + [20063,0.946], + [20065,0.8883], + [20067,0.5178], + [20069,0.8429], + [20071,0.7479], + [20073,0.9239], + [20075,0.6375], + [20077,0.9034], + [20079,0.8325], + [20081,0.6964], + [20083,0.8795], + [20085,0.8428], + [20087,0.9385], + [20089,0.9555], + [20091,0.8052], + [20093,0.6591], + [20095,0.9378], + [20097,0.8918], + [20099,0.8545], + [20101,0.9042], + [20103,0.7915], + [20105,0.9567], + [20107,0.9388], + [20109,0.9065], + [20111,0.7157], + [20113,0.9184], + [20115,0.9321], + [20117,0.9499], + [20119,0.8023], + [20121,0.9307], + [20123,0.9557], + [20125,0.8009], + [20127,0.9233], + [20129,0.7243], + [20131,0.9558], + [20133,0.9057], + [20135,0.8847], + [20137,0.8945], + [20139,0.9366], + [20141,0.9473], + [20143,0.9429], + [20145,0.8447], + [20147,0.9409], + [20149,0.8986], + [20151,0.9153], + [20153,0.9171], + [20155,0.8472], + [20157,0.9617], + [20159,0.84], + [20161,0.769], + [20163,0.9452], + [20165,0.9426], + [20167,0.9319], + [20169,0.8052], + [20171,0.7954], + [20173,0.6863], + [20175,0.3161], + [20177,0.7448], + [20179,0.9383], + [20181,0.8481], + [20183,0.951], + [20185,0.8367], + [20187,0.5918], + [20189,0.6198], + [20191,0.8999], + [20193,0.9121], + [20195,0.9455], + [20197,0.9297], + [20199,0.9365], + [20201,0.9433], + [20203,0.6963], + [20205,0.9236], + [20207,0.9311], + [20209,0.4157], + [21001,0.9344], + [21003,0.954], + [21005,0.9423], + [21007,0.9302], + [21009,0.9071], + [21011,0.9541], + [21013,0.9447], + [21015,0.8843], + [21017,0.8518], + [21019,0.9326], + [21021,0.8592], + [21023,0.9643], + [21025,0.97], + [21027,0.9467], + [21029,0.9492], + [21031,0.9507], + [21033,0.9106], + [21035,0.8975], + [21037,0.9239], + [21039,0.9436], + [21041,0.8906], + [21043,0.9681], + [21045,0.9503], + [21047,0.6634], + [21049,0.9046], + [21051,0.9263], + [21053,0.961], + [21055,0.9635], + [21057,0.9296], + [21059,0.8886], + [21061,0.9547], + [21063,0.9606], + [21065,0.9755], + [21067,0.7175], + [21069,0.9606], + [21071,0.9727], + [21073,0.8193], + [21075,0.7119], + [21077,0.9126], + [21079,0.9428], + [21081,0.9388], + [21083,0.871], + [21085,0.9533], + [21087,0.944], + [21089,0.9632], + [21091,0.9579], + [21093,0.7627], + [21095,0.9519], + [21097,0.9375], + [21099,0.9175], + [21101,0.87], + [21103,0.9177], + [21105,0.8718], + [21107,0.8879], + [21109,0.9935], + [21111,0.6855], + [21113,0.8959], + [21115,0.975], + [21117,0.8891], + [21119,0.9723], + [21121,0.96], + [21123,0.9165], + [21125,0.9593], + [21127,0.9723], + [21129,0.9677], + [21131,0.9776], + [21133,0.9771], + [21135,0.9789], + [21137,0.9434], + [21139,0.9579], + [21141,0.888], + [21143,0.9104], + [21145,0.8356], + [21147,0.8973], + [21149,0.9626], + [21151,0.8981], + [21153,0.9897], + [21155,0.877], + [21157,0.9674], + [21159,0.924], + [21161,0.894], + [21163,0.8948], + [21165,0.9779], + [21167,0.9115], + [21169,0.9515], + [21171,0.9356], + [21173,0.9297], + [21175,0.932], + [21177,0.9215], + [21179,0.9057], + [21181,0.9601], + [21183,0.9444], + [21185,0.8848], + [21187,0.9492], + [21189,0.9424], + [21191,0.9659], + [21193,0.9563], + [21195,0.9698], + [21197,0.9628], + [21199,0.9421], + [21201,0.9463], + [21203,0.975], + [21205,0.9454], + [21207,0.94], + [21209,0.8717], + [21211,0.804], + [21213,0.8548], + [21215,0.9445], + [21217,0.898], + [21219,0.8598], + [21221,0.8831], + [21223,0.9449], + [21225,0.8265], + [21227,0.7962], + [21229,0.8774], + [21231,0.9354], + [21233,0.8864], + [21235,0.9607], + [21237,0.9822], + [21239,0.8647], + [22001,0.7753], + [22003,0.7112], + [22005,0.6935], + [22007,0.6575], + [22009,0.6533], + [22011,0.7998], + [22013,0.5429], + [22015,0.676], + [22017,0.4556], + [22019,0.682], + [22021,0.7906], + [22023,0.9133], + [22025,0.6596], + [22027,0.4559], + [22029,0.5686], + [22031,0.5815], + [22033,0.4522], + [22035,0.2732], + [22037,0.5294], + [22039,0.6697], + [22041,0.6528], + [22043,0.7659], + [22045,0.5922], + [22047,0.4769], + [22049,0.6694], + [22051,0.5341], + [22053,0.7855], + [22055,0.661], + [22057,0.7688], + [22059,0.8291], + [22061,0.5323], + [22063,0.8841], + [22065,0.3414], + [22067,0.4953], + [22069,0.5266], + [22071,0.3057], + [22073,0.5835], + [22075,0.6517], + [22077,0.6042], + [22079,0.6142], + [22081,0.5702], + [22083,0.6052], + [22085,0.6811], + [22087,0.6347], + [22089,0.6549], + [22091,0.4407], + [22093,0.4802], + [22095,0.3635], + [22097,0.5465], + [22099,0.6438], + [22101,0.5612], + [22103,0.7911], + [22105,0.6353], + [22107,0.4232], + [22109,0.6711], + [22111,0.6862], + [22113,0.784], + [22115,0.701], + [22117,0.6576], + [22119,0.6222], + [22121,0.5681], + [22123,0.7963], + [22125,0.5206], + [22127,0.6522], + [23001,0.9114], + [23003,0.9446], + [23005,0.9071], + [23007,0.9579], + [23009,0.9507], + [23011,0.9489], + [23013,0.9564], + [23015,0.9617], + [23017,0.9561], + [23019,0.9405], + [23021,0.9539], + [23023,0.9486], + [23025,0.9599], + [23027,0.9575], + [23029,0.9006], + [23031,0.946], + [24001,0.8734], + [24003,0.6963], + [24005,0.5873], + [24009,0.7881], + [24011,0.7632], + [24013,0.8983], + [24015,0.8582], + [24017,0.4312], + [24019,0.6384], + [24021,0.7485], + [24023,0.9663], + [24025,0.7696], + [24027,0.541], + [24029,0.7813], + [24031,0.4501], + [24033,0.1328], + [24035,0.8659], + [24037,0.751], + [24039,0.5147], + [24041,0.7762], + [24043,0.8037], + [24045,0.6387], + [24047,0.8], + [24510,0.2758], + [25001,0.9019], + [25003,0.8899], + [25005,0.8279], + [25007,0.8695], + [25009,0.7198], + [25011,0.9118], + [25013,0.6407], + [25015,0.8424], + [25017,0.7333], + [25019,0.7377], + [25021,0.7665], + [25023,0.8187], + [25025,0.4549], + [25027,0.7786], + [26001,0.96], + [26003,0.8416], + [26005,0.8873], + [26007,0.9603], + [26009,0.9502], + [26011,0.9491], + [26013,0.7309], + [26015,0.9463], + [26017,0.9035], + [26019,0.9393], + [26021,0.7513], + [26023,0.9093], + [26025,0.7827], + [26027,0.8641], + [26029,0.9399], + [26031,0.9222], + [26033,0.7012], + [26035,0.9506], + [26037,0.9021], + [26039,0.9499], + [26041,0.9321], + [26043,0.9559], + [26045,0.8339], + [26047,0.9139], + [26049,0.7251], + [26051,0.9624], + [26053,0.8964], + [26055,0.9263], + [26057,0.8647], + [26059,0.9505], + [26061,0.9242], + [26063,0.9546], + [26065,0.706], + [26067,0.8835], + [26069,0.9429], + [26071,0.9496], + [26073,0.8585], + [26075,0.8498], + [26077,0.7804], + [26079,0.9469], + [26081,0.7442], + [26083,0.9747], + [26085,0.8482], + [26087,0.9202], + [26089,0.9022], + [26091,0.8701], + [26093,0.946], + [26095,0.7824], + [26097,0.738], + [26099,0.8024], + [26101,0.8944], + [26103,0.9236], + [26105,0.9167], + [26107,0.915], + [26109,0.9331], + [26111,0.9167], + [26113,0.9435], + [26115,0.9154], + [26117,0.9199], + [26119,0.9623], + [26121,0.7653], + [26123,0.9068], + [26125,0.7286], + [26127,0.8219], + [26129,0.9502], + [26131,0.9521], + [26133,0.9488], + [26135,0.9565], + [26137,0.9468], + [26139,0.8433], + [26141,0.9581], + [26143,0.9535], + [26145,0.697], + [26147,0.9135], + [26149,0.8683], + [26151,0.9414], + [26153,0.8591], + [26155,0.9431], + [26157,0.9366], + [26159,0.8151], + [26161,0.7063], + [26163,0.4968], + [26165,0.9475], + [27001,0.9408], + [27003,0.8266], + [27005,0.866], + [27007,0.7246], + [27009,0.9148], + [27011,0.9796], + [27013,0.8889], + [27015,0.939], + [27017,0.8827], + [27019,0.8964], + [27021,0.8326], + [27023,0.8884], + [27025,0.9384], + [27027,0.8849], + [27029,0.8504], + [27031,0.8609], + [27033,0.8715], + [27035,0.9512], + [27037,0.7968], + [27039,0.9249], + [27041,0.9616], + [27043,0.9157], + [27045,0.9676], + [27047,0.863], + [27049,0.9242], + [27051,0.9556], + [27053,0.6953], + [27055,0.9633], + [27057,0.9315], + [27059,0.9425], + [27061,0.9208], + [27063,0.9307], + [27065,0.9522], + [27067,0.818], + [27069,0.9599], + [27071,0.9348], + [27073,0.9556], + [27075,0.9577], + [27077,0.9347], + [27079,0.917], + [27081,0.9672], + [27083,0.8538], + [27085,0.9163], + [27087,0.4618], + [27089,0.937], + [27091,0.9359], + [27093,0.9432], + [27095,0.893], + [27097,0.9593], + [27099,0.8083], + [27101,0.9377], + [27103,0.896], + [27105,0.6082], + [27107,0.8968], + [27109,0.8113], + [27111,0.9301], + [27113,0.9111], + [27115,0.8956], + [27117,0.8954], + [27119,0.8791], + [27121,0.9645], + [27123,0.6306], + [27125,0.9261], + [27127,0.8758], + [27129,0.8883], + [27131,0.8355], + [27133,0.9408], + [27135,0.9241], + [27137,0.9138], + [27139,0.8231], + [27141,0.9187], + [27143,0.8907], + [27145,0.8784], + [27147,0.872], + [27149,0.8912], + [27151,0.9245], + [27153,0.9172], + [27155,0.9062], + [27157,0.9486], + [27159,0.9474], + [27161,0.8939], + [27163,0.8372], + [27165,0.7399], + [27167,0.9403], + [27169,0.915], + [27171,0.9296], + [27173,0.9019], + [28001,0.369], + [28003,0.8316], + [28005,0.5735], + [28007,0.5405], + [28009,0.6019], + [28011,0.3236], + [28013,0.65], + [28015,0.6425], + [28017,0.5049], + [28019,0.6757], + [28021,0.1206], + [28023,0.6338], + [28025,0.3917], + [28027,0.2158], + [28029,0.4441], + [28031,0.607], + [28033,0.6665], + [28035,0.5706], + [28037,0.6318], + [28039,0.8745], + [28041,0.721], + [28043,0.5508], + [28045,0.8491], + [28047,0.6458], + [28049,0.2533], + [28051,0.1561], + [28053,0.2128], + [28055,0.3395], + [28057,0.9054], + [28059,0.6827], + [28061,0.4508], + [28063,0.1305], + [28065,0.3786], + [28067,0.6489], + [28069,0.3418], + [28071,0.7004], + [28073,0.7469], + [28075,0.5306], + [28077,0.6543], + [28079,0.4739], + [28081,0.6639], + [28083,0.2289], + [28085,0.6724], + [28087,0.5221], + [28089,0.5562], + [28091,0.6499], + [28093,0.4775], + [28095,0.6699], + [28097,0.5236], + [28099,0.5885], + [28101,0.6149], + [28103,0.2593], + [28105,0.5687], + [28107,0.4726], + [28109,0.8195], + [28111,0.7736], + [28113,0.4396], + [28115,0.7715], + [28117,0.831], + [28119,0.2721], + [28121,0.7485], + [28123,0.4987], + [28125,0.2688], + [28127,0.6162], + [28129,0.7435], + [28131,0.7683], + [28133,0.2416], + [28135,0.3538], + [28137,0.6478], + [28139,0.7734], + [28141,0.9341], + [28143,0.1948], + [28145,0.7864], + [28147,0.5273], + [28149,0.4769], + [28151,0.2552], + [28153,0.5783], + [28155,0.7801], + [28157,0.2793], + [28159,0.5034], + [28161,0.5829], + [28163,0.3582], + [29001,0.9054], + [29003,0.9495], + [29005,0.9663], + [29007,0.8705], + [29009,0.8649], + [29011,0.9266], + [29013,0.9453], + [29015,0.9532], + [29017,0.9653], + [29019,0.7947], + [29021,0.8376], + [29023,0.8902], + [29025,0.9483], + [29027,0.9019], + [29029,0.9446], + [29031,0.8643], + [29033,0.9486], + [29035,0.9461], + [29037,0.8853], + [29039,0.9495], + [29041,0.9529], + [29043,0.9366], + [29045,0.9719], + [29047,0.8208], + [29049,0.9392], + [29051,0.8148], + [29053,0.8818], + [29055,0.9551], + [29057,0.9397], + [29059,0.9485], + [29061,0.962], + [29063,0.8423], + [29065,0.9479], + [29067,0.9799], + [29069,0.8105], + [29071,0.9528], + [29073,0.9624], + [29075,0.9643], + [29077,0.8816], + [29079,0.9465], + [29081,0.9554], + [29083,0.9399], + [29085,0.9531], + [29087,0.9638], + [29089,0.9075], + [29091,0.945], + [29093,0.9449], + [29095,0.6251], + [29097,0.847], + [29099,0.9467], + [29101,0.8616], + [29103,0.9648], + [29105,0.9383], + [29107,0.9222], + [29109,0.897], + [29111,0.9277], + [29113,0.9335], + [29115,0.9507], + [29117,0.9296], + [29119,0.784], + [29121,0.9398], + [29123,0.949], + [29125,0.9577], + [29127,0.902], + [29129,0.9583], + [29131,0.9505], + [29133,0.7176], + [29135,0.8966], + [29137,0.9334], + [29139,0.9441], + [29141,0.9443], + [29143,0.8005], + [29145,0.8649], + [29147,0.928], + [29149,0.9429], + [29151,0.9754], + [29153,0.9566], + [29155,0.6889], + [29157,0.9561], + [29159,0.8529], + [29161,0.8908], + [29163,0.8835], + [29165,0.8199], + [29167,0.9392], + [29169,0.6958], + [29171,0.9641], + [29173,0.9576], + [29175,0.8902], + [29177,0.9396], + [29179,0.9437], + [29181,0.9531], + [29183,0.8772], + [29185,0.9451], + [29186,0.9569], + [29187,0.9202], + [29189,0.669], + [29195,0.8106], + [29197,0.9726], + [29199,0.9752], + [29201,0.8361], + [29203,0.9422], + [29205,0.9586], + [29207,0.9565], + [29209,0.9511], + [29211,0.775], + [29213,0.8938], + [29215,0.912], + [29217,0.9414], + [29219,0.9201], + [29221,0.944], + [29223,0.9528], + [29225,0.9453], + [29227,0.9674], + [29229,0.9531], + [29510,0.4292], + [30001,0.9132], + [30003,0.2766], + [30005,0.4616], + [30007,0.9439], + [30009,0.9465], + [30011,0.9773], + [30013,0.858], + [30015,0.7653], + [30017,0.9243], + [30019,0.9664], + [30021,0.9263], + [30023,0.9047], + [30025,0.9385], + [30027,0.9441], + [30029,0.9318], + [30031,0.9233], + [30033,0.9982], + [30035,0.3106], + [30037,0.8568], + [30039,0.9457], + [30041,0.702], + [30043,0.9299], + [30045,0.9557], + [30047,0.6548], + [30049,0.9173], + [30051,0.9857], + [30053,0.9323], + [30055,0.8877], + [30057,0.9376], + [30059,0.9345], + [30061,0.9654], + [30063,0.8983], + [30065,0.9291], + [30067,0.9391], + [30069,0.9845], + [30071,0.8478], + [30073,0.8145], + [30075,0.9317], + [30077,0.9002], + [30079,0.9864], + [30081,0.9317], + [30083,0.8941], + [30085,0.3568], + [30087,0.5624], + [30089,0.903], + [30091,0.9086], + [30093,0.91], + [30095,0.9335], + [30097,0.9386], + [30099,0.9421], + [30101,0.8803], + [30103,0.9456], + [30105,0.8487], + [30107,0.9435], + [30109,0.9616], + [30111,0.8697], + [31001,0.8693], + [31003,0.9535], + [31005,0.9762], + [31007,0.8942], + [31009,0.9801], + [31011,0.9666], + [31013,0.8225], + [31015,0.9502], + [31017,0.9653], + [31019,0.8739], + [31021,0.9355], + [31023,0.9503], + [31025,0.9405], + [31027,0.97], + [31029,0.8893], + [31031,0.8854], + [31033,0.899], + [31035,0.8921], + [31037,0.5112], + [31039,0.8848], + [31041,0.9501], + [31043,0.4978], + [31045,0.8527], + [31047,0.6005], + [31049,0.8948], + [31051,0.8555], + [31053,0.8489], + [31055,0.7022], + [31057,0.8478], + [31059,0.9399], + [31061,0.9616], + [31063,0.9642], + [31065,0.9425], + [31067,0.9495], + [31069,0.9425], + [31071,0.9663], + [31073,0.9624], + [31075,0.9619], + [31077,0.9622], + [31079,0.6801], + [31081,0.9518], + [31083,0.9418], + [31085,0.9383], + [31087,0.9888], + [31089,0.9401], + [31091,0.962], + [31093,0.9565], + [31095,0.9424], + [31097,0.8079], + [31099,0.9273], + [31101,0.9048], + [31103,0.9778], + [31105,0.8815], + [31107,0.8624], + [31109,0.8209], + [31111,0.8844], + [31113,0.9391], + [31115,0.9963], + [31117,0.9676], + [31119,0.8068], + [31121,0.9295], + [31123,0.8205], + [31125,0.9692], + [31127,0.943], + [31129,0.9553], + [31131,0.8949], + [31133,0.9541], + [31135,0.9545], + [31137,0.9267], + [31139,0.967], + [31141,0.7998], + [31143,0.9291], + [31145,0.922], + [31147,0.9247], + [31149,0.9761], + [31151,0.7073], + [31153,0.8183], + [31155,0.9561], + [31157,0.7263], + [31159,0.9502], + [31161,0.8193], + [31163,0.9711], + [31165,0.8997], + [31167,0.9223], + [31169,0.9552], + [31171,0.9736], + [31173,0.3674], + [31175,0.957], + [31177,0.9473], + [31179,0.9019], + [31181,0.921], + [31183,0.9894], + [31185,0.9088], + [32001,0.7387], + [32003,0.4411], + [32005,0.8114], + [32007,0.6717], + [32009,0.8004], + [32011,0.967], + [32013,0.6585], + [32015,0.6779], + [32017,0.8372], + [32019,0.7608], + [32021,0.5811], + [32023,0.772], + [32027,0.6612], + [32029,0.8674], + [32031,0.6374], + [32033,0.7271], + [32510,0.6806], + [33001,0.9526], + [33003,0.9609], + [33005,0.9451], + [33007,0.9358], + [33009,0.9122], + [33011,0.8567], + [33013,0.9314], + [33015,0.9316], + [33017,0.9139], + [33019,0.9543], + [34001,0.5639], + [34003,0.5781], + [34005,0.6827], + [34007,0.5746], + [34009,0.8562], + [34011,0.4739], + [34013,0.3112], + [34015,0.7913], + [34017,0.2877], + [34019,0.8627], + [34021,0.5079], + [34023,0.4431], + [34025,0.7538], + [34027,0.7201], + [34029,0.849], + [34031,0.4205], + [34033,0.7507], + [34035,0.5773], + [34037,0.8719], + [34039,0.4067], + [34041,0.8288], + [35001,0.3947], + [35003,0.8325], + [35005,0.4036], + [35006,0.2001], + [35007,0.4716], + [35009,0.4913], + [35011,0.5223], + [35013,0.2798], + [35015,0.485], + [35017,0.4645], + [35019,0.1512], + [35021,0.6227], + [35023,0.408], + [35025,0.3716], + [35027,0.6336], + [35028,0.7289], + [35029,0.3096], + [35031,0.0909], + [35033,0.1396], + [35035,0.4979], + [35037,0.5043], + [35039,0.1286], + [35041,0.531], + [35043,0.4458], + [35045,0.3922], + [35047,0.1811], + [35049,0.4291], + [35051,0.6575], + [35053,0.351], + [35055,0.354], + [35057,0.5225], + [35059,0.5199], + [35061,0.3359], + [36001,0.7298], + [36003,0.9448], + [36005,0.0946], + [36007,0.8405], + [36009,0.9082], + [36011,0.9047], + [36013,0.8778], + [36015,0.8652], + [36017,0.9487], + [36019,0.8992], + [36021,0.869], + [36023,0.9273], + [36025,0.9249], + [36027,0.7221], + [36029,0.7595], + [36031,0.9177], + [36033,0.8172], + [36035,0.9318], + [36037,0.9075], + [36039,0.8564], + [36041,0.9552], + [36043,0.948], + [36045,0.8206], + [36047,0.3596], + [36049,0.9584], + [36051,0.9095], + [36053,0.9338], + [36055,0.7097], + [36057,0.8255], + [36059,0.6136], + [36061,0.4676], + [36063,0.86], + [36065,0.8258], + [36067,0.7715], + [36069,0.9028], + [36071,0.6538], + [36073,0.8653], + [36075,0.943], + [36077,0.915], + [36079,0.8018], + [36081,0.2535], + [36083,0.8386], + [36085,0.6209], + [36087,0.6323], + [36089,0.9209], + [36091,0.9093], + [36093,0.7384], + [36095,0.9355], + [36097,0.9525], + [36099,0.8935], + [36101,0.9381], + [36103,0.6849], + [36105,0.7246], + [36107,0.953], + [36109,0.7733], + [36111,0.7982], + [36113,0.9417], + [36115,0.9256], + [36117,0.9025], + [36119,0.5436], + [36121,0.8985], + [36123,0.949], + [37001,0.6497], + [37003,0.8702], + [37005,0.8733], + [37007,0.449], + [37009,0.9246], + [37011,0.8899], + [37013,0.6583], + [37015,0.3432], + [37017,0.5422], + [37019,0.816], + [37021,0.8368], + [37023,0.8233], + [37025,0.68], + [37027,0.8792], + [37029,0.8036], + [37031,0.8636], + [37033,0.6114], + [37035,0.7611], + [37037,0.7141], + [37039,0.9149], + [37041,0.5969], + [37043,0.9496], + [37045,0.7341], + [37047,0.5953], + [37049,0.6604], + [37051,0.4464], + [37053,0.8751], + [37055,0.8756], + [37057,0.808], + [37059,0.849], + [37061,0.518], + [37063,0.4206], + [37065,0.3652], + [37067,0.5734], + [37069,0.6346], + [37071,0.7359], + [37073,0.6253], + [37075,0.8736], + [37077,0.5825], + [37079,0.4692], + [37081,0.5142], + [37083,0.3866], + [37085,0.6208], + [37087,0.9307], + [37089,0.8349], + [37091,0.3355], + [37093,0.4054], + [37095,0.5981], + [37097,0.7644], + [37099,0.8101], + [37101,0.6867], + [37103,0.6219], + [37105,0.5817], + [37107,0.4969], + [37109,0.8527], + [37111,0.8767], + [37113,0.895], + [37115,0.9394], + [37117,0.5211], + [37119,0.4787], + [37121,0.9272], + [37123,0.6328], + [37125,0.7718], + [37127,0.5094], + [37129,0.7689], + [37131,0.3856], + [37133,0.6681], + [37135,0.6944], + [37137,0.7426], + [37139,0.5487], + [37141,0.7452], + [37143,0.7195], + [37145,0.6646], + [37147,0.551], + [37149,0.8795], + [37151,0.7975], + [37153,0.5761], + [37155,0.2569], + [37157,0.7261], + [37159,0.7273], + [37161,0.8356], + [37163,0.5163], + [37165,0.4394], + [37167,0.8115], + [37169,0.9132], + [37171,0.844], + [37173,0.627], + [37175,0.894], + [37177,0.5318], + [37179,0.73], + [37181,0.4055], + [37183,0.6059], + [37185,0.3833], + [37187,0.4489], + [37189,0.9192], + [37191,0.541], + [37193,0.8787], + [37195,0.473], + [37197,0.8453], + [37199,0.9279], + [38001,0.9303], + [38003,0.9286], + [38005,0.4128], + [38007,0.944], + [38009,0.92], + [38011,0.9259], + [38013,0.9339], + [38015,0.8993], + [38017,0.8706], + [38019,0.957], + [38021,0.9359], + [38023,0.9327], + [38025,0.8386], + [38027,0.8923], + [38029,0.967], + [38031,0.9593], + [38033,0.9387], + [38035,0.8499], + [38037,0.9694], + [38039,0.9618], + [38041,0.9116], + [38043,0.9381], + [38045,0.971], + [38047,0.9633], + [38049,0.9508], + [38051,0.9515], + [38053,0.7795], + [38055,0.8963], + [38057,0.9309], + [38059,0.909], + [38061,0.6289], + [38063,0.9674], + [38065,0.9149], + [38067,0.9157], + [38069,0.9415], + [38071,0.8459], + [38073,0.9499], + [38075,0.9214], + [38077,0.9194], + [38079,0.1878], + [38081,0.9323], + [38083,0.9751], + [38085,0.1247], + [38087,0.9243], + [38089,0.8864], + [38091,0.9739], + [38093,0.9294], + [38095,0.9043], + [38097,0.9267], + [38099,0.849], + [38101,0.8411], + [38103,0.9773], + [38105,0.8262], + [39001,0.9662], + [39003,0.8124], + [39005,0.9599], + [39007,0.8987], + [39009,0.8974], + [39011,0.96], + [39013,0.9297], + [39015,0.9663], + [39017,0.8216], + [39019,0.964], + [39021,0.935], + [39023,0.8443], + [39025,0.939], + [39027,0.9341], + [39029,0.9423], + [39031,0.9607], + [39033,0.957], + [39035,0.5966], + [39037,0.9636], + [39039,0.8685], + [39041,0.8638], + [39043,0.8357], + [39045,0.8712], + [39047,0.9286], + [39049,0.6448], + [39051,0.8942], + [39053,0.9362], + [39055,0.9575], + [39057,0.8419], + [39059,0.9475], + [39061,0.6594], + [39063,0.8962], + [39065,0.9531], + [39067,0.9521], + [39069,0.9023], + [39071,0.9548], + [39073,0.9659], + [39075,0.9794], + [39077,0.906], + [39079,0.9615], + [39081,0.9054], + [39083,0.9552], + [39085,0.891], + [39087,0.9488], + [39089,0.9116], + [39091,0.9367], + [39093,0.7887], + [39095,0.6935], + [39097,0.8894], + [39099,0.7647], + [39101,0.887], + [39103,0.9414], + [39105,0.9682], + [39107,0.9579], + [39109,0.9284], + [39111,0.9893], + [39113,0.7138], + [39115,0.9235], + [39117,0.9611], + [39119,0.9176], + [39121,0.9223], + [39123,0.9233], + [39125,0.9253], + [39127,0.9688], + [39129,0.9293], + [39131,0.9544], + [39133,0.9004], + [39135,0.9667], + [39137,0.9234], + [39139,0.8581], + [39141,0.8963], + [39143,0.8492], + [39145,0.9345], + [39147,0.9033], + [39149,0.9317], + [39151,0.8678], + [39153,0.778], + [39155,0.8738], + [39157,0.9499], + [39159,0.9043], + [39161,0.9436], + [39163,0.968], + [39165,0.8708], + [39167,0.953], + [39169,0.9396], + [39171,0.9309], + [39173,0.8868], + [39175,0.9528], + [40001,0.4079], + [40003,0.7623], + [40005,0.718], + [40007,0.7644], + [40009,0.7573], + [40011,0.7401], + [40013,0.7195], + [40015,0.5743], + [40017,0.7732], + [40019,0.7076], + [40021,0.4825], + [40023,0.6133], + [40025,0.7771], + [40027,0.728], + [40029,0.6952], + [40031,0.5681], + [40033,0.7663], + [40035,0.6422], + [40037,0.7676], + [40039,0.6933], + [40041,0.6419], + [40043,0.8328], + [40045,0.8691], + [40047,0.7576], + [40049,0.7635], + [40051,0.82], + [40053,0.8885], + [40055,0.7536], + [40057,0.5899], + [40059,0.7492], + [40061,0.7117], + [40063,0.6366], + [40065,0.6338], + [40067,0.7858], + [40069,0.7], + [40071,0.7541], + [40073,0.7728], + [40075,0.7494], + [40077,0.6614], + [40079,0.7192], + [40081,0.8281], + [40083,0.7776], + [40085,0.7207], + [40087,0.7966], + [40089,0.6313], + [40091,0.6827], + [40093,0.8552], + [40095,0.6635], + [40097,0.6541], + [40099,0.7322], + [40101,0.5661], + [40103,0.8189], + [40105,0.6706], + [40107,0.616], + [40109,0.5684], + [40111,0.6277], + [40113,0.6373], + [40115,0.6555], + [40117,0.7721], + [40119,0.7734], + [40121,0.7], + [40123,0.663], + [40125,0.7297], + [40127,0.7211], + [40129,0.8423], + [40131,0.7239], + [40133,0.6512], + [40135,0.6352], + [40137,0.8085], + [40139,0.4561], + [40141,0.6058], + [40143,0.6303], + [40145,0.7213], + [40147,0.7357], + [40149,0.839], + [40151,0.8362], + [40153,0.8063], + [41001,0.9112], + [41003,0.813], + [41005,0.8275], + [41007,0.8603], + [41009,0.8908], + [41011,0.8555], + [41013,0.8838], + [41015,0.868], + [41017,0.8771], + [41019,0.8841], + [41021,0.8602], + [41023,0.918], + [41025,0.8681], + [41027,0.6424], + [41029,0.8169], + [41031,0.6022], + [41033,0.8741], + [41035,0.7872], + [41037,0.8522], + [41039,0.8263], + [41041,0.829], + [41043,0.8575], + [41045,0.6174], + [41047,0.6634], + [41049,0.6068], + [41051,0.7054], + [41053,0.7887], + [41055,0.9168], + [41057,0.8469], + [41059,0.6699], + [41061,0.8934], + [41063,0.9344], + [41065,0.7538], + [41067,0.6709], + [41069,0.8905], + [41071,0.7764], + [42001,0.8949], + [42003,0.7905], + [42005,0.9725], + [42007,0.8968], + [42009,0.9689], + [42011,0.7323], + [42013,0.9481], + [42015,0.9609], + [42017,0.8482], + [42019,0.9501], + [42021,0.9301], + [42023,0.9655], + [42025,0.9242], + [42027,0.8579], + [42029,0.8023], + [42031,0.9625], + [42033,0.9313], + [42035,0.953], + [42037,0.9342], + [42039,0.9506], + [42041,0.8687], + [42043,0.6709], + [42045,0.6796], + [42047,0.9756], + [42049,0.8479], + [42051,0.9209], + [42053,0.5965], + [42055,0.8865], + [42057,0.9628], + [42059,0.9359], + [42061,0.9093], + [42063,0.9393], + [42065,0.9733], + [42067,0.9482], + [42069,0.8665], + [42071,0.8271], + [42073,0.9203], + [42075,0.8335], + [42077,0.665], + [42079,0.838], + [42081,0.9074], + [42083,0.9353], + [42085,0.9031], + [42087,0.9613], + [42089,0.6757], + [42091,0.7658], + [42093,0.921], + [42095,0.7794], + [42097,0.9299], + [42099,0.9576], + [42101,0.3493], + [42103,0.8113], + [42105,0.9673], + [42107,0.9171], + [42109,0.9517], + [42111,0.9459], + [42113,0.9306], + [42115,0.964], + [42117,0.9629], + [42119,0.8443], + [42121,0.9608], + [42123,0.9699], + [42125,0.9254], + [42127,0.9097], + [42129,0.9414], + [42131,0.9577], + [42133,0.8428], + [44001,0.9269], + [44003,0.8952], + [44005,0.8599], + [44007,0.6223], + [44009,0.913], + [45001,0.6889], + [45003,0.6665], + [45005,0.225], + [45007,0.7763], + [45009,0.3557], + [45011,0.5116], + [45013,0.6738], + [45015,0.6401], + [45017,0.5361], + [45019,0.6386], + [45021,0.7309], + [45023,0.5888], + [45025,0.6076], + [45027,0.4738], + [45029,0.563], + [45031,0.5501], + [45033,0.461], + [45035,0.6461], + [45037,0.565], + [45039,0.374], + [45041,0.5256], + [45043,0.6332], + [45045,0.6895], + [45047,0.6007], + [45049,0.4091], + [45051,0.7713], + [45053,0.4157], + [45055,0.691], + [45057,0.7014], + [45059,0.681], + [45061,0.3264], + [45063,0.7556], + [45065,0.4922], + [45067,0.3876], + [45069,0.3921], + [45071,0.598], + [45073,0.8477], + [45075,0.3327], + [45077,0.8611], + [45079,0.4325], + [45081,0.5789], + [45083,0.688], + [45085,0.457], + [45087,0.6513], + [45089,0.3117], + [45091,0.7119], + [46003,0.8879], + [46005,0.7953], + [46007,0.3099], + [46009,0.8742], + [46011,0.9095], + [46013,0.8859], + [46015,0.8477], + [46017,0.1182], + [46019,0.9181], + [46021,0.9723], + [46023,0.6328], + [46025,0.9476], + [46027,0.8821], + [46029,0.9324], + [46031,0.2933], + [46033,0.9064], + [46035,0.9166], + [46037,0.8631], + [46039,0.9682], + [46041,0.2035], + [46043,0.949], + [46045,0.9738], + [46047,0.852], + [46049,0.9467], + [46051,0.9386], + [46053,0.8836], + [46055,0.8872], + [46057,0.9445], + [46059,0.9791], + [46061,0.9389], + [46063,0.9383], + [46065,0.8315], + [46067,0.9515], + [46069,0.8558], + [46071,0.4287], + [46073,0.9626], + [46075,1], + [46077,0.9506], + [46079,0.938], + [46081,0.9135], + [46083,0.9362], + [46085,0.5636], + [46087,0.9463], + [46089,0.8981], + [46091,0.8378], + [46093,0.88], + [46095,0.4108], + [46097,0.9517], + [46099,0.8358], + [46101,0.7765], + [46102,null], + [46103,0.8052], + [46105,0.947], + [46107,0.9305], + [46109,0.577], + [46111,0.9522], + [46115,0.9495], + [46117,0.8778], + [46119,0.9547], + [46121,0.0849], + [46123,0.8212], + [46125,0.957], + [46127,0.9279], + [46129,0.7984], + [46135,0.8944], + [46137,0.2341], + [47001,0.8958], + [47003,0.7775], + [47005,0.9315], + [47007,0.892], + [47009,0.914], + [47011,0.8653], + [47013,0.9665], + [47015,0.9446], + [47017,0.8486], + [47019,0.9514], + [47021,0.9339], + [47023,0.8599], + [47025,0.9558], + [47027,0.9479], + [47029,0.9357], + [47031,0.8924], + [47033,0.747], + [47035,0.9472], + [47037,0.564], + [47039,0.9167], + [47041,0.8888], + [47043,0.899], + [47045,0.8027], + [47047,0.6826], + [47049,0.9674], + [47051,0.888], + [47053,0.7677], + [47055,0.8482], + [47057,0.9485], + [47059,0.9332], + [47061,0.812], + [47063,0.8186], + [47065,0.7139], + [47067,0.9708], + [47069,0.5472], + [47071,0.9202], + [47073,0.9533], + [47075,0.444], + [47077,0.8764], + [47079,0.8751], + [47081,0.9058], + [47083,0.9222], + [47085,0.9289], + [47087,0.9575], + [47089,0.9249], + [47091,0.9217], + [47093,0.827], + [47095,0.6705], + [47097,0.6091], + [47099,0.94], + [47101,0.9354], + [47103,0.8738], + [47105,0.8844], + [47107,0.8966], + [47109,0.9014], + [47111,0.9211], + [47113,0.5652], + [47115,0.9206], + [47117,0.8538], + [47119,0.7979], + [47121,0.9447], + [47123,0.9113], + [47125,0.6457], + [47127,0.9332], + [47129,0.9334], + [47131,0.8341], + [47133,0.9635], + [47135,0.9257], + [47137,0.9683], + [47139,0.9537], + [47141,0.888], + [47143,0.9099], + [47145,0.9311], + [47147,0.8398], + [47149,0.7254], + [47151,0.9755], + [47153,0.8592], + [47155,0.9062], + [47157,0.3645], + [47159,0.9321], + [47161,0.9201], + [47163,0.9367], + [47165,0.8524], + [47167,0.7603], + [47169,0.8486], + [47171,0.9374], + [47173,0.9657], + [47175,0.9628], + [47177,0.8592], + [47179,0.8918], + [47181,0.9027], + [47183,0.8705], + [47185,0.9382], + [47187,0.8535], + [47189,0.8598], + [48001,0.5969], + [48003,0.4113], + [48005,0.6124], + [48007,0.6767], + [48009,0.8856], + [48011,0.8663], + [48013,0.3423], + [48015,0.6327], + [48017,0.3464], + [48019,0.7876], + [48021,0.5373], + [48023,0.8384], + [48025,0.3225], + [48027,0.4723], + [48029,0.2841], + [48031,0.7756], + [48033,0.9236], + [48035,0.7868], + [48037,0.6446], + [48039,0.4909], + [48041,0.5669], + [48043,0.5171], + [48045,0.6059], + [48047,0.0575], + [48049,0.7268], + [48051,0.657], + [48053,0.7412], + [48055,0.4109], + [48057,0.432], + [48059,0.8684], + [48061,0.0934], + [48063,0.5657], + [48065,0.8644], + [48067,0.7642], + [48069,0.3289], + [48071,0.6802], + [48073,0.6125], + [48075,0.6406], + [48077,0.9037], + [48079,0.3765], + [48081,0.769], + [48083,0.7732], + [48085,0.5912], + [48087,0.6028], + [48089,0.5699], + [48091,0.6868], + [48093,0.7044], + [48095,0.4487], + [48097,0.764], + [48099,0.5946], + [48101,0.536], + [48103,0.329], + [48105,0.3295], + [48107,0.4], + [48109,0.1737], + [48111,0.5123], + [48113,0.3022], + [48115,0.3629], + [48117,0.2594], + [48119,0.8148], + [48121,0.6085], + [48123,0.556], + [48125,0.6871], + [48127,0.132], + [48129,0.8182], + [48131,0.0896], + [48133,0.7985], + [48135,0.3448], + [48137,0.4306], + [48139,0.6259], + [48141,0.1244], + [48143,0.7539], + [48145,0.5153], + [48147,0.7942], + [48149,0.7191], + [48151,0.6645], + [48153,0.3793], + [48155,0.7617], + [48157,0.3436], + [48159,0.7959], + [48161,0.6754], + [48163,0.1643], + [48165,0.563], + [48167,0.5803], + [48169,0.4045], + [48171,0.7562], + [48173,0.5944], + [48175,0.586], + [48177,0.4233], + [48179,0.6448], + [48181,0.7639], + [48183,0.5832], + [48185,0.5867], + [48187,0.5136], + [48189,0.3458], + [48191,0.5674], + [48193,0.8509], + [48195,0.5333], + [48197,0.6862], + [48199,0.8702], + [48201,0.3064], + [48203,0.6382], + [48205,0.5956], + [48207,0.6583], + [48209,0.5528], + [48211,0.6185], + [48213,0.7893], + [48215,0.0659], + [48217,0.7134], + [48219,0.4775], + [48221,0.8481], + [48223,0.7397], + [48225,0.6195], + [48227,0.5005], + [48229,0.1848], + [48231,0.7286], + [48233,0.713], + [48235,0.7242], + [48237,0.7794], + [48239,0.594], + [48241,0.7472], + [48243,0.6087], + [48245,0.4169], + [48247,0.0587], + [48249,0.1829], + [48251,0.7364], + [48253,0.5478], + [48255,0.3776], + [48257,0.666], + [48259,0.7359], + [48261,0.1135], + [48263,0.7706], + [48265,0.6989], + [48267,0.7435], + [48269,0.7336], + [48271,0.3806], + [48273,0.2098], + [48275,0.5937], + [48277,0.7498], + [48279,0.3979], + [48281,0.7286], + [48283,0.1763], + [48285,0.7427], + [48287,0.6369], + [48289,0.7654], + [48291,0.6582], + [48293,0.5922], + [48295,0.6604], + [48297,0.5764], + [48299,0.8712], + [48301,0.7432], + [48303,0.5451], + [48305,0.4932], + [48307,0.6221], + [48309,0.5675], + [48311,0.4867], + [48313,0.5576], + [48315,0.7088], + [48317,0.5367], + [48319,0.7186], + [48321,0.4491], + [48323,0.0265], + [48325,0.4454], + [48327,0.5897], + [48329,0.473], + [48331,0.6294], + [48333,0.8126], + [48335,0.4867], + [48337,0.863], + [48339,0.6786], + [48341,0.3366], + [48343,0.6512], + [48345,0.7648], + [48347,0.5993], + [48349,0.5728], + [48351,0.736], + [48353,0.5702], + [48355,0.3032], + [48357,0.4447], + [48359,0.758], + [48361,0.8137], + [48363,0.7543], + [48365,0.7343], + [48367,0.8445], + [48369,0.3513], + [48371,0.259], + [48373,0.7094], + [48375,0.4517], + [48377,0.1361], + [48379,0.8583], + [48381,0.7342], + [48383,0.2886], + [48385,0.7996], + [48387,0.7314], + [48389,0.1821], + [48391,0.4229], + [48393,0.9055], + [48395,0.5788], + [48397,0.7229], + [48399,0.6228], + [48401,0.6469], + [48403,0.8608], + [48405,0.6882], + [48407,0.7485], + [48409,0.3941], + [48411,0.6534], + [48413,0.4769], + [48415,0.5365], + [48417,0.8563], + [48419,0.6213], + [48421,0.5582], + [48423,0.6034], + [48425,0.7866], + [48427,0.0064], + [48429,0.7214], + [48431,0.5742], + [48433,0.726], + [48435,0.3924], + [48437,0.4753], + [48439,0.4835], + [48441,0.6454], + [48443,0.3315], + [48445,0.4079], + [48447,0.8248], + [48449,0.4629], + [48451,0.5432], + [48453,0.4932], + [48455,0.791], + [48457,0.7961], + [48459,0.8074], + [48461,0.4299], + [48463,0.2711], + [48465,0.1595], + [48467,0.8433], + [48469,0.4544], + [48471,0.5693], + [48473,0.4305], + [48475,0.4138], + [48477,0.6445], + [48479,0.0348], + [48481,0.4527], + [48483,0.6832], + [48485,0.6613], + [48487,0.5942], + [48489,0.1106], + [48491,0.6092], + [48493,0.5767], + [48495,0.369], + [48497,0.7749], + [48499,0.8318], + [48501,0.3317], + [48503,0.7875], + [48505,0.0522], + [48507,0.0543], + [49001,0.8867], + [49003,0.8728], + [49005,0.838], + [49007,0.8326], + [49009,0.9487], + [49011,0.8447], + [49013,0.8535], + [49015,0.9138], + [49017,0.8954], + [49019,0.8809], + [49021,0.8631], + [49023,0.9242], + [49025,0.9175], + [49027,0.8327], + [49029,0.9532], + [49031,0.9575], + [49033,0.8886], + [49035,0.7206], + [49037,0.4402], + [49039,0.8605], + [49041,0.9207], + [49043,0.8482], + [49045,0.8344], + [49047,0.8191], + [49049,0.83], + [49051,0.8359], + [49053,0.849], + [49055,0.9181], + [49057,0.7671], + [50001,0.9299], + [50003,0.9475], + [50005,0.9507], + [50007,0.8924], + [50009,0.9558], + [50011,0.942], + [50013,0.9322], + [50015,0.9486], + [50017,0.9567], + [50019,0.9548], + [50021,0.9555], + [50023,0.9437], + [50025,0.9346], + [50027,0.9497], + [51001,0.6034], + [51003,0.7722], + [51005,0.9187], + [51007,0.7237], + [51009,0.7551], + [51011,0.7672], + [51013,0.6228], + [51015,0.9141], + [51017,0.8528], + [51019,0.8816], + [51021,0.9428], + [51023,0.9303], + [51025,0.4108], + [51027,0.9537], + [51029,0.6112], + [51031,0.8029], + [51033,0.6357], + [51035,0.9503], + [51036,0.4151], + [51037,0.6745], + [51041,0.6281], + [51043,0.869], + [51045,0.9943], + [51047,0.7114], + [51049,0.6313], + [51051,0.9783], + [51053,0.6215], + [51057,0.5489], + [51059,0.5171], + [51061,0.8087], + [51063,0.9367], + [51065,0.7866], + [51067,0.871], + [51069,0.8451], + [51071,0.9509], + [51073,0.8508], + [51075,0.776], + [51077,0.9083], + [51079,0.8325], + [51081,0.3709], + [51083,0.5983], + [51085,0.8441], + [51087,0.542], + [51089,0.7026], + [51091,0.9941], + [51093,0.708], + [51095,0.7594], + [51097,0.6605], + [51099,0.7379], + [51101,0.7617], + [51103,0.6822], + [51105,0.9285], + [51107,0.5768], + [51109,0.774], + [51111,0.5995], + [51113,0.8504], + [51115,0.8576], + [51117,0.6015], + [51119,0.7767], + [51121,0.8391], + [51125,0.8163], + [51127,0.7955], + [51131,0.5405], + [51133,0.6992], + [51135,0.5461], + [51137,0.7888], + [51139,0.9447], + [51141,0.899], + [51143,0.742], + [51145,0.8458], + [51147,0.6193], + [51149,0.5564], + [51153,0.4462], + [51155,0.9094], + [51157,0.8922], + [51159,0.6093], + [51161,0.8651], + [51163,0.929], + [51165,0.8952], + [51167,0.9683], + [51169,0.9686], + [51171,0.8842], + [51173,0.943], + [51175,0.6073], + [51177,0.695], + [51179,0.6373], + [51181,0.5208], + [51183,0.3808], + [51185,0.9399], + [51187,0.876], + [51191,0.9535], + [51193,0.6384], + [51195,0.917], + [51197,0.9397], + [51199,0.7196], + [51510,0.518], + [51520,0.8787], + [51530,0.8834], + [51540,0.6567], + [51550,0.5837], + [51570,0.7433], + [51580,0.8152], + [51590,0.437], + [51595,0.2954], + [51600,0.579], + [51610,0.7201], + [51620,0.3734], + [51630,0.6], + [51640,0.7637], + [51650,0.3925], + [51660,0.6733], + [51670,0.4879], + [51678,0.7981], + [51680,0.6266], + [51683,0.4264], + [51685,0.3599], + [51690,0.4558], + [51700,0.4403], + [51710,0.4363], + [51720,0.8996], + [51730,0.15], + [51735,0.9229], + [51740,0.3834], + [51750,0.8331], + [51760,0.3998], + [51770,0.5952], + [51775,0.858], + [51790,0.8144], + [51800,0.4968], + [51810,0.6245], + [51820,0.7701], + [51830,0.6791], + [51840,0.6704], + [53001,0.3522], + [53003,0.9124], + [53005,0.7156], + [53007,0.6835], + [53009,0.8326], + [53011,0.7943], + [53013,0.8655], + [53015,0.843], + [53017,0.6488], + [53019,0.7363], + [53021,0.4115], + [53023,0.9178], + [53025,0.5492], + [53027,0.7986], + [53029,0.8011], + [53031,0.887], + [53033,0.6141], + [53035,0.7744], + [53037,0.8435], + [53039,0.8221], + [53041,0.8417], + [53043,0.9185], + [53045,0.8136], + [53047,0.658], + [53049,0.8244], + [53051,0.8887], + [53053,0.6797], + [53055,0.8901], + [53057,0.7506], + [53059,0.8818], + [53061,0.7119], + [53063,0.8526], + [53065,0.8688], + [53067,0.7584], + [53069,0.8853], + [53071,0.7228], + [53073,0.7977], + [53075,0.7953], + [53077,0.4429], + [54001,0.9575], + [54003,0.8458], + [54005,0.9784], + [54007,0.9713], + [54009,0.9575], + [54011,0.9009], + [54013,0.9732], + [54015,0.9767], + [54017,0.9568], + [54019,0.925], + [54021,0.8081], + [54023,0.9684], + [54025,0.9271], + [54027,0.9594], + [54029,0.9405], + [54031,0.9079], + [54033,0.9444], + [54035,0.9714], + [54037,0.8382], + [54039,0.8783], + [54041,0.9656], + [54043,0.98], + [54045,0.9597], + [54047,0.8873], + [54049,0.9288], + [54051,0.9681], + [54053,0.9684], + [54055,0.9042], + [54057,0.9419], + [54059,0.9607], + [54061,0.8833], + [54063,0.9631], + [54065,0.9568], + [54067,0.9731], + [54069,0.9235], + [54071,0.9475], + [54073,0.9806], + [54075,0.9563], + [54077,0.9193], + [54079,0.9546], + [54081,0.8696], + [54083,0.9608], + [54085,0.9857], + [54087,0.9698], + [54089,0.9179], + [54091,0.9606], + [54093,0.9756], + [54095,0.9796], + [54097,0.963], + [54099,0.9753], + [54101,0.9964], + [54103,0.9749], + [54105,0.9724], + [54107,0.9534], + [54109,0.9737], + [55001,0.907], + [55003,0.827], + [55005,0.9384], + [55007,0.8501], + [55009,0.8158], + [55011,0.9591], + [55013,0.9058], + [55015,0.9136], + [55017,0.9385], + [55019,0.9347], + [55021,0.9309], + [55023,0.9489], + [55025,0.8018], + [55027,0.903], + [55029,0.943], + [55031,0.9195], + [55033,0.9307], + [55035,0.9063], + [55037,0.9851], + [55039,0.9031], + [55041,0.7973], + [55043,0.9526], + [55045,0.9454], + [55047,0.9295], + [55049,0.9564], + [55051,0.9593], + [55053,0.8642], + [55055,0.8993], + [55057,0.9186], + [55059,0.7634], + [55061,0.9495], + [55063,0.9029], + [55065,0.9455], + [55067,0.9448], + [55069,0.9568], + [55071,0.9123], + [55073,0.8913], + [55075,0.9561], + [55077,0.9364], + [55078,0.0879], + [55079,0.5219], + [55081,0.9122], + [55083,0.9528], + [55085,0.9515], + [55087,0.8806], + [55089,0.9209], + [55091,0.9665], + [55093,0.9459], + [55095,0.9527], + [55097,0.917], + [55099,0.946], + [55101,0.7271], + [55103,0.9521], + [55105,0.8333], + [55107,0.9516], + [55109,0.9423], + [55111,0.9133], + [55113,0.7692], + [55115,0.8713], + [55117,0.8511], + [55119,0.964], + [55121,0.9042], + [55123,0.9632], + [55125,0.8497], + [55127,0.855], + [55129,0.9456], + [55131,0.9325], + [55133,0.8915], + [55135,0.9462], + [55137,0.8956], + [55139,0.8929], + [55141,0.9273], + [56001,0.8289], + [56003,0.8816], + [56005,0.8767], + [56007,0.7771], + [56009,0.9126], + [56011,0.9447], + [56013,0.7012], + [56015,0.8622], + [56017,0.9445], + [56019,0.9173], + [56021,0.7909], + [56023,0.9254], + [56025,0.87], + [56027,0.8903], + [56029,0.9067], + [56031,0.8918], + [56033,0.9158], + [56035,0.8923], + [56037,0.7964], + [56039,0.8149], + [56041,0.8766], + [56043,0.8219], + [56045,0.9164] + ] +} diff --git a/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2019.json b/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2019.json new file mode 100644 index 0000000..1e5a4f1 --- /dev/null +++ b/data/regional/united-states/demographics/race/us-race-white-nonhispanic-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "White (Non-Hispanic) Population", + "description" : "Percent of the population that is white (non-hispanic).", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "demographics", + "tags" : ["regional","us","counties","demographics","population","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.race.white.nonhispanic.2019"], + [1001,0.746], + [1003,0.831], + [1005,0.458], + [1007,0.745], + [1009,0.869], + [1011,0.214], + [1013,0.516], + [1015,0.721], + [1017,0.555], + [1019,0.917], + [1021,0.801], + [1023,0.564], + [1025,0.527], + [1027,0.804], + [1029,0.927], + [1031,0.701], + [1033,0.782], + [1035,0.5], + [1037,0.648], + [1039,0.833], + [1041,0.71], + [1043,0.919], + [1045,0.686], + [1047,0.273], + [1049,0.804], + [1051,0.732], + [1053,0.602], + [1055,0.779], + [1057,0.845], + [1059,0.768], + [1061,0.839], + [1063,0.172], + [1065,0.395], + [1067,0.692], + [1069,0.665], + [1071,0.892], + [1073,0.499], + [1075,0.86], + [1077,0.847], + [1079,0.765], + [1081,0.674], + [1083,0.765], + [1085,0.247], + [1087,0.159], + [1089,0.647], + [1091,0.449], + [1093,0.919], + [1095,0.808], + [1097,0.569], + [1099,0.543], + [1101,0.339], + [1103,0.756], + [1105,0.293], + [1107,0.536], + [1109,0.56], + [1111,0.753], + [1113,0.461], + [1115,0.859], + [1117,0.779], + [1119,0.248], + [1121,0.626], + [1123,0.689], + [1125,0.615], + [1127,0.889], + [1129,0.649], + [1131,0.268], + [1133,0.937], + [2013,0.132], + [2016,0.238], + [2020,0.579], + [2050,0.097], + [2060,0.509], + [2068,0.842], + [2070,0.154], + [2090,0.699], + [2100,0.775], + [2105,0.438], + [2110,0.647], + [2122,0.799], + [2130,0.64], + [2150,0.49], + [2158,0.036], + [2164,0.21], + [2170,0.792], + [2180,0.147], + [2185,0.309], + [2188,0.108], + [2195,0.655], + [2198,0.453], + [2220,0.616], + [2230,0.821], + [2240,0.737], + [2261,0.693], + [2275,0.619], + [2282,0.433], + [2290,0.216], + [4001,0.182], + [4003,0.55], + [4005,0.541], + [4007,0.623], + [4009,0.509], + [4011,0.466], + [4012,0.574], + [4013,0.552], + [4015,0.773], + [4017,0.413], + [4019,0.517], + [4021,0.568], + [4023,0.149], + [4025,0.805], + [4027,0.31], + [5001,0.698], + [5003,0.682], + [5005,0.947], + [5007,0.733], + [5009,0.939], + [5011,0.555], + [5013,0.725], + [5015,0.796], + [5017,0.387], + [5019,0.687], + [5021,0.953], + [5023,0.947], + [5025,0.846], + [5027,0.593], + [5029,0.816], + [5031,0.76], + [5033,0.843], + [5035,0.42], + [5037,0.727], + [5039,0.531], + [5041,0.452], + [5043,0.663], + [5045,0.8], + [5047,0.92], + [5049,0.949], + [5051,0.821], + [5053,0.926], + [5055,0.93], + [5057,0.546], + [5059,0.825], + [5061,0.641], + [5063,0.887], + [5065,0.929], + [5067,0.768], + [5069,0.389], + [5071,0.792], + [5073,0.586], + [5075,0.953], + [5077,0.41], + [5079,0.642], + [5081,0.729], + [5083,0.904], + [5085,0.86], + [5087,0.893], + [5089,0.941], + [5091,0.685], + [5093,0.583], + [5095,0.542], + [5097,0.909], + [5099,0.628], + [5101,0.939], + [5103,0.551], + [5105,0.955], + [5107,0.345], + [5109,0.874], + [5111,0.868], + [5113,0.876], + [5115,0.84], + [5117,0.847], + [5119,0.523], + [5121,0.939], + [5123,0.4], + [5125,0.846], + [5127,0.843], + [5129,0.931], + [5131,0.696], + [5133,0.573], + [5135,0.934], + [5137,0.947], + [5139,0.605], + [5141,0.935], + [5143,0.709], + [5145,0.881], + [5147,0.694], + [5149,0.753], + [6001,0.314], + [6003,0.53], + [6005,0.782], + [6007,0.72], + [6009,0.809], + [6011,0.353], + [6013,0.438], + [6015,0.619], + [6017,0.778], + [6019,0.294], + [6021,0.515], + [6023,0.744], + [6025,0.106], + [6027,0.622], + [6029,0.342], + [6031,0.322], + [6033,0.705], + [6035,0.654], + [6037,0.262], + [6039,0.341], + [6041,0.712], + [6043,0.8], + [6045,0.652], + [6047,0.276], + [6049,0.777], + [6051,0.65], + [6053,0.299], + [6055,0.524], + [6057,0.852], + [6059,0.406], + [6061,0.727], + [6063,0.831], + [6065,0.353], + [6067,0.447], + [6069,0.343], + [6071,0.285], + [6073,0.456], + [6075,0.405], + [6077,0.318], + [6079,0.689], + [6081,0.392], + [6083,0.445], + [6085,0.315], + [6087,0.573], + [6089,0.798], + [6091,0.876], + [6093,0.761], + [6095,0.38], + [6097,0.632], + [6099,0.419], + [6101,0.462], + [6103,0.683], + [6105,0.821], + [6107,0.285], + [6109,0.802], + [6111,0.454], + [6113,0.467], + [6115,0.552], + [8001,0.5], + [8003,0.476], + [8005,0.603], + [8007,0.763], + [8009,0.848], + [8011,0.634], + [8013,0.776], + [8014,0.768], + [8015,0.849], + [8017,0.778], + [8019,0.887], + [8021,0.446], + [8023,0.334], + [8025,0.615], + [8027,0.852], + [8029,0.813], + [8031,0.542], + [8033,0.898], + [8035,0.822], + [8037,0.672], + [8039,0.885], + [8041,0.691], + [8043,0.791], + [8045,0.681], + [8047,0.853], + [8049,0.873], + [8051,0.869], + [8053,0.9], + [8055,0.611], + [8057,0.822], + [8059,0.781], + [8061,0.917], + [8063,0.77], + [8065,0.638], + [8067,0.785], + [8069,0.826], + [8071,0.529], + [8073,0.671], + [8075,0.762], + [8077,0.814], + [8079,0.864], + [8081,0.803], + [8083,0.724], + [8085,0.761], + [8087,0.582], + [8089,0.531], + [8091,0.957], + [8093,0.889], + [8095,0.741], + [8097,0.853], + [8099,0.589], + [8101,0.521], + [8103,0.846], + [8105,0.521], + [8107,0.897], + [8109,0.586], + [8111,0.888], + [8113,0.858], + [8115,0.845], + [8117,0.821], + [8119,0.887], + [8121,0.869], + [8123,0.656], + [8125,0.747], + [9001,0.617], + [9003,0.611], + [9005,0.884], + [9007,0.839], + [9009,0.629], + [9011,0.757], + [9013,0.846], + [9015,0.827], + [10001,0.616], + [10003,0.574], + [10005,0.75], + [11001,0.366], + [12001,0.61], + [12003,0.811], + [12005,0.761], + [12007,0.735], + [12009,0.744], + [12011,0.363], + [12013,0.771], + [12015,0.839], + [12017,0.88], + [12019,0.727], + [12021,0.628], + [12023,0.723], + [12027,0.548], + [12029,0.841], + [12031,0.529], + [12033,0.643], + [12035,0.747], + [12037,0.771], + [12039,0.323], + [12041,0.862], + [12043,0.597], + [12045,0.763], + [12047,0.547], + [12049,0.471], + [12051,0.32], + [12053,0.775], + [12055,0.671], + [12057,0.488], + [12059,0.867], + [12061,0.753], + [12063,0.653], + [12065,0.596], + [12067,0.662], + [12069,0.697], + [12071,0.672], + [12073,0.565], + [12075,0.798], + [12077,0.762], + [12079,0.544], + [12081,0.712], + [12083,0.703], + [12085,0.783], + [12086,0.132], + [12087,0.663], + [12089,0.871], + [12091,0.736], + [12093,0.632], + [12095,0.4], + [12097,0.317], + [12099,0.546], + [12101,0.746], + [12103,0.74], + [12105,0.589], + [12107,0.715], + [12109,0.826], + [12111,0.573], + [12113,0.824], + [12115,0.83], + [12117,0.603], + [12119,0.85], + [12121,0.755], + [12123,0.721], + [12125,0.695], + [12127,0.717], + [12129,0.796], + [12131,0.843], + [12133,0.774], + [13001,0.691], + [13003,0.565], + [13005,0.735], + [13007,0.506], + [13009,0.524], + [13011,0.878], + [13013,0.713], + [13015,0.775], + [13017,0.558], + [13019,0.818], + [13021,0.383], + [13023,0.686], + [13025,0.922], + [13027,0.565], + [13029,0.731], + [13031,0.635], + [13033,0.473], + [13035,0.66], + [13037,0.326], + [13039,0.698], + [13043,0.606], + [13045,0.703], + [13047,0.909], + [13049,0.611], + [13051,0.485], + [13053,0.576], + [13055,0.828], + [13057,0.787], + [13059,0.55], + [13061,0.354], + [13063,0.101], + [13065,0.651], + [13067,0.519], + [13069,0.581], + [13071,0.559], + [13073,0.687], + [13075,0.647], + [13077,0.71], + [13079,0.733], + [13081,0.499], + [13083,0.933], + [13085,0.921], + [13087,0.502], + [13089,0.291], + [13091,0.647], + [13093,0.426], + [13095,0.252], + [13097,0.405], + [13099,0.452], + [13101,0.663], + [13103,0.783], + [13105,0.635], + [13107,0.593], + [13109,0.563], + [13111,0.949], + [13113,0.622], + [13115,0.708], + [13117,0.717], + [13119,0.835], + [13121,0.396], + [13123,0.859], + [13125,0.874], + [13127,0.636], + [13129,0.775], + [13131,0.58], + [13133,0.575], + [13135,0.373], + [13137,0.773], + [13139,0.608], + [13141,0.243], + [13143,0.909], + [13145,0.769], + [13147,0.748], + [13149,0.848], + [13151,0.434], + [13153,0.563], + [13155,0.668], + [13157,0.813], + [13159,0.742], + [13161,0.708], + [13163,0.42], + [13165,0.547], + [13167,0.624], + [13169,0.714], + [13171,0.652], + [13173,0.686], + [13175,0.572], + [13177,0.716], + [13179,0.389], + [13181,0.662], + [13183,0.579], + [13185,0.538], + [13187,0.906], + [13189,0.535], + [13191,0.621], + [13193,0.323], + [13195,0.818], + [13197,0.592], + [13199,0.563], + [13201,0.68], + [13205,0.459], + [13207,0.724], + [13209,0.653], + [13211,0.72], + [13213,0.825], + [13215,0.403], + [13217,0.464], + [13219,0.841], + [13221,0.756], + [13223,0.71], + [13225,0.458], + [13227,0.866], + [13229,0.84], + [13231,0.869], + [13233,0.72], + [13235,0.574], + [13237,0.657], + [13239,0.37], + [13241,0.877], + [13243,0.346], + [13245,0.345], + [13247,0.317], + [13249,0.68], + [13251,0.545], + [13253,0.615], + [13255,0.585], + [13257,0.823], + [13259,0.234], + [13261,0.394], + [13263,0.407], + [13265,0.328], + [13267,0.577], + [13269,0.573], + [13271,0.489], + [13273,0.356], + [13275,0.576], + [13277,0.559], + [13279,0.602], + [13281,0.941], + [13283,0.721], + [13285,0.563], + [13287,0.537], + [13289,0.55], + [13291,0.939], + [13293,0.672], + [13295,0.909], + [13297,0.746], + [13299,0.633], + [13301,0.375], + [13303,0.425], + [13305,0.712], + [13307,0.518], + [13309,0.562], + [13311,0.923], + [13313,0.584], + [13315,0.585], + [13317,0.509], + [13319,0.567], + [13321,0.673], + [15001,0.303], + [15003,0.184], + [15005,0.227], + [15007,0.295], + [15009,0.302], + [16001,0.847], + [16003,0.921], + [16005,0.837], + [16007,0.929], + [16009,0.846], + [16011,0.737], + [16013,0.746], + [16015,0.909], + [16017,0.931], + [16019,0.83], + [16021,0.904], + [16023,0.947], + [16025,0.981], + [16027,0.703], + [16029,0.917], + [16031,0.698], + [16033,0.461], + [16035,0.902], + [16037,0.892], + [16039,0.726], + [16041,0.911], + [16043,0.848], + [16045,0.877], + [16047,0.679], + [16049,0.91], + [16051,0.867], + [16053,0.615], + [16055,0.906], + [16057,0.887], + [16059,0.933], + [16061,0.838], + [16063,0.661], + [16065,0.883], + [16067,0.62], + [16069,0.87], + [16071,0.934], + [16073,0.685], + [16075,0.784], + [16077,0.613], + [16079,0.912], + [16081,0.812], + [16083,0.79], + [16085,0.946], + [16087,0.789], + [17001,0.917], + [17003,0.628], + [17005,0.878], + [17007,0.73], + [17009,0.739], + [17011,0.877], + [17013,0.97], + [17015,0.931], + [17017,0.755], + [17019,0.672], + [17021,0.95], + [17023,0.965], + [17025,0.961], + [17027,0.914], + [17029,0.909], + [17031,0.423], + [17033,0.877], + [17035,0.967], + [17037,0.768], + [17039,0.946], + [17041,0.903], + [17043,0.669], + [17045,0.982], + [17047,0.965], + [17049,0.958], + [17051,0.921], + [17053,0.935], + [17055,0.959], + [17057,0.918], + [17059,0.956], + [17061,0.962], + [17063,0.863], + [17065,0.987], + [17067,0.962], + [17069,0.946], + [17071,0.959], + [17073,0.904], + [17075,0.898], + [17077,0.74], + [17079,0.97], + [17081,0.855], + [17083,0.956], + [17085,0.947], + [17087,0.85], + [17089,0.571], + [17091,0.72], + [17093,0.695], + [17095,0.829], + [17097,0.616], + [17099,0.854], + [17101,0.846], + [17103,0.862], + [17105,0.892], + [17107,0.864], + [17109,0.879], + [17111,0.811], + [17113,0.795], + [17115,0.763], + [17117,0.961], + [17119,0.851], + [17121,0.912], + [17123,0.945], + [17125,0.965], + [17127,0.882], + [17129,0.956], + [17131,0.953], + [17133,0.963], + [17135,0.933], + [17137,0.882], + [17139,0.966], + [17141,0.868], + [17143,0.699], + [17145,0.858], + [17147,0.962], + [17149,0.958], + [17151,0.91], + [17153,0.636], + [17155,0.92], + [17157,0.848], + [17159,0.952], + [17161,0.718], + [17163,0.616], + [17165,0.915], + [17167,0.803], + [17169,0.887], + [17171,0.967], + [17173,0.972], + [17175,0.954], + [17177,0.825], + [17179,0.939], + [17181,0.911], + [17183,0.782], + [17185,0.939], + [17187,0.832], + [17189,0.96], + [17191,0.962], + [17193,0.963], + [17195,0.846], + [17197,0.637], + [17199,0.897], + [17201,0.69], + [17203,0.955], + [18001,0.935], + [18003,0.738], + [18005,0.815], + [18007,0.925], + [18009,0.955], + [18011,0.906], + [18013,0.957], + [18015,0.939], + [18017,0.797], + [18019,0.832], + [18021,0.961], + [18023,0.821], + [18025,0.96], + [18027,0.916], + [18029,0.961], + [18031,0.95], + [18033,0.95], + [18035,0.868], + [18037,0.902], + [18039,0.748], + [18041,0.955], + [18043,0.878], + [18045,0.953], + [18047,0.968], + [18049,0.918], + [18051,0.936], + [18053,0.849], + [18055,0.966], + [18057,0.837], + [18059,0.924], + [18061,0.954], + [18063,0.842], + [18065,0.935], + [18067,0.851], + [18069,0.948], + [18071,0.881], + [18073,0.916], + [18075,0.949], + [18077,0.926], + [18079,0.95], + [18081,0.89], + [18083,0.927], + [18085,0.878], + [18087,0.941], + [18089,0.541], + [18091,0.793], + [18093,0.957], + [18095,0.848], + [18097,0.552], + [18099,0.873], + [18101,0.97], + [18103,0.887], + [18105,0.835], + [18107,0.919], + [18109,0.96], + [18111,0.93], + [18113,0.871], + [18115,0.964], + [18117,0.951], + [18119,0.961], + [18121,0.945], + [18123,0.941], + [18125,0.963], + [18127,0.832], + [18129,0.959], + [18131,0.941], + [18133,0.918], + [18135,0.928], + [18137,0.955], + [18139,0.957], + [18141,0.726], + [18143,0.954], + [18145,0.923], + [18147,0.949], + [18149,0.942], + [18151,0.938], + [18153,0.919], + [18155,0.954], + [18157,0.758], + [18159,0.949], + [18161,0.954], + [18163,0.836], + [18165,0.964], + [18167,0.855], + [18169,0.943], + [18171,0.959], + [18173,0.924], + [18175,0.968], + [18177,0.881], + [18179,0.944], + [18181,0.893], + [18183,0.954], + [19001,0.96], + [19003,0.98], + [19005,0.905], + [19007,0.952], + [19009,0.966], + [19011,0.96], + [19013,0.811], + [19015,0.943], + [19017,0.951], + [19019,0.961], + [19021,0.596], + [19023,0.966], + [19025,0.942], + [19027,0.969], + [19029,0.953], + [19031,0.955], + [19033,0.906], + [19035,0.934], + [19037,0.958], + [19039,0.826], + [19041,0.932], + [19043,0.959], + [19045,0.911], + [19047,0.658], + [19049,0.854], + [19051,0.968], + [19053,0.927], + [19055,0.966], + [19057,0.873], + [19059,0.957], + [19061,0.907], + [19063,0.871], + [19065,0.937], + [19067,0.915], + [19069,0.868], + [19071,0.947], + [19073,0.946], + [19075,0.969], + [19077,0.95], + [19079,0.892], + [19081,0.932], + [19083,0.918], + [19085,0.962], + [19087,0.88], + [19089,0.965], + [19091,0.934], + [19093,0.953], + [19095,0.95], + [19097,0.955], + [19099,0.935], + [19101,0.805], + [19103,0.784], + [19105,0.939], + [19107,0.964], + [19109,0.948], + [19111,0.908], + [19113,0.858], + [19115,0.781], + [19117,0.975], + [19119,0.954], + [19121,0.953], + [19123,0.932], + [19125,0.946], + [19127,0.709], + [19129,0.941], + [19131,0.964], + [19133,0.946], + [19135,0.963], + [19137,0.937], + [19139,0.767], + [19141,0.925], + [19143,0.891], + [19145,0.91], + [19147,0.933], + [19149,0.917], + [19151,0.929], + [19153,0.777], + [19155,0.878], + [19157,0.916], + [19159,0.954], + [19161,0.949], + [19163,0.8], + [19165,0.946], + [19167,0.869], + [19169,0.838], + [19171,0.807], + [19173,0.904], + [19175,0.94], + [19177,0.963], + [19179,0.822], + [19181,0.942], + [19183,0.91], + [19185,0.961], + [19187,0.872], + [19189,0.915], + [19191,0.95], + [19193,0.73], + [19195,0.943], + [19197,0.854], + [20001,0.901], + [20003,0.948], + [20005,0.881], + [20007,0.895], + [20009,0.815], + [20011,0.901], + [20013,0.83], + [20015,0.888], + [20017,0.912], + [20019,0.86], + [20021,0.88], + [20023,0.931], + [20025,0.897], + [20027,0.94], + [20029,0.93], + [20031,0.933], + [20033,0.96], + [20035,0.796], + [20037,0.866], + [20039,0.953], + [20041,0.908], + [20043,0.903], + [20045,0.784], + [20047,0.762], + [20049,0.901], + [20051,0.894], + [20053,0.857], + [20055,0.413], + [20057,0.397], + [20059,0.91], + [20061,0.566], + [20063,0.929], + [20065,0.885], + [20067,0.517], + [20069,0.818], + [20071,0.745], + [20073,0.919], + [20075,0.645], + [20077,0.902], + [20079,0.828], + [20081,0.668], + [20083,0.881], + [20085,0.839], + [20087,0.936], + [20089,0.951], + [20091,0.799], + [20093,0.669], + [20095,0.931], + [20097,0.887], + [20099,0.854], + [20101,0.91], + [20103,0.789], + [20105,0.947], + [20107,0.935], + [20109,0.901], + [20111,0.711], + [20113,0.916], + [20115,0.926], + [20117,0.946], + [20119,0.755], + [20121,0.927], + [20123,0.949], + [20125,0.794], + [20127,0.916], + [20129,0.712], + [20131,0.951], + [20133,0.898], + [20135,0.873], + [20137,0.89], + [20139,0.932], + [20141,0.944], + [20143,0.941], + [20145,0.841], + [20147,0.937], + [20149,0.899], + [20151,0.883], + [20153,0.898], + [20155,0.84], + [20157,0.954], + [20159,0.831], + [20161,0.765], + [20163,0.941], + [20165,0.924], + [20167,0.923], + [20169,0.802], + [20171,0.814], + [20173,0.681], + [20175,0.301], + [20177,0.739], + [20179,0.93], + [20181,0.836], + [20183,0.947], + [20185,0.834], + [20187,0.577], + [20189,0.606], + [20191,0.896], + [20193,0.9], + [20195,0.951], + [20197,0.922], + [20199,0.916], + [20201,0.957], + [20203,0.617], + [20205,0.92], + [20207,0.927], + [20209,0.409], + [21001,0.933], + [21003,0.95], + [21005,0.938], + [21007,0.925], + [21009,0.904], + [21011,0.951], + [21013,0.942], + [21015,0.877], + [21017,0.851], + [21019,0.931], + [21021,0.854], + [21023,0.961], + [21025,0.966], + [21027,0.943], + [21029,0.944], + [21031,0.947], + [21033,0.909], + [21035,0.896], + [21037,0.923], + [21039,0.937], + [21041,0.887], + [21043,0.966], + [21045,0.946], + [21047,0.656], + [21049,0.902], + [21051,0.926], + [21053,0.95], + [21055,0.961], + [21057,0.924], + [21059,0.88], + [21061,0.951], + [21063,0.956], + [21065,0.99], + [21067,0.71], + [21069,0.958], + [21071,0.97], + [21073,0.816], + [21075,0.708], + [21077,0.91], + [21079,0.942], + [21081,0.944], + [21083,0.865], + [21085,0.952], + [21087,0.943], + [21089,0.962], + [21091,0.955], + [21093,0.76], + [21095,0.95], + [21097,0.937], + [21099,0.915], + [21101,0.866], + [21103,0.914], + [21105,0.865], + [21107,0.885], + [21109,0.979], + [21111,0.674], + [21113,0.888], + [21115,0.972], + [21117,0.885], + [21119,0.968], + [21121,0.958], + [21123,0.914], + [21125,0.958], + [21127,0.98], + [21129,0.957], + [21131,0.975], + [21133,0.975], + [21135,0.978], + [21137,0.942], + [21139,0.954], + [21141,0.886], + [21143,0.901], + [21145,0.833], + [21147,0.894], + [21149,0.961], + [21151,0.895], + [21153,0.988], + [21155,0.878], + [21157,0.963], + [21159,0.923], + [21161,0.89], + [21163,0.894], + [21165,0.971], + [21167,0.908], + [21169,0.949], + [21171,0.933], + [21173,0.928], + [21175,0.927], + [21177,0.92], + [21179,0.904], + [21181,0.957], + [21183,0.943], + [21185,0.883], + [21187,0.984], + [21189,0.934], + [21191,0.961], + [21193,0.952], + [21195,0.969], + [21197,0.957], + [21199,0.942], + [21201,0.939], + [21203,0.972], + [21205,0.945], + [21207,0.935], + [21209,0.87], + [21211,0.802], + [21213,0.852], + [21215,0.941], + [21217,0.895], + [21219,0.857], + [21221,0.882], + [21223,0.94], + [21225,0.824], + [21227,0.784], + [21229,0.877], + [21231,0.932], + [21233,0.884], + [21235,0.96], + [21237,0.982], + [21239,0.862], + [22001,0.774], + [22003,0.71], + [22005,0.684], + [22007,0.656], + [22009,0.65], + [22011,0.802], + [22013,0.543], + [22015,0.667], + [22017,0.449], + [22019,0.674], + [22021,0.792], + [22023,0.883], + [22025,0.661], + [22027,0.452], + [22029,0.569], + [22031,0.588], + [22033,0.446], + [22035,0.29], + [22037,0.534], + [22039,0.663], + [22041,0.651], + [22043,0.765], + [22045,0.588], + [22047,0.477], + [22049,0.673], + [22051,0.526], + [22053,0.781], + [22055,0.657], + [22057,0.768], + [22059,0.827], + [22061,0.533], + [22063,0.877], + [22065,0.338], + [22067,0.493], + [22069,0.521], + [22071,0.307], + [22073,0.578], + [22075,0.639], + [22077,0.603], + [22079,0.612], + [22081,0.567], + [22083,0.606], + [22085,0.676], + [22087,0.623], + [22089,0.651], + [22091,0.441], + [22093,0.482], + [22095,0.343], + [22097,0.544], + [22099,0.643], + [22101,0.561], + [22103,0.786], + [22105,0.632], + [22107,0.422], + [22109,0.667], + [22111,0.689], + [22113,0.783], + [22115,0.701], + [22117,0.655], + [22119,0.62], + [22121,0.559], + [22123,0.788], + [22125,0.524], + [22127,0.65], + [23001,0.906], + [23003,0.941], + [23005,0.903], + [23007,0.956], + [23009,0.947], + [23011,0.946], + [23013,0.952], + [23015,0.959], + [23017,0.953], + [23019,0.936], + [23021,0.949], + [23023,0.946], + [23025,0.957], + [23027,0.952], + [23029,0.894], + [23031,0.942], + [24001,0.87], + [24003,0.682], + [24005,0.573], + [24009,0.782], + [24011,0.755], + [24013,0.89], + [24015,0.851], + [24017,0.402], + [24019,0.629], + [24021,0.735], + [24023,0.964], + [24025,0.761], + [24027,0.52], + [24029,0.777], + [24031,0.438], + [24033,0.127], + [24035,0.865], + [24037,0.741], + [24039,0.515], + [24041,0.778], + [24043,0.789], + [24045,0.63], + [24047,0.802], + [24510,0.275], + [25001,0.893], + [25003,0.881], + [25005,0.813], + [25007,0.856], + [25009,0.703], + [25011,0.907], + [25013,0.627], + [25015,0.837], + [25017,0.719], + [25019,0.852], + [25021,0.749], + [25023,0.806], + [25025,0.449], + [25027,0.764], + [26001,0.958], + [26003,0.836], + [26005,0.884], + [26007,0.957], + [26009,0.947], + [26011,0.946], + [26013,0.726], + [26015,0.941], + [26017,0.901], + [26019,0.938], + [26021,0.749], + [26023,0.904], + [26025,0.775], + [26027,0.861], + [26029,0.937], + [26031,0.921], + [26033,0.696], + [26035,0.948], + [26037,0.899], + [26039,0.945], + [26041,0.929], + [26043,0.949], + [26045,0.828], + [26047,0.912], + [26049,0.724], + [26051,0.958], + [26053,0.901], + [26055,0.926], + [26057,0.86], + [26059,0.947], + [26061,0.921], + [26063,0.952], + [26065,0.696], + [26067,0.883], + [26069,0.938], + [26071,0.944], + [26073,0.854], + [26075,0.846], + [26077,0.774], + [26079,0.941], + [26081,0.737], + [26083,0.968], + [26085,0.85], + [26087,0.918], + [26089,0.9], + [26091,0.867], + [26093,0.943], + [26095,0.777], + [26097,0.731], + [26099,0.79], + [26101,0.89], + [26103,0.921], + [26105,0.915], + [26107,0.912], + [26109,0.929], + [26111,0.915], + [26113,0.94], + [26115,0.913], + [26117,0.918], + [26119,0.959], + [26121,0.764], + [26123,0.905], + [26125,0.72], + [26127,0.817], + [26129,0.946], + [26131,0.949], + [26133,0.945], + [26135,0.955], + [26137,0.945], + [26139,0.838], + [26141,0.955], + [26143,0.949], + [26145,0.694], + [26147,0.911], + [26149,0.865], + [26151,0.94], + [26153,0.857], + [26155,0.941], + [26157,0.933], + [26159,0.812], + [26161,0.701], + [26163,0.495], + [26165,0.945], + [27001,0.939], + [27003,0.813], + [27005,0.862], + [27007,0.719], + [27009,0.899], + [27011,0.961], + [27013,0.879], + [27015,0.934], + [27017,0.881], + [27019,0.888], + [27021,0.829], + [27023,0.871], + [27025,0.934], + [27027,0.872], + [27029,0.847], + [27031,0.855], + [27033,0.86], + [27035,0.949], + [27037,0.784], + [27039,0.922], + [27041,0.959], + [27043,0.908], + [27045,0.963], + [27047,0.851], + [27049,0.92], + [27051,0.951], + [27053,0.688], + [27055,0.96], + [27057,0.928], + [27059,0.937], + [27061,0.917], + [27063,0.924], + [27065,0.948], + [27067,0.8], + [27069,0.953], + [27071,0.932], + [27073,0.95], + [27075,0.955], + [27077,0.93], + [27079,0.911], + [27081,0.961], + [27083,0.838], + [27085,0.909], + [27087,0.454], + [27089,0.932], + [27091,0.929], + [27093,0.939], + [27095,0.888], + [27097,0.957], + [27099,0.786], + [27101,0.93], + [27103,0.886], + [27105,0.595], + [27107,0.894], + [27109,0.801], + [27111,0.926], + [27113,0.907], + [27115,0.892], + [27117,0.88], + [27119,0.869], + [27121,0.96], + [27123,0.619], + [27125,0.921], + [27127,0.87], + [27129,0.879], + [27131,0.822], + [27133,0.935], + [27135,0.919], + [27137,0.911], + [27139,0.812], + [27141,0.912], + [27143,0.884], + [27145,0.86], + [27147,0.866], + [27149,0.873], + [27151,0.912], + [27153,0.911], + [27155,0.887], + [27157,0.947], + [27159,0.942], + [27161,0.892], + [27163,0.827], + [27165,0.718], + [27167,0.982], + [27169,0.911], + [27171,0.924], + [27173,0.895], + [28001,0.362], + [28003,0.829], + [28005,0.574], + [28007,0.536], + [28009,0.605], + [28011,0.325], + [28013,0.645], + [28015,0.644], + [28017,0.496], + [28019,0.674], + [28021,0.113], + [28023,0.632], + [28025,0.388], + [28027,0.208], + [28029,0.439], + [28031,0.604], + [28033,0.643], + [28035,0.569], + [28037,0.632], + [28039,0.871], + [28041,0.723], + [28043,0.547], + [28045,0.847], + [28047,0.639], + [28049,0.245], + [28051,0.154], + [28053,0.206], + [28055,0.37], + [28057,0.9], + [28059,0.676], + [28061,0.447], + [28063,0.13], + [28065,0.377], + [28067,0.646], + [28069,0.339], + [28071,0.7], + [28073,0.741], + [28075,0.525], + [28077,0.649], + [28079,0.47], + [28081,0.655], + [28083,0.222], + [28085,0.672], + [28087,0.517], + [28089,0.553], + [28091,0.648], + [28093,0.477], + [28095,0.67], + [28097,0.521], + [28099,0.583], + [28101,0.602], + [28103,0.259], + [28105,0.564], + [28107,0.469], + [28109,0.818], + [28111,0.776], + [28113,0.434], + [28115,0.764], + [28117,0.825], + [28119,0.26], + [28121,0.739], + [28123,0.493], + [28125,0.251], + [28127,0.616], + [28129,0.74], + [28131,0.765], + [28133,0.238], + [28135,0.349], + [28137,0.646], + [28139,0.77], + [28141,0.932], + [28143,0.19], + [28145,0.782], + [28147,0.527], + [28149,0.471], + [28151,0.251], + [28153,0.574], + [28155,0.782], + [28157,0.278], + [28159,0.499], + [28161,0.58], + [28163,0.347], + [29001,0.898], + [29003,0.945], + [29005,0.966], + [29007,0.867], + [29009,0.856], + [29011,0.924], + [29013,0.941], + [29015,0.948], + [29017,0.96], + [29019,0.789], + [29021,0.833], + [29023,0.886], + [29025,0.945], + [29027,0.902], + [29029,0.943], + [29031,0.859], + [29033,0.947], + [29035,0.962], + [29037,0.88], + [29039,0.946], + [29041,0.95], + [29043,0.933], + [29045,0.969], + [29047,0.811], + [29049,0.937], + [29051,0.816], + [29053,0.878], + [29055,0.952], + [29057,0.937], + [29059,0.946], + [29061,0.959], + [29063,0.838], + [29065,0.943], + [29067,0.98], + [29069,0.804], + [29071,0.95], + [29073,0.959], + [29075,0.959], + [29077,0.875], + [29079,0.941], + [29081,0.951], + [29083,0.935], + [29085,0.948], + [29087,0.958], + [29089,0.906], + [29091,0.943], + [29093,0.944], + [29095,0.622], + [29097,0.842], + [29099,0.944], + [29101,0.858], + [29103,0.962], + [29105,0.931], + [29107,0.92], + [29109,0.891], + [29111,0.926], + [29113,0.93], + [29115,0.948], + [29117,0.924], + [29119,0.773], + [29121,0.936], + [29123,0.946], + [29125,0.955], + [29127,0.9], + [29129,0.957], + [29131,0.948], + [29133,0.715], + [29135,0.916], + [29137,0.929], + [29139,0.941], + [29141,0.941], + [29143,0.799], + [29145,0.861], + [29147,0.926], + [29149,0.94], + [29151,0.985], + [29153,0.953], + [29155,0.685], + [29157,0.952], + [29159,0.849], + [29161,0.887], + [29163,0.881], + [29165,0.81], + [29167,0.937], + [29169,0.694], + [29171,0.96], + [29173,0.955], + [29175,0.885], + [29177,0.937], + [29179,0.937], + [29181,0.95], + [29183,0.871], + [29185,0.945], + [29186,0.957], + [29187,0.918], + [29189,0.66], + [29195,0.803], + [29197,0.969], + [29199,0.993], + [29201,0.832], + [29203,0.939], + [29205,0.952], + [29207,0.954], + [29209,0.948], + [29211,0.768], + [29213,0.888], + [29215,0.91], + [29217,0.939], + [29219,0.917], + [29221,0.942], + [29223,0.948], + [29225,0.941], + [29227,0.964], + [29229,0.95], + [29510,0.436], + [30001,0.903], + [30003,0.268], + [30005,0.446], + [30007,0.944], + [30009,0.943], + [30011,0.968], + [30013,0.852], + [30015,0.769], + [30017,0.918], + [30019,0.93], + [30021,0.923], + [30023,0.901], + [30025,0.944], + [30027,0.941], + [30029,0.928], + [30031,0.916], + [30033,0.992], + [30035,0.299], + [30037,0.896], + [30039,0.943], + [30041,0.692], + [30043,0.927], + [30045,0.927], + [30047,0.65], + [30049,0.914], + [30051,0.983], + [30053,0.926], + [30055,0.888], + [30057,0.925], + [30059,0.926], + [30061,0.914], + [30063,0.892], + [30065,0.911], + [30067,0.933], + [30069,0.945], + [30071,0.838], + [30073,0.812], + [30075,0.93], + [30077,0.894], + [30079,0.978], + [30081,0.929], + [30083,0.888], + [30085,0.344], + [30087,0.548], + [30089,0.901], + [30091,0.911], + [30093,0.904], + [30095,0.928], + [30097,0.941], + [30099,0.936], + [30101,0.871], + [30103,0.943], + [30105,0.845], + [30107,0.934], + [30109,0.932], + [30111,0.864], + [31001,0.859], + [31003,0.951], + [31005,0.958], + [31007,0.903], + [31009,1], + [31011,0.964], + [31013,0.814], + [31015,0.95], + [31017,0.956], + [31019,0.87], + [31021,0.929], + [31023,0.944], + [31025,0.936], + [31027,0.964], + [31029,0.87], + [31031,0.879], + [31033,0.895], + [31035,0.892], + [31037,0.489], + [31039,0.881], + [31041,0.946], + [31043,0.48], + [31045,0.851], + [31047,0.588], + [31049,0.878], + [31051,0.842], + [31053,0.837], + [31055,0.694], + [31057,0.876], + [31059,0.936], + [31061,0.957], + [31063,0.961], + [31065,0.934], + [31067,0.945], + [31069,0.943], + [31071,0.971], + [31073,0.926], + [31075,0.957], + [31077,0.961], + [31079,0.667], + [31081,0.947], + [31083,0.954], + [31085,0.917], + [31087,0.991], + [31089,0.933], + [31091,0.919], + [31093,0.955], + [31095,0.935], + [31097,0.804], + [31099,0.921], + [31101,0.897], + [31103,0.986], + [31105,0.862], + [31107,0.856], + [31109,0.812], + [31111,0.877], + [31113,0.944], + [31115,0.979], + [31117,0.985], + [31119,0.797], + [31121,0.925], + [31123,0.818], + [31125,0.964], + [31127,0.938], + [31129,0.946], + [31131,0.888], + [31133,0.954], + [31135,0.952], + [31137,0.922], + [31139,0.962], + [31141,0.784], + [31143,0.928], + [31145,0.917], + [31147,0.922], + [31149,0.965], + [31151,0.69], + [31153,0.81], + [31155,0.953], + [31157,0.72], + [31159,0.947], + [31161,0.811], + [31163,0.963], + [31165,0.926], + [31167,0.918], + [31169,0.949], + [31171,0.95], + [31173,0.357], + [31175,0.947], + [31177,0.945], + [31179,0.899], + [31181,0.915], + [31183,0.969], + [31185,0.905], + [32001,0.732], + [32003,0.428], + [32005,0.808], + [32007,0.667], + [32009,0.799], + [32011,0.899], + [32013,0.654], + [32015,0.641], + [32017,0.869], + [32019,0.749], + [32021,0.603], + [32023,0.763], + [32027,0.652], + [32029,0.846], + [32031,0.631], + [32033,0.716], + [32510,0.67], + [33001,0.95], + [33003,0.958], + [33005,0.941], + [33007,0.92], + [33009,0.906], + [33011,0.844], + [33013,0.924], + [33015,0.925], + [33017,0.906], + [33019,0.95], + [34001,0.564], + [34003,0.566], + [34005,0.674], + [34007,0.567], + [34009,0.853], + [34011,0.464], + [34013,0.305], + [34015,0.785], + [34017,0.288], + [34019,0.855], + [34021,0.497], + [34023,0.431], + [34025,0.752], + [34027,0.714], + [34029,0.847], + [34031,0.413], + [34033,0.743], + [34035,0.563], + [34037,0.863], + [34039,0.395], + [34041,0.817], + [35001,0.387], + [35003,0.809], + [35005,0.389], + [35006,0.193], + [35007,0.467], + [35009,0.476], + [35011,0.444], + [35013,0.272], + [35015,0.468], + [35017,0.458], + [35019,0.194], + [35021,0.59], + [35023,0.39], + [35025,0.354], + [35027,0.649], + [35028,0.718], + [35029,0.295], + [35031,0.086], + [35033,0.157], + [35035,0.489], + [35037,0.496], + [35039,0.124], + [35041,0.518], + [35043,0.435], + [35045,0.382], + [35047,0.178], + [35049,0.428], + [35051,0.647], + [35053,0.342], + [35055,0.353], + [35057,0.547], + [35059,0.513], + [35061,0.326], + [36001,0.722], + [36003,0.944], + [36005,0.091], + [36007,0.834], + [36009,0.906], + [36011,0.901], + [36013,0.874], + [36015,0.862], + [36017,0.947], + [36019,0.899], + [36021,0.863], + [36023,0.926], + [36025,0.921], + [36027,0.715], + [36029,0.755], + [36031,0.92], + [36033,0.816], + [36035,0.927], + [36037,0.905], + [36039,0.853], + [36041,0.959], + [36043,0.945], + [36045,0.816], + [36047,0.364], + [36049,0.959], + [36051,0.908], + [36053,0.931], + [36055,0.706], + [36057,0.813], + [36059,0.6], + [36061,0.469], + [36063,0.854], + [36065,0.82], + [36067,0.768], + [36069,0.898], + [36071,0.642], + [36073,0.864], + [36075,0.94], + [36077,0.911], + [36079,0.787], + [36081,0.25], + [36083,0.832], + [36085,0.61], + [36087,0.631], + [36089,0.92], + [36091,0.904], + [36093,0.726], + [36095,0.932], + [36097,0.95], + [36099,0.89], + [36101,0.936], + [36103,0.676], + [36105,0.715], + [36107,0.95], + [36109,0.771], + [36111,0.791], + [36113,0.938], + [36115,0.923], + [36117,0.899], + [36119,0.535], + [36121,0.899], + [36123,0.947], + [37001,0.641], + [37003,0.868], + [37005,0.869], + [37007,0.446], + [37009,0.925], + [37011,0.887], + [37013,0.658], + [37015,0.346], + [37017,0.547], + [37019,0.819], + [37021,0.835], + [37023,0.816], + [37025,0.656], + [37027,0.873], + [37029,0.805], + [37031,0.864], + [37033,0.612], + [37035,0.755], + [37037,0.717], + [37039,0.91], + [37041,0.599], + [37043,0.934], + [37045,0.729], + [37047,0.593], + [37049,0.659], + [37051,0.435], + [37053,0.872], + [37055,0.873], + [37057,0.802], + [37059,0.844], + [37061,0.516], + [37063,0.425], + [37065,0.362], + [37067,0.567], + [37069,0.635], + [37071,0.725], + [37073,0.633], + [37075,0.866], + [37077,0.58], + [37079,0.468], + [37081,0.503], + [37083,0.384], + [37085,0.613], + [37087,0.926], + [37089,0.831], + [37091,0.333], + [37093,0.399], + [37095,0.589], + [37097,0.76], + [37099,0.807], + [37101,0.678], + [37103,0.626], + [37105,0.581], + [37107,0.492], + [37109,0.848], + [37111,0.874], + [37113,0.89], + [37115,0.94], + [37117,0.521], + [37119,0.468], + [37121,0.92], + [37123,0.633], + [37125,0.771], + [37127,0.499], + [37129,0.771], + [37131,0.387], + [37133,0.661], + [37135,0.694], + [37137,0.742], + [37139,0.548], + [37141,0.751], + [37143,0.723], + [37145,0.664], + [37147,0.544], + [37149,0.857], + [37151,0.79], + [37153,0.571], + [37155,0.251], + [37157,0.724], + [37159,0.72], + [37161,0.833], + [37163,0.51], + [37165,0.432], + [37167,0.808], + [37169,0.911], + [37171,0.839], + [37173,0.617], + [37175,0.904], + [37177,0.531], + [37179,0.721], + [37181,0.396], + [37183,0.6], + [37185,0.383], + [37187,0.444], + [37189,0.917], + [37191,0.534], + [37193,0.872], + [37195,0.47], + [37197,0.843], + [37199,0.925], + [38001,0.923], + [38003,0.925], + [38005,0.405], + [38007,0.971], + [38009,0.913], + [38011,0.927], + [38013,0.958], + [38015,0.889], + [38017,0.854], + [38019,0.949], + [38021,0.933], + [38023,0.892], + [38025,0.835], + [38027,0.899], + [38029,0.955], + [38031,0.952], + [38033,0.902], + [38035,0.837], + [38037,0.956], + [38039,0.953], + [38041,0.91], + [38043,0.941], + [38045,0.96], + [38047,0.971], + [38049,0.952], + [38051,0.949], + [38053,0.775], + [38055,0.891], + [38057,0.914], + [38059,0.898], + [38061,0.606], + [38063,0.953], + [38065,0.902], + [38067,0.909], + [38069,0.935], + [38071,0.83], + [38073,0.942], + [38075,0.907], + [38077,0.913], + [38079,0.181], + [38081,0.919], + [38083,0.989], + [38085,0.126], + [38087,0.964], + [38089,0.873], + [38091,0.975], + [38093,0.921], + [38095,0.886], + [38097,0.92], + [38099,0.843], + [38101,0.828], + [38103,0.963], + [38105,0.795], + [39001,0.981], + [39003,0.807], + [39005,0.956], + [39007,0.895], + [39009,0.896], + [39011,0.956], + [39013,0.927], + [39015,0.964], + [39017,0.81], + [39019,0.98], + [39021,0.933], + [39023,0.841], + [39025,0.935], + [39027,0.933], + [39029,0.939], + [39031,0.959], + [39033,0.953], + [39035,0.589], + [39037,0.961], + [39039,0.864], + [39041,0.85], + [39043,0.831], + [39045,0.86], + [39047,0.924], + [39049,0.63], + [39051,0.89], + [39053,0.931], + [39055,0.956], + [39057,0.838], + [39059,0.942], + [39061,0.652], + [39063,0.89], + [39065,0.949], + [39067,0.948], + [39069,0.898], + [39071,0.951], + [39073,0.963], + [39075,0.978], + [39077,0.901], + [39079,0.96], + [39081,0.903], + [39083,0.954], + [39085,0.882], + [39087,0.948], + [39089,0.901], + [39091,0.934], + [39093,0.782], + [39095,0.686], + [39097,0.885], + [39099,0.76], + [39101,0.883], + [39103,0.938], + [39105,0.967], + [39107,0.954], + [39109,0.923], + [39111,0.971], + [39113,0.707], + [39115,0.921], + [39117,0.959], + [39119,0.914], + [39121,0.925], + [39123,0.923], + [39125,0.925], + [39127,0.966], + [39129,0.926], + [39131,0.952], + [39133,0.896], + [39135,0.964], + [39137,0.92], + [39139,0.855], + [39141,0.896], + [39143,0.844], + [39145,0.933], + [39147,0.898], + [39149,0.929], + [39151,0.864], + [39153,0.77], + [39155,0.871], + [39157,0.945], + [39159,0.895], + [39161,0.939], + [39163,0.965], + [39165,0.862], + [39167,0.951], + [39169,0.937], + [39171,0.926], + [39173,0.883], + [39175,0.95], + [40001,0.399], + [40003,0.838], + [40005,0.71], + [40007,0.722], + [40009,0.753], + [40011,0.727], + [40013,0.71], + [40015,0.568], + [40017,0.762], + [40019,0.7], + [40021,0.476], + [40023,0.606], + [40025,0.766], + [40027,0.717], + [40029,0.684], + [40031,0.562], + [40033,0.76], + [40035,0.633], + [40037,0.76], + [40039,0.682], + [40041,0.637], + [40043,0.82], + [40045,0.865], + [40047,0.743], + [40049,0.755], + [40051,0.815], + [40053,0.88], + [40055,0.745], + [40057,0.568], + [40059,0.758], + [40061,0.704], + [40063,0.627], + [40065,0.627], + [40067,0.778], + [40069,0.695], + [40071,0.746], + [40073,0.763], + [40075,0.742], + [40077,0.647], + [40079,0.713], + [40081,0.822], + [40083,0.776], + [40085,0.71], + [40087,0.792], + [40089,0.621], + [40091,0.679], + [40093,0.848], + [40095,0.651], + [40097,0.649], + [40099,0.72], + [40101,0.559], + [40103,0.81], + [40105,0.667], + [40107,0.613], + [40109,0.56], + [40111,0.622], + [40113,0.634], + [40115,0.65], + [40117,0.767], + [40119,0.769], + [40121,0.695], + [40123,0.654], + [40125,0.724], + [40127,0.71], + [40129,0.836], + [40131,0.718], + [40133,0.644], + [40135,0.625], + [40137,0.801], + [40139,0.44], + [40141,0.592], + [40143,0.62], + [40145,0.715], + [40147,0.728], + [40149,0.834], + [40151,0.829], + [40153,0.798], + [41001,0.904], + [41003,0.802], + [41005,0.819], + [41007,0.855], + [41009,0.885], + [41011,0.853], + [41013,0.882], + [41015,0.863], + [41017,0.873], + [41019,0.878], + [41021,0.88], + [41023,0.915], + [41025,0.87], + [41027,0.637], + [41029,0.808], + [41031,0.604], + [41033,0.869], + [41035,0.779], + [41037,0.844], + [41039,0.818], + [41041,0.825], + [41043,0.849], + [41045,0.611], + [41047,0.655], + [41049,0.593], + [41051,0.697], + [41053,0.781], + [41055,0.893], + [41057,0.843], + [41059,0.657], + [41061,0.887], + [41063,0.929], + [41065,0.746], + [41067,0.657], + [41069,0.873], + [41071,0.772], + [42001,0.89], + [42003,0.785], + [42005,0.971], + [42007,0.895], + [42009,0.967], + [42011,0.717], + [42013,0.946], + [42015,0.957], + [42017,0.841], + [42019,0.947], + [42021,0.927], + [42023,0.957], + [42025,0.917], + [42027,0.854], + [42029,0.794], + [42031,0.96], + [42033,0.93], + [42035,0.952], + [42037,0.932], + [42039,0.948], + [42041,0.857], + [42043,0.658], + [42045,0.668], + [42047,0.973], + [42049,0.842], + [42051,0.918], + [42053,0.67], + [42055,0.881], + [42057,0.96], + [42059,0.934], + [42061,0.905], + [42063,0.939], + [42065,0.972], + [42067,0.942], + [42069,0.852], + [42071,0.82], + [42073,0.92], + [42075,0.822], + [42077,0.644], + [42079,0.815], + [42081,0.906], + [42083,0.935], + [42085,0.902], + [42087,0.959], + [42089,0.661], + [42091,0.758], + [42093,0.913], + [42095,0.767], + [42097,0.925], + [42099,0.953], + [42101,0.345], + [42103,0.804], + [42105,0.965], + [42107,0.91], + [42109,0.951], + [42111,0.943], + [42113,0.951], + [42115,0.963], + [42117,0.961], + [42119,0.843], + [42121,0.958], + [42123,0.968], + [42125,0.922], + [42127,0.905], + [42129,0.938], + [42131,0.956], + [42133,0.834], + [44001,0.914], + [44003,0.883], + [44005,0.858], + [44007,0.608], + [44009,0.909], + [45001,0.689], + [45003,0.662], + [45005,0.221], + [45007,0.774], + [45009,0.36], + [45011,0.504], + [45013,0.679], + [45015,0.635], + [45017,0.54], + [45019,0.645], + [45021,0.728], + [45023,0.587], + [45025,0.603], + [45027,0.477], + [45029,0.566], + [45031,0.547], + [45033,0.456], + [45035,0.642], + [45037,0.567], + [45039,0.382], + [45041,0.518], + [45043,0.641], + [45045,0.683], + [45047,0.597], + [45049,0.409], + [45051,0.773], + [45053,0.428], + [45055,0.688], + [45057,0.702], + [45059,0.679], + [45061,0.324], + [45063,0.749], + [45065,0.508], + [45067,0.386], + [45069,0.391], + [45071,0.599], + [45073,0.844], + [45075,0.333], + [45077,0.857], + [45079,0.423], + [45081,0.583], + [45083,0.683], + [45085,0.452], + [45087,0.646], + [45089,0.312], + [45091,0.705], + [46003,0.883], + [46005,0.769], + [46007,0.332], + [46009,0.868], + [46011,0.902], + [46013,0.871], + [46015,0.84], + [46017,0.137], + [46019,0.912], + [46021,0.981], + [46023,0.626], + [46025,0.936], + [46027,0.873], + [46029,0.928], + [46031,0.289], + [46033,0.898], + [46035,0.906], + [46037,0.859], + [46039,0.961], + [46041,0.198], + [46043,0.944], + [46045,0.961], + [46047,0.846], + [46049,0.961], + [46051,0.926], + [46053,0.877], + [46055,0.892], + [46057,0.935], + [46059,0.964], + [46061,0.995], + [46063,0.921], + [46065,0.822], + [46067,0.947], + [46069,0.879], + [46071,0.39], + [46073,0.945], + [46075,0.929], + [46077,0.968], + [46079,0.932], + [46081,0.909], + [46083,0.93], + [46085,0.556], + [46087,0.934], + [46089,0.95], + [46091,0.83], + [46093,0.876], + [46095,0.385], + [46097,0.951], + [46099,0.825], + [46101,0.768], + [46102,0.044], + [46103,0.799], + [46105,0.942], + [46107,0.915], + [46109,0.565], + [46111,0.94], + [46115,0.937], + [46117,0.881], + [46119,0.96], + [46121,0.079], + [46123,0.809], + [46125,0.953], + [46127,0.921], + [46129,0.791], + [46135,0.884], + [46137,0.235], + [47001,0.891], + [47003,0.768], + [47005,0.927], + [47007,0.879], + [47009,0.909], + [47011,0.855], + [47013,0.963], + [47015,0.941], + [47017,0.846], + [47019,0.948], + [47021,0.925], + [47023,0.855], + [47025,0.952], + [47027,0.944], + [47029,0.933], + [47031,0.884], + [47033,0.739], + [47035,0.944], + [47037,0.562], + [47039,0.914], + [47041,0.88], + [47043,0.895], + [47045,0.8], + [47047,0.68], + [47049,0.965], + [47051,0.884], + [47053,0.766], + [47055,0.841], + [47057,0.939], + [47059,0.93], + [47061,0.869], + [47063,0.815], + [47065,0.711], + [47067,0.967], + [47069,0.542], + [47071,0.918], + [47073,0.951], + [47075,0.44], + [47077,0.874], + [47079,0.873], + [47081,0.904], + [47083,0.92], + [47085,0.925], + [47087,0.953], + [47089,0.922], + [47091,0.923], + [47093,0.823], + [47095,0.667], + [47097,0.606], + [47099,0.933], + [47101,0.933], + [47103,0.868], + [47105,0.877], + [47107,0.892], + [47109,0.898], + [47111,0.919], + [47113,0.558], + [47115,0.917], + [47117,0.849], + [47119,0.793], + [47121,0.941], + [47123,0.91], + [47125,0.633], + [47127,0.926], + [47129,0.921], + [47131,0.829], + [47133,0.961], + [47135,0.919], + [47137,0.994], + [47139,0.948], + [47141,0.884], + [47143,0.905], + [47145,0.927], + [47147,0.833], + [47149,0.708], + [47151,0.971], + [47153,0.935], + [47155,0.9], + [47157,0.358], + [47159,0.926], + [47161,0.918], + [47163,0.934], + [47165,0.841], + [47167,0.757], + [47169,0.842], + [47171,0.931], + [47173,0.962], + [47175,0.957], + [47177,0.852], + [47179,0.886], + [47181,0.897], + [47183,0.868], + [47185,0.935], + [47187,0.846], + [47189,0.85], + [48001,0.589], + [48003,0.402], + [48005,0.605], + [48007,0.674], + [48009,0.883], + [48011,0.894], + [48013,0.333], + [48015,0.622], + [48017,0.355], + [48019,0.778], + [48021,0.523], + [48023,0.866], + [48025,0.314], + [48027,0.458], + [48029,0.277], + [48031,0.77], + [48033,0.838], + [48035,0.778], + [48037,0.638], + [48039,0.472], + [48041,0.558], + [48043,0.503], + [48045,0.58], + [48047,0.067], + [48049,0.716], + [48051,0.647], + [48053,0.736], + [48055,0.397], + [48057,0.423], + [48059,0.86], + [48061,0.09], + [48063,0.558], + [48065,0.857], + [48067,0.763], + [48069,0.32], + [48071,0.67], + [48073,0.607], + [48075,0.585], + [48077,0.898], + [48079,0.361], + [48081,0.762], + [48083,0.768], + [48085,0.57], + [48087,0.601], + [48089,0.559], + [48091,0.675], + [48093,0.695], + [48095,0.528], + [48097,0.753], + [48099,0.587], + [48101,0.518], + [48103,0.311], + [48105,0.374], + [48107,0.394], + [48109,0.254], + [48111,0.496], + [48113,0.291], + [48115,0.333], + [48117,0.247], + [48119,0.808], + [48121,0.592], + [48123,0.548], + [48125,0.67], + [48127,0.11], + [48129,0.808], + [48131,0.093], + [48133,0.793], + [48135,0.323], + [48137,0.433], + [48139,0.608], + [48141,0.12], + [48143,0.746], + [48145,0.512], + [48147,0.788], + [48149,0.712], + [48151,0.618], + [48153,0.368], + [48155,0.721], + [48157,0.331], + [48159,0.787], + [48161,0.666], + [48163,0.163], + [48165,0.555], + [48167,0.574], + [48169,0.397], + [48171,0.747], + [48173,0.562], + [48175,0.583], + [48177,0.417], + [48179,0.633], + [48181,0.754], + [48183,0.575], + [48185,0.585], + [48187,0.504], + [48189,0.338], + [48191,0.556], + [48193,0.84], + [48195,0.516], + [48197,0.717], + [48199,0.865], + [48201,0.296], + [48203,0.636], + [48205,0.6], + [48207,0.647], + [48209,0.538], + [48211,0.631], + [48213,0.782], + [48215,0.061], + [48217,0.706], + [48219,0.469], + [48221,0.842], + [48223,0.733], + [48225,0.618], + [48227,0.487], + [48229,0.173], + [48231,0.716], + [48233,0.704], + [48235,0.699], + [48237,0.772], + [48239,0.585], + [48241,0.745], + [48243,0.584], + [48245,0.406], + [48247,0.081], + [48249,0.18], + [48251,0.72], + [48253,0.541], + [48255,0.358], + [48257,0.637], + [48259,0.723], + [48261,0.053], + [48263,0.838], + [48265,0.687], + [48267,0.757], + [48269,0.671], + [48271,0.406], + [48273,0.202], + [48275,0.582], + [48277,0.744], + [48279,0.393], + [48281,0.726], + [48283,0.132], + [48285,0.735], + [48287,0.633], + [48289,0.761], + [48291,0.633], + [48293,0.587], + [48295,0.625], + [48297,0.561], + [48299,0.864], + [48301,0.847], + [48303,0.535], + [48305,0.493], + [48307,0.605], + [48309,0.559], + [48311,0.491], + [48313,0.55], + [48315,0.708], + [48317,0.539], + [48319,0.742], + [48321,0.436], + [48323,0.025], + [48325,0.436], + [48327,0.548], + [48329,0.454], + [48331,0.624], + [48333,0.782], + [48335,0.479], + [48337,0.858], + [48339,0.66], + [48341,0.325], + [48343,0.644], + [48345,0.744], + [48347,0.595], + [48349,0.56], + [48351,0.735], + [48353,0.555], + [48355,0.295], + [48357,0.431], + [48359,0.771], + [48361,0.807], + [48363,0.75], + [48365,0.732], + [48367,0.835], + [48369,0.341], + [48371,0.252], + [48373,0.709], + [48375,0.441], + [48377,0.13], + [48379,0.853], + [48381,0.717], + [48383,0.298], + [48385,0.731], + [48387,0.734], + [48389,0.223], + [48391,0.416], + [48393,0.839], + [48395,0.572], + [48397,0.708], + [48399,0.615], + [48401,0.637], + [48403,0.855], + [48405,0.691], + [48407,0.747], + [48409,0.384], + [48411,0.642], + [48413,0.461], + [48415,0.528], + [48417,0.854], + [48419,0.616], + [48421,0.534], + [48423,0.597], + [48425,0.791], + [48427,0.007], + [48429,0.711], + [48431,0.47], + [48433,0.759], + [48435,0.341], + [48437,0.462], + [48439,0.467], + [48441,0.634], + [48443,0.394], + [48445,0.395], + [48447,0.848], + [48449,0.452], + [48451,0.533], + [48453,0.49], + [48455,0.784], + [48457,0.79], + [48459,0.804], + [48461,0.391], + [48463,0.262], + [48465,0.153], + [48467,0.837], + [48469,0.447], + [48471,0.564], + [48473,0.429], + [48475,0.4], + [48477,0.64], + [48479,0.035], + [48481,0.445], + [48483,0.685], + [48485,0.653], + [48487,0.581], + [48489,0.112], + [48491,0.594], + [48493,0.57], + [48495,0.351], + [48497,0.768], + [48499,0.825], + [48501,0.318], + [48503,0.779], + [48505,0.046], + [48507,0.051], + [49001,0.843], + [49003,0.87], + [49005,0.836], + [49007,0.855], + [49009,0.974], + [49011,0.838], + [49013,0.852], + [49015,0.911], + [49017,0.888], + [49019,0.824], + [49021,0.858], + [49023,0.916], + [49025,0.912], + [49027,0.83], + [49029,0.95], + [49031,0.967], + [49033,0.893], + [49035,0.711], + [49037,0.438], + [49039,0.86], + [49041,0.917], + [49043,0.843], + [49045,0.831], + [49047,0.816], + [49049,0.823], + [49051,0.836], + [49053,0.843], + [49055,0.907], + [49057,0.761], + [50001,0.925], + [50003,0.941], + [50005,0.948], + [50007,0.885], + [50009,0.954], + [50011,0.939], + [50013,0.928], + [50015,0.945], + [50017,0.956], + [50019,0.951], + [50021,0.953], + [50023,0.942], + [50025,0.931], + [50027,0.946], + [51001,0.6], + [51003,0.77], + [51005,0.915], + [51007,0.736], + [51009,0.747], + [51011,0.767], + [51013,0.615], + [51015,0.907], + [51017,0.892], + [51019,0.877], + [51021,0.939], + [51023,0.929], + [51025,0.407], + [51027,0.949], + [51029,0.612], + [51031,0.796], + [51033,0.632], + [51035,0.945], + [51036,0.423], + [51037,0.679], + [51041,0.618], + [51043,0.861], + [51045,0.986], + [51047,0.703], + [51049,0.633], + [51051,0.976], + [51053,0.619], + [51057,0.548], + [51059,0.507], + [51061,0.8], + [51063,0.932], + [51065,0.782], + [51067,0.872], + [51069,0.834], + [51071,0.949], + [51073,0.849], + [51075,0.777], + [51077,0.897], + [51079,0.826], + [51081,0.364], + [51083,0.597], + [51085,0.838], + [51087,0.531], + [51089,0.698], + [51091,0.993], + [51093,0.707], + [51095,0.756], + [51097,0.662], + [51099,0.734], + [51101,0.768], + [51103,0.675], + [51105,0.929], + [51107,0.561], + [51109,0.78], + [51111,0.594], + [51113,0.846], + [51115,0.857], + [51117,0.6], + [51119,0.775], + [51121,0.833], + [51125,0.811], + [51127,0.789], + [51131,0.542], + [51133,0.697], + [51135,0.543], + [51137,0.781], + [51139,0.941], + [51141,0.897], + [51143,0.741], + [51145,0.857], + [51147,0.614], + [51149,0.549], + [51153,0.429], + [51155,0.908], + [51157,0.884], + [51159,0.606], + [51161,0.858], + [51163,0.922], + [51165,0.887], + [51167,0.967], + [51169,0.966], + [51171,0.876], + [51173,0.941], + [51175,0.61], + [51177,0.681], + [51179,0.616], + [51181,0.526], + [51183,0.383], + [51185,0.939], + [51187,0.868], + [51191,0.953], + [51193,0.639], + [51195,0.915], + [51197,0.938], + [51199,0.707], + [51510,0.519], + [51520,0.882], + [51530,0.881], + [51540,0.657], + [51550,0.574], + [51570,0.723], + [51580,0.81], + [51590,0.424], + [51595,0.245], + [51600,0.562], + [51610,0.717], + [51620,0.369], + [51630,0.594], + [51640,0.791], + [51650,0.382], + [51660,0.661], + [51670,0.465], + [51678,0.791], + [51680,0.623], + [51683,0.408], + [51685,0.331], + [51690,0.44], + [51700,0.429], + [51710,0.434], + [51720,0.886], + [51730,0.151], + [51735,0.914], + [51740,0.377], + [51750,0.833], + [51760,0.408], + [51770,0.585], + [51775,0.853], + [51790,0.811], + [51800,0.493], + [51810,0.617], + [51820,0.751], + [51830,0.677], + [51840,0.66], + [53001,0.338], + [53003,0.904], + [53005,0.704], + [53007,0.68], + [53009,0.828], + [53011,0.785], + [53013,0.854], + [53015,0.836], + [53017,0.642], + [53019,0.732], + [53021,0.404], + [53023,0.895], + [53025,0.54], + [53027,0.794], + [53029,0.792], + [53031,0.884], + [53033,0.596], + [53035,0.767], + [53037,0.841], + [53039,0.822], + [53041,0.834], + [53043,0.913], + [53045,0.805], + [53047,0.649], + [53049,0.819], + [53051,0.885], + [53053,0.668], + [53055,0.884], + [53057,0.744], + [53059,0.877], + [53061,0.696], + [53063,0.846], + [53065,0.866], + [53067,0.75], + [53069,0.867], + [53071,0.717], + [53073,0.789], + [53075,0.786], + [53077,0.432], + [54001,0.955], + [54003,0.839], + [54005,0.976], + [54007,0.968], + [54009,0.956], + [54011,0.898], + [54013,0.971], + [54015,0.992], + [54017,0.952], + [54019,0.924], + [54021,0.815], + [54023,0.965], + [54025,0.922], + [54027,0.957], + [54029,0.938], + [54031,0.9], + [54033,0.942], + [54035,0.969], + [54037,0.832], + [54039,0.877], + [54041,0.963], + [54043,0.978], + [54045,0.959], + [54047,0.887], + [54049,0.925], + [54051,0.967], + [54053,0.966], + [54055,0.903], + [54057,0.94], + [54059,0.958], + [54061,0.879], + [54063,0.963], + [54065,0.953], + [54067,0.969], + [54069,0.921], + [54071,0.947], + [54073,0.958], + [54075,0.981], + [54077,0.906], + [54079,0.955], + [54081,0.871], + [54083,0.958], + [54085,0.969], + [54087,0.968], + [54089,0.919], + [54091,0.955], + [54093,0.973], + [54095,0.975], + [54097,0.959], + [54099,0.973], + [54101,0.996], + [54103,0.969], + [54105,0.989], + [54107,0.952], + [54109,0.971], + [55001,0.904], + [55003,0.824], + [55005,0.933], + [55007,0.846], + [55009,0.808], + [55011,0.957], + [55013,0.904], + [55015,0.909], + [55017,0.936], + [55019,0.931], + [55021,0.926], + [55023,0.944], + [55025,0.795], + [55027,0.899], + [55029,0.938], + [55031,0.916], + [55033,0.927], + [55035,0.9], + [55037,0.971], + [55039,0.896], + [55041,0.79], + [55043,0.95], + [55045,0.943], + [55047,0.923], + [55049,0.953], + [55051,0.954], + [55053,0.861], + [55055,0.896], + [55057,0.916], + [55059,0.758], + [55061,0.944], + [55063,0.899], + [55065,0.941], + [55067,0.938], + [55069,0.954], + [55071,0.905], + [55073,0.887], + [55075,0.953], + [55077,0.933], + [55078,0.101], + [55079,0.512], + [55081,0.905], + [55083,0.95], + [55085,0.949], + [55087,0.875], + [55089,0.915], + [55091,0.964], + [55093,0.941], + [55095,0.95], + [55097,0.91], + [55099,0.941], + [55101,0.72], + [55103,0.946], + [55105,0.828], + [55107,0.947], + [55109,0.939], + [55111,0.909], + [55113,0.767], + [55115,0.866], + [55117,0.842], + [55119,0.959], + [55121,0.895], + [55123,0.963], + [55125,0.848], + [55127,0.854], + [55129,0.942], + [55131,0.929], + [55133,0.885], + [55135,0.943], + [55137,0.894], + [55139,0.887], + [55141,0.922], + [56001,0.825], + [56003,0.877], + [56005,0.873], + [56007,0.772], + [56009,0.887], + [56011,0.943], + [56013,0.697], + [56015,0.858], + [56017,0.926], + [56019,0.915], + [56021,0.788], + [56023,0.922], + [56025,0.867], + [56027,0.906], + [56029,0.91], + [56031,0.885], + [56033,0.917], + [56035,0.893], + [56037,0.796], + [56039,0.813], + [56041,0.875], + [56043,0.819], + [56045,0.964] + ] +} diff --git a/data/regional/united-states/economics/companies/us-establishments-nonemployment-2009.json b/data/regional/united-states/economics/companies/us-establishments-nonemployment-2009.json new file mode 100644 index 0000000..f9615a7 --- /dev/null +++ b/data/regional/united-states/economics/companies/us-establishments-nonemployment-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Non-Employment Establishments", + "description" : "Nonemployer establishments.", + "units" : "firms", + "year" : "2009", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.establishments.nonemployment.2009"], + [1001,2971], + [1003,14175], + [1005,1527], + [1007,1192], + [1009,3501], + [1011,390], + [1013,1180], + [1015,6329], + [1017,2074], + [1019,1627], + [1021,2786], + [1023,806], + [1025,1746], + [1027,765], + [1029,980], + [1031,2563], + [1033,3727], + [1035,855], + [1037,479], + [1039,2208], + [1041,800], + [1043,5727], + [1045,2370], + [1047,2782], + [1049,4556], + [1051,4916], + [1053,2027], + [1055,6765], + [1057,1051], + [1059,1944], + [1061,1558], + [1063,451], + [1065,1001], + [1067,942], + [1069,6460], + [1071,3317], + [1073,44204], + [1075,1026], + [1077,6648], + [1079,2043], + [1081,8314], + [1083,4897], + [1085,887], + [1087,1328], + [1089,20514], + [1091,1179], + [1093,1933], + [1095,6704], + [1097,28736], + [1099,1476], + [1101,17550], + [1103,7181], + [1105,685], + [1107,1023], + [1109,1684], + [1111,1327], + [1113,3609], + [1115,5175], + [1117,14255], + [1119,742], + [1121,3795], + [1123,2301], + [1125,10070], + [1127,3759], + [1129,1083], + [1131,893], + [1133,1851], + [2013,269], + [2016,294], + [2020,18307], + [2050,984], + [2060,261], + [2068,176], + [2070,809], + [2090,5147], + [2100,389], + [2105,427], + [2110,2459], + [2122,6009], + [2130,1247], + [2150,1467], + [2158,357], + [2164,312], + [2170,6014], + [2180,435], + [2185,278], + [2188,235], + [2195,1212], + [2198,530], + [2220,1195], + [2230,"NA"], + [2240,500], + [2261,1335], + [2275,"NA"], + [2282,138], + [2290,351], + [4001,2841], + [4003,6285], + [4005,8257], + [4007,3565], + [4009,1330], + [4011,234], + [4012,789], + [4013,242532], + [4015,9925], + [4017,5073], + [4019,57228], + [4021,14301], + [4023,3234], + [4025,16666], + [4027,7558], + [5001,1204], + [5003,1030], + [5005,3168], + [5007,14079], + [5009,2908], + [5011,517], + [5013,231], + [5015,2566], + [5017,521], + [5019,1220], + [5021,894], + [5023,2207], + [5025,385], + [5027,1191], + [5029,1360], + [5031,6463], + [5033,3741], + [5035,2962], + [5037,1374], + [5039,409], + [5041,698], + [5043,975], + [5045,7291], + [5047,1029], + [5049,759], + [5051,7576], + [5053,1185], + [5055,2642], + [5057,1031], + [5059,1838], + [5061,769], + [5063,2486], + [5065,1017], + [5067,851], + [5069,3698], + [5071,1466], + [5073,329], + [5075,1305], + [5077,663], + [5079,548], + [5081,648], + [5083,1297], + [5085,4148], + [5087,1192], + [5089,1260], + [5091,2365], + [5093,2028], + [5095,541], + [5097,794], + [5099,423], + [5101,753], + [5103,1309], + [5105,701], + [5107,1335], + [5109,792], + [5111,1572], + [5113,1544], + [5115,3700], + [5117,518], + [5119,25667], + [5121,1312], + [5123,1762], + [5125,7014], + [5127,663], + [5129,800], + [5131,8144], + [5133,786], + [5135,1534], + [5137,1185], + [5139,2812], + [5141,1299], + [5143,13091], + [5145,5480], + [5147,417], + [5149,1276], + [6001,108472], + [6003,92], + [6005,2687], + [6007,12680], + [6009,3557], + [6011,962], + [6013,74416], + [6015,1269], + [6017,14926], + [6019,44489], + [6021,1310], + [6023,10927], + [6025,8574], + [6027,1298], + [6029,41628], + [6031,4132], + [6033,4072], + [6035,1205], + [6037,821177], + [6039,6658], + [6041,34060], + [6043,1268], + [6045,8080], + [6047,10040], + [6049,570], + [6051,1307], + [6053,23533], + [6055,10007], + [6057,11352], + [6059,248195], + [6061,27249], + [6063,1749], + [6065,138221], + [6067,83967], + [6069,3028], + [6071,124210], + [6073,219701], + [6075,78347], + [6077,31601], + [6079,21912], + [6081,56782], + [6083,30062], + [6085,118088], + [6087,22119], + [6089,11370], + [6091,260], + [6093,3371], + [6095,20176], + [6097,40063], + [6099,23781], + [6101,4769], + [6103,3255], + [6105,1007], + [6107,18633], + [6109,3968], + [6111,59548], + [6113,11013], + [6115,3108], + [8001,24908], + [8003,1048], + [8005,44644], + [8007,1888], + [8009,373], + [8011,224], + [8013,32339], + [8014,4181], + [8015,2041], + [8017,183], + [8019,1043], + [8021,655], + [8023,233], + [8025,196], + [8027,598], + [8029,2766], + [8031,48988], + [8033,194], + [8035,25629], + [8037,6156], + [8039,2383], + [8041,41702], + [8043,2828], + [8045,5589], + [8047,510], + [8049,1871], + [8051,2143], + [8053,144], + [8055,600], + [8057,170], + [8059,47440], + [8061,151], + [8063,639], + [8065,524], + [8067,5795], + [8069,25627], + [8071,998], + [8073,377], + [8075,1173], + [8077,10854], + [8079,131], + [8081,1044], + [8083,2245], + [8085,3936], + [8087,1699], + [8089,1121], + [8091,842], + [8093,1779], + [8095,349], + [8097,3286], + [8099,892], + [8101,8045], + [8103,563], + [8105,1011], + [8107,3345], + [8109,580], + [8111,96], + [8113,1563], + [8115,207], + [8117,3983], + [8119,2426], + [8121,377], + [8123,16936], + [8125,878], + [9001,80030], + [9003,52402], + [9005,16649], + [9007,12726], + [9009,53843], + [9011,15367], + [9013,9161], + [9015,6606], + [10001,8373], + [10003,29571], + [10005,13361], + [11001,43145], + [12001,15244], + [12003,1153], + [12005,10956], + [12007,1209], + [12009,35202], + [12011,189413], + [12013,736], + [12015,11126], + [12017,8777], + [12019,10902], + [12021,29718], + [12023,3549], + [12027,1419], + [12029,828], + [12031,54214], + [12033,17648], + [12035,7075], + [12037,1298], + [12039,2593], + [12041,835], + [12043,441], + [12045,942], + [12047,505], + [12049,1139], + [12051,2271], + [12053,9856], + [12055,5372], + [12057,95524], + [12059,1006], + [12061,11076], + [12063,2392], + [12065,977], + [12067,255], + [12069,19818], + [12071,49413], + [12073,17590], + [12075,2470], + [12077,386], + [12079,881], + [12081,22958], + [12083,20637], + [12085,13107], + [12086,349010], + [12087,10420], + [12089,4786], + [12091,12855], + [12093,2287], + [12095,90712], + [12097,20542], + [12099,130095], + [12101,29065], + [12103,69379], + [12105,33705], + [12107,3687], + [12109,15342], + [12111,19428], + [12113,9774], + [12115,33942], + [12117,34376], + [12119,4310], + [12121,2488], + [12123,974], + [12125,545], + [12127,34185], + [12129,1977], + [12131,5380], + [12133,1358], + [13001,1078], + [13003,456], + [13005,576], + [13007,164], + [13009,2742], + [13011,1291], + [13013,4869], + [13015,7538], + [13017,968], + [13019,981], + [13021,11255], + [13023,664], + [13025,1015], + [13027,735], + [13029,2101], + [13031,4040], + [13033,1617], + [13035,1501], + [13037,301], + [13039,2206], + [13043,748], + [13045,7526], + [13047,4058], + [13049,437], + [13051,17386], + [13053,250], + [13055,1271], + [13057,18634], + [13059,6900], + [13061,127], + [13063,21856], + [13065,348], + [13067,62097], + [13069,2648], + [13071,2414], + [13073,8039], + [13075,1021], + [13077,9337], + [13079,720], + [13081,1386], + [13083,1193], + [13085,2067], + [13087,2012], + [13089,63918], + [13091,1243], + [13093,622], + [13095,5591], + [13097,9867], + [13099,576], + [13101,125], + [13103,2993], + [13105,1300], + [13107,1694], + [13109,716], + [13111,2615], + [13113,9127], + [13115,6481], + [13117,14683], + [13119,1695], + [13121,86718], + [13123,2502], + [13125,176], + [13127,5646], + [13129,3386], + [13131,1495], + [13133,1266], + [13135,75839], + [13137,3158], + [13139,12601], + [13141,493], + [13143,2067], + [13145,2203], + [13147,1792], + [13149,774], + [13151,15514], + [13153,7494], + [13155,568], + [13157,4538], + [13159,1106], + [13161,830], + [13163,986], + [13165,494], + [13167,493], + [13169,1850], + [13171,1054], + [13173,454], + [13175,3526], + [13177,1820], + [13179,2438], + [13181,509], + [13183,429], + [13185,5869], + [13187,2278], + [13189,1333], + [13191,927], + [13193,680], + [13195,1966], + [13197,336], + [13199,1499], + [13201,352], + [13205,1135], + [13207,1884], + [13209,555], + [13211,1597], + [13213,1796], + [13215,13579], + [13217,7563], + [13219,3305], + [13221,967], + [13223,9859], + [13225,1551], + [13227,2957], + [13229,1133], + [13231,1290], + [13233,2419], + [13235,613], + [13237,1779], + [13239,131], + [13241,1626], + [13243,413], + [13245,11292], + [13247,7034], + [13249,228], + [13251,875], + [13253,644], + [13255,4305], + [13257,1622], + [13259,282], + [13261,1632], + [13263,609], + [13265,97], + [13267,1180], + [13269,555], + [13271,678], + [13273,606], + [13275,2888], + [13277,2764], + [13279,2001], + [13281,1106], + [13283,404], + [13285,4840], + [13287,606], + [13289,506], + [13291,2038], + [13293,1655], + [13295,4161], + [13297,6684], + [13299,1750], + [13301,328], + [13303,1118], + [13305,1834], + [13307,139], + [13309,302], + [13311,2506], + [13313,5258], + [13315,419], + [13317,669], + [13319,541], + [13321,1244], + [15001,14968], + [15003,55540], + [15005,"NA"], + [15007,5830], + [15009,14010], + [16001,29533], + [16003,359], + [16005,4715], + [16007,420], + [16009,504], + [16011,2547], + [16013,3079], + [16015,579], + [16017,3631], + [16019,7002], + [16021,820], + [16023,175], + [16025,102], + [16027,10882], + [16029,440], + [16031,1389], + [16033,50], + [16035,534], + [16037,455], + [16039,1229], + [16041,849], + [16043,976], + [16045,1159], + [16047,822], + [16049,1122], + [16051,1809], + [16053,1118], + [16055,10199], + [16057,2279], + [16059,723], + [16061,365], + [16063,220], + [16065,2195], + [16067,1095], + [16069,2081], + [16071,259], + [16073,641], + [16075,1377], + [16077,389], + [16079,816], + [16081,1245], + [16083,5047], + [16085,1161], + [16087,637], + [17001,3771], + [17003,401], + [17005,1027], + [17007,2900], + [17009,298], + [17011,1986], + [17013,324], + [17015,1044], + [17017,758], + [17019,11120], + [17021,1923], + [17023,1134], + [17025,1020], + [17027,2189], + [17029,2598], + [17031,408366], + [17033,1164], + [17035,758], + [17037,5568], + [17039,940], + [17041,1386], + [17043,71395], + [17045,1025], + [17047,506], + [17049,2502], + [17051,1295], + [17053,957], + [17055,2320], + [17057,1851], + [17059,307], + [17061,816], + [17063,2633], + [17065,559], + [17067,1293], + [17069,208], + [17071,429], + [17073,2853], + [17075,2159], + [17077,3289], + [17079,812], + [17081,2373], + [17083,1289], + [17085,1942], + [17087,736], + [17089,28858], + [17091,6140], + [17093,6657], + [17095,2404], + [17097,49862], + [17099,5715], + [17101,777], + [17103,2029], + [17105,1983], + [17107,1454], + [17109,1579], + [17111,21139], + [17113,9052], + [17115,5479], + [17117,2714], + [17119,13574], + [17121,2194], + [17123,690], + [17125,742], + [17127,838], + [17129,830], + [17131,1010], + [17133,2011], + [17135,1612], + [17137,1970], + [17139,944], + [17141,3257], + [17143,9127], + [17145,1061], + [17147,1124], + [17149,1185], + [17151,211], + [17153,357], + [17155,374], + [17157,1522], + [17159,1175], + [17161,6775], + [17163,12851], + [17165,1506], + [17167,11856], + [17169,448], + [17171,315], + [17173,1341], + [17175,405], + [17177,2734], + [17179,6482], + [17181,1091], + [17183,4372], + [17185,825], + [17187,847], + [17189,990], + [17191,1308], + [17193,1131], + [17195,2877], + [17197,40825], + [17199,4212], + [17201,17823], + [17203,2378], + [18001,2699], + [18003,20120], + [18005,4008], + [18007,578], + [18009,581], + [18011,4410], + [18013,1491], + [18015,1237], + [18017,1766], + [18019,6185], + [18021,1466], + [18023,1556], + [18025,720], + [18027,1871], + [18029,2908], + [18031,1527], + [18033,2218], + [18035,5220], + [18037,2641], + [18039,11530], + [18041,1185], + [18043,4869], + [18045,925], + [18047,1552], + [18049,1367], + [18051,1603], + [18053,3084], + [18055,1792], + [18057,21503], + [18059,4820], + [18061,2720], + [18063,8848], + [18065,2434], + [18067,4180], + [18069,1940], + [18071,2175], + [18073,1861], + [18075,1255], + [18077,1734], + [18079,1545], + [18081,8189], + [18083,1901], + [18085,4770], + [18087,3141], + [18089,26371], + [18091,5337], + [18093,2586], + [18095,6339], + [18097,51809], + [18099,2781], + [18101,586], + [18103,1535], + [18105,8164], + [18107,2000], + [18109,4488], + [18111,736], + [18113,2425], + [18115,350], + [18117,1199], + [18119,1310], + [18121,917], + [18123,859], + [18125,602], + [18127,8688], + [18129,1334], + [18131,833], + [18133,1940], + [18135,1352], + [18137,1710], + [18139,1051], + [18141,14319], + [18143,1187], + [18145,2696], + [18147,1187], + [18149,1188], + [18151,2142], + [18153,990], + [18155,554], + [18157,7710], + [18159,994], + [18161,488], + [18163,8753], + [18165,762], + [18167,4732], + [18169,1823], + [18171,529], + [18173,3507], + [18175,1663], + [18177,3514], + [18179,1595], + [18181,1425], + [18183,1975], + [19001,595], + [19003,305], + [19005,1191], + [19007,944], + [19009,491], + [19011,1839], + [19013,6892], + [19015,1722], + [19017,1509], + [19019,1453], + [19021,1254], + [19023,1118], + [19025,734], + [19027,1645], + [19029,1144], + [19031,1258], + [19033,2928], + [19035,765], + [19037,896], + [19039,615], + [19041,1314], + [19043,1396], + [19045,2584], + [19047,935], + [19049,4679], + [19051,707], + [19053,681], + [19055,1253], + [19057,2253], + [19059,1724], + [19061,5533], + [19063,684], + [19065,1461], + [19067,1199], + [19069,799], + [19071,523], + [19073,695], + [19075,806], + [19077,1026], + [19079,1031], + [19081,890], + [19083,1287], + [19085,1142], + [19087,1258], + [19089,810], + [19091,717], + [19093,536], + [19095,1155], + [19097,1462], + [19099,2250], + [19101,1914], + [19103,7880], + [19105,1294], + [19107,736], + [19109,1410], + [19111,1975], + [19113,12172], + [19115,609], + [19117,640], + [19119,934], + [19121,1246], + [19123,1454], + [19125,2133], + [19127,1999], + [19129,933], + [19131,855], + [19133,640], + [19135,514], + [19137,713], + [19139,2118], + [19141,958], + [19143,453], + [19145,967], + [19147,710], + [19149,1742], + [19151,500], + [19153,28133], + [19155,4945], + [19157,1244], + [19159,483], + [19161,808], + [19163,9718], + [19165,873], + [19167,2262], + [19169,5241], + [19171,1204], + [19173,521], + [19175,879], + [19177,654], + [19179,1738], + [19181,3265], + [19183,1683], + [19185,529], + [19187,2106], + [19189,840], + [19191,1795], + [19193,5408], + [19195,584], + [19197,910], + [20001,823], + [20003,614], + [20005,770], + [20007,415], + [20009,2039], + [20011,986], + [20013,691], + [20015,3855], + [20017,195], + [20019,313], + [20021,1160], + [20023,228], + [20025,205], + [20027,552], + [20029,651], + [20031,601], + [20033,173], + [20035,1868], + [20037,2049], + [20039,271], + [20041,1200], + [20043,488], + [20045,6790], + [20047,236], + [20049,267], + [20051,2438], + [20053,421], + [20055,1954], + [20057,1454], + [20059,1577], + [20061,1090], + [20063,241], + [20065,269], + [20067,454], + [20069,559], + [20071,99], + [20073,529], + [20075,184], + [20077,509], + [20079,2170], + [20081,338], + [20083,179], + [20085,770], + [20087,1194], + [20089,245], + [20091,42021], + [20093,268], + [20095,608], + [20097,211], + [20099,1215], + [20101,170], + [20103,3379], + [20105,235], + [20107,660], + [20109,243], + [20111,1599], + [20113,2245], + [20115,848], + [20117,729], + [20119,372], + [20121,2269], + [20123,507], + [20125,1820], + [20127,443], + [20129,225], + [20131,645], + [20133,1153], + [20135,305], + [20137,384], + [20139,981], + [20141,363], + [20143,456], + [20145,406], + [20147,462], + [20149,1356], + [20151,668], + [20153,214], + [20155,3686], + [20157,395], + [20159,620], + [20161,2642], + [20163,529], + [20165,280], + [20167,719], + [20169,3190], + [20171,439], + [20173,26862], + [20175,1125], + [20177,9014], + [20179,214], + [20181,426], + [20183,313], + [20185,369], + [20187,161], + [20189,353], + [20191,1437], + [20193,734], + [20195,255], + [20197,471], + [20199,138], + [20201,422], + [20203,141], + [20205,581], + [20207,255], + [20209,6601], + [21001,1513], + [21003,1292], + [21005,1522], + [21007,502], + [21009,3255], + [21011,809], + [21013,1381], + [21015,6469], + [21017,1211], + [21019,2563], + [21021,1895], + [21023,629], + [21025,533], + [21027,1269], + [21029,4182], + [21031,835], + [21033,725], + [21035,2521], + [21037,5023], + [21039,438], + [21041,580], + [21043,1914], + [21045,1174], + [21047,3276], + [21049,2230], + [21051,1289], + [21053,824], + [21055,650], + [21057,591], + [21059,5325], + [21061,877], + [21063,332], + [21065,1036], + [21067,19430], + [21069,1240], + [21071,2130], + [21073,2836], + [21075,301], + [21077,279], + [21079,1312], + [21081,1402], + [21083,2582], + [21085,1857], + [21087,981], + [21089,1827], + [21091,401], + [21093,5207], + [21095,1185], + [21097,1130], + [21099,1581], + [21101,2422], + [21103,1086], + [21105,304], + [21107,2448], + [21109,858], + [21111,46142], + [21113,3789], + [21115,1312], + [21117,8580], + [21119,748], + [21121,2224], + [21123,1078], + [21125,3927], + [21127,802], + [21129,494], + [21131,587], + [21133,1134], + [21135,923], + [21137,1749], + [21139,632], + [21141,1824], + [21143,494], + [21145,4126], + [21147,938], + [21149,515], + [21151,5319], + [21153,674], + [21155,1086], + [21157,2253], + [21159,446], + [21161,1094], + [21163,1366], + [21165,433], + [21167,1486], + [21169,903], + [21171,857], + [21173,1808], + [21175,764], + [21177,1785], + [21179,3031], + [21181,468], + [21183,1237], + [21185,4365], + [21187,753], + [21189,306], + [21191,762], + [21193,1381], + [21195,2862], + [21197,924], + [21199,4092], + [21201,128], + [21203,1095], + [21205,1361], + [21207,1352], + [21209,3035], + [21211,2779], + [21213,1177], + [21215,1139], + [21217,1633], + [21219,853], + [21221,920], + [21223,512], + [21225,725], + [21227,7722], + [21229,707], + [21231,1192], + [21233,710], + [21235,2303], + [21237,454], + [21239,2023], + [22001,3681], + [22003,1021], + [22005,6768], + [22007,1389], + [22009,2285], + [22011,1756], + [22013,840], + [22015,6851], + [22017,16992], + [22019,11157], + [22021,595], + [22023,594], + [22025,610], + [22027,705], + [22029,1115], + [22031,1623], + [22033,33608], + [22035,349], + [22037,1127], + [22039,1625], + [22041,1331], + [22043,991], + [22045,5568], + [22047,1936], + [22049,769], + [22051,36204], + [22053,1500], + [22055,18537], + [22057,6341], + [22059,801], + [22061,2490], + [22063,8514], + [22065,615], + [22067,1819], + [22069,1983], + [22071,26871], + [22073,10900], + [22075,2087], + [22077,1482], + [22079,7247], + [22081,446], + [22083,1278], + [22085,1309], + [22087,2387], + [22089,3616], + [22091,696], + [22093,1159], + [22095,3359], + [22097,5092], + [22099,3806], + [22101,3727], + [22103,20831], + [22105,9262], + [22107,262], + [22109,7068], + [22111,1379], + [22113,4011], + [22115,1883], + [22117,3032], + [22119,2555], + [22121,1432], + [22123,640], + [22125,656], + [22127,655], + [23001,6258], + [23003,4473], + [23005,24468], + [23007,2496], + [23009,7326], + [23011,8687], + [23013,5638], + [23015,4821], + [23017,4332], + [23019,9504], + [23021,1345], + [23023,3162], + [23025,3400], + [23027,3838], + [23029,3895], + [23031,16036], + [24001,3117], + [24003,36008], + [24005,56550], + [24009,6052], + [24011,2418], + [24013,11257], + [24015,5436], + [24017,8934], + [24019,2410], + [24021,15804], + [24023,2334], + [24025,15123], + [24027,22461], + [24029,1714], + [24031,92634], + [24033,60198], + [24035,4445], + [24037,6002], + [24039,1460], + [24041,3945], + [24043,7821], + [24045,5590], + [24047,4767], + [24510,33477], + [25001,23341], + [25003,9549], + [25005,29232], + [25007,3239], + [25009,53101], + [25011,6025], + [25013,22101], + [25015,12140], + [25017,115363], + [25019,1928], + [25021,48592], + [25023,33009], + [25025,41757], + [25027,47842], + [26001,708], + [26003,538], + [26005,7199], + [26007,1854], + [26009,1973], + [26011,964], + [26013,371], + [26015,3538], + [26017,5332], + [26019,1612], + [26021,9694], + [26023,2412], + [26025,6638], + [26027,2998], + [26029,2356], + [26031,1871], + [26033,1926], + [26035,1806], + [26037,4773], + [26039,867], + [26041,2101], + [26043,1446], + [26045,6788], + [26047,3113], + [26049,27362], + [26051,1550], + [26053,811], + [26055,7911], + [26057,2258], + [26059,2726], + [26061,1934], + [26063,2188], + [26065,16807], + [26067,2958], + [26069,1460], + [26071,765], + [26073,3312], + [26075,8652], + [26077,14422], + [26079,1185], + [26081,37945], + [26083,150], + [26085,557], + [26087,5770], + [26089,2495], + [26091,5552], + [26093,12854], + [26095,337], + [26097,848], + [26099,52185], + [26101,1712], + [26103,3235], + [26105,1830], + [26107,2199], + [26109,1366], + [26111,4635], + [26113,1044], + [26115,7986], + [26117,3487], + [26119,644], + [26121,8931], + [26123,2679], + [26125,95534], + [26127,1598], + [26129,1249], + [26131,405], + [26133,1367], + [26135,587], + [26137,1904], + [26139,15832], + [26141,890], + [26143,1508], + [26145,10158], + [26147,9721], + [26149,3618], + [26151,3060], + [26153,445], + [26155,4162], + [26157,3465], + [26159,4644], + [26161,25459], + [26163,117124], + [26165,2268], + [27001,1104], + [27003,20844], + [27005,2800], + [27007,2933], + [27009,2427], + [27011,372], + [27013,3629], + [27015,1749], + [27017,2053], + [27019,6699], + [27021,2633], + [27023,887], + [27025,3797], + [27027,3553], + [27029,734], + [27031,794], + [27033,827], + [27035,4758], + [27037,26016], + [27039,1265], + [27041,3059], + [27043,1148], + [27045,1640], + [27047,1894], + [27049,2964], + [27051,526], + [27053,88590], + [27055,1481], + [27057,1660], + [27059,2698], + [27061,3217], + [27063,735], + [27065,1120], + [27067,2976], + [27069,315], + [27071,838], + [27073,537], + [27075,819], + [27077,354], + [27079,1858], + [27081,466], + [27083,1590], + [27085,2321], + [27087,283], + [27089,645], + [27091,1467], + [27093,1608], + [27095,1848], + [27097,2240], + [27099,1959], + [27101,695], + [27103,2019], + [27105,1279], + [27107,469], + [27109,8478], + [27111,4560], + [27113,860], + [27115,1795], + [27117,677], + [27119,2129], + [27121,906], + [27123,32424], + [27125,267], + [27127,1052], + [27129,1085], + [27131,3957], + [27133,703], + [27135,1080], + [27137,11576], + [27139,9224], + [27141,6130], + [27143,980], + [27145,9118], + [27147,2276], + [27149,573], + [27151,671], + [27153,1589], + [27155,280], + [27157,1593], + [27159,1051], + [27161,1140], + [27163,16006], + [27165,715], + [27167,418], + [27169,2651], + [27171,8775], + [27173,808], + [28001,2181], + [28003,2526], + [28005,778], + [28007,1057], + [28009,508], + [28011,1672], + [28013,803], + [28015,661], + [28017,1026], + [28019,467], + [28021,347], + [28023,1032], + [28025,997], + [28027,1490], + [28029,1489], + [28031,1279], + [28033,10372], + [28035,4625], + [28037,448], + [28039,1169], + [28041,617], + [28043,1284], + [28045,3090], + [28047,11554], + [28049,18879], + [28051,1326], + [28053,433], + [28055,51], + [28057,1308], + [28059,7474], + [28061,842], + [28063,497], + [28065,724], + [28067,3807], + [28069,482], + [28071,3076], + [28073,3641], + [28075,4320], + [28077,766], + [28079,1124], + [28081,5165], + [28083,1325], + [28085,2191], + [28087,3290], + [28089,8800], + [28091,1956], + [28093,2390], + [28095,1942], + [28097,604], + [28099,1402], + [28101,1114], + [28103,642], + [28105,2304], + [28107,2048], + [28109,4065], + [28111,740], + [28113,3117], + [28115,1779], + [28117,1410], + [28119,314], + [28121,10686], + [28123,1324], + [28125,330], + [28127,1723], + [28129,826], + [28131,1156], + [28133,1174], + [28135,564], + [28137,1894], + [28139,1316], + [28141,1141], + [28143,526], + [28145,1743], + [28147,1127], + [28149,2884], + [28151,3625], + [28153,1208], + [28155,894], + [28157,498], + [28159,1156], + [28161,767], + [28163,1618], + [29001,1460], + [29003,1123], + [29005,418], + [29007,1347], + [29009,2229], + [29011,944], + [29013,1153], + [29015,1423], + [29017,768], + [29019,10096], + [29021,4147], + [29023,2442], + [29025,606], + [29027,2292], + [29029,3770], + [29031,4708], + [29033,610], + [29035,511], + [29037,6459], + [29039,1050], + [29041,609], + [29043,6181], + [29045,476], + [29047,13406], + [29049,1318], + [29051,4420], + [29053,985], + [29055,1530], + [29057,506], + [29059,1304], + [29061,770], + [29063,659], + [29065,926], + [29067,1107], + [29069,1531], + [29071,6271], + [29073,1144], + [29075,508], + [29077,19042], + [29079,676], + [29081,684], + [29083,1394], + [29085,738], + [29087,432], + [29089,705], + [29091,3030], + [29093,503], + [29095,39325], + [29097,6395], + [29099,12324], + [29101,3017], + [29103,343], + [29105,2676], + [29107,2207], + [29109,2542], + [29111,580], + [29113,3044], + [29115,956], + [29117,945], + [29119,1217], + [29121,1096], + [29123,705], + [29125,536], + [29127,1713], + [29129,266], + [29131,1568], + [29133,576], + [29135,869], + [29137,618], + [29139,768], + [29141,1659], + [29143,794], + [29145,3930], + [29147,1301], + [29149,743], + [29151,946], + [29153,773], + [29155,836], + [29157,1104], + [29159,2493], + [29161,2615], + [29163,1077], + [29165,6215], + [29167,2343], + [29169,1915], + [29171,420], + [29173,698], + [29175,1294], + [29177,1373], + [29179,469], + [29181,866], + [29183,21559], + [29185,687], + [29186,1019], + [29187,3253], + [29189,67580], + [29195,1170], + [29197,300], + [29199,488], + [29201,2063], + [29203,796], + [29205,502], + [29207,1808], + [29209,2885], + [29211,395], + [29213,4321], + [29215,1772], + [29217,1352], + [29219,1915], + [29221,1059], + [29223,744], + [29225,2826], + [29227,190], + [29229,1360], + [29510,18470], + [30001,858], + [30003,532], + [30005,335], + [30007,394], + [30009,1023], + [30011,91], + [30013,4704], + [30015,358], + [30017,768], + [30019,133], + [30021,596], + [30023,507], + [30025,288], + [30027,1020], + [30029,9412], + [30031,9504], + [30033,100], + [30035,672], + [30037,94], + [30039,298], + [30041,946], + [30043,937], + [30045,190], + [30047,2161], + [30049,4891], + [30051,144], + [30053,1734], + [30055,141], + [30057,965], + [30059,198], + [30061,333], + [30063,8493], + [30065,361], + [30067,1881], + [30069,34], + [30071,332], + [30073,470], + [30075,152], + [30077,508], + [30079,94], + [30081,4111], + [30083,740], + [30085,500], + [30087,470], + [30089,1054], + [30091,265], + [30093,1849], + [30095,744], + [30097,398], + [30099,551], + [30101,364], + [30103,61], + [30105,530], + [30107,149], + [30109,91], + [30111,10246], + [31001,1947], + [31003,615], + [31005,30], + [31007,48], + [31009,41], + [31011,481], + [31013,730], + [31015,209], + [31017,353], + [31019,3276], + [31021,558], + [31023,637], + [31025,1763], + [31027,707], + [31029,367], + [31031,557], + [31033,683], + [31035,504], + [31037,500], + [31039,686], + [31041,1095], + [31043,1038], + [31045,643], + [31047,1294], + [31049,173], + [31051,411], + [31053,2216], + [31055,30931], + [31057,176], + [31059,534], + [31061,256], + [31063,211], + [31065,425], + [31067,1589], + [31069,209], + [31071,181], + [31073,177], + [31075,87], + [31077,216], + [31079,3375], + [31081,764], + [31083,288], + [31085,74], + [31087,233], + [31089,1072], + [31091,80], + [31093,472], + [31095,502], + [31097,261], + [31099,443], + [31101,758], + [31103,119], + [31105,314], + [31107,675], + [31109,18009], + [31111,2068], + [31113,68], + [31115,73], + [31117,40], + [31119,2421], + [31121,617], + [31123,383], + [31125,237], + [31127,457], + [31129,336], + [31131,1050], + [31133,222], + [31135,252], + [31137,794], + [31139,577], + [31141,1947], + [31143,429], + [31145,781], + [31147,623], + [31149,174], + [31151,784], + [31153,8520], + [31155,1618], + [31157,2411], + [31159,1199], + [31161,434], + [31163,221], + [31165,103], + [31167,439], + [31169,398], + [31171,71], + [31173,201], + [31175,342], + [31177,1421], + [31179,567], + [31181,284], + [31183,63], + [31185,978], + [32001,1179], + [32003,119625], + [32005,4720], + [32007,2088], + [32009,57], + [32011,122], + [32013,754], + [32015,241], + [32017,245], + [32019,2531], + [32021,228], + [32023,2249], + [32027,227], + [32029,254], + [32031,26661], + [32033,485], + [32510,5198], + [33001,5447], + [33003,5497], + [33005,5818], + [33007,2525], + [33009,7882], + [33011,27173], + [33013,11060], + [33015,24562], + [33017,7572], + [33019,3380], + [34001,14720], + [34003,77258], + [34005,24919], + [34007,27072], + [34009,7239], + [34011,5793], + [34013,52923], + [34015,14168], + [34017,42790], + [34019,10825], + [34021,20717], + [34023,46812], + [34025,45421], + [34027,36657], + [34029,32996], + [34031,32437], + [34033,2920], + [34035,23034], + [34037,10449], + [34039,34421], + [34041,6607], + [35001,37734], + [35003,433], + [35005,2967], + [35006,917], + [35007,868], + [35009,1929], + [35011,123], + [35013,11683], + [35015,2227], + [35017,1632], + [35019,177], + [35021,62], + [35023,256], + [35025,2756], + [35027,2017], + [35028,1076], + [35029,1006], + [35031,4513], + [35033,325], + [35035,3034], + [35037,395], + [35039,1949], + [35041,826], + [35043,7353], + [35045,5937], + [35047,1476], + [35049,14934], + [35051,754], + [35053,833], + [35055,3318], + [35057,842], + [35059,295], + [35061,3337], + [36001,16577], + [36003,2678], + [36005,103702], + [36007,9407], + [36009,3900], + [36011,3912], + [36013,6954], + [36015,3877], + [36017,2969], + [36019,3934], + [36021,5538], + [36023,2295], + [36025,3451], + [36027,19169], + [36029,41868], + [36031,2830], + [36033,2718], + [36035,2922], + [36037,2871], + [36039,3385], + [36041,466], + [36043,3189], + [36045,4952], + [36047,217285], + [36049,1508], + [36051,3506], + [36053,4049], + [36055,40679], + [36057,2603], + [36059,118552], + [36061,202901], + [36063,9157], + [36065,11349], + [36067,25064], + [36069,6497], + [36071,22137], + [36073,1734], + [36075,5368], + [36077,4244], + [36079,8538], + [36081,204825], + [36083,8251], + [36085,30611], + [36087,23693], + [36089,4823], + [36091,14245], + [36093,8136], + [36095,1682], + [36097,1175], + [36099,1671], + [36101,5222], + [36103,114492], + [36105,5533], + [36107,2728], + [36109,6702], + [36111,15039], + [36113,4689], + [36115,3677], + [36117,4877], + [36119,84576], + [36121,2050], + [36123,1775], + [37001,8273], + [37003,2213], + [37005,861], + [37007,1135], + [37009,2400], + [37011,1638], + [37013,3231], + [37015,919], + [37017,1717], + [37019,9022], + [37021,21036], + [37023,5150], + [37025,11553], + [37027,4913], + [37029,661], + [37031,5983], + [37033,1015], + [37035,10227], + [37037,4893], + [37039,2251], + [37041,932], + [37043,1052], + [37045,5262], + [37047,3237], + [37049,5472], + [37051,15132], + [37053,1869], + [37055,4715], + [37057,10522], + [37059,2860], + [37061,2881], + [37063,18223], + [37065,2508], + [37067,21469], + [37069,3609], + [37071,11732], + [37073,523], + [37075,716], + [37077,2595], + [37079,975], + [37081,32982], + [37083,2616], + [37085,5956], + [37087,4724], + [37089,8143], + [37091,854], + [37093,1660], + [37095,504], + [37097,11423], + [37099,2918], + [37101,9995], + [37103,535], + [37105,3098], + [37107,2985], + [37109,5192], + [37111,2637], + [37113,3194], + [37115,1726], + [37117,1154], + [37119,70157], + [37121,1206], + [37123,1490], + [37125,6680], + [37127,5221], + [37129,16264], + [37131,966], + [37133,7899], + [37135,10982], + [37137,1043], + [37139,2219], + [37141,3571], + [37143,885], + [37145,2074], + [37147,9214], + [37149,1825], + [37151,9344], + [37153,1868], + [37155,7037], + [37157,4632], + [37159,8042], + [37161,3972], + [37163,3180], + [37165,1707], + [37167,3817], + [37169,2870], + [37171,4885], + [37173,1310], + [37175,2783], + [37177,296], + [37179,13912], + [37181,2198], + [37183,65230], + [37185,829], + [37187,678], + [37189,4305], + [37191,5464], + [37193,4466], + [37195,4223], + [37197,2358], + [37199,1590], + [38001,211], + [38003,865], + [38005,301], + [38007,89], + [38009,591], + [38011,276], + [38013,180], + [38015,5882], + [38017,9378], + [38019,312], + [38021,393], + [38023,196], + [38025,287], + [38027,171], + [38029,284], + [38031,260], + [38033,175], + [38035,3648], + [38037,192], + [38039,205], + [38041,199], + [38043,225], + [38045,319], + [38047,153], + [38049,346], + [38051,249], + [38053,373], + [38055,632], + [38057,542], + [38059,1905], + [38061,563], + [38063,284], + [38065,128], + [38067,520], + [38069,338], + [38071,863], + [38073,356], + [38075,165], + [38077,1085], + [38079,726], + [38081,251], + [38083,117], + [38085,106], + [38087,45], + [38089,1843], + [38091,141], + [38093,1196], + [38095,219], + [38097,539], + [38099,664], + [38101,3662], + [38103,332], + [38105,1641], + [39001,1911], + [39003,5073], + [39005,3131], + [39007,6187], + [39009,3142], + [39011,2499], + [39013,2932], + [39015,2814], + [39017,20047], + [39019,1869], + [39021,2137], + [39023,6480], + [39025,12292], + [39027,2619], + [39029,5874], + [39031,2083], + [39033,2234], + [39035,83282], + [39037,3417], + [39039,2123], + [39041,14304], + [39043,4242], + [39045,9773], + [39047,1376], + [39049,77924], + [39051,2763], + [39053,1959], + [39055,9785], + [39057,8987], + [39059,2285], + [39061,50595], + [39063,4143], + [39065,1485], + [39067,817], + [39069,1602], + [39071,2827], + [39073,1918], + [39075,4090], + [39077,2897], + [39079,1573], + [39081,2795], + [39083,4482], + [39085,14087], + [39087,2876], + [39089,10960], + [39091,2743], + [39093,15502], + [39095,22762], + [39097,2657], + [39099,14539], + [39101,3118], + [39103,11939], + [39105,1237], + [39107,2303], + [39109,6093], + [39111,1088], + [39113,29158], + [39115,882], + [39117,2538], + [39119,5072], + [39121,827], + [39123,2902], + [39125,1074], + [39127,2144], + [39129,3104], + [39131,1513], + [39133,9525], + [39135,2404], + [39137,1798], + [39139,6495], + [39141,3809], + [39143,2976], + [39145,4078], + [39147,2892], + [39149,2546], + [39151,22164], + [39153,34370], + [39155,12041], + [39157,5550], + [39159,3081], + [39161,1466], + [39163,627], + [39165,13571], + [39167,3565], + [39169,7940], + [39171,2068], + [39173,6896], + [39175,1252], + [40001,1369], + [40003,386], + [40005,1154], + [40007,446], + [40009,1777], + [40011,709], + [40013,2686], + [40015,1584], + [40017,8408], + [40019,3174], + [40021,2696], + [40023,944], + [40025,222], + [40027,18117], + [40029,428], + [40031,4507], + [40033,356], + [40035,1053], + [40037,4789], + [40039,1867], + [40041,2647], + [40043,474], + [40045,342], + [40047,4196], + [40049,2285], + [40051,3363], + [40053,348], + [40055,333], + [40057,167], + [40059,342], + [40061,977], + [40063,817], + [40065,1398], + [40067,443], + [40069,670], + [40071,2605], + [40073,1423], + [40075,614], + [40077,847], + [40079,3045], + [40081,2406], + [40083,3145], + [40085,585], + [40087,3013], + [40089,2112], + [40091,1343], + [40093,758], + [40095,1051], + [40097,2647], + [40099,851], + [40101,3889], + [40103,806], + [40105,711], + [40107,776], + [40109,52847], + [40111,2322], + [40113,2912], + [40115,2069], + [40117,1062], + [40119,4718], + [40121,2669], + [40123,2731], + [40125,4116], + [40127,931], + [40129,336], + [40131,6159], + [40133,1557], + [40135,2817], + [40137,3053], + [40139,1066], + [40141,456], + [40143,44426], + [40145,4959], + [40147,3172], + [40149,901], + [40151,683], + [40153,1406], + [41001,1161], + [41003,5182], + [41005,26594], + [41007,2771], + [41009,2719], + [41011,3713], + [41013,1410], + [41015,1832], + [41017,14497], + [41019,5877], + [41021,89], + [41023,528], + [41025,524], + [41027,1703], + [41029,15585], + [41031,975], + [41033,5582], + [41035,3543], + [41037,486], + [41039,21985], + [41041,3523], + [41043,5751], + [41045,1381], + [41047,15364], + [41049,554], + [41051,55884], + [41053,3929], + [41055,112], + [41057,1978], + [41059,3380], + [41061,1641], + [41063,746], + [41065,1327], + [41067,31356], + [41069,149], + [41071,5560], + [42001,6255], + [42003,69333], + [42005,3221], + [42007,8361], + [42009,3279], + [42011,23035], + [42013,6059], + [42015,3661], + [42017,47742], + [42019,11146], + [42021,6537], + [42023,267], + [42025,3319], + [42027,8782], + [42029,37430], + [42031,2576], + [42033,4356], + [42035,1777], + [42037,3198], + [42039,5455], + [42041,13988], + [42043,14099], + [42045,36484], + [42047,1624], + [42049,13850], + [42051,6193], + [42053,322], + [42055,8602], + [42057,951], + [42059,1588], + [42061,2620], + [42063,5018], + [42065,3091], + [42067,1737], + [42069,11013], + [42071,36310], + [42073,4837], + [42075,7539], + [42077,20680], + [42079,15913], + [42081,6292], + [42083,2151], + [42085,6323], + [42087,2559], + [42089,10110], + [42091,62739], + [42093,997], + [42095,16487], + [42097,4366], + [42099,2709], + [42101,70396], + [42103,3767], + [42105,1338], + [42107,6682], + [42109,2668], + [42111,4731], + [42113,482], + [42115,3355], + [42117,2608], + [42119,2559], + [42121,2934], + [42123,2177], + [42125,11946], + [42127,3846], + [42129,20828], + [42131,1819], + [42133,24185], + [44001,3938], + [44003,10544], + [44005,6810], + [44007,37818], + [44009,10386], + [45001,1494], + [45003,9385], + [45005,403], + [45007,11007], + [45009,748], + [45011,1325], + [45013,12375], + [45015,9687], + [45017,861], + [45019,27498], + [45021,2268], + [45023,1421], + [45025,2267], + [45027,2127], + [45029,2648], + [45031,3619], + [45033,1393], + [45035,7907], + [45037,1396], + [45039,1162], + [45041,7929], + [45043,4802], + [45045,30438], + [45047,3505], + [45049,1112], + [45051,19330], + [45053,1272], + [45055,3792], + [45057,3941], + [45059,3025], + [45061,808], + [45063,17311], + [45065,540], + [45067,1478], + [45069,860], + [45071,1785], + [45073,4423], + [45075,4630], + [45077,7002], + [45079,22045], + [45081,927], + [45083,16409], + [45085,5676], + [45087,1120], + [45089,1558], + [45091,13410], + [46003,199], + [46005,1027], + [46007,221], + [46009,437], + [46011,1847], + [46013,2407], + [46015,430], + [46017,32], + [46019,803], + [46021,129], + [46023,598], + [46025,263], + [46027,796], + [46029,2042], + [46031,174], + [46033,828], + [46035,1285], + [46037,508], + [46039,379], + [46041,251], + [46043,242], + [46045,300], + [46047,584], + [46049,168], + [46051,604], + [46053,469], + [46055,204], + [46057,373], + [46059,278], + [46061,308], + [46063,129], + [46065,1338], + [46067,565], + [46069,104], + [46071,165], + [46073,141], + [46075,110], + [46077,509], + [46079,868], + [46081,2075], + [46083,3127], + [46085,239], + [46087,393], + [46089,193], + [46091,320], + [46093,2021], + [46095,124], + [46097,185], + [46099,11262], + [46101,359], + [46102,335], + [46103,6771], + [46105,273], + [46107,207], + [46109,567], + [46111,179], + [46115,465], + [46117,295], + [46119,175], + [46121,306], + [46123,509], + [46125,713], + [46127,1161], + [46129,470], + [46135,1494], + [46137,69], + [47001,4684], + [47003,2905], + [47005,1103], + [47007,793], + [47009,8312], + [47011,6500], + [47013,2477], + [47015,1132], + [47017,1673], + [47019,3315], + [47021,3350], + [47023,1083], + [47025,2031], + [47027,680], + [47029,2278], + [47031,3413], + [47033,916], + [47035,4654], + [47037,51215], + [47039,830], + [47041,1381], + [47043,3624], + [47045,2421], + [47047,2946], + [47049,1575], + [47051,2696], + [47053,2723], + [47055,1805], + [47057,1540], + [47059,4335], + [47061,1215], + [47063,3763], + [47065,22780], + [47067,371], + [47069,1369], + [47071,1967], + [47073,3160], + [47075,999], + [47077,1701], + [47079,2198], + [47081,1660], + [47083,559], + [47085,1196], + [47087,876], + [47089,3249], + [47091,1137], + [47093,31538], + [47095,263], + [47097,1271], + [47099,2968], + [47101,880], + [47103,2392], + [47105,3353], + [47107,3155], + [47109,1774], + [47111,1716], + [47113,6032], + [47115,1889], + [47117,1951], + [47119,5439], + [47121,677], + [47123,2884], + [47125,7687], + [47127,436], + [47129,1206], + [47131,1842], + [47133,1860], + [47135,569], + [47137,476], + [47139,1045], + [47141,5688], + [47143,1760], + [47145,3233], + [47147,4799], + [47149,16952], + [47151,1354], + [47153,978], + [47155,7774], + [47157,70282], + [47159,1422], + [47161,830], + [47163,9533], + [47165,12892], + [47167,3699], + [47169,533], + [47171,798], + [47173,1373], + [47175,343], + [47177,3093], + [47179,7385], + [47181,956], + [47183,1700], + [47185,2026], + [47187,19926], + [47189,9294], + [48001,2833], + [48003,971], + [48005,4906], + [48007,2399], + [48009,910], + [48011,178], + [48013,2741], + [48015,2447], + [48017,360], + [48019,1993], + [48021,5192], + [48023,285], + [48025,1355], + [48027,12992], + [48029,108581], + [48031,1135], + [48033,46], + [48035,1357], + [48037,4760], + [48039,20882], + [48041,10352], + [48043,858], + [48045,139], + [48047,512], + [48049,2395], + [48051,1311], + [48053,4477], + [48055,2326], + [48057,1292], + [48059,1210], + [48061,27835], + [48063,743], + [48065,447], + [48067,1916], + [48069,474], + [48071,2284], + [48073,2936], + [48075,357], + [48077,613], + [48079,176], + [48081,263], + [48083,755], + [48085,64671], + [48087,244], + [48089,1682], + [48091,10534], + [48093,917], + [48095,242], + [48097,3293], + [48099,2427], + [48101,126], + [48103,257], + [48105,298], + [48107,338], + [48109,207], + [48111,499], + [48113,185432], + [48115,645], + [48117,1141], + [48119,330], + [48121,50692], + [48123,1301], + [48125,156], + [48127,798], + [48129,297], + [48131,656], + [48133,1402], + [48135,8975], + [48137,226], + [48139,11070], + [48141,52518], + [48143,2741], + [48145,801], + [48147,2241], + [48149,2197], + [48151,235], + [48153,335], + [48155,112], + [48157,48925], + [48159,801], + [48161,1280], + [48163,894], + [48165,1451], + [48167,19431], + [48169,322], + [48171,3138], + [48173,107], + [48175,521], + [48177,1137], + [48179,1358], + [48181,8963], + [48183,8962], + [48185,1737], + [48187,7650], + [48189,1906], + [48191,190], + [48193,745], + [48195,483], + [48197,267], + [48199,3669], + [48201,329426], + [48203,4357], + [48205,330], + [48207,408], + [48209,11759], + [48211,325], + [48213,5636], + [48215,62451], + [48217,2310], + [48219,1292], + [48221,4822], + [48223,2672], + [48225,1254], + [48227,1422], + [48229,243], + [48231,5615], + [48233,1196], + [48235,220], + [48237,768], + [48239,888], + [48241,2570], + [48243,264], + [48245,14248], + [48247,368], + [48249,2747], + [48251,10697], + [48253,1195], + [48255,830], + [48257,8358], + [48259,4151], + [48261,21], + [48263,67], + [48265,4797], + [48267,445], + [48269,"NA"], + [48271,193], + [48273,1567], + [48275,267], + [48277,3398], + [48279,708], + [48281,1356], + [48283,394], + [48285,1570], + [48287,1167], + [48289,1516], + [48291,4682], + [48293,1319], + [48295,274], + [48297,796], + [48299,1937], + [48301,24], + [48303,17847], + [48305,307], + [48307,725], + [48309,13208], + [48311,104], + [48313,877], + [48315,694], + [48317,334], + [48319,567], + [48321,2441], + [48323,4145], + [48325,2960], + [48327,255], + [48329,13246], + [48331,1490], + [48333,409], + [48335,454], + [48337,1911], + [48339,36204], + [48341,964], + [48343,803], + [48345,122], + [48347,3642], + [48349,3001], + [48351,603], + [48353,1052], + [48355,21753], + [48357,750], + [48359,184], + [48361,4964], + [48363,2008], + [48365,1552], + [48367,10212], + [48369,483], + [48371,795], + [48373,3412], + [48375,7784], + [48377,699], + [48379,847], + [48381,9434], + [48383,299], + [48385,437], + [48387,842], + [48389,473], + [48391,443], + [48393,82], + [48395,1208], + [48397,7279], + [48399,861], + [48401,3071], + [48403,753], + [48405,509], + [48407,1734], + [48409,4109], + [48411,567], + [48413,262], + [48415,1035], + [48417,441], + [48419,1693], + [48421,217], + [48423,16184], + [48425,716], + [48427,6888], + [48429,880], + [48431,121], + [48433,159], + [48435,404], + [48437,453], + [48439,133171], + [48441,9020], + [48443,85], + [48445,611], + [48447,220], + [48449,1585], + [48451,7544], + [48453,84583], + [48455,925], + [48457,1226], + [48459,2925], + [48461,279], + [48463,2651], + [48465,2781], + [48467,4038], + [48469,5479], + [48471,3467], + [48473,2886], + [48475,622], + [48477,2561], + [48479,20026], + [48481,2927], + [48483,456], + [48485,7662], + [48487,741], + [48489,1239], + [48491,29445], + [48493,2813], + [48495,439], + [48497,4681], + [48499,3492], + [48501,410], + [48503,2021], + [48505,1425], + [48507,1021], + [49001,427], + [49003,2689], + [49005,6730], + [49007,1028], + [49009,72], + [49011,18678], + [49013,1161], + [49015,557], + [49017,381], + [49019,919], + [49021,2877], + [49023,641], + [49025,606], + [49027,723], + [49029,750], + [49031,100], + [49033,213], + [49035,67800], + [49037,677], + [49039,1584], + [49041,1239], + [49043,4607], + [49045,2560], + [49047,1684], + [49049,34018], + [49051,1992], + [49053,10095], + [49055,252], + [49057,11278], + [50001,3843], + [50003,3689], + [50005,2987], + [50007,12973], + [50009,563], + [50011,3521], + [50013,738], + [50015,2602], + [50017,2966], + [50019,2473], + [50021,5179], + [50023,6068], + [50025,5356], + [50027,6150], + [51001,2267], + [51003,7799], + [51005,606], + [51007,762], + [51009,1554], + [51011,846], + [51013,15839], + [51015,4337], + [51017,325], + [51019,4326], + [51021,272], + [51023,2155], + [51025,621], + [51027,904], + [51029,673], + [51031,2717], + [51033,1485], + [51035,1793], + [51036,395], + [51037,701], + [51041,19130], + [51043,1216], + [51045,300], + [51047,3117], + [51049,489], + [51051,443], + [51053,1137], + [51057,729], + [51059,88596], + [51061,5276], + [51063,1224], + [51065,1622], + [51067,3644], + [51069,5006], + [51071,862], + [51073,2404], + [51075,1808], + [51077,1006], + [51079,1270], + [51081,314], + [51083,1629], + [51085,6911], + [51087,18734], + [51089,2458], + [51091,239], + [51093,1970], + [51095,4468], + [51097,375], + [51099,1311], + [51101,992], + [51103,1034], + [51105,1132], + [51107,22715], + [51109,2027], + [51111,502], + [51113,1051], + [51115,767], + [51117,1574], + [51119,1022], + [51121,4654], + [51125,1256], + [51127,1266], + [51131,1005], + [51133,1025], + [51135,630], + [51137,2120], + [51139,1305], + [51141,1088], + [51143,2846], + [51145,1837], + [51147,919], + [51149,1371], + [51153,26012], + [51155,1492], + [51157,826], + [51159,493], + [51161,5049], + [51163,1455], + [51165,4832], + [51167,1161], + [51169,990], + [51171,2712], + [51173,1534], + [51175,799], + [51177,6834], + [51179,6873], + [51181,276], + [51183,462], + [51185,2141], + [51187,2444], + [51191,3447], + [51193,1140], + [51195,1549], + [51197,1444], + [51199,3260], + [51510,11701], + [51520,978], + [51530,300], + [51540,3335], + [51550,11412], + [51570,879], + [51580,236], + [51590,1893], + [51595,257], + [51600,3385], + [51610,1254], + [51620,371], + [51630,1359], + [51640,464], + [51650,5463], + [51660,2020], + [51670,774], + [51678,417], + [51680,3556], + [51683,2558], + [51685,841], + [51690,674], + [51700,7141], + [51710,9760], + [51720,213], + [51730,1056], + [51735,699], + [51740,4134], + [51750,587], + [51760,10821], + [51770,4923], + [51775,1362], + [51790,1474], + [51800,4447], + [51810,25098], + [51820,1009], + [51830,690], + [51840,1788], + [53001,642], + [53003,1054], + [53005,7389], + [53007,4142], + [53009,4344], + [53011,24763], + [53013,215], + [53015,4101], + [53017,1524], + [53019,335], + [53021,2832], + [53023,118], + [53025,3329], + [53027,3222], + [53029,5545], + [53031,2946], + [53033,138024], + [53035,13344], + [53037,2176], + [53039,1352], + [53041,3480], + [53043,570], + [53045,2811], + [53047,2232], + [53049,1361], + [53051,791], + [53053,37592], + [53055,2460], + [53057,7223], + [53059,595], + [53061,39309], + [53063,26148], + [53065,2622], + [53067,13512], + [53069,343], + [53071,2856], + [53073,13385], + [53075,"NA"], + [53077,8866], + [54001,739], + [54003,5229], + [54005,747], + [54007,643], + [54009,909], + [54011,4634], + [54013,542], + [54015,398], + [54017,248], + [54019,1755], + [54021,413], + [54023,704], + [54025,2189], + [54027,1454], + [54029,1351], + [54031,823], + [54033,3823], + [54035,1524], + [54037,3258], + [54039,9522], + [54041,890], + [54043,727], + [54045,1212], + [54047,511], + [54049,2645], + [54051,1196], + [54053,861], + [54055,3027], + [54057,1334], + [54059,849], + [54061,4603], + [54063,818], + [54065,1062], + [54067,1242], + [54069,2374], + [54071,496], + [54073,344], + [54075,569], + [54077,1581], + [54079,2902], + [54081,3558], + [54083,1511], + [54085,733], + [54087,974], + [54089,542], + [54091,702], + [54093,391], + [54095,430], + [54097,1330], + [54099,1581], + [54101,375], + [54103,700], + [54105,298], + [54107,4071], + [54109,737], + [55001,1051], + [55003,1138], + [55005,3121], + [55007,1531], + [55009,11347], + [55011,1046], + [55013,1157], + [55015,2023], + [55017,3639], + [55019,2024], + [55021,3527], + [55023,1033], + [55025,30842], + [55027,4139], + [55029,2663], + [55031,2154], + [55033,2550], + [55035,5235], + [55037,318], + [55039,4711], + [55041,710], + [55043,2979], + [55045,2257], + [55047,1276], + [55049,1766], + [55051,511], + [55053,1127], + [55055,4443], + [55057,1429], + [55059,7754], + [55061,1195], + [55063,5880], + [55065,1149], + [55067,1189], + [55069,1723], + [55071,3601], + [55073,7248], + [55075,2329], + [55077,978], + [55078,99], + [55079,41797], + [55081,2415], + [55083,2124], + [55085,2884], + [55087,8387], + [55089,6011], + [55091,544], + [55093,2662], + [55095,3238], + [55097,3436], + [55099,1204], + [55101,8688], + [55103,1168], + [55105,7833], + [55107,1049], + [55109,5928], + [55111,3762], + [55113,1603], + [55115,2287], + [55117,5029], + [55119,1364], + [55121,1891], + [55123,2294], + [55125,2358], + [55127,6447], + [55129,1495], + [55131,7462], + [55133,24387], + [55135,2896], + [55137,1475], + [55139,7335], + [55141,3833], + [56001,2253], + [56003,859], + [56005,2749], + [56007,1189], + [56009,927], + [56011,624], + [56013,2804], + [56015,963], + [56017,360], + [56019,976], + [56021,6015], + [56023,1789], + [56025,5027], + [56027,208], + [56029,2851], + [56031,737], + [56033,2340], + [56035,950], + [56037,2022], + [56039,3540], + [56041,1292], + [56043,684], + [56045,563] + ] +} diff --git a/data/regional/united-states/economics/companies/us-establishments-private-nonfarm-2009.json b/data/regional/united-states/economics/companies/us-establishments-private-nonfarm-2009.json new file mode 100644 index 0000000..03dbac7 --- /dev/null +++ b/data/regional/united-states/economics/companies/us-establishments-private-nonfarm-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Private Non-Farm Establishments", + "description" : "Private non-farm establishments.", + "units" : "firms", + "year" : "2009", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.establishments.private.nonfarm.2009"], + [1001,877], + [1003,4812], + [1005,522], + [1007,318], + [1009,749], + [1011,120], + [1013,446], + [1015,2444], + [1017,568], + [1019,350], + [1021,744], + [1023,276], + [1025,623], + [1027,204], + [1029,180], + [1031,1016], + [1033,1290], + [1035,216], + [1037,106], + [1039,865], + [1041,243], + [1043,1737], + [1045,844], + [1047,788], + [1049,1127], + [1051,1143], + [1053,802], + [1055,2079], + [1057,328], + [1059,564], + [1061,437], + [1063,104], + [1065,201], + [1067,312], + [1069,2823], + [1071,851], + [1073,16789], + [1075,250], + [1077,2018], + [1079,426], + [1081,2431], + [1083,1274], + [1085,127], + [1087,216], + [1089,8143], + [1091,495], + [1093,531], + [1095,1886], + [1097,9016], + [1099,401], + [1101,5762], + [1103,2718], + [1105,126], + [1107,286], + [1109,643], + [1111,367], + [1113,851], + [1115,1230], + [1117,4900], + [1119,220], + [1121,1317], + [1123,782], + [1125,4055], + [1127,1357], + [1129,233], + [1131,212], + [1133,461], + [2013,59], + [2016,121], + [2020,8432], + [2050,202], + [2060,67], + [2068,100], + [2070,101], + [2090,2445], + [2100,128], + [2105,186], + [2110,1107], + [2122,1944], + [2130,568], + [2150,471], + [2158,55], + [2164,48], + [2170,1939], + [2180,155], + [2185,140], + [2188,70], + [2195,259], + [2198,139], + [2220,391], + [2230,0], + [2240,188], + [2261,398], + [2275,0], + [2282,31], + [2290,113], + [4001,482], + [4003,2373], + [4005,3634], + [4007,1086], + [4009,531], + [4011,79], + [4012,357], + [4013,85789], + [4015,3869], + [4017,1844], + [4019,20547], + [4021,3225], + [4023,1153], + [4025,5875], + [4027,3029], + [5001,544], + [5003,455], + [5005,1121], + [5007,5325], + [5009,870], + [5011,267], + [5013,77], + [5015,733], + [5017,232], + [5019,525], + [5021,298], + [5023,633], + [5025,88], + [5027,582], + [5029,416], + [5031,2417], + [5033,1071], + [5035,880], + [5037,387], + [5039,213], + [5041,338], + [5043,409], + [5045,2309], + [5047,279], + [5049,179], + [5051,2738], + [5053,273], + [5055,789], + [5057,407], + [5059,523], + [5061,284], + [5063,779], + [5065,215], + [5067,335], + [5069,1479], + [5071,380], + [5073,112], + [5075,307], + [5077,136], + [5079,157], + [5081,172], + [5083,405], + [5085,1013], + [5087,193], + [5089,229], + [5091,710], + [5093,875], + [5095,195], + [5097,150], + [5099,134], + [5101,87], + [5103,553], + [5105,110], + [5107,453], + [5109,188], + [5111,363], + [5113,505], + [5115,1509], + [5117,167], + [5119,12162], + [5121,324], + [5123,486], + [5125,1801], + [5127,159], + [5129,120], + [5131,3524], + [5133,267], + [5135,328], + [5137,242], + [5139,1175], + [5141,353], + [5143,4845], + [5145,1521], + [5147,137], + [5149,322], + [6001,36360], + [6003,43], + [6005,811], + [6007,4794], + [6009,936], + [6011,370], + [6013,22138], + [6015,464], + [6017,4382], + [6019,15971], + [6021,482], + [6023,3406], + [6025,2441], + [6027,548], + [6029,12111], + [6031,1638], + [6033,1092], + [6035,451], + [6037,245523], + [6039,1955], + [6041,9725], + [6043,365], + [6045,2593], + [6047,2921], + [6049,162], + [6051,573], + [6053,8500], + [6055,3996], + [6057,3097], + [6059,87483], + [6061,9482], + [6063,682], + [6065,34055], + [6067,27635], + [6069,903], + [6071,31866], + [6073,76345], + [6075,30490], + [6077,11044], + [6079,7950], + [6081,19772], + [6083,11203], + [6085,44164], + [6087,6885], + [6089,4428], + [6091,74], + [6093,1187], + [6095,6839], + [6097,13383], + [6099,8578], + [6101,1789], + [6103,1058], + [6105,281], + [6107,6276], + [6109,1436], + [6111,19677], + [6113,3828], + [6115,818], + [8001,8214], + [8003,509], + [8005,16994], + [8007,508], + [8009,91], + [8011,63], + [8013,11352], + [8014,1677], + [8015,881], + [8017,61], + [8019,346], + [8021,96], + [8023,44], + [8025,39], + [8027,146], + [8029,891], + [8031,21959], + [8033,44], + [8035,7396], + [8037,3341], + [8039,522], + [8041,15756], + [8043,868], + [8045,2668], + [8047,113], + [8049,905], + [8051,1090], + [8053,74], + [8055,179], + [8057,63], + [8059,16231], + [8061,43], + [8063,249], + [8065,206], + [8067,2374], + [8069,9361], + [8071,408], + [8073,125], + [8075,601], + [8077,4816], + [8079,60], + [8081,446], + [8083,784], + [8085,1345], + [8087,658], + [8089,469], + [8091,304], + [8093,464], + [8095,134], + [8097,1620], + [8099,356], + [8101,3193], + [8103,248], + [8105,377], + [8107,1639], + [8109,123], + [8111,69], + [8113,631], + [8115,76], + [8117,2114], + [8119,697], + [8121,102], + [8123,5193], + [8125,352], + [9001,27291], + [9003,22935], + [9005,5039], + [9007,4227], + [9009,19893], + [9011,5878], + [9013,2486], + [9015,2159], + [10001,3169], + [10003,15879], + [10005,5408], + [11001,21210], + [12001,5794], + [12003,384], + [12005,4510], + [12007,455], + [12009,13005], + [12011,55289], + [12013,216], + [12015,3539], + [12017,2718], + [12019,3616], + [12021,9860], + [12023,1356], + [12027,457], + [12029,179], + [12031,23830], + [12033,6671], + [12035,1781], + [12037,324], + [12039,640], + [12041,215], + [12043,92], + [12045,295], + [12047,191], + [12049,383], + [12051,558], + [12053,2923], + [12055,1999], + [12057,31710], + [12059,301], + [12061,3874], + [12063,835], + [12065,262], + [12067,95], + [12069,6287], + [12071,15593], + [12073,7461], + [12075,738], + [12077,76], + [12079,309], + [12081,7468], + [12083,6890], + [12085,5004], + [12086,72673], + [12087,3456], + [12089,1612], + [12091,5005], + [12093,768], + [12095,31481], + [12097,4766], + [12099,41763], + [12101,8237], + [12103,26506], + [12105,10995], + [12107,1295], + [12109,4958], + [12111,4858], + [12113,2453], + [12115,12432], + [12117,12632], + [12119,1091], + [12121,679], + [12123,404], + [12125,134], + [12127,11881], + [12129,402], + [12131,1683], + [12133,372], + [13001,386], + [13003,92], + [13005,222], + [13007,30], + [13009,816], + [13011,286], + [13013,1038], + [13015,1905], + [13017,347], + [13019,289], + [13021,4271], + [13023,174], + [13025,180], + [13027,206], + [13029,595], + [13031,1404], + [13033,309], + [13035,356], + [13037,81], + [13039,844], + [13043,223], + [13045,2025], + [13047,928], + [13049,148], + [13051,7058], + [13053,65], + [13055,309], + [13057,4608], + [13059,2938], + [13061,43], + [13063,3991], + [13065,115], + [13067,19247], + [13069,851], + [13071,870], + [13073,2132], + [13075,332], + [13077,2082], + [13079,107], + [13081,529], + [13083,211], + [13085,614], + [13087,618], + [13089,16116], + [13091,347], + [13093,173], + [13095,2487], + [13097,2504], + [13099,236], + [13101,17], + [13103,706], + [13105,477], + [13107,415], + [13109,229], + [13111,557], + [13113,3155], + [13115,1964], + [13117,5041], + [13119,453], + [13121,33026], + [13123,574], + [13125,27], + [13127,2551], + [13129,1023], + [13131,427], + [13133,393], + [13135,21349], + [13137,829], + [13139,4007], + [13141,69], + [13143,456], + [13145,407], + [13147,404], + [13149,122], + [13151,3347], + [13153,2304], + [13155,130], + [13157,1166], + [13159,172], + [13161,261], + [13163,330], + [13165,118], + [13167,121], + [13169,327], + [13171,245], + [13173,111], + [13175,1064], + [13177,385], + [13179,829], + [13181,155], + [13183,69], + [13185,2734], + [13187,493], + [13189,459], + [13191,214], + [13193,194], + [13195,378], + [13197,86], + [13199,318], + [13201,129], + [13205,386], + [13207,505], + [13209,125], + [13211,463], + [13213,423], + [13215,4409], + [13217,1386], + [13219,956], + [13221,180], + [13223,1600], + [13225,494], + [13227,666], + [13229,340], + [13231,243], + [13233,634], + [13235,194], + [13237,437], + [13239,34], + [13241,490], + [13243,143], + [13245,4364], + [13247,2079], + [13249,65], + [13251,243], + [13253,184], + [13255,1186], + [13257,577], + [13259,72], + [13261,691], + [13263,62], + [13265,22], + [13267,307], + [13269,126], + [13271,216], + [13273,179], + [13275,1089], + [13277,1088], + [13279,716], + [13281,335], + [13283,92], + [13285,1439], + [13287,165], + [13289,71], + [13291,578], + [13293,464], + [13295,745], + [13297,1531], + [13299,931], + [13301,72], + [13303,366], + [13305,571], + [13307,25], + [13309,76], + [13311,608], + [13313,2334], + [13315,92], + [13317,239], + [13319,159], + [13321,303], + [15001,4197], + [15003,21748], + [15005,0], + [15007,1919], + [15009,4450], + [16001,12394], + [16003,143], + [16005,2040], + [16007,130], + [16009,246], + [16011,851], + [16013,1416], + [16015,153], + [16017,1510], + [16019,3244], + [16021,400], + [16023,70], + [16025,33], + [16027,3636], + [16029,192], + [16031,641], + [16033,16], + [16035,257], + [16037,156], + [16039,449], + [16041,299], + [16043,304], + [16045,364], + [16047,344], + [16049,490], + [16051,457], + [16053,536], + [16055,4510], + [16057,907], + [16059,314], + [16061,132], + [16063,92], + [16065,780], + [16067,411], + [16069,1166], + [16071,81], + [16073,177], + [16075,491], + [16077,162], + [16079,389], + [16081,446], + [16083,2563], + [16085,585], + [16087,234], + [17001,1855], + [17003,118], + [17005,323], + [17007,841], + [17009,124], + [17011,776], + [17013,95], + [17015,421], + [17017,258], + [17019,4176], + [17021,765], + [17023,332], + [17025,349], + [17027,866], + [17029,1238], + [17031,127868], + [17033,430], + [17035,192], + [17037,2014], + [17039,381], + [17041,634], + [17043,33330], + [17045,380], + [17047,163], + [17049,1175], + [17051,488], + [17053,389], + [17055,792], + [17057,709], + [17059,107], + [17061,274], + [17063,1090], + [17065,193], + [17067,426], + [17069,72], + [17071,117], + [17073,1125], + [17075,706], + [17077,1335], + [17079,217], + [17081,1006], + [17083,460], + [17085,745], + [17087,182], + [17089,12262], + [17091,2424], + [17093,1920], + [17095,1143], + [17097,19505], + [17099,2849], + [17101,302], + [17103,753], + [17105,917], + [17107,651], + [17109,729], + [17111,7810], + [17113,3691], + [17115,2548], + [17117,939], + [17119,5988], + [17121,973], + [17123,275], + [17125,312], + [17127,242], + [17129,229], + [17131,292], + [17133,772], + [17135,751], + [17137,890], + [17139,316], + [17141,1103], + [17143,4733], + [17145,416], + [17147,348], + [17149,384], + [17151,62], + [17153,99], + [17155,135], + [17157,681], + [17159,472], + [17161,3353], + [17163,5486], + [17165,602], + [17167,5140], + [17169,154], + [17171,77], + [17173,457], + [17175,126], + [17177,1107], + [17179,2836], + [17181,359], + [17183,1537], + [17185,275], + [17187,366], + [17189,396], + [17191,351], + [17193,372], + [17195,1287], + [17197,13800], + [17199,1621], + [17201,6769], + [17203,786], + [18001,728], + [18003,9224], + [18005,1893], + [18007,205], + [18009,260], + [18011,1373], + [18013,390], + [18015,397], + [18017,762], + [18019,2409], + [18021,487], + [18023,624], + [18025,140], + [18027,799], + [18029,978], + [18031,656], + [18033,1013], + [18035,2450], + [18037,1306], + [18039,4972], + [18041,459], + [18043,1753], + [18045,326], + [18047,450], + [18049,472], + [18051,722], + [18053,1430], + [18055,605], + [18057,7347], + [18059,1407], + [18061,668], + [18063,2864], + [18065,861], + [18067,1837], + [18069,890], + [18071,1044], + [18073,743], + [18075,421], + [18077,739], + [18079,418], + [18081,2947], + [18083,970], + [18085,1904], + [18087,773], + [18089,10059], + [18091,2487], + [18093,889], + [18095,2366], + [18097,23496], + [18099,1095], + [18101,179], + [18103,576], + [18105,3001], + [18107,873], + [18109,1196], + [18111,296], + [18113,912], + [18115,79], + [18117,383], + [18119,304], + [18121,263], + [18123,370], + [18125,187], + [18127,3471], + [18129,513], + [18131,328], + [18133,705], + [18135,497], + [18137,643], + [18139,388], + [18141,6038], + [18143,435], + [18145,918], + [18147,409], + [18149,327], + [18151,982], + [18153,358], + [18155,131], + [18157,3277], + [18159,318], + [18161,125], + [18163,5024], + [18165,281], + [18167,2577], + [18169,747], + [18171,127], + [18173,1102], + [18175,463], + [18177,1572], + [18179,632], + [18181,647], + [18183,674], + [19001,176], + [19003,121], + [19005,405], + [19007,335], + [19009,180], + [19011,576], + [19013,3175], + [19015,569], + [19017,604], + [19019,501], + [19021,590], + [19023,342], + [19025,283], + [19027,908], + [19029,484], + [19031,478], + [19033,1435], + [19035,372], + [19037,398], + [19039,201], + [19041,628], + [19043,530], + [19045,1215], + [19047,454], + [19049,1492], + [19051,169], + [19053,141], + [19055,505], + [19057,1126], + [19059,767], + [19061,2745], + [19063,331], + [19065,591], + [19067,425], + [19069,328], + [19071,192], + [19073,269], + [19075,294], + [19077,323], + [19079,399], + [19081,304], + [19083,570], + [19085,349], + [19087,517], + [19089,285], + [19091,328], + [19093,262], + [19095,473], + [19097,567], + [19099,782], + [19101,667], + [19103,3024], + [19105,528], + [19107,251], + [19109,579], + [19111,945], + [19113,5414], + [19115,209], + [19117,175], + [19119,383], + [19121,366], + [19123,576], + [19125,829], + [19127,840], + [19129,295], + [19131,332], + [19133,238], + [19135,176], + [19137,339], + [19139,974], + [19141,528], + [19143,187], + [19145,411], + [19147,298], + [19149,707], + [19151,238], + [19153,11913], + [19155,1979], + [19157,559], + [19159,141], + [19161,350], + [19163,4495], + [19165,413], + [19167,1205], + [19169,1998], + [19171,355], + [19173,135], + [19175,330], + [19177,166], + [19179,812], + [19181,795], + [19183,696], + [19185,162], + [19187,1068], + [19189,314], + [19191,606], + [19193,2795], + [19195,171], + [19197,403], + [20001,392], + [20003,219], + [20005,389], + [20007,217], + [20009,982], + [20011,371], + [20013,255], + [20015,1330], + [20017,68], + [20019,82], + [20021,359], + [20023,100], + [20025,66], + [20027,280], + [20029,317], + [20031,240], + [20033,82], + [20035,779], + [20037,951], + [20039,102], + [20041,486], + [20043,152], + [20045,2669], + [20047,90], + [20049,72], + [20051,1109], + [20053,185], + [20055,988], + [20057,776], + [20059,579], + [20061,594], + [20063,133], + [20065,116], + [20067,220], + [20069,201], + [20071,44], + [20073,190], + [20075,72], + [20077,211], + [20079,833], + [20081,122], + [20083,48], + [20085,264], + [20087,324], + [20089,86], + [20091,17015], + [20093,87], + [20095,213], + [20097,92], + [20099,489], + [20101,70], + [20103,1197], + [20105,98], + [20107,180], + [20109,122], + [20111,844], + [20113,924], + [20115,292], + [20117,375], + [20119,134], + [20121,731], + [20123,254], + [20125,918], + [20127,137], + [20129,104], + [20131,386], + [20133,491], + [20135,143], + [20137,185], + [20139,267], + [20141,154], + [20143,123], + [20145,175], + [20147,219], + [20149,564], + [20151,382], + [20153,99], + [20155,1686], + [20157,198], + [20159,278], + [20161,1533], + [20163,187], + [20165,91], + [20167,283], + [20169,1638], + [20171,197], + [20173,12113], + [20175,600], + [20177,4489], + [20179,105], + [20181,257], + [20183,138], + [20185,133], + [20187,72], + [20189,132], + [20191,484], + [20193,355], + [20195,133], + [20197,125], + [20199,55], + [20201,223], + [20203,93], + [20205,241], + [20207,98], + [20209,2995], + [21001,311], + [21003,233], + [21005,329], + [21007,135], + [21009,875], + [21011,136], + [21013,547], + [21015,2874], + [21017,387], + [21019,1441], + [21021,744], + [21023,98], + [21025,211], + [21027,271], + [21029,1051], + [21031,195], + [21033,284], + [21035,812], + [21037,1665], + [21039,69], + [21041,236], + [21043,407], + [21045,219], + [21047,1335], + [21049,788], + [21051,253], + [21053,190], + [21055,160], + [21057,105], + [21059,2272], + [21061,130], + [21063,45], + [21065,189], + [21067,8241], + [21069,258], + [21071,859], + [21073,1134], + [21075,135], + [21077,89], + [21079,228], + [21081,384], + [21083,692], + [21085,471], + [21087,159], + [21089,497], + [21091,138], + [21093,2136], + [21095,470], + [21097,292], + [21099,253], + [21101,1060], + [21103,219], + [21105,79], + [21107,989], + [21109,118], + [21111,19533], + [21113,1024], + [21115,437], + [21117,3200], + [21119,185], + [21121,480], + [21123,216], + [21125,1202], + [21127,213], + [21129,96], + [21131,110], + [21133,362], + [21135,125], + [21137,298], + [21139,144], + [21141,490], + [21143,160], + [21145,2116], + [21147,166], + [21149,167], + [21151,1568], + [21153,172], + [21155,354], + [21157,638], + [21159,181], + [21161,472], + [21163,322], + [21165,60], + [21167,379], + [21169,115], + [21171,207], + [21173,527], + [21175,172], + [21177,565], + [21179,919], + [21181,75], + [21183,359], + [21185,1222], + [21187,133], + [21189,44], + [21191,181], + [21193,687], + [21195,1362], + [21197,167], + [21199,1417], + [21201,25], + [21203,233], + [21205,442], + [21207,365], + [21209,849], + [21211,887], + [21213,391], + [21215,204], + [21217,645], + [21219,184], + [21221,246], + [21223,77], + [21225,294], + [21227,2638], + [21229,243], + [21231,326], + [21233,235], + [21235,674], + [21237,81], + [21239,552], + [22001,1114], + [22003,338], + [22005,1962], + [22007,257], + [22009,704], + [22011,589], + [22013,250], + [22015,2375], + [22017,6331], + [22019,4283], + [22021,191], + [22023,159], + [22025,173], + [22027,252], + [22029,380], + [22031,382], + [22033,12169], + [22035,124], + [22037,265], + [22039,523], + [22041,396], + [22043,187], + [22045,1752], + [22047,536], + [22049,250], + [22051,11928], + [22053,605], + [22055,7879], + [22057,1938], + [22059,290], + [22061,980], + [22063,1647], + [22065,210], + [22067,485], + [22069,808], + [22071,8324], + [22073,4203], + [22075,679], + [22077,390], + [22079,3268], + [22081,135], + [22083,399], + [22085,456], + [22087,627], + [22089,946], + [22091,117], + [22093,309], + [22095,740], + [22097,1620], + [22099,876], + [22101,1410], + [22103,5856], + [22105,2293], + [22107,92], + [22109,2950], + [22111,338], + [22113,1037], + [22115,685], + [22117,672], + [22119,816], + [22121,499], + [22123,175], + [22125,184], + [22127,329], + [23001,2766], + [23003,2059], + [23005,10858], + [23007,796], + [23009,2129], + [23011,3360], + [23013,1723], + [23015,1421], + [23017,1350], + [23019,4219], + [23021,440], + [23023,942], + [23025,1170], + [23027,956], + [23029,871], + [23031,5492], + [24001,1691], + [24003,13729], + [24005,20040], + [24009,1741], + [24011,661], + [24013,4400], + [24015,1792], + [24017,2701], + [24019,748], + [24021,5830], + [24023,948], + [24025,5321], + [24027,8520], + [24029,668], + [24031,26480], + [24033,14387], + [24035,1403], + [24037,1911], + [24039,385], + [24041,1556], + [24043,3497], + [24045,2543], + [24047,2178], + [24510,12333], + [25001,8301], + [25003,4088], + [25005,12828], + [25007,1034], + [25009,18005], + [25011,1623], + [25013,9867], + [25015,3543], + [25017,42023], + [25019,904], + [25021,19178], + [25023,11927], + [25025,19210], + [25027,17786], + [26001,195], + [26003,228], + [26005,2342], + [26007,852], + [26009,560], + [26011,327], + [26013,211], + [26015,929], + [26017,2315], + [26019,436], + [26021,3736], + [26023,833], + [26025,2723], + [26027,771], + [26029,829], + [26031,781], + [26033,822], + [26035,525], + [26037,1241], + [26039,319], + [26041,1128], + [26043,920], + [26045,2111], + [26047,1515], + [26049,7992], + [26051,440], + [26053,420], + [26055,3419], + [26057,744], + [26059,840], + [26061,941], + [26063,979], + [26065,6321], + [26067,889], + [26069,639], + [26071,400], + [26073,1452], + [26075,3077], + [26077,5651], + [26079,316], + [26081,15488], + [26083,57], + [26085,165], + [26087,1630], + [26089,746], + [26091,1924], + [26093,4042], + [26095,165], + [26097,427], + [26099,18024], + [26101,579], + [26103,1696], + [26105,762], + [26107,772], + [26109,473], + [26111,1864], + [26113,272], + [26115,2424], + [26117,1065], + [26119,219], + [26121,3406], + [26123,837], + [26125,38614], + [26127,512], + [26129,577], + [26131,208], + [26133,426], + [26135,191], + [26137,818], + [26139,5748], + [26141,341], + [26143,597], + [26145,4510], + [26147,3216], + [26149,1218], + [26151,883], + [26153,236], + [26155,1193], + [26157,910], + [26159,1366], + [26161,7932], + [26163,32960], + [26165,820], + [27001,430], + [27003,7368], + [27005,974], + [27007,1130], + [27009,905], + [27011,177], + [27013,1939], + [27015,756], + [27017,744], + [27019,2323], + [27021,895], + [27023,451], + [27025,1253], + [27027,1279], + [27029,191], + [27031,272], + [27033,352], + [27035,2052], + [27037,9941], + [27039,456], + [27041,1324], + [27043,461], + [27045,626], + [27047,829], + [27049,1356], + [27051,208], + [27053,39222], + [27055,467], + [27057,571], + [27059,771], + [27061,1164], + [27063,316], + [27065,304], + [27067,1388], + [27069,141], + [27071,415], + [27073,201], + [27075,295], + [27077,158], + [27079,692], + [27081,201], + [27083,816], + [27085,1024], + [27087,103], + [27089,272], + [27091,634], + [27093,588], + [27095,658], + [27097,887], + [27099,885], + [27101,310], + [27103,628], + [27105,621], + [27107,204], + [27109,3392], + [27111,1706], + [27113,399], + [27115,590], + [27117,348], + [27119,773], + [27121,390], + [27123,13313], + [27125,101], + [27127,524], + [27129,504], + [27131,1504], + [27133,262], + [27135,399], + [27137,5523], + [27139,3089], + [27141,1908], + [27143,366], + [27145,4326], + [27147,1008], + [27149,352], + [27151,309], + [27153,550], + [27155,124], + [27157,580], + [27159,403], + [27161,500], + [27163,5388], + [27165,304], + [27167,171], + [27169,1233], + [27171,3043], + [27173,327], + [28001,856], + [28003,809], + [28005,173], + [28007,352], + [28009,53], + [28011,703], + [28013,257], + [28015,94], + [28017,357], + [28019,118], + [28021,114], + [28023,267], + [28025,367], + [28027,570], + [28029,422], + [28031,324], + [28033,2543], + [28035,1872], + [28037,121], + [28039,335], + [28041,127], + [28043,581], + [28045,714], + [28047,4185], + [28049,5809], + [28051,262], + [28053,151], + [28055,9], + [28057,348], + [28059,2343], + [28061,217], + [28063,53], + [28065,168], + [28067,1407], + [28069,116], + [28071,1047], + [28073,1327], + [28075,1989], + [28077,199], + [28079,307], + [28081,2426], + [28083,764], + [28085,769], + [28087,1535], + [28089,2765], + [28091,625], + [28093,441], + [28095,693], + [28097,233], + [28099,528], + [28101,318], + [28103,199], + [28105,837], + [28107,626], + [28109,838], + [28111,170], + [28113,1024], + [28115,465], + [28117,507], + [28119,119], + [28121,3433], + [28123,496], + [28125,116], + [28127,416], + [28129,185], + [28131,285], + [28133,427], + [28135,184], + [28137,384], + [28139,345], + [28141,358], + [28143,228], + [28145,479], + [28147,231], + [28149,1074], + [28151,1217], + [28153,379], + [28155,164], + [28157,156], + [28159,390], + [28161,196], + [28163,404], + [29001,700], + [29003,304], + [29005,213], + [29007,581], + [29009,751], + [29011,274], + [29013,356], + [29015,379], + [29017,202], + [29019,4311], + [29021,2494], + [29023,1356], + [29025,162], + [29027,762], + [29029,1494], + [29031,2728], + [29033,229], + [29035,192], + [29037,1852], + [29039,286], + [29041,207], + [29043,1635], + [29045,142], + [29047,4903], + [29049,371], + [29051,2240], + [29053,430], + [29055,605], + [29057,149], + [29059,270], + [29061,182], + [29063,226], + [29065,436], + [29067,207], + [29069,812], + [29071,2631], + [29073,428], + [29075,215], + [29077,8081], + [29079,247], + [29081,222], + [29083,609], + [29085,143], + [29087,130], + [29089,189], + [29091,1117], + [29093,460], + [29095,17024], + [29097,3024], + [29099,4069], + [29101,1020], + [29103,113], + [29105,823], + [29107,736], + [29109,699], + [29111,190], + [29113,894], + [29115,325], + [29117,420], + [29119,313], + [29121,374], + [29123,285], + [29125,138], + [29127,852], + [29129,76], + [29131,722], + [29133,270], + [29135,336], + [29137,194], + [29139,276], + [29141,498], + [29143,398], + [29145,1288], + [29147,492], + [29149,212], + [29151,272], + [29153,183], + [29155,379], + [29157,502], + [29159,1056], + [29161,1133], + [29163,396], + [29165,2247], + [29167,601], + [29169,732], + [29171,101], + [29173,195], + [29175,597], + [29177,381], + [29179,212], + [29181,409], + [29183,7954], + [29185,169], + [29186,399], + [29187,1491], + [29189,30182], + [29195,535], + [29197,92], + [29199,124], + [29201,1108], + [29203,170], + [29205,177], + [29207,718], + [29209,703], + [29211,122], + [29213,1827], + [29215,503], + [29217,523], + [29219,567], + [29221,553], + [29223,273], + [29225,668], + [29227,50], + [29229,409], + [29510,9061], + [30001,363], + [30003,216], + [30005,150], + [30007,143], + [30009,407], + [30011,30], + [30013,2498], + [30015,150], + [30017,394], + [30019,71], + [30021,313], + [30023,237], + [30025,131], + [30027,456], + [30029,4054], + [30031,4782], + [30033,28], + [30035,248], + [30037,13], + [30039,101], + [30041,538], + [30043,265], + [30045,54], + [30047,825], + [30049,2178], + [30051,61], + [30053,642], + [30055,60], + [30057,360], + [30059,71], + [30061,127], + [30063,4203], + [30065,124], + [30067,754], + [30069,11], + [30071,142], + [30073,180], + [30075,68], + [30077,162], + [30079,36], + [30081,1443], + [30083,467], + [30085,188], + [30087,186], + [30089,369], + [30091,147], + [30093,1156], + [30095,262], + [30097,155], + [30099,189], + [30101,196], + [30103,22], + [30105,267], + [30107,59], + [30109,34], + [30111,5465], + [31001,963], + [31003,218], + [31005,13], + [31007,6], + [31009,9], + [31011,194], + [31013,324], + [31015,78], + [31017,137], + [31019,1476], + [31021,199], + [31023,194], + [31025,533], + [31027,304], + [31029,142], + [31031,215], + [31033,300], + [31035,193], + [31037,249], + [31039,360], + [31041,386], + [31043,433], + [31045,286], + [31047,725], + [31049,56], + [31051,123], + [31053,1032], + [31055,14812], + [31057,63], + [31059,223], + [31061,75], + [31063,75], + [31065,184], + [31067,643], + [31069,50], + [31071,97], + [31073,67], + [31075,26], + [31077,69], + [31079,1821], + [31081,296], + [31083,96], + [31085,23], + [31087,66], + [31089,424], + [31091,28], + [31093,150], + [31095,237], + [31097,119], + [31099,172], + [31101,341], + [31103,22], + [31105,131], + [31107,253], + [31109,7731], + [31111,1034], + [31113,20], + [31115,13], + [31117,8], + [31119,1283], + [31121,243], + [31123,116], + [31125,98], + [31127,202], + [31129,186], + [31131,482], + [31133,69], + [31135,122], + [31137,334], + [31139,220], + [31141,1019], + [31143,149], + [31145,426], + [31147,262], + [31149,45], + [31151,302], + [31153,3075], + [31155,492], + [31157,1141], + [31159,445], + [31161,167], + [31163,83], + [31165,20], + [31167,119], + [31169,207], + [31171,25], + [31173,107], + [31175,179], + [31177,531], + [31179,253], + [31181,83], + [31183,18], + [31185,511], + [32001,536], + [32003,39755], + [32005,1565], + [32007,1080], + [32009,18], + [32011,38], + [32013,394], + [32015,95], + [32017,94], + [32019,767], + [32021,65], + [32023,689], + [32027,81], + [32029,91], + [32031,12015], + [32033,202], + [32510,2178], + [33001,1870], + [33003,1887], + [33005,1968], + [33007,915], + [33009,2988], + [33011,10841], + [33013,4166], + [33015,9563], + [33017,2561], + [33019,1025], + [34001,6630], + [34003,31669], + [34005,10563], + [34007,11977], + [34009,3869], + [34011,2978], + [34013,19225], + [34015,5894], + [34017,12732], + [34019,3928], + [34021,9818], + [34023,21281], + [34025,18976], + [34027,17161], + [34029,11907], + [34031,11683], + [34033,1205], + [34035,9802], + [34037,3397], + [34039,13715], + [34041,2583], + [35001,16270], + [35003,62], + [35005,1483], + [35006,344], + [35007,488], + [35009,1040], + [35011,58], + [35013,3731], + [35015,1272], + [35017,676], + [35019,106], + [35021,11], + [35023,97], + [35025,1553], + [35027,759], + [35028,375], + [35029,419], + [35031,1029], + [35033,53], + [35035,1027], + [35037,244], + [35039,642], + [35041,354], + [35043,1626], + [35045,2852], + [35047,472], + [35049,4875], + [35051,237], + [35053,247], + [35055,1162], + [35057,240], + [35059,118], + [35061,941], + [36001,9403], + [36003,803], + [36005,16015], + [36007,4287], + [36009,1763], + [36011,1624], + [36013,2992], + [36015,1869], + [36017,975], + [36019,1911], + [36021,1724], + [36023,1024], + [36025,1065], + [36027,7497], + [36029,22372], + [36031,1181], + [36033,1048], + [36035,1232], + [36037,1326], + [36039,1136], + [36041,198], + [36043,1170], + [36045,2424], + [36047,46445], + [36049,518], + [36051,1264], + [36053,1426], + [36055,16990], + [36057,1109], + [36059,47087], + [36061,103528], + [36063,4467], + [36065,4905], + [36067,11779], + [36069,2801], + [36071,9237], + [36073,682], + [36075,2107], + [36077,1434], + [36079,2926], + [36081,42420], + [36083,2966], + [36085,8321], + [36087,9148], + [36089,2080], + [36091,4919], + [36093,3090], + [36095,567], + [36097,354], + [36099,702], + [36101,1838], + [36103,47573], + [36105,1995], + [36107,796], + [36109,2297], + [36111,4682], + [36113,2371], + [36115,1082], + [36117,1728], + [36119,31590], + [36121,785], + [36123,534], + [37001,3212], + [37003,603], + [37005,280], + [37007,419], + [37009,566], + [37011,527], + [37013,1179], + [37015,362], + [37017,526], + [37019,2321], + [37021,7261], + [37023,1505], + [37025,3958], + [37027,1438], + [37029,126], + [37031,2049], + [37033,242], + [37035,4267], + [37037,1269], + [37039,641], + [37041,384], + [37043,236], + [37045,2003], + [37047,1080], + [37049,2306], + [37051,5696], + [37053,594], + [37055,1893], + [37057,2795], + [37059,788], + [37061,879], + [37063,6532], + [37065,802], + [37067,8430], + [37069,931], + [37071,3979], + [37073,134], + [37075,182], + [37077,861], + [37079,243], + [37081,13458], + [37083,1066], + [37085,1627], + [37087,1434], + [37089,2626], + [37091,487], + [37093,396], + [37095,159], + [37097,4295], + [37099,948], + [37101,3110], + [37103,147], + [37105,1329], + [37107,1321], + [37109,1557], + [37111,729], + [37113,1193], + [37115,318], + [37117,476], + [37119,27889], + [37121,390], + [37123,524], + [37125,2208], + [37127,2212], + [37129,6736], + [37131,279], + [37133,2639], + [37135,3061], + [37137,246], + [37139,991], + [37141,900], + [37143,203], + [37145,708], + [37147,3542], + [37149,473], + [37151,2611], + [37153,867], + [37155,1897], + [37157,1769], + [37159,2591], + [37161,1321], + [37163,991], + [37165,679], + [37167,1335], + [37169,615], + [37171,1693], + [37173,397], + [37175,837], + [37177,66], + [37179,4012], + [37181,878], + [37183,24619], + [37185,242], + [37187,259], + [37189,1641], + [37191,2239], + [37193,1311], + [37195,1739], + [37197,624], + [37199,355], + [38001,98], + [38003,377], + [38005,104], + [38007,44], + [38009,260], + [38011,154], + [38013,81], + [38015,2687], + [38017,4977], + [38019,158], + [38021,213], + [38023,77], + [38025,91], + [38027,79], + [38029,130], + [38031,142], + [38033,72], + [38035,1818], + [38037,74], + [38039,95], + [38041,98], + [38043,62], + [38045,149], + [38047,72], + [38049,116], + [38051,115], + [38053,182], + [38055,234], + [38057,237], + [38059,723], + [38061,214], + [38063,115], + [38065,38], + [38067,295], + [38069,167], + [38071,384], + [38073,202], + [38075,96], + [38077,522], + [38079,194], + [38081,129], + [38083,45], + [38085,29], + [38087,14], + [38089,903], + [38091,63], + [38093,652], + [38095,82], + [38097,295], + [38099,418], + [38101,1714], + [38103,179], + [38105,909], + [39001,388], + [39003,2567], + [39005,1055], + [39007,2033], + [39009,1082], + [39011,1002], + [39013,1464], + [39015,535], + [39017,7019], + [39019,481], + [39021,640], + [39023,2486], + [39025,3626], + [39027,779], + [39029,2155], + [39031,652], + [39033,883], + [39035,34102], + [39037,1166], + [39039,810], + [39041,3858], + [39043,1912], + [39045,2610], + [39047,617], + [39049,27183], + [39051,989], + [39053,554], + [39055,2749], + [39057,3017], + [39059,880], + [39061,21750], + [39063,1741], + [39065,460], + [39067,284], + [39069,577], + [39071,689], + [39073,495], + [39075,1096], + [39077,1213], + [39079,606], + [39081,1362], + [39083,1064], + [39085,6237], + [39087,837], + [39089,2921], + [39091,883], + [39093,5723], + [39095,10115], + [39097,703], + [39099,5888], + [39101,1223], + [39103,3988], + [39105,316], + [39107,952], + [39109,2188], + [39111,261], + [39113,11855], + [39115,166], + [39117,389], + [39119,1829], + [39121,206], + [39123,1014], + [39125,301], + [39127,426], + [39129,806], + [39131,439], + [39133,2970], + [39135,652], + [39137,722], + [39139,2798], + [39141,1287], + [39143,1353], + [39145,1340], + [39147,1187], + [39149,1009], + [39151,8544], + [39153,13886], + [39155,4346], + [39157,2208], + [39159,1025], + [39161,569], + [39163,138], + [39165,3930], + [39167,1464], + [39169,2448], + [39171,829], + [39173,2784], + [39175,524], + [40001,227], + [40003,135], + [40005,254], + [40007,169], + [40009,816], + [40011,308], + [40013,751], + [40015,475], + [40017,2247], + [40019,1485], + [40021,740], + [40023,257], + [40025,68], + [40027,5272], + [40029,80], + [40031,2218], + [40033,84], + [40035,348], + [40037,1430], + [40039,880], + [40041,725], + [40043,133], + [40045,114], + [40047,1694], + [40049,673], + [40051,1051], + [40053,103], + [40055,80], + [40057,59], + [40059,105], + [40061,233], + [40063,232], + [40065,531], + [40067,111], + [40069,175], + [40071,1161], + [40073,481], + [40075,204], + [40077,177], + [40079,789], + [40081,583], + [40083,737], + [40085,150], + [40087,742], + [40089,562], + [40091,366], + [40093,250], + [40095,279], + [40097,787], + [40099,270], + [40101,1507], + [40103,193], + [40105,154], + [40107,162], + [40109,22264], + [40111,707], + [40113,605], + [40115,636], + [40117,292], + [40119,1722], + [40121,979], + [40123,987], + [40125,1363], + [40127,189], + [40129,98], + [40131,1645], + [40133,483], + [40135,606], + [40137,1058], + [40139,472], + [40141,145], + [40143,18650], + [40145,938], + [40147,1212], + [40149,237], + [40151,274], + [40153,782], + [41001,548], + [41003,2077], + [41005,10865], + [41007,1480], + [41009,964], + [41011,1720], + [41013,501], + [41015,721], + [41017,5951], + [41019,2621], + [41021,65], + [41023,253], + [41025,200], + [41027,934], + [41029,5896], + [41031,355], + [41033,2036], + [41035,1700], + [41037,207], + [41039,9767], + [41041,1638], + [41043,2456], + [41045,724], + [41047,7777], + [41049,178], + [41051,24323], + [41053,1284], + [41055,50], + [41057,713], + [41059,1543], + [41061,783], + [41063,348], + [41065,724], + [41067,14241], + [41069,32], + [41071,2243], + [42001,1979], + [42003,33360], + [42005,1298], + [42007,3433], + [42009,1098], + [42011,8413], + [42013,3220], + [42015,1341], + [42017,18943], + [42019,4643], + [42021,3439], + [42023,122], + [42025,1140], + [42027,3180], + [42029,13860], + [42031,970], + [42033,1973], + [42035,731], + [42037,1438], + [42039,2108], + [42041,5741], + [42043,6866], + [42045,12870], + [42047,912], + [42049,6552], + [42051,2746], + [42053,111], + [42055,3107], + [42057,284], + [42059,731], + [42061,853], + [42063,1982], + [42065,1159], + [42067,465], + [42069,5415], + [42071,11981], + [42073,2004], + [42075,2636], + [42077,8479], + [42079,7379], + [42081,2805], + [42083,1076], + [42085,2794], + [42087,935], + [42089,3495], + [42091,25944], + [42093,422], + [42095,6270], + [42097,1673], + [42099,797], + [42101,26787], + [42103,917], + [42105,371], + [42107,2894], + [42109,839], + [42111,1741], + [42113,165], + [42115,883], + [42117,851], + [42119,898], + [42121,1186], + [42123,912], + [42125,4991], + [42127,1373], + [42129,8955], + [42131,615], + [42133,8647], + [44001,1249], + [44003,4929], + [44005,2745], + [44007,15869], + [44009,3811], + [45001,356], + [45003,2821], + [45005,130], + [45007,3741], + [45009,305], + [45011,369], + [45013,4813], + [45015,2658], + [45017,257], + [45019,11764], + [45021,1014], + [45023,536], + [45025,710], + [45027,524], + [45029,790], + [45031,1152], + [45033,511], + [45035,2173], + [45037,341], + [45039,316], + [45041,3239], + [45043,1837], + [45045,12213], + [45047,1415], + [45049,392], + [45051,8418], + [45053,549], + [45055,1159], + [45057,1215], + [45059,941], + [45061,223], + [45063,6101], + [45065,102], + [45067,555], + [45069,358], + [45071,740], + [45073,1501], + [45075,1771], + [45077,2090], + [45079,9087], + [45081,247], + [45083,6396], + [45085,1842], + [45087,467], + [45089,534], + [45091,4441], + [46003,86], + [46005,583], + [46007,65], + [46009,189], + [46011,853], + [46013,1315], + [46015,218], + [46017,8], + [46019,305], + [46021,50], + [46023,287], + [46025,113], + [46027,308], + [46029,1074], + [46031,36], + [46033,268], + [46035,735], + [46037,189], + [46039,132], + [46041,105], + [46043,112], + [46045,119], + [46047,214], + [46049,72], + [46051,287], + [46053,178], + [46055,83], + [46057,158], + [46059,134], + [46061,56], + [46063,30], + [46065,687], + [46067,235], + [46069,42], + [46071,46], + [46073,75], + [46075,54], + [46077,170], + [46079,364], + [46081,979], + [46083,1076], + [46085,72], + [46087,187], + [46089,75], + [46091,151], + [46093,672], + [46095,28], + [46097,77], + [46099,5469], + [46101,165], + [46102,68], + [46103,3559], + [46105,132], + [46107,103], + [46109,231], + [46111,59], + [46115,178], + [46117,103], + [46119,59], + [46121,53], + [46123,222], + [46125,246], + [46127,466], + [46129,223], + [46135,726], + [46137,17], + [47001,1618], + [47003,739], + [47005,290], + [47007,91], + [47009,2355], + [47011,1919], + [47013,594], + [47015,173], + [47017,456], + [47019,736], + [47021,542], + [47023,237], + [47025,429], + [47027,103], + [47029,487], + [47031,1239], + [47033,219], + [47035,1059], + [47037,18338], + [47039,259], + [47041,296], + [47043,945], + [47045,835], + [47047,590], + [47049,268], + [47051,684], + [47053,943], + [47055,570], + [47057,226], + [47059,1154], + [47061,161], + [47063,1338], + [47065,8756], + [47067,54], + [47069,374], + [47071,509], + [47073,611], + [47075,337], + [47077,521], + [47079,711], + [47081,275], + [47083,100], + [47085,335], + [47087,92], + [47089,701], + [47091,245], + [47093,11248], + [47095,83], + [47097,320], + [47099,704], + [47101,213], + [47103,613], + [47105,868], + [47107,911], + [47109,443], + [47111,340], + [47113,2561], + [47115,445], + [47117,494], + [47119,1653], + [47121,100], + [47123,715], + [47125,2547], + [47127,70], + [47129,177], + [47131,696], + [47133,293], + [47135,127], + [47137,88], + [47139,233], + [47141,1759], + [47143,496], + [47145,737], + [47147,1075], + [47149,4500], + [47151,323], + [47153,195], + [47155,2605], + [47157,20262], + [47159,285], + [47161,156], + [47163,3433], + [47165,2895], + [47167,768], + [47169,122], + [47171,257], + [47173,205], + [47175,48], + [47177,756], + [47179,2846], + [47181,211], + [47183,570], + [47185,381], + [47187,6069], + [47189,2324], + [48001,919], + [48003,321], + [48005,1856], + [48007,483], + [48009,189], + [48011,30], + [48013,623], + [48015,576], + [48017,167], + [48019,374], + [48021,1029], + [48023,119], + [48025,449], + [48027,4698], + [48029,32411], + [48031,257], + [48033,3], + [48035,299], + [48037,2179], + [48039,4752], + [48041,3754], + [48043,299], + [48045,36], + [48047,132], + [48049,905], + [48051,305], + [48053,1074], + [48055,524], + [48057,408], + [48059,224], + [48061,6320], + [48063,227], + [48065,113], + [48067,517], + [48069,179], + [48071,493], + [48073,788], + [48075,166], + [48077,133], + [48079,61], + [48081,68], + [48083,219], + [48085,17253], + [48087,67], + [48089,551], + [48091,2789], + [48093,278], + [48095,50], + [48097,872], + [48099,736], + [48101,36], + [48103,78], + [48105,133], + [48107,112], + [48109,52], + [48111,222], + [48113,61359], + [48115,285], + [48117,408], + [48119,57], + [48121,11225], + [48123,425], + [48125,48], + [48127,164], + [48129,82], + [48131,135], + [48133,463], + [48135,3248], + [48137,35], + [48139,2446], + [48141,13179], + [48143,927], + [48145,230], + [48147,490], + [48149,745], + [48151,63], + [48153,160], + [48155,33], + [48157,8932], + [48159,184], + [48161,357], + [48163,243], + [48165,338], + [48167,5073], + [48169,125], + [48171,890], + [48173,15], + [48175,115], + [48177,388], + [48179,633], + [48181,2582], + [48183,3991], + [48185,362], + [48187,1784], + [48189,738], + [48191,90], + [48193,229], + [48195,148], + [48197,87], + [48199,777], + [48201,91082], + [48203,1295], + [48205,89], + [48207,130], + [48209,3106], + [48211,160], + [48213,1244], + [48215,10660], + [48217,679], + [48219,505], + [48221,1220], + [48223,741], + [48225,367], + [48227,690], + [48229,32], + [48231,1395], + [48233,493], + [48235,45], + [48237,233], + [48239,279], + [48241,650], + [48243,59], + [48245,5721], + [48247,101], + [48249,846], + [48251,2559], + [48253,301], + [48255,241], + [48257,1692], + [48259,1083], + [48261,12], + [48263,10], + [48265,1421], + [48267,150], + [48269,0], + [48271,36], + [48273,558], + [48275,113], + [48277,1170], + [48279,274], + [48281,396], + [48283,83], + [48285,453], + [48287,408], + [48289,361], + [48291,1027], + [48293,402], + [48295,99], + [48297,229], + [48299,434], + [48301,1], + [48303,6813], + [48305,95], + [48307,218], + [48309,4955], + [48311,14], + [48313,205], + [48315,158], + [48317,93], + [48319,141], + [48321,729], + [48323,770], + [48325,637], + [48327,53], + [48329,4496], + [48331,416], + [48333,126], + [48335,126], + [48337,457], + [48339,8743], + [48341,447], + [48343,226], + [48345,36], + [48347,1263], + [48349,925], + [48351,138], + [48353,345], + [48355,7798], + [48357,341], + [48359,34], + [48361,1374], + [48363,612], + [48365,492], + [48367,2176], + [48369,205], + [48371,317], + [48373,698], + [48375,3573], + [48377,129], + [48379,143], + [48381,2295], + [48383,106], + [48385,84], + [48387,187], + [48389,196], + [48391,137], + [48393,12], + [48395,253], + [48397,1650], + [48399,251], + [48401,811], + [48403,151], + [48405,130], + [48407,182], + [48409,1043], + [48411,149], + [48413,58], + [48415,422], + [48417,129], + [48419,483], + [48421,56], + [48423,5363], + [48425,199], + [48427,500], + [48429,250], + [48431,28], + [48433,51], + [48435,151], + [48437,147], + [48439,36935], + [48441,3357], + [48443,17], + [48445,257], + [48447,50], + [48449,660], + [48451,2600], + [48453,27776], + [48455,190], + [48457,261], + [48459,474], + [48461,80], + [48463,575], + [48465,772], + [48467,818], + [48469,2243], + [48471,904], + [48473,680], + [48475,268], + [48477,861], + [48479,4695], + [48481,946], + [48483,184], + [48485,3226], + [48487,305], + [48489,203], + [48491,7846], + [48493,500], + [48495,156], + [48497,1230], + [48499,831], + [48501,177], + [48503,599], + [48505,178], + [48507,102], + [49001,174], + [49003,1031], + [49005,3037], + [49007,519], + [49009,22], + [49011,6257], + [49013,635], + [49015,216], + [49017,142], + [49019,430], + [49021,1273], + [49023,182], + [49025,264], + [49027,241], + [49029,233], + [49031,23], + [49033,75], + [49035,29003], + [49037,279], + [49039,425], + [49041,507], + [49043,2045], + [49045,753], + [49047,1146], + [49049,10624], + [49051,720], + [49053,3974], + [49055,82], + [49057,4994], + [50001,1177], + [50003,1496], + [50005,922], + [50007,5513], + [50009,126], + [50011,1028], + [50013,203], + [50015,1001], + [50017,787], + [50019,821], + [50021,2265], + [50023,2258], + [50025,1811], + [50027,2106], + [51001,818], + [51003,2486], + [51005,250], + [51007,295], + [51009,618], + [51011,297], + [51013,5856], + [51015,1388], + [51017,137], + [51019,1413], + [51021,79], + [51023,756], + [51025,289], + [51027,459], + [51029,268], + [51031,1190], + [51033,406], + [51035,429], + [51036,139], + [51037,233], + [51041,6918], + [51043,387], + [51045,60], + [51047,958], + [51049,148], + [51051,233], + [51053,354], + [51057,319], + [51059,28736], + [51061,1776], + [51063,306], + [51065,403], + [51067,1195], + [51069,1424], + [51071,310], + [51073,902], + [51075,635], + [51077,182], + [51079,339], + [51081,114], + [51083,753], + [51085,3012], + [51087,8809], + [51089,907], + [51091,95], + [51093,644], + [51095,1657], + [51097,120], + [51099,457], + [51101,326], + [51103,527], + [51105,292], + [51107,7861], + [51109,555], + [51111,191], + [51113,285], + [51115,193], + [51117,831], + [51119,383], + [51121,1999], + [51125,392], + [51127,353], + [51131,338], + [51133,383], + [51135,324], + [51137,662], + [51139,444], + [51141,318], + [51143,859], + [51145,676], + [51147,545], + [51149,438], + [51153,6876], + [51155,657], + [51157,192], + [51159,208], + [51161,2126], + [51163,454], + [51165,1418], + [51167,503], + [51169,308], + [51171,930], + [51173,574], + [51175,238], + [51177,2306], + [51179,2104], + [51181,81], + [51183,187], + [51185,1142], + [51187,810], + [51191,1213], + [51193,347], + [51195,854], + [51197,704], + [51199,1462], + [51510,4512], + [51520,649], + [51530,119], + [51540,2015], + [51550,5364], + [51570,691], + [51580,248], + [51590,1414], + [51595,242], + [51600,2320], + [51610,814], + [51620,301], + [51630,1394], + [51640,325], + [51650,2405], + [51660,1574], + [51670,460], + [51678,308], + [51680,2255], + [51683,1410], + [51685,280], + [51690,606], + [51700,3808], + [51710,5888], + [51720,259], + [51730,752], + [51735,222], + [51740,1812], + [51750,324], + [51760,6105], + [51770,3227], + [51775,989], + [51790,800], + [51800,1488], + [51810,10906], + [51820,610], + [51830,481], + [51840,1329], + [53001,367], + [53003,444], + [53005,3906], + [53007,2441], + [53009,2174], + [53011,9525], + [53013,129], + [53015,2240], + [53017,684], + [53019,133], + [53021,1336], + [53023,44], + [53025,1740], + [53027,1774], + [53029,1825], + [53031,1071], + [53033,63244], + [53035,5741], + [53037,1161], + [53039,540], + [53041,1886], + [53043,281], + [53045,1055], + [53047,1190], + [53049,648], + [53051,239], + [53053,16768], + [53055,1007], + [53057,3485], + [53059,202], + [53061,17281], + [53063,12515], + [53065,905], + [53067,5858], + [53069,89], + [53071,1413], + [53073,6281], + [53075,818], + [53077,4681], + [54001,247], + [54003,1592], + [54005,313], + [54007,283], + [54009,411], + [54011,2584], + [54013,124], + [54015,118], + [54017,73], + [54019,837], + [54021,134], + [54023,234], + [54025,1001], + [54027,349], + [54029,612], + [54031,262], + [54033,1793], + [54035,538], + [54037,881], + [54039,5489], + [54041,428], + [54043,237], + [54045,707], + [54047,291], + [54049,1264], + [54051,482], + [54053,339], + [54055,1377], + [54057,475], + [54059,467], + [54061,2168], + [54063,207], + [54065,263], + [54067,585], + [54069,1472], + [54071,147], + [54073,121], + [54075,221], + [54077,573], + [54079,1204], + [54081,1914], + [54083,710], + [54085,215], + [54087,265], + [54089,168], + [54091,226], + [54093,184], + [54095,121], + [54097,544], + [54099,587], + [54101,144], + [54103,376], + [54105,69], + [54107,2130], + [54109,335], + [55001,333], + [55003,552], + [55005,1304], + [55007,438], + [55009,6447], + [55011,321], + [55013,432], + [55015,867], + [55017,1490], + [55019,724], + [55021,1408], + [55023,419], + [55025,13265], + [55027,1801], + [55029,1305], + [55031,1064], + [55033,911], + [55035,2617], + [55037,117], + [55039,2460], + [55041,243], + [55043,1243], + [55045,939], + [55047,516], + [55049,565], + [55051,216], + [55053,420], + [55055,1995], + [55057,555], + [55059,3077], + [55061,488], + [55063,2969], + [55065,350], + [55067,602], + [55069,710], + [55071,1842], + [55073,3425], + [55075,1141], + [55077,313], + [55078,15], + [55079,20309], + [55081,933], + [55083,789], + [55085,1369], + [55087,5009], + [55089,2786], + [55091,217], + [55093,777], + [55095,1120], + [55097,1629], + [55099,455], + [55101,4094], + [55103,392], + [55105,3347], + [55107,312], + [55109,2076], + [55111,1815], + [55113,707], + [55115,915], + [55117,2699], + [55119,458], + [55121,662], + [55123,644], + [55125,977], + [55127,2662], + [55129,531], + [55131,3192], + [55133,12702], + [55135,1277], + [55137,489], + [55139,3628], + [55141,1844], + [56001,1026], + [56003,292], + [56005,1466], + [56007,543], + [56009,444], + [56011,231], + [56013,1362], + [56015,341], + [56017,206], + [56019,405], + [56021,2641], + [56023,630], + [56025,2962], + [56027,86], + [56029,1208], + [56031,276], + [56033,1171], + [56035,503], + [56037,1352], + [56039,1897], + [56041,634], + [56043,378], + [56045,215] + ] +} diff --git a/data/regional/united-states/economics/companies/us-firms-2007.json b/data/regional/united-states/economics/companies/us-firms-2007.json new file mode 100644 index 0000000..519ed9f --- /dev/null +++ b/data/regional/united-states/economics/companies/us-firms-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Firms", + "description" : "Total number of firms.", + "units" : "firms", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies","firms"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.firms.2007"], + [1001,40.67], + [1003,190.35], + [1005,16.67], + [1007,13.85], + [1009,44.58], + [1011,4.17], + [1013,17.69], + [1015,87.13], + [1017,19.81], + [1019,21.8], + [1021,null], + [1023,11.02], + [1025,23.74], + [1027,10.05], + [1029,12.8], + [1031,40.32], + [1033,47.57], + [1035,9.8], + [1037,5.45], + [1039,29.57], + [1041,10.27], + [1043,78.73], + [1045,29.51], + [1047,31.48], + [1049,59.08], + [1051,65.13], + [1053,27.65], + [1055,91.47], + [1057,13.78], + [1059,23.57], + [1061,17.36], + [1063,6.57], + [1065,8.82], + [1067,10.91], + [1069,101.51], + [1071,43.37], + [1073,554.7], + [1075,13.4], + [1077,83.17], + [1079,22.89], + [1081,103.19], + [1083,59.14], + [1085,6.82], + [1087,15.84], + [1089,264.67], + [1091,16.04], + [1093,22.24], + [1095,87], + [1097,348.36], + [1099,22.57], + [1101,214.63], + [1103,100.34], + [1105,8.54], + [1107,12.68], + [1109,25.27], + [1111,15.5], + [1113,38.23], + [1115,60.61], + [1117,183.93], + [1119,7.3], + [1121,48.72], + [1123,35.28], + [1125,147.29], + [1127,53.65], + [1129,12.88], + [1131,9.28], + [1133,23.8], + [2013,1.88], + [2016,2.85], + [2020,267.26], + [2050,12.38], + [2060,2.5], + [2068,3.16], + [2070,7.89], + [2090,64.81], + [2100,4.89], + [2105,7.18], + [2110,35], + [2122,86.98], + [2130,14.72], + [2150,18.47], + [2158,null], + [2164,3.71], + [2170,76.46], + [2180,6.29], + [2185,2.63], + [2188,1.89], + [2195,13.95], + [2198,9.05], + [2220,19.38], + [2230,null], + [2240,5.67], + [2261,15.74], + [2275,null], + [2282,1.58], + [2290,4.26], + [4001,37.32], + [4003,87.4], + [4005,114.07], + [4007,52.5], + [4009,16.03], + [4011,5.38], + [4012,12.41], + [4013,3117.65], + [4015,145.68], + [4017,67.09], + [4019,758.53], + [4021,155.91], + [4023,45.99], + [4025,235.63], + [4027,101.58], + [5001,17.91], + [5003,14.86], + [5005,46.35], + [5007,187.99], + [5009,37.48], + [5011,6.4], + [5013,null], + [5015,30.78], + [5017,9.16], + [5019,16.89], + [5021,11.09], + [5023,31.8], + [5025,2.97], + [5027,18.59], + [5029,18.76], + [5031,83.87], + [5033,44.89], + [5035,33.99], + [5037,15.89], + [5039,4.59], + [5041,8.4], + [5043,14.6], + [5045,94.64], + [5047,11.39], + [5049,10.47], + [5051,103.69], + [5053,16.96], + [5055,32.05], + [5057,15.78], + [5059,26.36], + [5061,9.55], + [5063,31.1], + [5065,null], + [5067,11.1], + [5069,40.83], + [5071,21], + [5073,null], + [5075,14.34], + [5077,5.32], + [5079,5.86], + [5081,8.63], + [5083,19.24], + [5085,52.53], + [5087,12.02], + [5089,20.94], + [5091,31.6], + [5093,22.31], + [5095,8.32], + [5097,9.22], + [5099,6.22], + [5101,10.27], + [5103,21.53], + [5105,6.36], + [5107,17.91], + [5109,9.64], + [5111,16.82], + [5113,19.31], + [5115,51.92], + [5117,5.72], + [5119,353.92], + [5121,14.27], + [5123,20.07], + [5125,95.17], + [5127,7.76], + [5129,7.28], + [5131,107.63], + [5133,9.08], + [5135,null], + [5137,19.18], + [5139,36.12], + [5141,18.19], + [5143,176.53], + [5145,75.25], + [5147,3.91], + [5149,12.97], + [6001,1403.42], + [6003,1.22], + [6005,34.91], + [6007,173.07], + [6009,53.65], + [6011,12.34], + [6013,956.88], + [6015,16.04], + [6017,212.65], + [6019,587.45], + [6021,19.03], + [6023,146.89], + [6025,101.29], + [6027,17.09], + [6029,530.51], + [6031,61.94], + [6033,49.61], + [6035,18.29], + [6037,10469.4], + [6039,95.43], + [6041,427.12], + [6043,14.37], + [6045,110.15], + [6047,126.39], + [6049,8.93], + [6051,21.37], + [6053,317.11], + [6055,127.94], + [6057,144.92], + [6059,3293.8], + [6061,368.9], + [6063,22.77], + [6065,1632.48], + [6067,1089.5], + [6069,36.52], + [6071,1518.88], + [6073,2911.24], + [6075,1050.3], + [6077,411.37], + [6079,299.2], + [6081,746.04], + [6083,398.34], + [6085,1560.84], + [6087,291.22], + [6089,null], + [6091,null], + [6093,45.49], + [6095,274.28], + [6097,524.58], + [6099,313.24], + [6101,66.25], + [6103,42.72], + [6105,14.81], + [6107,248.81], + [6109,57.06], + [6111,801.79], + [6113,147.82], + [6115,41.11], + [8001,327.77], + [8003,13.41], + [8005,619.51], + [8007,25.21], + [8009,null], + [8011,3.31], + [8013,425.06], + [8014,62.84], + [8015,33.69], + [8017,3.04], + [8019,11.93], + [8021,8.93], + [8023,3.7], + [8025,null], + [8027,null], + [8029,40.29], + [8031,675], + [8033,3.49], + [8035,329.92], + [8037,94.37], + [8039,32.69], + [8041,574.75], + [8043,41.1], + [8045,85.95], + [8047,7.23], + [8049,26.24], + [8051,33], + [8053,3.26], + [8055,9.38], + [8057,1.27], + [8059,622.49], + [8061,null], + [8063,8.34], + [8065,7.96], + [8067,82.31], + [8069,346.6], + [8071,15.58], + [8073,6.26], + [8075,13.96], + [8077,160.79], + [8079,5.1], + [8081,null], + [8083,30.68], + [8085,55.38], + [8087,21.37], + [8089,15.86], + [8091,11.17], + [8093,23.13], + [8095,3.24], + [8097,51], + [8099,13.28], + [8101,102.32], + [8103,8.25], + [8105,17.91], + [8107,49.13], + [8109,5.01], + [8111,null], + [8113,22.94], + [8115,2.82], + [8117,57.51], + [8119,34.29], + [8121,2.65], + [8123,230.24], + [8125,10.31], + [9001,1089.1], + [9003,729.06], + [9005,214.35], + [9007,156.93], + [9009,744.77], + [9011,217.33], + [9013,116.98], + [9015,84.91], + [10001,112.42], + [10003,436.6], + [10005,202.85], + [11001,558.87], + [12001,206.76], + [12003,17.27], + [12005,154.65], + [12007,21.06], + [12009,459.39], + [12011,2375.24], + [12013,10.34], + [12015,139.87], + [12017,124.51], + [12019,152.42], + [12021,383.09], + [12023,50.89], + [12027,18.99], + [12029,9.19], + [12031,694.95], + [12033,241.87], + [12035,96.95], + [12037,17.58], + [12039,27.65], + [12041,11.04], + [12043,3.54], + [12045,12.32], + [12047,8.16], + [12049,13.63], + [12051,24.89], + [12053,134.76], + [12055,73.6], + [12057,1148.41], + [12059,9.37], + [12061,154.01], + [12063,31.06], + [12065,10.92], + [12067,2.47], + [12069,267.55], + [12071,648.52], + [12073,240.22], + [12075,36.63], + [12077,4.89], + [12079,10.92], + [12081,299.06], + [12083,294.43], + [12085,183.87], + [12086,4036.72], + [12087,139.73], + [12089,62.73], + [12091,184.67], + [12093,28.28], + [12095,1131.55], + [12097,246.46], + [12099,1634.33], + [12101,388.12], + [12103,985.28], + [12105,450.12], + [12107,52.59], + [12109,198.71], + [12111,248.58], + [12113,128.74], + [12115,463.9], + [12117,467.25], + [12119,52.07], + [12121,31.12], + [12123,14.75], + [12125,7.22], + [12127,464.99], + [12129,27.5], + [12131,70.65], + [12133,12.73], + [13001,16.27], + [13003,5.82], + [13005,7.16], + [13007,1.33], + [13009,40.71], + [13011,null], + [13013,63.7], + [13015,96.79], + [13017,13.72], + [13019,12.1], + [13021,148.51], + [13023,7.69], + [13025,null], + [13027,9.4], + [13029,27.49], + [13031,60.25], + [13033,17.97], + [13035,17.31], + [13037,4.28], + [13039,33.32], + [13043,10.85], + [13045,95.82], + [13047,47.89], + [13049,7.63], + [13051,239.9], + [13053,3.41], + [13055,21.04], + [13057,227.59], + [13059,101.81], + [13061,1.86], + [13063,231.86], + [13065,5.13], + [13067,779.45], + [13069,34.52], + [13071,32.9], + [13073,100.81], + [13075,10.23], + [13077,114.08], + [13079,5.6], + [13081,18.47], + [13083,14.11], + [13085,32.29], + [13087,27.25], + [13089,731.84], + [13091,14.47], + [13093,9.3], + [13095,68.92], + [13097,114], + [13099,9.61], + [13101,1.77], + [13103,44.92], + [13105,16.5], + [13107,21.63], + [13109,9.4], + [13111,35.58], + [13113,126.96], + [13115,81.45], + [13117,194.48], + [13119,19.15], + [13121,1061.13], + [13123,25.93], + [13125,2.16], + [13127,null], + [13129,48.42], + [13131,18.43], + [13133,19.86], + [13135,938.2], + [13137,43.15], + [13139,173.07], + [13141,7.15], + [13143,23.49], + [13145,25.14], + [13147,17.25], + [13149,10.38], + [13151,185.08], + [13153,86.57], + [13155,7.42], + [13157,60.73], + [13159,15.17], + [13161,10.09], + [13163,12.66], + [13165,7.16], + [13167,5.16], + [13169,21.69], + [13171,15.44], + [13173,7.31], + [13175,44.85], + [13177,22.08], + [13179,36.67], + [13181,7.07], + [13183,3.21], + [13185,88.67], + [13187,31.87], + [13189,16.09], + [13191,12.17], + [13193,11.01], + [13195,23.52], + [13197,1.97], + [13199,21.42], + [13201,4.67], + [13205,null], + [13207,29.43], + [13209,null], + [13211,21.13], + [13213,26.25], + [13215,154.13], + [13217,95.15], + [13219,43], + [13221,12.96], + [13223,118.11], + [13225,17.57], + [13227,41.25], + [13229,10.64], + [13231,17.62], + [13233,23.91], + [13235,6.85], + [13237,22.59], + [13239,2.13], + [13241,23.38], + [13243,4.81], + [13245,141.47], + [13247,86.47], + [13249,null], + [13251,11.71], + [13253,7.6], + [13255,53.29], + [13257,19.62], + [13259,2.32], + [13261,24.84], + [13263,7.77], + [13265,null], + [13267,12.41], + [13269,7.65], + [13271,11.39], + [13273,5.5], + [13275,37.41], + [13277,36.04], + [13279,29.72], + [13281,14.99], + [13283,4.21], + [13285,57.68], + [13287,8.17], + [13289,7.88], + [13291,26.66], + [13293,18.04], + [13295,52.97], + [13297,80.41], + [13299,23.53], + [13301,3.49], + [13303,14.92], + [13305,21.02], + [13307,1.75], + [13309,3.25], + [13311,31.43], + [13313,79.78], + [13315,6.95], + [13317,7.32], + [13319,6.81], + [13321,15.93], + [15001,189], + [15003,740.69], + [15005,null], + [15007,83.16], + [15009,200.97], + [16001,423.44], + [16003,4.92], + [16005,66.16], + [16007,6.45], + [16009,5.96], + [16011,31.93], + [16013,44.16], + [16015,8.13], + [16017,56.42], + [16019,109.95], + [16021,11.33], + [16023,0.95], + [16025,0.73], + [16027,145.61], + [16029,5.11], + [16031,22.18], + [16033,1.12], + [16035,9.27], + [16037,3.18], + [16039,18.52], + [16041,10.47], + [16043,14.38], + [16045,17.53], + [16047,11.41], + [16049,16.17], + [16051,29.29], + [16053,17.19], + [16055,151.55], + [16057,34.44], + [16059,10.13], + [16061,4.38], + [16063,3.83], + [16065,29.42], + [16067,17.96], + [16069,32.05], + [16071,null], + [16073,9.99], + [16075,22.15], + [16077,4.93], + [16079,12.17], + [16081,14.59], + [16083,72.34], + [16085,20.58], + [16087,9.92], + [17001,55.61], + [17003,3.83], + [17005,13.49], + [17007,34.25], + [17009,3.73], + [17011,29.18], + [17013,null], + [17015,16.69], + [17017,11.66], + [17019,135.25], + [17021,29.49], + [17023,14.52], + [17025,7.32], + [17027,28.76], + [17029,38.72], + [17031,5109.31], + [17033,15.97], + [17035,6.26], + [17037,78.15], + [17039,11.65], + [17041,18.71], + [17043,1015.46], + [17045,12.51], + [17047,5], + [17049,34.22], + [17051,21.94], + [17053,15], + [17055,31.65], + [17057,25.4], + [17059,5.48], + [17061,10.8], + [17063,36.73], + [17065,10.13], + [17067,21.25], + [17069,4.46], + [17071,6.04], + [17073,32.37], + [17075,27.22], + [17077,42.09], + [17079,11.27], + [17081,28.46], + [17083,22.78], + [17085,26.55], + [17087,7.13], + [17089,385.86], + [17091,83.99], + [17093,83.11], + [17095,33.33], + [17097,684.18], + [17099,84.52], + [17101,12.42], + [17103,24.48], + [17105,25.51], + [17107,18.23], + [17109,25.54], + [17111,285.23], + [17113,126.93], + [17115,78.4], + [17117,36.53], + [17119,185.88], + [17121,32.36], + [17123,10.57], + [17125,6.51], + [17127,13.95], + [17129,11.28], + [17131,13.44], + [17133,32.21], + [17135,25.43], + [17137,27.95], + [17139,11.86], + [17141,46.22], + [17143,134.47], + [17145,14.45], + [17147,14.07], + [17149,14.44], + [17151,null], + [17153,2.64], + [17155,4.93], + [17157,22.5], + [17159,14.81], + [17161,93.6], + [17163,170.8], + [17165,19.37], + [17167,171.95], + [17169,5.08], + [17171,4.49], + [17173,16.99], + [17175,null], + [17177,36.62], + [17179,99.1], + [17181,14.45], + [17183,58.45], + [17185,11.04], + [17187,13.5], + [17189,null], + [17191,16.53], + [17193,12.49], + [17195,40.63], + [17197,530.97], + [17199,58.81], + [17201,236.83], + [17203,23.65], + [18001,31.73], + [18003,272.92], + [18005,58.56], + [18007,null], + [18009,8.91], + [18011,56.62], + [18013,19.52], + [18015,14.48], + [18017,27.06], + [18019,86.22], + [18021,20.69], + [18023,22.8], + [18025,12.04], + [18027,23.46], + [18029,39.64], + [18031,21.25], + [18033,27.51], + [18035,78.48], + [18037,35.95], + [18039,160.77], + [18041,14.94], + [18043,null], + [18045,12.76], + [18047,18.48], + [18049,21.71], + [18051,23.6], + [18053,45.81], + [18055,23.25], + [18057,282.09], + [18059,64.49], + [18061,37.01], + [18063,117.71], + [18065,28.46], + [18067,57.48], + [18069,27.95], + [18071,32.74], + [18073,25.57], + [18075,11.63], + [18077,26.51], + [18079,25.46], + [18081,119.57], + [18083,24.11], + [18085,66.74], + [18087,35.96], + [18089,341.65], + [18091,73.14], + [18093,36.15], + [18095,82.75], + [18097,692.66], + [18099,39.75], + [18101,8.14], + [18103,23.11], + [18105,105.71], + [18107,26.44], + [18109,55.69], + [18111,7.61], + [18113,32.11], + [18115,3.57], + [18117,14.61], + [18119,17.97], + [18121,null], + [18123,12.75], + [18125,6.84], + [18127,124.07], + [18129,19.53], + [18131,9.29], + [18133,27.31], + [18135,21.82], + [18137,27.15], + [18139,16.05], + [18141,203.74], + [18143,19.81], + [18145,37.06], + [18147,12.76], + [18149,14.7], + [18151,35.23], + [18153,12.81], + [18155,6.2], + [18157,93.83], + [18159,12.4], + [18161,null], + [18163,125.3], + [18165,11.19], + [18167,70.34], + [18169,25.71], + [18171,6.8], + [18173,50.24], + [18175,20.57], + [18177,46.1], + [18179,23.11], + [18181,25.82], + [18183,27.34], + [19001,7.45], + [19003,4.43], + [19005,16.48], + [19007,14.28], + [19009,4.56], + [19011,24.2], + [19013,97.39], + [19015,21.8], + [19017,24.19], + [19019,18.74], + [19021,17.04], + [19023,null], + [19025,8.46], + [19027,27.55], + [19029,16.82], + [19031,null], + [19033,39.52], + [19035,7.96], + [19037,10.78], + [19039,7.52], + [19041,22.62], + [19043,17.25], + [19045,34.91], + [19047,13.94], + [19049,66.13], + [19051,8.48], + [19053,8.69], + [19055,15.68], + [19057,34.07], + [19059,20.88], + [19061,81.02], + [19063,7.91], + [19065,18.91], + [19067,11.59], + [19069,13.85], + [19071,5.88], + [19073,7.46], + [19075,null], + [19077,11.29], + [19079,15.51], + [19081,12.75], + [19083,18.12], + [19085,13.78], + [19087,15.47], + [19089,11.15], + [19091,11.51], + [19093,9.56], + [19095,12.64], + [19097,23.45], + [19099,28.47], + [19101,23.08], + [19103,93.23], + [19105,21.93], + [19107,10.99], + [19109,18.22], + [19111,26.61], + [19113,169.67], + [19115,9.41], + [19117,7.88], + [19119,13.28], + [19121,13.04], + [19123,19.77], + [19125,32.54], + [19127,25.32], + [19129,11.01], + [19131,12.25], + [19133,8.29], + [19135,5.21], + [19137,9.52], + [19139,35.23], + [19141,13.37], + [19143,5.66], + [19145,13.05], + [19147,9.37], + [19149,21.37], + [19151,7.64], + [19153,379.5], + [19155,70.88], + [19157,17.81], + [19159,5.53], + [19161,11.87], + [19163,141.32], + [19165,13.88], + [19167,36.59], + [19169,73.65], + [19171,null], + [19173,7.22], + [19175,null], + [19177,null], + [19179,28.5], + [19181,40.47], + [19183,25.59], + [19185,4.83], + [19187,28.84], + [19189,11.02], + [19191,28.78], + [19193,73.92], + [19195,4.32], + [19197,15.29], + [20001,9.26], + [20003,10.03], + [20005,11.86], + [20007,8.43], + [20009,30.46], + [20011,15.07], + [20013,8.62], + [20015,54.55], + [20017,3.29], + [20019,4.12], + [20021,14.73], + [20023,3.1], + [20025,2.83], + [20027,6.47], + [20029,9.78], + [20031,8.85], + [20033,null], + [20035,26.32], + [20037,29.89], + [20039,4.08], + [20041,19.67], + [20043,6.4], + [20045,102.51], + [20047,3.42], + [20049,4.43], + [20051,35.51], + [20053,5.53], + [20055,27.28], + [20057,22.35], + [20059,23.31], + [20061,15.24], + [20063,null], + [20065,null], + [20067,6.17], + [20069,7.55], + [20071,null], + [20073,9], + [20075,3.73], + [20077,9.29], + [20079,29.19], + [20081,null], + [20083,3.23], + [20085,11.12], + [20087,15.28], + [20089,null], + [20091,570.46], + [20093,2.19], + [20095,8.59], + [20097,3.27], + [20099,16.58], + [20101,3.91], + [20103,42.02], + [20105,null], + [20107,6.42], + [20109,null], + [20111,23.01], + [20113,31.7], + [20115,9.35], + [20117,10.74], + [20119,2.67], + [20121,32.11], + [20123,6.42], + [20125,29.12], + [20127,null], + [20129,2.4], + [20131,8.28], + [20133,16.63], + [20135,3.78], + [20137,7.05], + [20139,12.78], + [20141,5.63], + [20143,6.09], + [20145,4.63], + [20147,6.41], + [20149,24.63], + [20151,13.33], + [20153,2.96], + [20155,51.99], + [20157,3.48], + [20159,7.24], + [20161,35.95], + [20163,4.27], + [20165,1.99], + [20167,null], + [20169,null], + [20171,null], + [20173,387.36], + [20175,16.4], + [20177,125], + [20179,null], + [20181,7.27], + [20183,4.88], + [20185,4.46], + [20187,1.67], + [20189,5.29], + [20191,22.57], + [20193,9.97], + [20195,null], + [20197,6.45], + [20199,1.45], + [20201,5.32], + [20203,3.6], + [20205,null], + [20207,2.59], + [20209,85.71], + [21001,19.74], + [21003,14.52], + [21005,16.46], + [21007,7.95], + [21009,44.8], + [21011,8.78], + [21013,16.96], + [21015,91.22], + [21017,16.64], + [21019,39.66], + [21021,27.21], + [21023,9.23], + [21025,null], + [21027,14.12], + [21029,51.98], + [21031,10.08], + [21033,10.94], + [21035,27.97], + [21037,62.25], + [21039,null], + [21041,8.74], + [21043,22.73], + [21045,17.14], + [21047,43.21], + [21049,32.52], + [21051,9.61], + [21053,6.9], + [21055,5.95], + [21057,9.46], + [21059,70.07], + [21061,6.52], + [21063,3.02], + [21065,11.97], + [21067,260.74], + [21069,13.3], + [21071,31.92], + [21073,41.2], + [21075,3.67], + [21077,null], + [21079,16.13], + [21081,17.94], + [21083,32.97], + [21085,21.72], + [21087,12.15], + [21089,24.12], + [21091,5.81], + [21093,76.35], + [21095,18.72], + [21097,15.02], + [21099,16], + [21101,33.21], + [21103,10.47], + [21105,1.76], + [21107,32.54], + [21109,null], + [21111,629.9], + [21113,41.84], + [21115,20.74], + [21117,123.69], + [21119,8.33], + [21121,31.21], + [21123,13.35], + [21125,55.25], + [21127,9.16], + [21129,3.82], + [21131,7.94], + [21133,17.56], + [21135,11.92], + [21137,18.09], + [21139,7.08], + [21141,20.72], + [21143,null], + [21145,66.57], + [21147,13.21], + [21149,6.57], + [21151,64], + [21153,8.84], + [21155,15.97], + [21157,27.23], + [21159,5.51], + [21161,14.15], + [21163,19.62], + [21165,4.4], + [21167,22.13], + [21169,11.31], + [21171,8.25], + [21173,25.67], + [21175,11.07], + [21177,20.18], + [21179,39.27], + [21181,null], + [21183,13.06], + [21185,55.58], + [21187,7.9], + [21189,3.17], + [21191,7.88], + [21193,19.8], + [21195,39.75], + [21197,11.51], + [21199,48.45], + [21201,2.07], + [21203,15.35], + [21205,18.23], + [21207,14.38], + [21209,34.75], + [21211,33.14], + [21213,14.91], + [21215,null], + [21217,23.5], + [21219,8.61], + [21221,10.89], + [21223,5.8], + [21225,9.25], + [21227,100.27], + [21229,null], + [21231,15.55], + [21233,9.11], + [21235,29.2], + [21237,null], + [21239,22.22], + [22001,42.89], + [22003,11.67], + [22005,85.4], + [22007,17.5], + [22009,26.86], + [22011,22.83], + [22013,9.51], + [22015,89.54], + [22017,215.4], + [22019,139.26], + [22021,7.53], + [22023,8.15], + [22025,9.04], + [22027,8.81], + [22029,12.72], + [22031,20.65], + [22033,429.45], + [22035,2.84], + [22037,16.13], + [22039,20.72], + [22041,13.83], + [22043,11.97], + [22045,76.77], + [22047,25], + [22049,9.03], + [22051,453.43], + [22053,20.05], + [22055,242.29], + [22057,79.5], + [22059,12.43], + [22061,34.41], + [22063,106.89], + [22065,9.68], + [22067,17.29], + [22069,28.53], + [22071,271.65], + [22073,143.99], + [22075,22.69], + [22077,16.63], + [22079,95.86], + [22081,4.84], + [22083,15.7], + [22085,14.9], + [22087,28.07], + [22089,44.04], + [22091,7.69], + [22093,13.75], + [22095,37.22], + [22097,62.91], + [22099,39.97], + [22101,44.09], + [22103,236.81], + [22105,112.55], + [22107,3.82], + [22109,98.74], + [22111,14.53], + [22113,47.08], + [22115,23.21], + [22117,34.07], + [22119,27.03], + [22121,19.37], + [22123,8.12], + [22125,9.85], + [22127,8.2], + [23001,95.96], + [23003,61.74], + [23005,349.68], + [23007,32.71], + [23009,85.13], + [23011,123.64], + [23013,71.04], + [23015,65.98], + [23017,60.99], + [23019,141.32], + [23021,19.57], + [23023,46.66], + [23025,43.51], + [23027,50.89], + [23029,44.6], + [23031,231.44], + [24001,50.71], + [24003,496], + [24005,761.11], + [24009,75.54], + [24011,29.42], + [24013,159.84], + [24015,75.83], + [24017,110.11], + [24019,29.42], + [24021,214.3], + [24023,34.78], + [24025,202.6], + [24027,308.99], + [24029,26.94], + [24031,1154.71], + [24033,727.59], + [24035,57.01], + [24037,73.83], + [24039,20.99], + [24041,52.47], + [24043,112.4], + [24045,85.39], + [24047,75.14], + [24510,422.72], + [25001,322.05], + [25003,126.47], + [25005,407.92], + [25007,44.68], + [25009,681.02], + [25011,71.93], + [25013,314.56], + [25015,159.7], + [25017,1547.65], + [25019,30.17], + [25021,680.25], + [25023,450.79], + [25025,556.13], + [25027,641.14], + [26001,9.35], + [26003,5.5], + [26005,103.12], + [26007,24.68], + [26009,27.2], + [26011,12.63], + [26013,8.19], + [26015,39.06], + [26017,73.82], + [26019,19.18], + [26021,138.64], + [26023,32.88], + [26025,96.18], + [26027,41.4], + [26029,36.23], + [26031,28.1], + [26033,29.32], + [26035,19.26], + [26037,63.14], + [26039,12.23], + [26041,32.84], + [26043,26.14], + [26045,80.89], + [26047,46.88], + [26049,336.27], + [26051,23.19], + [26053,16.61], + [26055,105.04], + [26057,30.47], + [26059,34.65], + [26061,25.58], + [26063,29.73], + [26065,227], + [26067,37.31], + [26069,26.31], + [26071,9.93], + [26073,45.33], + [26075,119.02], + [26077,210.93], + [26079,14.14], + [26081,523.69], + [26083,1.56], + [26085,8.05], + [26087,75.91], + [26089,34.37], + [26091,77.25], + [26093,178.56], + [26095,4.44], + [26097,12.02], + [26099,666.32], + [26101,22.39], + [26103,52.73], + [26105,30.11], + [26107,31.5], + [26109,19.46], + [26111,64.88], + [26113,16.03], + [26115,104.19], + [26117,44.83], + [26119,8.54], + [26121,112.33], + [26123,42.35], + [26125,1280.4], + [26127,22.55], + [26129,18.97], + [26131,6.23], + [26133,18.41], + [26135,10.97], + [26137,31.07], + [26139,214.45], + [26141,12.29], + [26143,18.65], + [26145,147.45], + [26147,130.54], + [26149,46.56], + [26151,39.2], + [26153,null], + [26155,53.88], + [26157,43.77], + [26159,58.37], + [26161,326.15], + [26163,1377.28], + [26165,26.32], + [27001,22.02], + [27003,292.4], + [27005,36.37], + [27007,46.67], + [27009,32.1], + [27011,null], + [27013,59.98], + [27015,28.01], + [27017,32.05], + [27019,92.82], + [27021,31.45], + [27023,13.49], + [27025,60.42], + [27027,50.98], + [27029,10.57], + [27031,9.14], + [27033,12.21], + [27035,71.71], + [27037,369.82], + [27039,18.15], + [27041,37.68], + [27043,16.16], + [27045,19.36], + [27047,28.27], + [27049,44.17], + [27051,4.76], + [27053,1233.6], + [27055,16.84], + [27057,25.5], + [27059,34.07], + [27061,37.76], + [27063,8.05], + [27065,15.62], + [27067,47.26], + [27069,4.8], + [27071,11.48], + [27073,9.09], + [27075,10.14], + [27077,null], + [27079,27.8], + [27081,null], + [27083,23.02], + [27085,30.96], + [27087,4], + [27089,9.71], + [27091,16.56], + [27093,19.97], + [27095,27.73], + [27097,33.3], + [27099,27.75], + [27101,8.48], + [27103,28.58], + [27105,17.12], + [27107,6.94], + [27109,100.97], + [27111,65.08], + [27113,10.05], + [27115,26.33], + [27117,13.42], + [27119,29.09], + [27121,13.66], + [27123,438.51], + [27125,5.06], + [27127,12.71], + [27129,15.25], + [27131,51.77], + [27133,7.52], + [27135,14.34], + [27137,169.7], + [27139,120.29], + [27141,89.37], + [27143,13.26], + [27145,134.81], + [27147,36.89], + [27149,6.9], + [27151,8.32], + [27153,22.03], + [27155,2.29], + [27157,22.93], + [27159,17.35], + [27161,18.24], + [27163,209.74], + [27165,8.63], + [27167,6.15], + [27169,35.51], + [27171,131.18], + [27173,9.93], + [28001,24.09], + [28003,29.09], + [28005,9.92], + [28007,15.77], + [28009,5.28], + [28011,22.4], + [28013,11.01], + [28015,null], + [28017,14.67], + [28019,4.69], + [28021,3.1], + [28023,14.13], + [28025,14.24], + [28027,20.27], + [28029,18.03], + [28031,14.95], + [28033,125.73], + [28035,56.46], + [28037,5.24], + [28039,20.33], + [28041,7.83], + [28043,19.73], + [28045,42.58], + [28047,146.74], + [28049,217.68], + [28051,10.86], + [28053,7.18], + [28055,0.4], + [28057,20.07], + [28059,92.45], + [28061,11], + [28063,5.52], + [28065,9.62], + [28067,45.78], + [28069,5.67], + [28071,38.05], + [28073,52.19], + [28075,63.23], + [28077,10.81], + [28079,11.95], + [28081,69.12], + [28083,15.99], + [28085,30.17], + [28087,51.45], + [28089,110.36], + [28091,24.77], + [28093,27.34], + [28095,21.69], + [28097,9.08], + [28099,17.6], + [28101,13.55], + [28103,7.6], + [28105,26.24], + [28107,27.84], + [28109,52.24], + [28111,9.55], + [28113,35.33], + [28115,17.06], + [28117,18.62], + [28119,3.53], + [28121,127.82], + [28123,18.06], + [28125,4.65], + [28127,21.66], + [28129,11.31], + [28131,13.76], + [28133,19.45], + [28135,7.28], + [28137,21.07], + [28139,16.74], + [28141,16.34], + [28143,5.09], + [28145,23.3], + [28147,13.01], + [28149,41.57], + [28151,44.69], + [28153,18.06], + [28155,10.65], + [28157,7.89], + [28159,15.49], + [28161,8.72], + [28163,18.86], + [29001,20.66], + [29003,null], + [29005,8.45], + [29007,17.46], + [29009,33.18], + [29011,12.64], + [29013,14.59], + [29015,15.65], + [29017,11.46], + [29019,146.76], + [29021,71.73], + [29023,40.5], + [29025,null], + [29027,28.11], + [29029,56.41], + [29031,73.42], + [29033,8.69], + [29035,7.14], + [29037,92.03], + [29039,null], + [29041,7.03], + [29043,77.12], + [29045,5.05], + [29047,178.62], + [29049,15.87], + [29051,61.19], + [29053,16.7], + [29055,19.27], + [29057,null], + [29059,16], + [29061,5.92], + [29063,null], + [29065,14.43], + [29067,13.15], + [29069,24.39], + [29071,85.12], + [29073,18.44], + [29075,8.3], + [29077,260.31], + [29079,6.69], + [29081,11.21], + [29083,18.49], + [29085,9.95], + [29087,5.37], + [29089,9.46], + [29091,45.15], + [29093,10.17], + [29095,547.93], + [29097,90.52], + [29099,153.98], + [29101,49.28], + [29103,2.5], + [29105,38.56], + [29107,31.74], + [29109,33.56], + [29111,6.39], + [29113,43.3], + [29115,10.01], + [29117,13.64], + [29119,13.88], + [29121,16.87], + [29123,7.92], + [29125,7.17], + [29127,21.5], + [29129,2.89], + [29131,21.15], + [29133,7.15], + [29135,10.04], + [29137,null], + [29139,10.94], + [29141,19.23], + [29143,10.68], + [29145,55.99], + [29147,22.96], + [29149,10.02], + [29151,null], + [29153,null], + [29155,10.43], + [29157,15.84], + [29159,33.99], + [29161,30.5], + [29163,12.52], + [29165,87.68], + [29167,29.61], + [29169,26.98], + [29171,5.03], + [29173,8.28], + [29175,17.26], + [29177,17.66], + [29179,5.47], + [29181,11.17], + [29183,280.83], + [29185,10.39], + [29186,14.11], + [29187,49.78], + [29189,918.1], + [29195,16.68], + [29197,3.71], + [29199,6.5], + [29201,29.17], + [29203,13.06], + [29205,6.84], + [29207,26.04], + [29209,34.88], + [29211,4.72], + [29213,66.94], + [29215,25.15], + [29217,18.46], + [29219,28.15], + [29221,13.74], + [29223,7.97], + [29225,38.1], + [29227,2.04], + [29229,19.16], + [29510,236.32], + [30001,13.24], + [30003,5.63], + [30005,3.22], + [30007,6.6], + [30009,16.41], + [30011,null], + [30013,72.66], + [30015,6.74], + [30017,10.05], + [30019,1.79], + [30021,5.21], + [30023,7.56], + [30025,5.2], + [30027,14.54], + [30029,135.92], + [30031,147.42], + [30033,null], + [30035,9.68], + [30037,null], + [30039,4.25], + [30041,11.97], + [30043,7.57], + [30045,3.15], + [30047,26.3], + [30049,63.73], + [30051,3.34], + [30053,23.94], + [30055,3.15], + [30057,10.74], + [30059,null], + [30061,5.91], + [30063,141.22], + [30065,null], + [30067,22.12], + [30069,null], + [30071,4.28], + [30073,4.96], + [30075,1.9], + [30077,7.97], + [30079,2.9], + [30081,63.07], + [30083,10.6], + [30085,6.73], + [30087,7.47], + [30089,16.21], + [30091,null], + [30093,37.54], + [30095,10.09], + [30097,5.41], + [30099,10.24], + [30101,4.99], + [30103,null], + [30105,null], + [30107,3.16], + [30109,null], + [30111,157.26], + [31001,28.53], + [31003,null], + [31005,null], + [31007,0.39], + [31009,null], + [31011,7.03], + [31013,12.29], + [31015,null], + [31017,null], + [31019,45.71], + [31021,5.49], + [31023,8.39], + [31025,22.25], + [31027,null], + [31029,5.31], + [31031,null], + [31033,5.9], + [31035,8.76], + [31037,6.06], + [31039,8.51], + [31041,14.88], + [31043,16.83], + [31045,10.55], + [31047,19.03], + [31049,null], + [31051,null], + [31053,27.95], + [31055,433.02], + [31057,1.9], + [31059,9.48], + [31061,2.4], + [31063,3.29], + [31065,6.31], + [31067,20.91], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,1.8], + [31079,55.08], + [31081,11.89], + [31083,3.38], + [31085,null], + [31087,3.04], + [31089,12.58], + [31091,1], + [31093,5.51], + [31095,null], + [31097,2.6], + [31099,4.63], + [31101,10.53], + [31103,1.52], + [31105,4.64], + [31107,8.85], + [31109,245.64], + [31111,28.11], + [31113,null], + [31115,null], + [31117,null], + [31119,37.42], + [31121,8.55], + [31123,2.76], + [31125,4.85], + [31127,7.57], + [31129,4.87], + [31131,16.47], + [31133,2.26], + [31135,2.95], + [31137,11.98], + [31139,7.7], + [31141,34.95], + [31143,6.45], + [31145,12.02], + [31147,10.84], + [31149,null], + [31151,6.03], + [31153,119.83], + [31155,18.38], + [31157,36.76], + [31159,12.76], + [31161,5.2], + [31163,null], + [31165,null], + [31167,5.96], + [31169,5.32], + [31171,null], + [31173,3.02], + [31175,4.39], + [31177,21.64], + [31179,8.38], + [31181,5.23], + [31183,0.27], + [31185,15.09], + [32001,16.01], + [32003,1521.45], + [32005,67.22], + [32007,29.47], + [32009,0.75], + [32011,0.78], + [32013,11.15], + [32015,2.61], + [32017,4.09], + [32019,38.57], + [32021,3.42], + [32023,31.79], + [32027,2.23], + [32029,null], + [32031,402], + [32033,8.93], + [32510,84.7], + [33001,71.87], + [33003,73.92], + [33005,81.44], + [33007,34.7], + [33009,111.74], + [33011,377.48], + [33013,154.44], + [33015,347.78], + [33017,102.89], + [33019,41.03], + [34001,210.27], + [34003,1067.54], + [34005,347.02], + [34007,388.07], + [34009,112.9], + [34011,86.37], + [34013,678.8], + [34015,202.52], + [34017,555.2], + [34019,151.2], + [34021,300.67], + [34023,677.78], + [34025,633.91], + [34027,525.46], + [34029,455.46], + [34031,433.66], + [34033,45.85], + [34035,322.25], + [34037,148.4], + [34039,480.19], + [34041,95.52], + [35001,532.35], + [35003,3.86], + [35005,40.32], + [35006,15.13], + [35007,13.63], + [35009,27.45], + [35011,1.79], + [35013,154.97], + [35015,34.98], + [35017,22.44], + [35019,2.86], + [35021,null], + [35023,3.1], + [35025,43.13], + [35027,31], + [35028,14.96], + [35029,13.2], + [35031,55.43], + [35033,4.09], + [35035,38.01], + [35037,4.43], + [35039,26.28], + [35041,12.54], + [35043,82.17], + [35045,78.09], + [35047,17.72], + [35049,204.79], + [35051,8.32], + [35053,10.35], + [35055,46.14], + [35057,11.7], + [35059,4.56], + [35061,41.83], + [36001,247.98], + [36003,33.26], + [36005,1110.28], + [36007,140.23], + [36009,57.73], + [36011,54.53], + [36013,98.44], + [36015,60.41], + [36017,45.54], + [36019,52.87], + [36021,76.44], + [36023,31.9], + [36025,39.82], + [36027,269.74], + [36029,614.02], + [36031,46.22], + [36033,35.13], + [36035,42.72], + [36037,42.38], + [36039,51.92], + [36041,6.84], + [36043,41.93], + [36045,72.13], + [36047,2531.29], + [36049,19.65], + [36051,43.08], + [36053,58.1], + [36055,548.2], + [36057,36.42], + [36059,1679.31], + [36061,3071.28], + [36063,125.52], + [36065,153.02], + [36067,367.08], + [36069,92.75], + [36071,315.62], + [36073,29.65], + [36075,71.92], + [36077,57.15], + [36079,115.42], + [36081,2369], + [36083,106.59], + [36085,378.44], + [36087,328.78], + [36089,69.57], + [36091,188.51], + [36093,119.67], + [36095,23.07], + [36097,14.91], + [36099,23.12], + [36101,67.28], + [36103,1596.4], + [36105,85], + [36107,36.29], + [36109,96.65], + [36111,208.02], + [36113,74.1], + [36115,52.05], + [36117,68.34], + [36119,1207.27], + [36121,29.86], + [36123,17.97], + [37001,111.25], + [37003,30.07], + [37005,12.14], + [37007,14.09], + [37009,33.67], + [37011,22.41], + [37013,41.27], + [37015,16.42], + [37017,17.28], + [37019,122.23], + [37021,295.66], + [37023,67.78], + [37025,143.69], + [37027,70.21], + [37029,7.07], + [37031,91.1], + [37033,16.47], + [37035,144.17], + [37037,58.13], + [37039,28.15], + [37041,15.19], + [37043,13.67], + [37045,78.91], + [37047,45.84], + [37049,87.34], + [37051,197.49], + [37053,29.88], + [37055,69.97], + [37057,129.26], + [37059,40.18], + [37061,35.45], + [37063,221.04], + [37065,32.26], + [37067,291.62], + [37069,47.98], + [37071,156.31], + [37073,7.12], + [37075,12.38], + [37077,36.64], + [37079,9.44], + [37081,452.72], + [37083,30.36], + [37085,74.97], + [37087,57.4], + [37089,105.28], + [37091,13.71], + [37093,18.89], + [37095,9.86], + [37097,158.88], + [37099,38.66], + [37101,132.83], + [37103,8.5], + [37105,39.87], + [37107,38.89], + [37109,75.95], + [37111,35.17], + [37113,46.29], + [37115,22.14], + [37117,18.49], + [37119,891.65], + [37121,18.83], + [37123,22.17], + [37125,79.97], + [37127,68.83], + [37129,223.06], + [37131,11.66], + [37133,99.95], + [37135,128.98], + [37137,null], + [37139,27.19], + [37141,48.92], + [37143,9.36], + [37145,26.27], + [37147,121.82], + [37149,27.05], + [37151,118.43], + [37153,25.34], + [37155,84.2], + [37157,61.16], + [37159,108.67], + [37161,52.64], + [37163,43.53], + [37165,25.09], + [37167,44.9], + [37169,33.2], + [37171,63.98], + [37173,16.48], + [37175,36.81], + [37177,null], + [37179,181.89], + [37181,30.89], + [37183,829.32], + [37185,12.7], + [37187,9.21], + [37189,58.93], + [37191,78.71], + [37193,58.05], + [37195,61.23], + [37197,26.91], + [37199,16.86], + [38001,null], + [38003,12.92], + [38005,3.9], + [38007,2.43], + [38009,7.94], + [38011,4.84], + [38013,1.91], + [38015,78.56], + [38017,139.37], + [38019,4], + [38021,5.18], + [38023,2.59], + [38025,2.28], + [38027,3.68], + [38029,3.63], + [38031,4.22], + [38033,2.3], + [38035,52.28], + [38037,1.28], + [38039,2.82], + [38041,3.8], + [38043,2.48], + [38045,5.4], + [38047,1.68], + [38049,3.64], + [38051,null], + [38053,6.31], + [38055,10.41], + [38057,8.66], + [38059,27.55], + [38061,8.06], + [38063,5.58], + [38065,2], + [38067,6.53], + [38069,4.82], + [38071,11.32], + [38073,3.44], + [38075,2.01], + [38077,15.65], + [38079,7.03], + [38081,3.69], + [38083,1.28], + [38085,1.23], + [38087,0.39], + [38089,24.49], + [38091,null], + [38093,21.15], + [38095,null], + [38097,9.19], + [38099,8.39], + [38101,47.2], + [38103,5.16], + [38105,24.97], + [39001,26.5], + [39003,74.74], + [39005,35.08], + [39007,83.75], + [39009,37.69], + [39011,36.29], + [39013,48.15], + [39015,33.44], + [39017,262.26], + [39019,23.66], + [39021,26.78], + [39023,88.21], + [39025,165.67], + [39027,32.1], + [39029,78.91], + [39031,27.09], + [39033,27.88], + [39035,1069.25], + [39037,45.9], + [39039,30.85], + [39041,161.17], + [39043,61.98], + [39045,124.01], + [39047,17.61], + [39049,974.56], + [39051,37.11], + [39053,23.02], + [39055,136.56], + [39057,120.73], + [39059,31.12], + [39061,703.52], + [39063,66.32], + [39065,18.17], + [39067,12.47], + [39069,20.48], + [39071,34.19], + [39073,21.88], + [39075,50.12], + [39077,41.06], + [39079,22.8], + [39081,41.89], + [39083,59.57], + [39085,202.22], + [39087,39.59], + [39089,136.56], + [39091,37.24], + [39093,202.83], + [39095,308.67], + [39097,30.19], + [39099,200.2], + [39101,38.44], + [39103,154.88], + [39105,15.17], + [39107,32.27], + [39109,85.37], + [39111,11.87], + [39113,378.94], + [39115,10.49], + [39117,27.39], + [39119,72], + [39121,8.1], + [39123,47.23], + [39125,16.12], + [39127,29.03], + [39129,34.15], + [39131,14.87], + [39133,126.71], + [39135,32.17], + [39137,27.16], + [39139,95.96], + [39141,51.62], + [39143,38.71], + [39145,51.82], + [39147,39.9], + [39149,38.44], + [39151,294.79], + [39153,464.59], + [39155,164], + [39157,75.44], + [39159,46.17], + [39161,21.92], + [39163,8.53], + [39165,167.38], + [39167,41.44], + [39169,100.69], + [39171,25.67], + [39173,94.78], + [39175,17.63], + [40001,15.33], + [40003,5.25], + [40005,13.66], + [40007,6.39], + [40009,26.13], + [40011,10.18], + [40013,37.88], + [40015,22.56], + [40017,97.33], + [40019,45.28], + [40021,29.81], + [40023,12.73], + [40025,4.08], + [40027,243.81], + [40029,8.63], + [40031,67.99], + [40033,null], + [40035,14.49], + [40037,57.54], + [40039,26.28], + [40041,29.92], + [40043,8.15], + [40045,null], + [40047,59.25], + [40049,25.36], + [40051,46.27], + [40053,3.24], + [40055,4.69], + [40057,2.59], + [40059,3.13], + [40061,13.06], + [40063,8.89], + [40065,17.75], + [40067,5.34], + [40069,9.08], + [40071,42.71], + [40073,16.2], + [40075,7.47], + [40077,11.1], + [40079,37.98], + [40081,29.9], + [40083,44.38], + [40085,5.39], + [40087,35.54], + [40089,21.55], + [40091,15.98], + [40093,12.37], + [40095,12.73], + [40097,30.12], + [40099,17.19], + [40101,55.41], + [40103,11.82], + [40105,10.67], + [40107,6.34], + [40109,723.15], + [40111,28.25], + [40113,41.57], + [40115,22.74], + [40117,11.64], + [40119,65.44], + [40121,37.49], + [40123,36.86], + [40125,46.27], + [40127,13.01], + [40129,4.13], + [40131,81.69], + [40133,null], + [40135,38.56], + [40137,39.92], + [40139,14.44], + [40141,8.8], + [40143,611.12], + [40145,56.89], + [40147,44.62], + [40149,9.79], + [40151,9.42], + [40153,21.19], + [41001,17.61], + [41003,71.57], + [41005,369.97], + [41007,42.21], + [41009,40.17], + [41011,50.34], + [41013,22.36], + [41015,24.9], + [41017,214.23], + [41019,91.6], + [41021,1.64], + [41023,7.91], + [41025,9.14], + [41027,22.51], + [41029,218.65], + [41031,14.66], + [41033,80.02], + [41035,56.75], + [41037,null], + [41039,326.27], + [41041,52.68], + [41043,86.97], + [41045,19.44], + [41047,236.77], + [41049,4.56], + [41051,752.3], + [41053,56.14], + [41055,1.46], + [41057,27.57], + [41059,49.34], + [41061,22.82], + [41063,8.9], + [41065,18.28], + [41067,436.01], + [41069,1.22], + [41071,78.66], + [42001,86.87], + [42003,956.98], + [42005,49.08], + [42007,116.85], + [42009,44.59], + [42011,303.25], + [42013,87.28], + [42015,51.45], + [42017,651.14], + [42019,154.93], + [42021,96.67], + [42023,5.13], + [42025,51.49], + [42027,110.78], + [42029,498.35], + [42031,34.6], + [42033,53.53], + [42035,24.79], + [42037,49.29], + [42039,68.68], + [42041,192.79], + [42043,195.12], + [42045,477.89], + [42047,25.98], + [42049,196.1], + [42051,87.96], + [42053,3.89], + [42055,107.59], + [42057,12.38], + [42059,22.03], + [42061,35.87], + [42063,69.34], + [42065,40.71], + [42067,18.79], + [42069,155.66], + [42071,469.57], + [42073,65.38], + [42075,101.45], + [42077,271.83], + [42079,225.66], + [42081,88.51], + [42083,30.83], + [42085,96.94], + [42087,33.49], + [42089,129.76], + [42091,846.82], + [42093,13.53], + [42095,210.66], + [42097,60.16], + [42099,34.77], + [42101,881.4], + [42103,49.69], + [42105,17.93], + [42107,87.94], + [42109,37.06], + [42111,61.62], + [42113,null], + [42115,48.27], + [42117,32.88], + [42119,33.43], + [42121,37.55], + [42123,25.63], + [42125,165.89], + [42127,58.09], + [42129,297.46], + [42131,18.65], + [42133,335.91], + [44001,49.37], + [44003,167.59], + [44005,97.94], + [44007,518.06], + [44009,142.53], + [45001,13.85], + [45003,119.31], + [45005,4.1], + [45007,132.12], + [45009,null], + [45011,14.5], + [45013,163.67], + [45015,120.7], + [45017,10.38], + [45019,384.58], + [45021,34.32], + [45023,17.24], + [45025,31.59], + [45027,27.3], + [45029,32.61], + [45031,45.4], + [45033,16.47], + [45035,96.92], + [45037,17.97], + [45039,11.48], + [45041,104.44], + [45043,69.34], + [45045,424], + [45047,52.72], + [45049,17.87], + [45051,281.17], + [45053,13.75], + [45055,48.4], + [45057,51.11], + [45059,38.63], + [45061,6.52], + [45063,228.86], + [45065,8.66], + [45067,21.55], + [45069,8.77], + [45071,26.5], + [45073,60.27], + [45075,63.02], + [45077,87.15], + [45079,273.7], + [45081,11.86], + [45083,215.34], + [45085,70.92], + [45087,16.81], + [45089,19.21], + [45091,167.98], + [46003,2.73], + [46005,18.04], + [46007,2.53], + [46009,8.03], + [46011,22.69], + [46013,31.3], + [46015,5.59], + [46017,0.91], + [46019,9.49], + [46021,1.73], + [46023,null], + [46025,3.45], + [46027,8.11], + [46029,29.52], + [46031,null], + [46033,12.25], + [46035,18.54], + [46037,6], + [46039,5.98], + [46041,4.89], + [46043,3.56], + [46045,null], + [46047,8.24], + [46049,null], + [46051,6.87], + [46053,6.9], + [46055,3.47], + [46057,3.19], + [46059,4.16], + [46061,2.68], + [46063,3.18], + [46065,19.19], + [46067,9.35], + [46069,1.17], + [46071,4.6], + [46073,1.66], + [46075,null], + [46077,5.6], + [46079,10.86], + [46081,26.33], + [46083,43.47], + [46085,5.79], + [46087,5.81], + [46089,3.62], + [46091,5.99], + [46093,22.83], + [46095,null], + [46097,2.91], + [46099,171.91], + [46101,5.24], + [46102,3.49], + [46103,96.45], + [46105,4.79], + [46107,null], + [46109,7.13], + [46111,3.32], + [46115,6.66], + [46117,3.01], + [46119,2.83], + [46121,3.82], + [46123,7.71], + [46125,7.25], + [46127,11.42], + [46129,9.15], + [46135,19.62], + [46137,0.37], + [47001,59.4], + [47003,39.58], + [47005,15.19], + [47007,10.82], + [47009,100.63], + [47011,84.69], + [47013,32.24], + [47015,12.64], + [47017,25.21], + [47019,39.38], + [47021,38.2], + [47023,12.53], + [47025,25.03], + [47027,null], + [47029,27.91], + [47031,53.98], + [47033,14.72], + [47035,55.12], + [47037,646.53], + [47039,9.8], + [47041,17.26], + [47043,51.98], + [47045,31.39], + [47047,37.79], + [47049,22.35], + [47051,29.67], + [47053,34.23], + [47055,26.49], + [47057,16.97], + [47059,59.36], + [47061,12.11], + [47063,50.8], + [47065,317.33], + [47067,3.05], + [47069,14.08], + [47071,23.99], + [47073,34.86], + [47075,12.68], + [47077,24.51], + [47079,25.2], + [47081,18.89], + [47083,8.1], + [47085,16.42], + [47087,11.36], + [47089,40.6], + [47091,13.64], + [47093,404.76], + [47095,1.89], + [47097,14.46], + [47099,32.77], + [47101,11.41], + [47103,25.11], + [47105,42.43], + [47107,38.47], + [47109,18.55], + [47111,null], + [47113,84.12], + [47115,19.74], + [47117,24.41], + [47119,60.43], + [47121,10.16], + [47123,33.13], + [47125,99.06], + [47127,6.85], + [47129,11.27], + [47131,31.33], + [47133,21.74], + [47135,6.69], + [47137,5.24], + [47139,15.79], + [47141,73.32], + [47143,21.96], + [47145,36.83], + [47147,57.45], + [47149,209.39], + [47151,15.82], + [47153,13.22], + [47155,112.87], + [47157,763.5], + [47159,16.41], + [47161,11.93], + [47163,128.59], + [47165,154.02], + [47167,38.17], + [47169,8.99], + [47171,12.33], + [47173,14.89], + [47175,5.28], + [47177,38.86], + [47179,101.53], + [47181,11.69], + [47183,20.8], + [47185,25.16], + [47187,253.39], + [47189,122.04], + [48001,33.58], + [48003,12.14], + [48005,62.4], + [48007,27.45], + [48009,10.12], + [48011,1.8], + [48013,37.33], + [48015,26.83], + [48017,5.91], + [48019,20.93], + [48021,59.12], + [48023,null], + [48025,19.72], + [48027,163.33], + [48029,1328.39], + [48031,16.04], + [48033,null], + [48035,17.46], + [48037,67.35], + [48039,230.71], + [48041,138.87], + [48043,13.54], + [48045,1.98], + [48047,5.25], + [48049,33.13], + [48051,13.2], + [48053,57.25], + [48055,31.11], + [48057,17.1], + [48059,16.06], + [48061,301.37], + [48063,10.93], + [48065,3.57], + [48067,21.68], + [48069,5.34], + [48071,28.99], + [48073,36.09], + [48075,4.42], + [48077,5.35], + [48079,null], + [48081,null], + [48083,11.74], + [48085,785.39], + [48087,null], + [48089,18.31], + [48091,123.49], + [48093,null], + [48095,1.37], + [48097,45.64], + [48099,30.67], + [48101,0.99], + [48103,4.07], + [48105,null], + [48107,4.55], + [48109,2.41], + [48111,6.75], + [48113,2286.04], + [48115,8.87], + [48117,17.4], + [48119,3.84], + [48121,587.67], + [48123,15.09], + [48125,null], + [48127,10.17], + [48129,null], + [48131,10.15], + [48133,17.47], + [48135,117.45], + [48137,4.35], + [48139,141.6], + [48141,631.43], + [48143,39.25], + [48145,11.21], + [48147,22.54], + [48149,32.32], + [48151,3.79], + [48153,6.19], + [48155,1.54], + [48157,504.12], + [48159,9.77], + [48161,15.9], + [48163,12.14], + [48165,15.64], + [48167,228.69], + [48169,null], + [48171,43.79], + [48173,null], + [48175,5.48], + [48177,15.54], + [48179,16.89], + [48181,123.76], + [48183,133.2], + [48185,18.96], + [48187,98.03], + [48189,24.97], + [48191,1.19], + [48193,10.74], + [48195,null], + [48197,2.28], + [48199,39.09], + [48201,3708.41], + [48203,61.9], + [48205,null], + [48207,4.78], + [48209,142.4], + [48211,4.8], + [48213,66.6], + [48215,654.97], + [48217,28.55], + [48219,19.3], + [48221,56.55], + [48223,31.82], + [48225,15.97], + [48227,21.48], + [48229,null], + [48231,63], + [48233,15.24], + [48235,null], + [48237,13.7], + [48239,13.1], + [48241,33.87], + [48243,null], + [48245,176.42], + [48247,null], + [48249,35.23], + [48251,131.99], + [48253,16.07], + [48255,11.5], + [48257,102.31], + [48259,52.24], + [48261,null], + [48263,0.91], + [48265,63.12], + [48267,5.39], + [48269,null], + [48271,2.17], + [48273,20.53], + [48275,3.68], + [48277,54.69], + [48279,10.38], + [48281,16.39], + [48283,4.24], + [48285,17.62], + [48287,18.26], + [48289,16.47], + [48291,52.96], + [48293,16.48], + [48295,3.18], + [48297,11.91], + [48299,28.75], + [48301,null], + [48303,236.7], + [48305,null], + [48307,11.5], + [48309,168.88], + [48311,0.87], + [48313,null], + [48315,8.24], + [48317,null], + [48319,8.27], + [48321,29.43], + [48323,44.17], + [48325,38.77], + [48327,null], + [48329,161.51], + [48331,18.34], + [48333,6.61], + [48335,null], + [48337,22.04], + [48339,402.69], + [48341,14.37], + [48343,11.02], + [48345,2.57], + [48347,48.26], + [48349,33.11], + [48351,8.42], + [48353,9.4], + [48355,293.55], + [48357,10.73], + [48359,1.14], + [48361,66.82], + [48363,29.48], + [48365,16.51], + [48367,123.95], + [48369,7.18], + [48371,12.11], + [48373,45.18], + [48375,105.06], + [48377,null], + [48379,null], + [48381,118.77], + [48383,null], + [48385,null], + [48387,11.16], + [48389,5.29], + [48391,8.02], + [48393,null], + [48395,10], + [48397,81.94], + [48399,12.45], + [48401,32.56], + [48403,5.99], + [48405,4.94], + [48407,18.94], + [48409,52.26], + [48411,null], + [48413,null], + [48415,14.08], + [48417,5.84], + [48419,19.6], + [48421,1.38], + [48423,212.65], + [48425,8.1], + [48427,66.56], + [48429,null], + [48431,1.86], + [48433,2.05], + [48435,null], + [48437,5.82], + [48439,1581.04], + [48441,120.3], + [48443,null], + [48445,7.03], + [48447,null], + [48449,22.49], + [48451,103.56], + [48453,1033.85], + [48455,8.45], + [48457,13.39], + [48459,32.01], + [48461,1.57], + [48463,26.92], + [48465,36.87], + [48467,44.34], + [48469,81.64], + [48471,41.25], + [48473,34.3], + [48475,9.8], + [48477,33.93], + [48479,212.17], + [48481,35.74], + [48483,6.26], + [48485,108.73], + [48487,9.33], + [48489,14.39], + [48491,338.53], + [48493,32.22], + [48495,6.34], + [48497,65.38], + [48499,46.16], + [48501,null], + [48503,23.7], + [48505,11.77], + [48507,10.99], + [49001,7.1], + [49003,38.18], + [49005,103.32], + [49007,15.49], + [49009,null], + [49011,251.19], + [49013,19.3], + [49015,5.52], + [49017,5.66], + [49019,12.61], + [49021,39.13], + [49023,7.48], + [49025,7.1], + [49027,8.7], + [49029,11.91], + [49031,null], + [49033,null], + [49035,975.76], + [49037,7.79], + [49039,25.95], + [49041,16.43], + [49043,64.22], + [49045,27.78], + [49047,27.53], + [49049,454.9], + [49051,31.16], + [49053,142.77], + [49055,null], + [49057,177.24], + [50001,52.17], + [50003,48.12], + [50005,37.26], + [50007,178.95], + [50009,4.79], + [50011,47.54], + [50013,8.65], + [50015,34.79], + [50017,41.89], + [50019,34.31], + [50021,75.6], + [50023,82.64], + [50025,63.93], + [50027,87.68], + [51001,29.44], + [51003,98.76], + [51005,8.46], + [51007,12.32], + [51009,26.73], + [51011,11.11], + [51013,194.22], + [51015,63.18], + [51017,3.99], + [51019,56.47], + [51021,6.03], + [51023,28.15], + [51025,11.37], + [51027,13.83], + [51029,9.21], + [51031,37.01], + [51033,21.42], + [51035,24.32], + [51036,4.4], + [51037,7.46], + [51041,240.79], + [51043,12.76], + [51045,2.8], + [51047,39.41], + [51049,6.54], + [51051,8.91], + [51053,13.16], + [51057,10.78], + [51059,1095.12], + [51061,76.87], + [51063,15.45], + [51065,20.95], + [51067,50.94], + [51069,62.5], + [51071,16.96], + [51073,33.45], + [51075,23.36], + [51077,11.74], + [51079,14.51], + [51081,3.56], + [51083,25.3], + [51085,99.92], + [51087,256.77], + [51089,28.26], + [51091,3.07], + [51093,26.38], + [51095,65.3], + [51097,null], + [51099,17.67], + [51101,10.07], + [51103,18.2], + [51105,10.46], + [51107,286.97], + [51109,26.12], + [51111,8.82], + [51113,15.14], + [51115,8.24], + [51117,24.53], + [51119,16.64], + [51121,68.77], + [51125,19.27], + [51127,13.15], + [51131,12.85], + [51133,15.75], + [51135,9.93], + [51137,29.73], + [51139,16.33], + [51141,14.87], + [51143,35.11], + [51145,27.93], + [51147,13.71], + [51149,18.14], + [51153,322.2], + [51155,20.27], + [51157,12.7], + [51159,7.14], + [51161,72.22], + [51163,19.42], + [51165,57.4], + [51167,19.21], + [51169,13.19], + [51171,37.57], + [51173,19.96], + [51175,7.72], + [51177,89.56], + [51179,90.51], + [51181,2.65], + [51183,5.15], + [51185,29.69], + [51187,33.72], + [51191,49.31], + [51193,18.7], + [51195,27.94], + [51197,22.5], + [51199,48.07], + [51510,151.61], + [51520,13.04], + [51530,4.48], + [51540,49.15], + [51550,163.67], + [51570,14.19], + [51580,4.02], + [51590,29.19], + [51595,5.96], + [51600,59.19], + [51610,14.79], + [51620,5.97], + [51630,27.65], + [51640,5.89], + [51650,75.23], + [51660,36.93], + [51670,10.56], + [51678,5.32], + [51680,47.94], + [51683,35.49], + [51685,11.96], + [51690,13.57], + [51700,107.46], + [51710,144.3], + [51720,4.74], + [51730,16.78], + [51735,9.61], + [51740,54.04], + [51750,8.05], + [51760,151.41], + [51770,71.02], + [51775,21.21], + [51790,25.66], + [51800,52.18], + [51810,347.68], + [51820,18.33], + [51830,14.37], + [51840,29.73], + [53001,10.02], + [53003,14.56], + [53005,111.37], + [53007,68.33], + [53009,68.45], + [53011,329.41], + [53013,2.98], + [53015,61.21], + [53017,25.98], + [53019,5.98], + [53021,42.1], + [53023,0.97], + [53025,49.13], + [53027,50.55], + [53029,79], + [53031,40.07], + [53033,1966.86], + [53035,203.93], + [53037,33.2], + [53039,19.58], + [53041,57.63], + [53043,6.92], + [53045,42.16], + [53047,34.19], + [53049,16.45], + [53051,10.76], + [53053,532.96], + [53055,35.07], + [53057,105.13], + [53059,8.75], + [53061,552.31], + [53063,380.17], + [53065,33.76], + [53067,201.25], + [53069,2.53], + [53071,44.37], + [53073,196.39], + [53075,25.31], + [53077,129.63], + [54001,10.08], + [54003,72.85], + [54005,11.19], + [54007,8.62], + [54009,14.04], + [54011,68.67], + [54013,9], + [54015,5.27], + [54017,5.13], + [54019,26.88], + [54021,5.29], + [54023,6.37], + [54025,32.92], + [54027,19.08], + [54029,17.9], + [54031,9.02], + [54033,56.68], + [54035,19.67], + [54037,37.43], + [54039,141.96], + [54041,11.44], + [54043,9.98], + [54045,19.87], + [54047,7.67], + [54049,39.67], + [54051,17.84], + [54053,12.21], + [54055,36.71], + [54057,18.86], + [54059,11.4], + [54061,59.62], + [54063,13.16], + [54065,15.23], + [54067,20.23], + [54069,41.89], + [54071,6.62], + [54073,4.91], + [54075,8.71], + [54077,18.33], + [54079,34.75], + [54081,55.22], + [54083,19.25], + [54085,10.43], + [54087,15.1], + [54089,7.88], + [54091,null], + [54093,7.16], + [54095,5.45], + [54097,19.06], + [54099,24.61], + [54101,5.76], + [54103,10.17], + [54105,5.15], + [54107,51.73], + [54109,9.2], + [55001,14.69], + [55003,14.88], + [55005,47.94], + [55007,20.37], + [55009,173.12], + [55011,13.46], + [55013,14.51], + [55015,29.15], + [55017,52.74], + [55019,29.63], + [55021,44.47], + [55023,15.35], + [55025,414.64], + [55027,60.96], + [55029,41.09], + [55031,33.26], + [55033,32.2], + [55035,76.32], + [55037,4.68], + [55039,67.06], + [55041,null], + [55043,42.07], + [55045,29.32], + [55047,19.33], + [55049,25.93], + [55051,6.38], + [55053,14.91], + [55055,69.88], + [55057,22.17], + [55059,110.72], + [55061,19.31], + [55063,85], + [55065,14.62], + [55067,18.6], + [55069,25.47], + [55071,48.64], + [55073,106.59], + [55075,37.37], + [55077,11.69], + [55078,1.66], + [55079,581.82], + [55081,28.68], + [55083,31.65], + [55085,41.67], + [55087,126.66], + [55089,85.59], + [55091,null], + [55093,35.19], + [55095,46.06], + [55097,50.22], + [55099,20.77], + [55101,132.83], + [55103,12.75], + [55105,112.12], + [55107,15.62], + [55109,82.87], + [55111,56.37], + [55113,23.63], + [55115,34.02], + [55117,78.58], + [55119,19.71], + [55121,22.77], + [55123,28.97], + [55125,34.91], + [55127,96.75], + [55129,21.06], + [55131,103.18], + [55133,365.89], + [55135,38.97], + [55137,23.78], + [55139,107.1], + [55141,62.03], + [56001,33.18], + [56003,11.03], + [56005,41.98], + [56007,14.52], + [56009,14.24], + [56011,7.76], + [56013,36.69], + [56015,12.77], + [56017,7.95], + [56019,12.24], + [56021,84.11], + [56023,25.98], + [56025,80.52], + [56027,4.63], + [56029,38.96], + [56031,10.65], + [56033,35.24], + [56035,15.59], + [56037,40.52], + [56039,59.74], + [56041,19.83], + [56043,8.45], + [56045,8.1] + ] +} diff --git a/data/regional/united-states/economics/companies/us-firms-owned-asian-2007.json b/data/regional/united-states/economics/companies/us-firms-owned-asian-2007.json new file mode 100644 index 0000000..df455d0 --- /dev/null +++ b/data/regional/united-states/economics/companies/us-firms-owned-asian-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Asian Owned Firms", + "description" : "Percent of firms that are asian owned.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies","firms","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.firms.owned.asian.2007"], + [1001,0.013], + [1003,0.01], + [1005,null], + [1007,null], + [1009,null], + [1011,null], + [1013,0.033], + [1015,0.016], + [1017,null], + [1019,null], + [1021,null], + [1023,null], + [1025,null], + [1027,null], + [1029,null], + [1031,0.013], + [1033,null], + [1035,null], + [1037,null], + [1039,null], + [1041,null], + [1043,0.011], + [1045,null], + [1047,0.044], + [1049,0.006], + [1051,null], + [1053,null], + [1055,null], + [1057,null], + [1059,null], + [1061,null], + [1063,null], + [1065,null], + [1067,null], + [1069,0.014], + [1071,null], + [1073,0.024], + [1075,null], + [1077,0.008], + [1079,null], + [1081,0.02], + [1083,0.008], + [1085,null], + [1087,null], + [1089,0.035], + [1091,null], + [1093,null], + [1095,0.009], + [1097,0.024], + [1099,null], + [1101,0.024], + [1103,0.01], + [1105,null], + [1107,null], + [1109,null], + [1111,null], + [1113,null], + [1115,0.014], + [1117,null], + [1119,null], + [1121,0.015], + [1123,null], + [1125,null], + [1127,0.006], + [1129,null], + [1131,null], + [1133,null], + [2013,null], + [2016,null], + [2020,0.053], + [2050,null], + [2060,null], + [2068,null], + [2070,null], + [2090,0.034], + [2100,null], + [2105,null], + [2110,0.036], + [2122,0.009], + [2130,0.03], + [2150,null], + [2158,null], + [2164,null], + [2170,0.01], + [2180,null], + [2185,null], + [2188,null], + [2195,null], + [2198,null], + [2220,null], + [2230,null], + [2240,null], + [2261,0.02], + [2275,null], + [2282,null], + [2290,null], + [4001,null], + [4003,0.023], + [4005,0.021], + [4007,null], + [4009,null], + [4011,null], + [4012,null], + [4013,0.039], + [4015,0.016], + [4017,null], + [4019,0.034], + [4021,null], + [4023,0.016], + [4025,0.01], + [4027,0.021], + [5001,null], + [5003,null], + [5005,0.006], + [5007,0.023], + [5009,null], + [5011,null], + [5013,null], + [5015,null], + [5017,null], + [5019,null], + [5021,null], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,0.012], + [5033,0.011], + [5035,0.034], + [5037,null], + [5039,null], + [5041,null], + [5043,null], + [5045,0.007], + [5047,null], + [5049,null], + [5051,null], + [5053,null], + [5055,null], + [5057,null], + [5059,null], + [5061,null], + [5063,null], + [5065,null], + [5067,null], + [5069,0.029], + [5071,null], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,0.007], + [5087,null], + [5089,null], + [5091,0.011], + [5093,null], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,null], + [5105,null], + [5107,null], + [5109,null], + [5111,null], + [5113,null], + [5115,null], + [5117,null], + [5119,0.02], + [5121,null], + [5123,null], + [5125,0.015], + [5127,null], + [5129,null], + [5131,0.034], + [5133,null], + [5135,null], + [5137,null], + [5139,0.007], + [5141,null], + [5143,0.012], + [5145,null], + [5147,null], + [5149,null], + [6001,0.244], + [6003,null], + [6005,null], + [6007,0.027], + [6009,null], + [6011,null], + [6013,0.148], + [6015,null], + [6017,0.024], + [6019,0.113], + [6021,null], + [6023,null], + [6025,null], + [6027,null], + [6029,null], + [6031,0.068], + [6033,null], + [6035,null], + [6037,0.175], + [6039,0.051], + [6041,null], + [6043,null], + [6045,null], + [6047,0.091], + [6049,null], + [6051,null], + [6053,0.075], + [6055,0.054], + [6057,null], + [6059,0.192], + [6061,0.066], + [6063,null], + [6065,0.08], + [6067,0.149], + [6069,null], + [6071,0.115], + [6073,0.1], + [6075,0.24], + [6077,0.162], + [6079,0.036], + [6081,0.186], + [6083,0.059], + [6085,0.285], + [6087,0.048], + [6089,null], + [6091,null], + [6093,null], + [6095,0.155], + [6097,null], + [6099,0.086], + [6101,null], + [6103,null], + [6105,null], + [6107,null], + [6109,null], + [6111,0.07], + [6113,0.105], + [6115,null], + [8001,0.038], + [8003,null], + [8005,0.052], + [8007,null], + [8009,null], + [8011,null], + [8013,0.024], + [8014,0.039], + [8015,null], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,null], + [8031,0.037], + [8033,null], + [8035,0.024], + [8037,null], + [8039,null], + [8041,0.03], + [8043,null], + [8045,null], + [8047,null], + [8049,null], + [8051,null], + [8053,null], + [8055,null], + [8057,null], + [8059,0.027], + [8061,null], + [8063,null], + [8065,null], + [8067,null], + [8069,0.018], + [8071,null], + [8073,null], + [8075,null], + [8077,null], + [8079,null], + [8081,null], + [8083,null], + [8085,null], + [8087,null], + [8089,null], + [8091,null], + [8093,null], + [8095,null], + [8097,null], + [8099,null], + [8101,0.017], + [8103,null], + [8105,null], + [8107,null], + [8109,null], + [8111,null], + [8113,null], + [8115,null], + [8117,null], + [8119,null], + [8121,null], + [8123,0.015], + [8125,null], + [9001,0.033], + [9003,0.039], + [9005,0.015], + [9007,0.034], + [9009,0.037], + [9011,0.028], + [9013,0.029], + [9015,0.019], + [10001,0.038], + [10003,0.051], + [10005,0.016], + [11001,0.059], + [12001,0.038], + [12003,null], + [12005,null], + [12007,null], + [12009,0.029], + [12011,0.037], + [12013,null], + [12015,null], + [12017,null], + [12019,0.042], + [12021,0.018], + [12023,null], + [12027,null], + [12029,null], + [12031,0.049], + [12033,0.037], + [12035,null], + [12037,null], + [12039,null], + [12041,null], + [12043,null], + [12045,null], + [12047,null], + [12049,null], + [12051,null], + [12053,null], + [12055,0.037], + [12057,0.045], + [12059,null], + [12061,null], + [12063,null], + [12065,null], + [12067,null], + [12069,null], + [12071,0.023], + [12073,0.031], + [12075,null], + [12077,null], + [12079,null], + [12081,0.026], + [12083,0.024], + [12085,0.022], + [12086,0.022], + [12087,0.016], + [12089,null], + [12091,0.042], + [12093,null], + [12095,0.061], + [12097,0.054], + [12099,0.031], + [12101,0.033], + [12103,0.038], + [12105,0.033], + [12107,null], + [12109,0.027], + [12111,0.024], + [12113,null], + [12115,0.015], + [12117,0.034], + [12119,null], + [12121,null], + [12123,null], + [12125,null], + [12127,0.027], + [12129,null], + [12131,null], + [12133,null], + [13001,null], + [13003,null], + [13005,null], + [13007,null], + [13009,0.016], + [13011,null], + [13013,null], + [13015,0.025], + [13017,null], + [13019,null], + [13021,0.033], + [13023,null], + [13025,null], + [13027,null], + [13029,null], + [13031,null], + [13033,null], + [13035,null], + [13037,null], + [13039,null], + [13043,null], + [13045,null], + [13047,0.031], + [13049,null], + [13051,0.044], + [13053,null], + [13055,null], + [13057,0.019], + [13059,0.032], + [13061,null], + [13063,0.118], + [13065,null], + [13067,0.048], + [13069,null], + [13071,null], + [13073,0.057], + [13075,null], + [13077,0.037], + [13079,null], + [13081,null], + [13083,null], + [13085,null], + [13087,null], + [13089,0.068], + [13091,null], + [13093,null], + [13095,0.044], + [13097,0.025], + [13099,null], + [13101,null], + [13103,null], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,0.044], + [13115,0.033], + [13117,0.043], + [13119,null], + [13121,0.054], + [13123,null], + [13125,null], + [13127,null], + [13129,0.026], + [13131,null], + [13133,null], + [13135,0.142], + [13137,null], + [13139,0.044], + [13141,null], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,0.054], + [13153,0.062], + [13155,null], + [13157,0.015], + [13159,null], + [13161,null], + [13163,null], + [13165,null], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,null], + [13177,null], + [13179,null], + [13181,null], + [13183,null], + [13185,0.037], + [13187,null], + [13189,0.032], + [13191,null], + [13193,null], + [13195,null], + [13197,null], + [13199,null], + [13201,null], + [13205,null], + [13207,null], + [13209,null], + [13211,null], + [13213,null], + [13215,null], + [13217,null], + [13219,0.012], + [13221,null], + [13223,null], + [13225,null], + [13227,null], + [13229,null], + [13231,null], + [13233,null], + [13235,null], + [13237,null], + [13239,null], + [13241,null], + [13243,null], + [13245,0.028], + [13247,null], + [13249,null], + [13251,null], + [13253,null], + [13255,0.025], + [13257,null], + [13259,null], + [13261,null], + [13263,null], + [13265,null], + [13267,0.022], + [13269,null], + [13271,null], + [13273,null], + [13275,null], + [13277,null], + [13279,0.102], + [13281,null], + [13283,null], + [13285,0.017], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,null], + [13297,null], + [13299,null], + [13301,null], + [13303,0.042], + [13305,null], + [13307,null], + [13309,null], + [13311,null], + [13313,0.029], + [13315,null], + [13317,null], + [13319,null], + [13321,null], + [15001,0.319], + [15003,0.566], + [15005,null], + [15007,0.355], + [15009,0.303], + [16001,0.013], + [16003,null], + [16005,0.004], + [16007,null], + [16009,null], + [16011,0.01], + [16013,null], + [16015,null], + [16017,0.007], + [16019,0.009], + [16021,null], + [16023,null], + [16025,null], + [16027,0.006], + [16029,null], + [16031,null], + [16033,null], + [16035,null], + [16037,null], + [16039,null], + [16041,null], + [16043,null], + [16045,null], + [16047,null], + [16049,null], + [16051,null], + [16053,null], + [16055,0.006], + [16057,null], + [16059,null], + [16061,null], + [16063,null], + [16065,null], + [16067,null], + [16069,null], + [16071,null], + [16073,null], + [16075,null], + [16077,null], + [16079,null], + [16081,null], + [16083,0.006], + [16085,null], + [16087,null], + [17001,0.015], + [17003,null], + [17005,null], + [17007,null], + [17009,null], + [17011,null], + [17013,null], + [17015,null], + [17017,null], + [17019,null], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,null], + [17031,0.069], + [17033,null], + [17035,null], + [17037,0.021], + [17039,null], + [17041,null], + [17043,0.084], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,null], + [17055,null], + [17057,null], + [17059,null], + [17061,null], + [17063,0.013], + [17065,null], + [17067,null], + [17069,null], + [17071,null], + [17073,null], + [17075,null], + [17077,0.041], + [17079,null], + [17081,null], + [17083,null], + [17085,null], + [17087,null], + [17089,0.045], + [17091,null], + [17093,null], + [17095,null], + [17097,0.058], + [17099,0.033], + [17101,null], + [17103,null], + [17105,0.025], + [17107,null], + [17109,null], + [17111,0.033], + [17113,0.039], + [17115,0.023], + [17117,null], + [17119,null], + [17121,null], + [17123,null], + [17125,null], + [17127,null], + [17129,null], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,0.028], + [17145,null], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,null], + [17157,null], + [17159,null], + [17161,null], + [17163,0.027], + [17165,null], + [17167,null], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,null], + [17179,null], + [17181,null], + [17183,null], + [17185,null], + [17187,null], + [17189,null], + [17191,null], + [17193,null], + [17195,null], + [17197,0.052], + [17199,null], + [17201,0.027], + [17203,null], + [18001,null], + [18003,0.019], + [18005,0.027], + [18007,null], + [18009,null], + [18011,null], + [18013,null], + [18015,null], + [18017,null], + [18019,null], + [18021,null], + [18023,null], + [18025,null], + [18027,null], + [18029,null], + [18031,null], + [18033,null], + [18035,null], + [18037,null], + [18039,0.019], + [18041,null], + [18043,null], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,0.012], + [18055,null], + [18057,0.031], + [18059,null], + [18061,0.01], + [18063,0.038], + [18065,0.011], + [18067,null], + [18069,null], + [18071,null], + [18073,null], + [18075,null], + [18077,null], + [18079,0.011], + [18081,0.031], + [18083,0.019], + [18085,null], + [18087,null], + [18089,0.025], + [18091,0.01], + [18093,0.011], + [18095,0.008], + [18097,0.024], + [18099,null], + [18101,null], + [18103,null], + [18105,0.023], + [18107,0.011], + [18109,0.015], + [18111,null], + [18113,null], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,0.015], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,null], + [18139,null], + [18141,0.017], + [18143,null], + [18145,null], + [18147,null], + [18149,null], + [18151,0.009], + [18153,null], + [18155,null], + [18157,0.044], + [18159,null], + [18161,null], + [18163,0.015], + [18165,0.036], + [18167,0.032], + [18169,null], + [18171,null], + [18173,null], + [18175,null], + [18177,0.009], + [18179,null], + [18181,null], + [18183,null], + [19001,null], + [19003,null], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,null], + [19015,null], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,null], + [19035,null], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,0.009], + [19047,null], + [19049,0.022], + [19051,null], + [19053,null], + [19055,null], + [19057,null], + [19059,null], + [19061,0.007], + [19063,null], + [19065,null], + [19067,null], + [19069,null], + [19071,null], + [19073,null], + [19075,null], + [19077,null], + [19079,null], + [19081,null], + [19083,null], + [19085,null], + [19087,null], + [19089,null], + [19091,null], + [19093,null], + [19095,null], + [19097,null], + [19099,null], + [19101,null], + [19103,0.024], + [19105,null], + [19107,null], + [19109,null], + [19111,0.023], + [19113,null], + [19115,null], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,null], + [19129,null], + [19131,null], + [19133,null], + [19135,null], + [19137,null], + [19139,null], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,null], + [19151,null], + [19153,0.021], + [19155,null], + [19157,null], + [19159,null], + [19161,null], + [19163,null], + [19165,null], + [19167,null], + [19169,0.021], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,null], + [19181,null], + [19183,null], + [19185,null], + [19187,null], + [19189,null], + [19191,null], + [19193,0.009], + [19195,null], + [19197,null], + [20001,null], + [20003,null], + [20005,null], + [20007,null], + [20009,null], + [20011,null], + [20013,null], + [20015,0.007], + [20017,null], + [20019,null], + [20021,null], + [20023,null], + [20025,null], + [20027,null], + [20029,null], + [20031,null], + [20033,null], + [20035,null], + [20037,null], + [20039,null], + [20041,null], + [20043,null], + [20045,0.018], + [20047,null], + [20049,null], + [20051,null], + [20053,null], + [20055,null], + [20057,null], + [20059,null], + [20061,0.047], + [20063,null], + [20065,null], + [20067,null], + [20069,null], + [20071,null], + [20073,null], + [20075,null], + [20077,null], + [20079,0.015], + [20081,null], + [20083,null], + [20085,null], + [20087,null], + [20089,null], + [20091,0.033], + [20093,null], + [20095,null], + [20097,null], + [20099,null], + [20101,null], + [20103,null], + [20105,null], + [20107,null], + [20109,null], + [20111,null], + [20113,null], + [20115,null], + [20117,null], + [20119,null], + [20121,null], + [20123,null], + [20125,0.033], + [20127,null], + [20129,null], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,null], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,0.006], + [20157,null], + [20159,null], + [20161,0.019], + [20163,null], + [20165,null], + [20167,null], + [20169,null], + [20171,null], + [20173,0.031], + [20175,null], + [20177,0.019], + [20179,null], + [20181,null], + [20183,null], + [20185,null], + [20187,null], + [20189,null], + [20191,null], + [20193,null], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,null], + [20205,null], + [20207,null], + [20209,0.026], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,null], + [21011,null], + [21013,0.037], + [21015,0.02], + [21017,null], + [21019,0.017], + [21021,null], + [21023,null], + [21025,null], + [21027,null], + [21029,null], + [21031,null], + [21033,null], + [21035,null], + [21037,null], + [21039,null], + [21041,null], + [21043,null], + [21045,null], + [21047,0.037], + [21049,0.022], + [21051,null], + [21053,null], + [21055,null], + [21057,null], + [21059,0.026], + [21061,null], + [21063,null], + [21065,null], + [21067,0.026], + [21069,null], + [21071,null], + [21073,0.016], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,null], + [21085,null], + [21087,null], + [21089,null], + [21091,null], + [21093,0.035], + [21095,null], + [21097,null], + [21099,null], + [21101,0.019], + [21103,null], + [21105,null], + [21107,null], + [21109,null], + [21111,0.026], + [21113,null], + [21115,null], + [21117,0.013], + [21119,null], + [21121,0.016], + [21123,null], + [21125,0.007], + [21127,null], + [21129,null], + [21131,null], + [21133,null], + [21135,null], + [21137,null], + [21139,null], + [21141,0.012], + [21143,null], + [21145,0.012], + [21147,null], + [21149,null], + [21151,0.013], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,null], + [21165,null], + [21167,null], + [21169,null], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,null], + [21181,null], + [21183,null], + [21185,0.013], + [21187,null], + [21189,null], + [21191,null], + [21193,null], + [21195,null], + [21197,null], + [21199,0.014], + [21201,null], + [21203,null], + [21205,null], + [21207,null], + [21209,null], + [21211,0.011], + [21213,0.017], + [21215,null], + [21217,null], + [21219,null], + [21221,null], + [21223,null], + [21225,null], + [21227,0.016], + [21229,null], + [21231,null], + [21233,null], + [21235,null], + [21237,null], + [21239,null], + [22001,null], + [22003,null], + [22005,0.014], + [22007,null], + [22009,null], + [22011,0.018], + [22013,null], + [22015,0.045], + [22017,0.019], + [22019,0.018], + [22021,null], + [22023,null], + [22025,null], + [22027,null], + [22029,null], + [22031,null], + [22033,0.029], + [22035,null], + [22037,null], + [22039,null], + [22041,null], + [22043,null], + [22045,0.04], + [22047,null], + [22049,null], + [22051,0.052], + [22053,0.03], + [22055,0.023], + [22057,0.034], + [22059,null], + [22061,0.015], + [22063,0.01], + [22065,null], + [22067,null], + [22069,null], + [22071,0.052], + [22073,0.018], + [22075,null], + [22077,null], + [22079,0.018], + [22081,null], + [22083,null], + [22085,null], + [22087,null], + [22089,null], + [22091,null], + [22093,null], + [22095,0.03], + [22097,0.013], + [22099,0.017], + [22101,null], + [22103,0.018], + [22105,0.009], + [22107,null], + [22109,0.021], + [22111,null], + [22113,0.058], + [22115,null], + [22117,0.012], + [22119,null], + [22121,null], + [22123,null], + [22125,null], + [22127,null], + [23001,0.007], + [23003,null], + [23005,0.011], + [23007,null], + [23009,0.006], + [23011,0.008], + [23013,0.005], + [23015,null], + [23017,null], + [23019,0.01], + [23021,null], + [23023,null], + [23025,null], + [23027,null], + [23029,null], + [23031,null], + [24001,0.006], + [24003,0.046], + [24005,0.061], + [24009,null], + [24011,null], + [24013,0.016], + [24015,0.021], + [24017,0.047], + [24019,null], + [24021,0.033], + [24023,null], + [24025,0.037], + [24027,0.135], + [24029,null], + [24031,0.121], + [24033,0.062], + [24035,null], + [24037,0.033], + [24039,null], + [24041,null], + [24043,0.021], + [24045,null], + [24047,null], + [24510,0.059], + [25001,0.015], + [25003,0.022], + [25005,0.019], + [25007,null], + [25009,0.027], + [25011,null], + [25013,0.03], + [25015,0.034], + [25017,0.062], + [25019,null], + [25021,0.062], + [25023,0.022], + [25025,0.078], + [25027,0.038], + [26001,null], + [26003,null], + [26005,0.003], + [26007,null], + [26009,null], + [26011,null], + [26013,null], + [26015,null], + [26017,0.006], + [26019,null], + [26021,0.017], + [26023,null], + [26025,0.016], + [26027,null], + [26029,null], + [26031,null], + [26033,null], + [26035,null], + [26037,null], + [26039,null], + [26041,null], + [26043,null], + [26045,0.014], + [26047,null], + [26049,0.016], + [26051,null], + [26053,null], + [26055,null], + [26057,null], + [26059,null], + [26061,null], + [26063,null], + [26065,0.044], + [26067,null], + [26069,null], + [26071,null], + [26073,0.02], + [26075,null], + [26077,0.021], + [26079,null], + [26081,0.027], + [26083,null], + [26085,null], + [26087,null], + [26089,null], + [26091,null], + [26093,0.015], + [26095,null], + [26097,null], + [26099,0.033], + [26101,null], + [26103,null], + [26105,null], + [26107,null], + [26109,null], + [26111,0.023], + [26113,null], + [26115,0.013], + [26117,null], + [26119,null], + [26121,0.007], + [26123,null], + [26125,0.047], + [26127,null], + [26129,null], + [26131,null], + [26133,null], + [26135,null], + [26137,null], + [26139,0.01], + [26141,null], + [26143,0.024], + [26145,null], + [26147,0.009], + [26149,0.011], + [26151,null], + [26153,null], + [26155,null], + [26157,0.008], + [26159,null], + [26161,0.049], + [26163,0.037], + [26165,null], + [27001,null], + [27003,0.032], + [27005,null], + [27007,null], + [27009,null], + [27011,null], + [27013,0.011], + [27015,null], + [27017,null], + [27019,0.007], + [27021,null], + [27023,null], + [27025,0.009], + [27027,null], + [27029,null], + [27031,null], + [27033,null], + [27035,null], + [27037,0.027], + [27039,null], + [27041,null], + [27043,null], + [27045,null], + [27047,null], + [27049,null], + [27051,null], + [27053,0.034], + [27055,null], + [27057,null], + [27059,null], + [27061,null], + [27063,null], + [27065,null], + [27067,null], + [27069,null], + [27071,null], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,null], + [27085,null], + [27087,null], + [27089,null], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,null], + [27101,null], + [27103,null], + [27105,null], + [27107,null], + [27109,0.021], + [27111,null], + [27113,null], + [27115,null], + [27117,null], + [27119,null], + [27121,null], + [27123,0.051], + [27125,null], + [27127,null], + [27129,null], + [27131,null], + [27133,null], + [27135,null], + [27137,0.011], + [27139,0.03], + [27141,0.011], + [27143,null], + [27145,0.01], + [27147,null], + [27149,null], + [27151,null], + [27153,null], + [27155,null], + [27157,null], + [27159,null], + [27161,null], + [27163,0.038], + [27165,null], + [27167,null], + [27169,null], + [27171,0.01], + [27173,null], + [28001,null], + [28003,0.009], + [28005,null], + [28007,null], + [28009,null], + [28011,0.021], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,null], + [28029,null], + [28031,null], + [28033,0.018], + [28035,0.019], + [28037,null], + [28039,null], + [28041,null], + [28043,null], + [28045,0.033], + [28047,0.047], + [28049,0.018], + [28051,null], + [28053,null], + [28055,null], + [28057,null], + [28059,0.038], + [28061,null], + [28063,null], + [28065,null], + [28067,null], + [28069,null], + [28071,null], + [28073,0.012], + [28075,null], + [28077,null], + [28079,null], + [28081,0.007], + [28083,0.035], + [28085,null], + [28087,0.016], + [28089,0.019], + [28091,0.013], + [28093,null], + [28095,0.012], + [28097,null], + [28099,null], + [28101,null], + [28103,null], + [28105,0.021], + [28107,null], + [28109,0.008], + [28111,null], + [28113,null], + [28115,null], + [28117,null], + [28119,null], + [28121,0.024], + [28123,null], + [28125,null], + [28127,null], + [28129,null], + [28131,null], + [28133,null], + [28135,null], + [28137,null], + [28139,null], + [28141,null], + [28143,null], + [28145,null], + [28147,null], + [28149,null], + [28151,0.026], + [28153,null], + [28155,null], + [28157,null], + [28159,null], + [28161,null], + [28163,null], + [29001,0.014], + [29003,null], + [29005,null], + [29007,null], + [29009,null], + [29011,null], + [29013,null], + [29015,null], + [29017,null], + [29019,0.024], + [29021,0.016], + [29023,null], + [29025,null], + [29027,null], + [29029,null], + [29031,null], + [29033,null], + [29035,null], + [29037,null], + [29039,null], + [29041,null], + [29043,null], + [29045,null], + [29047,0.023], + [29049,null], + [29051,0.02], + [29053,null], + [29055,null], + [29057,null], + [29059,null], + [29061,null], + [29063,null], + [29065,null], + [29067,null], + [29069,null], + [29071,0.003], + [29073,null], + [29075,null], + [29077,0.011], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,null], + [29093,null], + [29095,0.019], + [29097,null], + [29099,null], + [29101,null], + [29103,null], + [29105,null], + [29107,null], + [29109,0.013], + [29111,null], + [29113,null], + [29115,null], + [29117,null], + [29119,null], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,null], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,null], + [29161,null], + [29163,null], + [29165,0.032], + [29167,null], + [29169,null], + [29171,null], + [29173,null], + [29175,null], + [29177,null], + [29179,null], + [29181,null], + [29183,0.021], + [29185,null], + [29186,null], + [29187,null], + [29189,0.036], + [29195,null], + [29197,null], + [29199,null], + [29201,null], + [29203,null], + [29205,null], + [29207,null], + [29209,null], + [29211,null], + [29213,0.01], + [29215,null], + [29217,0.016], + [29219,null], + [29221,null], + [29223,null], + [29225,null], + [29227,null], + [29229,null], + [29510,0.051], + [30001,null], + [30003,null], + [30005,null], + [30007,null], + [30009,null], + [30011,null], + [30013,null], + [30015,null], + [30017,null], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,null], + [30029,0.003], + [30031,0.005], + [30033,null], + [30035,null], + [30037,null], + [30039,null], + [30041,null], + [30043,null], + [30045,null], + [30047,null], + [30049,null], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,null], + [30063,0.006], + [30065,null], + [30067,null], + [30069,null], + [30071,null], + [30073,null], + [30075,null], + [30077,null], + [30079,null], + [30081,null], + [30083,null], + [30085,null], + [30087,null], + [30089,null], + [30091,null], + [30093,null], + [30095,null], + [30097,null], + [30099,null], + [30101,null], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,0.008], + [31001,null], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,null], + [31019,null], + [31021,null], + [31023,null], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,null], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,null], + [31045,null], + [31047,null], + [31049,null], + [31051,null], + [31053,0.01], + [31055,0.019], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,null], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,null], + [31081,null], + [31083,null], + [31085,null], + [31087,null], + [31089,null], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,null], + [31109,0.024], + [31111,null], + [31113,null], + [31115,null], + [31117,null], + [31119,null], + [31121,null], + [31123,null], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,null], + [31137,null], + [31139,null], + [31141,null], + [31143,null], + [31145,null], + [31147,null], + [31149,null], + [31151,null], + [31153,0.031], + [31155,null], + [31157,null], + [31159,null], + [31161,null], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,null], + [31179,null], + [31181,null], + [31183,null], + [31185,null], + [32001,null], + [32003,0.098], + [32005,0.026], + [32007,0.027], + [32009,null], + [32011,null], + [32013,null], + [32015,null], + [32017,null], + [32019,null], + [32021,null], + [32023,0.038], + [32027,null], + [32029,null], + [32031,0.046], + [32033,null], + [32510,0.031], + [33001,0.008], + [33003,0.009], + [33005,null], + [33007,null], + [33009,null], + [33011,0.027], + [33013,0.012], + [33015,0.015], + [33017,null], + [33019,null], + [34001,0.074], + [34003,0.133], + [34005,0.047], + [34007,0.072], + [34009,null], + [34011,0.037], + [34013,0.064], + [34015,0.031], + [34017,0.126], + [34019,0.034], + [34021,0.1], + [34023,0.195], + [34025,0.059], + [34027,0.072], + [34029,0.025], + [34031,0.062], + [34033,null], + [34035,0.111], + [34037,0.025], + [34039,0.057], + [34041,0.028], + [35001,0.036], + [35003,null], + [35005,0.014], + [35006,0.017], + [35007,null], + [35009,null], + [35011,null], + [35013,null], + [35015,0.008], + [35017,null], + [35019,null], + [35021,null], + [35023,null], + [35025,null], + [35027,null], + [35028,0.027], + [35029,null], + [35031,null], + [35033,null], + [35035,0.019], + [35037,null], + [35039,null], + [35041,null], + [35043,0.023], + [35045,0.009], + [35047,null], + [35049,0.011], + [35051,null], + [35053,null], + [35055,null], + [35057,null], + [35059,null], + [35061,null], + [36001,null], + [36003,null], + [36005,0.075], + [36007,null], + [36009,0.013], + [36011,null], + [36013,null], + [36015,null], + [36017,null], + [36019,null], + [36021,null], + [36023,null], + [36025,null], + [36027,null], + [36029,0.029], + [36031,null], + [36033,null], + [36035,null], + [36037,null], + [36039,null], + [36041,null], + [36043,null], + [36045,0.019], + [36047,0.145], + [36049,null], + [36051,null], + [36053,null], + [36055,0.035], + [36057,null], + [36059,0.08], + [36061,0.119], + [36063,0.015], + [36065,0.025], + [36067,0.033], + [36069,0.022], + [36071,0.036], + [36073,null], + [36075,null], + [36077,null], + [36079,0.019], + [36081,0.29], + [36083,0.028], + [36085,null], + [36087,0.065], + [36089,null], + [36091,null], + [36093,null], + [36095,null], + [36097,null], + [36099,0.014], + [36101,0.008], + [36103,0.043], + [36105,0.033], + [36107,null], + [36109,0.053], + [36111,0.023], + [36113,null], + [36115,null], + [36117,null], + [36119,0.055], + [36121,null], + [36123,null], + [37001,0.023], + [37003,null], + [37005,null], + [37007,null], + [37009,null], + [37011,null], + [37013,null], + [37015,null], + [37017,null], + [37019,0.011], + [37021,0.013], + [37023,null], + [37025,null], + [37027,null], + [37029,null], + [37031,0.014], + [37033,null], + [37035,0.019], + [37037,null], + [37039,null], + [37041,null], + [37043,null], + [37045,0.014], + [37047,null], + [37049,0.02], + [37051,0.058], + [37053,null], + [37055,0.007], + [37057,null], + [37059,null], + [37061,null], + [37063,0.041], + [37065,null], + [37067,0.02], + [37069,null], + [37071,0.022], + [37073,null], + [37075,null], + [37077,null], + [37079,null], + [37081,0.042], + [37083,null], + [37085,null], + [37087,0.009], + [37089,null], + [37091,null], + [37093,0.021], + [37095,null], + [37097,0.011], + [37099,null], + [37101,0.017], + [37103,null], + [37105,0.016], + [37107,null], + [37109,null], + [37111,0.014], + [37113,null], + [37115,null], + [37117,null], + [37119,0.045], + [37121,null], + [37123,null], + [37125,null], + [37127,0.014], + [37129,0.014], + [37131,null], + [37133,0.027], + [37135,0.028], + [37137,null], + [37139,0.053], + [37141,null], + [37143,null], + [37145,null], + [37147,null], + [37149,null], + [37151,0.012], + [37153,null], + [37155,0.02], + [37157,null], + [37159,0.019], + [37161,null], + [37163,null], + [37165,null], + [37167,null], + [37169,null], + [37171,null], + [37173,null], + [37175,null], + [37177,null], + [37179,0.018], + [37181,null], + [37183,0.048], + [37185,null], + [37187,null], + [37189,null], + [37191,0.034], + [37193,null], + [37195,null], + [37197,null], + [37199,null], + [38001,null], + [38003,null], + [38005,null], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,null], + [38017,0.014], + [38019,null], + [38021,null], + [38023,null], + [38025,null], + [38027,null], + [38029,null], + [38031,null], + [38033,null], + [38035,0.007], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,null], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,null], + [38057,null], + [38059,null], + [38061,null], + [38063,null], + [38065,null], + [38067,null], + [38069,null], + [38071,null], + [38073,null], + [38075,null], + [38077,null], + [38079,null], + [38081,null], + [38083,null], + [38085,null], + [38087,null], + [38089,null], + [38091,null], + [38093,null], + [38095,null], + [38097,null], + [38099,null], + [38101,0.007], + [38103,null], + [38105,null], + [39001,null], + [39003,null], + [39005,0.01], + [39007,0.012], + [39009,null], + [39011,0.009], + [39013,null], + [39015,null], + [39017,0.026], + [39019,null], + [39021,null], + [39023,0.013], + [39025,null], + [39027,null], + [39029,null], + [39031,null], + [39033,null], + [39035,0.029], + [39037,null], + [39039,null], + [39041,0.042], + [39043,null], + [39045,null], + [39047,null], + [39049,0.038], + [39051,null], + [39053,null], + [39055,0.003], + [39057,0.024], + [39059,0.009], + [39061,0.023], + [39063,null], + [39065,null], + [39067,null], + [39069,null], + [39071,null], + [39073,null], + [39075,null], + [39077,null], + [39079,null], + [39081,0.015], + [39083,null], + [39085,0.017], + [39087,null], + [39089,null], + [39091,null], + [39093,0.019], + [39095,0.019], + [39097,null], + [39099,0.015], + [39101,null], + [39103,null], + [39105,null], + [39107,null], + [39109,0.019], + [39111,null], + [39113,0.026], + [39115,null], + [39117,null], + [39119,null], + [39121,null], + [39123,null], + [39125,null], + [39127,null], + [39129,null], + [39131,null], + [39133,0.014], + [39135,null], + [39137,null], + [39139,0.022], + [39141,null], + [39143,null], + [39145,null], + [39147,null], + [39149,null], + [39151,0.012], + [39153,0.02], + [39155,0.012], + [39157,null], + [39159,null], + [39161,null], + [39163,null], + [39165,null], + [39167,null], + [39169,0.012], + [39171,0.019], + [39173,0.012], + [39175,null], + [40001,null], + [40003,null], + [40005,null], + [40007,null], + [40009,null], + [40011,null], + [40013,0.01], + [40015,null], + [40017,0.022], + [40019,0.009], + [40021,null], + [40023,null], + [40025,null], + [40027,0.026], + [40029,null], + [40031,0.044], + [40033,null], + [40035,null], + [40037,null], + [40039,0.022], + [40041,null], + [40043,null], + [40045,null], + [40047,0.019], + [40049,null], + [40051,null], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,null], + [40063,null], + [40065,null], + [40067,null], + [40069,null], + [40071,null], + [40073,null], + [40075,null], + [40077,null], + [40079,null], + [40081,null], + [40083,null], + [40085,null], + [40087,null], + [40089,null], + [40091,null], + [40093,null], + [40095,null], + [40097,null], + [40099,null], + [40101,0.017], + [40103,null], + [40105,null], + [40107,null], + [40109,0.033], + [40111,null], + [40113,null], + [40115,null], + [40117,null], + [40119,0.013], + [40121,null], + [40123,null], + [40125,null], + [40127,null], + [40129,null], + [40131,null], + [40133,null], + [40135,null], + [40137,null], + [40139,null], + [40141,null], + [40143,0.027], + [40145,0.009], + [40147,0.009], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,0.034], + [41005,0.036], + [41007,0.02], + [41009,null], + [41011,null], + [41013,null], + [41015,null], + [41017,0.016], + [41019,0.018], + [41021,null], + [41023,null], + [41025,null], + [41027,null], + [41029,0.011], + [41031,null], + [41033,null], + [41035,0.011], + [41037,null], + [41039,0.02], + [41041,0.017], + [41043,0.017], + [41045,0.02], + [41047,0.03], + [41049,null], + [41051,0.062], + [41053,null], + [41055,null], + [41057,null], + [41059,null], + [41061,null], + [41063,null], + [41065,null], + [41067,0.073], + [41069,null], + [41071,null], + [42001,null], + [42003,0.031], + [42005,null], + [42007,null], + [42009,null], + [42011,0.017], + [42013,null], + [42015,null], + [42017,0.035], + [42019,null], + [42021,0.015], + [42023,null], + [42025,null], + [42027,0.02], + [42029,0.028], + [42031,null], + [42033,null], + [42035,null], + [42037,null], + [42039,null], + [42041,0.024], + [42043,0.039], + [42045,0.055], + [42047,null], + [42049,null], + [42051,null], + [42053,null], + [42055,null], + [42057,null], + [42059,null], + [42061,null], + [42063,null], + [42065,null], + [42067,null], + [42069,null], + [42071,0.021], + [42073,null], + [42075,0.016], + [42077,0.035], + [42079,0.019], + [42081,0.016], + [42083,null], + [42085,null], + [42087,null], + [42089,0.036], + [42091,0.046], + [42093,null], + [42095,null], + [42097,0.013], + [42099,null], + [42101,0.096], + [42103,null], + [42105,null], + [42107,0.018], + [42109,0.01], + [42111,null], + [42113,null], + [42115,null], + [42117,null], + [42119,null], + [42121,null], + [42123,null], + [42125,0.005], + [42127,null], + [42129,0.013], + [42131,null], + [42133,0.019], + [44001,0.011], + [44003,0.02], + [44005,0.014], + [44007,0.026], + [44009,0.011], + [45001,null], + [45003,0.018], + [45005,null], + [45007,0.011], + [45009,null], + [45011,null], + [45013,0.017], + [45015,0.024], + [45017,null], + [45019,0.013], + [45021,0.01], + [45023,null], + [45025,null], + [45027,0.019], + [45029,null], + [45031,null], + [45033,null], + [45035,null], + [45037,null], + [45039,null], + [45041,0.022], + [45043,0.004], + [45045,0.022], + [45047,0.013], + [45049,null], + [45051,0.019], + [45053,null], + [45055,0.016], + [45057,0.016], + [45059,0.017], + [45061,null], + [45063,0.019], + [45065,null], + [45067,0.019], + [45069,null], + [45071,null], + [45073,null], + [45075,0.013], + [45077,0.018], + [45079,0.027], + [45081,null], + [45083,0.02], + [45085,0.032], + [45087,null], + [45089,null], + [45091,0.013], + [46003,null], + [46005,null], + [46007,null], + [46009,null], + [46011,null], + [46013,null], + [46015,null], + [46017,null], + [46019,null], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,null], + [46031,null], + [46033,null], + [46035,null], + [46037,null], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,null], + [46053,null], + [46055,null], + [46057,null], + [46059,null], + [46061,null], + [46063,null], + [46065,null], + [46067,null], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,null], + [46083,null], + [46085,null], + [46087,null], + [46089,null], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,0.009], + [46101,null], + [46102,null], + [46103,0.003], + [46105,null], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,null], + [46123,null], + [46125,null], + [46127,null], + [46129,null], + [46135,null], + [46137,null], + [47001,0.012], + [47003,null], + [47005,null], + [47007,null], + [47009,0.009], + [47011,0.013], + [47013,null], + [47015,null], + [47017,null], + [47019,null], + [47021,null], + [47023,null], + [47025,null], + [47027,null], + [47029,null], + [47031,0.019], + [47033,null], + [47035,null], + [47037,0.034], + [47039,null], + [47041,null], + [47043,null], + [47045,null], + [47047,null], + [47049,null], + [47051,null], + [47053,null], + [47055,null], + [47057,null], + [47059,0.007], + [47061,null], + [47063,null], + [47065,0.028], + [47067,null], + [47069,null], + [47071,null], + [47073,null], + [47075,null], + [47077,null], + [47079,null], + [47081,null], + [47083,null], + [47085,null], + [47087,null], + [47089,null], + [47091,null], + [47093,0.019], + [47095,null], + [47097,null], + [47099,null], + [47101,null], + [47103,null], + [47105,null], + [47107,null], + [47109,null], + [47111,null], + [47113,0.019], + [47115,null], + [47117,null], + [47119,0.019], + [47121,null], + [47123,null], + [47125,0.037], + [47127,null], + [47129,null], + [47131,null], + [47133,null], + [47135,null], + [47137,null], + [47139,null], + [47141,null], + [47143,null], + [47145,null], + [47147,null], + [47149,0.026], + [47151,null], + [47153,null], + [47155,0.026], + [47157,0.034], + [47159,null], + [47161,null], + [47163,null], + [47165,null], + [47167,null], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,null], + [47179,null], + [47181,null], + [47183,0.02], + [47185,null], + [47187,0.014], + [47189,null], + [48001,0.026], + [48003,null], + [48005,null], + [48007,null], + [48009,null], + [48011,null], + [48013,null], + [48015,null], + [48017,null], + [48019,null], + [48021,null], + [48023,null], + [48025,null], + [48027,null], + [48029,0.035], + [48031,null], + [48033,null], + [48035,null], + [48037,null], + [48039,0.057], + [48041,null], + [48043,null], + [48045,null], + [48047,null], + [48049,null], + [48051,null], + [48053,null], + [48055,null], + [48057,null], + [48059,null], + [48061,0.017], + [48063,null], + [48065,null], + [48067,null], + [48069,null], + [48071,null], + [48073,null], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,null], + [48085,0.1], + [48087,null], + [48089,null], + [48091,null], + [48093,null], + [48095,null], + [48097,null], + [48099,0.035], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,0.069], + [48115,null], + [48117,null], + [48119,null], + [48121,0.062], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,null], + [48133,null], + [48135,0.016], + [48137,null], + [48139,null], + [48141,0.02], + [48143,null], + [48145,null], + [48147,null], + [48149,null], + [48151,null], + [48153,null], + [48155,null], + [48157,0.165], + [48159,null], + [48161,null], + [48163,null], + [48165,null], + [48167,0.059], + [48169,null], + [48171,null], + [48173,null], + [48175,null], + [48177,null], + [48179,null], + [48181,0.014], + [48183,null], + [48185,null], + [48187,null], + [48189,null], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,null], + [48201,0.099], + [48203,0.012], + [48205,null], + [48207,null], + [48209,0.009], + [48211,null], + [48213,null], + [48215,0.018], + [48217,null], + [48219,null], + [48221,null], + [48223,null], + [48225,null], + [48227,null], + [48229,null], + [48231,null], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,null], + [48243,null], + [48245,0.067], + [48247,null], + [48249,null], + [48251,null], + [48253,null], + [48255,null], + [48257,null], + [48259,null], + [48261,null], + [48263,null], + [48265,null], + [48267,null], + [48269,null], + [48271,null], + [48273,null], + [48275,null], + [48277,null], + [48279,null], + [48281,null], + [48283,null], + [48285,null], + [48287,null], + [48289,null], + [48291,null], + [48293,null], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,0.02], + [48305,null], + [48307,null], + [48309,0.016], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,null], + [48323,null], + [48325,null], + [48327,null], + [48329,0.031], + [48331,null], + [48333,null], + [48335,null], + [48337,null], + [48339,0.021], + [48341,null], + [48343,null], + [48345,null], + [48347,null], + [48349,0.008], + [48351,null], + [48353,null], + [48355,0.019], + [48357,null], + [48359,null], + [48361,null], + [48363,null], + [48365,null], + [48367,null], + [48369,null], + [48371,null], + [48373,null], + [48375,null], + [48377,null], + [48379,null], + [48381,null], + [48383,null], + [48385,null], + [48387,null], + [48389,null], + [48391,null], + [48393,null], + [48395,null], + [48397,null], + [48399,null], + [48401,null], + [48403,null], + [48405,null], + [48407,null], + [48409,null], + [48411,null], + [48413,null], + [48415,null], + [48417,null], + [48419,null], + [48421,null], + [48423,null], + [48425,null], + [48427,0.019], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,null], + [48439,0.061], + [48441,null], + [48443,null], + [48445,null], + [48447,null], + [48449,null], + [48451,null], + [48453,0.05], + [48455,null], + [48457,null], + [48459,null], + [48461,null], + [48463,null], + [48465,null], + [48467,null], + [48469,0.035], + [48471,null], + [48473,null], + [48475,null], + [48477,null], + [48479,0.021], + [48481,null], + [48483,null], + [48485,0.031], + [48487,0.032], + [48489,null], + [48491,0.059], + [48493,null], + [48495,null], + [48497,0.024], + [48499,null], + [48501,null], + [48503,null], + [48505,null], + [48507,null], + [49001,null], + [49003,0.014], + [49005,0.01], + [49007,null], + [49009,null], + [49011,0.014], + [49013,null], + [49015,null], + [49017,null], + [49019,0.029], + [49021,null], + [49023,null], + [49025,null], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.029], + [49037,null], + [49039,null], + [49041,null], + [49043,null], + [49045,null], + [49047,null], + [49049,0.011], + [49051,null], + [49053,0.008], + [49055,null], + [49057,null], + [50001,null], + [50003,null], + [50005,null], + [50007,null], + [50009,null], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,null], + [50023,0.007], + [50025,0.012], + [50027,null], + [51001,null], + [51003,0.031], + [51005,null], + [51007,null], + [51009,null], + [51011,null], + [51013,0.095], + [51015,null], + [51017,null], + [51019,null], + [51021,null], + [51023,null], + [51025,null], + [51027,null], + [51029,null], + [51031,null], + [51033,null], + [51035,null], + [51036,null], + [51037,null], + [51041,0.048], + [51043,null], + [51045,null], + [51047,null], + [51049,null], + [51051,null], + [51053,null], + [51057,null], + [51059,0.173], + [51061,null], + [51063,null], + [51065,null], + [51067,null], + [51069,0.035], + [51071,null], + [51073,null], + [51075,null], + [51077,null], + [51079,null], + [51081,null], + [51083,null], + [51085,null], + [51087,0.054], + [51089,null], + [51091,null], + [51093,null], + [51095,null], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,null], + [51107,0.13], + [51109,null], + [51111,null], + [51113,null], + [51115,null], + [51117,null], + [51119,null], + [51121,null], + [51125,null], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,null], + [51143,null], + [51145,null], + [51147,null], + [51149,null], + [51153,0.093], + [51155,null], + [51157,null], + [51159,null], + [51161,0.033], + [51163,null], + [51165,null], + [51167,null], + [51169,null], + [51171,null], + [51173,null], + [51175,null], + [51177,0.045], + [51179,0.055], + [51181,null], + [51183,null], + [51185,null], + [51187,null], + [51191,null], + [51193,null], + [51195,null], + [51197,null], + [51199,0.067], + [51510,0.076], + [51520,null], + [51530,null], + [51540,0.033], + [51550,0.037], + [51570,0.043], + [51580,null], + [51590,null], + [51595,null], + [51600,0.221], + [51610,null], + [51620,null], + [51630,null], + [51640,null], + [51650,0.064], + [51660,null], + [51670,null], + [51678,null], + [51680,0.02], + [51683,0.079], + [51685,0.108], + [51690,0.018], + [51700,0.057], + [51710,0.035], + [51720,null], + [51730,null], + [51735,null], + [51740,0.048], + [51750,null], + [51760,0.035], + [51770,0.047], + [51775,0.029], + [51790,null], + [51800,null], + [51810,0.065], + [51820,0.022], + [51830,null], + [51840,null], + [53001,0.026], + [53003,null], + [53005,null], + [53007,0.011], + [53009,null], + [53011,0.043], + [53013,null], + [53015,0.03], + [53017,null], + [53019,null], + [53021,null], + [53023,null], + [53025,null], + [53027,null], + [53029,0.037], + [53031,null], + [53033,0.109], + [53035,0.051], + [53037,null], + [53039,null], + [53041,null], + [53043,null], + [53045,null], + [53047,null], + [53049,null], + [53051,null], + [53053,0.079], + [53055,null], + [53057,null], + [53059,null], + [53061,0.076], + [53063,0.019], + [53065,null], + [53067,0.057], + [53069,null], + [53071,null], + [53073,0.029], + [53075,null], + [53077,0.019], + [54001,null], + [54003,0.013], + [54005,null], + [54007,null], + [54009,null], + [54011,0.006], + [54013,null], + [54015,null], + [54017,null], + [54019,null], + [54021,null], + [54023,null], + [54025,null], + [54027,null], + [54029,null], + [54031,null], + [54033,0.008], + [54035,null], + [54037,0.022], + [54039,0.016], + [54041,null], + [54043,null], + [54045,null], + [54047,null], + [54049,0.01], + [54051,null], + [54053,null], + [54055,null], + [54057,null], + [54059,null], + [54061,0.036], + [54063,null], + [54065,null], + [54067,null], + [54069,null], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,0.014], + [54081,0.029], + [54083,null], + [54085,null], + [54087,null], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,null], + [54099,null], + [54101,null], + [54103,null], + [54105,null], + [54107,null], + [54109,null], + [55001,null], + [55003,null], + [55005,null], + [55007,null], + [55009,0.008], + [55011,null], + [55013,null], + [55015,0.019], + [55017,null], + [55019,null], + [55021,null], + [55023,null], + [55025,0.019], + [55027,0.012], + [55029,null], + [55031,null], + [55033,null], + [55035,0.014], + [55037,null], + [55039,null], + [55041,null], + [55043,null], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,null], + [55057,null], + [55059,0.015], + [55061,null], + [55063,0.021], + [55065,null], + [55067,null], + [55069,null], + [55071,null], + [55073,0.021], + [55075,null], + [55077,null], + [55078,null], + [55079,0.032], + [55081,0.009], + [55083,null], + [55085,null], + [55087,0.021], + [55089,0.015], + [55091,null], + [55093,0.017], + [55095,0.01], + [55097,null], + [55099,null], + [55101,0.022], + [55103,null], + [55105,0.016], + [55107,null], + [55109,0.006], + [55111,null], + [55113,null], + [55115,null], + [55117,0.018], + [55119,null], + [55121,null], + [55123,null], + [55125,null], + [55127,0.012], + [55129,null], + [55131,null], + [55133,0.022], + [55135,null], + [55137,null], + [55139,null], + [55141,null], + [56001,null], + [56003,null], + [56005,0.007], + [56007,null], + [56009,null], + [56011,null], + [56013,null], + [56015,null], + [56017,null], + [56019,null], + [56021,0.011], + [56023,0.015], + [56025,0.006], + [56027,null], + [56029,null], + [56031,null], + [56033,0.008], + [56035,null], + [56037,0.007], + [56039,0.005], + [56041,null], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/economics/companies/us-firms-owned-black-2007.json b/data/regional/united-states/economics/companies/us-firms-owned-black-2007.json new file mode 100644 index 0000000..8ef4ec6 --- /dev/null +++ b/data/regional/united-states/economics/companies/us-firms-owned-black-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Black Owned Firms", + "description" : "Percent of firms that are black owned.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies","firms","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.firms.owned.black.2007"], + [1001,0.152], + [1003,0.027], + [1005,null], + [1007,0.149], + [1009,null], + [1011,null], + [1013,null], + [1015,0.072], + [1017,null], + [1019,null], + [1021,null], + [1023,0.262], + [1025,null], + [1027,null], + [1029,null], + [1031,0.06], + [1033,null], + [1035,null], + [1037,null], + [1039,null], + [1041,0.258], + [1043,0.011], + [1045,null], + [1047,0.491], + [1049,null], + [1051,0.091], + [1053,0.09], + [1055,0.061], + [1057,0.051], + [1059,null], + [1061,null], + [1063,0.603], + [1065,null], + [1067,null], + [1069,0.121], + [1071,null], + [1073,0.234], + [1075,null], + [1077,0.055], + [1079,null], + [1081,0.162], + [1083,0.048], + [1085,0.573], + [1087,0.667], + [1089,0.123], + [1091,null], + [1093,null], + [1095,null], + [1097,0.188], + [1099,0.236], + [1101,0.356], + [1103,0.059], + [1105,0.557], + [1107,null], + [1109,null], + [1111,0.071], + [1113,0.339], + [1115,0.024], + [1117,0.057], + [1119,0.575], + [1121,null], + [1123,0.13], + [1125,0.133], + [1127,null], + [1129,null], + [1131,0.662], + [1133,null], + [2013,null], + [2016,null], + [2020,0.025], + [2050,null], + [2060,null], + [2068,null], + [2070,null], + [2090,0.02], + [2100,null], + [2105,null], + [2110,0.01], + [2122,null], + [2130,null], + [2150,null], + [2158,null], + [2164,null], + [2170,null], + [2180,null], + [2185,null], + [2188,null], + [2195,null], + [2198,null], + [2220,null], + [2230,null], + [2240,null], + [2261,null], + [2275,null], + [2282,null], + [2290,null], + [4001,null], + [4003,0.025], + [4005,null], + [4007,null], + [4009,null], + [4011,null], + [4012,null], + [4013,0.024], + [4015,0.011], + [4017,null], + [4019,0.013], + [4021,0.031], + [4023,0.006], + [4025,null], + [4027,null], + [5001,null], + [5003,null], + [5005,null], + [5007,0.009], + [5009,null], + [5011,null], + [5013,null], + [5015,null], + [5017,0.122], + [5019,null], + [5021,null], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,null], + [5033,null], + [5035,0.226], + [5037,null], + [5039,0.096], + [5041,null], + [5043,0.064], + [5045,0.045], + [5047,null], + [5049,null], + [5051,0.02], + [5053,null], + [5055,null], + [5057,null], + [5059,null], + [5061,null], + [5063,null], + [5065,null], + [5067,null], + [5069,0.281], + [5071,null], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,0.041], + [5087,null], + [5089,null], + [5091,0.113], + [5093,0.134], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,0.136], + [5105,null], + [5107,0.267], + [5109,null], + [5111,null], + [5113,null], + [5115,null], + [5117,null], + [5119,0.141], + [5121,null], + [5123,0.333], + [5125,0.017], + [5127,null], + [5129,null], + [5131,0.025], + [5133,null], + [5135,null], + [5137,null], + [5139,0.105], + [5141,null], + [5143,null], + [5145,0.01], + [5147,null], + [5149,null], + [6001,0.068], + [6003,null], + [6005,null], + [6007,0.012], + [6009,null], + [6011,null], + [6013,0.041], + [6015,null], + [6017,null], + [6019,0.039], + [6021,null], + [6023,null], + [6025,0.026], + [6027,null], + [6029,0.044], + [6031,null], + [6033,0.009], + [6035,null], + [6037,0.057], + [6039,null], + [6041,0.009], + [6043,null], + [6045,0.003], + [6047,0.026], + [6049,null], + [6051,null], + [6053,0.024], + [6055,null], + [6057,null], + [6059,0.013], + [6061,0.012], + [6063,null], + [6065,0.052], + [6067,0.064], + [6069,null], + [6071,0.079], + [6073,0.029], + [6075,0.027], + [6077,0.057], + [6079,null], + [6081,0.016], + [6083,null], + [6085,null], + [6087,null], + [6089,null], + [6091,null], + [6093,null], + [6095,0.089], + [6097,null], + [6099,0.026], + [6101,null], + [6103,null], + [6105,null], + [6107,0.014], + [6109,null], + [6111,0.013], + [6113,null], + [6115,null], + [8001,0.016], + [8003,null], + [8005,0.041], + [8007,null], + [8009,null], + [8011,null], + [8013,0.005], + [8014,0.013], + [8015,null], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,null], + [8031,0.043], + [8033,null], + [8035,null], + [8037,null], + [8039,null], + [8041,0.025], + [8043,null], + [8045,null], + [8047,null], + [8049,null], + [8051,null], + [8053,null], + [8055,null], + [8057,null], + [8059,0.006], + [8061,null], + [8063,null], + [8065,null], + [8067,null], + [8069,0.004], + [8071,null], + [8073,null], + [8075,null], + [8077,null], + [8079,null], + [8081,null], + [8083,null], + [8085,null], + [8087,null], + [8089,null], + [8091,null], + [8093,null], + [8095,null], + [8097,null], + [8099,null], + [8101,0.006], + [8103,null], + [8105,null], + [8107,null], + [8109,null], + [8111,null], + [8113,null], + [8115,null], + [8117,null], + [8119,null], + [8121,null], + [8123,0.006], + [8125,null], + [9001,0.047], + [9003,0.063], + [9005,0.016], + [9007,0.013], + [9009,0.05], + [9011,0.021], + [9013,null], + [9015,0.009], + [10001,0.104], + [10003,0.101], + [10005,0.045], + [11001,0.282], + [12001,0.078], + [12003,null], + [12005,null], + [12007,null], + [12009,0.061], + [12011,0.164], + [12013,null], + [12015,null], + [12017,0.025], + [12019,0.063], + [12021,0.033], + [12023,0.057], + [12027,null], + [12029,null], + [12031,0.141], + [12033,0.095], + [12035,null], + [12037,null], + [12039,0.351], + [12041,null], + [12043,null], + [12045,null], + [12047,null], + [12049,null], + [12051,null], + [12053,0.036], + [12055,null], + [12057,0.086], + [12059,null], + [12061,0.049], + [12063,null], + [12065,null], + [12067,null], + [12069,0.056], + [12071,0.042], + [12073,0.15], + [12075,null], + [12077,null], + [12079,null], + [12081,0.038], + [12083,0.075], + [12085,0.017], + [12086,0.114], + [12087,0.034], + [12089,0.027], + [12091,null], + [12093,null], + [12095,0.109], + [12097,null], + [12099,0.089], + [12101,null], + [12103,0.046], + [12105,0.071], + [12107,0.085], + [12109,0.023], + [12111,0.128], + [12113,0.022], + [12115,0.021], + [12117,0.054], + [12119,null], + [12121,0.052], + [12123,null], + [12125,null], + [12127,0.041], + [12129,null], + [12131,null], + [12133,null], + [13001,null], + [13003,null], + [13005,null], + [13007,null], + [13009,null], + [13011,null], + [13013,null], + [13015,0.07], + [13017,0.142], + [13019,null], + [13021,0.325], + [13023,null], + [13025,null], + [13027,null], + [13029,null], + [13031,null], + [13033,0.283], + [13035,null], + [13037,null], + [13039,null], + [13043,null], + [13045,0.083], + [13047,null], + [13049,null], + [13051,0.235], + [13053,0.364], + [13055,null], + [13057,0.033], + [13059,null], + [13061,null], + [13063,0.515], + [13065,null], + [13067,0.186], + [13069,0.098], + [13071,null], + [13073,0.074], + [13075,null], + [13077,null], + [13079,null], + [13081,null], + [13083,null], + [13085,null], + [13087,0.29], + [13089,0.396], + [13091,null], + [13093,0.306], + [13095,0.34], + [13097,null], + [13099,null], + [13101,null], + [13103,0.065], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,0.16], + [13115,null], + [13117,0.019], + [13119,null], + [13121,0.267], + [13123,null], + [13125,null], + [13127,null], + [13129,null], + [13131,null], + [13133,0.146], + [13135,0.17], + [13137,null], + [13139,null], + [13141,0.555], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,0.289], + [13153,0.171], + [13155,0.109], + [13157,null], + [13159,null], + [13161,null], + [13163,0.318], + [13165,null], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,null], + [13177,null], + [13179,0.367], + [13181,null], + [13183,null], + [13185,0.129], + [13187,null], + [13189,null], + [13191,null], + [13193,null], + [13195,null], + [13197,null], + [13199,0.229], + [13201,null], + [13205,null], + [13207,0.152], + [13209,null], + [13211,null], + [13213,null], + [13215,0.374], + [13217,0.334], + [13219,null], + [13221,null], + [13223,0.146], + [13225,null], + [13227,null], + [13229,null], + [13231,null], + [13233,null], + [13235,null], + [13237,null], + [13239,null], + [13241,null], + [13243,null], + [13245,0.381], + [13247,0.348], + [13249,null], + [13251,null], + [13253,0.237], + [13255,null], + [13257,null], + [13259,null], + [13261,0.236], + [13263,0.463], + [13265,null], + [13267,null], + [13269,null], + [13271,null], + [13273,null], + [13275,null], + [13277,0.111], + [13279,0.109], + [13281,null], + [13283,null], + [13285,0.258], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,null], + [13297,null], + [13299,null], + [13301,null], + [13303,null], + [13305,null], + [13307,null], + [13309,null], + [13311,0.013], + [13313,null], + [13315,null], + [13317,null], + [13319,null], + [13321,0.184], + [15001,null], + [15003,0.011], + [15005,null], + [15007,null], + [15009,0.006], + [16001,0.004], + [16003,null], + [16005,null], + [16007,null], + [16009,null], + [16011,null], + [16013,null], + [16015,null], + [16017,null], + [16019,null], + [16021,null], + [16023,null], + [16025,null], + [16027,0.002], + [16029,null], + [16031,null], + [16033,null], + [16035,null], + [16037,null], + [16039,null], + [16041,null], + [16043,null], + [16045,null], + [16047,null], + [16049,null], + [16051,null], + [16053,null], + [16055,0.002], + [16057,null], + [16059,null], + [16061,null], + [16063,null], + [16065,null], + [16067,null], + [16069,null], + [16071,null], + [16073,null], + [16075,null], + [16077,null], + [16079,null], + [16081,null], + [16083,null], + [16085,null], + [16087,null], + [17001,null], + [17003,null], + [17005,null], + [17007,0.013], + [17009,null], + [17011,null], + [17013,null], + [17015,null], + [17017,null], + [17019,0.088], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,0.026], + [17031,0.164], + [17033,null], + [17035,null], + [17037,0.021], + [17039,null], + [17041,null], + [17043,0.023], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,null], + [17055,null], + [17057,null], + [17059,null], + [17061,null], + [17063,null], + [17065,null], + [17067,null], + [17069,null], + [17071,null], + [17073,null], + [17075,null], + [17077,null], + [17079,null], + [17081,0.03], + [17083,null], + [17085,null], + [17087,null], + [17089,0.041], + [17091,null], + [17093,0.031], + [17095,null], + [17097,0.038], + [17099,null], + [17101,null], + [17103,null], + [17105,null], + [17107,null], + [17109,null], + [17111,0.007], + [17113,0.054], + [17115,null], + [17117,null], + [17119,0.031], + [17121,null], + [17123,null], + [17125,null], + [17127,null], + [17129,null], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,null], + [17145,null], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,null], + [17157,null], + [17159,null], + [17161,0.051], + [17163,0.135], + [17165,null], + [17167,0.06], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,0.023], + [17179,0.009], + [17181,null], + [17183,null], + [17185,null], + [17187,null], + [17189,null], + [17191,null], + [17193,null], + [17195,null], + [17197,0.069], + [17199,null], + [17201,0.07], + [17203,null], + [18001,null], + [18003,null], + [18005,0.008], + [18007,null], + [18009,null], + [18011,null], + [18013,null], + [18015,null], + [18017,null], + [18019,null], + [18021,null], + [18023,null], + [18025,null], + [18027,null], + [18029,null], + [18031,null], + [18033,null], + [18035,0.02], + [18037,null], + [18039,0.025], + [18041,null], + [18043,null], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,0.025], + [18055,null], + [18057,0.018], + [18059,null], + [18061,0.021], + [18063,0.024], + [18065,null], + [18067,null], + [18069,null], + [18071,null], + [18073,null], + [18075,null], + [18077,null], + [18079,null], + [18081,null], + [18083,null], + [18085,null], + [18087,null], + [18089,0.186], + [18091,null], + [18093,null], + [18095,null], + [18097,0.119], + [18099,null], + [18101,null], + [18103,null], + [18105,0.018], + [18107,null], + [18109,null], + [18111,null], + [18113,null], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,0.014], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,null], + [18139,null], + [18141,0.065], + [18143,null], + [18145,null], + [18147,null], + [18149,null], + [18151,null], + [18153,null], + [18155,null], + [18157,null], + [18159,null], + [18161,null], + [18163,0.029], + [18165,null], + [18167,0.048], + [18169,null], + [18171,null], + [18173,null], + [18175,null], + [18177,0.022], + [18179,null], + [18181,null], + [18183,null], + [19001,null], + [19003,null], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,0.041], + [19015,null], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,null], + [19035,null], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,null], + [19047,null], + [19049,0.006], + [19051,null], + [19053,null], + [19055,null], + [19057,0.009], + [19059,null], + [19061,0.011], + [19063,null], + [19065,null], + [19067,null], + [19069,null], + [19071,null], + [19073,null], + [19075,null], + [19077,null], + [19079,null], + [19081,null], + [19083,null], + [19085,null], + [19087,null], + [19089,null], + [19091,null], + [19093,null], + [19095,null], + [19097,null], + [19099,null], + [19101,null], + [19103,0.018], + [19105,null], + [19107,null], + [19109,null], + [19111,null], + [19113,0.007], + [19115,null], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,null], + [19129,null], + [19131,null], + [19133,null], + [19135,null], + [19137,null], + [19139,0.008], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,null], + [19151,null], + [19153,0.019], + [19155,null], + [19157,null], + [19159,null], + [19161,null], + [19163,null], + [19165,null], + [19167,null], + [19169,null], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,null], + [19181,null], + [19183,null], + [19185,null], + [19187,null], + [19189,null], + [19191,null], + [19193,0.009], + [19195,null], + [19197,null], + [20001,null], + [20003,null], + [20005,null], + [20007,null], + [20009,null], + [20011,null], + [20013,null], + [20015,null], + [20017,null], + [20019,null], + [20021,null], + [20023,null], + [20025,null], + [20027,null], + [20029,null], + [20031,null], + [20033,null], + [20035,null], + [20037,null], + [20039,null], + [20041,null], + [20043,null], + [20045,0.022], + [20047,null], + [20049,null], + [20051,null], + [20053,null], + [20055,null], + [20057,null], + [20059,null], + [20061,0.167], + [20063,null], + [20065,null], + [20067,null], + [20069,null], + [20071,null], + [20073,null], + [20075,null], + [20077,null], + [20079,null], + [20081,null], + [20083,null], + [20085,null], + [20087,null], + [20089,null], + [20091,0.021], + [20093,null], + [20095,null], + [20097,null], + [20099,null], + [20101,null], + [20103,null], + [20105,null], + [20107,null], + [20109,null], + [20111,null], + [20113,null], + [20115,null], + [20117,null], + [20119,null], + [20121,null], + [20123,null], + [20125,null], + [20127,null], + [20129,null], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,null], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,null], + [20157,null], + [20159,null], + [20161,0.008], + [20163,null], + [20165,null], + [20167,null], + [20169,null], + [20171,null], + [20173,0.04], + [20175,null], + [20177,0.027], + [20179,null], + [20181,null], + [20183,null], + [20185,null], + [20187,null], + [20189,null], + [20191,null], + [20193,null], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,null], + [20205,null], + [20207,null], + [20209,0.145], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,null], + [21011,null], + [21013,null], + [21015,0.019], + [21017,null], + [21019,0.006], + [21021,0.017], + [21023,null], + [21025,null], + [21027,null], + [21029,0.009], + [21031,null], + [21033,null], + [21035,null], + [21037,null], + [21039,null], + [21041,null], + [21043,null], + [21045,null], + [21047,0.072], + [21049,null], + [21051,null], + [21053,null], + [21055,null], + [21057,null], + [21059,0.026], + [21061,null], + [21063,null], + [21065,null], + [21067,null], + [21069,null], + [21071,null], + [21073,0.029], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,null], + [21085,null], + [21087,null], + [21089,null], + [21091,null], + [21093,0.052], + [21095,null], + [21097,null], + [21099,null], + [21101,null], + [21103,null], + [21105,null], + [21107,0.019], + [21109,null], + [21111,0.085], + [21113,0.016], + [21115,null], + [21117,0.025], + [21119,null], + [21121,null], + [21123,null], + [21125,null], + [21127,null], + [21129,null], + [21131,null], + [21133,null], + [21135,null], + [21137,null], + [21139,null], + [21141,null], + [21143,null], + [21145,null], + [21147,null], + [21149,null], + [21151,null], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,null], + [21165,null], + [21167,null], + [21169,null], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,0.013], + [21181,null], + [21183,null], + [21185,0.015], + [21187,null], + [21189,null], + [21191,null], + [21193,null], + [21195,null], + [21197,null], + [21199,0.009], + [21201,null], + [21203,null], + [21205,null], + [21207,null], + [21209,null], + [21211,0.014], + [21213,null], + [21215,null], + [21217,null], + [21219,null], + [21221,null], + [21223,null], + [21225,0.028], + [21227,0.039], + [21229,null], + [21231,null], + [21233,null], + [21235,null], + [21237,null], + [21239,null], + [22001,null], + [22003,0.087], + [22005,null], + [22007,0.152], + [22009,null], + [22011,null], + [22013,null], + [22015,0.07], + [22017,0.17], + [22019,0.123], + [22021,null], + [22023,null], + [22025,null], + [22027,null], + [22029,null], + [22031,null], + [22033,0.269], + [22035,null], + [22037,null], + [22039,null], + [22041,null], + [22043,null], + [22045,0.186], + [22047,0.181], + [22049,null], + [22051,0.125], + [22053,0.063], + [22055,0.123], + [22057,0.023], + [22059,0.031], + [22061,null], + [22063,0.034], + [22065,0.376], + [22067,0.257], + [22069,0.199], + [22071,0.289], + [22073,0.173], + [22075,0.097], + [22077,0.123], + [22079,0.108], + [22081,null], + [22083,null], + [22085,null], + [22087,0.081], + [22089,0.243], + [22091,null], + [22093,0.403], + [22095,0.45], + [22097,0.208], + [22099,0.17], + [22101,0.175], + [22103,0.059], + [22105,null], + [22107,null], + [22109,0.059], + [22111,0.086], + [22113,0.078], + [22115,null], + [22117,0.191], + [22119,0.149], + [22121,0.232], + [22123,null], + [22125,null], + [22127,null], + [23001,null], + [23003,null], + [23005,null], + [23007,null], + [23009,null], + [23011,null], + [23013,null], + [23015,null], + [23017,null], + [23019,0.003], + [23021,null], + [23023,null], + [23025,null], + [23027,null], + [23029,null], + [23031,null], + [24001,null], + [24003,0.09], + [24005,0.173], + [24009,0.13], + [24011,null], + [24013,0.021], + [24015,null], + [24017,0.293], + [24019,null], + [24021,0.059], + [24023,null], + [24025,0.092], + [24027,0.149], + [24029,null], + [24031,0.124], + [24033,0.545], + [24035,null], + [24037,0.074], + [24039,0.119], + [24041,null], + [24043,0.039], + [24045,0.09], + [24047,null], + [24510,0.346], + [25001,0.012], + [25003,0.004], + [25005,0.013], + [25007,0.04], + [25009,0.036], + [25011,null], + [25013,0.046], + [25015,0.019], + [25017,0.027], + [25019,null], + [25021,0.029], + [25023,0.028], + [25025,0.11], + [25027,0.024], + [26001,null], + [26003,null], + [26005,null], + [26007,null], + [26009,null], + [26011,null], + [26013,null], + [26015,null], + [26017,null], + [26019,null], + [26021,0.089], + [26023,null], + [26025,null], + [26027,0.033], + [26029,null], + [26031,null], + [26033,null], + [26035,null], + [26037,null], + [26039,null], + [26041,null], + [26043,null], + [26045,0.034], + [26047,null], + [26049,0.132], + [26051,null], + [26053,null], + [26055,0.003], + [26057,null], + [26059,null], + [26061,null], + [26063,null], + [26065,null], + [26067,null], + [26069,null], + [26071,null], + [26073,null], + [26075,0.028], + [26077,0.06], + [26079,null], + [26081,0.06], + [26083,null], + [26085,null], + [26087,null], + [26089,null], + [26091,null], + [26093,0.003], + [26095,null], + [26097,null], + [26099,0.047], + [26101,null], + [26103,null], + [26105,null], + [26107,null], + [26109,null], + [26111,null], + [26113,null], + [26115,0.017], + [26117,null], + [26119,null], + [26121,0.05], + [26123,null], + [26125,0.083], + [26127,null], + [26129,null], + [26131,null], + [26133,null], + [26135,null], + [26137,null], + [26139,null], + [26141,null], + [26143,null], + [26145,0.11], + [26147,null], + [26149,0.024], + [26151,null], + [26153,null], + [26155,null], + [26157,null], + [26159,null], + [26161,0.075], + [26163,0.286], + [26165,null], + [27001,null], + [27003,0.023], + [27005,null], + [27007,null], + [27009,null], + [27011,null], + [27013,null], + [27015,null], + [27017,null], + [27019,null], + [27021,null], + [27023,null], + [27025,null], + [27027,null], + [27029,null], + [27031,null], + [27033,null], + [27035,null], + [27037,0.028], + [27039,null], + [27041,null], + [27043,null], + [27045,null], + [27047,null], + [27049,null], + [27051,null], + [27053,0.052], + [27055,null], + [27057,null], + [27059,null], + [27061,null], + [27063,null], + [27065,null], + [27067,null], + [27069,null], + [27071,null], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,null], + [27085,null], + [27087,null], + [27089,null], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,null], + [27101,null], + [27103,null], + [27105,null], + [27107,null], + [27109,null], + [27111,null], + [27113,null], + [27115,null], + [27117,null], + [27119,null], + [27121,null], + [27123,0.056], + [27125,null], + [27127,null], + [27129,null], + [27131,null], + [27133,null], + [27135,null], + [27137,0.009], + [27139,0.015], + [27141,null], + [27143,null], + [27145,null], + [27147,null], + [27149,null], + [27151,null], + [27153,null], + [27155,null], + [27157,null], + [27159,null], + [27161,null], + [27163,0.015], + [27165,null], + [27167,null], + [27169,0.015], + [27171,null], + [27173,null], + [28001,0.233], + [28003,null], + [28005,null], + [28007,null], + [28009,null], + [28011,0.289], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,0.4], + [28023,null], + [28025,null], + [28027,0.33], + [28029,0.197], + [28031,0.123], + [28033,0.13], + [28035,0.124], + [28037,null], + [28039,0.049], + [28041,null], + [28043,0.145], + [28045,null], + [28047,0.107], + [28049,0.375], + [28051,0.397], + [28053,null], + [28055,null], + [28057,null], + [28059,0.125], + [28061,null], + [28063,null], + [28065,0.322], + [28067,0.069], + [28069,0.347], + [28071,null], + [28073,null], + [28075,0.19], + [28077,null], + [28079,0.245], + [28081,0.078], + [28083,null], + [28085,0.175], + [28087,0.113], + [28089,0.175], + [28091,null], + [28093,0.368], + [28095,0.071], + [28097,0.256], + [28099,null], + [28101,null], + [28103,null], + [28105,null], + [28107,null], + [28109,null], + [28111,null], + [28113,0.292], + [28115,null], + [28117,0.059], + [28119,0.343], + [28121,0.076], + [28123,0.189], + [28125,null], + [28127,0.17], + [28129,0.148], + [28131,null], + [28133,0.295], + [28135,0.135], + [28137,0.191], + [28139,null], + [28141,null], + [28143,0.322], + [28145,null], + [28147,0.411], + [28149,0.188], + [28151,0.439], + [28153,null], + [28155,null], + [28157,null], + [28159,null], + [28161,0.171], + [28163,null], + [29001,null], + [29003,null], + [29005,null], + [29007,null], + [29009,null], + [29011,null], + [29013,null], + [29015,null], + [29017,null], + [29019,null], + [29021,null], + [29023,null], + [29025,null], + [29027,null], + [29029,null], + [29031,0.025], + [29033,null], + [29035,null], + [29037,null], + [29039,null], + [29041,null], + [29043,null], + [29045,null], + [29047,0.023], + [29049,null], + [29051,null], + [29053,null], + [29055,null], + [29057,null], + [29059,null], + [29061,null], + [29063,null], + [29065,null], + [29067,null], + [29069,0.035], + [29071,null], + [29073,null], + [29075,null], + [29077,0.019], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,null], + [29093,null], + [29095,0.101], + [29097,null], + [29099,null], + [29101,null], + [29103,null], + [29105,null], + [29107,null], + [29109,null], + [29111,null], + [29113,null], + [29115,null], + [29117,null], + [29119,null], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,null], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,null], + [29161,0.013], + [29163,null], + [29165,0.034], + [29167,null], + [29169,0.028], + [29171,null], + [29173,null], + [29175,null], + [29177,null], + [29179,null], + [29181,null], + [29183,0.02], + [29185,null], + [29186,null], + [29187,null], + [29189,0.105], + [29195,null], + [29197,null], + [29199,null], + [29201,null], + [29203,null], + [29205,null], + [29207,null], + [29209,null], + [29211,null], + [29213,null], + [29215,null], + [29217,null], + [29219,null], + [29221,null], + [29223,null], + [29225,null], + [29227,null], + [29229,null], + [29510,0.214], + [30001,null], + [30003,null], + [30005,null], + [30007,null], + [30009,null], + [30011,null], + [30013,null], + [30015,null], + [30017,null], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,null], + [30029,null], + [30031,null], + [30033,null], + [30035,null], + [30037,null], + [30039,null], + [30041,null], + [30043,null], + [30045,null], + [30047,null], + [30049,null], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,null], + [30063,0.003], + [30065,null], + [30067,null], + [30069,null], + [30071,null], + [30073,null], + [30075,null], + [30077,null], + [30079,null], + [30081,null], + [30083,null], + [30085,null], + [30087,null], + [30089,null], + [30091,null], + [30093,null], + [30095,null], + [30097,null], + [30099,null], + [30101,null], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,0.004], + [31001,null], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,null], + [31019,null], + [31021,null], + [31023,null], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,null], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,null], + [31045,null], + [31047,null], + [31049,null], + [31051,null], + [31053,null], + [31055,0.044], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,null], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,null], + [31081,null], + [31083,null], + [31085,null], + [31087,null], + [31089,null], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,null], + [31109,0.016], + [31111,null], + [31113,null], + [31115,null], + [31117,null], + [31119,null], + [31121,null], + [31123,null], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,null], + [31137,null], + [31139,null], + [31141,null], + [31143,null], + [31145,null], + [31147,null], + [31149,null], + [31151,null], + [31153,0.023], + [31155,null], + [31157,null], + [31159,null], + [31161,null], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,null], + [31179,null], + [31181,null], + [31183,null], + [31185,null], + [32001,null], + [32003,0.052], + [32005,null], + [32007,0.014], + [32009,null], + [32011,null], + [32013,null], + [32015,null], + [32017,null], + [32019,0.016], + [32021,null], + [32023,null], + [32027,null], + [32029,null], + [32031,0.01], + [32033,null], + [32510,0.006], + [33001,null], + [33003,null], + [33005,null], + [33007,null], + [33009,null], + [33011,0.009], + [33013,null], + [33015,0.005], + [33017,0.007], + [33019,null], + [34001,0.07], + [34003,0.046], + [34005,0.088], + [34007,0.086], + [34009,0.013], + [34011,0.095], + [34013,0.21], + [34015,0.076], + [34017,0.118], + [34019,null], + [34021,0.076], + [34023,null], + [34025,0.031], + [34027,0.021], + [34029,0.022], + [34031,0.095], + [34033,0.064], + [34035,0.057], + [34037,null], + [34039,0.131], + [34041,0.027], + [35001,0.018], + [35003,null], + [35005,null], + [35006,null], + [35007,null], + [35009,0.018], + [35011,null], + [35013,0.008], + [35015,0.012], + [35017,null], + [35019,null], + [35021,null], + [35023,null], + [35025,0.009], + [35027,null], + [35028,null], + [35029,null], + [35031,null], + [35033,null], + [35035,null], + [35037,null], + [35039,null], + [35041,null], + [35043,0.016], + [35045,0.012], + [35047,null], + [35049,0.007], + [35051,null], + [35053,null], + [35055,null], + [35057,null], + [35059,null], + [35061,0.013], + [36001,null], + [36003,null], + [36005,0.349], + [36007,0.019], + [36009,null], + [36011,null], + [36013,0.018], + [36015,0.032], + [36017,null], + [36019,null], + [36021,null], + [36023,null], + [36025,null], + [36027,0.051], + [36029,0.045], + [36031,null], + [36033,null], + [36035,null], + [36037,null], + [36039,null], + [36041,null], + [36043,null], + [36045,null], + [36047,0.208], + [36049,null], + [36051,null], + [36053,null], + [36055,0.063], + [36057,0.03], + [36059,0.064], + [36061,0.087], + [36063,null], + [36065,0.023], + [36067,0.041], + [36069,null], + [36071,0.075], + [36073,null], + [36075,null], + [36077,null], + [36079,0.051], + [36081,0.144], + [36083,0.027], + [36085,0.073], + [36087,0.073], + [36089,null], + [36091,0.01], + [36093,0.05], + [36095,null], + [36097,null], + [36099,0.014], + [36101,null], + [36103,0.045], + [36105,0.041], + [36107,null], + [36109,0.009], + [36111,null], + [36113,null], + [36115,null], + [36117,0.01], + [36119,0.089], + [36121,null], + [36123,null], + [37001,0.087], + [37003,null], + [37005,null], + [37007,0.28], + [37009,null], + [37011,null], + [37013,null], + [37015,0.236], + [37017,null], + [37019,0.047], + [37021,0.017], + [37023,0.043], + [37025,0.068], + [37027,0.017], + [37029,null], + [37031,0.009], + [37033,null], + [37035,null], + [37037,null], + [37039,0.01], + [37041,null], + [37043,null], + [37045,0.077], + [37047,null], + [37049,null], + [37051,0.237], + [37053,null], + [37055,null], + [37057,0.033], + [37059,null], + [37061,0.128], + [37063,0.246], + [37065,0.313], + [37067,0.13], + [37069,0.106], + [37071,null], + [37073,null], + [37075,null], + [37077,0.189], + [37079,null], + [37081,0.167], + [37083,0.262], + [37085,0.087], + [37087,null], + [37089,0.017], + [37091,null], + [37093,null], + [37095,null], + [37097,0.048], + [37099,null], + [37101,0.093], + [37103,null], + [37105,0.098], + [37107,null], + [37109,null], + [37111,null], + [37113,null], + [37115,null], + [37117,0.229], + [37119,0.156], + [37121,null], + [37123,null], + [37125,0.083], + [37127,0.174], + [37129,0.059], + [37131,0.319], + [37133,0.091], + [37135,0.064], + [37137,null], + [37139,0.143], + [37141,0.104], + [37143,null], + [37145,null], + [37147,0.187], + [37149,null], + [37151,null], + [37153,null], + [37155,0.147], + [37157,0.092], + [37159,0.064], + [37161,0.044], + [37163,0.171], + [37165,null], + [37167,null], + [37169,null], + [37171,null], + [37173,null], + [37175,null], + [37177,null], + [37179,0.049], + [37181,0.259], + [37183,0.12], + [37185,0.361], + [37187,0.226], + [37189,null], + [37191,0.155], + [37193,null], + [37195,0.166], + [37197,null], + [37199,null], + [38001,null], + [38003,null], + [38005,null], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,null], + [38017,0.003], + [38019,null], + [38021,null], + [38023,null], + [38025,null], + [38027,null], + [38029,null], + [38031,null], + [38033,null], + [38035,0.006], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,null], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,null], + [38057,null], + [38059,null], + [38061,null], + [38063,null], + [38065,null], + [38067,null], + [38069,null], + [38071,null], + [38073,null], + [38075,null], + [38077,null], + [38079,null], + [38081,null], + [38083,null], + [38085,null], + [38087,null], + [38089,null], + [38091,null], + [38093,null], + [38095,null], + [38097,null], + [38099,null], + [38101,null], + [38103,null], + [38105,null], + [39001,null], + [39003,0.049], + [39005,null], + [39007,null], + [39009,null], + [39011,null], + [39013,null], + [39015,null], + [39017,0.033], + [39019,null], + [39021,null], + [39023,null], + [39025,0.004], + [39027,null], + [39029,null], + [39031,null], + [39033,null], + [39035,0.136], + [39037,null], + [39039,null], + [39041,0.021], + [39043,0.029], + [39045,null], + [39047,null], + [39049,0.118], + [39051,null], + [39053,null], + [39055,null], + [39057,null], + [39059,null], + [39061,0.108], + [39063,null], + [39065,null], + [39067,null], + [39069,null], + [39071,null], + [39073,null], + [39075,null], + [39077,null], + [39079,null], + [39081,null], + [39083,null], + [39085,0.011], + [39087,null], + [39089,null], + [39091,null], + [39093,null], + [39095,0.071], + [39097,null], + [39099,null], + [39101,0.02], + [39103,0.005], + [39105,null], + [39107,null], + [39109,null], + [39111,null], + [39113,0.107], + [39115,null], + [39117,null], + [39119,0.02], + [39121,null], + [39123,null], + [39125,null], + [39127,null], + [39129,null], + [39131,null], + [39133,0.011], + [39135,null], + [39137,null], + [39139,0.022], + [39141,null], + [39143,0.007], + [39145,null], + [39147,null], + [39149,null], + [39151,0.035], + [39153,0.064], + [39155,0.032], + [39157,null], + [39159,null], + [39161,null], + [39163,null], + [39165,0.015], + [39167,null], + [39169,0.008], + [39171,null], + [39173,null], + [39175,null], + [40001,null], + [40003,null], + [40005,null], + [40007,null], + [40009,null], + [40011,null], + [40013,null], + [40015,null], + [40017,null], + [40019,null], + [40021,null], + [40023,null], + [40025,null], + [40027,0.016], + [40029,null], + [40031,0.084], + [40033,null], + [40035,null], + [40037,null], + [40039,null], + [40041,null], + [40043,null], + [40045,null], + [40047,null], + [40049,null], + [40051,null], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,null], + [40063,null], + [40065,null], + [40067,null], + [40069,null], + [40071,null], + [40073,null], + [40075,null], + [40077,null], + [40079,null], + [40081,null], + [40083,null], + [40085,null], + [40087,null], + [40089,null], + [40091,null], + [40093,null], + [40095,null], + [40097,null], + [40099,null], + [40101,0.042], + [40103,null], + [40105,null], + [40107,null], + [40109,0.065], + [40111,null], + [40113,0.059], + [40115,null], + [40117,null], + [40119,null], + [40121,null], + [40123,null], + [40125,0.014], + [40127,null], + [40129,null], + [40131,0.006], + [40133,null], + [40135,null], + [40137,null], + [40139,null], + [40141,null], + [40143,0.043], + [40145,0.015], + [40147,null], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,null], + [41005,0.006], + [41007,null], + [41009,null], + [41011,null], + [41013,null], + [41015,null], + [41017,0.003], + [41019,null], + [41021,null], + [41023,null], + [41025,null], + [41027,0.017], + [41029,null], + [41031,null], + [41033,null], + [41035,0.012], + [41037,null], + [41039,0.006], + [41041,null], + [41043,null], + [41045,null], + [41047,0.006], + [41049,null], + [41051,0.03], + [41053,null], + [41055,null], + [41057,null], + [41059,null], + [41061,null], + [41063,null], + [41065,null], + [41067,null], + [41069,null], + [41071,null], + [42001,null], + [42003,0.052], + [42005,null], + [42007,0.03], + [42009,null], + [42011,0.034], + [42013,null], + [42015,null], + [42017,0.015], + [42019,null], + [42021,0.01], + [42023,null], + [42025,0.02], + [42027,0.008], + [42029,0.023], + [42031,null], + [42033,null], + [42035,null], + [42037,null], + [42039,null], + [42041,0.015], + [42043,0.079], + [42045,0.084], + [42047,null], + [42049,0.032], + [42051,0.015], + [42053,null], + [42055,null], + [42057,null], + [42059,null], + [42061,null], + [42063,null], + [42065,null], + [42067,null], + [42069,0.007], + [42071,0.016], + [42073,null], + [42075,null], + [42077,0.046], + [42079,0.01], + [42081,null], + [42083,null], + [42085,null], + [42087,null], + [42089,0.064], + [42091,0.033], + [42093,null], + [42095,0.032], + [42097,null], + [42099,null], + [42101,0.225], + [42103,0.046], + [42105,null], + [42107,0.006], + [42109,null], + [42111,null], + [42113,null], + [42115,null], + [42117,null], + [42119,null], + [42121,null], + [42123,null], + [42125,null], + [42127,null], + [42129,0.012], + [42131,null], + [42133,null], + [44001,null], + [44003,0.006], + [44005,0.017], + [44007,0.055], + [44009,0.007], + [45001,0.191], + [45003,0.112], + [45005,null], + [45007,0.057], + [45009,null], + [45011,0.208], + [45013,0.074], + [45015,0.134], + [45017,null], + [45019,0.099], + [45021,null], + [45023,null], + [45025,0.157], + [45027,0.301], + [45029,0.204], + [45031,null], + [45033,null], + [45035,0.156], + [45037,null], + [45039,0.326], + [45041,0.19], + [45043,0.099], + [45045,0.078], + [45047,0.133], + [45049,0.298], + [45051,0.047], + [45053,0.268], + [45055,null], + [45057,0.093], + [45059,0.121], + [45061,null], + [45063,0.055], + [45065,0.287], + [45067,0.184], + [45069,null], + [45071,null], + [45073,0.026], + [45075,0.352], + [45077,0.049], + [45079,0.231], + [45081,0.132], + [45083,0.071], + [45085,0.235], + [45087,0.177], + [45089,0.365], + [45091,0.087], + [46003,null], + [46005,null], + [46007,null], + [46009,null], + [46011,null], + [46013,null], + [46015,null], + [46017,null], + [46019,null], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,null], + [46031,null], + [46033,null], + [46035,null], + [46037,null], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,null], + [46053,null], + [46055,null], + [46057,null], + [46059,null], + [46061,null], + [46063,null], + [46065,null], + [46067,null], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,null], + [46083,null], + [46085,null], + [46087,null], + [46089,null], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,null], + [46101,null], + [46102,null], + [46103,null], + [46105,null], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,null], + [46123,null], + [46125,null], + [46127,null], + [46129,null], + [46135,null], + [46137,null], + [47001,null], + [47003,null], + [47005,null], + [47007,null], + [47009,null], + [47011,null], + [47013,null], + [47015,null], + [47017,null], + [47019,null], + [47021,0.011], + [47023,null], + [47025,null], + [47027,null], + [47029,null], + [47031,0.018], + [47033,null], + [47035,null], + [47037,0.111], + [47039,null], + [47041,null], + [47043,0.024], + [47045,null], + [47047,0.153], + [47049,null], + [47051,null], + [47053,null], + [47055,0.026], + [47057,null], + [47059,null], + [47061,null], + [47063,null], + [47065,0.093], + [47067,null], + [47069,null], + [47071,null], + [47073,null], + [47075,null], + [47077,0.033], + [47079,null], + [47081,null], + [47083,null], + [47085,null], + [47087,null], + [47089,null], + [47091,null], + [47093,0.049], + [47095,null], + [47097,0.062], + [47099,null], + [47101,null], + [47103,null], + [47105,null], + [47107,0.018], + [47109,null], + [47111,null], + [47113,0.141], + [47115,null], + [47117,null], + [47119,0.06], + [47121,null], + [47123,null], + [47125,0.08], + [47127,null], + [47129,null], + [47131,null], + [47133,null], + [47135,null], + [47137,null], + [47139,null], + [47141,null], + [47143,null], + [47145,null], + [47147,0.019], + [47149,0.061], + [47151,null], + [47153,null], + [47155,null], + [47157,0.309], + [47159,null], + [47161,null], + [47163,null], + [47165,0.032], + [47167,0.094], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,0.011], + [47179,0.02], + [47181,null], + [47183,null], + [47185,null], + [47187,0.022], + [47189,0.037], + [48001,null], + [48003,null], + [48005,null], + [48007,null], + [48009,null], + [48011,null], + [48013,null], + [48015,null], + [48017,null], + [48019,null], + [48021,null], + [48023,null], + [48025,0.021], + [48027,0.091], + [48029,0.038], + [48031,null], + [48033,null], + [48035,null], + [48037,0.109], + [48039,0.092], + [48041,0.058], + [48043,null], + [48045,null], + [48047,null], + [48049,null], + [48051,null], + [48053,null], + [48055,null], + [48057,null], + [48059,null], + [48061,0.011], + [48063,null], + [48065,null], + [48067,null], + [48069,null], + [48071,null], + [48073,null], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,null], + [48085,0.046], + [48087,null], + [48089,null], + [48091,null], + [48093,null], + [48095,null], + [48097,null], + [48099,0.048], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,0.136], + [48115,null], + [48117,null], + [48119,null], + [48121,0.053], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,null], + [48133,null], + [48135,0.02], + [48137,null], + [48139,null], + [48141,0.022], + [48143,null], + [48145,null], + [48147,null], + [48149,null], + [48151,null], + [48153,null], + [48155,null], + [48157,0.165], + [48159,null], + [48161,null], + [48163,null], + [48165,null], + [48167,0.076], + [48169,null], + [48171,null], + [48173,null], + [48175,null], + [48177,null], + [48179,null], + [48181,0.017], + [48183,0.088], + [48185,null], + [48187,null], + [48189,null], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,null], + [48201,0.127], + [48203,0.087], + [48205,null], + [48207,null], + [48209,0.018], + [48211,null], + [48213,null], + [48215,null], + [48217,null], + [48219,null], + [48221,null], + [48223,null], + [48225,null], + [48227,null], + [48229,null], + [48231,0.028], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,0.114], + [48243,null], + [48245,0.198], + [48247,null], + [48249,null], + [48251,0.03], + [48253,null], + [48255,null], + [48257,null], + [48259,0.011], + [48261,null], + [48263,null], + [48265,null], + [48267,null], + [48269,null], + [48271,null], + [48273,null], + [48275,null], + [48277,null], + [48279,null], + [48281,null], + [48283,null], + [48285,null], + [48287,null], + [48289,null], + [48291,null], + [48293,null], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,0.021], + [48305,null], + [48307,null], + [48309,0.051], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,null], + [48323,null], + [48325,null], + [48327,null], + [48329,0.025], + [48331,null], + [48333,null], + [48335,null], + [48337,null], + [48339,null], + [48341,null], + [48343,0.074], + [48345,null], + [48347,0.081], + [48349,0.031], + [48351,null], + [48353,null], + [48355,0.024], + [48357,null], + [48359,null], + [48361,0.061], + [48363,null], + [48365,null], + [48367,null], + [48369,null], + [48371,null], + [48373,null], + [48375,null], + [48377,null], + [48379,null], + [48381,null], + [48383,null], + [48385,null], + [48387,null], + [48389,null], + [48391,null], + [48393,null], + [48395,null], + [48397,0.038], + [48399,null], + [48401,null], + [48403,null], + [48405,null], + [48407,null], + [48409,null], + [48411,null], + [48413,null], + [48415,null], + [48417,null], + [48419,null], + [48421,null], + [48423,0.072], + [48425,null], + [48427,null], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,null], + [48439,0.103], + [48441,null], + [48443,null], + [48445,null], + [48447,null], + [48449,null], + [48451,null], + [48453,0.039], + [48455,null], + [48457,null], + [48459,null], + [48461,null], + [48463,null], + [48465,null], + [48467,null], + [48469,null], + [48471,null], + [48473,0.056], + [48475,null], + [48477,null], + [48479,null], + [48481,null], + [48483,null], + [48485,null], + [48487,null], + [48489,null], + [48491,0.04], + [48493,null], + [48495,null], + [48497,null], + [48499,null], + [48501,null], + [48503,null], + [48505,null], + [48507,null], + [49001,null], + [49003,null], + [49005,null], + [49007,null], + [49009,null], + [49011,0.004], + [49013,null], + [49015,null], + [49017,null], + [49019,null], + [49021,null], + [49023,null], + [49025,null], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.006], + [49037,null], + [49039,null], + [49041,null], + [49043,null], + [49045,null], + [49047,null], + [49049,0.005], + [49051,null], + [49053,null], + [49055,null], + [49057,0.009], + [50001,null], + [50003,null], + [50005,null], + [50007,0.008], + [50009,null], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,null], + [50023,0.005], + [50025,null], + [50027,null], + [51001,0.06], + [51003,0.058], + [51005,null], + [51007,null], + [51009,0.053], + [51011,null], + [51013,0.06], + [51015,null], + [51017,null], + [51019,null], + [51021,null], + [51023,null], + [51025,0.387], + [51027,null], + [51029,0.208], + [51031,null], + [51033,0.217], + [51035,null], + [51036,null], + [51037,null], + [51041,0.133], + [51043,null], + [51045,null], + [51047,0.052], + [51049,null], + [51051,null], + [51053,null], + [51057,null], + [51059,0.07], + [51061,0.037], + [51063,null], + [51065,null], + [51067,0.05], + [51069,null], + [51071,null], + [51073,0.049], + [51075,null], + [51077,null], + [51079,null], + [51081,null], + [51083,0.164], + [51085,0.054], + [51087,0.154], + [51089,null], + [51091,null], + [51093,0.153], + [51095,0.062], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,null], + [51107,0.05], + [51109,null], + [51111,null], + [51113,null], + [51115,null], + [51117,0.091], + [51119,null], + [51121,null], + [51125,null], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,null], + [51143,0.121], + [51145,null], + [51147,null], + [51149,0.207], + [51153,0.139], + [51155,null], + [51157,null], + [51159,null], + [51161,null], + [51163,null], + [51165,null], + [51167,null], + [51169,null], + [51171,null], + [51173,null], + [51175,null], + [51177,0.097], + [51179,0.15], + [51181,null], + [51183,null], + [51185,null], + [51187,null], + [51191,null], + [51193,null], + [51195,null], + [51197,null], + [51199,0.067], + [51510,0.14], + [51520,null], + [51530,null], + [51540,null], + [51550,0.182], + [51570,null], + [51580,null], + [51590,0.165], + [51595,null], + [51600,0.041], + [51610,null], + [51620,null], + [51630,0.052], + [51640,null], + [51650,0.291], + [51660,null], + [51670,0.127], + [51678,null], + [51680,0.116], + [51683,null], + [51685,null], + [51690,0.214], + [51700,0.208], + [51710,0.207], + [51720,null], + [51730,0.396], + [51735,null], + [51740,0.314], + [51750,null], + [51760,0.209], + [51770,0.085], + [51775,null], + [51790,null], + [51800,0.24], + [51810,0.094], + [51820,null], + [51830,null], + [51840,0.015], + [53001,null], + [53003,null], + [53005,0.007], + [53007,null], + [53009,null], + [53011,0.011], + [53013,null], + [53015,null], + [53017,null], + [53019,null], + [53021,null], + [53023,null], + [53025,null], + [53027,null], + [53029,null], + [53031,null], + [53033,0.033], + [53035,null], + [53037,null], + [53039,null], + [53041,null], + [53043,null], + [53045,null], + [53047,null], + [53049,null], + [53051,null], + [53053,0.029], + [53055,null], + [53057,0.003], + [53059,null], + [53061,0.015], + [53063,null], + [53065,0.009], + [53067,null], + [53069,null], + [53071,null], + [53073,null], + [53075,null], + [53077,0.006], + [54001,null], + [54003,0.032], + [54005,null], + [54007,null], + [54009,null], + [54011,0.027], + [54013,null], + [54015,null], + [54017,null], + [54019,0.012], + [54021,null], + [54023,0.046], + [54025,null], + [54027,null], + [54029,null], + [54031,null], + [54033,0.006], + [54035,null], + [54037,0.039], + [54039,0.025], + [54041,null], + [54043,null], + [54045,0.016], + [54047,null], + [54049,null], + [54051,null], + [54053,null], + [54055,0.035], + [54057,null], + [54059,null], + [54061,null], + [54063,null], + [54065,null], + [54067,null], + [54069,null], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,null], + [54081,0.018], + [54083,null], + [54085,null], + [54087,null], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,null], + [54099,null], + [54101,null], + [54103,null], + [54105,null], + [54107,null], + [54109,null], + [55001,null], + [55003,null], + [55005,null], + [55007,null], + [55009,0.007], + [55011,null], + [55013,null], + [55015,null], + [55017,null], + [55019,null], + [55021,null], + [55023,null], + [55025,0.025], + [55027,null], + [55029,null], + [55031,null], + [55033,null], + [55035,0.006], + [55037,null], + [55039,null], + [55041,null], + [55043,null], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,null], + [55057,null], + [55059,0.038], + [55061,null], + [55063,null], + [55065,null], + [55067,null], + [55069,null], + [55071,0.01], + [55073,0.009], + [55075,null], + [55077,null], + [55078,null], + [55079,0.132], + [55081,null], + [55083,null], + [55085,null], + [55087,0.003], + [55089,0.004], + [55091,null], + [55093,null], + [55095,null], + [55097,0.02], + [55099,null], + [55101,0.038], + [55103,null], + [55105,0.027], + [55107,null], + [55109,null], + [55111,null], + [55113,null], + [55115,null], + [55117,0.005], + [55119,null], + [55121,null], + [55123,null], + [55125,null], + [55127,null], + [55129,null], + [55131,0.006], + [55133,0.008], + [55135,null], + [55137,null], + [55139,null], + [55141,null], + [56001,null], + [56003,null], + [56005,null], + [56007,null], + [56009,null], + [56011,null], + [56013,null], + [56015,null], + [56017,null], + [56019,null], + [56021,0.004], + [56023,null], + [56025,null], + [56027,null], + [56029,null], + [56031,null], + [56033,null], + [56035,null], + [56037,null], + [56039,null], + [56041,null], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/economics/companies/us-firms-owned-female-2007.json b/data/regional/united-states/economics/companies/us-firms-owned-female-2007.json new file mode 100644 index 0000000..c87d98d --- /dev/null +++ b/data/regional/united-states/economics/companies/us-firms-owned-female-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Female Owned Firms", + "description" : "Percent of firms that are female owned.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies","firms","gender"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.firms.owned.female.2007"], + [1001,0.317], + [1003,0.273], + [1005,0.27], + [1007,null], + [1009,0.232], + [1011,0.388], + [1013,null], + [1015,0.247], + [1017,0.293], + [1019,0.145], + [1021,null], + [1023,0.441], + [1025,0.286], + [1027,null], + [1029,0.177], + [1031,0.293], + [1033,0.228], + [1035,0.23], + [1037,null], + [1039,null], + [1041,0.302], + [1043,0.239], + [1045,null], + [1047,0.288], + [1049,0.258], + [1051,0.283], + [1053,0.213], + [1055,0.257], + [1057,0.243], + [1059,0.232], + [1061,null], + [1063,0.361], + [1065,null], + [1067,0.182], + [1069,0.255], + [1071,0.268], + [1073,0.298], + [1075,0.258], + [1077,0.276], + [1079,null], + [1081,0.282], + [1083,0.258], + [1085,0.352], + [1087,null], + [1089,0.292], + [1091,0.214], + [1093,null], + [1095,0.249], + [1097,0.295], + [1099,0.245], + [1101,0.309], + [1103,0.213], + [1105,0.413], + [1107,0.1], + [1109,null], + [1111,null], + [1113,0.324], + [1115,0.281], + [1117,0.305], + [1119,null], + [1121,0.266], + [1123,0.35], + [1125,0.225], + [1127,0.238], + [1129,0.256], + [1131,0.376], + [1133,0.196], + [2013,null], + [2016,0.263], + [2020,0.302], + [2050,0.208], + [2060,null], + [2068,null], + [2070,0.091], + [2090,0.325], + [2100,0.372], + [2105,0.208], + [2110,0.265], + [2122,null], + [2130,0.164], + [2150,null], + [2158,null], + [2164,null], + [2170,0.257], + [2180,null], + [2185,0.118], + [2188,0.397], + [2195,0.222], + [2198,0.091], + [2220,0.163], + [2230,null], + [2240,null], + [2261,0.189], + [2275,null], + [2282,0.253], + [2290,0.338], + [4001,null], + [4003,0.33], + [4005,0.311], + [4007,0.287], + [4009,null], + [4011,null], + [4012,0.32], + [4013,0.273], + [4015,0.259], + [4017,0.247], + [4019,0.301], + [4021,0.27], + [4023,0.25], + [4025,0.254], + [4027,0.298], + [5001,0.294], + [5003,0.194], + [5005,0.228], + [5007,0.237], + [5009,0.293], + [5011,null], + [5013,null], + [5015,0.191], + [5017,0.251], + [5019,0.268], + [5021,0.252], + [5023,0.271], + [5025,null], + [5027,0.231], + [5029,0.169], + [5031,null], + [5033,0.215], + [5035,0.252], + [5037,0.263], + [5039,0.129], + [5041,0.274], + [5043,null], + [5045,0.244], + [5047,0.196], + [5049,0.219], + [5051,0.228], + [5053,0.254], + [5055,0.254], + [5057,0.259], + [5059,0.238], + [5061,null], + [5063,0.263], + [5065,null], + [5067,0.17], + [5069,0.256], + [5071,0.286], + [5073,null], + [5075,0.241], + [5077,0.237], + [5079,0.328], + [5081,0.214], + [5083,null], + [5085,0.215], + [5087,null], + [5089,null], + [5091,0.189], + [5093,0.289], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,null], + [5105,null], + [5107,0.334], + [5109,0.151], + [5111,0.203], + [5113,0.226], + [5115,0.213], + [5117,0.093], + [5119,0.267], + [5121,0.142], + [5123,0.388], + [5125,0.239], + [5127,null], + [5129,0.198], + [5131,null], + [5133,0.253], + [5135,null], + [5137,0.178], + [5139,0.274], + [5141,null], + [5143,0.224], + [5145,0.172], + [5147,0.246], + [5149,0.243], + [6001,0.322], + [6003,null], + [6005,0.23], + [6007,0.309], + [6009,0.247], + [6011,0.259], + [6013,0.312], + [6015,0.28], + [6017,0.269], + [6019,0.294], + [6021,0.261], + [6023,0.269], + [6025,0.288], + [6027,null], + [6029,0.314], + [6031,0.35], + [6033,0.316], + [6035,0.203], + [6037,0.302], + [6039,0.263], + [6041,0.339], + [6043,null], + [6045,0.276], + [6047,0.302], + [6049,null], + [6051,0.213], + [6053,0.325], + [6055,0.311], + [6057,0.287], + [6059,0.284], + [6061,0.283], + [6063,0.23], + [6065,0.304], + [6067,0.321], + [6069,0.303], + [6071,0.306], + [6073,0.299], + [6075,0.301], + [6077,0.31], + [6079,0.277], + [6081,0.299], + [6083,0.283], + [6085,0.297], + [6087,0.342], + [6089,null], + [6091,null], + [6093,0.293], + [6095,0.309], + [6097,0.304], + [6099,0.3], + [6101,0.282], + [6103,0.32], + [6105,null], + [6107,0.272], + [6109,null], + [6111,0.288], + [6113,0.299], + [6115,0.416], + [8001,0.298], + [8003,0.254], + [8005,0.284], + [8007,0.174], + [8009,null], + [8011,null], + [8013,0.302], + [8014,null], + [8015,0.278], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,null], + [8031,0.302], + [8033,null], + [8035,0.277], + [8037,0.263], + [8039,0.262], + [8041,0.314], + [8043,0.262], + [8045,0.251], + [8047,null], + [8049,0.225], + [8051,0.213], + [8053,null], + [8055,null], + [8057,null], + [8059,0.302], + [8061,null], + [8063,0.393], + [8065,0.266], + [8067,0.259], + [8069,0.297], + [8071,0.259], + [8073,0.294], + [8075,0.219], + [8077,0.267], + [8079,null], + [8081,null], + [8083,0.314], + [8085,0.297], + [8087,0.241], + [8089,0.373], + [8091,0.265], + [8093,0.28], + [8095,0.275], + [8097,0.265], + [8099,0.132], + [8101,0.291], + [8103,0.307], + [8105,0.246], + [8107,0.203], + [8109,null], + [8111,null], + [8113,0.233], + [8115,null], + [8117,0.275], + [8119,0.31], + [8121,null], + [8123,0.254], + [8125,null], + [9001,0.286], + [9003,0.259], + [9005,0.285], + [9007,0.28], + [9009,0.282], + [9011,0.282], + [9013,0.325], + [9015,0.244], + [10001,0.262], + [10003,0.265], + [10005,0.243], + [11001,0.345], + [12001,0.316], + [12003,0.262], + [12005,0.29], + [12007,null], + [12009,0.304], + [12011,0.298], + [12013,null], + [12015,0.264], + [12017,0.309], + [12019,0.288], + [12021,0.268], + [12023,0.247], + [12027,0.24], + [12029,null], + [12031,0.298], + [12033,0.306], + [12035,null], + [12037,null], + [12039,0.298], + [12041,null], + [12043,0.294], + [12045,null], + [12047,0.355], + [12049,null], + [12051,null], + [12053,0.266], + [12055,0.241], + [12057,0.286], + [12059,0.203], + [12061,null], + [12063,0.271], + [12065,null], + [12067,null], + [12069,0.275], + [12071,0.265], + [12073,0.298], + [12075,0.228], + [12077,null], + [12079,null], + [12081,0.279], + [12083,0.276], + [12085,0.276], + [12086,0.289], + [12087,0.247], + [12089,0.275], + [12091,0.278], + [12093,null], + [12095,0.299], + [12097,0.29], + [12099,0.278], + [12101,0.283], + [12103,0.294], + [12105,0.254], + [12107,null], + [12109,0.261], + [12111,0.317], + [12113,0.315], + [12115,0.262], + [12117,0.288], + [12119,0.314], + [12121,null], + [12123,null], + [12125,0.371], + [12127,null], + [12129,null], + [12131,0.243], + [12133,0.401], + [13001,0.215], + [13003,0.275], + [13005,0.263], + [13007,0.301], + [13009,0.266], + [13011,null], + [13013,0.302], + [13015,0.282], + [13017,0.278], + [13019,0.331], + [13021,0.351], + [13023,0.364], + [13025,null], + [13027,null], + [13029,0.306], + [13031,0.222], + [13033,0.362], + [13035,0.21], + [13037,null], + [13039,0.33], + [13043,0.24], + [13045,0.257], + [13047,0.285], + [13049,0.214], + [13051,0.33], + [13053,0.293], + [13055,0.229], + [13057,0.281], + [13059,0.26], + [13061,0.425], + [13063,0.381], + [13065,0.228], + [13067,0.317], + [13069,0.251], + [13071,0.252], + [13073,0.32], + [13075,null], + [13077,0.32], + [13079,0.341], + [13081,null], + [13083,0.274], + [13085,0.162], + [13087,0.28], + [13089,0.372], + [13091,null], + [13093,null], + [13095,0.337], + [13097,0.331], + [13099,null], + [13101,null], + [13103,0.259], + [13105,null], + [13107,0.31], + [13109,0.363], + [13111,0.25], + [13113,0.298], + [13115,0.286], + [13117,0.275], + [13119,0.253], + [13121,0.323], + [13123,0.247], + [13125,null], + [13127,null], + [13129,0.204], + [13131,0.273], + [13133,0.165], + [13135,0.286], + [13137,0.24], + [13139,0.251], + [13141,0.317], + [13143,0.22], + [13145,0.211], + [13147,0.227], + [13149,0.234], + [13151,0.336], + [13153,0.291], + [13155,null], + [13157,0.211], + [13159,0.277], + [13161,null], + [13163,0.276], + [13165,null], + [13167,0.211], + [13169,0.299], + [13171,0.278], + [13173,0.267], + [13175,0.279], + [13177,0.303], + [13179,0.347], + [13181,0.345], + [13183,null], + [13185,0.3], + [13187,null], + [13189,0.171], + [13191,0.212], + [13193,0.323], + [13195,null], + [13197,0.386], + [13199,0.286], + [13201,0.375], + [13205,null], + [13207,0.268], + [13209,null], + [13211,0.317], + [13213,null], + [13215,0.358], + [13217,0.334], + [13219,0.214], + [13221,0.213], + [13223,0.306], + [13225,null], + [13227,0.264], + [13229,0.256], + [13231,0.198], + [13233,0.358], + [13235,null], + [13237,null], + [13239,0.296], + [13241,0.312], + [13243,null], + [13245,0.361], + [13247,0.291], + [13249,null], + [13251,null], + [13253,null], + [13255,0.369], + [13257,0.217], + [13259,0.289], + [13261,0.268], + [13263,null], + [13265,null], + [13267,0.276], + [13269,0.319], + [13271,0.126], + [13273,0.455], + [13275,0.298], + [13277,0.28], + [13279,0.332], + [13281,0.306], + [13283,null], + [13285,0.31], + [13287,null], + [13289,null], + [13291,0.188], + [13293,null], + [13295,0.217], + [13297,0.226], + [13299,null], + [13301,0.14], + [13303,null], + [13305,0.24], + [13307,0.234], + [13309,null], + [13311,null], + [13313,0.232], + [13315,0.112], + [13317,null], + [13319,null], + [13321,null], + [15001,0.264], + [15003,0.321], + [15005,null], + [15007,0.318], + [15009,0.3], + [16001,0.254], + [16003,0.181], + [16005,0.25], + [16007,null], + [16009,0.262], + [16011,0.2], + [16013,0.237], + [16015,0.272], + [16017,0.206], + [16019,0.218], + [16021,0.291], + [16023,null], + [16025,0.562], + [16027,0.224], + [16029,0.262], + [16031,0.247], + [16033,null], + [16035,0.151], + [16037,null], + [16039,0.198], + [16041,0.164], + [16043,null], + [16045,null], + [16047,0.343], + [16049,0.235], + [16051,null], + [16053,null], + [16055,0.241], + [16057,0.262], + [16059,0.273], + [16061,null], + [16063,null], + [16065,0.152], + [16067,0.178], + [16069,0.27], + [16071,null], + [16073,0.216], + [16075,0.219], + [16077,null], + [16079,0.182], + [16081,null], + [16083,0.227], + [16085,0.104], + [16087,null], + [17001,0.246], + [17003,0.431], + [17005,0.269], + [17007,0.278], + [17009,null], + [17011,0.287], + [17013,null], + [17015,null], + [17017,null], + [17019,0.283], + [17021,0.307], + [17023,0.214], + [17025,0.418], + [17027,null], + [17029,0.256], + [17031,0.323], + [17033,0.264], + [17035,null], + [17037,0.313], + [17039,null], + [17041,null], + [17043,0.261], + [17045,null], + [17047,0.222], + [17049,null], + [17051,null], + [17053,0.312], + [17055,0.214], + [17057,0.288], + [17059,null], + [17061,null], + [17063,0.333], + [17065,null], + [17067,0.301], + [17069,null], + [17071,null], + [17073,null], + [17075,0.237], + [17077,0.283], + [17079,0.199], + [17081,0.186], + [17083,0.306], + [17085,0.23], + [17087,0.377], + [17089,0.299], + [17091,0.281], + [17093,0.328], + [17095,0.32], + [17097,0.286], + [17099,0.271], + [17101,null], + [17103,0.263], + [17105,0.268], + [17107,0.238], + [17109,null], + [17111,0.299], + [17113,0.298], + [17115,0.325], + [17117,0.374], + [17119,0.309], + [17121,null], + [17123,null], + [17125,0.303], + [17127,0.237], + [17129,null], + [17131,0.331], + [17133,0.281], + [17135,0.312], + [17137,0.253], + [17139,null], + [17141,null], + [17143,0.297], + [17145,0.198], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,0.168], + [17157,0.336], + [17159,0.216], + [17161,0.294], + [17163,0.333], + [17165,0.257], + [17167,0.281], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,null], + [17179,0.279], + [17181,null], + [17183,0.284], + [17185,0.132], + [17187,0.292], + [17189,null], + [17191,0.238], + [17193,null], + [17195,0.237], + [17197,0.294], + [17199,0.277], + [17201,0.289], + [17203,null], + [18001,0.186], + [18003,0.271], + [18005,0.288], + [18007,null], + [18009,null], + [18011,0.232], + [18013,0.274], + [18015,null], + [18017,0.166], + [18019,0.261], + [18021,0.244], + [18023,0.262], + [18025,null], + [18027,0.176], + [18029,0.187], + [18031,0.259], + [18033,0.217], + [18035,0.271], + [18037,0.261], + [18039,0.226], + [18041,0.258], + [18043,null], + [18045,null], + [18047,0.167], + [18049,0.26], + [18051,0.242], + [18053,null], + [18055,null], + [18057,0.276], + [18059,0.275], + [18061,0.271], + [18063,0.25], + [18065,0.293], + [18067,0.288], + [18069,0.191], + [18071,0.199], + [18073,null], + [18075,0.266], + [18077,null], + [18079,null], + [18081,0.266], + [18083,0.237], + [18085,0.234], + [18087,0.211], + [18089,0.311], + [18091,null], + [18093,0.194], + [18095,0.242], + [18097,0.28], + [18099,0.26], + [18101,0.247], + [18103,0.318], + [18105,0.252], + [18107,0.241], + [18109,null], + [18111,null], + [18113,0.261], + [18115,null], + [18117,null], + [18119,0.186], + [18121,null], + [18123,0.277], + [18125,null], + [18127,0.292], + [18129,0.251], + [18131,0.226], + [18133,null], + [18135,0.277], + [18137,null], + [18139,0.245], + [18141,0.267], + [18143,0.108], + [18145,0.235], + [18147,0.219], + [18149,0.297], + [18151,0.182], + [18153,0.285], + [18155,null], + [18157,0.305], + [18159,0.235], + [18161,null], + [18163,0.257], + [18165,0.227], + [18167,0.23], + [18169,0.307], + [18171,0.287], + [18173,0.303], + [18175,0.305], + [18177,0.174], + [18179,null], + [18181,0.213], + [18183,null], + [19001,null], + [19003,null], + [19005,0.228], + [19007,null], + [19009,null], + [19011,0.312], + [19013,0.291], + [19015,null], + [19017,0.305], + [19019,0.18], + [19021,0.266], + [19023,null], + [19025,null], + [19027,0.237], + [19029,null], + [19031,null], + [19033,0.222], + [19035,null], + [19037,0.164], + [19039,0.225], + [19041,0.243], + [19043,null], + [19045,null], + [19047,0.278], + [19049,0.199], + [19051,null], + [19053,null], + [19055,0.295], + [19057,0.26], + [19059,0.256], + [19061,0.217], + [19063,null], + [19065,null], + [19067,null], + [19069,0.194], + [19071,null], + [19073,0.231], + [19075,null], + [19077,null], + [19079,0.239], + [19081,null], + [19083,0.21], + [19085,0.192], + [19087,0.234], + [19089,null], + [19091,0.248], + [19093,0.194], + [19095,0.241], + [19097,0.213], + [19099,0.209], + [19101,null], + [19103,0.267], + [19105,0.299], + [19107,0.216], + [19109,0.258], + [19111,0.278], + [19113,0.271], + [19115,null], + [19117,null], + [19119,0.132], + [19121,0.305], + [19123,0.254], + [19125,0.2], + [19127,0.288], + [19129,0.327], + [19131,null], + [19133,0.164], + [19135,0.211], + [19137,0.143], + [19139,0.321], + [19141,0.215], + [19143,null], + [19145,0.202], + [19147,null], + [19149,null], + [19151,null], + [19153,0.28], + [19155,0.241], + [19157,0.214], + [19159,0.121], + [19161,0.215], + [19163,0.27], + [19165,0.195], + [19167,0.183], + [19169,0.236], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,0.191], + [19181,0.26], + [19183,0.159], + [19185,null], + [19187,null], + [19189,0.143], + [19191,0.256], + [19193,0.258], + [19195,0.282], + [19197,0.201], + [20001,0.284], + [20003,0.153], + [20005,0.383], + [20007,0.372], + [20009,0.188], + [20011,0.244], + [20013,0.241], + [20015,0.243], + [20017,null], + [20019,null], + [20021,null], + [20023,0.139], + [20025,null], + [20027,null], + [20029,0.396], + [20031,0.215], + [20033,null], + [20035,0.215], + [20037,0.285], + [20039,null], + [20041,0.257], + [20043,null], + [20045,0.312], + [20047,null], + [20049,null], + [20051,0.185], + [20053,0.152], + [20055,0.219], + [20057,0.263], + [20059,0.231], + [20061,null], + [20063,null], + [20065,null], + [20067,0.331], + [20069,null], + [20071,null], + [20073,0.333], + [20075,null], + [20077,null], + [20079,0.278], + [20081,null], + [20083,null], + [20085,null], + [20087,0.359], + [20089,null], + [20091,0.283], + [20093,null], + [20095,null], + [20097,null], + [20099,0.245], + [20101,null], + [20103,0.297], + [20105,null], + [20107,null], + [20109,null], + [20111,0.246], + [20113,0.252], + [20115,null], + [20117,null], + [20119,0.187], + [20121,0.319], + [20123,0.159], + [20125,0.284], + [20127,null], + [20129,0.396], + [20131,0.146], + [20133,0.166], + [20135,null], + [20137,null], + [20139,0.315], + [20141,null], + [20143,0.356], + [20145,null], + [20147,null], + [20149,null], + [20151,0.188], + [20153,0.304], + [20155,0.309], + [20157,null], + [20159,null], + [20161,0.287], + [20163,0.529], + [20165,null], + [20167,null], + [20169,null], + [20171,null], + [20173,0.279], + [20175,0.192], + [20177,0.314], + [20179,null], + [20181,0.376], + [20183,null], + [20185,0.22], + [20187,null], + [20189,0.172], + [20191,0.19], + [20193,0.202], + [20195,null], + [20197,0.217], + [20199,null], + [20201,null], + [20203,0.208], + [20205,null], + [20207,null], + [20209,0.271], + [21001,0.176], + [21003,0.256], + [21005,0.304], + [21007,0.307], + [21009,0.242], + [21011,null], + [21013,0.294], + [21015,0.273], + [21017,0.25], + [21019,0.198], + [21021,0.252], + [21023,0.255], + [21025,null], + [21027,0.232], + [21029,0.236], + [21031,0.234], + [21033,null], + [21035,0.251], + [21037,0.216], + [21039,null], + [21041,null], + [21043,null], + [21045,0.222], + [21047,0.274], + [21049,0.254], + [21051,0.203], + [21053,0.217], + [21055,null], + [21057,null], + [21059,0.23], + [21061,null], + [21063,0.136], + [21065,0.374], + [21067,0.272], + [21069,null], + [21071,0.247], + [21073,null], + [21075,0.215], + [21077,null], + [21079,0.303], + [21081,0.21], + [21083,0.195], + [21085,null], + [21087,0.189], + [21089,0.284], + [21091,null], + [21093,0.241], + [21095,0.242], + [21097,0.221], + [21099,null], + [21101,0.221], + [21103,0.202], + [21105,null], + [21107,null], + [21109,null], + [21111,0.269], + [21113,0.27], + [21115,null], + [21117,0.246], + [21119,0.313], + [21121,0.303], + [21123,null], + [21125,0.25], + [21127,null], + [21129,0.212], + [21131,null], + [21133,0.219], + [21135,0.102], + [21137,null], + [21139,null], + [21141,0.23], + [21143,null], + [21145,0.232], + [21147,null], + [21149,null], + [21151,0.272], + [21153,null], + [21155,0.085], + [21157,null], + [21159,null], + [21161,0.365], + [21163,0.249], + [21165,null], + [21167,null], + [21169,0.322], + [21171,0.338], + [21173,0.241], + [21175,null], + [21177,0.169], + [21179,0.157], + [21181,null], + [21183,0.343], + [21185,0.32], + [21187,null], + [21189,null], + [21191,0.192], + [21193,0.175], + [21195,0.307], + [21197,null], + [21199,0.22], + [21201,null], + [21203,null], + [21205,0.18], + [21207,0.165], + [21209,0.309], + [21211,0.24], + [21213,0.217], + [21215,null], + [21217,0.239], + [21219,null], + [21221,0.122], + [21223,0.247], + [21225,0.219], + [21227,0.222], + [21229,null], + [21231,0.186], + [21233,0.27], + [21235,0.307], + [21237,null], + [21239,0.209], + [22001,0.254], + [22003,null], + [22005,0.318], + [22007,0.314], + [22009,null], + [22011,0.296], + [22013,null], + [22015,0.265], + [22017,0.255], + [22019,0.291], + [22021,null], + [22023,null], + [22025,0.143], + [22027,0.301], + [22029,0.229], + [22031,0.264], + [22033,0.287], + [22035,null], + [22037,0.139], + [22039,null], + [22041,0.262], + [22043,null], + [22045,0.287], + [22047,0.244], + [22049,null], + [22051,0.249], + [22053,0.284], + [22055,0.242], + [22057,0.239], + [22059,0.275], + [22061,0.241], + [22063,0.262], + [22065,0.36], + [22067,null], + [22069,0.281], + [22071,0.304], + [22073,0.309], + [22075,0.275], + [22077,0.314], + [22079,0.278], + [22081,0.38], + [22083,0.309], + [22085,null], + [22087,0.201], + [22089,0.364], + [22091,0.296], + [22093,0.401], + [22095,0.318], + [22097,0.243], + [22099,0.281], + [22101,0.187], + [22103,0.262], + [22105,0.275], + [22107,null], + [22109,0.187], + [22111,null], + [22113,0.215], + [22115,0.34], + [22117,0.263], + [22119,0.318], + [22121,0.327], + [22123,null], + [22125,0.231], + [22127,null], + [23001,0.22], + [23003,0.233], + [23005,0.29], + [23007,0.267], + [23009,0.241], + [23011,0.26], + [23013,0.186], + [23015,0.224], + [23017,0.216], + [23019,0.24], + [23021,0.23], + [23023,0.248], + [23025,0.2], + [23027,0.297], + [23029,0.215], + [23031,0.27], + [24001,0.269], + [24003,0.314], + [24005,0.307], + [24009,0.334], + [24011,0.317], + [24013,0.272], + [24015,null], + [24017,0.303], + [24019,0.305], + [24021,0.311], + [24023,0.235], + [24025,0.343], + [24027,0.301], + [24029,0.255], + [24031,0.324], + [24033,0.378], + [24035,0.313], + [24037,0.374], + [24039,0.207], + [24041,0.246], + [24043,0.26], + [24045,0.23], + [24047,null], + [24510,0.37], + [25001,0.283], + [25003,0.268], + [25005,0.267], + [25007,0.28], + [25009,0.297], + [25011,0.312], + [25013,0.285], + [25015,0.327], + [25017,0.311], + [25019,0.243], + [25021,0.3], + [25023,0.292], + [25025,0.295], + [25027,0.282], + [26001,0.204], + [26003,null], + [26005,0.256], + [26007,0.275], + [26009,0.269], + [26011,0.282], + [26013,null], + [26015,0.297], + [26017,0.3], + [26019,0.246], + [26021,0.287], + [26023,0.189], + [26025,0.305], + [26027,null], + [26029,0.281], + [26031,0.302], + [26033,0.232], + [26035,0.229], + [26037,0.281], + [26039,null], + [26041,null], + [26043,null], + [26045,0.309], + [26047,0.244], + [26049,0.357], + [26051,null], + [26053,0.296], + [26055,0.245], + [26057,0.257], + [26059,0.253], + [26061,0.241], + [26063,null], + [26065,0.313], + [26067,0.319], + [26069,0.303], + [26071,null], + [26073,0.308], + [26075,0.292], + [26077,0.317], + [26079,0.416], + [26081,0.295], + [26083,null], + [26085,0.159], + [26087,null], + [26089,0.271], + [26091,0.273], + [26093,0.291], + [26095,0.11], + [26097,0.21], + [26099,0.27], + [26101,0.275], + [26103,null], + [26105,0.257], + [26107,null], + [26109,null], + [26111,0.305], + [26113,0.175], + [26115,0.289], + [26117,0.278], + [26119,0.301], + [26121,0.273], + [26123,0.301], + [26125,0.286], + [26127,0.206], + [26129,null], + [26131,0.276], + [26133,0.295], + [26135,0.174], + [26137,0.205], + [26139,0.258], + [26141,0.173], + [26143,0.22], + [26145,0.31], + [26147,0.247], + [26149,0.244], + [26151,0.257], + [26153,null], + [26155,0.287], + [26157,null], + [26159,0.272], + [26161,0.331], + [26163,0.367], + [26165,null], + [27001,null], + [27003,0.265], + [27005,0.225], + [27007,0.195], + [27009,0.226], + [27011,null], + [27013,0.225], + [27015,null], + [27017,0.269], + [27019,0.282], + [27021,0.196], + [27023,0.222], + [27025,0.296], + [27027,0.263], + [27029,0.233], + [27031,null], + [27033,null], + [27035,0.26], + [27037,0.283], + [27039,0.318], + [27041,0.135], + [27043,0.314], + [27045,0.155], + [27047,0.218], + [27049,0.243], + [27051,null], + [27053,0.288], + [27055,null], + [27057,0.241], + [27059,0.235], + [27061,0.22], + [27063,0.165], + [27065,0.278], + [27067,0.198], + [27069,null], + [27071,null], + [27073,0.198], + [27075,null], + [27077,null], + [27079,0.266], + [27081,null], + [27083,0.272], + [27085,0.274], + [27087,0.168], + [27089,0.214], + [27091,0.196], + [27093,0.159], + [27095,0.247], + [27097,0.217], + [27099,0.225], + [27101,0.292], + [27103,0.276], + [27105,0.211], + [27107,null], + [27109,0.257], + [27111,0.198], + [27113,null], + [27115,0.207], + [27117,null], + [27119,0.192], + [27121,null], + [27123,0.306], + [27125,null], + [27127,0.167], + [27129,0.212], + [27131,0.27], + [27133,0.257], + [27135,null], + [27137,0.255], + [27139,0.301], + [27141,0.245], + [27143,null], + [27145,0.216], + [27147,0.284], + [27149,0.252], + [27151,null], + [27153,null], + [27155,null], + [27157,0.185], + [27159,null], + [27161,0.211], + [27163,0.289], + [27165,null], + [27167,null], + [27169,0.199], + [27171,0.24], + [27173,0.21], + [28001,0.134], + [28003,0.182], + [28005,null], + [28007,0.271], + [28009,null], + [28011,0.314], + [28013,0.272], + [28015,null], + [28017,0.254], + [28019,null], + [28021,0.145], + [28023,0.173], + [28025,0.252], + [28027,0.275], + [28029,0.215], + [28031,0.201], + [28033,0.285], + [28035,0.248], + [28037,null], + [28039,0.213], + [28041,null], + [28043,0.322], + [28045,null], + [28047,0.247], + [28049,0.335], + [28051,0.259], + [28053,0.276], + [28055,null], + [28057,0.253], + [28059,0.306], + [28061,0.319], + [28063,0.531], + [28065,null], + [28067,0.233], + [28069,null], + [28071,0.219], + [28073,0.224], + [28075,0.262], + [28077,0.173], + [28079,0.227], + [28081,0.218], + [28083,0.269], + [28085,null], + [28087,0.23], + [28089,0.247], + [28091,0.249], + [28093,0.291], + [28095,0.3], + [28097,0.297], + [28099,0.266], + [28101,0.264], + [28103,0.239], + [28105,0.225], + [28107,0.262], + [28109,null], + [28111,0.215], + [28113,0.262], + [28115,0.145], + [28117,0.321], + [28119,null], + [28121,0.237], + [28123,null], + [28125,null], + [28127,0.236], + [28129,0.327], + [28131,0.262], + [28133,0.286], + [28135,0.17], + [28137,0.325], + [28139,0.164], + [28141,0.165], + [28143,0.342], + [28145,0.197], + [28147,0.332], + [28149,0.298], + [28151,0.353], + [28153,0.286], + [28155,0.347], + [28157,0.255], + [28159,0.18], + [28161,null], + [28163,0.306], + [29001,0.282], + [29003,null], + [29005,0.135], + [29007,0.153], + [29009,0.285], + [29011,0.282], + [29013,null], + [29015,null], + [29017,null], + [29019,0.246], + [29021,0.232], + [29023,0.265], + [29025,null], + [29027,0.292], + [29029,0.187], + [29031,0.246], + [29033,0.363], + [29035,0.279], + [29037,0.277], + [29039,null], + [29041,0.296], + [29043,0.214], + [29045,0.248], + [29047,0.285], + [29049,null], + [29051,0.263], + [29053,0.201], + [29055,0.235], + [29057,null], + [29059,0.221], + [29061,0.199], + [29063,null], + [29065,null], + [29067,null], + [29069,0.229], + [29071,0.263], + [29073,null], + [29075,null], + [29077,0.252], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,0.184], + [29093,0.192], + [29095,0.276], + [29097,0.28], + [29099,0.266], + [29101,0.285], + [29103,null], + [29105,0.17], + [29107,null], + [29109,null], + [29111,null], + [29113,0.21], + [29115,null], + [29117,0.301], + [29119,0.201], + [29121,0.304], + [29123,null], + [29125,null], + [29127,0.215], + [29129,null], + [29131,0.184], + [29133,0.28], + [29135,null], + [29137,null], + [29139,0.175], + [29141,0.124], + [29143,0.191], + [29145,0.212], + [29147,0.195], + [29149,0.263], + [29151,null], + [29153,null], + [29155,0.419], + [29157,0.193], + [29159,0.212], + [29161,0.293], + [29163,0.268], + [29165,0.294], + [29167,0.259], + [29169,0.28], + [29171,null], + [29173,0.182], + [29175,null], + [29177,0.221], + [29179,null], + [29181,0.242], + [29183,0.279], + [29185,0.283], + [29186,0.19], + [29187,0.269], + [29189,0.272], + [29195,0.171], + [29197,0.429], + [29199,null], + [29201,0.25], + [29203,null], + [29205,0.158], + [29207,0.222], + [29209,0.27], + [29211,null], + [29213,0.228], + [29215,0.156], + [29217,0.265], + [29219,0.216], + [29221,null], + [29223,0.236], + [29225,0.24], + [29227,null], + [29229,null], + [29510,0.283], + [30001,null], + [30003,null], + [30005,null], + [30007,null], + [30009,0.246], + [30011,null], + [30013,0.251], + [30015,null], + [30017,0.219], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,0.307], + [30029,0.242], + [30031,0.237], + [30033,null], + [30035,0.325], + [30037,null], + [30039,0.151], + [30041,0.287], + [30043,null], + [30045,null], + [30047,null], + [30049,0.249], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,0.249], + [30063,0.245], + [30065,null], + [30067,0.257], + [30069,null], + [30071,null], + [30073,0.065], + [30075,null], + [30077,null], + [30079,null], + [30081,null], + [30083,0.203], + [30085,null], + [30087,0.199], + [30089,null], + [30091,null], + [30093,0.245], + [30095,null], + [30097,null], + [30099,null], + [30101,0.253], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,0.25], + [31001,0.225], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,0.246], + [31015,null], + [31017,null], + [31019,0.229], + [31021,null], + [31023,0.286], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,0.366], + [31035,0.241], + [31037,0.21], + [31039,null], + [31041,0.202], + [31043,null], + [31045,null], + [31047,0.244], + [31049,null], + [31051,null], + [31053,0.194], + [31055,0.265], + [31057,0.432], + [31059,null], + [31061,null], + [31063,0.462], + [31065,0.385], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,0.227], + [31081,0.251], + [31083,null], + [31085,null], + [31087,0.151], + [31089,0.2], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,0.264], + [31103,null], + [31105,null], + [31107,0.105], + [31109,0.275], + [31111,0.289], + [31113,null], + [31115,null], + [31117,null], + [31119,0.228], + [31121,0.333], + [31123,0.214], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,0.142], + [31137,null], + [31139,null], + [31141,null], + [31143,0.102], + [31145,null], + [31147,0.161], + [31149,null], + [31151,0.224], + [31153,0.28], + [31155,0.147], + [31157,0.279], + [31159,0.278], + [31161,null], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,0.221], + [31179,null], + [31181,null], + [31183,null], + [31185,0.256], + [32001,0.264], + [32003,0.293], + [32005,0.274], + [32007,0.28], + [32009,null], + [32011,null], + [32013,0.236], + [32015,0.195], + [32017,0.323], + [32019,0.291], + [32021,0.325], + [32023,0.293], + [32027,null], + [32029,null], + [32031,0.271], + [32033,null], + [32510,0.2], + [33001,0.237], + [33003,0.196], + [33005,0.226], + [33007,null], + [33009,0.24], + [33011,0.263], + [33013,0.246], + [33015,0.278], + [33017,0.268], + [33019,0.248], + [34001,0.278], + [34003,0.271], + [34005,0.277], + [34007,0.278], + [34009,0.27], + [34011,0.214], + [34013,0.309], + [34015,0.275], + [34017,0.277], + [34019,0.298], + [34021,0.299], + [34023,0.26], + [34025,0.257], + [34027,0.243], + [34029,0.256], + [34031,0.254], + [34033,0.256], + [34035,0.275], + [34037,0.258], + [34039,0.259], + [34041,0.258], + [35001,0.314], + [35003,null], + [35005,0.263], + [35006,0.266], + [35007,0.21], + [35009,0.264], + [35011,null], + [35013,0.29], + [35015,0.284], + [35017,0.254], + [35019,null], + [35021,null], + [35023,null], + [35025,0.224], + [35027,0.273], + [35028,0.493], + [35029,0.277], + [35031,0.432], + [35033,null], + [35035,0.329], + [35037,0.163], + [35039,0.389], + [35041,0.373], + [35043,0.357], + [35045,0.291], + [35047,0.29], + [35049,0.337], + [35051,null], + [35053,0.353], + [35055,0.333], + [35057,0.27], + [35059,0.169], + [35061,0.251], + [36001,0.299], + [36003,0.293], + [36005,0.405], + [36007,0.29], + [36009,0.259], + [36011,0.205], + [36013,null], + [36015,0.335], + [36017,0.254], + [36019,0.24], + [36021,0.255], + [36023,null], + [36025,0.226], + [36027,0.323], + [36029,0.262], + [36031,0.294], + [36033,null], + [36035,null], + [36037,0.298], + [36039,0.278], + [36041,null], + [36043,0.27], + [36045,0.318], + [36047,0.336], + [36049,0.211], + [36051,0.274], + [36053,0.236], + [36055,0.312], + [36057,0.308], + [36059,0.259], + [36061,0.306], + [36063,0.278], + [36065,0.262], + [36067,0.286], + [36069,0.289], + [36071,0.297], + [36073,0.255], + [36075,0.327], + [36077,0.272], + [36079,0.276], + [36081,0.296], + [36083,0.305], + [36085,0.29], + [36087,0.264], + [36089,null], + [36091,0.285], + [36093,0.321], + [36095,null], + [36097,0.304], + [36099,0.291], + [36101,0.331], + [36103,0.27], + [36105,null], + [36107,0.305], + [36109,0.321], + [36111,0.32], + [36113,0.267], + [36115,0.322], + [36117,0.286], + [36119,0.296], + [36121,0.299], + [36123,null], + [37001,0.271], + [37003,0.214], + [37005,0.311], + [37007,0.302], + [37009,null], + [37011,0.185], + [37013,0.311], + [37015,null], + [37017,0.383], + [37019,0.276], + [37021,0.279], + [37023,0.238], + [37025,0.249], + [37027,0.225], + [37029,null], + [37031,0.191], + [37033,0.225], + [37035,0.263], + [37037,0.271], + [37039,0.28], + [37041,null], + [37043,null], + [37045,0.228], + [37047,0.267], + [37049,0.262], + [37051,0.329], + [37053,0.232], + [37055,0.226], + [37057,0.264], + [37059,0.264], + [37061,0.297], + [37063,0.34], + [37065,0.365], + [37067,0.263], + [37069,0.266], + [37071,0.274], + [37073,null], + [37075,0.364], + [37077,0.274], + [37079,null], + [37081,0.292], + [37083,0.294], + [37085,0.261], + [37087,0.253], + [37089,0.254], + [37091,null], + [37093,null], + [37095,null], + [37097,0.238], + [37099,0.21], + [37101,0.287], + [37103,null], + [37105,0.273], + [37107,0.247], + [37109,0.232], + [37111,0.178], + [37113,0.251], + [37115,null], + [37117,0.31], + [37119,0.308], + [37121,0.185], + [37123,0.232], + [37125,0.246], + [37127,0.269], + [37129,0.266], + [37131,0.42], + [37133,0.29], + [37135,0.355], + [37137,null], + [37139,0.27], + [37141,0.323], + [37143,0.223], + [37145,null], + [37147,0.302], + [37149,0.323], + [37151,0.273], + [37153,0.261], + [37155,0.317], + [37157,0.246], + [37159,0.297], + [37161,0.212], + [37163,0.285], + [37165,0.245], + [37167,0.266], + [37169,0.199], + [37171,0.243], + [37173,0.34], + [37175,0.173], + [37177,null], + [37179,0.244], + [37181,0.285], + [37183,0.286], + [37185,0.231], + [37187,0.315], + [37189,0.217], + [37191,0.28], + [37193,0.22], + [37195,0.277], + [37197,null], + [37199,0.262], + [38001,null], + [38003,0.091], + [38005,0.282], + [38007,0.128], + [38009,0.272], + [38011,0.169], + [38013,0.241], + [38015,0.239], + [38017,0.266], + [38019,null], + [38021,0.079], + [38023,0.12], + [38025,null], + [38027,null], + [38029,null], + [38031,0.154], + [38033,0.226], + [38035,0.276], + [38037,null], + [38039,0.262], + [38041,null], + [38043,null], + [38045,0.081], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,0.212], + [38057,0.363], + [38059,0.246], + [38061,0.376], + [38063,null], + [38065,0.43], + [38067,0.101], + [38069,null], + [38071,0.203], + [38073,null], + [38075,null], + [38077,0.227], + [38079,0.444], + [38081,null], + [38083,null], + [38085,null], + [38087,null], + [38089,0.233], + [38091,null], + [38093,0.307], + [38095,null], + [38097,0.258], + [38099,0.31], + [38101,0.242], + [38103,0.171], + [38105,0.22], + [39001,0.246], + [39003,0.268], + [39005,0.199], + [39007,0.243], + [39009,0.293], + [39011,0.274], + [39013,0.252], + [39015,0.321], + [39017,0.281], + [39019,null], + [39021,0.314], + [39023,0.285], + [39025,0.282], + [39027,0.226], + [39029,0.281], + [39031,0.269], + [39033,0.238], + [39035,0.28], + [39037,0.241], + [39039,0.28], + [39041,0.289], + [39043,0.28], + [39045,0.291], + [39047,0.214], + [39049,0.319], + [39051,0.223], + [39053,0.232], + [39055,0.203], + [39057,0.301], + [39059,0.145], + [39061,0.284], + [39063,0.246], + [39065,0.261], + [39067,0.248], + [39069,0.274], + [39071,null], + [39073,0.211], + [39075,0.157], + [39077,0.305], + [39079,0.238], + [39081,0.281], + [39083,0.202], + [39085,0.258], + [39087,null], + [39089,0.295], + [39091,0.273], + [39093,0.276], + [39095,0.26], + [39097,0.219], + [39099,0.282], + [39101,0.265], + [39103,0.25], + [39105,null], + [39107,0.263], + [39109,0.323], + [39111,null], + [39113,0.296], + [39115,null], + [39117,0.215], + [39119,0.215], + [39121,0.395], + [39123,null], + [39125,0.119], + [39127,0.348], + [39129,0.276], + [39131,0.187], + [39133,0.225], + [39135,null], + [39137,0.235], + [39139,0.252], + [39141,0.305], + [39143,0.287], + [39145,0.316], + [39147,0.278], + [39149,null], + [39151,0.274], + [39153,0.254], + [39155,0.229], + [39157,0.202], + [39159,0.262], + [39161,0.302], + [39163,0.236], + [39165,0.29], + [39167,null], + [39169,0.213], + [39171,null], + [39173,0.23], + [39175,null], + [40001,0.22], + [40003,null], + [40005,null], + [40007,0.308], + [40009,0.233], + [40011,null], + [40013,0.307], + [40015,0.294], + [40017,0.272], + [40019,null], + [40021,0.245], + [40023,0.148], + [40025,null], + [40027,0.268], + [40029,null], + [40031,0.266], + [40033,null], + [40035,0.124], + [40037,0.207], + [40039,0.204], + [40041,0.202], + [40043,null], + [40045,null], + [40047,0.243], + [40049,0.24], + [40051,0.252], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,0.206], + [40063,0.216], + [40065,0.342], + [40067,null], + [40069,null], + [40071,0.273], + [40073,null], + [40075,0.143], + [40077,null], + [40079,0.235], + [40081,0.237], + [40083,0.199], + [40085,0.239], + [40087,0.226], + [40089,0.176], + [40091,0.227], + [40093,null], + [40095,0.132], + [40097,0.277], + [40099,null], + [40101,0.194], + [40103,null], + [40105,null], + [40107,null], + [40109,0.278], + [40111,0.21], + [40113,null], + [40115,null], + [40117,null], + [40119,0.213], + [40121,0.276], + [40123,0.256], + [40125,0.219], + [40127,0.231], + [40129,0.157], + [40131,0.243], + [40133,null], + [40135,0.235], + [40137,0.256], + [40139,0.134], + [40141,null], + [40143,0.259], + [40145,0.247], + [40147,0.216], + [40149,0.213], + [40151,0.195], + [40153,0.202], + [41001,null], + [41003,0.293], + [41005,0.289], + [41007,0.227], + [41009,0.275], + [41011,0.302], + [41013,0.292], + [41015,0.264], + [41017,0.262], + [41019,0.236], + [41021,null], + [41023,null], + [41025,0.302], + [41027,0.232], + [41029,0.29], + [41031,0.326], + [41033,0.254], + [41035,0.268], + [41037,null], + [41039,0.306], + [41041,0.283], + [41043,0.28], + [41045,null], + [41047,0.272], + [41049,null], + [41051,0.316], + [41053,0.288], + [41055,null], + [41057,0.329], + [41059,0.278], + [41061,0.237], + [41063,null], + [41065,0.22], + [41067,0.329], + [41069,null], + [41071,0.25], + [42001,null], + [42003,0.276], + [42005,0.255], + [42007,0.265], + [42009,null], + [42011,0.273], + [42013,0.273], + [42015,0.228], + [42017,0.249], + [42019,0.273], + [42021,0.24], + [42023,null], + [42025,0.281], + [42027,0.255], + [42029,0.265], + [42031,null], + [42033,0.261], + [42035,0.246], + [42037,0.251], + [42039,0.215], + [42041,0.225], + [42043,0.243], + [42045,0.284], + [42047,null], + [42049,0.235], + [42051,0.235], + [42053,null], + [42055,0.27], + [42057,0.253], + [42059,0.247], + [42061,0.246], + [42063,0.202], + [42065,0.248], + [42067,0.288], + [42069,0.235], + [42071,0.254], + [42073,0.27], + [42075,0.234], + [42077,0.295], + [42079,0.236], + [42081,0.283], + [42083,0.211], + [42085,0.256], + [42087,0.288], + [42089,0.274], + [42091,0.259], + [42093,null], + [42095,0.283], + [42097,0.261], + [42099,0.256], + [42101,0.318], + [42103,0.253], + [42105,0.26], + [42107,0.277], + [42109,0.198], + [42111,0.271], + [42113,null], + [42115,0.215], + [42117,0.225], + [42119,0.242], + [42121,0.18], + [42123,0.253], + [42125,0.232], + [42127,0.268], + [42129,0.252], + [42131,null], + [42133,0.291], + [44001,0.339], + [44003,0.246], + [44005,0.243], + [44007,0.281], + [44009,0.26], + [45001,0.334], + [45003,0.31], + [45005,null], + [45007,0.258], + [45009,null], + [45011,0.329], + [45013,0.255], + [45015,0.283], + [45017,null], + [45019,0.273], + [45021,0.263], + [45023,0.23], + [45025,null], + [45027,0.354], + [45029,0.235], + [45031,0.297], + [45033,0.202], + [45035,0.296], + [45037,null], + [45039,0.341], + [45041,0.28], + [45043,0.297], + [45045,0.264], + [45047,0.257], + [45049,0.279], + [45051,0.236], + [45053,0.296], + [45055,0.28], + [45057,0.234], + [45059,0.293], + [45061,0.17], + [45063,0.241], + [45065,null], + [45067,0.228], + [45069,0.158], + [45071,0.236], + [45073,0.276], + [45075,0.341], + [45077,0.273], + [45079,0.275], + [45081,0.216], + [45083,0.256], + [45085,0.304], + [45087,0.311], + [45089,0.307], + [45091,0.292], + [46003,null], + [46005,null], + [46007,0.182], + [46009,null], + [46011,0.262], + [46013,0.19], + [46015,0.299], + [46017,null], + [46019,0.18], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,0.249], + [46031,null], + [46033,null], + [46035,0.206], + [46037,0.148], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,0.144], + [46053,null], + [46055,null], + [46057,0.301], + [46059,null], + [46061,0.235], + [46063,null], + [46065,0.227], + [46067,null], + [46069,null], + [46071,0.246], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,0.203], + [46083,0.241], + [46085,null], + [46087,null], + [46089,0.133], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,0.221], + [46101,0.273], + [46102,null], + [46103,0.231], + [46105,0.177], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,0.257], + [46123,0.214], + [46125,null], + [46127,0.181], + [46129,0.152], + [46135,0.259], + [46137,null], + [47001,0.209], + [47003,0.206], + [47005,null], + [47007,0.234], + [47009,0.257], + [47011,0.226], + [47013,0.162], + [47015,null], + [47017,0.245], + [47019,0.162], + [47021,0.321], + [47023,null], + [47025,null], + [47027,null], + [47029,null], + [47031,null], + [47033,0.185], + [47035,0.234], + [47037,0.268], + [47039,null], + [47041,0.242], + [47043,0.206], + [47045,0.244], + [47047,0.23], + [47049,0.203], + [47051,0.269], + [47053,0.244], + [47055,null], + [47057,null], + [47059,0.234], + [47061,0.323], + [47063,0.21], + [47065,0.246], + [47067,null], + [47069,0.268], + [47071,0.268], + [47073,0.245], + [47075,0.229], + [47077,0.232], + [47079,null], + [47081,0.255], + [47083,0.178], + [47085,null], + [47087,0.224], + [47089,0.199], + [47091,0.162], + [47093,0.256], + [47095,0.132], + [47097,0.289], + [47099,0.222], + [47101,null], + [47103,null], + [47105,0.235], + [47107,0.205], + [47109,0.347], + [47111,null], + [47113,0.272], + [47115,0.281], + [47117,0.25], + [47119,0.228], + [47121,null], + [47123,null], + [47125,0.295], + [47127,0.238], + [47129,0.391], + [47131,0.202], + [47133,0.229], + [47135,null], + [47137,0.41], + [47139,0.255], + [47141,0.287], + [47143,null], + [47145,0.292], + [47147,0.263], + [47149,0.253], + [47151,0.275], + [47153,null], + [47155,0.218], + [47157,0.308], + [47159,null], + [47161,null], + [47163,0.23], + [47165,0.242], + [47167,0.269], + [47169,0.293], + [47171,null], + [47173,0.201], + [47175,0.237], + [47177,0.218], + [47179,0.217], + [47181,0.238], + [47183,0.265], + [47185,0.271], + [47187,0.225], + [47189,0.21], + [48001,null], + [48003,0.293], + [48005,0.238], + [48007,null], + [48009,null], + [48011,null], + [48013,null], + [48015,0.24], + [48017,null], + [48019,null], + [48021,0.236], + [48023,null], + [48025,null], + [48027,null], + [48029,0.284], + [48031,null], + [48033,null], + [48035,null], + [48037,0.271], + [48039,0.282], + [48041,null], + [48043,0.252], + [48045,null], + [48047,null], + [48049,0.223], + [48051,0.296], + [48053,0.226], + [48055,0.219], + [48057,0.26], + [48059,null], + [48061,0.285], + [48063,null], + [48065,0.246], + [48067,0.268], + [48069,null], + [48071,0.244], + [48073,0.217], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,0.263], + [48085,0.28], + [48087,null], + [48089,0.29], + [48091,0.258], + [48093,null], + [48095,null], + [48097,null], + [48099,0.257], + [48101,null], + [48103,0.396], + [48105,null], + [48107,0.31], + [48109,null], + [48111,null], + [48113,0.281], + [48115,null], + [48117,0.221], + [48119,null], + [48121,0.301], + [48123,0.265], + [48125,null], + [48127,null], + [48129,null], + [48131,0.218], + [48133,0.234], + [48135,0.263], + [48137,null], + [48139,0.266], + [48141,0.271], + [48143,null], + [48145,null], + [48147,null], + [48149,0.196], + [48151,null], + [48153,0.139], + [48155,null], + [48157,0.32], + [48159,null], + [48161,null], + [48163,0.317], + [48165,0.183], + [48167,0.3], + [48169,null], + [48171,0.287], + [48173,null], + [48175,0.292], + [48177,0.271], + [48179,null], + [48181,0.281], + [48183,0.253], + [48185,null], + [48187,0.295], + [48189,0.143], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,null], + [48201,0.292], + [48203,0.271], + [48205,null], + [48207,null], + [48209,0.262], + [48211,null], + [48213,null], + [48215,0.306], + [48217,0.263], + [48219,0.22], + [48221,0.297], + [48223,0.209], + [48225,0.235], + [48227,0.252], + [48229,null], + [48231,0.303], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,0.294], + [48243,null], + [48245,0.288], + [48247,null], + [48249,0.23], + [48251,0.234], + [48253,0.176], + [48255,null], + [48257,0.272], + [48259,0.28], + [48261,null], + [48263,null], + [48265,0.232], + [48267,0.269], + [48269,null], + [48271,0.189], + [48273,null], + [48275,null], + [48277,0.315], + [48279,0.159], + [48281,0.29], + [48283,0.302], + [48285,0.277], + [48287,0.14], + [48289,null], + [48291,null], + [48293,0.395], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,0.231], + [48305,null], + [48307,null], + [48309,0.284], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,0.23], + [48323,null], + [48325,null], + [48327,null], + [48329,0.24], + [48331,0.269], + [48333,null], + [48335,null], + [48337,0.315], + [48339,0.259], + [48341,null], + [48343,0.369], + [48345,null], + [48347,0.191], + [48349,0.322], + [48351,null], + [48353,null], + [48355,0.253], + [48357,null], + [48359,null], + [48361,0.268], + [48363,null], + [48365,0.268], + [48367,0.24], + [48369,null], + [48371,0.15], + [48373,0.283], + [48375,0.28], + [48377,null], + [48379,null], + [48381,0.267], + [48383,null], + [48385,null], + [48387,null], + [48389,0.18], + [48391,null], + [48393,null], + [48395,0.297], + [48397,0.298], + [48399,null], + [48401,null], + [48403,null], + [48405,null], + [48407,null], + [48409,0.276], + [48411,null], + [48413,null], + [48415,0.184], + [48417,null], + [48419,0.256], + [48421,null], + [48423,0.222], + [48425,0.18], + [48427,0.261], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,0.296], + [48439,0.3], + [48441,0.221], + [48443,null], + [48445,0.207], + [48447,null], + [48449,null], + [48451,0.243], + [48453,0.282], + [48455,null], + [48457,null], + [48459,null], + [48461,null], + [48463,null], + [48465,null], + [48467,0.248], + [48469,0.232], + [48471,0.29], + [48473,0.228], + [48475,null], + [48477,0.299], + [48479,0.258], + [48481,0.301], + [48483,null], + [48485,0.261], + [48487,null], + [48489,0.3], + [48491,0.305], + [48493,null], + [48495,null], + [48497,0.234], + [48499,0.253], + [48501,null], + [48503,0.17], + [48505,0.269], + [48507,0.348], + [49001,null], + [49003,0.207], + [49005,0.222], + [49007,null], + [49009,null], + [49011,0.254], + [49013,null], + [49015,null], + [49017,null], + [49019,0.244], + [49021,0.205], + [49023,0.167], + [49025,0.154], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.256], + [49037,0.316], + [49039,null], + [49041,0.236], + [49043,0.253], + [49045,0.383], + [49047,0.276], + [49049,0.242], + [49051,0.191], + [49053,0.213], + [49055,null], + [49057,0.267], + [50001,0.221], + [50003,0.248], + [50005,0.28], + [50007,0.282], + [50009,0.238], + [50011,0.236], + [50013,null], + [50015,0.314], + [50017,0.247], + [50019,0.182], + [50021,0.239], + [50023,0.23], + [50025,0.302], + [50027,0.245], + [51001,0.231], + [51003,0.283], + [51005,0.414], + [51007,null], + [51009,0.194], + [51011,0.292], + [51013,0.32], + [51015,0.228], + [51017,null], + [51019,0.233], + [51021,null], + [51023,0.286], + [51025,null], + [51027,null], + [51029,null], + [51031,0.291], + [51033,0.272], + [51035,null], + [51036,null], + [51037,null], + [51041,0.304], + [51043,0.313], + [51045,null], + [51047,0.248], + [51049,0.168], + [51051,null], + [51053,null], + [51057,null], + [51059,0.313], + [51061,0.314], + [51063,null], + [51065,0.342], + [51067,0.238], + [51069,0.233], + [51071,0.18], + [51073,0.301], + [51075,0.236], + [51077,null], + [51079,null], + [51081,null], + [51083,0.268], + [51085,0.236], + [51087,0.281], + [51089,0.275], + [51091,null], + [51093,0.261], + [51095,0.262], + [51097,null], + [51099,0.324], + [51101,0.412], + [51103,0.167], + [51105,0.329], + [51107,0.317], + [51109,null], + [51111,0.265], + [51113,0.215], + [51115,null], + [51117,0.297], + [51119,0.204], + [51121,0.24], + [51125,0.328], + [51127,null], + [51131,0.26], + [51133,null], + [51135,0.3], + [51137,0.284], + [51139,0.212], + [51141,0.316], + [51143,0.329], + [51145,0.258], + [51147,0.181], + [51149,null], + [51153,0.286], + [51155,0.281], + [51157,null], + [51159,0.263], + [51161,0.3], + [51163,null], + [51165,null], + [51167,0.214], + [51169,null], + [51171,null], + [51173,0.281], + [51175,0.295], + [51177,0.332], + [51179,0.341], + [51181,null], + [51183,0.269], + [51185,0.276], + [51187,0.359], + [51191,0.285], + [51193,0.237], + [51195,0.281], + [51197,0.226], + [51199,0.335], + [51510,0.326], + [51520,0.267], + [51530,0.315], + [51540,0.258], + [51550,0.329], + [51570,0.215], + [51580,null], + [51590,0.215], + [51595,0.301], + [51600,0.287], + [51610,0.323], + [51620,0.424], + [51630,0.284], + [51640,null], + [51650,0.332], + [51660,0.274], + [51670,0.483], + [51678,null], + [51680,0.264], + [51683,0.259], + [51685,0.237], + [51690,0.253], + [51700,0.301], + [51710,0.305], + [51720,0.272], + [51730,0.226], + [51735,0.196], + [51740,0.377], + [51750,0.222], + [51760,0.286], + [51770,0.259], + [51775,0.212], + [51790,0.225], + [51800,0.296], + [51810,0.316], + [51820,0.248], + [51830,0.227], + [51840,0.207], + [53001,null], + [53003,0.17], + [53005,0.296], + [53007,0.258], + [53009,0.285], + [53011,0.264], + [53013,null], + [53015,0.301], + [53017,null], + [53019,0.296], + [53021,0.285], + [53023,null], + [53025,0.225], + [53027,0.289], + [53029,0.32], + [53031,0.294], + [53033,0.29], + [53035,0.303], + [53037,0.271], + [53039,0.328], + [53041,0.238], + [53043,null], + [53045,0.24], + [53047,null], + [53049,0.306], + [53051,null], + [53053,0.294], + [53055,0.34], + [53057,0.254], + [53059,0.463], + [53061,0.283], + [53063,0.252], + [53065,null], + [53067,0.298], + [53069,null], + [53071,null], + [53073,0.243], + [53075,0.215], + [53077,0.276], + [54001,0.352], + [54003,0.28], + [54005,0.335], + [54007,0.218], + [54009,0.256], + [54011,0.258], + [54013,null], + [54015,0.416], + [54017,0.07], + [54019,null], + [54021,0.217], + [54023,0.273], + [54025,0.289], + [54027,null], + [54029,0.273], + [54031,null], + [54033,null], + [54035,0.201], + [54037,0.368], + [54039,0.263], + [54041,0.17], + [54043,0.253], + [54045,0.345], + [54047,null], + [54049,0.295], + [54051,0.327], + [54053,0.308], + [54055,0.328], + [54057,0.23], + [54059,0.216], + [54061,null], + [54063,null], + [54065,0.278], + [54067,0.342], + [54069,0.237], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,0.269], + [54081,null], + [54083,0.271], + [54085,0.276], + [54087,0.212], + [54089,0.35], + [54091,null], + [54093,null], + [54095,0.239], + [54097,0.25], + [54099,0.294], + [54101,0.156], + [54103,null], + [54105,null], + [54107,0.265], + [54109,0.426], + [55001,0.117], + [55003,0.294], + [55005,0.199], + [55007,0.254], + [55009,0.237], + [55011,0.208], + [55013,null], + [55015,0.22], + [55017,0.177], + [55019,0.202], + [55021,0.188], + [55023,null], + [55025,0.275], + [55027,0.249], + [55029,0.215], + [55031,0.225], + [55033,0.185], + [55035,0.239], + [55037,null], + [55039,0.221], + [55041,null], + [55043,0.213], + [55045,null], + [55047,null], + [55049,0.164], + [55051,null], + [55053,0.231], + [55055,0.263], + [55057,null], + [55059,0.256], + [55061,null], + [55063,0.283], + [55065,0.148], + [55067,0.171], + [55069,null], + [55071,0.237], + [55073,0.266], + [55075,0.175], + [55077,0.182], + [55078,0.229], + [55079,0.33], + [55081,0.175], + [55083,null], + [55085,0.182], + [55087,0.241], + [55089,0.262], + [55091,null], + [55093,0.289], + [55095,0.273], + [55097,0.258], + [55099,0.226], + [55101,0.262], + [55103,null], + [55105,0.279], + [55107,null], + [55109,0.254], + [55111,0.238], + [55113,null], + [55115,0.237], + [55117,0.222], + [55119,0.222], + [55121,0.231], + [55123,null], + [55125,0.191], + [55127,0.253], + [55129,0.179], + [55131,0.199], + [55133,0.247], + [55135,0.246], + [55137,0.239], + [55139,0.234], + [55141,0.253], + [56001,0.322], + [56003,0.303], + [56005,0.282], + [56007,0.147], + [56009,0.266], + [56011,0.168], + [56013,0.223], + [56015,0.238], + [56017,0.282], + [56019,null], + [56021,0.298], + [56023,0.212], + [56025,0.24], + [56027,null], + [56029,0.225], + [56031,0.33], + [56033,0.217], + [56035,0.173], + [56037,0.272], + [56039,0.253], + [56041,0.159], + [56043,0.269], + [56045,0.293] + ] +} diff --git a/data/regional/united-states/economics/companies/us-firms-owned-hispanic-2007.json b/data/regional/united-states/economics/companies/us-firms-owned-hispanic-2007.json new file mode 100644 index 0000000..f5b504d --- /dev/null +++ b/data/regional/united-states/economics/companies/us-firms-owned-hispanic-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Hispanic Owned Firms", + "description" : "Percent of firms that are hispanic owned.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies","firms","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.firms.owned.hispanic.2007"], + [1001,0.007], + [1003,0.013], + [1005,null], + [1007,null], + [1009,null], + [1011,null], + [1013,null], + [1015,0.005], + [1017,null], + [1019,null], + [1021,null], + [1023,null], + [1025,null], + [1027,null], + [1029,null], + [1031,0.007], + [1033,null], + [1035,null], + [1037,null], + [1039,null], + [1041,null], + [1043,null], + [1045,null], + [1047,null], + [1049,null], + [1051,null], + [1053,null], + [1055,0.006], + [1057,null], + [1059,null], + [1061,null], + [1063,null], + [1065,null], + [1067,null], + [1069,0.013], + [1071,null], + [1073,0.013], + [1075,null], + [1077,null], + [1079,0.011], + [1081,null], + [1083,0.013], + [1085,null], + [1087,null], + [1089,0.013], + [1091,null], + [1093,null], + [1095,0.01], + [1097,0.012], + [1099,null], + [1101,0.013], + [1103,null], + [1105,null], + [1107,null], + [1109,null], + [1111,null], + [1113,0.01], + [1115,null], + [1117,0.02], + [1119,null], + [1121,null], + [1123,null], + [1125,null], + [1127,null], + [1129,null], + [1131,null], + [1133,null], + [2013,null], + [2016,null], + [2020,0.031], + [2050,null], + [2060,null], + [2068,null], + [2070,null], + [2090,0.023], + [2100,null], + [2105,null], + [2110,null], + [2122,null], + [2130,null], + [2150,0.088], + [2158,null], + [2164,null], + [2170,null], + [2180,null], + [2185,null], + [2188,null], + [2195,null], + [2198,null], + [2220,null], + [2230,null], + [2240,null], + [2261,null], + [2275,null], + [2282,null], + [2290,null], + [4001,0.062], + [4003,0.155], + [4005,0.056], + [4007,null], + [4009,null], + [4011,null], + [4012,null], + [4013,0.092], + [4015,0.046], + [4017,null], + [4019,0.141], + [4021,0.127], + [4023,0.471], + [4025,0.069], + [4027,0.339], + [5001,null], + [5003,null], + [5005,null], + [5007,0.052], + [5009,null], + [5011,0.042], + [5013,null], + [5015,null], + [5017,null], + [5019,null], + [5021,null], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,0.013], + [5033,0.018], + [5035,null], + [5037,null], + [5039,null], + [5041,null], + [5043,null], + [5045,0.036], + [5047,null], + [5049,null], + [5051,0.023], + [5053,null], + [5055,null], + [5057,null], + [5059,null], + [5061,null], + [5063,0.008], + [5065,null], + [5067,null], + [5069,null], + [5071,null], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,0.022], + [5087,null], + [5089,null], + [5091,null], + [5093,null], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,null], + [5105,null], + [5107,null], + [5109,null], + [5111,null], + [5113,null], + [5115,0.018], + [5117,null], + [5119,0.021], + [5121,null], + [5123,0.014], + [5125,null], + [5127,null], + [5129,null], + [5131,0.022], + [5133,0.036], + [5135,null], + [5137,null], + [5139,null], + [5141,null], + [5143,0.044], + [5145,0.007], + [5147,null], + [5149,null], + [6001,0.089], + [6003,null], + [6005,null], + [6007,null], + [6009,null], + [6011,null], + [6013,0.109], + [6015,null], + [6017,0.065], + [6019,0.214], + [6021,0.166], + [6023,null], + [6025,0.522], + [6027,null], + [6029,0.24], + [6031,0.271], + [6033,null], + [6035,null], + [6037,0.216], + [6039,0.237], + [6041,null], + [6043,null], + [6045,null], + [6047,0.248], + [6049,null], + [6051,null], + [6053,0.218], + [6055,0.103], + [6057,null], + [6059,0.124], + [6061,0.053], + [6063,null], + [6065,0.24], + [6067,0.085], + [6069,null], + [6071,0.277], + [6073,0.152], + [6075,0.066], + [6077,0.174], + [6079,0.079], + [6081,0.117], + [6083,0.139], + [6085,0.108], + [6087,null], + [6089,null], + [6091,null], + [6093,0.052], + [6095,0.113], + [6097,0.078], + [6099,0.162], + [6101,null], + [6103,null], + [6105,null], + [6107,0.261], + [6109,null], + [6111,0.15], + [6113,0.112], + [6115,0.11], + [8001,0.14], + [8003,0.194], + [8005,0.062], + [8007,null], + [8009,null], + [8011,null], + [8013,0.035], + [8014,0.02], + [8015,0.04], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,null], + [8031,0.087], + [8033,null], + [8035,0.031], + [8037,0.036], + [8039,null], + [8041,0.049], + [8043,null], + [8045,0.057], + [8047,null], + [8049,null], + [8051,null], + [8053,null], + [8055,null], + [8057,null], + [8059,0.052], + [8061,null], + [8063,null], + [8065,null], + [8067,null], + [8069,0.036], + [8071,0.13], + [8073,null], + [8075,0.029], + [8077,0.04], + [8079,null], + [8081,null], + [8083,null], + [8085,0.051], + [8087,0.079], + [8089,0.121], + [8091,null], + [8093,null], + [8095,null], + [8097,0.029], + [8099,null], + [8101,0.171], + [8103,null], + [8105,0.161], + [8107,null], + [8109,null], + [8111,null], + [8113,0.031], + [8115,null], + [8117,null], + [8119,null], + [8121,null], + [8123,null], + [8125,null], + [9001,0.059], + [9003,0.041], + [9005,0.011], + [9007,0.015], + [9009,0.044], + [9011,0.026], + [9013,0.018], + [9015,null], + [10001,0.025], + [10003,0.021], + [10005,0.017], + [11001,0.061], + [12001,0.067], + [12003,null], + [12005,0.027], + [12007,null], + [12009,0.053], + [12011,0.221], + [12013,null], + [12015,null], + [12017,null], + [12019,0.045], + [12021,0.155], + [12023,0.034], + [12027,null], + [12029,null], + [12031,0.063], + [12033,0.024], + [12035,null], + [12037,null], + [12039,null], + [12041,null], + [12043,null], + [12045,null], + [12047,null], + [12049,0.22], + [12051,0.343], + [12053,0.087], + [12055,0.144], + [12057,0.199], + [12059,null], + [12061,0.06], + [12063,0.024], + [12065,null], + [12067,null], + [12069,0.087], + [12071,0.136], + [12073,0.041], + [12075,null], + [12077,null], + [12079,null], + [12081,0.075], + [12083,0.082], + [12085,0.058], + [12086,0.605], + [12087,null], + [12089,null], + [12091,0.041], + [12093,null], + [12095,0.209], + [12097,0.376], + [12099,0.144], + [12101,0.091], + [12103,0.05], + [12105,0.128], + [12107,null], + [12109,0.049], + [12111,0.139], + [12113,0.026], + [12115,0.053], + [12117,0.112], + [12119,0.045], + [12121,0.034], + [12123,null], + [12125,null], + [12127,0.068], + [12129,null], + [12131,null], + [12133,null], + [13001,0.027], + [13003,null], + [13005,null], + [13007,null], + [13009,0.01], + [13011,null], + [13013,null], + [13015,null], + [13017,null], + [13019,null], + [13021,null], + [13023,null], + [13025,null], + [13027,null], + [13029,null], + [13031,null], + [13033,null], + [13035,null], + [13037,null], + [13039,null], + [13043,null], + [13045,0.013], + [13047,null], + [13049,null], + [13051,0.011], + [13053,null], + [13055,null], + [13057,0.039], + [13059,0.031], + [13061,null], + [13063,0.043], + [13065,null], + [13067,0.055], + [13069,0.02], + [13071,null], + [13073,0.03], + [13075,null], + [13077,0.031], + [13079,null], + [13081,null], + [13083,null], + [13085,null], + [13087,0.02], + [13089,0.036], + [13091,null], + [13093,0.044], + [13095,0.012], + [13097,0.027], + [13099,null], + [13101,null], + [13103,null], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,0.036], + [13115,null], + [13117,0.044], + [13119,null], + [13121,0.032], + [13123,null], + [13125,null], + [13127,null], + [13129,null], + [13131,null], + [13133,null], + [13135,0.093], + [13137,null], + [13139,0.069], + [13141,null], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,0.027], + [13153,0.028], + [13155,null], + [13157,0.039], + [13159,null], + [13161,null], + [13163,null], + [13165,null], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,null], + [13177,null], + [13179,0.03], + [13181,null], + [13183,null], + [13185,0.03], + [13187,null], + [13189,null], + [13191,null], + [13193,null], + [13195,null], + [13197,null], + [13199,null], + [13201,null], + [13205,null], + [13207,null], + [13209,null], + [13211,null], + [13213,null], + [13215,0.025], + [13217,null], + [13219,0.014], + [13221,null], + [13223,null], + [13225,0.036], + [13227,null], + [13229,null], + [13231,null], + [13233,null], + [13235,null], + [13237,0.011], + [13239,null], + [13241,null], + [13243,null], + [13245,0.024], + [13247,0.029], + [13249,null], + [13251,null], + [13253,null], + [13255,null], + [13257,null], + [13259,null], + [13261,null], + [13263,null], + [13265,null], + [13267,0.077], + [13269,null], + [13271,null], + [13273,null], + [13275,null], + [13277,0.022], + [13279,0.046], + [13281,null], + [13283,null], + [13285,null], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,0.005], + [13297,null], + [13299,null], + [13301,null], + [13303,null], + [13305,null], + [13307,null], + [13309,null], + [13311,null], + [13313,0.062], + [13315,null], + [13317,null], + [13319,null], + [13321,null], + [15001,0.039], + [15003,0.033], + [15005,null], + [15007,0.05], + [15009,0.039], + [16001,0.021], + [16003,null], + [16005,0.015], + [16007,null], + [16009,null], + [16011,0.036], + [16013,0.024], + [16015,null], + [16017,null], + [16019,0.019], + [16021,null], + [16023,null], + [16025,null], + [16027,0.059], + [16029,null], + [16031,0.066], + [16033,null], + [16035,null], + [16037,null], + [16039,0.065], + [16041,null], + [16043,null], + [16045,null], + [16047,0.034], + [16049,null], + [16051,null], + [16053,null], + [16055,0.018], + [16057,null], + [16059,null], + [16061,null], + [16063,null], + [16065,null], + [16067,null], + [16069,0.008], + [16071,null], + [16073,0.04], + [16075,0.019], + [16077,null], + [16079,null], + [16081,null], + [16083,0.037], + [16085,null], + [16087,null], + [17001,null], + [17003,null], + [17005,null], + [17007,null], + [17009,null], + [17011,null], + [17013,null], + [17015,null], + [17017,null], + [17019,0.019], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,null], + [17031,0.072], + [17033,null], + [17035,null], + [17037,0.022], + [17039,null], + [17041,null], + [17043,0.04], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,null], + [17055,null], + [17057,null], + [17059,null], + [17061,null], + [17063,0.024], + [17065,null], + [17067,null], + [17069,null], + [17071,null], + [17073,null], + [17075,null], + [17077,null], + [17079,null], + [17081,null], + [17083,null], + [17085,null], + [17087,null], + [17089,0.076], + [17091,null], + [17093,0.093], + [17095,null], + [17097,0.053], + [17099,null], + [17101,null], + [17103,null], + [17105,null], + [17107,null], + [17109,null], + [17111,0.03], + [17113,0.014], + [17115,0.007], + [17117,null], + [17119,0.028], + [17121,null], + [17123,null], + [17125,null], + [17127,null], + [17129,null], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,0.012], + [17145,null], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,null], + [17157,null], + [17159,null], + [17161,0.029], + [17163,0.015], + [17165,null], + [17167,null], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,0.011], + [17179,null], + [17181,0.049], + [17183,null], + [17185,null], + [17187,null], + [17189,null], + [17191,null], + [17193,null], + [17195,null], + [17197,0.053], + [17199,0.01], + [17201,0.024], + [17203,null], + [18001,null], + [18003,null], + [18005,null], + [18007,null], + [18009,null], + [18011,null], + [18013,null], + [18015,null], + [18017,null], + [18019,0.01], + [18021,null], + [18023,0.014], + [18025,null], + [18027,null], + [18029,null], + [18031,null], + [18033,null], + [18035,null], + [18037,null], + [18039,0.02], + [18041,null], + [18043,null], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,null], + [18055,null], + [18057,0.014], + [18059,null], + [18061,0.013], + [18063,0.009], + [18065,null], + [18067,null], + [18069,null], + [18071,null], + [18073,null], + [18075,null], + [18077,null], + [18079,null], + [18081,0.008], + [18083,null], + [18085,null], + [18087,null], + [18089,0.067], + [18091,0.013], + [18093,0.015], + [18095,0.006], + [18097,0.022], + [18099,null], + [18101,null], + [18103,null], + [18105,0.015], + [18107,null], + [18109,null], + [18111,null], + [18113,0.019], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,0.031], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,null], + [18139,null], + [18141,0.019], + [18143,null], + [18145,null], + [18147,null], + [18149,null], + [18151,0.008], + [18153,null], + [18155,null], + [18157,0.034], + [18159,null], + [18161,null], + [18163,0.012], + [18165,null], + [18167,0.006], + [18169,null], + [18171,null], + [18173,null], + [18175,null], + [18177,null], + [18179,null], + [18181,null], + [18183,null], + [19001,null], + [19003,null], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,0.006], + [19015,null], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,0.018], + [19035,null], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,null], + [19047,null], + [19049,0.011], + [19051,null], + [19053,null], + [19055,null], + [19057,null], + [19059,null], + [19061,null], + [19063,null], + [19065,null], + [19067,null], + [19069,null], + [19071,null], + [19073,null], + [19075,null], + [19077,null], + [19079,null], + [19081,null], + [19083,null], + [19085,null], + [19087,null], + [19089,null], + [19091,null], + [19093,null], + [19095,null], + [19097,null], + [19099,null], + [19101,null], + [19103,0.016], + [19105,null], + [19107,null], + [19109,null], + [19111,null], + [19113,0.006], + [19115,null], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,null], + [19129,null], + [19131,null], + [19133,null], + [19135,null], + [19137,null], + [19139,0.033], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,null], + [19151,null], + [19153,0.018], + [19155,0.012], + [19157,null], + [19159,null], + [19161,null], + [19163,0.013], + [19165,null], + [19167,null], + [19169,null], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,null], + [19181,null], + [19183,null], + [19185,null], + [19187,null], + [19189,null], + [19191,null], + [19193,0.02], + [19195,null], + [19197,null], + [20001,null], + [20003,null], + [20005,null], + [20007,0.033], + [20009,null], + [20011,null], + [20013,null], + [20015,null], + [20017,null], + [20019,null], + [20021,null], + [20023,null], + [20025,null], + [20027,null], + [20029,null], + [20031,null], + [20033,null], + [20035,0.017], + [20037,0.026], + [20039,null], + [20041,null], + [20043,null], + [20045,null], + [20047,null], + [20049,null], + [20051,null], + [20053,null], + [20055,0.176], + [20057,0.061], + [20059,null], + [20061,null], + [20063,null], + [20065,null], + [20067,0.272], + [20069,null], + [20071,null], + [20073,null], + [20075,null], + [20077,null], + [20079,0.03], + [20081,null], + [20083,null], + [20085,null], + [20087,null], + [20089,null], + [20091,0.019], + [20093,null], + [20095,null], + [20097,null], + [20099,0.033], + [20101,null], + [20103,null], + [20105,null], + [20107,null], + [20109,null], + [20111,0.053], + [20113,null], + [20115,null], + [20117,null], + [20119,null], + [20121,null], + [20123,null], + [20125,null], + [20127,null], + [20129,null], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,null], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,null], + [20157,null], + [20159,null], + [20161,null], + [20163,null], + [20165,null], + [20167,null], + [20169,null], + [20171,null], + [20173,0.027], + [20175,null], + [20177,0.03], + [20179,null], + [20181,null], + [20183,null], + [20185,null], + [20187,null], + [20189,null], + [20191,null], + [20193,null], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,null], + [20205,null], + [20207,null], + [20209,0.062], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,0.01], + [21011,null], + [21013,null], + [21015,0.005], + [21017,null], + [21019,null], + [21021,null], + [21023,null], + [21025,null], + [21027,null], + [21029,null], + [21031,null], + [21033,null], + [21035,null], + [21037,null], + [21039,null], + [21041,null], + [21043,null], + [21045,null], + [21047,0.022], + [21049,null], + [21051,null], + [21053,null], + [21055,null], + [21057,null], + [21059,null], + [21061,null], + [21063,null], + [21065,null], + [21067,0.024], + [21069,null], + [21071,null], + [21073,null], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,null], + [21085,null], + [21087,null], + [21089,null], + [21091,null], + [21093,null], + [21095,null], + [21097,null], + [21099,null], + [21101,null], + [21103,null], + [21105,null], + [21107,null], + [21109,null], + [21111,0.019], + [21113,null], + [21115,null], + [21117,0.009], + [21119,null], + [21121,null], + [21123,null], + [21125,null], + [21127,null], + [21129,null], + [21131,null], + [21133,null], + [21135,null], + [21137,null], + [21139,null], + [21141,null], + [21143,null], + [21145,null], + [21147,null], + [21149,null], + [21151,null], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,null], + [21165,null], + [21167,null], + [21169,null], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,null], + [21181,null], + [21183,null], + [21185,null], + [21187,null], + [21189,null], + [21191,null], + [21193,null], + [21195,null], + [21197,null], + [21199,0.005], + [21201,null], + [21203,null], + [21205,null], + [21207,null], + [21209,null], + [21211,0.011], + [21213,null], + [21215,null], + [21217,null], + [21219,null], + [21221,null], + [21223,null], + [21225,null], + [21227,0.008], + [21229,null], + [21231,null], + [21233,null], + [21235,null], + [21237,null], + [21239,null], + [22001,0.014], + [22003,null], + [22005,0.031], + [22007,null], + [22009,null], + [22011,null], + [22013,null], + [22015,0.015], + [22017,0.012], + [22019,null], + [22021,null], + [22023,null], + [22025,null], + [22027,null], + [22029,null], + [22031,null], + [22033,0.025], + [22035,null], + [22037,null], + [22039,null], + [22041,null], + [22043,null], + [22045,0.021], + [22047,null], + [22049,null], + [22051,0.084], + [22053,null], + [22055,0.024], + [22057,0.007], + [22059,0.047], + [22061,null], + [22063,0.03], + [22065,null], + [22067,null], + [22069,0.018], + [22071,0.041], + [22073,0.008], + [22075,null], + [22077,null], + [22079,0.011], + [22081,null], + [22083,null], + [22085,null], + [22087,0.076], + [22089,0.032], + [22091,null], + [22093,null], + [22095,null], + [22097,0.019], + [22099,0.011], + [22101,null], + [22103,0.032], + [22105,0.016], + [22107,null], + [22109,null], + [22111,null], + [22113,0.009], + [22115,null], + [22117,null], + [22119,null], + [22121,0.041], + [22123,null], + [22125,null], + [22127,null], + [23001,null], + [23003,null], + [23005,0.006], + [23007,null], + [23009,null], + [23011,0.009], + [23013,null], + [23015,0.008], + [23017,null], + [23019,0.009], + [23021,null], + [23023,null], + [23025,null], + [23027,null], + [23029,0.006], + [23031,0.005], + [24001,null], + [24003,0.032], + [24005,0.022], + [24009,null], + [24011,null], + [24013,0.022], + [24015,null], + [24017,0.022], + [24019,null], + [24021,0.036], + [24023,null], + [24025,null], + [24027,0.026], + [24029,null], + [24031,0.1], + [24033,0.088], + [24035,null], + [24037,0.011], + [24039,null], + [24041,null], + [24043,null], + [24045,0.02], + [24047,null], + [24510,0.021], + [25001,null], + [25003,0.007], + [25005,0.012], + [25007,null], + [25009,0.059], + [25011,null], + [25013,0.048], + [25015,null], + [25017,0.028], + [25019,null], + [25021,0.015], + [25023,0.011], + [25025,0.083], + [25027,0.028], + [26001,null], + [26003,null], + [26005,0.014], + [26007,null], + [26009,null], + [26011,null], + [26013,null], + [26015,null], + [26017,0.019], + [26019,null], + [26021,0.012], + [26023,null], + [26025,null], + [26027,0.015], + [26029,null], + [26031,null], + [26033,null], + [26035,null], + [26037,0.01], + [26039,null], + [26041,null], + [26043,null], + [26045,null], + [26047,null], + [26049,0.009], + [26051,null], + [26053,null], + [26055,null], + [26057,null], + [26059,null], + [26061,null], + [26063,null], + [26065,0.022], + [26067,null], + [26069,null], + [26071,null], + [26073,null], + [26075,0.011], + [26077,0.007], + [26079,null], + [26081,0.02], + [26083,null], + [26085,null], + [26087,0.012], + [26089,null], + [26091,null], + [26093,null], + [26095,null], + [26097,null], + [26099,0.012], + [26101,null], + [26103,null], + [26105,null], + [26107,null], + [26109,null], + [26111,null], + [26113,null], + [26115,0.007], + [26117,null], + [26119,null], + [26121,0.012], + [26123,null], + [26125,0.01], + [26127,null], + [26129,null], + [26131,null], + [26133,null], + [26135,null], + [26137,null], + [26139,0.018], + [26141,null], + [26143,null], + [26145,0.024], + [26147,0.007], + [26149,0.018], + [26151,null], + [26153,null], + [26155,null], + [26157,null], + [26159,null], + [26161,null], + [26163,0.019], + [26165,null], + [27001,null], + [27003,0.011], + [27005,null], + [27007,null], + [27009,null], + [27011,null], + [27013,null], + [27015,null], + [27017,null], + [27019,0.006], + [27021,null], + [27023,null], + [27025,null], + [27027,null], + [27029,null], + [27031,null], + [27033,null], + [27035,null], + [27037,0.018], + [27039,null], + [27041,null], + [27043,null], + [27045,null], + [27047,null], + [27049,null], + [27051,null], + [27053,0.013], + [27055,null], + [27057,null], + [27059,null], + [27061,null], + [27063,null], + [27065,null], + [27067,null], + [27069,null], + [27071,null], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,0.019], + [27085,null], + [27087,null], + [27089,null], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,null], + [27101,null], + [27103,null], + [27105,0.035], + [27107,null], + [27109,0.008], + [27111,null], + [27113,null], + [27115,null], + [27117,null], + [27119,null], + [27121,null], + [27123,0.017], + [27125,null], + [27127,null], + [27129,null], + [27131,null], + [27133,null], + [27135,null], + [27137,null], + [27139,0.01], + [27141,null], + [27143,null], + [27145,null], + [27147,null], + [27149,null], + [27151,null], + [27153,null], + [27155,null], + [27157,null], + [27159,null], + [27161,null], + [27163,0.011], + [27165,null], + [27167,null], + [27169,null], + [27171,0.005], + [27173,null], + [28001,null], + [28003,null], + [28005,null], + [28007,null], + [28009,null], + [28011,null], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,null], + [28029,0.015], + [28031,null], + [28033,0.015], + [28035,null], + [28037,null], + [28039,null], + [28041,null], + [28043,null], + [28045,null], + [28047,0.015], + [28049,0.004], + [28051,null], + [28053,null], + [28055,null], + [28057,null], + [28059,null], + [28061,null], + [28063,null], + [28065,null], + [28067,null], + [28069,null], + [28071,null], + [28073,null], + [28075,null], + [28077,null], + [28079,null], + [28081,0.006], + [28083,null], + [28085,null], + [28087,null], + [28089,null], + [28091,null], + [28093,null], + [28095,null], + [28097,null], + [28099,null], + [28101,null], + [28103,null], + [28105,0.011], + [28107,null], + [28109,null], + [28111,null], + [28113,null], + [28115,null], + [28117,null], + [28119,null], + [28121,null], + [28123,0.024], + [28125,null], + [28127,null], + [28129,null], + [28131,null], + [28133,null], + [28135,null], + [28137,null], + [28139,null], + [28141,null], + [28143,null], + [28145,null], + [28147,null], + [28149,null], + [28151,0.015], + [28153,null], + [28155,null], + [28157,null], + [28159,null], + [28161,null], + [28163,null], + [29001,null], + [29003,null], + [29005,null], + [29007,null], + [29009,0.013], + [29011,null], + [29013,null], + [29015,null], + [29017,null], + [29019,0.009], + [29021,0.005], + [29023,null], + [29025,null], + [29027,null], + [29029,null], + [29031,null], + [29033,null], + [29035,null], + [29037,0.013], + [29039,null], + [29041,null], + [29043,0.012], + [29045,null], + [29047,null], + [29049,null], + [29051,0.011], + [29053,null], + [29055,null], + [29057,null], + [29059,null], + [29061,null], + [29063,null], + [29065,null], + [29067,null], + [29069,null], + [29071,null], + [29073,null], + [29075,null], + [29077,0.014], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,null], + [29093,null], + [29095,0.029], + [29097,0.019], + [29099,null], + [29101,null], + [29103,null], + [29105,null], + [29107,null], + [29109,null], + [29111,null], + [29113,null], + [29115,null], + [29117,null], + [29119,0.021], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,null], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,null], + [29161,null], + [29163,null], + [29165,0.021], + [29167,null], + [29169,null], + [29171,null], + [29173,null], + [29175,null], + [29177,null], + [29179,null], + [29181,null], + [29183,0.008], + [29185,null], + [29186,null], + [29187,null], + [29189,0.011], + [29195,null], + [29197,null], + [29199,null], + [29201,null], + [29203,null], + [29205,null], + [29207,null], + [29209,null], + [29211,null], + [29213,null], + [29215,null], + [29217,null], + [29219,null], + [29221,null], + [29223,null], + [29225,null], + [29227,null], + [29229,null], + [29510,0.014], + [30001,null], + [30003,null], + [30005,null], + [30007,null], + [30009,null], + [30011,null], + [30013,null], + [30015,null], + [30017,null], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,null], + [30029,0.01], + [30031,0.011], + [30033,null], + [30035,null], + [30037,null], + [30039,null], + [30041,null], + [30043,null], + [30045,null], + [30047,null], + [30049,null], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,null], + [30063,null], + [30065,null], + [30067,null], + [30069,null], + [30071,null], + [30073,null], + [30075,null], + [30077,null], + [30079,null], + [30081,0.013], + [30083,null], + [30085,null], + [30087,null], + [30089,null], + [30091,null], + [30093,null], + [30095,null], + [30097,null], + [30099,null], + [30101,null], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,null], + [31001,null], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,null], + [31019,0.015], + [31021,null], + [31023,null], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,null], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,0.054], + [31045,null], + [31047,0.07], + [31049,null], + [31051,null], + [31053,null], + [31055,0.021], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,null], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,0.038], + [31081,null], + [31083,null], + [31085,null], + [31087,null], + [31089,null], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,null], + [31109,0.02], + [31111,0.013], + [31113,null], + [31115,null], + [31117,null], + [31119,0.018], + [31121,null], + [31123,null], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,null], + [31137,null], + [31139,null], + [31141,0.022], + [31143,null], + [31145,null], + [31147,null], + [31149,null], + [31151,null], + [31153,0.02], + [31155,null], + [31157,null], + [31159,null], + [31161,null], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,null], + [31179,null], + [31181,null], + [31183,null], + [31185,null], + [32001,null], + [32003,0.094], + [32005,0.032], + [32007,null], + [32009,null], + [32011,null], + [32013,null], + [32015,null], + [32017,null], + [32019,0.076], + [32021,null], + [32023,null], + [32027,null], + [32029,null], + [32031,0.052], + [32033,null], + [32510,0.052], + [33001,null], + [33003,0.004], + [33005,0.006], + [33007,null], + [33009,0.003], + [33011,0.02], + [33013,0.009], + [33015,0.009], + [33017,0.008], + [33019,null], + [34001,null], + [34003,0.084], + [34005,null], + [34007,null], + [34009,null], + [34011,0.086], + [34013,0.114], + [34015,0.022], + [34017,0.255], + [34019,null], + [34021,0.048], + [34023,0.094], + [34025,0.038], + [34027,0.052], + [34029,0.033], + [34031,0.179], + [34033,0.023], + [34035,0.064], + [34037,null], + [34039,0.146], + [34041,0.046], + [35001,0.24], + [35003,null], + [35005,0.23], + [35006,0.221], + [35007,0.186], + [35009,null], + [35011,null], + [35013,0.421], + [35015,0.162], + [35017,0.102], + [35019,0.381], + [35021,null], + [35023,0.284], + [35025,null], + [35027,0.168], + [35028,0.061], + [35029,0.367], + [35031,0.108], + [35033,null], + [35035,0.194], + [35037,0.192], + [35039,0.371], + [35041,null], + [35043,0.225], + [35045,0.085], + [35047,0.541], + [35049,0.163], + [35051,0.124], + [35053,0.301], + [35055,0.263], + [35057,null], + [35059,0.09], + [35061,0.363], + [36001,0.022], + [36003,null], + [36005,0.376], + [36007,null], + [36009,null], + [36011,null], + [36013,null], + [36015,null], + [36017,null], + [36019,null], + [36021,null], + [36023,null], + [36025,0.011], + [36027,null], + [36029,0.013], + [36031,null], + [36033,null], + [36035,null], + [36037,null], + [36039,0.014], + [36041,null], + [36043,null], + [36045,null], + [36047,0.108], + [36049,null], + [36051,null], + [36053,null], + [36055,0.027], + [36057,null], + [36059,0.071], + [36061,0.105], + [36063,null], + [36065,null], + [36067,0.02], + [36069,0.013], + [36071,0.072], + [36073,null], + [36075,null], + [36077,null], + [36079,0.062], + [36081,0.163], + [36083,0.016], + [36085,null], + [36087,0.068], + [36089,null], + [36091,null], + [36093,0.032], + [36095,null], + [36097,null], + [36099,null], + [36101,0.014], + [36103,0.071], + [36105,0.054], + [36107,null], + [36109,null], + [36111,0.037], + [36113,null], + [36115,null], + [36117,0.027], + [36119,0.1], + [36121,null], + [36123,null], + [37001,null], + [37003,null], + [37005,null], + [37007,null], + [37009,null], + [37011,null], + [37013,null], + [37015,null], + [37017,null], + [37019,0.022], + [37021,0.014], + [37023,null], + [37025,0.026], + [37027,null], + [37029,null], + [37031,null], + [37033,null], + [37035,null], + [37037,null], + [37039,null], + [37041,null], + [37043,null], + [37045,0.02], + [37047,0.018], + [37049,0.02], + [37051,0.026], + [37053,null], + [37055,null], + [37057,null], + [37059,null], + [37061,0.032], + [37063,0.037], + [37065,null], + [37067,0.03], + [37069,0.026], + [37071,null], + [37073,null], + [37075,null], + [37077,null], + [37079,null], + [37081,0.03], + [37083,null], + [37085,0.017], + [37087,null], + [37089,0.037], + [37091,null], + [37093,0.033], + [37095,null], + [37097,null], + [37099,null], + [37101,null], + [37103,null], + [37105,null], + [37107,null], + [37109,0.044], + [37111,null], + [37113,0.005], + [37115,null], + [37117,null], + [37119,0.048], + [37121,null], + [37123,null], + [37125,0.006], + [37127,0.02], + [37129,null], + [37131,null], + [37133,null], + [37135,null], + [37137,null], + [37139,null], + [37141,null], + [37143,null], + [37145,0.016], + [37147,0.017], + [37149,null], + [37151,0.014], + [37153,null], + [37155,null], + [37157,0.012], + [37159,0.031], + [37161,null], + [37163,null], + [37165,null], + [37167,null], + [37169,null], + [37171,0.03], + [37173,null], + [37175,null], + [37177,null], + [37179,0.029], + [37181,null], + [37183,0.038], + [37185,null], + [37187,null], + [37189,null], + [37191,0.011], + [37193,null], + [37195,null], + [37197,null], + [37199,null], + [38001,null], + [38003,null], + [38005,null], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,null], + [38017,0.004], + [38019,null], + [38021,null], + [38023,null], + [38025,null], + [38027,null], + [38029,null], + [38031,null], + [38033,null], + [38035,0.005], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,null], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,null], + [38057,null], + [38059,null], + [38061,null], + [38063,null], + [38065,null], + [38067,null], + [38069,null], + [38071,null], + [38073,null], + [38075,null], + [38077,null], + [38079,null], + [38081,null], + [38083,null], + [38085,null], + [38087,null], + [38089,null], + [38091,null], + [38093,null], + [38095,null], + [38097,null], + [38099,null], + [38101,null], + [38103,null], + [38105,null], + [39001,null], + [39003,null], + [39005,null], + [39007,null], + [39009,0.018], + [39011,null], + [39013,null], + [39015,null], + [39017,0.014], + [39019,null], + [39021,null], + [39023,null], + [39025,0.01], + [39027,null], + [39029,0.008], + [39031,null], + [39033,null], + [39035,0.016], + [39037,null], + [39039,null], + [39041,null], + [39043,null], + [39045,0.013], + [39047,null], + [39049,0.018], + [39051,null], + [39053,null], + [39055,0.004], + [39057,0.014], + [39059,null], + [39061,0.008], + [39063,null], + [39065,null], + [39067,null], + [39069,null], + [39071,null], + [39073,null], + [39075,null], + [39077,null], + [39079,null], + [39081,null], + [39083,null], + [39085,null], + [39087,null], + [39089,null], + [39091,null], + [39093,0.019], + [39095,0.021], + [39097,null], + [39099,null], + [39101,null], + [39103,null], + [39105,null], + [39107,null], + [39109,0.008], + [39111,null], + [39113,0.009], + [39115,null], + [39117,null], + [39119,null], + [39121,null], + [39123,null], + [39125,null], + [39127,null], + [39129,null], + [39131,null], + [39133,null], + [39135,null], + [39137,null], + [39139,null], + [39141,null], + [39143,0.03], + [39145,null], + [39147,null], + [39149,0.009], + [39151,0.005], + [39153,0.006], + [39155,null], + [39157,null], + [39159,null], + [39161,null], + [39163,null], + [39165,0.018], + [39167,null], + [39169,null], + [39171,0.013], + [39173,0.019], + [39175,null], + [40001,null], + [40003,null], + [40005,null], + [40007,null], + [40009,0.033], + [40011,null], + [40013,null], + [40015,null], + [40017,0.024], + [40019,0.02], + [40021,null], + [40023,null], + [40025,null], + [40027,0.026], + [40029,null], + [40031,null], + [40033,null], + [40035,null], + [40037,0.021], + [40039,0.02], + [40041,null], + [40043,null], + [40045,null], + [40047,null], + [40049,null], + [40051,0.016], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,null], + [40063,null], + [40065,null], + [40067,null], + [40069,null], + [40071,null], + [40073,null], + [40075,null], + [40077,null], + [40079,null], + [40081,null], + [40083,null], + [40085,null], + [40087,null], + [40089,0.027], + [40091,null], + [40093,null], + [40095,null], + [40097,null], + [40099,null], + [40101,null], + [40103,null], + [40105,null], + [40107,null], + [40109,0.035], + [40111,null], + [40113,null], + [40115,null], + [40117,null], + [40119,null], + [40121,null], + [40123,null], + [40125,0.02], + [40127,null], + [40129,null], + [40131,null], + [40133,null], + [40135,null], + [40137,null], + [40139,0.075], + [40141,null], + [40143,0.023], + [40145,null], + [40147,null], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,null], + [41005,0.027], + [41007,null], + [41009,null], + [41011,null], + [41013,null], + [41015,null], + [41017,0.018], + [41019,null], + [41021,null], + [41023,null], + [41025,null], + [41027,0.06], + [41029,0.046], + [41031,null], + [41033,null], + [41035,0.038], + [41037,null], + [41039,0.021], + [41041,null], + [41043,0.028], + [41045,null], + [41047,0.066], + [41049,null], + [41051,0.03], + [41053,0.043], + [41055,null], + [41057,null], + [41059,0.046], + [41061,null], + [41063,null], + [41065,null], + [41067,0.047], + [41069,null], + [41071,null], + [42001,0.006], + [42003,0.01], + [42005,null], + [42007,null], + [42009,null], + [42011,0.055], + [42013,null], + [42015,null], + [42017,0.02], + [42019,0.006], + [42021,null], + [42023,null], + [42025,null], + [42027,0.009], + [42029,0.014], + [42031,null], + [42033,null], + [42035,null], + [42037,null], + [42039,null], + [42041,null], + [42043,null], + [42045,null], + [42047,null], + [42049,0.012], + [42051,null], + [42053,null], + [42055,0.011], + [42057,null], + [42059,null], + [42061,null], + [42063,null], + [42065,null], + [42067,null], + [42069,null], + [42071,0.019], + [42073,null], + [42075,null], + [42077,0.083], + [42079,0.028], + [42081,0.011], + [42083,null], + [42085,0.005], + [42087,null], + [42089,null], + [42091,null], + [42093,null], + [42095,0.043], + [42097,null], + [42099,null], + [42101,0.078], + [42103,0.029], + [42105,null], + [42107,0.009], + [42109,null], + [42111,null], + [42113,null], + [42115,0.009], + [42117,null], + [42119,null], + [42121,null], + [42123,null], + [42125,0.008], + [42127,null], + [42129,0.003], + [42131,null], + [42133,0.016], + [44001,0.016], + [44003,0.017], + [44005,0.022], + [44007,0.097], + [44009,0.01], + [45001,null], + [45003,0.024], + [45005,null], + [45007,0.008], + [45009,null], + [45011,null], + [45013,0.02], + [45015,null], + [45017,null], + [45019,0.014], + [45021,null], + [45023,null], + [45025,0.008], + [45027,null], + [45029,null], + [45031,null], + [45033,null], + [45035,0.02], + [45037,null], + [45039,null], + [45041,0.011], + [45043,null], + [45045,0.031], + [45047,0.016], + [45049,null], + [45051,0.015], + [45053,null], + [45055,null], + [45057,0.017], + [45059,null], + [45061,null], + [45063,0.015], + [45065,null], + [45067,null], + [45069,null], + [45071,null], + [45073,0.012], + [45075,0.005], + [45077,0.008], + [45079,0.012], + [45081,null], + [45083,0.023], + [45085,0.019], + [45087,null], + [45089,null], + [45091,0.014], + [46003,null], + [46005,null], + [46007,null], + [46009,null], + [46011,null], + [46013,null], + [46015,null], + [46017,null], + [46019,0.046], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,null], + [46031,null], + [46033,null], + [46035,null], + [46037,null], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,null], + [46053,null], + [46055,null], + [46057,null], + [46059,null], + [46061,null], + [46063,null], + [46065,null], + [46067,null], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,null], + [46083,null], + [46085,null], + [46087,null], + [46089,null], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,0.01], + [46101,null], + [46102,null], + [46103,0.01], + [46105,null], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,null], + [46123,null], + [46125,null], + [46127,null], + [46129,null], + [46135,null], + [46137,null], + [47001,0.006], + [47003,0.027], + [47005,null], + [47007,null], + [47009,null], + [47011,0.019], + [47013,0.008], + [47015,null], + [47017,null], + [47019,null], + [47021,null], + [47023,null], + [47025,null], + [47027,null], + [47029,null], + [47031,null], + [47033,null], + [47035,null], + [47037,0.029], + [47039,null], + [47041,null], + [47043,0.006], + [47045,null], + [47047,null], + [47049,null], + [47051,null], + [47053,0.014], + [47055,null], + [47057,null], + [47059,0.004], + [47061,null], + [47063,0.011], + [47065,0.014], + [47067,null], + [47069,null], + [47071,null], + [47073,null], + [47075,null], + [47077,null], + [47079,null], + [47081,null], + [47083,null], + [47085,null], + [47087,null], + [47089,null], + [47091,null], + [47093,0.017], + [47095,null], + [47097,null], + [47099,null], + [47101,null], + [47103,null], + [47105,null], + [47107,null], + [47109,null], + [47111,null], + [47113,null], + [47115,null], + [47117,null], + [47119,null], + [47121,null], + [47123,null], + [47125,null], + [47127,null], + [47129,null], + [47131,null], + [47133,null], + [47135,null], + [47137,null], + [47139,null], + [47141,0.016], + [47143,null], + [47145,null], + [47147,0.023], + [47149,0.027], + [47151,null], + [47153,null], + [47155,null], + [47157,0.017], + [47159,null], + [47161,null], + [47163,0.008], + [47165,0.012], + [47167,null], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,null], + [47179,0.01], + [47181,null], + [47183,null], + [47185,0.019], + [47187,0.014], + [47189,0.011], + [48001,null], + [48003,0.147], + [48005,null], + [48007,null], + [48009,null], + [48011,null], + [48013,0.363], + [48015,null], + [48017,null], + [48019,null], + [48021,0.132], + [48023,null], + [48025,null], + [48027,0.087], + [48029,0.373], + [48031,null], + [48033,null], + [48035,null], + [48037,null], + [48039,0.144], + [48041,0.097], + [48043,null], + [48045,null], + [48047,null], + [48049,null], + [48051,null], + [48053,null], + [48055,0.187], + [48057,null], + [48059,null], + [48061,0.619], + [48063,0.093], + [48065,null], + [48067,null], + [48069,0.081], + [48071,null], + [48073,null], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,null], + [48085,0.072], + [48087,null], + [48089,null], + [48091,0.103], + [48093,null], + [48095,null], + [48097,0.049], + [48099,0.062], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,0.153], + [48115,null], + [48117,null], + [48119,null], + [48121,0.086], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,0.606], + [48133,null], + [48135,0.305], + [48137,null], + [48139,0.103], + [48141,0.614], + [48143,null], + [48145,null], + [48147,null], + [48149,null], + [48151,null], + [48153,null], + [48155,null], + [48157,0.159], + [48159,null], + [48161,null], + [48163,0.538], + [48165,null], + [48167,0.103], + [48169,null], + [48171,null], + [48173,null], + [48175,null], + [48177,null], + [48179,null], + [48181,null], + [48183,0.039], + [48185,null], + [48187,0.216], + [48189,0.265], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,null], + [48201,0.23], + [48203,null], + [48205,null], + [48207,null], + [48209,0.181], + [48211,null], + [48213,null], + [48215,0.688], + [48217,0.071], + [48219,null], + [48221,null], + [48223,null], + [48225,null], + [48227,0.09], + [48229,null], + [48231,null], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,0.032], + [48243,null], + [48245,0.066], + [48247,null], + [48249,null], + [48251,0.069], + [48253,null], + [48255,null], + [48257,null], + [48259,0.078], + [48261,null], + [48263,null], + [48265,0.089], + [48267,null], + [48269,null], + [48271,null], + [48273,0.45], + [48275,null], + [48277,null], + [48279,null], + [48281,null], + [48283,0.347], + [48285,null], + [48287,null], + [48289,null], + [48291,0.09], + [48293,null], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,0.128], + [48305,null], + [48307,null], + [48309,0.089], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,null], + [48323,0.78], + [48325,0.286], + [48327,null], + [48329,0.16], + [48331,null], + [48333,null], + [48335,null], + [48337,null], + [48339,0.097], + [48341,0.26], + [48343,null], + [48345,null], + [48347,0.034], + [48349,null], + [48351,null], + [48353,null], + [48355,0.35], + [48357,null], + [48359,null], + [48361,null], + [48363,null], + [48365,null], + [48367,0.045], + [48369,null], + [48371,null], + [48373,null], + [48375,0.17], + [48377,null], + [48379,null], + [48381,0.056], + [48383,null], + [48385,null], + [48387,null], + [48389,0.448], + [48391,null], + [48393,null], + [48395,null], + [48397,0.059], + [48399,null], + [48401,null], + [48403,null], + [48405,null], + [48407,null], + [48409,0.272], + [48411,null], + [48413,null], + [48415,0.127], + [48417,null], + [48419,null], + [48421,null], + [48423,0.069], + [48425,null], + [48427,0.732], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,0.107], + [48439,0.118], + [48441,null], + [48443,null], + [48445,null], + [48447,null], + [48449,null], + [48451,null], + [48453,0.132], + [48455,null], + [48457,null], + [48459,null], + [48461,null], + [48463,0.478], + [48465,0.615], + [48467,null], + [48469,0.221], + [48471,0.075], + [48473,null], + [48475,null], + [48477,0.042], + [48479,0.694], + [48481,null], + [48483,null], + [48485,0.067], + [48487,null], + [48489,0.568], + [48491,0.108], + [48493,0.226], + [48495,null], + [48497,0.051], + [48499,null], + [48501,null], + [48503,null], + [48505,0.657], + [48507,0.753], + [49001,null], + [49003,0.014], + [49005,0.026], + [49007,null], + [49009,null], + [49011,0.027], + [49013,null], + [49015,null], + [49017,null], + [49019,null], + [49021,null], + [49023,null], + [49025,null], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.047], + [49037,null], + [49039,null], + [49041,null], + [49043,0.026], + [49045,null], + [49047,0.021], + [49049,0.035], + [49051,0.051], + [49053,0.025], + [49055,null], + [49057,0.048], + [50001,null], + [50003,0.006], + [50005,null], + [50007,0.01], + [50009,null], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,0.005], + [50023,0.01], + [50025,0.009], + [50027,0.003], + [51001,null], + [51003,0.017], + [51005,null], + [51007,null], + [51009,null], + [51011,null], + [51013,0.08], + [51015,null], + [51017,null], + [51019,0.007], + [51021,null], + [51023,null], + [51025,null], + [51027,null], + [51029,null], + [51031,null], + [51033,null], + [51035,null], + [51036,null], + [51037,null], + [51041,0.034], + [51043,null], + [51045,null], + [51047,0.046], + [51049,null], + [51051,null], + [51053,null], + [51057,null], + [51059,0.088], + [51061,0.035], + [51063,null], + [51065,null], + [51067,null], + [51069,0.019], + [51071,null], + [51073,null], + [51075,null], + [51077,null], + [51079,null], + [51081,null], + [51083,null], + [51085,0.018], + [51087,0.023], + [51089,null], + [51091,null], + [51093,null], + [51095,null], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,null], + [51107,0.069], + [51109,null], + [51111,null], + [51113,null], + [51115,null], + [51117,null], + [51119,null], + [51121,null], + [51125,null], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,null], + [51143,null], + [51145,null], + [51147,null], + [51149,null], + [51153,0.147], + [51155,null], + [51157,null], + [51159,null], + [51161,0.009], + [51163,null], + [51165,null], + [51167,null], + [51169,null], + [51171,0.028], + [51173,null], + [51175,null], + [51177,0.037], + [51179,0.066], + [51181,null], + [51183,null], + [51185,null], + [51187,null], + [51191,null], + [51193,null], + [51195,null], + [51197,null], + [51199,null], + [51510,0.068], + [51520,null], + [51530,null], + [51540,0.013], + [51550,0.02], + [51570,null], + [51580,null], + [51590,null], + [51595,null], + [51600,0.089], + [51610,null], + [51620,null], + [51630,0.022], + [51640,null], + [51650,0.025], + [51660,null], + [51670,0.068], + [51678,null], + [51680,null], + [51683,null], + [51685,0.222], + [51690,null], + [51700,0.033], + [51710,0.018], + [51720,null], + [51730,null], + [51735,null], + [51740,0.028], + [51750,null], + [51760,0.012], + [51770,null], + [51775,null], + [51790,null], + [51800,null], + [51810,0.024], + [51820,null], + [51830,null], + [51840,null], + [53001,0.163], + [53003,null], + [53005,0.054], + [53007,null], + [53009,null], + [53011,0.025], + [53013,null], + [53015,0.017], + [53017,0.084], + [53019,null], + [53021,0.201], + [53023,null], + [53025,null], + [53027,null], + [53029,null], + [53031,null], + [53033,0.028], + [53035,0.017], + [53037,0.035], + [53039,null], + [53041,0.017], + [53043,null], + [53045,null], + [53047,null], + [53049,null], + [53051,null], + [53053,0.035], + [53055,null], + [53057,0.027], + [53059,null], + [53061,0.028], + [53063,0.012], + [53065,null], + [53067,0.034], + [53069,null], + [53071,0.055], + [53073,null], + [53075,null], + [53077,null], + [54001,null], + [54003,0.018], + [54005,0.031], + [54007,null], + [54009,null], + [54011,0.005], + [54013,null], + [54015,null], + [54017,null], + [54019,null], + [54021,null], + [54023,null], + [54025,null], + [54027,null], + [54029,null], + [54031,null], + [54033,0.01], + [54035,null], + [54037,0.04], + [54039,null], + [54041,null], + [54043,null], + [54045,null], + [54047,null], + [54049,null], + [54051,null], + [54053,null], + [54055,null], + [54057,null], + [54059,null], + [54061,null], + [54063,null], + [54065,null], + [54067,null], + [54069,null], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,null], + [54081,null], + [54083,null], + [54085,null], + [54087,null], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,null], + [54099,null], + [54101,null], + [54103,null], + [54105,null], + [54107,0.007], + [54109,null], + [55001,null], + [55003,null], + [55005,null], + [55007,null], + [55009,0.015], + [55011,null], + [55013,null], + [55015,null], + [55017,null], + [55019,null], + [55021,null], + [55023,null], + [55025,0.011], + [55027,null], + [55029,null], + [55031,0.021], + [55033,null], + [55035,null], + [55037,null], + [55039,0.006], + [55041,null], + [55043,null], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,null], + [55057,null], + [55059,0.025], + [55061,null], + [55063,0.013], + [55065,null], + [55067,null], + [55069,null], + [55071,0.014], + [55073,null], + [55075,null], + [55077,null], + [55078,null], + [55079,0.032], + [55081,null], + [55083,null], + [55085,null], + [55087,0.01], + [55089,null], + [55091,null], + [55093,null], + [55095,null], + [55097,null], + [55099,null], + [55101,0.021], + [55103,null], + [55105,0.019], + [55107,null], + [55109,0.003], + [55111,null], + [55113,null], + [55115,0.027], + [55117,null], + [55119,null], + [55121,null], + [55123,null], + [55125,null], + [55127,0.019], + [55129,null], + [55131,0.004], + [55133,0.01], + [55135,0.008], + [55137,null], + [55139,0.008], + [55141,null], + [56001,0.039], + [56003,null], + [56005,0.021], + [56007,null], + [56009,0.026], + [56011,null], + [56013,0.024], + [56015,null], + [56017,null], + [56019,null], + [56021,0.047], + [56023,null], + [56025,0.02], + [56027,null], + [56029,0.018], + [56031,null], + [56033,null], + [56035,null], + [56037,0.038], + [56039,0.033], + [56041,0.022], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/economics/companies/us-firms-owned-native-2007.json b/data/regional/united-states/economics/companies/us-firms-owned-native-2007.json new file mode 100644 index 0000000..f7e2869 --- /dev/null +++ b/data/regional/united-states/economics/companies/us-firms-owned-native-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Native Owned Firms", + "description" : "Percent of firms that are native owned.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies","firms","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.firms.owned.native.2007"], + [1001,null], + [1003,0.004], + [1005,null], + [1007,null], + [1009,null], + [1011,null], + [1013,null], + [1015,null], + [1017,null], + [1019,null], + [1021,null], + [1023,null], + [1025,null], + [1027,null], + [1029,null], + [1031,null], + [1033,null], + [1035,null], + [1037,null], + [1039,null], + [1041,null], + [1043,null], + [1045,null], + [1047,null], + [1049,0.008], + [1051,null], + [1053,0.032], + [1055,null], + [1057,null], + [1059,null], + [1061,null], + [1063,null], + [1065,null], + [1067,null], + [1069,null], + [1071,0.043], + [1073,0.004], + [1075,null], + [1077,null], + [1079,null], + [1081,null], + [1083,0.011], + [1085,null], + [1087,null], + [1089,0.014], + [1091,null], + [1093,null], + [1095,null], + [1097,null], + [1099,null], + [1101,0.007], + [1103,0.018], + [1105,null], + [1107,null], + [1109,null], + [1111,null], + [1113,null], + [1115,0.01], + [1117,0.006], + [1119,null], + [1121,null], + [1123,null], + [1125,0.009], + [1127,null], + [1129,null], + [1131,null], + [1133,null], + [2013,0.718], + [2016,null], + [2020,0.057], + [2050,0.547], + [2060,null], + [2068,null], + [2070,0.583], + [2090,0.038], + [2100,null], + [2105,null], + [2110,0.052], + [2122,null], + [2130,0.024], + [2150,0.215], + [2158,null], + [2164,null], + [2170,0.041], + [2180,0.452], + [2185,0.114], + [2188,0.519], + [2195,null], + [2198,0.158], + [2220,0.128], + [2230,null], + [2240,null], + [2261,0.081], + [2275,null], + [2282,null], + [2290,0.566], + [4001,0.31], + [4003,0.007], + [4005,0.076], + [4007,0.043], + [4009,null], + [4011,null], + [4012,0.027], + [4013,0.012], + [4015,0.026], + [4017,0.118], + [4019,0.014], + [4021,0.019], + [4023,null], + [4025,0.008], + [4027,0.024], + [5001,null], + [5003,null], + [5005,null], + [5007,0.013], + [5009,null], + [5011,null], + [5013,null], + [5015,null], + [5017,null], + [5019,null], + [5021,null], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,null], + [5033,0.017], + [5035,0.009], + [5037,null], + [5039,null], + [5041,null], + [5043,null], + [5045,null], + [5047,null], + [5049,null], + [5051,0.009], + [5053,null], + [5055,null], + [5057,null], + [5059,null], + [5061,null], + [5063,null], + [5065,null], + [5067,null], + [5069,null], + [5071,null], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,null], + [5087,null], + [5089,null], + [5091,null], + [5093,null], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,null], + [5105,null], + [5107,null], + [5109,null], + [5111,null], + [5113,null], + [5115,null], + [5117,null], + [5119,0.012], + [5121,null], + [5123,null], + [5125,null], + [5127,null], + [5129,null], + [5131,0.015], + [5133,null], + [5135,null], + [5137,null], + [5139,null], + [5141,null], + [5143,0.015], + [5145,0.006], + [5147,null], + [5149,null], + [6001,null], + [6003,null], + [6005,null], + [6007,null], + [6009,null], + [6011,null], + [6013,0.014], + [6015,null], + [6017,null], + [6019,null], + [6021,null], + [6023,0.029], + [6025,0.026], + [6027,null], + [6029,0.023], + [6031,0.011], + [6033,null], + [6035,null], + [6037,0.014], + [6039,null], + [6041,null], + [6043,null], + [6045,0.019], + [6047,null], + [6049,null], + [6051,null], + [6053,0.013], + [6055,0.013], + [6057,null], + [6059,0.01], + [6061,null], + [6063,null], + [6065,null], + [6067,0.012], + [6069,null], + [6071,null], + [6073,0.013], + [6075,null], + [6077,null], + [6079,0.011], + [6081,0.009], + [6083,0.011], + [6085,0.01], + [6087,null], + [6089,null], + [6091,null], + [6093,null], + [6095,0.014], + [6097,0.01], + [6099,0.014], + [6101,null], + [6103,null], + [6105,null], + [6107,0.019], + [6109,null], + [6111,0.016], + [6113,null], + [6115,null], + [8001,null], + [8003,null], + [8005,0.008], + [8007,null], + [8009,null], + [8011,null], + [8013,0.005], + [8014,null], + [8015,null], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,null], + [8031,0.011], + [8033,null], + [8035,null], + [8037,0.01], + [8039,null], + [8041,0.007], + [8043,null], + [8045,0.006], + [8047,null], + [8049,null], + [8051,null], + [8053,null], + [8055,null], + [8057,null], + [8059,0.006], + [8061,null], + [8063,null], + [8065,null], + [8067,0.022], + [8069,0.005], + [8071,null], + [8073,null], + [8075,null], + [8077,0.009], + [8079,null], + [8081,null], + [8083,0.021], + [8085,null], + [8087,null], + [8089,null], + [8091,null], + [8093,null], + [8095,null], + [8097,null], + [8099,null], + [8101,0.015], + [8103,null], + [8105,null], + [8107,0.005], + [8109,null], + [8111,null], + [8113,null], + [8115,null], + [8117,null], + [8119,null], + [8121,null], + [8123,0.014], + [8125,null], + [9001,0.004], + [9003,0.005], + [9005,0.006], + [9007,0.004], + [9009,0.005], + [9011,0.009], + [9013,null], + [9015,0.008], + [10001,0.008], + [10003,null], + [10005,0.005], + [11001,0.009], + [12001,null], + [12003,null], + [12005,null], + [12007,null], + [12009,0.004], + [12011,0.005], + [12013,null], + [12015,null], + [12017,null], + [12019,null], + [12021,null], + [12023,null], + [12027,null], + [12029,null], + [12031,0.003], + [12033,null], + [12035,null], + [12037,null], + [12039,null], + [12041,null], + [12043,null], + [12045,null], + [12047,null], + [12049,null], + [12051,null], + [12053,0.008], + [12055,null], + [12057,0.006], + [12059,null], + [12061,null], + [12063,null], + [12065,null], + [12067,null], + [12069,null], + [12071,null], + [12073,null], + [12075,null], + [12077,null], + [12079,null], + [12081,null], + [12083,null], + [12085,null], + [12086,0.005], + [12087,null], + [12089,null], + [12091,0.004], + [12093,0.009], + [12095,null], + [12097,0.006], + [12099,0.005], + [12101,0.01], + [12103,0.003], + [12105,null], + [12107,null], + [12109,0.005], + [12111,null], + [12113,null], + [12115,0.002], + [12117,0.003], + [12119,null], + [12121,null], + [12123,null], + [12125,null], + [12127,null], + [12129,0.013], + [12131,null], + [12133,null], + [13001,null], + [13003,null], + [13005,null], + [13007,null], + [13009,null], + [13011,null], + [13013,null], + [13015,null], + [13017,null], + [13019,null], + [13021,0.004], + [13023,null], + [13025,null], + [13027,null], + [13029,null], + [13031,null], + [13033,null], + [13035,null], + [13037,null], + [13039,null], + [13043,null], + [13045,null], + [13047,null], + [13049,null], + [13051,null], + [13053,null], + [13055,null], + [13057,null], + [13059,0.003], + [13061,null], + [13063,null], + [13065,null], + [13067,0.007], + [13069,null], + [13071,null], + [13073,0.006], + [13075,null], + [13077,null], + [13079,null], + [13081,null], + [13083,null], + [13085,null], + [13087,0.013], + [13089,0.009], + [13091,null], + [13093,null], + [13095,null], + [13097,0.004], + [13099,null], + [13101,null], + [13103,null], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,null], + [13115,null], + [13117,0.005], + [13119,null], + [13121,0.005], + [13123,null], + [13125,null], + [13127,null], + [13129,null], + [13131,null], + [13133,null], + [13135,0.011], + [13137,null], + [13139,0.006], + [13141,null], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,null], + [13153,null], + [13155,null], + [13157,null], + [13159,null], + [13161,null], + [13163,null], + [13165,null], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,null], + [13177,null], + [13179,null], + [13181,null], + [13183,null], + [13185,0.009], + [13187,null], + [13189,null], + [13191,null], + [13193,null], + [13195,null], + [13197,null], + [13199,null], + [13201,null], + [13205,null], + [13207,null], + [13209,null], + [13211,null], + [13213,null], + [13215,null], + [13217,null], + [13219,null], + [13221,null], + [13223,null], + [13225,null], + [13227,null], + [13229,null], + [13231,null], + [13233,null], + [13235,null], + [13237,null], + [13239,null], + [13241,null], + [13243,null], + [13245,0.003], + [13247,null], + [13249,null], + [13251,null], + [13253,null], + [13255,null], + [13257,null], + [13259,null], + [13261,null], + [13263,null], + [13265,null], + [13267,null], + [13269,null], + [13271,null], + [13273,null], + [13275,0.013], + [13277,null], + [13279,null], + [13281,null], + [13283,null], + [13285,0.007], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,null], + [13297,null], + [13299,null], + [13301,null], + [13303,null], + [13305,null], + [13307,null], + [13309,null], + [13311,null], + [13313,null], + [13315,null], + [13317,null], + [13319,null], + [13321,null], + [15001,0.015], + [15003,null], + [15005,null], + [15007,0.03], + [15009,0.017], + [16001,0.01], + [16003,null], + [16005,0.005], + [16007,null], + [16009,null], + [16011,0.025], + [16013,null], + [16015,null], + [16017,null], + [16019,0.008], + [16021,null], + [16023,null], + [16025,null], + [16027,0.007], + [16029,null], + [16031,null], + [16033,null], + [16035,null], + [16037,null], + [16039,null], + [16041,null], + [16043,null], + [16045,null], + [16047,null], + [16049,null], + [16051,0.01], + [16053,null], + [16055,0.012], + [16057,null], + [16059,null], + [16061,null], + [16063,null], + [16065,null], + [16067,null], + [16069,0.012], + [16071,null], + [16073,null], + [16075,null], + [16077,null], + [16079,null], + [16081,null], + [16083,null], + [16085,null], + [16087,null], + [17001,0.005], + [17003,null], + [17005,null], + [17007,null], + [17009,null], + [17011,null], + [17013,null], + [17015,null], + [17017,null], + [17019,null], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,null], + [17031,0.006], + [17033,null], + [17035,null], + [17037,null], + [17039,null], + [17041,null], + [17043,null], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,null], + [17055,null], + [17057,null], + [17059,null], + [17061,null], + [17063,null], + [17065,null], + [17067,null], + [17069,null], + [17071,null], + [17073,null], + [17075,null], + [17077,null], + [17079,null], + [17081,null], + [17083,null], + [17085,null], + [17087,null], + [17089,0.006], + [17091,null], + [17093,null], + [17095,null], + [17097,0.004], + [17099,null], + [17101,null], + [17103,null], + [17105,null], + [17107,null], + [17109,null], + [17111,0.003], + [17113,null], + [17115,null], + [17117,null], + [17119,null], + [17121,null], + [17123,null], + [17125,null], + [17127,null], + [17129,null], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,null], + [17145,null], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,null], + [17157,null], + [17159,null], + [17161,null], + [17163,0.002], + [17165,null], + [17167,null], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,null], + [17179,null], + [17181,null], + [17183,null], + [17185,null], + [17187,null], + [17189,null], + [17191,null], + [17193,null], + [17195,null], + [17197,null], + [17199,null], + [17201,0.003], + [17203,null], + [18001,null], + [18003,0.003], + [18005,null], + [18007,null], + [18009,null], + [18011,null], + [18013,null], + [18015,null], + [18017,null], + [18019,0.005], + [18021,null], + [18023,null], + [18025,null], + [18027,null], + [18029,null], + [18031,null], + [18033,null], + [18035,null], + [18037,null], + [18039,null], + [18041,null], + [18043,null], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,0.01], + [18055,null], + [18057,null], + [18059,0.006], + [18061,null], + [18063,null], + [18065,null], + [18067,null], + [18069,null], + [18071,null], + [18073,null], + [18075,null], + [18077,null], + [18079,null], + [18081,null], + [18083,null], + [18085,null], + [18087,null], + [18089,0.005], + [18091,null], + [18093,null], + [18095,0.004], + [18097,0.006], + [18099,null], + [18101,null], + [18103,null], + [18105,null], + [18107,null], + [18109,null], + [18111,null], + [18113,null], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,0.003], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,null], + [18139,null], + [18141,null], + [18143,null], + [18145,null], + [18147,null], + [18149,null], + [18151,null], + [18153,null], + [18155,null], + [18157,0.008], + [18159,null], + [18161,null], + [18163,null], + [18165,null], + [18167,null], + [18169,null], + [18171,null], + [18173,null], + [18175,null], + [18177,null], + [18179,null], + [18181,null], + [18183,null], + [19001,null], + [19003,null], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,null], + [19015,null], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,null], + [19035,null], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,null], + [19047,null], + [19049,null], + [19051,null], + [19053,null], + [19055,null], + [19057,null], + [19059,null], + [19061,null], + [19063,null], + [19065,null], + [19067,null], + [19069,null], + [19071,null], + [19073,null], + [19075,null], + [19077,null], + [19079,null], + [19081,null], + [19083,null], + [19085,null], + [19087,null], + [19089,null], + [19091,null], + [19093,null], + [19095,null], + [19097,null], + [19099,null], + [19101,null], + [19103,null], + [19105,null], + [19107,null], + [19109,null], + [19111,null], + [19113,null], + [19115,null], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,null], + [19129,null], + [19131,null], + [19133,null], + [19135,null], + [19137,null], + [19139,null], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,null], + [19151,null], + [19153,0.003], + [19155,null], + [19157,null], + [19159,null], + [19161,null], + [19163,0.003], + [19165,null], + [19167,null], + [19169,null], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,null], + [19181,null], + [19183,null], + [19185,null], + [19187,null], + [19189,null], + [19191,null], + [19193,null], + [19195,null], + [19197,null], + [20001,null], + [20003,null], + [20005,null], + [20007,null], + [20009,null], + [20011,null], + [20013,null], + [20015,0.01], + [20017,null], + [20019,null], + [20021,0.022], + [20023,null], + [20025,null], + [20027,null], + [20029,null], + [20031,null], + [20033,null], + [20035,null], + [20037,null], + [20039,null], + [20041,null], + [20043,null], + [20045,0.012], + [20047,null], + [20049,null], + [20051,null], + [20053,null], + [20055,null], + [20057,null], + [20059,null], + [20061,null], + [20063,null], + [20065,null], + [20067,null], + [20069,null], + [20071,null], + [20073,null], + [20075,null], + [20077,null], + [20079,0.025], + [20081,null], + [20083,null], + [20085,null], + [20087,null], + [20089,null], + [20091,0.008], + [20093,null], + [20095,null], + [20097,null], + [20099,0.016], + [20101,null], + [20103,0.019], + [20105,null], + [20107,null], + [20109,null], + [20111,null], + [20113,null], + [20115,null], + [20117,null], + [20119,null], + [20121,null], + [20123,null], + [20125,null], + [20127,null], + [20129,null], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,null], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,null], + [20157,null], + [20159,null], + [20161,0.011], + [20163,null], + [20165,null], + [20167,null], + [20169,null], + [20171,null], + [20173,0.011], + [20175,0.02], + [20177,0.008], + [20179,null], + [20181,null], + [20183,null], + [20185,null], + [20187,null], + [20189,null], + [20191,null], + [20193,null], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,null], + [20205,null], + [20207,null], + [20209,0.026], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,null], + [21011,null], + [21013,null], + [21015,null], + [21017,null], + [21019,null], + [21021,null], + [21023,null], + [21025,null], + [21027,null], + [21029,null], + [21031,null], + [21033,null], + [21035,null], + [21037,null], + [21039,null], + [21041,null], + [21043,null], + [21045,null], + [21047,null], + [21049,null], + [21051,null], + [21053,null], + [21055,null], + [21057,null], + [21059,null], + [21061,null], + [21063,null], + [21065,null], + [21067,null], + [21069,null], + [21071,null], + [21073,null], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,null], + [21085,null], + [21087,null], + [21089,null], + [21091,null], + [21093,null], + [21095,null], + [21097,null], + [21099,null], + [21101,null], + [21103,null], + [21105,null], + [21107,null], + [21109,null], + [21111,0.004], + [21113,null], + [21115,null], + [21117,0.002], + [21119,null], + [21121,null], + [21123,null], + [21125,null], + [21127,null], + [21129,null], + [21131,null], + [21133,null], + [21135,null], + [21137,null], + [21139,null], + [21141,null], + [21143,null], + [21145,null], + [21147,null], + [21149,null], + [21151,null], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,null], + [21165,null], + [21167,null], + [21169,null], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,null], + [21181,null], + [21183,null], + [21185,null], + [21187,null], + [21189,null], + [21191,null], + [21193,null], + [21195,null], + [21197,null], + [21199,null], + [21201,null], + [21203,null], + [21205,null], + [21207,null], + [21209,null], + [21211,null], + [21213,null], + [21215,null], + [21217,null], + [21219,null], + [21221,null], + [21223,null], + [21225,null], + [21227,null], + [21229,null], + [21231,null], + [21233,null], + [21235,null], + [21237,null], + [21239,null], + [22001,null], + [22003,null], + [22005,null], + [22007,null], + [22009,null], + [22011,null], + [22013,null], + [22015,0.012], + [22017,0.006], + [22019,0.008], + [22021,null], + [22023,null], + [22025,null], + [22027,null], + [22029,null], + [22031,null], + [22033,null], + [22035,null], + [22037,null], + [22039,null], + [22041,null], + [22043,null], + [22045,null], + [22047,0.016], + [22049,null], + [22051,0.006], + [22053,null], + [22055,null], + [22057,null], + [22059,null], + [22061,null], + [22063,0.004], + [22065,null], + [22067,null], + [22069,null], + [22071,0.007], + [22073,null], + [22075,0.03], + [22077,null], + [22079,null], + [22081,null], + [22083,null], + [22085,0.038], + [22087,null], + [22089,null], + [22091,null], + [22093,null], + [22095,null], + [22097,null], + [22099,null], + [22101,null], + [22103,null], + [22105,null], + [22107,null], + [22109,0.02], + [22111,null], + [22113,null], + [22115,null], + [22117,null], + [22119,null], + [22121,null], + [22123,null], + [22125,null], + [22127,null], + [23001,null], + [23003,0.006], + [23005,0.006], + [23007,null], + [23009,0.005], + [23011,null], + [23013,null], + [23015,null], + [23017,null], + [23019,0.006], + [23021,null], + [23023,null], + [23025,null], + [23027,null], + [23029,0.008], + [23031,null], + [24001,null], + [24003,0.004], + [24005,0.003], + [24009,null], + [24011,null], + [24013,0.005], + [24015,null], + [24017,null], + [24019,null], + [24021,null], + [24023,null], + [24025,null], + [24027,0.006], + [24029,null], + [24031,0.007], + [24033,0.009], + [24035,null], + [24037,0.006], + [24039,null], + [24041,null], + [24043,null], + [24045,null], + [24047,null], + [24510,null], + [25001,0.005], + [25003,null], + [25005,0.003], + [25007,null], + [25009,0.003], + [25011,null], + [25013,null], + [25015,null], + [25017,0.003], + [25019,null], + [25021,0.003], + [25023,null], + [25025,0.007], + [25027,null], + [26001,null], + [26003,null], + [26005,null], + [26007,null], + [26009,null], + [26011,null], + [26013,0.126], + [26015,null], + [26017,0.015], + [26019,null], + [26021,null], + [26023,null], + [26025,null], + [26027,null], + [26029,0.007], + [26031,0.042], + [26033,0.049], + [26035,null], + [26037,null], + [26039,null], + [26041,null], + [26043,null], + [26045,null], + [26047,null], + [26049,0.007], + [26051,null], + [26053,null], + [26055,null], + [26057,null], + [26059,null], + [26061,null], + [26063,null], + [26065,0.008], + [26067,null], + [26069,null], + [26071,null], + [26073,null], + [26075,null], + [26077,null], + [26079,null], + [26081,0.006], + [26083,null], + [26085,null], + [26087,null], + [26089,null], + [26091,null], + [26093,0.004], + [26095,0.09], + [26097,null], + [26099,0.005], + [26101,0.013], + [26103,null], + [26105,null], + [26107,null], + [26109,null], + [26111,null], + [26113,null], + [26115,0.007], + [26117,null], + [26119,null], + [26121,null], + [26123,null], + [26125,0.005], + [26127,null], + [26129,null], + [26131,null], + [26133,null], + [26135,null], + [26137,null], + [26139,0.006], + [26141,null], + [26143,null], + [26145,null], + [26147,null], + [26149,null], + [26151,null], + [26153,null], + [26155,null], + [26157,null], + [26159,0.007], + [26161,null], + [26163,0.008], + [26165,null], + [27001,null], + [27003,0.01], + [27005,0.023], + [27007,0.026], + [27009,null], + [27011,null], + [27013,null], + [27015,null], + [27017,0.009], + [27019,null], + [27021,0.014], + [27023,null], + [27025,null], + [27027,null], + [27029,null], + [27031,null], + [27033,null], + [27035,null], + [27037,null], + [27039,null], + [27041,null], + [27043,null], + [27045,null], + [27047,null], + [27049,null], + [27051,null], + [27053,0.007], + [27055,null], + [27057,null], + [27059,null], + [27061,0.008], + [27063,null], + [27065,null], + [27067,null], + [27069,null], + [27071,null], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,null], + [27085,null], + [27087,0.213], + [27089,null], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,null], + [27101,null], + [27103,null], + [27105,null], + [27107,null], + [27109,null], + [27111,0.004], + [27113,null], + [27115,null], + [27117,null], + [27119,null], + [27121,null], + [27123,0.006], + [27125,null], + [27127,null], + [27129,null], + [27131,null], + [27133,null], + [27135,null], + [27137,null], + [27139,0.004], + [27141,null], + [27143,null], + [27145,null], + [27147,null], + [27149,null], + [27151,null], + [27153,null], + [27155,null], + [27157,null], + [27159,null], + [27161,null], + [27163,0.003], + [27165,null], + [27167,null], + [27169,null], + [27171,null], + [27173,null], + [28001,null], + [28003,null], + [28005,null], + [28007,null], + [28009,null], + [28011,null], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,null], + [28029,0.023], + [28031,null], + [28033,null], + [28035,null], + [28037,null], + [28039,null], + [28041,null], + [28043,null], + [28045,null], + [28047,null], + [28049,null], + [28051,null], + [28053,null], + [28055,null], + [28057,null], + [28059,0.006], + [28061,null], + [28063,null], + [28065,null], + [28067,null], + [28069,null], + [28071,null], + [28073,null], + [28075,null], + [28077,null], + [28079,null], + [28081,null], + [28083,null], + [28085,null], + [28087,null], + [28089,null], + [28091,null], + [28093,null], + [28095,null], + [28097,null], + [28099,0.018], + [28101,null], + [28103,null], + [28105,null], + [28107,null], + [28109,null], + [28111,null], + [28113,null], + [28115,null], + [28117,null], + [28119,null], + [28121,null], + [28123,null], + [28125,null], + [28127,null], + [28129,null], + [28131,null], + [28133,null], + [28135,null], + [28137,null], + [28139,null], + [28141,null], + [28143,null], + [28145,null], + [28147,null], + [28149,null], + [28151,null], + [28153,null], + [28155,null], + [28157,null], + [28159,null], + [28161,null], + [28163,null], + [29001,null], + [29003,null], + [29005,null], + [29007,null], + [29009,0.013], + [29011,null], + [29013,null], + [29015,null], + [29017,null], + [29019,0.003], + [29021,null], + [29023,null], + [29025,null], + [29027,null], + [29029,null], + [29031,null], + [29033,null], + [29035,null], + [29037,0.01], + [29039,null], + [29041,null], + [29043,null], + [29045,null], + [29047,0.006], + [29049,null], + [29051,null], + [29053,null], + [29055,null], + [29057,null], + [29059,null], + [29061,null], + [29063,null], + [29065,null], + [29067,null], + [29069,null], + [29071,null], + [29073,null], + [29075,null], + [29077,0.007], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,null], + [29093,null], + [29095,0.007], + [29097,0.009], + [29099,null], + [29101,null], + [29103,null], + [29105,null], + [29107,null], + [29109,null], + [29111,null], + [29113,null], + [29115,null], + [29117,null], + [29119,null], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,0.015], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,null], + [29161,null], + [29163,null], + [29165,null], + [29167,null], + [29169,null], + [29171,null], + [29173,null], + [29175,null], + [29177,null], + [29179,null], + [29181,null], + [29183,0.002], + [29185,null], + [29186,null], + [29187,null], + [29189,0.002], + [29195,null], + [29197,null], + [29199,null], + [29201,null], + [29203,null], + [29205,null], + [29207,null], + [29209,null], + [29211,null], + [29213,null], + [29215,null], + [29217,null], + [29219,null], + [29221,null], + [29223,null], + [29225,null], + [29227,null], + [29229,null], + [29510,0.006], + [30001,null], + [30003,0.108], + [30005,null], + [30007,null], + [30009,null], + [30011,null], + [30013,0.026], + [30015,null], + [30017,null], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,null], + [30029,0.011], + [30031,0.008], + [30033,null], + [30035,0.262], + [30037,null], + [30039,null], + [30041,0.094], + [30043,null], + [30045,null], + [30047,null], + [30049,0.01], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,null], + [30063,0.012], + [30065,null], + [30067,null], + [30069,null], + [30071,null], + [30073,null], + [30075,null], + [30077,null], + [30079,null], + [30081,null], + [30083,null], + [30085,null], + [30087,0.086], + [30089,null], + [30091,null], + [30093,null], + [30095,null], + [30097,null], + [30099,null], + [30101,0.084], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,0.02], + [31001,null], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,null], + [31019,null], + [31021,null], + [31023,null], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,null], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,null], + [31045,null], + [31047,null], + [31049,null], + [31051,null], + [31053,null], + [31055,0.005], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,null], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,null], + [31081,null], + [31083,null], + [31085,null], + [31087,null], + [31089,null], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,null], + [31109,0.004], + [31111,null], + [31113,null], + [31115,null], + [31117,null], + [31119,null], + [31121,null], + [31123,null], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,null], + [31137,null], + [31139,null], + [31141,null], + [31143,null], + [31145,null], + [31147,null], + [31149,null], + [31151,null], + [31153,null], + [31155,null], + [31157,null], + [31159,null], + [31161,0.054], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,null], + [31179,null], + [31181,null], + [31183,null], + [31185,null], + [32001,0.041], + [32003,0.007], + [32005,null], + [32007,0.02], + [32009,null], + [32011,null], + [32013,null], + [32015,null], + [32017,null], + [32019,null], + [32021,null], + [32023,null], + [32027,null], + [32029,null], + [32031,0.006], + [32033,null], + [32510,0.006], + [33001,null], + [33003,null], + [33005,null], + [33007,null], + [33009,null], + [33011,null], + [33013,null], + [33015,null], + [33017,null], + [33019,null], + [34001,null], + [34003,0.003], + [34005,0.004], + [34007,0.004], + [34009,null], + [34011,null], + [34013,0.005], + [34015,null], + [34017,null], + [34019,null], + [34021,null], + [34023,0.003], + [34025,null], + [34027,null], + [34029,0.003], + [34031,0.005], + [34033,null], + [34035,null], + [34037,null], + [34039,0.005], + [34041,null], + [35001,0.026], + [35003,null], + [35005,null], + [35006,0.144], + [35007,null], + [35009,null], + [35011,null], + [35013,0.022], + [35015,0.016], + [35017,null], + [35019,null], + [35021,null], + [35023,null], + [35025,0.01], + [35027,null], + [35028,null], + [35029,0.037], + [35031,0.517], + [35033,null], + [35035,0.017], + [35037,null], + [35039,0.074], + [35041,null], + [35043,0.053], + [35045,0.178], + [35047,null], + [35049,0.025], + [35051,null], + [35053,null], + [35055,0.047], + [35057,null], + [35059,null], + [35061,0.039], + [36001,null], + [36003,null], + [36005,0.018], + [36007,0.01], + [36009,0.008], + [36011,null], + [36013,null], + [36015,null], + [36017,null], + [36019,null], + [36021,null], + [36023,null], + [36025,null], + [36027,null], + [36029,0.002], + [36031,null], + [36033,0.013], + [36035,null], + [36037,null], + [36039,null], + [36041,null], + [36043,null], + [36045,null], + [36047,0.009], + [36049,null], + [36051,null], + [36053,null], + [36055,null], + [36057,null], + [36059,0.004], + [36061,0.006], + [36063,0.013], + [36065,null], + [36067,0.006], + [36069,null], + [36071,null], + [36073,null], + [36075,null], + [36077,null], + [36079,null], + [36081,0.01], + [36083,null], + [36085,0.004], + [36087,null], + [36089,null], + [36091,0.002], + [36093,null], + [36095,null], + [36097,null], + [36099,null], + [36101,null], + [36103,0.004], + [36105,null], + [36107,null], + [36109,null], + [36111,null], + [36113,null], + [36115,null], + [36117,null], + [36119,null], + [36121,null], + [36123,null], + [37001,null], + [37003,null], + [37005,null], + [37007,null], + [37009,null], + [37011,null], + [37013,null], + [37015,null], + [37017,0.035], + [37019,null], + [37021,null], + [37023,null], + [37025,null], + [37027,null], + [37029,null], + [37031,null], + [37033,null], + [37035,0.005], + [37037,null], + [37039,null], + [37041,null], + [37043,null], + [37045,null], + [37047,null], + [37049,null], + [37051,0.013], + [37053,null], + [37055,null], + [37057,null], + [37059,null], + [37061,null], + [37063,0.003], + [37065,null], + [37067,null], + [37069,null], + [37071,null], + [37073,null], + [37075,null], + [37077,null], + [37079,null], + [37081,0.009], + [37083,null], + [37085,null], + [37087,null], + [37089,null], + [37091,null], + [37093,0.073], + [37095,null], + [37097,null], + [37099,null], + [37101,null], + [37103,null], + [37105,null], + [37107,null], + [37109,null], + [37111,null], + [37113,null], + [37115,null], + [37117,null], + [37119,0.007], + [37121,null], + [37123,null], + [37125,null], + [37127,null], + [37129,0.004], + [37131,null], + [37133,0.01], + [37135,0.009], + [37137,null], + [37139,null], + [37141,null], + [37143,null], + [37145,null], + [37147,null], + [37149,null], + [37151,null], + [37153,null], + [37155,0.262], + [37157,null], + [37159,null], + [37161,null], + [37163,null], + [37165,0.106], + [37167,null], + [37169,null], + [37171,null], + [37173,0.179], + [37175,null], + [37177,null], + [37179,0.002], + [37181,null], + [37183,0.004], + [37185,null], + [37187,null], + [37189,null], + [37191,null], + [37193,null], + [37195,null], + [37197,null], + [37199,null], + [38001,null], + [38003,null], + [38005,0.192], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,0.006], + [38017,null], + [38019,null], + [38021,null], + [38023,null], + [38025,0.162], + [38027,null], + [38029,null], + [38031,null], + [38033,null], + [38035,0.008], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,null], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,null], + [38057,null], + [38059,null], + [38061,0.181], + [38063,null], + [38065,null], + [38067,0.063], + [38069,null], + [38071,null], + [38073,null], + [38075,null], + [38077,0.027], + [38079,0.371], + [38081,null], + [38083,null], + [38085,0.667], + [38087,null], + [38089,null], + [38091,null], + [38093,null], + [38095,null], + [38097,null], + [38099,null], + [38101,null], + [38103,null], + [38105,0.012], + [39001,null], + [39003,null], + [39005,null], + [39007,null], + [39009,null], + [39011,null], + [39013,null], + [39015,null], + [39017,0.003], + [39019,null], + [39021,null], + [39023,null], + [39025,null], + [39027,null], + [39029,0.009], + [39031,null], + [39033,null], + [39035,0.004], + [39037,null], + [39039,null], + [39041,null], + [39043,null], + [39045,null], + [39047,null], + [39049,0.004], + [39051,null], + [39053,null], + [39055,null], + [39057,null], + [39059,null], + [39061,0.006], + [39063,null], + [39065,null], + [39067,null], + [39069,null], + [39071,null], + [39073,null], + [39075,null], + [39077,null], + [39079,null], + [39081,null], + [39083,null], + [39085,0.002], + [39087,null], + [39089,null], + [39091,null], + [39093,0.005], + [39095,0.008], + [39097,null], + [39099,null], + [39101,null], + [39103,null], + [39105,null], + [39107,null], + [39109,null], + [39111,null], + [39113,0.003], + [39115,null], + [39117,null], + [39119,null], + [39121,null], + [39123,null], + [39125,null], + [39127,null], + [39129,null], + [39131,null], + [39133,null], + [39135,null], + [39137,null], + [39139,null], + [39141,null], + [39143,null], + [39145,null], + [39147,null], + [39149,null], + [39151,null], + [39153,0.002], + [39155,null], + [39157,null], + [39159,null], + [39161,null], + [39163,null], + [39165,null], + [39167,null], + [39169,null], + [39171,null], + [39173,null], + [39175,null], + [40001,0.264], + [40003,null], + [40005,0.056], + [40007,null], + [40009,0.065], + [40011,null], + [40013,0.107], + [40015,null], + [40017,0.028], + [40019,0.057], + [40021,0.231], + [40023,null], + [40025,null], + [40027,0.058], + [40029,null], + [40031,0.025], + [40033,null], + [40035,0.081], + [40037,0.092], + [40039,null], + [40041,0.125], + [40043,null], + [40045,null], + [40047,0.012], + [40049,0.107], + [40051,null], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,0.093], + [40063,0.091], + [40065,null], + [40067,null], + [40069,null], + [40071,null], + [40073,null], + [40075,null], + [40077,0.176], + [40079,0.074], + [40081,null], + [40083,null], + [40085,null], + [40087,0.045], + [40089,0.109], + [40091,null], + [40093,null], + [40095,null], + [40097,0.115], + [40099,0.067], + [40101,0.119], + [40103,null], + [40105,null], + [40107,0.26], + [40109,0.037], + [40111,0.073], + [40113,0.121], + [40115,null], + [40117,null], + [40119,null], + [40121,null], + [40123,0.1], + [40125,null], + [40127,null], + [40129,null], + [40131,0.111], + [40133,null], + [40135,0.166], + [40137,0.04], + [40139,null], + [40141,null], + [40143,0.054], + [40145,0.086], + [40147,0.071], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,null], + [41005,0.006], + [41007,null], + [41009,0.011], + [41011,null], + [41013,null], + [41015,0.012], + [41017,0.01], + [41019,null], + [41021,null], + [41023,null], + [41025,null], + [41027,null], + [41029,0.014], + [41031,0.056], + [41033,0.018], + [41035,0.036], + [41037,null], + [41039,0.014], + [41041,null], + [41043,null], + [41045,null], + [41047,null], + [41049,null], + [41051,0.008], + [41053,0.018], + [41055,null], + [41057,null], + [41059,null], + [41061,null], + [41063,null], + [41065,null], + [41067,null], + [41069,null], + [41071,null], + [42001,null], + [42003,0.002], + [42005,null], + [42007,null], + [42009,null], + [42011,null], + [42013,null], + [42015,null], + [42017,null], + [42019,null], + [42021,null], + [42023,null], + [42025,null], + [42027,null], + [42029,null], + [42031,null], + [42033,null], + [42035,null], + [42037,null], + [42039,null], + [42041,null], + [42043,0.004], + [42045,null], + [42047,null], + [42049,0.003], + [42051,null], + [42053,null], + [42055,null], + [42057,null], + [42059,null], + [42061,null], + [42063,null], + [42065,null], + [42067,null], + [42069,null], + [42071,null], + [42073,null], + [42075,null], + [42077,null], + [42079,null], + [42081,null], + [42083,null], + [42085,null], + [42087,null], + [42089,null], + [42091,null], + [42093,null], + [42095,null], + [42097,null], + [42099,null], + [42101,0.006], + [42103,null], + [42105,null], + [42107,null], + [42109,null], + [42111,null], + [42113,null], + [42115,null], + [42117,null], + [42119,null], + [42121,null], + [42123,null], + [42125,null], + [42127,null], + [42129,null], + [42131,null], + [42133,null], + [44001,null], + [44003,null], + [44005,null], + [44007,0.005], + [44009,0.004], + [45001,null], + [45003,0.01], + [45005,null], + [45007,0.004], + [45009,null], + [45011,null], + [45013,null], + [45015,0.003], + [45017,null], + [45019,0.003], + [45021,null], + [45023,null], + [45025,null], + [45027,null], + [45029,null], + [45031,null], + [45033,null], + [45035,0.003], + [45037,null], + [45039,null], + [45041,null], + [45043,null], + [45045,0.004], + [45047,null], + [45049,null], + [45051,0.005], + [45053,null], + [45055,null], + [45057,null], + [45059,null], + [45061,null], + [45063,0.004], + [45065,null], + [45067,null], + [45069,null], + [45071,null], + [45073,null], + [45075,null], + [45077,0.008], + [45079,0.006], + [45081,null], + [45083,0.006], + [45085,0.004], + [45087,null], + [45089,null], + [45091,null], + [46003,null], + [46005,null], + [46007,0.107], + [46009,null], + [46011,null], + [46013,null], + [46015,null], + [46017,null], + [46019,null], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,null], + [46031,null], + [46033,null], + [46035,null], + [46037,null], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,null], + [46053,null], + [46055,null], + [46057,null], + [46059,null], + [46061,null], + [46063,null], + [46065,null], + [46067,null], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,0.016], + [46083,null], + [46085,null], + [46087,null], + [46089,null], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,0.007], + [46101,null], + [46102,0.487], + [46103,0.033], + [46105,null], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,0.55], + [46123,0.054], + [46125,null], + [46127,null], + [46129,null], + [46135,null], + [46137,null], + [47001,null], + [47003,null], + [47005,null], + [47007,null], + [47009,0.003], + [47011,null], + [47013,null], + [47015,null], + [47017,null], + [47019,null], + [47021,0.019], + [47023,null], + [47025,null], + [47027,null], + [47029,null], + [47031,null], + [47033,null], + [47035,null], + [47037,0.006], + [47039,null], + [47041,null], + [47043,null], + [47045,null], + [47047,null], + [47049,null], + [47051,null], + [47053,null], + [47055,null], + [47057,null], + [47059,null], + [47061,null], + [47063,null], + [47065,0.003], + [47067,null], + [47069,null], + [47071,null], + [47073,null], + [47075,null], + [47077,null], + [47079,null], + [47081,null], + [47083,null], + [47085,null], + [47087,null], + [47089,null], + [47091,null], + [47093,0.006], + [47095,null], + [47097,null], + [47099,null], + [47101,null], + [47103,null], + [47105,null], + [47107,null], + [47109,null], + [47111,null], + [47113,null], + [47115,null], + [47117,null], + [47119,null], + [47121,null], + [47123,null], + [47125,0.005], + [47127,null], + [47129,null], + [47131,null], + [47133,null], + [47135,null], + [47137,null], + [47139,null], + [47141,null], + [47143,null], + [47145,null], + [47147,null], + [47149,null], + [47151,null], + [47153,null], + [47155,null], + [47157,0.003], + [47159,null], + [47161,null], + [47163,0.003], + [47165,null], + [47167,null], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,null], + [47179,null], + [47181,null], + [47183,null], + [47185,null], + [47187,null], + [47189,0.005], + [48001,null], + [48003,null], + [48005,null], + [48007,null], + [48009,null], + [48011,null], + [48013,0.013], + [48015,null], + [48017,null], + [48019,null], + [48021,null], + [48023,null], + [48025,null], + [48027,0.01], + [48029,null], + [48031,null], + [48033,null], + [48035,null], + [48037,null], + [48039,null], + [48041,0.009], + [48043,null], + [48045,null], + [48047,null], + [48049,null], + [48051,null], + [48053,null], + [48055,null], + [48057,null], + [48059,null], + [48061,null], + [48063,null], + [48065,null], + [48067,null], + [48069,null], + [48071,null], + [48073,null], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,null], + [48085,0.009], + [48087,null], + [48089,null], + [48091,null], + [48093,null], + [48095,null], + [48097,null], + [48099,null], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,0.008], + [48115,null], + [48117,null], + [48119,null], + [48121,0.006], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,null], + [48133,null], + [48135,0.016], + [48137,null], + [48139,null], + [48141,0.011], + [48143,null], + [48145,null], + [48147,null], + [48149,null], + [48151,null], + [48153,null], + [48155,null], + [48157,null], + [48159,null], + [48161,null], + [48163,null], + [48165,null], + [48167,null], + [48169,null], + [48171,null], + [48173,null], + [48175,null], + [48177,null], + [48179,null], + [48181,0.016], + [48183,0.007], + [48185,null], + [48187,null], + [48189,null], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,null], + [48201,0.009], + [48203,null], + [48205,null], + [48207,null], + [48209,0.011], + [48211,null], + [48213,null], + [48215,0.011], + [48217,null], + [48219,null], + [48221,null], + [48223,null], + [48225,null], + [48227,null], + [48229,null], + [48231,null], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,null], + [48243,null], + [48245,0.004], + [48247,null], + [48249,null], + [48251,0.006], + [48253,null], + [48255,null], + [48257,0.009], + [48259,null], + [48261,null], + [48263,null], + [48265,null], + [48267,null], + [48269,null], + [48271,null], + [48273,null], + [48275,null], + [48277,null], + [48279,null], + [48281,null], + [48283,null], + [48285,null], + [48287,null], + [48289,null], + [48291,null], + [48293,null], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,0.007], + [48305,null], + [48307,null], + [48309,0.007], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,null], + [48323,null], + [48325,null], + [48327,null], + [48329,null], + [48331,null], + [48333,null], + [48335,null], + [48337,null], + [48339,null], + [48341,null], + [48343,0.036], + [48345,null], + [48347,null], + [48349,null], + [48351,null], + [48353,null], + [48355,0.008], + [48357,null], + [48359,null], + [48361,null], + [48363,null], + [48365,null], + [48367,null], + [48369,null], + [48371,null], + [48373,null], + [48375,0.018], + [48377,null], + [48379,null], + [48381,0.003], + [48383,null], + [48385,null], + [48387,null], + [48389,null], + [48391,null], + [48393,null], + [48395,null], + [48397,null], + [48399,null], + [48401,null], + [48403,null], + [48405,null], + [48407,null], + [48409,null], + [48411,null], + [48413,null], + [48415,0.036], + [48417,null], + [48419,null], + [48421,null], + [48423,null], + [48425,null], + [48427,null], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,null], + [48439,0.007], + [48441,null], + [48443,null], + [48445,null], + [48447,null], + [48449,null], + [48451,0.012], + [48453,0.009], + [48455,null], + [48457,null], + [48459,null], + [48461,null], + [48463,null], + [48465,null], + [48467,null], + [48469,null], + [48471,null], + [48473,null], + [48475,null], + [48477,null], + [48479,0.009], + [48481,null], + [48483,null], + [48485,null], + [48487,null], + [48489,null], + [48491,null], + [48493,null], + [48495,null], + [48497,null], + [48499,0.029], + [48501,null], + [48503,0.016], + [48505,null], + [48507,null], + [49001,null], + [49003,null], + [49005,null], + [49007,null], + [49009,null], + [49011,0.002], + [49013,0.021], + [49015,null], + [49017,null], + [49019,null], + [49021,null], + [49023,null], + [49025,null], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.007], + [49037,0.094], + [49039,null], + [49041,null], + [49043,null], + [49045,null], + [49047,0.009], + [49049,null], + [49051,null], + [49053,null], + [49055,null], + [49057,null], + [50001,null], + [50003,null], + [50005,null], + [50007,null], + [50009,null], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,null], + [50023,null], + [50025,null], + [50027,null], + [51001,null], + [51003,null], + [51005,null], + [51007,null], + [51009,null], + [51011,null], + [51013,0.006], + [51015,null], + [51017,null], + [51019,null], + [51021,null], + [51023,null], + [51025,null], + [51027,0.027], + [51029,null], + [51031,null], + [51033,null], + [51035,null], + [51036,0.136], + [51037,null], + [51041,0.003], + [51043,null], + [51045,null], + [51047,null], + [51049,null], + [51051,null], + [51053,null], + [51057,null], + [51059,0.004], + [51061,null], + [51063,null], + [51065,null], + [51067,null], + [51069,null], + [51071,null], + [51073,null], + [51075,null], + [51077,null], + [51079,null], + [51081,null], + [51083,null], + [51085,0.01], + [51087,0.007], + [51089,null], + [51091,null], + [51093,null], + [51095,null], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,null], + [51107,0.006], + [51109,null], + [51111,null], + [51113,null], + [51115,null], + [51117,null], + [51119,null], + [51121,null], + [51125,null], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,null], + [51143,null], + [51145,null], + [51147,null], + [51149,null], + [51153,0.012], + [51155,null], + [51157,null], + [51159,null], + [51161,null], + [51163,null], + [51165,null], + [51167,null], + [51169,null], + [51171,null], + [51173,null], + [51175,null], + [51177,null], + [51179,null], + [51181,null], + [51183,null], + [51185,null], + [51187,null], + [51191,null], + [51193,null], + [51195,null], + [51197,null], + [51199,null], + [51510,0.008], + [51520,null], + [51530,null], + [51540,null], + [51550,0.01], + [51570,null], + [51580,null], + [51590,null], + [51595,null], + [51600,null], + [51610,null], + [51620,null], + [51630,null], + [51640,null], + [51650,null], + [51660,null], + [51670,null], + [51678,null], + [51680,null], + [51683,null], + [51685,null], + [51690,null], + [51700,0.004], + [51710,null], + [51720,null], + [51730,null], + [51735,null], + [51740,null], + [51750,null], + [51760,null], + [51770,null], + [51775,null], + [51790,null], + [51800,0.005], + [51810,0.007], + [51820,null], + [51830,null], + [51840,null], + [53001,null], + [53003,null], + [53005,0.015], + [53007,null], + [53009,0.033], + [53011,0.007], + [53013,null], + [53015,null], + [53017,null], + [53019,null], + [53021,0.01], + [53023,null], + [53025,null], + [53027,null], + [53029,0.009], + [53031,null], + [53033,0.009], + [53035,0.014], + [53037,null], + [53039,null], + [53041,0.016], + [53043,null], + [53045,null], + [53047,null], + [53049,null], + [53051,null], + [53053,null], + [53055,null], + [53057,null], + [53059,null], + [53061,0.009], + [53063,0.007], + [53065,null], + [53067,0.021], + [53069,null], + [53071,null], + [53073,null], + [53075,null], + [53077,0.022], + [54001,null], + [54003,0.003], + [54005,null], + [54007,null], + [54009,null], + [54011,null], + [54013,null], + [54015,null], + [54017,null], + [54019,null], + [54021,null], + [54023,null], + [54025,null], + [54027,null], + [54029,null], + [54031,null], + [54033,null], + [54035,null], + [54037,0.008], + [54039,null], + [54041,null], + [54043,null], + [54045,null], + [54047,null], + [54049,null], + [54051,null], + [54053,null], + [54055,null], + [54057,null], + [54059,null], + [54061,null], + [54063,null], + [54065,null], + [54067,null], + [54069,null], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,null], + [54081,null], + [54083,null], + [54085,null], + [54087,null], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,null], + [54099,null], + [54101,null], + [54103,null], + [54105,null], + [54107,null], + [54109,null], + [55001,null], + [55003,0.083], + [55005,0.006], + [55007,0.023], + [55009,0.01], + [55011,null], + [55013,null], + [55015,null], + [55017,null], + [55019,null], + [55021,null], + [55023,null], + [55025,0.003], + [55027,0.006], + [55029,null], + [55031,0.026], + [55033,null], + [55035,null], + [55037,null], + [55039,null], + [55041,null], + [55043,null], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,null], + [55057,null], + [55059,0.005], + [55061,null], + [55063,null], + [55065,null], + [55067,null], + [55069,null], + [55071,null], + [55073,null], + [55075,null], + [55077,null], + [55078,0.283], + [55079,0.01], + [55081,null], + [55083,0.03], + [55085,null], + [55087,null], + [55089,0.003], + [55091,null], + [55093,null], + [55095,null], + [55097,null], + [55099,null], + [55101,null], + [55103,null], + [55105,0.004], + [55107,null], + [55109,null], + [55111,null], + [55113,null], + [55115,null], + [55117,null], + [55119,null], + [55121,null], + [55123,null], + [55125,null], + [55127,null], + [55129,null], + [55131,0.003], + [55133,0.003], + [55135,null], + [55137,null], + [55139,0.003], + [55141,null], + [56001,null], + [56003,null], + [56005,0.009], + [56007,null], + [56009,null], + [56011,null], + [56013,0.051], + [56015,null], + [56017,null], + [56019,null], + [56021,0.004], + [56023,null], + [56025,0.004], + [56027,null], + [56029,0.007], + [56031,null], + [56033,null], + [56035,null], + [56037,null], + [56039,null], + [56041,null], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/economics/companies/us-firms-owned-pacisl-2007.json b/data/regional/united-states/economics/companies/us-firms-owned-pacisl-2007.json new file mode 100644 index 0000000..eb86223 --- /dev/null +++ b/data/regional/united-states/economics/companies/us-firms-owned-pacisl-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Pacific Islander Owned Firms", + "description" : "Percent of firms that are pacific islander owned.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","companies","firms","race"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.firms.owned.pacisl.2007"], + [1001,null], + [1003,null], + [1005,null], + [1007,null], + [1009,null], + [1011,null], + [1013,null], + [1015,null], + [1017,null], + [1019,null], + [1021,null], + [1023,null], + [1025,null], + [1027,null], + [1029,null], + [1031,null], + [1033,null], + [1035,null], + [1037,null], + [1039,null], + [1041,null], + [1043,null], + [1045,null], + [1047,null], + [1049,null], + [1051,null], + [1053,null], + [1055,null], + [1057,null], + [1059,null], + [1061,null], + [1063,null], + [1065,null], + [1067,null], + [1069,null], + [1071,null], + [1073,null], + [1075,null], + [1077,null], + [1079,null], + [1081,0.004], + [1083,null], + [1085,null], + [1087,null], + [1089,null], + [1091,null], + [1093,null], + [1095,null], + [1097,null], + [1099,null], + [1101,null], + [1103,null], + [1105,null], + [1107,null], + [1109,null], + [1111,null], + [1113,null], + [1115,null], + [1117,null], + [1119,null], + [1121,null], + [1123,null], + [1125,null], + [1127,null], + [1129,null], + [1131,null], + [1133,null], + [2013,null], + [2016,null], + [2020,null], + [2050,null], + [2060,null], + [2068,null], + [2070,null], + [2090,null], + [2100,null], + [2105,null], + [2110,null], + [2122,null], + [2130,null], + [2150,null], + [2158,null], + [2164,null], + [2170,null], + [2180,null], + [2185,null], + [2188,null], + [2195,null], + [2198,null], + [2220,null], + [2230,null], + [2240,null], + [2261,null], + [2275,null], + [2282,null], + [2290,null], + [4001,null], + [4003,null], + [4005,null], + [4007,null], + [4009,null], + [4011,null], + [4012,null], + [4013,null], + [4015,null], + [4017,null], + [4019,null], + [4021,null], + [4023,null], + [4025,null], + [4027,null], + [5001,null], + [5003,null], + [5005,null], + [5007,null], + [5009,null], + [5011,null], + [5013,null], + [5015,null], + [5017,null], + [5019,null], + [5021,null], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,null], + [5033,null], + [5035,null], + [5037,null], + [5039,null], + [5041,null], + [5043,null], + [5045,null], + [5047,null], + [5049,null], + [5051,null], + [5053,null], + [5055,null], + [5057,null], + [5059,null], + [5061,null], + [5063,null], + [5065,null], + [5067,null], + [5069,null], + [5071,null], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,null], + [5087,null], + [5089,null], + [5091,null], + [5093,null], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,null], + [5105,null], + [5107,null], + [5109,null], + [5111,null], + [5113,null], + [5115,null], + [5117,null], + [5119,null], + [5121,null], + [5123,null], + [5125,null], + [5127,null], + [5129,null], + [5131,null], + [5133,null], + [5135,null], + [5137,null], + [5139,null], + [5141,null], + [5143,null], + [5145,null], + [5147,null], + [5149,null], + [6001,null], + [6003,null], + [6005,null], + [6007,null], + [6009,null], + [6011,null], + [6013,0.003], + [6015,null], + [6017,null], + [6019,null], + [6021,null], + [6023,null], + [6025,null], + [6027,null], + [6029,0.002], + [6031,null], + [6033,null], + [6035,null], + [6037,0.003], + [6039,null], + [6041,null], + [6043,null], + [6045,null], + [6047,null], + [6049,null], + [6051,null], + [6053,null], + [6055,null], + [6057,null], + [6059,0.003], + [6061,null], + [6063,null], + [6065,null], + [6067,0.003], + [6069,null], + [6071,0.003], + [6073,0.003], + [6075,0.002], + [6077,0.004], + [6079,null], + [6081,0.005], + [6083,null], + [6085,0.004], + [6087,null], + [6089,null], + [6091,null], + [6093,null], + [6095,null], + [6097,null], + [6099,null], + [6101,null], + [6103,null], + [6105,null], + [6107,null], + [6109,null], + [6111,null], + [6113,null], + [6115,null], + [8001,null], + [8003,null], + [8005,0.001], + [8007,null], + [8009,null], + [8011,null], + [8013,null], + [8014,null], + [8015,null], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,null], + [8031,null], + [8033,null], + [8035,null], + [8037,null], + [8039,null], + [8041,0.001], + [8043,null], + [8045,null], + [8047,null], + [8049,null], + [8051,null], + [8053,null], + [8055,null], + [8057,null], + [8059,null], + [8061,null], + [8063,null], + [8065,null], + [8067,null], + [8069,null], + [8071,null], + [8073,null], + [8075,null], + [8077,null], + [8079,null], + [8081,null], + [8083,null], + [8085,null], + [8087,null], + [8089,null], + [8091,null], + [8093,null], + [8095,null], + [8097,null], + [8099,null], + [8101,null], + [8103,null], + [8105,null], + [8107,null], + [8109,null], + [8111,null], + [8113,null], + [8115,null], + [8117,null], + [8119,null], + [8121,null], + [8123,null], + [8125,null], + [9001,null], + [9003,0], + [9005,null], + [9007,0.002], + [9009,null], + [9011,null], + [9013,null], + [9015,null], + [10001,null], + [10003,null], + [10005,null], + [11001,0], + [12001,null], + [12003,null], + [12005,0.003], + [12007,null], + [12009,null], + [12011,0.001], + [12013,null], + [12015,null], + [12017,null], + [12019,null], + [12021,null], + [12023,null], + [12027,null], + [12029,null], + [12031,0], + [12033,0.001], + [12035,null], + [12037,null], + [12039,null], + [12041,null], + [12043,null], + [12045,null], + [12047,null], + [12049,null], + [12051,null], + [12053,null], + [12055,null], + [12057,null], + [12059,null], + [12061,null], + [12063,null], + [12065,null], + [12067,null], + [12069,null], + [12071,null], + [12073,null], + [12075,null], + [12077,null], + [12079,null], + [12081,null], + [12083,null], + [12085,null], + [12086,0.001], + [12087,null], + [12089,null], + [12091,null], + [12093,null], + [12095,0.001], + [12097,null], + [12099,null], + [12101,null], + [12103,null], + [12105,null], + [12107,null], + [12109,null], + [12111,null], + [12113,null], + [12115,null], + [12117,null], + [12119,null], + [12121,null], + [12123,null], + [12125,null], + [12127,null], + [12129,null], + [12131,null], + [12133,null], + [13001,null], + [13003,null], + [13005,null], + [13007,null], + [13009,null], + [13011,null], + [13013,null], + [13015,null], + [13017,null], + [13019,null], + [13021,null], + [13023,null], + [13025,null], + [13027,null], + [13029,null], + [13031,null], + [13033,null], + [13035,null], + [13037,null], + [13039,null], + [13043,null], + [13045,null], + [13047,null], + [13049,null], + [13051,null], + [13053,null], + [13055,null], + [13057,null], + [13059,null], + [13061,null], + [13063,null], + [13065,null], + [13067,0.001], + [13069,null], + [13071,null], + [13073,null], + [13075,null], + [13077,null], + [13079,null], + [13081,null], + [13083,null], + [13085,null], + [13087,null], + [13089,0.001], + [13091,null], + [13093,null], + [13095,null], + [13097,null], + [13099,null], + [13101,null], + [13103,null], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,null], + [13115,null], + [13117,null], + [13119,null], + [13121,null], + [13123,null], + [13125,null], + [13127,null], + [13129,null], + [13131,null], + [13133,null], + [13135,0.002], + [13137,null], + [13139,null], + [13141,null], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,null], + [13153,null], + [13155,null], + [13157,null], + [13159,null], + [13161,null], + [13163,null], + [13165,null], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,null], + [13177,null], + [13179,null], + [13181,null], + [13183,null], + [13185,null], + [13187,null], + [13189,null], + [13191,null], + [13193,null], + [13195,null], + [13197,null], + [13199,null], + [13201,null], + [13205,null], + [13207,null], + [13209,null], + [13211,null], + [13213,null], + [13215,null], + [13217,null], + [13219,null], + [13221,null], + [13223,null], + [13225,null], + [13227,null], + [13229,null], + [13231,null], + [13233,null], + [13235,null], + [13237,null], + [13239,null], + [13241,null], + [13243,null], + [13245,null], + [13247,null], + [13249,null], + [13251,null], + [13253,null], + [13255,null], + [13257,null], + [13259,null], + [13261,null], + [13263,null], + [13265,null], + [13267,null], + [13269,null], + [13271,null], + [13273,null], + [13275,null], + [13277,null], + [13279,null], + [13281,null], + [13283,null], + [13285,null], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,null], + [13297,null], + [13299,null], + [13301,null], + [13303,null], + [13305,null], + [13307,null], + [13309,null], + [13311,null], + [13313,null], + [13315,null], + [13317,null], + [13319,null], + [13321,null], + [15001,0.091], + [15003,0.091], + [15005,null], + [15007,0.102], + [15009,0.105], + [16001,null], + [16003,null], + [16005,null], + [16007,null], + [16009,null], + [16011,null], + [16013,null], + [16015,null], + [16017,null], + [16019,null], + [16021,null], + [16023,null], + [16025,null], + [16027,null], + [16029,null], + [16031,null], + [16033,null], + [16035,null], + [16037,null], + [16039,null], + [16041,null], + [16043,null], + [16045,null], + [16047,null], + [16049,null], + [16051,null], + [16053,null], + [16055,null], + [16057,null], + [16059,null], + [16061,null], + [16063,null], + [16065,null], + [16067,null], + [16069,null], + [16071,null], + [16073,null], + [16075,null], + [16077,null], + [16079,null], + [16081,null], + [16083,null], + [16085,null], + [16087,null], + [17001,null], + [17003,null], + [17005,null], + [17007,null], + [17009,null], + [17011,null], + [17013,null], + [17015,null], + [17017,null], + [17019,null], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,null], + [17031,0.001], + [17033,null], + [17035,null], + [17037,null], + [17039,null], + [17041,null], + [17043,null], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,null], + [17055,null], + [17057,null], + [17059,null], + [17061,null], + [17063,null], + [17065,null], + [17067,null], + [17069,null], + [17071,null], + [17073,null], + [17075,null], + [17077,null], + [17079,null], + [17081,null], + [17083,null], + [17085,null], + [17087,null], + [17089,null], + [17091,null], + [17093,null], + [17095,null], + [17097,null], + [17099,null], + [17101,null], + [17103,null], + [17105,null], + [17107,null], + [17109,null], + [17111,null], + [17113,null], + [17115,null], + [17117,null], + [17119,null], + [17121,null], + [17123,null], + [17125,null], + [17127,null], + [17129,null], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,null], + [17145,null], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,null], + [17157,null], + [17159,null], + [17161,null], + [17163,null], + [17165,null], + [17167,null], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,null], + [17179,null], + [17181,null], + [17183,null], + [17185,null], + [17187,null], + [17189,null], + [17191,null], + [17193,null], + [17195,null], + [17197,null], + [17199,null], + [17201,null], + [17203,null], + [18001,null], + [18003,null], + [18005,null], + [18007,null], + [18009,null], + [18011,null], + [18013,null], + [18015,null], + [18017,null], + [18019,null], + [18021,null], + [18023,null], + [18025,null], + [18027,null], + [18029,null], + [18031,null], + [18033,null], + [18035,null], + [18037,null], + [18039,null], + [18041,null], + [18043,null], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,null], + [18055,null], + [18057,null], + [18059,null], + [18061,null], + [18063,null], + [18065,null], + [18067,null], + [18069,null], + [18071,null], + [18073,null], + [18075,null], + [18077,null], + [18079,null], + [18081,null], + [18083,null], + [18085,null], + [18087,null], + [18089,null], + [18091,null], + [18093,null], + [18095,null], + [18097,null], + [18099,null], + [18101,null], + [18103,null], + [18105,null], + [18107,null], + [18109,null], + [18111,null], + [18113,null], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,null], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,null], + [18139,null], + [18141,0.001], + [18143,null], + [18145,null], + [18147,null], + [18149,null], + [18151,null], + [18153,null], + [18155,null], + [18157,null], + [18159,null], + [18161,null], + [18163,null], + [18165,null], + [18167,null], + [18169,null], + [18171,null], + [18173,null], + [18175,null], + [18177,null], + [18179,null], + [18181,null], + [18183,null], + [19001,null], + [19003,null], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,null], + [19015,null], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,null], + [19035,null], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,null], + [19047,null], + [19049,null], + [19051,null], + [19053,null], + [19055,null], + [19057,null], + [19059,null], + [19061,null], + [19063,null], + [19065,null], + [19067,null], + [19069,null], + [19071,null], + [19073,null], + [19075,null], + [19077,null], + [19079,null], + [19081,null], + [19083,null], + [19085,null], + [19087,null], + [19089,null], + [19091,null], + [19093,null], + [19095,null], + [19097,null], + [19099,null], + [19101,null], + [19103,null], + [19105,null], + [19107,null], + [19109,null], + [19111,null], + [19113,null], + [19115,null], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,null], + [19129,null], + [19131,null], + [19133,null], + [19135,null], + [19137,null], + [19139,null], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,null], + [19151,null], + [19153,0.001], + [19155,null], + [19157,null], + [19159,null], + [19161,null], + [19163,null], + [19165,null], + [19167,null], + [19169,null], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,null], + [19181,null], + [19183,null], + [19185,null], + [19187,null], + [19189,null], + [19191,null], + [19193,null], + [19195,null], + [19197,null], + [20001,null], + [20003,null], + [20005,null], + [20007,null], + [20009,null], + [20011,null], + [20013,null], + [20015,null], + [20017,null], + [20019,null], + [20021,null], + [20023,null], + [20025,null], + [20027,null], + [20029,null], + [20031,null], + [20033,null], + [20035,null], + [20037,null], + [20039,null], + [20041,null], + [20043,null], + [20045,null], + [20047,null], + [20049,null], + [20051,null], + [20053,null], + [20055,null], + [20057,null], + [20059,null], + [20061,null], + [20063,null], + [20065,null], + [20067,null], + [20069,null], + [20071,null], + [20073,null], + [20075,null], + [20077,null], + [20079,null], + [20081,null], + [20083,null], + [20085,null], + [20087,null], + [20089,null], + [20091,null], + [20093,null], + [20095,null], + [20097,null], + [20099,null], + [20101,null], + [20103,null], + [20105,null], + [20107,null], + [20109,null], + [20111,null], + [20113,null], + [20115,null], + [20117,null], + [20119,null], + [20121,null], + [20123,null], + [20125,null], + [20127,null], + [20129,null], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,null], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,null], + [20157,null], + [20159,null], + [20161,null], + [20163,null], + [20165,null], + [20167,null], + [20169,null], + [20171,null], + [20173,null], + [20175,null], + [20177,null], + [20179,null], + [20181,null], + [20183,null], + [20185,null], + [20187,null], + [20189,null], + [20191,null], + [20193,null], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,null], + [20205,null], + [20207,null], + [20209,null], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,null], + [21011,null], + [21013,null], + [21015,null], + [21017,null], + [21019,null], + [21021,null], + [21023,null], + [21025,null], + [21027,null], + [21029,null], + [21031,null], + [21033,null], + [21035,null], + [21037,null], + [21039,null], + [21041,null], + [21043,null], + [21045,null], + [21047,null], + [21049,null], + [21051,null], + [21053,null], + [21055,null], + [21057,null], + [21059,null], + [21061,null], + [21063,null], + [21065,null], + [21067,null], + [21069,null], + [21071,null], + [21073,null], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,null], + [21085,null], + [21087,null], + [21089,null], + [21091,null], + [21093,null], + [21095,null], + [21097,null], + [21099,null], + [21101,null], + [21103,null], + [21105,null], + [21107,null], + [21109,null], + [21111,0.001], + [21113,null], + [21115,null], + [21117,null], + [21119,null], + [21121,null], + [21123,null], + [21125,null], + [21127,null], + [21129,null], + [21131,null], + [21133,null], + [21135,null], + [21137,null], + [21139,null], + [21141,null], + [21143,null], + [21145,null], + [21147,null], + [21149,null], + [21151,null], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,null], + [21165,null], + [21167,null], + [21169,null], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,null], + [21181,null], + [21183,null], + [21185,null], + [21187,null], + [21189,null], + [21191,null], + [21193,null], + [21195,null], + [21197,null], + [21199,null], + [21201,null], + [21203,null], + [21205,null], + [21207,null], + [21209,null], + [21211,null], + [21213,null], + [21215,null], + [21217,null], + [21219,null], + [21221,null], + [21223,null], + [21225,null], + [21227,null], + [21229,null], + [21231,null], + [21233,null], + [21235,null], + [21237,null], + [21239,null], + [22001,null], + [22003,null], + [22005,null], + [22007,null], + [22009,null], + [22011,null], + [22013,null], + [22015,null], + [22017,null], + [22019,null], + [22021,null], + [22023,null], + [22025,null], + [22027,null], + [22029,null], + [22031,null], + [22033,null], + [22035,null], + [22037,null], + [22039,null], + [22041,null], + [22043,null], + [22045,null], + [22047,null], + [22049,null], + [22051,null], + [22053,null], + [22055,null], + [22057,null], + [22059,null], + [22061,null], + [22063,null], + [22065,null], + [22067,null], + [22069,null], + [22071,null], + [22073,null], + [22075,null], + [22077,null], + [22079,null], + [22081,null], + [22083,null], + [22085,null], + [22087,null], + [22089,null], + [22091,null], + [22093,null], + [22095,null], + [22097,null], + [22099,null], + [22101,null], + [22103,null], + [22105,null], + [22107,null], + [22109,null], + [22111,null], + [22113,null], + [22115,null], + [22117,null], + [22119,null], + [22121,null], + [22123,null], + [22125,null], + [22127,null], + [23001,null], + [23003,null], + [23005,null], + [23007,null], + [23009,null], + [23011,null], + [23013,null], + [23015,null], + [23017,null], + [23019,null], + [23021,null], + [23023,null], + [23025,null], + [23027,null], + [23029,null], + [23031,null], + [24001,null], + [24003,null], + [24005,0.001], + [24009,null], + [24011,null], + [24013,null], + [24015,null], + [24017,null], + [24019,null], + [24021,null], + [24023,null], + [24025,null], + [24027,null], + [24029,null], + [24031,0.001], + [24033,0.001], + [24035,null], + [24037,null], + [24039,null], + [24041,null], + [24043,null], + [24045,null], + [24047,null], + [24510,null], + [25001,null], + [25003,null], + [25005,null], + [25007,null], + [25009,null], + [25011,null], + [25013,null], + [25015,null], + [25017,0.001], + [25019,null], + [25021,null], + [25023,null], + [25025,0.001], + [25027,null], + [26001,null], + [26003,null], + [26005,null], + [26007,null], + [26009,null], + [26011,null], + [26013,null], + [26015,null], + [26017,null], + [26019,null], + [26021,null], + [26023,null], + [26025,null], + [26027,null], + [26029,null], + [26031,null], + [26033,null], + [26035,null], + [26037,null], + [26039,null], + [26041,null], + [26043,null], + [26045,null], + [26047,null], + [26049,null], + [26051,null], + [26053,null], + [26055,null], + [26057,null], + [26059,null], + [26061,null], + [26063,null], + [26065,null], + [26067,null], + [26069,null], + [26071,null], + [26073,null], + [26075,null], + [26077,null], + [26079,null], + [26081,null], + [26083,null], + [26085,null], + [26087,null], + [26089,null], + [26091,null], + [26093,null], + [26095,null], + [26097,null], + [26099,null], + [26101,null], + [26103,null], + [26105,null], + [26107,null], + [26109,null], + [26111,null], + [26113,null], + [26115,null], + [26117,null], + [26119,null], + [26121,null], + [26123,null], + [26125,0], + [26127,null], + [26129,null], + [26131,null], + [26133,null], + [26135,null], + [26137,null], + [26139,0.002], + [26141,null], + [26143,null], + [26145,null], + [26147,null], + [26149,null], + [26151,null], + [26153,null], + [26155,null], + [26157,null], + [26159,null], + [26161,null], + [26163,0.002], + [26165,null], + [27001,null], + [27003,null], + [27005,null], + [27007,null], + [27009,null], + [27011,null], + [27013,null], + [27015,null], + [27017,null], + [27019,null], + [27021,null], + [27023,null], + [27025,null], + [27027,null], + [27029,null], + [27031,null], + [27033,null], + [27035,null], + [27037,0.001], + [27039,null], + [27041,null], + [27043,null], + [27045,null], + [27047,null], + [27049,null], + [27051,null], + [27053,0], + [27055,null], + [27057,null], + [27059,null], + [27061,null], + [27063,null], + [27065,null], + [27067,null], + [27069,null], + [27071,null], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,null], + [27085,null], + [27087,null], + [27089,null], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,null], + [27101,null], + [27103,null], + [27105,null], + [27107,null], + [27109,null], + [27111,null], + [27113,null], + [27115,null], + [27117,null], + [27119,null], + [27121,null], + [27123,null], + [27125,null], + [27127,null], + [27129,null], + [27131,null], + [27133,null], + [27135,null], + [27137,null], + [27139,null], + [27141,null], + [27143,null], + [27145,null], + [27147,null], + [27149,null], + [27151,null], + [27153,null], + [27155,null], + [27157,null], + [27159,null], + [27161,null], + [27163,null], + [27165,null], + [27167,null], + [27169,null], + [27171,null], + [27173,null], + [28001,null], + [28003,null], + [28005,null], + [28007,null], + [28009,null], + [28011,null], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,null], + [28029,null], + [28031,null], + [28033,null], + [28035,null], + [28037,null], + [28039,null], + [28041,null], + [28043,null], + [28045,null], + [28047,null], + [28049,null], + [28051,null], + [28053,null], + [28055,null], + [28057,null], + [28059,null], + [28061,null], + [28063,null], + [28065,null], + [28067,null], + [28069,null], + [28071,null], + [28073,null], + [28075,null], + [28077,null], + [28079,null], + [28081,null], + [28083,null], + [28085,null], + [28087,null], + [28089,null], + [28091,null], + [28093,null], + [28095,null], + [28097,null], + [28099,null], + [28101,null], + [28103,null], + [28105,null], + [28107,null], + [28109,null], + [28111,null], + [28113,null], + [28115,null], + [28117,null], + [28119,null], + [28121,null], + [28123,null], + [28125,null], + [28127,null], + [28129,null], + [28131,null], + [28133,null], + [28135,null], + [28137,null], + [28139,null], + [28141,null], + [28143,null], + [28145,null], + [28147,null], + [28149,null], + [28151,null], + [28153,null], + [28155,null], + [28157,null], + [28159,null], + [28161,null], + [28163,null], + [29001,null], + [29003,null], + [29005,null], + [29007,null], + [29009,null], + [29011,null], + [29013,null], + [29015,null], + [29017,null], + [29019,null], + [29021,null], + [29023,null], + [29025,null], + [29027,null], + [29029,null], + [29031,null], + [29033,null], + [29035,null], + [29037,null], + [29039,null], + [29041,null], + [29043,null], + [29045,null], + [29047,null], + [29049,null], + [29051,null], + [29053,null], + [29055,null], + [29057,null], + [29059,null], + [29061,null], + [29063,null], + [29065,null], + [29067,null], + [29069,null], + [29071,null], + [29073,null], + [29075,null], + [29077,null], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,null], + [29093,null], + [29095,null], + [29097,null], + [29099,null], + [29101,null], + [29103,null], + [29105,null], + [29107,null], + [29109,null], + [29111,null], + [29113,null], + [29115,null], + [29117,null], + [29119,null], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,null], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,null], + [29161,null], + [29163,null], + [29165,null], + [29167,null], + [29169,null], + [29171,null], + [29173,null], + [29175,null], + [29177,null], + [29179,null], + [29181,null], + [29183,null], + [29185,null], + [29186,null], + [29187,null], + [29189,null], + [29195,null], + [29197,null], + [29199,null], + [29201,null], + [29203,null], + [29205,null], + [29207,null], + [29209,null], + [29211,null], + [29213,null], + [29215,null], + [29217,null], + [29219,null], + [29221,null], + [29223,null], + [29225,null], + [29227,null], + [29229,null], + [29510,null], + [30001,null], + [30003,null], + [30005,null], + [30007,null], + [30009,null], + [30011,null], + [30013,null], + [30015,null], + [30017,null], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,null], + [30029,null], + [30031,null], + [30033,null], + [30035,null], + [30037,null], + [30039,null], + [30041,null], + [30043,null], + [30045,null], + [30047,null], + [30049,null], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,null], + [30063,null], + [30065,null], + [30067,null], + [30069,null], + [30071,null], + [30073,null], + [30075,null], + [30077,null], + [30079,null], + [30081,null], + [30083,null], + [30085,null], + [30087,null], + [30089,null], + [30091,null], + [30093,null], + [30095,null], + [30097,null], + [30099,null], + [30101,null], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,null], + [31001,null], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,null], + [31019,null], + [31021,null], + [31023,null], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,null], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,null], + [31045,null], + [31047,null], + [31049,null], + [31051,null], + [31053,null], + [31055,0.001], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,null], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,null], + [31081,null], + [31083,null], + [31085,null], + [31087,null], + [31089,null], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,null], + [31109,null], + [31111,null], + [31113,null], + [31115,null], + [31117,null], + [31119,null], + [31121,null], + [31123,null], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,null], + [31137,null], + [31139,null], + [31141,null], + [31143,null], + [31145,null], + [31147,null], + [31149,null], + [31151,null], + [31153,null], + [31155,null], + [31157,null], + [31159,null], + [31161,null], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,null], + [31179,null], + [31181,null], + [31183,null], + [31185,null], + [32001,null], + [32003,0.003], + [32005,null], + [32007,null], + [32009,null], + [32011,null], + [32013,null], + [32015,null], + [32017,null], + [32019,null], + [32021,null], + [32023,null], + [32027,null], + [32029,null], + [32031,null], + [32033,null], + [32510,null], + [33001,null], + [33003,null], + [33005,null], + [33007,null], + [33009,null], + [33011,0.001], + [33013,null], + [33015,null], + [33017,null], + [33019,null], + [34001,null], + [34003,null], + [34005,null], + [34007,null], + [34009,null], + [34011,null], + [34013,0.001], + [34015,null], + [34017,null], + [34019,null], + [34021,null], + [34023,null], + [34025,null], + [34027,null], + [34029,null], + [34031,null], + [34033,null], + [34035,null], + [34037,null], + [34039,null], + [34041,null], + [35001,0.001], + [35003,null], + [35005,null], + [35006,null], + [35007,null], + [35009,null], + [35011,null], + [35013,null], + [35015,null], + [35017,null], + [35019,null], + [35021,null], + [35023,null], + [35025,null], + [35027,null], + [35028,null], + [35029,null], + [35031,null], + [35033,null], + [35035,null], + [35037,null], + [35039,null], + [35041,null], + [35043,null], + [35045,null], + [35047,null], + [35049,null], + [35051,null], + [35053,null], + [35055,null], + [35057,null], + [35059,null], + [35061,null], + [36001,null], + [36003,null], + [36005,null], + [36007,null], + [36009,null], + [36011,null], + [36013,null], + [36015,null], + [36017,null], + [36019,null], + [36021,null], + [36023,null], + [36025,null], + [36027,null], + [36029,null], + [36031,null], + [36033,null], + [36035,null], + [36037,null], + [36039,null], + [36041,null], + [36043,null], + [36045,null], + [36047,null], + [36049,null], + [36051,null], + [36053,null], + [36055,null], + [36057,null], + [36059,null], + [36061,null], + [36063,null], + [36065,null], + [36067,null], + [36069,null], + [36071,null], + [36073,null], + [36075,null], + [36077,null], + [36079,null], + [36081,null], + [36083,null], + [36085,null], + [36087,null], + [36089,null], + [36091,null], + [36093,null], + [36095,null], + [36097,null], + [36099,null], + [36101,null], + [36103,null], + [36105,null], + [36107,null], + [36109,null], + [36111,null], + [36113,null], + [36115,null], + [36117,null], + [36119,null], + [36121,null], + [36123,null], + [37001,null], + [37003,null], + [37005,null], + [37007,null], + [37009,null], + [37011,null], + [37013,null], + [37015,null], + [37017,null], + [37019,null], + [37021,null], + [37023,null], + [37025,null], + [37027,null], + [37029,null], + [37031,null], + [37033,null], + [37035,null], + [37037,null], + [37039,null], + [37041,null], + [37043,null], + [37045,null], + [37047,null], + [37049,0.004], + [37051,null], + [37053,null], + [37055,null], + [37057,null], + [37059,null], + [37061,null], + [37063,null], + [37065,null], + [37067,null], + [37069,null], + [37071,null], + [37073,null], + [37075,null], + [37077,null], + [37079,null], + [37081,null], + [37083,null], + [37085,null], + [37087,null], + [37089,null], + [37091,null], + [37093,null], + [37095,null], + [37097,null], + [37099,null], + [37101,null], + [37103,null], + [37105,null], + [37107,null], + [37109,null], + [37111,null], + [37113,null], + [37115,null], + [37117,null], + [37119,0.001], + [37121,null], + [37123,null], + [37125,null], + [37127,null], + [37129,null], + [37131,null], + [37133,null], + [37135,null], + [37137,null], + [37139,null], + [37141,null], + [37143,null], + [37145,null], + [37147,null], + [37149,null], + [37151,null], + [37153,null], + [37155,null], + [37157,null], + [37159,null], + [37161,null], + [37163,null], + [37165,null], + [37167,null], + [37169,null], + [37171,null], + [37173,null], + [37175,null], + [37177,null], + [37179,null], + [37181,null], + [37183,null], + [37185,null], + [37187,null], + [37189,null], + [37191,null], + [37193,null], + [37195,null], + [37197,null], + [37199,null], + [38001,null], + [38003,null], + [38005,null], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,null], + [38017,null], + [38019,null], + [38021,null], + [38023,null], + [38025,null], + [38027,null], + [38029,null], + [38031,null], + [38033,null], + [38035,null], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,null], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,null], + [38057,null], + [38059,null], + [38061,null], + [38063,null], + [38065,null], + [38067,null], + [38069,null], + [38071,null], + [38073,null], + [38075,null], + [38077,null], + [38079,null], + [38081,null], + [38083,null], + [38085,null], + [38087,null], + [38089,null], + [38091,null], + [38093,null], + [38095,null], + [38097,null], + [38099,null], + [38101,null], + [38103,null], + [38105,null], + [39001,null], + [39003,null], + [39005,null], + [39007,null], + [39009,null], + [39011,null], + [39013,null], + [39015,null], + [39017,null], + [39019,null], + [39021,null], + [39023,null], + [39025,null], + [39027,null], + [39029,null], + [39031,null], + [39033,null], + [39035,0], + [39037,null], + [39039,null], + [39041,null], + [39043,null], + [39045,null], + [39047,null], + [39049,null], + [39051,null], + [39053,null], + [39055,null], + [39057,null], + [39059,null], + [39061,null], + [39063,null], + [39065,null], + [39067,null], + [39069,null], + [39071,null], + [39073,null], + [39075,null], + [39077,null], + [39079,null], + [39081,null], + [39083,null], + [39085,null], + [39087,null], + [39089,null], + [39091,null], + [39093,null], + [39095,null], + [39097,null], + [39099,null], + [39101,null], + [39103,null], + [39105,null], + [39107,null], + [39109,null], + [39111,null], + [39113,null], + [39115,null], + [39117,null], + [39119,null], + [39121,null], + [39123,null], + [39125,null], + [39127,null], + [39129,null], + [39131,null], + [39133,null], + [39135,null], + [39137,null], + [39139,null], + [39141,null], + [39143,null], + [39145,null], + [39147,null], + [39149,null], + [39151,null], + [39153,null], + [39155,null], + [39157,null], + [39159,null], + [39161,null], + [39163,null], + [39165,null], + [39167,null], + [39169,null], + [39171,null], + [39173,null], + [39175,null], + [40001,null], + [40003,null], + [40005,null], + [40007,null], + [40009,null], + [40011,null], + [40013,null], + [40015,null], + [40017,null], + [40019,null], + [40021,null], + [40023,null], + [40025,null], + [40027,null], + [40029,null], + [40031,null], + [40033,null], + [40035,null], + [40037,null], + [40039,null], + [40041,null], + [40043,null], + [40045,null], + [40047,null], + [40049,null], + [40051,null], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,null], + [40063,null], + [40065,null], + [40067,null], + [40069,null], + [40071,null], + [40073,null], + [40075,null], + [40077,null], + [40079,null], + [40081,null], + [40083,null], + [40085,null], + [40087,null], + [40089,null], + [40091,null], + [40093,null], + [40095,null], + [40097,null], + [40099,null], + [40101,null], + [40103,null], + [40105,null], + [40107,null], + [40109,null], + [40111,null], + [40113,null], + [40115,null], + [40117,null], + [40119,null], + [40121,null], + [40123,null], + [40125,null], + [40127,null], + [40129,null], + [40131,null], + [40133,null], + [40135,null], + [40137,null], + [40139,null], + [40141,null], + [40143,0], + [40145,null], + [40147,null], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,null], + [41005,null], + [41007,null], + [41009,null], + [41011,null], + [41013,null], + [41015,null], + [41017,0.001], + [41019,null], + [41021,null], + [41023,null], + [41025,null], + [41027,null], + [41029,null], + [41031,null], + [41033,null], + [41035,null], + [41037,null], + [41039,null], + [41041,null], + [41043,null], + [41045,null], + [41047,0.002], + [41049,null], + [41051,0.002], + [41053,null], + [41055,null], + [41057,null], + [41059,null], + [41061,null], + [41063,null], + [41065,null], + [41067,0.002], + [41069,null], + [41071,null], + [42001,null], + [42003,null], + [42005,null], + [42007,null], + [42009,null], + [42011,null], + [42013,null], + [42015,null], + [42017,null], + [42019,null], + [42021,null], + [42023,null], + [42025,null], + [42027,null], + [42029,null], + [42031,null], + [42033,null], + [42035,null], + [42037,null], + [42039,null], + [42041,null], + [42043,null], + [42045,null], + [42047,null], + [42049,null], + [42051,null], + [42053,null], + [42055,null], + [42057,null], + [42059,null], + [42061,null], + [42063,null], + [42065,null], + [42067,null], + [42069,null], + [42071,null], + [42073,null], + [42075,null], + [42077,null], + [42079,null], + [42081,null], + [42083,null], + [42085,null], + [42087,null], + [42089,null], + [42091,null], + [42093,null], + [42095,null], + [42097,null], + [42099,null], + [42101,0.001], + [42103,null], + [42105,null], + [42107,null], + [42109,null], + [42111,null], + [42113,null], + [42115,null], + [42117,null], + [42119,null], + [42121,null], + [42123,null], + [42125,null], + [42127,null], + [42129,null], + [42131,null], + [42133,null], + [44001,null], + [44003,null], + [44005,null], + [44007,null], + [44009,null], + [45001,null], + [45003,null], + [45005,null], + [45007,null], + [45009,null], + [45011,null], + [45013,null], + [45015,null], + [45017,null], + [45019,null], + [45021,null], + [45023,null], + [45025,null], + [45027,null], + [45029,null], + [45031,null], + [45033,null], + [45035,null], + [45037,null], + [45039,null], + [45041,null], + [45043,null], + [45045,null], + [45047,null], + [45049,null], + [45051,null], + [45053,null], + [45055,null], + [45057,null], + [45059,null], + [45061,null], + [45063,null], + [45065,null], + [45067,null], + [45069,null], + [45071,null], + [45073,null], + [45075,null], + [45077,null], + [45079,null], + [45081,null], + [45083,null], + [45085,null], + [45087,null], + [45089,null], + [45091,null], + [46003,null], + [46005,null], + [46007,null], + [46009,null], + [46011,null], + [46013,null], + [46015,null], + [46017,null], + [46019,null], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,null], + [46031,null], + [46033,null], + [46035,null], + [46037,null], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,null], + [46053,null], + [46055,null], + [46057,null], + [46059,null], + [46061,null], + [46063,null], + [46065,null], + [46067,null], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,null], + [46083,null], + [46085,null], + [46087,null], + [46089,null], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,null], + [46101,null], + [46102,null], + [46103,null], + [46105,null], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,null], + [46123,null], + [46125,null], + [46127,null], + [46129,null], + [46135,null], + [46137,null], + [47001,null], + [47003,null], + [47005,null], + [47007,null], + [47009,null], + [47011,null], + [47013,null], + [47015,null], + [47017,null], + [47019,null], + [47021,null], + [47023,null], + [47025,null], + [47027,null], + [47029,null], + [47031,null], + [47033,null], + [47035,null], + [47037,0.001], + [47039,null], + [47041,null], + [47043,null], + [47045,null], + [47047,null], + [47049,null], + [47051,null], + [47053,null], + [47055,null], + [47057,null], + [47059,null], + [47061,null], + [47063,null], + [47065,null], + [47067,null], + [47069,null], + [47071,null], + [47073,null], + [47075,null], + [47077,null], + [47079,null], + [47081,null], + [47083,null], + [47085,null], + [47087,null], + [47089,null], + [47091,null], + [47093,null], + [47095,null], + [47097,null], + [47099,null], + [47101,null], + [47103,null], + [47105,null], + [47107,null], + [47109,null], + [47111,null], + [47113,null], + [47115,null], + [47117,null], + [47119,null], + [47121,null], + [47123,null], + [47125,null], + [47127,null], + [47129,null], + [47131,null], + [47133,null], + [47135,null], + [47137,null], + [47139,null], + [47141,null], + [47143,null], + [47145,null], + [47147,null], + [47149,null], + [47151,null], + [47153,null], + [47155,null], + [47157,0.001], + [47159,null], + [47161,null], + [47163,null], + [47165,null], + [47167,null], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,null], + [47179,null], + [47181,null], + [47183,null], + [47185,null], + [47187,null], + [47189,null], + [48001,null], + [48003,null], + [48005,null], + [48007,null], + [48009,null], + [48011,null], + [48013,null], + [48015,null], + [48017,null], + [48019,null], + [48021,null], + [48023,null], + [48025,null], + [48027,null], + [48029,null], + [48031,null], + [48033,null], + [48035,null], + [48037,null], + [48039,null], + [48041,null], + [48043,null], + [48045,null], + [48047,null], + [48049,null], + [48051,null], + [48053,null], + [48055,null], + [48057,null], + [48059,null], + [48061,null], + [48063,null], + [48065,null], + [48067,null], + [48069,null], + [48071,null], + [48073,null], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,null], + [48085,null], + [48087,null], + [48089,null], + [48091,null], + [48093,null], + [48095,null], + [48097,null], + [48099,null], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,null], + [48115,null], + [48117,null], + [48119,null], + [48121,null], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,null], + [48133,null], + [48135,null], + [48137,null], + [48139,null], + [48141,null], + [48143,null], + [48145,null], + [48147,null], + [48149,null], + [48151,null], + [48153,null], + [48155,null], + [48157,null], + [48159,null], + [48161,null], + [48163,null], + [48165,null], + [48167,null], + [48169,null], + [48171,null], + [48173,null], + [48175,null], + [48177,null], + [48179,null], + [48181,null], + [48183,null], + [48185,null], + [48187,null], + [48189,null], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,null], + [48201,0.001], + [48203,null], + [48205,null], + [48207,null], + [48209,null], + [48211,null], + [48213,null], + [48215,null], + [48217,null], + [48219,null], + [48221,null], + [48223,null], + [48225,null], + [48227,null], + [48229,null], + [48231,null], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,null], + [48243,null], + [48245,null], + [48247,null], + [48249,null], + [48251,null], + [48253,null], + [48255,null], + [48257,null], + [48259,null], + [48261,null], + [48263,null], + [48265,null], + [48267,null], + [48269,null], + [48271,null], + [48273,null], + [48275,null], + [48277,null], + [48279,null], + [48281,null], + [48283,null], + [48285,null], + [48287,null], + [48289,null], + [48291,null], + [48293,null], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,null], + [48305,null], + [48307,null], + [48309,null], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,null], + [48323,null], + [48325,null], + [48327,null], + [48329,null], + [48331,null], + [48333,null], + [48335,null], + [48337,null], + [48339,null], + [48341,null], + [48343,null], + [48345,null], + [48347,null], + [48349,null], + [48351,null], + [48353,null], + [48355,null], + [48357,null], + [48359,null], + [48361,null], + [48363,null], + [48365,null], + [48367,null], + [48369,null], + [48371,null], + [48373,null], + [48375,null], + [48377,null], + [48379,null], + [48381,null], + [48383,null], + [48385,null], + [48387,null], + [48389,null], + [48391,null], + [48393,null], + [48395,null], + [48397,null], + [48399,null], + [48401,null], + [48403,null], + [48405,null], + [48407,null], + [48409,null], + [48411,null], + [48413,null], + [48415,null], + [48417,null], + [48419,null], + [48421,null], + [48423,null], + [48425,null], + [48427,null], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,null], + [48439,null], + [48441,null], + [48443,null], + [48445,null], + [48447,null], + [48449,null], + [48451,null], + [48453,null], + [48455,null], + [48457,null], + [48459,null], + [48461,null], + [48463,null], + [48465,null], + [48467,null], + [48469,null], + [48471,null], + [48473,null], + [48475,null], + [48477,null], + [48479,null], + [48481,null], + [48483,null], + [48485,null], + [48487,null], + [48489,null], + [48491,null], + [48493,null], + [48495,null], + [48497,null], + [48499,null], + [48501,null], + [48503,null], + [48505,null], + [48507,null], + [49001,null], + [49003,null], + [49005,null], + [49007,null], + [49009,null], + [49011,0.004], + [49013,null], + [49015,null], + [49017,null], + [49019,null], + [49021,null], + [49023,null], + [49025,null], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.003], + [49037,null], + [49039,null], + [49041,null], + [49043,null], + [49045,null], + [49047,null], + [49049,0.004], + [49051,null], + [49053,null], + [49055,null], + [49057,null], + [50001,null], + [50003,null], + [50005,null], + [50007,null], + [50009,null], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,null], + [50023,null], + [50025,null], + [50027,null], + [51001,null], + [51003,null], + [51005,null], + [51007,null], + [51009,null], + [51011,null], + [51013,null], + [51015,null], + [51017,null], + [51019,null], + [51021,null], + [51023,null], + [51025,null], + [51027,null], + [51029,null], + [51031,null], + [51033,null], + [51035,null], + [51036,null], + [51037,null], + [51041,null], + [51043,null], + [51045,null], + [51047,null], + [51049,null], + [51051,null], + [51053,null], + [51057,null], + [51059,0.001], + [51061,null], + [51063,null], + [51065,null], + [51067,null], + [51069,null], + [51071,null], + [51073,null], + [51075,null], + [51077,null], + [51079,null], + [51081,null], + [51083,null], + [51085,null], + [51087,null], + [51089,null], + [51091,null], + [51093,null], + [51095,null], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,null], + [51107,0.001], + [51109,null], + [51111,null], + [51113,null], + [51115,null], + [51117,null], + [51119,null], + [51121,null], + [51125,null], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,null], + [51143,null], + [51145,null], + [51147,null], + [51149,null], + [51153,0.001], + [51155,null], + [51157,null], + [51159,null], + [51161,null], + [51163,null], + [51165,null], + [51167,null], + [51169,null], + [51171,null], + [51173,null], + [51175,null], + [51177,null], + [51179,null], + [51181,null], + [51183,null], + [51185,null], + [51187,null], + [51191,null], + [51193,null], + [51195,null], + [51197,null], + [51199,null], + [51510,null], + [51520,null], + [51530,null], + [51540,null], + [51550,null], + [51570,null], + [51580,null], + [51590,null], + [51595,null], + [51600,null], + [51610,null], + [51620,null], + [51630,null], + [51640,null], + [51650,null], + [51660,null], + [51670,null], + [51678,null], + [51680,null], + [51683,null], + [51685,null], + [51690,null], + [51700,null], + [51710,null], + [51720,null], + [51730,null], + [51735,null], + [51740,null], + [51750,null], + [51760,null], + [51770,null], + [51775,null], + [51790,null], + [51800,null], + [51810,null], + [51820,null], + [51830,null], + [51840,null], + [53001,null], + [53003,null], + [53005,null], + [53007,null], + [53009,null], + [53011,null], + [53013,null], + [53015,null], + [53017,null], + [53019,null], + [53021,null], + [53023,null], + [53025,null], + [53027,null], + [53029,null], + [53031,null], + [53033,0.003], + [53035,0.003], + [53037,null], + [53039,null], + [53041,null], + [53043,null], + [53045,null], + [53047,null], + [53049,null], + [53051,null], + [53053,null], + [53055,null], + [53057,null], + [53059,null], + [53061,0.002], + [53063,null], + [53065,null], + [53067,null], + [53069,null], + [53071,null], + [53073,null], + [53075,null], + [53077,null], + [54001,null], + [54003,null], + [54005,null], + [54007,null], + [54009,null], + [54011,null], + [54013,null], + [54015,null], + [54017,null], + [54019,null], + [54021,null], + [54023,null], + [54025,null], + [54027,null], + [54029,null], + [54031,null], + [54033,null], + [54035,null], + [54037,null], + [54039,null], + [54041,null], + [54043,null], + [54045,null], + [54047,null], + [54049,null], + [54051,null], + [54053,null], + [54055,null], + [54057,null], + [54059,null], + [54061,null], + [54063,null], + [54065,null], + [54067,null], + [54069,null], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,null], + [54081,null], + [54083,null], + [54085,null], + [54087,null], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,null], + [54099,null], + [54101,null], + [54103,null], + [54105,null], + [54107,null], + [54109,null], + [55001,null], + [55003,null], + [55005,null], + [55007,null], + [55009,null], + [55011,null], + [55013,null], + [55015,null], + [55017,null], + [55019,null], + [55021,null], + [55023,null], + [55025,null], + [55027,null], + [55029,null], + [55031,null], + [55033,null], + [55035,null], + [55037,null], + [55039,null], + [55041,null], + [55043,null], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,null], + [55057,null], + [55059,null], + [55061,null], + [55063,null], + [55065,null], + [55067,null], + [55069,null], + [55071,null], + [55073,null], + [55075,null], + [55077,null], + [55078,null], + [55079,null], + [55081,null], + [55083,null], + [55085,null], + [55087,null], + [55089,null], + [55091,null], + [55093,null], + [55095,null], + [55097,null], + [55099,null], + [55101,null], + [55103,null], + [55105,null], + [55107,null], + [55109,null], + [55111,null], + [55113,null], + [55115,null], + [55117,null], + [55119,null], + [55121,null], + [55123,null], + [55125,null], + [55127,null], + [55129,null], + [55131,null], + [55133,null], + [55135,null], + [55137,null], + [55139,null], + [55141,null], + [56001,null], + [56003,null], + [56005,null], + [56007,null], + [56009,null], + [56011,null], + [56013,null], + [56015,null], + [56017,null], + [56019,null], + [56021,null], + [56023,null], + [56025,null], + [56027,null], + [56029,null], + [56031,null], + [56033,null], + [56035,null], + [56037,null], + [56039,null], + [56041,null], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-private-nonfarm-2009.json b/data/regional/united-states/economics/employment/us-employment-private-nonfarm-2009.json new file mode 100644 index 0000000..6964747 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-private-nonfarm-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Private Non-Farm Employment", + "description" : "Private non-farm employment.", + "units" : "people", + "year" : "2009", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","workforce"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.private.nonfarm.2009"], + [1001,10628], + [1003,52233], + [1005,7990], + [1007,2927], + [1009,6968], + [1011,1919], + [1013,5400], + [1015,38324], + [1017,6241], + [1019,3600], + [1021,7048], + [1023,2969], + [1025,6944], + [1027,3253], + [1029,2071], + [1031,12499], + [1033,19703], + [1035,2612], + [1037,1050], + [1039,10810], + [1041,3212], + [1043,22761], + [1045,13221], + [1047,11745], + [1049,17512], + [1051,14374], + [1053,9769], + [1055,29773], + [1057,3886], + [1059,8984], + [1061,4199], + [1063,1430], + [1065,2314], + [1067,2722], + [1069,43725], + [1071,11137], + [1073,325281], + [1075,2875], + [1077,25727], + [1079,4748], + [1081,37367], + [1083,15993], + [1085,2320], + [1087,6433], + [1089,154144], + [1091,5963], + [1093,7378], + [1095,29951], + [1097,150599], + [1099,6412], + [1101,104319], + [1103,43314], + [1105,1519], + [1107,2931], + [1109,10775], + [1111,3610], + [1113,11030], + [1115,13181], + [1117,76171], + [1119,2986], + [1121,21858], + [1123,11868], + [1125,70373], + [1127,15960], + [1129,3056], + [1131,2012], + [1133,6622], + [2013,0], + [2016,4953], + [2020,144656], + [2050,3471], + [2060,302], + [2068,522], + [2070,1256], + [2090,26479], + [2100,590], + [2105,447], + [2110,10800], + [2122,13155], + [2130,4686], + [2150,4177], + [2158,556], + [2164,138], + [2170,14869], + [2180,2160], + [2185,2790], + [2188,1707], + [2195,1519], + [2198,702], + [2220,3424], + [2230,0], + [2240,783], + [2261,2729], + [2275,0], + [2282,118], + [2290,377], + [4001,7526], + [4003,28407], + [4005,44916], + [4007,11724], + [4009,10078], + [4011,545], + [4012,3438], + [4013,1451978], + [4015,42107], + [4017,18493], + [4019,309243], + [4021,45025], + [4023,10773], + [4025,53702], + [4027,42617], + [5001,8293], + [5003,6810], + [5005,11156], + [5007,92837], + [5009,12094], + [5011,2670], + [5013,553], + [5015,8061], + [5017,2360], + [5019,7592], + [5021,3146], + [5023,5955], + [5025,430], + [5027,7448], + [5029,5345], + [5031,36484], + [5033,20842], + [5035,13652], + [5037,4209], + [5039,2980], + [5041,3565], + [5043,4482], + [5045,32292], + [5047,3202], + [5049,1405], + [5051,31558], + [5053,2959], + [5055,12565], + [5057,6848], + [5059,5810], + [5061,6121], + [5063,14594], + [5065,1941], + [5067,3602], + [5069,24421], + [5071,7454], + [5073,815], + [5075,2729], + [5077,904], + [5079,1542], + [5081,2977], + [5083,3925], + [5085,10364], + [5087,1829], + [5089,2760], + [5091,10668], + [5093,14751], + [5095,1677], + [5097,973], + [5099,1842], + [5101,592], + [5103,8082], + [5105,866], + [5107,4494], + [5109,1848], + [5111,3473], + [5113,5271], + [5115,22228], + [5117,1044], + [5119,209751], + [5121,3445], + [5123,5665], + [5125,18212], + [5127,2103], + [5129,957], + [5131,64151], + [5133,5173], + [5135,2620], + [5137,2215], + [5139,18819], + [5141,3493], + [5143,79069], + [5145,22485], + [5147,1240], + [5149,4401], + [6001,581130], + [6003,756], + [6005,8378], + [6007,55308], + [6009,5819], + [6011,4133], + [6013,304803], + [6015,4401], + [6017,42602], + [6019,233208], + [6021,4540], + [6023,33603], + [6025,30887], + [6027,5193], + [6029,179606], + [6031,23220], + [6033,9280], + [6035,3610], + [6037,3703233], + [6039,24031], + [6041,94673], + [6043,3064], + [6045,22130], + [6047,40447], + [6049,1310], + [6051,5862], + [6053,100735], + [6055,55167], + [6057,26747], + [6059,1336341], + [6061,123022], + [6063,3812], + [6065,480413], + [6067,417036], + [6069,10894], + [6071,519247], + [6073,1119643], + [6075,492689], + [6077,165952], + [6079,82573], + [6081,336120], + [6083,136826], + [6085,850828], + [6087,71708], + [6089,47789], + [6091,322], + [6093,8517], + [6095,100025], + [6097,149366], + [6099,127658], + [6101,20087], + [6103,11841], + [6105,1551], + [6107,87794], + [6109,13206], + [6111,245788], + [6113,61609], + [6115,9419], + [8001,134044], + [8003,5315], + [8005,239689], + [8007,2913], + [8009,563], + [8011,581], + [8013,134041], + [8014,29760], + [8015,5039], + [8017,631], + [8019,2681], + [8021,544], + [8023,187], + [8025,587], + [8027,562], + [8029,6554], + [8031,382765], + [8033,204], + [8035,81343], + [8037,31662], + [8039,1909], + [8041,216331], + [8043,7863], + [8045,21417], + [8047,3910], + [8049,5702], + [8051,6773], + [8053,184], + [8055,1448], + [8057,289], + [8059,185387], + [8061,209], + [8063,1931], + [8065,1272], + [8067,19582], + [8069,104597], + [8071,3379], + [8073,1177], + [8075,5655], + [8077,53464], + [8079,184], + [8081,4029], + [8083,6665], + [8085,11429], + [8087,8562], + [8089,4607], + [8091,1060], + [8093,1292], + [8095,956], + [8097,16278], + [8099,2972], + [8101,46927], + [8103,1951], + [8105,2730], + [8107,18179], + [8109,778], + [8111,196], + [8113,4704], + [8115,432], + [8117,21403], + [8119,5115], + [8121,475], + [8123,66870], + [8125,2861], + [9001,407342], + [9003,449294], + [9005,52370], + [9007,61152], + [9009,327054], + [9011,104745], + [9013,30274], + [9015,29798], + [10001,48947], + [10003,262628], + [10005,58670], + [11001,466550], + [12001,82708], + [12003,5413], + [12005,54350], + [12007,4321], + [12009,165707], + [12011,610674], + [12013,1565], + [12015,40953], + [12017,24719], + [12019,36229], + [12021,101535], + [12023,17039], + [12027,4902], + [12029,1337], + [12031,408297], + [12033,98136], + [12035,16572], + [12037,1986], + [12039,9200], + [12041,1499], + [12043,811], + [12045,2095], + [12047,2566], + [12049,4208], + [12051,5673], + [12053,28374], + [12055,19112], + [12057,490900], + [12059,2030], + [12061,37847], + [12063,8982], + [12065,1789], + [12067,753], + [12069,66820], + [12071,169998], + [12073,90997], + [12075,5456], + [12077,775], + [12079,2819], + [12081,81154], + [12083,76897], + [12085,48466], + [12086,808269], + [12087,25940], + [12089,14525], + [12091,57415], + [12093,6762], + [12095,592186], + [12097,60610], + [12099,436599], + [12101,77194], + [12103,354914], + [12105,163343], + [12107,13563], + [12109,44374], + [12111,51912], + [12113,20786], + [12115,121767], + [12117,148232], + [12119,14695], + [12121,8352], + [12123,4935], + [12125,1728], + [12127,129006], + [12129,3179], + [12131,15377], + [12133,3460], + [13001,5360], + [13003,1278], + [13005,2704], + [13007,251], + [13009,13341], + [13011,3489], + [13013,12167], + [13015,27795], + [13017,5431], + [13019,3743], + [13021,72155], + [13023,2263], + [13025,1297], + [13027,1949], + [13029,5710], + [13031,17099], + [13033,4657], + [13035,4041], + [13037,642], + [13039,8658], + [13043,2159], + [13045,30322], + [13047,13137], + [13049,1716], + [13051,114769], + [13053,644], + [13055,4634], + [13057,39429], + [13059,44455], + [13061,0], + [13063,71503], + [13065,1686], + [13067,303501], + [13069,12779], + [13071,11676], + [13073,26745], + [13075,3245], + [13077,28281], + [13079,507], + [13081,6659], + [13083,2154], + [13085,5645], + [13087,7837], + [13089,259528], + [13091,3987], + [13093,2320], + [13095,40012], + [13097,33992], + [13099,2929], + [13101,0], + [13103,7112], + [13105,5225], + [13107,5360], + [13109,3771], + [13111,4444], + [13113,37355], + [13115,34138], + [13117,57948], + [13119,5751], + [13121,714815], + [13123,6587], + [13125,205], + [13127,31508], + [13129,16016], + [13131,4017], + [13133,4696], + [13135,293265], + [13137,11341], + [13139,59965], + [13141,703], + [13143,5375], + [13145,3324], + [13147,4646], + [13149,1147], + [13151,40160], + [13153,33434], + [13155,1568], + [13157,14955], + [13159,1611], + [13161,3444], + [13163,4031], + [13165,992], + [13167,1187], + [13169,2567], + [13171,2633], + [13173,885], + [13175,15326], + [13177,3568], + [13179,13049], + [13181,976], + [13183,385], + [13185,38938], + [13187,4426], + [13189,6388], + [13191,1435], + [13193,2086], + [13195,2195], + [13197,1260], + [13199,3278], + [13201,1136], + [13205,6564], + [13207,5490], + [13209,1201], + [13211,5291], + [13213,8335], + [13215,78925], + [13217,17082], + [13219,7815], + [13221,1075], + [13223,14094], + [13225,6257], + [13227,5863], + [13229,3073], + [13231,1648], + [13233,9756], + [13235,1918], + [13237,5119], + [13239,223], + [13241,4237], + [13243,1284], + [13245,81854], + [13247,28387], + [13249,1033], + [13251,2681], + [13253,1554], + [13255,16997], + [13257,8323], + [13259,795], + [13261,9008], + [13263,547], + [13265,0], + [13267,2698], + [13269,1097], + [13271,3868], + [13273,1601], + [13275,15857], + [13277,15955], + [13279,9358], + [13281,2859], + [13283,754], + [13285,25649], + [13287,1491], + [13289,750], + [13291,4855], + [13293,6216], + [13295,10203], + [13297,15458], + [13299,12012], + [13301,645], + [13303,5547], + [13305,5550], + [13307,0], + [13309,1025], + [13311,4781], + [13313,48195], + [13315,584], + [13317,2681], + [13319,2053], + [13321,2415], + [15001,51238], + [15003,338594], + [15005,0], + [15007,23802], + [15009,59606], + [16001,166239], + [16003,480], + [16005,26890], + [16007,1003], + [16009,2190], + [16011,9940], + [16013,10949], + [16015,499], + [16017,11877], + [16019,42413], + [16021,2359], + [16023,449], + [16025,189], + [16027,42564], + [16029,2683], + [16031,6787], + [16033,269], + [16035,1824], + [16037,931], + [16039,3983], + [16041,1997], + [16043,1404], + [16045,2110], + [16047,2646], + [16049,3020], + [16051,3675], + [16053,5768], + [16055,44289], + [16057,8644], + [16059,1635], + [16061,748], + [16063,650], + [16065,14136], + [16067,4119], + [16069,16490], + [16071,614], + [16073,1531], + [16075,4280], + [16077,2184], + [16079,3846], + [16081,2048], + [16083,27170], + [16085,2792], + [16087,1736], + [17001,29460], + [17003,1241], + [17005,3899], + [17007,10900], + [17009,0], + [17011,10100], + [17013,593], + [17015,3451], + [17017,4664], + [17019,68678], + [17021,8490], + [17023,3281], + [17025,4482], + [17027,8779], + [17029,18111], + [17031,2245334], + [17033,6352], + [17035,1529], + [17037,25810], + [17039,4556], + [17041,6227], + [17043,574472], + [17045,5635], + [17047,2153], + [17049,18116], + [17051,4958], + [17053,4236], + [17055,6761], + [17057,7084], + [17059,686], + [17061,1777], + [17063,15037], + [17065,1356], + [17067,2847], + [17069,760], + [17071,620], + [17073,12861], + [17075,6496], + [17077,16961], + [17079,1758], + [17081,16552], + [17083,4909], + [17085,7114], + [17087,1559], + [17089,174964], + [17091,35858], + [17093,20118], + [17095,16009], + [17097,319399], + [17099,36076], + [17101,3349], + [17103,9653], + [17105,12321], + [17107,7573], + [17109,9341], + [17111,85520], + [17113,78693], + [17115,46139], + [17117,9046], + [17119,83793], + [17121,10527], + [17123,2878], + [17125,2473], + [17127,4092], + [17129,1390], + [17131,2303], + [17133,7516], + [17135,7764], + [17137,13026], + [17139,4386], + [17141,13068], + [17143,108226], + [17145,4409], + [17147,2594], + [17149,3172], + [17151,327], + [17153,965], + [17155,1297], + [17157,10439], + [17159,5403], + [17161,63600], + [17163,79282], + [17165,7920], + [17167,82240], + [17169,1217], + [17171,597], + [17173,4358], + [17175,983], + [17177,14488], + [17179,44395], + [17181,3527], + [17183,24945], + [17185,2822], + [17187,5595], + [17189,5482], + [17191,3336], + [17193,3418], + [17195,18062], + [17197,184968], + [17199,22148], + [17201,120990], + [17203,8129], + [18001,11848], + [18003,162419], + [18005,40133], + [18007,1534], + [18009,2807], + [18011,16775], + [18013,2171], + [18015,4424], + [18017,13008], + [18019,42629], + [18021,4794], + [18023,8465], + [18025,1255], + [18027,9995], + [18029,13609], + [18031,9721], + [18033,16369], + [18035,38335], + [18037,25123], + [18039,92665], + [18041,5363], + [18043,24167], + [18045,4558], + [18047,4406], + [18049,5456], + [18051,15298], + [18053,25832], + [18055,6267], + [18057,100070], + [18059,17136], + [18061,9425], + [18063,45323], + [18065,11344], + [18067,30438], + [18069,12753], + [18071,17372], + [18073,9431], + [18075,6199], + [18077,10572], + [18079,6195], + [18081,39827], + [18083,13313], + [18085,31158], + [18087,8745], + [18089,167000], + [18091,34772], + [18093,10577], + [18095,33639], + [18097,503410], + [18099,15834], + [18101,1788], + [18103,7525], + [18105,47533], + [18107,13161], + [18109,11439], + [18111,2438], + [18113,13971], + [18115,1248], + [18117,7168], + [18119,4363], + [18121,2130], + [18123,5011], + [18125,2517], + [18127,48317], + [18129,7858], + [18131,3575], + [18133,11003], + [18135,5589], + [18137,9620], + [18139,4063], + [18141,115156], + [18143,5822], + [18145,14951], + [18147,5194], + [18149,2998], + [18151,12767], + [18153,3726], + [18155,1748], + [18157,59352], + [18159,3081], + [18161,881], + [18163,108423], + [18165,4403], + [18167,46392], + [18169,10712], + [18171,1114], + [18173,12594], + [18175,4360], + [18177,25353], + [18179,10351], + [18181,6371], + [18183,10593], + [19001,1591], + [19003,886], + [19005,4105], + [19007,3527], + [19009,1165], + [19011,4417], + [19013,63591], + [19015,6833], + [19017,8387], + [19019,5662], + [19021,8772], + [19023,2452], + [19025,2384], + [19027,11121], + [19029,4706], + [19031,4398], + [19033,22705], + [19035,4214], + [19037,3797], + [19039,3424], + [19041,7936], + [19043,5245], + [19045,23421], + [19047,6292], + [19049,26494], + [19051,1436], + [19053,1984], + [19055,5316], + [19057,19383], + [19059,7422], + [19061,52354], + [19063,3514], + [19065,5802], + [19067,4317], + [19069,3057], + [19071,2183], + [19073,2715], + [19075,2735], + [19077,2753], + [19079,5629], + [19081,2946], + [19083,5519], + [19085,2974], + [19087,13492], + [19089,2834], + [19091,3287], + [19093,2945], + [19095,7778], + [19097,5038], + [19099,8359], + [19101,6804], + [19103,59393], + [19105,4822], + [19107,1817], + [19109,5624], + [19111,12993], + [19113,114445], + [19115,2766], + [19117,2646], + [19119,2807], + [19121,2649], + [19123,7286], + [19125,15630], + [19127,15132], + [19129,2057], + [19131,3246], + [19133,2269], + [19135,1748], + [19137,3904], + [19139,20132], + [19141,5100], + [19143,1540], + [19145,5636], + [19147,2934], + [19149,9449], + [19151,2066], + [19153,243771], + [19155,30836], + [19157,9008], + [19159,1000], + [19161,2391], + [19163,79056], + [19165,5406], + [19167,17203], + [19169,28999], + [19171,3513], + [19173,1291], + [19175,4913], + [19177,1656], + [19179,14246], + [19181,8066], + [19183,6410], + [19185,1379], + [19187,16837], + [19189,5931], + [19191,9822], + [19193,48021], + [19195,1792], + [19197,4349], + [20001,4567], + [20003,1564], + [20005,6053], + [20007,1511], + [20009,10662], + [20011,5119], + [20013,3509], + [20015,13535], + [20017,391], + [20019,518], + [20021,5442], + [20023,549], + [20025,0], + [20027,2529], + [20029,3088], + [20031,0], + [20033,433], + [20035,11508], + [20037,14351], + [20039,0], + [20041,5153], + [20043,1139], + [20045,37319], + [20047,651], + [20049,401], + [20051,12713], + [20053,1725], + [20055,14128], + [20057,14724], + [20059,9085], + [20061,8343], + [20063,827], + [20065,688], + [20067,2331], + [20069,1438], + [20071,356], + [20073,1223], + [20075,606], + [20077,1723], + [20079,12437], + [20081,811], + [20083,254], + [20085,2988], + [20087,2405], + [20089,568], + [20091,305554], + [20093,595], + [20095,1975], + [20097,795], + [20099,8355], + [20101,402], + [20103,13704], + [20105,620], + [20107,0], + [20109,776], + [20111,12093], + [20113,13216], + [20115,2786], + [20117,3738], + [20119,945], + [20121,6728], + [20123,2682], + [20125,14923], + [20127,1147], + [20129,859], + [20131,4073], + [20133,6038], + [20135,1003], + [20137,1773], + [20139,3258], + [20141,1211], + [20143,991], + [20145,2241], + [20147,1699], + [20149,7612], + [20151,3623], + [20153,568], + [20155,22906], + [20157,1468], + [20159,2531], + [20161,20816], + [20163,1389], + [20165,805], + [20167,1835], + [20169,27514], + [20171,1364], + [20173,231442], + [20175,9889], + [20177,77264], + [20179,598], + [20181,2021], + [20183,972], + [20185,655], + [20187,445], + [20189,1007], + [20191,4844], + [20193,3021], + [20195,801], + [20197,957], + [20199,308], + [20201,1572], + [20203,461], + [20205,3353], + [20207,546], + [20209,63278], + [21001,4093], + [21003,3045], + [21005,3235], + [21007,2090], + [21009,12866], + [21011,1179], + [21013,7261], + [21015,63815], + [21017,5925], + [21019,25070], + [21021,13687], + [21023,845], + [21025,2341], + [21027,2150], + [21029,13554], + [21031,1578], + [21033,3429], + [21035,13257], + [21037,24325], + [21039,486], + [21041,5498], + [21043,5504], + [21045,2629], + [21047,22186], + [21049,12061], + [21051,2479], + [21053,3230], + [21055,1468], + [21057,1061], + [21059,39882], + [21061,791], + [21063,309], + [21065,1699], + [21067,146031], + [21069,2228], + [21071,9771], + [21073,14813], + [21075,2171], + [21077,838], + [21079,1358], + [21081,4246], + [21083,8952], + [21085,5880], + [21087,1155], + [21089,5071], + [21091,3580], + [21093,33747], + [21095,5994], + [21097,4009], + [21099,3772], + [21101,16278], + [21103,1938], + [21105,1227], + [21107,14574], + [21109,1213], + [21111,390000], + [21113,13908], + [21115,4599], + [21117,74080], + [21119,2122], + [21121,7388], + [21123,1945], + [21125,22526], + [21127,2574], + [21129,1588], + [21131,1057], + [21133,4582], + [21135,1231], + [21137,3678], + [21139,1714], + [21141,6421], + [21143,1152], + [21145,34547], + [21147,1451], + [21149,1114], + [21151,20598], + [21153,1587], + [21155,6366], + [21157,8916], + [21159,2844], + [21161,7402], + [21163,3270], + [21165,567], + [21167,5237], + [21169,1605], + [21171,2274], + [21173,8647], + [21175,1903], + [21177,6645], + [21179,11674], + [21181,530], + [21183,5535], + [21185,10254], + [21187,1342], + [21189,374], + [21191,1685], + [21193,11300], + [21195,21209], + [21197,1400], + [21199,20630], + [21201,147], + [21203,2501], + [21205,7133], + [21207,4630], + [21209,19833], + [21211,12078], + [21213,7915], + [21215,1100], + [21217,9578], + [21219,1424], + [21221,2352], + [21223,652], + [21225,4330], + [21227,46492], + [21229,2599], + [21231,4048], + [21233,2181], + [21235,10789], + [21237,648], + [21239,6883], + [22001,12485], + [22003,3721], + [22005,31505], + [22007,2922], + [22009,8929], + [22011,6877], + [22013,3097], + [22015,36102], + [22017,108162], + [22019,69305], + [22021,1962], + [22023,1440], + [22025,1667], + [22027,2705], + [22029,4305], + [22031,4362], + [22033,234947], + [22035,1220], + [22037,3823], + [22039,5859], + [22041,4032], + [22043,1621], + [22045,31660], + [22047,9100], + [22049,2974], + [22051,186338], + [22053,6772], + [22055,120998], + [22057,28443], + [22059,3204], + [22061,14920], + [22063,18146], + [22065,2608], + [22067,5352], + [22069,10631], + [22071,150821], + [22073,64516], + [22075,10239], + [22077,4294], + [22079,49277], + [22081,1755], + [22083,4747], + [22085,4176], + [22087,6681], + [22089,20046], + [22091,1209], + [22093,6431], + [22095,13301], + [22097,22032], + [22099,11228], + [22101,28134], + [22103,67769], + [22105,33587], + [22107,637], + [22109,50887], + [22111,3477], + [22113,10490], + [22115,8785], + [22117,7774], + [22119,10937], + [22121,10108], + [22123,1626], + [22125,2400], + [22127,4289], + [23001,44030], + [23003,22395], + [23005,155966], + [23007,9464], + [23009,16650], + [23011,43990], + [23013,13626], + [23015,8483], + [23017,13943], + [23019,59622], + [23021,4301], + [23023,13170], + [23025,13669], + [23027,8756], + [23029,7324], + [23031,52213], + [24001,23725], + [24003,200856], + [24005,322180], + [24009,17919], + [24011,6826], + [24013,48777], + [24015,24235], + [24017,32497], + [24019,9005], + [24021,82305], + [24023,10568], + [24025,66567], + [24027,149381], + [24029,6932], + [24031,411814], + [24033,247211], + [24035,11056], + [24037,28070], + [24039,3990], + [24041,16975], + [24043,56565], + [24045,37753], + [24047,17311], + [24510,275608], + [25001,70322], + [25003,55460], + [25005,196389], + [25007,4959], + [25009,265720], + [25011,20769], + [25013,170748], + [25015,53979], + [25017,799100], + [25019,3963], + [25021,309660], + [25023,150499], + [25025,562929], + [25027,272872], + [26001,1004], + [26003,1735], + [26005,32415], + [26007,9778], + [26009,3727], + [26011,2902], + [26013,1717], + [26015,9634], + [26017,30816], + [26019,2943], + [26021,51686], + [26023,11022], + [26025,48904], + [26027,6997], + [26029,7840], + [26031,4901], + [26033,8212], + [26035,5446], + [26037,14361], + [26039,3321], + [26041,12470], + [26043,12665], + [26045,35051], + [26047,13313], + [26049,114954], + [26051,3715], + [26053,4370], + [26055,40317], + [26057,10307], + [26059,10435], + [26061,8963], + [26063,9791], + [26065,104521], + [26067,9910], + [26069,5991], + [26071,2713], + [26073,20088], + [26075,45403], + [26077,100997], + [26079,3289], + [26081,297755], + [26083,165], + [26085,1116], + [26087,15357], + [26089,3967], + [26091,25005], + [26093,45657], + [26095,1312], + [26097,1968], + [26099,257875], + [26101,5534], + [26103,21125], + [26105,8568], + [26107,9047], + [26109,4784], + [26111,33740], + [26113,1869], + [26115,36045], + [26117,12172], + [26119,1465], + [26121,49479], + [26123,9029], + [26125,614878], + [26127,4333], + [26129,5797], + [26131,1515], + [26133,5651], + [26135,1258], + [26137,8616], + [26139,90843], + [26141,2112], + [26143,4454], + [26145,76018], + [26147,38474], + [26149,17748], + [26151,8212], + [26153,1829], + [26155,12236], + [26157,8963], + [26159,16253], + [26161,135600], + [26163,593483], + [26165,12192], + [27001,3128], + [27003,105480], + [27005,11808], + [27007,13762], + [27009,14671], + [27011,1554], + [27013,34374], + [27015,12258], + [27017,8317], + [27019,34666], + [27021,6923], + [27023,5315], + [27025,13059], + [27027,16723], + [27029,2190], + [27031,1975], + [27033,4430], + [27035,24190], + [27037,164132], + [27039,3986], + [27041,15775], + [27043,4376], + [27045,5168], + [27047,11721], + [27049,21362], + [27051,1581], + [27053,824275], + [27055,4216], + [27057,4708], + [27059,8335], + [27061,13064], + [27063,5184], + [27065,3143], + [27067,18799], + [27069,1076], + [27071,4309], + [27073,2000], + [27075,2955], + [27077,1195], + [27079,6060], + [27081,1483], + [27083,12356], + [27085,17311], + [27087,1647], + [27089,1641], + [27091,8409], + [27093,5705], + [27095,7567], + [27097,9096], + [27099,13830], + [27101,2281], + [27103,11984], + [27105,9586], + [27107,1380], + [27109,77113], + [27111,18648], + [27113,7713], + [27115,6727], + [27117,4295], + [27119,9446], + [27121,3584], + [27123,288523], + [27125,781], + [27127,5178], + [27129,4789], + [27131,22952], + [27133,2624], + [27135,7181], + [27137,81634], + [27139,37129], + [27141,20205], + [27143,3211], + [27145,73943], + [27147,18918], + [27149,4072], + [27151,3459], + [27153,4825], + [27155,775], + [27157,5846], + [27159,5397], + [27161,6713], + [27163,67048], + [27165,3480], + [27167,1825], + [27169,22151], + [27171,32006], + [27173,4924], + [28001,10031], + [28003,11746], + [28005,1285], + [28007,5072], + [28009,750], + [28011,8273], + [28013,2482], + [28015,576], + [28017,4632], + [28019,1137], + [28021,1853], + [28023,2500], + [28025,4418], + [28027,6797], + [28029,6319], + [28031,4135], + [28033,41123], + [28035,32522], + [28037,1089], + [28039,3244], + [28041,817], + [28043,7969], + [28045,10372], + [28047,69999], + [28049,100697], + [28051,2183], + [28053,2154], + [28055,96], + [28057,4168], + [28059,48842], + [28061,2962], + [28063,513], + [28065,1386], + [28067,26659], + [28069,1064], + [28071,13000], + [28073,16279], + [28075,31026], + [28077,2004], + [28079,5080], + [28081,44281], + [28083,12356], + [28085,10303], + [28087,20664], + [28089,42198], + [28091,6979], + [28093,6182], + [28095,7791], + [28097,2477], + [28099,7704], + [28101,3906], + [28103,1669], + [28105,11438], + [28107,8860], + [28109,7477], + [28111,1775], + [28113,13369], + [28115,9065], + [28117,6433], + [28119,824], + [28121,50766], + [28123,9674], + [28125,801], + [28127,5658], + [28129,2411], + [28131,2939], + [28133,5359], + [28135,1876], + [28137,4077], + [28139,5443], + [28141,4259], + [28143,11370], + [28145,8044], + [28147,2282], + [28149,21108], + [28151,15012], + [28153,4698], + [28155,1683], + [28157,1582], + [28159,4891], + [28161,2169], + [28163,3768], + [29001,8302], + [29003,1806], + [29005,1241], + [29007,6934], + [29009,14082], + [29011,2783], + [29013,2799], + [29015,2359], + [29017,1352], + [29019,64724], + [29021,44384], + [29023,14641], + [29025,854], + [29027,11404], + [29029,12640], + [29031,38042], + [29033,1689], + [29035,952], + [29037,17583], + [29039,2236], + [29041,1328], + [29043,12670], + [29045,1036], + [29047,85807], + [29049,2925], + [29051,33274], + [29053,4489], + [29055,5118], + [29057,1254], + [29059,2513], + [29061,957], + [29063,1933], + [29065,3529], + [29067,2167], + [29069,7962], + [29071,31991], + [29073,4250], + [29075,1972], + [29077,142628], + [29079,2586], + [29081,2079], + [29083,6761], + [29085,631], + [29087,868], + [29089,1741], + [29091,12481], + [29093,2103], + [29095,334290], + [29097,53169], + [29099,40732], + [29101,9477], + [29103,673], + [29105,12107], + [29107,6376], + [29109,7496], + [29111,1996], + [29113,8173], + [29115,3470], + [29117,4838], + [29119,5092], + [29121,3118], + [29123,2858], + [29125,1057], + [29127,10628], + [29129,412], + [29131,6279], + [29133,2596], + [29135,2727], + [29137,1702], + [29139,2085], + [29141,2818], + [29143,5678], + [29145,19669], + [29147,7529], + [29149,1575], + [29151,2934], + [29153,908], + [29155,4671], + [29157,8887], + [29159,17284], + [29161,13099], + [29163,4207], + [29165,39973], + [29167,7047], + [29169,8253], + [29171,625], + [29173,3495], + [29175,8209], + [29177,2996], + [29179,1553], + [29181,2294], + [29183,115826], + [29185,1449], + [29186,5528], + [29187,17171], + [29189,563427], + [29195,7133], + [29197,361], + [29199,771], + [29201,13408], + [29203,1032], + [29205,1231], + [29207,8089], + [29209,4981], + [29211,2142], + [29213,22932], + [29215,4518], + [29217,5649], + [29219,5858], + [29221,3145], + [29223,1888], + [29225,5061], + [29227,184], + [29229,3440], + [29510,238347], + [30001,2238], + [30003,2148], + [30005,1059], + [30007,899], + [30009,2244], + [30011,0], + [30013,29975], + [30015,765], + [30017,4260], + [30019,0], + [30021,2865], + [30023,2748], + [30025,860], + [30027,3325], + [30029,32182], + [30031,37703], + [30033,172], + [30035,2013], + [30037,0], + [30039,474], + [30041,5311], + [30043,1675], + [30045,179], + [30047,5380], + [30049,23930], + [30051,326], + [30053,3972], + [30055,337], + [30057,1423], + [30059,269], + [30061,781], + [30063,47442], + [30065,694], + [30067,4244], + [30069,0], + [30071,924], + [30073,1319], + [30075,278], + [30077,976], + [30079,168], + [30081,8655], + [30083,4275], + [30085,1678], + [30087,2597], + [30089,2111], + [30091,972], + [30093,13046], + [30095,2298], + [30097,915], + [30099,1114], + [30101,1584], + [30103,78], + [30105,2108], + [30107,342], + [30109,203], + [30111,67175], + [31001,14205], + [31003,1383], + [31005,0], + [31007,0], + [31009,0], + [31011,1452], + [31013,3072], + [31015,400], + [31017,906], + [31019,21201], + [31021,1174], + [31023,1997], + [31025,3314], + [31027,1853], + [31029,1054], + [31031,1661], + [31033,4085], + [31035,1174], + [31037,3468], + [31039,2672], + [31041,2639], + [31043,10103], + [31045,2187], + [31047,9607], + [31049,390], + [31051,938], + [31053,14316], + [31055,307059], + [31057,374], + [31059,1637], + [31061,458], + [31063,449], + [31065,1348], + [31067,7840], + [31069,392], + [31071,600], + [31073,249], + [31075,0], + [31077,378], + [31079,29887], + [31081,2749], + [31083,632], + [31085,0], + [31087,443], + [31089,3430], + [31091,104], + [31093,906], + [31095,2551], + [31097,993], + [31099,1978], + [31101,2530], + [31103,50], + [31105,990], + [31107,1505], + [31109,127177], + [31111,11477], + [31113,0], + [31115,28], + [31117,0], + [31119,18015], + [31121,1646], + [31123,862], + [31125,494], + [31127,1727], + [31129,1138], + [31131,5197], + [31133,523], + [31135,798], + [31137,3802], + [31139,1377], + [31141,15068], + [31143,841], + [31145,3907], + [31147,1818], + [31149,0], + [31151,6183], + [31153,39910], + [31155,3515], + [31157,13268], + [31159,5246], + [31161,1109], + [31163,531], + [31165,50], + [31167,0], + [31169,1709], + [31171,179], + [31173,1324], + [31175,1336], + [31177,6219], + [31179,2835], + [31181,632], + [31183,104], + [31185,5888], + [32001,5577], + [32003,762726], + [32005,15961], + [32007,18869], + [32009,0], + [32011,1264], + [32013,6021], + [32015,1337], + [32017,591], + [32019,9309], + [32021,0], + [32023,7122], + [32027,1071], + [32029,352], + [32031,173120], + [32033,2467], + [32510,22258], + [33001,21721], + [33003,17471], + [33005,29405], + [33007,9784], + [33009,55230], + [33011,177056], + [33013,59765], + [33015,126519], + [33017,36649], + [33019,10667], + [34001,115605], + [34003,421205], + [34005,180644], + [34007,173417], + [34009,24315], + [34011,46428], + [34013,296105], + [34015,86094], + [34017,208770], + [34019,45355], + [34021,177461], + [34023,369072], + [34025,220430], + [34027,284054], + [34029,123065], + [34031,146599], + [34033,17576], + [34035,189390], + [34037,31479], + [34039,208348], + [34041,29691], + [35001,251058], + [35003,292], + [35005,17113], + [35006,5842], + [35007,3788], + [35009,12006], + [35011,352], + [35013,50549], + [35015,19476], + [35017,7324], + [35019,1005], + [35021,0], + [35023,864], + [35025,20773], + [35027,5220], + [35028,0], + [35029,4284], + [35031,16457], + [35033,388], + [35035,12617], + [35037,2081], + [35039,6981], + [35041,4034], + [35043,24511], + [35045,40754], + [35047,5668], + [35049,45986], + [35051,2526], + [35053,2987], + [35055,9518], + [35057,1876], + [35059,1049], + [35061,11114], + [36001,168693], + [36003,13204], + [36005,223386], + [36007,74702], + [36009,23922], + [36011,18002], + [36013,43560], + [36015,32016], + [36017,11316], + [36019,25590], + [36021,14811], + [36023,14271], + [36025,12390], + [36027,94659], + [36029,400380], + [36031,9766], + [36033,10635], + [36035,14113], + [36037,15765], + [36039,11541], + [36041,826], + [36043,12100], + [36045,29392], + [36047,484947], + [36049,4590], + [36051,12684], + [36053,17519], + [36055,336930], + [36057,15256], + [36059,512737], + [36061,1996595], + [36063,57730], + [36065,89433], + [36067,212993], + [36069,42307], + [36071,100407], + [36073,7997], + [36075,23616], + [36077,17962], + [36079,21142], + [36081,485341], + [36083,41085], + [36085,91660], + [36087,99816], + [36089,27527], + [36091,61563], + [36093,50635], + [36095,5711], + [36097,3637], + [36099,8000], + [36101,27992], + [36103,550192], + [36105,17709], + [36107,12973], + [36109,45542], + [36111,45021], + [36113,31537], + [36115,9498], + [36117,19395], + [36119,372772], + [36121,8670], + [36123,5090], + [37001,49711], + [37003,7259], + [37005,2268], + [37007,4781], + [37009,5817], + [37011,4693], + [37013,13162], + [37015,5169], + [37017,10974], + [37019,23533], + [37021,98997], + [37023,23033], + [37025,58666], + [37027,19649], + [37029,824], + [37031,18188], + [37033,1808], + [37035,76532], + [37037,14232], + [37039,6647], + [37041,4022], + [37043,1541], + [37045,27840], + [37047,12116], + [37049,28475], + [37051,91510], + [37053,4193], + [37055,13202], + [37057,34519], + [37059,9448], + [37061,13067], + [37063,163018], + [37065,15778], + [37067,163419], + [37069,9464], + [37071,59480], + [37073,910], + [37075,1808], + [37077,13542], + [37079,1929], + [37081,239884], + [37083,13571], + [37085,18881], + [37087,13964], + [37089,29883], + [37091,7312], + [37093,5259], + [37095,731], + [37097,57786], + [37099,8905], + [37101,35613], + [37103,1001], + [37105,23496], + [37107,21029], + [37109,17235], + [37111,11892], + [37113,9512], + [37115,2946], + [37117,5894], + [37119,531089], + [37121,4148], + [37123,6646], + [37125,27815], + [37127,37030], + [37129,83846], + [37131,4121], + [37133,33956], + [37135,39199], + [37137,1835], + [37139,11965], + [37141,7172], + [37143,1375], + [37145,8051], + [37147,56760], + [37149,3868], + [37151,38091], + [37153,11145], + [37155,32802], + [37157,23197], + [37159,41734], + [37161,16329], + [37163,12887], + [37165,10883], + [37167,15518], + [37169,5642], + [37171,27444], + [37173,5535], + [37175,7458], + [37177,390], + [37179,46657], + [37181,13177], + [37183,375345], + [37185,1753], + [37187,3179], + [37189,16863], + [37191,33986], + [37193,18983], + [37195,31014], + [37197,7288], + [37199,2919], + [38001,741], + [38003,5509], + [38005,1071], + [38007,0], + [38009,1812], + [38011,1088], + [38013,370], + [38015,42751], + [38017,95776], + [38019,1193], + [38021,1809], + [38023,494], + [38025,961], + [38027,571], + [38029,765], + [38031,1360], + [38033,405], + [38035,30760], + [38037,414], + [38039,704], + [38041,434], + [38043,409], + [38045,1154], + [38047,406], + [38049,867], + [38051,863], + [38053,1671], + [38055,2117], + [38057,0], + [38059,8245], + [38061,1631], + [38063,702], + [38065,0], + [38067,2875], + [38069,1452], + [38071,3974], + [38073,1638], + [38075,739], + [38077,5993], + [38079,2395], + [38081,2128], + [38083,0], + [38085,883], + [38087,29], + [38089,10474], + [38091,445], + [38093,8680], + [38095,577], + [38097,2530], + [38099,3560], + [38101,23592], + [38103,1350], + [38105,9308], + [39001,4227], + [39003,46048], + [39005,16037], + [39007,24629], + [39009,12862], + [39011,17205], + [39013,19314], + [39015,6137], + [39017,129208], + [39019,4815], + [39021,8545], + [39023,41505], + [39025,47231], + [39027,17698], + [39029,25689], + [39031,9433], + [39033,12007], + [39035,648495], + [39037,14880], + [39039,12766], + [39041,65879], + [39043,29155], + [39045,32609], + [39047,9931], + [39049,568889], + [39051,15293], + [39053,9571], + [39055,31094], + [39057,48685], + [39059,12826], + [39061,460652], + [39063,37256], + [39065,7064], + [39067,2564], + [39069,7874], + [39071,8603], + [39073,5218], + [39075,15595], + [39077,18659], + [39079,9507], + [39081,20685], + [39083,18912], + [39085,85877], + [39087,10449], + [39089,47124], + [39091,16085], + [39093,80588], + [39095,189906], + [39097,10328], + [39099,84748], + [39101,21584], + [39103,50687], + [39105,2355], + [39107,13307], + [39109,32478], + [39111,3215], + [39113,226069], + [39115,1867], + [39117,3803], + [39119,27879], + [39121,2017], + [39123,9812], + [39125,3606], + [39127,3881], + [39129,10565], + [39131,6639], + [39133,41425], + [39135,8429], + [39137,9367], + [39139,43964], + [39141,20715], + [39143,22360], + [39145,17961], + [39147,17684], + [39149,21985], + [39151,136726], + [39153,235718], + [39155,71852], + [39157,30272], + [39159,22692], + [39161,9261], + [39163,1629], + [39165,72061], + [39167,21567], + [39169,36687], + [39171,13783], + [39173,47613], + [39175,6496], + [40001,3023], + [40003,771], + [40005,2240], + [40007,1185], + [40009,9172], + [40011,2497], + [40013,9764], + [40015,4679], + [40017,22495], + [40019,20055], + [40021,9100], + [40023,3358], + [40025,373], + [40027,65425], + [40029,770], + [40031,32225], + [40033,1390], + [40035,4300], + [40037,15673], + [40039,9827], + [40041,7070], + [40043,851], + [40045,851], + [40047,22749], + [40049,7957], + [40051,10711], + [40053,805], + [40055,622], + [40057,463], + [40059,665], + [40061,2925], + [40063,2529], + [40065,7296], + [40067,757], + [40069,1810], + [40071,16336], + [40073,5231], + [40075,1748], + [40077,2097], + [40079,8757], + [40081,5226], + [40083,6421], + [40085,3549], + [40087,6923], + [40089,7895], + [40091,3403], + [40093,2152], + [40095,3877], + [40097,9394], + [40099,3184], + [40101,24809], + [40103,3435], + [40105,1408], + [40107,1357], + [40109,347805], + [40111,8131], + [40113,5922], + [40115,9030], + [40117,2457], + [40119,22398], + [40121,12734], + [40123,13153], + [40125,18778], + [40127,1954], + [40129,472], + [40131,28108], + [40133,5482], + [40135,6673], + [40137,13129], + [40139,6858], + [40141,1296], + [40143,320789], + [40145,7912], + [40147,18921], + [40149,1643], + [40151,2356], + [40153,8040], + [41001,3840], + [41003,25094], + [41005,124588], + [41007,13640], + [41009,7284], + [41011,17007], + [41013,3917], + [41015,4854], + [41017,52759], + [41019,28065], + [41021,605], + [41023,1401], + [41025,1323], + [41027,8875], + [41029,65112], + [41031,3260], + [41033,19520], + [41035,17339], + [41037,1247], + [41039,113703], + [41041,14208], + [41043,32610], + [41045,8244], + [41047,95112], + [41049,2436], + [41051,381164], + [41053,11709], + [41055,266], + [41057,6491], + [41059,21512], + [41061,6814], + [41063,1629], + [41065,6802], + [41067,227038], + [41069,124], + [41071,27938], + [42001,28698], + [42003,669057], + [42005,13338], + [42007,47878], + [42009,13043], + [42011,144462], + [42013,49683], + [42015,17314], + [42017,248606], + [42019,74304], + [42021,50616], + [42023,1626], + [42025,13577], + [42027,42376], + [42029,231960], + [42031,11228], + [42033,24774], + [42035,10699], + [42037,21687], + [42039,26249], + [42041,116406], + [42043,142403], + [42045,206780], + [42047,13425], + [42049,114158], + [42051,37098], + [42053,1180], + [42055,47245], + [42057,3698], + [42059,12177], + [42061,9533], + [42063,27528], + [42065,13489], + [42067,5033], + [42069,98621], + [42071,211461], + [42073,26968], + [42075,43082], + [42077,153954], + [42079,124158], + [42081,43559], + [42083,13482], + [42085,44087], + [42087,12736], + [42089,44554], + [42091,468429], + [42093,12965], + [42095,91604], + [42097,23569], + [42099,6269], + [42101,579921], + [42103,7668], + [42105,4394], + [42107,40827], + [42109,13853], + [42111,20642], + [42113,1177], + [42115,6268], + [42117,9455], + [42119,15582], + [42121,17129], + [42123,13803], + [42125,80120], + [42127,12739], + [42129,120610], + [42131,8288], + [42133,156561], + [44001,13602], + [44003,71108], + [44005,28620], + [44007,258436], + [44009,40247], + [45001,4713], + [45003,48735], + [45005,1387], + [45007,52060], + [45009,3535], + [45011,4750], + [45013,48918], + [45015,38052], + [45017,3107], + [45019,172234], + [45021,16742], + [45023,6514], + [45025,11587], + [45027,5804], + [45029,8280], + [45031,16911], + [45033,8167], + [45035,22902], + [45037,4410], + [45039,4438], + [45041,54201], + [45043,18240], + [45045,213246], + [45047,25229], + [45049,3713], + [45051,97155], + [45053,5973], + [45055,14009], + [45057,13369], + [45059,16177], + [45061,2161], + [45063,87088], + [45065,1007], + [45067,6528], + [45069,5302], + [45071,12113], + [45073,18461], + [45075,27410], + [45077,25521], + [45079,167702], + [45081,3399], + [45083,112163], + [45085,28652], + [45087,6265], + [45089,7159], + [45091,65053], + [46003,628], + [46005,7055], + [46007,577], + [46009,1326], + [46011,14397], + [46013,18296], + [46015,1773], + [46017,135], + [46019,1978], + [46021,273], + [46023,2340], + [46025,524], + [46027,3732], + [46029,13509], + [46031,213], + [46033,1341], + [46035,10896], + [46037,1475], + [46039,1442], + [46041,694], + [46043,889], + [46045,796], + [46047,2096], + [46049,396], + [46051,3197], + [46053,1063], + [46055,581], + [46057,1002], + [46059,990], + [46061,205], + [46063,0], + [46065,6418], + [46067,2080], + [46069,478], + [46071,253], + [46073,0], + [46075,278], + [46077,1316], + [46079,3515], + [46081,9888], + [46083,10980], + [46085,639], + [46087,968], + [46089,348], + [46091,965], + [46093,5115], + [46095,0], + [46097,562], + [46099,110148], + [46101,1665], + [46102,1856], + [46103,44419], + [46105,798], + [46107,812], + [46109,2130], + [46111,345], + [46115,1235], + [46117,999], + [46119,294], + [46121,1887], + [46123,1619], + [46125,1680], + [46127,8814], + [46129,1811], + [46135,10230], + [46137,70], + [47001,39623], + [47003,11770], + [47005,3174], + [47007,536], + [47009,37831], + [47011,35307], + [47013,7177], + [47015,1364], + [47017,6254], + [47019,9252], + [47021,5783], + [47023,2837], + [47025,6912], + [47027,894], + [47029,5919], + [47031,20489], + [47033,1934], + [47035,13430], + [47037,377596], + [47039,3226], + [47041,4981], + [47043,11800], + [47045,13147], + [47047,6314], + [47049,3211], + [47051,9772], + [47053,12866], + [47055,7258], + [47057,2026], + [47059,20513], + [47061,1298], + [47063,27283], + [47065,170950], + [47067,665], + [47069,5988], + [47071,6070], + [47073,9610], + [47075,5152], + [47077,6265], + [47079,7951], + [47081,2394], + [47083,925], + [47085,3998], + [47087,919], + [47089,10810], + [47091,2570], + [47093,200624], + [47095,589], + [47097,4609], + [47099,7743], + [47101,1783], + [47103,6754], + [47105,11654], + [47107,14876], + [47109,5030], + [47111,3484], + [47113,49204], + [47115,5140], + [47117,7398], + [47119,26216], + [47121,1459], + [47123,9654], + [47125,37864], + [47127,0], + [47129,1688], + [47131,11810], + [47133,3380], + [47135,1076], + [47137,531], + [47139,1518], + [47141,28204], + [47143,8697], + [47145,8899], + [47147,16038], + [47149,84899], + [47151,3833], + [47153,1945], + [47155,32140], + [47157,428357], + [47159,3791], + [47161,1205], + [47163,67415], + [47165,36688], + [47167,8408], + [47169,1100], + [47171,4299], + [47173,1769], + [47175,510], + [47177,9079], + [47179,50044], + [47181,2629], + [47183,7664], + [47185,4895], + [47187,93418], + [47189,30807], + [48001,11897], + [48003,4355], + [48005,29415], + [48007,4163], + [48009,1208], + [48011,199], + [48013,6499], + [48015,9925], + [48017,1394], + [48019,2073], + [48021,10883], + [48023,1050], + [48025,4906], + [48027,81198], + [48029,633667], + [48031,1786], + [48033,6], + [48035,2586], + [48037,32288], + [48039,75335], + [48041,54808], + [48043,2766], + [48045,132], + [48047,1543], + [48049,12755], + [48051,2479], + [48053,9623], + [48055,5430], + [48057,8527], + [48059,1923], + [48061,99750], + [48063,3368], + [48065,4077], + [48067,5557], + [48069,1093], + [48071,8876], + [48073,10744], + [48075,1566], + [48077,1006], + [48079,378], + [48081,273], + [48083,1579], + [48085,286458], + [48087,478], + [48089,5845], + [48091,34543], + [48093,2462], + [48095,680], + [48097,12000], + [48099,10553], + [48101,160], + [48103,1171], + [48105,1041], + [48107,725], + [48109,570], + [48111,1780], + [48113,1253122], + [48115,2743], + [48117,5197], + [48119,533], + [48121,157762], + [48123,4219], + [48125,373], + [48127,1780], + [48129,442], + [48131,1888], + [48133,6282], + [48135,50980], + [48137,194], + [48139,33190], + [48141,205190], + [48143,11414], + [48145,1785], + [48147,4812], + [48149,6361], + [48151,544], + [48153,983], + [48155,193], + [48157,111961], + [48159,5913], + [48161,4279], + [48163,2788], + [48165,3051], + [48167,71738], + [48169,1199], + [48171,8061], + [48173,94], + [48175,831], + [48177,4632], + [48179,6401], + [48181,38107], + [48183,66079], + [48185,5180], + [48187,25976], + [48189,11293], + [48191,550], + [48193,2070], + [48195,1119], + [48197,774], + [48199,8915], + [48201,1809432], + [48203,18896], + [48205,1083], + [48207,886], + [48209,36031], + [48211,1340], + [48213,12923], + [48215,164066], + [48217,6976], + [48219,5633], + [48221,12266], + [48223,10052], + [48225,3636], + [48227,9490], + [48229,171], + [48231,21830], + [48233,6297], + [48235,282], + [48237,2863], + [48239,3896], + [48241,8963], + [48243,330], + [48245,106468], + [48247,1293], + [48249,13644], + [48251,38159], + [48253,2458], + [48255,2311], + [48257,20779], + [48259,9844], + [48261,71], + [48263,0], + [48265,15346], + [48267,1080], + [48269,0], + [48271,347], + [48273,7000], + [48275,832], + [48277,17650], + [48279,2921], + [48281,3598], + [48283,1289], + [48285,5322], + [48287,3966], + [48289,4343], + [48291,12610], + [48293,5444], + [48295,0], + [48297,1926], + [48299,3710], + [48301,0], + [48303,103866], + [48305,704], + [48307,2098], + [48309,94548], + [48311,100], + [48313,1893], + [48315,1439], + [48317,815], + [48319,769], + [48321,7882], + [48323,10939], + [48325,5220], + [48327,283], + [48329,61008], + [48331,4221], + [48333,821], + [48335,1143], + [48337,4111], + [48339,121158], + [48341,8069], + [48343,4442], + [48345,0], + [48347,18883], + [48349,12743], + [48351,1237], + [48353,4509], + [48355,124249], + [48357,3573], + [48359,0], + [48361,19849], + [48363,6351], + [48365,7238], + [48367,23367], + [48369,0], + [48371,4078], + [48373,8640], + [48375,59573], + [48377,714], + [48379,1118], + [48381,25879], + [48383,912], + [48385,539], + [48387,1682], + [48389,1926], + [48391,1394], + [48393,93], + [48395,2469], + [48397,19020], + [48399,2379], + [48401,10614], + [48403,1359], + [48405,1317], + [48407,1047], + [48409,13371], + [48411,826], + [48413,499], + [48415,5611], + [48417,947], + [48419,6426], + [48421,263], + [48423,85043], + [48425,2943], + [48427,8302], + [48429,2388], + [48431,238], + [48433,399], + [48435,1278], + [48437,1072], + [48439,677390], + [48441,52178], + [48443,86], + [48445,2246], + [48447,289], + [48449,13796], + [48451,36046], + [48453,473672], + [48455,1876], + [48457,2397], + [48459,4176], + [48461,760], + [48463,6561], + [48465,9989], + [48467,7484], + [48469,31855], + [48471,11544], + [48473,9734], + [48475,2474], + [48477,12243], + [48479,64376], + [48481,11361], + [48483,1538], + [48485,46441], + [48487,3759], + [48489,2864], + [48491,120066], + [48493,4647], + [48495,1348], + [48497,16439], + [48499,7425], + [48501,2116], + [48503,6008], + [48505,2194], + [48507,1846], + [49001,1447], + [49003,16635], + [49005,37432], + [49007,7234], + [49009,98], + [49011,74246], + [49013,6045], + [49015,2696], + [49017,1122], + [49019,3378], + [49021,11624], + [49023,2251], + [49025,2156], + [49027,2723], + [49029,1441], + [49031,101], + [49033,354], + [49035,503630], + [49037,2548], + [49039,4552], + [49041,5845], + [49043,23908], + [49045,10174], + [49047,10111], + [49049,155202], + [49051,4707], + [49053,39405], + [49055,717], + [49057,71286], + [50001,12252], + [50003,14006], + [50005,9248], + [50007,85937], + [50009,761], + [50011,11745], + [50013,610], + [50015,9974], + [50017,6074], + [50019,7624], + [50021,24516], + [50023,25982], + [50025,21295], + [50027,28924], + [51001,9424], + [51003,35959], + [51005,2756], + [51007,1969], + [51009,7051], + [51011,2723], + [51013,122173], + [51015,18923], + [51017,1764], + [51019,11967], + [51021,1177], + [51023,10279], + [51025,2948], + [51027,6110], + [51029,1868], + [51031,15221], + [51033,4238], + [51035,4226], + [51036,1165], + [51037,1868], + [51041,100727], + [51043,3451], + [51045,377], + [51047,11792], + [51049,995], + [51051,2844], + [51053,4454], + [51057,3506], + [51059,564426], + [51061,15293], + [51063,1966], + [51065,2691], + [51067,11631], + [51069,20381], + [51071,3868], + [51073,7254], + [51075,11275], + [51077,1493], + [51079,2225], + [51081,2576], + [51083,9890], + [51085,39978], + [51087,165889], + [51089,12965], + [51091,360], + [51093,9318], + [51095,24181], + [51097,799], + [51099,5620], + [51101,2815], + [51103,4212], + [51105,3259], + [51107,114986], + [51109,6697], + [51111,1765], + [51113,2747], + [51115,1044], + [51117,10700], + [51119,2340], + [51121,26297], + [51125,3156], + [51127,2615], + [51131,3211], + [51133,1789], + [51135,3655], + [51137,5513], + [51139,4610], + [51141,4156], + [51143,7887], + [51145,4143], + [51147,6771], + [51149,5952], + [51153,81776], + [51155,10785], + [51157,856], + [51159,2031], + [51161,34318], + [51163,4746], + [51165,23844], + [51167,6361], + [51169,3688], + [51171,11565], + [51173,9296], + [51175,3153], + [51177,26010], + [51179,27491], + [51181,0], + [51183,2271], + [51185,14494], + [51187,9892], + [51191,17365], + [51193,2742], + [51195,11101], + [51197,9340], + [51199,18384], + [51510,79423], + [51520,11113], + [51530,1862], + [51540,31301], + [51550,84983], + [51570,9544], + [51580,3536], + [51590,22888], + [51595,3954], + [51600,28629], + [51610,9091], + [51620,3692], + [51630,20710], + [51640,5676], + [51650,41202], + [51660,27359], + [51670,6922], + [51678,4108], + [51680,54809], + [51683,23077], + [51685,2836], + [51690,8437], + [51700,86385], + [51710,119653], + [51720,4722], + [51730,12798], + [51735,1436], + [51740,28124], + [51750,5337], + [51760,120753], + [51770,66413], + [51775,18775], + [51790,10552], + [51800,20945], + [51810,145524], + [51820,9431], + [51830,9636], + [51840,22060], + [53001,4202], + [53003,4394], + [53005,56298], + [53007,25939], + [53009,17371], + [53011,110009], + [53013,762], + [53015,30640], + [53017,5862], + [53019,737], + [53021,16301], + [53023,300], + [53025,18640], + [53027,16278], + [53029,11836], + [53031,6753], + [53033,1032598], + [53035,57587], + [53037,10409], + [53039,3530], + [53041,19031], + [53043,1495], + [53045,9832], + [53047,8440], + [53049,4167], + [53051,1828], + [53053,228905], + [53055,4089], + [53057,37356], + [53059,1281], + [53061,220362], + [53063,177847], + [53065,7347], + [53067,64807], + [53069,617], + [53071,19272], + [53073,70390], + [53075,8784], + [53077,62674], + [54001,2910], + [54003,20726], + [54005,7251], + [54007,3007], + [54009,7531], + [54011,47641], + [54013,1088], + [54015,1487], + [54017,528], + [54019,8916], + [54021,1218], + [54023,2521], + [54025,10228], + [54027,2731], + [54029,10127], + [54031,5356], + [54033,27598], + [54035,6811], + [54037,10217], + [54039,90493], + [54041,5118], + [54043,2275], + [54045,10992], + [54047,3148], + [54049,17942], + [54051,7849], + [54053,4670], + [54055,19375], + [54057,6600], + [54059,6287], + [54061,39982], + [54063,1440], + [54065,2302], + [54067,8346], + [54069,27574], + [54071,1161], + [54073,2048], + [54075,3243], + [54077,5063], + [54079,16468], + [54081,29680], + [54083,9204], + [54085,2468], + [54087,2618], + [54089,1537], + [54091,1957], + [54093,2038], + [54095,1439], + [54097,7084], + [54099,7724], + [54101,1473], + [54103,4432], + [54105,396], + [54107,34000], + [54109,3851], + [55001,3074], + [55003,6835], + [55005,16017], + [55007,2261], + [55009,133583], + [55011,4352], + [55013,3165], + [55015,11939], + [55017,19200], + [55019,8181], + [55021,19605], + [55023,5904], + [55025,247333], + [55027,27906], + [55029,10437], + [55031,13516], + [55033,12425], + [55035,47040], + [55037,592], + [55039,39419], + [55041,1815], + [55043,12964], + [55045,11602], + [55047,5810], + [55049,8738], + [55051,1543], + [55053,6120], + [55055,30438], + [55057,6148], + [55059,45219], + [55061,5521], + [55063,56501], + [55065,2597], + [55067,6595], + [55069,8750], + [55071,30225], + [55073,63576], + [55075,17281], + [55077,3046], + [55078,0], + [55079,453280], + [55081,14283], + [55083,6765], + [55085,13672], + [55087,92898], + [55089,35836], + [55091,1614], + [55093,6109], + [55095,12445], + [55097,29247], + [55099,4869], + [55101,65755], + [55103,4602], + [55105,51757], + [55107,4075], + [55109,24439], + [55111,29955], + [55113,4940], + [55115,10433], + [55117,51338], + [55119,6477], + [55121,11140], + [55123,6729], + [55125,5936], + [55127,32657], + [55129,4487], + [55131,47741], + [55133,218305], + [55135,15975], + [55137,4526], + [55139,82414], + [55141,34875], + [56001,10122], + [56003,2506], + [56005,23006], + [56007,4883], + [56009,3966], + [56011,1513], + [56013,11972], + [56015,3219], + [56017,1824], + [56019,2535], + [56021,31678], + [56023,4607], + [56025,34720], + [56027,390], + [56029,10081], + [56031,2218], + [56033,10561], + [56035,3696], + [56037,16785], + [56039,15977], + [56041,8026], + [56043,3332], + [56045,1564] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2007.json b/data/regional/united-states/economics/employment/us-employment-total-2007.json new file mode 100644 index 0000000..db78524 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","usemployment.total.2007"], + [1001,23577], + [1003,80099], + [1005,9684], + [1007,8432], + [1009,25780], + [1011,3308], + [1013,8539], + [1015,52709], + [1017,14469], + [1019,11484], + [1021,19067], + [1023,4875], + [1025,9730], + [1027,5775], + [1029,6246], + [1031,20275], + [1033,24216], + [1035,4646], + [1037,4415], + [1039,16409], + [1041,6264], + [1043,38047], + [1045,19450], + [1047,14259], + [1049,29689], + [1051,34620], + [1053,13530], + [1055,43431], + [1057,7039], + [1059,13108], + [1061,11137], + [1063,3075], + [1065,6602], + [1067,7135], + [1069,45607], + [1071,25799], + [1073,302603], + [1075,5488], + [1077,41389], + [1079,15160], + [1081,62949], + [1083,35123], + [1085,4400], + [1087,8385], + [1089,160218], + [1091,7718], + [1093,12297], + [1095,39890], + [1097,177096], + [1099,8369], + [1101,101798], + [1103,54654], + [1105,3244], + [1107,7613], + [1109,14947], + [1111,9005], + [1113,20414], + [1115,34813], + [1117,97043], + [1119,4466], + [1121,36898], + [1123,17340], + [1125,86080], + [1127,27800], + [1129,6586], + [1131,3106], + [1133,9712], + [2013,1007], + [2016,2917], + [2020,143336], + [2050,6062], + [2060,1014], + [2068,1502], + [2070,1858], + [2090,42858], + [2100,1339], + [2105,"NA"], + [2110,17626], + [2122,23674], + [2130,7757], + [2150,5756], + [2158,"NA"], + [2164,1102], + [2170,36934], + [2180,3374], + [2185,4420], + [2188,2646], + [2195,"NA"], + [2198,"NA"], + [2220,4398], + [2230,"NA"], + [2240,3246], + [2261,4778], + [2275,"NA"], + [2282,287], + [2290,2382], + [4001,18427], + [4003,54934], + [4005,68093], + [4007,20256], + [4009,13680], + [4011,3868], + [4012,7262], + [4013,1881907], + [4015,87174], + [4017,35783], + [4019,441553], + [4021,106534], + [4023,15893], + [4025,93996], + [4027,67756], + [5001,10942], + [5003,8712], + [5005,16787], + [5007,101125], + [5009,16127], + [5011,5446], + [5013,2461], + [5015,13416], + [5017,4583], + [5019,10451], + [5021,6125], + [5023,10977], + [5025,3942], + [5027,10320], + [5029,9583], + [5031,43687], + [5033,27174], + [5035,20955], + [5037,7833], + [5039,3608], + [5041,5567], + [5043,7870], + [5045,52793], + [5047,8215], + [5049,4912], + [5051,40380], + [5053,8162], + [5055,17463], + [5057,10332], + [5059,14654], + [5061,6101], + [5063,16321], + [5065,5125], + [5067,7297], + [5069,32915], + [5071,10892], + [5073,2908], + [5075,6894], + [5077,3294], + [5079,4649], + [5081,6267], + [5083,10048], + [5085,30328], + [5087,7464], + [5089,6671], + [5091,18910], + [5093,20044], + [5095,3636], + [5097,4038], + [5099,4115], + [5101,3342], + [5103,11178], + [5105,4601], + [5107,8403], + [5109,4944], + [5111,10132], + [5113,8467], + [5115,28835], + [5117,4182], + [5119,182117], + [5121,6956], + [5123,9546], + [5125,47019], + [5127,4655], + [5129,3451], + [5131,59205], + [5133,7480], + [5135,6015], + [5137,4531], + [5139,18130], + [5141,6640], + [5143,100817], + [5145,29988], + [5147,3231], + [5149,10189], + [6001,710144], + [6003,454], + [6005,16675], + [6007,94489], + [6009,19394], + [6011,9015], + [6013,490220], + [6015,10199], + [6017,85707], + [6019,382789], + [6021,10921], + [6023,55775], + [6025,54052], + [6027,8447], + [6029,316959], + [6031,52353], + [6033,22010], + [6035,11422], + [6037,4614776], + [6039,58620], + [6041,127083], + [6043,8515], + [6045,40744], + [6047,89797], + [6049,3582], + [6051,7741], + [6053,190781], + [6055,70286], + [6057,47719], + [6059,1543703], + [6061,164247], + [6063,9099], + [6065,847618], + [6067,639075], + [6069,22269], + [6071,813867], + [6073,1446347], + [6075,414199], + [6077,265279], + [6079,128276], + [6081,355415], + [6083,204163], + [6085,803877], + [6087,136158], + [6089,76350], + [6091,1482], + [6093,17192], + [6095,197214], + [6097,246143], + [6099,207202], + [6101,37022], + [6103,23061], + [6105,4499], + [6107,173855], + [6109,24176], + [6111,402396], + [6113,91928], + [6115,24813], + [8001,210306], + [8003,8022], + [8005,293497], + [8007,6354], + [8009,2338], + [8011,2307], + [8013,167953], + [8014,28928], + [8015,7918], + [8017,1332], + [8019,5441], + [8021,3438], + [8023,1211], + [8025,1802], + [8027,1915], + [8029,15871], + [8031,301750], + [8033,979], + [8035,150126], + [8037,30053], + [8039,12327], + [8041,284858], + [8043,18720], + [8045,34088], + [8047,3295], + [8049,8920], + [8051,9254], + [8053,591], + [8055,3194], + [8057,1075], + [8059,292287], + [8061,887], + [8063,4355], + [8065,3884], + [8067,30143], + [8069,166224], + [8071,8381], + [8073,2922], + [8075,10975], + [8077,75412], + [8079,451], + [8081,8260], + [8083,12664], + [8085,20003], + [8087,13746], + [8089,8374], + [8091,2962], + [8093,9256], + [8095,2354], + [8097,10967], + [8099,6556], + [8101,68431], + [8103,5234], + [8105,6284], + [8107,15285], + [8109,2993], + [8111,540], + [8113,5477], + [8115,1786], + [8117,16663], + [8119,11936], + [8121,2803], + [8123,112271], + [8125,6591], + [9001,448188], + [9003,430746], + [9005,100133], + [9007,89397], + [9009,422247], + [9011,141400], + [9013,80742], + [9015,60303], + [10001,72517], + [10003,266221], + [10005,89574], + [11001,304426], + [12001,125102], + [12003,11477], + [12005,83532], + [12007,11917], + [12009,254099], + [12011,964482], + [12013,5345], + [12015,66269], + [12017,52797], + [12019,90475], + [12021,145183], + [12023,29823], + [12027,13620], + [12029,5290], + [12031,422676], + [12033,135212], + [12035,28887], + [12037,4763], + [12039,19853], + [12041,7318], + [12043,4559], + [12045,6027], + [12047,4411], + [12049,11313], + [12051,16654], + [12053,58059], + [12055,38284], + [12057,570539], + [12059,8455], + [12061,59155], + [12063,20679], + [12065,6519], + [12067,2833], + [12069,127162], + [12071,277066], + [12073,140326], + [12075,16072], + [12077,3563], + [12079,6526], + [12081,141381], + [12083,130851], + [12085,62057], + [12086,1188136], + [12087,43532], + [12089,33994], + [12091,94552], + [12093,16608], + [12095,571946], + [12097,127164], + [12099,598221], + [12101,183551], + [12103,431617], + [12105,255915], + [12107,30420], + [12109,89382], + [12111,116666], + [12113,67061], + [12115,163784], + [12117,229929], + [12119,30390], + [12121,16707], + [12123,8431], + [12125,4973], + [12127,241896], + [12129,14650], + [12131,30380], + [12133,9259], + [13001,8599], + [13003,3198], + [13005,4511], + [13007,1574], + [13009,19590], + [13011,10283], + [13013,32447], + [13015,43620], + [13017,7348], + [13019,8419], + [13021,69952], + [13023,5084], + [13025,7220], + [13027,8047], + [13029,16054], + [13031,30994], + [13033,9208], + [13035,9628], + [13037,2032], + [13039,20742], + [13043,4223], + [13045,50688], + [13047,34177], + [13049,4377], + [13051,128394], + [13053,1543], + [13055,10279], + [13057,105748], + [13059,61911], + [13061,1394], + [13063,128444], + [13065,2616], + [13067,365319], + [13069,15547], + [13071,19561], + [13073,57652], + [13075,6731], + [13077,57316], + [13079,5837], + [13081,10011], + [13083,8080], + [13085,10693], + [13087,11062], + [13089,374934], + [13091,9051], + [13093,4668], + [13095,39662], + [13097,61815], + [13099,5037], + [13101,2182], + [13103,27560], + [13105,9303], + [13107,10271], + [13109,4771], + [13111,10588], + [13113,51506], + [13115,47450], + [13117,81520], + [13119,9938], + [13121,465409], + [13123,13715], + [13125,1062], + [13127,39275], + [13129,25598], + [13131,11779], + [13133,7061], + [13135,404504], + [13137,19416], + [13139,87514], + [13141,3027], + [13143,12270], + [13145,15490], + [13147,10132], + [13149,4656], + [13151,92705], + [13153,65683], + [13155,4048], + [13157,25849], + [13159,6129], + [13161,4910], + [13163,6594], + [13165,3034], + [13167,3511], + [13169,13460], + [13171,7526], + [13173,3902], + [13175,21304], + [13177,17042], + [13179,23006], + [13181,3617], + [13183,5710], + [13185,51634], + [13187,12612], + [13189,9927], + [13191,5178], + [13193,4719], + [13195,15246], + [13197,3166], + [13199,9012], + [13201,3422], + [13205,9886], + [13207,12994], + [13209,4385], + [13211,9086], + [13213,20115], + [13215,81150], + [13217,43991], + [13219,17496], + [13221,7434], + [13223,63316], + [13225,10909], + [13227,14582], + [13229,8235], + [13231,7734], + [13233,20035], + [13235,4465], + [13237,9960], + [13239,1003], + [13241,6852], + [13243,2568], + [13245,85362], + [13247,38349], + [13249,1715], + [13251,6888], + [13253,3773], + [13255,26672], + [13257,12933], + [13259,2129], + [13261,13748], + [13263,2958], + [13265,781], + [13267,8708], + [13269,3137], + [13271,4612], + [13273,4166], + [13275,22047], + [13277,18121], + [13279,13209], + [13281,5803], + [13283,2557], + [13285,28721], + [13287,4615], + [13289,4406], + [13291,11029], + [13293,11244], + [13295,31617], + [13297,39207], + [13299,14411], + [13301,2271], + [13303,7863], + [13305,11420], + [13307,1190], + [13309,2813], + [13311,12448], + [13313,44901], + [13315,3109], + [13317,4269], + [13319,4337], + [13321,9640], + [15001,81772], + [15003,430846], + [15005,"NA"], + [15007,31783], + [15009,76134], + [16001,191500], + [16003,1884], + [16005,40063], + [16007,3085], + [16009,3811], + [16011,21652], + [16013,13356], + [16015,3453], + [16017,19845], + [16019,49166], + [16021,4291], + [16023,1335], + [16025,602], + [16027,80180], + [16029,3752], + [16031,10453], + [16033,541], + [16035,2967], + [16037,2249], + [16039,10809], + [16041,5626], + [16043,5586], + [16045,6826], + [16047,8612], + [16049,6717], + [16051,10847], + [16053,9546], + [16055,67106], + [16057,16534], + [16059,3572], + [16061,1658], + [16063,2476], + [16065,16085], + [16067,9659], + [16069,18437], + [16071,2339], + [16073,4402], + [16075,10076], + [16077,3602], + [16079,5552], + [16081,4983], + [16083,36699], + [16085,4812], + [16087,4489], + [17001,38088], + [17003,3011], + [17005,8320], + [17007,25014], + [17009,3384], + [17011,18551], + [17013,2482], + [17015,8330], + [17017,7384], + [17019,100739], + [17021,17103], + [17023,8484], + [17025,6618], + [17027,18446], + [17029,26756], + [17031,2478215], + [17033,9290], + [17035,5513], + [17037,56635], + [17039,8191], + [17041,10114], + [17043,509543], + [17045,10072], + [17047,3289], + [17049,18109], + [17051,9698], + [17053,6988], + [17055,16848], + [17057,16985], + [17059,2502], + [17061,6827], + [17063,24282], + [17065,4072], + [17067,9443], + [17069,1574], + [17071,3844], + [17073,26504], + [17075,15985], + [17077,31649], + [17079,4941], + [17081,20318], + [17083,11230], + [17085,13237], + [17087,4954], + [17089,257360], + [17091,52393], + [17093,53308], + [17095,24356], + [17097,354669], + [17099,55708], + [17101,8020], + [17103,17687], + [17105,18808], + [17107,12891], + [17109,16563], + [17111,171106], + [17113,87179], + [17115,51550], + [17117,23361], + [17119,133485], + [17121,17709], + [17123,7027], + [17125,6943], + [17127,7240], + [17129,6671], + [17131,8508], + [17133,17829], + [17135,12784], + [17137,17225], + [17139,7897], + [17141,26481], + [17143,93323], + [17145,9209], + [17147,8742], + [17149,8400], + [17151,1839], + [17153,2738], + [17155,3049], + [17157,14913], + [17159,7471], + [17161,76766], + [17163,118080], + [17165,11941], + [17167,103218], + [17169,4269], + [17171,2648], + [17173,10721], + [17175,2852], + [17177,24248], + [17179,70563], + [17181,7863], + [17183,35545], + [17185,6088], + [17187,8822], + [17189,8165], + [17191,8048], + [17193,7626], + [17195,29275], + [17197,344122], + [17199,34021], + [17201,140334], + [17203,20794], + [18001,15277], + [18003,172101], + [18005,37156], + [18007,4146], + [18009,6172], + [18011,26995], + [18013,7280], + [18015,9523], + [18017,17758], + [18019,52748], + [18021,12132], + [18023,16013], + [18025,4920], + [18027,14660], + [18029,24778], + [18031,11751], + [18033,19564], + [18035,52222], + [18037,21470], + [18039,96658], + [18041,9675], + [18043,36375], + [18045,8289], + [18047,11135], + [18049,9863], + [18051,15994], + [18053,29731], + [18055,15000], + [18057,136618], + [18059,34470], + [18061,18538], + [18063,70048], + [18065,21164], + [18067,35523], + [18069,19076], + [18071,21036], + [18073,14775], + [18075,11105], + [18077,16243], + [18079,12964], + [18081,70649], + [18083,18934], + [18085,39272], + [18087,16196], + [18089,214416], + [18091,49915], + [18093,20696], + [18095,56701], + [18097,439218], + [18099,21693], + [18101,4933], + [18103,15532], + [18105,66116], + [18107,18509], + [18109,35273], + [18111,6601], + [18113,21903], + [18115,2877], + [18117,9918], + [18119,10641], + [18121,7626], + [18123,9275], + [18125,5749], + [18127,79893], + [18129,12796], + [18131,6518], + [18133,16581], + [18135,11942], + [18137,13280], + [18139,9020], + [18141,126293], + [18143,10473], + [18145,22557], + [18147,9992], + [18149,9835], + [18151,15506], + [18153,8426], + [18155,5466], + [18157,78292], + [18159,7349], + [18161,3449], + [18163,86554], + [18165,7447], + [18167,47466], + [18169,16173], + [18171,4831], + [18173,29304], + [18175,13277], + [18177,31984], + [18179,14062], + [18181,11744], + [18183,16943], + [19001,4246], + [19003,2012], + [19005,7775], + [19007,5551], + [19009,3148], + [19011,13716], + [19013,69979], + [19015,14979], + [19017,13401], + [19019,10571], + [19021,10060], + [19023,7929], + [19025,5045], + [19027,11918], + [19029,7291], + [19031,10547], + [19033,24645], + [19035,6385], + [19037,6263], + [19039,4626], + [19041,9453], + [19043,9273], + [19045,26422], + [19047,8996], + [19049,31617], + [19051,3896], + [19053,4026], + [19055,10388], + [19057,20134], + [19059,9364], + [19061,49974], + [19063,5710], + [19065,10425], + [19067,8323], + [19069,5755], + [19071,3798], + [19073,4813], + [19075,6589], + [19077,5634], + [19079,8369], + [19081,5811], + [19083,8714], + [19085,7455], + [19087,9830], + [19089,5052], + [19091,5039], + [19093,3901], + [19095,8295], + [19097,10654], + [19099,16803], + [19101,8027], + [19103,75493], + [19105,10021], + [19107,5394], + [19109,8658], + [19111,16341], + [19113,113836], + [19115,6196], + [19117,4590], + [19119,6521], + [19121,7937], + [19123,11322], + [19125,17179], + [19127,19644], + [19129,7787], + [19131,5386], + [19133,4334], + [19135,4002], + [19137,5209], + [19139,23188], + [19141,7508], + [19143,3238], + [19145,7991], + [19147,5254], + [19149,13994], + [19151,4001], + [19153,229306], + [19155,46077], + [19157,10329], + [19159,2353], + [19161,5599], + [19163,85553], + [19165,7295], + [19167,18850], + [19169,46713], + [19171,8594], + [19173,3221], + [19175,6312], + [19177,3783], + [19179,18034], + [19181,24644], + [19183,11536], + [19185,3063], + [19187,19045], + [19189,5568], + [19191,11973], + [19193,52748], + [19195,4356], + [19197,6729], + [20001,7194], + [20003,3949], + [20005,8376], + [20007,2534], + [20009,14351], + [20011,8465], + [20013,5282], + [20015,31075], + [20017,1520], + [20019,1697], + [20021,10565], + [20023,1366], + [20025,1169], + [20027,4897], + [20029,5391], + [20031,4871], + [20033,1046], + [20035,17486], + [20037,19230], + [20039,1612], + [20041,10199], + [20043,4333], + [20045,59692], + [20047,1580], + [20049,1341], + [20051,16666], + [20053,3566], + [20055,17291], + [20057,16121], + [20059,13115], + [20061,11397], + [20063,1457], + [20065,1435], + [20067,3845], + [20069,3071], + [20071,675], + [20073,3404], + [20075,1207], + [20077,3292], + [20079,17301], + [20081,2090], + [20083,867], + [20085,6561], + [20087,9127], + [20089,1863], + [20091,286748], + [20093,2059], + [20095,4140], + [20097,1422], + [20099,10790], + [20101,1028], + [20103,31086], + [20105,1757], + [20107,4446], + [20109,1725], + [20111,18888], + [20113,16161], + [20115,6452], + [20117,5867], + [20119,2237], + [20121,15698], + [20123,3218], + [20125,16725], + [20127,2824], + [20129,1637], + [20131,5447], + [20133,8909], + [20135,1683], + [20137,2609], + [20139,8060], + [20141,2124], + [20143,3134], + [20145,3867], + [20147,3132], + [20149,11177], + [20151,5529], + [20153,1190], + [20155,31113], + [20157,2668], + [20159,5389], + [20161,38239], + [20163,2557], + [20165,1584], + [20167,3361], + [20169,29196], + [20171,2516], + [20173,240113], + [20175,10094], + [20177,87152], + [20179,1510], + [20181,3528], + [20183,2109], + [20185,2054], + [20187,1087], + [20189,2180], + [20191,11295], + [20193,4015], + [20195,1635], + [20197,3511], + [20199,878], + [20201,3221], + [20203,1200], + [20205,5311], + [20207,1582], + [20209,66013], + [21001,8393], + [21003,7754], + [21005,10489], + [21007,3996], + [21009,18489], + [21011,4670], + [21013,8734], + [21015,58999], + [21017,9217], + [21019,21660], + [21021,11938], + [21023,4005], + [21025,5247], + [21027,8551], + [21029,36739], + [21031,5247], + [21033,6279], + [21035,16794], + [21037,42314], + [21039,2123], + [21041,5417], + [21043,12543], + [21045,6916], + [21047,27592], + [21049,16396], + [21051,6256], + [21053,4396], + [21055,3566], + [21057,2759], + [21059,44838], + [21061,4985], + [21063,2812], + [21065,5725], + [21067,145196], + [21069,6067], + [21071,14103], + [21073,23959], + [21075,2504], + [21077,3684], + [21079,7253], + [21081,11898], + [21083,14950], + [21085,10340], + [21087,5285], + [21089,16537], + [21091,3974], + [21093,44983], + [21095,9250], + [21097,8782], + [21099,7704], + [21101,21551], + [21103,7405], + [21105,1895], + [21107,21919], + [21109,3749], + [21111,337283], + [21113,21813], + [21115,9075], + [21117,79535], + [21119,5805], + [21121,11775], + [21123,6581], + [21125,25204], + [21127,5362], + [21129,2637], + [21131,3251], + [21133,8098], + [21135,5178], + [21137,9920], + [21139,4583], + [21141,11735], + [21143,3069], + [21145,30059], + [21147,5315], + [21149,4307], + [21151,40622], + [21153,3896], + [21155,9743], + [21157,13945], + [21159,3175], + [21161,8404], + [21163,10918], + [21165,2413], + [21167,10073], + [21169,4179], + [21171,4528], + [21173,11532], + [21175,4537], + [21177,12471], + [21179,20066], + [21181,2827], + [21183,11381], + [21185,26246], + [21187,5001], + [21189,1432], + [21191,6881], + [21193,10618], + [21195,23668], + [21197,5295], + [21199,25565], + [21201,1014], + [21203,6762], + [21205,11532], + [21207,7637], + [21209,21360], + [21211,20261], + [21213,8873], + [21215,8387], + [21217,12993], + [21219,4693], + [21221,5900], + [21223,4085], + [21225,6691], + [21227,55042], + [21229,5105], + [21231,8014], + [21233,6148], + [21235,14057], + [21237,2090], + [21239,12751], + [22001,25315], + [22003,8308], + [22005,47011], + [22007,9973], + [22009,15168], + [22011,13567], + [22013,6215], + [22015,50847], + [22017,112445], + [22019,88154], + [22021,4328], + [22023,3429], + [22025,3921], + [22027,6340], + [22029,6889], + [22031,10728], + [22033,207813], + [22035,2770], + [22037,7669], + [22039,11707], + [22041,7268], + [22043,8276], + [22045,33154], + [22047,11548], + [22049,6189], + [22051,213445], + [22053,14093], + [22055,106874], + [22057,47397], + [22059,6011], + [22061,17984], + [22063,53715], + [22065,4153], + [22067,10727], + [22069,16557], + [22071,102197], + [22073,68068], + [22075,8662], + [22077,9069], + [22079,57345], + [22081,3241], + [22083,8162], + [22085,9018], + [22087,9336], + [22089,25275], + [22091,3899], + [22093,8037], + [22095,21380], + [22097,35764], + [22099,22792], + [22101,22360], + [22103,112699], + [22105,49959], + [22107,2046], + [22109,53108], + [22111,9679], + [22113,23198], + [22115,20195], + [22117,14958], + [22119,18777], + [22121,10195], + [22123,4059], + [22125,4521], + [22127,6054], + [23001,55454], + [23003,32921], + [23005,151982], + [23007,13254], + [23009,27835], + [23011,59929], + [23013,20174], + [23015,17424], + [23017,26645], + [23019,74526], + [23021,6869], + [23023,18164], + [23025,23165], + [23027,17847], + [23029,13383], + [23031,108199], + [24001,33139], + [24003,271502], + [24005,411968], + [24009,46280], + [24011,15529], + [24013,91246], + [24015,48588], + [24017,73725], + [24019,15700], + [24021,120143], + [24023,15945], + [24025,127310], + [24027,155198], + [24029,10735], + [24031,496401], + [24033,429521], + [24035,25230], + [24037,49312], + [24039,10573], + [24041,18231], + [24043,65091], + [24045,50113], + [24047,25881], + [24510,259986], + [25001,115367], + [25003,69538], + [25005,272931], + [25007,10726], + [25009,355585], + [25011,37435], + [25013,210928], + [25015,84879], + [25017,786271], + [25019,8323], + [25021,340362], + [25023,247187], + [25025,347532], + [25027,381033], + [26001,3858], + [26003,4022], + [26005,52431], + [26007,13645], + [26009,10901], + [26011,7093], + [26013,3716], + [26015,28719], + [26017,51253], + [26019,8271], + [26021,74135], + [26023,20601], + [26025,64905], + [26027,25642], + [26029,12877], + [26031,11172], + [26033,15965], + [26035,11798], + [26037,35778], + [26039,6120], + [26041,18599], + [26043,13512], + [26045,55859], + [26047,18013], + [26049,190881], + [26051,9603], + [26053,7029], + [26055,45808], + [26057,18125], + [26059,19866], + [26061,16379], + [26063,15377], + [26065,143929], + [26067,28179], + [26069,9802], + [26071,5496], + [26073,36705], + [26075,71629], + [26077,127431], + [26079,8004], + [26081,304257], + [26083,943], + [26085,3646], + [26087,40778], + [26089,10738], + [26091,45710], + [26093,89902], + [26095,2520], + [26097,5779], + [26099,391423], + [26101,10963], + [26103,33633], + [26105,13756], + [26107,18535], + [26109,12439], + [26111,40609], + [26113,5968], + [26115,72129], + [26117,23726], + [26119,3623], + [26121,82943], + [26123,21126], + [26125,589416], + [26127,13185], + [26129,8832], + [26131,3129], + [26133,9098], + [26135,3589], + [26137,11188], + [26139,128067], + [26141,5331], + [26143,9444], + [26145,89941], + [26147,76711], + [26149,29652], + [26151,19836], + [26153,3524], + [26155,33169], + [26157,26167], + [26159,37367], + [26161,179146], + [26163,810552], + [26165,13325], + [27001,7193], + [27003,180992], + [27005,15889], + [27007,19897], + [27009,21792], + [27011,2668], + [27013,35023], + [27015,13966], + [27017,16232], + [27019,47699], + [27021,13244], + [27023,6768], + [27025,25756], + [27027,30201], + [27029,3475], + [27031,2982], + [27033,6009], + [27035,30893], + [27037,220453], + [27039,10552], + [27041,19154], + [27043,7370], + [27045,10590], + [27047,15530], + [27049,23768], + [27051,2840], + [27053,629005], + [27055,10424], + [27057,8603], + [27059,20397], + [27061,20637], + [27063,6280], + [27065,7263], + [27067,22430], + [27069,2344], + [27071,6063], + [27073,3887], + [27075,5856], + [27077,2182], + [27079,13311], + [27081,3064], + [27083,13902], + [27085,19365], + [27087,2266], + [27089,4759], + [27091,10762], + [27093,11646], + [27095,11343], + [27097,16250], + [27099,19523], + [27101,5152], + [27103,18565], + [27105,10748], + [27107,3370], + [27109,76931], + [27111,27773], + [27113,7961], + [27115,12664], + [27117,5094], + [27119,15910], + [27121,5830], + [27123,259552], + [27125,2111], + [27127,7882], + [27129,8037], + [27131,30545], + [27133,4769], + [27135,9140], + [27137,97591], + [27139,70143], + [27141,46299], + [27143,8256], + [27145,79426], + [27147,19523], + [27149,5430], + [27151,5036], + [27153,11565], + [27155,1744], + [27157,11672], + [27159,5805], + [27161,9770], + [27163,122731], + [27165,5211], + [27167,3352], + [27169,27411], + [27171,62767], + [27173,5444], + [28001,12539], + [28003,14359], + [28005,4833], + [28007,6795], + [28009,2641], + [28011,14323], + [28013,5582], + [28015,4680], + [28017,6688], + [28019,3219], + [28021,3182], + [28023,6565], + [28025,6749], + [28027,9487], + [28029,11278], + [28031,8345], + [28033,73815], + [28035,35224], + [28037,2920], + [28039,8463], + [28041,4562], + [28043,8958], + [28045,17349], + [28047,81818], + [28049,111407], + [28051,6393], + [28053,3975], + [28055,652], + [28057,9325], + [28059,56377], + [28061,7102], + [28063,2415], + [28065,4885], + [28067,29886], + [28069,3789], + [28071,21072], + [28073,22860], + [28075,31163], + [28077,4765], + [28079,7636], + [28081,35357], + [28083,12731], + [28085,13312], + [28087,24262], + [28089,43266], + [28091,9683], + [28093,14270], + [28095,15021], + [28097,4084], + [28099,13284], + [28101,9036], + [28103,3518], + [28105,18619], + [28107,13808], + [28109,20333], + [28111,4784], + [28113,14405], + [28115,12345], + [28117,10277], + [28119,3470], + [28121,70131], + [28123,12619], + [28125,2339], + [28127,10933], + [28129,6370], + [28131,7268], + [28133,9853], + [28135,5571], + [28137,11132], + [28139,8586], + [28141,7342], + [28143,4047], + [28145,11086], + [28147,5510], + [28149,20783], + [28151,20204], + [28153,8122], + [28155,3137], + [28157,3294], + [28159,7496], + [28161,4911], + [28163,9387], + [29001,12851], + [29003,9795], + [29005,3069], + [29007,11688], + [29009,16874], + [29011,5226], + [29013,7440], + [29015,7861], + [29017,5427], + [29019,84162], + [29021,46115], + [29023,19981], + [29025,4135], + [29027,21734], + [29029,20942], + [29031,37317], + [29033,4962], + [29035,2721], + [29037,47686], + [29039,6114], + [29041,3717], + [29043,38246], + [29045,3402], + [29047,111327], + [29049,9857], + [29051,38575], + [29053,8775], + [29055,11309], + [29057,3546], + [29059,7105], + [29061,3850], + [29063,4986], + [29065,6207], + [29067,5534], + [29069,13128], + [29071,49604], + [29073,7662], + [29075,3259], + [29077,136126], + [29079,4572], + [29081,4340], + [29083,10298], + [29085,3166], + [29087,2566], + [29089,4907], + [29091,18889], + [29093,5085], + [29095,316869], + [29097,54023], + [29099,110041], + [29101,25055], + [29103,2255], + [29105,16607], + [29107,15599], + [29109,18487], + [29111,5457], + [29113,24869], + [29115,6043], + [29117,6845], + [29119,11028], + [29121,7643], + [29123,5711], + [29125,4524], + [29127,13670], + [29129,1730], + [29131,12643], + [29133,5492], + [29135,7141], + [29137,4102], + [29139,5789], + [29141,8758], + [29143,8310], + [29145,26541], + [29147,12104], + [29149,4318], + [29151,7023], + [29153,4158], + [29155,7594], + [29157,10006], + [29159,19877], + [29161,20889], + [29163,8438], + [29165,46764], + [29167,13686], + [29169,17755], + [29171,2351], + [29173,5324], + [29175,12418], + [29177,10866], + [29179,2454], + [29181,6202], + [29183,184674], + [29185,3948], + [29186,9468], + [29187,27628], + [29189,499911], + [29195,11110], + [29197,2041], + [29199,2392], + [29201,18768], + [29203,3461], + [29205,3154], + [29207,14525], + [29209,15309], + [29211,3091], + [29213,25500], + [29215,10387], + [29217,9584], + [29219,15278], + [29221,9179], + [29223,5297], + [29225,16218], + [29227,1094], + [29229,7603], + [29510,146435], + [30001,4892], + [30003,4740], + [30005,2749], + [30007,2294], + [30009,5197], + [30011,664], + [30013,38199], + [30015,2438], + [30017,5567], + [30019,747], + [30021,4135], + [30023,3715], + [30025,1706], + [30027,5630], + [30029,43927], + [30031,49082], + [30033,624], + [30035,5346], + [30037,539], + [30039,1222], + [30041,7745], + [30043,5668], + [30045,1007], + [30047,11006], + [30049,32281], + [30051,776], + [30053,7227], + [30055,978], + [30057,4319], + [30059,850], + [30061,1875], + [30063,57129], + [30065,1928], + [30067,8755], + [30069,223], + [30071,1969], + [30073,2613], + [30075,869], + [30077,2503], + [30079,526], + [30081,17813], + [30083,5305], + [30085,3614], + [30087,3718], + [30089,4374], + [30091,1684], + [30093,16765], + [30095,4366], + [30097,2866], + [30099,2968], + [30101,2392], + [30103,392], + [30105,3511], + [30107,1003], + [30109,501], + [30111,79262], + [31001,16903], + [31003,3528], + [31005,229], + [31007,395], + [31009,229], + [31011,3092], + [31013,5433], + [31015,1043], + [31017,1765], + [31019,27414], + [31021,3754], + [31023,4709], + [31025,13417], + [31027,4660], + [31029,1947], + [31031,3313], + [31033,5116], + [31035,3025], + [31037,5522], + [31039,4860], + [31041,5877], + [31043,10490], + [31045,4671], + [31047,11973], + [31049,1020], + [31051,3209], + [31053,19194], + [31055,260826], + [31057,990], + [31059,3093], + [31061,1747], + [31063,1622], + [31065,2395], + [31067,12062], + [31069,911], + [31071,1011], + [31073,1010], + [31075,375], + [31077,1244], + [31079,30101], + [31081,5515], + [31083,1765], + [31085,444], + [31087,1403], + [31089,5883], + [31091,452], + [31093,3606], + [31095,4451], + [31097,2790], + [31099,3724], + [31101,4544], + [31103,365], + [31105,1919], + [31107,4573], + [31109,152970], + [31111,21182], + [31113,458], + [31115,319], + [31117,294], + [31119,18225], + [31121,4054], + [31123,2705], + [31125,1970], + [31127,3371], + [31129,2181], + [31131,8681], + [31133,1540], + [31135,1539], + [31137,4985], + [31139,3836], + [31141,17953], + [31143,2884], + [31145,5772], + [31147,4097], + [31149,854], + [31151,8094], + [31153,74562], + [31155,10619], + [31157,18909], + [31159,8650], + [31161,3025], + [31163,1858], + [31165,687], + [31167,3449], + [31169,2787], + [31171,364], + [31173,2793], + [31175,2511], + [31177,10948], + [31179,5169], + [31181,1744], + [31183,405], + [31185,7440], + [32001,12585], + [32003,908308], + [32005,21503], + [32007,25555], + [32009,458], + [32011,775], + [32013,7675], + [32015,3277], + [32017,1650], + [32019,20853], + [32021,2097], + [32023,16655], + [32027,2368], + [32029,2278], + [32031,212915], + [32033,4576], + [32510,27047], + [33001,31253], + [33003,24620], + [33005,40597], + [33007,15928], + [33009,46858], + [33011,220129], + [33013,77657], + [33015,167110], + [33017,65980], + [33019,21875], + [34001,127177], + [34003,455223], + [34005,228511], + [34007,249877], + [34009,52765], + [34011,63719], + [34013,342249], + [34015,147255], + [34017,275553], + [34019,69995], + [34021,188835], + [34023,404171], + [34025,318729], + [34027,263489], + [34029,244810], + [34031,223853], + [34033,29729], + [34035,173688], + [34037,80801], + [34039,255096], + [34041,56291], + [35001,301166], + [35003,1432], + [35005,25763], + [35006,11463], + [35007,6328], + [35009,20368], + [35011,749], + [35013,83322], + [35015,25280], + [35017,11762], + [35019,1686], + [35021,378], + [35023,2442], + [35025,26999], + [35027,10547], + [35028,10257], + [35029,11067], + [35031,25483], + [35033,1859], + [35035,25003], + [35037,3665], + [35039,19345], + [35041,9244], + [35043,51700], + [35045,53758], + [35047,12784], + [35049,75672], + [35051,5349], + [35053,9050], + [35055,16877], + [35057,6757], + [35059,1823], + [35061,29620], + [36001,152567], + [36003,22129], + [36005,477487], + [36007,92549], + [36009,39164], + [36011,39312], + [36013,63790], + [36015,39080], + [36017,23200], + [36019,37556], + [36021,30530], + [36023,22508], + [36025,22128], + [36027,139838], + [36029,443492], + [36031,17506], + [36033,21379], + [36035,25875], + [36037,31375], + [36039,22978], + [36041,3057], + [36043,29456], + [36045,45510], + [36047,1027298], + [36049,11809], + [36051,30671], + [36053,34286], + [36055,356559], + [36057,23045], + [36059,669351], + [36061,877728], + [36063,105428], + [36065,105220], + [36067,223044], + [36069,53872], + [36071,171540], + [36073,18349], + [36075,56086], + [36077,30194], + [36079,53787], + [36081,1052959], + [36083,79590], + [36085,228808], + [36087,147944], + [36089,46476], + [36091,115047], + [36093,72418], + [36095,14816], + [36097,9468], + [36099,16237], + [36101,42386], + [36103,757541], + [36105,33391], + [36107,24952], + [36109,53485], + [36111,86555], + [36113,34706], + [36115,31060], + [36117,45317], + [36119,471440], + [36121,20375], + [36123,12508], + [37001,66446], + [37003,17254], + [37005,4645], + [37007,9547], + [37009,12423], + [37011,7870], + [37013,20122], + [37015,8325], + [37017,14702], + [37019,45649], + [37021,115970], + [37023,37685], + [37025,79012], + [37027,35713], + [37029,4436], + [37031,31899], + [37033,9993], + [37035,72207], + [37037,31263], + [37039,9596], + [37041,6687], + [37043,4706], + [37045,46420], + [37047,23037], + [37049,41388], + [37051,122573], + [37053,12134], + [37055,21560], + [37057,74935], + [37059,19581], + [37061,23201], + [37063,131366], + [37065,22429], + [37067,165850], + [37069,25737], + [37071,92055], + [37073,4774], + [37075,4344], + [37077,23815], + [37079,8676], + [37081,235637], + [37083,22793], + [37085,45634], + [37087,26316], + [37089,46724], + [37091,9406], + [37093,18157], + [37095,2536], + [37097,76196], + [37099,21080], + [37101,72010], + [37103,4606], + [37105,24975], + [37107,26463], + [37109,37819], + [37111,20245], + [37113,15963], + [37115,9442], + [37117,11386], + [37119,436055], + [37121,6822], + [37123,11171], + [37125,35495], + [37127,43912], + [37129,100377], + [37131,8542], + [37133,57207], + [37135,65724], + [37137,5361], + [37139,17374], + [37141,22594], + [37143,5060], + [37145,17593], + [37147,75003], + [37149,9370], + [37151,70754], + [37153,19152], + [37155,53332], + [37157,41822], + [37159,66228], + [37161,28352], + [37163,31712], + [37165,13058], + [37167,29191], + [37169,22765], + [37171,33263], + [37173,6833], + [37175,12864], + [37177,2088], + [37179,88052], + [37181,18320], + [37183,426174], + [37185,7311], + [37187,5999], + [37189,23905], + [37191,50347], + [37193,29660], + [37195,38173], + [37197,18271], + [37199,7609], + [38001,1262], + [38003,5840], + [38005,2470], + [38007,494], + [38009,3300], + [38011,1727], + [38013,990], + [38015,45984], + [38017,85446], + [38019,2029], + [38021,2868], + [38023,870], + [38025,1626], + [38027,1222], + [38029,1615], + [38031,1643], + [38033,853], + [38035,38252], + [38037,1157], + [38039,1278], + [38041,1109], + [38043,1166], + [38045,2118], + [38047,895], + [38049,2590], + [38051,1380], + [38053,2838], + [38055,4508], + [38057,4556], + [38059,14516], + [38061,2801], + [38063,1575], + [38065,1083], + [38067,3797], + [38069,1827], + [38071,5657], + [38073,2965], + [38075,1252], + [38077,8696], + [38079,4690], + [38081,2145], + [38083,603], + [38085,1210], + [38087,619], + [38089,13601], + [38091,1093], + [38093,11537], + [38095,1099], + [38097,4096], + [38099,5492], + [38101,28461], + [38103,2034], + [38105,12833], + [39001,12506], + [39003,48969], + [39005,26000], + [39007,46259], + [39009,28746], + [39011,25952], + [39013,31038], + [39015,20381], + [39017,180864], + [39019,13074], + [39021,19800], + [39023,66921], + [39025,100704], + [39027,23287], + [39029,50208], + [39031,16314], + [39033,20787], + [39035,616532], + [39037,26722], + [39039,19625], + [39041,86843], + [39043,40097], + [39045,71734], + [39047,16084], + [39049,592795], + [39051,21825], + [39053,13608], + [39055,49313], + [39057,75499], + [39059,18613], + [39061,415449], + [39063,39728], + [39065,14863], + [39067,6956], + [39069,14929], + [39071,20287], + [39073,13321], + [39075,18942], + [39077,27327], + [39079,14658], + [39081,29969], + [39083,29451], + [39085,127339], + [39087,28052], + [39089,79207], + [39091,24067], + [39093,150486], + [39095,209175], + [39097,19043], + [39099,109793], + [39101,31165], + [39103,91442], + [39105,8446], + [39107,23648], + [39109,52280], + [39111,5116], + [39113,254523], + [39115,5220], + [39117,16963], + [39119,36062], + [39121,5399], + [39123,20195], + [39125,10423], + [39127,15243], + [39129,23048], + [39131,9887], + [39133,87293], + [39135,20437], + [39137,17406], + [39139,58534], + [39141,32642], + [39143,31887], + [39145,29898], + [39147,29440], + [39149,27077], + [39151,180927], + [39153,281395], + [39155,99690], + [39157,45658], + [39159,24373], + [39161,14726], + [39163,5432], + [39165,103190], + [39167,31462], + [39169,57299], + [39171,18591], + [39173,65714], + [39175,11448], + [40001,10360], + [40003,2227], + [40005,5593], + [40007,3001], + [40009,11328], + [40011,4734], + [40013,19953], + [40015,11345], + [40017,49067], + [40019,24729], + [40021,22247], + [40023,6478], + [40025,1214], + [40027,113477], + [40029,2344], + [40031,42939], + [40033,3858], + [40035,7063], + [40037,29624], + [40039,14061], + [40041,17552], + [40043,2375], + [40045,2316], + [40047,29405], + [40049,14031], + [40051,21768], + [40053,2457], + [40055,1904], + [40057,1292], + [40059,1825], + [40061,5422], + [40063,4561], + [40065,12153], + [40067,2238], + [40069,4878], + [40071,21962], + [40073,8137], + [40075,3789], + [40077,4000], + [40079,20003], + [40081,13323], + [40083,16336], + [40085,4940], + [40087,14172], + [40089,12967], + [40091,8037], + [40093,3857], + [40095,6102], + [40097,17468], + [40099,7881], + [40101,27955], + [40103,5732], + [40105,4668], + [40107,4434], + [40109,309044], + [40111,15177], + [40113,19310], + [40115,16105], + [40117,7042], + [40119,36285], + [40121,21777], + [40123,19289], + [40125,31409], + [40127,4969], + [40129,1818], + [40131,38352], + [40133,9991], + [40135,16872], + [40137,20776], + [40139,9081], + [40141,3295], + [40143,280376], + [40145,31324], + [40147,25994], + [40149,5777], + [40151,4163], + [40153,11686], + [41001,6870], + [41003,40576], + [41005,187434], + [41007,18962], + [41009,22391], + [41011,26364], + [41013,9183], + [41015,8889], + [41017,77625], + [41019,43421], + [41021,999], + [41023,3161], + [41025,3075], + [41027,12303], + [41029,95750], + [41031,8662], + [41033,32405], + [41035,28458], + [41037,3375], + [41039,172060], + [41041,21272], + [41043,50267], + [41045,12003], + [41047,143586], + [41049,5036], + [41051,360681], + [41053,36579], + [41055,885], + [41057,11821], + [41059,34522], + [41061,11562], + [41063,3427], + [41065,12589], + [41067,271750], + [41069,577], + [41071,44255], + [42001,54028], + [42003,607439], + [42005,31192], + [42007,84904], + [42009,22215], + [42011,194447], + [42013,62365], + [42015,29368], + [42017,334141], + [42019,93055], + [42021,64702], + [42023,2401], + [42025,29413], + [42027,71112], + [42029,258865], + [42031,19319], + [42033,38551], + [42035,18145], + [42037,33429], + [42039,40674], + [42041,119168], + [42043,130509], + [42045,271606], + [42047,16659], + [42049,133805], + [42051,61917], + [42053,2237], + [42055,78014], + [42057,7652], + [42059,17223], + [42061,21044], + [42063,43578], + [42065,22027], + [42067,11962], + [42069,101792], + [42071,260379], + [42073,41769], + [42075,69628], + [42077,168063], + [42079,151181], + [42081,56408], + [42083,20591], + [42085,52359], + [42087,21338], + [42089,77608], + [42091,415122], + [42093,8859], + [42095,145194], + [42097,44904], + [42099,23565], + [42101,582727], + [42103,26134], + [42105,7196], + [42107,69906], + [42109,18913], + [42111,36732], + [42113,2858], + [42115,20707], + [42117,19259], + [42119,16746], + [42121,24791], + [42123,20447], + [42125,99305], + [42127,24580], + [42129,177330], + [42131,13654], + [42133,216856], + [44001,26403], + [44003,92912], + [44005,43313], + [44007,309733], + [44009,71040], + [45001,10580], + [45003,70571], + [45005,3180], + [45007,80072], + [45009,5664], + [45011,7996], + [45013,61117], + [45015,73923], + [45017,6465], + [45019,165971], + [45021,23543], + [45023,13788], + [45025,17037], + [45027,11580], + [45029,15456], + [45031,28762], + [45033,11797], + [45035,59419], + [45037,10281], + [45039,10174], + [45041,58784], + [45043,27340], + [45045,210480], + [45047,28799], + [45049,7330], + [45051,123740], + [45053,9602], + [45055,28045], + [45057,26932], + [45059,30968], + [45061,7476], + [45063,126132], + [45065,3148], + [45067,11372], + [45069,10426], + [45071,17008], + [45073,28149], + [45075,37031], + [45077,55185], + [45079,170088], + [45081,8632], + [45083,126674], + [45085,41465], + [45087,10611], + [45089,13885], + [45091,99009], + [46003,1341], + [46005,9217], + [46007,1333], + [46009,2974], + [46011,19279], + [46013,20758], + [46015,2741], + [46017,435], + [46019,5198], + [46021,810], + [46023,3895], + [46025,1768], + [46027,7423], + [46029,16334], + [46031,1276], + [46033,4582], + [46035,11009], + [46037,2737], + [46039,2584], + [46041,2274], + [46043,1633], + [46045,2010], + [46047,3632], + [46049,1084], + [46051,4085], + [46053,2298], + [46055,1137], + [46057,2919], + [46059,1822], + [46061,1918], + [46063,729], + [46065,9992], + [46067,3669], + [46069,710], + [46071,1143], + [46073,1346], + [46075,687], + [46077,2868], + [46079,6690], + [46081,13119], + [46083,20723], + [46085,1886], + [46087,2713], + [46089,1083], + [46091,1983], + [46093,12118], + [46095,848], + [46097,1158], + [46099,96929], + [46101,3909], + [46102,"NA"], + [46103,52890], + [46105,1598], + [46107,1268], + [46109,4682], + [46111,1435], + [46115,3286], + [46117,1883], + [46119,970], + [46121,3231], + [46123,2920], + [46125,4178], + [46127,7961], + [46129,2608], + [46135,11984], + [46137,814], + [47001,34369], + [47003,21887], + [47005,6576], + [47007,4657], + [47009,60431], + [47011,46164], + [47013,16138], + [47015,6133], + [47017,12969], + [47019,28282], + [47021,19754], + [47023,7502], + [47025,12536], + [47027,3248], + [47029,15563], + [47031,24821], + [47033,6191], + [47035,21939], + [47037,312929], + [47039,5467], + [47041,9959], + [47043,22410], + [47045,16685], + [47047,16913], + [47049,7348], + [47051,19286], + [47053,19654], + [47055,12626], + [47057,9682], + [47059,29533], + [47061,5639], + [47063,28963], + [47065,162123], + [47067,2327], + [47069,10887], + [47071,11360], + [47073,25196], + [47075,9221], + [47077,11382], + [47079,13294], + [47081,9560], + [47083,3704], + [47085,8676], + [47087,4651], + [47089,23258], + [47091,7000], + [47093,221965], + [47095,2562], + [47097,9788], + [47099,15399], + [47101,5045], + [47103,16905], + [47105,22395], + [47107,23530], + [47109,11676], + [47111,9938], + [47113,46606], + [47115,12378], + [47117,12087], + [47119,34037], + [47121,4622], + [47123,18481], + [47125,65642], + [47127,3064], + [47129,8003], + [47131,14866], + [47133,9454], + [47135,2916], + [47137,1780], + [47139,6789], + [47141,34045], + [47143,12410], + [47145,25877], + [47147,31654], + [47149,125789], + [47151,8156], + [47153,5886], + [47155,45955], + [47157,424197], + [47159,8659], + [47161,5536], + [47163,71092], + [47165,76262], + [47167,26840], + [47169,3477], + [47171,7988], + [47173,8435], + [47175,2356], + [47177,16793], + [47179,59119], + [47181,6180], + [47183,14711], + [47185,9971], + [47187,84981], + [47189,55167], + [48001,19024], + [48003,6465], + [48005,37905], + [48007,10554], + [48009,4939], + [48011,1032], + [48013,17957], + [48015,12342], + [48017,3137], + [48019,9219], + [48021,31996], + [48023,1948], + [48025,10523], + [48027,113309], + [48029,703469], + [48031,4609], + [48033,357], + [48035,7821], + [48037,40897], + [48039,131893], + [48041,84943], + [48043,5046], + [48045,682], + [48047,2917], + [48049,17752], + [48051,7436], + [48053,20970], + [48055,14728], + [48057,8837], + [48059,6691], + [48061,134375], + [48063,5299], + [48065,3246], + [48067,12279], + [48069,3297], + [48071,13179], + [48073,19287], + [48075,2865], + [48077,5997], + [48079,1404], + [48081,1301], + [48083,4216], + [48085,380804], + [48087,1483], + [48089,10070], + [48091,50496], + [48093,6219], + [48095,1250], + [48097,20879], + [48099,21887], + [48101,786], + [48103,1579], + [48105,2008], + [48107,2514], + [48109,1705], + [48111,3146], + [48113,1085427], + [48115,4812], + [48117,8398], + [48119,2193], + [48121,324605], + [48123,8637], + [48125,1131], + [48127,3709], + [48129,1727], + [48131,4883], + [48133,7771], + [48135,64372], + [48137,962], + [48139,66183], + [48141,274246], + [48143,17273], + [48145,6443], + [48147,12692], + [48149,11670], + [48151,1895], + [48153,2970], + [48155,661], + [48157,242849], + [48159,5223], + [48161,9533], + [48163,6189], + [48165,6163], + [48167,131749], + [48169,2343], + [48171,12548], + [48173,579], + [48175,3311], + [48177,9314], + [48179,10781], + [48181,52706], + [48183,60043], + [48185,9967], + [48187,53362], + [48189,15458], + [48191,1324], + [48193,3884], + [48195,2430], + [48197,2238], + [48199,24548], + [48201,1818000], + [48203,30653], + [48205,2214], + [48207,2947], + [48209,70537], + [48211,2592], + [48213,32642], + [48215,254038], + [48217,14652], + [48219,10969], + [48221,22805], + [48223,16302], + [48225,7396], + [48227,13319], + [48229,1449], + [48231,35895], + [48233,10649], + [48235,897], + [48237,4819], + [48239,6384], + [48241,14614], + [48243,1141], + [48245,106045], + [48247,2633], + [48249,20288], + [48251,68780], + [48253,7267], + [48255,4906], + [48257,43114], + [48259,14841], + [48261,229], + [48263,409], + [48265,21758], + [48267,2155], + [48269,167], + [48271,1291], + [48273,15310], + [48275,1740], + [48277,23018], + [48279,6692], + [48281,9738], + [48283,2621], + [48285,9791], + [48287,8560], + [48289,7252], + [48291,29033], + [48293,9891], + [48295,1793], + [48297,4834], + [48299,7829], + [48301,38], + [48303,131183], + [48305,2544], + [48307,3559], + [48309,105656], + [48311,319], + [48313,4751], + [48315,4842], + [48317,2054], + [48319,2307], + [48321,15508], + [48323,17576], + [48325,18592], + [48327,1029], + [48329,69256], + [48331,11712], + [48333,2208], + [48335,3105], + [48337,9898], + [48339,194979], + [48341,10337], + [48343,5730], + [48345,656], + [48347,29007], + [48349,19629], + [48351,5382], + [48353,7260], + [48355,151010], + [48357,5090], + [48359,896], + [48361,38499], + [48363,13358], + [48365,11909], + [48367,50013], + [48369,4216], + [48371,6281], + [48373,15638], + [48375,54536], + [48377,2925], + [48379,4903], + [48381,65024], + [48383,2346], + [48385,1319], + [48387,5757], + [48389,3878], + [48391,3721], + [48393,548], + [48395,6562], + [48397,35492], + [48399,4223], + [48401,22450], + [48403,3113], + [48405,3310], + [48407,9460], + [48409,27668], + [48411,2356], + [48413,1366], + [48415,7014], + [48417,1992], + [48419,11665], + [48421,1295], + [48423,92718], + [48425,3716], + [48427,19022], + [48429,4314], + [48431,768], + [48433,850], + [48435,3040], + [48437,3338], + [48439,831857], + [48441,63191], + [48443,339], + [48445,5452], + [48447,933], + [48449,13748], + [48451,49822], + [48453,510019], + [48455,5563], + [48457,7607], + [48459,18387], + [48461,1611], + [48463,10386], + [48465,19130], + [48467,24354], + [48469,42916], + [48471,24613], + [48473,15312], + [48475,4682], + [48477,15447], + [48479,85129], + [48481,19730], + [48483,2976], + [48485,59170], + [48487,7403], + [48489,6932], + [48491,185976], + [48493,17416], + [48495,3236], + [48497,26194], + [48499,17119], + [48501,3749], + [48503,9236], + [48505,4682], + [48507,3322], + [49001,3095], + [49003,22834], + [49005,59486], + [49007,9283], + [49009,500], + [49011,140977], + [49013,9011], + [49015,4962], + [49017,2602], + [49019,4932], + [49021,20399], + [49023,3983], + [49025,3381], + [49027,6052], + [49029,3889], + [49031,906], + [49033,1415], + [49035,536924], + [49037,4712], + [49039,10618], + [49041,9220], + [49043,21243], + [49045,26153], + [49047,16913], + [49049,217722], + [49051,10459], + [49053,61762], + [49055,1342], + [49057,109285], + [50001,20726], + [50003,19650], + [50005,15982], + [50007,85355], + [50009,3092], + [50011,24842], + [50013,3968], + [50015,14395], + [50017,15866], + [50019,13489], + [50021,34142], + [50023,32760], + [50025,23696], + [50027,31596], + [51001,18008], + [51003,50177], + [51005,6675], + [51007,6383], + [51009,14988], + [51011,6725], + [51013,128839], + [51015,36204], + [51017,2837], + [51019,36597], + [51021,3257], + [51023,16962], + [51025,6543], + [51027,8235], + [51029,6756], + [51031,26320], + [51033,13385], + [51035,13116], + [51036,3660], + [51037,4988], + [51041,161332], + [51043,7802], + [51045,2464], + [51047,19497], + [51049,4445], + [51051,5484], + [51053,12399], + [51057,5290], + [51059,568732], + [51061,36005], + [51063,6859], + [51065,13473], + [51067,25509], + [51069,39905], + [51071,7778], + [51073,20039], + [51075,10860], + [51077,6757], + [51079,10198], + [51081,4095], + [51083,14422], + [51085,53387], + [51087,158125], + [51089,24336], + [51091,1089], + [51093,18057], + [51095,30571], + [51097,3214], + [51099,9023], + [51101,8232], + [51103,5086], + [51105,9186], + [51107,160532], + [51109,15683], + [51111,5258], + [51113,7156], + [51115,4314], + [51117,12525], + [51119,4890], + [51121,42874], + [51125,7692], + [51127,9159], + [51131,5717], + [51133,5689], + [51135,6322], + [51137,14903], + [51139,10755], + [51141,8682], + [51143,29185], + [51145,13950], + [51147,8637], + [51149,14219], + [51153,195368], + [51155,16730], + [51157,4206], + [51159,3348], + [51161,47743], + [51163,10912], + [51165,40497], + [51167,11165], + [51169,9350], + [51171,19372], + [51173,14244], + [51175,7397], + [51177,63030], + [51179,62816], + [51181,3603], + [51183,4264], + [51185,19384], + [51187,18846], + [51191,25524], + [51193,7964], + [51195,16769], + [51197,14784], + [51199,30233], + [51510,87484], + [51520,7557], + [51530,3255], + [51540,20596], + [51550,110894], + [51570,8906], + [51580,2545], + [51590,18250], + [51595,2305], + [51600,13550], + [51610,6456], + [51620,3743], + [51630,11872], + [51640,2948], + [51650,66052], + [51660,22100], + [51670,9950], + [51678,2258], + [51680,32350], + [51683,19200], + [51685,6395], + [51690,5432], + [51700,84430], + [51710,95656], + [51720,1501], + [51730,13206], + [51735,6183], + [51740,44483], + [51750,7443], + [51760,94548], + [51770,44547], + [51775,12975], + [51790,11251], + [51800,38487], + [51810,216854], + [51820,9742], + [51830,4825], + [51840,13868], + [53001,7495], + [53003,9733], + [53005,81368], + [53007,38390], + [53009,28041], + [53011,196792], + [53013,1417], + [53015,40721], + [53017,19853], + [53019,2711], + [53021,30208], + [53023,963], + [53025,37905], + [53027,28996], + [53029,31150], + [53031,12968], + [53033,1033216], + [53035,116967], + [53037,19265], + [53039,9028], + [53041,28762], + [53043,4429], + [53045,23543], + [53047,19194], + [53049,8591], + [53051,4874], + [53053,366760], + [53055,8160], + [53057,54870], + [53059,4682], + [53061,350475], + [53063,221245], + [53065,17145], + [53067,121724], + [53069,1544], + [53071,27603], + [53073,101371], + [53075,19433], + [53077,111716], + [54001,6366], + [54003,44102], + [54005,9007], + [54007,5689], + [54009,10298], + [54011,43794], + [54013,2560], + [54015,3255], + [54017,2685], + [54019,17154], + [54021,2980], + [54023,5032], + [54025,14669], + [54027,9343], + [54029,13589], + [54031,6918], + [54033,29452], + [54035,11470], + [54037,24439], + [54039,88360], + [54041,6997], + [54043,7582], + [54045,12212], + [54047,6429], + [54049,25156], + [54051,14081], + [54053,9643], + [54055,23780], + [54057,12766], + [54059,8305], + [54061,45933], + [54063,5675], + [54065,6750], + [54067,10255], + [54069,20200], + [54071,3666], + [54073,2982], + [54075,3474], + [54077,14218], + [54079,26446], + [54081,31296], + [54083,12420], + [54085,4391], + [54087,5235], + [54089,4469], + [54091,6608], + [54093,2812], + [54095,3447], + [54097,10353], + [54099,16920], + [54101,3182], + [54103,5878], + [54105,2341], + [54107,39229], + [54109,7700], + [55001,9439], + [55003,8515], + [55005,23556], + [55007,7629], + [55009,132673], + [55011,7874], + [55013,7554], + [55015,24336], + [55017,31980], + [55019,16780], + [55021,29585], + [55023,9198], + [55025,282673], + [55027,44532], + [55029,16091], + [55031,22016], + [55033,24795], + [55035,54873], + [55037,2351], + [55039,54193], + [55041,4668], + [55043,26865], + [55045,19398], + [55047,9927], + [55049,13412], + [55051,2819], + [55053,9306], + [55055,40188], + [55057,12496], + [55059,80060], + [55061,11177], + [55063,61901], + [55065,8928], + [55067,10031], + [55069,14690], + [55071,42275], + [55073,72651], + [55075,20942], + [55077,7441], + [55078,1478], + [55079,442497], + [55081,22963], + [55083,19086], + [55085,18232], + [55087,92643], + [55089,46016], + [55091,3912], + [55093,22767], + [55095,22715], + [55097,40073], + [55099,7811], + [55101,94374], + [55103,9420], + [55105,79647], + [55107,6772], + [55109,45004], + [55111,33395], + [55113,8921], + [55115,21001], + [55117,63287], + [55119,9871], + [55121,15577], + [55123,13477], + [55125,10847], + [55127,53487], + [55129,7361], + [55131,70663], + [55133,205558], + [55135,26694], + [55137,11975], + [55139,89412], + [55141,39705], + [56001,18087], + [56003,4668], + [56005,25440], + [56007,7996], + [56009,6696], + [56011,3303], + [56013,17221], + [56015,5671], + [56017,2272], + [56019,3759], + [56021,40350], + [56023,8668], + [56025,38905], + [56027,1154], + [56029,13648], + [56031,3757], + [56033,15211], + [56035,6512], + [56037,23184], + [56039,14058], + [56041,10818], + [56043,4048], + [56045,3059] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2008.json b/data/regional/united-states/economics/employment/us-employment-total-2008.json new file mode 100644 index 0000000..8f5fb4e --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2008.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employed.total.2008"], + [1001,23420], + [1003,79372], + [1005,9267], + [1007,8241], + [1009,25453], + [1011,3251], + [1013,8278], + [1015,51468], + [1017,12848], + [1019,11308], + [1021,18618], + [1023,4646], + [1025,9419], + [1027,5279], + [1029,6225], + [1031,19897], + [1033,23523], + [1035,4421], + [1037,4274], + [1039,15803], + [1041,6105], + [1043,37188], + [1045,18760], + [1047,13758], + [1049,28895], + [1051,34371], + [1053,13321], + [1055,42995], + [1057,6604], + [1059,12387], + [1061,10717], + [1063,3001], + [1065,6473], + [1067,6807], + [1069,44180], + [1071,25201], + [1073,294792], + [1075,5237], + [1077,40408], + [1079,14837], + [1081,61795], + [1083,35664], + [1085,4322], + [1087,8426], + [1089,161326], + [1091,7389], + [1093,11701], + [1095,39720], + [1097,176623], + [1099,7896], + [1101,99875], + [1103,54014], + [1105,3186], + [1107,7359], + [1109,15034], + [1111,8905], + [1113,19959], + [1115,34651], + [1117,97375], + [1119,4308], + [1121,35519], + [1123,16875], + [1125,84978], + [1127,27113], + [1129,6302], + [1131,2996], + [1133,9120], + [2013,1045], + [2016,2883], + [2020,143835], + [2050,5972], + [2060,960], + [2068,1508], + [2070,1875], + [2090,43198], + [2100,1238], + [2105,"NA"], + [2110,17882], + [2122,24176], + [2130,7805], + [2150,5961], + [2158,"NA"], + [2164,1059], + [2170,38372], + [2180,3577], + [2185,4927], + [2188,2637], + [2195,"NA"], + [2198,"NA"], + [2220,4353], + [2230,"NA"], + [2240,3241], + [2261,4816], + [2275,"NA"], + [2282,296], + [2290,2393], + [4001,18792], + [4003,56745], + [4005,69108], + [4007,20882], + [4009,14997], + [4011,4174], + [4012,6968], + [4013,1864614], + [4015,85485], + [4017,35328], + [4019,446795], + [4021,113278], + [4023,15916], + [4025,92011], + [4027,68812], + [5001,10969], + [5003,8745], + [5005,16635], + [5007,102277], + [5009,16116], + [5011,5215], + [5013,2451], + [5015,13620], + [5017,4556], + [5019,10398], + [5021,6146], + [5023,11427], + [5025,3892], + [5027,10166], + [5029,9671], + [5031,44307], + [5033,27327], + [5035,20807], + [5037,7974], + [5039,3625], + [5041,5422], + [5043,7831], + [5045,53567], + [5047,8184], + [5049,4971], + [5051,40368], + [5053,8237], + [5055,17870], + [5057,10111], + [5059,14207], + [5061,6025], + [5063,15922], + [5065,5108], + [5067,7313], + [5069,32634], + [5071,11080], + [5073,2853], + [5075,6786], + [5077,3309], + [5079,4604], + [5081,6482], + [5083,9753], + [5085,31002], + [5087,7418], + [5089,6526], + [5091,19423], + [5093,20367], + [5095,3613], + [5097,3965], + [5099,3989], + [5101,3304], + [5103,11212], + [5105,4551], + [5107,8398], + [5109,4811], + [5111,10103], + [5113,8459], + [5115,29008], + [5117,4173], + [5119,182801], + [5121,6974], + [5123,9450], + [5125,47807], + [5127,4656], + [5129,3441], + [5131,59133], + [5133,7330], + [5135,5842], + [5137,4432], + [5139,18065], + [5141,6614], + [5143,99485], + [5145,31300], + [5147,3238], + [5149,10169], + [6001,709426], + [6003,416], + [6005,16428], + [6007,94116], + [6009,18831], + [6011,9042], + [6013,491147], + [6015,10358], + [6017,84259], + [6019,384317], + [6021,10904], + [6023,55580], + [6025,56097], + [6027,8486], + [6029,323808], + [6031,52511], + [6033,21910], + [6035,11592], + [6037,4555103], + [6039,58861], + [6041,125973], + [6043,8574], + [6045,40230], + [6047,89245], + [6049,3555], + [6051,8096], + [6053,194121], + [6055,71677], + [6057,47033], + [6059,1529661], + [6061,165485], + [6063,8774], + [6065,833309], + [6067,630283], + [6069,22435], + [6071,792836], + [6073,1452608], + [6075,432981], + [6077,262271], + [6079,128522], + [6081,354161], + [6083,206131], + [6085,816618], + [6087,135342], + [6089,74257], + [6091,1421], + [6093,17242], + [6095,196503], + [6097,244654], + [6099,206012], + [6101,35980], + [6103,22832], + [6105,4228], + [6107,177353], + [6109,23703], + [6111,401777], + [6113,91012], + [6115,24396], + [8001,213688], + [8003,7919], + [8005,297374], + [8007,6194], + [8009,2165], + [8011,2196], + [8013,170108], + [8014,29451], + [8015,7986], + [8017,1223], + [8019,5393], + [8021,3369], + [8023,1181], + [8025,1687], + [8027,1815], + [8029,15778], + [8031,305960], + [8033,914], + [8035,154263], + [8037,30535], + [8039,12396], + [8041,283214], + [8043,18487], + [8045,35610], + [8047,3323], + [8049,8809], + [8051,9162], + [8053,622], + [8055,3215], + [8057,1047], + [8059,293431], + [8061,818], + [8063,4202], + [8065,3913], + [8067,30294], + [8069,168090], + [8071,8399], + [8073,2783], + [8075,10767], + [8077,78618], + [8079,449], + [8081,8394], + [8083,12228], + [8085,19728], + [8087,13485], + [8089,8189], + [8091,2906], + [8093,9217], + [8095,2162], + [8097,11188], + [8099,6236], + [8101,68823], + [8103,4981], + [8105,6060], + [8107,15060], + [8109,2821], + [8111,536], + [8113,5305], + [8115,1484], + [8117,16359], + [8119,11604], + [8121,2570], + [8123,112731], + [8125,6331], + [9001,447013], + [9003,432568], + [9005,100072], + [9007,89986], + [9009,421335], + [9011,142064], + [9013,81192], + [9015,60450], + [10001,71760], + [10003,264070], + [10005,89085], + [11001,309192], + [12001,125425], + [12003,11531], + [12005,83626], + [12007,11856], + [12009,250742], + [12011,950763], + [12013,5439], + [12015,63728], + [12017,51889], + [12019,90706], + [12021,137814], + [12023,29763], + [12027,13758], + [12029,5080], + [12031,418438], + [12033,129494], + [12035,28769], + [12037,4582], + [12039,19783], + [12041,7373], + [12043,4345], + [12045,5957], + [12047,4441], + [12049,10952], + [12051,15619], + [12053,57578], + [12055,37916], + [12057,560054], + [12059,8531], + [12061,57748], + [12063,20973], + [12065,6491], + [12067,2839], + [12069,127816], + [12071,262214], + [12073,140372], + [12075,15666], + [12077,3683], + [12079,6530], + [12081,133932], + [12083,127220], + [12085,59125], + [12086,1169367], + [12087,44710], + [12089,34261], + [12091,92269], + [12093,16183], + [12095,566854], + [12097,129094], + [12099,585947], + [12101,182473], + [12103,418214], + [12105,254490], + [12107,29618], + [12109,91366], + [12111,113354], + [12113,66289], + [12115,154823], + [12117,227205], + [12119,29145], + [12121,15979], + [12123,8525], + [12125,5045], + [12127,237301], + [12129,15178], + [12131,29684], + [12133,9234], + [13001,8701], + [13003,3106], + [13005,4495], + [13007,1570], + [13009,19445], + [13011,10556], + [13013,33103], + [13015,43592], + [13017,6719], + [13019,8061], + [13021,70795], + [13023,5013], + [13025,7186], + [13027,7927], + [13029,16255], + [13031,31140], + [13033,9133], + [13035,9674], + [13037,2214], + [13039,20178], + [13043,4075], + [13045,50314], + [13047,33948], + [13049,4278], + [13051,127004], + [13053,2246], + [13055,10172], + [13057,106486], + [13059,62795], + [13061,1370], + [13063,126243], + [13065,2597], + [13067,360319], + [13069,15348], + [13071,19522], + [13073,58040], + [13075,6691], + [13077,57904], + [13079,5900], + [13081,9437], + [13083,7972], + [13085,10707], + [13087,11190], + [13089,367914], + [13091,8788], + [13093,4482], + [13095,39348], + [13097,62091], + [13099,5157], + [13101,2122], + [13103,27683], + [13105,9246], + [13107,10007], + [13109,4707], + [13111,10275], + [13113,50498], + [13115,47077], + [13117,84270], + [13119,9734], + [13121,465380], + [13123,13289], + [13125,1053], + [13127,39401], + [13129,24669], + [13131,11278], + [13133,7107], + [13135,402076], + [13137,19664], + [13139,88082], + [13141,2924], + [13143,12102], + [13145,15658], + [13147,9764], + [13149,4587], + [13151,93281], + [13153,66343], + [13155,3816], + [13157,25975], + [13159,6070], + [13161,4794], + [13163,6476], + [13165,2415], + [13167,3419], + [13169,13733], + [13171,7374], + [13173,3982], + [13175,20848], + [13177,17260], + [13179,23961], + [13181,3633], + [13183,6233], + [13185,51985], + [13187,12520], + [13189,9949], + [13191,5145], + [13193,4720], + [13195,15477], + [13197,3132], + [13199,8845], + [13201,3422], + [13205,9851], + [13207,13164], + [13209,4226], + [13211,9051], + [13213,18915], + [13215,80960], + [13217,44131], + [13219,18122], + [13221,7572], + [13223,64420], + [13225,11313], + [13227,14575], + [13229,8242], + [13231,7721], + [13233,20140], + [13235,4362], + [13237,9756], + [13239,942], + [13241,6530], + [13243,2555], + [13245,85658], + [13247,38020], + [13249,1756], + [13251,6805], + [13253,3805], + [13255,26522], + [13257,12954], + [13259,2141], + [13261,13612], + [13263,2982], + [13265,779], + [13267,8665], + [13269,3190], + [13271,4207], + [13273,4144], + [13275,20937], + [13277,17720], + [13279,13043], + [13281,5485], + [13283,2645], + [13285,28102], + [13287,4411], + [13289,4436], + [13291,10521], + [13293,11037], + [13295,31232], + [13297,39554], + [13299,14249], + [13301,2235], + [13303,7577], + [13305,11309], + [13307,1239], + [13309,2725], + [13311,11977], + [13313,42809], + [13315,3010], + [13317,4302], + [13319,4436], + [13321,9567], + [15001,79796], + [15003,426832], + [15005,"NA"], + [15007,31077], + [15009,74415], + [16001,186848], + [16003,1710], + [16005,37716], + [16007,3192], + [16009,3668], + [16011,21482], + [16013,13186], + [16015,3274], + [16017,19063], + [16019,48346], + [16021,4186], + [16023,1310], + [16025,602], + [16027,78638], + [16029,3755], + [16031,10554], + [16033,575], + [16035,2864], + [16037,2326], + [16039,10735], + [16041,5498], + [16043,5477], + [16045,6535], + [16047,8433], + [16049,6591], + [16051,10847], + [16053,9541], + [16055,66653], + [16057,16453], + [16059,3413], + [16061,1622], + [16063,2425], + [16065,16075], + [16067,9616], + [16069,17706], + [16071,2223], + [16073,4226], + [16075,9822], + [16077,3353], + [16079,5671], + [16081,5149], + [16083,36563], + [16085,4350], + [16087,4376], + [17001,36907], + [17003,2814], + [17005,8196], + [17007,24270], + [17009,3404], + [17011,18126], + [17013,2392], + [17015,7955], + [17017,7210], + [17019,99814], + [17021,16778], + [17023,7912], + [17025,6279], + [17027,18143], + [17029,26049], + [17031,2447178], + [17033,9072], + [17035,5250], + [17037,56851], + [17039,8141], + [17041,9856], + [17043,502976], + [17045,9571], + [17047,3076], + [17049,17528], + [17051,9435], + [17053,6746], + [17055,16281], + [17057,16784], + [17059,2405], + [17061,6530], + [17063,24348], + [17065,3935], + [17067,9189], + [17069,1554], + [17071,3629], + [17073,25928], + [17075,15643], + [17077,30647], + [17079,4864], + [17081,19542], + [17083,11045], + [17085,12676], + [17087,4713], + [17089,255338], + [17091,51242], + [17093,56150], + [17095,23925], + [17097,347350], + [17099,54522], + [17101,7682], + [17103,16977], + [17105,18258], + [17107,12516], + [17109,15972], + [17111,170098], + [17113,86181], + [17115,50876], + [17117,22762], + [17119,130675], + [17121,17022], + [17123,6844], + [17125,6811], + [17127,6893], + [17129,6547], + [17131,8333], + [17133,17638], + [17135,12295], + [17137,16859], + [17139,7609], + [17141,25786], + [17143,92524], + [17145,8668], + [17147,8518], + [17149,8049], + [17151,1777], + [17153,2628], + [17155,2982], + [17157,14324], + [17159,7044], + [17161,74998], + [17163,115708], + [17165,11521], + [17167,101724], + [17169,4126], + [17171,2576], + [17173,10443], + [17175,2792], + [17177,23742], + [17179,69906], + [17181,7621], + [17183,34506], + [17185,5687], + [17187,8735], + [17189,7842], + [17191,7790], + [17193,7333], + [17195,28251], + [17197,342981], + [17199,32921], + [17201,135296], + [17203,20804], + [18001,14334], + [18003,170481], + [18005,37724], + [18007,4174], + [18009,5989], + [18011,27197], + [18013,7157], + [18015,9573], + [18017,17623], + [18019,53075], + [18021,11959], + [18023,15956], + [18025,4983], + [18027,14620], + [18029,24707], + [18031,11886], + [18033,19119], + [18035,51756], + [18037,21435], + [18039,89437], + [18041,8933], + [18043,36392], + [18045,8191], + [18047,11104], + [18049,9602], + [18051,15956], + [18053,29924], + [18055,15025], + [18057,139618], + [18059,34669], + [18061,18495], + [18063,70815], + [18065,21133], + [18067,34221], + [18069,18830], + [18071,20629], + [18073,14832], + [18075,11070], + [18077,15727], + [18079,12806], + [18081,71678], + [18083,19172], + [18085,39317], + [18087,15170], + [18089,214202], + [18091,49417], + [18093,20234], + [18095,57161], + [18097,437123], + [18099,21490], + [18101,4894], + [18103,15283], + [18105,66641], + [18107,18148], + [18109,35359], + [18111,6535], + [18113,20822], + [18115,2855], + [18117,9738], + [18119,10685], + [18121,7568], + [18123,9204], + [18125,5692], + [18127,80333], + [18129,12711], + [18131,6416], + [18133,16510], + [18135,11839], + [18137,13214], + [18139,8663], + [18141,124176], + [18143,10379], + [18145,22421], + [18147,9985], + [18149,9871], + [18151,14965], + [18153,8275], + [18155,5408], + [18157,79617], + [18159,7049], + [18161,3380], + [18163,86733], + [18165,7245], + [18167,47164], + [18169,15299], + [18171,4598], + [18173,29605], + [18175,13169], + [18177,30915], + [18179,13907], + [18181,11694], + [18183,16741], + [19001,4199], + [19003,2022], + [19005,7376], + [19007,5695], + [19009,3083], + [19011,13818], + [19013,70684], + [19015,15092], + [19017,13416], + [19019,10718], + [19021,10245], + [19023,8104], + [19025,5098], + [19027,11993], + [19029,7255], + [19031,10908], + [19033,24476], + [19035,6263], + [19037,6550], + [19039,4679], + [19041,9392], + [19043,9423], + [19045,26915], + [19047,9078], + [19049,32834], + [19051,3864], + [19053,4109], + [19055,10410], + [19057,19653], + [19059,9265], + [19061,49895], + [19063,5703], + [19065,10344], + [19067,8106], + [19069,5587], + [19071,3733], + [19073,4879], + [19075,6627], + [19077,5543], + [19079,8246], + [19081,5566], + [19083,8867], + [19085,7420], + [19087,9613], + [19089,4968], + [19091,4974], + [19093,4037], + [19095,8292], + [19097,10715], + [19099,16376], + [19101,8056], + [19103,76874], + [19105,10073], + [19107,5383], + [19109,8679], + [19111,16312], + [19113,116264], + [19115,6066], + [19117,4463], + [19119,6648], + [19121,7927], + [19123,11276], + [19125,17088], + [19127,19442], + [19129,7811], + [19131,5525], + [19133,4364], + [19135,4026], + [19137,5099], + [19139,22878], + [19141,7537], + [19143,3263], + [19145,7761], + [19147,5208], + [19149,13851], + [19151,4104], + [19153,231148], + [19155,46542], + [19157,10004], + [19159,2315], + [19161,5566], + [19163,86607], + [19165,7352], + [19167,19168], + [19169,47260], + [19171,8462], + [19173,3234], + [19175,6402], + [19177,3757], + [19179,17925], + [19181,24771], + [19183,11526], + [19185,3109], + [19187,19181], + [19189,5540], + [19191,11851], + [19193,53765], + [19195,4336], + [19197,6795], + [20001,7069], + [20003,4130], + [20005,8446], + [20007,2664], + [20009,15106], + [20011,8103], + [20013,5316], + [20015,31296], + [20017,1408], + [20019,1775], + [20021,10628], + [20023,1429], + [20025,1211], + [20027,4993], + [20029,5376], + [20031,5118], + [20033,1076], + [20035,17333], + [20037,18845], + [20039,1729], + [20041,10289], + [20043,4237], + [20045,59114], + [20047,1707], + [20049,1379], + [20051,16843], + [20053,3744], + [20055,18452], + [20057,17544], + [20059,13008], + [20061,12933], + [20063,1474], + [20065,1469], + [20067,3887], + [20069,3236], + [20071,703], + [20073,3436], + [20075,1244], + [20077,3328], + [20079,17376], + [20081,2133], + [20083,912], + [20085,6476], + [20087,9109], + [20089,1888], + [20091,287691], + [20093,2105], + [20095,4340], + [20097,1384], + [20099,10861], + [20101,1057], + [20103,31016], + [20105,1861], + [20107,4328], + [20109,1613], + [20111,17767], + [20113,15927], + [20115,6505], + [20117,5753], + [20119,2333], + [20121,15476], + [20123,3452], + [20125,16966], + [20127,2764], + [20129,1728], + [20131,5587], + [20133,8762], + [20135,1766], + [20137,2728], + [20139,7999], + [20141,2174], + [20143,3261], + [20145,3697], + [20147,2934], + [20149,10391], + [20151,5510], + [20153,1191], + [20155,32990], + [20157,2875], + [20159,5621], + [20161,36016], + [20163,2568], + [20165,1643], + [20167,3476], + [20169,30325], + [20171,2663], + [20173,243295], + [20175,10774], + [20177,87810], + [20179,1529], + [20181,3630], + [20183,2084], + [20185,2077], + [20187,1080], + [20189,2214], + [20191,11154], + [20193,4102], + [20195,1815], + [20197,3540], + [20199,809], + [20201,3219], + [20203,1226], + [20205,5215], + [20207,1579], + [20209,65407], + [21001,8248], + [21003,7778], + [21005,10182], + [21007,3877], + [21009,18223], + [21011,4579], + [21013,8751], + [21015,59447], + [21017,8995], + [21019,21456], + [21021,11885], + [21023,3936], + [21025,5210], + [21027,8471], + [21029,36604], + [21031,5028], + [21033,6225], + [21035,16774], + [21037,41696], + [21039,2122], + [21041,5125], + [21043,12219], + [21045,6674], + [21047,26578], + [21049,16008], + [21051,6094], + [21053,4405], + [21055,3763], + [21057,2715], + [21059,44604], + [21061,4915], + [21063,2881], + [21065,5686], + [21067,142748], + [21069,5992], + [21071,14246], + [21073,23348], + [21075,2504], + [21077,3639], + [21079,7080], + [21081,11881], + [21083,14718], + [21085,10010], + [21087,5105], + [21089,16406], + [21091,3947], + [21093,44570], + [21095,9162], + [21097,8679], + [21099,7696], + [21101,21439], + [21103,7284], + [21105,1947], + [21107,21422], + [21109,3639], + [21111,333279], + [21113,21752], + [21115,8844], + [21117,78687], + [21119,5856], + [21121,11759], + [21123,6510], + [21125,24326], + [21127,5368], + [21129,2479], + [21131,3251], + [21133,8102], + [21135,4991], + [21137,9718], + [21139,4430], + [21141,11583], + [21143,3027], + [21145,29269], + [21147,5161], + [21149,4232], + [21151,40496], + [21153,3805], + [21155,9570], + [21157,13791], + [21159,3245], + [21161,8254], + [21163,10630], + [21165,2327], + [21167,9797], + [21169,4088], + [21171,4349], + [21173,11330], + [21175,4427], + [21177,11979], + [21179,19976], + [21181,2854], + [21183,11706], + [21185,26199], + [21187,4954], + [21189,1405], + [21191,6736], + [21193,10420], + [21195,24186], + [21197,4974], + [21199,25265], + [21201,924], + [21203,6692], + [21205,11592], + [21207,7635], + [21209,21542], + [21211,20235], + [21213,8764], + [21215,8501], + [21217,12723], + [21219,4857], + [21221,5764], + [21223,4024], + [21225,7153], + [21227,54741], + [21229,5009], + [21231,7695], + [21233,5997], + [21235,14241], + [21237,2087], + [21239,12508], + [22001,25970], + [22003,8316], + [22005,48704], + [22007,10050], + [22009,15485], + [22011,13843], + [22013,5786], + [22015,52337], + [22017,114249], + [22019,90245], + [22021,4342], + [22023,3407], + [22025,3949], + [22027,6223], + [22029,7067], + [22031,10937], + [22033,208563], + [22035,2757], + [22037,7748], + [22039,11910], + [22041,7264], + [22043,8463], + [22045,33729], + [22047,11658], + [22049,6339], + [22051,207481], + [22053,14419], + [22055,109279], + [22057,48386], + [22059,6151], + [22061,18356], + [22063,55863], + [22065,4313], + [22067,10815], + [22069,16286], + [22071,125795], + [22073,68131], + [22075,8076], + [22077,9147], + [22079,59372], + [22081,3231], + [22083,8316], + [22085,9170], + [22087,16765], + [22089,23627], + [22091,3903], + [22093,8505], + [22095,19887], + [22097,36090], + [22099,23264], + [22101,22573], + [22103,107230], + [22105,50302], + [22107,1951], + [22109,54376], + [22111,9618], + [22113,23547], + [22115,19869], + [22117,15023], + [22119,19026], + [22121,10246], + [22123,4002], + [22125,4525], + [22127,6128], + [23001,54929], + [23003,32506], + [23005,150651], + [23007,13229], + [23009,27891], + [23011,60001], + [23013,19821], + [23015,17371], + [23017,26254], + [23019,74277], + [23021,6781], + [23023,18137], + [23025,22814], + [23027,17893], + [23029,13275], + [23031,107347], + [24001,33330], + [24003,272533], + [24005,411253], + [24009,47130], + [24011,15590], + [24013,91551], + [24015,48298], + [24017,74846], + [24019,15518], + [24021,118950], + [24023,15975], + [24025,127825], + [24027,156349], + [24029,10500], + [24031,499705], + [24033,430909], + [24035,25577], + [24037,50223], + [24039,10547], + [24041,18411], + [24043,63919], + [24045,50030], + [24047,25590], + [24510,260431], + [25001,114348], + [25003,68940], + [25005,269445], + [25007,10703], + [25009,355000], + [25011,36919], + [25013,209843], + [25015,84390], + [25017,787161], + [25019,8112], + [25021,340143], + [25023,246149], + [25025,351623], + [25027,378631], + [26001,3800], + [26003,3881], + [26005,51149], + [26007,13547], + [26009,10560], + [26011,7154], + [26013,3691], + [26015,28030], + [26017,50516], + [26019,8053], + [26021,73419], + [26023,20010], + [26025,63770], + [26027,24748], + [26029,12700], + [26031,10825], + [26033,15601], + [26035,11428], + [26037,35506], + [26039,5864], + [26041,18067], + [26043,13443], + [26045,55143], + [26047,17874], + [26049,181895], + [26051,9341], + [26053,6900], + [26055,45204], + [26057,17591], + [26059,18754], + [26061,16064], + [26063,14826], + [26065,141990], + [26067,27549], + [26069,9522], + [26071,5357], + [26073,36364], + [26075,70110], + [26077,125812], + [26079,7788], + [26081,298902], + [26083,948], + [26085,3501], + [26087,39013], + [26089,10468], + [26091,43910], + [26093,86794], + [26095,2489], + [26097,5573], + [26099,378988], + [26101,10695], + [26103,33455], + [26105,13582], + [26107,18042], + [26109,12260], + [26111,40565], + [26113,5753], + [26115,69463], + [26117,23353], + [26119,3461], + [26121,81253], + [26123,20609], + [26125,569123], + [26127,12626], + [26129,8665], + [26131,2977], + [26133,8564], + [26135,3391], + [26137,10833], + [26139,125097], + [26141,5205], + [26143,9096], + [26145,86456], + [26147,73777], + [26149,27988], + [26151,18856], + [26153,3461], + [26155,31927], + [26157,25098], + [26159,36744], + [26161,175940], + [26163,783771], + [26165,12775], + [27001,7061], + [27003,179506], + [27005,15672], + [27007,19732], + [27009,21694], + [27011,2648], + [27013,35772], + [27015,14009], + [27017,16277], + [27019,48031], + [27021,12954], + [27023,6765], + [27025,25545], + [27027,31052], + [27029,3582], + [27031,2947], + [27033,5959], + [27035,30464], + [27037,219354], + [27039,10467], + [27041,19352], + [27043,7267], + [27045,10302], + [27047,15417], + [27049,23710], + [27051,2838], + [27053,624644], + [27055,10282], + [27057,8839], + [27059,20273], + [27061,20478], + [27063,6343], + [27065,7192], + [27067,22408], + [27069,2337], + [27071,6030], + [27073,3915], + [27075,5843], + [27077,2135], + [27079,13306], + [27081,3094], + [27083,13913], + [27085,19266], + [27087,2239], + [27089,4762], + [27091,10930], + [27093,11673], + [27095,11203], + [27097,16346], + [27099,19510], + [27101,5155], + [27103,18979], + [27105,10681], + [27107,3337], + [27109,76415], + [27111,27837], + [27113,8100], + [27115,12950], + [27117,5366], + [27119,16044], + [27121,5769], + [27123,257550], + [27125,2174], + [27127,7651], + [27129,8181], + [27131,30805], + [27133,4754], + [27135,9089], + [27137,97825], + [27139,70646], + [27141,46531], + [27143,8109], + [27145,78874], + [27147,19742], + [27149,5364], + [27151,4905], + [27153,11396], + [27155,1662], + [27157,11476], + [27159,5975], + [27161,9928], + [27163,122858], + [27165,5113], + [27167,3337], + [27169,27547], + [27171,63324], + [27173,5550], + [28001,12614], + [28003,14091], + [28005,4848], + [28007,6655], + [28009,2565], + [28011,13982], + [28013,5458], + [28015,4552], + [28017,6478], + [28019,3157], + [28021,3240], + [28023,6491], + [28025,6380], + [28027,9258], + [28029,11192], + [28031,8292], + [28033,74957], + [28035,34810], + [28037,2853], + [28039,8860], + [28041,4512], + [28043,8894], + [28045,17379], + [28047,82117], + [28049,109822], + [28051,6223], + [28053,3919], + [28055,628], + [28057,9263], + [28059,58051], + [28061,6990], + [28063,2435], + [28065,5238], + [28067,29315], + [28069,3702], + [28071,21088], + [28073,22919], + [28075,31308], + [28077,4914], + [28079,7883], + [28081,35249], + [28083,12340], + [28085,13113], + [28087,23939], + [28089,43861], + [28091,9685], + [28093,14145], + [28095,14341], + [28097,4104], + [28099,13349], + [28101,8838], + [28103,3297], + [28105,19193], + [28107,13492], + [28109,20042], + [28111,4669], + [28113,14616], + [28115,12247], + [28117,10275], + [28119,3301], + [28121,70829], + [28123,12817], + [28125,2274], + [28127,10925], + [28129,6079], + [28131,7334], + [28133,9575], + [28135,5491], + [28137,11020], + [28139,7927], + [28141,7240], + [28143,3966], + [28145,11136], + [28147,5465], + [28149,21133], + [28151,20244], + [28153,7929], + [28155,3103], + [28157,3407], + [28159,7438], + [28161,4978], + [28163,9252], + [29001,12885], + [29003,9512], + [29005,3062], + [29007,11623], + [29009,16812], + [29011,4826], + [29013,7296], + [29015,7779], + [29017,5212], + [29019,83038], + [29021,46134], + [29023,20504], + [29025,4030], + [29027,21419], + [29029,21034], + [29031,36469], + [29033,4688], + [29035,2756], + [29037,47276], + [29039,6033], + [29041,3734], + [29043,37970], + [29045,3333], + [29047,110846], + [29049,9736], + [29051,38301], + [29053,8692], + [29055,11107], + [29057,3346], + [29059,6833], + [29061,3712], + [29063,4841], + [29065,6299], + [29067,5629], + [29069,13170], + [29071,48907], + [29073,7289], + [29075,3325], + [29077,132293], + [29079,4655], + [29081,4346], + [29083,10169], + [29085,3118], + [29087,2621], + [29089,4800], + [29091,18729], + [29093,5406], + [29095,310717], + [29097,53747], + [29099,108378], + [29101,25088], + [29103,2250], + [29105,16516], + [29107,15371], + [29109,18465], + [29111,5259], + [29113,24901], + [29115,6077], + [29117,6736], + [29119,10491], + [29121,7382], + [29123,5797], + [29125,4488], + [29127,13875], + [29129,1746], + [29131,12304], + [29133,5397], + [29135,7010], + [29137,4041], + [29139,5685], + [29141,8640], + [29143,8283], + [29145,26088], + [29147,12328], + [29149,4306], + [29151,6952], + [29153,4141], + [29155,7640], + [29157,9955], + [29159,19923], + [29161,20916], + [29163,8680], + [29165,46299], + [29167,13235], + [29169,18544], + [29171,2371], + [29173,5389], + [29175,12420], + [29177,10615], + [29179,2491], + [29181,6276], + [29183,183405], + [29185,3951], + [29186,9486], + [29187,28012], + [29189,487113], + [29195,10819], + [29197,2025], + [29199,2384], + [29201,18554], + [29203,3433], + [29205,3146], + [29207,14246], + [29209,15241], + [29211,3308], + [29213,26111], + [29215,10405], + [29217,9437], + [29219,15302], + [29221,9060], + [29223,5452], + [29225,15824], + [29227,1083], + [29229,7617], + [29510,144629], + [30001,4918], + [30003,4778], + [30005,2858], + [30007,2323], + [30009,5084], + [30011,729], + [30013,38519], + [30015,2560], + [30017,5643], + [30019,773], + [30021,4233], + [30023,3592], + [30025,1775], + [30027,5666], + [30029,43214], + [30031,48733], + [30033,634], + [30035,5318], + [30037,551], + [30039,1205], + [30041,7816], + [30043,5719], + [30045,1059], + [30047,10797], + [30049,32683], + [30051,744], + [30053,7001], + [30055,1002], + [30057,4357], + [30059,829], + [30061,1759], + [30063,56136], + [30065,2030], + [30067,8555], + [30069,235], + [30071,2074], + [30073,2482], + [30075,915], + [30077,2545], + [30079,569], + [30081,17558], + [30083,5388], + [30085,3685], + [30087,3790], + [30089,4198], + [30091,1783], + [30093,16969], + [30095,4409], + [30097,2799], + [30099,2980], + [30101,2515], + [30103,389], + [30105,3498], + [30107,1053], + [30109,514], + [30111,79407], + [31001,17164], + [31003,3540], + [31005,233], + [31007,391], + [31009,232], + [31011,3170], + [31013,5420], + [31015,1074], + [31017,1798], + [31019,27178], + [31021,3797], + [31023,4769], + [31025,13471], + [31027,4707], + [31029,1938], + [31031,3323], + [31033,5090], + [31035,3019], + [31037,5480], + [31039,4794], + [31041,5914], + [31043,10545], + [31045,4685], + [31047,11960], + [31049,1023], + [31051,3274], + [31053,19306], + [31055,264071], + [31057,1005], + [31059,3086], + [31061,1723], + [31063,1583], + [31065,2443], + [31067,11660], + [31069,920], + [31071,1027], + [31073,989], + [31075,362], + [31077,1265], + [31079,30752], + [31081,5740], + [31083,1785], + [31085,460], + [31087,1422], + [31089,5973], + [31091,397], + [31093,3624], + [31095,4154], + [31097,2845], + [31099,3592], + [31101,4420], + [31103,357], + [31105,1875], + [31107,4519], + [31109,154953], + [31111,21332], + [31113,454], + [31115,326], + [31117,303], + [31119,18229], + [31121,4091], + [31123,2792], + [31125,1995], + [31127,3256], + [31129,2188], + [31131,8752], + [31133,1513], + [31135,1636], + [31137,5027], + [31139,3822], + [31141,17854], + [31143,2948], + [31145,5846], + [31147,4032], + [31149,824], + [31151,8115], + [31153,76687], + [31155,10574], + [31157,18802], + [31159,8774], + [31161,2977], + [31163,1882], + [31165,692], + [31167,3416], + [31169,2728], + [31171,358], + [31173,2793], + [31175,2505], + [31177,10903], + [31179,5051], + [31181,1730], + [31183,475], + [31185,6789], + [32001,12687], + [32003,915147], + [32005,20948], + [32007,25605], + [32009,462], + [32011,810], + [32013,7754], + [32015,3487], + [32017,1732], + [32019,20412], + [32021,2214], + [32023,15907], + [32027,2344], + [32029,2292], + [32031,209131], + [32033,4568], + [32510,26688], + [33001,31312], + [33003,24980], + [33005,40610], + [33007,15653], + [33009,47257], + [33011,220158], + [33013,78144], + [33015,166876], + [33017,67148], + [33019,21977], + [34001,126475], + [34003,457226], + [34005,227696], + [34007,251420], + [34009,52091], + [34011,63611], + [34013,341987], + [34015,148257], + [34017,275774], + [34019,70260], + [34021,192541], + [34023,404623], + [34025,319101], + [34027,264632], + [34029,246504], + [34031,224531], + [34033,29651], + [34035,174322], + [34037,81001], + [34039,256002], + [34041,56261], + [35001,299763], + [35003,1454], + [35005,25669], + [35006,11786], + [35007,6332], + [35009,20352], + [35011,773], + [35013,84680], + [35015,26480], + [35017,11761], + [35019,1621], + [35021,386], + [35023,2507], + [35025,28442], + [35027,10657], + [35028,9698], + [35029,10838], + [35031,25192], + [35033,1852], + [35035,24753], + [35037,3734], + [35039,19358], + [35041,9179], + [35043,52902], + [35045,54864], + [35047,12655], + [35049,75237], + [35051,5654], + [35053,9174], + [35055,16681], + [35057,6532], + [35059,1892], + [35061,29556], + [36001,152756], + [36003,22578], + [36005,484145], + [36007,92690], + [36009,39222], + [36011,39482], + [36013,63591], + [36015,39147], + [36017,23104], + [36019,37370], + [36021,30342], + [36023,22623], + [36025,21549], + [36027,139178], + [36029,446521], + [36031,17375], + [36033,21464], + [36035,25807], + [36037,31658], + [36039,22938], + [36041,2887], + [36043,29399], + [36045,45913], + [36047,1039579], + [36049,11795], + [36051,30594], + [36053,34410], + [36055,357407], + [36057,23065], + [36059,667509], + [36061,885850], + [36063,106367], + [36065,105296], + [36067,223381], + [36069,54042], + [36071,171776], + [36073,18214], + [36075,56314], + [36077,29900], + [36079,53581], + [36081,1064170], + [36083,79974], + [36085,231712], + [36087,148768], + [36089,46719], + [36091,116361], + [36093,73087], + [36095,14822], + [36097,9568], + [36099,16237], + [36101,43132], + [36103,759899], + [36105,33339], + [36107,24973], + [36109,53896], + [36111,85770], + [36113,34624], + [36115,31099], + [36117,45369], + [36119,472088], + [36121,20062], + [36123,12594], + [37001,66652], + [37003,16947], + [37005,4211], + [37007,9349], + [37009,11710], + [37011,8325], + [37013,19269], + [37015,8036], + [37017,14257], + [37019,46777], + [37021,116582], + [37023,37032], + [37025,80093], + [37027,35210], + [37029,4297], + [37031,31001], + [37033,9888], + [37035,71301], + [37037,32114], + [37039,9067], + [37041,6116], + [37043,4361], + [37045,44846], + [37047,22294], + [37049,39608], + [37051,125074], + [37053,12237], + [37055,20599], + [37057,72235], + [37059,19694], + [37061,22643], + [37063,134659], + [37065,22024], + [37067,167023], + [37069,26024], + [37071,92132], + [37073,4597], + [37075,3907], + [37077,23743], + [37079,8656], + [37081,235604], + [37083,21677], + [37085,44746], + [37087,26266], + [37089,47221], + [37091,9164], + [37093,18584], + [37095,2490], + [37097,73841], + [37099,19908], + [37101,73394], + [37103,4396], + [37105,23863], + [37107,25074], + [37109,36514], + [37111,19105], + [37113,15325], + [37115,9454], + [37117,11127], + [37119,439235], + [37121,6519], + [37123,10382], + [37125,34153], + [37127,43428], + [37129,100018], + [37131,8000], + [37133,59461], + [37135,66952], + [37137,5092], + [37139,16729], + [37141,22913], + [37143,4942], + [37145,17646], + [37147,75795], + [37149,9081], + [37151,70321], + [37153,18262], + [37155,51507], + [37157,41197], + [37159,65244], + [37161,27289], + [37163,30643], + [37165,12374], + [37167,28138], + [37169,22690], + [37171,31493], + [37173,6393], + [37175,12665], + [37177,2049], + [37179,90372], + [37181,17804], + [37183,435242], + [37185,7116], + [37187,5677], + [37189,21916], + [37191,50452], + [37193,27894], + [37195,36868], + [37197,18247], + [37199,7173], + [38001,1230], + [38003,6090], + [38005,2470], + [38007,513], + [38009,3485], + [38011,1700], + [38013,1034], + [38015,46099], + [38017,86519], + [38019,1974], + [38021,2830], + [38023,859], + [38025,1696], + [38027,1178], + [38029,1603], + [38031,1716], + [38033,844], + [38035,37778], + [38037,1151], + [38039,1244], + [38041,1083], + [38043,1191], + [38045,2165], + [38047,891], + [38049,2594], + [38051,1352], + [38053,3036], + [38055,4616], + [38057,4620], + [38059,14480], + [38061,2864], + [38063,1674], + [38065,1096], + [38067,3734], + [38069,1850], + [38071,5621], + [38073,2983], + [38075,1230], + [38077,8619], + [38079,4535], + [38081,2128], + [38083,618], + [38085,1237], + [38087,750], + [38089,13977], + [38091,1143], + [38093,11406], + [38095,1074], + [38097,4029], + [38099,5438], + [38101,28841], + [38103,2020], + [38105,14425], + [39001,11958], + [39003,47826], + [39005,25163], + [39007,45083], + [39009,28723], + [39011,25405], + [39013,31257], + [39015,20099], + [39017,179773], + [39019,12883], + [39021,19056], + [39023,66324], + [39025,100271], + [39027,21995], + [39029,49094], + [39031,15700], + [39033,20017], + [39035,604178], + [39037,26125], + [39039,19100], + [39041,87875], + [39043,39548], + [39045,71208], + [39047,15981], + [39049,590436], + [39051,21313], + [39053,13207], + [39055,48637], + [39057,75988], + [39059,17904], + [39061,414088], + [39063,38454], + [39065,13951], + [39067,6812], + [39069,14447], + [39071,19120], + [39073,13143], + [39075,18471], + [39077,26184], + [39079,13969], + [39081,30542], + [39083,28258], + [39085,126301], + [39087,27794], + [39089,78494], + [39091,23773], + [39093,149893], + [39095,203962], + [39097,18947], + [39099,107545], + [39101,30274], + [39103,91183], + [39105,8225], + [39107,23497], + [39109,51145], + [39111,5222], + [39113,247269], + [39115,5216], + [39117,16701], + [39119,35078], + [39121,5336], + [39123,19631], + [39125,10021], + [39127,14986], + [39129,23044], + [39131,9754], + [39133,87062], + [39135,19938], + [39137,17381], + [39139,57713], + [39141,31931], + [39143,30917], + [39145,29811], + [39147,28333], + [39149,25897], + [39151,179027], + [39153,279954], + [39155,97654], + [39157,44847], + [39159,24544], + [39161,14099], + [39163,5194], + [39165,103225], + [39167,31249], + [39169,56039], + [39171,18370], + [39173,64258], + [39175,10549], + [40001,10315], + [40003,2402], + [40005,5766], + [40007,3196], + [40009,12187], + [40011,4813], + [40013,19640], + [40015,11972], + [40017,50300], + [40019,25910], + [40021,22047], + [40023,6560], + [40025,1213], + [40027,115154], + [40029,2372], + [40031,44154], + [40033,3783], + [40035,7142], + [40037,29889], + [40039,14362], + [40041,18131], + [40043,2575], + [40045,2483], + [40047,30718], + [40049,14424], + [40051,21979], + [40053,2537], + [40055,1950], + [40057,1289], + [40059,1998], + [40061,5738], + [40063,4819], + [40065,11964], + [40067,2297], + [40069,4954], + [40071,23078], + [40073,8329], + [40075,3884], + [40077,4489], + [40079,19766], + [40081,13285], + [40083,17096], + [40085,5157], + [40087,14413], + [40089,13194], + [40091,8180], + [40093,4195], + [40095,6294], + [40097,17757], + [40099,8300], + [40101,28319], + [40103,5571], + [40105,4811], + [40107,4405], + [40109,311404], + [40111,15117], + [40113,19259], + [40115,17082], + [40117,6969], + [40119,33687], + [40121,23090], + [40123,19652], + [40125,31730], + [40127,5000], + [40129,1898], + [40131,38831], + [40133,10538], + [40135,16646], + [40137,21435], + [40139,9486], + [40141,3377], + [40143,283155], + [40145,32065], + [40147,26590], + [40149,5974], + [40151,4221], + [40153,12322], + [41001,6910], + [41003,41076], + [41005,188750], + [41007,19302], + [41009,22480], + [41011,25771], + [41013,8826], + [41015,8746], + [41017,75061], + [41019,41935], + [41021,1148], + [41023,3021], + [41025,3031], + [41027,12634], + [41029,93823], + [41031,8412], + [41033,31769], + [41035,28035], + [41037,3275], + [41039,171498], + [41041,21339], + [41043,50937], + [41045,11800], + [41047,145070], + [41049,5100], + [41051,365522], + [41053,37465], + [41055,917], + [41057,11910], + [41059,35163], + [41061,11322], + [41063,3392], + [41065,12527], + [41067,274019], + [41069,580], + [41071,44786], + [42001,53970], + [42003,612419], + [42005,31430], + [42007,85593], + [42009,22801], + [42011,195467], + [42013,62177], + [42015,29509], + [42017,336821], + [42019,94635], + [42021,65313], + [42023,2308], + [42025,29475], + [42027,72293], + [42029,263491], + [42031,19537], + [42033,38038], + [42035,18258], + [42037,34273], + [42039,41116], + [42041,120498], + [42043,131631], + [42045,273179], + [42047,16531], + [42049,133934], + [42051,62362], + [42053,2209], + [42055,79218], + [42057,7559], + [42059,17546], + [42061,21148], + [42063,44497], + [42065,22009], + [42067,11788], + [42069,102231], + [42071,262878], + [42073,41240], + [42075,70324], + [42077,168895], + [42079,151642], + [42081,57136], + [42083,20594], + [42085,52070], + [42087,21297], + [42089,78991], + [42091,419127], + [42093,8988], + [42095,145401], + [42097,44896], + [42099,23700], + [42101,586024], + [42103,26736], + [42105,7228], + [42107,69866], + [42109,18615], + [42111,36942], + [42113,2835], + [42115,20783], + [42117,19374], + [42119,16733], + [42121,24947], + [42123,20690], + [42125,100875], + [42127,24400], + [42129,179023], + [42131,13671], + [42133,218459], + [44001,25585], + [44003,90157], + [44005,41018], + [44007,300024], + [44009,69157], + [45001,10419], + [45003,70514], + [45005,2784], + [45007,79547], + [45009,5614], + [45011,7854], + [45013,60361], + [45015,74956], + [45017,6246], + [45019,165025], + [45021,23231], + [45023,13505], + [45025,16926], + [45027,11290], + [45029,15278], + [45031,28493], + [45033,11634], + [45035,59928], + [45037,10199], + [45039,10004], + [45041,58463], + [45043,28113], + [45045,211534], + [45047,28281], + [45049,7028], + [45051,121473], + [45053,9447], + [45055,27802], + [45057,26181], + [45059,30464], + [45061,7368], + [45063,126144], + [45065,3073], + [45067,11015], + [45069,10200], + [45071,17289], + [45073,28369], + [45075,36936], + [45077,54637], + [45079,169429], + [45081,8395], + [45083,126430], + [45085,40137], + [45087,10432], + [45089,13835], + [45091,100129], + [46003,1434], + [46005,9462], + [46007,1312], + [46009,2968], + [46011,19118], + [46013,20706], + [46015,2727], + [46017,433], + [46019,5331], + [46021,814], + [46023,3911], + [46025,1745], + [46027,7488], + [46029,16122], + [46031,1294], + [46033,4764], + [46035,10998], + [46037,2787], + [46039,2668], + [46041,2281], + [46043,1660], + [46045,2015], + [46047,3630], + [46049,1111], + [46051,4105], + [46053,2287], + [46055,1130], + [46057,2904], + [46059,1841], + [46061,1919], + [46063,764], + [46065,10077], + [46067,3642], + [46069,717], + [46071,1155], + [46073,1401], + [46075,675], + [46077,2913], + [46079,6600], + [46081,13155], + [46083,21570], + [46085,1897], + [46087,2647], + [46089,1070], + [46091,2017], + [46093,11996], + [46095,842], + [46097,1210], + [46099,98082], + [46101,3889], + [46102,"NA"], + [46103,53608], + [46105,1570], + [46107,1267], + [46109,4658], + [46111,1384], + [46115,3242], + [46117,1857], + [46119,979], + [46121,3219], + [46123,2887], + [46125,4130], + [46127,8130], + [46129,2565], + [46135,11882], + [46137,796], + [47001,33699], + [47003,20953], + [47005,6439], + [47007,4507], + [47009,59507], + [47011,44501], + [47013,15663], + [47015,6106], + [47017,12516], + [47019,27750], + [47021,19276], + [47023,7394], + [47025,12331], + [47027,3112], + [47029,15052], + [47031,24102], + [47033,5887], + [47035,21369], + [47037,306349], + [47039,5194], + [47041,9491], + [47043,21947], + [47045,16275], + [47047,16823], + [47049,7293], + [47051,18567], + [47053,19190], + [47055,12381], + [47057,9428], + [47059,27444], + [47061,5450], + [47063,28141], + [47065,158356], + [47067,2349], + [47069,10585], + [47071,10985], + [47073,25172], + [47075,8493], + [47077,10856], + [47079,12710], + [47081,9289], + [47083,3551], + [47085,8260], + [47087,4551], + [47089,22869], + [47091,6648], + [47093,218720], + [47095,2469], + [47097,9069], + [47099,14997], + [47101,4914], + [47103,16366], + [47105,22230], + [47107,21934], + [47109,10477], + [47111,9752], + [47113,45396], + [47115,12040], + [47117,11428], + [47119,34526], + [47121,4527], + [47123,17079], + [47125,63737], + [47127,2989], + [47129,7914], + [47131,14507], + [47133,9206], + [47135,2503], + [47137,1690], + [47139,6472], + [47141,33738], + [47143,12373], + [47145,25636], + [47147,31424], + [47149,125803], + [47151,7551], + [47153,5793], + [47155,45049], + [47157,409635], + [47159,8505], + [47161,5422], + [47163,70674], + [47165,75213], + [47167,26473], + [47169,3410], + [47171,7808], + [47173,8250], + [47175,2298], + [47177,16023], + [47179,58702], + [47181,5973], + [47183,14375], + [47185,9734], + [47187,84967], + [47189,55177], + [48001,19087], + [48003,6642], + [48005,37234], + [48007,10890], + [48009,4943], + [48011,1054], + [48013,18021], + [48015,12468], + [48017,3203], + [48019,9240], + [48021,32029], + [48023,1956], + [48025,10544], + [48027,116433], + [48029,713891], + [48031,4696], + [48033,384], + [48035,7892], + [48037,41323], + [48039,135102], + [48041,88162], + [48043,4914], + [48045,673], + [48047,3096], + [48049,17625], + [48051,7539], + [48053,21306], + [48055,14570], + [48057,8934], + [48059,6847], + [48061,136275], + [48063,5290], + [48065,3177], + [48067,12106], + [48069,3472], + [48071,13463], + [48073,19140], + [48075,2900], + [48077,5804], + [48079,1430], + [48081,1183], + [48083,4184], + [48085,387584], + [48087,1418], + [48089,10504], + [48091,52475], + [48093,6283], + [48095,1259], + [48097,21680], + [48099,22001], + [48101,796], + [48103,1634], + [48105,2141], + [48107,2473], + [48109,1703], + [48111,3452], + [48113,1080079], + [48115,4853], + [48117,8597], + [48119,2174], + [48121,329325], + [48123,8673], + [48125,944], + [48127,3706], + [48129,1799], + [48131,4895], + [48133,8069], + [48135,68219], + [48137,1004], + [48139,66716], + [48141,279528], + [48143,17930], + [48145,6177], + [48147,12661], + [48149,11901], + [48151,1906], + [48153,3061], + [48155,683], + [48157,253772], + [48159,5080], + [48161,9788], + [48163,6495], + [48165,6535], + [48167,133876], + [48169,2311], + [48171,12785], + [48173,606], + [48175,3337], + [48177,9363], + [48179,10976], + [48181,52693], + [48183,61447], + [48185,10277], + [48187,55278], + [48189,16009], + [48191,1357], + [48193,4107], + [48195,2562], + [48197,2247], + [48199,24757], + [48201,1842516], + [48203,30819], + [48205,2368], + [48207,3150], + [48209,73340], + [48211,3083], + [48213,32747], + [48215,262201], + [48217,15158], + [48219,11497], + [48221,24195], + [48223,16823], + [48225,7459], + [48227,13342], + [48229,1530], + [48231,34973], + [48233,10762], + [48235,856], + [48237,5274], + [48239,6532], + [48241,14494], + [48243,1148], + [48245,106314], + [48247,2664], + [48249,20570], + [48251,69800], + [48253,7385], + [48255,4975], + [48257,43891], + [48259,15526], + [48261,230], + [48263,423], + [48265,22169], + [48267,2114], + [48269,170], + [48271,1301], + [48273,15821], + [48275,1738], + [48277,22236], + [48279,6780], + [48281,9871], + [48283,2752], + [48285,9566], + [48287,8642], + [48289,7463], + [48291,29027], + [48293,10263], + [48295,1755], + [48297,4892], + [48299,8072], + [48301,40], + [48303,133296], + [48305,2640], + [48307,3824], + [48309,105956], + [48311,315], + [48313,4720], + [48315,4750], + [48317,2155], + [48319,2276], + [48321,15899], + [48323,18619], + [48325,18727], + [48327,1042], + [48329,73067], + [48331,11329], + [48333,2247], + [48335,3119], + [48337,10272], + [48339,203395], + [48341,10892], + [48343,5703], + [48345,661], + [48347,29484], + [48349,19756], + [48351,5304], + [48353,7412], + [48355,155143], + [48357,5458], + [48359,862], + [48361,38584], + [48363,13435], + [48365,12499], + [48367,50895], + [48369,4322], + [48371,6742], + [48373,15735], + [48375,54363], + [48377,2997], + [48379,4801], + [48381,65608], + [48383,2490], + [48385,1404], + [48387,5543], + [48389,3938], + [48391,3881], + [48393,554], + [48395,6596], + [48397,36433], + [48399,4245], + [48401,23046], + [48403,3090], + [48405,3285], + [48407,9495], + [48409,28293], + [48411,2280], + [48413,1420], + [48415,7241], + [48417,2088], + [48419,11834], + [48421,1401], + [48423,93896], + [48425,3924], + [48427,19728], + [48429,4510], + [48431,825], + [48433,832], + [48435,3446], + [48437,3399], + [48439,838778], + [48441,64668], + [48443,308], + [48445,5617], + [48447,910], + [48449,13504], + [48451,49548], + [48453,514368], + [48455,5479], + [48457,7749], + [48459,18953], + [48461,1720], + [48463,10520], + [48465,19243], + [48467,24430], + [48469,43500], + [48471,24943], + [48473,15356], + [48475,4874], + [48477,15725], + [48479,87472], + [48481,19969], + [48483,3310], + [48485,58148], + [48487,7320], + [48489,7027], + [48491,193231], + [48493,17866], + [48495,3325], + [48497,26332], + [48499,17148], + [48501,3961], + [48503,9476], + [48505,4879], + [48507,3257], + [49001,3010], + [49003,22746], + [49005,59844], + [49007,9683], + [49009,433], + [49011,140609], + [49013,10020], + [49015,4862], + [49017,2645], + [49019,4951], + [49021,19930], + [49023,3732], + [49025,3337], + [49027,5849], + [49029,3925], + [49031,876], + [49033,1386], + [49035,538772], + [49037,4689], + [49039,10643], + [49041,9243], + [49043,21372], + [49045,26862], + [49047,18158], + [49049,215381], + [49051,9922], + [49053,58841], + [49055,1316], + [49057,109052], + [50001,20706], + [50003,19549], + [50005,15943], + [50007,85422], + [50009,3059], + [50011,24715], + [50013,4012], + [50015,14315], + [50017,15591], + [50019,13256], + [50021,33764], + [50023,32724], + [50025,23689], + [50027,31539], + [51001,18044], + [51003,51083], + [51005,6510], + [51007,6459], + [51009,15364], + [51011,6972], + [51013,133349], + [51015,36518], + [51017,2684], + [51019,37194], + [51021,3330], + [51023,17180], + [51025,6578], + [51027,8502], + [51029,6911], + [51031,26807], + [51033,13588], + [51035,13124], + [51036,3692], + [51037,5114], + [51041,163728], + [51043,7915], + [51045,2450], + [51047,19956], + [51049,4475], + [51051,5727], + [51053,12593], + [51057,5357], + [51059,576057], + [51061,36566], + [51063,6846], + [51065,13695], + [51067,25803], + [51069,39721], + [51071,7923], + [51073,20335], + [51075,11074], + [51077,6707], + [51079,10336], + [51081,4147], + [51083,14667], + [51085,53918], + [51087,159993], + [51089,23358], + [51091,1085], + [51093,18397], + [51095,31386], + [51097,3196], + [51099,9160], + [51101,8434], + [51103,5226], + [51105,9268], + [51107,168299], + [51109,16088], + [51111,5175], + [51113,7127], + [51115,4340], + [51117,12585], + [51119,4936], + [51121,44009], + [51125,7788], + [51127,9572], + [51131,5780], + [51133,5574], + [51135,6228], + [51137,14960], + [51139,10969], + [51141,8549], + [51143,29605], + [51145,14084], + [51147,9115], + [51149,14346], + [51153,199300], + [51155,16987], + [51157,4132], + [51159,3686], + [51161,48208], + [51163,11030], + [51165,40857], + [51167,11194], + [51169,9555], + [51171,19346], + [51173,14207], + [51175,7722], + [51177,63968], + [51179,63852], + [51181,3645], + [51183,4241], + [51185,19839], + [51187,19187], + [51191,26160], + [51193,8428], + [51195,17273], + [51197,15312], + [51199,30292], + [51510,90650], + [51520,7625], + [51530,3274], + [51540,20884], + [51550,112090], + [51570,8911], + [51580,2492], + [51590,18301], + [51595,2333], + [51600,13951], + [51610,6639], + [51620,3704], + [51630,12183], + [51640,2939], + [51650,65979], + [51660,22023], + [51670,10022], + [51678,2267], + [51680,33451], + [51683,19231], + [51685,6383], + [51690,5222], + [51700,85187], + [51710,95534], + [51720,1536], + [51730,13246], + [51735,6207], + [51740,44108], + [51750,7570], + [51760,95650], + [51770,44936], + [51775,13151], + [51790,11364], + [51800,39201], + [51810,217654], + [51820,9916], + [51830,4874], + [51840,13701], + [53001,7583], + [53003,9709], + [53005,83988], + [53007,38445], + [53009,27811], + [53011,198972], + [53013,1447], + [53015,40522], + [53017,19988], + [53019,2716], + [53021,31888], + [53023,971], + [53025,38144], + [53027,29267], + [53029,31144], + [53031,12906], + [53033,1048196], + [53035,118172], + [53037,19635], + [53039,9356], + [53041,28767], + [53043,4548], + [53045,23609], + [53047,19915], + [53049,8469], + [53051,5022], + [53053,370735], + [53055,8423], + [53057,55231], + [53059,4690], + [53061,355995], + [53063,225045], + [53065,17290], + [53067,124618], + [53069,1637], + [53071,28862], + [53073,102979], + [53075,20331], + [53077,114285], + [54001,6394], + [54003,44256], + [54005,9054], + [54007,5613], + [54009,10506], + [54011,43680], + [54013,2599], + [54015,3286], + [54017,2677], + [54019,17284], + [54021,3016], + [54023,4975], + [54025,14254], + [54027,9050], + [54029,13863], + [54031,6559], + [54033,29847], + [54035,11373], + [54037,23971], + [54039,89483], + [54041,7141], + [54043,7713], + [54045,12638], + [54047,6768], + [54049,25534], + [54051,14061], + [54053,9425], + [54055,24113], + [54057,12948], + [54059,8667], + [54061,47266], + [54063,5607], + [54065,6610], + [54067,10176], + [54069,20272], + [54071,3555], + [54073,2961], + [54075,3350], + [54077,14527], + [54079,27059], + [54081,31500], + [54083,12112], + [54085,4294], + [54087,5183], + [54089,4420], + [54091,6661], + [54093,2734], + [54095,3393], + [54097,10275], + [54099,16780], + [54101,3112], + [54103,5819], + [54105,2314], + [54107,39179], + [54109,7653], + [55001,9349], + [55003,8443], + [55005,23646], + [55007,7508], + [55009,132919], + [55011,7790], + [55013,7337], + [55015,24551], + [55017,31586], + [55019,16573], + [55021,29483], + [55023,9016], + [55025,285626], + [55027,44818], + [55029,16232], + [55031,22148], + [55033,24415], + [55035,54637], + [55037,2312], + [55039,54198], + [55041,4542], + [55043,26756], + [55045,19400], + [55047,9819], + [55049,13410], + [55051,2784], + [55053,9233], + [55055,40339], + [55057,12564], + [55059,80752], + [55061,11034], + [55063,62779], + [55065,8714], + [55067,10024], + [55069,14654], + [55071,42948], + [55073,71953], + [55075,20720], + [55077,7325], + [55078,1468], + [55079,442645], + [55081,23321], + [55083,19005], + [55085,18022], + [55087,93307], + [55089,46077], + [55091,3902], + [55093,22981], + [55095,22636], + [55097,40302], + [55099,7931], + [55101,94079], + [55103,9750], + [55105,78299], + [55107,6739], + [55109,45411], + [55111,33557], + [55113,8497], + [55115,21010], + [55117,62733], + [55119,9762], + [55121,15441], + [55123,13943], + [55125,10526], + [55127,53842], + [55129,7319], + [55131,71229], + [55133,205879], + [55135,26539], + [55137,11961], + [55139,90227], + [55141,39765], + [56001,18435], + [56003,4732], + [56005,26822], + [56007,7998], + [56009,7142], + [56011,3379], + [56013,17642], + [56015,5869], + [56017,2334], + [56019,3919], + [56021,40864], + [56023,8081], + [56025,39546], + [56027,1193], + [56029,13927], + [56031,3785], + [56033,15566], + [56035,6901], + [56037,23697], + [56039,14036], + [56041,11179], + [56043,4139], + [56045,3122] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2009.json b/data/regional/united-states/economics/employment/us-employment-total-2009.json new file mode 100644 index 0000000..c319a80 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2009", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2009"], + [1001,22301], + [1003,74403], + [1005,8572], + [1007,7581], + [1009,23832], + [1011,3156], + [1013,7615], + [1015,47929], + [1017,11777], + [1019,10384], + [1021,17375], + [1023,4442], + [1025,8664], + [1027,4703], + [1029,5851], + [1031,19612], + [1033,22461], + [1035,3930], + [1037,3856], + [1039,14912], + [1041,5768], + [1043,34585], + [1045,18100], + [1047,12516], + [1049,25647], + [1051,32944], + [1053,12770], + [1055,39838], + [1057,5993], + [1059,11463], + [1061,9970], + [1063,2653], + [1065,5890], + [1067,6334], + [1069,41638], + [1071,23005], + [1073,274011], + [1075,4658], + [1077,38804], + [1079,13635], + [1081,58787], + [1083,34543], + [1085,3970], + [1087,8203], + [1089,155310], + [1091,6950], + [1093,10311], + [1095,36604], + [1097,165725], + [1099,6978], + [1101,94078], + [1103,50294], + [1105,3021], + [1107,6942], + [1109,14300], + [1111,8014], + [1113,18903], + [1115,32765], + [1117,92015], + [1119,4051], + [1121,32348], + [1123,15687], + [1125,80043], + [1127,24910], + [1129,5889], + [1131,2698], + [1133,7832], + [2013,1021], + [2016,2794], + [2020,143806], + [2050,6039], + [2060,995], + [2068,1295], + [2070,1933], + [2090,42756], + [2100,1288], + [2105,"NA"], + [2110,17309], + [2122,24267], + [2130,7738], + [2150,6131], + [2158,"NA"], + [2164,1000], + [2170,38714], + [2180,3505], + [2185,5053], + [2188,2632], + [2195,"NA"], + [2198,"NA"], + [2220,4357], + [2230,"NA"], + [2240,3264], + [2261,4887], + [2275,"NA"], + [2282,278], + [2290,2471], + [4001,19319], + [4003,58022], + [4005,68429], + [4007,20629], + [4009,12952], + [4011,3564], + [4012,6941], + [4013,1787374], + [4015,81120], + [4017,34893], + [4019,441837], + [4021,111192], + [4023,15655], + [4025,88034], + [4027,67617], + [5001,10377], + [5003,8359], + [5005,15715], + [5007,100774], + [5009,15712], + [5011,4951], + [5013,2365], + [5015,13160], + [5017,4331], + [5019,9910], + [5021,5914], + [5023,10911], + [5025,3715], + [5027,9584], + [5029,9491], + [5031,43482], + [5033,25758], + [5035,19652], + [5037,7824], + [5039,3539], + [5041,4960], + [5043,7318], + [5045,52485], + [5047,7589], + [5049,4861], + [5051,39321], + [5053,7913], + [5055,16880], + [5057,9819], + [5059,14017], + [5061,5727], + [5063,15394], + [5065,4859], + [5067,6807], + [5069,32128], + [5071,10731], + [5073,2706], + [5075,6648], + [5077,3209], + [5079,4495], + [5081,6366], + [5083,9186], + [5085,30321], + [5087,6896], + [5089,5917], + [5091,18825], + [5093,18532], + [5095,3415], + [5097,3874], + [5099,3855], + [5101,3184], + [5103,11162], + [5105,4353], + [5107,8001], + [5109,4664], + [5111,9607], + [5113,8125], + [5115,27343], + [5117,3956], + [5119,177280], + [5121,6956], + [5123,9308], + [5125,46320], + [5127,4577], + [5129,3294], + [5131,55949], + [5133,7126], + [5135,5673], + [5137,4191], + [5139,17192], + [5141,6294], + [5143,93231], + [5145,31269], + [5147,2997], + [5149,9769], + [6001,682852], + [6003,383], + [6005,15781], + [6007,91000], + [6009,17563], + [6011,9490], + [6013,472577], + [6015,10303], + [6017,81716], + [6019,370321], + [6021,10800], + [6023,54333], + [6025,54889], + [6027,8547], + [6029,311707], + [6031,51876], + [6033,21565], + [6035,11893], + [6037,4345182], + [6039,57597], + [6041,122061], + [6043,8431], + [6045,38955], + [6047,87863], + [6049,3555], + [6051,7969], + [6053,190585], + [6055,69240], + [6057,45205], + [6059,1451687], + [6061,161416], + [6063,8475], + [6065,795813], + [6067,606070], + [6069,21392], + [6071,749142], + [6073,1408347], + [6075,419546], + [6077,253310], + [6079,124372], + [6081,343493], + [6083,201872], + [6085,782384], + [6087,131302], + [6089,71919], + [6091,1357], + [6093,16835], + [6095,192225], + [6097,232398], + [6099,198102], + [6101,34991], + [6103,21887], + [6105,4148], + [6107,172996], + [6109,22594], + [6111,388824], + [6113,87862], + [6115,23574], + [8001,209001], + [8003,8373], + [8005,289832], + [8007,5862], + [8009,2498], + [8011,2506], + [8013,164765], + [8014,28722], + [8015,8038], + [8017,1337], + [8019,5036], + [8021,3461], + [8023,1254], + [8025,1816], + [8027,1912], + [8029,15760], + [8031,298039], + [8033,907], + [8035,151397], + [8037,28382], + [8039,12029], + [8041,276585], + [8043,18279], + [8045,32275], + [8047,3453], + [8049,8448], + [8051,8915], + [8053,644], + [8055,3185], + [8057,1240], + [8059,282267], + [8061,959], + [8063,4670], + [8065,3570], + [8067,29632], + [8069,165822], + [8071,7917], + [8073,2980], + [8075,11434], + [8077,75199], + [8079,447], + [8081,8513], + [8083,12297], + [8085,19391], + [8087,14272], + [8089,8670], + [8091,2739], + [8093,8687], + [8095,2514], + [8097,10471], + [8099,6601], + [8101,68533], + [8103,4432], + [8105,6375], + [8107,14246], + [8109,3147], + [8111,515], + [8113,4911], + [8115,1655], + [8117,15631], + [8119,11186], + [8121,2865], + [8123,111070], + [8125,6877], + [9001,436665], + [9003,425976], + [9005,97384], + [9007,88811], + [9009,412211], + [9011,139704], + [9013,80813], + [9015,59411], + [10001,67788], + [10003,248704], + [10005,84819], + [11001,304500], + [12001,120579], + [12003,10887], + [12005,80695], + [12007,11467], + [12009,238983], + [12011,891041], + [12013,5413], + [12015,60681], + [12017,49892], + [12019,85993], + [12021,127434], + [12023,28674], + [12027,13458], + [12029,4944], + [12031,395185], + [12033,123507], + [12035,27910], + [12037,4555], + [12039,19147], + [12041,6993], + [12043,4394], + [12045,5753], + [12047,4306], + [12049,10701], + [12051,14744], + [12053,54056], + [12055,36113], + [12057,533687], + [12059,8173], + [12061,54261], + [12063,20328], + [12065,6042], + [12067,2844], + [12069,120749], + [12071,244526], + [12073,136962], + [12075,14824], + [12077,3644], + [12079,6378], + [12081,125901], + [12083,118007], + [12085,56024], + [12086,1083804], + [12087,42279], + [12089,32469], + [12091,89500], + [12093,16040], + [12095,533867], + [12097,123212], + [12099,549671], + [12101,172016], + [12103,393139], + [12105,242326], + [12107,28514], + [12109,88459], + [12111,107098], + [12113,63859], + [12115,143465], + [12117,212497], + [12119,28967], + [12121,15765], + [12123,8181], + [12125,4982], + [12127,225174], + [12129,15569], + [12131,28499], + [12133,8922], + [13001,8500], + [13003,2797], + [13005,4207], + [13007,1439], + [13009,17868], + [13011,9747], + [13013,31479], + [13015,40810], + [13017,6148], + [13019,7140], + [13021,67382], + [13023,4908], + [13025,6723], + [13027,7334], + [13029,15653], + [13031,29867], + [13033,8759], + [13035,8923], + [13037,2080], + [13039,18902], + [13043,3938], + [13045,46910], + [13047,31689], + [13049,3983], + [13051,119831], + [13053,2232], + [13055,9339], + [13057,100467], + [13059,59216], + [13061,1293], + [13063,117459], + [13065,2482], + [13067,340632], + [13069,13854], + [13071,18610], + [13073,56676], + [13075,6077], + [13077,55295], + [13079,5465], + [13081,8574], + [13083,7294], + [13085,10134], + [13087,10404], + [13089,343126], + [13091,8104], + [13093,4356], + [13095,37762], + [13097,58135], + [13099,4937], + [13101,2045], + [13103,26247], + [13105,8816], + [13107,9438], + [13109,4524], + [13111,9676], + [13113,46776], + [13115,44302], + [13117,80815], + [13119,9042], + [13121,437746], + [13123,12206], + [13125,1004], + [13127,37002], + [13129,22190], + [13131,10622], + [13133,6727], + [13135,380094], + [13137,18218], + [13139,81284], + [13141,2645], + [13143,11142], + [13145,15215], + [13147,9051], + [13149,4255], + [13151,87884], + [13153,65701], + [13155,3456], + [13157,24053], + [13159,5651], + [13161,4619], + [13163,6078], + [13165,2192], + [13167,3099], + [13169,13095], + [13171,7031], + [13173,3764], + [13175,19591], + [13177,16865], + [13179,23796], + [13181,3477], + [13183,6220], + [13185,49335], + [13187,11743], + [13189,9561], + [13191,4741], + [13193,4551], + [13195,14410], + [13197,2987], + [13199,8148], + [13201,3301], + [13205,9354], + [13207,12547], + [13209,4082], + [13211,8415], + [13213,17163], + [13215,78276], + [13217,41333], + [13219,17429], + [13221,7153], + [13223,61065], + [13225,11063], + [13227,13498], + [13229,7864], + [13231,7192], + [13233,18905], + [13235,4017], + [13237,9234], + [13239,853], + [13241,6244], + [13243,2417], + [13245,82033], + [13247,35680], + [13249,1661], + [13251,6268], + [13253,3649], + [13255,24798], + [13257,12420], + [13259,2071], + [13261,12520], + [13263,2830], + [13265,712], + [13267,8513], + [13269,3128], + [13271,3973], + [13273,3982], + [13275,19442], + [13277,16808], + [13279,12535], + [13281,5241], + [13283,2592], + [13285,26923], + [13287,3975], + [13289,4139], + [13291,9944], + [13293,10371], + [13295,28683], + [13297,37166], + [13299,13276], + [13301,2149], + [13303,6831], + [13305,10633], + [13307,1074], + [13309,2648], + [13311,11177], + [13313,38481], + [13315,2862], + [13317,3959], + [13319,4113], + [13321,9132], + [15001,75348], + [15003,413213], + [15005,"NA"], + [15007,28865], + [15009,69097], + [16001,178892], + [16003,1776], + [16005,36263], + [16007,3165], + [16009,3549], + [16011,20393], + [16013,12232], + [16015,3080], + [16017,18630], + [16019,46872], + [16021,3812], + [16023,1387], + [16025,535], + [16027,75643], + [16029,3233], + [16031,9581], + [16033,516], + [16035,3001], + [16037,2514], + [16039,10435], + [16041,5473], + [16043,5059], + [16045,6168], + [16047,7857], + [16049,6541], + [16051,10694], + [16053,9705], + [16055,63805], + [16057,16583], + [16059,3617], + [16061,1671], + [16063,2275], + [16065,15071], + [16067,8857], + [16069,17435], + [16071,2082], + [16073,4135], + [16075,9915], + [16077,3177], + [16079,5414], + [16081,4920], + [16083,36292], + [16085,4031], + [16087,4433], + [17001,35468], + [17003,2632], + [17005,7717], + [17007,22086], + [17009,3309], + [17011,17230], + [17013,2236], + [17015,7388], + [17017,7150], + [17019,96480], + [17021,15949], + [17023,7053], + [17025,5654], + [17027,17070], + [17029,25159], + [17031,2330033], + [17033,8755], + [17035,5021], + [17037,54136], + [17039,8066], + [17041,9326], + [17043,480627], + [17045,9128], + [17047,2824], + [17049,16685], + [17051,9005], + [17053,6389], + [17055,15376], + [17057,16395], + [17059,2365], + [17061,6208], + [17063,23440], + [17065,3687], + [17067,8389], + [17069,1567], + [17071,3437], + [17073,24315], + [17075,15144], + [17077,29774], + [17079,4488], + [17081,18627], + [17083,10460], + [17085,11908], + [17087,4559], + [17089,242898], + [17091,49319], + [17093,54244], + [17095,23477], + [17097,327443], + [17099,52189], + [17101,7362], + [17103,16391], + [17105,17310], + [17107,12116], + [17109,15496], + [17111,163369], + [17113,84871], + [17115,48534], + [17117,21463], + [17119,124337], + [17121,16151], + [17123,6370], + [17125,6642], + [17127,6518], + [17129,6394], + [17131,7756], + [17133,16979], + [17135,11749], + [17137,16153], + [17139,7173], + [17141,24082], + [17143,86910], + [17145,8283], + [17147,8170], + [17149,7787], + [17151,1704], + [17153,2529], + [17155,2857], + [17157,13798], + [17159,6543], + [17161,70668], + [17163,110497], + [17165,11404], + [17167,99740], + [17169,3945], + [17171,2499], + [17173,10042], + [17175,2543], + [17177,22221], + [17179,65372], + [17181,7204], + [17183,32854], + [17185,5419], + [17187,8543], + [17189,7417], + [17191,7324], + [17193,7035], + [17195,27271], + [17197,329028], + [17199,31447], + [17201,123174], + [17203,19494], + [18001,12911], + [18003,159522], + [18005,34763], + [18007,3857], + [18009,5512], + [18011,26091], + [18013,6711], + [18015,8953], + [18017,16477], + [18019,51137], + [18021,11542], + [18023,15123], + [18025,4575], + [18027,14056], + [18029,23533], + [18031,11061], + [18033,17572], + [18035,49432], + [18037,20410], + [18039,74478], + [18041,8359], + [18043,34731], + [18045,7341], + [18047,10381], + [18049,8726], + [18051,15275], + [18053,29181], + [18055,14627], + [18057,135556], + [18059,33024], + [18061,17731], + [18063,68044], + [18065,19898], + [18067,30352], + [18069,17203], + [18071,18886], + [18073,14090], + [18075,10084], + [18077,14772], + [18079,11773], + [18081,68356], + [18083,18345], + [18085,36272], + [18087,12838], + [18089,201966], + [18091,46350], + [18093,18901], + [18095,55572], + [18097,414853], + [18099,19497], + [18101,4841], + [18103,13838], + [18105,65986], + [18107,16882], + [18109,33260], + [18111,6070], + [18113,18358], + [18115,2755], + [18117,9333], + [18119,10449], + [18121,7229], + [18123,8635], + [18125,5291], + [18127,76343], + [18129,12102], + [18131,6046], + [18133,15341], + [18135,11311], + [18137,12275], + [18139,8132], + [18141,114259], + [18143,9534], + [18145,21179], + [18147,9431], + [18149,9207], + [18151,13930], + [18153,7971], + [18155,5224], + [18157,76584], + [18159,6277], + [18161,3166], + [18163,83152], + [18165,7010], + [18167,45807], + [18169,14199], + [18171,4159], + [18173,28692], + [18175,12360], + [18177,28309], + [18179,12705], + [18181,11052], + [18183,15608], + [19001,3994], + [19003,2023], + [19005,6786], + [19007,5703], + [19009,3099], + [19011,13815], + [19013,70415], + [19015,14882], + [19017,13140], + [19019,10490], + [19021,10212], + [19023,7944], + [19025,5000], + [19027,11864], + [19029,7153], + [19031,10817], + [19033,23792], + [19035,6312], + [19037,6344], + [19039,4561], + [19041,8931], + [19043,9139], + [19045,26181], + [19047,9116], + [19049,33263], + [19051,3684], + [19053,3922], + [19055,10152], + [19057,19486], + [19059,8719], + [19061,49417], + [19063,5387], + [19065,10031], + [19067,7819], + [19069,5446], + [19071,3535], + [19073,4821], + [19075,6552], + [19077,5372], + [19079,7633], + [19081,5087], + [19083,8757], + [19085,7321], + [19087,8944], + [19089,4649], + [19091,4848], + [19093,3769], + [19095,7984], + [19097,10300], + [19099,16304], + [19101,7559], + [19103,77133], + [19105,10005], + [19107,5255], + [19109,8453], + [19111,15650], + [19113,115728], + [19115,5488], + [19117,4390], + [19119,6626], + [19121,7718], + [19123,10870], + [19125,16320], + [19127,19113], + [19129,7598], + [19131,5493], + [19133,4226], + [19135,4008], + [19137,4800], + [19139,21801], + [19141,7471], + [19143,3119], + [19145,7189], + [19147,4943], + [19149,13824], + [19151,3895], + [19153,229011], + [19155,45904], + [19157,9598], + [19159,2317], + [19161,5505], + [19163,84168], + [19165,7296], + [19167,18862], + [19169,47021], + [19171,8326], + [19173,3145], + [19175,6475], + [19177,3511], + [19179,17254], + [19181,24391], + [19183,11262], + [19185,3031], + [19187,18350], + [19189,5227], + [19191,11501], + [19193,52811], + [19195,4165], + [19197,6528], + [20001,6947], + [20003,4140], + [20005,8046], + [20007,2791], + [20009,15143], + [20011,8181], + [20013,5581], + [20015,30311], + [20017,1464], + [20019,1704], + [20021,10630], + [20023,1476], + [20025,1232], + [20027,5054], + [20029,5559], + [20031,5253], + [20033,1066], + [20035,17295], + [20037,18497], + [20039,1748], + [20041,10350], + [20043,4152], + [20045,59579], + [20047,1728], + [20049,1402], + [20051,17388], + [20053,3712], + [20055,18875], + [20057,18263], + [20059,12407], + [20061,13077], + [20063,1575], + [20065,1419], + [20067,3994], + [20069,3371], + [20071,705], + [20073,3341], + [20075,1291], + [20077,3293], + [20079,16976], + [20081,2222], + [20083,915], + [20085,6548], + [20087,8986], + [20089,1911], + [20091,280131], + [20093,2078], + [20095,4373], + [20097,1525], + [20099,10659], + [20101,1104], + [20103,30100], + [20105,1910], + [20107,4026], + [20109,1673], + [20111,17502], + [20113,16100], + [20115,6635], + [20117,5816], + [20119,2461], + [20121,14820], + [20123,3637], + [20125,16890], + [20127,2870], + [20129,1709], + [20131,5679], + [20133,7997], + [20135,1790], + [20137,2771], + [20139,7875], + [20141,2196], + [20143,3228], + [20145,3807], + [20147,3000], + [20149,10471], + [20151,5688], + [20153,1267], + [20155,33064], + [20157,2779], + [20159,5746], + [20161,35888], + [20163,2617], + [20165,1608], + [20167,3428], + [20169,30113], + [20171,2801], + [20173,237590], + [20175,10613], + [20177,88421], + [20179,1558], + [20181,3647], + [20183,2146], + [20185,2157], + [20187,1146], + [20189,2265], + [20191,10657], + [20193,4150], + [20195,1824], + [20197,3495], + [20199,865], + [20201,3306], + [20203,1238], + [20205,4733], + [20207,1639], + [20209,62998], + [21001,8227], + [21003,7482], + [21005,9939], + [21007,3690], + [21009,16957], + [21011,4327], + [21013,8605], + [21015,58589], + [21017,8370], + [21019,20838], + [21021,11481], + [21023,3807], + [21025,5097], + [21027,8274], + [21029,35479], + [21031,4713], + [21033,6220], + [21035,16448], + [21037,40571], + [21039,2133], + [21041,4736], + [21043,11833], + [21045,6388], + [21047,25772], + [21049,15167], + [21051,6012], + [21053,4395], + [21055,3676], + [21057,2670], + [21059,43819], + [21061,4555], + [21063,2835], + [21065,5613], + [21067,140328], + [21069,5737], + [21071,13910], + [21073,22383], + [21075,2343], + [21077,3542], + [21079,6827], + [21081,11375], + [21083,14723], + [21085,9795], + [21087,5011], + [21089,16214], + [21091,3825], + [21093,42943], + [21095,9441], + [21097,8323], + [21099,7472], + [21101,20819], + [21103,7144], + [21105,1938], + [21107,20898], + [21109,3592], + [21111,323842], + [21113,20723], + [21115,8901], + [21117,75890], + [21119,5870], + [21121,11373], + [21123,6169], + [21125,23826], + [21127,5473], + [21129,2459], + [21131,3172], + [21133,7851], + [21135,4749], + [21137,9319], + [21139,4303], + [21141,11075], + [21143,2949], + [21145,28746], + [21147,5040], + [21149,4084], + [21151,39256], + [21153,3649], + [21155,8823], + [21157,13119], + [21159,3386], + [21161,7869], + [21163,10014], + [21165,2174], + [21167,9266], + [21169,3704], + [21171,4092], + [21173,10918], + [21175,4405], + [21177,12350], + [21179,19398], + [21181,2773], + [21183,11442], + [21185,25726], + [21187,4996], + [21189,1411], + [21191,6407], + [21193,10396], + [21195,23811], + [21197,4856], + [21199,24931], + [21201,962], + [21203,6296], + [21205,11344], + [21207,7404], + [21209,20731], + [21211,19886], + [21213,8043], + [21215,8339], + [21217,12325], + [21219,4694], + [21221,5460], + [21223,3845], + [21225,6967], + [21227,52766], + [21229,4709], + [21231,7364], + [21233,5835], + [21235,13894], + [21237,2067], + [21239,11916], + [22001,24485], + [22003,8240], + [22005,48463], + [22007,9598], + [22009,15188], + [22011,13239], + [22013,5663], + [22015,50699], + [22017,109753], + [22019,86222], + [22021,4162], + [22023,2930], + [22025,3829], + [22027,6020], + [22029,6654], + [22031,10482], + [22033,204476], + [22035,2588], + [22037,7521], + [22039,11711], + [22041,6953], + [22043,8135], + [22045,31889], + [22047,11251], + [22049,6015], + [22051,197827], + [22053,13832], + [22055,106294], + [22057,46247], + [22059,5979], + [22061,17863], + [22063,55356], + [22065,4237], + [22067,9886], + [22069,15944], + [22071,134275], + [22073,66155], + [22075,7456], + [22077,8856], + [22079,56864], + [22081,3182], + [22083,8038], + [22085,8683], + [22087,16950], + [22089,22192], + [22091,3773], + [22093,8470], + [22095,18691], + [22097,35268], + [22099,22252], + [22101,21326], + [22103,101926], + [22105,48680], + [22107,1804], + [22109,51695], + [22111,9205], + [22113,23018], + [22115,19195], + [22117,14334], + [22119,17928], + [22121,9937], + [22123,3760], + [22125,4387], + [22127,5959], + [23001,52990], + [23003,31175], + [23005,146081], + [23007,12877], + [23009,26796], + [23011,58337], + [23013,18936], + [23015,16561], + [23017,25049], + [23019,72099], + [23021,6474], + [23023,17355], + [23025,21952], + [23027,17338], + [23029,12808], + [23031,103107], + [24001,33120], + [24003,268409], + [24005,400615], + [24009,46072], + [24011,14959], + [24013,89095], + [24015,46415], + [24017,73500], + [24019,15073], + [24021,116345], + [24023,15510], + [24025,124971], + [24027,155290], + [24029,10061], + [24031,494565], + [24033,425799], + [24035,25239], + [24037,50736], + [24039,10053], + [24041,17352], + [24043,61672], + [24045,48067], + [24047,24785], + [24510,252544], + [25001,111852], + [25003,67457], + [25005,261465], + [25007,10611], + [25009,348072], + [25011,35959], + [25013,205771], + [25015,81795], + [25017,769841], + [25019,7283], + [25021,331869], + [25023,241447], + [25025,345580], + [25027,370006], + [26001,3351], + [26003,3682], + [26005,47374], + [26007,12866], + [26009,9763], + [26011,6598], + [26013,3407], + [26015,25916], + [26017,48322], + [26019,7523], + [26021,67909], + [26023,18550], + [26025,60507], + [26027,22438], + [26029,11734], + [26031,10260], + [26033,15010], + [26035,10827], + [26037,33718], + [26039,5527], + [26041,17108], + [26043,12630], + [26045,51898], + [26047,16791], + [26049,169747], + [26051,8699], + [26053,6525], + [26055,42776], + [26057,16866], + [26059,17345], + [26061,15776], + [26063,13821], + [26065,134570], + [26067,25163], + [26069,8712], + [26071,5081], + [26073,34911], + [26075,66125], + [26077,119922], + [26079,7272], + [26081,279938], + [26083,970], + [26085,3400], + [26087,35718], + [26089,9928], + [26091,40951], + [26093,80499], + [26095,2362], + [26097,5319], + [26099,350776], + [26101,10102], + [26103,32554], + [26105,12843], + [26107,17706], + [26109,11594], + [26111,38692], + [26113,5338], + [26115,63861], + [26117,22280], + [26119,3178], + [26121,75137], + [26123,19120], + [26125,527731], + [26127,11923], + [26129,8325], + [26131,2705], + [26133,8090], + [26135,2958], + [26137,10235], + [26139,114716], + [26141,4911], + [26143,8536], + [26145,82693], + [26147,67684], + [26149,24635], + [26151,17345], + [26153,3357], + [26155,30129], + [26157,23575], + [26159,34862], + [26161,169338], + [26163,728832], + [26165,11938], + [27001,6926], + [27003,174945], + [27005,15798], + [27007,19826], + [27009,21277], + [27011,2775], + [27013,35390], + [27015,13964], + [27017,16079], + [27019,47236], + [27021,12636], + [27023,6733], + [27025,24739], + [27027,31199], + [27029,3604], + [27031,2898], + [27033,6070], + [27035,30187], + [27037,212895], + [27039,10310], + [27041,19387], + [27043,7005], + [27045,10359], + [27047,15136], + [27049,23763], + [27051,2909], + [27053,608540], + [27055,10134], + [27057,8618], + [27059,19658], + [27061,20422], + [27063,6598], + [27065,7056], + [27067,22368], + [27069,2342], + [27071,6050], + [27073,4069], + [27075,5634], + [27077,2101], + [27079,12899], + [27081,3180], + [27083,13907], + [27085,18242], + [27087,2248], + [27089,4827], + [27091,10816], + [27093,11354], + [27095,10866], + [27097,16321], + [27099,19709], + [27101,5429], + [27103,18704], + [27105,11009], + [27107,3366], + [27109,76566], + [27111,27822], + [27113,8184], + [27115,12919], + [27117,5225], + [27119,16141], + [27121,5805], + [27123,250001], + [27125,2187], + [27127,7870], + [27129,8083], + [27131,30775], + [27133,4784], + [27135,8809], + [27137,95965], + [27139,69500], + [27141,44821], + [27143,8193], + [27145,77734], + [27147,19025], + [27149,5329], + [27151,5113], + [27153,11417], + [27155,1672], + [27157,11329], + [27159,5845], + [27161,9633], + [27163,119550], + [27165,5092], + [27167,3354], + [27169,26673], + [27171,62001], + [27173,5497], + [28001,11637], + [28003,13110], + [28005,4423], + [28007,6011], + [28009,2393], + [28011,13176], + [28013,5214], + [28015,4231], + [28017,6161], + [28019,2923], + [28021,3100], + [28023,5944], + [28025,5878], + [28027,8715], + [28029,10531], + [28031,7882], + [28033,70891], + [28035,33475], + [28037,2663], + [28039,8443], + [28041,4270], + [28043,7850], + [28045,16651], + [28047,78275], + [28049,104170], + [28051,5621], + [28053,3632], + [28055,586], + [28057,8490], + [28059,55581], + [28061,6347], + [28063,2335], + [28065,4597], + [28067,27313], + [28069,3377], + [28071,19763], + [28073,21967], + [28075,29297], + [28077,4556], + [28079,7660], + [28081,32864], + [28083,11366], + [28085,12196], + [28087,22351], + [28089,42394], + [28091,9241], + [28093,12972], + [28095,13352], + [28097,3876], + [28099,12104], + [28101,8206], + [28103,2998], + [28105,18103], + [28107,12761], + [28109,19030], + [28111,4326], + [28113,13507], + [28115,11406], + [28117,9424], + [28119,3006], + [28121,68249], + [28123,12472], + [28125,2124], + [28127,10321], + [28129,5708], + [28131,7140], + [28133,8951], + [28135,5212], + [28137,10222], + [28139,7106], + [28141,6603], + [28143,3653], + [28145,10347], + [28147,4961], + [28149,19310], + [28151,18491], + [28153,7256], + [28155,2935], + [28157,3457], + [28159,6331], + [28161,4672], + [28163,8791], + [29001,12704], + [29003,9379], + [29005,2995], + [29007,11029], + [29009,15948], + [29011,4685], + [29013,6745], + [29015,7461], + [29017,5019], + [29019,82526], + [29021,45372], + [29023,19762], + [29025,3759], + [29027,21041], + [29029,19946], + [29031,35906], + [29033,4561], + [29035,2800], + [29037,45313], + [29039,5731], + [29041,3649], + [29043,37287], + [29045,3149], + [29047,110505], + [29049,9128], + [29051,37754], + [29053,8296], + [29055,10877], + [29057,3248], + [29059,6459], + [29061,3529], + [29063,4675], + [29065,6182], + [29067,6145], + [29069,13307], + [29071,47196], + [29073,7068], + [29075,3362], + [29077,127872], + [29079,4541], + [29081,4261], + [29083,9912], + [29085,3042], + [29087,2589], + [29089,4679], + [29091,17921], + [29093,5265], + [29095,308926], + [29097,53156], + [29099,104862], + [29101,23976], + [29103,2202], + [29105,14465], + [29107,14325], + [29109,17522], + [29111,5022], + [29113,24186], + [29115,6002], + [29117,6795], + [29119,9826], + [29121,7520], + [29123,5625], + [29125,4435], + [29127,13537], + [29129,1632], + [29131,11319], + [29133,5645], + [29135,6850], + [29137,3685], + [29139,5388], + [29141,8129], + [29143,7688], + [29145,25504], + [29147,11923], + [29149,4237], + [29151,6837], + [29153,4138], + [29155,7515], + [29157,9846], + [29159,18913], + [29161,20433], + [29163,8440], + [29165,46031], + [29167,12758], + [29169,19370], + [29171,2313], + [29173,5111], + [29175,11806], + [29177,9959], + [29179,2447], + [29181,6134], + [29183,179357], + [29185,3832], + [29186,9157], + [29187,27156], + [29189,468644], + [29195,10935], + [29197,1998], + [29199,2296], + [29201,18603], + [29203,3297], + [29205,3011], + [29207,13735], + [29209,14137], + [29211,3380], + [29213,24836], + [29215,10133], + [29217,8626], + [29219,14841], + [29221,8660], + [29223,5486], + [29225,15175], + [29227,1061], + [29229,7409], + [29510,139938], + [30001,4903], + [30003,4727], + [30005,2732], + [30007,2222], + [30009,4949], + [30011,689], + [30013,38410], + [30015,2486], + [30017,5559], + [30019,748], + [30021,4159], + [30023,3637], + [30025,1834], + [30027,5713], + [30029,39366], + [30031,45442], + [30033,628], + [30035,5230], + [30037,525], + [30039,1122], + [30041,7758], + [30043,5652], + [30045,1013], + [30047,10357], + [30049,32223], + [30051,719], + [30053,6727], + [30055,983], + [30057,3940], + [30059,784], + [30061,1718], + [30063,55014], + [30065,2276], + [30067,7907], + [30069,223], + [30071,2111], + [30073,2412], + [30075,864], + [30077,2470], + [30079,565], + [30081,16583], + [30083,5223], + [30085,3718], + [30087,3768], + [30089,3830], + [30091,1710], + [30093,16157], + [30095,4197], + [30097,2310], + [30099,2874], + [30101,2414], + [30103,380], + [30105,3400], + [30107,984], + [30109,547], + [30111,77821], + [31001,16704], + [31003,3599], + [31005,228], + [31007,340], + [31009,247], + [31011,3228], + [31013,5269], + [31015,1088], + [31017,1782], + [31019,26703], + [31021,3776], + [31023,4551], + [31025,13025], + [31027,4668], + [31029,2022], + [31031,3399], + [31033,4945], + [31035,2901], + [31037,5568], + [31039,4801], + [31041,5991], + [31043,10478], + [31045,4559], + [31047,12046], + [31049,1028], + [31051,3176], + [31053,18882], + [31055,260623], + [31057,1024], + [31059,3068], + [31061,1718], + [31063,1603], + [31065,2468], + [31067,11265], + [31069,921], + [31071,1054], + [31073,938], + [31075,355], + [31077,1284], + [31079,30812], + [31081,5352], + [31083,1804], + [31085,473], + [31087,1409], + [31089,6046], + [31091,391], + [31093,3482], + [31095,4093], + [31097,2905], + [31099,3485], + [31101,4269], + [31103,379], + [31105,1831], + [31107,4686], + [31109,153785], + [31111,20949], + [31113,444], + [31115,319], + [31117,281], + [31119,18113], + [31121,4004], + [31123,2742], + [31125,2079], + [31127,3253], + [31129,2208], + [31131,8506], + [31133,1489], + [31135,1654], + [31137,5027], + [31139,3720], + [31141,17611], + [31143,2934], + [31145,5825], + [31147,3964], + [31149,852], + [31151,7961], + [31153,75978], + [31155,10281], + [31157,18677], + [31159,8478], + [31161,2994], + [31163,1943], + [31165,710], + [31167,3346], + [31169,2680], + [31171,343], + [31173,2828], + [31175,2487], + [31177,10537], + [31179,4987], + [31181,1743], + [31183,445], + [31185,6733], + [32001,12340], + [32003,856495], + [32005,19748], + [32007,25679], + [32009,455], + [32011,836], + [32013,7957], + [32015,3775], + [32017,1528], + [32019,19364], + [32021,2148], + [32023,15320], + [32027,2345], + [32029,2178], + [32031,196311], + [32033,4610], + [32510,25671], + [33001,30370], + [33003,24415], + [33005,39631], + [33007,15086], + [33009,46380], + [33011,214833], + [33013,77115], + [33015,163078], + [33017,65425], + [33019,21487], + [34001,120781], + [34003,443640], + [34005,221585], + [34007,244631], + [34009,51453], + [34011,61969], + [34013,329542], + [34015,145105], + [34017,268583], + [34019,68321], + [34021,189945], + [34023,391374], + [34025,308808], + [34027,255852], + [34029,239849], + [34031,218128], + [34033,28417], + [34035,169460], + [34037,78265], + [34039,248517], + [34041,54346], + [35001,286763], + [35003,1433], + [35005,25402], + [35006,11492], + [35007,6103], + [35009,20395], + [35011,786], + [35013,83592], + [35015,26361], + [35017,10327], + [35019,1642], + [35021,368], + [35023,2459], + [35025,26092], + [35027,10249], + [35028,9567], + [35029,10255], + [35031,24822], + [35033,1783], + [35035,24189], + [35037,3691], + [35039,18656], + [35041,8864], + [35043,51535], + [35045,51952], + [35047,12317], + [35049,71479], + [35051,5618], + [35053,8969], + [35055,16034], + [35057,6255], + [35059,1819], + [35061,28223], + [36001,148183], + [36003,21816], + [36005,469624], + [36007,89553], + [36009,38079], + [36011,38157], + [36013,60467], + [36015,37364], + [36017,22231], + [36019,36084], + [36021,29121], + [36023,22088], + [36025,20363], + [36027,133744], + [36029,432512], + [36031,16672], + [36033,21074], + [36035,24629], + [36037,30576], + [36039,22076], + [36041,2790], + [36043,28694], + [36045,45141], + [36047,1008638], + [36049,11636], + [36051,29442], + [36053,33175], + [36055,345928], + [36057,22118], + [36059,645100], + [36061,852963], + [36063,103142], + [36065,102470], + [36067,215790], + [36069,52826], + [36071,166368], + [36073,17571], + [36075,54139], + [36077,29261], + [36079,51328], + [36081,1034421], + [36083,77680], + [36085,225883], + [36087,143259], + [36089,44882], + [36091,114315], + [36093,71210], + [36095,14198], + [36097,9215], + [36099,15903], + [36101,41573], + [36103,734271], + [36105,32309], + [36107,24124], + [36109,53344], + [36111,83014], + [36113,33557], + [36115,30092], + [36117,43725], + [36119,453096], + [36121,19147], + [36123,12341], + [37001,63057], + [37003,15656], + [37005,4114], + [37007,8603], + [37009,11042], + [37011,8155], + [37013,18428], + [37015,8030], + [37017,13480], + [37019,45515], + [37021,111790], + [37023,34060], + [37025,75546], + [37027,32257], + [37029,4091], + [37031,29799], + [37033,9503], + [37035,66291], + [37037,31615], + [37039,8445], + [37041,5763], + [37043,4067], + [37045,41274], + [37047,21287], + [37049,37947], + [37051,124807], + [37053,11833], + [37055,19545], + [37057,67652], + [37059,18445], + [37061,22123], + [37063,132533], + [37065,20559], + [37067,162229], + [37069,24796], + [37071,86084], + [37073,4465], + [37075,3063], + [37077,22935], + [37079,8290], + [37081,223165], + [37083,20950], + [37085,42771], + [37087,25153], + [37089,45380], + [37091,9084], + [37093,19133], + [37095,2398], + [37097,68873], + [37099,18860], + [37101,70719], + [37103,4124], + [37105,22346], + [37107,23778], + [37109,33770], + [37111,17355], + [37113,14169], + [37115,8976], + [37117,10600], + [37119,416463], + [37121,6289], + [37123,9570], + [37125,32591], + [37127,41655], + [37129,95014], + [37131,7656], + [37133,60234], + [37135,65481], + [37137,4767], + [37139,16029], + [37141,21929], + [37143,4638], + [37145,17022], + [37147,74040], + [37149,8589], + [37151,65927], + [37153,17181], + [37155,49221], + [37157,38348], + [37159,61606], + [37161,23714], + [37163,28555], + [37165,11469], + [37167,26622], + [37169,21012], + [37171,29533], + [37173,5983], + [37175,12003], + [37177,1967], + [37179,85847], + [37181,16718], + [37183,421150], + [37185,6861], + [37187,5497], + [37189,21211], + [37191,49219], + [37193,26342], + [37195,34648], + [37197,16798], + [37199,6939], + [38001,1230], + [38003,5978], + [38005,2474], + [38007,516], + [38009,3500], + [38011,1685], + [38013,1066], + [38015,45868], + [38017,84241], + [38019,1911], + [38021,2627], + [38023,846], + [38025,1705], + [38027,1121], + [38029,1565], + [38031,1666], + [38033,861], + [38035,36405], + [38037,1151], + [38039,1241], + [38041,1133], + [38043,1152], + [38045,2173], + [38047,909], + [38049,2540], + [38051,1289], + [38053,2816], + [38055,4720], + [38057,4908], + [38059,14316], + [38061,3560], + [38063,1646], + [38065,1230], + [38067,3681], + [38069,1797], + [38071,5452], + [38073,2711], + [38075,1193], + [38077,8232], + [38079,4381], + [38081,1789], + [38083,625], + [38085,1222], + [38087,549], + [38089,13950], + [38091,1084], + [38093,11462], + [38095,1043], + [38097,3864], + [38099,5320], + [38101,28731], + [38103,1933], + [38105,14388], + [39001,11116], + [39003,45541], + [39005,23813], + [39007,42000], + [39009,28575], + [39011,23699], + [39013,30800], + [39015,19028], + [39017,171172], + [39019,12182], + [39021,17869], + [39023,63068], + [39025,95312], + [39027,17945], + [39029,45999], + [39031,14762], + [39033,18596], + [39035,571110], + [39037,24708], + [39039,17513], + [39041,85436], + [39043,37578], + [39045,68431], + [39047,14891], + [39049,571996], + [39051,19254], + [39053,12813], + [39055,48374], + [39057,72361], + [39059,17113], + [39061,393288], + [39063,35793], + [39065,13231], + [39067,6442], + [39069,13579], + [39071,17362], + [39073,12652], + [39075,17667], + [39077,24232], + [39079,13673], + [39081,28768], + [39083,27039], + [39085,121566], + [39087,26740], + [39089,75014], + [39091,21673], + [39093,143227], + [39095,194268], + [39097,18311], + [39099,101026], + [39101,27963], + [39103,88179], + [39105,7984], + [39107,22149], + [39109,48592], + [39111,4943], + [39113,233627], + [39115,5128], + [39117,15968], + [39119,33766], + [39121,5011], + [39123,17822], + [39125,8980], + [39127,14518], + [39129,21992], + [39131,9393], + [39133,82809], + [39135,18811], + [39137,16273], + [39139,53646], + [39141,30651], + [39143,28972], + [39145,28620], + [39147,26600], + [39149,22822], + [39151,168800], + [39153,263600], + [39155,91710], + [39157,41790], + [39159,23672], + [39161,12907], + [39163,4970], + [39165,99213], + [39167,29721], + [39169,52193], + [39171,16912], + [39173,58180], + [39175,9605], + [40001,10273], + [40003,2410], + [40005,5741], + [40007,3214], + [40009,11407], + [40011,4718], + [40013,19495], + [40015,12125], + [40017,50379], + [40019,26984], + [40021,23384], + [40023,6785], + [40025,1241], + [40027,113806], + [40029,2409], + [40031,45136], + [40033,3453], + [40035,7124], + [40037,28664], + [40039,14663], + [40041,18394], + [40043,2628], + [40045,2354], + [40047,30642], + [40049,14304], + [40051,21536], + [40053,2587], + [40055,1936], + [40057,1307], + [40059,1980], + [40061,5700], + [40063,5178], + [40065,11639], + [40067,2333], + [40069,4858], + [40071,21887], + [40073,7430], + [40075,3892], + [40077,4005], + [40079,18784], + [40081,12889], + [40083,17084], + [40085,5314], + [40087,14310], + [40089,13220], + [40091,8207], + [40093,4142], + [40095,6032], + [40097,16929], + [40099,8860], + [40101,28697], + [40103,5449], + [40105,4770], + [40107,4416], + [40109,305990], + [40111,14437], + [40113,18182], + [40115,17508], + [40117,6689], + [40119,33145], + [40121,22159], + [40123,19694], + [40125,31635], + [40127,5078], + [40129,1856], + [40131,37610], + [40133,10198], + [40135,15937], + [40137,20552], + [40139,7291], + [40141,3318], + [40143,274468], + [40145,31202], + [40147,26691], + [40149,5952], + [40151,4378], + [40153,10952], + [41001,6836], + [41003,40175], + [41005,181250], + [41007,18831], + [41009,21355], + [41011,24850], + [41013,7812], + [41015,8233], + [41017,69567], + [41019,39763], + [41021,1142], + [41023,2988], + [41025,2959], + [41027,12815], + [41029,89199], + [41031,7945], + [41033,30209], + [41035,26847], + [41037,3223], + [41039,161255], + [41041,20785], + [41043,48351], + [41045,11721], + [41047,140497], + [41049,5262], + [41051,351886], + [41053,36388], + [41055,954], + [41057,11639], + [41059,34960], + [41061,11166], + [41063,3309], + [41065,12849], + [41067,263307], + [41069,596], + [41071,42762], + [42001,50893], + [42003,595899], + [42005,30082], + [42007,82665], + [42009,21639], + [42011,186095], + [42013,60447], + [42015,28724], + [42017,318801], + [42019,92726], + [42021,63172], + [42023,1960], + [42025,28281], + [42027,70944], + [42029,251383], + [42031,18702], + [42033,36674], + [42035,17629], + [42037,33328], + [42039,38649], + [42041,116621], + [42043,126848], + [42045,258803], + [42047,14945], + [42049,127432], + [42051,59957], + [42053,2122], + [42055,74404], + [42057,6617], + [42059,17687], + [42061,20355], + [42063,43681], + [42065,20692], + [42067,11198], + [42069,98396], + [42071,250126], + [42073,39523], + [42075,67885], + [42077,162952], + [42079,146781], + [42081,54723], + [42083,19016], + [42085,48642], + [42087,20328], + [42089,75360], + [42091,396105], + [42093,8729], + [42095,140823], + [42097,42748], + [42099,22788], + [42101,588815], + [42103,25821], + [42105,6860], + [42107,66625], + [42109,17634], + [42111,35545], + [42113,2768], + [42115,19942], + [42117,18431], + [42119,16081], + [42121,24053], + [42123,20186], + [42125,98347], + [42127,23736], + [42129,174028], + [42131,13220], + [42133,208284], + [44001,24354], + [44003,86700], + [44005,39197], + [44007,288048], + [44009,66656], + [45001,9665], + [45003,69581], + [45005,2697], + [45007,74955], + [45009,5428], + [45011,7456], + [45013,57398], + [45015,72210], + [45017,5903], + [45019,158380], + [45021,21538], + [45023,12534], + [45025,15880], + [45027,10840], + [45029,14944], + [45031,27033], + [45033,11669], + [45035,57801], + [45037,10019], + [45039,9393], + [45041,56550], + [45043,26618], + [45045,201358], + [45047,27121], + [45049,6779], + [45051,115067], + [45053,9054], + [45055,26716], + [45057,25070], + [45059,28291], + [45061,7283], + [45063,122305], + [45065,2872], + [45067,10286], + [45069,9739], + [45071,16351], + [45073,27082], + [45075,35196], + [45077,51007], + [45079,163237], + [45081,8113], + [45083,119499], + [45085,39309], + [45087,9763], + [45089,13552], + [45091,97133], + [46003,1462], + [46005,9365], + [46007,1354], + [46009,2968], + [46011,18312], + [46013,20452], + [46015,2756], + [46017,433], + [46019,5171], + [46021,820], + [46023,3987], + [46025,1724], + [46027,7348], + [46029,15249], + [46031,1321], + [46033,4807], + [46035,10685], + [46037,2717], + [46039,2565], + [46041,2376], + [46043,1701], + [46045,1939], + [46047,3582], + [46049,1110], + [46051,4004], + [46053,2253], + [46055,1125], + [46057,2809], + [46059,1869], + [46061,1835], + [46063,772], + [46065,10059], + [46067,3649], + [46069,730], + [46071,1183], + [46073,1349], + [46075,701], + [46077,2816], + [46079,6308], + [46081,12997], + [46083,21327], + [46085,1898], + [46087,2499], + [46089,1102], + [46091,1967], + [46093,11470], + [46095,813], + [46097,1210], + [46099,95455], + [46101,3690], + [46102,"NA"], + [46103,52622], + [46105,1567], + [46107,1264], + [46109,4513], + [46111,1356], + [46115,3327], + [46117,1888], + [46119,971], + [46121,3306], + [46123,2861], + [46125,3874], + [46127,8032], + [46129,2581], + [46135,11350], + [46137,827], + [47001,32487], + [47003,19683], + [47005,6075], + [47007,4241], + [47009,57439], + [47011,43149], + [47013,14742], + [47015,5802], + [47017,11555], + [47019,26384], + [47021,18463], + [47023,6974], + [47025,11588], + [47027,2849], + [47029,14316], + [47031,22792], + [47033,5666], + [47035,20420], + [47037,294328], + [47039,4942], + [47041,8912], + [47043,20919], + [47045,15136], + [47047,16194], + [47049,6908], + [47051,17490], + [47053,18415], + [47055,11420], + [47057,8699], + [47059,25169], + [47061,5167], + [47063,26169], + [47065,149419], + [47067,2270], + [47069,9893], + [47071,10383], + [47073,24386], + [47075,7816], + [47077,9875], + [47079,11845], + [47081,8778], + [47083,3447], + [47085,7880], + [47087,4321], + [47089,21228], + [47091,6502], + [47093,211705], + [47095,2368], + [47097,8458], + [47099,14269], + [47101,4700], + [47103,15867], + [47105,21363], + [47107,20252], + [47109,9526], + [47111,9322], + [47113,43230], + [47115,11144], + [47117,10332], + [47119,32225], + [47121,4386], + [47123,15481], + [47125,63164], + [47127,2761], + [47129,7813], + [47131,13635], + [47133,8752], + [47135,2178], + [47137,1547], + [47139,6187], + [47141,32518], + [47143,11645], + [47145,24975], + [47147,30508], + [47149,122762], + [47151,6956], + [47153,5530], + [47155,43453], + [47157,393849], + [47159,8087], + [47161,5210], + [47163,68394], + [47165,72678], + [47167,25418], + [47169,3268], + [47171,7489], + [47173,7946], + [47175,2087], + [47177,14688], + [47179,57165], + [47181,5794], + [47183,13961], + [47185,9168], + [47187,82930], + [47189,53438], + [48001,19040], + [48003,6494], + [48005,36681], + [48007,10776], + [48009,4705], + [48011,1012], + [48013,17978], + [48015,12246], + [48017,3162], + [48019,9176], + [48021,31535], + [48023,1852], + [48025,10809], + [48027,118431], + [48029,712413], + [48031,4804], + [48033,401], + [48035,7885], + [48037,41259], + [48039,134316], + [48041,91367], + [48043,4892], + [48045,678], + [48047,2999], + [48049,17717], + [48051,7584], + [48053,20870], + [48055,14428], + [48057,8644], + [48059,6679], + [48061,136689], + [48063,5234], + [48065,3071], + [48067,11824], + [48069,3516], + [48071,13953], + [48073,19119], + [48075,3098], + [48077,5657], + [48079,1409], + [48081,1215], + [48083,4079], + [48085,384888], + [48087,1411], + [48089,10057], + [48091,53758], + [48093,6421], + [48095,1252], + [48097,20402], + [48099,22285], + [48101,755], + [48103,1617], + [48105,2087], + [48107,2403], + [48109,1737], + [48111,3600], + [48113,1049081], + [48115,4931], + [48117,8662], + [48119,2059], + [48121,325707], + [48123,8486], + [48125,953], + [48127,3779], + [48129,1814], + [48131,4680], + [48133,7943], + [48135,65671], + [48137,1000], + [48139,65301], + [48141,280379], + [48143,17985], + [48145,6089], + [48147,12455], + [48149,11590], + [48151,1899], + [48153,3011], + [48155,679], + [48157,257050], + [48159,5093], + [48161,9499], + [48163,6883], + [48165,6599], + [48167,128942], + [48169,2329], + [48171,13081], + [48173,622], + [48175,3150], + [48177,9568], + [48179,10364], + [48181,52260], + [48183,60381], + [48185,10555], + [48187,56180], + [48189,16278], + [48191,1342], + [48193,4108], + [48195,2639], + [48197,2098], + [48199,24898], + [48201,1822227], + [48203,30134], + [48205,2366], + [48207,3076], + [48209,73750], + [48211,2527], + [48213,32304], + [48215,265434], + [48217,15136], + [48219,11375], + [48221,24341], + [48223,16744], + [48225,7463], + [48227,13282], + [48229,1626], + [48231,33442], + [48233,10585], + [48235,873], + [48237,4948], + [48239,6411], + [48241,14324], + [48243,1143], + [48245,104421], + [48247,2776], + [48249,19697], + [48251,68795], + [48253,7171], + [48255,4989], + [48257,43003], + [48259,15767], + [48261,221], + [48263,439], + [48265,21976], + [48267,2033], + [48269,186], + [48271,1325], + [48273,15885], + [48275,1726], + [48277,21705], + [48279,6576], + [48281,9883], + [48283,2650], + [48285,9437], + [48287,8505], + [48289,7671], + [48291,28264], + [48293,10528], + [48295,1613], + [48297,4833], + [48299,7932], + [48301,39], + [48303,134337], + [48305,2699], + [48307,3624], + [48309,106094], + [48311,335], + [48313,4934], + [48315,4603], + [48317,2138], + [48319,2279], + [48321,16059], + [48323,19467], + [48325,18553], + [48327,1030], + [48329,70765], + [48331,10208], + [48333,2319], + [48335,3207], + [48337,9934], + [48339,205009], + [48341,10976], + [48343,5177], + [48345,649], + [48347,29766], + [48349,19645], + [48351,5182], + [48353,7364], + [48355,154451], + [48357,5176], + [48359,871], + [48361,37325], + [48363,13096], + [48365,12230], + [48367,50466], + [48369,4419], + [48371,7687], + [48373,16347], + [48375,54156], + [48377,3139], + [48379,4707], + [48381,65971], + [48383,2082], + [48385,1452], + [48387,5460], + [48389,4151], + [48391,3875], + [48393,555], + [48395,6656], + [48397,36512], + [48399,4220], + [48401,22379], + [48403,3010], + [48405,3242], + [48407,9197], + [48409,28009], + [48411,2281], + [48413,1369], + [48415,7240], + [48417,2042], + [48419,11696], + [48421,1381], + [48423,92806], + [48425,3924], + [48427,20415], + [48429,4316], + [48431,819], + [48433,813], + [48435,3204], + [48437,3439], + [48439,827369], + [48441,64023], + [48443,347], + [48445,5615], + [48447,983], + [48449,13274], + [48451,49458], + [48453,510814], + [48455,5405], + [48457,7620], + [48459,18165], + [48461,1718], + [48463,10674], + [48465,19063], + [48467,24141], + [48469,42248], + [48471,25736], + [48473,15085], + [48475,4591], + [48477,15944], + [48479,86110], + [48481,19729], + [48483,3030], + [48485,56779], + [48487,7504], + [48489,7388], + [48491,194545], + [48493,17673], + [48495,3093], + [48497,25790], + [48499,17120], + [48501,3789], + [48503,9048], + [48505,4748], + [48507,3354], + [49001,3332], + [49003,21350], + [49005,58660], + [49007,9659], + [49009,451], + [49011,135345], + [49013,9466], + [49015,4878], + [49017,2573], + [49019,4872], + [49021,19109], + [49023,3566], + [49025,3252], + [49027,6118], + [49029,3811], + [49031,835], + [49033,1387], + [49035,514653], + [49037,4667], + [49039,10382], + [49041,9099], + [49043,20658], + [49045,25975], + [49047,16211], + [49049,206001], + [49051,9182], + [49053,54133], + [49055,1359], + [49057,105022], + [50001,20568], + [50003,19046], + [50005,15476], + [50007,85311], + [50009,3022], + [50011,24876], + [50013,3931], + [50015,14507], + [50017,15605], + [50019,13250], + [50021,32831], + [50023,32645], + [50025,23672], + [50027,31379], + [51001,18425], + [51003,49269], + [51005,6427], + [51007,6134], + [51009,14417], + [51011,6577], + [51013,131357], + [51015,35964], + [51017,2523], + [51019,35138], + [51021,3329], + [51023,16391], + [51025,6388], + [51027,8448], + [51029,6775], + [51031,25175], + [51033,12941], + [51035,12848], + [51036,3488], + [51037,5037], + [51041,156218], + [51043,7591], + [51045,2263], + [51047,19622], + [51049,4262], + [51051,5884], + [51053,12011], + [51057,5351], + [51059,559644], + [51061,35359], + [51063,6776], + [51065,13190], + [51067,24610], + [51069,37818], + [51071,7572], + [51073,19578], + [51075,10644], + [51077,6515], + [51079,10132], + [51081,4007], + [51083,14668], + [51085,51015], + [51087,153042], + [51089,22092], + [51091,1074], + [51093,17671], + [51095,30447], + [51097,3002], + [51099,9476], + [51101,8055], + [51103,5130], + [51105,9395], + [51107,166112], + [51109,15358], + [51111,5095], + [51113,6973], + [51115,4096], + [51117,12533], + [51119,4840], + [51121,42285], + [51125,7526], + [51127,9187], + [51131,5893], + [51133,5583], + [51135,6107], + [51137,14614], + [51139,10651], + [51141,8221], + [51143,28432], + [51145,13273], + [51147,9104], + [51149,14009], + [51153,197060], + [51155,16147], + [51157,3983], + [51159,3773], + [51161,45655], + [51163,10918], + [51165,39260], + [51167,11095], + [51169,8919], + [51171,18576], + [51173,13472], + [51175,7450], + [51177,61268], + [51179,61927], + [51181,3441], + [51183,3991], + [51185,19864], + [51187,18257], + [51191,24701], + [51193,8438], + [51195,18129], + [51197,14680], + [51199,28820], + [51510,89890], + [51520,7315], + [51530,3155], + [51540,20317], + [51550,107619], + [51570,8440], + [51580,2466], + [51590,17388], + [51595,2228], + [51600,13722], + [51610,6758], + [51620,3546], + [51630,11768], + [51640,2921], + [51650,62042], + [51660,21497], + [51670,9454], + [51678,2239], + [51680,32040], + [51683,18972], + [51685,6455], + [51690,5011], + [51700,87426], + [51710,90318], + [51720,1614], + [51730,12533], + [51735,5876], + [51740,41325], + [51750,7215], + [51760,91416], + [51770,43194], + [51775,12441], + [51790,11029], + [51800,37854], + [51810,206585], + [51820,9786], + [51830,4721], + [51840,13067], + [53001,7570], + [53003,9391], + [53005,86121], + [53007,38717], + [53009,27306], + [53011,190185], + [53013,1424], + [53015,38954], + [53017,20394], + [53019,2673], + [53021,33671], + [53023,953], + [53025,38150], + [53027,27416], + [53029,30058], + [53031,11995], + [53033,1024328], + [53035,115796], + [53037,19014], + [53039,9772], + [53041,27561], + [53043,4443], + [53045,22795], + [53047,20019], + [53049,8109], + [53051,4762], + [53053,359010], + [53055,7934], + [53057,52625], + [53059,4448], + [53061,345897], + [53063,217765], + [53065,16502], + [53067,121431], + [53069,1390], + [53071,29002], + [53073,98816], + [53075,20585], + [53077,114665], + [54001,6277], + [54003,42615], + [54005,8653], + [54007,5455], + [54009,9907], + [54011,41714], + [54013,2485], + [54015,3159], + [54017,2638], + [54019,16590], + [54021,3006], + [54023,4586], + [54025,13467], + [54027,8532], + [54029,12957], + [54031,6147], + [54033,29434], + [54035,10391], + [54037,23019], + [54039,86739], + [54041,7143], + [54043,7371], + [54045,12308], + [54047,6603], + [54049,24936], + [54051,13600], + [54053,9073], + [54055,23686], + [54057,12806], + [54059,8143], + [54061,47679], + [54063,5407], + [54065,6277], + [54067,9772], + [54069,19693], + [54071,3293], + [54073,2893], + [54075,3174], + [54077,14335], + [54079,26229], + [54081,30491], + [54083,11586], + [54085,3994], + [54087,4897], + [54089,4286], + [54091,6632], + [54093,2556], + [54095,3251], + [54097,9851], + [54099,15941], + [54101,2917], + [54103,5569], + [54105,2139], + [54107,37470], + [54109,7398], + [55001,8937], + [55003,8225], + [55005,22880], + [55007,7297], + [55009,130169], + [55011,7741], + [55013,7124], + [55015,23682], + [55017,30346], + [55019,16165], + [55021,28547], + [55023,8461], + [55025,281647], + [55027,42726], + [55029,15848], + [55031,21578], + [55033,23925], + [55035,52959], + [55037,2160], + [55039,51171], + [55041,4464], + [55043,26582], + [55045,18528], + [55047,9258], + [55049,12933], + [55051,2627], + [55053,9094], + [55055,38770], + [55057,12199], + [55059,77164], + [55061,10666], + [55063,61611], + [55065,8607], + [55067,9872], + [55069,13835], + [55071,41696], + [55073,68390], + [55075,19854], + [55077,6985], + [55078,1412], + [55079,423498], + [55081,22890], + [55083,18253], + [55085,17130], + [55087,91091], + [55089,44022], + [55091,3830], + [55093,21706], + [55095,21775], + [55097,40072], + [55099,7433], + [55101,89224], + [55103,9257], + [55105,72056], + [55107,6426], + [55109,43525], + [55111,32755], + [55113,8179], + [55115,20573], + [55117,58975], + [55119,9508], + [55121,15081], + [55123,14060], + [55125,9905], + [55127,51099], + [55129,7176], + [55131,68338], + [55133,197001], + [55135,25665], + [55137,11578], + [55139,87924], + [55141,38201], + [56001,18882], + [56003,4625], + [56005,27265], + [56007,7376], + [56009,7197], + [56011,3391], + [56013,17768], + [56015,5975], + [56017,2387], + [56019,3792], + [56021,41003], + [56023,7757], + [56025,38548], + [56027,1234], + [56029,13989], + [56031,3888], + [56033,15388], + [56035,6972], + [56037,22765], + [56039,12917], + [56041,10789], + [56043,4137], + [56045,3107] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2010.json b/data/regional/united-states/economics/employment/us-employment-total-2010.json new file mode 100644 index 0000000..569e648 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2010"], + [1001,23431], + [1003,75120], + [1005,8959], + [1007,7914], + [1009,22460], + [1011,4356], + [1013,7998], + [1015,45699], + [1017,12554], + [1019,10245], + [1021,17464], + [1023,4216], + [1025,7300], + [1027,5005], + [1029,5429], + [1031,19271], + [1033,21453], + [1035,4131], + [1037,3937], + [1039,14721], + [1041,5646], + [1043,32202], + [1045,20124], + [1047,14806], + [1049,27026], + [1051,33362], + [1053,13238], + [1055,39193], + [1057,5942], + [1059,12724], + [1061,10362], + [1063,2735], + [1065,5473], + [1067,6469], + [1069,42170], + [1071,21468], + [1073,285627], + [1075,5035], + [1077,39193], + [1079,13024], + [1081,60758], + [1083,34625], + [1085,3547], + [1087,7618], + [1089,155656], + [1091,7021], + [1093,11423], + [1095,37640], + [1097,170943], + [1099,7131], + [1101,97892], + [1103,51600], + [1105,3236], + [1107,6687], + [1109,14198], + [1111,8410], + [1113,21225], + [1115,34397], + [1117,95110], + [1119,5006], + [1121,30389], + [1123,16579], + [1125,85273], + [1127,23815], + [1129,6335], + [1131,2261], + [1133,8304], + [2013,1917], + [2016,3755], + [2020,147539], + [2050,6114], + [2060,456], + [2068,891], + [2070,1878], + [2090,45083], + [2100,1028], + [2105,915], + [2110,16848], + [2122,24310], + [2130,6501], + [2150,5993], + [2158,"NA"], + [2164,517], + [2170,38319], + [2180,3595], + [2185,3649], + [2188,2560], + [2195,1698], + [2198,2276], + [2220,4274], + [2230,614], + [2240,2816], + [2261,4419], + [2275,945], + [2282,265], + [2290,2125], + [4001,19589], + [4003,51694], + [4005,65650], + [4007,18914], + [4009,12687], + [4011,2875], + [4012,7063], + [4013,1736764], + [4015,71999], + [4017,37450], + [4019,434106], + [4021,137242], + [4023,17697], + [4025,86224], + [4027,69500], + [5001,9224], + [5003,8765], + [5005,15050], + [5007,99999], + [5009,15226], + [5011,4462], + [5013,2445], + [5015,11686], + [5017,3745], + [5019,9337], + [5021,6659], + [5023,9444], + [5025,3562], + [5027,9458], + [5029,8156], + [5031,44249], + [5033,25996], + [5035,20433], + [5037,7903], + [5039,3057], + [5041,5229], + [5043,7633], + [5045,54465], + [5047,7197], + [5049,4767], + [5051,38046], + [5053,7960], + [5055,17768], + [5057,9685], + [5059,12969], + [5061,6037], + [5063,15559], + [5065,4622], + [5067,5936], + [5069,30438], + [5071,10072], + [5073,2741], + [5075,6737], + [5077,3387], + [5079,4258], + [5081,5738], + [5083,8964], + [5085,31036], + [5087,6756], + [5089,6035], + [5091,19364], + [5093,17667], + [5095,3098], + [5097,3562], + [5099,3614], + [5101,3528], + [5103,10214], + [5105,4154], + [5107,7681], + [5109,4400], + [5111,9736], + [5113,8311], + [5115,27706], + [5117,3602], + [5119,175512], + [5121,6516], + [5123,8784], + [5125,49824], + [5127,4386], + [5129,3081], + [5131,54760], + [5133,6563], + [5135,5690], + [5137,5103], + [5139,15222], + [5141,5752], + [5143,96162], + [5145,33437], + [5147,3251], + [5149,8928], + [6001,697112], + [6003,472], + [6005,13326], + [6007,88322], + [6009,17977], + [6011,9118], + [6013,467914], + [6015,9489], + [6017,80002], + [6019,366221], + [6021,11180], + [6023,59084], + [6025,55978], + [6027,8806], + [6029,313361], + [6031,49857], + [6033,25343], + [6035,10401], + [6037,4302274], + [6039,51366], + [6041,122570], + [6043,7582], + [6045,36772], + [6047,93191], + [6049,3237], + [6051,7984], + [6053,188339], + [6055,62989], + [6057,43178], + [6059,1387438], + [6061,153236], + [6063,7479], + [6065,841285], + [6067,596992], + [6069,23691], + [6071,769890], + [6073,1352266], + [6075,442695], + [6077,259995], + [6079,120209], + [6081,360163], + [6083,191680], + [6085,830114], + [6087,122872], + [6089,65334], + [6091,1364], + [6093,16325], + [6095,176969], + [6097,218100], + [6099,202182], + [6101,37528], + [6103,21754], + [6105,4501], + [6107,168110], + [6109,19173], + [6111,383424], + [6113,89834], + [6115,23902], + [8001,210728], + [8003,7010], + [8005,289715], + [8007,5169], + [8009,1982], + [8011,1843], + [8013,158308], + [8014,29198], + [8015,7634], + [8017,1004], + [8019,5167], + [8021,3394], + [8023,1388], + [8025,1383], + [8027,1940], + [8029,12961], + [8031,315922], + [8033,823], + [8035,146562], + [8037,29697], + [8039,11727], + [8041,277678], + [8043,13973], + [8045,28115], + [8047,3060], + [8049,8165], + [8051,9439], + [8053,443], + [8055,2327], + [8057,838], + [8059,278790], + [8061,729], + [8063,4190], + [8065,3891], + [8067,27744], + [8069,157025], + [8071,6432], + [8073,2024], + [8075,10551], + [8077,67776], + [8079,387], + [8081,7277], + [8083,11867], + [8085,18360], + [8087,13423], + [8089,7710], + [8091,1940], + [8093,8856], + [8095,2081], + [8097,10000], + [8099,5736], + [8101,66667], + [8103,2866], + [8105,4655], + [8107,13192], + [8109,2755], + [8111,442], + [8113,4508], + [8115,1019], + [8117,17837], + [8119,11198], + [8121,2437], + [8123,119796], + [8125,4651], + [9001,434720], + [9003,432899], + [9005,98908], + [9007,85758], + [9009,416034], + [9011,131697], + [9013,79397], + [9015,58039], + [10001,66228], + [10003,249065], + [10005,82577], + [11001,313508], + [12001,118072], + [12003,10246], + [12005,77054], + [12007,10444], + [12009,235757], + [12011,841473], + [12013,4777], + [12015,57846], + [12017,45594], + [12019,86356], + [12021,128427], + [12023,25669], + [12027,11481], + [12029,5008], + [12031,403171], + [12033,125755], + [12035,36208], + [12037,4543], + [12039,17714], + [12041,6132], + [12043,5017], + [12045,5591], + [12047,4258], + [12049,10410], + [12051,15786], + [12053,57464], + [12055,32587], + [12057,576400], + [12059,6445], + [12061,52848], + [12063,17214], + [12065,5443], + [12067,3156], + [12069,118246], + [12071,247790], + [12073,138074], + [12075,15262], + [12077,2676], + [12079,7148], + [12081,130750], + [12083,114297], + [12085,59472], + [12086,1089226], + [12087,38904], + [12089,31995], + [12091,81547], + [12093,15816], + [12095,566478], + [12097,120253], + [12099,574890], + [12101,182593], + [12103,414856], + [12105,244668], + [12107,26434], + [12109,90440], + [12111,110976], + [12113,64713], + [12115,147825], + [12117,206168], + [12119,21955], + [12121,17267], + [12123,8471], + [12125,5013], + [12127,208987], + [12129,13368], + [12131,23547], + [12133,9210], + [13001,7710], + [13003,2925], + [13005,4059], + [13007,1083], + [13009,16243], + [13011,7640], + [13013,30939], + [13015,42007], + [13017,5481], + [13019,6951], + [13021,62053], + [13023,4792], + [13025,6516], + [13027,6605], + [13029,13070], + [13031,29802], + [13033,8601], + [13035,9288], + [13037,2390], + [13039,18643], + [13043,4482], + [13045,45762], + [13047,28665], + [13049,4288], + [13051,114777], + [13053,1976], + [13055,9425], + [13057,102687], + [13059,51361], + [13061,973], + [13063,108243], + [13065,2579], + [13067,344871], + [13069,14484], + [13071,19247], + [13073,57027], + [13075,6966], + [13077,58095], + [13079,5109], + [13081,7901], + [13083,7624], + [13085,9771], + [13087,10897], + [13089,323687], + [13091,7271], + [13093,4386], + [13095,36281], + [13097,59108], + [13099,3953], + [13101,1722], + [13103,23310], + [13105,7605], + [13107,7946], + [13109,4336], + [13111,9070], + [13113,48564], + [13115,39750], + [13117,81251], + [13119,8468], + [13121,434315], + [13123,11366], + [13125,1178], + [13127,34508], + [13129,22749], + [13131,9309], + [13133,5567], + [13135,379794], + [13137,16390], + [13139,78205], + [13141,2393], + [13143,10866], + [13145,15149], + [13147,9697], + [13149,4615], + [13151,90686], + [13153,61422], + [13155,3135], + [13157,25660], + [13159,6069], + [13161,5557], + [13163,6151], + [13165,2738], + [13167,3781], + [13169,12366], + [13171,6998], + [13173,3464], + [13175,17879], + [13177,13047], + [13179,24493], + [13181,3256], + [13183,5706], + [13185,46120], + [13187,13184], + [13189,8204], + [13191,5625], + [13193,4672], + [13195,11984], + [13197,3326], + [13199,8054], + [13201,2512], + [13205,8602], + [13207,11273], + [13209,3411], + [13211,7729], + [13213,14812], + [13215,73484], + [13217,41899], + [13219,15635], + [13221,6396], + [13223,66352], + [13225,11359], + [13227,12505], + [13229,7387], + [13231,7599], + [13233,16444], + [13235,4112], + [13237,7883], + [13239,905], + [13241,6298], + [13243,2616], + [13245,78209], + [13247,37210], + [13249,1903], + [13251,4818], + [13253,2959], + [13255,24409], + [13257,10429], + [13259,2154], + [13261,12370], + [13263,2585], + [13265,520], + [13267,8802], + [13269,2784], + [13271,4462], + [13273,3439], + [13275,15874], + [13277,16537], + [13279,10792], + [13281,3783], + [13283,2589], + [13285,28788], + [13287,2944], + [13289,2760], + [13291,8456], + [13293,10471], + [13295,27788], + [13297,36667], + [13299,13847], + [13301,2200], + [13303,6943], + [13305,10886], + [13307,909], + [13309,1644], + [13311,11589], + [13313,41978], + [13315,2570], + [13317,3486], + [13319,3303], + [13321,8597], + [15001,79112], + [15003,419631], + [15005,"NA"], + [15007,31317], + [15009,72223], + [16001,180562], + [16003,1516], + [16005,37809], + [16007,2670], + [16009,3636], + [16011,21198], + [16013,10806], + [16015,2726], + [16017,16978], + [16019,45677], + [16021,4647], + [16023,1254], + [16025,561], + [16027,75188], + [16029,3541], + [16031,10326], + [16033,486], + [16035,2921], + [16037,2107], + [16039,10409], + [16041,5867], + [16043,6162], + [16045,6802], + [16047,7864], + [16049,5823], + [16051,11720], + [16053,10135], + [16055,61337], + [16057,18000], + [16059,3390], + [16061,1466], + [16063,2355], + [16065,16545], + [16067,9690], + [16069,18742], + [16071,1885], + [16073,4838], + [16075,10066], + [16077,3515], + [16079,4615], + [16081,5018], + [16083,33783], + [16085,3956], + [16087,4238], + [17001,32210], + [17003,2622], + [17005,7678], + [17007,23649], + [17009,2407], + [17011,17098], + [17013,2248], + [17015,7654], + [17017,6430], + [17019,100042], + [17021,15470], + [17023,7349], + [17025,6055], + [17027,19052], + [17029,23154], + [17031,2356472], + [17033,9501], + [17035,5512], + [17037,50454], + [17039,8045], + [17041,9433], + [17043,458264], + [17045,8406], + [17047,2948], + [17049,17195], + [17051,10111], + [17053,6604], + [17055,15784], + [17057,15535], + [17059,2384], + [17061,6184], + [17063,22505], + [17065,3637], + [17067,8907], + [17069,1601], + [17071,3564], + [17073,24283], + [17075,14459], + [17077,27405], + [17079,4646], + [17081,16374], + [17083,10550], + [17085,11343], + [17087,3898], + [17089,237746], + [17091,50385], + [17093,56085], + [17095,22931], + [17097,333465], + [17099,54429], + [17101,5988], + [17103,17311], + [17105,17390], + [17107,12748], + [17109,14311], + [17111,151014], + [17113,89357], + [17115,49034], + [17117,22230], + [17119,125142], + [17121,17297], + [17123,5769], + [17125,6525], + [17127,6401], + [17129,6613], + [17131,8062], + [17133,16694], + [17135,12195], + [17137,16865], + [17139,7022], + [17141,24710], + [17143,85939], + [17145,8535], + [17147,8458], + [17149,7398], + [17151,1840], + [17153,2172], + [17155,2913], + [17157,13709], + [17159,7301], + [17161,69020], + [17163,119422], + [17165,10450], + [17167,100315], + [17169,3548], + [17171,2635], + [17173,10117], + [17175,2734], + [17177,21956], + [17179,64566], + [17181,7017], + [17183,33619], + [17185,5290], + [17187,8576], + [17189,7883], + [17191,7650], + [17193,6939], + [17195,26822], + [17197,316210], + [17199,29374], + [17201,129021], + [17203,18780], + [18001,14745], + [18003,157115], + [18005,34728], + [18007,4232], + [18009,5007], + [18011,27163], + [18013,6781], + [18015,9239], + [18017,16810], + [18019,50043], + [18021,11712], + [18023,15185], + [18025,4283], + [18027,13790], + [18029,22752], + [18031,11415], + [18033,18138], + [18035,48402], + [18037,20285], + [18039,81900], + [18041,8342], + [18043,34505], + [18045,7593], + [18047,10088], + [18049,9109], + [18051,15543], + [18053,29667], + [18055,12857], + [18057,135160], + [18059,32492], + [18061,17119], + [18063,68853], + [18065,18426], + [18067,31300], + [18069,16774], + [18071,18323], + [18073,14455], + [18075,9494], + [18077,13709], + [18079,11581], + [18081,65284], + [18083,17007], + [18085,34900], + [18087,14574], + [18089,204390], + [18091,45159], + [18093,18100], + [18095,52243], + [18097,405075], + [18099,20823], + [18101,4865], + [18103,13956], + [18105,62376], + [18107,16970], + [18109,31394], + [18111,6272], + [18113,19984], + [18115,2902], + [18117,7948], + [18119,9126], + [18121,6530], + [18123,7987], + [18125,5611], + [18127,73869], + [18129,12440], + [18131,5736], + [18133,14732], + [18135,11486], + [18137,12899], + [18139,7716], + [18141,115385], + [18143,9195], + [18145,20223], + [18147,10030], + [18149,9052], + [18151,16386], + [18153,8170], + [18155,4558], + [18157,78864], + [18159,7221], + [18161,3346], + [18163,83895], + [18165,6799], + [18167,45402], + [18169,14133], + [18171,3758], + [18173,28345], + [18175,12118], + [18177,27310], + [18179,12757], + [18181,11613], + [18183,15579], + [19001,3878], + [19003,2132], + [19005,7297], + [19007,5749], + [19009,3284], + [19011,13444], + [19013,66601], + [19015,13998], + [19017,13185], + [19019,10672], + [19021,10882], + [19023,7704], + [19025,4376], + [19027,11209], + [19029,6946], + [19031,10397], + [19033,22884], + [19035,6770], + [19037,6070], + [19039,4418], + [19041,8800], + [19043,9738], + [19045,24581], + [19047,8562], + [19049,35596], + [19051,3950], + [19053,4195], + [19055,9735], + [19057,18710], + [19059,8666], + [19061,51088], + [19063,5457], + [19065,10228], + [19067,7930], + [19069,5651], + [19071,3743], + [19073,4895], + [19075,6371], + [19077,5474], + [19079,7495], + [19081,5667], + [19083,8538], + [19085,7555], + [19087,9133], + [19089,5003], + [19091,4957], + [19093,3650], + [19095,9130], + [19097,10312], + [19099,17637], + [19101,8321], + [19103,75917], + [19105,10402], + [19107,5186], + [19109,7955], + [19111,16167], + [19113,112941], + [19115,5531], + [19117,3974], + [19119,6158], + [19121,7917], + [19123,11114], + [19125,16557], + [19127,18778], + [19129,7211], + [19131,5437], + [19133,4535], + [19135,3801], + [19137,4825], + [19139,20074], + [19141,7767], + [19143,3489], + [19145,6648], + [19147,4553], + [19149,13916], + [19151,3850], + [19153,230346], + [19155,47437], + [19157,9958], + [19159,2492], + [19161,5449], + [19163,81101], + [19165,6312], + [19167,18900], + [19169,51104], + [19171,8755], + [19173,3012], + [19175,6623], + [19177,3682], + [19179,17054], + [19181,24871], + [19183,11789], + [19185,2699], + [19187,18748], + [19189,5431], + [19191,11616], + [19193,52313], + [19195,4027], + [19197,6366], + [20001,6429], + [20003,4220], + [20005,7154], + [20007,2644], + [20009,14100], + [20011,6572], + [20013,4917], + [20015,30447], + [20017,1361], + [20019,1583], + [20021,9817], + [20023,1348], + [20025,1169], + [20027,4374], + [20029,4392], + [20031,4479], + [20033,949], + [20035,15906], + [20037,17672], + [20039,1384], + [20041,9557], + [20043,4139], + [20045,60574], + [20047,1593], + [20049,1296], + [20051,16946], + [20053,3235], + [20055,19255], + [20057,17361], + [20059,13070], + [20061,12136], + [20063,1454], + [20065,1323], + [20067,4021], + [20069,3376], + [20071,799], + [20073,3181], + [20075,1768], + [20077,2753], + [20079,16497], + [20081,2357], + [20083,1045], + [20085,7046], + [20087,9871], + [20089,1473], + [20091,288469], + [20093,2058], + [20095,3594], + [20097,1325], + [20099,10203], + [20101,944], + [20103,31735], + [20105,1770], + [20107,4028], + [20109,1676], + [20111,16316], + [20113,15627], + [20115,6342], + [20117,5608], + [20119,2458], + [20121,15815], + [20123,3689], + [20125,16158], + [20127,3085], + [20129,1680], + [20131,5570], + [20133,6651], + [20135,1554], + [20137,2980], + [20139,7906], + [20141,2116], + [20143,3090], + [20145,3439], + [20147,2881], + [20149,11268], + [20151,4993], + [20153,1458], + [20155,30800], + [20157,2614], + [20159,5018], + [20161,34289], + [20163,2593], + [20165,1697], + [20167,3550], + [20169,29027], + [20171,2661], + [20173,230497], + [20175,10261], + [20177,87047], + [20179,1463], + [20181,3004], + [20183,2232], + [20185,2246], + [20187,1048], + [20189,2749], + [20191,10896], + [20193,4363], + [20195,1438], + [20197,3633], + [20199,840], + [20201,3184], + [20203,1290], + [20205,3962], + [20207,1599], + [20209,67433], + [21001,6839], + [21003,8056], + [21005,10466], + [21007,3445], + [21009,17540], + [21011,4172], + [21013,8959], + [21015,57662], + [21017,9151], + [21019,18342], + [21021,11853], + [21023,3529], + [21025,3916], + [21027,7202], + [21029,34671], + [21031,4802], + [21033,5293], + [21035,17391], + [21037,44284], + [21039,2047], + [21041,4274], + [21043,10244], + [21045,6155], + [21047,24107], + [21049,15862], + [21051,5153], + [21053,3803], + [21055,3660], + [21057,2800], + [21059,42523], + [21061,4440], + [21063,2019], + [21065,4923], + [21067,151190], + [21069,5940], + [21071,12064], + [21073,22481], + [21075,2415], + [21077,3573], + [21079,7051], + [21081,10308], + [21083,15231], + [21085,9904], + [21087,4938], + [21089,13579], + [21091,3643], + [21093,42359], + [21095,8979], + [21097,8013], + [21099,7264], + [21101,20503], + [21103,7060], + [21105,2112], + [21107,19157], + [21109,4419], + [21111,340806], + [21113,22615], + [21115,7804], + [21117,75611], + [21119,5126], + [21121,9209], + [21123,5378], + [21125,22105], + [21127,4983], + [21129,2263], + [21131,3141], + [21133,7669], + [21135,4818], + [21137,9261], + [21139,3549], + [21141,11362], + [21143,2636], + [21145,27876], + [21147,4896], + [21149,4062], + [21151,39386], + [21153,3411], + [21155,7961], + [21157,13783], + [21159,3586], + [21161,7004], + [21163,10882], + [21165,2163], + [21167,9353], + [21169,4051], + [21171,4331], + [21173,10603], + [21175,4447], + [21177,11615], + [21179,19514], + [21181,3264], + [21183,9159], + [21185,27042], + [21187,5418], + [21189,1181], + [21191,6480], + [21193,9766], + [21195,21948], + [21197,4468], + [21199,24831], + [21201,768], + [21203,6240], + [21205,9807], + [21207,6361], + [21209,23216], + [21211,19900], + [21213,7521], + [21215,8291], + [21217,10355], + [21219,5106], + [21221,5531], + [21223,3561], + [21225,6941], + [21227,52861], + [21229,5471], + [21231,7059], + [21233,5542], + [21235,12346], + [21237,1800], + [21239,13394], + [22001,24233], + [22003,8471], + [22005,49414], + [22007,8902], + [22009,15453], + [22011,13429], + [22013,5324], + [22015,53152], + [22017,107285], + [22019,80851], + [22021,3726], + [22023,3092], + [22025,3792], + [22027,6289], + [22029,7093], + [22031,10392], + [22033,205112], + [22035,2038], + [22037,7427], + [22039,12015], + [22041,7409], + [22043,7864], + [22045,29464], + [22047,12622], + [22049,6568], + [22051,200303], + [22053,12124], + [22055,106487], + [22057,42305], + [22059,6024], + [22061,18533], + [22063,56675], + [22065,3668], + [22067,9385], + [22069,15101], + [22071,148465], + [22073,64888], + [22075,9420], + [22077,9134], + [22079,54349], + [22081,3680], + [22083,7834], + [22085,8970], + [22087,14621], + [22089,23594], + [22091,4097], + [22093,8949], + [22095,19252], + [22097,31015], + [22099,22137], + [22101,22815], + [22103,101906], + [22105,48451], + [22107,1828], + [22109,47617], + [22111,8667], + [22113,23770], + [22115,16958], + [22117,15469], + [22119,15083], + [22121,10986], + [22123,3727], + [22125,4885], + [22127,5270], + [23001,51116], + [23003,31344], + [23005,145846], + [23007,14071], + [23009,27185], + [23011,58135], + [23013,18883], + [23015,15824], + [23017,24935], + [23019,72321], + [23021,7110], + [23023,17940], + [23025,21939], + [23027,18675], + [23029,13332], + [23031,99974], + [24001,31204], + [24003,266347], + [24005,395902], + [24009,44545], + [24011,15810], + [24013,86280], + [24015,47029], + [24017,72812], + [24019,14667], + [24021,119078], + [24023,14404], + [24025,122448], + [24027,151610], + [24029,9693], + [24031,502710], + [24033,443635], + [24035,24232], + [24037,50114], + [24039,8762], + [24041,17857], + [24043,68528], + [24045,45538], + [24047,22942], + [24510,262347], + [25001,100049], + [25003,62255], + [25005,256436], + [25007,8213], + [25009,358078], + [25011,36910], + [25013,198016], + [25015,79451], + [25017,768599], + [25019,5572], + [25021,331584], + [25023,238720], + [25025,363851], + [25027,383083], + [26001,3188], + [26003,3085], + [26005,50551], + [26007,12397], + [26009,8875], + [26011,5810], + [26013,3150], + [26015,26318], + [26017,48347], + [26019,7755], + [26021,67415], + [26023,17507], + [26025,57389], + [26027,21792], + [26029,11483], + [26031,9772], + [26033,15682], + [26035,10592], + [26037,36310], + [26039,4832], + [26041,15898], + [26043,11692], + [26045,51676], + [26047,15839], + [26049,161918], + [26051,8869], + [26053,6281], + [26055,42015], + [26057,17233], + [26059,18577], + [26061,16010], + [26063,14567], + [26065,133197], + [26067,26363], + [26069,8737], + [26071,4661], + [26073,32046], + [26075,65564], + [26077,116657], + [26079,6680], + [26081,284168], + [26083,862], + [26085,3258], + [26087,34587], + [26089,9490], + [26091,43318], + [26093,83600], + [26095,2163], + [26097,4746], + [26099,362380], + [26101,9605], + [26103,31502], + [26105,12733], + [26107,16872], + [26109,10566], + [26111,37196], + [26113,6241], + [26115,66771], + [26117,23888], + [26119,2836], + [26121,66420], + [26123,20078], + [26125,548699], + [26127,11217], + [26129,7767], + [26131,2560], + [26133,8970], + [26135,2667], + [26137,10180], + [26139,126112], + [26141,4751], + [26143,7212], + [26145,79625], + [26147,64934], + [26149,24585], + [26151,16923], + [26153,3280], + [26155,30234], + [26157,22214], + [26159,32687], + [26161,167969], + [26163,678426], + [26165,13023], + [27001,6550], + [27003,172342], + [27005,16210], + [27007,20737], + [27009,19263], + [27011,2722], + [27013,35687], + [27015,14064], + [27017,16304], + [27019,48148], + [27021,12864], + [27023,6628], + [27025,26707], + [27027,32009], + [27029,3988], + [27031,2837], + [27033,5822], + [27035,28983], + [27037,211414], + [27039,10525], + [27041,18471], + [27043,7207], + [27045,10402], + [27047,15767], + [27049,24853], + [27051,3129], + [27053,605294], + [27055,9999], + [27057,8784], + [27059,18583], + [27061,20214], + [27063,5674], + [27065,7800], + [27067,21997], + [27069,2382], + [27071,6336], + [27073,3810], + [27075,5316], + [27077,2134], + [27079,14324], + [27081,3255], + [27083,14375], + [27085,18487], + [27087,2296], + [27089,5170], + [27091,10664], + [27093,11684], + [27095,11695], + [27097,16849], + [27099,19634], + [27101,4678], + [27103,18575], + [27105,10876], + [27107,3355], + [27109,76368], + [27111,28657], + [27113,7639], + [27115,13848], + [27117,4809], + [27119,16019], + [27121,5461], + [27123,249935], + [27125,2187], + [27127,8002], + [27129,8269], + [27131,32264], + [27133,5105], + [27135,8130], + [27137,94990], + [27139,69064], + [27141,44866], + [27143,7836], + [27145,79494], + [27147,19426], + [27149,5238], + [27151,4815], + [27153,12471], + [27155,1764], + [27157,11242], + [27159,5822], + [27161,9786], + [27163,123188], + [27165,5850], + [27167,3613], + [27169,27196], + [27171,64461], + [27173,5508], + [28001,11162], + [28003,13906], + [28005,4385], + [28007,6957], + [28009,2865], + [28011,13212], + [28013,6376], + [28015,3330], + [28017,6989], + [28019,3322], + [28021,2982], + [28023,5776], + [28025,7257], + [28027,9044], + [28029,10622], + [28031,7402], + [28033,73681], + [28035,30756], + [28037,2866], + [28039,7753], + [28041,4034], + [28043,8342], + [28045,17887], + [28047,80951], + [28049,102705], + [28051,5506], + [28053,2882], + [28055,440], + [28057,9188], + [28059,58293], + [28061,6154], + [28063,2007], + [28065,3961], + [28067,25384], + [28069,3330], + [28071,19630], + [28073,25673], + [28075,29541], + [28077,4534], + [28079,8289], + [28081,35112], + [28083,9825], + [28085,12940], + [28087,23046], + [28089,45114], + [28091,9259], + [28093,13626], + [28095,14157], + [28097,4031], + [28099,10579], + [28101,8274], + [28103,3731], + [28105,19478], + [28107,12457], + [28109,21198], + [28111,4004], + [28113,13799], + [28115,12280], + [28117,10235], + [28119,2721], + [28121,66002], + [28123,12469], + [28125,1760], + [28127,10304], + [28129,6650], + [28131,6117], + [28133,8348], + [28135,5166], + [28137,11271], + [28139,7777], + [28141,6817], + [28143,4339], + [28145,10814], + [28147,5060], + [28149,20888], + [28151,17637], + [28153,7589], + [28155,3868], + [28157,2968], + [28159,6597], + [28161,4499], + [28163,8701], + [29001,10124], + [29003,9078], + [29005,2741], + [29007,10068], + [29009,14109], + [29011,5164], + [29013,7474], + [29015,6407], + [29017,5254], + [29019,86588], + [29021,42383], + [29023,16969], + [29025,4124], + [29027,20524], + [29029,17129], + [29031,38022], + [29033,4246], + [29035,2359], + [29037,48217], + [29039,5530], + [29041,3736], + [29043,37420], + [29045,3032], + [29047,114532], + [29049,10002], + [29051,37894], + [29053,7184], + [29055,9439], + [29057,3071], + [29059,6369], + [29061,3617], + [29063,4581], + [29065,5838], + [29067,4612], + [29069,10632], + [29071,47397], + [29073,6943], + [29075,3245], + [29077,132665], + [29079,4450], + [29081,3676], + [29083,9045], + [29085,3213], + [29087,2479], + [29089,4565], + [29091,15218], + [29093,2977], + [29095,322489], + [29097,54018], + [29099,105349], + [29101,21158], + [29103,1851], + [29105,13942], + [29107,15830], + [29109,15925], + [29111,4759], + [29113,23558], + [29115,4766], + [29117,6563], + [29119,9411], + [29121,6789], + [29123,4793], + [29125,3853], + [29127,13427], + [29129,1646], + [29131,10331], + [29133,5518], + [29135,6772], + [29137,3613], + [29139,5374], + [29141,6824], + [29143,7406], + [29145,26175], + [29147,10909], + [29149,3651], + [29151,6951], + [29153,3179], + [29155,6306], + [29157,9122], + [29159,18219], + [29161,18028], + [29163,7433], + [29165,47591], + [29167,12924], + [29169,15240], + [29171,2195], + [29173,5140], + [29175,9547], + [29177,10383], + [29179,2023], + [29181,4700], + [29183,188398], + [29185,3672], + [29186,8436], + [29187,23931], + [29189,487371], + [29195,10004], + [29197,1757], + [29199,2120], + [29201,17161], + [29203,2762], + [29205,2962], + [29207,12186], + [29209,12492], + [29211,2678], + [29213,22447], + [29215,8758], + [29217,8781], + [29219,15364], + [29221,8787], + [29223,4965], + [29225,14660], + [29227,1164], + [29229,6707], + [29510,145959], + [30001,4713], + [30003,4920], + [30005,2354], + [30007,2322], + [30009,4988], + [30011,697], + [30013,35996], + [30015,2618], + [30017,6110], + [30019,913], + [30021,4323], + [30023,4864], + [30025,1840], + [30027,5631], + [30029,38512], + [30031,47316], + [30033,736], + [30035,5648], + [30037,390], + [30039,1323], + [30041,7518], + [30043,5274], + [30045,944], + [30047,11512], + [30049,32427], + [30051,988], + [30053,7167], + [30055,1098], + [30057,3840], + [30059,860], + [30061,1566], + [30063,54244], + [30065,2217], + [30067,7199], + [30069,283], + [30071,2058], + [30073,2780], + [30075,1005], + [30077,2735], + [30079,538], + [30081,17095], + [30083,5545], + [30085,4268], + [30087,4054], + [30089,4345], + [30091,1752], + [30093,15846], + [30095,4484], + [30097,1643], + [30099,2849], + [30101,2336], + [30103,377], + [30105,3719], + [30107,793], + [30109,507], + [30111,71920], + [31001,15713], + [31003,3400], + [31005,208], + [31007,395], + [31009,245], + [31011,2855], + [31013,5561], + [31015,1064], + [31017,1393], + [31019,25429], + [31021,3425], + [31023,4469], + [31025,12649], + [31027,4462], + [31029,2229], + [31031,3285], + [31033,5356], + [31035,3286], + [31037,5436], + [31039,4685], + [31041,5766], + [31043,10470], + [31045,5281], + [31047,12559], + [31049,991], + [31051,2966], + [31053,17855], + [31055,264986], + [31057,1178], + [31059,3119], + [31061,1563], + [31063,1536], + [31065,2571], + [31067,10752], + [31069,1214], + [31071,1165], + [31073,1106], + [31075,405], + [31077,1311], + [31079,30054], + [31081,4625], + [31083,1832], + [31085,618], + [31087,1328], + [31089,5621], + [31091,389], + [31093,3198], + [31095,4050], + [31097,2234], + [31099,3663], + [31101,4390], + [31103,548], + [31105,2024], + [31107,4554], + [31109,155716], + [31111,18524], + [31113,470], + [31115,347], + [31117,343], + [31119,18151], + [31121,4010], + [31123,2542], + [31125,1903], + [31127,3646], + [31129,2341], + [31131,8048], + [31133,1523], + [31135,1710], + [31137,4781], + [31139,4022], + [31141,16910], + [31143,2839], + [31145,5989], + [31147,4058], + [31149,866], + [31151,6946], + [31153,81145], + [31155,10643], + [31157,18144], + [31159,8414], + [31161,2721], + [31163,1660], + [31165,804], + [31167,3438], + [31169,2697], + [31171,377], + [31173,2762], + [31175,2048], + [31177,10716], + [31179,5456], + [31181,1623], + [31183,495], + [31185,7067], + [32001,9814], + [32003,848573], + [32005,19910], + [32007,24828], + [32009,376], + [32011,949], + [32013,7622], + [32015,2777], + [32017,1805], + [32019,18976], + [32021,1999], + [32023,13797], + [32027,2142], + [32029,1676], + [32031,192289], + [32033,4142], + [32510,23100], + [33001,30205], + [33003,23526], + [33005,40262], + [33007,15367], + [33009,46004], + [33011,212243], + [33013,77047], + [33015,162062], + [33017,65627], + [33019,22792], + [34001,123437], + [34003,440196], + [34005,215736], + [34007,235749], + [34009,43042], + [34011,63172], + [34013,340642], + [34015,136891], + [34017,318935], + [34019,63242], + [34021,176545], + [34023,386570], + [34025,301595], + [34027,245198], + [34029,237500], + [34031,224458], + [34033,28379], + [34035,160296], + [34037,74494], + [34039,252557], + [34041,52822], + [35001,301358], + [35003,1070], + [35005,25927], + [35006,8431], + [35007,5830], + [35009,20428], + [35011,783], + [35013,86337], + [35015,24015], + [35017,11156], + [35019,1485], + [35021,277], + [35023,2105], + [35025,24223], + [35027,8682], + [35028,9113], + [35029,9327], + [35031,22929], + [35033,2134], + [35035,23170], + [35037,3171], + [35039,16358], + [35041,7883], + [35043,55793], + [35045,49713], + [35047,10131], + [35049,69245], + [35051,3656], + [35053,6340], + [35055,13757], + [35057,5331], + [35059,1809], + [35061,28187], + [36001,150264], + [36003,22022], + [36005,512477], + [36007,89316], + [36009,35881], + [36011,36480], + [36013,58262], + [36015,38105], + [36017,21509], + [36019,35809], + [36021,29789], + [36023,22304], + [36025,20465], + [36027,137679], + [36029,426962], + [36031,17021], + [36033,20249], + [36035,23337], + [36037,29189], + [36039,20097], + [36041,2256], + [36043,28841], + [36045,45638], + [36047,1047981], + [36049,11592], + [36051,30104], + [36053,32631], + [36055,347846], + [36057,21507], + [36059,642118], + [36061,805555], + [36063,97467], + [36065,103684], + [36067,217970], + [36069,52176], + [36071,166830], + [36073,17314], + [36075,52618], + [36077,29469], + [36079,48807], + [36081,1011049], + [36083,78045], + [36085,196490], + [36087,138804], + [36089,44802], + [36091,109910], + [36093,72974], + [36095,14504], + [36097,8220], + [36099,15078], + [36101,42780], + [36103,717598], + [36105,33226], + [36107,24448], + [36109,51397], + [36111,86310], + [36113,31082], + [36115,27741], + [36117,43227], + [36119,443476], + [36121,17616], + [36123,11327], + [37001,68451], + [37003,15877], + [37005,4179], + [37007,9602], + [37009,12100], + [37011,7089], + [37013,18692], + [37015,8108], + [37017,13169], + [37019,40701], + [37021,113096], + [37023,36305], + [37025,78773], + [37027,32542], + [37029,4209], + [37031,28373], + [37033,8737], + [37035,67726], + [37037,28039], + [37039,10150], + [37041,5413], + [37043,3712], + [37045,38893], + [37047,20943], + [37049,37743], + [37051,117827], + [37053,11104], + [37055,17300], + [37057,70703], + [37059,17878], + [37061,23416], + [37063,131592], + [37065,21486], + [37067,155453], + [37069,24907], + [37071,87571], + [37073,5025], + [37075,3052], + [37077,24716], + [37079,8474], + [37081,224039], + [37083,19435], + [37085,43251], + [37087,24762], + [37089,43901], + [37091,8787], + [37093,16695], + [37095,1987], + [37097,68532], + [37099,16422], + [37101,73591], + [37103,4083], + [37105,23633], + [37107,23686], + [37109,34893], + [37111,17864], + [37113,13679], + [37115,8415], + [37117,9144], + [37119,448844], + [37121,5964], + [37123,10032], + [37125,32650], + [37127,41495], + [37129,97140], + [37131,7690], + [37133,58102], + [37135,65345], + [37137,4941], + [37139,16657], + [37141,21650], + [37143,4766], + [37145,16386], + [37147,77174], + [37149,7692], + [37151,61084], + [37153,16113], + [37155,46478], + [37157,38369], + [37159,55278], + [37161,22464], + [37163,26703], + [37165,10789], + [37167,25232], + [37169,20244], + [37171,30290], + [37173,5345], + [37175,12456], + [37177,1414], + [37179,91016], + [37181,16332], + [37183,440710], + [37185,6514], + [37187,4880], + [37189,24773], + [37191,49787], + [37193,26905], + [37195,32918], + [37197,16203], + [37199,6884], + [38001,1167], + [38003,5911], + [38005,2757], + [38007,412], + [38009,3262], + [38011,1726], + [38013,1099], + [38015,44662], + [38017,85680], + [38019,2191], + [38021,2764], + [38023,1354], + [38025,2227], + [38027,1235], + [38029,1700], + [38031,1740], + [38033,956], + [38035,36549], + [38037,1370], + [38039,1281], + [38041,1434], + [38043,1333], + [38045,2393], + [38047,965], + [38049,3125], + [38051,1283], + [38053,3508], + [38055,4844], + [38057,4098], + [38059,15263], + [38061,5366], + [38063,1623], + [38065,874], + [38067,3768], + [38069,1891], + [38071,5812], + [38073,2725], + [38075,1418], + [38077,8712], + [38079,4715], + [38081,1957], + [38083,779], + [38085,1241], + [38087,459], + [38089,14142], + [38091,1070], + [38093,10797], + [38095,1358], + [38097,4393], + [38099,5905], + [38101,30436], + [38103,2235], + [38105,14091], + [39001,9986], + [39003,46442], + [39005,23460], + [39007,42139], + [39009,25591], + [39011,22099], + [39013,29682], + [39015,18315], + [39017,171600], + [39019,12504], + [39021,17673], + [39023,60736], + [39025,93967], + [39027,15973], + [39029,46218], + [39031,15259], + [39033,18266], + [39035,577866], + [39037,24008], + [39039,17539], + [39041,87407], + [39043,35632], + [39045,67429], + [39047,12951], + [39049,571204], + [39051,20405], + [39053,11981], + [39055,45609], + [39057,74255], + [39059,16452], + [39061,372982], + [39063,36778], + [39065,13745], + [39067,6337], + [39069,12725], + [39071,15869], + [39073,12399], + [39075,17819], + [39077,26289], + [39079,12513], + [39081,28517], + [39083,27924], + [39085,116301], + [39087,24854], + [39089,79133], + [39091,20589], + [39093,137293], + [39095,192330], + [39097,18800], + [39099,101612], + [39101,26938], + [39103,87055], + [39105,8580], + [39107,20435], + [39109,48365], + [39111,5858], + [39113,235205], + [39115,5949], + [39117,15334], + [39119,36417], + [39121,4387], + [39123,19881], + [39125,8477], + [39127,14414], + [39129,23338], + [39131,9868], + [39133,81357], + [39135,19917], + [39137,17531], + [39139,51908], + [39141,30016], + [39143,29627], + [39145,28260], + [39147,25942], + [39149,21866], + [39151,170218], + [39153,251683], + [39155,86624], + [39157,40889], + [39159,24421], + [39161,13147], + [39163,5015], + [39165,100188], + [39167,26397], + [39169,54546], + [39171,16967], + [39173,61753], + [39175,10824], + [40001,7969], + [40003,2375], + [40005,4601], + [40007,2774], + [40009,9743], + [40011,4186], + [40013,17362], + [40015,11011], + [40017,56985], + [40019,19683], + [40021,17975], + [40023,5566], + [40025,1406], + [40027,124196], + [40029,2085], + [40031,48534], + [40033,2808], + [40035,6150], + [40037,29076], + [40039,13426], + [40041,15810], + [40043,2189], + [40045,1951], + [40047,26947], + [40049,11248], + [40051,23741], + [40053,2458], + [40055,2023], + [40057,1237], + [40059,1782], + [40061,4321], + [40063,4964], + [40065,10787], + [40067,2479], + [40069,3359], + [40071,19007], + [40073,7006], + [40075,4056], + [40077,4115], + [40079,18804], + [40081,14635], + [40083,18684], + [40085,4500], + [40087,16223], + [40089,12882], + [40091,6592], + [40093,3743], + [40095,6043], + [40097,16516], + [40099,5929], + [40101,27410], + [40103,4894], + [40105,4449], + [40107,3928], + [40109,332486], + [40111,15235], + [40113,19601], + [40115,13386], + [40117,6975], + [40119,34758], + [40121,17385], + [40123,16637], + [40125,28845], + [40127,4495], + [40129,1715], + [40131,40402], + [40133,8974], + [40135,16363], + [40137,18420], + [40139,8181], + [40141,3195], + [40143,285120], + [40145,32877], + [40147,22522], + [40149,5127], + [40151,4107], + [40153,8710], + [41001,6606], + [41003,41873], + [41005,182280], + [41007,17174], + [41009,20599], + [41011,24215], + [41013,8055], + [41015,8209], + [41017,69995], + [41019,41184], + [41021,873], + [41023,2933], + [41025,3290], + [41027,13023], + [41029,88392], + [41031,8314], + [41033,29652], + [41035,27186], + [41037,3219], + [41039,158655], + [41041,19679], + [41043,49751], + [41045,12172], + [41047,138026], + [41049,5194], + [41051,378511], + [41053,32848], + [41055,799], + [41057,10538], + [41059,32916], + [41061,11196], + [41063,3053], + [41065,12375], + [41067,263707], + [41069,703], + [41071,45885], + [42001,50374], + [42003,587878], + [42005,30578], + [42007,78261], + [42009,22810], + [42011,191914], + [42013,56831], + [42015,28590], + [42017,311416], + [42019,88723], + [42021,60459], + [42023,2233], + [42025,28427], + [42027,72738], + [42029,252693], + [42031,17571], + [42033,34101], + [42035,16987], + [42037,31496], + [42039,37748], + [42041,115938], + [42043,129288], + [42045,263281], + [42047,15075], + [42049,123672], + [42051,53133], + [42053,1911], + [42055,69255], + [42057,6522], + [42059,15954], + [42061,18851], + [42063,40250], + [42065,19429], + [42067,11126], + [42069,97405], + [42071,247920], + [42073,39153], + [42075,64825], + [42077,160908], + [42079,143863], + [42081,54171], + [42083,18031], + [42085,48517], + [42087,19086], + [42089,74676], + [42091,400485], + [42093,8469], + [42095,138549], + [42097,40859], + [42099,22965], + [42101,615059], + [42103,23580], + [42105,6991], + [42107,63196], + [42109,18424], + [42111,33593], + [42113,2723], + [42115,19737], + [42117,18516], + [42119,17711], + [42121,24182], + [42123,19170], + [42125,96763], + [42127,21699], + [42129,170021], + [42131,13077], + [42133,211054], + [44001,24336], + [44003,83788], + [44005,40560], + [44007,290181], + [44009,64351], + [45001,9439], + [45003,65639], + [45005,2685], + [45007,75380], + [45009,5460], + [45011,7913], + [45013,59684], + [45015,74452], + [45017,6178], + [45019,163111], + [45021,19956], + [45023,11860], + [45025,18229], + [45027,11937], + [45029,14513], + [45031,26555], + [45033,11783], + [45035,59321], + [45037,9893], + [45039,9113], + [45041,56905], + [45043,22271], + [45045,199005], + [45047,28091], + [45049,7659], + [45051,114859], + [45053,9823], + [45055,24898], + [45057,28955], + [45059,26481], + [45061,5826], + [45063,122033], + [45065,3115], + [45067,11774], + [45069,8567], + [45071,16571], + [45073,29522], + [45075,33722], + [45077,48509], + [45079,167558], + [45081,7813], + [45083,116205], + [45085,38887], + [45087,10202], + [45089,11048], + [45091,101643], + [46003,1618], + [46005,9033], + [46007,1109], + [46009,3055], + [46011,17013], + [46013,20078], + [46015,2632], + [46017,615], + [46019,4851], + [46021,868], + [46023,3941], + [46025,1874], + [46027,7075], + [46029,14272], + [46031,1435], + [46033,3832], + [46035,10438], + [46037,2868], + [46039,2311], + [46041,2006], + [46043,1683], + [46045,2309], + [46047,3059], + [46049,1128], + [46051,4573], + [46053,2086], + [46055,1085], + [46057,2976], + [46059,1841], + [46061,1675], + [46063,768], + [46065,9701], + [46067,3652], + [46069,765], + [46071,1298], + [46073,1154], + [46075,657], + [46077,2713], + [46079,5810], + [46081,12534], + [46083,25287], + [46085,1821], + [46087,3081], + [46089,1148], + [46091,2334], + [46093,12457], + [46095,817], + [46097,1302], + [46099,94240], + [46101,3863], + [46102,"NA"], + [46103,50081], + [46105,1545], + [46107,1214], + [46109,4757], + [46111,1289], + [46115,3456], + [46117,1881], + [46119,854], + [46121,3126], + [46123,3165], + [46125,4629], + [46127,7295], + [46129,2229], + [46135,10868], + [46137,993], + [47001,31675], + [47003,18436], + [47005,6314], + [47007,3879], + [47009,55826], + [47011,42086], + [47013,14115], + [47015,5405], + [47017,11813], + [47019,23359], + [47021,18400], + [47023,7529], + [47025,12149], + [47027,2912], + [47029,13717], + [47031,21647], + [47033,6434], + [47035,20605], + [47037,314469], + [47039,4603], + [47041,7206], + [47043,21512], + [47045,15676], + [47047,16959], + [47049,6489], + [47051,17357], + [47053,20890], + [47055,12525], + [47057,8760], + [47059,27011], + [47061,4923], + [47063,25120], + [47065,154963], + [47067,2168], + [47069,8981], + [47071,10053], + [47073,22782], + [47075,7561], + [47077,11146], + [47079,12820], + [47081,9757], + [47083,3112], + [47085,7890], + [47087,4184], + [47089,21612], + [47091,6491], + [47093,212757], + [47095,1934], + [47097,9251], + [47099,16962], + [47101,4595], + [47103,14581], + [47105,20280], + [47107,19978], + [47109,9149], + [47111,9095], + [47113,43363], + [47115,11145], + [47117,12382], + [47119,36374], + [47121,4320], + [47123,17014], + [47125,69181], + [47127,3000], + [47129,7448], + [47131,14050], + [47133,9151], + [47135,2738], + [47137,2139], + [47139,6514], + [47141,30819], + [47143,11892], + [47145,22089], + [47147,30654], + [47149,127797], + [47151,7680], + [47153,5364], + [47155,43961], + [47157,405047], + [47159,7838], + [47161,4966], + [47163,66974], + [47165,75868], + [47167,25761], + [47169,3336], + [47171,6973], + [47173,6927], + [47175,2033], + [47177,15815], + [47179,55393], + [47181,6144], + [47183,15072], + [47185,11036], + [47187,88285], + [47189,53617], + [48001,19956], + [48003,6681], + [48005,34825], + [48007,8796], + [48009,4295], + [48011,962], + [48013,18030], + [48015,12801], + [48017,3001], + [48019,8460], + [48021,32382], + [48023,1611], + [48025,9582], + [48027,121669], + [48029,753313], + [48031,5096], + [48033,334], + [48035,7706], + [48037,38648], + [48039,142043], + [48041,93723], + [48043,4644], + [48045,689], + [48047,2282], + [48049,15084], + [48051,7251], + [48053,18915], + [48055,15225], + [48057,9285], + [48059,5566], + [48061,144171], + [48063,5181], + [48065,3171], + [48067,11844], + [48069,3915], + [48071,14999], + [48073,19961], + [48075,2979], + [48077,5124], + [48079,1400], + [48081,1479], + [48083,3168], + [48085,394597], + [48087,1266], + [48089,8816], + [48091,49723], + [48093,5570], + [48095,1476], + [48097,18119], + [48099,23441], + [48101,622], + [48103,1681], + [48105,1575], + [48107,2716], + [48109,959], + [48111,3673], + [48113,1091493], + [48115,4741], + [48117,8957], + [48119,2391], + [48121,342972], + [48123,8371], + [48125,773], + [48127,3450], + [48129,1685], + [48131,4453], + [48133,7412], + [48135,62525], + [48137,963], + [48139,69611], + [48141,309629], + [48143,19179], + [48145,6626], + [48147,14092], + [48149,11295], + [48151,1790], + [48153,3105], + [48155,618], + [48157,275453], + [48159,4397], + [48161,7478], + [48163,7031], + [48165,7464], + [48167,133867], + [48169,2017], + [48171,11533], + [48173,670], + [48175,3108], + [48177,8670], + [48179,8485], + [48181,54620], + [48183,55568], + [48185,10312], + [48187,60560], + [48189,14982], + [48191,1292], + [48193,3671], + [48195,2899], + [48197,1780], + [48199,23282], + [48201,1892849], + [48203,27934], + [48205,2583], + [48207,2831], + [48209,74737], + [48211,2046], + [48213,31691], + [48215,280884], + [48217,14604], + [48219,10252], + [48221,21363], + [48223,15386], + [48225,9730], + [48227,12275], + [48229,1301], + [48231,34732], + [48233,8887], + [48235,827], + [48237,3377], + [48239,6629], + [48241,13004], + [48243,1210], + [48245,100371], + [48247,2089], + [48249,16437], + [48251,65703], + [48253,5621], + [48255,4427], + [48257,46496], + [48259,15391], + [48261,204], + [48263,532], + [48265,20457], + [48267,2140], + [48269,266], + [48271,1128], + [48273,13774], + [48275,1797], + [48277,21135], + [48279,6283], + [48281,8379], + [48283,2479], + [48285,9033], + [48287,7631], + [48289,6620], + [48291,27040], + [48293,9155], + [48295,1567], + [48297,4292], + [48299,7350], + [48301,67], + [48303,134372], + [48305,2867], + [48307,3810], + [48309,104593], + [48311,466], + [48313,4353], + [48315,3972], + [48317,2064], + [48319,1866], + [48321,16075], + [48323,19959], + [48325,18509], + [48327,930], + [48329,67155], + [48331,9362], + [48333,2051], + [48335,2727], + [48337,8670], + [48339,207496], + [48341,10930], + [48343,4975], + [48345,585], + [48347,28593], + [48349,20878], + [48351,5185], + [48353,6781], + [48355,149312], + [48357,4580], + [48359,917], + [48361,33983], + [48363,12111], + [48365,10373], + [48367,52113], + [48369,5117], + [48371,6653], + [48373,15861], + [48375,54385], + [48377,3052], + [48379,4712], + [48381,62819], + [48383,1806], + [48385,1033], + [48387,4936], + [48389,5239], + [48391,3037], + [48393,454], + [48395,6865], + [48397,36524], + [48399,4702], + [48401,22091], + [48403,3058], + [48405,2779], + [48407,10110], + [48409,27243], + [48411,2401], + [48413,1510], + [48415,6619], + [48417,1798], + [48419,10837], + [48421,1484], + [48423,93110], + [48425,3721], + [48427,21565], + [48429,3928], + [48431,643], + [48433,703], + [48435,1799], + [48437,2973], + [48439,849576], + [48441,59931], + [48443,467], + [48445,5328], + [48447,824], + [48449,12795], + [48451,49149], + [48453,536660], + [48455,5232], + [48457,6973], + [48459,16675], + [48461,1457], + [48463,10769], + [48465,18704], + [48467,21620], + [48469,39778], + [48471,21436], + [48473,18234], + [48475,4239], + [48477,14439], + [48479,96364], + [48481,19431], + [48483,2565], + [48485,54681], + [48487,5657], + [48489,6656], + [48491,206458], + [48493,19785], + [48495,2632], + [48497,25269], + [48499,15432], + [48501,3433], + [48503,7982], + [48505,5162], + [48507,3924], + [49001,2843], + [49003,21640], + [49005,53768], + [49007,9057], + [49009,459], + [49011,136698], + [49013,7385], + [49015,4906], + [49017,2760], + [49019,4764], + [49021,18457], + [49023,4191], + [49025,3278], + [49027,6023], + [49029,3980], + [49031,514], + [49033,964], + [49035,506309], + [49037,5424], + [49039,10426], + [49041,8917], + [49043,19313], + [49045,25163], + [49047,13896], + [49049,212729], + [49051,10405], + [49053,50821], + [49055,1441], + [49057,103288], + [50001,20005], + [50003,18932], + [50005,15649], + [50007,90040], + [50009,2855], + [50011,26107], + [50013,3848], + [50015,13392], + [50017,15743], + [50019,12948], + [50021,31105], + [50023,33049], + [50025,23873], + [50027,29942], + [51001,15479], + [51003,47937], + [51005,7264], + [51007,5699], + [51009,15030], + [51011,6711], + [51013,131701], + [51015,34481], + [51017,2320], + [51019,36302], + [51021,2646], + [51023,16559], + [51025,6168], + [51027,7497], + [51029,5868], + [51031,25614], + [51033,12972], + [51035,12388], + [51036,3527], + [51037,4820], + [51041,156307], + [51043,7181], + [51045,2247], + [51047,21591], + [51049,4141], + [51051,4934], + [51053,12367], + [51057,5196], + [51059,579499], + [51061,33552], + [51063,7567], + [51065,12253], + [51067,25216], + [51069,38832], + [51071,7507], + [51073,18219], + [51075,9733], + [51077,6455], + [51079,9007], + [51081,4124], + [51083,14651], + [51085,50855], + [51087,155452], + [51089,20467], + [51091,1355], + [51093,17458], + [51095,30205], + [51097,3302], + [51099,10573], + [51101,8011], + [51103,5024], + [51105,9325], + [51107,166487], + [51109,16513], + [51111,5020], + [51113,6717], + [51115,3956], + [51117,12552], + [51119,4789], + [51121,44140], + [51125,7034], + [51127,9550], + [51131,5799], + [51133,5617], + [51135,6338], + [51137,14178], + [51139,10900], + [51141,7265], + [51143,27543], + [51145,12557], + [51147,9284], + [51149,12838], + [51153,205097], + [51155,15091], + [51157,3771], + [51159,4058], + [51161,46137], + [51163,10303], + [51165,37656], + [51167,10844], + [51169,9219], + [51171,19117], + [51173,12046], + [51175,8679], + [51177,58922], + [51179,59748], + [51181,3363], + [51183,3792], + [51185,16779], + [51187,18480], + [51191,25239], + [51193,8436], + [51195,15561], + [51197,12687], + [51199,29377], + [51510,85915], + [51520,7274], + [51530,2925], + [51540,21790], + [51550,105173], + [51570,7828], + [51580,2403], + [51590,17390], + [51595,2251], + [51600,11974], + [51610,7022], + [51620,3241], + [51630,11304], + [51640,2825], + [51650,60687], + [51660,21250], + [51670,8721], + [51678,2086], + [51680,32798], + [51683,19503], + [51685,7563], + [51690,5066], + [51700,83104], + [51710,102606], + [51720,1928], + [51730,11939], + [51735,6007], + [51740,41102], + [51750,7060], + [51760,96347], + [51770,45022], + [51775,11910], + [51790,10920], + [51800,38581], + [51810,212145], + [51820,9255], + [51830,5856], + [51840,12551], + [53001,7555], + [53003,9361], + [53005,86846], + [53007,38353], + [53009,26352], + [53011,188628], + [53013,1774], + [53015,40435], + [53017,17945], + [53019,2181], + [53021,34884], + [53023,973], + [53025,38522], + [53027,26723], + [53029,30665], + [53031,11436], + [53033,1006061], + [53035,110230], + [53037,19221], + [53039,9069], + [53041,29503], + [53043,4880], + [53045,21963], + [53047,19950], + [53049,7557], + [53051,4359], + [53053,354576], + [53055,7831], + [53057,52658], + [53059,4514], + [53061,345332], + [53063,214109], + [53065,16603], + [53067,115550], + [53069,1247], + [53071,28085], + [53073,94467], + [53075,20977], + [53077,109168], + [54001,6180], + [54003,46642], + [54005,8035], + [54007,5056], + [54009,9672], + [54011,40164], + [54013,2499], + [54015,3131], + [54017,3078], + [54019,15817], + [54021,2528], + [54023,5525], + [54025,14080], + [54027,8877], + [54029,12456], + [54031,5048], + [54033,28872], + [54035,10911], + [54037,25077], + [54039,85765], + [54041,6376], + [54043,6948], + [54045,11404], + [54047,5521], + [54049,24703], + [54051,13261], + [54053,9980], + [54055,22035], + [54057,11208], + [54059,8266], + [54061,45653], + [54063,5303], + [54065,6975], + [54067,9841], + [54069,20093], + [54071,3343], + [54073,2627], + [54075,3363], + [54077,13687], + [54079,24389], + [54081,29824], + [54083,10927], + [54085,3878], + [54087,4759], + [54089,4330], + [54091,6872], + [54093,2937], + [54095,3145], + [54097,9409], + [54099,15493], + [54101,3360], + [54103,6193], + [54105,2005], + [54107,35850], + [54109,7540], + [55001,8005], + [55003,7478], + [55005,21586], + [55007,6836], + [55009,126336], + [55011,6639], + [55013,6737], + [55015,25420], + [55017,30385], + [55019,15479], + [55021,29361], + [55023,7489], + [55025,275823], + [55027,43073], + [55029,13985], + [55031,21760], + [55033,21409], + [55035,53138], + [55037,2014], + [55039,51716], + [55041,3755], + [55043,25663], + [55045,19573], + [55047,9347], + [55049,12636], + [55051,2554], + [55053,9238], + [55055,42415], + [55057,12331], + [55059,77001], + [55061,10262], + [55063,61238], + [55065,8810], + [55067,9062], + [55069,13888], + [55071,40203], + [55073,66692], + [55075,19013], + [55077,6855], + [55078,1279], + [55079,428841], + [55081,21282], + [55083,19042], + [55085,17123], + [55087,92455], + [55089,44057], + [55091,3790], + [55093,22317], + [55095,21654], + [55097,36670], + [55099,6736], + [55101,90122], + [55103,8764], + [55105,73384], + [55107,6264], + [55109,43468], + [55111,32832], + [55113,7446], + [55115,19645], + [55117,56457], + [55119,10273], + [55121,14777], + [55123,13966], + [55125,9176], + [55127,51277], + [55129,7262], + [55131,69492], + [55133,202000], + [55135,25123], + [55137,10731], + [55139,85227], + [55141,36256], + [56001,20425], + [56003,5255], + [56005,24709], + [56007,7698], + [56009,7155], + [56011,3715], + [56013,19514], + [56015,7132], + [56017,2435], + [56019,4226], + [56021,43092], + [56023,7947], + [56025,37110], + [56027,1323], + [56029,14876], + [56031,4690], + [56033,14951], + [56035,5358], + [56037,21608], + [56039,12569], + [56041,9815], + [56043,4318], + [56045,3822] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2011.json b/data/regional/united-states/economics/employment/us-employment-total-2011.json new file mode 100644 index 0000000..a1d121d --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2011.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2011", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2011"], + [1001,23677], + [1003,77418], + [1005,8712], + [1007,7996], + [1009,22939], + [1011,4272], + [1013,8042], + [1015,45963], + [1017,13380], + [1019,10364], + [1021,17753], + [1023,4138], + [1025,7181], + [1027,4935], + [1029,5365], + [1031,19059], + [1033,21905], + [1035,4057], + [1037,3918], + [1039,14764], + [1041,5798], + [1043,32279], + [1045,20188], + [1047,14866], + [1049,26279], + [1051,33521], + [1053,13355], + [1055,40238], + [1057,5896], + [1059,12986], + [1061,10429], + [1063,2668], + [1065,5426], + [1067,6563], + [1069,42747], + [1071,21682], + [1073,289916], + [1075,5260], + [1077,40026], + [1079,13177], + [1081,62812], + [1083,35631], + [1085,3489], + [1087,7317], + [1089,157512], + [1091,6884], + [1093,11149], + [1095,37216], + [1097,172971], + [1099,7017], + [1101,98491], + [1103,52810], + [1105,3227], + [1107,6663], + [1109,14070], + [1111,8374], + [1113,22077], + [1115,35135], + [1117,97727], + [1119,4829], + [1121,31192], + [1123,16266], + [1125,87532], + [1127,24034], + [1129,6070], + [1131,2289], + [1133,8492], + [2013,2048], + [2016,4007], + [2020,149542], + [2050,6137], + [2060,472], + [2068,879], + [2070,1883], + [2090,45238], + [2100,1050], + [2105,933], + [2110,16913], + [2122,24675], + [2130,6560], + [2150,6281], + [2158,"NA"], + [2164,542], + [2170,39390], + [2180,3619], + [2185,3690], + [2188,2524], + [2195,1701], + [2198,2254], + [2220,4348], + [2230,600], + [2240,2804], + [2261,4449], + [2275,972], + [2282,269], + [2290,2208], + [4001,18788], + [4003,50589], + [4005,64846], + [4007,18725], + [4009,12916], + [4011,2982], + [4012,7057], + [4013,1732510], + [4015,69823], + [4017,36914], + [4019,427335], + [4021,135043], + [4023,17311], + [4025,83953], + [4027,69677], + [5001,9297], + [5003,8780], + [5005,15061], + [5007,102441], + [5009,15367], + [5011,3988], + [5013,2385], + [5015,11964], + [5017,3718], + [5019,9261], + [5021,6419], + [5023,9579], + [5025,3554], + [5027,9401], + [5029,8145], + [5031,45556], + [5033,25539], + [5035,20293], + [5037,8092], + [5039,2908], + [5041,5464], + [5043,7651], + [5045,55206], + [5047,7201], + [5049,4729], + [5051,38127], + [5053,7928], + [5055,18189], + [5057,10049], + [5059,13320], + [5061,6240], + [5063,15149], + [5065,4713], + [5067,5935], + [5069,29978], + [5071,10256], + [5073,2716], + [5075,6731], + [5077,3326], + [5079,4335], + [5081,5662], + [5083,8790], + [5085,31123], + [5087,6753], + [5089,6120], + [5091,19484], + [5093,18454], + [5095,3067], + [5097,3470], + [5099,3784], + [5101,3518], + [5103,9900], + [5105,4098], + [5107,7421], + [5109,4186], + [5111,9783], + [5113,8226], + [5115,28125], + [5117,3596], + [5119,175884], + [5121,6375], + [5123,8729], + [5125,50604], + [5127,4489], + [5129,3030], + [5131,54442], + [5133,5812], + [5135,5619], + [5137,4919], + [5139,15187], + [5141,6010], + [5143,98216], + [5145,33580], + [5147,3179], + [5149,8886], + [6001,707381], + [6003,517], + [6005,13040], + [6007,86891], + [6009,17769], + [6011,8959], + [6013,475011], + [6015,9446], + [6017,79188], + [6019,370224], + [6021,11124], + [6023,58228], + [6025,56524], + [6027,8741], + [6029,325712], + [6031,49718], + [6033,25310], + [6035,10190], + [6037,4327923], + [6039,51990], + [6041,124801], + [6043,7520], + [6045,36284], + [6047,94500], + [6049,3042], + [6051,7944], + [6053,189146], + [6055,63846], + [6057,43590], + [6059,1406411], + [6061,154923], + [6063,7326], + [6065,849635], + [6067,597683], + [6069,24179], + [6071,774166], + [6073,1367250], + [6075,454861], + [6077,260997], + [6079,121509], + [6081,369827], + [6083,193023], + [6085,852426], + [6087,122865], + [6089,64762], + [6091,1363], + [6093,16134], + [6095,177619], + [6097,220958], + [6099,202360], + [6101,37596], + [6103,21744], + [6105,4486], + [6107,168687], + [6109,19440], + [6111,387495], + [6113,89818], + [6115,24035], + [8001,212931], + [8003,6942], + [8005,292867], + [8007,5169], + [8009,1969], + [8011,1770], + [8013,160904], + [8014,29539], + [8015,7702], + [8017,1006], + [8019,5094], + [8021,3338], + [8023,1397], + [8025,1356], + [8027,1889], + [8029,12905], + [8031,321953], + [8033,826], + [8035,148154], + [8037,29624], + [8039,11724], + [8041,279542], + [8043,14005], + [8045,28404], + [8047,3033], + [8049,8087], + [8051,9336], + [8053,449], + [8055,2298], + [8057,839], + [8059,278353], + [8061,794], + [8063,4065], + [8065,3936], + [8067,27408], + [8069,158704], + [8071,6208], + [8073,2054], + [8075,10388], + [8077,67738], + [8079,403], + [8081,7130], + [8083,11850], + [8085,17805], + [8087,14040], + [8089,7629], + [8091,1817], + [8093,8683], + [8095,2039], + [8097,10072], + [8099,5829], + [8101,67211], + [8103,2874], + [8105,4519], + [8107,13111], + [8109,2679], + [8111,461], + [8113,4492], + [8115,1009], + [8117,18003], + [8119,11024], + [8121,2448], + [8123,122737], + [8125,4701], + [9001,438961], + [9003,434994], + [9005,99225], + [9007,86309], + [9009,417656], + [9011,131017], + [9013,79572], + [9015,58232], + [10001,67970], + [10003,257163], + [10005,84953], + [11001,315171], + [12001,119251], + [12003,10333], + [12005,78311], + [12007,10462], + [12009,236336], + [12011,861686], + [12013,4698], + [12015,58308], + [12017,45546], + [12019,87408], + [12021,133729], + [12023,25337], + [12027,12447], + [12029,5047], + [12031,409556], + [12033,127131], + [12035,37167], + [12037,4665], + [12039,17342], + [12041,6151], + [12043,4788], + [12045,5638], + [12047,4389], + [12049,10718], + [12051,15482], + [12053,57925], + [12055,33773], + [12057,598119], + [12059,6488], + [12061,54097], + [12063,16531], + [12065,5323], + [12067,3409], + [12069,119672], + [12071,255884], + [12073,138321], + [12075,15125], + [12077,2600], + [12079,7303], + [12081,133384], + [12083,114905], + [12085,60208], + [12086,1137041], + [12087,39791], + [12089,32556], + [12091,83806], + [12093,15695], + [12095,579251], + [12097,124469], + [12099,587173], + [12101,184347], + [12103,418950], + [12105,245740], + [12107,25968], + [12109,93552], + [12111,112473], + [12113,66399], + [12115,149796], + [12117,208447], + [12119,22876], + [12121,17125], + [12123,8493], + [12125,4754], + [12127,211132], + [12129,13398], + [12131,24050], + [12133,9369], + [13001,7778], + [13003,3047], + [13005,4035], + [13007,1036], + [13009,16054], + [13011,7720], + [13013,31174], + [13015,42279], + [13017,5279], + [13019,6886], + [13021,63035], + [13023,4759], + [13025,6480], + [13027,6359], + [13029,13344], + [13031,29978], + [13033,8690], + [13035,9270], + [13037,2310], + [13039,19133], + [13043,4549], + [13045,46021], + [13047,29433], + [13049,4437], + [13051,116650], + [13053,2095], + [13055,9411], + [13057,104542], + [13059,51856], + [13061,935], + [13063,109948], + [13065,2572], + [13067,350725], + [13069,15336], + [13071,19217], + [13073,58667], + [13075,6746], + [13077,59123], + [13079,5181], + [13081,7923], + [13083,7697], + [13085,9779], + [13087,10619], + [13089,327936], + [13091,7274], + [13093,4164], + [13095,36235], + [13097,59707], + [13099,3938], + [13101,1727], + [13103,23251], + [13105,7378], + [13107,7944], + [13109,4370], + [13111,9113], + [13113,48960], + [13115,39440], + [13117,84314], + [13119,8566], + [13121,448034], + [13123,10917], + [13125,1193], + [13127,34267], + [13129,23198], + [13131,9817], + [13133,5592], + [13135,389936], + [13137,16411], + [13139,79953], + [13141,2375], + [13143,10833], + [13145,15184], + [13147,9898], + [13149,4584], + [13151,92085], + [13153,62512], + [13155,3054], + [13157,26135], + [13159,6047], + [13161,5692], + [13163,6177], + [13165,2746], + [13167,3703], + [13169,12544], + [13171,7002], + [13173,3536], + [13175,17493], + [13177,13119], + [13179,25015], + [13181,3216], + [13183,5809], + [13185,46277], + [13187,13429], + [13189,8150], + [13191,5530], + [13193,4550], + [13195,11885], + [13197,3297], + [13199,8009], + [13201,2486], + [13205,8568], + [13207,11503], + [13209,3397], + [13211,7771], + [13213,14692], + [13215,74559], + [13217,42424], + [13219,15727], + [13221,6319], + [13223,67219], + [13225,11189], + [13227,12582], + [13229,7236], + [13231,7577], + [13233,16532], + [13235,4055], + [13237,7541], + [13239,879], + [13241,6163], + [13243,2569], + [13245,78559], + [13247,37516], + [13249,1914], + [13251,4857], + [13253,2860], + [13255,24569], + [13257,10340], + [13259,2108], + [13261,12183], + [13263,2611], + [13265,521], + [13267,9005], + [13269,2720], + [13271,4583], + [13273,3388], + [13275,16437], + [13277,16652], + [13279,10766], + [13281,3811], + [13283,2592], + [13285,30705], + [13287,3084], + [13289,2751], + [13291,8517], + [13293,10621], + [13295,28025], + [13297,36929], + [13299,13556], + [13301,2209], + [13303,7082], + [13305,10985], + [13307,945], + [13309,1690], + [13311,11861], + [13313,41846], + [13315,2558], + [13317,3384], + [13319,3288], + [13321,8669], + [15001,79952], + [15003,429374], + [15005,"NA"], + [15007,31869], + [15009,74125], + [16001,185482], + [16003,1432], + [16005,37956], + [16007,2743], + [16009,3597], + [16011,21207], + [16013,10840], + [16015,2746], + [16017,16685], + [16019,45896], + [16021,4760], + [16023,1216], + [16025,560], + [16027,76447], + [16029,3593], + [16031,10453], + [16033,470], + [16035,2895], + [16037,2117], + [16039,10086], + [16041,5908], + [16043,6184], + [16045,6871], + [16047,7799], + [16049,5858], + [16051,11638], + [16053,10274], + [16055,62263], + [16057,18032], + [16059,3289], + [16061,1457], + [16063,2360], + [16065,16950], + [16067,9826], + [16069,18805], + [16071,1899], + [16073,4673], + [16075,10156], + [16077,3582], + [16079,4712], + [16081,4966], + [16083,34519], + [16085,3996], + [16087,4271], + [17001,32011], + [17003,2516], + [17005,7696], + [17007,23976], + [17009,2429], + [17011,16886], + [17013,2254], + [17015,7555], + [17017,6345], + [17019,97479], + [17021,15274], + [17023,7274], + [17025,5979], + [17027,19307], + [17029,22457], + [17031,2360934], + [17033,10030], + [17035,5427], + [17037,50494], + [17039,7960], + [17041,9306], + [17043,460854], + [17045,8351], + [17047,2881], + [17049,17367], + [17051,10128], + [17053,6376], + [17055,15642], + [17057,15596], + [17059,2348], + [17061,6118], + [17063,22470], + [17065,3577], + [17067,8742], + [17069,1560], + [17071,3547], + [17073,24416], + [17075,14279], + [17077,27269], + [17079,4609], + [17081,16479], + [17083,10547], + [17085,11170], + [17087,3878], + [17089,241171], + [17091,50377], + [17093,56793], + [17095,22667], + [17097,335755], + [17099,54345], + [17101,5873], + [17103,17124], + [17105,17238], + [17107,12652], + [17109,13945], + [17111,150286], + [17113,89019], + [17115,49416], + [17117,22352], + [17119,125400], + [17121,17202], + [17123,5779], + [17125,6407], + [17127,6488], + [17129,6623], + [17131,8096], + [17133,16898], + [17135,12030], + [17137,16676], + [17139,6888], + [17141,24293], + [17143,87318], + [17145,8498], + [17147,8194], + [17149,7279], + [17151,1796], + [17153,2076], + [17155,2870], + [17157,13577], + [17159,7162], + [17161,69489], + [17163,119880], + [17165,10546], + [17167,100825], + [17169,3469], + [17171,2613], + [17173,10014], + [17175,2713], + [17177,21835], + [17179,65596], + [17181,6853], + [17183,33753], + [17185,5294], + [17187,8467], + [17189,8140], + [17191,7548], + [17193,6836], + [17195,26852], + [17197,316754], + [17199,29394], + [17201,129963], + [17203,19181], + [18001,14891], + [18003,159786], + [18005,36982], + [18007,4277], + [18009,4933], + [18011,27812], + [18013,6746], + [18015,9282], + [18017,16467], + [18019,50607], + [18021,11646], + [18023,15305], + [18025,4289], + [18027,13978], + [18029,22898], + [18031,11741], + [18033,18501], + [18035,49103], + [18037,20606], + [18039,85122], + [18041,8317], + [18043,34753], + [18045,7802], + [18047,10094], + [18049,9258], + [18051,16015], + [18053,29968], + [18055,12710], + [18057,139512], + [18059,32847], + [18061,17095], + [18063,70712], + [18065,18838], + [18067,32289], + [18069,17270], + [18071,18752], + [18073,14634], + [18075,9583], + [18077,13687], + [18079,11804], + [18081,66470], + [18083,17084], + [18085,35490], + [18087,15168], + [18089,207352], + [18091,45219], + [18093,18375], + [18095,52409], + [18097,410961], + [18099,21231], + [18101,4943], + [18103,14272], + [18105,62474], + [18107,17054], + [18109,31637], + [18111,6299], + [18113,20801], + [18115,2905], + [18117,7816], + [18119,8999], + [18121,6443], + [18123,8237], + [18125,5745], + [18127,75561], + [18129,12498], + [18131,5884], + [18133,14799], + [18135,11672], + [18137,13526], + [18139,7766], + [18141,117385], + [18143,9146], + [18145,20380], + [18147,10185], + [18149,9153], + [18151,16902], + [18153,8064], + [18155,4580], + [18157,80923], + [18159,7240], + [18161,3343], + [18163,85342], + [18165,6749], + [18167,45311], + [18169,14205], + [18171,3924], + [18173,28911], + [18175,12081], + [18177,27547], + [18179,12892], + [18181,11974], + [18183,15709], + [19001,3897], + [19003,2111], + [19005,7189], + [19007,5634], + [19009,3170], + [19011,13299], + [19013,66783], + [19015,13931], + [19017,13238], + [19019,10535], + [19021,10827], + [19023,7761], + [19025,4252], + [19027,11143], + [19029,6854], + [19031,10312], + [19033,22679], + [19035,6607], + [19037,6084], + [19039,4357], + [19041,8749], + [19043,9702], + [19045,24129], + [19047,8401], + [19049,36585], + [19051,3932], + [19053,4126], + [19055,9692], + [19057,18935], + [19059,8673], + [19061,51630], + [19063,5463], + [19065,10354], + [19067,7754], + [19069,5664], + [19071,3738], + [19073,4899], + [19075,6369], + [19077,5342], + [19079,6811], + [19081,5606], + [19083,8458], + [19085,7385], + [19087,9161], + [19089,5036], + [19091,4910], + [19093,3609], + [19095,9128], + [19097,10277], + [19099,17359], + [19101,8288], + [19103,76457], + [19105,10281], + [19107,5137], + [19109,7990], + [19111,16020], + [19113,112600], + [19115,5545], + [19117,3964], + [19119,6564], + [19121,7781], + [19123,11144], + [19125,16229], + [19127,18729], + [19129,7079], + [19131,5384], + [19133,4443], + [19135,3763], + [19137,4739], + [19139,20002], + [19141,7765], + [19143,3370], + [19145,6465], + [19147,4550], + [19149,13613], + [19151,3902], + [19153,229206], + [19155,46770], + [19157,9817], + [19159,2481], + [19161,5369], + [19163,81405], + [19165,6427], + [19167,18810], + [19169,51111], + [19171,8629], + [19173,3002], + [19175,6592], + [19177,3606], + [19179,16822], + [19181,24607], + [19183,11736], + [19185,2667], + [19187,18396], + [19189,5117], + [19191,11509], + [19193,51431], + [19195,4014], + [19197,6322], + [20001,6468], + [20003,4148], + [20005,7209], + [20007,2667], + [20009,14252], + [20011,6259], + [20013,4877], + [20015,30171], + [20017,1265], + [20019,1559], + [20021,9924], + [20023,1288], + [20025,1165], + [20027,4141], + [20029,4279], + [20031,4285], + [20033,937], + [20035,15896], + [20037,17652], + [20039,1347], + [20041,9442], + [20043,4105], + [20045,60141], + [20047,1589], + [20049,1277], + [20051,17209], + [20053,3349], + [20055,19857], + [20057,17483], + [20059,12817], + [20061,11964], + [20063,1448], + [20065,1357], + [20067,3932], + [20069,3466], + [20071,816], + [20073,3236], + [20075,1697], + [20077,2731], + [20079,16330], + [20081,2329], + [20083,1067], + [20085,6973], + [20087,9707], + [20089,1456], + [20091,291774], + [20093,2083], + [20095,3579], + [20097,1287], + [20099,10039], + [20101,915], + [20103,31917], + [20105,1780], + [20107,3999], + [20109,1716], + [20111,16222], + [20113,15892], + [20115,6104], + [20117,5713], + [20119,2440], + [20121,15696], + [20123,3753], + [20125,16458], + [20127,3069], + [20129,1612], + [20131,5672], + [20133,6713], + [20135,1568], + [20137,3028], + [20139,7857], + [20141,2160], + [20143,3082], + [20145,3322], + [20147,2866], + [20149,10986], + [20151,5091], + [20153,1465], + [20155,30664], + [20157,2580], + [20159,5109], + [20161,33724], + [20163,2581], + [20165,1760], + [20167,3607], + [20169,28891], + [20171,2623], + [20173,229352], + [20175,10321], + [20177,86630], + [20179,1477], + [20181,3076], + [20183,2174], + [20185,2198], + [20187,1021], + [20189,2653], + [20191,10687], + [20193,4431], + [20195,1424], + [20197,3597], + [20199,834], + [20201,3158], + [20203,1278], + [20205,3782], + [20207,1602], + [20209,67430], + [21001,6834], + [21003,8215], + [21005,10603], + [21007,3497], + [21009,17940], + [21011,4224], + [21013,8976], + [21015,59178], + [21017,9198], + [21019,18162], + [21021,11743], + [21023,3553], + [21025,3847], + [21027,7323], + [21029,35079], + [21031,4867], + [21033,5149], + [21035,17593], + [21037,44758], + [21039,2101], + [21041,4487], + [21043,10079], + [21045,6283], + [21047,23916], + [21049,15804], + [21051,5142], + [21053,3794], + [21055,3819], + [21057,2775], + [21059,43754], + [21061,4523], + [21063,1963], + [21065,4910], + [21067,153602], + [21069,5779], + [21071,12183], + [21073,22664], + [21075,2327], + [21077,3574], + [21079,7026], + [21081,10385], + [21083,15367], + [21085,9999], + [21087,4925], + [21089,13502], + [21091,3738], + [21093,43077], + [21095,8904], + [21097,8050], + [21099,7387], + [21101,20810], + [21103,7070], + [21105,2078], + [21107,19720], + [21109,4576], + [21111,342935], + [21113,22732], + [21115,7747], + [21117,76372], + [21119,5157], + [21121,9220], + [21123,5441], + [21125,22114], + [21127,5097], + [21129,2195], + [21131,3173], + [21133,7974], + [21135,4799], + [21137,9129], + [21139,3583], + [21141,11327], + [21143,2759], + [21145,28299], + [21147,4858], + [21149,4159], + [21151,40587], + [21153,3439], + [21155,8203], + [21157,14012], + [21159,3522], + [21161,6871], + [21163,11370], + [21165,2185], + [21167,9173], + [21169,4093], + [21171,4398], + [21173,10727], + [21175,4656], + [21177,11614], + [21179,19488], + [21181,3260], + [21183,9332], + [21185,27225], + [21187,5266], + [21189,1206], + [21191,6421], + [21193,9875], + [21195,22094], + [21197,4487], + [21199,24591], + [21201,763], + [21203,6369], + [21205,10168], + [21207,6488], + [21209,23511], + [21211,20222], + [21213,7662], + [21215,8411], + [21217,10634], + [21219,5210], + [21221,5487], + [21223,3559], + [21225,6914], + [21227,54095], + [21229,5557], + [21231,6763], + [21233,5713], + [21235,12228], + [21237,1791], + [21239,13393], + [22001,24068], + [22003,8375], + [22005,50141], + [22007,8770], + [22009,15240], + [22011,13098], + [22013,5266], + [22015,53561], + [22017,106425], + [22019,80317], + [22021,3693], + [22023,3063], + [22025,3641], + [22027,6295], + [22029,7063], + [22031,10278], + [22033,204338], + [22035,1918], + [22037,7366], + [22039,11930], + [22041,7032], + [22043,7655], + [22045,29358], + [22047,12529], + [22049,6431], + [22051,197665], + [22053,11976], + [22055,107117], + [22057,41664], + [22059,6306], + [22061,18229], + [22063,56967], + [22065,3476], + [22067,9466], + [22069,14652], + [22071,151413], + [22073,64029], + [22075,9448], + [22077,9068], + [22079,53753], + [22081,3737], + [22083,7839], + [22085,8785], + [22087,15424], + [22089,23044], + [22091,4002], + [22093,8738], + [22095,18736], + [22097,30471], + [22099,22309], + [22101,22898], + [22103,101175], + [22105,48168], + [22107,1723], + [22109,46798], + [22111,8464], + [22113,23684], + [22115,17501], + [22117,15039], + [22119,14900], + [22121,10999], + [22123,3590], + [22125,4799], + [22127,5119], + [23001,51497], + [23003,31148], + [23005,148107], + [23007,14076], + [23009,27430], + [23011,58540], + [23013,18948], + [23015,15797], + [23017,24942], + [23019,72972], + [23021,7137], + [23023,17851], + [23025,22008], + [23027,18709], + [23029,13312], + [23031,101611], + [24001,31001], + [24003,271043], + [24005,402056], + [24009,44612], + [24011,15973], + [24013,87140], + [24015,47471], + [24017,73697], + [24019,14688], + [24021,120294], + [24023,14483], + [24025,124168], + [24027,155433], + [24029,9900], + [24031,508549], + [24033,446857], + [24035,24800], + [24037,50842], + [24039,8735], + [24041,18001], + [24043,69771], + [24045,45665], + [24047,22769], + [24510,264134], + [25001,99735], + [25003,62027], + [25005,257904], + [25007,8303], + [25009,362646], + [25011,36939], + [25013,198522], + [25015,79662], + [25017,775336], + [25019,5675], + [25021,334794], + [25023,240474], + [25025,369972], + [25027,385770], + [26001,3261], + [26003,3035], + [26005,51848], + [26007,12200], + [26009,8817], + [26011,5747], + [26013,3060], + [26015,26517], + [26017,48064], + [26019,7646], + [26021,66972], + [26023,17165], + [26025,57020], + [26027,22057], + [26029,11352], + [26031,9507], + [26033,15503], + [26035,10563], + [26037,36232], + [26039,4793], + [26041,15897], + [26043,11581], + [26045,51191], + [26047,15684], + [26049,161919], + [26051,8799], + [26053,6122], + [26055,42083], + [26057,17162], + [26059,18454], + [26061,15662], + [26063,14815], + [26065,132289], + [26067,26261], + [26069,8830], + [26071,4634], + [26073,31986], + [26075,65424], + [26077,115549], + [26079,6606], + [26081,289297], + [26083,877], + [26085,3331], + [26087,34587], + [26089,9378], + [26091,43261], + [26093,84286], + [26095,2117], + [26097,4595], + [26099,363484], + [26101,9406], + [26103,30923], + [26105,12694], + [26107,16974], + [26109,10736], + [26111,37450], + [26113,6272], + [26115,66681], + [26117,24140], + [26119,2742], + [26121,67008], + [26123,20074], + [26125,552660], + [26127,11165], + [26129,7663], + [26131,2326], + [26133,9012], + [26135,2589], + [26137,10058], + [26139,128452], + [26141,4673], + [26143,7143], + [26145,80647], + [26147,64509], + [26149,24606], + [26151,17119], + [26153,3189], + [26155,30023], + [26157,22145], + [26159,32241], + [26161,168467], + [26163,674177], + [26165,12870], + [27001,6431], + [27003,174217], + [27005,16451], + [27007,20650], + [27009,19645], + [27011,2715], + [27013,36245], + [27015,14157], + [27017,16286], + [27019,49252], + [27021,12730], + [27023,6730], + [27025,26777], + [27027,32703], + [27029,4030], + [27031,2842], + [27033,5762], + [27035,28798], + [27037,214174], + [27039,10559], + [27041,18584], + [27043,7242], + [27045,10479], + [27047,15919], + [27049,25318], + [27051,3142], + [27053,616331], + [27055,9930], + [27057,8638], + [27059,18874], + [27061,20478], + [27063,5760], + [27065,7834], + [27067,22229], + [27069,2426], + [27071,6242], + [27073,3733], + [27075,5414], + [27077,2194], + [27079,14494], + [27081,3270], + [27083,14586], + [27085,18789], + [27087,2304], + [27089,5304], + [27091,10468], + [27093,11853], + [27095,11683], + [27097,17210], + [27099,19641], + [27101,4725], + [27103,18924], + [27105,10880], + [27107,3405], + [27109,77037], + [27111,28916], + [27113,7903], + [27115,13817], + [27117,4704], + [27119,16196], + [27121,5515], + [27123,254310], + [27125,2228], + [27127,7878], + [27129,7919], + [27131,32464], + [27133,5380], + [27135,8072], + [27137,94758], + [27139,70578], + [27141,45383], + [27143,7915], + [27145,80611], + [27147,19753], + [27149,5315], + [27151,4823], + [27153,12393], + [27155,1733], + [27157,11217], + [27159,5750], + [27161,9916], + [27163,125221], + [27165,5871], + [27167,3605], + [27169,27721], + [27171,65495], + [27173,5415], + [28001,11523], + [28003,14435], + [28005,4421], + [28007,7090], + [28009,2969], + [28011,13348], + [28013,6495], + [28015,3341], + [28017,7312], + [28019,3419], + [28021,3102], + [28023,5958], + [28025,7401], + [28027,9206], + [28029,10840], + [28031,7738], + [28033,77164], + [28035,31522], + [28037,2870], + [28039,7954], + [28041,4125], + [28043,8715], + [28045,18157], + [28047,82496], + [28049,107045], + [28051,5661], + [28053,2789], + [28055,412], + [28057,9516], + [28059,58738], + [28061,6359], + [28063,2067], + [28065,3991], + [28067,26630], + [28069,3358], + [28071,20961], + [28073,26473], + [28075,30858], + [28077,4487], + [28079,8007], + [28081,37105], + [28083,9895], + [28085,13383], + [28087,24446], + [28089,47222], + [28091,9756], + [28093,13927], + [28095,14580], + [28097,4097], + [28099,10855], + [28101,8526], + [28103,3742], + [28105,20594], + [28107,12768], + [28109,22044], + [28111,4054], + [28113,13942], + [28115,12710], + [28117,10511], + [28119,2658], + [28121,68814], + [28123,12513], + [28125,1729], + [28127,10522], + [28129,6792], + [28131,6283], + [28133,8363], + [28135,5341], + [28137,11504], + [28139,8191], + [28141,7097], + [28143,4396], + [28145,11980], + [28147,5124], + [28149,21148], + [28151,17894], + [28153,7745], + [28155,3941], + [28157,3008], + [28159,6936], + [28161,4740], + [28163,8920], + [29001,9981], + [29003,9077], + [29005,2657], + [29007,10368], + [29009,13895], + [29011,5140], + [29013,7539], + [29015,6439], + [29017,5239], + [29019,88736], + [29021,42713], + [29023,17122], + [29025,4064], + [29027,20405], + [29029,17015], + [29031,37944], + [29033,4247], + [29035,2342], + [29037,48586], + [29039,5480], + [29041,3731], + [29043,37869], + [29045,3064], + [29047,116366], + [29049,10050], + [29051,37846], + [29053,7231], + [29055,9676], + [29057,3114], + [29059,6429], + [29061,3695], + [29063,4632], + [29065,5796], + [29067,4666], + [29069,10853], + [29071,47965], + [29073,6958], + [29075,3338], + [29077,133822], + [29079,4604], + [29081,3679], + [29083,8965], + [29085,3155], + [29087,2506], + [29089,4465], + [29091,14948], + [29093,3068], + [29095,324169], + [29097,54387], + [29099,106665], + [29101,21356], + [29103,1837], + [29105,14122], + [29107,15875], + [29109,15949], + [29111,4784], + [29113,24003], + [29115,4701], + [29117,6553], + [29119,9384], + [29121,6870], + [29123,4803], + [29125,3852], + [29127,13459], + [29129,1715], + [29131,10077], + [29133,5488], + [29135,6809], + [29137,3689], + [29139,5363], + [29141,6878], + [29143,7436], + [29145,26668], + [29147,10805], + [29149,3665], + [29151,6965], + [29153,3157], + [29155,6355], + [29157,9216], + [29159,18505], + [29161,18252], + [29163,7524], + [29165,48433], + [29167,12989], + [29169,15222], + [29171,2211], + [29173,5225], + [29175,9682], + [29177,10376], + [29179,2013], + [29181,4831], + [29183,192073], + [29185,3617], + [29186,8454], + [29187,23899], + [29189,492327], + [29195,10231], + [29197,1734], + [29199,2178], + [29201,17950], + [29203,2722], + [29205,2975], + [29207,12326], + [29209,12399], + [29211,2600], + [29213,22699], + [29215,8817], + [29217,8904], + [29219,15559], + [29221,8901], + [29223,4942], + [29225,14736], + [29227,1170], + [29229,6859], + [29510,147357], + [30001,4633], + [30003,4961], + [30005,2309], + [30007,2310], + [30009,4988], + [30011,657], + [30013,35882], + [30015,2531], + [30017,6108], + [30019,910], + [30021,4381], + [30023,4837], + [30025,1901], + [30027,5546], + [30029,38821], + [30031,48461], + [30033,747], + [30035,5372], + [30037,371], + [30039,1325], + [30041,7486], + [30043,5267], + [30045,908], + [30047,11409], + [30049,32668], + [30051,977], + [30053,6996], + [30055,1065], + [30057,3872], + [30059,843], + [30061,1574], + [30063,54816], + [30065,2175], + [30067,7229], + [30069,264], + [30071,1979], + [30073,2753], + [30075,1008], + [30077,2761], + [30079,502], + [30081,16985], + [30083,5961], + [30085,4301], + [30087,4121], + [30089,4212], + [30091,1818], + [30093,15838], + [30095,4573], + [30097,1623], + [30099,2774], + [30101,2276], + [30103,357], + [30105,3752], + [30107,770], + [30109,504], + [30111,72938], + [31001,15777], + [31003,3467], + [31005,217], + [31007,413], + [31009,265], + [31011,2930], + [31013,5728], + [31015,1105], + [31017,1397], + [31019,25922], + [31021,3429], + [31023,4566], + [31025,12679], + [31027,4554], + [31029,2289], + [31031,3348], + [31033,5511], + [31035,3339], + [31037,5464], + [31039,4756], + [31041,5842], + [31043,10366], + [31045,5261], + [31047,12531], + [31049,1031], + [31051,3017], + [31053,18190], + [31055,268236], + [31057,1238], + [31059,3209], + [31061,1601], + [31063,1545], + [31065,2613], + [31067,10544], + [31069,1215], + [31071,1165], + [31073,1090], + [31075,439], + [31077,1308], + [31079,30581], + [31081,4650], + [31083,1832], + [31085,658], + [31087,1309], + [31089,5737], + [31091,426], + [31093,3257], + [31095,4186], + [31097,2108], + [31099,3778], + [31101,4465], + [31103,584], + [31105,2102], + [31107,4577], + [31109,157591], + [31111,18571], + [31113,491], + [31115,360], + [31117,357], + [31119,18314], + [31121,3996], + [31123,2568], + [31125,1987], + [31127,3764], + [31129,2406], + [31131,8121], + [31133,1591], + [31135,1751], + [31137,4830], + [31139,4063], + [31141,17083], + [31143,2897], + [31145,6069], + [31147,4139], + [31149,875], + [31151,6998], + [31153,82692], + [31155,10688], + [31157,18245], + [31159,8430], + [31161,2730], + [31163,1683], + [31165,815], + [31167,3493], + [31169,2830], + [31171,404], + [31173,2804], + [31175,2063], + [31177,10751], + [31179,5414], + [31181,1656], + [31183,507], + [31185,7189], + [32001,9915], + [32003,863498], + [32005,20109], + [32007,26136], + [32009,383], + [32011,998], + [32013,8054], + [32015,2936], + [32017,1838], + [32019,19165], + [32021,1917], + [32023,13997], + [32027,2204], + [32029,1664], + [32031,193787], + [32033,4656], + [32510,23008], + [33001,30285], + [33003,23415], + [33005,40409], + [33007,15156], + [33009,46563], + [33011,212339], + [33013,77105], + [33015,162478], + [33017,65927], + [33019,22855], + [34001,122239], + [34003,444264], + [34005,215373], + [34007,234525], + [34009,42109], + [34011,62557], + [34013,341544], + [34015,136576], + [34017,324421], + [34019,63067], + [34021,177364], + [34023,390022], + [34025,301902], + [34027,246757], + [34029,238593], + [34031,225581], + [34033,28630], + [34035,161485], + [34037,74204], + [34039,253851], + [34041,53402], + [35001,300392], + [35003,1032], + [35005,25732], + [35006,8397], + [35007,5806], + [35009,20388], + [35011,776], + [35013,86338], + [35015,25144], + [35017,11845], + [35019,1481], + [35021,278], + [35023,2112], + [35025,25729], + [35027,8493], + [35028,8949], + [35029,9169], + [35031,22496], + [35033,2085], + [35035,23004], + [35037,3065], + [35039,15654], + [35041,7850], + [35043,55935], + [35045,50701], + [35047,10043], + [35049,69047], + [35051,3505], + [35053,6318], + [35055,13580], + [35057,5202], + [35059,1850], + [35061,27909], + [36001,147330], + [36003,21545], + [36005,514635], + [36007,86579], + [36009,34943], + [36011,35899], + [36013,56616], + [36015,37606], + [36017,21760], + [36019,34729], + [36021,29216], + [36023,22284], + [36025,19833], + [36027,135325], + [36029,422123], + [36031,16546], + [36033,19744], + [36035,22854], + [36037,28516], + [36039,19552], + [36041,2201], + [36043,28048], + [36045,44154], + [36047,1058657], + [36049,11197], + [36051,29560], + [36053,31896], + [36055,345099], + [36057,21034], + [36059,636681], + [36061,813275], + [36063,95951], + [36065,100271], + [36067,214674], + [36069,51805], + [36071,165070], + [36073,17075], + [36075,51752], + [36077,28950], + [36079,47980], + [36081,1019249], + [36083,76480], + [36085,196872], + [36087,138245], + [36089,43824], + [36091,107973], + [36093,71293], + [36095,14163], + [36097,8212], + [36099,14829], + [36101,41919], + [36103,711930], + [36105,32335], + [36107,23832], + [36109,50910], + [36111,84123], + [36113,30619], + [36115,27318], + [36117,42533], + [36119,440021], + [36121,17232], + [36123,11181], + [37001,69803], + [37003,15875], + [37005,4064], + [37007,9735], + [37009,11795], + [37011,6904], + [37013,19085], + [37015,7976], + [37017,12871], + [37019,41273], + [37021,114760], + [37023,36483], + [37025,80488], + [37027,32395], + [37029,4198], + [37031,27960], + [37033,8918], + [37035,67852], + [37037,28595], + [37039,10221], + [37041,5233], + [37043,3667], + [37045,40201], + [37047,20734], + [37049,37500], + [37051,118604], + [37053,11232], + [37055,17443], + [37057,70659], + [37059,17876], + [37061,23751], + [37063,133534], + [37065,21057], + [37067,156559], + [37069,24963], + [37071,88559], + [37073,4981], + [37075,2964], + [37077,25380], + [37079,8640], + [37081,226641], + [37083,19085], + [37085,43552], + [37087,24736], + [37089,44291], + [37091,8539], + [37093,17335], + [37095,1831], + [37097,69589], + [37099,16059], + [37101,74629], + [37103,4096], + [37105,23873], + [37107,24596], + [37109,35353], + [37111,18048], + [37113,13729], + [37115,8467], + [37117,9316], + [37119,462812], + [37121,5938], + [37123,10149], + [37125,33542], + [37127,41064], + [37129,97230], + [37131,7574], + [37133,57493], + [37135,65582], + [37137,4948], + [37139,16383], + [37141,21831], + [37143,4721], + [37145,16347], + [37147,77087], + [37149,7657], + [37151,61191], + [37153,15615], + [37155,45863], + [37157,38210], + [37159,55598], + [37161,22625], + [37163,26786], + [37165,10537], + [37167,25440], + [37169,20163], + [37171,30178], + [37173,5470], + [37175,12130], + [37177,1389], + [37179,93069], + [37181,15867], + [37183,449517], + [37185,6574], + [37187,4147], + [37189,24875], + [37191,49924], + [37193,27435], + [37195,32935], + [37197,16113], + [37199,6981], + [38001,1132], + [38003,5808], + [38005,2753], + [38007,423], + [38009,3307], + [38011,1835], + [38013,1206], + [38015,45210], + [38017,86697], + [38019,2181], + [38021,2741], + [38023,1551], + [38025,2868], + [38027,1210], + [38029,1664], + [38031,1710], + [38033,956], + [38035,36342], + [38037,1343], + [38039,1229], + [38041,1446], + [38043,1286], + [38045,2326], + [38047,948], + [38049,3172], + [38051,1260], + [38053,4537], + [38055,4746], + [38057,3918], + [38059,15197], + [38061,6360], + [38063,1592], + [38065,868], + [38067,3658], + [38069,1843], + [38071,5841], + [38073,2777], + [38075,1406], + [38077,8544], + [38079,4590], + [38081,2046], + [38083,767], + [38085,1258], + [38087,483], + [38089,15719], + [38091,1085], + [38093,10428], + [38095,1309], + [38097,4438], + [38099,5668], + [38101,31454], + [38103,2210], + [38105,19807], + [39001,9871], + [39003,46106], + [39005,23560], + [39007,42405], + [39009,25090], + [39011,22175], + [39013,29203], + [39015,18210], + [39017,171787], + [39019,12672], + [39021,17682], + [39023,61130], + [39025,94143], + [39027,15611], + [39029,46595], + [39031,14872], + [39033,18400], + [39035,576023], + [39037,24188], + [39039,17389], + [39041,89265], + [39043,36025], + [39045,68017], + [39047,12857], + [39049,578794], + [39051,20456], + [39053,11573], + [39055,45721], + [39057,75046], + [39059,16475], + [39061,371426], + [39063,36960], + [39065,13663], + [39067,6277], + [39069,12856], + [39071,15675], + [39073,12430], + [39075,18355], + [39077,26329], + [39079,12312], + [39081,28157], + [39083,27841], + [39085,116647], + [39087,24518], + [39089,79550], + [39091,20621], + [39093,137981], + [39095,192278], + [39097,18723], + [39099,101863], + [39101,26662], + [39103,87823], + [39105,8524], + [39107,20683], + [39109,48585], + [39111,5949], + [39113,234828], + [39115,6016], + [39117,15402], + [39119,36810], + [39121,4323], + [39123,19987], + [39125,8535], + [39127,14524], + [39129,23505], + [39131,9357], + [39133,81464], + [39135,19648], + [39137,17820], + [39139,51964], + [39141,30901], + [39143,29723], + [39145,27843], + [39147,26029], + [39149,21895], + [39151,171558], + [39153,251471], + [39155,87035], + [39157,41189], + [39159,24807], + [39161,13189], + [39163,5050], + [39165,100969], + [39167,26123], + [39169,54654], + [39171,16895], + [39173,62697], + [39175,11002], + [40001,8039], + [40003,2453], + [40005,4585], + [40007,2845], + [40009,10918], + [40011,4123], + [40013,16471], + [40015,10795], + [40017,58827], + [40019,20264], + [40021,17835], + [40023,5486], + [40025,1325], + [40027,127129], + [40029,2154], + [40031,47787], + [40033,2738], + [40035,5947], + [40037,29105], + [40039,14571], + [40041,16080], + [40043,2374], + [40045,2033], + [40047,27546], + [40049,11494], + [40051,23942], + [40053,2450], + [40055,2008], + [40057,1248], + [40059,1800], + [40061,4262], + [40063,4962], + [40065,10727], + [40067,2497], + [40069,3397], + [40071,19042], + [40073,7286], + [40075,4048], + [40077,3995], + [40079,18340], + [40081,14658], + [40083,19228], + [40085,4668], + [40087,16442], + [40089,13246], + [40091,6611], + [40093,3889], + [40095,6285], + [40097,16768], + [40099,6165], + [40101,27680], + [40103,5066], + [40105,4518], + [40107,4042], + [40109,338450], + [40111,15045], + [40113,19824], + [40115,13234], + [40117,7010], + [40119,34988], + [40121,17653], + [40123,17141], + [40125,29492], + [40127,4523], + [40129,1841], + [40131,40594], + [40133,9144], + [40135,15871], + [40137,19214], + [40139,8448], + [40141,3160], + [40143,285655], + [40145,33069], + [40147,22815], + [40149,5264], + [40151,4336], + [40153,9457], + [41001,6523], + [41003,43019], + [41005,186047], + [41007,17243], + [41009,20906], + [41011,24726], + [41013,8101], + [41015,8105], + [41017,70657], + [41019,41453], + [41021,879], + [41023,2950], + [41025,3231], + [41027,13195], + [41029,88693], + [41031,8375], + [41033,30133], + [41035,27533], + [41037,3261], + [41039,160315], + [41041,19651], + [41043,50197], + [41045,12111], + [41047,138379], + [41049,5316], + [41051,389294], + [41053,32929], + [41055,818], + [41057,10493], + [41059,33818], + [41061,11216], + [41063,3061], + [41065,12681], + [41067,271644], + [41069,702], + [41071,46668], + [42001,50471], + [42003,597429], + [42005,30875], + [42007,79210], + [42009,22705], + [42011,193585], + [42013,57040], + [42015,29942], + [42017,311776], + [42019,90202], + [42021,60428], + [42023,2242], + [42025,28676], + [42027,73197], + [42029,254455], + [42031,17208], + [42033,34474], + [42035,17575], + [42037,31779], + [42039,38207], + [42041,116524], + [42043,129834], + [42045,264651], + [42047,15620], + [42049,126097], + [42051,53676], + [42053,1842], + [42055,69996], + [42057,6609], + [42059,16802], + [42061,18886], + [42063,40571], + [42065,19889], + [42067,11125], + [42069,97814], + [42071,247727], + [42073,39434], + [42075,65003], + [42077,163972], + [42079,144500], + [42081,56364], + [42083,18357], + [42085,49143], + [42087,19129], + [42089,74236], + [42091,402414], + [42093,8617], + [42095,140054], + [42097,40834], + [42099,22895], + [42101,617204], + [42103,23503], + [42105,7117], + [42107,63219], + [42109,18288], + [42111,33653], + [42113,2818], + [42115,20185], + [42117,19711], + [42119,17775], + [42121,24448], + [42123,18910], + [42125,98107], + [42127,21391], + [42129,171892], + [42131,13070], + [42133,213368], + [44001,23763], + [44003,82866], + [44005,39978], + [44007,288259], + [44009,63381], + [45001,9437], + [45003,66504], + [45005,2677], + [45007,77037], + [45009,5290], + [45011,7802], + [45013,59777], + [45015,77572], + [45017,6215], + [45019,167780], + [45021,20162], + [45023,11914], + [45025,18443], + [45027,11661], + [45029,14309], + [45031,26517], + [45033,11495], + [45035,60998], + [45037,9829], + [45039,9016], + [45041,57197], + [45043,22063], + [45045,204795], + [45047,28403], + [45049,7516], + [45051,116578], + [45053,9904], + [45055,25074], + [45057,29600], + [45059,26823], + [45061,5765], + [45063,123621], + [45065,3137], + [45067,11654], + [45069,8632], + [45071,16653], + [45073,29935], + [45075,33877], + [45077,49326], + [45079,169282], + [45081,7826], + [45083,118717], + [45085,39405], + [45087,10271], + [45089,11185], + [45091,104225], + [46003,1614], + [46005,9125], + [46007,1092], + [46009,2960], + [46011,17079], + [46013,19951], + [46015,2600], + [46017,659], + [46019,4772], + [46021,836], + [46023,3919], + [46025,1851], + [46027,7179], + [46029,14638], + [46031,1418], + [46033,3845], + [46035,10611], + [46037,2846], + [46039,2360], + [46041,2019], + [46043,1680], + [46045,2274], + [46047,2995], + [46049,1121], + [46051,4393], + [46053,2059], + [46055,1068], + [46057,2956], + [46059,1799], + [46061,1712], + [46063,787], + [46065,9598], + [46067,3634], + [46069,755], + [46071,1279], + [46073,1186], + [46075,649], + [46077,2747], + [46079,5879], + [46081,12188], + [46083,25963], + [46085,1783], + [46087,3037], + [46089,1110], + [46091,2356], + [46093,12441], + [46095,807], + [46097,1236], + [46099,94899], + [46101,3860], + [46102,"NA"], + [46103,50421], + [46105,1501], + [46107,1171], + [46109,4692], + [46111,1276], + [46115,3341], + [46117,1839], + [46119,840], + [46121,3081], + [46123,3123], + [46125,4614], + [46127,7246], + [46129,2194], + [46135,10902], + [46137,991], + [47001,32094], + [47003,18553], + [47005,6319], + [47007,3989], + [47009,56702], + [47011,43224], + [47013,14233], + [47015,5465], + [47017,12026], + [47019,23643], + [47021,18608], + [47023,7756], + [47025,12173], + [47027,3054], + [47029,13699], + [47031,22264], + [47033,6555], + [47035,21413], + [47037,323712], + [47039,4711], + [47041,7311], + [47043,22002], + [47045,15500], + [47047,16987], + [47049,6648], + [47051,17486], + [47053,21129], + [47055,12886], + [47057,8837], + [47059,27208], + [47061,4847], + [47063,25244], + [47065,158391], + [47067,2092], + [47069,8946], + [47071,10167], + [47073,23191], + [47075,7327], + [47077,12071], + [47079,12884], + [47081,9777], + [47083,3170], + [47085,7923], + [47087,4194], + [47089,21765], + [47091,6660], + [47093,217245], + [47095,1933], + [47097,9325], + [47099,17245], + [47101,4576], + [47103,14722], + [47105,20633], + [47107,20491], + [47109,9226], + [47111,9277], + [47113,44498], + [47115,11205], + [47117,12781], + [47119,37081], + [47121,4388], + [47123,17345], + [47125,70667], + [47127,3111], + [47129,7560], + [47131,13433], + [47133,8992], + [47135,2676], + [47137,2159], + [47139,6600], + [47141,31327], + [47143,12294], + [47145,22232], + [47147,31263], + [47149,132654], + [47151,7539], + [47153,5471], + [47155,44746], + [47157,408345], + [47159,7954], + [47161,4955], + [47163,68445], + [47165,78236], + [47167,25878], + [47169,3370], + [47171,7032], + [47173,7048], + [47175,2028], + [47177,16102], + [47179,56366], + [47181,6080], + [47183,14806], + [47185,11254], + [47187,91713], + [47189,55525], + [48001,20570], + [48003,7405], + [48005,35107], + [48007,8954], + [48009,4212], + [48011,987], + [48013,18303], + [48015,13036], + [48017,3044], + [48019,8491], + [48021,32884], + [48023,1751], + [48025,9683], + [48027,122763], + [48029,770139], + [48031,5112], + [48033,368], + [48035,7709], + [48037,38833], + [48039,145857], + [48041,93755], + [48043,4592], + [48045,678], + [48047,2405], + [48049,15067], + [48051,7199], + [48053,19265], + [48055,15437], + [48057,9698], + [48059,5587], + [48061,146773], + [48063,5171], + [48065,3254], + [48067,11888], + [48069,3886], + [48071,15242], + [48073,20404], + [48075,2925], + [48077,5159], + [48079,1371], + [48081,1448], + [48083,3101], + [48085,409063], + [48087,1231], + [48089,9326], + [48091,50881], + [48093,5505], + [48095,1503], + [48097,19137], + [48099,23687], + [48101,617], + [48103,1792], + [48105,1602], + [48107,2753], + [48109,948], + [48111,3877], + [48113,1113577], + [48115,4832], + [48117,9109], + [48119,2420], + [48121,354648], + [48123,8864], + [48125,771], + [48127,4533], + [48129,1697], + [48131,4721], + [48133,7775], + [48135,68356], + [48137,926], + [48139,70912], + [48141,313903], + [48143,19438], + [48145,6591], + [48147,14016], + [48149,11788], + [48151,1812], + [48153,3072], + [48155,618], + [48157,286479], + [48159,4368], + [48161,7447], + [48163,7455], + [48165,8076], + [48167,136627], + [48169,2091], + [48171,11785], + [48173,716], + [48175,3158], + [48177,8891], + [48179,8979], + [48181,55436], + [48183,56722], + [48185,10714], + [48187,62439], + [48189,15023], + [48191,1279], + [48193,3634], + [48195,2923], + [48197,1743], + [48199,23766], + [48201,1944945], + [48203,28848], + [48205,2702], + [48207,2876], + [48209,77746], + [48211,2307], + [48213,32068], + [48215,288558], + [48217,14582], + [48219,10641], + [48221,21752], + [48223,15625], + [48225,9830], + [48227,12390], + [48229,1277], + [48231,35040], + [48233,9132], + [48235,830], + [48237,3457], + [48239,6897], + [48241,13180], + [48243,1189], + [48245,102305], + [48247,2129], + [48249,18201], + [48251,67105], + [48253,5630], + [48255,4508], + [48257,47390], + [48259,15894], + [48261,223], + [48263,528], + [48265,20375], + [48267,2095], + [48269,277], + [48271,1142], + [48273,14156], + [48275,1796], + [48277,21095], + [48279,6221], + [48281,8448], + [48283,2926], + [48285,9049], + [48287,8297], + [48289,6537], + [48291,27372], + [48293,8783], + [48295,1663], + [48297,4923], + [48299,7394], + [48301,62], + [48303,137065], + [48305,2881], + [48307,4102], + [48309,104945], + [48311,640], + [48313,4295], + [48315,3962], + [48317,2220], + [48319,1847], + [48321,15732], + [48323,20560], + [48325,18733], + [48327,877], + [48329,73030], + [48331,9350], + [48333,2036], + [48335,2722], + [48337,8978], + [48339,215406], + [48341,11192], + [48343,5116], + [48345,553], + [48347,28488], + [48349,21215], + [48351,5271], + [48353,6837], + [48355,151227], + [48357,4862], + [48359,938], + [48361,34675], + [48363,12414], + [48365,10968], + [48367,53403], + [48369,5057], + [48371,6767], + [48373,16004], + [48375,55265], + [48377,3207], + [48379,4744], + [48381,64749], + [48383,1930], + [48385,1024], + [48387,4829], + [48389,5098], + [48391,3160], + [48393,456], + [48395,6851], + [48397,37737], + [48399,4734], + [48401,22576], + [48403,2917], + [48405,2708], + [48407,10270], + [48409,27295], + [48411,2369], + [48413,1603], + [48415,6987], + [48417,1912], + [48419,10952], + [48421,1506], + [48423,94189], + [48425,3767], + [48427,21930], + [48429,4095], + [48431,649], + [48433,705], + [48435,1815], + [48437,2940], + [48439,878726], + [48441,60429], + [48443,486], + [48445,5437], + [48447,812], + [48449,12590], + [48451,49931], + [48453,556184], + [48455,5173], + [48457,6898], + [48459,17133], + [48461,1488], + [48463,11066], + [48465,18625], + [48467,21848], + [48469,40791], + [48471,21352], + [48473,18677], + [48475,4619], + [48477,14646], + [48479,99885], + [48481,19723], + [48483,2715], + [48485,54960], + [48487,5601], + [48489,6450], + [48491,215239], + [48493,20142], + [48495,2834], + [48497,26022], + [48499,15506], + [48501,3948], + [48503,7978], + [48505,5944], + [48507,3944], + [49001,2800], + [49003,21444], + [49005,53638], + [49007,8824], + [49009,442], + [49011,137787], + [49013,7882], + [49015,4698], + [49017,2646], + [49019,4797], + [49021,18227], + [49023,4219], + [49025,3232], + [49027,5842], + [49029,4002], + [49031,477], + [49033,911], + [49035,510115], + [49037,5359], + [49039,10235], + [49041,8796], + [49043,19912], + [49045,25330], + [49047,14585], + [49049,216636], + [49051,10584], + [49053,51025], + [49055,1286], + [49057,103607], + [50001,20057], + [50003,18687], + [50005,15551], + [50007,91483], + [50009,2803], + [50011,26462], + [50013,3901], + [50015,13541], + [50017,15711], + [50019,12973], + [50021,31025], + [50023,33028], + [50025,23580], + [50027,29660], + [51001,15198], + [51003,49252], + [51005,7286], + [51007,5793], + [51009,15003], + [51011,6684], + [51013,136519], + [51015,35060], + [51017,2413], + [51019,36307], + [51021,2647], + [51023,16689], + [51025,6098], + [51027,7750], + [51029,5963], + [51031,25629], + [51033,13175], + [51035,12284], + [51036,3583], + [51037,4871], + [51041,159940], + [51043,7328], + [51045,2294], + [51047,21908], + [51049,4212], + [51051,4920], + [51053,12555], + [51057,5226], + [51059,590687], + [51061,34138], + [51063,7806], + [51065,12494], + [51067,25608], + [51069,40397], + [51071,7613], + [51073,18323], + [51075,9716], + [51077,6424], + [51079,9201], + [51081,4179], + [51083,14564], + [51085,51675], + [51087,159037], + [51089,19949], + [51091,1378], + [51093,17569], + [51095,30618], + [51097,3394], + [51099,10904], + [51101,8104], + [51103,5072], + [51105,9451], + [51107,173042], + [51109,16717], + [51111,5039], + [51113,6844], + [51115,3967], + [51117,12599], + [51119,4805], + [51121,45309], + [51125,7123], + [51127,9770], + [51131,5799], + [51133,5489], + [51135,6400], + [51137,14606], + [51139,11106], + [51141,7178], + [51143,28329], + [51145,12708], + [51147,9450], + [51149,13396], + [51153,212446], + [51155,15413], + [51157,3778], + [51159,3982], + [51161,46896], + [51163,10263], + [51165,38822], + [51167,10809], + [51169,9411], + [51171,19597], + [51173,12250], + [51175,8715], + [51177,59971], + [51179,61126], + [51181,3442], + [51183,3922], + [51185,16749], + [51187,18629], + [51191,25914], + [51193,8695], + [51195,15933], + [51197,13062], + [51199,29945], + [51510,88377], + [51520,7426], + [51530,2944], + [51540,21947], + [51550,106720], + [51570,7915], + [51580,2413], + [51590,17918], + [51595,2280], + [51600,12087], + [51610,7198], + [51620,3255], + [51630,12022], + [51640,2784], + [51650,60507], + [51660,21933], + [51670,8791], + [51678,2083], + [51680,32878], + [51683,20099], + [51685,8151], + [51690,5005], + [51700,83305], + [51710,103527], + [51720,1966], + [51730,11950], + [51735,6005], + [51740,41496], + [51750,7401], + [51760,98520], + [51770,45492], + [51775,12017], + [51790,11154], + [51800,38790], + [51810,215118], + [51820,9355], + [51830,6138], + [51840,13032], + [53001,7425], + [53003,9158], + [53005,85275], + [53007,37911], + [53009,25371], + [53011,186816], + [53013,1680], + [53015,39434], + [53017,17473], + [53019,2088], + [53021,35199], + [53023,952], + [53025,38460], + [53027,25667], + [53029,29678], + [53031,10810], + [53033,1021048], + [53035,107470], + [53037,18841], + [53039,8958], + [53041,28390], + [53043,4868], + [53045,21005], + [53047,19145], + [53049,7114], + [53051,4181], + [53053,347772], + [53055,7479], + [53057,51131], + [53059,4463], + [53061,347747], + [53063,208508], + [53065,16036], + [53067,112238], + [53069,1224], + [53071,27252], + [53073,93482], + [53075,21051], + [53077,107392], + [54001,6142], + [54003,47258], + [54005,7980], + [54007,4885], + [54009,9667], + [54011,39853], + [54013,2504], + [54015,3132], + [54017,3088], + [54019,16146], + [54021,2586], + [54023,5634], + [54025,14268], + [54027,8934], + [54029,12420], + [54031,5095], + [54033,29143], + [54035,10783], + [54037,25523], + [54039,85161], + [54041,6636], + [54043,6860], + [54045,11764], + [54047,5875], + [54049,24902], + [54051,13056], + [54053,9846], + [54055,21694], + [54057,11106], + [54059,8410], + [54061,45850], + [54063,5322], + [54065,6958], + [54067,9954], + [54069,19763], + [54071,3385], + [54073,2633], + [54075,3275], + [54077,13519], + [54079,24366], + [54081,30644], + [54083,10906], + [54085,3918], + [54087,4712], + [54089,4258], + [54091,6878], + [54093,2922], + [54095,3222], + [54097,9351], + [54099,15157], + [54101,3289], + [54103,6297], + [54105,2015], + [54107,35451], + [54109,7581], + [55001,7993], + [55003,7465], + [55005,21737], + [55007,6912], + [55009,127689], + [55011,6474], + [55013,6804], + [55015,25886], + [55017,30797], + [55019,15866], + [55021,29281], + [55023,7674], + [55025,279625], + [55027,43911], + [55029,13741], + [55031,21840], + [55033,21662], + [55035,54033], + [55037,1991], + [55039,52104], + [55041,3701], + [55043,26027], + [55045,19673], + [55047,9534], + [55049,12742], + [55051,2460], + [55053,9408], + [55055,42918], + [55057,12450], + [55059,78533], + [55061,10350], + [55063,61639], + [55065,8875], + [55067,9044], + [55069,13823], + [55071,40752], + [55073,66983], + [55075,19440], + [55077,6851], + [55078,1328], + [55079,433278], + [55081,21480], + [55083,19092], + [55085,17117], + [55087,93284], + [55089,44545], + [55091,3839], + [55093,22549], + [55095,22070], + [55097,36073], + [55099,6581], + [55101,91431], + [55103,8955], + [55105,73449], + [55107,6127], + [55109,44473], + [55111,33271], + [55113,7275], + [55115,19791], + [55117,56062], + [55119,10340], + [55121,15124], + [55123,14121], + [55125,9048], + [55127,51770], + [55129,7274], + [55131,70129], + [55133,203717], + [55135,25400], + [55137,10752], + [55139,85891], + [55141,36675], + [56001,20915], + [56003,5391], + [56005,24605], + [56007,7670], + [56009,7289], + [56011,3696], + [56013,19844], + [56015,7275], + [56017,2468], + [56019,4233], + [56021,44249], + [56023,8054], + [56025,38628], + [56027,1337], + [56029,15164], + [56031,4714], + [56033,14951], + [56035,5632], + [56037,22633], + [56039,12614], + [56041,9537], + [56043,4335], + [56045,3785] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2012.json b/data/regional/united-states/economics/employment/us-employment-total-2012.json new file mode 100644 index 0000000..608d609 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2012.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2012"], + [1001,23961], + [1003,78065], + [1005,8283], + [1007,8047], + [1009,23244], + [1011,4245], + [1013,8039], + [1015,45252], + [1017,13646], + [1019,10363], + [1021,17982], + [1023,4297], + [1025,7116], + [1027,4905], + [1029,5358], + [1031,19159], + [1033,21922], + [1035,4082], + [1037,4029], + [1039,14978], + [1041,5732], + [1043,32835], + [1045,19781], + [1047,14583], + [1049,26224], + [1051,34087], + [1053,13374], + [1055,40589], + [1057,5943], + [1059,12806], + [1061,10421], + [1063,2701], + [1065,5499], + [1067,6447], + [1069,42578], + [1071,21695], + [1073,293020], + [1075,5369], + [1077,40084], + [1079,13094], + [1081,64247], + [1083,36311], + [1085,3452], + [1087,7397], + [1089,158399], + [1091,6873], + [1093,11340], + [1095,37523], + [1097,171312], + [1099,6971], + [1101,98666], + [1103,52931], + [1105,3192], + [1107,6709], + [1109,13819], + [1111,8304], + [1113,22725], + [1115,35871], + [1117,100158], + [1119,4848], + [1121,31731], + [1123,16850], + [1125,88683], + [1127,24136], + [1129,6054], + [1131,2308], + [1133,8647], + [2013,1993], + [2016,3972], + [2020,149897], + [2050,6103], + [2060,434], + [2068,903], + [2070,1921], + [2090,45264], + [2100,997], + [2105,950], + [2110,16991], + [2122,25003], + [2130,6594], + [2150,6268], + [2158,"NA"], + [2164,540], + [2170,39968], + [2180,3690], + [2185,3715], + [2188,2554], + [2195,1725], + [2198,2247], + [2220,4384], + [2230,648], + [2240,2647], + [2261,4419], + [2275,942], + [2282,260], + [2290,2291], + [4001,18482], + [4003,49027], + [4005,64922], + [4007,18786], + [4009,13242], + [4011,3261], + [4012,7441], + [4013,1757601], + [4015,69021], + [4017,36890], + [4019,428796], + [4021,135995], + [4023,17014], + [4025,84442], + [4027,71429], + [5001,9044], + [5003,8158], + [5005,14994], + [5007,104109], + [5009,15264], + [5011,3886], + [5013,2282], + [5015,11690], + [5017,3600], + [5019,9118], + [5021,6115], + [5023,9504], + [5025,3475], + [5027,9205], + [5029,7902], + [5031,45688], + [5033,25412], + [5035,19987], + [5037,7854], + [5039,2815], + [5041,5343], + [5043,7477], + [5045,55766], + [5047,7125], + [5049,4743], + [5051,37949], + [5053,7852], + [5055,18275], + [5057,10060], + [5059,13441], + [5061,6003], + [5063,14563], + [5065,4709], + [5067,5774], + [5069,29222], + [5071,10011], + [5073,2612], + [5075,6576], + [5077,3187], + [5079,4185], + [5081,5543], + [5083,8858], + [5085,30982], + [5087,6563], + [5089,6065], + [5091,19055], + [5093,18046], + [5095,2974], + [5097,3282], + [5099,3808], + [5101,3362], + [5103,9395], + [5105,4015], + [5107,7048], + [5109,3969], + [5111,9486], + [5113,8054], + [5115,27815], + [5117,3536], + [5119,175552], + [5121,6124], + [5123,8471], + [5125,51067], + [5127,4335], + [5129,2955], + [5131,54392], + [5133,5593], + [5135,5486], + [5137,4636], + [5139,15211], + [5141,5935], + [5143,99464], + [5145,33396], + [5147,3038], + [5149,8642], + [6001,729049], + [6003,483], + [6005,12873], + [6007,88718], + [6009,17705], + [6011,8935], + [6013,487887], + [6015,9076], + [6017,79958], + [6019,373457], + [6021,11283], + [6023,58120], + [6025,57586], + [6027,8690], + [6029,340355], + [6031,50049], + [6033,25738], + [6035,10042], + [6037,4378392], + [6039,53495], + [6041,128310], + [6043,7352], + [6045,36841], + [6047,96236], + [6049,3092], + [6051,7532], + [6053,192600], + [6055,65755], + [6057,43649], + [6059,1439270], + [6061,158545], + [6063,7115], + [6065,872251], + [6067,609691], + [6069,24936], + [6071,790420], + [6073,1399879], + [6075,474933], + [6077,267059], + [6079,126037], + [6081,385661], + [6083,197919], + [6085,882982], + [6087,125257], + [6089,65229], + [6091,1258], + [6093,15929], + [6095,180984], + [6097,224462], + [6099,205940], + [6101,37901], + [6103,21780], + [6105,4550], + [6107,168764], + [6109,19419], + [6111,395158], + [6113,91689], + [6115,24395], + [8001,216923], + [8003,6943], + [8005,297947], + [8007,5160], + [8009,1924], + [8011,1578], + [8013,163471], + [8014,30129], + [8015,7796], + [8017,964], + [8019,5100], + [8021,3317], + [8023,1420], + [8025,1252], + [8027,1860], + [8029,13010], + [8031,329577], + [8033,852], + [8035,151248], + [8037,30032], + [8039,11789], + [8041,279826], + [8043,13810], + [8045,28813], + [8047,3049], + [8049,8113], + [8051,9244], + [8053,415], + [8055,2259], + [8057,783], + [8059,281809], + [8061,780], + [8063,4041], + [8065,4133], + [8067,27693], + [8069,161287], + [8071,6127], + [8073,2017], + [8075,10405], + [8077,67680], + [8079,420], + [8081,7104], + [8083,11813], + [8085,17787], + [8087,13967], + [8089,7538], + [8091,1890], + [8093,8662], + [8095,2031], + [8097,10126], + [8099,5671], + [8101,66523], + [8103,2833], + [8105,4481], + [8107,13338], + [8109,2716], + [8111,482], + [8113,4475], + [8115,1041], + [8117,18158], + [8119,10912], + [8121,2507], + [8123,126256], + [8125,4633], + [9001,436901], + [9003,430874], + [9005,98059], + [9007,85251], + [9009,415190], + [9011,128037], + [9013,78216], + [9015,57308], + [10001,68382], + [10003,258807], + [10005,86269], + [11001,331984], + [12001,121373], + [12003,10374], + [12005,79206], + [12007,10307], + [12009,237972], + [12011,886780], + [12013,4627], + [12015,59621], + [12017,46006], + [12019,89002], + [12021,139883], + [12023,25567], + [12027,11616], + [12029,5215], + [12031,416680], + [12033,127948], + [12035,37998], + [12037,4724], + [12039,16952], + [12041,6108], + [12043,5262], + [12045,5598], + [12047,4717], + [12049,10792], + [12051,14830], + [12053,59281], + [12055,33542], + [12057,615740], + [12059,6534], + [12061,55217], + [12063,16502], + [12065,4996], + [12067,3286], + [12069,122203], + [12071,266535], + [12073,138903], + [12075,15176], + [12077,2529], + [12079,7313], + [12081,138509], + [12083,117140], + [12085,61568], + [12086,1176385], + [12087,41431], + [12089,33059], + [12091,85311], + [12093,16495], + [12095,600251], + [12097,129979], + [12099,604549], + [12101,189824], + [12103,429860], + [12105,250458], + [12107,25513], + [12109,97255], + [12111,114967], + [12113,67192], + [12115,153858], + [12117,212462], + [12119,24028], + [12121,16871], + [12123,8564], + [12125,4720], + [12127,214879], + [12129,13092], + [12131,24360], + [12133,9176], + [13001,7975], + [13003,3048], + [13005,4116], + [13007,1043], + [13009,16689], + [13011,7885], + [13013,31581], + [13015,42716], + [13017,5321], + [13019,7054], + [13021,64176], + [13023,4617], + [13025,6546], + [13027,6184], + [13029,13896], + [13031,30602], + [13033,8517], + [13035,9311], + [13037,2190], + [13039,20003], + [13043,4737], + [13045,46676], + [13047,29840], + [13049,4515], + [13051,119798], + [13053,2296], + [13055,9552], + [13057,106895], + [13059,53081], + [13061,883], + [13063,112298], + [13065,2634], + [13067,358646], + [13069,15483], + [13071,19162], + [13073,60188], + [13075,6821], + [13077,60271], + [13079,5259], + [13081,8030], + [13083,7747], + [13085,9928], + [13087,11006], + [13089,335318], + [13091,7212], + [13093,4260], + [13095,36288], + [13097,60547], + [13099,4033], + [13101,1674], + [13103,23786], + [13105,7481], + [13107,7967], + [13109,4393], + [13111,8996], + [13113,49458], + [13115,39913], + [13117,87542], + [13119,8466], + [13121,464673], + [13123,10874], + [13125,1194], + [13127,35114], + [13129,24216], + [13131,9902], + [13133,5708], + [13135,400458], + [13137,16673], + [13139,82180], + [13141,2290], + [13143,10863], + [13145,15102], + [13147,9709], + [13149,4593], + [13151,93513], + [13153,63212], + [13155,3127], + [13157,26995], + [13159,6013], + [13161,5645], + [13163,6148], + [13165,2902], + [13167,3660], + [13169,12700], + [13171,7005], + [13173,3544], + [13175,17372], + [13177,13227], + [13179,24736], + [13181,3156], + [13183,6079], + [13185,47676], + [13187,13910], + [13189,8154], + [13191,5444], + [13193,4485], + [13195,11955], + [13197,3251], + [13199,7946], + [13201,2479], + [13205,8761], + [13207,11712], + [13209,3447], + [13211,7770], + [13213,14306], + [13215,75432], + [13217,42993], + [13219,15992], + [13221,6305], + [13223,68282], + [13225,11149], + [13227,12637], + [13229,7550], + [13231,7643], + [13233,16917], + [13235,3987], + [13237,7336], + [13239,853], + [13241,6144], + [13243,2481], + [13245,79050], + [13247,37844], + [13249,1949], + [13251,4908], + [13253,2899], + [13255,24658], + [13257,10528], + [13259,2105], + [13261,12300], + [13263,2628], + [13265,521], + [13267,8997], + [13269,2699], + [13271,4715], + [13273,3345], + [13275,16696], + [13277,17226], + [13279,11045], + [13281,3939], + [13283,2514], + [13285,32110], + [13287,3055], + [13289,2702], + [13291,8807], + [13293,10713], + [13295,28145], + [13297,37400], + [13299,13915], + [13301,2256], + [13303,7247], + [13305,11262], + [13307,956], + [13309,1697], + [13311,12396], + [13313,40886], + [13315,2533], + [13317,3372], + [13319,3308], + [13321,8643], + [15001,78944], + [15003,423881], + [15005,"NA"], + [15007,31393], + [15009,74084], + [16001,191562], + [16003,1481], + [16005,38319], + [16007,2719], + [16009,3650], + [16011,21302], + [16013,10894], + [16015,2683], + [16017,16649], + [16019,45985], + [16021,4725], + [16023,1226], + [16025,607], + [16027,78996], + [16029,3728], + [16031,10464], + [16033,392], + [16035,2858], + [16037,2145], + [16039,9866], + [16041,6016], + [16043,6495], + [16045,6892], + [16047,7643], + [16049,5918], + [16051,11438], + [16053,10270], + [16055,62586], + [16057,18474], + [16059,3215], + [16061,1510], + [16063,2450], + [16065,17579], + [16067,9745], + [16069,18722], + [16071,1988], + [16073,4889], + [16075,9983], + [16077,3768], + [16079,4869], + [16081,4998], + [16083,35481], + [16085,4146], + [16087,4380], + [17001,31700], + [17003,2432], + [17005,7543], + [17007,24105], + [17009,2474], + [17011,16547], + [17013,2204], + [17015,7409], + [17017,6070], + [17019,96516], + [17021,15035], + [17023,7268], + [17025,6016], + [17027,19030], + [17029,22684], + [17031,2397792], + [17033,9647], + [17035,5503], + [17037,50920], + [17039,7803], + [17041,9217], + [17043,468487], + [17045,8250], + [17047,2822], + [17049,17321], + [17051,9743], + [17053,6267], + [17055,15564], + [17057,15286], + [17059,2316], + [17061,5941], + [17063,22797], + [17065,3615], + [17067,8514], + [17069,1554], + [17071,3436], + [17073,24239], + [17075,14022], + [17077,26935], + [17079,4566], + [17081,16260], + [17083,10379], + [17085,10993], + [17087,3810], + [17089,243818], + [17091,50780], + [17093,58179], + [17095,22388], + [17097,338183], + [17099,53608], + [17101,5824], + [17103,16736], + [17105,16819], + [17107,12533], + [17109,13876], + [17111,152016], + [17113,88530], + [17115,48928], + [17117,21799], + [17119,123818], + [17121,16857], + [17123,5711], + [17125,6315], + [17127,5948], + [17129,6522], + [17131,7976], + [17133,16746], + [17135,11727], + [17137,16427], + [17139,6868], + [17141,23984], + [17143,88235], + [17145,8258], + [17147,7977], + [17149,7215], + [17151,1731], + [17153,2108], + [17155,2846], + [17157,13399], + [17159,6949], + [17161,69358], + [17163,118036], + [17165,10602], + [17167,99661], + [17169,3346], + [17171,2478], + [17173,9873], + [17175,2761], + [17177,21414], + [17179,66211], + [17181,6759], + [17183,33606], + [17185,5320], + [17187,8305], + [17189,8577], + [17191,7421], + [17193,6734], + [17195,26928], + [17197,321288], + [17199,29131], + [17201,130873], + [17203,19299], + [18001,14765], + [18003,159248], + [18005,38763], + [18007,4211], + [18009,4836], + [18011,28388], + [18013,6737], + [18015,9251], + [18017,16250], + [18019,51071], + [18021,11545], + [18023,15239], + [18025,4282], + [18027,13900], + [18029,22756], + [18031,12481], + [18033,18852], + [18035,49756], + [18037,20352], + [18039,88195], + [18041,8144], + [18043,35095], + [18045,7822], + [18047,9553], + [18049,9238], + [18051,16205], + [18053,29189], + [18055,12367], + [18057,143093], + [18059,33107], + [18061,17124], + [18063,72028], + [18065,19018], + [18067,32658], + [18069,16950], + [18071,18957], + [18073,14672], + [18075,9285], + [18077,13930], + [18079,11760], + [18081,67492], + [18083,17381], + [18085,35758], + [18087,15792], + [18089,208007], + [18091,44850], + [18093,18301], + [18095,52201], + [18097,416091], + [18099,21074], + [18101,4717], + [18103,14114], + [18105,61900], + [18107,17072], + [18109,31769], + [18111,6257], + [18113,20671], + [18115,2898], + [18117,7831], + [18119,8762], + [18121,6274], + [18123,8128], + [18125,5679], + [18127,76107], + [18129,12299], + [18131,5808], + [18133,14721], + [18135,11541], + [18137,12602], + [18139,7665], + [18141,115690], + [18143,9133], + [18145,20453], + [18147,10012], + [18149,9036], + [18151,17536], + [18153,7982], + [18155,4512], + [18157,82295], + [18159,7387], + [18161,3270], + [18163,84786], + [18165,6617], + [18167,45160], + [18169,14361], + [18171,3888], + [18173,28718], + [18175,11930], + [18177,27655], + [18179,12727], + [18181,12013], + [18183,15557], + [19001,3871], + [19003,2096], + [19005,7106], + [19007,5598], + [19009,3062], + [19011,13043], + [19013,67357], + [19015,13940], + [19017,13335], + [19019,10495], + [19021,10760], + [19023,7841], + [19025,4184], + [19027,10912], + [19029,6820], + [19031,10179], + [19033,22398], + [19035,6560], + [19037,5968], + [19039,4333], + [19041,8436], + [19043,9588], + [19045,23538], + [19047,8366], + [19049,37635], + [19051,3855], + [19053,4055], + [19055,9797], + [19057,18857], + [19059,8661], + [19061,52150], + [19063,5459], + [19065,10207], + [19067,7618], + [19069,5552], + [19071,3804], + [19073,4863], + [19075,6349], + [19077,5243], + [19079,6562], + [19081,5708], + [19083,8289], + [19085,7157], + [19087,9050], + [19089,4960], + [19091,4939], + [19093,3621], + [19095,9163], + [19097,10227], + [19099,17440], + [19101,8301], + [19103,77342], + [19105,10114], + [19107,5127], + [19109,8060], + [19111,16222], + [19113,112687], + [19115,5471], + [19117,3985], + [19119,6632], + [19121,7683], + [19123,11035], + [19125,16245], + [19127,18529], + [19129,6930], + [19131,5299], + [19133,4245], + [19135,3750], + [19137,4776], + [19139,20023], + [19141,7735], + [19143,3243], + [19145,6316], + [19147,4554], + [19149,13611], + [19151,3994], + [19153,231495], + [19155,46011], + [19157,9663], + [19159,2426], + [19161,5270], + [19163,81912], + [19165,6729], + [19167,18707], + [19169,51426], + [19171,8544], + [19173,3014], + [19175,6506], + [19177,3579], + [19179,16649], + [19181,24650], + [19183,11639], + [19185,2640], + [19187,18060], + [19189,4843], + [19191,11338], + [19193,51447], + [19195,3991], + [19197,6428], + [20001,6372], + [20003,4020], + [20005,7229], + [20007,2624], + [20009,14289], + [20011,6199], + [20013,4955], + [20015,30002], + [20017,1255], + [20019,1584], + [20021,9745], + [20023,1282], + [20025,1159], + [20027,4027], + [20029,4345], + [20031,4203], + [20033,960], + [20035,16152], + [20037,18004], + [20039,1339], + [20041,9452], + [20043,4117], + [20045,60235], + [20047,1576], + [20049,1256], + [20051,17403], + [20053,3365], + [20055,19254], + [20057,18095], + [20059,12960], + [20061,11697], + [20063,1468], + [20065,1339], + [20067,3832], + [20069,3451], + [20071,857], + [20073,3234], + [20075,1776], + [20077,2972], + [20079,16312], + [20081,2379], + [20083,1073], + [20085,6932], + [20087,9620], + [20089,1387], + [20091,296014], + [20093,2084], + [20095,3537], + [20097,1354], + [20099,9858], + [20101,859], + [20103,32240], + [20105,1757], + [20107,3949], + [20109,1701], + [20111,16227], + [20113,15969], + [20115,6019], + [20117,5830], + [20119,2387], + [20121,15694], + [20123,3752], + [20125,16984], + [20127,3008], + [20129,1594], + [20131,5780], + [20133,6288], + [20135,1573], + [20137,3046], + [20139,7738], + [20141,2079], + [20143,3046], + [20145,3281], + [20147,2877], + [20149,11038], + [20151,5192], + [20153,1526], + [20155,30318], + [20157,2511], + [20159,5162], + [20161,34667], + [20163,2639], + [20165,1803], + [20167,3652], + [20169,28940], + [20171,2690], + [20173,229760], + [20175,10383], + [20177,86288], + [20179,1503], + [20181,3094], + [20183,2128], + [20185,2115], + [20187,1011], + [20189,2784], + [20191,10578], + [20193,4385], + [20195,1444], + [20197,3581], + [20199,835], + [20201,3113], + [20203,1262], + [20205,3772], + [20207,1542], + [20209,68103], + [21001,7083], + [21003,8302], + [21005,10744], + [21007,3527], + [21009,18273], + [21011,4382], + [21013,9043], + [21015,60924], + [21017,9132], + [21019,18210], + [21021,11900], + [21023,3577], + [21025,3882], + [21027,7482], + [21029,36099], + [21031,4925], + [21033,5205], + [21035,17014], + [21037,45437], + [21039,2154], + [21041,4547], + [21043,10056], + [21045,6287], + [21047,24249], + [21049,15998], + [21051,5123], + [21053,3788], + [21055,3839], + [21057,2783], + [21059,44882], + [21061,4532], + [21063,1973], + [21065,5058], + [21067,156579], + [21069,5892], + [21071,12144], + [21073,22914], + [21075,2202], + [21077,3576], + [21079,7098], + [21081,10462], + [21083,15293], + [21085,10150], + [21087,5000], + [21089,13553], + [21091,3853], + [21093,43682], + [21095,8527], + [21097,8199], + [21099,7464], + [21101,20932], + [21103,7138], + [21105,1990], + [21107,19918], + [21109,4568], + [21111,352234], + [21113,23151], + [21115,7724], + [21117,78150], + [21119,5025], + [21121,9201], + [21123,5440], + [21125,22361], + [21127,5039], + [21129,2124], + [21131,3081], + [21133,7425], + [21135,4755], + [21137,9062], + [21139,3588], + [21141,11271], + [21143,2817], + [21145,28451], + [21147,4753], + [21149,4212], + [21151,41617], + [21153,3343], + [21155,8363], + [21157,14125], + [21159,3424], + [21161,6901], + [21163,11398], + [21165,2249], + [21167,9401], + [21169,4074], + [21171,4454], + [21173,11237], + [21175,4666], + [21177,11198], + [21179,20086], + [21181,3244], + [21183,9482], + [21185,28045], + [21187,5373], + [21189,1157], + [21191,6440], + [21193,9582], + [21195,21855], + [21197,4516], + [21199,24725], + [21201,762], + [21203,6457], + [21205,10258], + [21207,6478], + [21209,24124], + [21211,20888], + [21213,8200], + [21215,8611], + [21217,10565], + [21219,5243], + [21221,5469], + [21223,3628], + [21225,6476], + [21227,55795], + [21229,5746], + [21231,6730], + [21233,5808], + [21235,12400], + [21237,1804], + [21239,13369], + [22001,24571], + [22003,8372], + [22005,51502], + [22007,8988], + [22009,15130], + [22011,13327], + [22013,5417], + [22015,54006], + [22017,104787], + [22019,81839], + [22021,3653], + [22023,3057], + [22025,3568], + [22027,6498], + [22029,7137], + [22031,10188], + [22033,207284], + [22035,1751], + [22037,7361], + [22039,11882], + [22041,6896], + [22043,7574], + [22045,30056], + [22047,12589], + [22049,6366], + [22051,198018], + [22053,12131], + [22055,110733], + [22057,43027], + [22059,6395], + [22061,17806], + [22063,58167], + [22065,3422], + [22067,9778], + [22069,14601], + [22071,155488], + [22073,65263], + [22075,9525], + [22077,9074], + [22079,53206], + [22081,3657], + [22083,7823], + [22085,8572], + [22087,16235], + [22089,23094], + [22091,4045], + [22093,8684], + [22095,18611], + [22097,30626], + [22099,22716], + [22101,23510], + [22103,102332], + [22105,48506], + [22107,1619], + [22109,48306], + [22111,8457], + [22113,24326], + [22115,17320], + [22117,15026], + [22119,14536], + [22121,11088], + [22123,3594], + [22125,4820], + [22127,5205], + [23001,52019], + [23003,31008], + [23005,150251], + [23007,14145], + [23009,27377], + [23011,58636], + [23013,19190], + [23015,15993], + [23017,25196], + [23019,73723], + [23021,7132], + [23023,17941], + [23025,22162], + [23027,18977], + [23029,13227], + [23031,103143], + [24001,30830], + [24003,276061], + [24005,407889], + [24009,44715], + [24011,16247], + [24013,87755], + [24015,47560], + [24017,74249], + [24019,14421], + [24021,120756], + [24023,14517], + [24025,126142], + [24027,159777], + [24029,9818], + [24031,512438], + [24033,449665], + [24035,25041], + [24037,51102], + [24039,8650], + [24041,18016], + [24043,71119], + [24045,45774], + [24047,22763], + [24510,267002], + [25001,99077], + [25003,61405], + [25005,260399], + [25007,8503], + [25009,367614], + [25011,37182], + [25013,200247], + [25015,80251], + [25017,786743], + [25019,5887], + [25021,338418], + [25023,242063], + [25025,376767], + [25027,387976], + [26001,3240], + [26003,3024], + [26005,52482], + [26007,12084], + [26009,8848], + [26011,5694], + [26013,3036], + [26015,26968], + [26017,48230], + [26019,7631], + [26021,66664], + [26023,16992], + [26025,57015], + [26027,21744], + [26029,11515], + [26031,9255], + [26033,15386], + [26035,10545], + [26037,36153], + [26039,4736], + [26041,15777], + [26043,11566], + [26045,51079], + [26047,15666], + [26049,163066], + [26051,8752], + [26053,6033], + [26055,42529], + [26057,16905], + [26059,18586], + [26061,15390], + [26063,15069], + [26065,131953], + [26067,26190], + [26069,9010], + [26071,4594], + [26073,32136], + [26075,65453], + [26077,115564], + [26079,6588], + [26081,297920], + [26083,859], + [26085,3183], + [26087,35095], + [26089,9347], + [26091,43522], + [26093,85806], + [26095,2107], + [26097,4560], + [26099,371286], + [26101,9359], + [26103,31240], + [26105,12952], + [26107,16916], + [26109,10809], + [26111,37507], + [26113,6242], + [26115,67904], + [26117,24473], + [26119,2709], + [26121,68034], + [26123,19993], + [26125,565454], + [26127,11202], + [26129,7639], + [26131,2233], + [26133,8975], + [26135,2518], + [26137,9989], + [26139,132241], + [26141,4734], + [26143,7012], + [26145,80580], + [26147,65066], + [26149,24989], + [26151,17274], + [26153,3090], + [26155,29986], + [26157,22078], + [26159,31496], + [26161,170803], + [26163,681453], + [26165,12876], + [27001,6345], + [27003,176226], + [27005,16836], + [27007,21245], + [27009,19844], + [27011,2682], + [27013,36479], + [27015,13982], + [27017,16272], + [27019,49897], + [27021,12623], + [27023,6685], + [27025,26684], + [27027,33334], + [27029,3944], + [27031,2858], + [27033,5561], + [27035,28538], + [27037,216129], + [27039,10768], + [27041,18812], + [27043,7318], + [27045,10650], + [27047,15707], + [27049,25333], + [27051,3133], + [27053,625310], + [27055,9957], + [27057,8773], + [27059,18929], + [27061,20502], + [27063,5924], + [27065,7947], + [27067,22267], + [27069,2414], + [27071,6167], + [27073,3662], + [27075,5478], + [27077,2204], + [27079,14482], + [27081,3260], + [27083,14558], + [27085,18580], + [27087,2306], + [27089,5306], + [27091,10263], + [27093,11897], + [27095,11634], + [27097,16670], + [27099,19630], + [27101,4735], + [27103,18839], + [27105,10799], + [27107,3314], + [27109,78892], + [27111,29067], + [27113,8022], + [27115,13761], + [27117,4662], + [27119,16418], + [27121,5667], + [27123,257259], + [27125,2171], + [27127,7752], + [27129,7855], + [27131,32836], + [27133,5344], + [27135,8134], + [27137,94964], + [27139,72024], + [27141,45611], + [27143,7915], + [27145,81613], + [27147,20400], + [27149,5369], + [27151,4771], + [27153,12277], + [27155,1686], + [27157,11340], + [27159,5743], + [27161,9625], + [27163,126811], + [27165,5932], + [27167,3603], + [27169,28363], + [27171,66174], + [27173,5394], + [28001,11141], + [28003,14608], + [28005,4284], + [28007,6841], + [28009,2941], + [28011,12871], + [28013,6185], + [28015,3271], + [28017,7174], + [28019,3386], + [28021,2986], + [28023,6005], + [28025,7379], + [28027,8931], + [28029,10562], + [28031,7651], + [28033,77739], + [28035,31315], + [28037,2771], + [28039,7919], + [28041,4055], + [28043,8726], + [28045,17941], + [28047,81688], + [28049,105543], + [28051,5524], + [28053,2567], + [28055,388], + [28057,9540], + [28059,57255], + [28061,6193], + [28063,2080], + [28065,3883], + [28067,26560], + [28069,3450], + [28071,21550], + [28073,26328], + [28075,31447], + [28077,4433], + [28079,7629], + [28081,37628], + [28083,9637], + [28085,13168], + [28087,25005], + [28089,47262], + [28091,9276], + [28093,13725], + [28095,14356], + [28097,4014], + [28099,10680], + [28101,8524], + [28103,3659], + [28105,20874], + [28107,12570], + [28109,21819], + [28111,3927], + [28113,13663], + [28115,12980], + [28117,10438], + [28119,2557], + [28121,68604], + [28123,12096], + [28125,1675], + [28127,10355], + [28129,6580], + [28131,6004], + [28133,8123], + [28135,5124], + [28137,11281], + [28139,8127], + [28141,7076], + [28143,4297], + [28145,12460], + [28147,4948], + [28149,21161], + [28151,17118], + [28153,7504], + [28155,3846], + [28157,2862], + [28159,6837], + [28161,4885], + [28163,8739], + [29001,9994], + [29003,9378], + [29005,2696], + [29007,10616], + [29009,14059], + [29011,5133], + [29013,7511], + [29015,6499], + [29017,5322], + [29019,92078], + [29021,43810], + [29023,17157], + [29025,4093], + [29027,20482], + [29029,17154], + [29031,38558], + [29033,4215], + [29035,2306], + [29037,49305], + [29039,5368], + [29041,3769], + [29043,38442], + [29045,3076], + [29047,118815], + [29049,10094], + [29051,37846], + [29053,7255], + [29055,9794], + [29057,3116], + [29059,6463], + [29061,3786], + [29063,4755], + [29065,5519], + [29067,4645], + [29069,10931], + [29071,47919], + [29073,7010], + [29075,3402], + [29077,135502], + [29079,4629], + [29081,3682], + [29083,9084], + [29085,3188], + [29087,2552], + [29089,4516], + [29091,15206], + [29093,3321], + [29095,328189], + [29097,54818], + [29099,107002], + [29101,21311], + [29103,1859], + [29105,14334], + [29107,16025], + [29109,16189], + [29111,4881], + [29113,24169], + [29115,4700], + [29117,6780], + [29119,9507], + [29121,7004], + [29123,4935], + [29125,3852], + [29127,13611], + [29129,1740], + [29131,10346], + [29133,5667], + [29135,6841], + [29137,3749], + [29139,5350], + [29141,7034], + [29143,7479], + [29145,27590], + [29147,11077], + [29149,3733], + [29151,6965], + [29153,3230], + [29155,6425], + [29157,9495], + [29159,18584], + [29161,18286], + [29163,7579], + [29165,49603], + [29167,12998], + [29169,14591], + [29171,2213], + [29173,5271], + [29175,9744], + [29177,10383], + [29179,2020], + [29181,4935], + [29183,194204], + [29185,3608], + [29186,8375], + [29187,23694], + [29189,493385], + [29195,10302], + [29197,1752], + [29199,2229], + [29201,18474], + [29203,2725], + [29205,2938], + [29207,12319], + [29209,12164], + [29211,2590], + [29213,22601], + [29215,8859], + [29217,9059], + [29219,15678], + [29221,8924], + [29223,4848], + [29225,14812], + [29227,1194], + [29229,6950], + [29510,147450], + [30001,4643], + [30003,4862], + [30005,2327], + [30007,2295], + [30009,5081], + [30011,663], + [30013,36245], + [30015,2563], + [30017,6304], + [30019,911], + [30021,4494], + [30023,4901], + [30025,1991], + [30027,5541], + [30029,39419], + [30031,49805], + [30033,744], + [30035,5720], + [30037,372], + [30039,1353], + [30041,7567], + [30043,5292], + [30045,939], + [30047,11480], + [30049,33225], + [30051,993], + [30053,7181], + [30055,1057], + [30057,3856], + [30059,879], + [30061,1575], + [30063,55667], + [30065,2286], + [30067,7465], + [30069,286], + [30071,1937], + [30073,2796], + [30075,1037], + [30077,2820], + [30079,506], + [30081,17290], + [30083,6526], + [30085,4503], + [30087,4152], + [30089,4244], + [30091,1998], + [30093,16170], + [30095,4732], + [30097,1679], + [30099,2797], + [30101,2395], + [30103,360], + [30105,3857], + [30107,785], + [30109,543], + [30111,75067], + [31001,16242], + [31003,3464], + [31005,215], + [31007,418], + [31009,269], + [31011,2948], + [31013,5737], + [31015,1102], + [31017,1394], + [31019,26405], + [31021,3504], + [31023,4586], + [31025,12694], + [31027,4603], + [31029,2317], + [31031,3382], + [31033,5628], + [31035,3356], + [31037,5463], + [31039,4763], + [31041,5934], + [31043,10550], + [31045,5218], + [31047,12698], + [31049,1153], + [31051,3011], + [31053,18400], + [31055,272913], + [31057,1244], + [31059,3212], + [31061,1584], + [31063,1561], + [31065,2593], + [31067,10624], + [31069,1221], + [31071,1183], + [31073,1111], + [31075,424], + [31077,1252], + [31079,31357], + [31081,4682], + [31083,1817], + [31085,644], + [31087,1303], + [31089,5781], + [31091,418], + [31093,3299], + [31095,4158], + [31097,2098], + [31099,3821], + [31101,4491], + [31103,588], + [31105,2150], + [31107,4630], + [31109,161556], + [31111,18517], + [31113,490], + [31115,377], + [31117,348], + [31119,18500], + [31121,4077], + [31123,2617], + [31125,2029], + [31127,3698], + [31129,2391], + [31131,8128], + [31133,1586], + [31135,1781], + [31137,4897], + [31139,4057], + [31141,17387], + [31143,2901], + [31145,6150], + [31147,4182], + [31149,858], + [31151,7044], + [31153,84673], + [31155,10717], + [31157,18334], + [31159,8642], + [31161,2707], + [31163,1685], + [31165,811], + [31167,3547], + [31169,2916], + [31171,411], + [31173,2872], + [31175,2077], + [31177,10806], + [31179,5543], + [31181,1683], + [31183,505], + [31185,7320], + [32001,9868], + [32003,886972], + [32005,20154], + [32007,27355], + [32009,443], + [32011,1037], + [32013,8494], + [32015,3181], + [32017,1878], + [32019,19170], + [32021,1651], + [32023,14227], + [32027,2354], + [32029,1662], + [32031,196768], + [32033,4627], + [32510,22870], + [33001,30320], + [33003,23373], + [33005,40450], + [33007,14904], + [33009,46564], + [33011,213782], + [33013,77144], + [33015,164606], + [33017,66264], + [33019,22963], + [34001,122973], + [34003,446933], + [34005,215939], + [34007,234738], + [34009,42104], + [34011,61992], + [34013,342784], + [34015,136848], + [34017,328249], + [34019,62900], + [34021,178037], + [34023,394536], + [34025,302734], + [34027,248396], + [34029,240271], + [34031,225649], + [34033,28371], + [34035,162789], + [34037,73912], + [34039,256312], + [34041,53520], + [35001,299201], + [35003,1128], + [35005,25219], + [35006,8493], + [35007,5649], + [35009,20510], + [35011,787], + [35013,86906], + [35015,25576], + [35017,12141], + [35019,1481], + [35021,274], + [35023,2166], + [35025,26988], + [35027,8379], + [35028,8649], + [35029,9171], + [35031,22523], + [35033,2061], + [35035,23419], + [35037,3115], + [35039,15291], + [35041,7878], + [35043,55816], + [35045,51384], + [35047,10115], + [35049,69401], + [35051,3583], + [35053,6343], + [35055,13434], + [35057,5152], + [35059,1790], + [35061,27595], + [36001,149260], + [36003,21697], + [36005,520987], + [36007,85835], + [36009,34733], + [36011,35884], + [36013,56055], + [36015,37142], + [36017,22044], + [36019,34424], + [36021,29451], + [36023,22365], + [36025,19702], + [36027,134988], + [36029,423403], + [36031,16437], + [36033,19712], + [36035,22595], + [36037,28443], + [36039,19406], + [36041,2187], + [36043,27861], + [36045,43648], + [36047,1073762], + [36049,11043], + [36051,29625], + [36053,31675], + [36055,346636], + [36057,21011], + [36059,644803], + [36061,823126], + [36063,95894], + [36065,99615], + [36067,214624], + [36069,51971], + [36071,165414], + [36073,17045], + [36075,51585], + [36077,28988], + [36079,47899], + [36081,1031021], + [36083,77126], + [36085,197583], + [36087,139454], + [36089,43627], + [36091,109520], + [36093,72058], + [36095,14034], + [36097,8184], + [36099,14946], + [36101,41544], + [36103,718733], + [36105,32093], + [36107,23457], + [36109,51699], + [36111,83508], + [36113,30660], + [36115,27426], + [36117,42536], + [36119,442827], + [36121,17229], + [36123,11147], + [37001,71344], + [37003,15981], + [37005,4123], + [37007,9850], + [37009,11810], + [37011,6920], + [37013,18820], + [37015,7679], + [37017,12615], + [37019,42027], + [37021,117278], + [37023,36687], + [37025,83139], + [37027,32613], + [37029,4166], + [37031,28685], + [37033,8901], + [37035,68806], + [37037,29137], + [37039,10171], + [37041,5262], + [37043,3736], + [37045,40700], + [37047,20341], + [37049,37905], + [37051,118538], + [37053,11395], + [37055,18156], + [37057,71892], + [37059,18183], + [37061,24011], + [37063,137697], + [37065,20871], + [37067,160794], + [37069,25436], + [37071,90442], + [37073,4946], + [37075,2944], + [37077,26036], + [37079,8822], + [37081,230428], + [37083,18972], + [37085,44443], + [37087,25008], + [37089,44949], + [37091,8543], + [37093,17715], + [37095,1845], + [37097,71394], + [37099,16161], + [37101,76485], + [37103,4134], + [37105,24014], + [37107,25696], + [37109,36103], + [37111,18366], + [37113,13840], + [37115,8563], + [37117,9179], + [37119,481623], + [37121,5836], + [37123,10331], + [37125,34181], + [37127,40796], + [37129,99450], + [37131,7345], + [37133,58505], + [37135,67675], + [37137,4887], + [37139,16303], + [37141,22285], + [37143,4717], + [37145,16365], + [37147,79725], + [37149,7640], + [37151,61672], + [37153,15530], + [37155,45822], + [37157,38186], + [37159,56426], + [37161,23245], + [37163,26932], + [37165,10324], + [37167,25893], + [37169,20309], + [37171,30410], + [37173,5562], + [37175,12286], + [37177,1367], + [37179,96045], + [37181,15985], + [37183,466623], + [37185,6635], + [37187,4124], + [37189,25062], + [37191,50689], + [37193,27411], + [37195,33345], + [37197,16315], + [37199,7123], + [38001,1080], + [38003,5556], + [38005,2581], + [38007,458], + [38009,3293], + [38011,1883], + [38013,1348], + [38015,45293], + [38017,86980], + [38019,2080], + [38021,2635], + [38023,1760], + [38025,3622], + [38027,1186], + [38029,1559], + [38031,1631], + [38033,957], + [38035,36043], + [38037,1259], + [38039,1192], + [38041,1415], + [38043,1199], + [38045,2220], + [38047,880], + [38049,3143], + [38051,1208], + [38053,6005], + [38055,4546], + [38057,3822], + [38059,14950], + [38061,7291], + [38063,1483], + [38065,831], + [38067,3471], + [38069,1794], + [38071,5586], + [38073,2715], + [38075,1412], + [38077,8253], + [38079,4493], + [38081,2090], + [38083,710], + [38085,1239], + [38087,518], + [38089,17929], + [38091,1021], + [38093,10067], + [38095,1218], + [38097,4389], + [38099,5389], + [38101,33055], + [38103,2139], + [38105,26795], + [39001,9416], + [39003,46089], + [39005,23745], + [39007,42062], + [39009,25235], + [39011,22465], + [39013,29111], + [39015,18130], + [39017,172183], + [39019,12696], + [39021,17942], + [39023,60730], + [39025,94484], + [39027,15425], + [39029,46694], + [39031,14575], + [39033,18466], + [39035,577178], + [39037,24638], + [39039,17531], + [39041,90968], + [39043,35530], + [39045,68444], + [39047,12942], + [39049,589581], + [39051,20685], + [39053,11424], + [39055,46234], + [39057,75067], + [39059,16592], + [39061,372343], + [39063,37240], + [39065,13776], + [39067,6377], + [39069,12882], + [39071,15771], + [39073,12427], + [39075,18730], + [39077,26079], + [39079,12301], + [39081,27863], + [39083,28047], + [39085,117089], + [39087,24251], + [39089,80186], + [39091,20979], + [39093,138642], + [39095,192835], + [39097,18800], + [39099,101514], + [39101,26595], + [39103,88480], + [39105,8404], + [39107,20999], + [39109,48510], + [39111,5947], + [39113,233575], + [39115,6035], + [39117,15521], + [39119,36657], + [39121,4253], + [39123,19896], + [39125,8502], + [39127,14512], + [39129,23779], + [39131,9188], + [39133,81546], + [39135,19811], + [39137,17700], + [39139,50987], + [39141,31175], + [39143,29368], + [39145,27567], + [39147,25575], + [39149,22097], + [39151,173824], + [39153,251990], + [39155,86681], + [39157,41665], + [39159,24816], + [39161,13082], + [39163,4948], + [39165,101929], + [39167,25954], + [39169,55431], + [39171,17363], + [39173,63951], + [39175,11303], + [40001,7727], + [40003,2836], + [40005,4665], + [40007,3035], + [40009,12181], + [40011,4208], + [40013,16684], + [40015,11012], + [40017,61050], + [40019,20727], + [40021,17652], + [40023,5341], + [40025,1250], + [40027,130724], + [40029,2200], + [40031,47845], + [40033,2724], + [40035,6006], + [40037,29712], + [40039,15132], + [40041,16010], + [40043,2307], + [40045,2217], + [40047,28358], + [40049,11904], + [40051,24367], + [40053,2563], + [40055,1965], + [40057,1349], + [40059,1859], + [40061,4213], + [40063,5314], + [40065,10516], + [40067,2477], + [40069,3368], + [40071,18874], + [40073,7446], + [40075,4074], + [40077,4168], + [40079,18383], + [40081,14796], + [40083,19718], + [40085,4899], + [40087,16852], + [40089,13096], + [40091,6677], + [40093,3935], + [40095,6423], + [40097,17368], + [40099,6374], + [40101,28116], + [40103,5254], + [40105,4585], + [40107,4079], + [40109,348402], + [40111,15245], + [40113,20089], + [40115,13429], + [40117,7015], + [40119,36149], + [40121,17719], + [40123,17351], + [40125,30370], + [40127,4514], + [40129,2047], + [40131,41652], + [40133,9219], + [40135,15807], + [40137,19580], + [40139,8617], + [40141,3250], + [40143,294043], + [40145,34148], + [40147,23416], + [40149,5426], + [40151,4934], + [40153,10225], + [41001,6347], + [41003,42263], + [41005,184288], + [41007,16918], + [41009,20464], + [41011,24091], + [41013,7975], + [41015,7897], + [41017,69871], + [41019,40242], + [41021,842], + [41023,2843], + [41025,3102], + [41027,13021], + [41029,87465], + [41031,8456], + [41033,29299], + [41035,26465], + [41037,3157], + [41039,156906], + [41041,19226], + [41043,49347], + [41045,11624], + [41047,135549], + [41049,5185], + [41051,387585], + [41053,32092], + [41055,799], + [41057,10085], + [41059,33354], + [41061,11060], + [41063,2966], + [41065,12639], + [41067,270395], + [41069,727], + [41071,46248], + [42001,51251], + [42003,607810], + [42005,31181], + [42007,80346], + [42009,22915], + [42011,195561], + [42013,57248], + [42015,30393], + [42017,314424], + [42019,91687], + [42021,60185], + [42023,2202], + [42025,29083], + [42027,73311], + [42029,257623], + [42031,17296], + [42033,34657], + [42035,17741], + [42037,32550], + [42039,38782], + [42041,117989], + [42043,130682], + [42045,267287], + [42047,15712], + [42049,126706], + [42051,54272], + [42053,1817], + [42055,70982], + [42057,6755], + [42059,17683], + [42061,18710], + [42063,41130], + [42065,19946], + [42067,11174], + [42069,98121], + [42071,251655], + [42073,39905], + [42075,66176], + [42077,167357], + [42079,145103], + [42081,57815], + [42083,18570], + [42085,49863], + [42087,19302], + [42089,74374], + [42091,407899], + [42093,8894], + [42095,142832], + [42097,40980], + [42099,22870], + [42101,623246], + [42103,23421], + [42105,7206], + [42107,64077], + [42109,18329], + [42111,33343], + [42113,2860], + [42115,20797], + [42117,20071], + [42119,17901], + [42121,24284], + [42123,19179], + [42125,99718], + [42127,21260], + [42129,173802], + [42131,13106], + [42133,215912], + [44001,23843], + [44003,83037], + [44005,40116], + [44007,290130], + [44009,63307], + [45001,9549], + [45003,66682], + [45005,2603], + [45007,77998], + [45009,4877], + [45011,7716], + [45013,60939], + [45015,80977], + [45017,6173], + [45019,173166], + [45021,20705], + [45023,11961], + [45025,18655], + [45027,11578], + [45029,14465], + [45031,27048], + [45033,11338], + [45035,62864], + [45037,9638], + [45039,9039], + [45041,58697], + [45043,21718], + [45045,210086], + [45047,28798], + [45049,7480], + [45051,118938], + [45053,10033], + [45055,25448], + [45057,30478], + [45059,26938], + [45061,5782], + [45063,127020], + [45065,3150], + [45067,11361], + [45069,8900], + [45071,16622], + [45073,30452], + [45075,33761], + [45077,49844], + [45079,173861], + [45081,7866], + [45083,122074], + [45085,39963], + [45087,10332], + [45089,10471], + [45091,107576], + [46003,1633], + [46005,9234], + [46007,1118], + [46009,2917], + [46011,16990], + [46013,20115], + [46015,2552], + [46017,674], + [46019,4742], + [46021,829], + [46023,3855], + [46025,1838], + [46027,7142], + [46029,14884], + [46031,1391], + [46033,3801], + [46035,10830], + [46037,2778], + [46039,2332], + [46041,2027], + [46043,1636], + [46045,2236], + [46047,2943], + [46049,1098], + [46051,4317], + [46053,2037], + [46055,1062], + [46057,3002], + [46059,1776], + [46061,1725], + [46063,777], + [46065,9588], + [46067,3583], + [46069,738], + [46071,1246], + [46073,1178], + [46075,602], + [46077,2865], + [46079,5997], + [46081,12075], + [46083,26913], + [46085,1768], + [46087,3049], + [46089,1091], + [46091,2379], + [46093,12595], + [46095,789], + [46097,1214], + [46099,96904], + [46101,3785], + [46102,"NA"], + [46103,50948], + [46105,1472], + [46107,1161], + [46109,4640], + [46111,1250], + [46115,3258], + [46117,1802], + [46119,853], + [46121,2917], + [46123,3028], + [46125,4565], + [46127,7432], + [46129,2182], + [46135,11142], + [46137,982], + [47001,31781], + [47003,18313], + [47005,6280], + [47007,3862], + [47009,56162], + [47011,45184], + [47013,13996], + [47015,5517], + [47017,11920], + [47019,23225], + [47021,18721], + [47023,7720], + [47025,12019], + [47027,2989], + [47029,13697], + [47031,22623], + [47033,6554], + [47035,21689], + [47037,331459], + [47039,4676], + [47041,7272], + [47043,22185], + [47045,15564], + [47047,16858], + [47049,6746], + [47051,17961], + [47053,20532], + [47055,12856], + [47057,8690], + [47059,27025], + [47061,4976], + [47063,25007], + [47065,159238], + [47067,1991], + [47069,8909], + [47071,10027], + [47073,22883], + [47075,7279], + [47077,11930], + [47079,12950], + [47081,9707], + [47083,3126], + [47085,7837], + [47087,4108], + [47089,21752], + [47091,6658], + [47093,216796], + [47095,1978], + [47097,9377], + [47099,16927], + [47101,4501], + [47103,14645], + [47105,20646], + [47107,21462], + [47109,8766], + [47111,9299], + [47113,44585], + [47115,11163], + [47117,12959], + [47119,37487], + [47121,4541], + [47123,17540], + [47125,72126], + [47127,3198], + [47129,7472], + [47131,12422], + [47133,8870], + [47135,2811], + [47137,2218], + [47139,6752], + [47141,30279], + [47143,12120], + [47145,21834], + [47147,31371], + [47149,135724], + [47151,7411], + [47153,5460], + [47155,45160], + [47157,407723], + [47159,7963], + [47161,4931], + [47163,67447], + [47165,79493], + [47167,25811], + [47169,3366], + [47171,6916], + [47173,6907], + [47175,1987], + [47177,15964], + [47179,56033], + [47181,6031], + [47183,15094], + [47185,11020], + [47187,94106], + [47189,56806], + [48001,20974], + [48003,8203], + [48005,35257], + [48007,9251], + [48009,4131], + [48011,981], + [48013,18719], + [48015,13192], + [48017,2963], + [48019,8530], + [48021,32944], + [48023,1771], + [48025,10090], + [48027,124194], + [48029,787214], + [48031,5210], + [48033,401], + [48035,7599], + [48037,38465], + [48039,150457], + [48041,94566], + [48043,4331], + [48045,608], + [48047,2484], + [48049,14981], + [48051,7184], + [48053,19209], + [48055,15636], + [48057,9658], + [48059,5572], + [48061,149171], + [48063,5064], + [48065,3141], + [48067,11650], + [48069,3882], + [48071,15771], + [48073,20388], + [48075,2838], + [48077,5021], + [48079,1338], + [48081,1398], + [48083,3067], + [48085,420419], + [48087,1186], + [48089,9536], + [48091,52535], + [48093,5421], + [48095,1448], + [48097,19653], + [48099,23528], + [48101,616], + [48103,1960], + [48105,1685], + [48107,2702], + [48109,929], + [48111,3873], + [48113,1136230], + [48115,4754], + [48117,8887], + [48119,2448], + [48121,366353], + [48123,9275], + [48125,744], + [48127,5428], + [48129,1609], + [48131,5050], + [48133,7716], + [48135,73523], + [48137,867], + [48139,71601], + [48141,317841], + [48143,18941], + [48145,6410], + [48147,14004], + [48149,11919], + [48151,1805], + [48153,2992], + [48155,586], + [48157,300119], + [48159,4288], + [48161,7519], + [48163,8236], + [48165,8412], + [48167,141451], + [48169,2087], + [48171,11752], + [48173,732], + [48175,3289], + [48177,8977], + [48179,9155], + [48181,55913], + [48183,57824], + [48185,11054], + [48187,64435], + [48189,14764], + [48191,1239], + [48193,3532], + [48195,2951], + [48197,1659], + [48199,23700], + [48201,2013828], + [48203,29608], + [48205,2806], + [48207,2627], + [48209,80810], + [48211,2473], + [48213,31932], + [48215,293300], + [48217,14711], + [48219,11167], + [48221,22233], + [48223,15981], + [48225,9366], + [48227,12651], + [48229,1227], + [48231,35243], + [48233,9190], + [48235,813], + [48237,3585], + [48239,7057], + [48241,13329], + [48243,1156], + [48245,101055], + [48247,2196], + [48249,19378], + [48251,68305], + [48253,5480], + [48255,4966], + [48257,48037], + [48259,16531], + [48261,241], + [48263,531], + [48265,20432], + [48267,2082], + [48269,236], + [48271,1152], + [48273,14358], + [48275,1722], + [48277,20561], + [48279,5951], + [48281,8445], + [48283,3507], + [48285,9024], + [48287,8645], + [48289,6442], + [48291,27924], + [48293,8945], + [48295,1690], + [48297,5505], + [48299,7519], + [48301,63], + [48303,137841], + [48305,2775], + [48307,4165], + [48309,104910], + [48311,727], + [48313,4325], + [48315,3954], + [48317,2307], + [48319,1867], + [48321,15374], + [48323,20445], + [48325,18884], + [48327,911], + [48329,79026], + [48331,9398], + [48333,1987], + [48335,2706], + [48337,9319], + [48339,225006], + [48341,11088], + [48343,5268], + [48345,491], + [48347,27609], + [48349,21561], + [48351,5163], + [48353,6672], + [48355,156062], + [48357,5115], + [48359,910], + [48361,34818], + [48363,12514], + [48365,11477], + [48367,54485], + [48369,4800], + [48371,6635], + [48373,16136], + [48375,55218], + [48377,3319], + [48379,4866], + [48381,65112], + [48383,2007], + [48385,967], + [48387,4700], + [48389,4984], + [48391,3298], + [48393,448], + [48395,6704], + [48397,38649], + [48399,4781], + [48401,23046], + [48403,2895], + [48405,2660], + [48407,10529], + [48409,28129], + [48411,2152], + [48413,1710], + [48415,7755], + [48417,2136], + [48419,11246], + [48421,1441], + [48423,94614], + [48425,3869], + [48427,22252], + [48429,4124], + [48431,695], + [48433,715], + [48435,1917], + [48437,2869], + [48439,903315], + [48441,60834], + [48443,523], + [48445,5295], + [48447,786], + [48449,12272], + [48451,50921], + [48453,578608], + [48455,5118], + [48457,6770], + [48459,17465], + [48461,1527], + [48463,11004], + [48465,18489], + [48467,21982], + [48469,42723], + [48471,21545], + [48473,19065], + [48475,5098], + [48477,14766], + [48479,102072], + [48481,19987], + [48483,2769], + [48485,54914], + [48487,5568], + [48489,6254], + [48491,223585], + [48493,20528], + [48495,3006], + [48497,26432], + [48499,15420], + [48501,4162], + [48503,8081], + [48505,6387], + [48507,3797], + [49001,2725], + [49003,21626], + [49005,54422], + [49007,8610], + [49009,414], + [49011,141372], + [49013,8720], + [49015,4405], + [49017,2586], + [49019,4954], + [49021,18140], + [49023,4343], + [49025,3232], + [49027,5661], + [49029,4120], + [49031,451], + [49033,896], + [49035,527250], + [49037,5193], + [49039,10532], + [49041,8844], + [49043,20463], + [49045,26087], + [49047,15271], + [49049,226892], + [49051,10981], + [49053,53281], + [49055,1209], + [49057,106127], + [50001,19926], + [50003,18506], + [50005,15130], + [50007,92217], + [50009,2697], + [50011,26607], + [50013,3909], + [50015,13148], + [50017,15676], + [50019,13028], + [50021,30755], + [50023,32998], + [50025,23393], + [50027,29295], + [51001,15126], + [51003,49887], + [51005,7249], + [51007,5813], + [51009,14993], + [51011,6685], + [51013,139012], + [51015,34897], + [51017,2436], + [51019,36038], + [51021,2674], + [51023,16756], + [51025,6052], + [51027,7807], + [51029,5922], + [51031,25336], + [51033,13373], + [51035,12343], + [51036,3552], + [51037,4898], + [51041,162433], + [51043,7332], + [51045,2292], + [51047,22034], + [51049,4205], + [51051,4661], + [51053,12603], + [51057,5321], + [51059,595687], + [51061,34169], + [51063,7903], + [51065,12486], + [51067,25623], + [51069,40967], + [51071,7643], + [51073,18282], + [51075,9707], + [51077,6330], + [51079,9256], + [51081,4083], + [51083,14528], + [51085,52111], + [51087,162158], + [51089,20351], + [51091,1390], + [51093,17578], + [51095,31101], + [51097,3430], + [51099,10974], + [51101,8137], + [51103,5082], + [51105,8985], + [51107,177798], + [51109,16845], + [51111,4978], + [51113,6912], + [51115,3938], + [51117,12263], + [51119,4824], + [51121,46242], + [51125,7030], + [51127,10023], + [51131,5624], + [51133,5412], + [51135,6441], + [51137,14817], + [51139,10957], + [51141,7256], + [51143,28350], + [51145,12794], + [51147,9411], + [51149,13577], + [51153,216748], + [51155,15631], + [51157,3748], + [51159,3675], + [51161,46975], + [51163,10112], + [51165,38557], + [51167,10762], + [51169,9326], + [51171,19508], + [51173,12221], + [51175,8898], + [51177,60232], + [51179,61724], + [51181,3402], + [51183,3861], + [51185,16489], + [51187,18716], + [51191,25902], + [51193,8487], + [51195,14583], + [51197,13031], + [51199,29883], + [51510,89443], + [51520,7419], + [51530,3005], + [51540,22230], + [51550,107798], + [51570,8018], + [51580,2407], + [51590,17906], + [51595,2210], + [51600,12376], + [51610,7419], + [51620,3357], + [51630,12641], + [51640,2787], + [51650,60542], + [51660,22350], + [51670,8762], + [51678,2084], + [51680,32940], + [51683,20699], + [51685,8291], + [51690,5010], + [51700,83286], + [51710,104251], + [51720,1841], + [51730,11995], + [51735,6017], + [51740,41698], + [51750,7465], + [51760,101135], + [51770,46074], + [51775,12148], + [51790,11066], + [51800,38869], + [51810,215892], + [51820,9335], + [51830,6274], + [51840,13294], + [53001,7482], + [53003,9003], + [53005,83467], + [53007,38084], + [53009,25210], + [53011,189704], + [53013,1670], + [53015,39791], + [53017,17512], + [53019,2061], + [53021,35366], + [53023,942], + [53025,39740], + [53027,25129], + [53029,29879], + [53031,10740], + [53033,1051837], + [53035,106945], + [53037,18773], + [53039,8921], + [53041,28372], + [53043,4863], + [53045,20983], + [53047,19140], + [53049,7206], + [53051,4199], + [53053,350908], + [53055,7584], + [53057,51599], + [53059,4502], + [53061,356761], + [53063,209506], + [53065,16079], + [53067,112813], + [53069,1201], + [53071,27361], + [53073,94735], + [53075,20940], + [53077,108267], + [54001,6168], + [54003,48774], + [54005,7994], + [54007,4826], + [54009,9718], + [54011,40228], + [54013,2527], + [54015,3105], + [54017,3190], + [54019,16054], + [54021,2555], + [54023,5627], + [54025,14254], + [54027,8963], + [54029,12476], + [54031,4979], + [54033,29358], + [54035,10988], + [54037,26019], + [54039,85308], + [54041,6861], + [54043,6910], + [54045,11646], + [54047,5802], + [54049,25103], + [54051,13170], + [54053,9826], + [54055,21470], + [54057,11071], + [54059,8115], + [54061,47114], + [54063,5318], + [54065,7033], + [54067,9827], + [54069,19994], + [54071,3389], + [54073,2627], + [54075,3255], + [54077,13735], + [54079,24679], + [54081,30456], + [54083,11023], + [54085,4059], + [54087,4720], + [54089,4226], + [54091,7045], + [54093,2934], + [54095,3325], + [54097,9206], + [54099,15143], + [54101,3218], + [54103,6582], + [54105,2045], + [54107,35739], + [54109,7610], + [55001,8002], + [55003,7473], + [55005,21839], + [55007,6955], + [55009,128638], + [55011,6223], + [55013,6859], + [55015,25838], + [55017,31012], + [55019,15829], + [55021,29058], + [55023,7599], + [55025,282942], + [55027,44327], + [55029,14146], + [55031,21826], + [55033,21891], + [55035,54880], + [55037,2027], + [55039,52478], + [55041,3687], + [55043,26042], + [55045,19531], + [55047,9539], + [55049,12646], + [55051,2492], + [55053,9562], + [55055,43133], + [55057,12444], + [55059,79881], + [55061,10296], + [55063,62804], + [55065,8872], + [55067,9047], + [55069,13731], + [55071,40299], + [55073,66401], + [55075,19659], + [55077,6911], + [55078,1330], + [55079,435430], + [55081,21127], + [55083,18928], + [55085,17474], + [55087,93887], + [55089,44776], + [55091,3844], + [55093,22577], + [55095,22071], + [55097,36073], + [55099,6519], + [55101,92035], + [55103,9102], + [55105,74654], + [55107,6169], + [55109,44758], + [55111,33179], + [55113,7387], + [55115,19895], + [55117,56178], + [55119,10283], + [55121,15433], + [55123,14084], + [55125,9088], + [55127,51976], + [55129,7450], + [55131,70466], + [55133,205076], + [55135,25311], + [55137,10968], + [55139,86350], + [55141,36723], + [56001,19845], + [56003,5320], + [56005,24907], + [56007,7790], + [56009,7634], + [56011,3628], + [56013,19989], + [56015,7160], + [56017,2456], + [56019,4234], + [56021,44967], + [56023,7685], + [56025,40242], + [56027,1328], + [56029,15360], + [56031,4553], + [56033,14916], + [56035,5300], + [56037,22986], + [56039,12881], + [56041,9689], + [56043,4254], + [56045,3811] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2013.json b/data/regional/united-states/economics/employment/us-employment-total-2013.json new file mode 100644 index 0000000..a172b91 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2013.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2013", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2013"], + [1001,24205], + [1003,79626], + [1005,8168], + [1007,8016], + [1009,23325], + [1011,4331], + [1013,8206], + [1015,44163], + [1017,14058], + [1019,10649], + [1021,18090], + [1023,4270], + [1025,7145], + [1027,4943], + [1029,5383], + [1031,19105], + [1033,21937], + [1035,4191], + [1037,4044], + [1039,14768], + [1041,5828], + [1043,33402], + [1045,19220], + [1047,14301], + [1049,26823], + [1051,34658], + [1053,13065], + [1055,40538], + [1057,5875], + [1059,12578], + [1061,10276], + [1063,2614], + [1065,5486], + [1067,6421], + [1069,42553], + [1071,21822], + [1073,294426], + [1075,5394], + [1077,40083], + [1079,13093], + [1081,66379], + [1083,36969], + [1085,3443], + [1087,7603], + [1089,160551], + [1091,6955], + [1093,11499], + [1095,37841], + [1097,171088], + [1099,6843], + [1101,98613], + [1103,53090], + [1105,3083], + [1107,6727], + [1109,13785], + [1111,8498], + [1113,23208], + [1115,36455], + [1117,102054], + [1119,4969], + [1121,32700], + [1123,16909], + [1125,89602], + [1127,24136], + [1129,5985], + [1131,2244], + [1133,8737], + [2013,2083], + [2016,3976], + [2020,150169], + [2050,6224], + [2060,448], + [2068,943], + [2070,1916], + [2090,44514], + [2100,1026], + [2105,959], + [2110,16702], + [2122,25592], + [2130,6606], + [2150,6183], + [2158,"NA"], + [2164,539], + [2170,40253], + [2180,3631], + [2185,3772], + [2188,2564], + [2195,1515], + [2198,2468], + [2220,4371], + [2230,695], + [2240,2617], + [2261,4444], + [2275,974], + [2282,258], + [2290,2234], + [4001,17813], + [4003,46587], + [4005,65110], + [4007,18890], + [4009,13173], + [4011,4311], + [4012,7372], + [4013,1781737], + [4015,68888], + [4017,36283], + [4019,426120], + [4021,136324], + [4023,17023], + [4025,84500], + [4027,70567], + [5001,8884], + [5003,7953], + [5005,14775], + [5007,105567], + [5009,14922], + [5011,3722], + [5013,2226], + [5015,11548], + [5017,3397], + [5019,9030], + [5021,5895], + [5023,9172], + [5025,3328], + [5027,8830], + [5029,7850], + [5031,46104], + [5033,24989], + [5035,19737], + [5037,7586], + [5039,2616], + [5041,5100], + [5043,7370], + [5045,55458], + [5047,6913], + [5049,4579], + [5051,37743], + [5053,7733], + [5055,17889], + [5057,9365], + [5059,13084], + [5061,5836], + [5063,14382], + [5065,4570], + [5067,5593], + [5069,27830], + [5071,9756], + [5073,2479], + [5075,6515], + [5077,3005], + [5079,3993], + [5081,5275], + [5083,8530], + [5085,30800], + [5087,6461], + [5089,6013], + [5091,18303], + [5093,16852], + [5095,2847], + [5097,3131], + [5099,3488], + [5101,3249], + [5103,9261], + [5105,3956], + [5107,6732], + [5109,3831], + [5111,9289], + [5113,7850], + [5115,27479], + [5117,3535], + [5119,174559], + [5121,6055], + [5123,8220], + [5125,51620], + [5127,4303], + [5129,2877], + [5131,53824], + [5133,5431], + [5135,5433], + [5137,4400], + [5139,15174], + [5141,5865], + [5143,101138], + [5145,32359], + [5147,2930], + [5149,8471], + [6001,744764], + [6003,475], + [6005,12959], + [6007,91263], + [6009,18243], + [6011,9156], + [6013,497661], + [6015,9107], + [6017,81063], + [6019,379850], + [6021,11418], + [6023,57947], + [6025,58670], + [6027,8654], + [6029,347213], + [6031,50387], + [6033,26068], + [6035,9838], + [6037,4482594], + [6039,54428], + [6041,131216], + [6043,7363], + [6045,37425], + [6047,98009], + [6049,3073], + [6051,7655], + [6053,194075], + [6055,67766], + [6057,44267], + [6059,1462270], + [6061,162264], + [6063,7114], + [6065,897722], + [6067,619835], + [6069,25696], + [6071,809057], + [6073,1422391], + [6075,488121], + [6077,274562], + [6079,128819], + [6081,396092], + [6083,201680], + [6085,909039], + [6087,127466], + [6089,66385], + [6091,1267], + [6093,15888], + [6095,184630], + [6097,232197], + [6099,209781], + [6101,38243], + [6103,22171], + [6105,4572], + [6107,172171], + [6109,19406], + [6111,399769], + [6113,92660], + [6115,24531], + [8001,222106], + [8003,6827], + [8005,304753], + [8007,5200], + [8009,1817], + [8011,1519], + [8013,165184], + [8014,30871], + [8015,7790], + [8017,928], + [8019,5099], + [8021,3226], + [8023,1417], + [8025,1227], + [8027,1797], + [8029,12617], + [8031,338686], + [8033,930], + [8035,155708], + [8037,29947], + [8039,11946], + [8041,282583], + [8043,13349], + [8045,28635], + [8047,3115], + [8049,8257], + [8051,9108], + [8053,412], + [8055,2193], + [8057,755], + [8059,286109], + [8061,730], + [8063,3921], + [8065,4120], + [8067,27873], + [8069,164046], + [8071,5983], + [8073,1982], + [8075,10245], + [8077,67108], + [8079,400], + [8081,7013], + [8083,11730], + [8085,17474], + [8087,13702], + [8089,7399], + [8091,1966], + [8093,8691], + [8095,2026], + [8097,10084], + [8099,5489], + [8101,66114], + [8103,2831], + [8105,4313], + [8107,13632], + [8109,2620], + [8111,436], + [8113,4459], + [8115,1022], + [8117,18379], + [8119,10798], + [8121,2432], + [8123,129920], + [8125,4511], + [9001,434873], + [9003,428369], + [9005,97061], + [9007,84708], + [9009,412391], + [9011,126137], + [9013,77423], + [9015,56803], + [10001,68397], + [10003,258760], + [10005,85962], + [11001,342351], + [12001,122038], + [12003,10438], + [12005,80126], + [12007,10293], + [12009,237228], + [12011,908457], + [12013,4530], + [12015,60889], + [12017,44587], + [12019,90794], + [12021,144588], + [12023,25759], + [12027,12056], + [12029,5348], + [12031,423256], + [12033,128926], + [12035,40340], + [12037,4716], + [12039,17138], + [12041,6103], + [12043,5062], + [12045,5746], + [12047,4236], + [12049,10141], + [12051,14661], + [12053,60381], + [12055,32688], + [12057,629073], + [12059,6461], + [12061,55568], + [12063,16438], + [12065,5045], + [12067,3319], + [12069,125441], + [12071,277332], + [12073,139235], + [12075,15001], + [12077,2654], + [12079,7295], + [12081,144918], + [12083,119852], + [12085,62628], + [12086,1195237], + [12087,42172], + [12089,33743], + [12091,86899], + [12093,16519], + [12095,618150], + [12097,136197], + [12099,624322], + [12101,194247], + [12103,438997], + [12105,255795], + [12107,25274], + [12109,101542], + [12111,116341], + [12113,68373], + [12115,158821], + [12117,217434], + [12119,25020], + [12121,16826], + [12123,8742], + [12125,4669], + [12127,216323], + [12129,13238], + [12131,25329], + [12133,9094], + [13001,7741], + [13003,3159], + [13005,4237], + [13007,1010], + [13009,16649], + [13011,7365], + [13013,32118], + [13015,42976], + [13017,5055], + [13019,6703], + [13021,63407], + [13023,4118], + [13025,6287], + [13027,6125], + [13029,14270], + [13031,31209], + [13033,8348], + [13035,9250], + [13037,1934], + [13039,19904], + [13043,4685], + [13045,46866], + [13047,29516], + [13049,4504], + [13051,120499], + [13053,2191], + [13055,9589], + [13057,108567], + [13059,53353], + [13061,846], + [13063,111547], + [13065,2571], + [13067,362780], + [13069,15772], + [13071,18545], + [13073,61317], + [13075,6802], + [13077,61216], + [13079,5185], + [13081,8594], + [13083,7548], + [13085,9986], + [13087,10476], + [13089,337594], + [13091,6896], + [13093,3996], + [13095,35610], + [13097,61525], + [13099,3975], + [13101,1667], + [13103,24303], + [13105,7463], + [13107,7738], + [13109,4367], + [13111,8884], + [13113,49826], + [13115,39614], + [13117,90817], + [13119,8420], + [13121,467197], + [13123,10837], + [13125,1167], + [13127,34821], + [13129,23876], + [13131,9673], + [13133,5721], + [13135,408130], + [13137,17768], + [13139,83366], + [13141,2253], + [13143,10859], + [13145,14776], + [13147,9533], + [13149,4539], + [13151,94697], + [13153,62389], + [13155,3013], + [13157,27557], + [13159,5975], + [13161,5749], + [13163,5885], + [13165,2914], + [13167,3607], + [13169,12619], + [13171,6939], + [13173,3514], + [13175,17331], + [13177,13314], + [13179,23978], + [13181,3105], + [13183,6152], + [13185,46998], + [13187,14024], + [13189,8053], + [13191,5399], + [13193,4331], + [13195,11931], + [13197,3148], + [13199,7867], + [13201,2462], + [13205,8242], + [13207,11742], + [13209,3587], + [13211,7674], + [13213,14102], + [13215,75375], + [13217,43403], + [13219,16137], + [13221,6229], + [13223,69166], + [13225,10622], + [13227,12710], + [13229,7463], + [13231,7599], + [13233,16860], + [13235,3826], + [13237,7303], + [13239,828], + [13241,6146], + [13243,2502], + [13245,78191], + [13247,38321], + [13249,1934], + [13251,4863], + [13253,2817], + [13255,24587], + [13257,10458], + [13259,2087], + [13261,11905], + [13263,2596], + [13265,520], + [13267,8801], + [13269,2803], + [13271,4691], + [13273,3307], + [13275,16198], + [13277,17106], + [13279,11383], + [13281,3719], + [13283,2480], + [13285,33048], + [13287,3003], + [13289,2693], + [13291,8593], + [13293,10752], + [13295,27725], + [13297,37860], + [13299,13685], + [13301,2400], + [13303,6947], + [13305,11091], + [13307,940], + [13309,1656], + [13311,12775], + [13313,40391], + [13315,2506], + [13317,3320], + [13319,3333], + [13321,8393], + [15001,80410], + [15003,431462], + [15005,"NA"], + [15007,32070], + [15009,75748], + [16001,195660], + [16003,1474], + [16005,38962], + [16007,2733], + [16009,3585], + [16011,20975], + [16013,10916], + [16015,2681], + [16017,16658], + [16019,46249], + [16021,4512], + [16023,1206], + [16025,592], + [16027,81068], + [16029,3689], + [16031,10528], + [16033,397], + [16035,2825], + [16037,2022], + [16039,10050], + [16041,5999], + [16043,6546], + [16045,6906], + [16047,7651], + [16049,5925], + [16051,11511], + [16053,10364], + [16055,64144], + [16057,18451], + [16059,3112], + [16061,1530], + [16063,2444], + [16065,17679], + [16067,9800], + [16069,19199], + [16071,2003], + [16073,4919], + [16075,10106], + [16077,3715], + [16079,4823], + [16081,5177], + [16083,36363], + [16085,4075], + [16087,4409], + [17001,30722], + [17003,2349], + [17005,7339], + [17007,23748], + [17009,2453], + [17011,16105], + [17013,2179], + [17015,7253], + [17017,5868], + [17019,95394], + [17021,14498], + [17023,7203], + [17025,5692], + [17027,18593], + [17029,22272], + [17031,2414722], + [17033,9135], + [17035,5363], + [17037,50298], + [17039,7469], + [17041,9099], + [17043,473038], + [17045,8179], + [17047,2623], + [17049,16820], + [17051,9198], + [17053,6056], + [17055,14914], + [17057,14444], + [17059,2246], + [17061,5772], + [17063,22898], + [17065,3769], + [17067,8143], + [17069,1537], + [17071,3382], + [17073,23442], + [17075,13756], + [17077,26266], + [17079,4354], + [17081,16134], + [17083,10153], + [17085,10709], + [17087,3764], + [17089,241769], + [17091,50343], + [17093,59053], + [17095,21576], + [17097,335522], + [17099,52108], + [17101,5682], + [17103,16644], + [17105,16262], + [17107,12037], + [17109,13421], + [17111,152512], + [17113,86251], + [17115,46506], + [17117,21253], + [17119,121394], + [17121,16291], + [17123,5368], + [17125,5998], + [17127,5779], + [17129,6256], + [17131,7736], + [17133,16545], + [17135,11228], + [17137,16038], + [17139,6584], + [17141,23247], + [17143,84525], + [17145,8027], + [17147,7777], + [17149,7114], + [17151,1662], + [17153,1939], + [17155,2751], + [17157,13175], + [17159,6757], + [17161,67462], + [17163,115272], + [17165,10087], + [17167,96323], + [17169,3187], + [17171,2375], + [17173,9398], + [17175,2610], + [17177,20605], + [17179,63131], + [17181,6582], + [17183,32142], + [17185,5218], + [17187,8174], + [17189,8366], + [17191,7270], + [17193,6489], + [17195,26824], + [17197,323345], + [17199,28647], + [17201,128247], + [17203,18517], + [18001,14922], + [18003,161049], + [18005,39102], + [18007,4147], + [18009,4902], + [18011,29308], + [18013,6774], + [18015,9209], + [18017,16310], + [18019,52343], + [18021,11459], + [18023,15256], + [18025,4356], + [18027,14028], + [18029,23043], + [18031,12933], + [18033,19443], + [18035,49496], + [18037,20480], + [18039,91805], + [18041,8091], + [18043,36061], + [18045,7504], + [18047,9835], + [18049,9067], + [18051,16959], + [18053,29532], + [18055,12352], + [18057,147899], + [18059,33673], + [18061,17399], + [18063,74096], + [18065,19427], + [18067,33448], + [18069,17092], + [18071,19494], + [18073,14703], + [18075,9271], + [18077,14101], + [18079,11835], + [18081,69068], + [18083,17372], + [18085,37112], + [18087,16570], + [18089,209097], + [18091,44379], + [18093,18571], + [18095,52653], + [18097,423967], + [18099,21386], + [18101,4637], + [18103,14251], + [18105,62096], + [18107,17079], + [18109,32193], + [18111,6289], + [18113,20960], + [18115,2902], + [18117,7887], + [18119,8668], + [18121,6292], + [18123,8237], + [18125,5836], + [18127,77162], + [18129,12126], + [18131,5687], + [18133,14760], + [18135,11488], + [18137,12464], + [18139,7718], + [18141,116038], + [18143,9325], + [18145,20705], + [18147,9978], + [18149,9247], + [18151,18109], + [18153,7917], + [18155,4519], + [18157,83675], + [18159,7423], + [18161,3266], + [18163,84413], + [18165,6537], + [18167,44879], + [18169,14276], + [18171,3787], + [18173,28778], + [18175,11994], + [18177,27887], + [18179,12784], + [18181,12043], + [18183,15590], + [19001,3902], + [19003,2072], + [19005,7169], + [19007,5550], + [19009,3080], + [19011,13027], + [19013,68095], + [19015,14281], + [19017,13471], + [19019,10639], + [19021,10863], + [19023,7889], + [19025,4135], + [19027,10893], + [19029,6923], + [19031,10348], + [19033,22077], + [19035,6547], + [19037,6050], + [19039,4333], + [19041,8418], + [19043,9508], + [19045,23477], + [19047,8388], + [19049,39431], + [19051,3894], + [19053,4108], + [19055,9943], + [19057,19262], + [19059,8840], + [19061,52562], + [19063,5452], + [19065,10106], + [19067,7817], + [19069,5652], + [19071,3954], + [19073,4885], + [19075,6313], + [19077,5248], + [19079,6657], + [19081,5962], + [19083,8254], + [19085,7171], + [19087,9044], + [19089,4989], + [19091,5004], + [19093,3662], + [19095,9517], + [19097,10263], + [19099,18089], + [19101,8484], + [19103,79931], + [19105,10164], + [19107,5200], + [19109,8174], + [19111,15908], + [19113,113695], + [19115,5555], + [19117,4047], + [19119,6656], + [19121,7681], + [19123,11092], + [19125,16550], + [19127,18610], + [19129,7005], + [19131,5272], + [19133,4360], + [19135,3797], + [19137,4873], + [19139,20567], + [19141,7751], + [19143,3279], + [19145,6209], + [19147,4598], + [19149,13912], + [19151,4034], + [19153,238383], + [19155,46415], + [19157,9866], + [19159,2407], + [19161,5284], + [19163,82863], + [19165,6681], + [19167,18894], + [19169,52939], + [19171,8602], + [19173,3046], + [19175,6560], + [19177,3623], + [19179,16989], + [19181,25160], + [19183,11813], + [19185,2702], + [19187,18708], + [19189,4919], + [19191,11342], + [19193,52580], + [19195,3969], + [19197,6539], + [20001,6471], + [20003,3992], + [20005,7110], + [20007,2651], + [20009,14485], + [20011,6423], + [20013,5182], + [20015,30062], + [20017,1180], + [20019,1520], + [20021,9828], + [20023,1265], + [20025,1151], + [20027,3983], + [20029,4258], + [20031,4651], + [20033,997], + [20035,16166], + [20037,18144], + [20039,1307], + [20041,9278], + [20043,4102], + [20045,60479], + [20047,1547], + [20049,1248], + [20051,17477], + [20053,3332], + [20055,19124], + [20057,17883], + [20059,13108], + [20061,11566], + [20063,1439], + [20065,1295], + [20067,3847], + [20069,3383], + [20071,886], + [20073,3179], + [20075,1666], + [20077,2979], + [20079,16278], + [20081,2319], + [20083,1073], + [20085,6916], + [20087,9604], + [20089,1370], + [20091,300633], + [20093,2023], + [20095,3514], + [20097,1374], + [20099,9959], + [20101,852], + [20103,32529], + [20105,1696], + [20107,3959], + [20109,1694], + [20111,15247], + [20113,15937], + [20115,5920], + [20117,5809], + [20119,2277], + [20121,15847], + [20123,3764], + [20125,16631], + [20127,2931], + [20129,1531], + [20131,5622], + [20133,6160], + [20135,1553], + [20137,2999], + [20139,7727], + [20141,2031], + [20143,3092], + [20145,3265], + [20147,2839], + [20149,11375], + [20151,5223], + [20153,1507], + [20155,29930], + [20157,2560], + [20159,5209], + [20161,35030], + [20163,2663], + [20165,1732], + [20167,3697], + [20169,29550], + [20171,2756], + [20173,231111], + [20175,10628], + [20177,86721], + [20179,1457], + [20181,3003], + [20183,2080], + [20185,2119], + [20187,1007], + [20189,3215], + [20191,10516], + [20193,4309], + [20195,1436], + [20197,3579], + [20199,825], + [20201,3011], + [20203,1243], + [20205,3746], + [20207,1526], + [20209,68839], + [21001,6792], + [21003,8284], + [21005,10788], + [21007,3474], + [21009,18070], + [21011,4330], + [21013,8552], + [21015,61650], + [21017,9136], + [21019,17845], + [21021,11683], + [21023,3547], + [21025,3816], + [21027,7487], + [21029,36740], + [21031,4883], + [21033,5171], + [21035,16825], + [21037,45550], + [21039,2205], + [21041,4695], + [21043,9637], + [21045,6225], + [21047,24098], + [21049,15968], + [21051,4930], + [21053,3683], + [21055,3795], + [21057,2714], + [21059,44363], + [21061,4496], + [21063,1928], + [21065,4997], + [21067,158648], + [21069,5903], + [21071,11392], + [21073,22958], + [21075,2130], + [21077,3584], + [21079,7111], + [21081,10549], + [21083,15085], + [21085,10085], + [21087,4880], + [21089,13283], + [21091,3803], + [21093,44154], + [21095,7793], + [21097,8084], + [21099,7420], + [21101,20474], + [21103,7201], + [21105,2006], + [21107,19807], + [21109,4274], + [21111,356481], + [21113,23455], + [21115,7441], + [21117,79105], + [21119,4728], + [21121,9161], + [21123,5407], + [21125,22244], + [21127,4952], + [21129,2075], + [21131,2880], + [21133,6703], + [21135,4650], + [21137,8861], + [21139,3503], + [21141,11271], + [21143,2838], + [21145,27892], + [21147,4643], + [21149,4136], + [21151,42740], + [21153,3299], + [21155,8539], + [21157,14079], + [21159,3286], + [21161,7013], + [21163,11409], + [21165,2189], + [21167,9390], + [21169,3995], + [21171,4404], + [21173,11110], + [21175,4520], + [21177,11748], + [21179,20046], + [21181,3225], + [21183,8982], + [21185,28582], + [21187,5322], + [21189,1128], + [21191,6428], + [21193,8957], + [21195,20527], + [21197,4513], + [21199,24742], + [21201,756], + [21203,6428], + [21205,10021], + [21207,6216], + [21209,24667], + [21211,21250], + [21213,8189], + [21215,8740], + [21217,10313], + [21219,5214], + [21221,5500], + [21223,3637], + [21225,6328], + [21227,56322], + [21229,5716], + [21231,6572], + [21233,5742], + [21235,12382], + [21237,1811], + [21239,13494], + [22001,24760], + [22003,8086], + [22005,53609], + [22007,9090], + [22009,14807], + [22011,13381], + [22013,5431], + [22015,53437], + [22017,102176], + [22019,83592], + [22021,3635], + [22023,3136], + [22025,3570], + [22027,6037], + [22029,7143], + [22031,10039], + [22033,211944], + [22035,1888], + [22037,7407], + [22039,11991], + [22041,6927], + [22043,7550], + [22045,30200], + [22047,12869], + [22049,6568], + [22051,200234], + [22053,12346], + [22055,113007], + [22057,44522], + [22059,6626], + [22061,18936], + [22063,60324], + [22065,3522], + [22067,9739], + [22069,15425], + [22071,160741], + [22073,65856], + [22075,9486], + [22077,9158], + [22079,53286], + [22081,3567], + [22083,7828], + [22085,8569], + [22087,17148], + [22089,23368], + [22091,4056], + [22093,8781], + [22095,18361], + [22097,31077], + [22099,22872], + [22101,23343], + [22103,104680], + [22105,48682], + [22107,1601], + [22109,50362], + [22111,8451], + [22113,24652], + [22115,16299], + [22117,15050], + [22119,14210], + [22121,11540], + [22123,3707], + [22125,4919], + [22127,4938], + [23001,52696], + [23003,30955], + [23005,152393], + [23007,14209], + [23009,27728], + [23011,59883], + [23013,19551], + [23015,16186], + [23017,25469], + [23019,74603], + [23021,7197], + [23023,18049], + [23025,22538], + [23027,19502], + [23029,13281], + [23031,104279], + [24001,30772], + [24003,279673], + [24005,411834], + [24009,44934], + [24011,16458], + [24013,87953], + [24015,48224], + [24017,75072], + [24019,14401], + [24021,121082], + [24023,14480], + [24025,126864], + [24027,163070], + [24029,9605], + [24031,516264], + [24033,452439], + [24035,24922], + [24037,51028], + [24039,8559], + [24041,17934], + [24043,71573], + [24045,45806], + [24047,22665], + [24510,267892], + [25001,99337], + [25003,60821], + [25005,261464], + [25007,8546], + [25009,371273], + [25011,36873], + [25013,200921], + [25015,80176], + [25017,793630], + [25019,6111], + [25021,341397], + [25023,244330], + [25025,381626], + [25027,390291], + [26001,3288], + [26003,2978], + [26005,54066], + [26007,12075], + [26009,8835], + [26011,5642], + [26013,3028], + [26015,27375], + [26017,48386], + [26019,7707], + [26021,66133], + [26023,17404], + [26025,57804], + [26027,21583], + [26029,11599], + [26031,9286], + [26033,15211], + [26035,10479], + [26037,36649], + [26039,4760], + [26041,15690], + [26043,11565], + [26045,51602], + [26047,15969], + [26049,165917], + [26051,8842], + [26053,5981], + [26055,43446], + [26057,16780], + [26059,18680], + [26061,15333], + [26063,14958], + [26065,133094], + [26067,26474], + [26069,9023], + [26071,4553], + [26073,32344], + [26075,66139], + [26077,116335], + [26079,6713], + [26081,306212], + [26083,852], + [26085,3139], + [26087,35679], + [26089,9472], + [26091,43858], + [26093,87770], + [26095,2149], + [26097,4597], + [26099,380495], + [26101,9371], + [26103,31153], + [26105,13139], + [26107,16831], + [26109,10834], + [26111,37630], + [26113,6296], + [26115,68874], + [26117,24819], + [26119,2685], + [26121,68623], + [26123,20067], + [26125,579614], + [26127,11145], + [26129,7586], + [26131,2107], + [26133,9017], + [26135,2498], + [26137,10045], + [26139,135820], + [26141,4656], + [26143,6957], + [26145,80811], + [26147,65988], + [26149,25963], + [26151,17336], + [26153,3102], + [26155,29948], + [26157,22398], + [26159,31454], + [26161,173018], + [26163,687300], + [26165,13000], + [27001,6295], + [27003,178904], + [27005,16985], + [27007,21588], + [27009,20167], + [27011,2419], + [27013,37017], + [27015,13769], + [27017,16462], + [27019,51020], + [27021,12842], + [27023,6588], + [27025,26932], + [27027,33337], + [27029,3998], + [27031,2878], + [27033,5422], + [27035,29255], + [27037,219309], + [27039,10794], + [27041,18991], + [27043,7090], + [27045,10549], + [27047,15640], + [27049,25565], + [27051,3094], + [27053,636298], + [27055,9953], + [27057,8846], + [27059,18989], + [27061,20238], + [27063,5971], + [27065,8077], + [27067,22357], + [27069,2274], + [27071,6168], + [27073,3462], + [27075,5417], + [27077,2240], + [27079,14553], + [27081,3158], + [27083,14649], + [27085,18899], + [27087,2259], + [27089,5142], + [27091,9791], + [27093,12036], + [27095,11727], + [27097,16486], + [27099,19557], + [27101,4579], + [27103,18978], + [27105,10615], + [27107,3122], + [27109,80035], + [27111,29246], + [27113,8109], + [27115,13805], + [27117,4473], + [27119,16180], + [27121,5710], + [27123,261715], + [27125,2103], + [27127,7610], + [27129,7702], + [27131,33260], + [27133,5446], + [27135,8235], + [27137,96029], + [27139,73598], + [27141,46184], + [27143,7863], + [27145,82446], + [27147,20419], + [27149,5303], + [27151,4609], + [27153,12166], + [27155,1576], + [27157,11284], + [27159,5735], + [27161,9380], + [27163,128912], + [27165,5853], + [27167,3474], + [27169,28287], + [27171,66999], + [27173,5269], + [28001,10732], + [28003,14183], + [28005,4134], + [28007,6572], + [28009,2808], + [28011,12321], + [28013,5865], + [28015,3106], + [28017,6797], + [28019,3427], + [28021,2739], + [28023,5993], + [28025,7094], + [28027,8548], + [28029,10269], + [28031,7329], + [28033,76308], + [28035,30310], + [28037,2681], + [28039,7757], + [28041,3984], + [28043,8510], + [28045,17446], + [28047,80121], + [28049,101375], + [28051,5247], + [28053,2529], + [28055,355], + [28057,9223], + [28059,55537], + [28061,5867], + [28063,2003], + [28065,3686], + [28067,25417], + [28069,3447], + [28071,21391], + [28073,25904], + [28075,31701], + [28077,4281], + [28079,7415], + [28081,36395], + [28083,9207], + [28085,12848], + [28087,24470], + [28089,46853], + [28091,9000], + [28093,13303], + [28095,13681], + [28097,3881], + [28099,10105], + [28101,8311], + [28103,3540], + [28105,20446], + [28107,12047], + [28109,21135], + [28111,3807], + [28113,13206], + [28115,12659], + [28117,10023], + [28119,2434], + [28121,67505], + [28123,11900], + [28125,1604], + [28127,10137], + [28129,6380], + [28131,5846], + [28133,7744], + [28135,5163], + [28137,10902], + [28139,7879], + [28141,6985], + [28143,4196], + [28145,12149], + [28147,4730], + [28149,19688], + [28151,16343], + [28153,7049], + [28155,3682], + [28157,2613], + [28159,6575], + [28161,4523], + [28163,8404], + [29001,10038], + [29003,9366], + [29005,2712], + [29007,10525], + [29009,13888], + [29011,5096], + [29013,7390], + [29015,6640], + [29017,5345], + [29019,93154], + [29021,43698], + [29023,17237], + [29025,4057], + [29027,20329], + [29029,17070], + [29031,38559], + [29033,4336], + [29035,2304], + [29037,48993], + [29039,5465], + [29041,3506], + [29043,38796], + [29045,3094], + [29047,119105], + [29049,10041], + [29051,37668], + [29053,7158], + [29055,9968], + [29057,3215], + [29059,6359], + [29061,3820], + [29063,4738], + [29065,5783], + [29067,4596], + [29069,11718], + [29071,47925], + [29073,7064], + [29075,3409], + [29077,136572], + [29079,4634], + [29081,3676], + [29083,9162], + [29085,3322], + [29087,2595], + [29089,4609], + [29091,15131], + [29093,3514], + [29095,326123], + [29097,54596], + [29099,107043], + [29101,21282], + [29103,1875], + [29105,14099], + [29107,15831], + [29109,16276], + [29111,4799], + [29113,24321], + [29115,4849], + [29117,6859], + [29119,9338], + [29121,6941], + [29123,5139], + [29125,3903], + [29127,13756], + [29129,1711], + [29131,10492], + [29133,5811], + [29135,6853], + [29137,3810], + [29139,5308], + [29141,7108], + [29143,7638], + [29145,27198], + [29147,10614], + [29149,3808], + [29151,6848], + [29153,3297], + [29155,6368], + [29157,9587], + [29159,18763], + [29161,17995], + [29163,7570], + [29165,49755], + [29167,12927], + [29169,14387], + [29171,2305], + [29173,5280], + [29175,9672], + [29177,10271], + [29179,2284], + [29181,5040], + [29183,196045], + [29185,3614], + [29186,8370], + [29187,24046], + [29189,491621], + [29195,10428], + [29197,1753], + [29199,2248], + [29201,18412], + [29203,3047], + [29205,2891], + [29207,12060], + [29209,12169], + [29211,2540], + [29213,23086], + [29215,8912], + [29217,9202], + [29219,15713], + [29221,9454], + [29223,5174], + [29225,14839], + [29227,1265], + [29229,6962], + [29510,146476], + [30001,4612], + [30003,4900], + [30005,2319], + [30007,2348], + [30009,5154], + [30011,651], + [30013,36422], + [30015,2491], + [30017,6409], + [30019,902], + [30021,4655], + [30023,4952], + [30025,1998], + [30027,5582], + [30029,40469], + [30031,52526], + [30033,737], + [30035,5701], + [30037,377], + [30039,1387], + [30041,7416], + [30043,5333], + [30045,930], + [30047,11565], + [30049,33537], + [30051,957], + [30053,7068], + [30055,1069], + [30057,3932], + [30059,882], + [30061,1595], + [30063,56311], + [30065,2256], + [30067,7502], + [30069,280], + [30071,1936], + [30073,2758], + [30075,1087], + [30077,2782], + [30079,497], + [30081,17484], + [30083,6885], + [30085,4650], + [30087,3931], + [30089,4243], + [30091,2111], + [30093,16237], + [30095,4860], + [30097,1703], + [30099,2826], + [30101,2295], + [30103,339], + [30105,4083], + [30107,773], + [30109,539], + [30111,75831], + [31001,16346], + [31003,3503], + [31005,204], + [31007,417], + [31009,258], + [31011,2960], + [31013,5757], + [31015,1090], + [31017,1381], + [31019,26553], + [31021,3492], + [31023,4629], + [31025,12743], + [31027,4593], + [31029,2349], + [31031,3394], + [31033,5655], + [31035,3383], + [31037,5428], + [31039,4811], + [31041,5991], + [31043,10688], + [31045,5234], + [31047,12769], + [31049,1096], + [31051,3006], + [31053,18449], + [31055,274688], + [31057,1268], + [31059,3207], + [31061,1544], + [31063,1544], + [31065,2636], + [31067,10617], + [31069,1202], + [31071,1193], + [31073,1126], + [31075,406], + [31077,1256], + [31079,31376], + [31081,4698], + [31083,1805], + [31085,626], + [31087,1308], + [31089,5825], + [31091,415], + [31093,3299], + [31095,4185], + [31097,2091], + [31099,3795], + [31101,4543], + [31103,591], + [31105,2126], + [31107,4638], + [31109,163096], + [31111,18518], + [31113,487], + [31115,361], + [31117,358], + [31119,18681], + [31121,4054], + [31123,2667], + [31125,2012], + [31127,3633], + [31129,2379], + [31131,8078], + [31133,1632], + [31135,1776], + [31137,4942], + [31139,4082], + [31141,17136], + [31143,2899], + [31145,6249], + [31147,4170], + [31149,859], + [31151,7085], + [31153,86071], + [31155,10727], + [31157,18356], + [31159,8690], + [31161,2710], + [31163,1682], + [31165,779], + [31167,3570], + [31169,2973], + [31171,437], + [31173,2867], + [31175,2072], + [31177,10731], + [31179,5509], + [31181,1680], + [31183,508], + [31185,7237], + [32001,10187], + [32003,906943], + [32005,20550], + [32007,27076], + [32009,517], + [32011,1027], + [32013,8778], + [32015,3293], + [32017,1852], + [32019,19944], + [32021,1586], + [32023,14537], + [32027,2450], + [32029,1674], + [32031,200386], + [32033,4583], + [32510,22741], + [33001,30389], + [33003,23228], + [33005,39959], + [33007,14960], + [33009,46323], + [33011,215531], + [33013,77141], + [33015,166176], + [33017,66729], + [33019,23100], + [34001,121676], + [34003,448133], + [34005,216371], + [34007,235269], + [34009,42168], + [34011,61473], + [34013,342824], + [34015,137619], + [34017,330530], + [34019,62636], + [34021,179551], + [34023,399543], + [34025,304012], + [34027,248460], + [34029,242166], + [34031,225521], + [34033,28426], + [34035,163484], + [34037,73038], + [34039,257582], + [34041,53347], + [35001,298965], + [35003,1130], + [35005,24960], + [35006,8330], + [35007,5735], + [35009,20330], + [35011,772], + [35013,86715], + [35015,26399], + [35017,11973], + [35019,1490], + [35021,269], + [35023,2010], + [35025,27998], + [35027,8237], + [35028,8257], + [35029,9151], + [35031,21847], + [35033,1991], + [35035,23635], + [35037,3065], + [35039,15053], + [35041,7877], + [35043,56064], + [35045,50846], + [35047,10166], + [35049,69131], + [35051,3600], + [35053,6124], + [35055,13493], + [35057,5025], + [35059,1779], + [35061,27388], + [36001,151059], + [36003,22014], + [36005,532428], + [36007,84779], + [36009,34851], + [36011,35989], + [36013,55387], + [36015,36479], + [36017,22335], + [36019,34085], + [36021,29936], + [36023,22426], + [36025,19394], + [36027,135882], + [36029,426138], + [36031,16615], + [36033,19640], + [36035,22393], + [36037,28447], + [36039,19483], + [36041,2198], + [36043,27656], + [36045,43868], + [36047,1098648], + [36049,11087], + [36051,29640], + [36053,31803], + [36055,348519], + [36057,21049], + [36059,655888], + [36061,836910], + [36063,96158], + [36065,99277], + [36067,215866], + [36069,52396], + [36071,166724], + [36073,17009], + [36075,51569], + [36077,29012], + [36079,48251], + [36081,1054708], + [36083,77929], + [36085,201233], + [36087,141334], + [36089,44069], + [36091,111244], + [36093,72831], + [36095,14057], + [36097,8099], + [36099,14817], + [36101,41830], + [36103,730042], + [36105,31778], + [36107,23194], + [36109,53012], + [36111,83899], + [36113,30437], + [36115,27222], + [36117,42482], + [36119,447795], + [36121,17327], + [36123,11158], + [37001,71636], + [37003,16120], + [37005,4030], + [37007,9886], + [37009,11676], + [37011,7000], + [37013,18514], + [37015,7608], + [37017,12692], + [37019,43022], + [37021,120025], + [37023,36781], + [37025,85209], + [37027,32887], + [37029,4200], + [37031,28746], + [37033,8971], + [37035,69551], + [37037,29575], + [37039,10226], + [37041,5158], + [37043,3699], + [37045,42113], + [37047,21604], + [37049,37866], + [37051,118196], + [37053,11611], + [37055,18245], + [37057,72799], + [37059,18464], + [37061,24336], + [37063,140933], + [37065,20849], + [37067,164068], + [37069,25905], + [37071,91777], + [37073,4889], + [37075,2980], + [37077,26396], + [37079,8669], + [37081,234235], + [37083,19195], + [37085,45085], + [37087,25428], + [37089,46007], + [37091,8610], + [37093,17808], + [37095,1911], + [37097,72776], + [37099,16804], + [37101,78453], + [37103,4157], + [37105,23433], + [37107,26023], + [37109,36584], + [37111,18593], + [37113,13812], + [37115,8710], + [37117,9049], + [37119,496753], + [37121,5935], + [37123,10711], + [37125,34956], + [37127,40644], + [37129,101245], + [37131,7344], + [37133,59535], + [37135,68785], + [37137,4883], + [37139,15973], + [37141,22765], + [37143,4722], + [37145,16445], + [37147,80794], + [37149,8091], + [37151,62081], + [37153,15386], + [37155,45939], + [37157,38076], + [37159,56994], + [37161,23039], + [37163,27265], + [37165,10404], + [37167,26498], + [37169,20437], + [37171,30507], + [37173,5782], + [37175,12405], + [37177,1360], + [37179,98763], + [37181,16045], + [37183,480573], + [37185,6501], + [37187,4640], + [37189,25233], + [37191,50520], + [37193,27278], + [37195,33663], + [37197,16497], + [37199,7064], + [38001,1083], + [38003,5530], + [38005,2355], + [38007,461], + [38009,3134], + [38011,1959], + [38013,1358], + [38015,46166], + [38017,88921], + [38019,2008], + [38021,2599], + [38023,1749], + [38025,4049], + [38027,1195], + [38029,1506], + [38031,1578], + [38033,951], + [38035,36083], + [38037,1238], + [38039,1174], + [38041,1440], + [38043,1197], + [38045,2187], + [38047,890], + [38049,3155], + [38051,1213], + [38053,7448], + [38055,4622], + [38057,3978], + [38059,15258], + [38061,7884], + [38063,1488], + [38065,837], + [38067,3407], + [38069,1753], + [38071,5536], + [38073,2688], + [38075,1369], + [38077,8291], + [38079,4291], + [38081,2086], + [38083,689], + [38085,1254], + [38087,512], + [38089,19149], + [38091,1017], + [38093,10174], + [38095,1168], + [38097,4372], + [38099,5348], + [38101,33558], + [38103,2119], + [38105,28922], + [39001,9333], + [39003,45593], + [39005,23459], + [39007,41653], + [39009,25027], + [39011,22547], + [39013,29328], + [39015,18043], + [39017,172339], + [39019,12618], + [39021,18632], + [39023,60980], + [39025,94956], + [39027,15306], + [39029,46402], + [39031,14756], + [39033,17910], + [39035,578643], + [39037,24550], + [39039,17518], + [39041,92856], + [39043,35423], + [39045,69122], + [39047,13276], + [39049,597678], + [39051,20669], + [39053,11301], + [39055,46455], + [39057,73867], + [39059,16937], + [39061,373075], + [39063,37697], + [39065,13783], + [39067,6712], + [39069,12787], + [39071,15674], + [39073,12129], + [39075,19000], + [39077,25729], + [39079,12173], + [39081,27268], + [39083,28293], + [39085,117860], + [39087,23831], + [39089,80506], + [39091,21468], + [39093,139963], + [39095,192447], + [39097,18968], + [39099,100196], + [39101,25909], + [39103,89543], + [39105,8297], + [39107,21248], + [39109,48121], + [39111,5835], + [39113,230464], + [39115,6017], + [39117,15539], + [39119,36308], + [39121,4779], + [39123,19837], + [39125,8332], + [39127,14527], + [39129,23782], + [39131,9451], + [39133,80952], + [39135,19699], + [39137,17684], + [39139,50214], + [39141,30593], + [39143,29173], + [39145,26730], + [39147,25285], + [39149,22169], + [39151,174746], + [39153,250484], + [39155,85711], + [39157,41768], + [39159,25075], + [39161,13223], + [39163,4983], + [39165,102770], + [39167,25927], + [39169,55625], + [39171,17264], + [39173,64239], + [39175,11576], + [40001,7458], + [40003,2839], + [40005,4575], + [40007,2924], + [40009,12178], + [40011,4146], + [40013,16771], + [40015,10668], + [40017,62100], + [40019,20864], + [40021,17429], + [40023,5468], + [40025,1193], + [40027,131186], + [40029,2082], + [40031,47228], + [40033,2701], + [40035,5840], + [40037,29367], + [40039,15431], + [40041,15817], + [40043,2505], + [40045,2260], + [40047,28225], + [40049,11835], + [40051,24317], + [40053,2572], + [40055,1891], + [40057,1290], + [40059,1855], + [40061,4064], + [40063,5280], + [40065,10246], + [40067,2446], + [40069,3295], + [40071,18607], + [40073,7517], + [40075,3947], + [40077,3777], + [40079,18009], + [40081,14672], + [40083,19807], + [40085,5022], + [40087,17050], + [40089,12992], + [40091,6670], + [40093,3991], + [40095,6555], + [40097,17764], + [40099,6149], + [40101,27790], + [40103,5232], + [40105,4494], + [40107,4110], + [40109,350727], + [40111,15017], + [40113,19885], + [40115,13005], + [40117,6942], + [40119,35878], + [40121,16675], + [40123,16797], + [40125,30370], + [40127,4291], + [40129,1818], + [40131,41595], + [40133,8943], + [40135,15454], + [40137,19493], + [40139,8882], + [40141,3187], + [40143,295184], + [40145,34108], + [40147,23441], + [40149,5342], + [40151,4974], + [40153,10355], + [41001,6142], + [41003,41356], + [41005,182940], + [41007,16470], + [41009,20150], + [41011,23640], + [41013,7830], + [41015,7722], + [41017,70780], + [41019,39463], + [41021,768], + [41023,2794], + [41025,2939], + [41027,12859], + [41029,86594], + [41031,8253], + [41033,28636], + [41035,25741], + [41037,3073], + [41039,154123], + [41041,18792], + [41043,48355], + [41045,11284], + [41047,134308], + [41049,5105], + [41051,383774], + [41053,31889], + [41055,784], + [41057,10010], + [41059,32108], + [41061,10744], + [41063,2863], + [41065,12655], + [41067,269048], + [41069,685], + [41071,45625], + [42001,52135], + [42003,608833], + [42005,31035], + [42007,80291], + [42009,22645], + [42011,196271], + [42013,57239], + [42015,29538], + [42017,314947], + [42019,91851], + [42021,59005], + [42023,2127], + [42025,29228], + [42027,73911], + [42029,259098], + [42031,17167], + [42033,34383], + [42035,17545], + [42037,32620], + [42039,38772], + [42041,118596], + [42043,130890], + [42045,270005], + [42047,15341], + [42049,125897], + [42051,53986], + [42053,1779], + [42055,71558], + [42057,6722], + [42059,17412], + [42061,18340], + [42063,40686], + [42065,19365], + [42067,11175], + [42069,98710], + [42071,254188], + [42073,39809], + [42075,66342], + [42077,168957], + [42079,145691], + [42081,57029], + [42083,18087], + [42085,49854], + [42087,19644], + [42089,73955], + [42091,410086], + [42093,8947], + [42095,144263], + [42097,40819], + [42099,22674], + [42101,626430], + [42103,23383], + [42105,7029], + [42107,63785], + [42109,18389], + [42111,32504], + [42113,2805], + [42115,20749], + [42117,19445], + [42119,17936], + [42121,23307], + [42123,19126], + [42125,99583], + [42127,20931], + [42129,173348], + [42131,13092], + [42133,216521], + [44001,24187], + [44003,83830], + [44005,40567], + [44007,292942], + [44009,63846], + [45001,9540], + [45003,67173], + [45005,2658], + [45007,79702], + [45009,4827], + [45011,7660], + [45013,62946], + [45015,82678], + [45017,6266], + [45019,176533], + [45021,21241], + [45023,12005], + [45025,19066], + [45027,11643], + [45029,14716], + [45031,27276], + [45033,11248], + [45035,64078], + [45037,9671], + [45039,9011], + [45041,59546], + [45043,21897], + [45045,216668], + [45047,28826], + [45049,7571], + [45051,121377], + [45053,10405], + [45055,25752], + [45057,31119], + [45059,27330], + [45061,5838], + [45063,129529], + [45065,3161], + [45067,11342], + [45069,9061], + [45071,16632], + [45073,30647], + [45075,33764], + [45077,50614], + [45079,177504], + [45081,7976], + [45083,125081], + [45085,40331], + [45087,10406], + [45089,11090], + [45091,110241], + [46003,1596], + [46005,9110], + [46007,1060], + [46009,2897], + [46011,17107], + [46013,20206], + [46015,2507], + [46017,672], + [46019,4828], + [46021,810], + [46023,3810], + [46025,1895], + [46027,6802], + [46029,14851], + [46031,1400], + [46033,3808], + [46035,10847], + [46037,2759], + [46039,2241], + [46041,2039], + [46043,1645], + [46045,2212], + [46047,2877], + [46049,1120], + [46051,4436], + [46053,2011], + [46055,1046], + [46057,2999], + [46059,1771], + [46061,1724], + [46063,749], + [46065,9584], + [46067,3535], + [46069,692], + [46071,1226], + [46073,1155], + [46075,596], + [46077,2780], + [46079,6050], + [46081,12144], + [46083,27734], + [46085,1765], + [46087,3060], + [46089,1088], + [46091,2423], + [46093,13004], + [46095,768], + [46097,1186], + [46099,99051], + [46101,3803], + [46102,"NA"], + [46103,51108], + [46105,1474], + [46107,1153], + [46109,4572], + [46111,1249], + [46115,3208], + [46117,1800], + [46119,854], + [46121,2864], + [46123,2980], + [46125,4564], + [46127,7533], + [46129,2222], + [46135,11096], + [46137,964], + [47001,31001], + [47003,18167], + [47005,6207], + [47007,3882], + [47009,55124], + [47011,45942], + [47013,13551], + [47015,5435], + [47017,11547], + [47019,22488], + [47021,18615], + [47023,7592], + [47025,11608], + [47027,2762], + [47029,13342], + [47031,22525], + [47033,6369], + [47035,21253], + [47037,333157], + [47039,4542], + [47041,6923], + [47043,21958], + [47045,15277], + [47047,16562], + [47049,6686], + [47051,18177], + [47053,19629], + [47055,12906], + [47057,8468], + [47059,27422], + [47061,4783], + [47063,24498], + [47065,156177], + [47067,1892], + [47069,8692], + [47071,9839], + [47073,22501], + [47075,7142], + [47077,11334], + [47079,12942], + [47081,9613], + [47083,2995], + [47085,7882], + [47087,4098], + [47089,21183], + [47091,6668], + [47093,212736], + [47095,1959], + [47097,9028], + [47099,16314], + [47101,4460], + [47103,14577], + [47105,20358], + [47107,20775], + [47109,8233], + [47111,9232], + [47113,43660], + [47115,10900], + [47117,13148], + [47119,37872], + [47121,4514], + [47123,17351], + [47125,71473], + [47127,3123], + [47129,7229], + [47131,12072], + [47133,8636], + [47135,2821], + [47137,2097], + [47139,6837], + [47141,29859], + [47143,11922], + [47145,21080], + [47147,31296], + [47149,137817], + [47151,7338], + [47153,5399], + [47155,44826], + [47157,399995], + [47159,7848], + [47161,4754], + [47163,66077], + [47165,80082], + [47167,25294], + [47169,3339], + [47171,6625], + [47173,6698], + [47175,1939], + [47177,16022], + [47179,54532], + [47181,5899], + [47183,14800], + [47185,10740], + [47187,95951], + [47189,57587], + [48001,20763], + [48003,8823], + [48005,35509], + [48007,9408], + [48009,4010], + [48011,966], + [48013,18985], + [48015,13307], + [48017,2830], + [48019,8525], + [48021,33700], + [48023,1584], + [48025,10577], + [48027,125981], + [48029,804941], + [48031,5280], + [48033,400], + [48035,7558], + [48037,37466], + [48039,154302], + [48041,97768], + [48043,3924], + [48045,593], + [48047,2516], + [48049,14906], + [48051,7222], + [48053,19663], + [48055,16001], + [48057,10172], + [48059,5578], + [48061,150439], + [48063,5111], + [48065,3037], + [48067,11437], + [48069,3607], + [48071,16202], + [48073,20041], + [48075,2811], + [48077,4857], + [48079,1310], + [48081,1385], + [48083,2920], + [48085,432552], + [48087,1155], + [48089,9520], + [48091,54472], + [48093,5323], + [48095,1397], + [48097,19463], + [48099,23411], + [48101,582], + [48103,1994], + [48105,1787], + [48107,2603], + [48109,968], + [48111,3762], + [48113,1153569], + [48115,4681], + [48117,8749], + [48119,2469], + [48121,378959], + [48123,9245], + [48125,699], + [48127,6443], + [48129,1887], + [48131,5188], + [48133,8014], + [48135,75338], + [48137,851], + [48139,72879], + [48141,319781], + [48143,18780], + [48145,6299], + [48147,14217], + [48149,12098], + [48151,1784], + [48153,2847], + [48155,548], + [48157,314975], + [48159,4384], + [48161,7317], + [48163,8854], + [48165,8544], + [48167,145043], + [48169,2137], + [48171,11879], + [48173,717], + [48175,3354], + [48177,9030], + [48179,9282], + [48181,56735], + [48183,57894], + [48185,11110], + [48187,66253], + [48189,12843], + [48191,1199], + [48193,3406], + [48195,3027], + [48197,1600], + [48199,23267], + [48201,2066248], + [48203,30108], + [48205,2840], + [48207,2578], + [48209,85104], + [48211,2401], + [48213,32104], + [48215,296978], + [48217,14946], + [48219,11325], + [48221,22561], + [48223,16278], + [48225,9238], + [48227,12840], + [48229,1204], + [48231,35340], + [48233,9172], + [48235,815], + [48237,3795], + [48239,7070], + [48241,13002], + [48243,1114], + [48245,99171], + [48247,2161], + [48249,18909], + [48251,69180], + [48253,5456], + [48255,5323], + [48257,49120], + [48259,17320], + [48261,285], + [48263,511], + [48265,20299], + [48267,2057], + [48269,228], + [48271,1102], + [48273,14445], + [48275,1659], + [48277,20497], + [48279,5727], + [48281,8477], + [48283,4020], + [48285,8797], + [48287,8673], + [48289,6484], + [48291,28265], + [48293,8845], + [48295,1653], + [48297,5769], + [48299,7588], + [48301,71], + [48303,140162], + [48305,2708], + [48307,4047], + [48309,105259], + [48311,859], + [48313,4508], + [48315,4175], + [48317,2443], + [48319,1852], + [48321,15215], + [48323,20712], + [48325,19091], + [48327,866], + [48329,82915], + [48331,9334], + [48333,1962], + [48335,2719], + [48337,9857], + [48339,233018], + [48341,10953], + [48343,5281], + [48345,472], + [48347,27325], + [48349,21863], + [48351,5003], + [48353,6571], + [48355,158015], + [48357,5226], + [48359,918], + [48361,34026], + [48363,12510], + [48365,11960], + [48367,55438], + [48369,4872], + [48371,6343], + [48373,16030], + [48375,54644], + [48377,3274], + [48379,5011], + [48381,65580], + [48383,1881], + [48385,978], + [48387,4625], + [48389,5306], + [48391,3371], + [48393,431], + [48395,6778], + [48397,39844], + [48399,4717], + [48401,22801], + [48403,3101], + [48405,2595], + [48407,10588], + [48409,28462], + [48411,2143], + [48413,1739], + [48415,8210], + [48417,2222], + [48419,10768], + [48421,1420], + [48423,94998], + [48425,3897], + [48427,22402], + [48429,3990], + [48431,723], + [48433,674], + [48435,1971], + [48437,2714], + [48439,922170], + [48441,61254], + [48443,499], + [48445,5205], + [48447,756], + [48449,12107], + [48451,51444], + [48453,598189], + [48455,5153], + [48457,6822], + [48459,17353], + [48461,1640], + [48463,11114], + [48465,18180], + [48467,22295], + [48469,43393], + [48471,21594], + [48473,19492], + [48475,5261], + [48477,14867], + [48479,103601], + [48481,20226], + [48483,3002], + [48485,53984], + [48487,5445], + [48489,6263], + [48491,233607], + [48493,21045], + [48495,3147], + [48497,26707], + [48499,15507], + [48501,4051], + [48503,8132], + [48505,6624], + [48507,3430], + [49001,2880], + [49003,22064], + [49005,55494], + [49007,8383], + [49009,408], + [49011,146091], + [49013,8899], + [49015,4426], + [49017,2525], + [49019,5033], + [49021,18301], + [49023,4460], + [49025,3288], + [49027,5660], + [49029,4323], + [49031,447], + [49033,939], + [49035,544635], + [49037,5224], + [49039,10436], + [49041,8762], + [49043,21124], + [49045,26941], + [49047,14989], + [49049,238194], + [49051,11627], + [49053,56072], + [49055,1228], + [49057,108338], + [50001,19928], + [50003,18271], + [50005,14921], + [50007,91824], + [50009,2649], + [50011,26340], + [50013,3872], + [50015,13094], + [50017,15512], + [50019,12881], + [50021,30562], + [50023,33092], + [50025,22966], + [50027,29054], + [51001,15058], + [51003,49982], + [51005,7020], + [51007,5806], + [51009,14830], + [51011,6696], + [51013,140035], + [51015,34964], + [51017,2441], + [51019,36052], + [51021,2682], + [51023,16703], + [51025,6035], + [51027,7269], + [51029,5900], + [51031,25332], + [51033,13550], + [51035,12164], + [51036,3532], + [51037,4900], + [51041,164793], + [51043,7261], + [51045,2283], + [51047,22123], + [51049,4208], + [51051,4750], + [51053,12544], + [51057,5307], + [51059,596686], + [51061,34139], + [51063,7933], + [51065,12409], + [51067,25604], + [51069,41800], + [51071,7643], + [51073,18312], + [51075,9837], + [51077,6334], + [51079,9218], + [51081,4018], + [51083,14409], + [51085,52602], + [51087,164368], + [51089,21274], + [51091,1358], + [51093,17773], + [51095,31896], + [51097,3416], + [51099,11281], + [51101,8208], + [51103,4995], + [51105,8488], + [51107,182680], + [51109,17027], + [51111,4950], + [51113,6902], + [51115,3952], + [51117,11588], + [51119,4830], + [51121,46856], + [51125,6952], + [51127,10239], + [51131,5485], + [51133,5269], + [51135,6645], + [51137,15161], + [51139,10841], + [51141,7154], + [51143,28299], + [51145,12871], + [51147,9151], + [51149,13709], + [51153,219058], + [51155,15578], + [51157,3715], + [51159,3695], + [51161,47327], + [51163,9811], + [51165,38560], + [51167,10619], + [51169,9305], + [51171,19764], + [51173,12189], + [51175,8724], + [51177,60426], + [51179,62345], + [51181,3368], + [51183,3797], + [51185,16146], + [51187,18854], + [51191,26066], + [51193,8475], + [51195,13538], + [51197,12909], + [51199,30123], + [51510,89882], + [51520,7277], + [51530,3088], + [51540,22302], + [51550,109455], + [51570,8098], + [51580,2346], + [51590,17864], + [51595,2148], + [51600,12563], + [51610,7534], + [51620,3351], + [51630,12872], + [51640,2759], + [51650,60905], + [51660,22408], + [51670,8714], + [51678,2060], + [51680,33209], + [51683,21039], + [51685,8356], + [51690,5059], + [51700,84337], + [51710,104905], + [51720,1715], + [51730,12169], + [51735,6031], + [51740,41776], + [51750,7709], + [51760,102949], + [51770,46460], + [51775,12289], + [51790,11259], + [51800,39325], + [51810,218514], + [51820,9420], + [51830,6349], + [51840,13524], + [53001,7674], + [53003,9144], + [53005,82246], + [53007,37461], + [53009,24710], + [53011,190701], + [53013,1626], + [53015,39074], + [53017,17348], + [53019,2150], + [53021,34773], + [53023,913], + [53025,40206], + [53027,24791], + [53029,29413], + [53031,10351], + [53033,1079695], + [53035,105488], + [53037,18636], + [53039,8805], + [53041,28046], + [53043,4742], + [53045,21030], + [53047,19197], + [53049,7096], + [53051,4125], + [53053,352223], + [53055,7323], + [53057,51876], + [53059,4501], + [53061,366189], + [53063,208842], + [53065,15819], + [53067,113494], + [53069,1139], + [53071,26403], + [53073,94564], + [53075,20876], + [53077,107154], + [54001,6230], + [54003,49590], + [54005,7826], + [54007,4783], + [54009,9572], + [54011,39956], + [54013,2588], + [54015,3063], + [54017,3329], + [54019,15521], + [54021,2568], + [54023,5505], + [54025,14314], + [54027,8901], + [54029,12309], + [54031,4935], + [54033,30013], + [54035,11197], + [54037,26092], + [54039,84118], + [54041,6887], + [54043,6823], + [54045,11163], + [54047,5406], + [54049,25157], + [54051,13257], + [54053,9575], + [54055,21359], + [54057,10963], + [54059,7533], + [54061,47763], + [54063,5320], + [54065,6978], + [54067,9379], + [54069,20120], + [54071,3384], + [54073,2682], + [54075,3287], + [54077,13675], + [54079,24485], + [54081,29478], + [54083,11061], + [54085,4276], + [54087,4803], + [54089,4203], + [54091,7320], + [54093,3049], + [54095,3315], + [54097,8927], + [54099,14931], + [54101,3153], + [54103,6620], + [54105,2083], + [54107,36064], + [54109,7522], + [55001,7779], + [55003,7416], + [55005,21873], + [55007,6907], + [55009,129510], + [55011,6123], + [55013,6852], + [55015,25754], + [55017,30757], + [55019,15922], + [55021,29194], + [55023,7459], + [55025,287085], + [55027,44129], + [55029,14189], + [55031,22014], + [55033,22051], + [55035,54652], + [55037,2014], + [55039,53567], + [55041,3634], + [55043,26026], + [55045,19671], + [55047,9398], + [55049,12670], + [55051,2436], + [55053,9433], + [55055,43040], + [55057,12386], + [55059,80438], + [55061,10239], + [55063,63239], + [55065,8845], + [55067,8923], + [55069,13918], + [55071,39552], + [55073,67298], + [55075,19753], + [55077,6877], + [55078,1324], + [55079,438842], + [55081,21198], + [55083,18881], + [55085,17003], + [55087,94373], + [55089,45046], + [55091,3803], + [55093,22736], + [55095,22582], + [55097,36265], + [55099,6384], + [55101,91448], + [55103,8782], + [55105,75847], + [55107,6161], + [55109,45249], + [55111,33179], + [55113,7295], + [55115,19868], + [55117,57071], + [55119,10286], + [55121,15500], + [55123,14235], + [55125,9152], + [55127,52917], + [55129,7406], + [55131,70972], + [55133,206992], + [55135,25361], + [55137,10816], + [55139,85828], + [55141,36177], + [56001,19916], + [56003,5293], + [56005,24607], + [56007,8016], + [56009,7811], + [56011,3527], + [56013,19848], + [56015,7025], + [56017,2436], + [56019,4251], + [56021,46258], + [56023,7697], + [56025,41150], + [56027,1332], + [56029,15056], + [56031,4593], + [56033,14923], + [56035,4842], + [56037,22838], + [56039,13318], + [56041,9435], + [56043,4146], + [56045,3814] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2014.json b/data/regional/united-states/economics/employment/us-employment-total-2014.json new file mode 100644 index 0000000..38c29b9 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2014.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2014", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2014"], + [1001,24107], + [1003,81115], + [1005,7916], + [1007,7945], + [1009,23032], + [1011,4315], + [1013,8480], + [1015,43484], + [1017,14282], + [1019,10729], + [1021,17906], + [1023,4090], + [1025,7164], + [1027,5119], + [1029,5469], + [1031,18892], + [1033,22043], + [1035,4231], + [1037,4075], + [1039,14679], + [1041,5864], + [1043,33751], + [1045,18885], + [1047,14209], + [1049,26965], + [1051,34469], + [1053,13220], + [1055,40655], + [1057,5853], + [1059,12658], + [1061,10075], + [1063,2614], + [1065,5438], + [1067,6270], + [1069,42097], + [1071,21752], + [1073,292621], + [1075,5234], + [1077,40362], + [1079,12873], + [1081,67385], + [1083,37177], + [1085,3378], + [1087,7489], + [1089,159637], + [1091,7018], + [1093,11322], + [1095,37254], + [1097,171027], + [1099,6775], + [1101,97838], + [1103,52357], + [1105,3067], + [1107,7126], + [1109,13852], + [1111,8653], + [1113,23156], + [1115,36302], + [1117,102440], + [1119,4918], + [1121,32651], + [1123,17041], + [1125,91359], + [1127,23724], + [1129,6017], + [1131,2380], + [1133,8806], + [2013,2127], + [2016,4264], + [2020,149973], + [2050,6136], + [2060,457], + [2068,962], + [2070,1908], + [2090,44129], + [2100,994], + [2105,968], + [2110,16592], + [2122,25780], + [2130,6553], + [2150,6213], + [2158,"NA"], + [2164,540], + [2170,41304], + [2180,3620], + [2185,4094], + [2188,2497], + [2195,1434], + [2198,2459], + [2220,4447], + [2230,710], + [2240,2537], + [2261,4416], + [2275,972], + [2282,246], + [2290,2097], + [4001,17823], + [4003,46508], + [4005,66866], + [4007,19562], + [4009,13320], + [4011,4397], + [4012,7324], + [4013,1841230], + [4015,71264], + [4017,36937], + [4019,433561], + [4021,142463], + [4023,17608], + [4025,87992], + [4027,71756], + [5001,8958], + [5003,7692], + [5005,14919], + [5007,110115], + [5009,14727], + [5011,3806], + [5013,2211], + [5015,11894], + [5017,3448], + [5019,8859], + [5021,5913], + [5023,8940], + [5025,3220], + [5027,8857], + [5029,7982], + [5031,46789], + [5033,25200], + [5035,19853], + [5037,7584], + [5039,2610], + [5041,5104], + [5043,7313], + [5045,55769], + [5047,6875], + [5049,4524], + [5051,37789], + [5053,7774], + [5055,18387], + [5057,9335], + [5059,13171], + [5061,5837], + [5063,14278], + [5065,4547], + [5067,5621], + [5069,26928], + [5071,9624], + [5073,2455], + [5075,6573], + [5077,3006], + [5079,3916], + [5081,5181], + [5083,8537], + [5085,31077], + [5087,6631], + [5089,6126], + [5091,18247], + [5093,17320], + [5095,2885], + [5097,3082], + [5099,3461], + [5101,3167], + [5103,9160], + [5105,3905], + [5107,6535], + [5109,3898], + [5111,9404], + [5113,7928], + [5115,27764], + [5117,3593], + [5119,174401], + [5121,6034], + [5123,8198], + [5125,51972], + [5127,4315], + [5129,2804], + [5131,53940], + [5133,5388], + [5135,5465], + [5137,4343], + [5139,15355], + [5141,5933], + [5143,105355], + [5145,32053], + [5147,2926], + [5149,8528], + [6001,762878], + [6003,470], + [6005,13188], + [6007,92708], + [6009,18668], + [6011,9180], + [6013,507521], + [6015,8952], + [6017,81968], + [6019,388435], + [6021,11466], + [6023,58346], + [6025,59598], + [6027,8604], + [6029,352504], + [6031,50717], + [6033,26727], + [6035,9856], + [6037,4591068], + [6039,55013], + [6041,133186], + [6043,7398], + [6045,37647], + [6047,99887], + [6049,3028], + [6051,7678], + [6053,198499], + [6055,69417], + [6057,44820], + [6059,1486383], + [6061,164871], + [6063,7182], + [6065,930412], + [6067,630973], + [6069,26513], + [6071,834901], + [6073,1445086], + [6075,506679], + [6077,279832], + [6079,132727], + [6081,409873], + [6083,204973], + [6085,941097], + [6087,130163], + [6089,67830], + [6091,1273], + [6093,16046], + [6095,187972], + [6097,242339], + [6099,214219], + [6101,38781], + [6103,22726], + [6105,4693], + [6107,172550], + [6109,19757], + [6111,402455], + [6113,94763], + [6115,24829], + [8001,230839], + [8003,6966], + [8005,314763], + [8007,5378], + [8009,1871], + [8011,1563], + [8013,168845], + [8014,32707], + [8015,8012], + [8017,943], + [8019,5257], + [8021,3325], + [8023,1462], + [8025,1237], + [8027,1886], + [8029,12630], + [8031,350792], + [8033,1276], + [8035,162294], + [8037,31017], + [8039,12396], + [8041,288041], + [8043,13328], + [8045,29508], + [8047,3296], + [8049,8564], + [8051,9276], + [8053,418], + [8055,2168], + [8057,804], + [8059,293395], + [8061,726], + [8063,4178], + [8065,4294], + [8067,28634], + [8069,169412], + [8071,5936], + [8073,2045], + [8075,10571], + [8077,68598], + [8079,403], + [8081,6880], + [8083,11876], + [8085,17947], + [8087,14116], + [8089,7355], + [8091,2009], + [8093,8918], + [8095,2177], + [8097,10480], + [8099,5454], + [8101,66970], + [8103,2763], + [8105,4373], + [8107,13774], + [8109,2740], + [8111,450], + [8113,4684], + [8115,1035], + [8117,19386], + [8119,10895], + [8121,2561], + [8123,138793], + [8125,4789], + [9001,448984], + [9003,441506], + [9005,99476], + [9007,87004], + [9009,423994], + [9011,128146], + [9013,79788], + [9015,58384], + [10001,70393], + [10003,267676], + [10005,89318], + [11001,348981], + [12001,122796], + [12003,10491], + [12005,82008], + [12007,10146], + [12009,239911], + [12011,928716], + [12013,4602], + [12015,62292], + [12017,44106], + [12019,92188], + [12021,150508], + [12023,26476], + [12027,12228], + [12029,5144], + [12031,429051], + [12033,130372], + [12035,40046], + [12037,4666], + [12039,17263], + [12041,6115], + [12043,4543], + [12045,5752], + [12047,4255], + [12049,9550], + [12051,14033], + [12053,60994], + [12055,32821], + [12057,643346], + [12059,6383], + [12061,56875], + [12063,16313], + [12065,5134], + [12067,3182], + [12069,129500], + [12071,291638], + [12073,141567], + [12075,15182], + [12077,2569], + [12079,7186], + [12081,151358], + [12083,122005], + [12085,64521], + [12086,1231286], + [12087,43189], + [12089,34108], + [12091,87331], + [12093,16374], + [12095,637038], + [12097,142399], + [12099,644664], + [12101,198813], + [12103,444471], + [12105,258446], + [12107,25506], + [12109,105458], + [12111,120081], + [12113,69122], + [12115,164704], + [12117,222576], + [12119,25910], + [12121,16840], + [12123,8720], + [12125,4451], + [12127,221573], + [12129,13567], + [12131,25902], + [12133,9041], + [13001,7902], + [13003,3342], + [13005,4511], + [13007,1014], + [13009,16870], + [13011,7611], + [13013,32983], + [13015,43279], + [13017,5039], + [13019,6619], + [13021,63493], + [13023,4112], + [13025,6253], + [13027,6154], + [13029,14543], + [13031,32015], + [13033,8253], + [13035,9277], + [13037,1991], + [13039,20514], + [13043,4725], + [13045,47716], + [13047,29138], + [13049,4451], + [13051,122124], + [13053,2013], + [13055,9718], + [13057,111560], + [13059,52333], + [13061,811], + [13063,113123], + [13065,2590], + [13067,370236], + [13069,16206], + [13071,18463], + [13073,62587], + [13075,6797], + [13077,62426], + [13079,5194], + [13081,8621], + [13083,7391], + [13085,10142], + [13087,10451], + [13089,342134], + [13091,6708], + [13093,4192], + [13095,35094], + [13097,62679], + [13099,3955], + [13101,1679], + [13103,24638], + [13105,7373], + [13107,7689], + [13109,4432], + [13111,9109], + [13113,50490], + [13115,39868], + [13117,95123], + [13119,8500], + [13121,473594], + [13123,11098], + [13125,1165], + [13127,34325], + [13129,24180], + [13131,9689], + [13133,5900], + [13135,417546], + [13137,17654], + [13139,84779], + [13141,2228], + [13143,10934], + [13145,14788], + [13147,9608], + [13149,4575], + [13151,96043], + [13153,61457], + [13155,2844], + [13157,28075], + [13159,5930], + [13161,5875], + [13163,5905], + [13165,2936], + [13167,3598], + [13169,12830], + [13171,7046], + [13173,3487], + [13175,17279], + [13177,13264], + [13179,23680], + [13181,3060], + [13183,6205], + [13185,46882], + [13187,14289], + [13189,7923], + [13191,5406], + [13193,4182], + [13195,11859], + [13197,3192], + [13199,7894], + [13201,2506], + [13205,8078], + [13207,11880], + [13209,3461], + [13211,7812], + [13213,14388], + [13215,74035], + [13217,44019], + [13219,16389], + [13221,6220], + [13223,70247], + [13225,10400], + [13227,12905], + [13229,7486], + [13231,7620], + [13233,16915], + [13235,3746], + [13237,7360], + [13239,816], + [13241,6015], + [13243,2456], + [13245,77305], + [13247,38741], + [13249,2010], + [13251,4827], + [13253,2826], + [13255,24702], + [13257,10355], + [13259,2024], + [13261,12165], + [13263,2586], + [13265,528], + [13267,8862], + [13269,2556], + [13271,4738], + [13273,3329], + [13275,15651], + [13277,16925], + [13279,11031], + [13281,3759], + [13283,2499], + [13285,33458], + [13287,2999], + [13289,2664], + [13291,8891], + [13293,10302], + [13295,27285], + [13297,38753], + [13299,13594], + [13301,2452], + [13303,6943], + [13305,10799], + [13307,928], + [13309,1636], + [13311,12976], + [13313,41231], + [13315,2582], + [13317,3389], + [13319,3395], + [13321,8240], + [15001,82863], + [15003,442983], + [15005,"NA"], + [15007,33111], + [15009,78704], + [16001,202788], + [16003,1508], + [16005,39612], + [16007,2729], + [16009,3645], + [16011,21053], + [16013,10941], + [16015,2727], + [16017,16916], + [16019,47493], + [16021,4611], + [16023,1231], + [16025,597], + [16027,83703], + [16029,3687], + [16031,10755], + [16033,421], + [16035,2838], + [16037,1989], + [16039,10426], + [16041,6185], + [16043,6689], + [16045,7065], + [16047,7651], + [16049,5997], + [16051,11751], + [16053,10656], + [16055,66361], + [16057,18503], + [16059,3096], + [16061,1521], + [16063,2452], + [16065,18401], + [16067,9926], + [16069,19507], + [16071,2034], + [16073,4833], + [16075,10333], + [16077,3781], + [16079,4683], + [16081,5392], + [16083,36553], + [16085,4211], + [16087,4275], + [17001,30894], + [17003,2283], + [17005,7376], + [17007,24271], + [17009,2620], + [17011,16198], + [17013,2171], + [17015,7347], + [17017,5989], + [17019,97193], + [17021,14591], + [17023,7396], + [17025,5925], + [17027,18872], + [17029,22637], + [17031,2455149], + [17033,9113], + [17035,5514], + [17037,51333], + [17039,7410], + [17041,9282], + [17043,480727], + [17045,8478], + [17047,2659], + [17049,17364], + [17051,9013], + [17053,6061], + [17055,15102], + [17057,14402], + [17059,2288], + [17061,5760], + [17063,23352], + [17065,4075], + [17067,8308], + [17069,1496], + [17071,3502], + [17073,23555], + [17075,14049], + [17077,26641], + [17079,4348], + [17081,16300], + [17083,10283], + [17085,10851], + [17087,3764], + [17089,246677], + [17091,51378], + [17093,60981], + [17095,21952], + [17097,341670], + [17099,52544], + [17101,5854], + [17103,17007], + [17105,16351], + [17107,12192], + [17109,13316], + [17111,154853], + [17113,85807], + [17115,46459], + [17117,21403], + [17119,122960], + [17121,16669], + [17123,5352], + [17125,6066], + [17127,5814], + [17129,6368], + [17131,7703], + [17133,16917], + [17135,11077], + [17137,16189], + [17139,6663], + [17141,24013], + [17143,84524], + [17145,8132], + [17147,7851], + [17149,7303], + [17151,1647], + [17153,1916], + [17155,2801], + [17157,13224], + [17159,6766], + [17161,67464], + [17163,116508], + [17165,9885], + [17167,98232], + [17169,3225], + [17171,2384], + [17173,9460], + [17175,2592], + [17177,20604], + [17179,63227], + [17181,6651], + [17183,32525], + [17185,5233], + [17187,8225], + [17189,8593], + [17191,7164], + [17193,6657], + [17195,26600], + [17197,329629], + [17199,29153], + [17201,130296], + [17203,18602], + [18001,15653], + [18003,165499], + [18005,40713], + [18007,4228], + [18009,4871], + [18011,30755], + [18013,6913], + [18015,9359], + [18017,16700], + [18019,54466], + [18021,11589], + [18023,15791], + [18025,4515], + [18027,14488], + [18029,23449], + [18031,13476], + [18033,20138], + [18035,49804], + [18037,21129], + [18039,96915], + [18041,8375], + [18043,37065], + [18045,7620], + [18047,10166], + [18049,9172], + [18051,17592], + [18053,30397], + [18055,12744], + [18057,154456], + [18059,34692], + [18061,17965], + [18063,76928], + [18065,19989], + [18067,34595], + [18069,17464], + [18071,20241], + [18073,15053], + [18075,9509], + [18077,14138], + [18079,12205], + [18081,71714], + [18083,17847], + [18085,38325], + [18087,17397], + [18089,212208], + [18091,45116], + [18093,18722], + [18095,53773], + [18097,436752], + [18099,22407], + [18101,4687], + [18103,14627], + [18105,63593], + [18107,17672], + [18109,32939], + [18111,6458], + [18113,21919], + [18115,2995], + [18117,7875], + [18119,8708], + [18121,6461], + [18123,8635], + [18125,6021], + [18127,78763], + [18129,12518], + [18131,5857], + [18133,15180], + [18135,11672], + [18137,12731], + [18139,8046], + [18141,120252], + [18143,9490], + [18145,21146], + [18147,10188], + [18149,9485], + [18151,18840], + [18153,8025], + [18155,4517], + [18157,86672], + [18159,7737], + [18161,3342], + [18163,87069], + [18165,6602], + [18167,45689], + [18169,14601], + [18171,3844], + [18173,29637], + [18175,12425], + [18177,28887], + [18179,13090], + [18181,12763], + [18183,15963], + [19001,3991], + [19003,2141], + [19005,7280], + [19007,5807], + [19009,3123], + [19011,13242], + [19013,68715], + [19015,14697], + [19017,13676], + [19019,10948], + [19021,11042], + [19023,8037], + [19025,4213], + [19027,10886], + [19029,7074], + [19031,10518], + [19033,22186], + [19035,6302], + [19037,6181], + [19039,4475], + [19041,8581], + [19043,9695], + [19045,23500], + [19047,8389], + [19049,41369], + [19051,3905], + [19053,4278], + [19055,10143], + [19057,19824], + [19059,9270], + [19061,53351], + [19063,5515], + [19065,10267], + [19067,8041], + [19069,5749], + [19071,4014], + [19073,5068], + [19075,6453], + [19077,5373], + [19079,6787], + [19081,6098], + [19083,8344], + [19085,7246], + [19087,9139], + [19089,5108], + [19091,5068], + [19093,3756], + [19095,9795], + [19097,10477], + [19099,18501], + [19101,8697], + [19103,81559], + [19105,10278], + [19107,5280], + [19109,8397], + [19111,16714], + [19113,115865], + [19115,5675], + [19117,4149], + [19119,6847], + [19121,7870], + [19123,11356], + [19125,16797], + [19127,18793], + [19129,7085], + [19131,5274], + [19133,4526], + [19135,3875], + [19137,4957], + [19139,21145], + [19141,7980], + [19143,3350], + [19145,6315], + [19147,4685], + [19149,14183], + [19151,4183], + [19153,245209], + [19155,47151], + [19157,9977], + [19159,2437], + [19161,5346], + [19163,83997], + [19165,6842], + [19167,19570], + [19169,55073], + [19171,8764], + [19173,3128], + [19175,6504], + [19177,3743], + [19179,17170], + [19181,25749], + [19183,11897], + [19185,2732], + [19187,18896], + [19189,5012], + [19191,11565], + [19193,53581], + [19195,4020], + [19197,6676], + [20001,6460], + [20003,3971], + [20005,7135], + [20007,2632], + [20009,14906], + [20011,6720], + [20013,5186], + [20015,30387], + [20017,1182], + [20019,1491], + [20021,9828], + [20023,1273], + [20025,1113], + [20027,3985], + [20029,4204], + [20031,4614], + [20033,948], + [20035,16460], + [20037,18108], + [20039,1305], + [20041,9227], + [20043,4101], + [20045,61994], + [20047,1552], + [20049,1241], + [20051,17412], + [20053,3343], + [20055,19503], + [20057,17483], + [20059,13331], + [20061,11431], + [20063,1444], + [20065,1269], + [20067,3802], + [20069,3400], + [20071,878], + [20073,3177], + [20075,1623], + [20077,2869], + [20079,16382], + [20081,2295], + [20083,999], + [20085,7081], + [20087,9722], + [20089,1326], + [20091,308630], + [20093,2052], + [20095,3459], + [20097,1305], + [20099,10144], + [20101,835], + [20103,33245], + [20105,1698], + [20107,3997], + [20109,1694], + [20111,15666], + [20113,16277], + [20115,5889], + [20117,5686], + [20119,2316], + [20121,16058], + [20123,3709], + [20125,16338], + [20127,2959], + [20129,1429], + [20131,5680], + [20133,5911], + [20135,1569], + [20137,2966], + [20139,7695], + [20141,1980], + [20143,3108], + [20145,3261], + [20147,2805], + [20149,11558], + [20151,5321], + [20153,1478], + [20155,29809], + [20157,2489], + [20159,5254], + [20161,35219], + [20163,2746], + [20165,1743], + [20167,3701], + [20169,29387], + [20171,2773], + [20173,233675], + [20175,10763], + [20177,87465], + [20179,1420], + [20181,2991], + [20183,2050], + [20185,2081], + [20187,992], + [20189,3263], + [20191,10537], + [20193,4251], + [20195,1442], + [20197,3604], + [20199,853], + [20201,3004], + [20203,1199], + [20205,3881], + [20207,1541], + [20209,70372], + [21001,6592], + [21003,8147], + [21005,10822], + [21007,3378], + [21009,17526], + [21011,4297], + [21013,8362], + [21015,61810], + [21017,9095], + [21019,17619], + [21021,11428], + [21023,3495], + [21025,3699], + [21027,7494], + [21029,36903], + [21031,4796], + [21033,5090], + [21035,17616], + [21037,45354], + [21039,2237], + [21041,4517], + [21043,9349], + [21045,6162], + [21047,23467], + [21049,15922], + [21051,4928], + [21053,3639], + [21055,3628], + [21057,2723], + [21059,43289], + [21061,4377], + [21063,1908], + [21065,4995], + [21067,158848], + [21069,5872], + [21071,11117], + [21073,23047], + [21075,2041], + [21077,3589], + [21079,7087], + [21081,10460], + [21083,14661], + [21085,9942], + [21087,4745], + [21089,13059], + [21091,3737], + [21093,43673], + [21095,7221], + [21097,7911], + [21099,7317], + [21101,20313], + [21103,7194], + [21105,1994], + [21107,19082], + [21109,4053], + [21111,354329], + [21113,23581], + [21115,7303], + [21117,78442], + [21119,4559], + [21121,9105], + [21123,5381], + [21125,22267], + [21127,4766], + [21129,2086], + [21131,2764], + [21133,6345], + [21135,4669], + [21137,8497], + [21139,3447], + [21141,11236], + [21143,2770], + [21145,27389], + [21147,4508], + [21149,4037], + [21151,42813], + [21153,3201], + [21155,8596], + [21157,13939], + [21159,3120], + [21161,7123], + [21163,11255], + [21165,2123], + [21167,9279], + [21169,3876], + [21171,4343], + [21173,10867], + [21175,4339], + [21177,11411], + [21179,19984], + [21181,3182], + [21183,8780], + [21185,28805], + [21187,5242], + [21189,1054], + [21191,6304], + [21193,8546], + [21195,19665], + [21197,4545], + [21199,24325], + [21201,745], + [21203,6360], + [21205,9809], + [21207,5904], + [21209,25170], + [21211,21365], + [21213,7981], + [21215,8665], + [21217,10396], + [21219,5159], + [21221,5307], + [21223,3591], + [21225,6319], + [21227,56015], + [21229,5786], + [21231,6548], + [21233,5940], + [21235,12222], + [21237,1822], + [21239,13589], + [22001,25150], + [22003,8269], + [22005,56561], + [22007,9298], + [22009,14984], + [22011,13810], + [22013,5467], + [22015,54880], + [22017,102954], + [22019,89060], + [22021,3765], + [22023,3276], + [22025,3538], + [22027,5893], + [22029,7094], + [22031,10233], + [22033,218971], + [22035,1898], + [22037,7670], + [22039,12260], + [22041,6889], + [22043,7821], + [22045,30546], + [22047,13261], + [22049,6822], + [22051,205264], + [22053,12789], + [22055,116553], + [22057,46213], + [22059,6290], + [22061,19141], + [22063,62991], + [22065,3493], + [22067,9921], + [22069,15604], + [22071,166838], + [22073,67040], + [22075,9666], + [22077,9405], + [22079,54224], + [22081,3708], + [22083,7971], + [22085,8618], + [22087,17914], + [22089,23962], + [22091,4085], + [22093,8940], + [22095,18777], + [22097,31621], + [22099,23282], + [22101,23770], + [22103,108605], + [22105,49719], + [22107,1619], + [22109,52085], + [22111,8679], + [22113,25072], + [22115,15963], + [22117,15647], + [22119,14328], + [22121,12149], + [22123,3695], + [22125,5060], + [22127,5016], + [23001,52862], + [23003,30441], + [23005,152135], + [23007,13963], + [23009,27755], + [23011,59896], + [23013,19579], + [23015,16185], + [23017,25430], + [23019,74139], + [23021,7137], + [23023,18165], + [23025,22411], + [23027,19576], + [23029,13210], + [23031,104187], + [24001,30784], + [24003,282762], + [24005,415127], + [24009,44766], + [24011,16344], + [24013,88247], + [24015,49048], + [24017,75644], + [24019,14480], + [24021,121728], + [24023,14450], + [24025,127739], + [24027,166114], + [24029,9695], + [24031,521063], + [24033,457449], + [24035,25057], + [24037,51236], + [24039,8410], + [24041,18102], + [24043,71548], + [24045,46242], + [24047,22728], + [24510,269182], + [25001,103982], + [25003,61403], + [25005,267447], + [25007,8720], + [25009,380765], + [25011,37396], + [25013,205155], + [25015,82356], + [25017,814751], + [25019,6529], + [25021,348775], + [25023,250756], + [25025,393333], + [25027,400445], + [26001,3415], + [26003,2966], + [26005,56395], + [26007,12436], + [26009,9094], + [26011,5678], + [26013,3070], + [26015,28280], + [26017,49206], + [26019,7956], + [26021,68309], + [26023,17972], + [26025,59913], + [26027,22189], + [26029,12007], + [26031,9514], + [26033,15246], + [26035,10726], + [26037,37529], + [26039,4823], + [26041,15938], + [26043,11956], + [26045,52463], + [26047,16199], + [26049,169223], + [26051,9089], + [26053,6090], + [26055,44968], + [26057,17138], + [26059,19034], + [26061,15616], + [26063,15380], + [26065,136185], + [26067,27381], + [26069,9282], + [26071,4743], + [26073,33326], + [26075,68034], + [26077,120691], + [26079,6974], + [26081,319053], + [26083,873], + [26085,3207], + [26087,36056], + [26089,9810], + [26091,44841], + [26093,89367], + [26095,2268], + [26097,4693], + [26099,387545], + [26101,9461], + [26103,31369], + [26105,13555], + [26107,17627], + [26109,10902], + [26111,39015], + [26113,6503], + [26115,71292], + [26117,25518], + [26119,2743], + [26121,71144], + [26123,20959], + [26125,589208], + [26127,11529], + [26129,7739], + [26131,2106], + [26133,9326], + [26135,2622], + [26137,10282], + [26139,141869], + [26141,4743], + [26143,7032], + [26145,82324], + [26147,66621], + [26149,27142], + [26151,17933], + [26153,3140], + [26155,30698], + [26157,22942], + [26159,32454], + [26161,177797], + [26163,694244], + [26165,13412], + [27001,6321], + [27003,181194], + [27005,17119], + [27007,22069], + [27009,20613], + [27011,2478], + [27013,37213], + [27015,13545], + [27017,16666], + [27019,52313], + [27021,12995], + [27023,6584], + [27025,27237], + [27027,34035], + [27029,4070], + [27031,2884], + [27033,5288], + [27035,29629], + [27037,222769], + [27039,10781], + [27041,19134], + [27043,6989], + [27045,10540], + [27047,15542], + [27049,25675], + [27051,3118], + [27053,647004], + [27055,9898], + [27057,8833], + [27059,19215], + [27061,20501], + [27063,6039], + [27065,8192], + [27067,22670], + [27069,2273], + [27071,5889], + [27073,3477], + [27075,5421], + [27077,2274], + [27079,14649], + [27081,3138], + [27083,14732], + [27085,18907], + [27087,2228], + [27089,5213], + [27091,9739], + [27093,12268], + [27095,11831], + [27097,16308], + [27099,19505], + [27101,4622], + [27103,19166], + [27105,10848], + [27107,3149], + [27109,80187], + [27111,29481], + [27113,8388], + [27115,13709], + [27117,4602], + [27119,16300], + [27121,5997], + [27123,266200], + [27125,2128], + [27127,7649], + [27129,7754], + [27131,33663], + [27133,5529], + [27135,8489], + [27137,97080], + [27139,75351], + [27141,46971], + [27143,7886], + [27145,84143], + [27147,20498], + [27149,5388], + [27151,4633], + [27153,12221], + [27155,1633], + [27157,11254], + [27159,5760], + [27161,9206], + [27163,131103], + [27165,5857], + [27167,3471], + [27169,28252], + [27171,68190], + [27173,5260], + [28001,10636], + [28003,14130], + [28005,4093], + [28007,6430], + [28009,2701], + [28011,12039], + [28013,5775], + [28015,3089], + [28017,6507], + [28019,3287], + [28021,2656], + [28023,5706], + [28025,6923], + [28027,8434], + [28029,10178], + [28031,7322], + [28033,77005], + [28035,29893], + [28037,2664], + [28039,8184], + [28041,4004], + [28043,8627], + [28045,17141], + [28047,79082], + [28049,100282], + [28051,5220], + [28053,2156], + [28055,352], + [28057,9190], + [28059,54377], + [28061,5886], + [28063,2018], + [28065,3698], + [28067,25024], + [28069,3273], + [28071,21790], + [28073,26356], + [28075,30130], + [28077,4146], + [28079,7275], + [28081,36039], + [28083,9224], + [28085,12836], + [28087,23064], + [28089,47154], + [28091,9081], + [28093,13114], + [28095,13905], + [28097,3807], + [28099,10049], + [28101,8188], + [28103,3506], + [28105,20496], + [28107,12001], + [28109,20840], + [28111,3823], + [28113,13340], + [28115,12570], + [28117,10045], + [28119,2392], + [28121,67699], + [28123,11976], + [28125,1574], + [28127,10074], + [28129,6338], + [28131,5792], + [28133,7579], + [28135,5300], + [28137,10777], + [28139,8003], + [28141,7007], + [28143,4199], + [28145,12060], + [28147,4669], + [28149,19343], + [28151,16064], + [28153,7052], + [28155,3625], + [28157,2511], + [28159,6440], + [28161,4469], + [28163,8355], + [29001,9918], + [29003,9351], + [29005,2719], + [29007,10616], + [29009,13907], + [29011,5144], + [29013,7531], + [29015,6623], + [29017,5265], + [29019,93628], + [29021,43657], + [29023,17757], + [29025,4099], + [29027,20575], + [29029,17285], + [29031,38473], + [29033,4403], + [29035,2330], + [29037,49824], + [29039,5493], + [29041,3630], + [29043,40148], + [29045,3203], + [29047,122474], + [29049,10065], + [29051,37689], + [29053,7198], + [29055,10025], + [29057,3300], + [29059,6441], + [29061,3804], + [29063,4705], + [29065,5850], + [29067,4647], + [29069,11955], + [29071,48755], + [29073,7220], + [29075,3432], + [29077,140284], + [29079,4645], + [29081,3723], + [29083,9471], + [29085,3390], + [29087,2567], + [29089,4723], + [29091,15127], + [29093,3540], + [29095,332214], + [29097,54724], + [29099,109190], + [29101,21353], + [29103,1882], + [29105,14628], + [29107,15962], + [29109,16459], + [29111,4893], + [29113,24866], + [29115,4800], + [29117,6946], + [29119,9701], + [29121,6996], + [29123,5125], + [29125,3729], + [29127,13830], + [29129,1776], + [29131,10754], + [29133,5815], + [29135,6946], + [29137,3921], + [29139,5355], + [29141,7281], + [29143,7842], + [29145,26920], + [29147,10351], + [29149,3836], + [29151,6894], + [29153,3339], + [29155,6443], + [29157,9729], + [29159,19405], + [29161,18194], + [29163,7689], + [29165,51265], + [29167,13227], + [29169,14129], + [29171,2368], + [29173,5346], + [29175,9828], + [29177,10383], + [29179,2469], + [29181,5114], + [29183,202090], + [29185,3685], + [29186,8482], + [29187,24325], + [29189,498809], + [29195,10619], + [29197,1751], + [29199,2280], + [29201,18578], + [29203,3108], + [29205,2876], + [29207,12134], + [29209,12037], + [29211,2562], + [29213,23241], + [29215,8696], + [29217,9287], + [29219,16071], + [29221,9578], + [29223,5237], + [29225,15328], + [29227,1243], + [29229,7091], + [29510,148092], + [30001,4678], + [30003,5025], + [30005,2288], + [30007,2362], + [30009,5169], + [30011,664], + [30013,36570], + [30015,2503], + [30017,6367], + [30019,921], + [30021,4728], + [30023,5001], + [30025,2030], + [30027,5486], + [30029,40862], + [30031,54782], + [30033,726], + [30035,5317], + [30037,373], + [30039,1420], + [30041,7364], + [30043,5361], + [30045,924], + [30047,11770], + [30049,33836], + [30051,941], + [30053,7020], + [30055,1062], + [30057,4028], + [30059,867], + [30061,1584], + [30063,57179], + [30065,2261], + [30067,7600], + [30069,271], + [30071,1884], + [30073,2697], + [30075,1040], + [30077,2784], + [30079,491], + [30081,17618], + [30083,7137], + [30085,4562], + [30087,3931], + [30089,4198], + [30091,2069], + [30093,16147], + [30095,4800], + [30097,1715], + [30099,2768], + [30101,2272], + [30103,332], + [30105,4223], + [30107,742], + [30109,533], + [30111,76349], + [31001,16144], + [31003,3492], + [31005,212], + [31007,420], + [31009,263], + [31011,2943], + [31013,5561], + [31015,1063], + [31017,1370], + [31019,26707], + [31021,3440], + [31023,4682], + [31025,12737], + [31027,4557], + [31029,2298], + [31031,3329], + [31033,5619], + [31035,3346], + [31037,5451], + [31039,4817], + [31041,5982], + [31043,10630], + [31045,5126], + [31047,12863], + [31049,1060], + [31051,2962], + [31053,18511], + [31055,275960], + [31057,1247], + [31059,3165], + [31061,1525], + [31063,1507], + [31065,2630], + [31067,10623], + [31069,1158], + [31071,1170], + [31073,1101], + [31075,418], + [31077,1230], + [31079,31117], + [31081,4617], + [31083,1754], + [31085,609], + [31087,1294], + [31089,5761], + [31091,405], + [31093,3239], + [31095,4166], + [31097,2085], + [31099,3751], + [31101,4529], + [31103,602], + [31105,2170], + [31107,4583], + [31109,162879], + [31111,18112], + [31113,479], + [31115,366], + [31117,428], + [31119,18900], + [31121,3956], + [31123,2599], + [31125,2014], + [31127,3580], + [31129,2335], + [31131,7934], + [31133,1606], + [31135,1812], + [31137,4919], + [31139,4115], + [31141,16789], + [31143,2866], + [31145,6123], + [31147,4119], + [31149,860], + [31151,6981], + [31153,86988], + [31155,10629], + [31157,18063], + [31159,8569], + [31161,2706], + [31163,1669], + [31165,786], + [31167,3474], + [31169,2953], + [31171,413], + [31173,2836], + [31175,2053], + [31177,10682], + [31179,5408], + [31181,1669], + [31183,543], + [31185,7158], + [32001,10060], + [32003,938018], + [32005,20596], + [32007,26646], + [32009,509], + [32011,974], + [32013,8407], + [32015,3150], + [32017,1795], + [32019,20557], + [32021,1473], + [32023,14747], + [32027,2417], + [32029,1680], + [32031,205844], + [32033,4596], + [32510,22825], + [33001,30242], + [33003,23116], + [33005,40256], + [33007,14266], + [33009,46716], + [33011,217991], + [33013,77669], + [33015,168191], + [33017,67676], + [33019,22857], + [34001,119063], + [34003,455068], + [34005,215869], + [34007,234520], + [34009,42938], + [34011,61406], + [34013,346558], + [34015,137973], + [34017,337098], + [34019,62697], + [34021,184035], + [34023,409691], + [34025,308800], + [34027,249376], + [34029,247388], + [34031,228359], + [34033,28627], + [34035,164932], + [34037,72695], + [34039,260538], + [34041,53635], + [35001,300552], + [35003,1089], + [35005,25447], + [35006,8295], + [35007,5766], + [35009,20596], + [35011,801], + [35013,87120], + [35015,27764], + [35017,11694], + [35019,1491], + [35021,302], + [35023,1995], + [35025,29369], + [35027,8278], + [35028,8112], + [35029,9316], + [35031,21524], + [35033,2016], + [35035,23204], + [35037,3087], + [35039,15065], + [35041,7676], + [35043,56835], + [35045,51799], + [35047,10107], + [35049,68704], + [35051,3588], + [35053,6001], + [35055,13545], + [35057,5028], + [35059,1815], + [35061,27249], + [36001,150241], + [36003,21969], + [36005,549442], + [36007,82515], + [36009,34212], + [36011,35518], + [36013,54081], + [36015,35940], + [36017,21840], + [36019,33753], + [36021,29981], + [36023,22220], + [36025,18798], + [36027,135274], + [36029,422961], + [36031,16414], + [36033,19108], + [36035,21734], + [36037,28487], + [36039,19402], + [36041,2259], + [36043,27014], + [36045,43248], + [36047,1131176], + [36049,10983], + [36051,29285], + [36053,31419], + [36055,344893], + [36057,20694], + [36059,655871], + [36061,857230], + [36063,94822], + [36065,97301], + [36067,213104], + [36069,52139], + [36071,166535], + [36073,16737], + [36075,50834], + [36077,28417], + [36079,48012], + [36081,1085553], + [36083,77137], + [36085,205156], + [36087,142290], + [36089,43618], + [36091,110745], + [36093,72338], + [36095,13813], + [36097,8037], + [36099,14708], + [36101,41237], + [36103,728090], + [36105,31229], + [36107,22428], + [36109,52589], + [36111,83349], + [36113,30305], + [36115,26946], + [36117,41851], + [36119,448482], + [36121,17234], + [36123,11080], + [37001,72461], + [37003,16487], + [37005,4092], + [37007,10147], + [37009,11564], + [37011,7152], + [37013,18618], + [37015,7850], + [37017,12957], + [37019,43941], + [37021,121751], + [37023,36921], + [37025,88842], + [37027,32921], + [37029,4276], + [37031,29152], + [37033,8959], + [37035,69921], + [37037,30672], + [37039,10318], + [37041,5231], + [37043,3835], + [37045,42631], + [37047,21066], + [37049,38260], + [37051,117291], + [37053,11913], + [37055,18421], + [37057,73453], + [37059,18530], + [37061,24891], + [37063,145148], + [37065,20846], + [37067,166674], + [37069,26458], + [37071,93969], + [37073,4889], + [37075,2875], + [37077,26609], + [37079,8827], + [37081,236765], + [37083,19210], + [37085,45739], + [37087,25666], + [37089,46937], + [37091,8690], + [37093,17778], + [37095,1997], + [37097,74924], + [37099,17140], + [37101,80997], + [37103,4191], + [37105,22977], + [37107,25866], + [37109,37202], + [37111,19470], + [37113,14045], + [37115,8812], + [37117,9112], + [37119,515227], + [37121,6031], + [37123,10740], + [37125,35846], + [37127,40720], + [37129,103997], + [37131,7305], + [37133,60131], + [37135,69311], + [37137,4950], + [37139,15886], + [37141,23518], + [37143,4704], + [37145,16551], + [37147,81848], + [37149,7957], + [37151,62280], + [37153,15422], + [37155,46292], + [37157,38045], + [37159,58040], + [37161,23279], + [37163,27723], + [37165,10562], + [37167,26805], + [37169,20465], + [37171,30977], + [37173,5903], + [37175,12564], + [37177,1399], + [37179,103104], + [37181,16375], + [37183,497805], + [37185,6579], + [37187,4556], + [37189,25636], + [37191,50416], + [37193,27591], + [37195,34056], + [37197,16533], + [37199,6984], + [38001,1083], + [38003,5427], + [38005,2352], + [38007,477], + [38009,3148], + [38011,1861], + [38013,1266], + [38015,46316], + [38017,90590], + [38019,1994], + [38021,2537], + [38023,1846], + [38025,4244], + [38027,1220], + [38029,1474], + [38031,1583], + [38033,956], + [38035,35973], + [38037,1262], + [38039,1158], + [38041,1507], + [38043,1230], + [38045,2206], + [38047,901], + [38049,3167], + [38051,1210], + [38053,9057], + [38055,4697], + [38057,3988], + [38059,15446], + [38061,8948], + [38063,1476], + [38065,826], + [38067,3403], + [38069,1730], + [38071,5475], + [38073,2655], + [38075,1371], + [38077,8263], + [38079,4247], + [38081,2118], + [38083,690], + [38085,1241], + [38087,502], + [38089,20994], + [38091,1006], + [38093,10154], + [38095,1193], + [38097,4344], + [38099,5319], + [38101,33647], + [38103,2099], + [38105,31488], + [39001,9545], + [39003,45536], + [39005,24019], + [39007,41700], + [39009,25705], + [39011,23087], + [39013,29679], + [39015,18212], + [39017,176166], + [39019,12735], + [39021,18918], + [39023,61199], + [39025,96937], + [39027,15637], + [39029,46850], + [39031,14580], + [39033,18264], + [39035,578054], + [39037,24738], + [39039,17907], + [39041,96246], + [39043,35001], + [39045,70768], + [39047,13285], + [39049,615751], + [39051,21039], + [39053,11447], + [39055,46630], + [39057,75525], + [39059,17801], + [39061,379421], + [39063,38633], + [39065,14240], + [39067,6907], + [39069,12857], + [39071,15976], + [39073,12323], + [39075,19094], + [39077,25647], + [39079,12054], + [39081,27358], + [39083,29466], + [39085,117702], + [39087,24111], + [39089,82072], + [39091,21918], + [39093,140777], + [39095,195419], + [39097,19482], + [39099,100696], + [39101,26186], + [39103,90211], + [39105,8355], + [39107,21787], + [39109,49240], + [39111,5226], + [39113,233702], + [39115,6145], + [39117,15795], + [39119,36535], + [39121,4694], + [39123,19843], + [39125,8514], + [39127,14644], + [39129,24334], + [39131,9546], + [39133,81715], + [39135,19922], + [39137,17794], + [39139,50935], + [39141,31498], + [39143,29489], + [39145,27254], + [39147,25596], + [39149,22437], + [39151,177282], + [39153,256090], + [39155,85855], + [39157,42791], + [39159,25601], + [39161,13697], + [39163,5071], + [39165,105410], + [39167,26415], + [39169,56745], + [39171,17754], + [39173,65537], + [39175,11807], + [40001,7438], + [40003,3011], + [40005,4499], + [40007,3008], + [40009,12378], + [40011,4323], + [40013,16966], + [40015,10525], + [40017,63469], + [40019,21015], + [40021,17384], + [40023,5326], + [40025,1237], + [40027,130576], + [40029,2142], + [40031,46941], + [40033,2715], + [40035,5712], + [40037,29386], + [40039,15386], + [40041,16088], + [40043,2324], + [40045,2264], + [40047,28555], + [40049,12097], + [40051,24351], + [40053,2731], + [40055,1935], + [40057,1225], + [40059,1914], + [40061,4013], + [40063,5241], + [40065,10187], + [40067,2460], + [40069,3373], + [40071,18157], + [40073,7705], + [40075,3886], + [40077,3662], + [40079,18010], + [40081,14769], + [40083,20119], + [40085,5231], + [40087,17425], + [40089,12994], + [40091,6383], + [40093,4239], + [40095,6591], + [40097,17836], + [40099,6266], + [40101,27582], + [40103,5329], + [40105,4458], + [40107,4179], + [40109,353620], + [40111,14887], + [40113,19866], + [40115,12855], + [40117,6908], + [40119,36893], + [40121,16084], + [40123,16969], + [40125,30558], + [40127,4340], + [40129,1742], + [40131,41814], + [40133,8900], + [40135,15520], + [40137,19364], + [40139,8988], + [40141,3137], + [40143,297777], + [40145,34024], + [40147,23388], + [40149,5403], + [40151,5138], + [40153,10415], + [41001,6145], + [41003,42041], + [41005,188244], + [41007,16810], + [41009,20469], + [41011,23690], + [41013,8119], + [41015,7741], + [41017,74670], + [41019,39963], + [41021,757], + [41023,2803], + [41025,2962], + [41027,12964], + [41029,88427], + [41031,8541], + [41033,29660], + [41035,25890], + [41037,3154], + [41039,157391], + [41041,18917], + [41043,49637], + [41045,11067], + [41047,138096], + [41049,5093], + [41051,394312], + [41053,33046], + [41055,814], + [41057,10379], + [41059,32504], + [41061,10735], + [41063,2884], + [41065,12665], + [41067,276400], + [41069,683], + [41071,46744], + [42001,52601], + [42003,611956], + [42005,31015], + [42007,80357], + [42009,22659], + [42011,199415], + [42013,57452], + [42015,29908], + [42017,317708], + [42019,92512], + [42021,58607], + [42023,2137], + [42025,29352], + [42027,74299], + [42029,262490], + [42031,17283], + [42033,34052], + [42035,17585], + [42037,32105], + [42039,38863], + [42041,120455], + [42043,131892], + [42045,274167], + [42047,15518], + [42049,126306], + [42051,53870], + [42053,1774], + [42055,72353], + [42057,6785], + [42059,17486], + [42061,18293], + [42063,40585], + [42065,19519], + [42067,11186], + [42069,99692], + [42071,260021], + [42073,39962], + [42075,66657], + [42077,171963], + [42079,147381], + [42081,57751], + [42083,18080], + [42085,49958], + [42087,19743], + [42089,73823], + [42091,416265], + [42093,8810], + [42095,146129], + [42097,40978], + [42099,22773], + [42101,634989], + [42103,23230], + [42105,7011], + [42107,64095], + [42109,18836], + [42111,32447], + [42113,2873], + [42115,20172], + [42117,19038], + [42119,18176], + [42121,23232], + [42123,19110], + [42125,100060], + [42127,20913], + [42129,172700], + [42131,13323], + [42133,218272], + [44001,24405], + [44003,84910], + [44005,41050], + [44007,298159], + [44009,64599], + [45001,9760], + [45003,68227], + [45005,2519], + [45007,81519], + [45009,4920], + [45011,7809], + [45013,65493], + [45015,85422], + [45017,6333], + [45019,182413], + [45021,21699], + [45023,12134], + [45025,19765], + [45027,11900], + [45029,15376], + [45031,27376], + [45033,11387], + [45035,66179], + [45037,9846], + [45039,9161], + [45041,60181], + [45043,22712], + [45045,223004], + [45047,29488], + [45049,7673], + [45051,124297], + [45053,10780], + [45055,26601], + [45057,32732], + [45059,27773], + [45061,5867], + [45063,134357], + [45065,3214], + [45067,11504], + [45069,8915], + [45071,17496], + [45073,32027], + [45075,33561], + [45077,51398], + [45079,182384], + [45081,8164], + [45083,128207], + [45085,41161], + [45087,10513], + [45089,11386], + [45091,114932], + [46003,1561], + [46005,9101], + [46007,1069], + [46009,2910], + [46011,17560], + [46013,20341], + [46015,2475], + [46017,675], + [46019,4902], + [46021,820], + [46023,3853], + [46025,1906], + [46027,6825], + [46029,14811], + [46031,1400], + [46033,3781], + [46035,10938], + [46037,2716], + [46039,2202], + [46041,2021], + [46043,1670], + [46045,2170], + [46047,2860], + [46049,1103], + [46051,4514], + [46053,1998], + [46055,1056], + [46057,3012], + [46059,1776], + [46061,1741], + [46063,754], + [46065,9681], + [46067,3543], + [46069,690], + [46071,1260], + [46073,1166], + [46075,583], + [46077,2791], + [46079,6081], + [46081,12171], + [46083,28771], + [46085,1723], + [46087,3065], + [46089,1081], + [46091,2416], + [46093,12815], + [46095,774], + [46097,1197], + [46099,101185], + [46101,3799], + [46102,"NA"], + [46103,52048], + [46105,1495], + [46107,1157], + [46109,4612], + [46111,1209], + [46115,3262], + [46117,1806], + [46119,857], + [46121,2832], + [46123,3020], + [46125,4521], + [46127,7697], + [46129,2232], + [46135,11002], + [46137,943], + [47001,30687], + [47003,17940], + [47005,6104], + [47007,3884], + [47009,55083], + [47011,45994], + [47013,13300], + [47015,5399], + [47017,11197], + [47019,21893], + [47021,18643], + [47023,7559], + [47025,11531], + [47027,2712], + [47029,13162], + [47031,22783], + [47033,6329], + [47035,21158], + [47037,336799], + [47039,4318], + [47041,6811], + [47043,21998], + [47045,15156], + [47047,16460], + [47049,6413], + [47051,18354], + [47053,19241], + [47055,13299], + [47057,8425], + [47059,27609], + [47061,4602], + [47063,24286], + [47065,153784], + [47067,1857], + [47069,8646], + [47071,9485], + [47073,22014], + [47075,6963], + [47077,11103], + [47079,12741], + [47081,9604], + [47083,2958], + [47085,7694], + [47087,4059], + [47089,21235], + [47091,6616], + [47093,212518], + [47095,1900], + [47097,8819], + [47099,16130], + [47101,4399], + [47103,14450], + [47105,20245], + [47107,20604], + [47109,7961], + [47111,9268], + [47113,43148], + [47115,10667], + [47117,13484], + [47119,38496], + [47121,4428], + [47123,17502], + [47125,71736], + [47127,3107], + [47129,7067], + [47131,11550], + [47133,8363], + [47135,2787], + [47137,2067], + [47139,6782], + [47141,29709], + [47143,12097], + [47145,20743], + [47147,31442], + [47149,141168], + [47151,7256], + [47153,5281], + [47155,45200], + [47157,395109], + [47159,7776], + [47161,4723], + [47163,64918], + [47165,81544], + [47167,24995], + [47169,3396], + [47171,6443], + [47173,6625], + [47175,1897], + [47177,16162], + [47179,53824], + [47181,5866], + [47183,14453], + [47185,10540], + [47187,98538], + [47189,58949], + [48001,20778], + [48003,9244], + [48005,35767], + [48007,9637], + [48009,4051], + [48011,972], + [48013,19365], + [48015,13462], + [48017,2809], + [48019,8691], + [48021,34929], + [48023,1582], + [48025,10112], + [48027,127044], + [48029,825960], + [48031,5472], + [48033,410], + [48035,7720], + [48037,37170], + [48039,158250], + [48041,100194], + [48043,3879], + [48045,610], + [48047,2498], + [48049,15032], + [48051,7232], + [48053,20577], + [48055,16345], + [48057,10561], + [48059,5573], + [48061,152513], + [48063,4900], + [48065,3045], + [48067,11346], + [48069,3645], + [48071,16816], + [48073,19955], + [48075,2759], + [48077,4790], + [48079,1327], + [48081,1376], + [48083,2931], + [48085,452567], + [48087,1208], + [48089,9821], + [48091,57138], + [48093,5270], + [48095,1372], + [48097,19755], + [48099,23250], + [48101,568], + [48103,1926], + [48105,1860], + [48107,2572], + [48109,970], + [48111,3789], + [48113,1183245], + [48115,4661], + [48117,8779], + [48119,2493], + [48121,395799], + [48123,9633], + [48125,698], + [48127,7371], + [48129,1542], + [48131,5222], + [48133,7959], + [48135,79552], + [48137,830], + [48139,75200], + [48141,322445], + [48143,19248], + [48145,6190], + [48147,14467], + [48149,12627], + [48151,1780], + [48153,2753], + [48155,554], + [48157,331406], + [48159,4419], + [48161,7403], + [48163,9974], + [48165,9062], + [48167,148793], + [48169,2162], + [48171,12080], + [48173,808], + [48175,3426], + [48177,9555], + [48179,9394], + [48181,57429], + [48183,58184], + [48185,11261], + [48187,68488], + [48189,12256], + [48191,1185], + [48193,3403], + [48195,3160], + [48197,1567], + [48199,23804], + [48201,2119161], + [48203,30425], + [48205,2828], + [48207,2588], + [48209,90032], + [48211,2485], + [48213,32801], + [48215,302957], + [48217,15046], + [48219,11625], + [48221,23065], + [48223,16672], + [48225,9318], + [48227,12998], + [48229,1172], + [48231,36294], + [48233,10060], + [48235,802], + [48237,4146], + [48239,7333], + [48241,13269], + [48243,1106], + [48245,101022], + [48247,2065], + [48249,19057], + [48251,70626], + [48253,5486], + [48255,6046], + [48257,50852], + [48259,17926], + [48261,328], + [48263,495], + [48265,20493], + [48267,2031], + [48269,216], + [48271,1140], + [48273,14430], + [48275,1665], + [48277,20796], + [48279,5679], + [48281,8465], + [48283,4436], + [48285,8624], + [48287,8969], + [48289,6837], + [48291,28763], + [48293,8665], + [48295,1690], + [48297,5898], + [48299,7671], + [48301,74], + [48303,141989], + [48305,2737], + [48307,3940], + [48309,107210], + [48311,1039], + [48313,4781], + [48315,4192], + [48317,2596], + [48319,1810], + [48321,15372], + [48323,20836], + [48325,19402], + [48327,844], + [48329,88337], + [48331,9594], + [48333,1960], + [48335,2781], + [48337,9735], + [48339,242633], + [48341,10906], + [48343,5186], + [48345,476], + [48347,27101], + [48349,21936], + [48351,5100], + [48353,6746], + [48355,159650], + [48357,5407], + [48359,907], + [48361,34873], + [48363,12688], + [48365,11940], + [48367,56412], + [48369,4971], + [48371,6579], + [48373,16120], + [48375,54597], + [48377,3015], + [48379,5140], + [48381,66472], + [48383,2011], + [48385,993], + [48387,4554], + [48389,5528], + [48391,3447], + [48393,434], + [48395,6764], + [48397,41458], + [48399,4762], + [48401,23016], + [48403,3168], + [48405,2556], + [48407,10756], + [48409,28772], + [48411,2138], + [48413,1726], + [48415,8326], + [48417,2309], + [48419,10935], + [48421,1458], + [48423,96937], + [48425,3924], + [48427,22451], + [48429,4104], + [48431,788], + [48433,670], + [48435,1950], + [48437,2705], + [48439,941186], + [48441,61706], + [48443,458], + [48445,5371], + [48447,800], + [48449,12097], + [48451,52465], + [48453,618143], + [48455,5192], + [48457,6972], + [48459,17624], + [48461,1815], + [48463,11021], + [48465,18271], + [48467,22639], + [48469,44338], + [48471,21899], + [48473,20231], + [48475,5710], + [48477,14979], + [48479,105546], + [48481,20569], + [48483,2972], + [48485,53760], + [48487,5036], + [48489,6283], + [48491,244237], + [48493,21613], + [48495,3142], + [48497,27104], + [48499,15769], + [48501,4165], + [48503,8318], + [48505,6579], + [48507,3425], + [49001,2847], + [49003,22527], + [49005,57015], + [49007,8255], + [49009,413], + [49011,150319], + [49013,9233], + [49015,4369], + [49017,2480], + [49019,5174], + [49021,19023], + [49023,4602], + [49025,3395], + [49027,5758], + [49029,4531], + [49031,427], + [49033,967], + [49035,554611], + [49037,5175], + [49039,10566], + [49041,8853], + [49043,21769], + [49045,27524], + [49047,15427], + [49049,246367], + [49051,12239], + [49053,58819], + [49055,1255], + [49057,109861], + [50001,20050], + [50003,17817], + [50005,14539], + [50007,92655], + [50009,2606], + [50011,26390], + [50013,3886], + [50015,13052], + [50017,15288], + [50019,12772], + [50021,30275], + [50023,32939], + [50025,22559], + [50027,28612], + [51001,14986], + [51003,51179], + [51005,6769], + [51007,5881], + [51009,14779], + [51011,6708], + [51013,139786], + [51015,35111], + [51017,2476], + [51019,36471], + [51021,2693], + [51023,16822], + [51025,5944], + [51027,6956], + [51029,5872], + [51031,25199], + [51033,13858], + [51035,12300], + [51036,3496], + [51037,4941], + [51041,168309], + [51043,7213], + [51045,2302], + [51047,22177], + [51049,4259], + [51051,4666], + [51053,12591], + [51057,5319], + [51059,593857], + [51061,34267], + [51063,7915], + [51065,12589], + [51067,25705], + [51069,42380], + [51071,7566], + [51073,18494], + [51075,10033], + [51077,6521], + [51079,9416], + [51081,3969], + [51083,14337], + [51085,53244], + [51087,167224], + [51089,21159], + [51091,1364], + [51093,17974], + [51095,32906], + [51097,3433], + [51099,11428], + [51101,8299], + [51103,4938], + [51105,8115], + [51107,187625], + [51109,17509], + [51111,5025], + [51113,6952], + [51115,3933], + [51117,11651], + [51119,4773], + [51121,47228], + [51125,7027], + [51127,10574], + [51131,5621], + [51133,5241], + [51135,6699], + [51137,15321], + [51139,10874], + [51141,7205], + [51143,28329], + [51145,13040], + [51147,9257], + [51149,13829], + [51153,220441], + [51155,15451], + [51157,3615], + [51159,3755], + [51161,47689], + [51163,9749], + [51165,38483], + [51167,10386], + [51169,9211], + [51171,20159], + [51173,12381], + [51175,8676], + [51177,60640], + [51179,63121], + [51181,3436], + [51183,3787], + [51185,15821], + [51187,18791], + [51191,26024], + [51193,8428], + [51195,13063], + [51197,12900], + [51199,30235], + [51510,89936], + [51520,7227], + [51530,3114], + [51540,23170], + [51550,111068], + [51570,8198], + [51580,2289], + [51590,17893], + [51595,2123], + [51600,12696], + [51610,7507], + [51620,3330], + [51630,12834], + [51640,2773], + [51650,61146], + [51660,22737], + [51670,8788], + [51678,2096], + [51680,33696], + [51683,21004], + [51685,7770], + [51690,4994], + [51700,85007], + [51710,104890], + [51720,1667], + [51730,12314], + [51735,6011], + [51740,41801], + [51750,7896], + [51760,105455], + [51770,47144], + [51775,12441], + [51790,11418], + [51800,39919], + [51810,220297], + [51820,9530], + [51830,6149], + [51840,13690], + [53001,7941], + [53003,9186], + [53005,83182], + [53007,38639], + [53009,24493], + [53011,194621], + [53013,1616], + [53015,40102], + [53017,17954], + [53019,2173], + [53021,34886], + [53023,897], + [53025,41513], + [53027,24451], + [53029,29630], + [53031,10299], + [53033,1103941], + [53035,106632], + [53037,18801], + [53039,8844], + [53041,27780], + [53043,4747], + [53045,21203], + [53047,19796], + [53049,7081], + [53051,4123], + [53053,358486], + [53055,7308], + [53057,52399], + [53059,4540], + [53061,374903], + [53063,209773], + [53065,15781], + [53067,115391], + [53069,1153], + [53071,26710], + [53073,94670], + [53075,20998], + [53077,109113], + [54001,6359], + [54003,49628], + [54005,7637], + [54007,4729], + [54009,9366], + [54011,39789], + [54013,2619], + [54015,2955], + [54017,3450], + [54019,15206], + [54021,2562], + [54023,5359], + [54025,14080], + [54027,8809], + [54029,12071], + [54031,4895], + [54033,30068], + [54035,11036], + [54037,25626], + [54039,83393], + [54041,6717], + [54043,6796], + [54045,10636], + [54047,5014], + [54049,24833], + [54051,13150], + [54053,9169], + [54055,20513], + [54057,10845], + [54059,6783], + [54061,48042], + [54063,5233], + [54065,6956], + [54067,9134], + [54069,19799], + [54071,3307], + [54073,2761], + [54075,3229], + [54077,13590], + [54079,24445], + [54081,28953], + [54083,10945], + [54085,4305], + [54087,4752], + [54089,4159], + [54091,7325], + [54093,3144], + [54095,3274], + [54097,8894], + [54099,14758], + [54101,3142], + [54103,6512], + [54105,2044], + [54107,35532], + [54109,7190], + [55001,7657], + [55003,7452], + [55005,22691], + [55007,6822], + [55009,131778], + [55011,6100], + [55013,6779], + [55015,26014], + [55017,31290], + [55019,16046], + [55021,29557], + [55023,7425], + [55025,294498], + [55027,44988], + [55029,14121], + [55031,22211], + [55033,22412], + [55035,55402], + [55037,2041], + [55039,54321], + [55041,3675], + [55043,26412], + [55045,19903], + [55047,9402], + [55049,12862], + [55051,2427], + [55053,9610], + [55055,43541], + [55057,12523], + [55059,81671], + [55061,10296], + [55063,63804], + [55065,9006], + [55067,8849], + [55069,14425], + [55071,40000], + [55073,69492], + [55075,19677], + [55077,6803], + [55078,1402], + [55079,445882], + [55081,21335], + [55083,19091], + [55085,17509], + [55087,96489], + [55089,45926], + [55091,3840], + [55093,22961], + [55095,23045], + [55097,37117], + [55099,6414], + [55101,93288], + [55103,8841], + [55105,77267], + [55107,6539], + [55109,46161], + [55111,33251], + [55113,7248], + [55115,20039], + [55117,58449], + [55119,10073], + [55121,15778], + [55123,14319], + [55125,9234], + [55127,53861], + [55129,7440], + [55131,72347], + [55133,210862], + [55135,25783], + [55137,10789], + [55139,86838], + [55141,32453], + [56001,19781], + [56003,5329], + [56005,25376], + [56007,8102], + [56009,8089], + [56011,3567], + [56013,19537], + [56015,6883], + [56017,2384], + [56019,4279], + [56021,46656], + [56023,7812], + [56025,41612], + [56027,1306], + [56029,15046], + [56031,4596], + [56033,15168], + [56035,4664], + [56037,22362], + [56039,13768], + [56041,9408], + [56043,4091], + [56045,3841] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2015.json b/data/regional/united-states/economics/employment/us-employment-total-2015.json new file mode 100644 index 0000000..776d635 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2015.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2015", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2015"], + [1001,24272], + [1003,82843], + [1005,7844], + [1007,8005], + [1009,23152], + [1011,4398], + [1013,8440], + [1015,42679], + [1017,14069], + [1019,10549], + [1021,18054], + [1023,3980], + [1025,7054], + [1027,5208], + [1029,5335], + [1031,19062], + [1033,21733], + [1035,4249], + [1037,4130], + [1039,14353], + [1041,5974], + [1043,34472], + [1045,18575], + [1047,14094], + [1049,27022], + [1051,34897], + [1053,13571], + [1055,40045], + [1057,5971], + [1059,12782], + [1061,10147], + [1063,2559], + [1065,5577], + [1067,6259], + [1069,41767], + [1071,21900], + [1073,292958], + [1075,5260], + [1077,39687], + [1079,12616], + [1081,67140], + [1083,37757], + [1085,3385], + [1087,7326], + [1089,161516], + [1091,6839], + [1093,11615], + [1095,38049], + [1097,174057], + [1099,6601], + [1101,98643], + [1103,51678], + [1105,3137], + [1107,7465], + [1109,13956], + [1111,8876], + [1113,22674], + [1115,36552], + [1117,103643], + [1119,4699], + [1121,32824], + [1123,17598], + [1125,93482], + [1127,23714], + [1129,6102], + [1131,2410], + [1133,8669], + [2013,2399], + [2016,3914], + [2020,149082], + [2050,6314], + [2060,346], + [2068,978], + [2070,1846], + [2090,43929], + [2100,982], + [2105,964], + [2110,16309], + [2122,25511], + [2130,6493], + [2150,6310], + [2158,"NA"], + [2164,566], + [2170,42698], + [2180,3601], + [2185,4065], + [2188,2448], + [2195,1363], + [2198,2419], + [2220,4395], + [2230,720], + [2240,2692], + [2261,4465], + [2275,951], + [2282,237], + [2290,1971], + [4001,17796], + [4003,46447], + [4005,68209], + [4007,19447], + [4009,13388], + [4011,3709], + [4012,7530], + [4013,1910598], + [4015,72935], + [4017,36613], + [4019,437916], + [4021,146677], + [4023,17520], + [4025,90422], + [4027,73038], + [5001,9092], + [5003,7515], + [5005,15329], + [5007,117246], + [5009,15072], + [5011,4117], + [5013,2277], + [5015,12080], + [5017,3388], + [5019,8928], + [5021,5882], + [5023,8944], + [5025,3169], + [5027,8914], + [5029,8113], + [5031,48745], + [5033,25460], + [5035,20102], + [5037,7663], + [5039,2666], + [5041,5142], + [5043,7374], + [5045,57123], + [5047,7047], + [5049,4511], + [5051,37769], + [5053,7883], + [5055,18918], + [5057,9369], + [5059,13445], + [5061,5802], + [5063,14656], + [5065,4650], + [5067,5723], + [5069,26744], + [5071,9801], + [5073,2418], + [5075,6623], + [5077,2968], + [5079,3873], + [5081,5289], + [5083,8636], + [5085,31618], + [5087,6810], + [5089,6187], + [5091,18916], + [5093,16720], + [5095,2793], + [5097,3008], + [5099,3452], + [5101,3230], + [5103,9256], + [5105,3944], + [5107,6466], + [5109,3922], + [5111,9502], + [5113,7815], + [5115,28110], + [5117,3553], + [5119,177567], + [5121,5742], + [5123,8302], + [5125,53714], + [5127,4271], + [5129,2856], + [5131,54961], + [5133,5260], + [5135,5591], + [5137,4411], + [5139,15837], + [5141,5996], + [5143,111175], + [5145,32391], + [5147,2837], + [5149,8486], + [6001,784217], + [6003,506], + [6005,13396], + [6007,94074], + [6009,19272], + [6011,9367], + [6013,519999], + [6015,9033], + [6017,83326], + [6019,396410], + [6021,11856], + [6023,58964], + [6025,59351], + [6027,8580], + [6029,350944], + [6031,51797], + [6033,26852], + [6035,10004], + [6037,4671098], + [6039,53719], + [6041,134572], + [6043,7454], + [6045,37609], + [6047,101362], + [6049,3022], + [6051,7757], + [6053,201110], + [6055,70523], + [6057,45532], + [6059,1517820], + [6061,167923], + [6063,7088], + [6065,966338], + [6067,644870], + [6069,27087], + [6071,861894], + [6073,1474197], + [6075,525939], + [6077,287278], + [6079,133029], + [6081,422826], + [6083,206250], + [6085,967710], + [6087,132675], + [6089,68550], + [6091,1237], + [6093,16242], + [6095,192736], + [6097,246837], + [6099,218687], + [6101,39914], + [6103,23094], + [6105,4742], + [6107,180569], + [6109,20058], + [6111,404239], + [6113,97963], + [6115,25301], + [8001,236940], + [8003,7254], + [8005,321794], + [8007,5767], + [8009,1929], + [8011,1663], + [8013,171102], + [8014,34353], + [8015,8201], + [8017,983], + [8019,5339], + [8021,3392], + [8023,1518], + [8025,1293], + [8027,1918], + [8029,12670], + [8031,361592], + [8033,1281], + [8035,166762], + [8037,31707], + [8039,12839], + [8041,293453], + [8043,13602], + [8045,29194], + [8047,3291], + [8049,8759], + [8051,9498], + [8053,427], + [8055,2186], + [8057,803], + [8059,297859], + [8061,770], + [8063,4215], + [8065,4389], + [8067,28819], + [8069,174549], + [8071,5782], + [8073,2095], + [8075,10595], + [8077,67806], + [8079,429], + [8081,6781], + [8083,11634], + [8085,18346], + [8087,14106], + [8089,7423], + [8091,2060], + [8093,9043], + [8095,2300], + [8097,10319], + [8099,5576], + [8101,67632], + [8103,2658], + [8105,4558], + [8107,13810], + [8109,2888], + [8111,450], + [8113,4879], + [8115,1107], + [8117,20034], + [8119,10892], + [8121,2712], + [8123,142040], + [8125,4995], + [9001,456134], + [9003,446575], + [9005,100157], + [9007,87695], + [9009,428192], + [9011,128887], + [9013,80888], + [9015,58905], + [10001,72470], + [10003,278738], + [10005,93196], + [11001,361324], + [12001,123529], + [12003,10549], + [12005,82751], + [12007,10226], + [12009,241082], + [12011,937544], + [12013,4639], + [12015,63599], + [12017,44217], + [12019,93493], + [12021,155094], + [12023,27383], + [12027,12601], + [12029,5239], + [12031,433842], + [12033,130409], + [12035,40928], + [12037,4548], + [12039,16900], + [12041,6131], + [12043,4374], + [12045,5680], + [12047,4228], + [12049,9386], + [12051,13491], + [12053,61502], + [12055,32691], + [12057,654510], + [12059,6280], + [12061,57023], + [12063,16291], + [12065,5054], + [12067,3057], + [12069,133031], + [12071,302883], + [12073,140142], + [12075,15496], + [12077,2483], + [12079,7016], + [12081,156532], + [12083,121727], + [12085,65768], + [12086,1239626], + [12087,44186], + [12089,34682], + [12091,87579], + [12093,16162], + [12095,651611], + [12097,148194], + [12099,655590], + [12101,202727], + [12103,447351], + [12105,262248], + [12107,25183], + [12109,108908], + [12111,122938], + [12113,70388], + [12115,168802], + [12117,224989], + [12119,26430], + [12121,16957], + [12123,8377], + [12125,4505], + [12127,224701], + [12129,13308], + [12131,26534], + [12133,9038], + [13001,8040], + [13003,3644], + [13005,4615], + [13007,1042], + [13009,16391], + [13011,7764], + [13013,34224], + [13015,44103], + [13017,4984], + [13019,6540], + [13021,63413], + [13023,3999], + [13025,6391], + [13027,6467], + [13029,15301], + [13031,32636], + [13033,8390], + [13035,9454], + [13037,1997], + [13039,21068], + [13043,4685], + [13045,48314], + [13047,29738], + [13049,4463], + [13051,125482], + [13053,1925], + [13055,9902], + [13057,114736], + [13059,53664], + [13061,758], + [13063,116765], + [13065,2579], + [13067,378139], + [13069,16129], + [13071,18773], + [13073,65209], + [13075,6801], + [13077,64257], + [13079,5225], + [13081,8781], + [13083,7423], + [13085,10387], + [13087,10620], + [13089,350620], + [13091,6374], + [13093,4400], + [13095,34958], + [13097,64014], + [13099,4056], + [13101,1779], + [13103,25783], + [13105,7048], + [13107,7590], + [13109,4403], + [13111,9489], + [13113,51358], + [13115,40115], + [13117,99689], + [13119,8704], + [13121,483972], + [13123,11016], + [13125,1152], + [13127,35408], + [13129,24611], + [13131,9796], + [13133,6376], + [13135,429027], + [13137,17743], + [13139,88284], + [13141,2244], + [13143,11094], + [13145,14878], + [13147,9758], + [13149,4597], + [13151,98573], + [13153,61864], + [13155,2872], + [13157,29261], + [13159,6086], + [13161,5921], + [13163,5792], + [13165,2846], + [13167,3601], + [13169,12734], + [13171,7092], + [13173,3530], + [13175,17235], + [13177,13379], + [13179,23396], + [13181,3138], + [13183,6670], + [13185,47392], + [13187,14494], + [13189,8055], + [13191,5442], + [13193,4193], + [13195,11926], + [13197,3155], + [13199,7977], + [13201,2526], + [13205,8131], + [13207,11934], + [13209,3390], + [13211,7960], + [13213,14887], + [13215,73014], + [13217,45165], + [13219,16814], + [13221,6355], + [13223,72370], + [13225,10394], + [13227,13138], + [13229,7544], + [13231,7758], + [13233,16949], + [13235,3749], + [13237,7172], + [13239,761], + [13241,6068], + [13243,2205], + [13245,78051], + [13247,39516], + [13249,1970], + [13251,4622], + [13253,2840], + [13255,24934], + [13257,10153], + [13259,1968], + [13261,11766], + [13263,2488], + [13265,547], + [13267,8705], + [13269,2519], + [13271,4405], + [13273,3361], + [13275,15600], + [13277,17227], + [13279,10829], + [13281,3607], + [13283,2472], + [13285,33437], + [13287,2976], + [13289,2695], + [13291,9307], + [13293,10324], + [13295,27646], + [13297,39424], + [13299,13546], + [13301,2434], + [13303,6695], + [13305,10731], + [13307,877], + [13309,1510], + [13311,13071], + [13313,42690], + [13315,2528], + [13317,3609], + [13319,3340], + [13321,8272], + [15001,84812], + [15003,452091], + [15005,"NA"], + [15007,33738], + [15009,80819], + [16001,209058], + [16003,1583], + [16005,40167], + [16007,2700], + [16009,3767], + [16011,21126], + [16013,11391], + [16015,2855], + [16017,17405], + [16019,49163], + [16021,4805], + [16023,1218], + [16025,625], + [16027,86342], + [16029,3606], + [16031,11064], + [16033,380], + [16035,2834], + [16037,1986], + [16039,10222], + [16041,6243], + [16043,6907], + [16045,7128], + [16047,7715], + [16049,5993], + [16051,12028], + [16053,11079], + [16055,67880], + [16057,18779], + [16059,3137], + [16061,1498], + [16063,2518], + [16065,19217], + [16067,10280], + [16069,19831], + [16071,2048], + [16073,4958], + [16075,10535], + [16077,3691], + [16079,4722], + [16081,5616], + [16083,38126], + [16085,4492], + [16087,4295], + [17001,30895], + [17003,2081], + [17005,7366], + [17007,24616], + [17009,2678], + [17011,16005], + [17013,2183], + [17015,7501], + [17017,6082], + [17019,99199], + [17021,14441], + [17023,7576], + [17025,6147], + [17027,19168], + [17029,22622], + [17031,2484494], + [17033,9059], + [17035,5593], + [17037,51549], + [17039,7489], + [17041,9586], + [17043,487789], + [17045,8839], + [17047,2768], + [17049,17527], + [17051,9060], + [17053,6156], + [17055,15150], + [17057,14582], + [17059,2300], + [17061,5674], + [17063,23722], + [17065,4135], + [17067,8359], + [17069,1398], + [17071,3523], + [17073,23532], + [17075,13985], + [17077,27029], + [17079,4349], + [17081,16008], + [17083,10372], + [17085,10820], + [17087,3780], + [17089,252049], + [17091,51470], + [17093,62846], + [17095,21787], + [17097,347276], + [17099,53378], + [17101,5706], + [17103,16887], + [17105,16315], + [17107,12305], + [17109,13210], + [17111,156973], + [17113,86482], + [17115,46989], + [17117,21587], + [17119,124983], + [17121,16865], + [17123,5330], + [17125,6136], + [17127,5664], + [17129,6421], + [17131,7679], + [17133,17298], + [17135,11126], + [17137,16129], + [17139,7041], + [17141,24311], + [17143,83805], + [17145,8223], + [17147,7925], + [17149,7218], + [17151,1644], + [17153,1904], + [17155,2852], + [17157,13523], + [17159,7024], + [17161,67608], + [17163,117831], + [17165,9544], + [17167,99920], + [17169,3278], + [17171,2407], + [17173,9624], + [17175,2578], + [17177,20115], + [17179,62647], + [17181,6787], + [17183,32934], + [17185,5303], + [17187,8116], + [17189,8998], + [17191,6982], + [17193,6529], + [17195,26743], + [17197,335079], + [17199,29942], + [17201,132182], + [17203,18579], + [18001,16254], + [18003,169826], + [18005,42004], + [18007,4373], + [18009,4926], + [18011,32258], + [18013,7087], + [18015,9587], + [18017,16944], + [18019,56244], + [18021,11713], + [18023,16238], + [18025,4621], + [18027,15101], + [18029,23920], + [18031,13711], + [18033,20887], + [18035,51339], + [18037,21906], + [18039,100644], + [18041,8399], + [18043,38222], + [18045,7572], + [18047,10809], + [18049,9389], + [18051,18143], + [18053,30760], + [18055,12808], + [18057,161577], + [18059,35792], + [18061,18527], + [18063,79688], + [18065,20511], + [18067,35140], + [18069,17825], + [18071,20918], + [18073,15405], + [18075,9449], + [18077,14583], + [18079,12491], + [18081,74422], + [18083,18154], + [18085,39008], + [18087,18209], + [18089,214013], + [18091,45477], + [18093,18949], + [18095,54917], + [18097,448369], + [18099,23006], + [18101,4834], + [18103,14931], + [18105,64057], + [18107,18496], + [18109,33702], + [18111,6556], + [18113,22642], + [18115,3003], + [18117,8205], + [18119,8700], + [18121,6654], + [18123,8796], + [18125,5919], + [18127,80142], + [18129,12771], + [18131,5990], + [18133,15562], + [18135,12056], + [18137,12903], + [18139,8456], + [18141,123843], + [18143,9726], + [18145,21619], + [18147,10520], + [18149,9921], + [18151,19199], + [18153,8118], + [18155,4613], + [18157,89165], + [18159,8046], + [18161,3402], + [18163,88302], + [18165,6711], + [18167,45981], + [18169,14650], + [18171,3894], + [18173,30463], + [18175,12824], + [18177,29016], + [18179,13487], + [18181,13057], + [18183,16319], + [19001,4089], + [19003,2227], + [19005,7325], + [19007,5920], + [19009,3110], + [19011,13240], + [19013,67294], + [19015,14856], + [19017,13483], + [19019,10837], + [19021,11163], + [19023,7920], + [19025,4265], + [19027,11012], + [19029,7189], + [19031,10612], + [19033,22108], + [19035,6015], + [19037,6167], + [19039,4575], + [19041,8533], + [19043,9869], + [19045,23202], + [19047,8386], + [19049,42445], + [19051,3992], + [19053,4285], + [19055,10328], + [19057,19556], + [19059,9817], + [19061,53701], + [19063,5455], + [19065,10327], + [19067,8376], + [19069,5761], + [19071,4014], + [19073,5376], + [19075,6479], + [19077,5412], + [19079,6925], + [19081,6196], + [19083,8470], + [19085,7286], + [19087,9226], + [19089,5185], + [19091,5167], + [19093,3839], + [19095,10023], + [19097,10700], + [19099,18371], + [19101,8803], + [19103,81687], + [19105,10335], + [19107,5195], + [19109,8585], + [19111,17293], + [19113,115690], + [19115,5799], + [19117,4248], + [19119,6925], + [19121,7916], + [19123,11372], + [19125,16871], + [19127,18459], + [19129,7125], + [19131,5440], + [19133,4555], + [19135,3860], + [19137,4989], + [19139,21365], + [19141,8196], + [19143,3445], + [19145,6302], + [19147,4717], + [19149,14381], + [19151,4181], + [19153,246362], + [19155,47229], + [19157,10134], + [19159,2482], + [19161,5457], + [19163,83448], + [19165,6821], + [19167,20259], + [19169,56021], + [19171,9251], + [19173,3138], + [19175,6304], + [19177,3687], + [19179,17091], + [19181,25806], + [19183,12010], + [19185,2739], + [19187,19485], + [19189,4967], + [19191,11786], + [19193,54102], + [19195,4061], + [19197,6641], + [20001,6268], + [20003,3935], + [20005,7012], + [20007,2549], + [20009,13976], + [20011,6778], + [20013,5142], + [20015,30671], + [20017,1207], + [20019,1463], + [20021,9952], + [20023,1321], + [20025,1131], + [20027,3941], + [20029,4148], + [20031,4470], + [20033,959], + [20035,16263], + [20037,17964], + [20039,1301], + [20041,9028], + [20043,4132], + [20045,62375], + [20047,1696], + [20049,1219], + [20051,16999], + [20053,2831], + [20055,19421], + [20057,17449], + [20059,13457], + [20061,11361], + [20063,1450], + [20065,1222], + [20067,3762], + [20069,3518], + [20071,915], + [20073,3139], + [20075,1620], + [20077,2744], + [20079,16538], + [20081,2299], + [20083,995], + [20085,6972], + [20087,9761], + [20089,1314], + [20091,313723], + [20093,2081], + [20095,3491], + [20097,1405], + [20099,10137], + [20101,849], + [20103,33686], + [20105,1736], + [20107,4051], + [20109,1713], + [20111,15924], + [20113,16670], + [20115,5930], + [20117,5568], + [20119,2347], + [20121,16032], + [20123,3650], + [20125,15507], + [20127,2972], + [20129,1376], + [20131,5787], + [20133,5803], + [20135,1487], + [20137,2877], + [20139,7656], + [20141,2018], + [20143,3108], + [20145,3184], + [20147,2860], + [20149,11519], + [20151,5077], + [20153,1500], + [20155,29515], + [20157,2519], + [20159,5271], + [20161,34416], + [20163,2681], + [20165,1732], + [20167,3594], + [20169,29712], + [20171,2806], + [20173,235028], + [20175,10166], + [20177,87371], + [20179,1449], + [20181,3001], + [20183,2013], + [20185,2095], + [20187,1029], + [20189,3060], + [20191,10587], + [20193,4299], + [20195,1456], + [20197,3589], + [20199,853], + [20201,3031], + [20203,1218], + [20205,3745], + [20207,1530], + [20209,71583], + [21001,6429], + [21003,8168], + [21005,10733], + [21007,3357], + [21009,17439], + [21011,4352], + [21013,8068], + [21015,62311], + [21017,9200], + [21019,16877], + [21021,11325], + [21023,3455], + [21025,3615], + [21027,7440], + [21029,37323], + [21031,4747], + [21033,5099], + [21035,17498], + [21037,45352], + [21039,2184], + [21041,4681], + [21043,9193], + [21045,6315], + [21047,23118], + [21049,15856], + [21051,4909], + [21053,3526], + [21055,3617], + [21057,2733], + [21059,43062], + [21061,4312], + [21063,1912], + [21065,4963], + [21067,160099], + [21069,5853], + [21071,10819], + [21073,22986], + [21075,1923], + [21077,3607], + [21079,7222], + [21081,10391], + [21083,14451], + [21085,9972], + [21087,4752], + [21089,12568], + [21091,3657], + [21093,44331], + [21095,6589], + [21097,8011], + [21099,7375], + [21101,20177], + [21103,7243], + [21105,1921], + [21107,18538], + [21109,3949], + [21111,356476], + [21113,23999], + [21115,6996], + [21117,78780], + [21119,4337], + [21121,8975], + [21123,5560], + [21125,22022], + [21127,4653], + [21129,1900], + [21131,2612], + [21133,6092], + [21135,4629], + [21137,8402], + [21139,3420], + [21141,11132], + [21143,2790], + [21145,27137], + [21147,4441], + [21149,4006], + [21151,42571], + [21153,2985], + [21155,8763], + [21157,14017], + [21159,2927], + [21161,6998], + [21163,11140], + [21165,2169], + [21167,9295], + [21169,3800], + [21171,4414], + [21173,11027], + [21175,4130], + [21177,10833], + [21179,20066], + [21181,3129], + [21183,8819], + [21185,29485], + [21187,5294], + [21189,1069], + [21191,6253], + [21193,8209], + [21195,18954], + [21197,4571], + [21199,24301], + [21201,745], + [21203,6334], + [21205,9843], + [21207,5446], + [21209,25634], + [21211,21792], + [21213,7935], + [21215,8789], + [21217,10400], + [21219,5172], + [21221,5343], + [21223,3595], + [21225,5777], + [21227,56277], + [21229,5844], + [21231,6703], + [21233,5731], + [21235,12288], + [21237,1759], + [21239,13746], + [22001,24088], + [22003,8224], + [22005,58625], + [22007,9044], + [22009,14787], + [22011,14253], + [22013,5329], + [22015,54982], + [22017,102578], + [22019,94014], + [22021,3699], + [22023,3502], + [22025,3272], + [22027,5743], + [22029,6899], + [22031,10211], + [22033,222699], + [22035,1907], + [22037,7736], + [22039,12030], + [22041,6803], + [22043,7866], + [22045,29291], + [22047,13375], + [22049,6832], + [22051,207184], + [22053,12776], + [22055,113456], + [22057,44181], + [22059,6160], + [22061,19621], + [22063,64895], + [22065,3546], + [22067,9647], + [22069,15335], + [22071,170454], + [22073,67583], + [22075,9765], + [22077,9473], + [22079,54524], + [22081,3651], + [22083,7921], + [22085,8815], + [22087,18451], + [22089,24188], + [22091,4126], + [22093,8989], + [22095,18885], + [22097,31121], + [22099,22460], + [22101,22455], + [22103,111321], + [22105,50388], + [22107,1552], + [22109,49928], + [22111,8700], + [22113,24085], + [22115,16103], + [22117,15769], + [22119,14231], + [22121,12537], + [22123,3574], + [22125,5129], + [22127,4895], + [23001,52518], + [23003,29829], + [23005,152496], + [23007,13843], + [23009,27442], + [23011,59013], + [23013,19635], + [23015,15983], + [23017,25087], + [23019,73225], + [23021,7041], + [23023,18268], + [23025,22086], + [23027,19543], + [23029,13098], + [23031,104220], + [24001,30133], + [24003,288620], + [24005,422797], + [24009,44999], + [24011,16571], + [24013,89412], + [24015,49594], + [24017,76752], + [24019,14714], + [24021,123176], + [24023,14701], + [24025,129612], + [24027,170550], + [24029,10043], + [24031,527763], + [24033,462577], + [24035,25504], + [24037,52108], + [24039,8454], + [24041,18381], + [24043,72616], + [24045,46736], + [24047,22737], + [24510,272395], + [25001,104763], + [25003,61751], + [25005,271227], + [25007,8838], + [25009,387516], + [25011,37702], + [25013,208324], + [25015,83376], + [25017,829429], + [25019,6592], + [25021,353647], + [25023,254630], + [25025,402312], + [25027,405765], + [26001,3494], + [26003,2949], + [26005,57870], + [26007,12746], + [26009,9227], + [26011,5659], + [26013,2991], + [26015,28874], + [26017,49111], + [26019,8056], + [26021,69456], + [26023,18138], + [26025,60783], + [26027,22765], + [26029,12239], + [26031,9692], + [26033,15366], + [26035,10849], + [26037,38122], + [26039,4852], + [26041,16042], + [26043,11871], + [26045,53296], + [26047,16335], + [26049,170382], + [26051,9236], + [26053,6009], + [26055,46111], + [26057,17224], + [26059,19889], + [26061,15487], + [26063,15455], + [26065,138778], + [26067,27968], + [26069,9318], + [26071,4831], + [26073,33551], + [26075,69056], + [26077,123323], + [26079,7028], + [26081,329042], + [26083,851], + [26085,3357], + [26087,36846], + [26089,10009], + [26091,45018], + [26093,91931], + [26095,2284], + [26097,4616], + [26099,397009], + [26101,9697], + [26103,31325], + [26105,13510], + [26107,17932], + [26109,10887], + [26111,39345], + [26113,6518], + [26115,72628], + [26117,26053], + [26119,2755], + [26121,72677], + [26123,21779], + [26125,602606], + [26127,11469], + [26129,7732], + [26131,2075], + [26133,9482], + [26135,2653], + [26137,10689], + [26139,146621], + [26141,4803], + [26143,7090], + [26145,83223], + [26147,67818], + [26149,27687], + [26151,18203], + [26153,3078], + [26155,31155], + [26157,22841], + [26159,32964], + [26161,181123], + [26163,706075], + [26165,13568], + [27001,6423], + [27003,183013], + [27005,17597], + [27007,22353], + [27009,20633], + [27011,2563], + [27013,38224], + [27015,14024], + [27017,16709], + [27019,53436], + [27021,13095], + [27023,6642], + [27025,27539], + [27027,34446], + [27029,4208], + [27031,3016], + [27033,5513], + [27035,29879], + [27037,224645], + [27039,11028], + [27041,19452], + [27043,7176], + [27045,10941], + [27047,15730], + [27049,25938], + [27051,3190], + [27053,654708], + [27055,10086], + [27057,8971], + [27059,19331], + [27061,20856], + [27063,6035], + [27065,8254], + [27067,23166], + [27069,2359], + [27071,5747], + [27073,3610], + [27075,5342], + [27077,2315], + [27079,14790], + [27081,3273], + [27083,14796], + [27085,19411], + [27087,2267], + [27089,5348], + [27091,10024], + [27093,12782], + [27095,11884], + [27097,16838], + [27099,19711], + [27101,4839], + [27103,19774], + [27105,11158], + [27107,3281], + [27109,81462], + [27111,29815], + [27113,8614], + [27115,13964], + [27117,4811], + [27119,16443], + [27121,6167], + [27123,269768], + [27125,2193], + [27127,7946], + [27129,8181], + [27131,34175], + [27133,5784], + [27135,8262], + [27137,96884], + [27139,76693], + [27141,47496], + [27143,8158], + [27145,84962], + [27147,20498], + [27149,5549], + [27151,4860], + [27153,12440], + [27155,1759], + [27157,11541], + [27159,5955], + [27161,9350], + [27163,132839], + [27165,5960], + [27167,3568], + [27169,28500], + [27171,69347], + [27173,5372], + [28001,10503], + [28003,14837], + [28005,4173], + [28007,6453], + [28009,2746], + [28011,12338], + [28013,5760], + [28015,3177], + [28017,6602], + [28019,3479], + [28021,2728], + [28023,5600], + [28025,7251], + [28027,8500], + [28029,10447], + [28031,7501], + [28033,80508], + [28035,30778], + [28037,2713], + [28039,8193], + [28041,4003], + [28043,8917], + [28045,17466], + [28047,80568], + [28049,102641], + [28051,5381], + [28053,2155], + [28055,347], + [28057,9626], + [28059,54826], + [28061,5866], + [28063,1938], + [28065,3769], + [28067,24960], + [28069,3207], + [28071,23112], + [28073,27511], + [28075,29585], + [28077,4403], + [28079,7405], + [28081,37648], + [28083,9362], + [28085,13363], + [28087,23358], + [28089,49283], + [28091,9278], + [28093,13403], + [28095,14343], + [28097,3874], + [28099,9972], + [28101,8185], + [28103,3567], + [28105,21119], + [28107,12271], + [28109,21460], + [28111,3972], + [28113,13623], + [28115,13102], + [28117,10328], + [28119,2398], + [28121,69983], + [28123,12359], + [28125,1561], + [28127,10257], + [28129,6392], + [28131,5935], + [28133,7585], + [28135,5371], + [28137,11149], + [28139,8839], + [28141,7503], + [28143,4224], + [28145,12539], + [28147,4734], + [28149,19495], + [28151,16190], + [28153,7018], + [28155,3657], + [28157,2577], + [28159,6500], + [28161,4575], + [28163,8454], + [29001,9858], + [29003,9512], + [29005,2707], + [29007,10792], + [29009,14171], + [29011,5040], + [29013,7658], + [29015,6725], + [29017,5245], + [29019,95425], + [29021,44374], + [29023,17806], + [29025,4196], + [29027,20660], + [29029,17529], + [29031,39118], + [29033,4528], + [29035,2324], + [29037,51311], + [29039,5583], + [29041,3673], + [29043,41248], + [29045,3190], + [29047,126231], + [29049,10461], + [29051,37818], + [29053,7176], + [29055,10254], + [29057,3390], + [29059,6546], + [29061,3901], + [29063,4816], + [29065,5934], + [29067,4698], + [29069,12072], + [29071,49878], + [29073,7358], + [29075,3464], + [29077,143141], + [29079,4709], + [29081,3786], + [29083,9562], + [29085,3476], + [29087,2613], + [29089,4800], + [29091,15303], + [29093,3547], + [29095,341720], + [29097,55597], + [29099,111976], + [29101,21873], + [29103,1887], + [29105,14928], + [29107,16353], + [29109,17011], + [29111,4958], + [29113,25572], + [29115,4876], + [29117,6996], + [29119,9921], + [29121,7075], + [29123,5196], + [29125,3729], + [29127,14099], + [29129,1804], + [29131,10954], + [29133,5921], + [29135,7039], + [29137,3992], + [29139,5425], + [29141,7534], + [29143,8050], + [29145,27149], + [29147,10476], + [29149,3900], + [29151,6893], + [29153,3358], + [29155,6408], + [29157,9783], + [29159,19831], + [29161,18533], + [29163,7741], + [29165,53127], + [29167,13510], + [29169,14025], + [29171,2401], + [29173,5433], + [29175,9878], + [29177,10556], + [29179,2524], + [29181,4903], + [29183,209291], + [29185,3703], + [29186,8580], + [29187,24808], + [29189,509108], + [29195,10523], + [29197,1798], + [29199,2341], + [29201,19007], + [29203,3066], + [29205,2933], + [29207,12362], + [29209,12318], + [29211,2614], + [29213,24063], + [29215,8783], + [29217,9324], + [29219,16520], + [29221,9820], + [29223,5384], + [29225,15811], + [29227,1179], + [29229,7167], + [29510,150091], + [30001,4802], + [30003,5171], + [30005,2273], + [30007,2355], + [30009,5218], + [30011,662], + [30013,36697], + [30015,2438], + [30017,6168], + [30019,918], + [30021,4662], + [30023,5020], + [30025,1921], + [30027,5457], + [30029,42194], + [30031,57576], + [30033,740], + [30035,5319], + [30037,363], + [30039,1460], + [30041,7458], + [30043,5347], + [30045,958], + [30047,12044], + [30049,33776], + [30051,958], + [30053,7009], + [30055,1037], + [30057,4125], + [30059,901], + [30061,1581], + [30063,58051], + [30065,2302], + [30067,7889], + [30069,269], + [30071,1874], + [30073,2734], + [30075,1027], + [30077,2824], + [30079,506], + [30081,18190], + [30083,6647], + [30085,4439], + [30087,3946], + [30089,4306], + [30091,2020], + [30093,16370], + [30095,4738], + [30097,1736], + [30099,2775], + [30101,2217], + [30103,339], + [30105,4246], + [30107,744], + [30109,527], + [30111,77979], + [31001,16091], + [31003,3503], + [31005,214], + [31007,425], + [31009,256], + [31011,2937], + [31013,5490], + [31015,1060], + [31017,1342], + [31019,26472], + [31021,3478], + [31023,4606], + [31025,12635], + [31027,4531], + [31029,2293], + [31031,3370], + [31033,5622], + [31035,3275], + [31037,5405], + [31039,4710], + [31041,6144], + [31043,10605], + [31045,5114], + [31047,12648], + [31049,1047], + [31051,2980], + [31053,18471], + [31055,277240], + [31057,1172], + [31059,3113], + [31061,1475], + [31063,1495], + [31065,2656], + [31067,10645], + [31069,1167], + [31071,1165], + [31073,1048], + [31075,425], + [31077,1210], + [31079,30346], + [31081,4537], + [31083,1748], + [31085,602], + [31087,1278], + [31089,5727], + [31091,388], + [31093,3188], + [31095,4158], + [31097,2054], + [31099,3708], + [31101,4559], + [31103,646], + [31105,1978], + [31107,4566], + [31109,163068], + [31111,17998], + [31113,478], + [31115,365], + [31117,452], + [31119,18680], + [31121,3876], + [31123,2574], + [31125,2014], + [31127,3554], + [31129,2320], + [31131,7928], + [31133,1629], + [31135,1801], + [31137,4873], + [31139,4061], + [31141,16630], + [31143,2835], + [31145,5941], + [31147,4162], + [31149,836], + [31151,7065], + [31153,88088], + [31155,10590], + [31157,18028], + [31159,8443], + [31161,2656], + [31163,1659], + [31165,768], + [31167,3415], + [31169,2897], + [31171,422], + [31173,2812], + [31175,2005], + [31177,10607], + [31179,5398], + [31181,1664], + [31183,549], + [31185,7126], + [32001,9885], + [32003,967633], + [32005,20982], + [32007,25564], + [32009,507], + [32011,944], + [32013,7974], + [32015,3064], + [32017,1852], + [32019,19857], + [32021,1451], + [32023,14777], + [32027,2341], + [32029,1734], + [32031,211811], + [32033,4566], + [32510,23080], + [33001,30413], + [33003,22872], + [33005,40057], + [33007,14111], + [33009,47113], + [33011,220595], + [33013,78464], + [33015,171595], + [33017,68727], + [33019,22930], + [34001,115665], + [34003,461124], + [34005,220189], + [34007,238892], + [34009,43143], + [34011,62100], + [34013,349110], + [34015,140845], + [34017,342752], + [34019,62747], + [34021,188505], + [34023,418062], + [34025,312901], + [34027,250565], + [34029,251911], + [34031,231177], + [34033,28792], + [34035,166357], + [34037,72454], + [34039,263283], + [34041,54121], + [35001,302038], + [35003,1088], + [35005,25858], + [35006,8491], + [35007,5652], + [35009,20743], + [35011,804], + [35013,87061], + [35015,28226], + [35017,11614], + [35019,1512], + [35021,260], + [35023,1995], + [35025,27941], + [35027,8157], + [35028,8125], + [35029,9092], + [35031,21833], + [35033,2041], + [35035,23357], + [35037,3026], + [35039,15199], + [35041,7575], + [35043,57709], + [35045,51574], + [35047,10195], + [35049,68976], + [35051,3647], + [35053,6019], + [35055,13492], + [35057,4950], + [35059,1802], + [35061,27335], + [36001,152461], + [36003,19129], + [36005,565512], + [36007,82072], + [36009,33189], + [36011,35291], + [36013,54438], + [36015,35473], + [36017,21952], + [36019,34024], + [36021,30331], + [36023,22028], + [36025,18435], + [36027,137603], + [36029,427193], + [36031,16363], + [36033,18779], + [36035,22064], + [36037,28774], + [36039,19665], + [36041,2283], + [36043,26800], + [36045,43708], + [36047,1156891], + [36049,11016], + [36051,29776], + [36053,31201], + [36055,348923], + [36057,20929], + [36059,672024], + [36061,876135], + [36063,95451], + [36065,97231], + [36067,212733], + [36069,52768], + [36071,170653], + [36073,16834], + [36075,50435], + [36077,27313], + [36079,48735], + [36081,1112332], + [36083,78237], + [36085,209186], + [36087,146141], + [36089,40922], + [36091,112677], + [36093,72596], + [36095,13901], + [36097,7845], + [36099,15000], + [36101,41194], + [36103,743913], + [36105,32077], + [36107,22216], + [36109,48486], + [36111,84584], + [36113,30647], + [36115,27373], + [36117,42174], + [36119,459373], + [36121,17443], + [36123,11222], + [37001,73147], + [37003,16675], + [37005,4192], + [37007,10122], + [37009,11569], + [37011,7084], + [37013,18791], + [37015,7981], + [37017,13567], + [37019,44994], + [37021,124712], + [37023,37114], + [37025,92552], + [37027,33244], + [37029,4348], + [37031,29480], + [37033,9017], + [37035,71007], + [37037,31799], + [37039,10403], + [37041,5237], + [37043,3796], + [37045,43141], + [37047,20907], + [37049,38837], + [37051,117036], + [37053,12103], + [37055,18785], + [37057,74355], + [37059,18849], + [37061,24969], + [37063,148757], + [37065,20635], + [37067,169830], + [37069,27014], + [37071,96604], + [37073,4862], + [37075,2805], + [37077,27121], + [37079,8955], + [37081,241229], + [37083,18941], + [37085,46878], + [37087,26197], + [37089,48252], + [37091,8570], + [37093,18257], + [37095,1949], + [37097,77666], + [37099,17340], + [37101,83549], + [37103,4286], + [37105,24208], + [37107,25980], + [37109,38408], + [37111,20091], + [37113,14187], + [37115,8930], + [37117,8971], + [37119,534989], + [37121,5879], + [37123,10963], + [37125,36069], + [37127,40670], + [37129,107314], + [37131,7273], + [37133,59993], + [37135,69975], + [37137,5017], + [37139,16185], + [37141,24431], + [37143,4788], + [37145,16670], + [37147,82376], + [37149,8220], + [37151,62839], + [37153,15586], + [37155,46723], + [37157,38400], + [37159,59252], + [37161,23104], + [37163,27794], + [37165,10603], + [37167,27263], + [37169,20620], + [37171,31522], + [37173,6255], + [37175,12809], + [37177,1400], + [37179,106879], + [37181,16501], + [37183,514064], + [37185,6614], + [37187,4536], + [37189,26064], + [37191,50472], + [37193,27945], + [37195,33260], + [37197,16613], + [37199,6978], + [38001,1077], + [38003,5466], + [38005,2367], + [38007,454], + [38009,3101], + [38011,1828], + [38013,1143], + [38015,47814], + [38017,93277], + [38019,2005], + [38021,2506], + [38023,1783], + [38025,3941], + [38027,1210], + [38029,1476], + [38031,1583], + [38033,956], + [38035,36612], + [38037,1278], + [38039,1128], + [38041,1516], + [38043,1294], + [38045,2216], + [38047,921], + [38049,3143], + [38051,1206], + [38053,8980], + [38055,4741], + [38057,4129], + [38059,15772], + [38061,7987], + [38063,1462], + [38065,831], + [38067,3418], + [38069,1762], + [38071,5499], + [38073,2709], + [38075,1294], + [38077,8368], + [38079,4386], + [38081,2216], + [38083,689], + [38085,1237], + [38087,453], + [38089,19749], + [38091,1039], + [38093,10437], + [38095,1209], + [38097,4326], + [38099,5347], + [38101,33205], + [38103,2086], + [38105,28035], + [39001,9842], + [39003,45520], + [39005,24670], + [39007,41699], + [39009,26172], + [39011,23553], + [39013,29174], + [39015,18272], + [39017,178844], + [39019,12552], + [39021,19004], + [39023,60875], + [39025,98041], + [39027,15650], + [39029,46486], + [39031,14841], + [39033,17968], + [39035,577037], + [39037,25098], + [39039,17756], + [39041,98729], + [39043,35288], + [39045,71619], + [39047,13330], + [39049,629006], + [39051,21342], + [39053,11412], + [39055,46625], + [39057,76871], + [39059,18011], + [39061,383393], + [39063,39264], + [39065,13797], + [39067,6732], + [39069,12790], + [39071,15858], + [39073,12285], + [39075,19920], + [39077,25796], + [39079,12067], + [39081,27204], + [39083,29779], + [39085,117878], + [39087,23438], + [39089,83077], + [39091,22124], + [39093,141416], + [39095,197666], + [39097,19670], + [39099,100417], + [39101,26351], + [39103,90539], + [39105,8345], + [39107,22250], + [39109,50091], + [39111,4990], + [39113,236593], + [39115,6214], + [39117,15844], + [39119,36393], + [39121,4611], + [39123,19635], + [39125,8478], + [39127,14791], + [39129,24517], + [39131,9706], + [39133,82594], + [39135,19972], + [39137,17940], + [39139,50571], + [39141,31907], + [39143,29845], + [39145,27310], + [39147,25831], + [39149,23042], + [39151,176711], + [39153,258212], + [39155,85504], + [39157,42998], + [39159,25986], + [39161,13731], + [39163,5102], + [39165,107739], + [39167,26368], + [39169,57632], + [39171,18171], + [39173,66610], + [39175,11895], + [40001,7669], + [40003,3070], + [40005,4546], + [40007,2941], + [40009,11587], + [40011,4314], + [40013,17502], + [40015,11226], + [40017,65822], + [40019,21530], + [40021,18270], + [40023,5461], + [40025,1344], + [40027,133260], + [40029,2143], + [40031,47478], + [40033,2742], + [40035,5958], + [40037,29781], + [40039,15020], + [40041,16609], + [40043,2406], + [40045,2294], + [40047,28895], + [40049,12227], + [40051,25040], + [40053,3193], + [40055,2046], + [40057,1257], + [40059,1926], + [40061,4124], + [40063,5305], + [40065,10431], + [40067,2526], + [40069,3712], + [40071,18103], + [40073,8016], + [40075,3969], + [40077,3548], + [40079,18276], + [40081,15135], + [40083,20655], + [40085,5765], + [40087,18058], + [40089,13568], + [40091,6472], + [40093,4157], + [40095,6412], + [40097,18562], + [40099,6479], + [40101,28057], + [40103,5439], + [40105,4524], + [40107,4276], + [40109,360036], + [40111,15136], + [40113,20101], + [40115,13634], + [40117,7035], + [40119,37031], + [40121,16438], + [40123,17516], + [40125,31263], + [40127,4530], + [40129,1760], + [40131,42651], + [40133,8949], + [40135,15711], + [40137,19061], + [40139,9379], + [40141,3214], + [40143,304659], + [40145,34719], + [40147,23398], + [40149,5294], + [40151,5219], + [40153,9769], + [41001,6222], + [41003,43515], + [41005,194664], + [41007,17350], + [41009,21060], + [41011,24020], + [41013,8269], + [41015,7994], + [41017,79773], + [41019,41043], + [41021,757], + [41023,2822], + [41025,3067], + [41027,12889], + [41029,91391], + [41031,8939], + [41033,30702], + [41035,26427], + [41037,3173], + [41039,162505], + [41041,19157], + [41043,51482], + [41045,11195], + [41047,143478], + [41049,5224], + [41051,408592], + [41053,34526], + [41055,834], + [41057,10749], + [41059,33007], + [41061,10982], + [41063,2990], + [41065,12295], + [41067,287484], + [41069,656], + [41071,48176], + [42001,52677], + [42003,615407], + [42005,30832], + [42007,80594], + [42009,22660], + [42011,202014], + [42013,57845], + [42015,29509], + [42017,321809], + [42019,93467], + [42021,58242], + [42023,2101], + [42025,29549], + [42027,74712], + [42029,266506], + [42031,17177], + [42033,33990], + [42035,17470], + [42037,31827], + [42039,38908], + [42041,123266], + [42043,134421], + [42045,277251], + [42047,15524], + [42049,127337], + [42051,53985], + [42053,1750], + [42055,73988], + [42057,6977], + [42059,17072], + [42061,18287], + [42063,39117], + [42065,19690], + [42067,11396], + [42069,100205], + [42071,264626], + [42073,39454], + [42075,66890], + [42077,175869], + [42079,148514], + [42081,57216], + [42083,17825], + [42085,50107], + [42087,19706], + [42089,75552], + [42091,422542], + [42093,8752], + [42095,148341], + [42097,40780], + [42099,23030], + [42101,646080], + [42103,23330], + [42105,6856], + [42107,63898], + [42109,19122], + [42111,32110], + [42113,2847], + [42115,20205], + [42117,19006], + [42119,18443], + [42121,23005], + [42123,18959], + [42125,100677], + [42127,20972], + [42129,173042], + [42131,13254], + [42133,221649], + [44001,24779], + [44003,85996], + [44005,41696], + [44007,303336], + [44009,65448], + [45001,9637], + [45003,69577], + [45005,2438], + [45007,83700], + [45009,4888], + [45011,7625], + [45013,67748], + [45015,88358], + [45017,6402], + [45019,188603], + [45021,21793], + [45023,12329], + [45025,20146], + [45027,12062], + [45029,15555], + [45031,27851], + [45033,11583], + [45035,68732], + [45037,9991], + [45039,9216], + [45041,61238], + [45043,23114], + [45045,230986], + [45047,29290], + [45049,7648], + [45051,127572], + [45053,11216], + [45055,27217], + [45057,34404], + [45059,28304], + [45061,5915], + [45063,138363], + [45065,3197], + [45067,11581], + [45069,8678], + [45071,17897], + [45073,32493], + [45075,32931], + [45077,52837], + [45079,187477], + [45081,8368], + [45083,131900], + [45085,41356], + [45087,10645], + [45089,11638], + [45091,119748], + [46003,1533], + [46005,9202], + [46007,1072], + [46009,2924], + [46011,17987], + [46013,20393], + [46015,2464], + [46017,664], + [46019,4910], + [46021,823], + [46023,3840], + [46025,1890], + [46027,6782], + [46029,14820], + [46031,1412], + [46033,3788], + [46035,11018], + [46037,2712], + [46039,2191], + [46041,2025], + [46043,1629], + [46045,2160], + [46047,2836], + [46049,1088], + [46051,4557], + [46053,1988], + [46055,1070], + [46057,3023], + [46059,1827], + [46061,1735], + [46063,759], + [46065,9638], + [46067,3575], + [46069,685], + [46071,1267], + [46073,1098], + [46075,566], + [46077,2667], + [46079,6262], + [46081,12296], + [46083,29712], + [46085,1706], + [46087,3051], + [46089,1074], + [46091,2402], + [46093,12890], + [46095,755], + [46097,1180], + [46099,103238], + [46101,3802], + [46102,"NA"], + [46103,52547], + [46105,1523], + [46107,1142], + [46109,4645], + [46111,1193], + [46115,3208], + [46117,1787], + [46119,846], + [46121,2819], + [46123,2993], + [46125,4503], + [46127,7742], + [46129,2141], + [46135,11275], + [46137,932], + [47001,31292], + [47003,18127], + [47005,6235], + [47007,3906], + [47009,56355], + [47011,46775], + [47013,13448], + [47015,5509], + [47017,11157], + [47019,21978], + [47021,18874], + [47023,7730], + [47025,11677], + [47027,2729], + [47029,13266], + [47031,22909], + [47033,6372], + [47035,21274], + [47037,347645], + [47039,4334], + [47041,6849], + [47043,22746], + [47045,15443], + [47047,16738], + [47049,6481], + [47051,18546], + [47053,19447], + [47055,13804], + [47057,8523], + [47059,28588], + [47061,4486], + [47063,24782], + [47065,158180], + [47067,1861], + [47069,8578], + [47071,9510], + [47073,21994], + [47075,6979], + [47077,11277], + [47079,12948], + [47081,9715], + [47083,2917], + [47085,7883], + [47087,4107], + [47089,21769], + [47091,6886], + [47093,217386], + [47095,1800], + [47097,8733], + [47099,16525], + [47101,4446], + [47103,14390], + [47105,20674], + [47107,21181], + [47109,8002], + [47111,9418], + [47113,43722], + [47115,10905], + [47117,13917], + [47119,40121], + [47121,4479], + [47123,17821], + [47125,73899], + [47127,3151], + [47129,7129], + [47131,11383], + [47133,8428], + [47135,2905], + [47137,2212], + [47139,6832], + [47141,30506], + [47143,12104], + [47145,21089], + [47147,32115], + [47149,148375], + [47151,7316], + [47153,5409], + [47155,46775], + [47157,401766], + [47159,7997], + [47161,4737], + [47163,65049], + [47165,84371], + [47167,25504], + [47169,3460], + [47171,6461], + [47173,6718], + [47175,1886], + [47177,16775], + [47179,54540], + [47181,5720], + [47183,14510], + [47185,10705], + [47187,103103], + [47189,61562], + [48001,21930], + [48003,8970], + [48005,35278], + [48007,9543], + [48009,3937], + [48011,949], + [48013,19544], + [48015,13386], + [48017,2678], + [48019,8807], + [48021,36053], + [48023,1568], + [48025,9732], + [48027,129832], + [48029,844697], + [48031,5583], + [48033,400], + [48035,7692], + [48037,37244], + [48039,159285], + [48041,104924], + [48043,3753], + [48045,571], + [48047,2343], + [48049,15195], + [48051,7414], + [48053,20389], + [48055,16655], + [48057,10868], + [48059,5483], + [48061,151358], + [48063,4777], + [48065,2968], + [48067,11333], + [48069,3491], + [48071,16844], + [48073,19804], + [48075,2777], + [48077,4693], + [48079,1249], + [48081,1340], + [48083,2879], + [48085,470529], + [48087,1223], + [48089,9509], + [48091,59574], + [48093,5127], + [48095,1328], + [48097,19024], + [48099,23318], + [48101,506], + [48103,1730], + [48105,1785], + [48107,2531], + [48109,996], + [48111,3917], + [48113,1207803], + [48115,4553], + [48117,8511], + [48119,2474], + [48121,412960], + [48123,9645], + [48125,670], + [48127,6825], + [48129,1526], + [48131,4811], + [48133,7652], + [48135,76012], + [48137,824], + [48139,77700], + [48141,323688], + [48143,19355], + [48145,6176], + [48147,14733], + [48149,12341], + [48151,1730], + [48153,2591], + [48155,528], + [48157,340441], + [48159,4331], + [48161,7004], + [48163,9420], + [48165,9094], + [48167,149954], + [48169,2051], + [48171,12270], + [48173,798], + [48175,3292], + [48177,9336], + [48179,8748], + [48181,57533], + [48183,56301], + [48185,10891], + [48187,70313], + [48189,12059], + [48191,1138], + [48193,3318], + [48195,3017], + [48197,1540], + [48199,23562], + [48201,2129050], + [48203,29551], + [48205,2938], + [48207,2490], + [48209,95015], + [48211,2227], + [48213,32673], + [48215,304446], + [48217,14894], + [48219,11223], + [48221,23411], + [48223,16285], + [48225,9487], + [48227,12731], + [48229,1208], + [48231,37040], + [48233,9358], + [48235,770], + [48237,3904], + [48239,7086], + [48241,12831], + [48243,1044], + [48245,100367], + [48247,1880], + [48249,17688], + [48251,70974], + [48253,5353], + [48255,6150], + [48257,52780], + [48259,18518], + [48261,273], + [48263,484], + [48265,20386], + [48267,1926], + [48269,193], + [48271,1109], + [48273,13537], + [48275,1617], + [48277,21107], + [48279,5013], + [48281,8651], + [48283,4088], + [48285,8465], + [48287,8964], + [48289,6558], + [48291,28789], + [48293,8143], + [48295,1656], + [48297,5649], + [48299,7797], + [48301,73], + [48303,144381], + [48305,2649], + [48307,3732], + [48309,107905], + [48311,948], + [48313,4893], + [48315,4124], + [48317,2491], + [48319,1733], + [48321,16007], + [48323,21109], + [48325,19515], + [48327,812], + [48329,85257], + [48331,9583], + [48333,1915], + [48335,2588], + [48337,9285], + [48339,247065], + [48341,10756], + [48343,4843], + [48345,475], + [48347,26789], + [48349,21908], + [48351,4960], + [48353,6628], + [48355,157500], + [48357,5044], + [48359,886], + [48361,34727], + [48363,12472], + [48365,10957], + [48367,57048], + [48369,4847], + [48371,6506], + [48373,15996], + [48375,54338], + [48377,2782], + [48379,5161], + [48381,67037], + [48383,1840], + [48385,1008], + [48387,4597], + [48389,5402], + [48391,3128], + [48393,437], + [48395,6897], + [48397,43181], + [48399,4494], + [48401,21740], + [48403,3173], + [48405,2543], + [48407,10649], + [48409,28240], + [48411,2162], + [48413,1421], + [48415,7823], + [48417,2022], + [48419,10771], + [48421,1380], + [48423,99018], + [48425,3901], + [48427,22376], + [48429,3932], + [48431,721], + [48433,633], + [48435,1614], + [48437,2600], + [48439,949513], + [48441,60982], + [48443,413], + [48445,5146], + [48447,755], + [48449,11993], + [48451,52270], + [48453,633703], + [48455,5155], + [48457,6846], + [48459,17019], + [48461,1713], + [48463,11084], + [48465,18383], + [48467,23105], + [48469,43402], + [48471,21799], + [48473,20606], + [48475,5655], + [48477,14617], + [48479,106415], + [48481,20278], + [48483,2710], + [48485,52914], + [48487,4859], + [48489,5863], + [48491,254693], + [48493,22085], + [48495,2924], + [48497,27323], + [48499,15860], + [48501,3891], + [48503,8102], + [48505,5713], + [48507,3379], + [49001,3005], + [49003,23142], + [49005,58330], + [49007,8232], + [49009,446], + [49011,154896], + [49013,8162], + [49015,4145], + [49017,2515], + [49019,5282], + [49021,19470], + [49023,4753], + [49025,3473], + [49027,5923], + [49029,4785], + [49031,436], + [49033,1010], + [49035,566890], + [49037,5278], + [49039,10970], + [49041,9107], + [49043,22355], + [49045,28374], + [49047,14295], + [49049,257951], + [49051,12821], + [49053,61197], + [49055,1288], + [49057,112666], + [50001,19964], + [50003,17782], + [50005,14370], + [50007,92227], + [50009,2596], + [50011,26308], + [50013,3776], + [50015,13130], + [50017,15338], + [50019,12828], + [50021,29925], + [50023,32849], + [50025,22605], + [50027,28501], + [51001,15012], + [51003,51809], + [51005,6691], + [51007,5914], + [51009,14549], + [51011,6694], + [51013,140217], + [51015,35139], + [51017,2433], + [51019,36531], + [51021,2623], + [51023,16659], + [51025,5901], + [51027,6487], + [51029,5920], + [51031,24982], + [51033,13981], + [51035,12351], + [51036,3519], + [51037,4951], + [51041,170285], + [51043,7134], + [51045,2249], + [51047,22098], + [51049,4320], + [51051,4415], + [51053,12589], + [51057,5214], + [51059,591702], + [51061,34315], + [51063,7962], + [51065,12664], + [51067,25209], + [51069,42841], + [51071,7531], + [51073,18312], + [51075,10172], + [51077,6628], + [51079,9481], + [51081,3947], + [51083,14232], + [51085,54052], + [51087,169312], + [51089,20920], + [51091,1292], + [51093,17941], + [51095,32805], + [51097,3456], + [51099,11479], + [51101,8336], + [51103,4791], + [51105,7952], + [51107,192918], + [51109,17993], + [51111,5014], + [51113,6978], + [51115,3901], + [51117,11748], + [51119,4769], + [51121,47573], + [51125,6970], + [51127,10785], + [51131,5725], + [51133,5130], + [51135,6806], + [51137,15315], + [51139,10840], + [51141,7224], + [51143,28472], + [51145,12855], + [51147,9428], + [51149,14067], + [51153,221783], + [51155,15483], + [51157,3579], + [51159,3722], + [51161,47142], + [51163,9835], + [51165,38457], + [51167,10673], + [51169,9010], + [51171,20135], + [51173,12582], + [51175,8827], + [51177,60840], + [51179,63674], + [51181,3528], + [51183,3794], + [51185,15382], + [51187,18684], + [51191,25683], + [51193,8439], + [51195,12641], + [51197,12901], + [51199,30618], + [51510,91055], + [51520,7110], + [51530,3126], + [51540,23734], + [51550,111025], + [51570,8256], + [51580,2272], + [51590,17735], + [51595,2089], + [51600,12351], + [51610,7605], + [51620,3366], + [51630,12652], + [51640,2784], + [51650,60397], + [51660,22615], + [51670,8891], + [51678,2098], + [51680,33633], + [51683,20696], + [51685,7984], + [51690,4886], + [51700,83972], + [51710,104347], + [51720,1612], + [51730,12262], + [51735,5960], + [51740,41493], + [51750,7822], + [51760,106819], + [51770,46508], + [51775,12201], + [51790,11295], + [51800,40190], + [51810,218950], + [51820,9531], + [51830,6235], + [51840,13576], + [53001,8018], + [53003,9212], + [53005,85591], + [53007,40246], + [53009,24621], + [53011,200483], + [53013,1583], + [53015,40697], + [53017,18503], + [53019,2223], + [53021,36002], + [53023,872], + [53025,41432], + [53027,24474], + [53029,29814], + [53031,10397], + [53033,1127580], + [53035,108912], + [53037,19544], + [53039,8775], + [53041,28588], + [53043,4590], + [53045,21208], + [53047,19756], + [53049,7368], + [53051,4155], + [53053,366996], + [53055,7346], + [53057,52843], + [53059,4580], + [53061,382890], + [53063,212951], + [53065,15886], + [53067,118204], + [53069,1177], + [53071,26395], + [53073,98036], + [53075,21641], + [53077,111910], + [54001,6373], + [54003,51146], + [54005,7371], + [54007,4962], + [54009,9325], + [54011,38945], + [54013,2412], + [54015,2899], + [54017,3433], + [54019,14844], + [54021,2488], + [54023,5314], + [54025,14318], + [54027,9064], + [54029,11953], + [54031,5048], + [54033,29765], + [54035,11024], + [54037,26548], + [54039,80842], + [54041,6387], + [54043,6622], + [54045,10181], + [54047,4650], + [54049,24174], + [54051,12829], + [54053,9095], + [54055,20322], + [54057,10742], + [54059,6278], + [54061,47964], + [54063,5415], + [54065,7045], + [54067,9013], + [54069,19451], + [54071,3399], + [54073,2724], + [54075,3290], + [54077,13689], + [54079,24042], + [54081,28032], + [54083,11036], + [54085,4169], + [54087,4610], + [54089,4191], + [54091,7257], + [54093,3206], + [54095,3305], + [54097,8862], + [54099,14425], + [54101,3201], + [54103,6428], + [54105,2018], + [54107,34648], + [54109,6982], + [55001,7730], + [55003,7434], + [55005,23258], + [55007,6909], + [55009,133668], + [55011,6219], + [55013,6769], + [55015,26500], + [55017,31612], + [55019,16678], + [55021,29996], + [55023,7448], + [55025,301087], + [55027,45483], + [55029,14465], + [55031,22213], + [55033,22723], + [55035,55986], + [55037,2066], + [55039,54749], + [55041,3701], + [55043,26949], + [55045,20303], + [55047,9460], + [55049,13121], + [55051,2393], + [55053,9861], + [55055,43752], + [55057,12827], + [55059,83085], + [55061,10455], + [55063,64098], + [55065,9397], + [55067,8906], + [55069,14507], + [55071,39828], + [55073,70555], + [55075,19558], + [55077,7044], + [55078,1450], + [55079,449974], + [55081,21835], + [55083,19308], + [55085,17574], + [55087,97992], + [55089,46495], + [55091,3938], + [55093,23203], + [55095,23437], + [55097,37797], + [55099,6551], + [55101,93848], + [55103,8911], + [55105,79082], + [55107,6619], + [55109,46977], + [55111,33880], + [55113,7203], + [55115,20265], + [55117,58986], + [55119,10236], + [55121,15978], + [55123,14869], + [55125,9307], + [55127,54385], + [55129,7536], + [55131,73269], + [55133,213153], + [55135,25804], + [55137,10774], + [55139,87644], + [55141,32552], + [56001,20027], + [56003,5323], + [56005,24844], + [56007,8139], + [56009,8026], + [56011,3586], + [56013,19160], + [56015,6861], + [56017,2304], + [56019,4005], + [56021,46788], + [56023,8032], + [56025,40821], + [56027,1290], + [56029,15119], + [56031,4728], + [56033,15286], + [56035,4340], + [56037,21716], + [56039,14152], + [56041,9208], + [56043,4097], + [56045,3834] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2016.json b/data/regional/united-states/economics/employment/us-employment-total-2016.json new file mode 100644 index 0000000..46ecb2e --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2016"], + [1001,24593], + [1003,85656], + [1005,7700], + [1007,8050], + [1009,23248], + [1011,4493], + [1013,8553], + [1015,42815], + [1017,14158], + [1019,10757], + [1021,18128], + [1023,3958], + [1025,7087], + [1027,5289], + [1029,5438], + [1031,19382], + [1033,21816], + [1035,4164], + [1037,4117], + [1039,14441], + [1041,6072], + [1043,36010], + [1045,18799], + [1047,13993], + [1049,27453], + [1051,35446], + [1053,13582], + [1055,40701], + [1057,6149], + [1059,13047], + [1061,10178], + [1063,2585], + [1065,5522], + [1067,6282], + [1069,41959], + [1071,22089], + [1073,293251], + [1075,5367], + [1077,39811], + [1079,12768], + [1081,68544], + [1083,38539], + [1085,3398], + [1087,7266], + [1089,164614], + [1091,7121], + [1093,11665], + [1095,39350], + [1097,175270], + [1099,6650], + [1101,99733], + [1103,51812], + [1105,3108], + [1107,7230], + [1109,13973], + [1111,8899], + [1113,22217], + [1115,37043], + [1117,104831], + [1119,4716], + [1121,32507], + [1123,17537], + [1125,93619], + [1127,23656], + [1129,6158], + [1131,2411], + [1133,8853], + [2013,2521], + [2016,3853], + [2020,147142], + [2050,6225], + [2060,385], + [2068,996], + [2070,1880], + [2090,43792], + [2100,966], + [2105,1063], + [2110,16587], + [2122,24889], + [2130,6577], + [2150,6096], + [2158,"NA"], + [2164,574], + [2170,43580], + [2180,3571], + [2185,3691], + [2188,2494], + [2195,1321], + [2198,2435], + [2220,4176], + [2230,717], + [2240,2679], + [2261,4404], + [2275,976], + [2282,224], + [2290,1993], + [4001,17907], + [4003,46297], + [4005,69405], + [4007,19390], + [4009,13344], + [4011,3588], + [4012,7922], + [4013,1976440], + [4015,74844], + [4017,37744], + [4019,444339], + [4021,154165], + [4023,17187], + [4025,94201], + [4027,76016], + [5001,8970], + [5003,7264], + [5005,15440], + [5007,124469], + [5009,15378], + [5011,4075], + [5013,2272], + [5015,12439], + [5017,3353], + [5019,8989], + [5021,5709], + [5023,8931], + [5025,3199], + [5027,8756], + [5029,7979], + [5031,50644], + [5033,25956], + [5035,20676], + [5037,7549], + [5039,2745], + [5041,5155], + [5043,7373], + [5045,58380], + [5047,7081], + [5049,4473], + [5051,38443], + [5053,7993], + [5055,18993], + [5057,9574], + [5059,13544], + [5061,5767], + [5063,15247], + [5065,4696], + [5067,5692], + [5069,26794], + [5071,10049], + [5073,2402], + [5075,6632], + [5077,2952], + [5079,3906], + [5081,5343], + [5083,8721], + [5085,32346], + [5087,7067], + [5089,6274], + [5091,19077], + [5093,16879], + [5095,2747], + [5097,2945], + [5099,3489], + [5101,3286], + [5103,9339], + [5105,3976], + [5107,6277], + [5109,3999], + [5111,9681], + [5113,7768], + [5115,27932], + [5117,3518], + [5119,180862], + [5121,6234], + [5123,8389], + [5125,55203], + [5127,4265], + [5129,2859], + [5131,55576], + [5133,5363], + [5135,5734], + [5137,4507], + [5139,15453], + [5141,5694], + [5143,115373], + [5145,32325], + [5147,2812], + [5149,8298], + [6001,801774], + [6003,521], + [6005,13706], + [6007,95246], + [6009,19684], + [6011,9238], + [6013,532200], + [6015,9051], + [6017,84512], + [6019,403719], + [6021,11909], + [6023,59548], + [6025,58789], + [6027,8419], + [6029,347996], + [6031,51628], + [6033,27205], + [6035,9676], + [6037,4789505], + [6039,55648], + [6041,135710], + [6043,7073], + [6045,37655], + [6047,102474], + [6049,3045], + [6051,7944], + [6053,202695], + [6055,70047], + [6057,46001], + [6059,1537686], + [6061,172126], + [6063,7110], + [6065,988171], + [6067,657592], + [6069,27798], + [6071,878388], + [6073,1496156], + [6075,541709], + [6077,293543], + [6079,134257], + [6081,431923], + [6083,205177], + [6085,985073], + [6087,133952], + [6089,69265], + [6091,1236], + [6093,16428], + [6095,196460], + [6097,249760], + [6099,222557], + [6101,40196], + [6103,23363], + [6105,4655], + [6107,181145], + [6109,20293], + [6111,404382], + [6113,100096], + [6115,25715], + [8001,244503], + [8003,7645], + [8005,329992], + [8007,6156], + [8009,2056], + [8011,1794], + [8013,175997], + [8014,35709], + [8015,8606], + [8017,1057], + [8019,5504], + [8021,3588], + [8023,1645], + [8025,1372], + [8027,1955], + [8029,13272], + [8031,373035], + [8033,1030], + [8035,172760], + [8037,32793], + [8039,13438], + [8041,302857], + [8043,13946], + [8045,29909], + [8047,3400], + [8049,8940], + [8051,9901], + [8053,436], + [8055,2343], + [8057,867], + [8059,305993], + [8061,829], + [8063,4441], + [8065,4484], + [8067,30093], + [8069,182079], + [8071,5874], + [8073,2221], + [8075,10690], + [8077,68263], + [8079,453], + [8081,6896], + [8083,12093], + [8085,19237], + [8087,14518], + [8089,7732], + [8091,2084], + [8093,9558], + [8095,2423], + [8097,10373], + [8099,5810], + [8101,69600], + [8103,2599], + [8105,4901], + [8107,14514], + [8109,3070], + [8111,462], + [8113,5016], + [8115,1150], + [8117,20685], + [8119,11296], + [8121,2856], + [8123,144811], + [8125,5322], + [9001,461380], + [9003,450523], + [9005,100503], + [9007,88589], + [9009,433714], + [9011,130347], + [9013,81770], + [9015,59749], + [10001,73748], + [10003,281961], + [10005,96726], + [11001,370521], + [12001,127035], + [12003,10869], + [12005,83785], + [12007,10405], + [12009,249290], + [12011,959470], + [12013,4702], + [12015,65642], + [12017,44653], + [12019,96543], + [12021,161411], + [12023,28327], + [12027,12770], + [12029,5346], + [12031,444968], + [12033,134063], + [12035,42876], + [12037,4534], + [12039,17078], + [12041,6347], + [12043,4426], + [12045,5692], + [12047,4396], + [12049,8646], + [12051,14103], + [12053,63856], + [12055,33410], + [12057,676381], + [12059,6353], + [12061,58480], + [12063,16445], + [12065,5106], + [12067,2840], + [12069,139096], + [12071,314325], + [12073,143506], + [12075,15797], + [12077,2504], + [12079,6945], + [12081,162937], + [12083,124426], + [12085,67503], + [12086,1262998], + [12087,45000], + [12089,36100], + [12091,89550], + [12093,17226], + [12095,676243], + [12097,156211], + [12099,676408], + [12101,211246], + [12103,457756], + [12105,271212], + [12107,25278], + [12109,114181], + [12111,127466], + [12113,72739], + [12115,172907], + [12117,231845], + [12119,27301], + [12121,17305], + [12123,8365], + [12125,4592], + [12127,233207], + [12129,13714], + [12131,27717], + [12133,9208], + [13001,8613], + [13003,3773], + [13005,4727], + [13007,1092], + [13009,16447], + [13011,8397], + [13013,35964], + [13015,45778], + [13017,5099], + [13019,6786], + [13021,64646], + [13023,4151], + [13025,6627], + [13027,6651], + [13029,16125], + [13031,33947], + [13033,8540], + [13035,9805], + [13037,2044], + [13039,19203], + [13043,4835], + [13045,50389], + [13047,30655], + [13049,4479], + [13051,129105], + [13053,1891], + [13055,9790], + [13057,120685], + [13059,55591], + [13061,793], + [13063,122284], + [13065,2602], + [13067,391746], + [13069,17056], + [13071,20016], + [13073,67830], + [13075,7125], + [13077,66983], + [13079,5349], + [13081,8645], + [13083,7622], + [13085,10814], + [13087,10724], + [13089,362524], + [13091,6514], + [13093,4669], + [13095,35592], + [13097,66402], + [13099,4103], + [13101,1803], + [13103,27078], + [13105,7237], + [13107,7803], + [13109,4559], + [13111,10261], + [13113,53154], + [13115,40937], + [13117,106502], + [13119,9287], + [13121,503142], + [13123,11176], + [13125,1193], + [13127,37143], + [13129,23913], + [13131,9708], + [13133,6212], + [13135,446010], + [13137,18305], + [13139,92093], + [13141,2322], + [13143,11467], + [13145,15303], + [13147,10433], + [13149,4707], + [13151,103043], + [13153,64130], + [13155,2970], + [13157,31909], + [13159,6274], + [13161,5838], + [13163,6118], + [13165,2927], + [13167,3691], + [13169,13147], + [13171,7390], + [13173,3611], + [13175,17817], + [13177,13891], + [13179,23609], + [13181,3277], + [13183,7032], + [13185,48664], + [13187,15226], + [13189,8167], + [13191,5660], + [13193,4298], + [13195,12452], + [13197,3136], + [13199,8166], + [13201,2608], + [13205,8017], + [13207,12361], + [13209,3451], + [13211,8270], + [13213,14551], + [13215,73190], + [13217,47063], + [13219,17740], + [13221,6591], + [13223,76061], + [13225,10651], + [13227,13719], + [13229,8112], + [13231,7977], + [13233,16982], + [13235,3807], + [13237,7402], + [13239,757], + [13241,6310], + [13243,2268], + [13245,79198], + [13247,40793], + [13249,1985], + [13251,4850], + [13253,2852], + [13255,25913], + [13257,10398], + [13259,2003], + [13261,11888], + [13263,2564], + [13265,511], + [13267,8843], + [13269,3078], + [13271,4415], + [13273,3423], + [13275,16459], + [13277,17576], + [13279,10879], + [13281,3833], + [13283,2534], + [13285,35004], + [13287,3030], + [13289,2696], + [13291,9967], + [13293,10437], + [13295,28303], + [13297,41302], + [13299,14666], + [13301,2515], + [13303,6737], + [13305,10535], + [13307,884], + [13309,1580], + [13311,13828], + [13313,42057], + [13315,2527], + [13317,3466], + [13319,3423], + [13321,8602], + [15001,88175], + [15003,457934], + [15005,"NA"], + [15007,34713], + [15009,83210], + [16001,217381], + [16003,1620], + [16005,39548], + [16007,2678], + [16009,3768], + [16011,21952], + [16013,11454], + [16015,2928], + [16017,17835], + [16019,50636], + [16021,4830], + [16023,1238], + [16025,633], + [16027,89399], + [16029,3652], + [16031,11226], + [16033,380], + [16035,2822], + [16037,2029], + [16039,10485], + [16041,6426], + [16043,7110], + [16045,7354], + [16047,7772], + [16049,5972], + [16051,12409], + [16053,11158], + [16055,70273], + [16057,19232], + [16059,3194], + [16061,1520], + [16063,2519], + [16065,20033], + [16067,10509], + [16069,20147], + [16071,2118], + [16073,5030], + [16075,10716], + [16077,3763], + [16079,4745], + [16081,5779], + [16083,38980], + [16085,4690], + [16087,4339], + [17001,30897], + [17003,1997], + [17005,7465], + [17007,24665], + [17009,2756], + [17011,16303], + [17013,2224], + [17015,7411], + [17017,5884], + [17019,99913], + [17021,14373], + [17023,7677], + [17025,6239], + [17027,19513], + [17029,23046], + [17031,2507250], + [17033,8452], + [17035,5663], + [17037,52066], + [17039,7448], + [17041,9733], + [17043,493261], + [17045,9112], + [17047,2795], + [17049,17781], + [17051,9098], + [17053,6176], + [17055,15321], + [17057,14616], + [17059,2339], + [17061,5708], + [17063,24068], + [17065,3985], + [17067,8243], + [17069,1262], + [17071,3486], + [17073,23553], + [17075,14040], + [17077,27099], + [17079,4349], + [17081,16421], + [17083,10397], + [17085,10750], + [17087,3837], + [17089,254401], + [17091,52075], + [17093,64598], + [17095,21500], + [17097,352394], + [17099,53179], + [17101,5710], + [17103,17074], + [17105,16076], + [17107,12364], + [17109,13131], + [17111,159347], + [17113,85453], + [17115,46888], + [17117,21938], + [17119,126988], + [17121,16853], + [17123,5250], + [17125,5972], + [17127,5600], + [17129,6571], + [17131,7667], + [17133,17712], + [17135,11265], + [17137,16141], + [17139,7086], + [17141,24249], + [17143,81852], + [17145,8076], + [17147,8107], + [17149,7116], + [17151,1641], + [17153,2006], + [17155,2929], + [17157,13801], + [17159,7084], + [17161,67150], + [17163,119311], + [17165,9177], + [17167,100912], + [17169,3166], + [17171,2388], + [17173,9776], + [17175,2553], + [17177,20132], + [17179,61460], + [17181,6957], + [17183,32506], + [17185,5385], + [17187,8227], + [17189,9270], + [17191,6670], + [17193,6429], + [17195,27027], + [17197,341759], + [17199,30297], + [17201,131980], + [17203,18265], + [18001,16420], + [18003,173061], + [18005,42921], + [18007,4370], + [18009,5048], + [18011,33663], + [18013,7216], + [18015,9675], + [18017,17202], + [18019,58124], + [18021,11801], + [18023,16477], + [18025,4720], + [18027,15400], + [18029,24380], + [18031,14029], + [18033,21352], + [18035,52233], + [18037,22655], + [18039,104636], + [18041,8808], + [18043,39381], + [18045,7513], + [18047,10975], + [18049,9420], + [18051,18493], + [18053,30543], + [18055,12837], + [18057,168815], + [18059,37203], + [18061,19154], + [18063,82747], + [18065,21084], + [18067,36289], + [18069,17920], + [18071,21518], + [18073,15680], + [18075,9490], + [18077,14567], + [18079,12629], + [18081,77298], + [18083,18223], + [18085,39924], + [18087,18745], + [18089,217432], + [18091,45767], + [18093,19415], + [18095,55968], + [18097,459700], + [18099,23402], + [18101,4937], + [18103,15319], + [18105,64798], + [18107,18412], + [18109,34489], + [18111,6641], + [18113,22372], + [18115,3066], + [18117,8425], + [18119,8741], + [18121,6885], + [18123,9025], + [18125,6053], + [18127,81811], + [18129,12914], + [18131,6091], + [18133,15847], + [18135,12093], + [18137,13414], + [18139,8636], + [18141,127987], + [18143,9987], + [18145,22028], + [18147,10520], + [18149,10267], + [18151,19338], + [18153,8185], + [18155,4751], + [18157,90512], + [18159,8196], + [18161,3488], + [18163,89352], + [18165,6789], + [18167,46695], + [18169,14812], + [18171,3910], + [18173,31156], + [18175,13080], + [18177,29453], + [18179,13657], + [18181,13094], + [18183,16557], + [19001,4113], + [19003,2161], + [19005,7299], + [19007,5875], + [19009,3172], + [19011,13125], + [19013,66150], + [19015,14711], + [19017,13427], + [19019,10755], + [19021,11121], + [19023,7690], + [19025,4357], + [19027,11003], + [19029,7036], + [19031,10511], + [19033,22316], + [19035,6099], + [19037,6149], + [19039,4674], + [19041,8394], + [19043,9877], + [19045,22654], + [19047,7987], + [19049,44671], + [19051,4113], + [19053,4270], + [19055,10370], + [19057,19076], + [19059,9872], + [19061,52810], + [19063,5365], + [19065,10250], + [19067,8385], + [19069,5746], + [19071,3862], + [19073,5496], + [19075,6414], + [19077,5429], + [19079,6881], + [19081,6226], + [19083,8250], + [19085,7208], + [19087,9235], + [19089,5145], + [19091,5238], + [19093,3927], + [19095,10244], + [19097,10614], + [19099,18588], + [19101,8860], + [19103,82240], + [19105,10244], + [19107,5099], + [19109,8673], + [19111,16431], + [19113,114600], + [19115,5872], + [19117,4249], + [19119,6952], + [19121,7969], + [19123,11377], + [19125,16944], + [19127,18224], + [19129,7147], + [19131,5733], + [19133,4539], + [19135,3780], + [19137,4939], + [19139,21608], + [19141,8140], + [19143,3551], + [19145,6151], + [19147,4819], + [19149,14645], + [19151,4200], + [19153,248763], + [19155,46694], + [19157,10080], + [19159,2519], + [19161,5337], + [19163,82537], + [19165,6632], + [19167,20239], + [19169,55706], + [19171,9372], + [19173,3139], + [19175,6276], + [19177,3724], + [19179,16880], + [19181,26280], + [19183,12010], + [19185,2737], + [19187,19644], + [19189,5025], + [19191,11653], + [19193,53841], + [19195,4129], + [19197,6425], + [20001,6080], + [20003,3996], + [20005,6608], + [20007,2434], + [20009,13395], + [20011,6783], + [20013,4978], + [20015,30853], + [20017,1358], + [20019,1460], + [20021,9834], + [20023,1307], + [20025,1085], + [20027,3870], + [20029,4081], + [20031,4018], + [20033,941], + [20035,16162], + [20037,18005], + [20039,1242], + [20041,8762], + [20043,4109], + [20045,62967], + [20047,1604], + [20049,1130], + [20051,16488], + [20053,2725], + [20055,19530], + [20057,17320], + [20059,13631], + [20061,11379], + [20063,1416], + [20065,1171], + [20067,3639], + [20069,3333], + [20071,893], + [20073,3161], + [20075,1599], + [20077,2778], + [20079,16479], + [20081,2245], + [20083,1003], + [20085,7009], + [20087,9820], + [20089,1274], + [20091,317665], + [20093,1993], + [20095,3373], + [20097,1381], + [20099,10155], + [20101,785], + [20103,34246], + [20105,1678], + [20107,4064], + [20109,1679], + [20111,16132], + [20113,15825], + [20115,5880], + [20117,5395], + [20119,2313], + [20121,16315], + [20123,3574], + [20125,15020], + [20127,2934], + [20129,1292], + [20131,5739], + [20133,5622], + [20135,1374], + [20137,2803], + [20139,7703], + [20141,1989], + [20143,3043], + [20145,3103], + [20147,2767], + [20149,11728], + [20151,4897], + [20153,1508], + [20155,28812], + [20157,2474], + [20159,5094], + [20161,33707], + [20163,2543], + [20165,1663], + [20167,3424], + [20169,28990], + [20171,2816], + [20173,235806], + [20175,9787], + [20177,88014], + [20179,1414], + [20181,2845], + [20183,1969], + [20185,2018], + [20187,1041], + [20189,2793], + [20191,10469], + [20193,4233], + [20195,1417], + [20197,3574], + [20199,837], + [20201,2983], + [20203,1178], + [20205,3869], + [20207,1524], + [20209,72195], + [21001,6363], + [21003,8372], + [21005,10900], + [21007,3332], + [21009,18189], + [21011,4432], + [21013,7960], + [21015,63955], + [21017,9310], + [21019,16847], + [21021,11689], + [21023,3559], + [21025,3554], + [21027,7455], + [21029,38485], + [21031,4823], + [21033,5178], + [21035,17710], + [21037,46314], + [21039,2512], + [21041,4879], + [21043,9125], + [21045,6564], + [21047,23093], + [21049,16036], + [21051,5132], + [21053,3512], + [21055,3942], + [21057,2767], + [21059,44083], + [21061,4455], + [21063,1944], + [21065,5043], + [21067,163637], + [21069,5708], + [21071,10541], + [21073,23240], + [21075,1941], + [21077,3671], + [21079,7275], + [21081,10672], + [21083,14668], + [21085,10195], + [21087,4840], + [21089,12541], + [21091,3779], + [21093,45138], + [21095,6376], + [21097,8171], + [21099,7642], + [21101,20340], + [21103,7529], + [21105,1912], + [21107,19132], + [21109,3977], + [21111,366245], + [21113,24404], + [21115,6747], + [21117,80302], + [21119,4132], + [21121,9158], + [21123,5564], + [21125,22558], + [21127,4652], + [21129,1807], + [21131,2474], + [21133,5873], + [21135,4539], + [21137,8582], + [21139,3440], + [21141,11420], + [21143,2887], + [21145,27475], + [21147,4432], + [21149,4076], + [21151,42600], + [21153,2659], + [21155,9126], + [21157,14148], + [21159,2825], + [21161,6855], + [21163,11339], + [21165,2203], + [21167,9521], + [21169,3969], + [21171,4561], + [21173,11174], + [21175,4226], + [21177,10810], + [21179,20853], + [21181,3184], + [21183,9002], + [21185,30553], + [21187,5393], + [21189,1059], + [21191,6446], + [21193,7821], + [21195,18110], + [21197,4652], + [21199,24508], + [21201,772], + [21203,6185], + [21205,10160], + [21207,5650], + [21209,26646], + [21211,22740], + [21213,8025], + [21215,9201], + [21217,10988], + [21219,5273], + [21221,5429], + [21223,3626], + [21225,5820], + [21227,58864], + [21229,5979], + [21231,6984], + [21233,5562], + [21235,12545], + [21237,1777], + [21239,14134], + [22001,22755], + [22003,8348], + [22005,59100], + [22007,8454], + [22009,14611], + [22011,14188], + [22013,5247], + [22015,54656], + [22017,100207], + [22019,98206], + [22021,3687], + [22023,3659], + [22025,3113], + [22027,5567], + [22029,6668], + [22031,10114], + [22033,220709], + [22035,1896], + [22037,7655], + [22039,11762], + [22041,6636], + [22043,7762], + [22045,27352], + [22047,13175], + [22049,6705], + [22051,205572], + [22053,12790], + [22055,107602], + [22057,40672], + [22059,5870], + [22061,20181], + [22063,65361], + [22065,3500], + [22067,9616], + [22069,15627], + [22071,169836], + [22073,67371], + [22075,9664], + [22077,9338], + [22079,53879], + [22081,3588], + [22083,7838], + [22085,8528], + [22087,18404], + [22089,24037], + [22091,4064], + [22093,8910], + [22095,18731], + [22097,30235], + [22099,21237], + [22101,19930], + [22103,111928], + [22105,50636], + [22107,1470], + [22109,45654], + [22111,8659], + [22113,22879], + [22115,15742], + [22117,15795], + [22119,13938], + [22121,12566], + [22123,3622], + [22125,5065], + [22127,4795], + [23001,53352], + [23003,29762], + [23005,157249], + [23007,13800], + [23009,27862], + [23011,60028], + [23013,19981], + [23015,16385], + [23017,25338], + [23019,73648], + [23021,7103], + [23023,18622], + [23025,22165], + [23027,19988], + [23029,13233], + [23031,107396], + [24001,30588], + [24003,293739], + [24005,427142], + [24009,47195], + [24011,16925], + [24013,90261], + [24015,50194], + [24017,80834], + [24019,14992], + [24021,124392], + [24023,14718], + [24025,131393], + [24027,174403], + [24029,9805], + [24031,529491], + [24033,481107], + [24035,25708], + [24037,52783], + [24039,8604], + [24041,18834], + [24043,71981], + [24045,47497], + [24047,22982], + [24510,272198], + [25001,105960], + [25003,61414], + [25005,275144], + [25007,8852], + [25009,393781], + [25011,38097], + [25013,209997], + [25015,84708], + [25017,844581], + [25019,6724], + [25021,359373], + [25023,259364], + [25025,411431], + [25027,411686], + [26001,3532], + [26003,2992], + [26005,58855], + [26007,12828], + [26009,9350], + [26011,5610], + [26013,2953], + [26015,29495], + [26017,49020], + [26019,8250], + [26021,70085], + [26023,18169], + [26025,61268], + [26027,23184], + [26029,12325], + [26031,9791], + [26033,15120], + [26035,11072], + [26037,38976], + [26039,4957], + [26041,15985], + [26043,11846], + [26045,54506], + [26047,16439], + [26049,172109], + [26051,9189], + [26053,5943], + [26055,47227], + [26057,17214], + [26059,20089], + [26061,15538], + [26063,15158], + [26065,142425], + [26067,28382], + [26069,9367], + [26071,4876], + [26073,33666], + [26075,70750], + [26077,126566], + [26079,7160], + [26081,337766], + [26083,860], + [26085,3469], + [26087,38032], + [26089,10053], + [26091,45142], + [26093,95768], + [26095,2239], + [26097,4674], + [26099,412449], + [26101,9836], + [26103,31395], + [26105,13435], + [26107,18017], + [26109,10661], + [26111,39062], + [26113,6602], + [26115,73056], + [26117,26421], + [26119,2747], + [26121,73162], + [26123,22172], + [26125,624840], + [26127,11411], + [26129,7589], + [26131,2013], + [26133,9829], + [26135,2692], + [26137,10983], + [26139,150038], + [26141,4778], + [26143,7197], + [26145,83808], + [26147,70017], + [26149,27900], + [26151,18191], + [26153,3077], + [26155,31700], + [26157,22684], + [26159,33401], + [26161,184359], + [26163,729654], + [26165,13826], + [27001,6560], + [27003,185451], + [27005,17777], + [27007,22526], + [27009,20895], + [27011,2584], + [27013,38492], + [27015,13965], + [27017,16864], + [27019,54674], + [27021,13241], + [27023,6677], + [27025,27992], + [27027,34519], + [27029,4279], + [27031,2965], + [27033,5156], + [27035,30331], + [27037,227974], + [27039,11169], + [27041,19599], + [27043,7026], + [27045,11076], + [27047,15722], + [27049,25946], + [27051,3145], + [27053,665204], + [27055,10224], + [27057,9194], + [27059,19784], + [27061,20220], + [27063,5845], + [27065,8439], + [27067,23358], + [27069,2303], + [27071,5661], + [27073,3477], + [27075,5092], + [27077,2277], + [27079,14854], + [27081,3272], + [27083,14702], + [27085,18975], + [27087,2259], + [27089,5227], + [27091,10069], + [27093,12714], + [27095,12010], + [27097,16927], + [27099,19944], + [27101,4740], + [27103,19853], + [27105,11066], + [27107,3290], + [27109,82990], + [27111,30045], + [27113,8555], + [27115,14025], + [27117,4732], + [27119,16464], + [27121,6102], + [27123,273252], + [27125,2130], + [27127,8009], + [27129,8003], + [27131,34971], + [27133,5795], + [27135,7856], + [27137,97111], + [27139,78411], + [27141,48816], + [27143,8161], + [27145,85917], + [27147,20512], + [27149,5502], + [27151,4794], + [27153,12346], + [27155,1647], + [27157,11615], + [27159,5900], + [27161,9095], + [27163,134693], + [27165,6281], + [27167,3613], + [27169,28335], + [27171,70551], + [27173,5288], + [28001,10332], + [28003,15014], + [28005,4182], + [28007,6551], + [28009,2846], + [28011,12445], + [28013,5859], + [28015,3308], + [28017,6633], + [28019,3520], + [28021,2743], + [28023,5670], + [28025,7376], + [28027,8425], + [28029,10554], + [28031,7719], + [28033,83687], + [28035,31504], + [28037,2651], + [28039,8169], + [28041,3978], + [28043,9125], + [28045,17742], + [28047,82029], + [28049,104114], + [28051,5326], + [28053,2105], + [28055,345], + [28057,9885], + [28059,55276], + [28061,5723], + [28063,1897], + [28065,3841], + [28067,24241], + [28069,3247], + [28071,24749], + [28073,28291], + [28075,29945], + [28077,4347], + [28079,7292], + [28081,38864], + [28083,9407], + [28085,13617], + [28087,23978], + [28089,51118], + [28091,9602], + [28093,13693], + [28095,14667], + [28097,3970], + [28099,10096], + [28101,8141], + [28103,3641], + [28105,21825], + [28107,12227], + [28109,21855], + [28111,4051], + [28113,13690], + [28115,13767], + [28117,10469], + [28119,2365], + [28121,72051], + [28123,12666], + [28125,1565], + [28127,10348], + [28129,6389], + [28131,6062], + [28133,7572], + [28135,5352], + [28137,11386], + [28139,8884], + [28141,7811], + [28143,4286], + [28145,13069], + [28147,4652], + [28149,19510], + [28151,16179], + [28153,6991], + [28155,3665], + [28157,2549], + [28159,6608], + [28161,4585], + [28163,8573], + [29001,9792], + [29003,9668], + [29005,2715], + [29007,10671], + [29009,14524], + [29011,5046], + [29013,7727], + [29015,6824], + [29017,5179], + [29019,95017], + [29021,44830], + [29023,17737], + [29025,4268], + [29027,20949], + [29029,17653], + [29031,39030], + [29033,4517], + [29035,2365], + [29037,52300], + [29039,5512], + [29041,3691], + [29043,41696], + [29045,3126], + [29047,128903], + [29049,10557], + [29051,38058], + [29053,7121], + [29055,10260], + [29057,3429], + [29059,6580], + [29061,3960], + [29063,4866], + [29065,5874], + [29067,4777], + [29069,11791], + [29071,50423], + [29073,7376], + [29075,3458], + [29077,143088], + [29079,4683], + [29081,3808], + [29083,9407], + [29085,3491], + [29087,2600], + [29089,4812], + [29091,15109], + [29093,3452], + [29095,345882], + [29097,55390], + [29099,112685], + [29101,22068], + [29103,1914], + [29105,15293], + [29107,16466], + [29109,17026], + [29111,4910], + [29113,26032], + [29115,4924], + [29117,7070], + [29119,10030], + [29121,7258], + [29123,5182], + [29125,3717], + [29127,13963], + [29129,1842], + [29131,11279], + [29133,5808], + [29135,7154], + [29137,3965], + [29139,5491], + [29141,7506], + [29143,7484], + [29145,27015], + [29147,10355], + [29149,3872], + [29151,6987], + [29153,3370], + [29155,6414], + [29157,9729], + [29159,19628], + [29161,18599], + [29163,7710], + [29165,54709], + [29167,13543], + [29169,13705], + [29171,2345], + [29173,5406], + [29175,9953], + [29177,10609], + [29179,2512], + [29181,4964], + [29183,213590], + [29185,3675], + [29186,8580], + [29187,24819], + [29189,509783], + [29195,10248], + [29197,1787], + [29199,2356], + [29201,18848], + [29203,3085], + [29205,2945], + [29207,12461], + [29209,12501], + [29211,2614], + [29213,24406], + [29215,8748], + [29217,9151], + [29219,16783], + [29221,9696], + [29223,5362], + [29225,16086], + [29227,1176], + [29229,7161], + [29510,148965], + [30001,4901], + [30003,5130], + [30005,2260], + [30007,2424], + [30009,5203], + [30011,677], + [30013,36275], + [30015,2419], + [30017,6016], + [30019,911], + [30021,4424], + [30023,5095], + [30025,1745], + [30027,5536], + [30029,43364], + [30031,60336], + [30033,741], + [30035,5318], + [30037,362], + [30039,1534], + [30041,7458], + [30043,5406], + [30045,901], + [30047,12453], + [30049,34010], + [30051,957], + [30053,7211], + [30055,1022], + [30057,4244], + [30059,879], + [30061,1558], + [30063,59056], + [30065,2175], + [30067,8044], + [30069,264], + [30071,1832], + [30073,2743], + [30075,1042], + [30077,2722], + [30079,509], + [30081,18621], + [30083,5901], + [30085,4434], + [30087,3880], + [30089,4384], + [30091,1895], + [30093,16445], + [30095,4616], + [30097,1740], + [30099,2725], + [30101,2147], + [30103,338], + [30105,4252], + [30107,756], + [30109,492], + [30111,78211], + [31001,16105], + [31003,3493], + [31005,214], + [31007,402], + [31009,253], + [31011,2920], + [31013,5431], + [31015,1064], + [31017,1327], + [31019,26488], + [31021,3409], + [31023,4470], + [31025,12679], + [31027,4445], + [31029,2241], + [31031,3387], + [31033,5289], + [31035,3213], + [31037,5384], + [31039,4572], + [31041,6192], + [31043,10436], + [31045,5051], + [31047,12558], + [31049,1032], + [31051,2962], + [31053,18509], + [31055,277952], + [31057,1168], + [31059,3090], + [31061,1453], + [31063,1523], + [31065,2634], + [31067,10669], + [31069,1146], + [31071,1125], + [31073,1027], + [31075,442], + [31077,1194], + [31079,30202], + [31081,4515], + [31083,1710], + [31085,575], + [31087,1256], + [31089,5704], + [31091,377], + [31093,3185], + [31095,4112], + [31097,2022], + [31099,3646], + [31101,4475], + [31103,606], + [31105,1888], + [31107,4567], + [31109,164048], + [31111,18102], + [31113,469], + [31115,381], + [31117,452], + [31119,18598], + [31121,3881], + [31123,2559], + [31125,1941], + [31127,3479], + [31129,2294], + [31131,7966], + [31133,1613], + [31135,1777], + [31137,4797], + [31139,4029], + [31141,16353], + [31143,2800], + [31145,5796], + [31147,4093], + [31149,866], + [31151,7111], + [31153,89213], + [31155,10521], + [31157,18153], + [31159,8487], + [31161,2655], + [31163,1659], + [31165,761], + [31167,3345], + [31169,2827], + [31171,433], + [31173,2830], + [31175,2030], + [31177,10732], + [31179,5465], + [31181,1655], + [31183,553], + [31185,7113], + [32001,10169], + [32003,988963], + [32005,21175], + [32007,25941], + [32009,502], + [32011,949], + [32013,7928], + [32015,2978], + [32017,1932], + [32019,20257], + [32021,1863], + [32023,15049], + [32027,2394], + [32029,1789], + [32031,218723], + [32033,4375], + [32510,23276], + [33001,30292], + [33003,22819], + [33005,39998], + [33007,13997], + [33009,47276], + [33011,223465], + [33013,79301], + [33015,175021], + [33017,70097], + [33019,22890], + [34001,115119], + [34003,463959], + [34005,222869], + [34007,241947], + [34009,42584], + [34011,62109], + [34013,350142], + [34015,143281], + [34017,346230], + [34019,62571], + [34021,190708], + [34023,422500], + [34025,316142], + [34027,250925], + [34029,257324], + [34031,231089], + [34033,28376], + [34035,167006], + [34037,72137], + [34039,264157], + [34041,54343], + [35001,305053], + [35003,1097], + [35005,25925], + [35006,8465], + [35007,5430], + [35009,20675], + [35011,786], + [35013,87987], + [35015,26590], + [35017,11556], + [35019,1568], + [35021,256], + [35023,2062], + [35025,24962], + [35027,8056], + [35028,8349], + [35029,9137], + [35031,21911], + [35033,2024], + [35035,23723], + [35037,2966], + [35039,15372], + [35041,7540], + [35043,59355], + [35045,49042], + [35047,10148], + [35049,68999], + [35051,3686], + [35053,6136], + [35055,13564], + [35057,4963], + [35059,1802], + [35061,27519], + [36001,153060], + [36003,18916], + [36005,574972], + [36007,81757], + [36009,32995], + [36011,35077], + [36013,53222], + [36015,34367], + [36017,21823], + [36019,34111], + [36021,30510], + [36023,21822], + [36025,18284], + [36027,138024], + [36029,426082], + [36031,16428], + [36033,18795], + [36035,22042], + [36037,28559], + [36039,19657], + [36041,2225], + [36043,26810], + [36045,43100], + [36047,1172174], + [36049,11027], + [36051,29702], + [36053,31188], + [36055,348518], + [36057,21173], + [36059,677104], + [36061,889769], + [36063,95019], + [36065,97380], + [36067,212601], + [36069,53044], + [36071,172319], + [36073,16847], + [36075,50191], + [36077,26997], + [36079,48994], + [36081,1127490], + [36083,78594], + [36085,213322], + [36087,147108], + [36089,40769], + [36091,113742], + [36093,72983], + [36095,14017], + [36097,7830], + [36099,14849], + [36101,40919], + [36103,745241], + [36105,32623], + [36107,21980], + [36109,48590], + [36111,84824], + [36113,30508], + [36115,27205], + [36117,42077], + [36119,460382], + [36121,17255], + [36123,11274], + [37001,75124], + [37003,17058], + [37005,4178], + [37007,10032], + [37009,11896], + [37011,7187], + [37013,19131], + [37015,7870], + [37017,13548], + [37019,46452], + [37021,129041], + [37023,37878], + [37025,96459], + [37027,34000], + [37029,4414], + [37031,29913], + [37033,9154], + [37035,73171], + [37037,33027], + [37039,10502], + [37041,5238], + [37043,3826], + [37045,44208], + [37047,21125], + [37049,39531], + [37051,119070], + [37053,12472], + [37055,18633], + [37057,75604], + [37059,19243], + [37061,25065], + [37063,154649], + [37065,20455], + [37067,173578], + [37069,27784], + [37071,99912], + [37073,4919], + [37075,2825], + [37077,27987], + [37079,9011], + [37081,244695], + [37083,19025], + [37085,48431], + [37087,27162], + [37089,50015], + [37091,8694], + [37093,18584], + [37095,1908], + [37097,80414], + [37099,17789], + [37101,87211], + [37103,4273], + [37105,24663], + [37107,26002], + [37109,39116], + [37111,19985], + [37113,14383], + [37115,9219], + [37117,9142], + [37119,555245], + [37121,5803], + [37123,11084], + [37125,37490], + [37127,40996], + [37129,110461], + [37131,7240], + [37133,60145], + [37135,71683], + [37137,5118], + [37139,16286], + [37141,25404], + [37143,4768], + [37145,17029], + [37147,83209], + [37149,8406], + [37151,63531], + [37153,15612], + [37155,46492], + [37157,38505], + [37159,60595], + [37161,23127], + [37163,27876], + [37165,10562], + [37167,27900], + [37169,20806], + [37171,31888], + [37173,6677], + [37175,13265], + [37177,1399], + [37179,110555], + [37181,16698], + [37183,532222], + [37185,6614], + [37187,4500], + [37189,26665], + [37191,50381], + [37193,28727], + [37195,33479], + [37197,16822], + [37199,7085], + [38001,1109], + [38003,5467], + [38005,2347], + [38007,427], + [38009,3093], + [38011,1804], + [38013,1098], + [38015,49541], + [38017,98411], + [38019,2069], + [38021,2509], + [38023,1647], + [38025,3160], + [38027,1229], + [38029,1522], + [38031,1643], + [38033,949], + [38035,38070], + [38037,1264], + [38039,1132], + [38041,1500], + [38043,1329], + [38045,2270], + [38047,931], + [38049,3225], + [38051,1208], + [38053,7682], + [38055,4914], + [38057,4469], + [38059,16320], + [38061,6950], + [38063,1489], + [38065,853], + [38067,3492], + [38069,1831], + [38071,5998], + [38073,2787], + [38075,1263], + [38077,8698], + [38079,4466], + [38081,2298], + [38083,698], + [38085,1286], + [38087,427], + [38089,17456], + [38091,1056], + [38093,10854], + [38095,1308], + [38097,4491], + [38099,5472], + [38101,32301], + [38103,2116], + [38105,21742], + [39001,10135], + [39003,45909], + [39005,24965], + [39007,41585], + [39009,26263], + [39011,23739], + [39013,28737], + [39015,18391], + [39017,181180], + [39019,12536], + [39021,19015], + [39023,60335], + [39025,99444], + [39027,16193], + [39029,45214], + [39031,13951], + [39033,18041], + [39035,576199], + [39037,25327], + [39039,17499], + [39041,101224], + [39043,35418], + [39045,72786], + [39047,13867], + [39049,640325], + [39051,21655], + [39053,11316], + [39055,46693], + [39057,77689], + [39059,17576], + [39061,387608], + [39063,39995], + [39065,13680], + [39067,6446], + [39069,12897], + [39071,15879], + [39073,12303], + [39075,20266], + [39077,26324], + [39079,11812], + [39081,26527], + [39083,29831], + [39085,118046], + [39087,23174], + [39089,84507], + [39091,22379], + [39093,142631], + [39095,199811], + [39097,19567], + [39099,99332], + [39101,26370], + [39103,91345], + [39105,8201], + [39107,22695], + [39109,50779], + [39111,4735], + [39113,238072], + [39115,6201], + [39117,15944], + [39119,37396], + [39121,4472], + [39123,19702], + [39125,8480], + [39127,14898], + [39129,24976], + [39131,10010], + [39133,82873], + [39135,20047], + [39137,18237], + [39139,50526], + [39141,32020], + [39143,29606], + [39145,27603], + [39147,25859], + [39149,23109], + [39151,176559], + [39153,258884], + [39155,84433], + [39157,42495], + [39159,26773], + [39161,13748], + [39163,5078], + [39165,110010], + [39167,25876], + [39169,58870], + [39171,18193], + [39173,67803], + [39175,12223], + [40001,7675], + [40003,2866], + [40005,4726], + [40007,2795], + [40009,10235], + [40011,4227], + [40013,18659], + [40015,11286], + [40017,66608], + [40019,21533], + [40021,18216], + [40023,5313], + [40025,1380], + [40027,133763], + [40029,2150], + [40031,47143], + [40033,2750], + [40035,5947], + [40037,29654], + [40039,14498], + [40041,17081], + [40043,2565], + [40045,2168], + [40047,27717], + [40049,12029], + [40051,24783], + [40053,2906], + [40055,2027], + [40057,1242], + [40059,1836], + [40061,4129], + [40063,5111], + [40065,10514], + [40067,2515], + [40069,4115], + [40071,17741], + [40073,8165], + [40075,3888], + [40077,3402], + [40079,18385], + [40081,15028], + [40083,20693], + [40085,6361], + [40087,18171], + [40089,13744], + [40091,6428], + [40093,3827], + [40095,6278], + [40097,18443], + [40099,6055], + [40101,28002], + [40103,5554], + [40105,4400], + [40107,4274], + [40109,358861], + [40111,14988], + [40113,19848], + [40115,13734], + [40117,6992], + [40119,37447], + [40121,16542], + [40123,17697], + [40125,31518], + [40127,4519], + [40129,1718], + [40131,42612], + [40133,8785], + [40135,15781], + [40137,17212], + [40139,9078], + [40141,3164], + [40143,303249], + [40145,34853], + [40147,22753], + [40149,4951], + [40151,5049], + [40153,8923], + [41001,6521], + [41003,45004], + [41005,203624], + [41007,18143], + [41009,22199], + [41011,24776], + [41013,8704], + [41015,8443], + [41017,85592], + [41019,42880], + [41021,789], + [41023,2874], + [41025,3213], + [41027,13347], + [41029,95673], + [41031,9219], + [41033,32101], + [41035,27277], + [41037,3236], + [41039,169574], + [41041,19746], + [41043,53641], + [41045,11802], + [41047,149584], + [41049,5492], + [41051,425547], + [41053,36430], + [41055,854], + [41057,11080], + [41059,34127], + [41061,11280], + [41063,3095], + [41065,13047], + [41067,300850], + [41069,658], + [41071,50797], + [42001,53213], + [42003,614123], + [42005,30619], + [42007,80061], + [42009,22650], + [42011,202663], + [42013,57654], + [42015,28210], + [42017,325193], + [42019,93646], + [42021,57192], + [42023,2068], + [42025,29689], + [42027,75660], + [42029,269548], + [42031,16922], + [42033,33672], + [42035,17247], + [42037,32028], + [42039,38079], + [42041,124869], + [42043,135382], + [42045,279941], + [42047,15435], + [42049,124927], + [42051,53717], + [42053,1743], + [42055,73517], + [42057,6841], + [42059,15962], + [42061,18303], + [42063,37304], + [42065,19290], + [42067,11549], + [42069,100755], + [42071,268337], + [42073,38728], + [42075,67435], + [42077,178969], + [42079,148775], + [42081,54841], + [42083,17272], + [42085,49412], + [42087,19621], + [42089,76791], + [42091,428999], + [42093,8739], + [42095,150671], + [42097,41219], + [42099,23169], + [42101,655996], + [42103,23328], + [42105,6803], + [42107,63409], + [42109,19536], + [42111,31728], + [42113,2659], + [42115,19685], + [42117,18440], + [42119,18856], + [42121,22000], + [42123,18698], + [42125,100730], + [42127,21235], + [42129,172157], + [42131,13215], + [42133,224099], + [44001,24931], + [44003,86459], + [44005,42167], + [44007,305442], + [44009,65745], + [45001,9725], + [45003,70461], + [45005,2435], + [45007,84867], + [45009,4838], + [45011,7480], + [45013,69081], + [45015,92606], + [45017,6478], + [45019,193610], + [45021,22138], + [45023,12434], + [45025,20565], + [45027,11877], + [45029,15826], + [45031,28060], + [45033,11833], + [45035,69852], + [45037,9955], + [45039,9280], + [45041,61965], + [45043,23281], + [45045,235237], + [45047,29741], + [45049,7752], + [45051,132062], + [45053,11481], + [45055,27734], + [45057,36320], + [45059,28485], + [45061,5987], + [45063,142117], + [45065,3205], + [45067,11581], + [45069,8534], + [45071,18348], + [45073,32474], + [45075,32472], + [45077,53582], + [45079,190862], + [45081,8496], + [45083,135735], + [45085,41695], + [45087,10762], + [45089,11518], + [45091,124694], + [46003,1484], + [46005,9149], + [46007,1077], + [46009,2859], + [46011,18329], + [46013,20480], + [46015,2403], + [46017,665], + [46019,4862], + [46021,823], + [46023,3756], + [46025,1841], + [46027,6762], + [46029,14706], + [46031,1386], + [46033,3825], + [46035,10945], + [46037,2731], + [46039,2126], + [46041,2045], + [46043,1626], + [46045,2108], + [46047,2884], + [46049,1082], + [46051,4305], + [46053,2009], + [46055,1076], + [46057,3061], + [46059,1788], + [46061,1705], + [46063,737], + [46065,9804], + [46067,3549], + [46069,678], + [46071,1247], + [46073,1042], + [46075,555], + [46077,2662], + [46079,6224], + [46081,12605], + [46083,30695], + [46085,1688], + [46087,3049], + [46089,1049], + [46091,2360], + [46093,13218], + [46095,736], + [46097,1166], + [46099,104721], + [46101,3797], + [46102,"NA"], + [46103,52912], + [46105,1529], + [46107,1123], + [46109,4631], + [46111,1171], + [46115,3177], + [46117,1821], + [46119,838], + [46121,2856], + [46123,2989], + [46125,4537], + [46127,7781], + [46129,2122], + [46135,11262], + [46137,930], + [47001,32038], + [47003,18842], + [47005,6260], + [47007,4022], + [47009,58190], + [47011,47901], + [47013,13717], + [47015,5743], + [47017,11216], + [47019,22337], + [47021,19458], + [47023,8027], + [47025,11943], + [47027,2843], + [47029,13540], + [47031,23305], + [47033,6527], + [47035,22170], + [47037,360525], + [47039,4340], + [47041,7129], + [47043,23710], + [47045,15354], + [47047,17365], + [47049,6670], + [47051,18880], + [47053,19997], + [47055,14662], + [47057,8784], + [47059,29195], + [47061,4480], + [47063,25483], + [47065,164027], + [47067,1872], + [47069,8631], + [47071,9597], + [47073,22434], + [47075,7180], + [47077,11169], + [47079,13106], + [47081,9955], + [47083,2958], + [47085,8124], + [47087,4179], + [47089,22372], + [47091,7180], + [47093,224410], + [47095,1767], + [47097,8708], + [47099,16772], + [47101,4598], + [47103,15315], + [47105,21246], + [47107,21530], + [47109,8152], + [47111,9793], + [47113,45484], + [47115,11173], + [47117,14382], + [47119,42319], + [47121,4564], + [47123,18384], + [47125,75915], + [47127,3259], + [47129,7303], + [47131,11688], + [47133,8725], + [47135,2989], + [47137,2173], + [47139,6969], + [47141,31637], + [47143,12520], + [47145,21595], + [47147,33321], + [47149,157631], + [47151,7430], + [47153,5577], + [47155,48687], + [47157,411126], + [47159,8286], + [47161,4818], + [47163,66179], + [47165,88773], + [47167,25952], + [47169,3661], + [47171,6516], + [47173,6861], + [47175,1912], + [47177,16828], + [47179,55951], + [47181,5689], + [47183,14940], + [47185,11180], + [47187,109713], + [47189,65239], + [48001,22452], + [48003,8265], + [48005,34814], + [48007,9649], + [48009,3905], + [48011,906], + [48013,19864], + [48015,13259], + [48017,2595], + [48019,9097], + [48021,37503], + [48023,1545], + [48025,9517], + [48027,132983], + [48029,870020], + [48031,5741], + [48033,352], + [48035,7822], + [48037,37695], + [48039,160772], + [48041,107255], + [48043,3806], + [48045,523], + [48047,2148], + [48049,15441], + [48051,7496], + [48053,21196], + [48055,17136], + [48057,10156], + [48059,5549], + [48061,153845], + [48063,4707], + [48065,2991], + [48067,11367], + [48069,3382], + [48071,17074], + [48073,20086], + [48075,2866], + [48077,4578], + [48079,1113], + [48081,1360], + [48083,2882], + [48085,494019], + [48087,1171], + [48089,9316], + [48091,63013], + [48093,5118], + [48095,1284], + [48097,18133], + [48099,23236], + [48101,498], + [48103,1557], + [48105,1603], + [48107,2502], + [48109,957], + [48111,3904], + [48113,1244191], + [48115,4400], + [48117,8326], + [48119,2503], + [48121,435696], + [48123,8964], + [48125,656], + [48127,5784], + [48129,1491], + [48131,4343], + [48133,7004], + [48135,71239], + [48137,825], + [48139,81663], + [48141,331902], + [48143,19377], + [48145,6308], + [48147,15147], + [48149,12013], + [48151,1681], + [48153,2595], + [48155,519], + [48157,347950], + [48159,4281], + [48161,6399], + [48163,8338], + [48165,8825], + [48167,151306], + [48169,2044], + [48171,12604], + [48173,718], + [48175,3120], + [48177,9149], + [48179,7887], + [48181,58744], + [48183,54711], + [48185,10304], + [48187,73109], + [48189,11862], + [48191,1086], + [48193,3417], + [48195,2848], + [48197,1558], + [48199,23586], + [48201,2126642], + [48203,28100], + [48205,2895], + [48207,2398], + [48209,101202], + [48211,2032], + [48213,33670], + [48215,310204], + [48217,15083], + [48219,10634], + [48221,24036], + [48223,16604], + [48225,9582], + [48227,12459], + [48229,1447], + [48231,38711], + [48233,9076], + [48235,753], + [48237,3658], + [48239,6922], + [48241,12411], + [48243,1040], + [48245,99789], + [48247,1755], + [48249,15592], + [48251,72600], + [48253,5289], + [48255,5960], + [48257,55625], + [48259,19661], + [48261,207], + [48263,455], + [48265,20554], + [48267,1875], + [48269,170], + [48271,1087], + [48273,13138], + [48275,1490], + [48277,22114], + [48279,4898], + [48281,8765], + [48283,3679], + [48285,8358], + [48287,8917], + [48289,6079], + [48291,29115], + [48293,7846], + [48295,1576], + [48297,4886], + [48299,7933], + [48301,82], + [48303,148099], + [48305,2617], + [48307,3537], + [48309,111313], + [48311,842], + [48313,4518], + [48315,4030], + [48317,2369], + [48319,1723], + [48321,15620], + [48323,21474], + [48325,20031], + [48327,779], + [48329,81155], + [48331,9721], + [48333,1841], + [48335,2422], + [48337,8569], + [48339,252409], + [48341,10842], + [48343,4350], + [48345,489], + [48347,27317], + [48349,21776], + [48351,4919], + [48353,6523], + [48355,158022], + [48357,4410], + [48359,880], + [48361,34786], + [48363,12504], + [48365,9480], + [48367,58675], + [48369,4815], + [48371,6103], + [48373,16253], + [48375,54180], + [48377,2745], + [48379,5322], + [48381,68451], + [48383,1593], + [48385,980], + [48387,4733], + [48389,5703], + [48391,2923], + [48393,421], + [48395,6876], + [48397,45608], + [48399,4456], + [48401,21032], + [48403,3151], + [48405,2548], + [48407,10691], + [48409,28275], + [48411,2360], + [48413,1344], + [48415,6959], + [48417,1802], + [48419,10279], + [48421,1309], + [48423,100495], + [48425,3926], + [48427,22789], + [48429,3799], + [48431,643], + [48433,611], + [48435,1462], + [48437,2595], + [48439,969161], + [48441,60821], + [48443,389], + [48445,5086], + [48447,716], + [48449,12063], + [48451,51729], + [48453,655491], + [48455,5140], + [48457,6675], + [48459,16718], + [48461,1494], + [48463,11161], + [48465,18847], + [48467,23741], + [48469,41270], + [48471,22499], + [48473,20895], + [48475,5078], + [48477,14290], + [48479,108086], + [48481,19976], + [48483,2360], + [48485,52960], + [48487,4802], + [48489,5695], + [48491,268782], + [48493,22782], + [48495,2828], + [48497,27985], + [48499,16305], + [48501,3574], + [48503,7930], + [48505,4638], + [48507,3340], + [49001,2936], + [49003,23916], + [49005,59597], + [49007,7869], + [49009,441], + [49011,159781], + [49013,7421], + [49015,4014], + [49017,2571], + [49019,5411], + [49021,20612], + [49023,5048], + [49025,3566], + [49027,6029], + [49029,5009], + [49031,433], + [49033,1065], + [49035,584758], + [49037,5299], + [49039,11373], + [49041,9204], + [49043,23212], + [49045,29773], + [49047,12864], + [49049,271355], + [49051,13484], + [49053,64995], + [49055,1321], + [49057,115956], + [50001,20224], + [50003,17743], + [50005,14274], + [50007,92791], + [50009,2565], + [50011,26494], + [50013,3825], + [50015,13324], + [50017,15396], + [50019,12820], + [50021,30256], + [50023,32804], + [50025,22434], + [50027,28454], + [51001,15002], + [51003,52429], + [51005,6568], + [51007,5924], + [51009,14309], + [51011,6658], + [51013,142308], + [51015,35433], + [51017,2399], + [51019,36346], + [51021,2591], + [51023,16690], + [51025,5830], + [51027,6113], + [51029,5916], + [51031,24745], + [51033,14169], + [51035,12273], + [51036,3544], + [51037,4981], + [51041,173436], + [51043,7156], + [51045,2234], + [51047,22498], + [51049,4383], + [51051,4112], + [51053,12766], + [51057,5247], + [51059,595796], + [51061,34611], + [51063,7842], + [51065,12715], + [51067,25190], + [51069,43674], + [51071,7501], + [51073,18359], + [51075,10403], + [51077,6651], + [51079,9590], + [51081,3987], + [51083,13972], + [51085,55068], + [51087,171560], + [51089,20865], + [51091,1264], + [51093,18081], + [51095,33451], + [51097,3501], + [51099,11772], + [51101,8403], + [51103,4813], + [51105,7856], + [51107,200306], + [51109,17826], + [51111,5001], + [51113,6936], + [51115,3870], + [51117,11738], + [51119,4827], + [51121,47585], + [51125,6962], + [51127,11257], + [51131,5525], + [51133,5142], + [51135,6742], + [51137,15669], + [51139,10929], + [51141,7553], + [51143,28234], + [51145,13130], + [51147,9595], + [51149,14179], + [51153,225977], + [51155,15272], + [51157,3574], + [51159,3757], + [51161,47293], + [51163,9986], + [51165,39062], + [51167,10497], + [51169,8947], + [51171,20007], + [51173,12859], + [51175,8666], + [51177,62173], + [51179,65497], + [51181,3458], + [51183,3693], + [51185,14731], + [51187,18867], + [51191,25588], + [51193,8551], + [51195,12062], + [51197,12856], + [51199,30808], + [51510,93416], + [51520,7057], + [51530,3103], + [51540,23995], + [51550,112689], + [51570,8306], + [51580,2238], + [51590,17915], + [51595,2096], + [51600,12553], + [51610,7748], + [51620,3316], + [51630,12886], + [51640,2754], + [51650,60206], + [51660,23017], + [51670,9122], + [51678,2122], + [51680,33608], + [51683,20778], + [51685,8156], + [51690,4788], + [51700,84128], + [51710,104320], + [51720,1544], + [51730,12147], + [51735,5940], + [51740,41276], + [51750,7796], + [51760,109128], + [51770,46743], + [51775,12361], + [51790,11310], + [51800,40872], + [51810,219727], + [51820,9751], + [51830,6329], + [51840,13727], + [53001,8158], + [53003,9473], + [53005,88412], + [53007,40840], + [53009,25259], + [53011,207514], + [53013,1608], + [53015,41668], + [53017,19136], + [53019,2237], + [53021,36916], + [53023,866], + [53025,41422], + [53027,24993], + [53029,30827], + [53031,10703], + [53033,1156940], + [53035,111669], + [53037,20265], + [53039,8993], + [53041,29452], + [53043,4621], + [53045,21746], + [53047,19997], + [53049,7629], + [53051,4249], + [53053,380551], + [53055,7511], + [53057,54231], + [53059,4726], + [53061,394461], + [53063,220390], + [53065,16428], + [53067,122547], + [53069,1178], + [53071,27178], + [53073,100951], + [53075,21965], + [53077,116419], + [54001,6479], + [54003,51881], + [54005,7252], + [54007,5004], + [54009,9265], + [54011,39183], + [54013,2282], + [54015,2917], + [54017,3581], + [54019,14688], + [54021,2327], + [54023,5595], + [54025,14820], + [54027,9453], + [54029,11942], + [54031,5385], + [54033,30421], + [54035,11213], + [54037,27562], + [54039,80542], + [54041,6240], + [54043,6659], + [54045,10007], + [54047,4460], + [54049,23963], + [54051,12929], + [54053,9303], + [54055,20212], + [54057,11186], + [54059,5894], + [54061,49004], + [54063,5700], + [54065,7310], + [54067,8731], + [54069,19461], + [54071,3508], + [54073,2709], + [54075,3475], + [54077,13982], + [54079,24486], + [54081,27808], + [54083,11461], + [54085,4260], + [54087,4660], + [54089,4285], + [54091,7369], + [54093,3284], + [54095,3228], + [54097,9055], + [54099,14488], + [54101,3195], + [54103,6528], + [54105,2033], + [54107,34663], + [54109,6655], + [55001,7813], + [55003,7552], + [55005,23332], + [55007,7042], + [55009,136575], + [55011,6303], + [55013,6772], + [55015,26931], + [55017,32064], + [55019,16911], + [55021,30553], + [55023,7565], + [55025,309856], + [55027,46299], + [55029,14795], + [55031,22419], + [55033,23420], + [55035,57084], + [55037,2105], + [55039,55139], + [55041,3766], + [55043,27205], + [55045,20580], + [55047,9322], + [55049,13269], + [55051,2451], + [55053,9914], + [55055,44095], + [55057,12988], + [55059,84660], + [55061,10670], + [55063,65374], + [55065,9567], + [55067,9115], + [55069,14651], + [55071,40199], + [55073,71277], + [55075,19200], + [55077,7198], + [55078,1460], + [55079,454700], + [55081,22233], + [55083,19635], + [55085,17753], + [55087,100596], + [55089,47590], + [55091,4024], + [55093,23776], + [55095,23833], + [55097,38131], + [55099,6612], + [55101,95188], + [55103,8951], + [55105,80725], + [55107,6671], + [55109,47979], + [55111,34109], + [55113,7454], + [55115,20489], + [55117,59867], + [55119,10664], + [55121,16113], + [55123,15243], + [55125,9447], + [55127,55615], + [55129,7608], + [55131,74906], + [55133,217911], + [55135,26008], + [55137,10946], + [55139,90102], + [55141,33112], + [56001,20341], + [56003,5275], + [56005,22697], + [56007,7987], + [56009,7401], + [56011,3575], + [56013,18631], + [56015,6799], + [56017,2313], + [56019,3990], + [56021,46866], + [56023,8331], + [56025,38155], + [56027,1297], + [56029,15208], + [56031,4554], + [56033,15397], + [56035,3967], + [56037,20838], + [56039,14748], + [56041,8895], + [56043,4021], + [56045,3769] + ] +} diff --git a/data/regional/united-states/economics/employment/us-employment-total-2017.json b/data/regional/united-states/economics/employment/us-employment-total-2017.json new file mode 100644 index 0000000..47b98e3 --- /dev/null +++ b/data/regional/united-states/economics/employment/us-employment-total-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Employed", + "description" : "Total number of people employed.", + "units" : "people", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","employed"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.employment.total.2017"], + [1001,24908], + [1003,87915], + [1005,7750], + [1007,8133], + [1009,23509], + [1011,4575], + [1013,8455], + [1015,43333], + [1017,14557], + [1019,10721], + [1021,18344], + [1023,4059], + [1025,7065], + [1027,5471], + [1029,5486], + [1031,19764], + [1033,21889], + [1035,4173], + [1037,4147], + [1039,14826], + [1041,6130], + [1043,36239], + [1045,18987], + [1047,13811], + [1049,27734], + [1051,35880], + [1053,13630], + [1055,40932], + [1057,6220], + [1059,13369], + [1061,10355], + [1063,2616], + [1065,5653], + [1067,6371], + [1069,42484], + [1071,21966], + [1073,295970], + [1075,5462], + [1077,39937], + [1079,12974], + [1081,70643], + [1083,39457], + [1085,3450], + [1087,7436], + [1089,168412], + [1091,7192], + [1093,11918], + [1095,40506], + [1097,176587], + [1099,6682], + [1101,100964], + [1103,52588], + [1105,3132], + [1107,7371], + [1109,14495], + [1111,8961], + [1113,22449], + [1115,37400], + [1117,105804], + [1119,4688], + [1121,32789], + [1123,17519], + [1125,95127], + [1127,23883], + [1129,6201], + [1131,2488], + [1133,9164], + [2013,2519], + [2016,3721], + [2020,146175], + [2050,6418], + [2060,399], + [2068,1024], + [2070,1864], + [2090,43768], + [2100,990], + [2105,996], + [2110,16607], + [2122,24795], + [2130,6656], + [2150,6118], + [2158,"NA"], + [2164,637], + [2170,43292], + [2180,3575], + [2185,3397], + [2188,2463], + [2195,1281], + [2198,2512], + [2220,4241], + [2230,737], + [2240,2659], + [2261,4508], + [2275,969], + [2282,213], + [2290,2032], + [4001,18292], + [4003,46602], + [4005,71195], + [4007,20067], + [4009,13638], + [4011,3788], + [4012,8214], + [4013,2045885], + [4015,77579], + [4017,38206], + [4019,454292], + [4021,160333], + [4023,17194], + [4025,97180], + [4027,78942], + [5001,8719], + [5003,7254], + [5005,15707], + [5007,128647], + [5009,15278], + [5011,4174], + [5013,2268], + [5015,12666], + [5017,3276], + [5019,9093], + [5021,5639], + [5023,8893], + [5025,3170], + [5027,8655], + [5029,7889], + [5031,52132], + [5033,25743], + [5035,20871], + [5037,7417], + [5039,2751], + [5041,5191], + [5043,7441], + [5045,59253], + [5047,7181], + [5049,4533], + [5051,38805], + [5053,8104], + [5055,19082], + [5057,9555], + [5059,13665], + [5061,5771], + [5063,15546], + [5065,4640], + [5067,5570], + [5069,26605], + [5071,10189], + [5073,2393], + [5075,6657], + [5077,2832], + [5079,3867], + [5081,5323], + [5083,8604], + [5085,32785], + [5087,7249], + [5089,6239], + [5091,19006], + [5093,16845], + [5095,2700], + [5097,2921], + [5099,3487], + [5101,3259], + [5103,9347], + [5105,4027], + [5107,6192], + [5109,4111], + [5111,9921], + [5113,7672], + [5115,28044], + [5117,3581], + [5119,183669], + [5121,6648], + [5123,7983], + [5125,56056], + [5127,4272], + [5129,2812], + [5131,55146], + [5133,5395], + [5135,5756], + [5137,4598], + [5139,15285], + [5141,5759], + [5143,119232], + [5145,32280], + [5147,2807], + [5149,8304], + [6001,817433], + [6003,505], + [6005,14059], + [6007,97066], + [6009,20183], + [6011,9216], + [6013,542445], + [6015,9151], + [6017,85966], + [6019,411525], + [6021,11952], + [6023,60380], + [6025,59875], + [6027,8301], + [6029,349502], + [6031,52595], + [6033,28008], + [6035,9447], + [6037,4883640], + [6039,56494], + [6041,137270], + [6043,7196], + [6045,38210], + [6047,105287], + [6049,2970], + [6051,8188], + [6053,204309], + [6055,71172], + [6057,46661], + [6059,1562201], + [6061,175165], + [6063,7111], + [6065,1017591], + [6067,669469], + [6069,28552], + [6071,904183], + [6073,1521190], + [6075,552223], + [6077,302176], + [6079,136977], + [6081,440324], + [6083,207213], + [6085,1007143], + [6087,135648], + [6089,70155], + [6091,1216], + [6093,16662], + [6095,199257], + [6097,253972], + [6099,225070], + [6101,41804], + [6103,23968], + [6105,4690], + [6107,184022], + [6109,20319], + [6111,406976], + [6113,102373], + [6115,26421], + [8001,253318], + [8003,7948], + [8005,341647], + [8007,6395], + [8009,2103], + [8011,1873], + [8013,182316], + [8014,36974], + [8015,9101], + [8017,1125], + [8019,5700], + [8021,3755], + [8023,1767], + [8025,1413], + [8027,1954], + [8029,13798], + [8031,386225], + [8033,1104], + [8035,178882], + [8037,34240], + [8039,13981], + [8041,315997], + [8043,14437], + [8045,30863], + [8047,3521], + [8049,9383], + [8051,10500], + [8053,481], + [8055,2432], + [8057,946], + [8059,316839], + [8061,925], + [8063,4522], + [8065,4629], + [8067,30936], + [8069,190337], + [8071,6023], + [8073,2353], + [8075,10950], + [8077,70937], + [8079,444], + [8081,7130], + [8083,12478], + [8085,20234], + [8087,15332], + [8089,8006], + [8091,2225], + [8093,9909], + [8095,2554], + [8097,10691], + [8099,6053], + [8101,71353], + [8103,2713], + [8105,5209], + [8107,15206], + [8109,3253], + [8111,526], + [8113,5243], + [8115,1187], + [8117,21598], + [8119,11776], + [8121,2995], + [8123,153092], + [8125,5633], + [9001,463484], + [9003,457937], + [9005,101180], + [9007,89889], + [9009,439130], + [9011,133191], + [9013,83107], + [9015,60939], + [10001,74246], + [10003,282959], + [10005,98223], + [11001,376633], + [12001,130980], + [12003,11316], + [12005,85261], + [12007,10885], + [12009,257365], + [12011,986586], + [12013,4692], + [12015,67028], + [12017,45134], + [12019,100617], + [12021,164974], + [12023,28160], + [12027,13225], + [12029,5536], + [12031,463724], + [12033,138797], + [12035,44220], + [12037,4599], + [12039,17495], + [12041,6551], + [12043,4782], + [12045,5792], + [12047,4227], + [12049,8858], + [12051,14518], + [12053,65799], + [12055,33902], + [12057,696278], + [12059,6477], + [12061,60169], + [12063,16537], + [12065,5209], + [12067,2845], + [12069,144864], + [12071,322180], + [12073,146651], + [12075,16230], + [12077,2514], + [12079,7083], + [12081,168161], + [12083,126934], + [12085,69391], + [12086,1317493], + [12087,43816], + [12089,37594], + [12091,92613], + [12093,17909], + [12095,704715], + [12097,162768], + [12099,694979], + [12101,217800], + [12103,471855], + [12105,279944], + [12107,25661], + [12109,118889], + [12111,131067], + [12113,75353], + [12115,178650], + [12117,241507], + [12119,28465], + [12121,17312], + [12123,8390], + [12125,4701], + [12127,240636], + [12129,14108], + [12131,28639], + [12133,9412], + [13001,8749], + [13003,3973], + [13005,4860], + [13007,1143], + [13009,16756], + [13011,8876], + [13013,37280], + [13015,47468], + [13017,5078], + [13019,7042], + [13021,65922], + [13023,4263], + [13025,6818], + [13027,6835], + [13029,16593], + [13031,35299], + [13033,8808], + [13035,10167], + [13037,2119], + [13039,19823], + [13043,5051], + [13045,52272], + [13047,31747], + [13049,4595], + [13051,132767], + [13053,1935], + [13055,10128], + [13057,125131], + [13059,58078], + [13061,797], + [13063,126727], + [13065,2669], + [13067,406109], + [13069,17482], + [13071,21192], + [13073,69833], + [13075,7375], + [13077,69436], + [13079,5470], + [13081,8968], + [13083,7918], + [13085,11231], + [13087,11006], + [13089,375712], + [13091,6677], + [13093,4843], + [13095,36689], + [13097,68825], + [13099,4305], + [13101,1859], + [13103,27840], + [13105,7455], + [13107,8101], + [13109,4706], + [13111,10481], + [13113,55086], + [13115,41986], + [13117,110421], + [13119,9541], + [13121,521549], + [13123,11387], + [13125,1237], + [13127,37951], + [13129,25503], + [13131,10223], + [13133,6466], + [13135,462438], + [13137,18485], + [13139,96413], + [13141,2386], + [13143,11894], + [13145,15653], + [13147,10758], + [13149,4885], + [13151,106742], + [13153,65899], + [13155,3048], + [13157,33729], + [13159,6516], + [13161,5788], + [13163,6334], + [13165,2987], + [13167,3797], + [13169,13430], + [13171,7665], + [13173,3676], + [13175,18294], + [13177,14324], + [13179,24490], + [13181,3389], + [13183,7321], + [13185,49391], + [13187,16083], + [13189,8405], + [13191,5808], + [13193,4430], + [13195,13020], + [13197,3213], + [13199,8482], + [13201,2711], + [13205,7995], + [13207,12637], + [13209,3558], + [13211,8606], + [13213,14833], + [13215,74739], + [13217,48794], + [13219,18550], + [13221,6902], + [13223,78836], + [13225,10986], + [13227,14220], + [13229,8439], + [13231,8280], + [13233,17494], + [13235,3930], + [13237,7670], + [13239,778], + [13241,6570], + [13243,2343], + [13245,81450], + [13247,42284], + [13249,2011], + [13251,4939], + [13253,2919], + [13255,26870], + [13257,10438], + [13259,2133], + [13261,12043], + [13263,2625], + [13265,533], + [13267,9147], + [13269,2595], + [13271,4424], + [13273,3534], + [13275,16255], + [13277,18339], + [13279,11223], + [13281,3588], + [13283,2569], + [13285,35996], + [13287,3116], + [13289,2747], + [13291,9732], + [13293,10669], + [13295,29326], + [13297,42813], + [13299,15243], + [13301,2563], + [13303,6930], + [13305,10714], + [13307,913], + [13309,1601], + [13311,15133], + [13313,42821], + [13315,2579], + [13317,3618], + [13319,3625], + [13321,8893], + [15001,88847], + [15003,460776], + [15005,"NA"], + [15007,35273], + [15009,84346], + [16001,226485], + [16003,1649], + [16005,40475], + [16007,2712], + [16009,3772], + [16011,22268], + [16013,11966], + [16015,3047], + [16017,18272], + [16019,52087], + [16021,4891], + [16023,1274], + [16025,658], + [16027,92955], + [16029,3693], + [16031,11429], + [16033,392], + [16035,2830], + [16037,2060], + [16039,10741], + [16041,6570], + [16043,7381], + [16045,7623], + [16047,7857], + [16049,5937], + [16051,12730], + [16053,11442], + [16055,72557], + [16057,19606], + [16059,3291], + [16061,1510], + [16063,2623], + [16065,20866], + [16067,10707], + [16069,20662], + [16071,2190], + [16073,4971], + [16075,11061], + [16077,3818], + [16079,4725], + [16081,5922], + [16083,40156], + [16085,4906], + [16087,4396], + [17001,31008], + [17003,1989], + [17005,7478], + [17007,24269], + [17009,2761], + [17011,16490], + [17013,2227], + [17015,7263], + [17017,5882], + [17019,100100], + [17021,13919], + [17023,7470], + [17025,6277], + [17027,19547], + [17029,23308], + [17031,2514113], + [17033,8323], + [17035,5858], + [17037,52180], + [17039,7386], + [17041,9714], + [17043,494644], + [17045,8974], + [17047,2710], + [17049,18083], + [17051,9065], + [17053,6178], + [17055,15380], + [17057,14464], + [17059,2316], + [17061,5666], + [17063,24136], + [17065,4221], + [17067,8051], + [17069,1234], + [17071,3461], + [17073,23545], + [17075,14014], + [17077,26759], + [17079,4302], + [17081,16406], + [17083,10413], + [17085,10518], + [17087,3785], + [17089,255037], + [17091,52935], + [17093,64820], + [17095,21328], + [17097,354622], + [17099,52569], + [17101,5681], + [17103,17028], + [17105,15882], + [17107,12246], + [17109,12827], + [17111,159780], + [17113,84768], + [17115,46514], + [17117,21971], + [17119,127266], + [17121,16730], + [17123,5180], + [17125,5995], + [17127,5503], + [17129,6453], + [17131,7662], + [17133,17752], + [17135,11218], + [17137,15732], + [17139,6990], + [17141,23911], + [17143,80773], + [17145,7828], + [17147,8116], + [17149,6872], + [17151,1646], + [17153,1934], + [17155,2842], + [17157,13501], + [17159,7182], + [17161,67147], + [17163,119566], + [17165,9077], + [17167,99077], + [17169,3141], + [17171,2331], + [17173,9784], + [17175,2520], + [17177,20544], + [17179,60655], + [17181,6891], + [17183,31928], + [17185,5322], + [17187,8286], + [17189,9262], + [17191,6451], + [17193,6327], + [17195,26712], + [17197,342895], + [17199,29918], + [17201,129843], + [17203,18025], + [18001,16784], + [18003,174761], + [18005,43307], + [18007,4357], + [18009,5156], + [18011,34001], + [18013,7292], + [18015,9684], + [18017,17130], + [18019,58747], + [18021,11743], + [18023,16392], + [18025,4705], + [18027,15404], + [18029,24605], + [18031,14254], + [18033,21561], + [18035,52708], + [18037,22594], + [18039,108915], + [18041,8588], + [18043,39793], + [18045,7565], + [18047,10765], + [18049,9355], + [18051,18475], + [18053,30540], + [18055,12838], + [18057,170775], + [18059,37601], + [18061,19345], + [18063,83723], + [18065,21312], + [18067,36534], + [18069,17728], + [18071,21698], + [18073,15641], + [18075,9385], + [18077,14470], + [18079,12657], + [18081,78158], + [18083,18006], + [18085,40280], + [18087,19309], + [18089,217832], + [18091,45495], + [18093,19864], + [18095,56567], + [18097,465230], + [18099,23044], + [18101,4960], + [18103,15177], + [18105,65112], + [18107,18353], + [18109,34859], + [18111,6619], + [18113,22336], + [18115,3097], + [18117,8406], + [18119,8763], + [18121,6884], + [18123,8883], + [18125,6262], + [18127,81948], + [18129,12983], + [18131,6135], + [18133,15999], + [18135,11312], + [18137,13516], + [18139,8637], + [18141,129085], + [18143,10089], + [18145,22256], + [18147,10545], + [18149,9990], + [18151,19345], + [18153,8129], + [18155,4763], + [18157,91188], + [18159,8269], + [18161,3511], + [18163,90106], + [18165,6746], + [18167,46534], + [18169,14585], + [18171,3907], + [18173,31412], + [18175,13145], + [18177,29672], + [18179,13741], + [18181,12728], + [18183,16695], + [19001,4027], + [19003,2081], + [19005,7217], + [19007,5827], + [19009,3077], + [19011,13023], + [19013,65683], + [19015,14462], + [19017,13277], + [19019,10674], + [19021,11126], + [19023,7575], + [19025,4169], + [19027,10794], + [19029,6878], + [19031,10483], + [19033,22521], + [19035,5927], + [19037,6195], + [19039,4614], + [19041,8283], + [19043,9765], + [19045,22218], + [19047,7880], + [19049,45077], + [19051,4112], + [19053,4236], + [19055,10229], + [19057,18819], + [19059,9793], + [19061,52821], + [19063,5266], + [19065,10042], + [19067,8492], + [19069,5613], + [19071,3733], + [19073,5258], + [19075,6309], + [19077,5417], + [19079,6829], + [19081,5997], + [19083,8200], + [19085,7160], + [19087,9392], + [19089,4963], + [19091,5112], + [19093,3934], + [19095,10201], + [19097,10512], + [19099,18666], + [19101,8714], + [19103,82775], + [19105,10141], + [19107,5005], + [19109,8521], + [19111,15277], + [19113,114290], + [19115,5853], + [19117,4240], + [19119,6869], + [19121,8015], + [19123,11092], + [19125,16877], + [19127,17406], + [19129,7118], + [19131,5640], + [19133,4353], + [19135,3751], + [19137,4827], + [19139,21096], + [19141,7842], + [19143,3504], + [19145,6032], + [19147,4773], + [19149,14217], + [19151,4016], + [19153,251455], + [19155,46694], + [19157,10110], + [19159,2490], + [19161,5206], + [19163,82899], + [19165,6516], + [19167,19938], + [19169,56135], + [19171,9291], + [19173,3164], + [19175,6228], + [19177,3609], + [19179,16837], + [19181,26545], + [19183,11998], + [19185,2697], + [19187,18639], + [19189,5025], + [19191,11470], + [19193,52480], + [19195,4089], + [19197,6325], + [20001,5991], + [20003,3980], + [20005,6690], + [20007,2404], + [20009,13589], + [20011,6551], + [20013,5156], + [20015,30616], + [20017,1367], + [20019,1379], + [20021,9770], + [20023,1281], + [20025,1076], + [20027,3681], + [20029,3725], + [20031,3907], + [20033,895], + [20035,16316], + [20037,18323], + [20039,1227], + [20041,8924], + [20043,4106], + [20045,63138], + [20047,1501], + [20049,1142], + [20051,16545], + [20053,2624], + [20055,19829], + [20057,17295], + [20059,13616], + [20061,10989], + [20063,1384], + [20065,1085], + [20067,3367], + [20069,3354], + [20071,864], + [20073,3074], + [20075,1570], + [20077,2555], + [20079,16343], + [20081,2168], + [20083,968], + [20085,6956], + [20087,9744], + [20089,1267], + [20091,322197], + [20093,2004], + [20095,3314], + [20097,1308], + [20099,9881], + [20101,770], + [20103,34708], + [20105,1641], + [20107,4100], + [20109,1646], + [20111,16171], + [20113,15841], + [20115,6040], + [20117,5337], + [20119,2205], + [20121,16534], + [20123,3358], + [20125,14203], + [20127,2919], + [20129,1167], + [20131,5445], + [20133,5736], + [20135,1328], + [20137,2757], + [20139,7646], + [20141,1952], + [20143,2966], + [20145,2934], + [20147,2728], + [20149,11795], + [20151,4769], + [20153,1430], + [20155,28867], + [20157,2391], + [20159,5232], + [20161,33974], + [20163,2409], + [20165,1582], + [20167,3384], + [20169,29693], + [20171,2789], + [20173,234327], + [20175,9526], + [20177,87585], + [20179,1332], + [20181,2797], + [20183,1916], + [20185,1937], + [20187,965], + [20189,2572], + [20191,10352], + [20193,4156], + [20195,1387], + [20197,3521], + [20199,826], + [20201,2873], + [20203,1140], + [20205,3810], + [20207,1518], + [20209,73194], + [21001,6420], + [21003,8589], + [21005,11092], + [21007,3371], + [21009,18377], + [21011,4384], + [21013,8100], + [21015,65761], + [21017,9463], + [21019,17177], + [21021,12064], + [21023,3652], + [21025,3606], + [21027,7725], + [21029,39581], + [21031,4970], + [21033,5182], + [21035,17771], + [21037,47635], + [21039,2266], + [21041,4687], + [21043,9253], + [21045,6618], + [21047,23563], + [21049,16455], + [21051,5161], + [21053,3622], + [21055,3919], + [21057,2802], + [21059,45269], + [21061,4592], + [21063,2000], + [21065,5061], + [21067,167944], + [21069,5790], + [21071,10818], + [21073,23652], + [21075,1935], + [21077,3765], + [21079,7373], + [21081,10965], + [21083,15094], + [21085,10327], + [21087,4900], + [21089,12779], + [21091,3880], + [21093,46134], + [21095,6294], + [21097,8402], + [21099,7896], + [21101,20853], + [21103,7716], + [21105,1793], + [21107,19193], + [21109,3853], + [21111,376784], + [21113,25058], + [21115,6788], + [21117,82582], + [21119,4188], + [21121,9435], + [21123,5681], + [21125,23243], + [21127,4668], + [21129,1789], + [21131,2508], + [21133,5941], + [21135,4492], + [21137,8853], + [21139,3482], + [21141,11629], + [21143,2932], + [21145,27835], + [21147,4561], + [21149,4170], + [21151,43494], + [21153,2629], + [21155,9197], + [21157,14285], + [21159,3073], + [21161,6927], + [21163,11579], + [21165,2177], + [21167,9622], + [21169,4003], + [21171,4671], + [21173,11052], + [21175,4307], + [21177,10903], + [21179,21500], + [21181,3270], + [21183,9190], + [21185,31407], + [21187,5341], + [21189,1047], + [21191,6622], + [21193,7936], + [21195,18852], + [21197,4782], + [21199,24115], + [21201,786], + [21203,6314], + [21205,10093], + [21207,5824], + [21209,27339], + [21211,23333], + [21213,8334], + [21215,9460], + [21217,11604], + [21219,5278], + [21221,5525], + [21223,3720], + [21225,5821], + [21227,60724], + [21229,6105], + [21231,7025], + [21233,5532], + [21235,12927], + [21237,1790], + [21239,14390], + [22001,22724], + [22003,8548], + [22005,59580], + [22007,8299], + [22009,14680], + [22011,13989], + [22013,5289], + [22015,54310], + [22017,99592], + [22019,104505], + [22021,3644], + [22023,3892], + [22025,3206], + [22027,5561], + [22029,6596], + [22031,10047], + [22033,222513], + [22035,1845], + [22037,7722], + [22039,11844], + [22041,6753], + [22043,7672], + [22045,27351], + [22047,13272], + [22049,6686], + [22051,206008], + [22053,13015], + [22055,107552], + [22057,39604], + [22059,5881], + [22061,20549], + [22063,65914], + [22065,3513], + [22067,9587], + [22069,15468], + [22071,170264], + [22073,67215], + [22075,9680], + [22077,9416], + [22079,53190], + [22081,3660], + [22083,7853], + [22085,8318], + [22087,18459], + [22089,24085], + [22091,4098], + [22093,8919], + [22095,18760], + [22097,29992], + [22099,21190], + [22101,18785], + [22103,112244], + [22105,52001], + [22107,1428], + [22109,44420], + [22111,8636], + [22113,22895], + [22115,15310], + [22117,15997], + [22119,13848], + [22121,12668], + [22123,3625], + [22125,5106], + [22127,4732], + [23001,53961], + [23003,30094], + [23005,161135], + [23007,13952], + [23009,28282], + [23011,60775], + [23013,20077], + [23015,16526], + [23017,25901], + [23019,74271], + [23021,7240], + [23023,18875], + [23025,22223], + [23027,20338], + [23029,13379], + [23031,110116], + [24001,30640], + [24003,298195], + [24005,433601], + [24009,48123], + [24011,17167], + [24013,91658], + [24015,50558], + [24017,82373], + [24019,14844], + [24021,126505], + [24023,14798], + [24025,133327], + [24027,177062], + [24029,9846], + [24031,539132], + [24033,490451], + [24035,26126], + [24037,53104], + [24039,8793], + [24041,18963], + [24043,72697], + [24045,48566], + [24047,23514], + [24510,276206], + [25001,107254], + [25003,62327], + [25005,278472], + [25007,9007], + [25009,398885], + [25011,38572], + [25013,211909], + [25015,85479], + [25017,858240], + [25019,6810], + [25021,365379], + [25023,263530], + [25025,418378], + [25027,417238], + [26001,3572], + [26003,3055], + [26005,58958], + [26007,12781], + [26009,9482], + [26011,5593], + [26013,2919], + [26015,29866], + [26017,48120], + [26019,8331], + [26021,70122], + [26023,18183], + [26025,60560], + [26027,23284], + [26029,12324], + [26031,9741], + [26033,15164], + [26035,11240], + [26037,39329], + [26039,5068], + [26041,15940], + [26043,11940], + [26045,55093], + [26047,16502], + [26049,172577], + [26051,9244], + [26053,5900], + [26055,47732], + [26057,17075], + [26059,20040], + [26061,15539], + [26063,14906], + [26065,143970], + [26067,28689], + [26069,9406], + [26071,4873], + [26073,33858], + [26075,70799], + [26077,126982], + [26079,7238], + [26081,342568], + [26083,858], + [26085,3465], + [26087,38906], + [26089,10133], + [26091,45089], + [26093,98038], + [26095,2263], + [26097,4741], + [26099,422560], + [26101,9754], + [26103,30931], + [26105,13340], + [26107,17808], + [26109,10464], + [26111,38565], + [26113,6613], + [26115,72736], + [26117,26753], + [26119,2709], + [26121,73961], + [26123,22282], + [26125,639968], + [26127,11510], + [26129,7592], + [26131,1969], + [26133,9978], + [26135,2721], + [26137,10954], + [26139,152022], + [26141,4697], + [26143,7248], + [26145,82820], + [26147,71672], + [26149,27615], + [26151,18287], + [26153,3082], + [26155,31762], + [26157,22504], + [26159,33395], + [26161,186598], + [26163,746415], + [26165,13936], + [27001,6747], + [27003,188808], + [27005,17817], + [27007,22567], + [27009,21202], + [27011,2485], + [27013,39019], + [27015,13935], + [27017,16997], + [27019,55589], + [27021,13702], + [27023,6688], + [27025,28467], + [27027,34723], + [27029,4229], + [27031,3075], + [27033,5335], + [27035,31036], + [27037,232117], + [27039,11261], + [27041,19995], + [27043,6930], + [27045,11119], + [27047,15589], + [27049,26042], + [27051,3146], + [27053,677339], + [27055,10254], + [27057,9372], + [27059,20124], + [27061,20254], + [27063,5568], + [27065,8474], + [27067,24023], + [27069,2291], + [27071,5602], + [27073,3404], + [27075,5373], + [27077,2275], + [27079,15066], + [27081,3210], + [27083,14506], + [27085,18831], + [27087,2250], + [27089,5111], + [27091,10057], + [27093,12761], + [27095,12205], + [27097,16765], + [27099,19991], + [27101,4686], + [27103,20101], + [27105,10981], + [27107,3246], + [27109,84085], + [27111,30498], + [27113,8326], + [27115,14198], + [27117,4741], + [27119,16321], + [27121,6176], + [27123,278210], + [27125,2107], + [27127,7385], + [27129,8500], + [27131,35466], + [27133,5790], + [27135,7758], + [27137,97937], + [27139,79824], + [27141,49675], + [27143,8208], + [27145,87116], + [27147,19867], + [27149,5379], + [27151,4838], + [27153,12938], + [27155,1726], + [27157,11674], + [27159,5502], + [27161,9025], + [27163,137106], + [27165,6205], + [27167,3462], + [27169,28152], + [27171,71749], + [27173,5156], + [28001,10388], + [28003,15387], + [28005,4209], + [28007,6512], + [28009,2885], + [28011,12147], + [28013,5866], + [28015,3388], + [28017,6704], + [28019,3498], + [28021,2737], + [28023,5661], + [28025,7322], + [28027,8269], + [28029,10670], + [28031,7863], + [28033,84855], + [28035,32337], + [28037,2641], + [28039,8285], + [28041,4044], + [28043,9209], + [28045,17886], + [28047,82636], + [28049,105429], + [28051,5237], + [28053,2098], + [28055,350], + [28057,9942], + [28059,55670], + [28061,5699], + [28063,1785], + [28065,3927], + [28067,24165], + [28069,3233], + [28071,25631], + [28073,29049], + [28075,29897], + [28077,4339], + [28079,7251], + [28081,39130], + [28083,9648], + [28085,13819], + [28087,24016], + [28089,51767], + [28091,9667], + [28093,13881], + [28095,14631], + [28097,3961], + [28099,10039], + [28101,8054], + [28103,3633], + [28105,21771], + [28107,12157], + [28109,22016], + [28111,4153], + [28113,13812], + [28115,13862], + [28117,10606], + [28119,2268], + [28121,72957], + [28123,12866], + [28125,1572], + [28127,10466], + [28129,6434], + [28131,6172], + [28133,7425], + [28135,5333], + [28137,11530], + [28139,9061], + [28141,7893], + [28143,4330], + [28145,13474], + [28147,4667], + [28149,19467], + [28151,15956], + [28153,7034], + [28155,3704], + [28157,2589], + [28159,6813], + [28161,4730], + [28163,8657], + [29001,9759], + [29003,9608], + [29005,2718], + [29007,10550], + [29009,14590], + [29011,4901], + [29013,7762], + [29015,6751], + [29017,5144], + [29019,94953], + [29021,44568], + [29023,17250], + [29025,4286], + [29027,20768], + [29029,17586], + [29031,38772], + [29033,4520], + [29035,2323], + [29037,52605], + [29039,5434], + [29041,3648], + [29043,41790], + [29045,2981], + [29047,129721], + [29049,10619], + [29051,37720], + [29053,7077], + [29055,10146], + [29057,3423], + [29059,6593], + [29061,3897], + [29063,4839], + [29065,5782], + [29067,4736], + [29069,11406], + [29071,50386], + [29073,7378], + [29075,3470], + [29077,143497], + [29079,4572], + [29081,3726], + [29083,9258], + [29085,3525], + [29087,2591], + [29089,4795], + [29091,14709], + [29093,3258], + [29095,348003], + [29097,54838], + [29099,112586], + [29101,22133], + [29103,1892], + [29105,15401], + [29107,16563], + [29109,16930], + [29111,4879], + [29113,26015], + [29115,4864], + [29117,7069], + [29119,10195], + [29121,7130], + [29123,5117], + [29125,3691], + [29127,13800], + [29129,1863], + [29131,11289], + [29133,5668], + [29135,7097], + [29137,3811], + [29139,5397], + [29141,7404], + [29143,7358], + [29145,26751], + [29147,10101], + [29149,3786], + [29151,6927], + [29153,3319], + [29155,5984], + [29157,9656], + [29159,19524], + [29161,18576], + [29163,7556], + [29165,55058], + [29167,13555], + [29169,13732], + [29171,2312], + [29173,5344], + [29175,9619], + [29177,10672], + [29179,2932], + [29181,4840], + [29183,213516], + [29185,3592], + [29186,8617], + [29187,25087], + [29189,509429], + [29195,10063], + [29197,1780], + [29199,2333], + [29201,18885], + [29203,3002], + [29205,2941], + [29207,12325], + [29209,12719], + [29211,2598], + [29213,24877], + [29215,8789], + [29217,9130], + [29219,16771], + [29221,9601], + [29223,5157], + [29225,16118], + [29227,1130], + [29229,7163], + [29510,148881], + [30001,4902], + [30003,4791], + [30005,2251], + [30007,2449], + [30009,5212], + [30011,679], + [30013,36457], + [30015,2418], + [30017,6005], + [30019,894], + [30021,4539], + [30023,4951], + [30025,1708], + [30027,5555], + [30029,44321], + [30031,62540], + [30033,748], + [30035,5284], + [30037,361], + [30039,1526], + [30041,7537], + [30043,5402], + [30045,893], + [30047,12608], + [30049,34006], + [30051,951], + [30053,7206], + [30055,998], + [30057,4158], + [30059,874], + [30061,1553], + [30063,60041], + [30065,2195], + [30067,8284], + [30069,264], + [30071,1812], + [30073,2653], + [30075,988], + [30077,2766], + [30079,481], + [30081,18864], + [30083,5830], + [30085,4382], + [30087,3826], + [30089,4471], + [30091,1846], + [30093,16426], + [30095,4652], + [30097,1732], + [30099,2668], + [30101,2089], + [30103,332], + [30105,4051], + [30107,747], + [30109,476], + [30111,78627], + [31001,16034], + [31003,3443], + [31005,211], + [31007,382], + [31009,251], + [31011,2842], + [31013,5384], + [31015,1042], + [31017,1342], + [31019,26392], + [31021,3348], + [31023,4418], + [31025,12729], + [31027,4351], + [31029,2244], + [31031,3302], + [31033,4977], + [31035,3158], + [31037,5413], + [31039,4586], + [31041,6198], + [31043,10215], + [31045,5016], + [31047,12488], + [31049,1007], + [31051,2894], + [31053,18737], + [31055,279395], + [31057,1157], + [31059,3041], + [31061,1431], + [31063,1515], + [31065,2597], + [31067,10503], + [31069,1157], + [31071,1121], + [31073,1010], + [31075,428], + [31077,1176], + [31079,30368], + [31081,4521], + [31083,1706], + [31085,555], + [31087,1183], + [31089,5597], + [31091,384], + [31093,3190], + [31095,4064], + [31097,1990], + [31099,3657], + [31101,4415], + [31103,590], + [31105,1901], + [31107,4528], + [31109,164538], + [31111,17957], + [31113,456], + [31115,380], + [31117,437], + [31119,18612], + [31121,3886], + [31123,2532], + [31125,1961], + [31127,3439], + [31129,2286], + [31131,7838], + [31133,1451], + [31135,1759], + [31137,4793], + [31139,3993], + [31141,16667], + [31143,2796], + [31145,5658], + [31147,4065], + [31149,864], + [31151,7107], + [31153,89675], + [31155,10554], + [31157,17724], + [31159,8487], + [31161,2614], + [31163,1620], + [31165,742], + [31167,3348], + [31169,2784], + [31171,427], + [31173,2839], + [31175,2044], + [31177,10770], + [31179,5497], + [31181,1619], + [31183,552], + [31185,7094], + [32001,10306], + [32003,1016396], + [32005,21676], + [32007,26295], + [32009,504], + [32011,1017], + [32013,7956], + [32015,3027], + [32017,1957], + [32019,20774], + [32021,1887], + [32023,15356], + [32027,2526], + [32029,1871], + [32031,229118], + [32033,4388], + [32510,24316], + [33001,30044], + [33003,22737], + [33005,39416], + [33007,13883], + [33009,47437], + [33011,224597], + [33013,79203], + [33015,176081], + [33017,70660], + [33019,22550], + [34001,112399], + [34003,464527], + [34005,224582], + [34007,243835], + [34009,42780], + [34011,61789], + [34013,349489], + [34015,144412], + [34017,346777], + [34019,62437], + [34021,190683], + [34023,424201], + [34025,317076], + [34027,250447], + [34029,258063], + [34031,231482], + [34033,28061], + [34035,166730], + [34037,71981], + [34039,263748], + [34041,54211], + [35001,308474], + [35003,1074], + [35005,25517], + [35006,8368], + [35007,5321], + [35009,20952], + [35011,802], + [35013,87360], + [35015,27348], + [35017,11405], + [35019,1531], + [35021,257], + [35023,1998], + [35025,25744], + [35027,8179], + [35028,8715], + [35029,8979], + [35031,22130], + [35033,2012], + [35035,23265], + [35037,3011], + [35039,15632], + [35041,7518], + [35043,59972], + [35045,49349], + [35047,10045], + [35049,69133], + [35051,3770], + [35053,6066], + [35055,13790], + [35057,5010], + [35059,1799], + [35061,27857], + [36001,153134], + [36003,18527], + [36005,583116], + [36007,81016], + [36009,32502], + [36011,34291], + [36013,52460], + [36015,33865], + [36017,21372], + [36019,34322], + [36021,30249], + [36023,21746], + [36025,18026], + [36027,138458], + [36029,425362], + [36031,16348], + [36033,18769], + [36035,21954], + [36037,28275], + [36039,19665], + [36041,2152], + [36043,26660], + [36045,42477], + [36047,1188114], + [36049,10939], + [36051,29492], + [36053,30972], + [36055,346201], + [36057,21343], + [36059,678632], + [36061,901733], + [36063,94850], + [36065,96875], + [36067,211199], + [36069,52668], + [36071,173213], + [36073,16738], + [36075,49850], + [36077,26796], + [36079,49150], + [36081,1143025], + [36083,78608], + [36085,216508], + [36087,147720], + [36089,40661], + [36091,113720], + [36093,73008], + [36095,14005], + [36097,7804], + [36099,15518], + [36101,40603], + [36103,747145], + [36105,32885], + [36107,21788], + [36109,48184], + [36111,84798], + [36113,30476], + [36115,27166], + [36117,41803], + [36119,462054], + [36121,17057], + [36123,11179], + [37001,76334], + [37003,17492], + [37005,4101], + [37007,9985], + [37009,12178], + [37011,7362], + [37013,19068], + [37015,7680], + [37017,13599], + [37019,48341], + [37021,132216], + [37023,38848], + [37025,100064], + [37027,34877], + [37029,4471], + [37031,30599], + [37033,9258], + [37035,75123], + [37037,33801], + [37039,10591], + [37041,5310], + [37043,3759], + [37045,45295], + [37047,21079], + [37049,39861], + [37051,120278], + [37053,12692], + [37055,18962], + [37057,76663], + [37059,19508], + [37061,24317], + [37063,158750], + [37065,20409], + [37067,176075], + [37069,28716], + [37071,103677], + [37073,5002], + [37075,2956], + [37077,28877], + [37079,9145], + [37081,247698], + [37083,19135], + [37085,49870], + [37087,27833], + [37089,51222], + [37091,8735], + [37093,18760], + [37095,1941], + [37097,83394], + [37099,18064], + [37101,90069], + [37103,4295], + [37105,25267], + [37107,26844], + [37109,40529], + [37111,20078], + [37113,14498], + [37115,9444], + [37117,9081], + [37119,576068], + [37121,5789], + [37123,11188], + [37125,38118], + [37127,40912], + [37129,113526], + [37131,7276], + [37133,60903], + [37135,73514], + [37137,5156], + [37139,16517], + [37141,26069], + [37143,4821], + [37145,17466], + [37147,84865], + [37149,8567], + [37151,64275], + [37153,15700], + [37155,46953], + [37157,38956], + [37159,62804], + [37161,23096], + [37163,27984], + [37165,10619], + [37167,28585], + [37169,21087], + [37171,32246], + [37173,6587], + [37175,13597], + [37177,1417], + [37179,114557], + [37181,16775], + [37183,550321], + [37185,6395], + [37187,4480], + [37189,27401], + [37191,50752], + [37193,29845], + [37195,33419], + [37197,17043], + [37199,7109], + [38001,1095], + [38003,5368], + [38005,2315], + [38007,424], + [38009,3044], + [38011,1762], + [38013,1070], + [38015,49515], + [38017,100234], + [38019,2046], + [38021,2507], + [38023,1596], + [38025,3143], + [38027,1241], + [38029,1517], + [38031,1634], + [38033,936], + [38035,38347], + [38037,1252], + [38039,1104], + [38041,1499], + [38043,1307], + [38045,2255], + [38047,934], + [38049,3199], + [38051,1217], + [38053,7997], + [38055,4945], + [38057,4341], + [38059,16294], + [38061,6945], + [38063,1457], + [38065,850], + [38067,3428], + [38069,1861], + [38071,5715], + [38073,2797], + [38075,1272], + [38077,8673], + [38079,4387], + [38081,2350], + [38083,695], + [38085,1285], + [38087,419], + [38089,17794], + [38091,1064], + [38093,10817], + [38095,1206], + [38097,4542], + [38099,5461], + [38101,31909], + [38103,2113], + [38105,22436], + [39001,10208], + [39003,46453], + [39005,25073], + [39007,41696], + [39009,26863], + [39011,23813], + [39013,28764], + [39015,18600], + [39017,183840], + [39019,12592], + [39021,19032], + [39023,60721], + [39025,100835], + [39027,16636], + [39029,45151], + [39031,13768], + [39033,17927], + [39035,575119], + [39037,25340], + [39039,17596], + [39041,103168], + [39043,35571], + [39045,74149], + [39047,13866], + [39049,653209], + [39051,21533], + [39053,11356], + [39055,46476], + [39057,78636], + [39059,17758], + [39061,393259], + [39063,40307], + [39065,13658], + [39067,6689], + [39069,12946], + [39071,16126], + [39073,12538], + [39075,20074], + [39077,26259], + [39079,12030], + [39081,26313], + [39083,29860], + [39085,117784], + [39087,23288], + [39089,86043], + [39091,22571], + [39093,142277], + [39095,199256], + [39097,19880], + [39099,97890], + [39101,26604], + [39103,91089], + [39105,8239], + [39107,22978], + [39109,51411], + [39111,4713], + [39113,241211], + [39115,6218], + [39117,16222], + [39119,37426], + [39121,4460], + [39123,19922], + [39125,8468], + [39127,15171], + [39129,25412], + [39131,10124], + [39133,83267], + [39135,20199], + [39137,18329], + [39139,50297], + [39141,32377], + [39143,29866], + [39145,27606], + [39147,26020], + [39149,23148], + [39151,177765], + [39153,260247], + [39155,83207], + [39157,43416], + [39159,27189], + [39161,13862], + [39163,5091], + [39165,111581], + [39167,25910], + [39169,59274], + [39171,18222], + [39173,67581], + [39175,12260], + [40001,7857], + [40003,2868], + [40005,4934], + [40007,2967], + [40009,10915], + [40011,4453], + [40013,19712], + [40015,11812], + [40017,67347], + [40019,21476], + [40021,18040], + [40023,5375], + [40025,1380], + [40027,135278], + [40029,2168], + [40031,47061], + [40033,2743], + [40035,5810], + [40037,29941], + [40039,14852], + [40041,17674], + [40043,2416], + [40045,2163], + [40047,26838], + [40049,12101], + [40051,25035], + [40053,2833], + [40055,1970], + [40057,1239], + [40059,1791], + [40061,4082], + [40063,5128], + [40065,10480], + [40067,2366], + [40069,4784], + [40071,18177], + [40073,8420], + [40075,3736], + [40077,3162], + [40079,18247], + [40081,15176], + [40083,20913], + [40085,6410], + [40087,18348], + [40089,13892], + [40091,6392], + [40093,3882], + [40095,6240], + [40097,18225], + [40099,6188], + [40101,28007], + [40103,5592], + [40105,4365], + [40107,4201], + [40109,362857], + [40111,15131], + [40113,20043], + [40115,13819], + [40117,7053], + [40119,37164], + [40121,16699], + [40123,18019], + [40125,31685], + [40127,4479], + [40129,1811], + [40131,43053], + [40133,8791], + [40135,15662], + [40137,17115], + [40139,9090], + [40141,3123], + [40143,306261], + [40145,35200], + [40147,22079], + [40149,5195], + [40151,4797], + [40153,9018], + [41001,6684], + [41003,46556], + [41005,210756], + [41007,18453], + [41009,22971], + [41011,25174], + [41013,8964], + [41015,8498], + [41017,89533], + [41019,44080], + [41021,829], + [41023,2946], + [41025,3223], + [41027,13841], + [41029,98993], + [41031,9481], + [41033,33487], + [41035,28120], + [41037,3343], + [41039,174281], + [41041,20191], + [41043,55235], + [41045,12028], + [41047,155459], + [41049,5597], + [41051,440545], + [41053,37832], + [41055,854], + [41057,11285], + [41059,35139], + [41061,11430], + [41063,3172], + [41065,13378], + [41067,311718], + [41069,714], + [41071,52507], + [42001,53419], + [42003,615193], + [42005,30667], + [42007,80204], + [42009,22527], + [42011,202309], + [42013,57300], + [42015,27854], + [42017,326960], + [42019,93801], + [42021,56138], + [42023,2049], + [42025,29747], + [42027,75729], + [42029,271053], + [42031,16722], + [42033,33714], + [42035,17182], + [42037,32039], + [42039,37231], + [42041,125031], + [42043,135578], + [42045,281424], + [42047,15218], + [42049,123192], + [42051,53806], + [42053,1709], + [42055,73242], + [42057,6821], + [42059,15838], + [42061,18552], + [42063,36896], + [42065,19418], + [42067,11820], + [42069,100852], + [42071,269590], + [42073,38132], + [42075,67635], + [42077,179294], + [42079,148913], + [42081,54369], + [42083,17029], + [42085,48200], + [42087,19527], + [42089,77141], + [42091,431390], + [42093,8744], + [42095,150948], + [42097,41201], + [42099,23198], + [42101,660073], + [42103,23365], + [42105,6754], + [42107,62412], + [42109,19630], + [42111,31536], + [42113,2622], + [42115,19674], + [42117,18069], + [42119,18966], + [42121,21645], + [42123,18315], + [42125,100896], + [42127,21384], + [42129,172417], + [42131,13224], + [42133,224108], + [44001,25176], + [44003,87306], + [44005,42580], + [44007,308436], + [44009,66369], + [45001,9640], + [45003,71386], + [45005,2553], + [45007,86045], + [45009,4842], + [45011,7594], + [45013,71113], + [45015,94691], + [45017,6493], + [45019,197802], + [45021,22909], + [45023,12776], + [45025,20680], + [45027,11683], + [45029,16036], + [45031,28247], + [45033,11857], + [45035,71413], + [45037,10075], + [45039,9305], + [45041,62379], + [45043,23893], + [45045,238524], + [45047,29482], + [45049,7843], + [45051,136283], + [45053,11783], + [45055,27810], + [45057,37308], + [45059,28869], + [45061,6027], + [45063,142516], + [45065,3230], + [45067,11611], + [45069,8650], + [45071,17720], + [45073,32817], + [45075,32669], + [45077,54320], + [45079,191462], + [45081,8507], + [45083,140420], + [45085,41794], + [45087,11129], + [45089,11603], + [45091,128109], + [46003,1473], + [46005,9082], + [46007,1071], + [46009,2829], + [46011,18222], + [46013,20319], + [46015,2381], + [46017,662], + [46019,4834], + [46021,798], + [46023,3724], + [46025,1809], + [46027,6909], + [46029,14676], + [46031,1360], + [46033,3841], + [46035,10785], + [46037,2719], + [46039,2088], + [46041,2006], + [46043,1573], + [46045,2073], + [46047,2858], + [46049,1070], + [46051,4317], + [46053,1953], + [46055,1055], + [46057,3047], + [46059,1777], + [46061,1671], + [46063,707], + [46065,9760], + [46067,3489], + [46069,669], + [46071,1244], + [46073,1091], + [46075,545], + [46077,2642], + [46079,6219], + [46081,12565], + [46083,31164], + [46085,1659], + [46087,3063], + [46089,1007], + [46091,2276], + [46093,13418], + [46095,720], + [46097,1161], + [46099,106400], + [46101,3834], + [46102,"NA"], + [46103,53838], + [46105,1570], + [46107,1100], + [46109,4579], + [46111,1123], + [46115,3115], + [46117,1801], + [46119,818], + [46121,2958], + [46123,2929], + [46125,4554], + [46127,7634], + [46129,2122], + [46135,11200], + [46137,910], + [47001,32842], + [47003,19735], + [47005,6405], + [47007,4064], + [47009,59667], + [47011,48336], + [47013,14066], + [47015,6014], + [47017,11381], + [47019,22825], + [47021,20367], + [47023,8188], + [47025,12132], + [47027,2928], + [47029,13857], + [47031,24122], + [47033,6671], + [47035,22490], + [47037,377454], + [47039,4414], + [47041,7370], + [47043,24827], + [47045,15352], + [47047,17785], + [47049,6812], + [47051,19154], + [47053,20410], + [47055,15068], + [47057,9014], + [47059,29445], + [47061,4609], + [47063,26215], + [47065,170150], + [47067,1932], + [47069,8785], + [47071,9931], + [47073,22838], + [47075,7458], + [47077,11293], + [47079,13400], + [47081,10422], + [47083,3021], + [47085,8462], + [47087,4342], + [47089,23015], + [47091,7325], + [47093,230043], + [47095,1754], + [47097,8896], + [47099,16994], + [47101,4721], + [47103,15781], + [47105,21799], + [47107,21829], + [47109,8109], + [47111,10262], + [47113,46362], + [47115,11591], + [47117,15018], + [47119,44312], + [47121,4747], + [47123,18950], + [47125,77686], + [47127,3376], + [47129,7489], + [47131,11600], + [47133,9195], + [47135,3086], + [47137,2346], + [47139,7036], + [47141,32807], + [47143,12423], + [47145,22140], + [47147,34901], + [47149,165060], + [47151,7756], + [47153,5787], + [47155,50215], + [47157,420439], + [47159,8678], + [47161,4926], + [47163,67370], + [47165,92939], + [47167,26553], + [47169,3834], + [47171,6667], + [47173,7038], + [47175,2008], + [47177,16521], + [47179,57152], + [47181,5838], + [47183,15125], + [47185,11492], + [47187,114854], + [47189,68315], + [48001,22419], + [48003,8735], + [48005,34757], + [48007,9665], + [48009,3953], + [48011,897], + [48013,20295], + [48015,13391], + [48017,2556], + [48019,9293], + [48021,38709], + [48023,1544], + [48025,9297], + [48027,135305], + [48029,892277], + [48031,6048], + [48033,307], + [48035,7850], + [48037,37537], + [48039,162901], + [48041,109948], + [48043,3784], + [48045,532], + [48047,2226], + [48049,15562], + [48051,7658], + [48053,21451], + [48055,17694], + [48057,9818], + [48059,5628], + [48061,154837], + [48063,4756], + [48065,2963], + [48067,11472], + [48069,3248], + [48071,17306], + [48073,19723], + [48075,2824], + [48077,4626], + [48079,1081], + [48081,1345], + [48083,2934], + [48085,509347], + [48087,1117], + [48089,9693], + [48091,64580], + [48093,5093], + [48095,1156], + [48097,18155], + [48099,23634], + [48101,495], + [48103,1504], + [48105,1620], + [48107,2495], + [48109,880], + [48111,3970], + [48113,1282785], + [48115,4429], + [48117,8084], + [48119,2524], + [48121,449263], + [48123,9160], + [48125,650], + [48127,6150], + [48129,1452], + [48131,4435], + [48133,7513], + [48135,74904], + [48137,875], + [48139,84141], + [48141,337112], + [48143,19883], + [48145,6389], + [48147,15407], + [48149,12224], + [48151,1661], + [48153,2546], + [48155,575], + [48157,352659], + [48159,4325], + [48161,6313], + [48163,8942], + [48165,8959], + [48167,153291], + [48169,2047], + [48171,12853], + [48173,671], + [48175,3084], + [48177,9035], + [48179,7782], + [48181,59857], + [48183,54678], + [48185,10270], + [48187,74946], + [48189,11781], + [48191,1059], + [48193,3465], + [48195,2784], + [48197,1590], + [48199,23511], + [48201,2155485], + [48203,27880], + [48205,2889], + [48207,2317], + [48209,104634], + [48211,2277], + [48213,34090], + [48215,316347], + [48217,15516], + [48219,10851], + [48221,24616], + [48223,16533], + [48225,10109], + [48227,12629], + [48229,1445], + [48231,39860], + [48233,8827], + [48235,751], + [48237,3783], + [48239,7072], + [48241,12384], + [48243,1019], + [48245,99467], + [48247,1757], + [48249,15450], + [48251,74498], + [48253,5335], + [48255,6200], + [48257,57346], + [48259,20070], + [48261,238], + [48263,448], + [48265,20564], + [48267,1830], + [48269,157], + [48271,1087], + [48273,12572], + [48275,1434], + [48277,22685], + [48279,4926], + [48281,8896], + [48283,4048], + [48285,8400], + [48287,9311], + [48289,5770], + [48291,29466], + [48293,7855], + [48295,1580], + [48297,5126], + [48299,8009], + [48301,95], + [48303,150896], + [48305,2618], + [48307,3570], + [48309,113478], + [48311,726], + [48313,4452], + [48315,4104], + [48317,2486], + [48319,1739], + [48321,15703], + [48323,21651], + [48325,20459], + [48327,768], + [48329,86673], + [48331,9551], + [48333,1850], + [48335,2392], + [48337,8718], + [48339,255765], + [48341,10693], + [48343,4251], + [48345,472], + [48347,27325], + [48349,21857], + [48351,4894], + [48353,6503], + [48355,158495], + [48357,4338], + [48359,868], + [48361,34692], + [48363,12859], + [48365,9756], + [48367,60152], + [48369,4791], + [48371,6221], + [48373,16386], + [48375,54137], + [48377,2741], + [48379,5466], + [48381,68303], + [48383,1704], + [48385,989], + [48387,4945], + [48389,6672], + [48391,2932], + [48393,421], + [48395,7007], + [48397,47011], + [48399,4391], + [48401,20995], + [48403,3235], + [48405,2658], + [48407,10792], + [48409,28314], + [48411,2334], + [48413,1289], + [48415,6677], + [48417,1819], + [48419,10229], + [48421,1249], + [48423,101599], + [48425,4028], + [48427,23009], + [48429,3841], + [48431,584], + [48433,600], + [48435,1437], + [48437,2578], + [48439,995339], + [48441,61784], + [48443,372], + [48445,4983], + [48447,662], + [48449,12262], + [48451,52016], + [48453,677830], + [48455,5070], + [48457,6542], + [48459,16689], + [48461,1484], + [48463,11168], + [48465,18991], + [48467,24368], + [48469,40853], + [48471,22536], + [48473,21120], + [48475,5321], + [48477,14229], + [48479,109922], + [48481,20114], + [48483,2261], + [48485,53903], + [48487,4718], + [48489,5609], + [48491,278071], + [48493,23320], + [48495,3066], + [48497,28659], + [48499,16512], + [48501,3683], + [48503,7776], + [48505,5045], + [48507,3306], + [49001,2966], + [49003,24699], + [49005,61291], + [49007,7946], + [49009,421], + [49011,165116], + [49013,7638], + [49015,4035], + [49017,2714], + [49019,5653], + [49021,21450], + [49023,5282], + [49025,3641], + [49027,6294], + [49029,5175], + [49031,466], + [49033,1118], + [49035,602541], + [49037,5399], + [49039,11590], + [49041,9523], + [49043,23839], + [49045,30675], + [49047,13089], + [49049,283950], + [49051,14156], + [49053,68367], + [49055,1363], + [49057,119813], + [50001,20256], + [50003,17770], + [50005,14170], + [50007,93463], + [50009,2555], + [50011,26587], + [50013,3853], + [50015,13543], + [50017,15445], + [50019,13025], + [50021,29839], + [50023,33115], + [50025,22247], + [50027,28508], + [51001,15179], + [51003,53905], + [51005,6509], + [51007,5996], + [51009,14455], + [51011,6709], + [51013,145904], + [51015,35575], + [51017,2371], + [51019,36740], + [51021,2610], + [51023,16705], + [51025,5676], + [51027,6193], + [51029,6060], + [51031,25031], + [51033,14448], + [51035,12392], + [51036,3591], + [51037,5001], + [51041,177184], + [51043,7261], + [51045,2234], + [51047,22926], + [51049,4438], + [51051,4085], + [51053,12976], + [51057,5196], + [51059,610531], + [51061,35199], + [51063,7794], + [51065,13106], + [51067,25157], + [51069,44818], + [51071,7530], + [51073,18655], + [51075,10586], + [51077,6909], + [51079,9860], + [51081,4084], + [51083,14101], + [51085,56179], + [51087,175365], + [51089,21420], + [51091,1201], + [51093,18359], + [51095,34080], + [51097,3630], + [51099,11869], + [51101,8548], + [51103,4870], + [51105,7788], + [51107,205188], + [51109,18420], + [51111,4971], + [51113,7075], + [51115,3938], + [51117,11512], + [51119,5017], + [51121,47952], + [51125,7097], + [51127,11475], + [51131,5087], + [51133,5072], + [51135,6708], + [51137,15903], + [51139,11023], + [51141,7094], + [51143,28201], + [51145,13394], + [51147,9792], + [51149,14477], + [51153,231667], + [51155,15390], + [51157,3615], + [51159,3746], + [51161,47449], + [51163,10155], + [51165,39501], + [51167,10447], + [51169,9009], + [51171,20282], + [51173,12411], + [51175,8512], + [51177,63665], + [51179,67165], + [51181,3540], + [51183,3684], + [51185,14927], + [51187,19290], + [51191,25804], + [51193,8581], + [51195,12106], + [51197,12935], + [51199,31430], + [51510,95761], + [51520,7130], + [51530,3171], + [51540,24767], + [51550,114953], + [51570,8488], + [51580,2230], + [51590,17989], + [51595,2153], + [51600,12864], + [51610,7941], + [51620,3291], + [51630,13222], + [51640,2749], + [51650,61435], + [51660,23462], + [51670,9326], + [51678,2137], + [51680,34043], + [51683,21302], + [51685,8354], + [51690,4879], + [51700,85883], + [51710,106502], + [51720,1538], + [51730,12414], + [51735,6029], + [51740,42134], + [51750,7867], + [51760,111499], + [51770,46910], + [51775,12413], + [51790,11415], + [51800,41684], + [51810,224148], + [51820,9853], + [51830,6460], + [51840,14043], + [53001,8404], + [53003,9833], + [53005,92070], + [53007,42349], + [53009,26023], + [53011,215782], + [53013,1667], + [53015,43224], + [53017,19812], + [53019,2259], + [53021,38294], + [53023,866], + [53025,42475], + [53027,25993], + [53029,32475], + [53031,11285], + [53033,1184708], + [53035,115166], + [53037,21048], + [53039,9465], + [53041,30948], + [53043,4710], + [53045,22272], + [53047,19492], + [53049,7818], + [53051,4381], + [53053,394842], + [53055,7911], + [53057,56167], + [53059,4896], + [53061,403989], + [53063,227426], + [53065,16956], + [53067,128150], + [53069,1214], + [53071,27861], + [53073,104560], + [53075,22426], + [53077,118212], + [54001,6526], + [54003,52462], + [54005,7209], + [54007,4971], + [54009,9252], + [54011,39599], + [54013,2219], + [54015,2903], + [54017,3732], + [54019,14750], + [54021,2261], + [54023,5543], + [54025,14963], + [54027,9745], + [54029,11914], + [54031,5539], + [54033,31278], + [54035,11247], + [54037,27759], + [54039,80029], + [54041,6078], + [54043,6723], + [54045,9950], + [54047,4574], + [54049,24226], + [54051,13009], + [54053,9316], + [54055,20119], + [54057,11272], + [54059,6171], + [54061,50172], + [54063,5772], + [54065,7409], + [54067,8690], + [54069,19582], + [54071,3538], + [54073,2657], + [54075,3519], + [54077,14326], + [54079,24783], + [54081,27942], + [54083,11448], + [54085,4177], + [54087,4680], + [54089,4283], + [54091,7458], + [54093,3222], + [54095,3194], + [54097,8948], + [54099,14651], + [54101,3154], + [54103,6550], + [54105,2023], + [54107,34292], + [54109,6508], + [55001,7893], + [55003,7655], + [55005,23946], + [55007,7149], + [55009,139127], + [55011,6378], + [55013,7006], + [55015,27263], + [55017,32515], + [55019,17461], + [55021,31081], + [55023,7670], + [55025,314607], + [55027,47188], + [55029,15077], + [55031,22712], + [55033,23791], + [55035,57758], + [55037,2200], + [55039,55915], + [55041,3857], + [55043,27506], + [55045,20984], + [55047,9364], + [55049,13559], + [55051,2463], + [55053,10127], + [55055,44516], + [55057,13207], + [55059,86426], + [55061,10934], + [55063,66216], + [55065,9956], + [55067,9314], + [55069,15039], + [55071,40494], + [55073,72132], + [55075,19155], + [55077,7351], + [55078,1492], + [55079,458982], + [55081,22951], + [55083,20058], + [55085,17719], + [55087,101585], + [55089,48106], + [55091,4108], + [55093,24362], + [55095,24122], + [55097,38589], + [55099,6573], + [55101,96065], + [55103,9128], + [55105,82531], + [55107,6727], + [55109,49100], + [55111,34726], + [55113,7671], + [55115,20925], + [55117,61320], + [55119,10888], + [55121,16102], + [55123,15560], + [55125,9744], + [55127,56356], + [55129,7697], + [55131,75684], + [55133,219998], + [55135,25859], + [55137,11103], + [55139,91437], + [55141,33985], + [56001,19888], + [56003,5173], + [56005,21945], + [56007,7641], + [56009,7151], + [56011,3551], + [56013,18327], + [56015,6786], + [56017,2239], + [56019,4022], + [56021,46383], + [56023,8402], + [56025,37467], + [56027,1283], + [56029,15024], + [56031,4605], + [56033,15164], + [56035,4066], + [56037,20599], + [56039,15005], + [56041,8727], + [56043,3947], + [56045,3621] + ] +} diff --git a/data/regional/united-states/economics/government/us-government-federal-spending-2009.json b/data/regional/united-states/economics/government/us-government-federal-spending-2009.json new file mode 100644 index 0000000..b338f4b --- /dev/null +++ b/data/regional/united-states/economics/government/us-government-federal-spending-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Federal Spending", + "description" : "Federal government spending.", + "units" : "$", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","government","federal","spending"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.government.federal.spending.2009"], + [1001,331142000], + [1003,1119082000], + [1005,240308000], + [1007,163201000], + [1009,294114000], + [1011,108846000], + [1013,195055000], + [1015,1830659000], + [1017,294718000], + [1019,184642000], + [1021,276001000], + [1023,147465000], + [1025,252684000], + [1027,125147000], + [1029,102409000], + [1031,1015477000], + [1033,527282000], + [1035,146576000], + [1037,90463000], + [1039,357327000], + [1041,134197000], + [1043,624001000], + [1045,1295209000], + [1047,611206000], + [1049,447088000], + [1051,507314000], + [1053,299086000], + [1055,966534000], + [1057,140438000], + [1059,305125000], + [1061,250317000], + [1063,117112000], + [1065,177021000], + [1067,152058000], + [1069,749924000], + [1071,664456000], + [1073,6996508000], + [1075,145136000], + [1077,751511000], + [1079,228456000], + [1081,772183000], + [1083,515413000], + [1085,114440000], + [1087,319158000], + [1089,9978211000], + [1091,212401000], + [1093,266705000], + [1095,714306000], + [1097,4379855000], + [1099,200300000], + [1101,5085747000], + [1103,819697000], + [1105,130849000], + [1107,214959000], + [1109,303446000], + [1111,188182000], + [1113,449151000], + [1115,479715000], + [1117,1041343000], + [1119,187467000], + [1121,715605000], + [1123,359711000], + [1125,1513973000], + [1127,681873000], + [1129,137659000], + [1131,159172000], + [1133,214085000], + [2013,13979000], + [2016,57275000], + [2020,4358145000], + [2050,340871000], + [2060,59364000], + [2068,78281000], + [2070,55276000], + [2090,1644275000], + [2100,28489000], + [2105,51936000], + [2110,1175633000], + [2122,360397000], + [2130,809321000], + [2150,172657000], + [2158,105266000], + [2164,17199000], + [2170,434891000], + [2180,246246000], + [2185,78974000], + [2188,97176000], + [2195,58260000], + [2198,56974000], + [2220,99421000], + [2230,0], + [2240,141904000], + [2261,127855000], + [2275,0], + [2282,9994000], + [2290,157083000], + [4001,1573639000], + [4003,2487123000], + [4005,1230202000], + [4007,618574000], + [4009,285323000], + [4011,59359000], + [4012,172345000], + [4013,32502698000], + [4015,1422615000], + [4017,1177146000], + [4019,13270204000], + [4021,1799122000], + [4023,445037000], + [4025,1615727000], + [4027,1651299000], + [5001,240068000], + [5003,215103000], + [5005,392298000], + [5007,923179000], + [5009,296431000], + [5011,123471000], + [5013,268464000], + [5015,185213000], + [5017,192851000], + [5019,210392000], + [5021,186757000], + [5023,232506000], + [5025,65992000], + [5027,238163000], + [5029,189584000], + [5031,652407000], + [5033,415944000], + [5035,477663000], + [5037,164284000], + [5039,113949000], + [5041,161758000], + [5043,161003000], + [5045,583777000], + [5047,174846000], + [5049,108025000], + [5051,976403000], + [5053,147266000], + [5055,281843000], + [5057,189178000], + [5059,229485000], + [5061,119972000], + [5063,301757000], + [5065,143416000], + [5067,217937000], + [5069,1026132000], + [5071,162126000], + [5073,85580000], + [5075,233268000], + [5077,145039000], + [5079,124330000], + [5081,108393000], + [5083,192729000], + [5085,417852000], + [5087,111882000], + [5089,134030000], + [5091,351798000], + [5093,451453000], + [5095,131138000], + [5097,80330000], + [5099,98360000], + [5101,72039000], + [5103,313934000], + [5105,79794000], + [5107,336695000], + [5109,82475000], + [5111,268205000], + [5113,184652000], + [5115,411424000], + [5117,93436000], + [5119,5988039000], + [5121,159614000], + [5123,378606000], + [5125,369356000], + [5127,85427000], + [5129,94251000], + [5131,932613000], + [5133,100931000], + [5135,170626000], + [5137,113460000], + [5139,393026000], + [5141,154671000], + [5143,1354700000], + [5145,522076000], + [5147,116128000], + [5149,182533000], + [6001,15190178000], + [6003,7750000], + [6005,274817000], + [6007,1885335000], + [6009,330130000], + [6011,170348000], + [6013,6617496000], + [6015,230544000], + [6017,1061501000], + [6019,5748203000], + [6021,247179000], + [6023,1180218000], + [6025,1333686000], + [6027,199921000], + [6029,5762188000], + [6031,1047443000], + [6033,601507000], + [6035,290865000], + [6037,80457156000], + [6039,827071000], + [6041,1618445000], + [6043,187131000], + [6045,822873000], + [6047,1437763000], + [6049,207556000], + [6051,97079000], + [6053,3156072000], + [6055,1022944000], + [6057,769899000], + [6059,18282849000], + [6061,2007114000], + [6063,223471000], + [6065,10788278000], + [6067,27906779000], + [6069,231843000], + [6071,11788836000], + [6073,35832325000], + [6075,10707798000], + [6077,4210761000], + [6079,1707163000], + [6081,5344205000], + [6083,3704179000], + [6085,17276368000], + [6087,1568971000], + [6089,1903332000], + [6091,34375000], + [6093,479369000], + [6095,3200481000], + [6097,3117386000], + [6099,2956465000], + [6101,569899000], + [6103,471535000], + [6105,151897000], + [6107,2396605000], + [6109,450575000], + [6111,6075467000], + [6113,2236011000], + [6115,873742000], + [8001,2019758000], + [8003,136099000], + [8005,3710641000], + [8007,66501000], + [8009,119260000], + [8011,56929000], + [8013,2646131000], + [8014,442693000], + [8015,120295000], + [8017,59172000], + [8019,49894000], + [8021,78449000], + [8023,48356000], + [8025,32468000], + [8027,29522000], + [8029,245114000], + [8031,8386649000], + [8033,16004000], + [8035,602078000], + [8037,116663000], + [8039,80290000], + [8041,9151644000], + [8043,369168000], + [8045,230877000], + [8047,20081000], + [8049,71592000], + [8051,96880000], + [8053,4436000], + [8055,83607000], + [8057,17845000], + [8059,6038228000], + [8061,39346000], + [8063,106858000], + [8065,30802000], + [8067,291251000], + [8069,1742522000], + [8071,171282000], + [8073,68537000], + [8075,143135000], + [8077,1008256000], + [8079,13569000], + [8081,71232000], + [8083,224742000], + [8085,267797000], + [8087,258033000], + [8089,219727000], + [8091,18078000], + [8093,61612000], + [8095,50252000], + [8097,45978000], + [8099,111927000], + [8101,1358571000], + [8103,46357000], + [8105,102744000], + [8107,74795000], + [8109,54334000], + [8111,7050000], + [8113,52264000], + [8115,51710000], + [8117,79718000], + [8119,113492000], + [8121,65016000], + [8123,1025623000], + [8125,150150000], + [9001,12672130000], + [9003,15544727000], + [9005,1708318000], + [9007,1442119000], + [9009,10789039000], + [9011,6660683000], + [9013,878579000], + [9015,1124175000], + [10001,1902835000], + [10003,3998830000], + [10005,1609865000], + [11001,60719306000], + [12001,2393551000], + [12003,150151000], + [12005,2347564000], + [12007,299076000], + [12009,8093391000], + [12011,11920934000], + [12013,123279000], + [12015,1400977000], + [12017,1275549000], + [12019,1095350000], + [12021,1977185000], + [12023,627409000], + [12027,239640000], + [12029,129524000], + [12031,8833185000], + [12033,3569596000], + [12035,667716000], + [12037,107113000], + [12039,479853000], + [12041,102789000], + [12043,47078000], + [12045,143450000], + [12047,120915000], + [12049,181336000], + [12051,293317000], + [12053,1577743000], + [12055,951849000], + [12057,10688156000], + [12059,223067000], + [12061,1191801000], + [12063,605874000], + [12065,151699000], + [12067,45757000], + [12069,2835352000], + [12071,4181330000], + [12073,8438126000], + [12075,309185000], + [12077,57851000], + [12079,210290000], + [12081,2280113000], + [12083,2784063000], + [12085,1272655000], + [12086,25259635000], + [12087,802465000], + [12089,661877000], + [12091,3885192000], + [12093,347325000], + [12095,10290867000], + [12097,1184001000], + [12099,10165029000], + [12101,3315281000], + [12103,10238689000], + [12105,3978217000], + [12107,705664000], + [12109,1296975000], + [12111,1977557000], + [12113,1072083000], + [12115,3808932000], + [12117,2038171000], + [12119,567699000], + [12121,354616000], + [12123,212978000], + [12125,82638000], + [12127,4172980000], + [12129,154346000], + [12131,713657000], + [12133,266016000], + [13001,137882000], + [13003,68247000], + [13005,85266000], + [13007,29899000], + [13009,310853000], + [13011,70877000], + [13013,328391000], + [13015,471471000], + [13017,147973000], + [13019,134864000], + [13021,1659833000], + [13023,97085000], + [13025,101069000], + [13027,127805000], + [13029,2081939000], + [13031,326279000], + [13033,209335000], + [13035,148869000], + [13037,65305000], + [13039,548548000], + [13043,91117000], + [13045,640249000], + [13047,274824000], + [13049,82855000], + [13051,3131632000], + [13053,2305405000], + [13055,180448000], + [13057,608862000], + [13059,840019000], + [13061,36881000], + [13063,1231445000], + [13065,63474000], + [13067,4073439000], + [13069,265082000], + [13071,353260000], + [13073,1376344000], + [13075,121054000], + [13077,579781000], + [13079,60853000], + [13081,232910000], + [13083,99564000], + [13085,102561000], + [13087,244415000], + [13089,5036572000], + [13091,186064000], + [13093,113395000], + [13095,1094799000], + [13097,491301000], + [13099,115188000], + [13101,13604000], + [13103,200552000], + [13105,195362000], + [13107,238560000], + [13109,82108000], + [13111,191315000], + [13113,632435000], + [13115,671227000], + [13117,385603000], + [13119,175793000], + [13121,16956339000], + [13123,168837000], + [13125,32368000], + [13127,920548000], + [13129,278000000], + [13131,167391000], + [13133,136286000], + [13135,2448315000], + [13137,245537000], + [13139,1014171000], + [13141,93428000], + [13143,179118000], + [13145,165931000], + [13147,171942000], + [13149,63343000], + [13151,781736000], + [13153,2418706000], + [13155,76132000], + [13157,318946000], + [13159,76898000], + [13161,96807000], + [13163,183392000], + [13165,86525000], + [13167,79980000], + [13169,107522000], + [13171,117184000], + [13173,55660000], + [13175,546356000], + [13177,107836000], + [13179,981362000], + [13181,66483000], + [13183,50584000], + [13185,985497000], + [13187,155771000], + [13189,167055000], + [13191,146742000], + [13193,118694000], + [13195,172885000], + [13197,52125000], + [13199,169584000], + [13201,66343000], + [13205,199805000], + [13207,129519000], + [13209,70067000], + [13211,115092000], + [13213,159791000], + [13215,2333975000], + [13217,457572000], + [13219,146127000], + [13221,67384000], + [13223,317035000], + [13225,291507000], + [13227,168634000], + [13229,132825000], + [13231,268105000], + [13233,322882000], + [13235,89823000], + [13237,139519000], + [13239,23644000], + [13241,132699000], + [13243,84944000], + [13245,2803775000], + [13247,351044000], + [13249,32466000], + [13251,125240000], + [13253,88296000], + [13255,443220000], + [13257,246127000], + [13259,62584000], + [13261,290440000], + [13263,61618000], + [13265,21834000], + [13267,175680000], + [13269,82658000], + [13271,166955000], + [13273,107294000], + [13275,382178000], + [13277,325022000], + [13279,218675000], + [13281,100876000], + [13283,54689000], + [13285,499942000], + [13287,88312000], + [13289,116762000], + [13291,168287000], + [13293,205853000], + [13295,463817000], + [13297,429533000], + [13299,386477000], + [13301,65063000], + [13303,180233000], + [13305,231823000], + [13307,20997000], + [13309,53833000], + [13311,144303000], + [13313,475562000], + [13315,78305000], + [13317,106310000], + [13319,131952000], + [13321,155968000], + [15001,1295641000], + [15003,15515938000], + [15005,1228000], + [15007,502523000], + [15009,765346000], + [16001,3122360000], + [16003,33748000], + [16005,580516000], + [16007,47263000], + [16009,103879000], + [16011,273825000], + [16013,78881000], + [16015,46233000], + [16017,329070000], + [16019,2330234000], + [16021,80797000], + [16023,40410000], + [16025,7261000], + [16027,883329000], + [16029,60428000], + [16031,146656000], + [16033,7010000], + [16035,104438000], + [16037,43637000], + [16039,460959000], + [16041,54501000], + [16043,84086000], + [16045,121674000], + [16047,99736000], + [16049,162464000], + [16051,115201000], + [16053,124644000], + [16055,1193926000], + [16057,263666000], + [16059,83037000], + [16061,73067000], + [16063,28142000], + [16065,121324000], + [16067,129786000], + [16069,372692000], + [16071,31269000], + [16073,82037000], + [16075,160192000], + [16077,55458000], + [16079,135693000], + [16081,40340000], + [16083,513996000], + [16085,77656000], + [16087,79961000], + [17001,570465000], + [17003,131706000], + [17005,140028000], + [17007,203453000], + [17009,41330000], + [17011,300447000], + [17013,55708000], + [17015,141925000], + [17017,118104000], + [17019,1410523000], + [17021,257403000], + [17023,122385000], + [17025,123318000], + [17027,234852000], + [17029,371039000], + [17031,44219617000], + [17033,143534000], + [17035,79514000], + [17037,449900000], + [17039,120616000], + [17041,125460000], + [17043,7310954000], + [17045,156735000], + [17047,48415000], + [17049,231616000], + [17051,149280000], + [17053,111387000], + [17055,419181000], + [17057,289916000], + [17059,80272000], + [17061,130187000], + [17063,228436000], + [17065,81295000], + [17067,161554000], + [17069,46780000], + [17071,82417000], + [17073,353535000], + [17075,239332000], + [17077,425625000], + [17079,74263000], + [17081,313808000], + [17083,136471000], + [17085,172585000], + [17087,105760000], + [17089,2698842000], + [17091,769160000], + [17093,345906000], + [17095,426163000], + [17097,4095326000], + [17099,752646000], + [17101,138415000], + [17103,253802000], + [17105,252752000], + [17107,220619000], + [17109,202345000], + [17111,1175766000], + [17113,776442000], + [17115,865101000], + [17117,387076000], + [17119,2118394000], + [17121,390799000], + [17123,94327000], + [17125,145690000], + [17127,134658000], + [17129,84186000], + [17131,116781000], + [17133,166250000], + [17135,237854000], + [17137,298092000], + [17139,114387000], + [17141,282123000], + [17143,1670372000], + [17145,151534000], + [17147,127750000], + [17149,146973000], + [17151,45963000], + [17153,193206000], + [17155,43752000], + [17157,234549000], + [17159,128124000], + [17161,1660770000], + [17163,3233214000], + [17165,294004000], + [17167,5738176000], + [17169,58248000], + [17171,46368000], + [17173,190306000], + [17175,57324000], + [17177,363712000], + [17179,799174000], + [17181,154020000], + [17183,794117000], + [17185,88677000], + [17187,134787000], + [17189,110570000], + [17191,144166000], + [17193,166681000], + [17195,446506000], + [17197,2432250000], + [17199,696352000], + [17201,1916156000], + [17203,183287000], + [18001,196561000], + [18003,3089210000], + [18005,598115000], + [18007,71895000], + [18009,110667000], + [18011,299492000], + [18013,62381000], + [18015,115688000], + [18017,280598000], + [18019,857209000], + [18021,236219000], + [18023,223358000], + [18025,92196000], + [18027,220865000], + [18029,280163000], + [18031,165129000], + [18033,242363000], + [18035,884837000], + [18037,242689000], + [18039,1062820000], + [18041,207263000], + [18043,536489000], + [18045,151189000], + [18047,116053000], + [18049,129013000], + [18051,248148000], + [18053,678533000], + [18055,278549000], + [18057,777441000], + [18059,344951000], + [18061,229122000], + [18063,586188000], + [18065,380601000], + [18067,657661000], + [18069,252684000], + [18071,286115000], + [18073,235204000], + [18075,178328000], + [18077,268022000], + [18079,194597000], + [18081,732944000], + [18083,379725000], + [18085,378415000], + [18087,158790000], + [18089,3948441000], + [18091,751657000], + [18093,352956000], + [18095,1102513000], + [18097,13469746000], + [18099,257771000], + [18101,755901000], + [18103,299143000], + [18105,1051545000], + [18107,338665000], + [18109,411304000], + [18111,88991000], + [18113,229885000], + [18115,41834000], + [18117,147399000], + [18119,128779000], + [18121,125386000], + [18123,149460000], + [18125,103469000], + [18127,877462000], + [18129,167886000], + [18131,98576000], + [18133,216441000], + [18135,212253000], + [18137,202449000], + [18139,138534000], + [18141,4715222000], + [18143,221215000], + [18145,337142000], + [18147,140243000], + [18149,163178000], + [18151,215597000], + [18153,174020000], + [18155,65637000], + [18157,1060080000], + [18159,106155000], + [18161,59962000], + [18163,1504958000], + [18165,241525000], + [18167,999811000], + [18169,240750000], + [18171,53555000], + [18173,287450000], + [18175,185239000], + [18177,614231000], + [18179,151635000], + [18181,208309000], + [18183,254565000], + [19001,78811000], + [19003,46591000], + [19005,114077000], + [19007,146277000], + [19009,61352000], + [19011,170300000], + [19013,972969000], + [19015,205303000], + [19017,177054000], + [19019,153674000], + [19021,149090000], + [19023,136642000], + [19025,117038000], + [19027,187094000], + [19029,137170000], + [19031,129246000], + [19033,373618000], + [19035,105979000], + [19037,111128000], + [19039,98846000], + [19041,134701000], + [19043,158949000], + [19045,483022000], + [19047,148327000], + [19049,227255000], + [19051,72595000], + [19053,88438000], + [19055,127704000], + [19057,461154000], + [19059,129938000], + [19061,631812000], + [19063,107908000], + [19065,193323000], + [19067,163274000], + [19069,103391000], + [19071,113409000], + [19073,97155000], + [19075,90653000], + [19077,96094000], + [19079,150508000], + [19081,95442000], + [19083,168855000], + [19085,152019000], + [19087,138341000], + [19089,95178000], + [19091,89176000], + [19093,61691000], + [19095,115752000], + [19097,165168000], + [19099,245399000], + [19101,116571000], + [19103,1124045000], + [19105,135952000], + [19107,114027000], + [19109,167099000], + [19111,320484000], + [19113,2263605000], + [19115,95790000], + [19117,93400000], + [19119,74748000], + [19121,101574000], + [19123,182041000], + [19125,258675000], + [19127,356923000], + [19129,141577000], + [19131,97896000], + [19133,164793000], + [19135,83172000], + [19137,118987000], + [19139,296086000], + [19141,131628000], + [19143,57138000], + [19145,157719000], + [19147,104354000], + [19149,164047000], + [19151,84499000], + [19153,5104881000], + [19155,759894000], + [19157,163717000], + [19159,68737000], + [19161,98242000], + [19163,1311754000], + [19165,124023000], + [19167,199406000], + [19169,735315000], + [19171,158362000], + [19173,78884000], + [19175,141644000], + [19177,71331000], + [19179,378192000], + [19181,254328000], + [19183,155595000], + [19185,92558000], + [19187,390908000], + [19189,97124000], + [19191,153868000], + [19193,786280000], + [19195,71550000], + [19197,138859000], + [20001,120661000], + [20003,59759000], + [20005,172043000], + [20007,44803000], + [20009,194058000], + [20011,126680000], + [20013,108068000], + [20015,332450000], + [20017,25151000], + [20019,43087000], + [20021,208537000], + [20023,45428000], + [20025,23627000], + [20027,77256000], + [20029,98415000], + [20031,66338000], + [20033,17983000], + [20035,296474000], + [20037,379123000], + [20039,40617000], + [20041,185731000], + [20043,72125000], + [20045,708967000], + [20047,41918000], + [20049,30897000], + [20051,187112000], + [20053,51613000], + [20055,180879000], + [20057,190393000], + [20059,167319000], + [20061,2765299000], + [20063,47037000], + [20065,39526000], + [20067,48562000], + [20069,52184000], + [20071,36314000], + [20073,71971000], + [20075,42924000], + [20077,72343000], + [20079,216814000], + [20081,38782000], + [20083,29599000], + [20085,88332000], + [20087,106920000], + [20089,44073000], + [20091,2551951000], + [20093,43840000], + [20095,77700000], + [20097,43947000], + [20099,210593000], + [20101,32204000], + [20103,2027165000], + [20105,32279000], + [20107,149574000], + [20109,40700000], + [20111,206961000], + [20113,253337000], + [20115,97140000], + [20117,105904000], + [20119,39579000], + [20121,154942000], + [20123,65224000], + [20125,326523000], + [20127,53185000], + [20129,41127000], + [20131,85294000], + [20133,128033000], + [20135,40164000], + [20137,63544000], + [20139,112619000], + [20141,51494000], + [20143,45333000], + [20145,58699000], + [20147,58699000], + [20149,106426000], + [20151,83395000], + [20153,42037000], + [20155,495843000], + [20157,54766000], + [20159,83740000], + [20161,435137000], + [20163,54632000], + [20165,39726000], + [20167,68272000], + [20169,395033000], + [20171,51745000], + [20173,5280199000], + [20175,103382000], + [20177,3057967000], + [20179,39036000], + [20181,82174000], + [20183,51313000], + [20185,57441000], + [20187,42549000], + [20189,56691000], + [20191,216037000], + [20193,86786000], + [20195,34525000], + [20197,77812000], + [20199,37475000], + [20201,65926000], + [20203,41576000], + [20205,87885000], + [20207,34570000], + [20209,1513039000], + [21001,200808000], + [21003,180206000], + [21005,115045000], + [21007,98229000], + [21009,392668000], + [21011,117164000], + [21013,265806000], + [21015,642828000], + [21017,161784000], + [21019,615758000], + [21021,257679000], + [21023,82333000], + [21025,407424000], + [21027,189325000], + [21029,346826000], + [21031,125649000], + [21033,166021000], + [21035,281398000], + [21037,678854000], + [21039,56319000], + [21041,102301000], + [21043,298894000], + [21045,167049000], + [21047,4643462000], + [21049,270358000], + [21051,379336000], + [21053,164061000], + [21055,91251000], + [21057,102462000], + [21059,808174000], + [21061,115136000], + [21063,91892000], + [21065,199414000], + [21067,3043668000], + [21069,144910000], + [21071,567845000], + [21073,2862091000], + [21075,120031000], + [21077,69041000], + [21079,118702000], + [21081,178020000], + [21083,360745000], + [21085,261301000], + [21087,104402000], + [21089,348023000], + [21091,61551000], + [21093,2233375000], + [21095,614835000], + [21097,166535000], + [21099,161622000], + [21101,349992000], + [21103,135804000], + [21105,52921000], + [21107,506248000], + [21109,182161000], + [21111,10420272000], + [21113,268249000], + [21115,305175000], + [21117,1240753000], + [21119,228555000], + [21121,421466000], + [21123,125075000], + [21125,484893000], + [21127,195436000], + [21129,112957000], + [21131,182830000], + [21133,311506000], + [21135,149890000], + [21137,281778000], + [21139,137333000], + [21141,277337000], + [21143,84271000], + [21145,1784515000], + [21147,244719000], + [21149,86488000], + [21151,921425000], + [21153,198969000], + [21155,177190000], + [21157,262593000], + [21159,187625000], + [21161,159129000], + [21163,157307000], + [21165,120290000], + [21167,163857000], + [21169,110735000], + [21171,185333000], + [21173,194049000], + [21175,157420000], + [21177,399010000], + [21179,286153000], + [21181,80897000], + [21183,200774000], + [21185,162772000], + [21187,74867000], + [21189,102227000], + [21191,97894000], + [21193,416826000], + [21195,794326000], + [21197,125413000], + [21199,659180000], + [21201,20904000], + [21203,198453000], + [21205,217847000], + [21207,290456000], + [21209,213022000], + [21211,274551000], + [21213,155699000], + [21215,74564000], + [21217,250941000], + [21219,120843000], + [21221,173930000], + [21223,56363000], + [21225,349009000], + [21227,773220000], + [21229,109677000], + [21231,261827000], + [21233,129411000], + [21235,556822000], + [21237,122539000], + [21239,139991000], + [22001,459879000], + [22003,214479000], + [22005,431597000], + [22007,168714000], + [22009,401356000], + [22011,258934000], + [22013,146246000], + [22015,1198466000], + [22017,2475001000], + [22019,1389662000], + [22021,100014000], + [22023,121413000], + [22025,132792000], + [22027,142188000], + [22029,215415000], + [22031,211972000], + [22033,8980714000], + [22035,114846000], + [22037,156078000], + [22039,351833000], + [22041,234283000], + [22043,198875000], + [22045,575049000], + [22047,305584000], + [22049,169438000], + [22051,4999318000], + [22053,236021000], + [22055,1194363000], + [22057,626106000], + [22059,120784000], + [22061,309447000], + [22063,516405000], + [22065,150808000], + [22067,333427000], + [22069,364840000], + [22071,8558020000], + [22073,1128902000], + [22075,397397000], + [22077,191677000], + [22079,1373768000], + [22081,86953000], + [22083,217156000], + [22085,225086000], + [22087,352585000], + [22089,315478000], + [22091,76106000], + [22093,174032000], + [22095,286584000], + [22097,840209000], + [22099,326826000], + [22101,628337000], + [22103,1364710000], + [22105,928443000], + [22107,87050000], + [22109,838613000], + [22111,194609000], + [22113,417842000], + [22115,1865501000], + [22117,477065000], + [22119,388221000], + [22121,427592000], + [22123,126216000], + [22125,62551000], + [22127,145686000], + [23001,882375000], + [23003,903319000], + [23005,2416729000], + [23007,214918000], + [23009,549752000], + [23011,2149680000], + [23013,355270000], + [23015,283367000], + [23017,455854000], + [23019,1551364000], + [23021,174727000], + [23023,1009575000], + [23025,456243000], + [23027,305539000], + [23029,489014000], + [23031,1619758000], + [24001,979720000], + [24003,8107406000], + [24005,8766789000], + [24009,586857000], + [24011,422667000], + [24013,1118304000], + [24015,743814000], + [24017,1408410000], + [24019,410429000], + [24021,3205577000], + [24023,326431000], + [24025,3390785000], + [24027,2900548000], + [24029,230154000], + [24031,20928101000], + [24033,13372107000], + [24035,323456000], + [24037,3142608000], + [24039,294488000], + [24041,447124000], + [24043,1163510000], + [24045,799587000], + [24047,521533000], + [24510,17406603000], + [25001,2483090000], + [25003,1239858000], + [25005,5495783000], + [25007,118004000], + [25009,9497225000], + [25011,543819000], + [25013,4241182000], + [25015,1180981000], + [25017,21407397000], + [25019,63898000], + [25021,4690227000], + [25023,3434117000], + [25025,16051877000], + [25027,5892563000], + [26001,134327000], + [26003,96776000], + [26005,542898000], + [26007,316279000], + [26009,191878000], + [26011,162463000], + [26013,84605000], + [26015,279859000], + [26017,867855000], + [26019,126673000], + [26021,1269863000], + [26023,279680000], + [26025,1417603000], + [26027,280884000], + [26029,168003000], + [26031,208844000], + [26033,374914000], + [26035,272276000], + [26037,355296000], + [26039,154481000], + [26041,358686000], + [26043,268638000], + [26045,1261287000], + [26047,225309000], + [26049,3495213000], + [26051,224054000], + [26053,195822000], + [26055,611696000], + [26057,300333000], + [26059,302659000], + [26061,352821000], + [26063,301015000], + [26065,6902377000], + [26067,316063000], + [26069,253580000], + [26071,131545000], + [26073,346636000], + [26075,1099940000], + [26077,1650022000], + [26079,98104000], + [26081,3493268000], + [26083,27324000], + [26085,108444000], + [26087,454534000], + [26089,133232000], + [26091,664515000], + [26093,688212000], + [26095,64201000], + [26097,105647000], + [26099,9194603000], + [26101,200254000], + [26103,506298000], + [26105,227495000], + [26107,268124000], + [26109,175129000], + [26111,461496000], + [26113,86856000], + [26115,850940000], + [26117,427661000], + [26119,115311000], + [26121,1267311000], + [26123,268281000], + [26125,8049501000], + [26127,193658000], + [26129,186119000], + [26131,84085000], + [26133,191483000], + [26135,65927000], + [26137,166117000], + [26139,1243575000], + [26141,131210000], + [26143,259425000], + [26145,1756335000], + [26147,1116140000], + [26149,373110000], + [26151,331097000], + [26153,91442000], + [26155,470132000], + [26157,396480000], + [26159,546458000], + [26161,3342109000], + [26163,19357718000], + [26165,376380000], + [27001,176837000], + [27003,1269594000], + [27005,310519000], + [27007,423376000], + [27009,219383000], + [27011,75139000], + [27013,454562000], + [27015,191877000], + [27017,270773000], + [27019,287352000], + [27021,330285000], + [27023,137319000], + [27025,270595000], + [27027,378202000], + [27029,97292000], + [27031,61313000], + [27033,109436000], + [27035,504528000], + [27037,1906253000], + [27039,112481000], + [27041,276546000], + [27043,150437000], + [27045,190650000], + [27047,287456000], + [27049,281520000], + [27051,81202000], + [27053,10995856000], + [27055,130885000], + [27057,158366000], + [27059,177970000], + [27061,385830000], + [27063,98731000], + [27065,104174000], + [27067,367638000], + [27069,81151000], + [27071,133339000], + [27073,110829000], + [27075,95977000], + [27077,44698000], + [27079,178013000], + [27081,83942000], + [27083,225767000], + [27085,210563000], + [27087,73719000], + [27089,135765000], + [27091,184525000], + [27093,152582000], + [27095,221091000], + [27097,309535000], + [27099,344876000], + [27101,90150000], + [27103,154462000], + [27105,179141000], + [27107,95287000], + [27109,743132000], + [27111,503741000], + [27113,146409000], + [27115,227568000], + [27117,91979000], + [27119,330444000], + [27121,114609000], + [27123,6709681000], + [27125,43473000], + [27127,160211000], + [27129,166549000], + [27131,345198000], + [27133,78072000], + [27135,142120000], + [27137,1975343000], + [27139,329709000], + [27141,226567000], + [27143,108270000], + [27145,1001238000], + [27147,204567000], + [27149,104760000], + [27151,123055000], + [27153,211084000], + [27155,71298000], + [27157,199012000], + [27159,146957000], + [27161,167940000], + [27163,646798000], + [27165,93416000], + [27167,85725000], + [27169,315728000], + [27171,462597000], + [27173,135996000], + [28001,521336000], + [28003,321922000], + [28005,110659000], + [28007,185864000], + [28009,71184000], + [28011,400551000], + [28013,137284000], + [28015,75238000], + [28017,176232000], + [28019,69343000], + [28021,86192000], + [28023,145926000], + [28025,162147000], + [28027,333683000], + [28029,294395000], + [28031,169005000], + [28033,636426000], + [28035,940095000], + [28037,70833000], + [28039,145798000], + [28041,69775000], + [28043,218410000], + [28045,927456000], + [28047,2473139000], + [28049,4265497000], + [28051,263574000], + [28053,126997000], + [28055,26910000], + [28057,160635000], + [28059,3179337000], + [28061,152684000], + [28063,108391000], + [28065,132310000], + [28067,519040000], + [28069,108452000], + [28071,297384000], + [28073,197566000], + [28075,749627000], + [28077,136136000], + [28079,181686000], + [28081,593764000], + [28083,378402000], + [28085,252770000], + [28087,677583000], + [28089,861055000], + [28091,234970000], + [28093,306439000], + [28095,292386000], + [28097,139150000], + [28099,271984000], + [28101,261898000], + [28103,129296000], + [28105,388449000], + [28107,302520000], + [28109,409906000], + [28111,88594000], + [28113,367349000], + [28115,169568000], + [28117,233531000], + [28119,115568000], + [28121,724576000], + [28123,232121000], + [28125,67164000], + [28127,198448000], + [28129,106760000], + [28131,130399000], + [28133,293944000], + [28135,143238000], + [28137,211122000], + [28139,188499000], + [28141,193192000], + [28143,102433000], + [28145,189713000], + [28147,131474000], + [28149,795366000], + [28151,643656000], + [28153,143007000], + [28155,90844000], + [28157,83391000], + [28159,156503000], + [28161,143600000], + [28163,549277000], + [29001,203872000], + [29003,100545000], + [29005,89097000], + [29007,208507000], + [29009,284761000], + [29011,107829000], + [29013,141478000], + [29015,189037000], + [29017,104798000], + [29019,1130952000], + [29021,685683000], + [29023,490702000], + [29025,75326000], + [29027,394338000], + [29029,288888000], + [29031,500238000], + [29033,126067000], + [29035,75405000], + [29037,532143000], + [29039,127894000], + [29041,88464000], + [29043,327143000], + [29045,87606000], + [29047,887835000], + [29049,161816000], + [29051,3276951000], + [29053,132978000], + [29055,155571000], + [29057,72197000], + [29059,120077000], + [29061,67102000], + [29063,61298000], + [29065,149413000], + [29067,105494000], + [29069,424482000], + [29071,634059000], + [29073,114249000], + [29075,89068000], + [29077,1902055000], + [29079,109136000], + [29081,99114000], + [29083,211310000], + [29085,94413000], + [29087,67438000], + [29089,90773000], + [29091,335842000], + [29093,104846000], + [29095,8539891000], + [29097,914928000], + [29099,1044970000], + [29101,587836000], + [29103,58109000], + [29105,266605000], + [29107,260728000], + [29109,257198000], + [29111,100079000], + [29113,255710000], + [29115,143232000], + [29117,154361000], + [29119,144541000], + [29121,143878000], + [29123,108291000], + [29125,61597000], + [29127,259475000], + [29129,41578000], + [29131,187198000], + [29133,178747000], + [29135,100464000], + [29137,105347000], + [29139,108175000], + [29141,162678000], + [29143,270372000], + [29145,304978000], + [29147,168089000], + [29149,106156000], + [29151,87624000], + [29153,99283000], + [29155,315971000], + [29157,124112000], + [29159,332418000], + [29161,413452000], + [29163,151257000], + [29165,471449000], + [29167,218620000], + [29169,1667610000], + [29171,56758000], + [29173,72505000], + [29175,213106000], + [29177,136159000], + [29179,73504000], + [29181,150798000], + [29183,1983280000], + [29185,105015000], + [29186,104969000], + [29187,492586000], + [29189,11912948000], + [29195,220575000], + [29197,50933000], + [29199,54868000], + [29201,373548000], + [29203,104275000], + [29205,74872000], + [29207,311373000], + [29209,211407000], + [29211,77531000], + [29213,311542000], + [29215,202709000], + [29217,170500000], + [29219,168237000], + [29221,181118000], + [29223,207341000], + [29225,225607000], + [29227,27309000], + [29229,186244000], + [29510,10004508000], + [30001,86164000], + [30003,157754000], + [30005,105345000], + [30007,39048000], + [30009,71786000], + [30011,26539000], + [30013,1047220000], + [30015,72213000], + [30017,109547000], + [30019,61769000], + [30021,80756000], + [30023,97470000], + [30025,36042000], + [30027,135503000], + [30029,598477000], + [30031,513566000], + [30033,13136000], + [30035,207724000], + [30037,9186000], + [30039,32226000], + [30041,243723000], + [30043,104720000], + [30045,24083000], + [30047,263863000], + [30049,1379751000], + [30051,36081000], + [30053,196309000], + [30055,30458000], + [30057,51267000], + [30059,19710000], + [30061,52292000], + [30063,772655000], + [30065,39769000], + [30067,107589000], + [30069,5178000], + [30071,77499000], + [30073,74825000], + [30075,11782000], + [30077,49501000], + [30079,14043000], + [30081,325373000], + [30083,86361000], + [30085,293632000], + [30087,98343000], + [30089,94007000], + [30091,67049000], + [30093,320381000], + [30095,78074000], + [30097,26407000], + [30099,63434000], + [30101,56677000], + [30103,7124000], + [30105,98878000], + [30107,26251000], + [30109,13820000], + [30111,1043810000], + [31001,230494000], + [31003,97074000], + [31005,2505000], + [31007,8130000], + [31009,3826000], + [31011,54224000], + [31013,94639000], + [31015,24370000], + [31017,33771000], + [31019,267372000], + [31021,78045000], + [31023,68685000], + [31025,199489000], + [31027,79833000], + [31029,44749000], + [31031,44454000], + [31033,83036000], + [31035,67341000], + [31037,75842000], + [31039,75372000], + [31041,107590000], + [31043,102887000], + [31045,70036000], + [31047,196947000], + [31049,33209000], + [31051,55983000], + [31053,258389000], + [31055,4107478000], + [31057,34356000], + [31059,58970000], + [31061,36960000], + [31063,31978000], + [31065,64109000], + [31067,192210000], + [31069,33484000], + [31071,16923000], + [31073,23302000], + [31075,4196000], + [31077,25122000], + [31079,424243000], + [31081,71567000], + [31083,37909000], + [31085,16011000], + [31087,34789000], + [31089,121546000], + [31091,5759000], + [31093,50829000], + [31095,80258000], + [31097,41719000], + [31099,59286000], + [31101,68823000], + [31103,7436000], + [31105,50588000], + [31107,97998000], + [31109,2706750000], + [31111,301084000], + [31113,8581000], + [31115,5928000], + [31117,4684000], + [31119,257983000], + [31121,70574000], + [31123,41133000], + [31125,38772000], + [31127,70635000], + [31129,50227000], + [31131,118243000], + [31133,34608000], + [31135,41525000], + [31137,80122000], + [31139,56670000], + [31141,195589000], + [31143,45805000], + [31145,93651000], + [31147,92225000], + [31149,14305000], + [31151,143497000], + [31153,1438468000], + [31155,165041000], + [31157,314692000], + [31159,94412000], + [31161,49316000], + [31163,37711000], + [31165,6960000], + [31167,36107000], + [31169,57176000], + [31171,18309000], + [31173,106653000], + [31175,50079000], + [31177,110974000], + [31179,56467000], + [31181,45312000], + [31183,11287000], + [31185,103394000], + [32001,392659000], + [32003,11353218000], + [32005,248319000], + [32007,236433000], + [32009,10622000], + [32011,8192000], + [32013,108200000], + [32015,41365000], + [32017,61311000], + [32019,288341000], + [32021,102081000], + [32023,337725000], + [32027,64236000], + [32029,10375000], + [32031,3332808000], + [32033,80297000], + [32510,1469771000], + [33001,455079000], + [33003,338635000], + [33005,486423000], + [33007,316574000], + [33009,882756000], + [33011,3684820000], + [33013,1678698000], + [33015,2137774000], + [33017,808393000], + [33019,400930000], + [34001,2261114000], + [34003,5517452000], + [34005,5413165000], + [34007,4499246000], + [34009,1085172000], + [34011,1248949000], + [34013,8511412000], + [34015,1605119000], + [34017,4884817000], + [34019,593277000], + [34021,6910446000], + [34023,4982989000], + [34025,6899729000], + [34027,3249534000], + [34029,4584860000], + [34031,3678015000], + [34033,494617000], + [34035,1602752000], + [34037,720560000], + [34039,3637804000], + [34041,748436000], + [35001,9568813000], + [35003,38884000], + [35005,517980000], + [35006,177584000], + [35007,154150000], + [35009,670503000], + [35011,31727000], + [35013,1960635000], + [35015,886569000], + [35017,289677000], + [35019,63304000], + [35021,7914000], + [35023,90580000], + [35025,391279000], + [35027,146225000], + [35028,2634341000], + [35029,227764000], + [35031,884812000], + [35033,72689000], + [35035,791764000], + [35037,127584000], + [35039,458324000], + [35041,170014000], + [35043,677880000], + [35045,934517000], + [35047,390022000], + [35049,2044942000], + [35051,154802000], + [35053,211728000], + [35055,315558000], + [35057,114444000], + [35059,44448000], + [35061,480987000], + [36001,11550430000], + [36003,345869000], + [36005,null], + [36007,1723923000], + [36009,962267000], + [36011,568535000], + [36013,1173881000], + [36015,727837000], + [36017,359267000], + [36019,631785000], + [36021,498591000], + [36023,306458000], + [36025,377353000], + [36027,1883350000], + [36029,8582060000], + [36031,355779000], + [36033,399957000], + [36035,377112000], + [36037,453580000], + [36039,342578000], + [36041,43220000], + [36043,456453000], + [36045,3059983000], + [36047,79508143000], + [36049,189159000], + [36051,394546000], + [36053,423096000], + [36055,6810111000], + [36057,418132000], + [36059,11375008000], + [36061,null], + [36063,1728686000], + [36065,2240238000], + [36067,4681460000], + [36069,862839000], + [36071,3083722000], + [36073,273091000], + [36075,779242000], + [36077,457630000], + [36079,468255000], + [36081,null], + [36083,2770482000], + [36085,null], + [36087,1998705000], + [36089,901738000], + [36091,1114540000], + [36093,1762741000], + [36095,228502000], + [36097,130785000], + [36099,223204000], + [36101,893551000], + [36103,11772018000], + [36105,700008000], + [36107,1583160000], + [36109,948613000], + [36111,1237005000], + [36113,497215000], + [36115,411062000], + [36117,677681000], + [36119,6984046000], + [36121,293473000], + [36123,173518000], + [37001,925521000], + [37003,189580000], + [37005,102249000], + [37007,237103000], + [37009,237229000], + [37011,149842000], + [37013,496789000], + [37015,234294000], + [37017,315040000], + [37019,856560000], + [37021,2003540000], + [37023,577049000], + [37025,881452000], + [37027,506009000], + [37029,76586000], + [37031,564758000], + [37033,180280000], + [37035,911821000], + [37037,308320000], + [37039,253460000], + [37041,141251000], + [37043,96605000], + [37045,733486000], + [37047,588643000], + [37049,1491003000], + [37051,9964215000], + [37053,230625000], + [37055,237122000], + [37057,810768000], + [37059,260926000], + [37061,440019000], + [37063,3742693000], + [37065,509453000], + [37067,2536102000], + [37069,345821000], + [37071,1289616000], + [37073,93353000], + [37075,75399000], + [37077,435023000], + [37079,130440000], + [37081,3504160000], + [37083,633852000], + [37085,649939000], + [37087,491680000], + [37089,821823000], + [37091,272461000], + [37093,227309000], + [37095,70512000], + [37097,879759000], + [37099,241479000], + [37101,866111000], + [37103,110535000], + [37105,440973000], + [37107,745447000], + [37109,376798000], + [37111,309591000], + [37113,298982000], + [37115,195083000], + [37117,266319000], + [37119,4560780000], + [37121,158241000], + [37123,205437000], + [37125,722920000], + [37127,744445000], + [37129,1405879000], + [37131,280335000], + [37133,2620186000], + [37135,1618300000], + [37137,120757000], + [37139,476557000], + [37141,331132000], + [37143,129415000], + [37145,283571000], + [37147,1048220000], + [37149,153028000], + [37151,753446000], + [37153,435022000], + [37155,1142486000], + [37157,720098000], + [37159,1052671000], + [37161,484367000], + [37163,495689000], + [37165,346632000], + [37167,393559000], + [37169,265322000], + [37171,559317000], + [37173,174690000], + [37175,263364000], + [37177,46218000], + [37179,665479000], + [37181,408868000], + [37183,8146463000], + [37185,184156000], + [37187,129829000], + [37189,299174000], + [37191,1411533000], + [37193,506157000], + [37195,676769000], + [37197,254498000], + [37199,163413000], + [38001,43890000], + [38003,162991000], + [38005,141758000], + [38007,19547000], + [38009,114914000], + [38011,41047000], + [38013,47170000], + [38015,1182522000], + [38017,1108565000], + [38019,100454000], + [38021,94789000], + [38023,47756000], + [38025,59007000], + [38027,35236000], + [38029,64342000], + [38031,153258000], + [38033,25213000], + [38035,685617000], + [38037,46531000], + [38039,50191000], + [38041,85644000], + [38043,52315000], + [38045,96832000], + [38047,39493000], + [38049,80583000], + [38051,56898000], + [38053,73410000], + [38055,188461000], + [38057,73109000], + [38059,313984000], + [38061,149547000], + [38063,71569000], + [38065,21764000], + [38067,180028000], + [38069,70246000], + [38071,175722000], + [38073,88032000], + [38075,38007000], + [38077,197024000], + [38079,207612000], + [38081,73765000], + [38083,32053000], + [38085,90334000], + [38087,31825000], + [38089,225499000], + [38091,50205000], + [38093,262338000], + [38095,53616000], + [38097,101485000], + [38099,133246000], + [38101,772644000], + [38103,77392000], + [38105,190252000], + [39001,313237000], + [39003,1165292000], + [39005,284657000], + [39007,767955000], + [39009,519275000], + [39011,281040000], + [39013,576818000], + [39015,277400000], + [39017,2022013000], + [39019,155536000], + [39021,255675000], + [39023,1200168000], + [39025,828731000], + [39027,312936000], + [39029,905673000], + [39031,239058000], + [39033,346554000], + [39035,13794527000], + [39037,348398000], + [39039,265370000], + [39041,569129000], + [39043,621498000], + [39045,686297000], + [39047,201985000], + [39049,14632589000], + [39051,256847000], + [39053,299364000], + [39055,362431000], + [39057,3041553000], + [39059,326049000], + [39061,10084805000], + [39063,401733000], + [39065,188093000], + [39067,143135000], + [39069,211505000], + [39071,308078000], + [39073,332415000], + [39075,117217000], + [39077,404602000], + [39079,309444000], + [39081,739529000], + [39083,361776000], + [39085,1416742000], + [39087,597609000], + [39089,1051475000], + [39091,325856000], + [39093,1935784000], + [39095,3598880000], + [39097,262322000], + [39099,2574514000], + [39101,486834000], + [39103,762402000], + [39105,200680000], + [39107,167977000], + [39109,674979000], + [39111,129560000], + [39113,5399104000], + [39115,116273000], + [39117,150651000], + [39119,667182000], + [39121,76571000], + [39123,313150000], + [39125,136239000], + [39127,259291000], + [39129,341288000], + [39131,559392000], + [39133,878120000], + [39135,252354000], + [39137,156657000], + [39139,917920000], + [39141,714429000], + [39143,399569000], + [39145,826404000], + [39147,416950000], + [39149,248585000], + [39151,2729124000], + [39153,4134336000], + [39155,1679469000], + [39157,593850000], + [39159,189362000], + [39161,162505000], + [39163,96079000], + [39165,801143000], + [39167,497067000], + [39169,696533000], + [39171,228485000], + [39173,671051000], + [39175,158775000], + [40001,234965000], + [40003,63738000], + [40005,130756000], + [40007,40119000], + [40009,171614000], + [40011,114013000], + [40013,438007000], + [40015,361063000], + [40017,651788000], + [40019,427090000], + [40021,435769000], + [40023,238069000], + [40025,76244000], + [40027,1466982000], + [40029,65196000], + [40031,2490818000], + [40033,80481000], + [40035,153422000], + [40037,431064000], + [40039,190783000], + [40041,291825000], + [40043,56081000], + [40045,42028000], + [40047,643685000], + [40049,518287000], + [40051,341296000], + [40053,74927000], + [40055,76860000], + [40057,45324000], + [40059,32590000], + [40061,139535000], + [40063,153095000], + [40065,451064000], + [40067,74807000], + [40069,118003000], + [40071,844269000], + [40073,153189000], + [40075,134681000], + [40077,97278000], + [40079,513634000], + [40081,231914000], + [40083,240033000], + [40085,73767000], + [40087,206598000], + [40089,407755000], + [40091,218825000], + [40093,58569000], + [40095,119693000], + [40097,276525000], + [40099,128880000], + [40101,947111000], + [40103,98921000], + [40105,86556000], + [40107,128396000], + [40109,9505319000], + [40111,408028000], + [40113,286185000], + [40115,350730000], + [40117,147328000], + [40119,541758000], + [40121,510052000], + [40123,369856000], + [40125,619414000], + [40127,212362000], + [40129,33812000], + [40131,512098000], + [40133,289495000], + [40135,367561000], + [40137,380086000], + [40139,152322000], + [40141,119374000], + [40143,4295365000], + [40145,271227000], + [40147,337308000], + [40149,122308000], + [40151,93609000], + [40153,111764000], + [41001,171016000], + [41003,600481000], + [41005,2206421000], + [41007,356029000], + [41009,329573000], + [41011,643165000], + [41013,173511000], + [41015,225362000], + [41017,897936000], + [41019,1045528000], + [41021,27482000], + [41023,74946000], + [41025,83395000], + [41027,158344000], + [41029,1517561000], + [41031,138983000], + [41033,728078000], + [41035,644102000], + [41037,83629000], + [41039,2703125000], + [41041,417713000], + [41043,836642000], + [41045,233241000], + [41047,3907737000], + [41049,88041000], + [41051,7798095000], + [41053,452492000], + [41055,49833000], + [41057,245110000], + [41059,834279000], + [41061,214507000], + [41063,72764000], + [41065,275377000], + [41067,2147991000], + [41069,12585000], + [41071,554564000], + [42001,694554000], + [42003,17220254000], + [42005,698238000], + [42007,1541327000], + [42009,407092000], + [42011,2542863000], + [42013,1281672000], + [42015,472717000], + [42017,3833253000], + [42019,1544588000], + [42021,2544973000], + [42023,54294000], + [42025,497620000], + [42027,1316768000], + [42029,4383451000], + [42031,348244000], + [42033,700815000], + [42035,329100000], + [42037,498759000], + [42039,725180000], + [42041,2284049000], + [42043,5803841000], + [42045,6089156000], + [42047,276842000], + [42049,2174397000], + [42051,1663346000], + [42053,62943000], + [42055,1331830000], + [42057,229067000], + [42059,451573000], + [42061,363336000], + [42063,783585000], + [42065,420892000], + [42067,162641000], + [42069,2436983000], + [42071,2905940000], + [42073,909044000], + [42075,1317849000], + [42077,2185438000], + [42079,3284998000], + [42081,951774000], + [42083,406262000], + [42085,1066668000], + [42087,388689000], + [42089,2132658000], + [42091,7097470000], + [42093,145833000], + [42095,2489176000], + [42097,808808000], + [42099,275134000], + [42101,22582167000], + [42103,323415000], + [42105,152375000], + [42107,1283433000], + [42109,228073000], + [42111,715244000], + [42113,71550000], + [42115,305939000], + [42117,354114000], + [42119,388587000], + [42121,490775000], + [42123,385786000], + [42125,1957674000], + [42127,448698000], + [42129,3286560000], + [42131,203625000], + [42133,4098310000], + [44001,365393000], + [44003,1357742000], + [44005,1588837000], + [44007,6405131000], + [44009,1012953000], + [45001,169972000], + [45003,4796842000], + [45005,108468000], + [45007,1166583000], + [45009,170071000], + [45011,208053000], + [45013,1416915000], + [45015,1310699000], + [45017,93925000], + [45019,6711292000], + [45021,330458000], + [45023,244932000], + [45025,346694000], + [45027,324434000], + [45029,409218000], + [45031,522381000], + [45033,270103000], + [45035,741905000], + [45037,170952000], + [45039,186200000], + [45041,1121065000], + [45043,563946000], + [45045,4027788000], + [45047,498891000], + [45049,226814000], + [45051,1640494000], + [45053,180389000], + [45055,407233000], + [45057,420230000], + [45059,516814000], + [45061,165270000], + [45063,1316879000], + [45065,119758000], + [45067,356025000], + [45069,294649000], + [45071,291488000], + [45073,497567000], + [45075,841057000], + [45077,747524000], + [45079,6786210000], + [45081,117340000], + [45083,1750654000], + [45085,1396370000], + [45087,233137000], + [45089,362107000], + [45091,1128433000], + [46003,71924000], + [46005,188677000], + [46007,34177000], + [46009,62067000], + [46011,217251000], + [46013,428804000], + [46015,63310000], + [46017,26664000], + [46019,71113000], + [46021,29583000], + [46023,121685000], + [46025,53766000], + [46027,123951000], + [46029,211373000], + [46031,58156000], + [46033,83781000], + [46035,159458000], + [46037,99820000], + [46039,42266000], + [46041,90427000], + [46043,35924000], + [46045,49772000], + [46047,127566000], + [46049,40284000], + [46051,77714000], + [46053,43906000], + [46055,26286000], + [46057,44981000], + [46059,47943000], + [46061,43470000], + [46063,15219000], + [46065,643476000], + [46067,88554000], + [46069,19631000], + [46071,40627000], + [46073,22907000], + [46075,13194000], + [46077,73983000], + [46079,104616000], + [46081,163227000], + [46083,98651000], + [46085,58376000], + [46087,65729000], + [46089,33950000], + [46091,61679000], + [46093,275186000], + [46095,20201000], + [46097,38756000], + [46099,1944871000], + [46101,86932000], + [46102,244464000], + [46103,1029685000], + [46105,55856000], + [46107,41946000], + [46109,130063000], + [46111,31899000], + [46115,104064000], + [46117,36930000], + [46119,32289000], + [46121,176903000], + [46123,53367000], + [46125,71047000], + [46127,374552000], + [46129,51896000], + [46135,168014000], + [46137,19153000], + [47001,4675106000], + [47003,278664000], + [47005,173684000], + [47007,100097000], + [47009,857013000], + [47011,676577000], + [47013,475365000], + [47015,116422000], + [47017,324804000], + [47019,462165000], + [47021,190476000], + [47023,124556000], + [47025,344551000], + [47027,125067000], + [47029,369847000], + [47031,986542000], + [47033,157900000], + [47035,430859000], + [47037,8592825000], + [47039,141230000], + [47041,166911000], + [47043,318948000], + [47045,390990000], + [47047,282768000], + [47049,209809000], + [47051,351096000], + [47053,638712000], + [47055,300401000], + [47057,205510000], + [47059,600571000], + [47061,146311000], + [47063,526893000], + [47065,3427904000], + [47067,94647000], + [47069,397423000], + [47071,277176000], + [47073,480639000], + [47075,240891000], + [47077,243294000], + [47079,334949000], + [47081,208432000], + [47083,88123000], + [47085,399195000], + [47087,105424000], + [47089,399969000], + [47091,187928000], + [47093,3874887000], + [47095,89868000], + [47097,289806000], + [47099,395736000], + [47101,100742000], + [47103,280570000], + [47105,538383000], + [47107,431416000], + [47109,348142000], + [47111,167101000], + [47113,846104000], + [47115,250485000], + [47117,226068000], + [47119,554547000], + [47121,102958000], + [47123,382928000], + [47125,1036809000], + [47127,28557000], + [47129,170654000], + [47131,358250000], + [47133,214390000], + [47135,82818000], + [47137,57312000], + [47139,205753000], + [47141,672656000], + [47143,285667000], + [47145,598657000], + [47147,376452000], + [47149,1681295000], + [47151,272430000], + [47153,111963000], + [47155,587843000], + [47157,8657013000], + [47159,222105000], + [47161,161915000], + [47163,1459526000], + [47165,954479000], + [47167,425037000], + [47169,63264000], + [47171,277976000], + [47173,134164000], + [47175,42754000], + [47177,376694000], + [47179,1181679000], + [47181,162860000], + [47183,303635000], + [47185,219996000], + [47187,655318000], + [47189,615145000], + [48001,421849000], + [48003,78267000], + [48005,638646000], + [48007,167254000], + [48009,91956000], + [48011,30331000], + [48013,271005000], + [48015,2782181000], + [48017,65952000], + [48019,139680000], + [48021,396333000], + [48023,59872000], + [48025,232411000], + [48027,8688950000], + [48029,19444429000], + [48031,89136000], + [48033,5881000], + [48035,161553000], + [48037,1204377000], + [48039,1305223000], + [48041,1220876000], + [48043,91608000], + [48045,25689000], + [48047,183782000], + [48049,319483000], + [48051,142380000], + [48053,298236000], + [48055,236502000], + [48057,150479000], + [48059,104324000], + [48061,2572745000], + [48063,113390000], + [48065,54703000], + [48067,300507000], + [48069,76493000], + [48071,222966000], + [48073,328005000], + [48075,63400000], + [48077,74253000], + [48079,41877000], + [48081,27242000], + [48083,114975000], + [48085,3371728000], + [48087,51953000], + [48089,171058000], + [48091,743674000], + [48093,133011000], + [48095,39337000], + [48097,234015000], + [48099,509591000], + [48101,24234000], + [48103,20634000], + [48105,24301000], + [48107,73585000], + [48109,29175000], + [48111,66054000], + [48113,17621936000], + [48115,143793000], + [48117,148277000], + [48119,56200000], + [48121,1914745000], + [48123,174169000], + [48125,37199000], + [48127,119429000], + [48129,35452000], + [48131,168296000], + [48133,181421000], + [48135,712934000], + [48137,28117000], + [48139,716339000], + [48141,8651993000], + [48143,220042000], + [48145,189018000], + [48147,547464000], + [48149,214994000], + [48151,50619000], + [48153,84265000], + [48155,29923000], + [48157,1443109000], + [48159,65752000], + [48161,130591000], + [48163,174166000], + [48165,117033000], + [48167,4132006000], + [48169,42458000], + [48171,182308000], + [48173,13569000], + [48175,66165000], + [48177,267606000], + [48179,177407000], + [48181,838539000], + [48183,919364000], + [48185,176463000], + [48187,742266000], + [48189,287023000], + [48191,55287000], + [48193,73602000], + [48195,45308000], + [48197,50978000], + [48199,318462000], + [48201,29940175000], + [48203,476253000], + [48205,24456000], + [48207,77622000], + [48209,658768000], + [48211,27395000], + [48213,476140000], + [48215,3824184000], + [48217,342838000], + [48219,194455000], + [48221,323011000], + [48223,239330000], + [48225,231949000], + [48227,502848000], + [48229,40703000], + [48231,2037390000], + [48233,148370000], + [48235,14228000], + [48237,48105000], + [48239,121057000], + [48241,309719000], + [48243,16710000], + [48245,2240568000], + [48247,76512000], + [48249,406674000], + [48251,756101000], + [48253,162003000], + [48255,147205000], + [48257,616312000], + [48259,259170000], + [48261,4012000], + [48263,9791000], + [48265,438119000], + [48267,33791000], + [48269,6722000], + [48271,42747000], + [48273,380088000], + [48275,60259000], + [48277,444311000], + [48279,137879000], + [48281,165861000], + [48283,73470000], + [48285,200993000], + [48287,94523000], + [48289,181185000], + [48291,489888000], + [48293,209675000], + [48295,20939000], + [48297,117618000], + [48299,147093000], + [48301,871000], + [48303,1760477000], + [48305,85142000], + [48307,84440000], + [48309,1871880000], + [48311,7201000], + [48313,74545000], + [48315,105564000], + [48317,55080000], + [48319,33865000], + [48321,816342000], + [48323,395854000], + [48325,299511000], + [48327,24134000], + [48329,621592000], + [48331,207874000], + [48333,49349000], + [48335,68375000], + [48337,164208000], + [48339,2015347000], + [48341,86996000], + [48343,130023000], + [48345,20274000], + [48347,469493000], + [48349,406982000], + [48351,108326000], + [48353,131443000], + [48355,3267567000], + [48357,50456000], + [48359,20356000], + [48361,963010000], + [48363,191781000], + [48365,177005000], + [48367,523112000], + [48369,80735000], + [48371,83729000], + [48373,495945000], + [48375,4049271000], + [48377,87500000], + [48379,68205000], + [48381,268686000], + [48383,18532000], + [48385,34403000], + [48387,169998000], + [48389,96678000], + [48391,77835000], + [48393,6258000], + [48395,162099000], + [48397,548113000], + [48399,119744000], + [48401,304864000], + [48403,138513000], + [48405,103462000], + [48407,139773000], + [48409,583760000], + [48411,73862000], + [48413,21435000], + [48415,125201000], + [48417,26295000], + [48419,261995000], + [48421,39026000], + [48423,1623227000], + [48425,41472000], + [48427,411714000], + [48429,71365000], + [48431,8368000], + [48433,20475000], + [48435,21229000], + [48437,94829000], + [48439,8195152000], + [48441,1241230000], + [48443,16374000], + [48445,129345000], + [48447,28906000], + [48449,199227000], + [48451,941786000], + [48453,16949198000], + [48455,142980000], + [48457,167330000], + [48459,260274000], + [48461,24520000], + [48463,208482000], + [48465,547240000], + [48467,337446000], + [48469,562620000], + [48471,339320000], + [48473,219327000], + [48475,73708000], + [48477,263454000], + [48479,1566033000], + [48481,352603000], + [48483,52513000], + [48485,1425375000], + [48487,135305000], + [48489,173401000], + [48491,2069520000], + [48493,220705000], + [48495,48733000], + [48497,257382000], + [48499,351867000], + [48501,54723000], + [48503,149311000], + [48505,93818000], + [48507,107104000], + [49001,62923000], + [49003,1059208000], + [49005,532009000], + [49007,190046000], + [49009,17383000], + [49011,2903457000], + [49013,118658000], + [49015,85500000], + [49017,49603000], + [49019,240030000], + [49021,230734000], + [49023,80316000], + [49025,51941000], + [49027,87983000], + [49029,43477000], + [49031,21819000], + [49033,12736000], + [49035,8506459000], + [49037,254115000], + [49039,163064000], + [49041,162266000], + [49043,127593000], + [49045,625510000], + [49047,166918000], + [49049,1924110000], + [49051,81146000], + [49053,939464000], + [49055,23570000], + [49057,2055289000], + [50001,344451000], + [50003,288524000], + [50005,247714000], + [50007,1705416000], + [50009,75425000], + [50011,415662000], + [50013,46508000], + [50015,184013000], + [50017,222327000], + [50019,254339000], + [50021,582726000], + [50023,1035304000], + [50025,330110000], + [50027,634296000], + [51001,449275000], + [51003,782468000], + [51005,99407000], + [51007,76086000], + [51009,197436000], + [51011,87173000], + [51013,14635304000], + [51015,305907000], + [51017,45058000], + [51019,372634000], + [51021,100734000], + [51023,205827000], + [51025,157314000], + [51027,264436000], + [51029,96762000], + [51031,342757000], + [51033,215023000], + [51035,189911000], + [51036,57301000], + [51037,121470000], + [51041,1170416000], + [51043,148039000], + [51045,31986000], + [51047,257428000], + [51049,55862000], + [51051,158877000], + [51053,151684000], + [51057,87161000], + [51059,28826796000], + [51061,426645000], + [51063,88810000], + [51065,132875000], + [51067,291222000], + [51069,290395000], + [51071,142738000], + [51073,254736000], + [51075,107091000], + [51077,114952000], + [51079,79428000], + [51081,38502000], + [51083,314928000], + [51085,690432000], + [51087,1403002000], + [51089,311786000], + [51091,21888000], + [51093,241012000], + [51095,230998000], + [51097,48689000], + [51099,894304000], + [51101,88944000], + [51103,133638000], + [51105,475866000], + [51107,2792093000], + [51109,199206000], + [51111,88706000], + [51113,85081000], + [51115,92162000], + [51117,366408000], + [51119,100669000], + [51121,713253000], + [51125,142261000], + [51127,92645000], + [51131,155690000], + [51133,122019000], + [51135,261175000], + [51137,250259000], + [51139,173994000], + [51141,140760000], + [51143,368501000], + [51145,129067000], + [51147,165297000], + [51149,1632961000], + [51153,3951425000], + [51155,258565000], + [51157,63700000], + [51159,74436000], + [51161,565398000], + [51163,141839000], + [51165,334772000], + [51167,270151000], + [51169,231681000], + [51171,276222000], + [51173,277260000], + [51175,121958000], + [51177,624804000], + [51179,682505000], + [51181,50782000], + [51183,106673000], + [51185,418505000], + [51187,206865000], + [51191,369258000], + [51193,180764000], + [51195,478284000], + [51197,247386000], + [51199,734247000], + [51510,4627257000], + [51520,230494000], + [51530,58457000], + [51540,867841000], + [51550,1684014000], + [51570,379828000], + [51580,116395000], + [51590,477635000], + [51595,86591000], + [51600,1017265000], + [51610,1156612000], + [51620,113408000], + [51630,385858000], + [51640,105068000], + [51650,3339133000], + [51660,203904000], + [51670,210575000], + [51678,99336000], + [51680,1264105000], + [51683,954162000], + [51685,32735000], + [51690,218519000], + [51700,5872177000], + [51710,6061748000], + [51720,66306000], + [51730,426399000], + [51735,56762000], + [51740,2043880000], + [51750,262718000], + [51760,6151563000], + [51770,1205225000], + [51775,419202000], + [51790,259780000], + [51800,954772000], + [51810,4577634000], + [51820,175454000], + [51830,325636000], + [51840,336758000], + [53001,155696000], + [53003,175386000], + [53005,5950194000], + [53007,527441000], + [53009,758644000], + [53011,2437432000], + [53013,51374000], + [53015,755327000], + [53017,224702000], + [53019,63435000], + [53021,413958000], + [53023,37498000], + [53025,583558000], + [53027,648778000], + [53029,860440000], + [53031,307227000], + [53033,17273927000], + [53035,3504055000], + [53037,254598000], + [53039,207024000], + [53041,645257000], + [53043,131535000], + [53045,454044000], + [53047,373060000], + [53049,225061000], + [53051,122839000], + [53053,10024949000], + [53055,97381000], + [53057,819850000], + [53059,61629000], + [53061,3594477000], + [53063,3817172000], + [53065,332493000], + [53067,4402353000], + [53069,43771000], + [53071,531894000], + [53073,1741159000], + [53075,399158000], + [53077,1776388000], + [54001,142452000], + [54003,1029270000], + [54005,207606000], + [54007,136925000], + [54009,207603000], + [54011,1017239000], + [54013,79292000], + [54015,95835000], + [54017,46802000], + [54019,493403000], + [54021,94380000], + [54023,148971000], + [54025,320350000], + [54027,152590000], + [54029,309242000], + [54031,123012000], + [54033,955507000], + [54035,233208000], + [54037,500076000], + [54039,3087768000], + [54041,163400000], + [54043,205779000], + [54045,418951000], + [54047,346794000], + [54049,578946000], + [54051,233750000], + [54053,218996000], + [54055,642566000], + [54057,333669000], + [54059,378598000], + [54061,903377000], + [54063,144956000], + [54065,110881000], + [54067,228029000], + [54069,492732000], + [54071,80523000], + [54073,50102000], + [54075,78560000], + [54077,457291000], + [54079,363429000], + [54081,888634000], + [54083,273506000], + [54085,85790000], + [54087,130411000], + [54089,178442000], + [54091,123109000], + [54093,61238000], + [54095,65103000], + [54097,179294000], + [54099,479428000], + [54101,101271000], + [54103,151945000], + [54105,47752000], + [54107,891468000], + [54109,249079000], + [55001,154229000], + [55003,172898000], + [55005,341738000], + [55007,130645000], + [55009,1413339000], + [55011,120031000], + [55013,133452000], + [55015,167546000], + [55017,403801000], + [55019,236077000], + [55021,466252000], + [55023,121704000], + [55025,6303066000], + [55027,380340000], + [55029,295533000], + [55031,367603000], + [55033,252448000], + [55035,633243000], + [55037,35513000], + [55039,607555000], + [55041,97864000], + [55043,365475000], + [55045,218167000], + [55047,172105000], + [55049,138436000], + [55051,58977000], + [55053,157852000], + [55055,539167000], + [55057,241411000], + [55059,1045482000], + [55061,124772000], + [55063,763677000], + [55065,127451000], + [55067,170367000], + [55069,231825000], + [55071,557173000], + [55073,865088000], + [55075,482690000], + [55077,131298000], + [55078,71642000], + [55079,8285520000], + [55081,701397000], + [55083,229091000], + [55085,322480000], + [55087,924666000], + [55089,418757000], + [55091,55882000], + [55093,220425000], + [55095,276888000], + [55097,413448000], + [55099,130389000], + [55101,1327584000], + [55103,125166000], + [55105,1215976000], + [55107,128909000], + [55109,329084000], + [55111,434369000], + [55113,166177000], + [55115,284160000], + [55117,735886000], + [55119,119061000], + [55121,216262000], + [55123,208139000], + [55125,204829000], + [55127,534544000], + [55129,168835000], + [55131,647554000], + [55133,2009198000], + [55135,501036000], + [55137,165709000], + [55139,7263351000], + [55141,571864000], + [56001,272995000], + [56003,119555000], + [56005,143326000], + [56007,280840000], + [56009,66731000], + [56011,51332000], + [56013,340412000], + [56015,116520000], + [56017,47300000], + [56019,69417000], + [56021,1567868000], + [56023,87920000], + [56025,499583000], + [56027,56107000], + [56029,304988000], + [56031,98999000], + [56033,278939000], + [56035,44769000], + [56037,221752000], + [56039,132810000], + [56041,96068000], + [56043,74355000], + [56045,48256000] + ] +} diff --git a/data/regional/united-states/economics/homeownership/us-homeownership-2010.json b/data/regional/united-states/economics/homeownership/us-homeownership-2010.json new file mode 100644 index 0000000..8904867 --- /dev/null +++ b/data/regional/united-states/economics/homeownership/us-homeownership-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Home Ownership Rate", + "description" : "Percent of housing units that are owner occupied.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","housing","investment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.homeownership.2010"], + [1001,0.775], + [1003,0.767], + [1005,0.68], + [1007,0.829], + [1009,0.82], + [1011,0.769], + [1013,0.69], + [1015,0.707], + [1017,0.714], + [1019,0.775], + [1021,0.751], + [1023,0.856], + [1025,0.8], + [1027,0.728], + [1029,0.749], + [1031,0.697], + [1033,0.735], + [1035,0.816], + [1037,0.837], + [1039,0.74], + [1041,0.678], + [1043,0.747], + [1045,0.612], + [1047,0.626], + [1049,0.775], + [1051,0.776], + [1053,0.735], + [1055,0.73], + [1057,0.76], + [1059,0.692], + [1061,0.716], + [1063,0.711], + [1065,0.743], + [1067,0.819], + [1069,0.674], + [1071,0.766], + [1073,0.668], + [1075,0.751], + [1077,0.73], + [1079,0.787], + [1081,0.642], + [1083,0.771], + [1085,0.754], + [1087,0.68], + [1089,0.704], + [1091,0.735], + [1093,0.758], + [1095,0.725], + [1097,0.684], + [1099,0.738], + [1101,0.632], + [1103,0.731], + [1105,0.678], + [1107,0.741], + [1109,0.563], + [1111,0.759], + [1113,0.623], + [1115,0.822], + [1117,0.806], + [1119,0.683], + [1121,0.73], + [1123,0.733], + [1125,0.633], + [1127,0.777], + [1129,0.83], + [1131,0.768], + [1133,0.738], + [2013,0.592], + [2016,0.363], + [2020,0.617], + [2050,0.613], + [2060,0.566], + [2068,0.607], + [2070,0.607], + [2090,0.598], + [2100,0.745], + [2105,0.64], + [2110,0.64], + [2122,0.727], + [2130,0.591], + [2150,0.592], + [2158,0.648], + [2164,0.75], + [2170,0.792], + [2180,0.562], + [2185,0.483], + [2188,0.537], + [2195,0.767], + [2198,0.69], + [2220,0.559], + [2230,0.591], + [2240,0.652], + [2261,0.718], + [2275,0.787], + [2282,0.611], + [2290,0.691], + [4001,0.763], + [4003,0.69], + [4005,0.612], + [4007,0.783], + [4009,0.72], + [4011,0.469], + [4012,0.754], + [4013,0.663], + [4015,0.715], + [4017,0.725], + [4019,0.646], + [4021,0.777], + [4023,0.71], + [4025,0.725], + [4027,0.696], + [5001,0.644], + [5003,0.724], + [5005,0.766], + [5007,0.701], + [5009,0.727], + [5011,0.702], + [5013,0.821], + [5015,0.695], + [5017,0.696], + [5019,0.676], + [5021,0.74], + [5023,0.779], + [5025,0.78], + [5027,0.698], + [5029,0.758], + [5031,0.612], + [5033,0.73], + [5035,0.582], + [5037,0.707], + [5039,0.705], + [5041,0.591], + [5043,0.675], + [5045,0.664], + [5047,0.788], + [5049,0.796], + [5051,0.701], + [5053,0.803], + [5055,0.657], + [5057,0.684], + [5059,0.76], + [5061,0.696], + [5063,0.728], + [5065,0.797], + [5067,0.698], + [5069,0.644], + [5071,0.688], + [5073,0.792], + [5075,0.672], + [5077,0.663], + [5079,0.693], + [5081,0.712], + [5083,0.791], + [5085,0.744], + [5087,0.753], + [5089,0.816], + [5091,0.663], + [5093,0.599], + [5095,0.614], + [5097,0.828], + [5099,0.713], + [5101,0.797], + [5103,0.698], + [5105,0.817], + [5107,0.547], + [5109,0.748], + [5111,0.664], + [5113,0.774], + [5115,0.697], + [5117,0.726], + [5119,0.604], + [5121,0.766], + [5123,0.587], + [5125,0.777], + [5127,0.751], + [5129,0.75], + [5131,0.634], + [5133,0.742], + [5135,0.808], + [5137,0.804], + [5139,0.712], + [5141,0.785], + [5143,0.563], + [5145,0.69], + [5147,0.615], + [5149,0.701], + [6001,0.551], + [6003,0.734], + [6005,0.773], + [6007,0.612], + [6009,0.788], + [6011,0.644], + [6013,0.695], + [6015,0.609], + [6017,0.765], + [6019,0.55], + [6021,0.675], + [6023,0.576], + [6025,0.566], + [6027,0.64], + [6029,0.614], + [6031,0.56], + [6033,0.671], + [6035,0.637], + [6037,0.482], + [6039,0.63], + [6041,0.64], + [6043,0.7], + [6045,0.628], + [6047,0.559], + [6049,0.702], + [6051,0.564], + [6053,0.534], + [6055,0.651], + [6057,0.74], + [6059,0.608], + [6061,0.729], + [6063,0.656], + [6065,0.7], + [6067,0.595], + [6069,0.643], + [6071,0.651], + [6073,0.559], + [6075,0.375], + [6077,0.617], + [6079,0.614], + [6081,0.611], + [6083,0.541], + [6085,0.592], + [6087,0.596], + [6089,0.66], + [6091,0.801], + [6093,0.652], + [6095,0.658], + [6097,0.624], + [6099,0.621], + [6101,0.618], + [6103,0.651], + [6105,0.735], + [6107,0.593], + [6109,0.702], + [6111,0.664], + [6113,0.541], + [6115,0.598], + [8001,0.684], + [8003,0.632], + [8005,0.659], + [8007,0.829], + [8009,0.749], + [8011,0.674], + [8013,0.639], + [8014,0.744], + [8015,0.769], + [8017,0.805], + [8019,0.813], + [8021,0.757], + [8023,0.746], + [8025,0.74], + [8027,0.805], + [8029,0.743], + [8031,0.525], + [8033,0.783], + [8035,0.825], + [8037,0.653], + [8039,0.913], + [8041,0.666], + [8043,0.766], + [8045,0.675], + [8047,0.718], + [8049,0.769], + [8051,0.591], + [8053,0.835], + [8055,0.721], + [8057,0.723], + [8059,0.719], + [8061,0.666], + [8063,0.693], + [8065,0.669], + [8067,0.691], + [8069,0.675], + [8071,0.695], + [8073,0.708], + [8075,0.683], + [8077,0.723], + [8079,0.864], + [8081,0.751], + [8083,0.728], + [8085,0.746], + [8087,0.673], + [8089,0.661], + [8091,0.743], + [8093,0.879], + [8095,0.733], + [8097,0.625], + [8099,0.667], + [8101,0.699], + [8103,0.741], + [8105,0.789], + [8107,0.741], + [8109,0.683], + [8111,0.543], + [8113,0.643], + [8115,0.728], + [8117,0.705], + [8119,0.869], + [8121,0.683], + [8123,0.717], + [8125,0.689], + [9001,0.707], + [9003,0.665], + [9005,0.787], + [9007,0.758], + [9009,0.653], + [9011,0.697], + [9013,0.764], + [9015,0.708], + [10001,0.729], + [10003,0.713], + [10005,0.8], + [11001,0.435], + [12001,0.549], + [12003,0.762], + [12005,0.66], + [12007,0.773], + [12009,0.764], + [12011,0.693], + [12013,0.739], + [12015,0.811], + [12017,0.846], + [12019,0.783], + [12021,0.765], + [12023,0.715], + [12027,0.785], + [12029,0.816], + [12031,0.631], + [12033,0.674], + [12035,0.811], + [12037,0.656], + [12039,0.709], + [12041,0.805], + [12043,0.812], + [12045,0.771], + [12047,0.74], + [12049,0.747], + [12051,0.692], + [12053,0.834], + [12055,0.799], + [12057,0.633], + [12059,0.803], + [12061,0.768], + [12063,0.772], + [12065,0.772], + [12067,0.806], + [12069,0.787], + [12071,0.748], + [12073,0.554], + [12075,0.763], + [12077,0.775], + [12079,0.739], + [12081,0.741], + [12083,0.789], + [12085,0.795], + [12086,0.581], + [12087,0.645], + [12089,0.794], + [12091,0.673], + [12093,0.767], + [12095,0.599], + [12097,0.665], + [12099,0.736], + [12101,0.788], + [12103,0.704], + [12105,0.721], + [12107,0.778], + [12109,0.771], + [12111,0.76], + [12113,0.776], + [12115,0.774], + [12117,0.713], + [12119,0.893], + [12121,0.76], + [12123,0.857], + [12125,0.695], + [12127,0.759], + [12129,0.836], + [12131,0.753], + [12133,0.802], + [13001,0.726], + [13003,0.72], + [13005,0.664], + [13007,0.661], + [13009,0.606], + [13011,0.759], + [13013,0.767], + [13015,0.724], + [13017,0.624], + [13019,0.72], + [13021,0.585], + [13023,0.69], + [13025,0.853], + [13027,0.743], + [13029,0.742], + [13031,0.556], + [13033,0.717], + [13035,0.767], + [13037,0.706], + [13039,0.673], + [13043,0.659], + [13045,0.68], + [13047,0.757], + [13049,0.759], + [13051,0.587], + [13053,0.313], + [13055,0.721], + [13057,0.806], + [13059,0.459], + [13061,0.717], + [13063,0.59], + [13065,0.725], + [13067,0.696], + [13069,0.701], + [13071,0.617], + [13073,0.809], + [13075,0.727], + [13077,0.758], + [13079,0.809], + [13081,0.585], + [13083,0.798], + [13085,0.789], + [13087,0.659], + [13089,0.586], + [13091,0.711], + [13093,0.669], + [13095,0.485], + [13097,0.715], + [13099,0.663], + [13101,0.708], + [13103,0.745], + [13105,0.711], + [13107,0.671], + [13109,0.696], + [13111,0.807], + [13113,0.845], + [13115,0.671], + [13117,0.868], + [13119,0.719], + [13121,0.56], + [13123,0.708], + [13125,0.719], + [13127,0.645], + [13129,0.691], + [13131,0.646], + [13133,0.752], + [13135,0.721], + [13137,0.741], + [13139,0.69], + [13141,0.755], + [13143,0.735], + [13145,0.885], + [13147,0.765], + [13149,0.737], + [13151,0.802], + [13153,0.678], + [13155,0.788], + [13157,0.752], + [13159,0.705], + [13161,0.71], + [13163,0.709], + [13165,0.758], + [13167,0.699], + [13169,0.808], + [13171,0.666], + [13173,0.626], + [13175,0.676], + [13177,0.777], + [13179,0.508], + [13181,0.789], + [13183,0.631], + [13185,0.591], + [13187,0.705], + [13189,0.65], + [13191,0.747], + [13193,0.649], + [13195,0.768], + [13197,0.744], + [13199,0.725], + [13201,0.699], + [13205,0.654], + [13207,0.8], + [13209,0.713], + [13211,0.749], + [13213,0.725], + [13215,0.564], + [13217,0.76], + [13219,0.827], + [13221,0.801], + [13223,0.816], + [13225,0.69], + [13227,0.804], + [13229,0.766], + [13231,0.831], + [13233,0.705], + [13235,0.723], + [13237,0.799], + [13239,0.704], + [13241,0.73], + [13243,0.65], + [13245,0.57], + [13247,0.689], + [13249,0.664], + [13251,0.774], + [13253,0.785], + [13255,0.646], + [13257,0.72], + [13259,0.689], + [13261,0.63], + [13263,0.796], + [13265,0.71], + [13267,0.681], + [13269,0.742], + [13271,0.616], + [13273,0.606], + [13275,0.618], + [13277,0.649], + [13279,0.626], + [13281,0.865], + [13283,0.652], + [13285,0.65], + [13287,0.644], + [13289,0.81], + [13291,0.78], + [13293,0.698], + [13295,0.74], + [13297,0.76], + [13299,0.666], + [13301,0.708], + [13303,0.718], + [13305,0.7], + [13307,0.761], + [13309,0.755], + [13311,0.76], + [13313,0.683], + [13315,0.84], + [13317,0.715], + [13319,0.817], + [13321,0.709], + [15001,0.662], + [15003,0.576], + [15005,0], + [15007,0.65], + [15009,0.588], + [16001,0.696], + [16003,0.804], + [16005,0.712], + [16007,0.809], + [16009,0.742], + [16011,0.799], + [16013,0.683], + [16015,0.768], + [16017,0.745], + [16019,0.741], + [16021,0.825], + [16023,0.829], + [16025,0.726], + [16027,0.714], + [16029,0.792], + [16031,0.686], + [16033,0.775], + [16035,0.782], + [16037,0.801], + [16039,0.675], + [16041,0.809], + [16043,0.816], + [16045,0.794], + [16047,0.727], + [16049,0.758], + [16051,0.819], + [16053,0.646], + [16055,0.707], + [16057,0.54], + [16059,0.728], + [16061,0.726], + [16063,0.754], + [16065,0.52], + [16067,0.767], + [16069,0.676], + [16071,0.812], + [16073,0.678], + [16075,0.745], + [16077,0.732], + [16079,0.714], + [16081,0.597], + [16083,0.679], + [16085,0.777], + [16087,0.753], + [17001,0.738], + [17003,0.714], + [17005,0.812], + [17007,0.826], + [17009,0.746], + [17011,0.752], + [17013,0.786], + [17015,0.763], + [17017,0.714], + [17019,0.559], + [17021,0.75], + [17023,0.771], + [17025,0.764], + [17027,0.8], + [17029,0.625], + [17031,0.604], + [17033,0.804], + [17035,0.797], + [17037,0.627], + [17039,0.76], + [17041,0.783], + [17043,0.761], + [17045,0.76], + [17047,0.773], + [17049,0.79], + [17051,0.795], + [17053,0.791], + [17055,0.785], + [17057,0.784], + [17059,0.79], + [17061,0.783], + [17063,0.768], + [17065,0.837], + [17067,0.799], + [17069,0.77], + [17071,0.784], + [17073,0.773], + [17075,0.762], + [17077,0.544], + [17079,0.822], + [17081,0.75], + [17083,0.789], + [17085,0.781], + [17087,0.798], + [17089,0.776], + [17091,0.694], + [17093,0.858], + [17095,0.689], + [17097,0.784], + [17099,0.763], + [17101,0.723], + [17103,0.741], + [17105,0.758], + [17107,0.745], + [17109,0.624], + [17111,0.841], + [17113,0.683], + [17115,0.711], + [17117,0.784], + [17119,0.745], + [17121,0.746], + [17123,0.82], + [17125,0.804], + [17127,0.802], + [17129,0.825], + [17131,0.799], + [17133,0.817], + [17135,0.778], + [17137,0.704], + [17139,0.788], + [17141,0.756], + [17143,0.682], + [17145,0.784], + [17147,0.817], + [17149,0.79], + [17151,0.78], + [17153,0.74], + [17155,0.799], + [17157,0.787], + [17159,0.784], + [17161,0.715], + [17163,0.677], + [17165,0.726], + [17167,0.705], + [17169,0.788], + [17171,0.763], + [17173,0.795], + [17175,0.817], + [17177,0.724], + [17179,0.779], + [17181,0.758], + [17183,0.713], + [17185,0.801], + [17187,0.725], + [17189,0.832], + [17191,0.755], + [17193,0.799], + [17195,0.758], + [17197,0.85], + [17199,0.736], + [17201,0.701], + [17203,0.833], + [18001,0.783], + [18003,0.706], + [18005,0.725], + [18007,0.787], + [18009,0.781], + [18011,0.791], + [18013,0.847], + [18015,0.796], + [18017,0.756], + [18019,0.712], + [18021,0.791], + [18023,0.734], + [18025,0.838], + [18027,0.796], + [18029,0.772], + [18031,0.719], + [18033,0.801], + [18035,0.664], + [18037,0.792], + [18039,0.727], + [18041,0.74], + [18043,0.731], + [18045,0.792], + [18047,0.786], + [18049,0.752], + [18051,0.777], + [18053,0.706], + [18055,0.782], + [18057,0.8], + [18059,0.8], + [18061,0.842], + [18063,0.824], + [18065,0.765], + [18067,0.705], + [18069,0.797], + [18071,0.736], + [18073,0.788], + [18075,0.79], + [18077,0.718], + [18079,0.734], + [18081,0.758], + [18083,0.698], + [18085,0.768], + [18087,0.829], + [18089,0.709], + [18091,0.754], + [18093,0.786], + [18095,0.735], + [18097,0.588], + [18099,0.783], + [18101,0.838], + [18103,0.766], + [18105,0.552], + [18107,0.736], + [18109,0.801], + [18111,0.819], + [18113,0.774], + [18115,0.753], + [18117,0.774], + [18119,0.821], + [18121,0.825], + [18123,0.782], + [18125,0.843], + [18127,0.779], + [18129,0.848], + [18131,0.788], + [18133,0.779], + [18135,0.77], + [18137,0.782], + [18139,0.74], + [18141,0.715], + [18143,0.76], + [18145,0.743], + [18147,0.835], + [18149,0.798], + [18151,0.79], + [18153,0.771], + [18155,0.811], + [18157,0.558], + [18159,0.785], + [18161,0.79], + [18163,0.651], + [18165,0.783], + [18167,0.658], + [18169,0.78], + [18171,0.777], + [18173,0.838], + [18175,0.792], + [18177,0.686], + [18179,0.78], + [18181,0.776], + [18183,0.832], + [19001,0.758], + [19003,0.79], + [19005,0.797], + [19007,0.745], + [19009,0.799], + [19011,0.809], + [19013,0.69], + [19015,0.753], + [19017,0.821], + [19019,0.779], + [19021,0.693], + [19023,0.822], + [19025,0.797], + [19027,0.75], + [19029,0.711], + [19031,0.795], + [19033,0.716], + [19035,0.756], + [19037,0.845], + [19039,0.78], + [19041,0.706], + [19043,0.773], + [19045,0.752], + [19047,0.795], + [19049,0.776], + [19051,0.827], + [19053,0.683], + [19055,0.807], + [19057,0.735], + [19059,0.783], + [19061,0.747], + [19063,0.766], + [19065,0.785], + [19067,0.745], + [19069,0.741], + [19071,0.779], + [19073,0.762], + [19075,0.807], + [19077,0.791], + [19079,0.767], + [19081,0.826], + [19083,0.738], + [19085,0.794], + [19087,0.738], + [19089,0.795], + [19091,0.76], + [19093,0.756], + [19095,0.779], + [19097,0.784], + [19099,0.734], + [19101,0.724], + [19103,0.603], + [19105,0.792], + [19107,0.801], + [19109,0.822], + [19111,0.741], + [19113,0.729], + [19115,0.801], + [19117,0.755], + [19119,0.819], + [19121,0.815], + [19123,0.751], + [19125,0.762], + [19127,0.75], + [19129,0.825], + [19131,0.832], + [19133,0.715], + [19135,0.783], + [19137,0.744], + [19139,0.777], + [19141,0.769], + [19143,0.756], + [19145,0.74], + [19147,0.746], + [19149,0.808], + [19151,0.803], + [19153,0.708], + [19155,0.713], + [19157,0.782], + [19159,0.792], + [19161,0.808], + [19163,0.704], + [19165,0.778], + [19167,0.813], + [19169,0.548], + [19171,0.779], + [19173,0.805], + [19175,0.719], + [19177,0.783], + [19179,0.765], + [19181,0.791], + [19183,0.77], + [19185,0.792], + [19187,0.688], + [19189,0.747], + [19191,0.755], + [19193,0.686], + [19195,0.801], + [19197,0.744], + [20001,0.78], + [20003,0.839], + [20005,0.664], + [20007,0.712], + [20009,0.741], + [20011,0.747], + [20013,0.7], + [20015,0.778], + [20017,0.817], + [20019,0.786], + [20021,0.79], + [20023,0.753], + [20025,0.736], + [20027,0.734], + [20029,0.78], + [20031,0.77], + [20033,0.829], + [20035,0.722], + [20037,0.649], + [20039,0.727], + [20041,0.739], + [20043,0.752], + [20045,0.535], + [20047,0.752], + [20049,0.81], + [20051,0.63], + [20053,0.784], + [20055,0.718], + [20057,0.683], + [20059,0.721], + [20061,0.499], + [20063,0.812], + [20065,0.805], + [20067,0.731], + [20069,0.754], + [20071,0.738], + [20073,0.735], + [20075,0.742], + [20077,0.707], + [20079,0.74], + [20081,0.76], + [20083,0.808], + [20085,0.782], + [20087,0.852], + [20089,0.764], + [20091,0.719], + [20093,0.741], + [20095,0.789], + [20097,0.732], + [20099,0.715], + [20101,0.734], + [20103,0.694], + [20105,0.811], + [20107,0.849], + [20109,0.763], + [20111,0.595], + [20113,0.762], + [20115,0.837], + [20117,0.762], + [20119,0.782], + [20121,0.799], + [20123,0.759], + [20125,0.718], + [20127,0.776], + [20129,0.713], + [20131,0.791], + [20133,0.772], + [20135,0.826], + [20137,0.68], + [20139,0.79], + [20141,0.783], + [20143,0.818], + [20145,0.709], + [20147,0.798], + [20149,0.81], + [20151,0.704], + [20153,0.745], + [20155,0.716], + [20157,0.811], + [20159,0.755], + [20161,0.437], + [20163,0.776], + [20165,0.797], + [20167,0.753], + [20169,0.678], + [20171,0.818], + [20173,0.669], + [20175,0.644], + [20177,0.668], + [20179,0.777], + [20181,0.719], + [20183,0.811], + [20185,0.809], + [20187,0.748], + [20189,0.689], + [20191,0.774], + [20193,0.651], + [20195,0.823], + [20197,0.832], + [20199,0.834], + [20201,0.788], + [20203,0.8], + [20205,0.762], + [20207,0.738], + [20209,0.632], + [21001,0.748], + [21003,0.748], + [21005,0.763], + [21007,0.833], + [21009,0.703], + [21011,0.806], + [21013,0.686], + [21015,0.764], + [21017,0.614], + [21019,0.692], + [21021,0.69], + [21023,0.786], + [21025,0.717], + [21027,0.794], + [21029,0.813], + [21031,0.794], + [21033,0.767], + [21035,0.684], + [21037,0.723], + [21039,0.84], + [21041,0.653], + [21043,0.779], + [21045,0.851], + [21047,0.565], + [21049,0.652], + [21051,0.787], + [21053,0.75], + [21055,0.789], + [21057,0.786], + [21059,0.696], + [21061,0.752], + [21063,0.799], + [21065,0.743], + [21067,0.569], + [21069,0.779], + [21071,0.72], + [21073,0.647], + [21075,0.641], + [21077,0.734], + [21079,0.77], + [21081,0.704], + [21083,0.763], + [21085,0.766], + [21087,0.745], + [21089,0.8], + [21091,0.828], + [21093,0.659], + [21095,0.711], + [21097,0.682], + [21099,0.752], + [21101,0.676], + [21103,0.733], + [21105,0.805], + [21107,0.722], + [21109,0.76], + [21111,0.647], + [21113,0.66], + [21115,0.719], + [21117,0.692], + [21119,0.749], + [21121,0.667], + [21123,0.775], + [21125,0.742], + [21127,0.707], + [21129,0.745], + [21131,0.733], + [21133,0.754], + [21135,0.843], + [21137,0.76], + [21139,0.816], + [21141,0.742], + [21143,0.81], + [21145,0.692], + [21147,0.763], + [21149,0.761], + [21151,0.62], + [21153,0.782], + [21155,0.798], + [21157,0.819], + [21159,0.715], + [21161,0.709], + [21163,0.718], + [21165,0.829], + [21167,0.748], + [21169,0.791], + [21171,0.761], + [21173,0.687], + [21175,0.751], + [21177,0.794], + [21179,0.769], + [21181,0.765], + [21183,0.777], + [21185,0.851], + [21187,0.751], + [21189,0.792], + [21191,0.764], + [21193,0.725], + [21195,0.753], + [21197,0.699], + [21199,0.737], + [21201,0.731], + [21203,0.787], + [21205,0.704], + [21207,0.781], + [21209,0.689], + [21211,0.735], + [21213,0.702], + [21215,0.881], + [21217,0.688], + [21219,0.723], + [21221,0.784], + [21223,0.789], + [21225,0.78], + [21227,0.62], + [21229,0.829], + [21231,0.732], + [21233,0.803], + [21235,0.702], + [21237,0.759], + [21239,0.728], + [22001,0.698], + [22003,0.72], + [22005,0.808], + [22007,0.842], + [22009,0.694], + [22011,0.775], + [22013,0.742], + [22015,0.674], + [22017,0.635], + [22019,0.719], + [22021,0.735], + [22023,0.845], + [22025,0.782], + [22027,0.732], + [22029,0.708], + [22031,0.766], + [22033,0.616], + [22035,0.556], + [22037,0.816], + [22039,0.691], + [22041,0.726], + [22043,0.781], + [22045,0.701], + [22047,0.759], + [22049,0.683], + [22051,0.647], + [22053,0.76], + [22055,0.649], + [22057,0.77], + [22059,0.844], + [22061,0.585], + [22063,0.804], + [22065,0.591], + [22067,0.714], + [22069,0.614], + [22071,0.493], + [22073,0.631], + [22075,0.714], + [22077,0.795], + [22079,0.676], + [22081,0.786], + [22083,0.681], + [22085,0.78], + [22087,0.657], + [22089,0.816], + [22091,0.788], + [22093,0.838], + [22095,0.779], + [22097,0.712], + [22099,0.796], + [22101,0.701], + [22103,0.804], + [22105,0.686], + [22107,0.601], + [22109,0.74], + [22111,0.81], + [22113,0.757], + [22115,0.563], + [22117,0.744], + [22119,0.675], + [22121,0.736], + [22123,0.737], + [22125,0.711], + [22127,0.767], + [23001,0.679], + [23003,0.721], + [23005,0.685], + [23007,0.747], + [23009,0.76], + [23011,0.724], + [23013,0.777], + [23015,0.857], + [23017,0.791], + [23019,0.705], + [23021,0.779], + [23023,0.765], + [23025,0.77], + [23027,0.793], + [23029,0.762], + [23031,0.752], + [24001,0.708], + [24003,0.757], + [24005,0.67], + [24009,0.85], + [24011,0.758], + [24013,0.839], + [24015,0.747], + [24017,0.811], + [24019,0.711], + [24021,0.768], + [24023,0.775], + [24025,0.816], + [24027,0.747], + [24029,0.718], + [24031,0.693], + [24033,0.643], + [24035,0.848], + [24037,0.729], + [24039,0.67], + [24041,0.762], + [24043,0.663], + [24045,0.652], + [24047,0.786], + [24510,0.498], + [25001,0.804], + [25003,0.689], + [25005,0.641], + [25007,0.811], + [25009,0.654], + [25011,0.7], + [25013,0.63], + [25015,0.68], + [25017,0.639], + [25019,0.733], + [25021,0.704], + [25023,0.779], + [25025,0.365], + [25027,0.676], + [26001,0.902], + [26003,0.817], + [26005,0.832], + [26007,0.806], + [26009,0.845], + [26011,0.837], + [26013,0.755], + [26015,0.845], + [26017,0.798], + [26019,0.859], + [26021,0.728], + [26023,0.806], + [26025,0.721], + [26027,0.828], + [26029,0.831], + [26031,0.809], + [26033,0.715], + [26035,0.799], + [26037,0.825], + [26039,0.843], + [26041,0.801], + [26043,0.804], + [26045,0.753], + [26047,0.764], + [26049,0.718], + [26051,0.854], + [26053,0.756], + [26055,0.771], + [26057,0.783], + [26059,0.819], + [26061,0.7], + [26063,0.832], + [26065,0.617], + [26067,0.791], + [26069,0.854], + [26071,0.849], + [26073,0.594], + [26075,0.76], + [26077,0.652], + [26079,0.835], + [26081,0.713], + [26083,0.862], + [26085,0.845], + [26087,0.844], + [26089,0.858], + [26091,0.798], + [26093,0.872], + [26095,0.8], + [26097,0.812], + [26099,0.791], + [26101,0.804], + [26103,0.732], + [26105,0.776], + [26107,0.734], + [26109,0.812], + [26111,0.766], + [26113,0.828], + [26115,0.807], + [26117,0.802], + [26119,0.867], + [26121,0.757], + [26123,0.83], + [26125,0.746], + [26127,0.832], + [26129,0.842], + [26131,0.854], + [26133,0.816], + [26135,0.832], + [26137,0.818], + [26139,0.808], + [26141,0.887], + [26143,0.846], + [26145,0.745], + [26147,0.789], + [26149,0.78], + [26151,0.832], + [26153,0.876], + [26155,0.789], + [26157,0.832], + [26159,0.802], + [26161,0.63], + [26163,0.672], + [26165,0.789], + [27001,0.811], + [27003,0.829], + [27005,0.792], + [27007,0.726], + [27009,0.706], + [27011,0.801], + [27013,0.671], + [27015,0.797], + [27017,0.805], + [27019,0.836], + [27021,0.834], + [27023,0.743], + [27025,0.866], + [27027,0.712], + [27029,0.776], + [27031,0.733], + [27033,0.796], + [27035,0.764], + [27037,0.783], + [27039,0.87], + [27041,0.761], + [27043,0.809], + [27045,0.797], + [27047,0.804], + [27049,0.786], + [27051,0.784], + [27053,0.652], + [27055,0.817], + [27057,0.822], + [27059,0.832], + [27061,0.816], + [27063,0.786], + [27065,0.831], + [27067,0.757], + [27069,0.86], + [27071,0.763], + [27073,0.837], + [27075,0.798], + [27077,0.876], + [27079,0.838], + [27081,0.839], + [27083,0.682], + [27085,0.798], + [27087,0.747], + [27089,0.832], + [27091,0.78], + [27093,0.816], + [27095,0.774], + [27097,0.804], + [27099,0.747], + [27101,0.833], + [27103,0.743], + [27105,0.732], + [27107,0.79], + [27109,0.766], + [27111,0.786], + [27113,0.775], + [27115,0.817], + [27117,0.768], + [27119,0.73], + [27121,0.78], + [27123,0.622], + [27125,0.834], + [27127,0.783], + [27129,0.793], + [27131,0.771], + [27133,0.793], + [27135,0.804], + [27137,0.726], + [27139,0.866], + [27141,0.853], + [27143,0.819], + [27145,0.729], + [27147,0.789], + [27149,0.682], + [27151,0.736], + [27153,0.828], + [27155,0.803], + [27157,0.819], + [27159,0.764], + [27161,0.803], + [27163,0.844], + [27165,0.794], + [27167,0.83], + [27169,0.715], + [27171,0.851], + [27173,0.795], + [28001,0.671], + [28003,0.733], + [28005,0.814], + [28007,0.754], + [28009,0.79], + [28011,0.562], + [28013,0.688], + [28015,0.814], + [28017,0.717], + [28019,0.769], + [28021,0.79], + [28023,0.78], + [28025,0.715], + [28027,0.57], + [28029,0.782], + [28031,0.837], + [28033,0.775], + [28035,0.582], + [28037,0.858], + [28039,0.83], + [28041,0.893], + [28043,0.655], + [28045,0.754], + [28047,0.665], + [28049,0.609], + [28051,0.718], + [28053,0.624], + [28055,0.652], + [28057,0.799], + [28059,0.727], + [28061,0.836], + [28063,0.75], + [28065,0.817], + [28067,0.737], + [28069,0.764], + [28071,0.599], + [28073,0.701], + [28075,0.66], + [28077,0.816], + [28079,0.786], + [28081,0.695], + [28083,0.513], + [28085,0.775], + [28087,0.662], + [28089,0.697], + [28091,0.803], + [28093,0.775], + [28095,0.788], + [28097,0.761], + [28099,0.762], + [28101,0.803], + [28103,0.739], + [28105,0.509], + [28107,0.763], + [28109,0.78], + [28111,0.834], + [28113,0.729], + [28115,0.776], + [28117,0.794], + [28119,0.689], + [28121,0.758], + [28123,0.804], + [28125,0.67], + [28127,0.766], + [28129,0.868], + [28131,0.774], + [28133,0.572], + [28135,0.726], + [28137,0.758], + [28139,0.751], + [28141,0.798], + [28143,0.521], + [28145,0.759], + [28147,0.84], + [28149,0.673], + [28151,0.562], + [28153,0.82], + [28155,0.701], + [28157,0.75], + [28159,0.793], + [28161,0.725], + [28163,0.637], + [29001,0.611], + [29003,0.786], + [29005,0.724], + [29007,0.765], + [29009,0.749], + [29011,0.758], + [29013,0.748], + [29015,0.84], + [29017,0.787], + [29019,0.576], + [29021,0.679], + [29023,0.671], + [29025,0.746], + [29027,0.754], + [29029,0.813], + [29031,0.674], + [29033,0.782], + [29035,0.772], + [29037,0.801], + [29039,0.763], + [29041,0.801], + [29043,0.757], + [29045,0.76], + [29047,0.726], + [29049,0.764], + [29051,0.68], + [29053,0.723], + [29055,0.748], + [29057,0.775], + [29059,0.818], + [29061,0.747], + [29063,0.678], + [29065,0.779], + [29067,0.82], + [29069,0.624], + [29071,0.768], + [29073,0.791], + [29075,0.766], + [29077,0.618], + [29079,0.704], + [29081,0.752], + [29083,0.733], + [29085,0.84], + [29087,0.781], + [29089,0.784], + [29091,0.72], + [29093,0.728], + [29095,0.632], + [29097,0.657], + [29099,0.839], + [29101,0.645], + [29103,0.749], + [29105,0.708], + [29107,0.74], + [29109,0.725], + [29111,0.762], + [29113,0.82], + [29115,0.75], + [29117,0.666], + [29119,0.703], + [29121,0.765], + [29123,0.773], + [29125,0.82], + [29127,0.673], + [29129,0.757], + [29131,0.753], + [29133,0.628], + [29135,0.783], + [29137,0.764], + [29139,0.768], + [29141,0.817], + [29143,0.643], + [29145,0.746], + [29147,0.606], + [29149,0.749], + [29151,0.846], + [29153,0.824], + [29155,0.561], + [29157,0.781], + [29159,0.715], + [29161,0.655], + [29163,0.716], + [29165,0.677], + [29167,0.72], + [29169,0.562], + [29171,0.741], + [29173,0.818], + [29175,0.736], + [29177,0.787], + [29179,0.738], + [29181,0.734], + [29183,0.82], + [29185,0.809], + [29186,0.835], + [29187,0.736], + [29189,0.725], + [29195,0.698], + [29197,0.715], + [29199,0.792], + [29201,0.696], + [29203,0.78], + [29205,0.702], + [29207,0.706], + [29209,0.76], + [29211,0.706], + [29213,0.677], + [29215,0.743], + [29217,0.7], + [29219,0.784], + [29221,0.805], + [29223,0.733], + [29225,0.766], + [29227,0.772], + [29229,0.715], + [29510,0.472], + [30001,0.647], + [30003,0.666], + [30005,0.634], + [30007,0.787], + [30009,0.729], + [30011,0.75], + [30013,0.668], + [30015,0.663], + [30017,0.656], + [30019,0.819], + [30021,0.74], + [30023,0.727], + [30025,0.762], + [30027,0.717], + [30029,0.715], + [30031,0.623], + [30033,0.794], + [30035,0.59], + [30037,0.76], + [30039,0.764], + [30041,0.682], + [30043,0.855], + [30045,0.77], + [30047,0.679], + [30049,0.728], + [30051,0.627], + [30053,0.765], + [30055,0.777], + [30057,0.689], + [30059,0.64], + [30061,0.665], + [30063,0.607], + [30065,0.767], + [30067,0.704], + [30069,0.686], + [30071,0.758], + [30073,0.699], + [30075,0.664], + [30077,0.746], + [30079,0.869], + [30081,0.779], + [30083,0.664], + [30085,0.637], + [30087,0.704], + [30089,0.785], + [30091,0.752], + [30093,0.658], + [30095,0.751], + [30097,0.813], + [30099,0.757], + [30101,0.632], + [30103,0.677], + [30105,0.755], + [30107,0.78], + [30109,0.792], + [30111,0.703], + [31001,0.704], + [31003,0.72], + [31005,0.635], + [31007,0.663], + [31009,0.653], + [31011,0.746], + [31013,0.674], + [31015,0.751], + [31017,0.703], + [31019,0.655], + [31021,0.743], + [31023,0.753], + [31025,0.826], + [31027,0.81], + [31029,0.758], + [31031,0.659], + [31033,0.701], + [31035,0.772], + [31037,0.808], + [31039,0.75], + [31041,0.771], + [31043,0.672], + [31045,0.632], + [31047,0.718], + [31049,0.783], + [31051,0.771], + [31053,0.667], + [31055,0.644], + [31057,0.791], + [31059,0.773], + [31061,0.804], + [31063,0.756], + [31065,0.785], + [31067,0.727], + [31069,0.683], + [31071,0.794], + [31073,0.768], + [31075,0.628], + [31077,0.827], + [31079,0.669], + [31081,0.77], + [31083,0.822], + [31085,0.702], + [31087,0.765], + [31089,0.757], + [31091,0.847], + [31093,0.783], + [31095,0.801], + [31097,0.754], + [31099,0.794], + [31101,0.73], + [31103,0.838], + [31105,0.708], + [31107,0.754], + [31109,0.621], + [31111,0.683], + [31113,0.681], + [31115,0.851], + [31117,0.588], + [31119,0.679], + [31121,0.733], + [31123,0.677], + [31125,0.76], + [31127,0.712], + [31129,0.797], + [31131,0.739], + [31133,0.782], + [31135,0.733], + [31137,0.746], + [31139,0.826], + [31141,0.738], + [31143,0.751], + [31145,0.696], + [31147,0.763], + [31149,0.851], + [31151,0.668], + [31153,0.724], + [31155,0.828], + [31157,0.655], + [31159,0.731], + [31161,0.699], + [31163,0.847], + [31165,0.717], + [31167,0.78], + [31169,0.826], + [31171,0.771], + [31173,0.656], + [31175,0.774], + [31177,0.815], + [31179,0.7], + [31181,0.757], + [31183,0.682], + [31185,0.762], + [32001,0.645], + [32003,0.582], + [32005,0.762], + [32007,0.711], + [32009,0.647], + [32011,0.731], + [32013,0.724], + [32015,0.721], + [32017,0.715], + [32019,0.722], + [32021,0.781], + [32023,0.718], + [32027,0.705], + [32029,0.902], + [32031,0.602], + [32033,0.766], + [32510,0.623], + [33001,0.769], + [33003,0.806], + [33005,0.715], + [33007,0.715], + [33009,0.708], + [33011,0.69], + [33013,0.72], + [33015,0.786], + [33017,0.672], + [33019,0.737], + [34001,0.707], + [34003,0.675], + [34005,0.79], + [34007,0.697], + [34009,0.743], + [34011,0.674], + [34013,0.472], + [34015,0.809], + [34017,0.343], + [34019,0.856], + [34021,0.679], + [34023,0.67], + [34025,0.759], + [34027,0.766], + [34029,0.824], + [34031,0.553], + [34033,0.742], + [34035,0.797], + [34037,0.848], + [34039,0.615], + [34041,0.758], + [35001,0.646], + [35003,0.861], + [35005,0.693], + [35006,0.683], + [35007,0.681], + [35009,0.614], + [35011,0.795], + [35013,0.655], + [35015,0.747], + [35017,0.77], + [35019,0.775], + [35021,0.913], + [35023,0.691], + [35025,0.71], + [35027,0.775], + [35028,0.772], + [35029,0.695], + [35031,0.734], + [35033,0.836], + [35035,0.676], + [35037,0.741], + [35039,0.798], + [35041,0.63], + [35043,0.813], + [35045,0.739], + [35047,0.668], + [35049,0.712], + [35051,0.783], + [35053,0.74], + [35055,0.732], + [35057,0.822], + [35059,0.737], + [35061,0.796], + [36001,0.589], + [36003,0.756], + [36005,0.207], + [36007,0.666], + [36009,0.734], + [36011,0.718], + [36013,0.698], + [36015,0.681], + [36017,0.772], + [36019,0.703], + [36021,0.732], + [36023,0.663], + [36025,0.759], + [36027,0.706], + [36029,0.662], + [36031,0.73], + [36033,0.726], + [36035,0.698], + [36037,0.737], + [36039,0.736], + [36041,0.818], + [36043,0.716], + [36045,0.572], + [36047,0.303], + [36049,0.778], + [36051,0.757], + [36053,0.761], + [36055,0.667], + [36057,0.691], + [36059,0.821], + [36061,0.228], + [36063,0.709], + [36065,0.679], + [36067,0.66], + [36069,0.755], + [36071,0.713], + [36073,0.767], + [36075,0.736], + [36077,0.725], + [36079,0.846], + [36081,0.455], + [36083,0.651], + [36085,0.703], + [36087,0.71], + [36089,0.717], + [36091,0.738], + [36093,0.692], + [36095,0.774], + [36097,0.791], + [36099,0.774], + [36101,0.729], + [36103,0.814], + [36105,0.675], + [36107,0.8], + [36109,0.55], + [36111,0.696], + [36113,0.685], + [36115,0.74], + [36117,0.763], + [36119,0.627], + [36121,0.763], + [36123,0.782], + [37001,0.681], + [37003,0.799], + [37005,0.74], + [37007,0.71], + [37009,0.792], + [37011,0.728], + [37013,0.734], + [37015,0.769], + [37017,0.69], + [37019,0.775], + [37021,0.676], + [37023,0.741], + [37025,0.733], + [37027,0.756], + [37029,0.851], + [37031,0.735], + [37033,0.752], + [37035,0.718], + [37037,0.791], + [37039,0.832], + [37041,0.684], + [37043,0.833], + [37045,0.689], + [37047,0.72], + [37049,0.635], + [37051,0.584], + [37053,0.823], + [37055,0.713], + [37057,0.732], + [37059,0.835], + [37061,0.706], + [37063,0.556], + [37065,0.629], + [37067,0.659], + [37069,0.778], + [37071,0.695], + [37073,0.816], + [37075,0.779], + [37077,0.758], + [37079,0.703], + [37081,0.629], + [37083,0.64], + [37085,0.674], + [37087,0.752], + [37089,0.768], + [37091,0.659], + [37093,0.724], + [37095,0.826], + [37097,0.747], + [37099,0.663], + [37101,0.732], + [37103,0.721], + [37105,0.704], + [37107,0.623], + [37109,0.762], + [37111,0.726], + [37113,0.768], + [37115,0.768], + [37117,0.7], + [37119,0.626], + [37121,0.75], + [37123,0.747], + [37125,0.763], + [37127,0.637], + [37129,0.614], + [37131,0.748], + [37133,0.566], + [37135,0.606], + [37137,0.816], + [37139,0.664], + [37141,0.806], + [37143,0.772], + [37145,0.739], + [37147,0.553], + [37149,0.779], + [37151,0.736], + [37153,0.707], + [37155,0.672], + [37157,0.721], + [37159,0.714], + [37161,0.718], + [37163,0.685], + [37165,0.647], + [37167,0.769], + [37169,0.818], + [37171,0.743], + [37173,0.775], + [37175,0.766], + [37177,0.765], + [37179,0.82], + [37181,0.652], + [37183,0.662], + [37185,0.753], + [37187,0.704], + [37189,0.541], + [37191,0.643], + [37193,0.743], + [37195,0.618], + [37197,0.782], + [37199,0.783], + [38001,0.678], + [38003,0.681], + [38005,0.621], + [38007,0.831], + [38009,0.779], + [38011,0.802], + [38013,0.829], + [38015,0.703], + [38017,0.536], + [38019,0.839], + [38021,0.729], + [38023,0.81], + [38025,0.849], + [38027,0.816], + [38029,0.841], + [38031,0.758], + [38033,0.797], + [38035,0.544], + [38037,0.818], + [38039,0.79], + [38041,0.823], + [38043,0.71], + [38045,0.836], + [38047,0.828], + [38049,0.769], + [38051,0.832], + [38053,0.684], + [38055,0.793], + [38057,0.788], + [38059,0.792], + [38061,0.724], + [38063,0.826], + [38065,0.858], + [38067,0.796], + [38069,0.706], + [38071,0.655], + [38073,0.747], + [38075,0.758], + [38077,0.737], + [38079,0.74], + [38081,0.777], + [38083,0.861], + [38085,0.5], + [38087,0.795], + [38089,0.727], + [38091,0.807], + [38093,0.687], + [38095,0.79], + [38097,0.75], + [38099,0.742], + [38101,0.644], + [38103,0.761], + [38105,0.712], + [39001,0.728], + [39003,0.712], + [39005,0.788], + [39007,0.728], + [39009,0.586], + [39011,0.779], + [39013,0.744], + [39015,0.797], + [39017,0.709], + [39019,0.817], + [39021,0.753], + [39023,0.702], + [39025,0.771], + [39027,0.702], + [39029,0.747], + [39031,0.746], + [39033,0.729], + [39035,0.624], + [39037,0.778], + [39039,0.786], + [39041,0.832], + [39043,0.728], + [39045,0.758], + [39047,0.646], + [39049,0.573], + [39051,0.809], + [39053,0.73], + [39055,0.87], + [39057,0.685], + [39059,0.719], + [39061,0.612], + [39063,0.711], + [39065,0.696], + [39067,0.777], + [39069,0.794], + [39071,0.738], + [39073,0.755], + [39075,0.788], + [39077,0.746], + [39079,0.686], + [39081,0.729], + [39083,0.751], + [39085,0.77], + [39087,0.734], + [39089,0.744], + [39091,0.73], + [39093,0.742], + [39095,0.65], + [39097,0.713], + [39099,0.723], + [39101,0.714], + [39103,0.818], + [39105,0.802], + [39107,0.812], + [39109,0.713], + [39111,0.799], + [39113,0.645], + [39115,0.79], + [39117,0.821], + [39119,0.701], + [39121,0.782], + [39123,0.821], + [39125,0.815], + [39127,0.739], + [39129,0.746], + [39131,0.708], + [39133,0.691], + [39135,0.787], + [39137,0.838], + [39139,0.712], + [39141,0.733], + [39143,0.757], + [39145,0.695], + [39147,0.751], + [39149,0.753], + [39151,0.71], + [39153,0.695], + [39155,0.746], + [39157,0.747], + [39159,0.775], + [39161,0.828], + [39163,0.763], + [39165,0.799], + [39167,0.747], + [39169,0.757], + [39171,0.767], + [39173,0.692], + [39175,0.748], + [40001,0.718], + [40003,0.806], + [40005,0.765], + [40007,0.728], + [40009,0.651], + [40011,0.738], + [40013,0.665], + [40015,0.716], + [40017,0.778], + [40019,0.708], + [40021,0.665], + [40023,0.681], + [40025,0.767], + [40027,0.684], + [40029,0.709], + [40031,0.588], + [40033,0.73], + [40035,0.788], + [40037,0.749], + [40039,0.65], + [40041,0.766], + [40043,0.82], + [40045,0.813], + [40047,0.675], + [40049,0.752], + [40051,0.774], + [40053,0.775], + [40055,0.695], + [40057,0.736], + [40059,0.794], + [40061,0.767], + [40063,0.779], + [40065,0.621], + [40067,0.779], + [40069,0.74], + [40071,0.713], + [40073,0.776], + [40075,0.664], + [40077,0.736], + [40079,0.734], + [40081,0.793], + [40083,0.777], + [40085,0.76], + [40087,0.817], + [40089,0.674], + [40091,0.783], + [40093,0.81], + [40095,0.765], + [40097,0.749], + [40099,0.798], + [40101,0.688], + [40103,0.745], + [40105,0.792], + [40107,0.715], + [40109,0.617], + [40111,0.719], + [40113,0.797], + [40115,0.75], + [40117,0.762], + [40119,0.539], + [40121,0.714], + [40123,0.653], + [40125,0.733], + [40127,0.742], + [40129,0.776], + [40131,0.789], + [40133,0.724], + [40135,0.724], + [40137,0.75], + [40139,0.685], + [40141,0.722], + [40143,0.621], + [40145,0.831], + [40147,0.743], + [40149,0.748], + [40151,0.684], + [40153,0.726], + [41001,0.712], + [41003,0.572], + [41005,0.707], + [41007,0.62], + [41009,0.768], + [41011,0.67], + [41013,0.721], + [41015,0.708], + [41017,0.68], + [41019,0.706], + [41021,0.666], + [41023,0.726], + [41025,0.639], + [41027,0.683], + [41029,0.633], + [41031,0.702], + [41033,0.686], + [41035,0.687], + [41037,0.684], + [41039,0.608], + [41041,0.672], + [41043,0.682], + [41045,0.646], + [41047,0.62], + [41049,0.712], + [41051,0.562], + [41053,0.69], + [41055,0.67], + [41057,0.692], + [41059,0.64], + [41061,0.66], + [41063,0.747], + [41065,0.675], + [41067,0.627], + [41069,0.778], + [41071,0.703], + [42001,0.778], + [42003,0.67], + [42005,0.764], + [42007,0.752], + [42009,0.797], + [42011,0.731], + [42013,0.73], + [42015,0.748], + [42017,0.785], + [42019,0.77], + [42021,0.738], + [42023,0.731], + [42025,0.802], + [42027,0.601], + [42029,0.771], + [42031,0.713], + [42033,0.767], + [42035,0.725], + [42037,0.715], + [42039,0.74], + [42041,0.724], + [42043,0.655], + [42045,0.718], + [42047,0.799], + [42049,0.692], + [42051,0.73], + [42053,0.858], + [42055,0.743], + [42057,0.774], + [42059,0.753], + [42061,0.768], + [42063,0.718], + [42065,0.768], + [42067,0.77], + [42069,0.661], + [42071,0.702], + [42073,0.781], + [42075,0.746], + [42077,0.688], + [42079,0.699], + [42081,0.698], + [42083,0.744], + [42085,0.753], + [42087,0.734], + [42089,0.814], + [42091,0.742], + [42093,0.744], + [42095,0.754], + [42097,0.724], + [42099,0.809], + [42101,0.553], + [42103,0.843], + [42105,0.761], + [42107,0.772], + [42109,0.751], + [42111,0.784], + [42113,0.826], + [42115,0.792], + [42117,0.749], + [42119,0.737], + [42121,0.75], + [42123,0.783], + [42125,0.773], + [42127,0.803], + [42129,0.765], + [42131,0.771], + [42133,0.764], + [44001,0.721], + [44003,0.738], + [44005,0.636], + [44007,0.555], + [44009,0.761], + [45001,0.774], + [45003,0.733], + [45005,0.591], + [45007,0.74], + [45009,0.729], + [45011,0.729], + [45013,0.707], + [45015,0.704], + [45017,0.819], + [45019,0.617], + [45021,0.685], + [45023,0.763], + [45025,0.736], + [45027,0.744], + [45029,0.725], + [45031,0.74], + [45033,0.618], + [45035,0.74], + [45037,0.773], + [45039,0.753], + [45041,0.661], + [45043,0.743], + [45045,0.68], + [45047,0.698], + [45049,0.756], + [45051,0.71], + [45053,0.726], + [45055,0.81], + [45057,0.743], + [45059,0.71], + [45061,0.716], + [45063,0.748], + [45065,0.774], + [45067,0.665], + [45069,0.662], + [45071,0.731], + [45073,0.769], + [45075,0.682], + [45077,0.706], + [45079,0.611], + [45081,0.764], + [45083,0.712], + [45085,0.668], + [45087,0.732], + [45089,0.652], + [45091,0.72], + [46003,0.759], + [46005,0.652], + [46007,0.599], + [46009,0.831], + [46011,0.59], + [46013,0.692], + [46015,0.724], + [46017,0.286], + [46019,0.759], + [46021,0.848], + [46023,0.688], + [46025,0.815], + [46027,0.585], + [46029,0.696], + [46031,0.555], + [46033,0.784], + [46035,0.63], + [46037,0.692], + [46039,0.819], + [46041,0.569], + [46043,0.771], + [46045,0.807], + [46047,0.648], + [46049,0.801], + [46051,0.747], + [46053,0.774], + [46055,0.814], + [46057,0.831], + [46059,0.727], + [46061,0.845], + [46063,0.743], + [46065,0.691], + [46067,0.79], + [46069,0.764], + [46071,0.647], + [46073,0.698], + [46075,0.73], + [46077,0.779], + [46079,0.71], + [46081,0.647], + [46083,0.761], + [46085,0.605], + [46087,0.8], + [46089,0.8], + [46091,0.702], + [46093,0.726], + [46095,0.666], + [46097,0.812], + [46099,0.659], + [46101,0.781], + [46102,0.513], + [46103,0.666], + [46105,0.694], + [46107,0.82], + [46109,0.707], + [46111,0.766], + [46115,0.777], + [46117,0.761], + [46119,0.785], + [46121,0.406], + [46123,0.736], + [46125,0.798], + [46127,0.751], + [46129,0.768], + [46135,0.702], + [46137,0.526], + [47001,0.718], + [47003,0.686], + [47005,0.832], + [47007,0.767], + [47009,0.761], + [47011,0.677], + [47013,0.72], + [47015,0.762], + [47017,0.773], + [47019,0.733], + [47021,0.809], + [47023,0.742], + [47025,0.773], + [47027,0.779], + [47029,0.73], + [47031,0.723], + [47033,0.685], + [47035,0.791], + [47037,0.576], + [47039,0.781], + [47041,0.723], + [47043,0.741], + [47045,0.65], + [47047,0.833], + [47049,0.771], + [47051,0.773], + [47053,0.72], + [47055,0.747], + [47057,0.825], + [47059,0.742], + [47061,0.807], + [47063,0.713], + [47065,0.655], + [47067,0.715], + [47069,0.732], + [47071,0.772], + [47073,0.761], + [47075,0.653], + [47077,0.776], + [47079,0.773], + [47081,0.78], + [47083,0.736], + [47085,0.756], + [47087,0.763], + [47089,0.748], + [47091,0.764], + [47093,0.672], + [47095,0.617], + [47097,0.665], + [47099,0.779], + [47101,0.786], + [47103,0.762], + [47105,0.779], + [47107,0.752], + [47109,0.769], + [47111,0.754], + [47113,0.671], + [47115,0.77], + [47117,0.747], + [47119,0.727], + [47121,0.756], + [47123,0.745], + [47125,0.651], + [47127,0.804], + [47129,0.818], + [47131,0.697], + [47133,0.804], + [47135,0.764], + [47137,0.761], + [47139,0.807], + [47141,0.641], + [47143,0.745], + [47145,0.769], + [47147,0.775], + [47149,0.69], + [47151,0.74], + [47153,0.778], + [47155,0.687], + [47157,0.617], + [47159,0.766], + [47161,0.81], + [47163,0.758], + [47165,0.747], + [47167,0.742], + [47169,0.796], + [47171,0.718], + [47173,0.804], + [47175,0.842], + [47177,0.73], + [47179,0.679], + [47181,0.851], + [47183,0.661], + [47185,0.766], + [47187,0.829], + [47189,0.82], + [48001,0.737], + [48003,0.799], + [48005,0.692], + [48007,0.743], + [48009,0.811], + [48011,0.82], + [48013,0.758], + [48015,0.775], + [48017,0.746], + [48019,0.785], + [48021,0.79], + [48023,0.715], + [48025,0.67], + [48027,0.582], + [48029,0.625], + [48031,0.826], + [48033,0.627], + [48035,0.754], + [48037,0.666], + [48039,0.758], + [48041,0.471], + [48043,0.606], + [48045,0.809], + [48047,0.671], + [48049,0.725], + [48051,0.802], + [48053,0.75], + [48055,0.692], + [48057,0.696], + [48059,0.828], + [48061,0.692], + [48063,0.668], + [48065,0.853], + [48067,0.721], + [48069,0.77], + [48071,0.862], + [48073,0.741], + [48075,0.731], + [48077,0.86], + [48079,0.773], + [48081,0.737], + [48083,0.71], + [48085,0.708], + [48087,0.754], + [48089,0.771], + [48091,0.759], + [48093,0.784], + [48095,0.784], + [48097,0.703], + [48099,0.595], + [48101,0.799], + [48103,0.758], + [48105,0.612], + [48107,0.719], + [48109,0.764], + [48111,0.662], + [48113,0.547], + [48115,0.757], + [48117,0.65], + [48119,0.804], + [48121,0.662], + [48123,0.765], + [48125,0.804], + [48127,0.695], + [48129,0.733], + [48131,0.733], + [48133,0.754], + [48135,0.675], + [48137,0.812], + [48139,0.763], + [48141,0.639], + [48143,0.62], + [48145,0.729], + [48147,0.747], + [48149,0.741], + [48151,0.74], + [48153,0.717], + [48155,0.615], + [48157,0.808], + [48159,0.808], + [48161,0.788], + [48163,0.665], + [48165,0.73], + [48167,0.695], + [48169,0.727], + [48171,0.755], + [48173,0.735], + [48175,0.828], + [48177,0.684], + [48179,0.769], + [48181,0.704], + [48183,0.631], + [48185,0.749], + [48187,0.786], + [48189,0.653], + [48191,0.67], + [48193,0.809], + [48195,0.758], + [48197,0.788], + [48199,0.782], + [48201,0.578], + [48203,0.747], + [48205,0.733], + [48207,0.76], + [48209,0.678], + [48211,0.773], + [48213,0.775], + [48215,0.708], + [48217,0.765], + [48219,0.744], + [48221,0.785], + [48223,0.711], + [48225,0.743], + [48227,0.689], + [48229,0.794], + [48231,0.705], + [48233,0.806], + [48235,0.832], + [48237,0.776], + [48239,0.741], + [48241,0.793], + [48243,0.788], + [48245,0.652], + [48247,0.72], + [48249,0.733], + [48251,0.766], + [48253,0.788], + [48255,0.688], + [48257,0.776], + [48259,0.754], + [48261,0.38], + [48263,0.808], + [48265,0.736], + [48267,0.717], + [48269,0.389], + [48271,0.797], + [48273,0.597], + [48275,0.678], + [48277,0.688], + [48279,0.751], + [48281,0.762], + [48283,0.612], + [48285,0.783], + [48287,0.768], + [48289,0.837], + [48291,0.789], + [48293,0.788], + [48295,0.776], + [48297,0.804], + [48299,0.779], + [48301,0.455], + [48303,0.597], + [48305,0.739], + [48307,0.716], + [48309,0.601], + [48311,0.831], + [48313,0.794], + [48315,0.798], + [48317,0.754], + [48319,0.798], + [48321,0.716], + [48323,0.697], + [48325,0.768], + [48327,0.749], + [48329,0.697], + [48331,0.73], + [48333,0.785], + [48335,0.778], + [48337,0.781], + [48339,0.756], + [48341,0.667], + [48343,0.789], + [48345,0.749], + [48347,0.599], + [48349,0.715], + [48351,0.832], + [48353,0.681], + [48355,0.616], + [48357,0.695], + [48359,0.71], + [48361,0.771], + [48363,0.683], + [48365,0.81], + [48367,0.803], + [48369,0.727], + [48371,0.7], + [48373,0.789], + [48375,0.594], + [48377,0.675], + [48379,0.833], + [48381,0.701], + [48383,0.709], + [48385,0.755], + [48387,0.712], + [48389,0.743], + [48391,0.779], + [48393,0.759], + [48395,0.669], + [48397,0.843], + [48399,0.72], + [48401,0.786], + [48403,0.83], + [48405,0.791], + [48407,0.825], + [48409,0.662], + [48411,0.777], + [48413,0.807], + [48415,0.71], + [48417,0.778], + [48419,0.762], + [48421,0.787], + [48423,0.694], + [48425,0.77], + [48427,0.794], + [48429,0.742], + [48431,0.78], + [48433,0.806], + [48435,0.714], + [48437,0.693], + [48439,0.634], + [48441,0.619], + [48443,0.699], + [48445,0.726], + [48447,0.81], + [48449,0.702], + [48451,0.679], + [48453,0.526], + [48455,0.811], + [48457,0.817], + [48459,0.778], + [48461,0.788], + [48463,0.735], + [48465,0.657], + [48467,0.781], + [48469,0.662], + [48471,0.58], + [48473,0.686], + [48475,0.74], + [48477,0.694], + [48479,0.646], + [48481,0.693], + [48483,0.79], + [48485,0.641], + [48487,0.609], + [48489,0.711], + [48491,0.703], + [48493,0.845], + [48495,0.817], + [48497,0.81], + [48499,0.814], + [48501,0.852], + [48503,0.691], + [48505,0.759], + [48507,0.678], + [49001,0.767], + [49003,0.815], + [49005,0.639], + [49007,0.708], + [49009,0.642], + [49011,0.783], + [49013,0.744], + [49015,0.809], + [49017,0.795], + [49019,0.69], + [49021,0.632], + [49023,0.827], + [49025,0.762], + [49027,0.766], + [49029,0.882], + [49031,0.891], + [49033,0.883], + [49035,0.685], + [49037,0.782], + [49039,0.772], + [49041,0.813], + [49043,0.744], + [49045,0.756], + [49047,0.751], + [49049,0.694], + [49051,0.779], + [49053,0.709], + [49055,0.784], + [49057,0.726], + [50001,0.756], + [50003,0.726], + [50005,0.714], + [50007,0.659], + [50009,0.839], + [50011,0.748], + [50013,0.816], + [50015,0.69], + [50017,0.812], + [50019,0.766], + [50021,0.7], + [50023,0.726], + [50025,0.696], + [50027,0.721], + [51001,0.741], + [51003,0.654], + [51005,0.827], + [51007,0.832], + [51009,0.754], + [51011,0.76], + [51013,0.47], + [51015,0.813], + [51017,0.87], + [51019,0.845], + [51021,0.848], + [51023,0.872], + [51025,0.7], + [51027,0.795], + [51029,0.747], + [51031,0.757], + [51033,0.829], + [51035,0.762], + [51036,0.85], + [51037,0.779], + [51041,0.784], + [51043,0.758], + [51045,0.857], + [51047,0.726], + [51049,0.778], + [51051,0.806], + [51053,0.758], + [51057,0.748], + [51059,0.719], + [51061,0.788], + [51063,0.785], + [51065,0.872], + [51067,0.785], + [51069,0.788], + [51071,0.778], + [51073,0.824], + [51075,0.912], + [51077,0.813], + [51079,0.798], + [51081,0.746], + [51083,0.759], + [51085,0.839], + [51087,0.669], + [51089,0.759], + [51091,0.766], + [51093,0.811], + [51095,0.765], + [51097,0.804], + [51099,0.764], + [51101,0.854], + [51103,0.771], + [51105,0.738], + [51107,0.808], + [51109,0.782], + [51111,0.744], + [51113,0.81], + [51115,0.83], + [51117,0.751], + [51119,0.811], + [51121,0.564], + [51125,0.778], + [51127,0.901], + [51131,0.711], + [51133,0.843], + [51135,0.643], + [51137,0.784], + [51139,0.756], + [51141,0.813], + [51143,0.794], + [51145,0.896], + [51147,0.634], + [51149,0.754], + [51153,0.748], + [51155,0.731], + [51157,0.725], + [51159,0.799], + [51161,0.777], + [51163,0.764], + [51165,0.747], + [51167,0.77], + [51169,0.77], + [51171,0.695], + [51173,0.729], + [51175,0.762], + [51177,0.799], + [51179,0.784], + [51181,0.742], + [51183,0.67], + [51185,0.734], + [51187,0.748], + [51191,0.742], + [51193,0.761], + [51195,0.697], + [51197,0.77], + [51199,0.786], + [51510,0.457], + [51520,0.618], + [51530,0.648], + [51540,0.413], + [51550,0.749], + [51570,0.658], + [51580,0.687], + [51590,0.546], + [51595,0.484], + [51600,0.721], + [51610,0.639], + [51620,0.463], + [51630,0.39], + [51640,0.633], + [51650,0.593], + [51660,0.386], + [51670,0.517], + [51678,0.512], + [51680,0.563], + [51683,0.682], + [51685,0.712], + [51690,0.594], + [51700,0.521], + [51710,0.466], + [51720,0.54], + [51730,0.508], + [51735,0.848], + [51740,0.615], + [51750,0.516], + [51760,0.449], + [51770,0.56], + [51775,0.688], + [51790,0.604], + [51800,0.751], + [51810,0.665], + [51820,0.587], + [51830,0.495], + [51840,0.506], + [53001,0.639], + [53003,0.713], + [53005,0.697], + [53007,0.68], + [53009,0.711], + [53011,0.678], + [53013,0.723], + [53015,0.673], + [53017,0.719], + [53019,0.716], + [53021,0.668], + [53023,0.728], + [53025,0.626], + [53027,0.687], + [53029,0.739], + [53031,0.738], + [53033,0.599], + [53035,0.684], + [53037,0.565], + [53039,0.699], + [53041,0.722], + [53043,0.785], + [53045,0.809], + [53047,0.686], + [53049,0.742], + [53051,0.793], + [53053,0.633], + [53055,0.704], + [53057,0.701], + [53059,0.762], + [53061,0.681], + [53063,0.65], + [53065,0.806], + [53067,0.674], + [53069,0.723], + [53071,0.618], + [53073,0.623], + [53075,0.49], + [53077,0.641], + [54001,0.763], + [54003,0.756], + [54005,0.762], + [54007,0.786], + [54009,0.792], + [54011,0.642], + [54013,0.776], + [54015,0.797], + [54017,0.819], + [54019,0.769], + [54021,0.715], + [54023,0.797], + [54025,0.75], + [54027,0.676], + [54029,0.752], + [54031,0.784], + [54033,0.733], + [54035,0.796], + [54037,0.778], + [54039,0.713], + [54041,0.725], + [54043,0.779], + [54045,0.728], + [54047,0.785], + [54049,0.751], + [54051,0.78], + [54053,0.781], + [54055,0.739], + [54057,0.769], + [54059,0.771], + [54061,0.592], + [54063,0.849], + [54065,0.712], + [54067,0.82], + [54069,0.7], + [54071,0.78], + [54073,0.797], + [54075,0.804], + [54077,0.827], + [54079,0.859], + [54081,0.766], + [54083,0.779], + [54085,0.777], + [54087,0.761], + [54089,0.815], + [54091,0.785], + [54093,0.795], + [54095,0.826], + [54097,0.792], + [54099,0.766], + [54101,0.791], + [54103,0.8], + [54105,0.814], + [54107,0.734], + [54109,0.814], + [55001,0.822], + [55003,0.707], + [55005,0.741], + [55007,0.818], + [55009,0.666], + [55011,0.779], + [55013,0.804], + [55015,0.836], + [55017,0.742], + [55019,0.79], + [55021,0.755], + [55023,0.77], + [55025,0.621], + [55027,0.739], + [55029,0.776], + [55031,0.698], + [55033,0.714], + [55035,0.648], + [55037,0.852], + [55039,0.725], + [55041,0.754], + [55043,0.747], + [55045,0.775], + [55047,0.763], + [55049,0.778], + [55051,0.761], + [55053,0.745], + [55055,0.718], + [55057,0.791], + [55059,0.68], + [55061,0.817], + [55063,0.661], + [55065,0.792], + [55067,0.805], + [55069,0.747], + [55071,0.768], + [55073,0.755], + [55075,0.762], + [55077,0.8], + [55078,0.703], + [55079,0.534], + [55081,0.723], + [55083,0.819], + [55085,0.778], + [55087,0.727], + [55089,0.783], + [55091,0.762], + [55093,0.767], + [55095,0.82], + [55097,0.701], + [55099,0.806], + [55101,0.699], + [55103,0.747], + [55105,0.735], + [55107,0.761], + [55109,0.778], + [55111,0.728], + [55113,0.717], + [55115,0.767], + [55117,0.723], + [55119,0.79], + [55121,0.756], + [55123,0.79], + [55125,0.794], + [55127,0.712], + [55129,0.821], + [55131,0.782], + [55133,0.777], + [55135,0.754], + [55137,0.819], + [55139,0.684], + [55141,0.764], + [56001,0.535], + [56003,0.774], + [56005,0.757], + [56007,0.713], + [56009,0.716], + [56011,0.755], + [56013,0.722], + [56015,0.706], + [56017,0.641], + [56019,0.73], + [56021,0.69], + [56023,0.768], + [56025,0.704], + [56027,0.638], + [56029,0.687], + [56031,0.775], + [56033,0.704], + [56035,0.736], + [56037,0.737], + [56039,0.608], + [56041,0.737], + [56043,0.709], + [56045,0.779] + ] +} diff --git a/data/regional/united-states/economics/homeownership/us-homeownership-value-median-2010.json b/data/regional/united-states/economics/homeownership/us-homeownership-value-median-2010.json new file mode 100644 index 0000000..2b9fdc5 --- /dev/null +++ b/data/regional/united-states/economics/homeownership/us-homeownership-value-median-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median House Value", + "description" : "Median value of owner-occupied housing units.", + "units" : "$", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","housing","investment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.homeownership.value.median.2010"], + [1001,133900], + [1003,177200], + [1005,88200], + [1007,81200], + [1009,113700], + [1011,66300], + [1013,70200], + [1015,98200], + [1017,82200], + [1019,97100], + [1021,103700], + [1023,63400], + [1025,73300], + [1027,82900], + [1029,87900], + [1031,116700], + [1033,94700], + [1035,72500], + [1037,73100], + [1039,85700], + [1041,71900], + [1043,102200], + [1045,93900], + [1047,70300], + [1049,84400], + [1051,136500], + [1053,83800], + [1055,98200], + [1057,71500], + [1059,78200], + [1061,77200], + [1063,71500], + [1065,70600], + [1067,89700], + [1069,116300], + [1071,86300], + [1073,138300], + [1075,68200], + [1077,107400], + [1079,97600], + [1081,139500], + [1083,122300], + [1085,64000], + [1087,79200], + [1089,155600], + [1091,79000], + [1093,74700], + [1095,101300], + [1097,120700], + [1099,80400], + [1101,121000], + [1103,115300], + [1105,61000], + [1107,81100], + [1109,93900], + [1111,88100], + [1113,93300], + [1115,126500], + [1117,193900], + [1119,66300], + [1121,87000], + [1123,91300], + [1125,148400], + [1127,83600], + [1129,85200], + [1131,54200], + [1133,83700], + [2013,121600], + [2016,163400], + [2020,269500], + [2050,153400], + [2060,171100], + [2068,174000], + [2070,199100], + [2090,206800], + [2100,205400], + [2105,184200], + [2110,291600], + [2122,193000], + [2130,242500], + [2150,182100], + [2158,80300], + [2164,156400], + [2170,212000], + [2180,144600], + [2185,135800], + [2188,129000], + [2195,195300], + [2198,152100], + [2220,309800], + [2230,253700], + [2240,168700], + [2261,165800], + [2275,163700], + [2282,151900], + [2290,99500], + [4001,80900], + [4003,154900], + [4005,257700], + [4007,156100], + [4009,119500], + [4011,65800], + [4012,100000], + [4013,238600], + [4015,170600], + [4017,134300], + [4019,198300], + [4021,164000], + [4023,148200], + [4025,231000], + [4027,142400], + [5001,78900], + [5003,62100], + [5005,118400], + [5007,155000], + [5009,105700], + [5011,64800], + [5013,51700], + [5015,119500], + [5017,50700], + [5019,78900], + [5021,59800], + [5023,110000], + [5025,66900], + [5027,76700], + [5029,82100], + [5031,107300], + [5033,98800], + [5035,101100], + [5037,75800], + [5039,59200], + [5041,55500], + [5043,73100], + [5045,127500], + [5047,81400], + [5049,78200], + [5051,126900], + [5053,96600], + [5055,88900], + [5057,68100], + [5059,77400], + [5061,71800], + [5063,82400], + [5065,76900], + [5067,60100], + [5069,76200], + [5071,83400], + [5073,49600], + [5075,57600], + [5077,54200], + [5079,71900], + [5081,73100], + [5083,78200], + [5085,117900], + [5087,97700], + [5089,91600], + [5091,86400], + [5093,68700], + [5095,55600], + [5097,75300], + [5099,62300], + [5101,77700], + [5103,61900], + [5105,80200], + [5107,60200], + [5109,79400], + [5111,64900], + [5113,79300], + [5115,99500], + [5117,74200], + [5119,134300], + [5121,68500], + [5123,66100], + [5125,130100], + [5127,69500], + [5129,69500], + [5131,108000], + [5133,73100], + [5135,78000], + [5137,89000], + [5139,71200], + [5141,79200], + [5143,154900], + [5145,92700], + [5147,55100], + [5149,75300], + [6001,590900], + [6003,453600], + [6005,341400], + [6007,265400], + [6009,350800], + [6011,275400], + [6013,548200], + [6015,240900], + [6017,445700], + [6019,257000], + [6021,244200], + [6023,324700], + [6025,192600], + [6027,290000], + [6029,217100], + [6031,220400], + [6033,265400], + [6035,217300], + [6037,508800], + [6039,276000], + [6041,868000], + [6043,278500], + [6045,410600], + [6047,241000], + [6049,158600], + [6051,481300], + [6053,566300], + [6055,571500], + [6057,444100], + [6059,607900], + [6061,427600], + [6063,289100], + [6065,325300], + [6067,324200], + [6069,542300], + [6071,319000], + [6073,486000], + [6075,785200], + [6077,318600], + [6079,513900], + [6081,784800], + [6083,576500], + [6085,701000], + [6087,648700], + [6089,267600], + [6091,323300], + [6093,237400], + [6095,389800], + [6097,524400], + [6099,285200], + [6101,262200], + [6103,221400], + [6105,268200], + [6107,211200], + [6109,332500], + [6111,568700], + [6113,391300], + [6115,224200], + [8001,196100], + [8003,131100], + [8005,232300], + [8007,304400], + [8009,72700], + [8011,69400], + [8013,353300], + [8014,270500], + [8015,248100], + [8017,80700], + [8019,280000], + [8021,112200], + [8023,105200], + [8025,81400], + [8027,218400], + [8029,193900], + [8031,240900], + [8033,136200], + [8035,338700], + [8037,530900], + [8039,346400], + [8041,216800], + [8043,152800], + [8045,341600], + [8047,316400], + [8049,269100], + [8051,335100], + [8053,275000], + [8055,154900], + [8057,144300], + [8059,259300], + [8061,62200], + [8063,102300], + [8065,168200], + [8067,343400], + [8069,246000], + [8071,142300], + [8073,103700], + [8075,119900], + [8077,221000], + [8079,258300], + [8081,166300], + [8083,191500], + [8085,201700], + [8087,136200], + [8089,93800], + [8091,405800], + [8093,245800], + [8095,111600], + [8097,670200], + [8099,83000], + [8101,140700], + [8103,193300], + [8105,129300], + [8107,422300], + [8109,120500], + [8111,252000], + [8113,493000], + [8115,83100], + [8117,465700], + [8119,226000], + [8121,114300], + [8123,195700], + [8125,116200], + [9001,477700], + [9003,247400], + [9005,285800], + [9007,307400], + [9009,273300], + [9011,268900], + [9013,266100], + [9015,230100], + [10001,207500], + [10003,252800], + [10005,243700], + [11001,443300], + [12001,189600], + [12003,137900], + [12005,175500], + [12007,120500], + [12009,186900], + [12011,247500], + [12013,89000], + [12015,184900], + [12017,141800], + [12019,189700], + [12021,357400], + [12023,134300], + [12027,114100], + [12029,98200], + [12031,175900], + [12033,148600], + [12035,219100], + [12037,177000], + [12039,104500], + [12041,112700], + [12043,106900], + [12045,131900], + [12047,75700], + [12049,111000], + [12051,117300], + [12053,156400], + [12055,122000], + [12057,198900], + [12059,87100], + [12061,198200], + [12063,97700], + [12065,127600], + [12067,162200], + [12069,178400], + [12071,210600], + [12073,196700], + [12075,112100], + [12077,90700], + [12079,96400], + [12081,214000], + [12083,150700], + [12085,254900], + [12086,269600], + [12087,503900], + [12089,213600], + [12091,204400], + [12093,136700], + [12095,228600], + [12097,199200], + [12099,261900], + [12101,157400], + [12103,185700], + [12105,141900], + [12107,109300], + [12109,294100], + [12111,177200], + [12113,182300], + [12115,235100], + [12117,241000], + [12119,184000], + [12121,111600], + [12123,87800], + [12125,115100], + [12127,186300], + [12129,143500], + [12131,199800], + [12133,103800], + [13001,83600], + [13003,54900], + [13005,71300], + [13007,66400], + [13009,112500], + [13011,146800], + [13013,138900], + [13015,146800], + [13017,73100], + [13019,76200], + [13021,118100], + [13023,71000], + [13025,68500], + [13027,93000], + [13029,187400], + [13031,135500], + [13033,77000], + [13035,142900], + [13037,61700], + [13039,161900], + [13043,76700], + [13045,139900], + [13047,132600], + [13049,73400], + [13051,177100], + [13053,91900], + [13055,80400], + [13057,201900], + [13059,161400], + [13061,58500], + [13063,127800], + [13065,76700], + [13067,211000], + [13069,77700], + [13071,84300], + [13073,168700], + [13075,80000], + [13077,177900], + [13079,92400], + [13081,93900], + [13083,123400], + [13085,201400], + [13087,98900], + [13089,190000], + [13091,75500], + [13093,66000], + [13095,100300], + [13097,157300], + [13099,75000], + [13101,73800], + [13103,153500], + [13105,81400], + [13107,77800], + [13109,91500], + [13111,172400], + [13113,252700], + [13115,118300], + [13117,276700], + [13119,124300], + [13121,253100], + [13123,137600], + [13125,69500], + [13127,180900], + [13129,123200], + [13131,90800], + [13133,124300], + [13135,194200], + [13137,144600], + [13139,175200], + [13141,73800], + [13143,109000], + [13145,196000], + [13147,129900], + [13149,95300], + [13151,171500], + [13153,132500], + [13155,77500], + [13157,166000], + [13159,121800], + [13161,74000], + [13163,74500], + [13165,69700], + [13167,64000], + [13169,135200], + [13171,114100], + [13173,81300], + [13175,88800], + [13177,145300], + [13179,120300], + [13181,98100], + [13183,75700], + [13185,128800], + [13187,170400], + [13189,93600], + [13191,103400], + [13193,69000], + [13195,128100], + [13197,75900], + [13199,95600], + [13201,80200], + [13205,76800], + [13207,152400], + [13209,80300], + [13211,169400], + [13213,98300], + [13215,131900], + [13217,148600], + [13219,228700], + [13221,134400], + [13223,149600], + [13225,113900], + [13227,170600], + [13229,75400], + [13231,153300], + [13233,108300], + [13235,79000], + [13237,157600], + [13239,66700], + [13241,175700], + [13243,64300], + [13245,99300], + [13247,169900], + [13249,91300], + [13251,76800], + [13253,72900], + [13255,124400], + [13257,108100], + [13259,49500], + [13261,86300], + [13263,85900], + [13265,67200], + [13267,80700], + [13269,61500], + [13271,58900], + [13273,75100], + [13275,137200], + [13277,109500], + [13279,86000], + [13281,194600], + [13283,69000], + [13285,130300], + [13287,83100], + [13289,65500], + [13291,197000], + [13293,93700], + [13295,108100], + [13297,164900], + [13299,78000], + [13301,61100], + [13303,77500], + [13305,86800], + [13307,62800], + [13309,65000], + [13311,171000], + [13313,130000], + [13315,56900], + [13317,84700], + [13319,71200], + [13321,85400], + [15001,361400], + [15003,559000], + [15005,0], + [15007,583200], + [15009,614600], + [16001,214500], + [16003,205100], + [16005,135500], + [16007,135900], + [16009,123000], + [16011,125300], + [16013,473600], + [16015,186700], + [16017,236300], + [16019,153400], + [16021,174600], + [16023,108500], + [16025,226100], + [16027,151300], + [16029,116000], + [16031,114600], + [16033,82800], + [16035,124800], + [16037,127600], + [16039,142600], + [16041,165300], + [16043,125200], + [16045,161700], + [16047,127500], + [16049,140900], + [16051,154000], + [16053,135200], + [16055,220000], + [16057,183800], + [16059,174900], + [16061,112100], + [16063,124600], + [16065,169700], + [16067,98400], + [16069,159600], + [16071,120400], + [16073,133500], + [16075,134800], + [16077,121900], + [16079,145000], + [16081,294800], + [16083,148400], + [16085,287100], + [16087,140200], + [17001,98400], + [17003,58200], + [17005,106500], + [17007,174400], + [17009,80100], + [17011,102000], + [17013,101900], + [17015,98500], + [17017,77300], + [17019,145200], + [17021,80500], + [17023,84100], + [17025,72700], + [17027,124200], + [17029,89500], + [17031,265800], + [17033,70400], + [17035,81300], + [17037,192300], + [17039,96200], + [17041,93000], + [17043,316900], + [17045,74200], + [17047,61400], + [17049,106500], + [17051,73200], + [17053,90700], + [17055,61100], + [17057,79000], + [17059,56600], + [17061,72000], + [17063,193300], + [17065,67500], + [17067,80200], + [17069,63300], + [17071,77600], + [17073,108800], + [17075,101100], + [17077,96100], + [17079,77900], + [17081,85800], + [17083,118200], + [17085,138000], + [17087,94700], + [17089,245000], + [17091,148400], + [17093,248300], + [17095,80600], + [17097,287300], + [17099,125500], + [17101,67900], + [17103,113400], + [17105,101700], + [17107,95100], + [17109,85100], + [17111,249700], + [17113,151700], + [17115,90500], + [17117,93400], + [17119,122600], + [17121,71400], + [17123,102700], + [17125,81400], + [17127,81800], + [17129,113500], + [17131,102800], + [17133,197400], + [17135,78100], + [17137,93300], + [17139,89700], + [17141,152400], + [17143,119000], + [17145,76900], + [17147,119100], + [17149,76000], + [17151,88300], + [17153,48800], + [17155,123600], + [17157,86900], + [17159,76000], + [17161,111700], + [17163,122400], + [17165,69400], + [17167,118900], + [17169,74900], + [17171,82100], + [17173,84500], + [17175,87500], + [17177,103300], + [17179,125700], + [17181,84200], + [17183,76500], + [17185,77400], + [17187,83300], + [17189,103100], + [17191,65100], + [17193,62900], + [17195,98100], + [17197,240500], + [17199,87600], + [17201,128100], + [17203,151500], + [18001,111700], + [18003,113200], + [18005,133100], + [18007,85200], + [18009,77600], + [18011,174300], + [18013,158500], + [18015,107400], + [18017,82400], + [18019,125800], + [18021,87100], + [18023,98700], + [18025,86300], + [18027,97200], + [18029,160300], + [18031,118500], + [18033,112300], + [18035,92400], + [18037,129600], + [18039,128000], + [18041,84900], + [18043,147100], + [18045,87600], + [18047,144500], + [18049,93900], + [18051,99100], + [18053,83100], + [18055,87500], + [18057,211200], + [18059,159200], + [18061,124200], + [18063,161100], + [18065,95200], + [18067,108300], + [18069,96700], + [18071,113700], + [18073,142200], + [18075,81300], + [18077,106800], + [18079,92200], + [18081,143400], + [18083,84700], + [18085,134600], + [18087,148200], + [18089,135400], + [18091,119800], + [18093,97400], + [18095,96300], + [18097,122200], + [18099,123400], + [18101,84100], + [18103,86100], + [18105,146700], + [18107,107100], + [18109,141200], + [18111,109600], + [18113,112600], + [18115,134200], + [18117,90500], + [18119,95700], + [18121,91600], + [18123,93600], + [18125,80700], + [18127,164500], + [18129,120500], + [18131,97900], + [18133,119800], + [18135,80100], + [18137,138200], + [18139,106800], + [18141,116300], + [18143,96600], + [18145,126400], + [18147,111600], + [18149,98200], + [18151,121700], + [18153,77000], + [18155,119800], + [18157,128900], + [18159,113500], + [18161,112600], + [18163,111700], + [18165,77000], + [18167,89900], + [18169,96400], + [18171,102600], + [18173,140200], + [18175,100200], + [18177,99700], + [18179,110100], + [18181,111000], + [18183,123500], + [19001,93800], + [19003,81200], + [19005,105200], + [19007,72400], + [19009,72900], + [19011,128900], + [19013,118600], + [19015,115800], + [19017,132800], + [19019,113400], + [19021,87600], + [19023,90900], + [19025,70700], + [19027,106700], + [19029,82600], + [19031,125900], + [19033,107900], + [19035,77500], + [19037,93800], + [19039,92400], + [19041,98500], + [19043,96500], + [19045,106100], + [19047,81500], + [19049,176600], + [19051,101400], + [19053,69300], + [19055,113700], + [19057,90400], + [19059,153000], + [19061,136800], + [19063,78600], + [19065,81200], + [19067,89200], + [19069,82500], + [19071,92800], + [19073,80400], + [19075,111000], + [19077,94600], + [19079,90500], + [19081,81200], + [19083,85600], + [19085,111400], + [19087,96400], + [19089,90300], + [19091,81600], + [19093,74300], + [19095,128400], + [19097,106100], + [19099,114600], + [19101,92400], + [19103,177000], + [19105,106900], + [19107,74700], + [19109,84700], + [19111,78900], + [19113,136400], + [19115,87400], + [19117,85200], + [19119,97900], + [19121,145400], + [19123,95200], + [19125,137300], + [19127,99600], + [19129,144200], + [19131,99200], + [19133,71300], + [19135,80100], + [19137,80800], + [19139,120300], + [19141,83000], + [19143,70200], + [19145,81900], + [19147,74500], + [19149,119400], + [19151,56100], + [19153,149700], + [19155,126100], + [19157,108900], + [19159,83300], + [19161,76800], + [19163,134600], + [19165,103100], + [19167,119900], + [19169,156000], + [19171,96500], + [19173,67000], + [19175,88100], + [19177,67600], + [19179,74800], + [19181,150900], + [19183,118600], + [19185,60500], + [19187,85600], + [19189,90900], + [19191,147600], + [19193,94700], + [19195,95200], + [19197,72700], + [20001,64400], + [20003,87300], + [20005,89200], + [20007,52500], + [20009,71000], + [20011,76400], + [20013,74800], + [20015,121200], + [20017,86100], + [20019,49800], + [20021,69100], + [20023,67100], + [20025,59100], + [20027,86500], + [20029,63400], + [20031,98500], + [20033,42500], + [20035,76900], + [20037,83900], + [20039,57300], + [20041,97400], + [20043,84600], + [20045,176500], + [20047,54600], + [20049,52700], + [20051,123800], + [20053,67400], + [20055,102100], + [20057,82700], + [20059,117100], + [20061,118600], + [20063,66500], + [20065,71200], + [20067,85500], + [20069,100000], + [20071,67800], + [20073,52400], + [20075,73300], + [20077,61400], + [20079,103300], + [20081,88100], + [20083,63700], + [20085,114800], + [20087,136200], + [20089,45500], + [20091,209900], + [20093,85900], + [20095,77100], + [20097,75000], + [20099,64600], + [20101,55100], + [20103,166700], + [20105,64300], + [20107,98800], + [20109,66600], + [20111,91200], + [20113,115300], + [20115,80500], + [20117,74700], + [20119,80800], + [20121,165500], + [20123,68500], + [20125,68100], + [20127,76400], + [20129,64600], + [20131,85800], + [20133,71100], + [20135,47100], + [20137,51200], + [20139,96400], + [20141,39700], + [20143,83800], + [20145,63200], + [20147,57400], + [20149,138600], + [20151,74500], + [20153,57600], + [20155,87500], + [20157,47800], + [20159,62600], + [20161,154800], + [20163,62900], + [20165,50500], + [20167,63300], + [20169,114000], + [20171,100100], + [20173,117300], + [20175,82100], + [20177,115300], + [20179,81600], + [20181,79300], + [20183,58400], + [20185,50200], + [20187,77500], + [20189,78200], + [20191,82400], + [20193,83900], + [20195,69700], + [20197,99400], + [20199,65300], + [20201,53600], + [20203,76800], + [20205,58500], + [20207,47800], + [20209,97600], + [21001,80000], + [21003,89500], + [21005,131900], + [21007,78100], + [21009,96400], + [21011,70100], + [21013,64500], + [21015,175900], + [21017,137700], + [21019,93200], + [21021,126700], + [21023,87500], + [21025,50900], + [21027,80800], + [21029,143000], + [21031,77700], + [21033,72300], + [21035,105300], + [21037,146300], + [21039,67400], + [21041,109700], + [21043,74500], + [21045,71000], + [21047,95500], + [21049,134500], + [21051,51200], + [21053,62700], + [21055,69300], + [21057,67700], + [21059,106400], + [21061,84600], + [21063,66100], + [21065,70300], + [21067,159200], + [21069,82700], + [21071,66700], + [21073,138900], + [21075,55300], + [21077,105500], + [21079,109200], + [21081,117900], + [21083,83900], + [21085,83700], + [21087,75400], + [21089,88400], + [21091,85500], + [21093,131900], + [21095,52500], + [21097,112800], + [21099,80200], + [21101,101200], + [21103,123900], + [21105,63600], + [21107,77200], + [21109,64700], + [21111,145900], + [21113,150200], + [21115,71400], + [21117,145200], + [21119,60200], + [21121,65000], + [21123,97200], + [21125,96100], + [21127,65800], + [21129,57300], + [21131,54600], + [21133,51500], + [21135,55800], + [21137,83000], + [21139,76800], + [21141,87500], + [21143,84900], + [21145,107500], + [21147,62400], + [21149,71900], + [21151,141100], + [21153,46200], + [21155,97000], + [21157,96900], + [21159,67800], + [21161,98500], + [21163,107700], + [21165,67100], + [21167,129400], + [21169,73400], + [21171,67600], + [21173,98100], + [21175,72700], + [21177,75700], + [21179,116800], + [21181,79800], + [21183,78000], + [21185,234400], + [21187,102000], + [21189,68500], + [21191,101200], + [21193,55900], + [21195,64700], + [21197,80700], + [21199,95500], + [21201,64500], + [21203,72300], + [21205,90400], + [21207,81400], + [21209,158700], + [21211,169500], + [21213,113700], + [21215,167300], + [21217,96600], + [21219,79700], + [21221,98300], + [21223,119900], + [21225,78600], + [21227,135400], + [21229,107800], + [21231,70600], + [21233,66200], + [21235,64400], + [21237,54400], + [21239,180800], + [22001,86700], + [22003,76500], + [22005,164200], + [22007,86500], + [22009,82100], + [22011,83400], + [22013,62700], + [22015,130400], + [22017,113300], + [22019,109400], + [22021,67800], + [22023,122700], + [22025,67900], + [22027,61200], + [22029,72700], + [22031,80300], + [22033,156100], + [22035,44400], + [22037,101500], + [22039,76100], + [22041,72100], + [22043,83000], + [22045,98100], + [22047,88700], + [22049,73600], + [22051,175100], + [22053,83700], + [22055,151600], + [22057,115500], + [22059,72800], + [22061,110700], + [22063,142400], + [22065,71400], + [22067,71200], + [22069,90500], + [22071,184100], + [22073,112400], + [22075,203100], + [22077,108600], + [22079,110500], + [22081,72200], + [22083,70000], + [22085,74600], + [22087,132400], + [22089,170200], + [22091,82400], + [22093,116600], + [22095,146700], + [22097,82100], + [22099,84300], + [22101,85500], + [22103,201800], + [22105,133400], + [22107,72400], + [22109,118100], + [22111,79700], + [22113,93300], + [22115,85400], + [22117,84400], + [22119,76400], + [22121,126500], + [22123,76600], + [22125,161400], + [22127,59500], + [23001,155700], + [23003,85900], + [23005,248400], + [23007,128700], + [23009,201600], + [23011,148100], + [23013,203800], + [23015,206200], + [23017,146500], + [23019,133600], + [23021,100800], + [23023,193100], + [23025,109500], + [23027,150300], + [23029,102300], + [23031,233300], + [24001,116800], + [24003,370100], + [24005,269900], + [24009,392900], + [24011,228100], + [24013,350900], + [24015,261200], + [24017,355800], + [24019,205000], + [24021,349500], + [24023,169400], + [24025,298800], + [24027,456200], + [24029,281100], + [24031,482900], + [24033,327600], + [24035,375700], + [24037,327800], + [24039,155900], + [24041,352400], + [24043,238000], + [24045,195100], + [24047,289100], + [24510,160400], + [25001,392700], + [25003,207800], + [25005,306600], + [25007,681300], + [25009,372400], + [25011,222000], + [25013,200500], + [25015,262200], + [25017,420800], + [25019,1000001], + [25021,408100], + [25023,360700], + [25025,384500], + [25027,282800], + [26001,119300], + [26003,111500], + [26005,149400], + [26007,104800], + [26009,156500], + [26011,99000], + [26013,86500], + [26015,147300], + [26017,107800], + [26019,160200], + [26021,135600], + [26023,111800], + [26025,110300], + [26027,133700], + [26029,162600], + [26031,123400], + [26033,103100], + [26035,92500], + [26037,167700], + [26039,108000], + [26041,100600], + [26043,87800], + [26045,152700], + [26047,182900], + [26049,118000], + [26051,117700], + [26053,69200], + [26055,174300], + [26057,93600], + [26059,116500], + [26061,86100], + [26063,104900], + [26065,137900], + [26067,123700], + [26069,102300], + [26071,75700], + [26073,128000], + [26075,130000], + [26077,145900], + [26079,105900], + [26081,147600], + [26083,81800], + [26085,92900], + [26087,165200], + [26089,241200], + [26091,140400], + [26093,216400], + [26095,86000], + [26097,126100], + [26099,157000], + [26101,124000], + [26103,125100], + [26105,121600], + [26107,119200], + [26109,97300], + [26111,132800], + [26113,112300], + [26115,161800], + [26117,112700], + [26119,103200], + [26121,112800], + [26123,115800], + [26125,204300], + [26127,115400], + [26129,105900], + [26131,75300], + [26133,101100], + [26135,93100], + [26137,122300], + [26139,161200], + [26141,108700], + [26143,107400], + [26145,110000], + [26147,150300], + [26149,116200], + [26151,115600], + [26153,87700], + [26155,129300], + [26157,112200], + [26159,125600], + [26161,216200], + [26163,121100], + [26165,111500], + [27001,177900], + [27003,223100], + [27005,166800], + [27007,143800], + [27009,170800], + [27011,81900], + [27013,163500], + [27015,122400], + [27017,163500], + [27019,287100], + [27021,184900], + [27023,94400], + [27025,230600], + [27027,146100], + [27029,113300], + [27031,247100], + [27033,81800], + [27035,187000], + [27037,243700], + [27039,163700], + [27041,182600], + [27043,87000], + [27045,133900], + [27047,111800], + [27049,192900], + [27051,102700], + [27053,247900], + [27055,149200], + [27057,175500], + [27059,203700], + [27061,146800], + [27063,100300], + [27065,162800], + [27067,157400], + [27069,64200], + [27071,99800], + [27073,77100], + [27075,142000], + [27077,135500], + [27079,191900], + [27081,76300], + [27083,136300], + [27085,169400], + [27087,86500], + [27089,84600], + [27091,96200], + [27093,165600], + [27095,167600], + [27097,159500], + [27099,108600], + [27101,90000], + [27103,169700], + [27105,97200], + [27107,79300], + [27109,174000], + [27111,158600], + [27113,91600], + [27115,162400], + [27117,85100], + [27119,115800], + [27121,148700], + [27123,222700], + [27125,80800], + [27127,88300], + [27129,97100], + [27131,210400], + [27133,99200], + [27135,96200], + [27137,140400], + [27139,274300], + [27141,226300], + [27143,148500], + [27145,174500], + [27147,156300], + [27149,120300], + [27151,97600], + [27153,139400], + [27155,69200], + [27157,157300], + [27159,113800], + [27161,141400], + [27163,264800], + [27165,89300], + [27167,102800], + [27169,159200], + [27171,222300], + [27173,97100], + [28001,77500], + [28003,85700], + [28005,72300], + [28007,72200], + [28009,79100], + [28011,77800], + [28013,60700], + [28015,65400], + [28017,59800], + [28019,72800], + [28021,53500], + [28023,59900], + [28025,74500], + [28027,53400], + [28029,73200], + [28031,81600], + [28033,152300], + [28035,110400], + [28037,70000], + [28039,92400], + [28041,72600], + [28043,85900], + [28045,150700], + [28047,142700], + [28049,105000], + [28051,46900], + [28053,60100], + [28055,62000], + [28057,80000], + [28059,125500], + [28061,67100], + [28063,67000], + [28065,58800], + [28067,79500], + [28069,61700], + [28071,149800], + [28073,157200], + [28075,83200], + [28077,71500], + [28079,70100], + [28081,107100], + [28083,63400], + [28085,80000], + [28087,104200], + [28089,181100], + [28091,79600], + [28093,84800], + [28095,79500], + [28097,68400], + [28099,69200], + [28101,67100], + [28103,55900], + [28105,106900], + [28107,75000], + [28109,121700], + [28111,71500], + [28113,82000], + [28115,84000], + [28117,70800], + [28119,46200], + [28121,142400], + [28123,63800], + [28125,65300], + [28127,75100], + [28129,72600], + [28131,105400], + [28133,63300], + [28135,51600], + [28137,100500], + [28139,71100], + [28141,73200], + [28143,73000], + [28145,78600], + [28147,83800], + [28149,99700], + [28151,72800], + [28153,60500], + [28155,72500], + [28157,55400], + [28159,71900], + [28161,61700], + [28163,70500], + [29001,97800], + [29003,125500], + [29005,69500], + [29007,84700], + [29009,101600], + [29011,84000], + [29013,102000], + [29015,97500], + [29017,92800], + [29019,153900], + [29021,107800], + [29023,87700], + [29025,97600], + [29027,122700], + [29029,187200], + [29031,132500], + [29033,72600], + [29035,88100], + [29037,152900], + [29039,92300], + [29041,76500], + [29043,146800], + [29045,68700], + [29047,153900], + [29049,150200], + [29051,136300], + [29053,112400], + [29055,105400], + [29057,73000], + [29059,96800], + [29061,99100], + [29063,115100], + [29065,84100], + [29067,87800], + [29069,67300], + [29071,147200], + [29073,111900], + [29075,79500], + [29077,125500], + [29079,71700], + [29081,77700], + [29083,103300], + [29085,89900], + [29087,74600], + [29089,98300], + [29091,94200], + [29093,77200], + [29095,129900], + [29097,93400], + [29099,154700], + [29101,133100], + [29103,56500], + [29105,93000], + [29107,121000], + [29109,94700], + [29111,79400], + [29113,155600], + [29115,66800], + [29117,92700], + [29119,86800], + [29121,84200], + [29123,83400], + [29125,112500], + [29127,91200], + [29129,69600], + [29131,108200], + [29133,67400], + [29135,111900], + [29137,79100], + [29139,107300], + [29141,114400], + [29143,67100], + [29145,103400], + [29147,94900], + [29149,69200], + [29151,120400], + [29153,107000], + [29155,61200], + [29157,122400], + [29159,93200], + [29161,114700], + [29163,97900], + [29165,185100], + [29167,112300], + [29169,120200], + [29171,98200], + [29173,106800], + [29175,81100], + [29177,126100], + [29179,76300], + [29181,68100], + [29183,197300], + [29185,82800], + [29186,124700], + [29187,101800], + [29189,179300], + [29195,84000], + [29197,55900], + [29199,75000], + [29201,95000], + [29203,72100], + [29205,69400], + [29207,80800], + [29209,139900], + [29211,68700], + [29213,132100], + [29215,92100], + [29217,82600], + [29219,161000], + [29221,82400], + [29223,72200], + [29225,120500], + [29227,57600], + [29229,89300], + [29510,122200], + [30001,169700], + [30003,89700], + [30005,73100], + [30007,159700], + [30009,200700], + [30011,66200], + [30013,146600], + [30015,107000], + [30017,86700], + [30019,77300], + [30021,100300], + [30023,102600], + [30025,86700], + [30027,104100], + [30029,231800], + [30031,277300], + [30033,68800], + [30035,73600], + [30037,90900], + [30039,169900], + [30041,109000], + [30043,225300], + [30045,101500], + [30047,201900], + [30049,185500], + [30051,71400], + [30053,148500], + [30055,82800], + [30057,240100], + [30059,96500], + [30061,159400], + [30063,233700], + [30065,112200], + [30067,207300], + [30069,106800], + [30071,79100], + [30073,86200], + [30075,99700], + [30077,114600], + [30079,69400], + [30081,235500], + [30083,106500], + [30085,61700], + [30087,102900], + [30089,172500], + [30091,68400], + [30093,117200], + [30095,170100], + [30097,184100], + [30099,133700], + [30101,97900], + [30103,66200], + [30105,81400], + [30107,85000], + [30109,60000], + [30111,168800], + [31001,95000], + [31003,67000], + [31005,76100], + [31007,76900], + [31009,57600], + [31011,71100], + [31013,90600], + [31015,52100], + [31017,56400], + [31019,128600], + [31021,83100], + [31023,87800], + [31025,142800], + [31027,85100], + [31029,82600], + [31031,95300], + [31033,94200], + [31035,73700], + [31037,85400], + [31039,88000], + [31041,71500], + [31043,97800], + [31045,91800], + [31047,83400], + [31049,65600], + [31051,75200], + [31053,110500], + [31055,141400], + [31057,63400], + [31059,75100], + [31061,50400], + [31063,73600], + [31065,55700], + [31067,97800], + [31069,58700], + [31071,73900], + [31073,94900], + [31075,41100], + [31077,52100], + [31079,107700], + [31081,108600], + [31083,69900], + [31085,84500], + [31087,48700], + [31089,82300], + [31091,67800], + [31093,89300], + [31095,74400], + [31097,76400], + [31099,101100], + [31101,88200], + [31103,57500], + [31105,76800], + [31107,67000], + [31109,145400], + [31111,109100], + [31113,72200], + [31115,58900], + [31117,74400], + [31119,100500], + [31121,78900], + [31123,79800], + [31125,60200], + [31127,78200], + [31129,54200], + [31131,114000], + [31133,55100], + [31135,77100], + [31137,90200], + [31139,87800], + [31141,108100], + [31143,86400], + [31145,77300], + [31147,63700], + [31149,57300], + [31151,95100], + [31153,158600], + [31155,137500], + [31157,95900], + [31159,136400], + [31161,63300], + [31163,53200], + [31165,109300], + [31167,87800], + [31169,61900], + [31171,71100], + [31173,67100], + [31175,72900], + [31177,167200], + [31179,102400], + [31181,58700], + [31183,66100], + [31185,92300], + [32001,188300], + [32003,257300], + [32005,375800], + [32007,178200], + [32009,77300], + [32011,87400], + [32013,138100], + [32015,103400], + [32017,151900], + [32019,185000], + [32021,114200], + [32023,161700], + [32027,134500], + [32029,239200], + [32031,295700], + [32033,117500], + [32510,270500], + [33001,232300], + [33003,240800], + [33005,201800], + [33007,131400], + [33009,210600], + [33011,269900], + [33013,243600], + [33015,306800], + [33017,229100], + [33019,181800], + [34001,264400], + [34003,482300], + [34005,270200], + [34007,223700], + [34009,337300], + [34011,175500], + [34013,395700], + [34015,236900], + [34017,383900], + [34019,446700], + [34021,309300], + [34023,356000], + [34025,424800], + [34027,474700], + [34029,294100], + [34031,382600], + [34033,196600], + [34035,431200], + [34037,322400], + [34039,397200], + [34041,307300], + [35001,188800], + [35003,129400], + [35005,86200], + [35006,74800], + [35007,103100], + [35009,98500], + [35011,71100], + [35013,137200], + [35015,90700], + [35017,125000], + [35019,74500], + [35021,70300], + [35023,90800], + [35025,87500], + [35027,166600], + [35028,297100], + [35029,91700], + [35031,69300], + [35033,107500], + [35035,104500], + [35037,65200], + [35039,136300], + [35041,94800], + [35043,184400], + [35045,149400], + [35047,112200], + [35049,291700], + [35051,92800], + [35053,108400], + [35055,212400], + [35057,92300], + [35059,91900], + [35061,129900], + [36001,202500], + [36003,66100], + [36005,386200], + [36007,99500], + [36009,77000], + [36011,98400], + [36013,79600], + [36015,85900], + [36017,88200], + [36019,117800], + [36021,221900], + [36023,95100], + [36025,126700], + [36027,323300], + [36029,117700], + [36031,148100], + [36033,88800], + [36035,95200], + [36037,101400], + [36039,180500], + [36041,172300], + [36043,87600], + [36045,116800], + [36047,562400], + [36049,100700], + [36051,112300], + [36053,111700], + [36055,130400], + [36057,95000], + [36059,487900], + [36061,825200], + [36063,97600], + [36065,101900], + [36067,124400], + [36069,129600], + [36071,312100], + [36073,86400], + [36075,88000], + [36077,129000], + [36079,418100], + [36081,479300], + [36083,171200], + [36085,461700], + [36087,476900], + [36089,79600], + [36091,221100], + [36093,160200], + [36095,139000], + [36097,86700], + [36099,88900], + [36101,83000], + [36103,424200], + [36105,186900], + [36107,98200], + [36109,162100], + [36111,242100], + [36113,183000], + [36115,137000], + [36117,107400], + [36119,556900], + [36121,97300], + [36123,114200], + [37001,137100], + [37003,119400], + [37005,133100], + [37007,78400], + [37009,145700], + [37011,155100], + [37013,107000], + [37015,77400], + [37017,77300], + [37019,190500], + [37021,188300], + [37023,108800], + [37025,164100], + [37027,106900], + [37029,221900], + [37031,207500], + [37033,97500], + [37035,130300], + [37037,193900], + [37039,146100], + [37041,137000], + [37043,163000], + [37045,103300], + [37047,89000], + [37049,151500], + [37051,116900], + [37053,240000], + [37055,342100], + [37057,128200], + [37059,160900], + [37061,83800], + [37063,176100], + [37065,82600], + [37067,149000], + [37069,121700], + [37071,120800], + [37073,120200], + [37075,119000], + [37077,125200], + [37079,85100], + [37081,153800], + [37083,85800], + [37085,123500], + [37087,158200], + [37089,184200], + [37091,83000], + [37093,116900], + [37095,95600], + [37097,164300], + [37099,163200], + [37101,136200], + [37103,91500], + [37105,127800], + [37107,91900], + [37109,146700], + [37111,99200], + [37113,167800], + [37115,154600], + [37117,79400], + [37119,185100], + [37121,105000], + [37123,83100], + [37125,186900], + [37127,116300], + [37129,227800], + [37131,74600], + [37133,137400], + [37135,258800], + [37137,133800], + [37139,170700], + [37141,147200], + [37143,159100], + [37145,115900], + [37147,125900], + [37149,167500], + [37151,119100], + [37153,71300], + [37155,69200], + [37157,101000], + [37159,125100], + [37161,101100], + [37163,87500], + [37165,77700], + [37167,125600], + [37169,117800], + [37171,103700], + [37173,114600], + [37175,169600], + [37177,112000], + [37179,194900], + [37181,98100], + [37183,222300], + [37185,94700], + [37187,91900], + [37189,215800], + [37191,104800], + [37193,109100], + [37195,111100], + [37197,109000], + [37199,129700], + [38001,81300], + [38003,80600], + [38005,47800], + [38007,79500], + [38009,68300], + [38011,85100], + [38013,45600], + [38015,152900], + [38017,147900], + [38019,58800], + [38021,61600], + [38023,56000], + [38025,73000], + [38027,48900], + [38029,59600], + [38031,76500], + [38033,56400], + [38035,139100], + [38037,59200], + [38039,61200], + [38041,58400], + [38043,59400], + [38045,63400], + [38047,55500], + [38049,66300], + [38051,49800], + [38053,86600], + [38055,94100], + [38057,96100], + [38059,110800], + [38061,66900], + [38063,51100], + [38065,92100], + [38067,71800], + [38069,77100], + [38071,85300], + [38073,87200], + [38075,64900], + [38077,93400], + [38079,56700], + [38081,74600], + [38083,48700], + [38085,71800], + [38087,52900], + [38089,115300], + [38091,63100], + [38093,91500], + [38095,48800], + [38097,89000], + [38099,64300], + [38101,118200], + [38103,55700], + [38105,93800], + [39001,97600], + [39003,104800], + [39005,128500], + [39007,118500], + [39009,114100], + [39011,125000], + [39013,85200], + [39015,124100], + [39017,160600], + [39019,110300], + [39021,124900], + [39023,109900], + [39025,162000], + [39027,125600], + [39029,97400], + [39031,94800], + [39033,93800], + [39035,137200], + [39037,114600], + [39039,108400], + [39041,252700], + [39043,138100], + [39045,167200], + [39047,112200], + [39049,155300], + [39051,134000], + [39053,98100], + [39055,230900], + [39057,160000], + [39059,90800], + [39061,148200], + [39063,130400], + [39065,102700], + [39067,81800], + [39069,119800], + [39071,106200], + [39073,114000], + [39075,154600], + [39077,121500], + [39079,88600], + [39081,84800], + [39083,134700], + [39085,158100], + [39087,92300], + [39089,152600], + [39091,124500], + [39093,147400], + [39095,122400], + [39097,146800], + [39099,98400], + [39101,98500], + [39103,184900], + [39105,80700], + [39107,125600], + [39109,137700], + [39111,86900], + [39113,119100], + [39115,86000], + [39117,131300], + [39119,111100], + [39121,88600], + [39123,142200], + [39125,89600], + [39127,100400], + [39129,144800], + [39131,96400], + [39133,157100], + [39135,123500], + [39137,130200], + [39139,112200], + [39141,111800], + [39143,116300], + [39145,85000], + [39147,101100], + [39149,124500], + [39151,128000], + [39153,141200], + [39155,102500], + [39157,110900], + [39159,174800], + [39161,88100], + [39163,87300], + [39165,194700], + [39167,110800], + [39169,136800], + [39171,101900], + [39173,154600], + [39175,107500], + [40001,74100], + [40003,50100], + [40005,68300], + [40007,66800], + [40009,86100], + [40011,67900], + [40013,85700], + [40015,64100], + [40017,131600], + [40019,88500], + [40021,97100], + [40023,68300], + [40025,56400], + [40027,131800], + [40029,63100], + [40031,99900], + [40033,72100], + [40035,87000], + [40037,100600], + [40039,90000], + [40041,92400], + [40043,73200], + [40045,66800], + [40047,82100], + [40049,74400], + [40051,104100], + [40053,60900], + [40055,57800], + [40057,44400], + [40059,65700], + [40061,72200], + [40063,65700], + [40065,85100], + [40067,56100], + [40069,64900], + [40071,74700], + [40073,101800], + [40075,50100], + [40077,65700], + [40079,72700], + [40081,87700], + [40083,116400], + [40085,77200], + [40087,118200], + [40089,71500], + [40091,74400], + [40093,77600], + [40095,80800], + [40097,89200], + [40099,77700], + [40101,84100], + [40103,74800], + [40105,76800], + [40107,70400], + [40109,117500], + [40111,78000], + [40113,96100], + [40115,78700], + [40117,78100], + [40119,116000], + [40121,83000], + [40123,92500], + [40125,89300], + [40127,69400], + [40129,78900], + [40131,139200], + [40133,66000], + [40135,80100], + [40137,80900], + [40139,83600], + [40141,51100], + [40143,126200], + [40145,133800], + [40147,99700], + [40149,72800], + [40151,80700], + [40153,95600], + [41001,142400], + [41003,263200], + [41005,331100], + [41007,253100], + [41009,219800], + [41011,194800], + [41013,228700], + [41015,266800], + [41017,314400], + [41019,185100], + [41021,99900], + [41023,128500], + [41025,124300], + [41027,308000], + [41029,274500], + [41031,184900], + [41033,253600], + [41035,170100], + [41037,122200], + [41039,230000], + [41041,246300], + [41043,180300], + [41045,136400], + [41047,205100], + [41049,115300], + [41051,281600], + [41053,227900], + [41055,119500], + [41057,237900], + [41059,137900], + [41061,151200], + [41063,183800], + [41065,188400], + [41067,303700], + [41069,99100], + [41071,237800], + [42001,200700], + [42003,115200], + [42005,89100], + [42007,112400], + [42009,112800], + [42011,170400], + [42013,97400], + [42015,101700], + [42017,321500], + [42019,159000], + [42021,86000], + [42023,74200], + [42025,139800], + [42027,175800], + [42029,334300], + [42031,97800], + [42033,82900], + [42035,98400], + [42037,118800], + [42039,97900], + [42041,174600], + [42043,153100], + [42045,232300], + [42047,91300], + [42049,111300], + [42051,82500], + [42053,79700], + [42055,175000], + [42057,157500], + [42059,81800], + [42061,105800], + [42063,98200], + [42065,80100], + [42067,127200], + [42069,137100], + [42071,184400], + [42073,92600], + [42075,155900], + [42077,203200], + [42079,113300], + [42081,119200], + [42083,72300], + [42085,101700], + [42087,92500], + [42089,206400], + [42091,297200], + [42093,143900], + [42095,220800], + [42097,93500], + [42099,144800], + [42101,135200], + [42103,217900], + [42105,89600], + [42107,88400], + [42109,122900], + [42111,92200], + [42113,120600], + [42115,124400], + [42117,105700], + [42119,143200], + [42121,76500], + [42123,83900], + [42125,130300], + [42127,173600], + [42129,126800], + [42131,140800], + [42133,175500], + [44001,363100], + [44003,246600], + [44005,388800], + [44007,258000], + [44009,351100], + [45001,85900], + [45003,119000], + [45005,67500], + [45007,117700], + [45009,84300], + [45011,67400], + [45013,290900], + [45015,149700], + [45017,94500], + [45019,242100], + [45021,82700], + [45023,87100], + [45025,77600], + [45027,89100], + [45029,90000], + [45031,81800], + [45033,61400], + [45035,171400], + [45037,101600], + [45039,91500], + [45041,108400], + [45043,174700], + [45045,148100], + [45047,105000], + [45049,79600], + [45051,170100], + [45053,118700], + [45055,110800], + [45057,122300], + [45059,85800], + [45061,61400], + [45063,136800], + [45065,110800], + [45067,82500], + [45069,60300], + [45071,102300], + [45073,126700], + [45075,81000], + [45077,123500], + [45079,146300], + [45081,96400], + [45083,116300], + [45085,98800], + [45087,74300], + [45089,67200], + [45091,158900], + [46003,63100], + [46005,83400], + [46007,60200], + [46009,67700], + [46011,138300], + [46013,115700], + [46015,87300], + [46017,67500], + [46019,114300], + [46021,40600], + [46023,67700], + [46025,64500], + [46027,116900], + [46029,131000], + [46031,45900], + [46033,160700], + [46035,108800], + [46037,64800], + [46039,87200], + [46041,56900], + [46043,58300], + [46045,70300], + [46047,86800], + [46049,51300], + [46051,99800], + [46053,56100], + [46055,74800], + [46057,83700], + [46059,74900], + [46061,87300], + [46063,67000], + [46065,133200], + [46067,68700], + [46069,66600], + [46071,54600], + [46073,62200], + [46075,75000], + [46077,70300], + [46079,108800], + [46081,155100], + [46083,169700], + [46085,64900], + [46087,91900], + [46089,45100], + [46091,81700], + [46093,145800], + [46095,49800], + [46097,58400], + [46099,144900], + [46101,102800], + [46102,18600], + [46103,149700], + [46105,50800], + [46107,55600], + [46109,73200], + [46111,62700], + [46115,62700], + [46117,113700], + [46119,72200], + [46121,53800], + [46123,69400], + [46125,85600], + [46127,132200], + [46129,62500], + [46135,115500], + [46137,62200], + [47001,116400], + [47003,114400], + [47005,77900], + [47007,99700], + [47009,157200], + [47011,133800], + [47013,86400], + [47015,112100], + [47017,77400], + [47019,92700], + [47021,155900], + [47023,102500], + [47025,89300], + [47027,88600], + [47029,95900], + [47031,119200], + [47033,84100], + [47035,133900], + [47037,164700], + [47039,66500], + [47041,98000], + [47043,128700], + [47045,91900], + [47047,170400], + [47049,101000], + [47051,110700], + [47053,86900], + [47055,98700], + [47057,89900], + [47059,104200], + [47061,80100], + [47063,118900], + [47065,147200], + [47067,76200], + [47069,88700], + [47071,86600], + [47073,104900], + [47075,87100], + [47077,90700], + [47079,85000], + [47081,102800], + [47083,87900], + [47085,104900], + [47087,89200], + [47089,122600], + [47091,92800], + [47093,152300], + [47095,65400], + [47097,77100], + [47099,91600], + [47101,90400], + [47103,113600], + [47105,166400], + [47107,105600], + [47109,84200], + [47111,93500], + [47113,112100], + [47115,107400], + [47117,107900], + [47119,137100], + [47121,107000], + [47123,107900], + [47125,129400], + [47127,135500], + [47129,79600], + [47131,87700], + [47133,87700], + [47135,71600], + [47137,94900], + [47139,96300], + [47141,124000], + [47143,102600], + [47145,118900], + [47147,149100], + [47149,157100], + [47151,76600], + [47153,105800], + [47155,155500], + [47157,135300], + [47159,117400], + [47161,105900], + [47163,110500], + [47165,169100], + [47167,135100], + [47169,109300], + [47171,111900], + [47173,91300], + [47175,73800], + [47177,90400], + [47179,136700], + [47181,74500], + [47183,82100], + [47185,94600], + [47187,335800], + [47189,187500], + [48001,81000], + [48003,86600], + [48005,81300], + [48007,129900], + [48009,93500], + [48011,90700], + [48013,80400], + [48015,146500], + [48017,65000], + [48019,147100], + [48021,119800], + [48023,64700], + [48025,73200], + [48027,113800], + [48029,117100], + [48031,165600], + [48033,75200], + [48035,88800], + [48037,88600], + [48039,140300], + [48041,141700], + [48043,101200], + [48045,43000], + [48047,46800], + [48049,76900], + [48051,80200], + [48053,137800], + [48055,99600], + [48057,89800], + [48059,73700], + [48061,74000], + [48063,93700], + [48065,82800], + [48067,68700], + [48069,68300], + [48071,136600], + [48073,68100], + [48075,54800], + [48077,77300], + [48079,40100], + [48081,58000], + [48083,59000], + [48085,199000], + [48087,58900], + [48089,97000], + [48091,187400], + [48093,83900], + [48095,70300], + [48097,111400], + [48099,92000], + [48101,42400], + [48103,54200], + [48105,60800], + [48107,51200], + [48109,39900], + [48111,70200], + [48113,129700], + [48115,48000], + [48117,73600], + [48119,62700], + [48121,178300], + [48123,68700], + [48125,44000], + [48127,49000], + [48129,58300], + [48131,53300], + [48133,58400], + [48135,75500], + [48137,61500], + [48139,136100], + [48141,101800], + [48143,110900], + [48145,59500], + [48147,81500], + [48149,133500], + [48151,52000], + [48153,56000], + [48155,29700], + [48157,171500], + [48159,94600], + [48161,89900], + [48163,49500], + [48165,77600], + [48167,141400], + [48169,57000], + [48171,191100], + [48173,90800], + [48175,99100], + [48177,69500], + [48179,65500], + [48181,99600], + [48183,109800], + [48185,89400], + [48187,142400], + [48189,73500], + [48191,44300], + [48193,82900], + [48195,64900], + [48197,46900], + [48199,95500], + [48201,131700], + [48203,94400], + [48205,128500], + [48207,39200], + [48209,173300], + [48211,90700], + [48213,86400], + [48215,73000], + [48217,85000], + [48219,71200], + [48221,152200], + [48223,95300], + [48225,67600], + [48227,57200], + [48229,43900], + [48231,90700], + [48233,56400], + [48235,74700], + [48237,67500], + [48239,77500], + [48241,76600], + [48243,101300], + [48245,88400], + [48247,65000], + [48249,67800], + [48251,111800], + [48253,51700], + [48255,69700], + [48257,130000], + [48259,243900], + [48261,71000], + [48263,48900], + [48265,129600], + [48267,89500], + [48269,325000], + [48271,46400], + [48273,74500], + [48275,42900], + [48277,81100], + [48279,50100], + [48281,121300], + [48283,39600], + [48285,83100], + [48287,115300], + [48289,78100], + [48291,79200], + [48293,78600], + [48295,73700], + [48297,83500], + [48299,150700], + [48301,66700], + [48303,103100], + [48305,66900], + [48307,71200], + [48309,101000], + [48311,83100], + [48313,84700], + [48315,58700], + [48317,75200], + [48319,131400], + [48321,83400], + [48323,77700], + [48325,102900], + [48327,66600], + [48329,121200], + [48331,81600], + [48333,95000], + [48335,55300], + [48337,83900], + [48339,157100], + [48341,83100], + [48343,75500], + [48345,60500], + [48347,88600], + [48349,79300], + [48351,67600], + [48353,51600], + [48355,103900], + [48357,82100], + [48359,86900], + [48361,81500], + [48363,80500], + [48365,81900], + [48367,147100], + [48369,88500], + [48371,50900], + [48373,67700], + [48375,80600], + [48377,56200], + [48379,82000], + [48381,130400], + [48383,63100], + [48385,75300], + [48387,59700], + [48389,31400], + [48391,67800], + [48393,111400], + [48395,77300], + [48397,189000], + [48399,60100], + [48401,86700], + [48403,68000], + [48405,65000], + [48407,75600], + [48409,88300], + [48411,71200], + [48413,67900], + [48415,71100], + [48417,69000], + [48419,64400], + [48421,80800], + [48423,118000], + [48425,144300], + [48427,57000], + [48429,57600], + [48431,68700], + [48433,55300], + [48435,77700], + [48437,59500], + [48439,134900], + [48441,89900], + [48443,42600], + [48445,63000], + [48447,46700], + [48449,86800], + [48451,88600], + [48453,200300], + [48455,73800], + [48457,71100], + [48459,86100], + [48461,42800], + [48463,64400], + [48465,81000], + [48467,95900], + [48469,98200], + [48471,106100], + [48473,117900], + [48475,45200], + [48477,135500], + [48479,104000], + [48481,85800], + [48483,65300], + [48485,87400], + [48487,57500], + [48489,46200], + [48491,172200], + [48493,124100], + [48495,38900], + [48497,119900], + [48499,94800], + [48501,61000], + [48503,69400], + [48505,47100], + [48507,36900], + [49001,150200], + [49003,162000], + [49005,180300], + [49007,109200], + [49009,181800], + [49011,224400], + [49013,162600], + [49015,105500], + [49017,129900], + [49019,194100], + [49021,204600], + [49023,163300], + [49025,174500], + [49027,121100], + [49029,260600], + [49031,163500], + [49033,120300], + [49035,237500], + [49037,108000], + [49039,148700], + [49041,148300], + [49043,492100], + [49045,183000], + [49047,183100], + [49049,233800], + [49051,317900], + [49053,240900], + [49055,167500], + [49057,168300], + [50001,219000], + [50003,198800], + [50005,154200], + [50007,254700], + [50009,124300], + [50011,202800], + [50013,235600], + [50015,211100], + [50017,182700], + [50019,149200], + [50021,172100], + [50023,197600], + [50025,204600], + [50027,209900], + [51001,149800], + [51003,349800], + [51005,104000], + [51007,189800], + [51009,142200], + [51011,132200], + [51013,571700], + [51015,187800], + [51017,129700], + [51019,187200], + [51021,88600], + [51023,202500], + [51025,97500], + [51027,62000], + [51029,99300], + [51031,134000], + [51033,218800], + [51035,97400], + [51036,146000], + [51037,103200], + [51041,235600], + [51043,366900], + [51045,142100], + [51047,309000], + [51049,149700], + [51051,71300], + [51053,163800], + [51057,185400], + [51059,507800], + [51061,390900], + [51063,138800], + [51065,246100], + [51067,156100], + [51069,248600], + [51071,97800], + [51073,228100], + [51075,338000], + [51077,92200], + [51079,223100], + [51081,94600], + [51083,96000], + [51085,281600], + [51087,230000], + [51089,91200], + [51091,177400], + [51093,256600], + [51095,348600], + [51097,171500], + [51099,305200], + [51101,198100], + [51103,254500], + [51105,77600], + [51107,495000], + [51109,218600], + [51111,101500], + [51113,250900], + [51115,207900], + [51117,115000], + [51119,248100], + [51121,187600], + [51125,174100], + [51127,251000], + [51131,199600], + [51133,251600], + [51135,126100], + [51137,249100], + [51139,168700], + [51141,102200], + [51143,102000], + [51145,279300], + [51147,155400], + [51149,202700], + [51153,377700], + [51155,121100], + [51157,428700], + [51159,148700], + [51161,189500], + [51163,180900], + [51165,192900], + [51167,85200], + [51169,85000], + [51171,216200], + [51173,86900], + [51175,149200], + [51177,305000], + [51179,355300], + [51181,171800], + [51183,119300], + [51185,80200], + [51187,254400], + [51191,126100], + [51193,202300], + [51195,77100], + [51197,104500], + [51199,324800], + [51510,486800], + [51520,94100], + [51530,126000], + [51540,279700], + [51550,272800], + [51570,187700], + [51580,65900], + [51590,89100], + [51595,97700], + [51600,488900], + [51610,641900], + [51620,184900], + [51630,335800], + [51640,90600], + [51650,191500], + [51660,213400], + [51670,130700], + [51678,244300], + [51680,139100], + [51683,325800], + [51685,303400], + [51690,89200], + [51700,198500], + [51710,208400], + [51720,75200], + [51730,115900], + [51735,326200], + [51740,180400], + [51750,154700], + [51760,201800], + [51770,128700], + [51775,165700], + [51790,164400], + [51800,252200], + [51810,277400], + [51820,169700], + [51830,344800], + [51840,267000], + [53001,131100], + [53003,157600], + [53005,169500], + [53007,245500], + [53009,241500], + [53011,260800], + [53013,146800], + [53015,191500], + [53017,204800], + [53019,146100], + [53021,147000], + [53023,115700], + [53025,141100], + [53027,158200], + [53029,307100], + [53031,308500], + [53033,407700], + [53035,284700], + [53037,265600], + [53039,200200], + [53041,188600], + [53043,145000], + [53045,216000], + [53047,161600], + [53049,165400], + [53051,200400], + [53053,269300], + [53055,495600], + [53057,278300], + [53059,244600], + [53061,338600], + [53063,187900], + [53065,174800], + [53067,257800], + [53069,206800], + [53071,195200], + [53073,293500], + [53075,182500], + [53077,149700], + [54001,80300], + [54003,193700], + [54005,76400], + [54007,76200], + [54009,85300], + [54011,97500], + [54013,71200], + [54015,76400], + [54017,75900], + [54019,67800], + [54021,69000], + [54023,105300], + [54025,93900], + [54027,134100], + [54029,85300], + [54031,130600], + [54033,95500], + [54035,102100], + [54037,255800], + [54039,98500], + [54041,87400], + [54043,65100], + [54045,79700], + [54047,32800], + [54049,87500], + [54051,77900], + [54053,79400], + [54055,73500], + [54057,114700], + [54059,63900], + [54061,145400], + [54063,95200], + [54065,167100], + [54067,73400], + [54069,94800], + [54071,95300], + [54073,89400], + [54075,100000], + [54077,87700], + [54079,135200], + [54081,88000], + [54083,94100], + [54085,70000], + [54087,75000], + [54089,74100], + [54091,77000], + [54093,87900], + [54095,77700], + [54097,99700], + [54099,85500], + [54101,58500], + [54103,82200], + [54105,61800], + [54107,102500], + [54109,59300], + [55001,130700], + [55003,103000], + [55005,134500], + [55007,157300], + [55009,159100], + [55011,130600], + [55013,156100], + [55015,158700], + [55017,146300], + [55019,110900], + [55021,177500], + [55023,113900], + [55025,230800], + [55027,155900], + [55029,189500], + [55031,130200], + [55033,152700], + [55035,147200], + [55037,123700], + [55039,143000], + [55041,117900], + [55043,118300], + [55045,150300], + [55047,137500], + [55049,155500], + [55051,106700], + [55053,121400], + [55055,182500], + [55057,115500], + [55059,182400], + [55061,144400], + [55063,148700], + [55065,117700], + [55067,107500], + [55069,131300], + [55071,124000], + [55073,139500], + [55075,109700], + [55077,141000], + [55078,92600], + [55079,165700], + [55081,126800], + [55083,146300], + [55085,172800], + [55087,153500], + [55089,255600], + [55091,138500], + [55093,200200], + [55095,170300], + [55097,143100], + [55099,111500], + [55101,175700], + [55103,123000], + [55105,138000], + [55107,110200], + [55109,225700], + [55111,166400], + [55113,168200], + [55115,125100], + [55117,151100], + [55119,120100], + [55121,132800], + [55123,131700], + [55125,194900], + [55127,198000], + [55129,148400], + [55131,228000], + [55133,262200], + [55135,137100], + [55137,136600], + [55139,140500], + [55141,116500], + [56001,189500], + [56003,116100], + [56005,197700], + [56007,129100], + [56009,167500], + [56011,151100], + [56013,154400], + [56015,123100], + [56017,117800], + [56019,208400], + [56021,169900], + [56023,196400], + [56025,173300], + [56027,107500], + [56029,191500], + [56031,127600], + [56033,211900], + [56035,278300], + [56037,169500], + [56039,723700], + [56041,171600], + [56043,130000], + [56045,115200] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-household-mean-2019.json b/data/regional/united-states/economics/income/us-income-household-mean-2019.json new file mode 100644 index 0000000..8feab68 --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-household-mean-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Mean Household Income", + "description" : "Mean Household Income from the previous 12 months in 2019 US dollars.", + "units" : "$", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income","household"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.household.mean.2019"], + [1001,75326], + [1003,80986], + [1005,47068], + [1007,60182], + [1009,65639], + [1011,48571], + [1013,55971], + [1015,63417], + [1017,53505], + [1019,57617], + [1021,62784], + [1023,52395], + [1025,54687], + [1027,57585], + [1029,57990], + [1031,70079], + [1033,60904], + [1035,47286], + [1037,56017], + [1039,57075], + [1041,61468], + [1043,59909], + [1045,61001], + [1047,47753], + [1049,56390], + [1051,78370], + [1053,50242], + [1055,60379], + [1057,53897], + [1059,56907], + [1061,53077], + [1063,36431], + [1065,51992], + [1067,62696], + [1069,67855], + [1071,54808], + [1073,78812], + [1075,54252], + [1077,65763], + [1079,58315], + [1081,71547], + [1083,77275], + [1085,47139], + [1087,50091], + [1089,88291], + [1091,54556], + [1093,50367], + [1095,63834], + [1097,64948], + [1099,48659], + [1101,70975], + [1103,68318], + [1105,35819], + [1107,56370], + [1109,57838], + [1111,58836], + [1113,55932], + [1115,70326], + [1117,100262], + [1119,38978], + [1121,57269], + [1123,60734], + [1125,71528], + [1127,59159], + [1129,60489], + [1131,42500], + [1133,53167], + [2013,79535], + [2016,101964], + [2020,109988], + [2050,70804], + [2060,96032], + [2068,85694], + [2070,72576], + [2090,96615], + [2100,72356], + [2105,76767], + [2110,107328], + [2122,85348], + [2130,92764], + [2150,94946], + [2158,47654], + [2164,58583], + [2170,92246], + [2180,76581], + [2185,94169], + [2188,79967], + [2195,92572], + [2198,66387], + [2220,90196], + [2230,82263], + [2240,80810], + [2261,96106], + [2275,71889], + [2282,76895], + [2290,53438], + [4001,44477], + [4003,64446], + [4005,77638], + [4007,58074], + [4009,60143], + [4011,74470], + [4012,48900], + [4013,89019], + [4015,60395], + [4017,54678], + [4019,73554], + [4021,71325], + [4023,61551], + [4025,68419], + [4027,59526], + [5001,61946], + [5003,59845], + [5005,59206], + [5007,92398], + [5009,60651], + [5011,56779], + [5013,58285], + [5015,62300], + [5017,50528], + [5019,54473], + [5021,50617], + [5023,61420], + [5025,59231], + [5027,54263], + [5029,61828], + [5031,67880], + [5033,62144], + [5035,57972], + [5037,63421], + [5039,45536], + [5041,45429], + [5043,64337], + [5045,70726], + [5047,50816], + [5049,47206], + [5051,63652], + [5053,71564], + [5055,60189], + [5057,55612], + [5059,56264], + [5061,57580], + [5063,60581], + [5065,54216], + [5067,53156], + [5069,54417], + [5071,52147], + [5073,60652], + [5075,53357], + [5077,45765], + [5079,58167], + [5081,59109], + [5083,52925], + [5085,72425], + [5087,61176], + [5089,48180], + [5091,59733], + [5093,56558], + [5095,49632], + [5097,49849], + [5099,45948], + [5101,47594], + [5103,50129], + [5105,61422], + [5107,44558], + [5109,56352], + [5111,51257], + [5113,55295], + [5115,61268], + [5117,57282], + [5119,78246], + [5121,54318], + [5123,48443], + [5125,78299], + [5127,46067], + [5129,48048], + [5131,63505], + [5133,63163], + [5135,48262], + [5137,49809], + [5139,61326], + [5141,51898], + [5143,72327], + [5145,61393], + [5147,51320], + [5149,59191], + [6001,130710], + [6003,97724], + [6005,81659], + [6007,75746], + [6009,84039], + [6011,77196], + [6013,135742], + [6015,63515], + [6017,110041], + [6019,74776], + [6021,62706], + [6023,68313], + [6025,64355], + [6027,71376], + [6029,73478], + [6031,72812], + [6033,66591], + [6035,71713], + [6037,99133], + [6039,74861], + [6041,176019], + [6043,61727], + [6045,70648], + [6047,74379], + [6049,53699], + [6051,84427], + [6053,97451], + [6055,123451], + [6057,91634], + [6059,122488], + [6061,115043], + [6063,77027], + [6065,88875], + [6067,88883], + [6069,106604], + [6071,81382], + [6073,106600], + [6075,160396], + [6077,86090], + [6079,96196], + [6081,174055], + [6083,106421], + [6085,164962], + [6087,115265], + [6089,73415], + [6091,74547], + [6093,64251], + [6095,100842], + [6097,108169], + [6099,79228], + [6101,79429], + [6103,61939], + [6105,54714], + [6107,69493], + [6109,83571], + [6111,115600], + [6113,98244], + [6115,72679], + [8001,87596], + [8003,56513], + [8005,104990], + [8007,71666], + [8009,51324], + [8011,44983], + [8013,115966], + [8014,124778], + [8015,70142], + [8017,70046], + [8019,84430], + [8021,50114], + [8023,46633], + [8025,50640], + [8027,64037], + [8029,65899], + [8031,99151], + [8033,62136], + [8035,147010], + [8037,118174], + [8039,121995], + [8041,88333], + [8043,64506], + [8045,90090], + [8047,103719], + [8049,86284], + [8051,77389], + [8053,74731], + [8055,50466], + [8057,64192], + [8059,107456], + [8061,59705], + [8063,69660], + [8065,64892], + [8067,94761], + [8069,93301], + [8071,56571], + [8073,66203], + [8075,64895], + [8077,71408], + [8079,74266], + [8081,70569], + [8083,61197], + [8085,66576], + [8087,64702], + [8089,49140], + [8091,89953], + [8093,88346], + [8095,65218], + [8097,123052], + [8099,57202], + [8101,62799], + [8103,68199], + [8105,57761], + [8107,106451], + [8109,51603], + [8111,68152], + [8113,103024], + [8115,64634], + [8117,101084], + [8119,84460], + [8121,66293], + [8123,89427], + [8125,68157], + [9001,155154], + [9003,100938], + [9005,107239], + [9007,110132], + [9009,94740], + [9011,95858], + [9013,109723], + [9015,82196], + [10001,75577], + [10003,97068], + [10005,84849], + [11001,127890], + [12001,71857], + [12003,74509], + [12005,71507], + [12007,57585], + [12009,77091], + [12011,85851], + [12013,53097], + [12015,71130], + [12017,58601], + [12019,82908], + [12021,112784], + [12023,63704], + [12027,49625], + [12029,56035], + [12031,77522], + [12033,68758], + [12035,71667], + [12037,68529], + [12039,53811], + [12041,56762], + [12043,55963], + [12045,61039], + [12047,51642], + [12049,53433], + [12051,56396], + [12053,62158], + [12055,59208], + [12057,83104], + [12059,51489], + [12061,87526], + [12063,53662], + [12065,62304], + [12067,57595], + [12069,69788], + [12071,82544], + [12073,75693], + [12075,49934], + [12077,50919], + [12079,51664], + [12081,83097], + [12083,62048], + [12085,98131], + [12086,79100], + [12087,104034], + [12089,92133], + [12091,82171], + [12093,58238], + [12095,83706], + [12097,66856], + [12099,99173], + [12101,71321], + [12103,78424], + [12105,66810], + [12107,50838], + [12109,113475], + [12111,68673], + [12113,84311], + [12115,90170], + [12117,90193], + [12119,74605], + [12121,61690], + [12123,50152], + [12125,64521], + [12127,67025], + [12129,73794], + [12131,83745], + [12133,48972], + [13001,54634], + [13003,54979], + [13005,53187], + [13007,47336], + [13009,56958], + [13011,56327], + [13013,72722], + [13015,71769], + [13017,43566], + [13019,49598], + [13021,63566], + [13023,56095], + [13025,51349], + [13027,60621], + [13029,88173], + [13031,60741], + [13033,59197], + [13035,72157], + [13037,47870], + [13039,76395], + [13043,52898], + [13045,68005], + [13047,70444], + [13049,52464], + [13051,80665], + [13053,64522], + [13055,48964], + [13057,100628], + [13059,59404], + [13061,37701], + [13063,58950], + [13065,39016], + [13067,104969], + [13069,54717], + [13071,55000], + [13073,101299], + [13075,52709], + [13077,91203], + [13079,59937], + [13081,56889], + [13083,61540], + [13085,90106], + [13087,56046], + [13089,91259], + [13091,53758], + [13093,57325], + [13095,54662], + [13097,77559], + [13099,46829], + [13101,53541], + [13103,85885], + [13105,53908], + [13107,50288], + [13109,54026], + [13111,64930], + [13113,120612], + [13115,67957], + [13117,128476], + [13119,59091], + [13121,113594], + [13123,67610], + [13125,61176], + [13127,81578], + [13129,63076], + [13131,58661], + [13133,89654], + [13135,91502], + [13137,63866], + [13139,86265], + [13141,48174], + [13143,63993], + [13145,99608], + [13147,58702], + [13149,58620], + [13151,85540], + [13153,77239], + [13155,51912], + [13157,81860], + [13159,60275], + [13161,47619], + [13163,47500], + [13165,39307], + [13167,50557], + [13169,66967], + [13171,58828], + [13173,50196], + [13175,56190], + [13177,82953], + [13179,58338], + [13181,60154], + [13183,63440], + [13185,61180], + [13187,71726], + [13189,55341], + [13191,61632], + [13193,46927], + [13195,65543], + [13197,55358], + [13199,51952], + [13201,57772], + [13205,51694], + [13207,86317], + [13209,61661], + [13211,87406], + [13213,59543], + [13215,65942], + [13217,71820], + [13219,122678], + [13221,58012], + [13223,80865], + [13225,63011], + [13227,81284], + [13229,59010], + [13231,78604], + [13233,64011], + [13235,58868], + [13237,76143], + [13239,44571], + [13241,66194], + [13243,42080], + [13245,58176], + [13247,77956], + [13249,54667], + [13251,56501], + [13253,65251], + [13255,63580], + [13257,62370], + [13259,46204], + [13261,53060], + [13263,49085], + [13265,49292], + [13267,57852], + [13269,49357], + [13271,51004], + [13273,50725], + [13275,67588], + [13277,60196], + [13279,64821], + [13281,61147], + [13283,53068], + [13285,60945], + [13287,50365], + [13289,49399], + [13291,66554], + [13293,52684], + [13295,61409], + [13297,78154], + [13299,52895], + [13301,53077], + [13303,52936], + [13305,58658], + [13307,53823], + [13309,39372], + [13311,67742], + [13313,66969], + [13315,53060], + [13317,58715], + [13319,53601], + [13321,61666], + [15001,82222], + [15003,109304], + [15005,83246], + [15007,96091], + [15009,102759], + [16001,88757], + [16003,62433], + [16005,66696], + [16007,66372], + [16009,56776], + [16011,67631], + [16013,82455], + [16015,72816], + [16017,66370], + [16019,80777], + [16021,64115], + [16023,69040], + [16025,72695], + [16027,64252], + [16029,72773], + [16031,66145], + [16033,52716], + [16035,56978], + [16037,52046], + [16039,56989], + [16041,73488], + [16043,68783], + [16045,57326], + [16047,62514], + [16049,54281], + [16051,78637], + [16053,62875], + [16055,74130], + [16057,66546], + [16059,53967], + [16061,54285], + [16063,61361], + [16065,54512], + [16067,67816], + [16069,71465], + [16071,58747], + [16073,60798], + [16075,68276], + [16077,63375], + [16079,53892], + [16081,88054], + [16083,67867], + [16085,86047], + [16087,55317], + [17001,72053], + [17003,46981], + [17005,72369], + [17007,89482], + [17009,71088], + [17011,72177], + [17013,73438], + [17015,65151], + [17017,65654], + [17019,74803], + [17021,64899], + [17023,72492], + [17025,62922], + [17027,81411], + [17029,66458], + [17031,95677], + [17033,68410], + [17035,68662], + [17037,77444], + [17039,71098], + [17041,71081], + [17043,123178], + [17045,62511], + [17047,65280], + [17049,77771], + [17051,61212], + [17053,67090], + [17055,56109], + [17057,67814], + [17059,71467], + [17061,62277], + [17063,91384], + [17065,65965], + [17067,66566], + [17069,74749], + [17071,65213], + [17073,73302], + [17075,65047], + [17077,57671], + [17079,64186], + [17081,66359], + [17083,75610], + [17085,74630], + [17087,68684], + [17089,104278], + [17091,73991], + [17093,110975], + [17095,58636], + [17097,127257], + [17099,72700], + [17101,62206], + [17103,73903], + [17105,69815], + [17107,73126], + [17109,60150], + [17111,105240], + [17113,88810], + [17115,69280], + [17117,68714], + [17119,78557], + [17121,60262], + [17123,71345], + [17125,65149], + [17127,56735], + [17129,88289], + [17131,69351], + [17133,105341], + [17135,65721], + [17137,64238], + [17139,73189], + [17141,75899], + [17143,77258], + [17145,65309], + [17147,81088], + [17149,62740], + [17151,51067], + [17153,52110], + [17155,77077], + [17157,70079], + [17159,63252], + [17161,69960], + [17163,75474], + [17165,59748], + [17167,82375], + [17169,63290], + [17171,66286], + [17173,63460], + [17175,70263], + [17177,62817], + [17179,80682], + [17181,63764], + [17183,61753], + [17185,65575], + [17187,63814], + [17189,75768], + [17191,60461], + [17193,61001], + [17195,71473], + [17197,105838], + [17199,67912], + [17201,71360], + [17203,96870], + [18001,65750], + [18003,73195], + [18005,80056], + [18007,61729], + [18009,56693], + [18011,124465], + [18013,82152], + [18015,71684], + [18017,61608], + [18019,72734], + [18021,65144], + [18023,64131], + [18025,55598], + [18027,68429], + [18029,80394], + [18031,68940], + [18033,72425], + [18035,60528], + [18037,74871], + [18039,71964], + [18041,56682], + [18043,83925], + [18045,67826], + [18047,75292], + [18049,65255], + [18051,70778], + [18053,56890], + [18055,62184], + [18057,131790], + [18059,87144], + [18061,72940], + [18063,99177], + [18065,62330], + [18067,65998], + [18069,64240], + [18071,66368], + [18073,73222], + [18075,60027], + [18077,67274], + [18079,67996], + [18081,90501], + [18083,63212], + [18085,75552], + [18087,77943], + [18089,73253], + [18091,69755], + [18093,63859], + [18095,62510], + [18097,68914], + [18099,67414], + [18101,62744], + [18103,61391], + [18105,70085], + [18107,67020], + [18109,80395], + [18111,63790], + [18113,68936], + [18115,69488], + [18117,58832], + [18119,60524], + [18121,64709], + [18123,64159], + [18125,61466], + [18127,88151], + [18129,78947], + [18131,59326], + [18133,71447], + [18135,59581], + [18137,71576], + [18139,65706], + [18141,71909], + [18143,60070], + [18145,73073], + [18147,76231], + [18149,64476], + [18151,73107], + [18153,64112], + [18155,62890], + [18157,71389], + [18159,74502], + [18161,62140], + [18163,69566], + [18165,61067], + [18167,61602], + [18169,64394], + [18171,76096], + [18173,94684], + [18175,61872], + [18177,64356], + [18179,72066], + [18181,66551], + [18183,77629], + [19001,68186], + [19003,65045], + [19005,65543], + [19007,58551], + [19009,64386], + [19011,81983], + [19013,74486], + [19015,77650], + [19017,82376], + [19019,84637], + [19021,71786], + [19023,70812], + [19025,67274], + [19027,73480], + [19029,61734], + [19031,77477], + [19033,72174], + [19035,73789], + [19037,72307], + [19039,65651], + [19041,64142], + [19043,65784], + [19045,66565], + [19047,77043], + [19049,113976], + [19051,80452], + [19053,56959], + [19055,79350], + [19057,69054], + [19059,82196], + [19061,81377], + [19063,67627], + [19065,68098], + [19067,65801], + [19069,71286], + [19071,69114], + [19073,65031], + [19075,85664], + [19077,73346], + [19079,71567], + [19081,70332], + [19083,66964], + [19085,76721], + [19087,66322], + [19089,69198], + [19091,69734], + [19093,78094], + [19095,81000], + [19097,69017], + [19099,71754], + [19101,68141], + [19103,86798], + [19105,73371], + [19107,70155], + [19109,69498], + [19111,63170], + [19113,83373], + [19115,73111], + [19117,73294], + [19119,75849], + [19121,87530], + [19123,68931], + [19125,75361], + [19127,68760], + [19129,91008], + [19131,70494], + [19133,64281], + [19135,68736], + [19137,66795], + [19139,74538], + [19141,67826], + [19143,71472], + [19145,64066], + [19147,67392], + [19149,83138], + [19151,65405], + [19153,88311], + [19155,75030], + [19157,74234], + [19159,69971], + [19161,73425], + [19163,83076], + [19165,75375], + [19167,82322], + [19169,74611], + [19171,70779], + [19173,69804], + [19175,64915], + [19177,65542], + [19179,62750], + [19181,93100], + [19183,76076], + [19185,61026], + [19187,62133], + [19189,65281], + [19191,77597], + [19193,74009], + [19195,73526], + [19197,65852], + [20001,54789], + [20003,60801], + [20005,63780], + [20007,65824], + [20009,65225], + [20011,57857], + [20013,62112], + [20015,80264], + [20017,55495], + [20019,52464], + [20021,55245], + [20023,59183], + [20025,63616], + [20027,67728], + [20029,62840], + [20031,76736], + [20033,66807], + [20035,62458], + [20037,56306], + [20039,60107], + [20041,63692], + [20043,63346], + [20045,80284], + [20047,61020], + [20049,53233], + [20051,74318], + [20053,64204], + [20055,70722], + [20057,66956], + [20059,67613], + [20061,61506], + [20063,63257], + [20065,56239], + [20067,70072], + [20069,80186], + [20071,65953], + [20073,60830], + [20075,54808], + [20077,59919], + [20079,70297], + [20081,77222], + [20083,72283], + [20085,68550], + [20087,76659], + [20089,58991], + [20091,118415], + [20093,71099], + [20095,80453], + [20097,65246], + [20099,58891], + [20101,57424], + [20103,89420], + [20105,59337], + [20107,62040], + [20109,66998], + [20111,64605], + [20113,72213], + [20115,64540], + [20117,66542], + [20119,71534], + [20121,91016], + [20123,59393], + [20125,58538], + [20127,71313], + [20129,60608], + [20131,75348], + [20133,57067], + [20135,75575], + [20137,68928], + [20139,66569], + [20141,67431], + [20143,70565], + [20145,62633], + [20147,63431], + [20149,79171], + [20151,69382], + [20153,63730], + [20155,65695], + [20157,58436], + [20159,66374], + [20161,70579], + [20163,60896], + [20165,56665], + [20167,60152], + [20169,69043], + [20171,72447], + [20173,74957], + [20175,61443], + [20177,74324], + [20179,80114], + [20181,65466], + [20183,61911], + [20185,67070], + [20187,59421], + [20189,69246], + [20191,66036], + [20193,76255], + [20195,69210], + [20197,69670], + [20199,68214], + [20201,64927], + [20203,68597], + [20205,65716], + [20207,51321], + [20209,58379], + [21001,53464], + [21003,57154], + [21005,67961], + [21007,62411], + [21009,53857], + [21011,57056], + [21013,37783], + [21015,97356], + [21017,68312], + [21019,65925], + [21021,67505], + [21023,59654], + [21025,46260], + [21027,59753], + [21029,75782], + [21031,57071], + [21033,69078], + [21035,57431], + [21037,83704], + [21039,74424], + [21041,63333], + [21043,49489], + [21045,46614], + [21047,58192], + [21049,71215], + [21051,39471], + [21053,50852], + [21055,58303], + [21057,44638], + [21059,71162], + [21061,52578], + [21063,43276], + [21065,43297], + [21067,83111], + [21069,58083], + [21071,47590], + [21073,70994], + [21075,41296], + [21077,61571], + [21079,66967], + [21081,62680], + [21083,61303], + [21085,52937], + [21087,53787], + [21089,69483], + [21091,65006], + [21093,71340], + [21095,39289], + [21097,61766], + [21099,51902], + [21101,63853], + [21103,66063], + [21105,66137], + [21107,60425], + [21109,45258], + [21111,79373], + [21113,84773], + [21115,55898], + [21117,83684], + [21119,43034], + [21121,44833], + [21123,61993], + [21125,56574], + [21127,46907], + [21129,39008], + [21131,39649], + [21133,47200], + [21135,47765], + [21137,54753], + [21139,64268], + [21141,60451], + [21143,64743], + [21145,73816], + [21147,39988], + [21149,62656], + [21151,67153], + [21153,43655], + [21155,55942], + [21157,70833], + [21159,49051], + [21161,70046], + [21163,72177], + [21165,47917], + [21167,66500], + [21169,47093], + [21171,55109], + [21173,57732], + [21175,49961], + [21177,57437], + [21179,82718], + [21181,55681], + [21183,62237], + [21185,128725], + [21187,68307], + [21189,47219], + [21191,63926], + [21193,53993], + [21195,52110], + [21197,51797], + [21199,60035], + [21201,53601], + [21203,51627], + [21205,56144], + [21207,49682], + [21209,87058], + [21211,89068], + [21213,61077], + [21215,91493], + [21217,59529], + [21219,61829], + [21221,67091], + [21223,65931], + [21225,60222], + [21227,74174], + [21229,66579], + [21231,55543], + [21233,58282], + [21235,56554], + [21237,36718], + [21239,80655], + [22001,61465], + [22003,61465], + [22005,94664], + [22007,63643], + [22009,57201], + [22011,67685], + [22013,49035], + [22015,71481], + [22017,65177], + [22019,72183], + [22021,61083], + [22023,74910], + [22025,60017], + [22027,43917], + [22029,51568], + [22031,65839], + [22033,82340], + [22035,58740], + [22037,68891], + [22039,48970], + [22041,50029], + [22043,52966], + [22045,61590], + [22047,66504], + [22049,55915], + [22051,74367], + [22053,65425], + [22055,80379], + [22057,73249], + [22059,60286], + [22061,58164], + [22063,80470], + [22065,46317], + [22067,45813], + [22069,47309], + [22071,71938], + [22073,63423], + [22075,76432], + [22077,66680], + [22079,66728], + [22081,58402], + [22083,51463], + [22085,55685], + [22087,56887], + [22089,89045], + [22091,61237], + [22093,70558], + [22095,70802], + [22097,54740], + [22099,65800], + [22101,54359], + [22103,91595], + [22105,64903], + [22107,39433], + [22109,69122], + [22111,61857], + [22113,66097], + [22115,63430], + [22117,52104], + [22119,43967], + [22121,79390], + [22123,55983], + [22125,85586], + [22127,56203], + [23001,69091], + [23003,56724], + [23005,95943], + [23007,64842], + [23009,77170], + [23011,70956], + [23013,75377], + [23015,74439], + [23017,62267], + [23019,67198], + [23021,53870], + [23023,76602], + [23025,56316], + [23027,68013], + [23029,56280], + [23031,85640], + [24001,59335], + [24003,124685], + [24005,102337], + [24009,127265], + [24011,79246], + [24013,114828], + [24015,92420], + [24017,115704], + [24019,71968], + [24021,116796], + [24023,71004], + [24025,108305], + [24027,150203], + [24029,86130], + [24031,149437], + [24033,102593], + [24035,117490], + [24037,108493], + [24039,55239], + [24041,109992], + [24043,79633], + [24045,73662], + [24047,87259], + [24510,74246], + [25001,99954], + [25003,80610], + [25005,89636], + [25007,107446], + [25009,109575], + [25011,81012], + [25013,76473], + [25015,92520], + [25017,135425], + [25019,147953], + [25021,140508], + [25023,115852], + [25025,104274], + [25027,97304], + [26001,52435], + [26003,55675], + [26005,76358], + [26007,57448], + [26009,75224], + [26011,54451], + [26013,60698], + [26015,79537], + [26017,63415], + [26019,70067], + [26021,73428], + [26023,64845], + [26025,64683], + [26027,75655], + [26029,75996], + [26031,58961], + [26033,63371], + [26035,53634], + [26037,88613], + [26039,58926], + [26041,61980], + [26043,66336], + [26045,80637], + [26047,76988], + [26049,65564], + [26051,58130], + [26053,55695], + [26055,85405], + [26057,63319], + [26059,63636], + [26061,59156], + [26063,62261], + [26065,72682], + [26067,67679], + [26069,54041], + [26071,53501], + [26073,63637], + [26075,70566], + [26077,79194], + [26079,58863], + [26081,85054], + [26083,70757], + [26085,47180], + [26087,78166], + [26089,90159], + [26091,70185], + [26093,104028], + [26095,57942], + [26097,59860], + [26099,79750], + [26101,64676], + [26103,67489], + [26105,68774], + [26107,59964], + [26109,59902], + [26111,86910], + [26113,58955], + [26115,77703], + [26117,61868], + [26119,49847], + [26121,65499], + [26123,64330], + [26125,108755], + [26127,62380], + [26129,53794], + [26131,51229], + [26133,55654], + [26135,54980], + [26137,66201], + [26139,87410], + [26141,61488], + [26143,53935], + [26145,67221], + [26147,74614], + [26149,65793], + [26151,60795], + [26153,55520], + [26155,69435], + [26157,62669], + [26159,71382], + [26161,101787], + [26163,67907], + [26165,62864], + [27001,62069], + [27003,98194], + [27005,77834], + [27007,65296], + [27009,72182], + [27011,65674], + [27013,74621], + [27015,73387], + [27017,76930], + [27019,129533], + [27021,68806], + [27023,70772], + [27025,94060], + [27027,79274], + [27029,67122], + [27031,69447], + [27033,63918], + [27035,76182], + [27037,106727], + [27039,90314], + [27041,83938], + [27043,66870], + [27045,74416], + [27047,67802], + [27049,82660], + [27051,74166], + [27053,110079], + [27055,75319], + [27057,70985], + [27059,88176], + [27061,69888], + [27063,78423], + [27065,69563], + [27067,76555], + [27069,70529], + [27071,65070], + [27073,70346], + [27075,72710], + [27077,59407], + [27079,84784], + [27081,68704], + [27083,75049], + [27085,78321], + [27087,58348], + [27089,72056], + [27091,69946], + [27093,79925], + [27095,68166], + [27097,72207], + [27099,73382], + [27101,71996], + [27103,83995], + [27105,67732], + [27107,70747], + [27109,101733], + [27111,74388], + [27113,72022], + [27115,66227], + [27117,71373], + [27119,72397], + [27121,76120], + [27123,88161], + [27125,70897], + [27127,68621], + [27129,73001], + [27131,85520], + [27133,76060], + [27135,75604], + [27137,72344], + [27139,120908], + [27141,101255], + [27143,78374], + [27145,80105], + [27147,79975], + [27149,84607], + [27151,69054], + [27153,65828], + [27155,67825], + [27157,81298], + [27159,58527], + [27161,73285], + [27163,122320], + [27165,68428], + [27167,77035], + [27169,74313], + [27171,99782], + [27173,71153], + [28001,46879], + [28003,58260], + [28005,50720], + [28007,55059], + [28009,49647], + [28011,47724], + [28013,45972], + [28015,58553], + [28017,50238], + [28019,53744], + [28021,41128], + [28023,59073], + [28025,50035], + [28027,48300], + [28029,54908], + [28031,50121], + [28033,82873], + [28035,56900], + [28037,57657], + [28039,62308], + [28041,56211], + [28043,55874], + [28045,63956], + [28047,63588], + [28049,61247], + [28051,37456], + [28053,48091], + [28055,49035], + [28057,56901], + [28059,69213], + [28061,53016], + [28063,39115], + [28065,47792], + [28067,59647], + [28069,42271], + [28071,74924], + [28073,80384], + [28075,61186], + [28077,55292], + [28079,53201], + [28081,67659], + [28083,48239], + [28085,60457], + [28087,65188], + [28089,100923], + [28091,49142], + [28093,58572], + [28095,57421], + [28097,53705], + [28099,51839], + [28101,53593], + [28103,48285], + [28105,59862], + [28107,53225], + [28109,61538], + [28111,59274], + [28113,44819], + [28115,58032], + [28117,50723], + [28119,36132], + [28121,81597], + [28123,59659], + [28125,47529], + [28127,61093], + [28129,61942], + [28131,62757], + [28133,47453], + [28135,48159], + [28137,64146], + [28139,51144], + [28141,49943], + [28143,52941], + [28145,58050], + [28147,50698], + [28149,63019], + [28151,49835], + [28153,60167], + [28155,54448], + [28157,41858], + [28159,57737], + [28161,49019], + [28163,53676], + [29001,59203], + [29003,73248], + [29005,64236], + [29007,61557], + [29009,64139], + [29011,64001], + [29013,67588], + [29015,56309], + [29017,53816], + [29019,75435], + [29021,66099], + [29023,53954], + [29025,59737], + [29027,68870], + [29029,71833], + [29031,72374], + [29033,62887], + [29035,56449], + [29037,84848], + [29039,53665], + [29041,60240], + [29043,74065], + [29045,65020], + [29047,88212], + [29049,72858], + [29051,75636], + [29053,63688], + [29055,54332], + [29057,55998], + [29059,62312], + [29061,64421], + [29063,63023], + [29065,54579], + [29067,51868], + [29069,52761], + [29071,75479], + [29073,68913], + [29075,61423], + [29077,63877], + [29079,57506], + [29081,52317], + [29083,63004], + [29085,43912], + [29087,60182], + [29089,64775], + [29091,52116], + [29093,51670], + [29095,74788], + [29097,62468], + [29099,78083], + [29101,66605], + [29103,56014], + [29105,58389], + [29107,72876], + [29109,58968], + [29111,57940], + [29113,74375], + [29115,59352], + [29117,59092], + [29119,54657], + [29121,53813], + [29123,59032], + [29125,62778], + [29127,61788], + [29129,57579], + [29131,64090], + [29133,50405], + [29135,67975], + [29137,56487], + [29139,57597], + [29141,54011], + [29143,50499], + [29145,72789], + [29147,58922], + [29149,43846], + [29151,74559], + [29153,42760], + [29155,50700], + [29157,66451], + [29159,60159], + [29161,62404], + [29163,60711], + [29165,101450], + [29167,60004], + [29169,64126], + [29171,56944], + [29173,67500], + [29175,57461], + [29177,74020], + [29179,53030], + [29181,46280], + [29183,102661], + [29185,51397], + [29186,75189], + [29187,58714], + [29189,100230], + [29195,58691], + [29197,53256], + [29199,73096], + [29201,61674], + [29203,43278], + [29205,57889], + [29207,53651], + [29209,68776], + [29211,57896], + [29213,58053], + [29215,50352], + [29217,60130], + [29219,76704], + [29221,54810], + [29223,45398], + [29225,64106], + [29227,59673], + [29229,48932], + [29510,64089], + [30001,64856], + [30003,63920], + [30005,51976], + [30007,75505], + [30009,71282], + [30011,64512], + [30013,69845], + [30015,57531], + [30017,70861], + [30019,74287], + [30021,72049], + [30023,54982], + [30025,80843], + [30027,67775], + [30029,76591], + [30031,90411], + [30033,65237], + [30035,49602], + [30037,62931], + [30039,74718], + [30041,59986], + [30043,83162], + [30045,61197], + [30047,63517], + [30049,81455], + [30051,84727], + [30053,58054], + [30055,68249], + [30057,71087], + [30059,59768], + [30061,53168], + [30063,74060], + [30065,55725], + [30067,73960], + [30069,69975], + [30071,59382], + [30073,68355], + [30075,68431], + [30077,65914], + [30079,64764], + [30081,70220], + [30083,79719], + [30085,57792], + [30087,68763], + [30089,56419], + [30091,76853], + [30093,62015], + [30095,79373], + [30097,67334], + [30099,68537], + [30101,68818], + [30103,58435], + [30105,63373], + [30107,54148], + [30109,61871], + [30111,81783], + [31001,69884], + [31003,61503], + [31005,60130], + [31007,67962], + [31009,56038], + [31011,76617], + [31013,65792], + [31015,65047], + [31017,65913], + [31019,77416], + [31021,73339], + [31023,71463], + [31025,86686], + [31027,73576], + [31029,68325], + [31031,67218], + [31033,67772], + [31035,66606], + [31037,68620], + [31039,70360], + [31041,75547], + [31043,71383], + [31045,61430], + [31047,68229], + [31049,58781], + [31051,68200], + [31053,67590], + [31055,88827], + [31057,54880], + [31059,77326], + [31061,62541], + [31063,66014], + [31065,60469], + [31067,67921], + [31069,70294], + [31071,64137], + [31073,82286], + [31075,59757], + [31077,61001], + [31079,73971], + [31081,78414], + [31083,65235], + [31085,70359], + [31087,66763], + [31089,73521], + [31091,58286], + [31093,65176], + [31095,57938], + [31097,67668], + [31099,75055], + [31101,63189], + [31103,71348], + [31105,62866], + [31107,66835], + [31109,80125], + [31111,74926], + [31113,63374], + [31115,59443], + [31117,59324], + [31119,68209], + [31121,67953], + [31123,63698], + [31125,66210], + [31127,68654], + [31129,66329], + [31131,75729], + [31133,61371], + [31135,84188], + [31137,75991], + [31139,74485], + [31141,76517], + [31143,75104], + [31145,63841], + [31147,61539], + [31149,80822], + [31151,64190], + [31153,97334], + [31155,83130], + [31157,66631], + [31159,83079], + [31161,66307], + [31163,62650], + [31165,64729], + [31167,73368], + [31169,66304], + [31171,82762], + [31173,64450], + [31175,67955], + [31177,86984], + [31179,69654], + [31181,69851], + [31183,62582], + [31185,79062], + [32001,70161], + [32003,80762], + [32005,89303], + [32007,90670], + [32009,50154], + [32011,82869], + [32013,84751], + [32015,84729], + [32017,66310], + [32019,69580], + [32021,47501], + [32023,57141], + [32027,60380], + [32029,92393], + [32031,89027], + [32033,69285], + [32510,75267], + [33001,89116], + [33003,82289], + [33005,82516], + [33007,62537], + [33009,91122], + [33011,103090], + [33013,94698], + [33015,118066], + [33017,91031], + [33019,78324], + [34001,86110], + [34003,137866], + [34005,113226], + [34007,94016], + [34009,93847], + [34011,72860], + [34013,103290], + [34015,105950], + [34017,103912], + [34019,149456], + [34021,117651], + [34023,112274], + [34025,134907], + [34027,155396], + [34029,93749], + [34031,93352], + [34033,87338], + [34035,152531], + [34037,116709], + [34039,117238], + [34041,99757], + [35001,74035], + [35003,50990], + [35005,58612], + [35006,52278], + [35007,49626], + [35009,59084], + [35011,49045], + [35013,59601], + [35015,79875], + [35017,56893], + [35019,39340], + [35021,69065], + [35023,53273], + [35025,75101], + [35027,66092], + [35028,141162], + [35029,43116], + [35031,50778], + [35033,43961], + [35035,58345], + [35037,47159], + [35039,57304], + [35041,54667], + [35043,79179], + [35045,64814], + [35047,46665], + [35049,88441], + [35051,49509], + [35053,54875], + [35055,58045], + [35057,50947], + [35059,55998], + [35061,62351], + [36001,89267], + [36003,62811], + [36005,58740], + [36007,69491], + [36009,61368], + [36011,75068], + [36013,61785], + [36015,70677], + [36017,65428], + [36019,70048], + [36021,90508], + [36023,74152], + [36025,63417], + [36027,105034], + [36029,78009], + [36031,73826], + [36033,65742], + [36035,64357], + [36037,72894], + [36039,70633], + [36041,68929], + [36043,67532], + [36045,65932], + [36047,91610], + [36049,67306], + [36051,73278], + [36053,78606], + [36055,80684], + [36057,64908], + [36059,152785], + [36061,159571], + [36063,72484], + [36065,73642], + [36067,82569], + [36069,88255], + [36071,100958], + [36073,66676], + [36075,71632], + [36077,70405], + [36079,131096], + [36081,89921], + [36083,85835], + [36085,104629], + [36087,123680], + [36089,65160], + [36091,104165], + [36093,83024], + [36095,72509], + [36097,65240], + [36099,71496], + [36101,71516], + [36103,129192], + [36105,77197], + [36107,76774], + [36109,83950], + [36111,86500], + [36113,80032], + [36115,71225], + [36117,75590], + [36119,154513], + [36121,69563], + [36123,74877], + [37001,67667], + [37003,68416], + [37005,51814], + [37007,52077], + [37009,55125], + [37011,56935], + [37013,64182], + [37015,55018], + [37017,55229], + [37019,75081], + [37021,74505], + [37023,60451], + [37025,88147], + [37027,58083], + [37029,74108], + [37031,76847], + [37033,58897], + [37035,70173], + [37037,97914], + [37039,53258], + [37041,57515], + [37043,61345], + [37045,56939], + [37047,55616], + [37049,70687], + [37051,61346], + [37053,81134], + [37055,80094], + [37057,63983], + [37059,78412], + [37061,52929], + [37063,85518], + [37065,50394], + [37067,76256], + [37069,69310], + [37071,69460], + [37073,63905], + [37075,47796], + [37077,71297], + [37079,53007], + [37081,76720], + [37083,51994], + [37085,64988], + [37087,68390], + [37089,72983], + [37091,50420], + [37093,58873], + [37095,48430], + [37097,85338], + [37099,61700], + [37101,75663], + [37103,50360], + [37105,66437], + [37107,56708], + [37109,79460], + [37111,59567], + [37113,64288], + [37115,63757], + [37117,55603], + [37119,97595], + [37121,56059], + [37123,62773], + [37125,81481], + [37127,67836], + [37129,79148], + [37131,50620], + [37133,63254], + [37135,111542], + [37137,67503], + [37139,62857], + [37141,76780], + [37143,62649], + [37145,64737], + [37147,67261], + [37149,68076], + [37151,60701], + [37153,49668], + [37155,49701], + [37157,57405], + [37159,65110], + [37161,57564], + [37163,58515], + [37165,48707], + [37167,66853], + [37169,60769], + [37171,61976], + [37173,56555], + [37175,67138], + [37177,47736], + [37179,107967], + [37181,56810], + [37183,106822], + [37185,54251], + [37187,48062], + [37189,67569], + [37191,62307], + [37193,59515], + [37195,60985], + [37197,59932], + [37199,56153], + [38001,73892], + [38003,77131], + [38005,65093], + [38007,98764], + [38009,80014], + [38011,80877], + [38013,93941], + [38015,91692], + [38017,87889], + [38019,96680], + [38021,79432], + [38023,88558], + [38025,106893], + [38027,77286], + [38029,71032], + [38031,78318], + [38033,71808], + [38035,73717], + [38037,77732], + [38039,75426], + [38041,79987], + [38043,71731], + [38045,84603], + [38047,73990], + [38049,85434], + [38051,65754], + [38053,105700], + [38055,81392], + [38057,91827], + [38059,92356], + [38061,100606], + [38063,69989], + [38065,88881], + [38067,81041], + [38069,65582], + [38071,78592], + [38073,77166], + [38075,85076], + [38077,74319], + [38079,61600], + [38081,78848], + [38083,64388], + [38085,53928], + [38087,76096], + [38089,93757], + [38091,86840], + [38093,73895], + [38095,77897], + [38097,78234], + [38099,76693], + [38101,84307], + [38103,73761], + [38105,112921], + [39001,56865], + [39003,65521], + [39005,66426], + [39007,59932], + [39009,59302], + [39011,76552], + [39013,68384], + [39015,65895], + [39017,84886], + [39019,71054], + [39021,69841], + [39023,65280], + [39025,87902], + [39027,66857], + [39029,63789], + [39031,58516], + [39033,60193], + [39035,74923], + [39037,68845], + [39039,73694], + [39041,134937], + [39043,76190], + [39045,85202], + [39047,63286], + [39049,83201], + [39051,75755], + [39053,60507], + [39055,114211], + [39057,88951], + [39059,58828], + [39061,83247], + [39063,77807], + [39065,61739], + [39067,60067], + [39069,70931], + [39071,58802], + [39073,63701], + [39075,79857], + [39077,65653], + [39079,58016], + [39081,62303], + [39083,68356], + [39085,81155], + [39087,59958], + [39089,82929], + [39091,71431], + [39093,77113], + [39095,68678], + [39097,84360], + [39099,64844], + [39101,63207], + [39103,95333], + [39105,60917], + [39107,76115], + [39109,77607], + [39111,61624], + [39113,70103], + [39115,53701], + [39117,74118], + [39119,61880], + [39121,64273], + [39123,77641], + [39125,69620], + [39127,60839], + [39129,77039], + [39131,62297], + [39133,75878], + [39135,71405], + [39137,81432], + [39139,62847], + [39141,65448], + [39143,66143], + [39145,58968], + [39147,67625], + [39149,75899], + [39151,70478], + [39153,78984], + [39155,62475], + [39157,66469], + [39159,104000], + [39161,66249], + [39163,54406], + [39165,114340], + [39167,67322], + [39169,72883], + [39171,64821], + [39173,81232], + [39175,68514], + [40001,46729], + [40003,81944], + [40005,54846], + [40007,64587], + [40009,68503], + [40011,65633], + [40013,61932], + [40015,61438], + [40017,87402], + [40019,66388], + [40021,57750], + [40023,50312], + [40025,64782], + [40027,81154], + [40029,59996], + [40031,68111], + [40033,61070], + [40035,54789], + [40037,66802], + [40039,68026], + [40041,58241], + [40043,75771], + [40045,65146], + [40047,71136], + [40049,63489], + [40051,79857], + [40053,69910], + [40055,51609], + [40057,65261], + [40059,60655], + [40061,55908], + [40063,56864], + [40065,64649], + [40067,60666], + [40069,53245], + [40071,63840], + [40073,85007], + [40075,52399], + [40077,61059], + [40079,54669], + [40081,65535], + [40083,86416], + [40085,61351], + [40087,86131], + [40089,52076], + [40091,53601], + [40093,70907], + [40095,57883], + [40097,62056], + [40099,66516], + [40101,60950], + [40103,70442], + [40105,54856], + [40107,51384], + [40109,79865], + [40111,59397], + [40113,64349], + [40115,53337], + [40117,61953], + [40119,61957], + [40121,62746], + [40123,67130], + [40125,64015], + [40127,54865], + [40129,79732], + [40131,83964], + [40133,52767], + [40135,52371], + [40137,63675], + [40139,60808], + [40141,56552], + [40143,79911], + [40145,77184], + [40147,75769], + [40149,65675], + [40151,68430], + [40153,77153], + [41001,63855], + [41003,84074], + [41005,106216], + [41007,69890], + [41009,80855], + [41011,62178], + [41013,64440], + [41015,62649], + [41017,86719], + [41019,63042], + [41021,57569], + [41023,58025], + [41025,59279], + [41027,89693], + [41029,72849], + [41031,67220], + [41033,60155], + [41035,61268], + [41037,54245], + [41039,70956], + [41041,61968], + [41043,70148], + [41045,56286], + [41047,75666], + [41049,67972], + [41051,93639], + [41053,78277], + [41055,67208], + [41057,64604], + [41059,69219], + [41061,67736], + [41063,66631], + [41065,68193], + [41067,104153], + [41069,48248], + [41071,85495], + [42001,80678], + [42003,86258], + [42005,64440], + [42007,72337], + [42009,62121], + [42011,82739], + [42013,65290], + [42015,68533], + [42017,118035], + [42019,92027], + [42021,60457], + [42023,51091], + [42025,70428], + [42027,80941], + [42029,135669], + [42031,60001], + [42033,60829], + [42035,64851], + [42037,65648], + [42039,64730], + [42041,90607], + [42043,80556], + [42045,105826], + [42047,65911], + [42049,68976], + [42051,64484], + [42053,48275], + [42055,78332], + [42057,64334], + [42059,70662], + [42061,64102], + [42063,66492], + [42065,60150], + [42067,67641], + [42069,71187], + [42071,84931], + [42073,67724], + [42075,74008], + [42077,86346], + [42079,69548], + [42081,68006], + [42083,64783], + [42085,65894], + [42087,62711], + [42089,80849], + [42091,125928], + [42093,82546], + [42095,90901], + [42097,62350], + [42099,76779], + [42101,68379], + [42103,84629], + [42105,58265], + [42107,65564], + [42109,72603], + [42111,62531], + [42113,64416], + [42115,73572], + [42117,63500], + [42119,79496], + [42121,63012], + [42123,64294], + [42125,85387], + [42127,70356], + [42129,78999], + [42131,72339], + [42133,82723], + [44001,117245], + [44003,93286], + [44005,108996], + [44007,78852], + [44009,107680], + [45001,53822], + [45003,68799], + [45005,43514], + [45007,68900], + [45009,47242], + [45011,48824], + [45013,95726], + [45015,79276], + [45017,61193], + [45019,95174], + [45021,51138], + [45023,54235], + [45025,53340], + [45027,57912], + [45029,51644], + [45031,56028], + [45033,45654], + [45035,79605], + [45037,70129], + [45039,55357], + [45041,66648], + [45043,73686], + [45045,82940], + [45047,60286], + [45049,45391], + [45051,67022], + [45053,63279], + [45055,63699], + [45057,79192], + [45059,58059], + [45061,48957], + [45063,79492], + [45065,59965], + [45067,49353], + [45069,45340], + [45071,61507], + [45073,71045], + [45075,51073], + [45077,65834], + [45079,76280], + [45081,60021], + [45083,69514], + [45085,59059], + [45087,54837], + [45089,44987], + [45091,87632], + [46003,88305], + [46005,66624], + [46007,58638], + [46009,65314], + [46011,72925], + [46013,77927], + [46015,79750], + [46017,41952], + [46019,64689], + [46021,70862], + [46023,62863], + [46025,75254], + [46027,74027], + [46029,69425], + [46031,55322], + [46033,73793], + [46035,72594], + [46037,66831], + [46039,73019], + [46041,58826], + [46043,75332], + [46045,85855], + [46047,60879], + [46049,65775], + [46051,72741], + [46053,60278], + [46055,60639], + [46057,78183], + [46059,71101], + [46061,73755], + [46063,77628], + [46065,77468], + [46067,71469], + [46069,73326], + [46071,44355], + [46073,92714], + [46075,55466], + [46077,76846], + [46079,84253], + [46081,71800], + [46083,110988], + [46085,62520], + [46087,73235], + [46089,63173], + [46091,76214], + [46093,70606], + [46095,42062], + [46097,64813], + [46099,77169], + [46101,80039], + [46102,45707], + [46103,76958], + [46105,75636], + [46107,73182], + [46109,67130], + [46111,78357], + [46115,84615], + [46117,97659], + [46119,91160], + [46121,37044], + [46123,64130], + [46125,72813], + [46127,98464], + [46129,76908], + [46135,75604], + [46137,52721], + [47001,68841], + [47003,67937], + [47005,51053], + [47007,59740], + [47009,75873], + [47011,68649], + [47013,57568], + [47015,65733], + [47017,55465], + [47019,52993], + [47021,72891], + [47023,61924], + [47025,50667], + [47027,46349], + [47029,49875], + [47031,66968], + [47033,60132], + [47035,58761], + [47037,86309], + [47039,58074], + [47041,62873], + [47043,70198], + [47045,67860], + [47047,84845], + [47049,47004], + [47051,71134], + [47053,57623], + [47055,62057], + [47057,58672], + [47059,60501], + [47061,54364], + [47063,58713], + [47065,78761], + [47067,55923], + [47069,51388], + [47071,59540], + [47073,57760], + [47075,51685], + [47077,56861], + [47079,56585], + [47081,62313], + [47083,56271], + [47085,61050], + [47087,48787], + [47089,65086], + [47091,54024], + [47093,80336], + [47095,55768], + [47097,50842], + [47099,56783], + [47101,52710], + [47103,66693], + [47105,77210], + [47107,58406], + [47109,51976], + [47111,57564], + [47113,66240], + [47115,61823], + [47117,65012], + [47119,74734], + [47121,59132], + [47123,56518], + [47125,71258], + [47127,75473], + [47129,57062], + [47131,54450], + [47133,52813], + [47135,72210], + [47137,54705], + [47139,60185], + [47141,60800], + [47143,57598], + [47145,73148], + [47147,79439], + [47149,82581], + [47151,51084], + [47153,58572], + [47155,63337], + [47157,76734], + [47159,75035], + [47161,58720], + [47163,66012], + [47165,89411], + [47167,78069], + [47169,64745], + [47171,52758], + [47173,61863], + [47175,52846], + [47177,56764], + [47179,69061], + [47181,54652], + [47183,54538], + [47185,55864], + [47187,149836], + [47189,93387], + [48001,56912], + [48003,92927], + [48005,63164], + [48007,75855], + [48009,83749], + [48011,83298], + [48013,72059], + [48015,78664], + [48017,65794], + [48019,73521], + [48021,82676], + [48023,52436], + [48025,63623], + [48027,71507], + [48029,78311], + [48031,92547], + [48033,88236], + [48035,67280], + [48037,71353], + [48039,100131], + [48041,73324], + [48043,63082], + [48045,55863], + [48047,41308], + [48049,69577], + [48051,75799], + [48053,81163], + [48055,73546], + [48057,72536], + [48059,62737], + [48061,55520], + [48063,60622], + [48065,89245], + [48067,57311], + [48069,62964], + [48071,102629], + [48073,62730], + [48075,61372], + [48077,71797], + [48079,58478], + [48081,54420], + [48083,63690], + [48085,123796], + [48087,62878], + [48089,73305], + [48091,104209], + [48093,63959], + [48095,67689], + [48097,78698], + [48099,66325], + [48101,45301], + [48103,79907], + [48105,62573], + [48107,51516], + [48109,46561], + [48111,83942], + [48113,88716], + [48115,61585], + [48117,62666], + [48119,70369], + [48121,113275], + [48123,82821], + [48125,59602], + [48127,50160], + [48129,60597], + [48131,49597], + [48133,61234], + [48135,83484], + [48137,59159], + [48139,96100], + [48141,62721], + [48143,74589], + [48145,50705], + [48147,72914], + [48149,76697], + [48151,65512], + [48153,59595], + [48155,62021], + [48157,125289], + [48159,76173], + [48161,69203], + [48163,67332], + [48165,79384], + [48167,98758], + [48169,72314], + [48171,82523], + [48173,105467], + [48175,77169], + [48177,76060], + [48179,66482], + [48181,72105], + [48183,69786], + [48185,77395], + [48187,89402], + [48189,60390], + [48191,53651], + [48193,70739], + [48195,55316], + [48197,55938], + [48199,80698], + [48201,91486], + [48203,73308], + [48205,73016], + [48207,49230], + [48209,89611], + [48211,93374], + [48213,66653], + [48215,58014], + [48217,69572], + [48219,64011], + [48221,89286], + [48223,70270], + [48225,51799], + [48227,73064], + [48229,46896], + [48231,70122], + [48233,66016], + [48235,66890], + [48237,67103], + [48239,75091], + [48241,64222], + [48243,57275], + [48245,71052], + [48247,48856], + [48249,62079], + [48251,81183], + [48253,67098], + [48255,89471], + [48257,86500], + [48259,130088], + [48261,39930], + [48263,73663], + [48265,78994], + [48267,72565], + [48269,66635], + [48271,49365], + [48273,59512], + [48275,60846], + [48277,60777], + [48279,59521], + [48281,75447], + [48283,69533], + [48285,79698], + [48287,70253], + [48289,75277], + [48291,68334], + [48293,59351], + [48295,76016], + [48297,71127], + [48299,85015], + [48301,105773], + [48303,73239], + [48305,65295], + [48307,58812], + [48309,69146], + [48311,92126], + [48313,69955], + [48315,58450], + [48317,91265], + [48319,69255], + [48321,64806], + [48323,53367], + [48325,82279], + [48327,51304], + [48329,110414], + [48331,65836], + [48333,66818], + [48335,73526], + [48337,68126], + [48339,115218], + [48341,67850], + [48343,55192], + [48345,65925], + [48347,63497], + [48349,65225], + [48351,54004], + [48353,64120], + [48355,74953], + [48357,68093], + [48359,84947], + [48361,77645], + [48363,66155], + [48365,68305], + [48367,100080], + [48369,68099], + [48371,68797], + [48373,65557], + [48375,60595], + [48377,38032], + [48379,71527], + [48381,87396], + [48383,79512], + [48385,48276], + [48387,52213], + [48389,65457], + [48391,61935], + [48393,81712], + [48395,67904], + [48397,122912], + [48399,61133], + [48401,72751], + [48403,57482], + [48405,55320], + [48407,60411], + [48409,74270], + [48411,64486], + [48413,61890], + [48415,69818], + [48417,60781], + [48419,57887], + [48421,82530], + [48423,77878], + [48425,79424], + [48427,47269], + [48429,64763], + [48431,73677], + [48433,62955], + [48435,66252], + [48437,54469], + [48439,92653], + [48441,71506], + [48443,53102], + [48445,62202], + [48447,61731], + [48449,62814], + [48451,75019], + [48453,108994], + [48455,58110], + [48457,56879], + [48459,68387], + [48461,65771], + [48463,56889], + [48465,62498], + [48467,74068], + [48469,78901], + [48471,57798], + [48473,81912], + [48475,73249], + [48477,84243], + [48479,63769], + [48481,67704], + [48483,65413], + [48485,63778], + [48487,59547], + [48489,47742], + [48491,105671], + [48493,96088], + [48495,71503], + [48497,82046], + [48499,70971], + [48501,80243], + [48503,67391], + [48505,60551], + [48507,41014], + [49001,66772], + [49003,75069], + [49005,74991], + [49007,60657], + [49009,80329], + [49011,99935], + [49013,72088], + [49015,63786], + [49017,66093], + [49019,61957], + [49021,67339], + [49023,73358], + [49025,65456], + [49027,75015], + [49029,110246], + [49031,57805], + [49033,77129], + [49035,96968], + [49037,59506], + [49039,67713], + [49041,66377], + [49043,156817], + [49045,82074], + [49047,81018], + [49049,93627], + [49051,110577], + [49053,80759], + [49055,55699], + [49057,80506], + [50001,84865], + [50003,80354], + [50005,69923], + [50007,94925], + [50009,55737], + [50011,78740], + [50013,92902], + [50015,86436], + [50017,73330], + [50019,62234], + [50021,71158], + [50023,80700], + [50025,71700], + [50027,80880], + [51001,63100], + [51003,113758], + [51005,62034], + [51007,79721], + [51009,66613], + [51011,71750], + [51013,154331], + [51015,76323], + [51017,61939], + [51019,82748], + [51021,61815], + [51023,88162], + [51025,54587], + [51027,45295], + [51029,56906], + [51031,64810], + [51033,82521], + [51035,58974], + [51036,83035], + [51037,54952], + [51041,101518], + [51043,105454], + [51045,65971], + [51047,93110], + [51049,59889], + [51051,57700], + [51053,75608], + [51057,62500], + [51059,157726], + [51061,124756], + [51063,62691], + [51065,101489], + [51067,73280], + [51069,93707], + [51071,63802], + [51073,83482], + [51075,134904], + [51077,50190], + [51079,82593], + [51081,57215], + [51083,56329], + [51085,108752], + [51087,97183], + [51089,50970], + [51091,63998], + [51093,91535], + [51095,111437], + [51097,76261], + [51099,107543], + [51101,79850], + [51103,83097], + [51105,48605], + [51107,167684], + [51109,84207], + [51111,53065], + [51113,78197], + [51115,81363], + [51117,59946], + [51119,70255], + [51121,78575], + [51125,82523], + [51127,101297], + [51131,64936], + [51133,80208], + [51135,67917], + [51137,82025], + [51139,62028], + [51141,54469], + [51143,61223], + [51145,104561], + [51147,62736], + [51149,88177], + [51153,127287], + [51155,65261], + [51157,101971], + [51159,62594], + [51161,87906], + [51163,73807], + [51165,79865], + [51167,51299], + [51169,53469], + [51171,69718], + [51173,50876], + [51175,68154], + [51177,106814], + [51179,127009], + [51181,70125], + [51183,60202], + [51185,57165], + [51187,84701], + [51191,64735], + [51193,75030], + [51195,52791], + [51197,64960], + [51199,108630], + [51510,135100], + [51520,53193], + [51530,55417], + [51540,93251], + [51550,97038], + [51570,68797], + [51580,57657], + [51590,51599], + [51595,46692], + [51600,138291], + [51610,181261], + [51620,53105], + [51630,89208], + [51640,53117], + [51650,72086], + [51660,65667], + [51670,53893], + [51678,57639], + [51680,63882], + [51683,97250], + [51685,107214], + [51690,53176], + [51700,68792], + [51710,72315], + [51720,48266], + [51730,53064], + [51735,104312], + [51740,63882], + [51750,56946], + [51760,76182], + [51770,60914], + [51775,78216], + [51790,69203], + [51800,92145], + [51810,96936], + [51820,62228], + [51830,89601], + [51840,78498], + [53001,65032], + [53003,70614], + [53005,87525], + [53007,79143], + [53009,67839], + [53011,95792], + [53013,81135], + [53015,71700], + [53017,82782], + [53019,60967], + [53021,79145], + [53023,60910], + [53025,71451], + [53027,66880], + [53029,86613], + [53031,76400], + [53033,128360], + [53035,93122], + [53037,70805], + [53039,72216], + [53041,67876], + [53043,67879], + [53045,72026], + [53047,59547], + [53049,58738], + [53051,64996], + [53053,90659], + [53055,94382], + [53057,84676], + [53059,77041], + [53061,105008], + [53063,76487], + [53065,66675], + [53067,87696], + [53069,71637], + [53071,76351], + [53073,80590], + [53075,60706], + [53077,69036], + [54001,56827], + [54003,75914], + [54005,52513], + [54007,54597], + [54009,60771], + [54011,58832], + [54013,50297], + [54015,45212], + [54017,65148], + [54019,52802], + [54021,51440], + [54023,54776], + [54025,55104], + [54027,58075], + [54029,58679], + [54031,66790], + [54033,70609], + [54035,62359], + [54037,96911], + [54039,66597], + [54041,57301], + [54043,54060], + [54045,53008], + [54047,37916], + [54049,64299], + [54051,63073], + [54053,59868], + [54055,51597], + [54057,61016], + [54059,47066], + [54061,79774], + [54063,53751], + [54065,67986], + [54067,53287], + [54069,75415], + [54071,55108], + [54073,78502], + [54075,57786], + [54077,65439], + [54079,80042], + [54081,60110], + [54083,61113], + [54085,59849], + [54087,53771], + [54089,48929], + [54091,61730], + [54093,56185], + [54095,60134], + [54097,57801], + [54099,53315], + [54101,48138], + [54103,55125], + [54105,54877], + [54107,65002], + [54109,55480], + [55001,59975], + [55003,56108], + [55005,69324], + [55007,69327], + [55009,80768], + [55011,69429], + [55013,65359], + [55015,89724], + [55017,74108], + [55019,68330], + [55021,83215], + [55023,66507], + [55025,96542], + [55027,73078], + [55029,82134], + [55031,67738], + [55033,72092], + [55035,75213], + [55037,70861], + [55039,76670], + [55041,57147], + [55043,66718], + [55045,80424], + [55047,69055], + [55049,81477], + [55051,56591], + [55053,64899], + [55055,79970], + [55057,69362], + [55059,82435], + [55061,74516], + [55063,79532], + [55065,70569], + [55067,61063], + [55069,69003], + [55071,68951], + [55073,81095], + [55075,62297], + [55077,63631], + [55078,63344], + [55079,69949], + [55081,72904], + [55083,72277], + [55085,77560], + [55087,82097], + [55089,120331], + [55091,70171], + [55093,87038], + [55095,72256], + [55097,76448], + [55099,60685], + [55101,79552], + [55103,64330], + [55105,70944], + [55107,57903], + [55109,100844], + [55111,74615], + [55113,69754], + [55115,69567], + [55117,75681], + [55119,65697], + [55121,70909], + [55123,65262], + [55125,68483], + [55127,80806], + [55129,64961], + [55131,95722], + [55133,114713], + [55135,73105], + [55137,68310], + [55139,77772], + [55141,71055], + [56001,68577], + [56003,63375], + [56005,91699], + [56007,71697], + [56009,81708], + [56011,74378], + [56013,73599], + [56015,68090], + [56017,66157], + [56019,81359], + [56021,85483], + [56023,80323], + [56025,80679], + [56027,54980], + [56029,82323], + [56031,77665], + [56033,80525], + [56035,92755], + [56037,85346], + [56039,132531], + [56041,74938], + [56043,65496], + [56045,68877] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-household-median-2010.json b/data/regional/united-states/economics/income/us-income-household-median-2010.json new file mode 100644 index 0000000..f71504c --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-household-median-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Household Income", + "description" : "Median Household Income from the previous 12 months in 2010 US dollars.", + "units" : "$", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income","household"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.household.median.2010"], + [1001,53255], + [1003,50147], + [1005,33219], + [1007,41770], + [1009,45549], + [1011,31602], + [1013,30659], + [1015,38407], + [1017,31467], + [1019,40690], + [1021,39486], + [1023,31076], + [1025,27439], + [1027,35595], + [1029,36077], + [1031,42253], + [1033,39610], + [1035,26944], + [1037,35560], + [1039,33852], + [1041,35140], + [1043,38567], + [1045,43353], + [1047,26029], + [1049,35065], + [1051,53128], + [1053,31927], + [1055,36422], + [1057,34560], + [1059,33942], + [1061,34140], + [1063,22222], + [1065,29299], + [1067,38379], + [1069,41022], + [1071,36312], + [1073,45244], + [1075,33887], + [1077,39345], + [1079,40516], + [1081,40894], + [1083,46682], + [1085,29714], + [1087,27544], + [1089,55851], + [1091,32940], + [1093,32769], + [1095,37661], + [1097,40996], + [1099,30235], + [1101,43725], + [1103,44349], + [1105,25950], + [1107,28280], + [1109,29181], + [1111,34593], + [1113,32481], + [1115,48837], + [1117,68380], + [1119,25338], + [1121,36948], + [1123,36904], + [1125,42311], + [1127,37191], + [1129,36431], + [1131,23491], + [1133,33685], + [2013,54375], + [2016,72917], + [2020,73004], + [2050,52214], + [2060,84000], + [2068,72500], + [2070,60800], + [2090,66598], + [2100,47981], + [2105,43750], + [2110,75517], + [2122,57454], + [2130,61695], + [2150,60776], + [2158,37955], + [2164,40909], + [2170,67703], + [2180,53899], + [2185,68517], + [2188,55217], + [2195,62317], + [2198,45728], + [2220,62024], + [2230,73500], + [2240,59596], + [2261,60383], + [2275,50389], + [2282,65750], + [2290,33712], + [4001,30184], + [4003,44876], + [4005,49510], + [4007,37580], + [4009,41683], + [4011,48696], + [4012,32147], + [4013,55054], + [4015,39785], + [4017,39774], + [4019,45521], + [4021,51310], + [4023,36519], + [4025,43290], + [4027,40340], + [5001,37230], + [5003,34934], + [5005,35606], + [5007,50434], + [5009,36977], + [5011,29908], + [5013,32450], + [5015,34235], + [5017,21676], + [5019,31968], + [5021,29066], + [5023,35753], + [5025,36957], + [5027,35148], + [5029,32700], + [5031,39233], + [5033,40197], + [5035,33716], + [5037,37021], + [5039,29602], + [5041,29051], + [5043,32558], + [5045,45287], + [5047,32064], + [5049,30598], + [5051,36844], + [5053,51589], + [5055,38209], + [5057,35708], + [5059,37150], + [5061,34554], + [5063,34625], + [5065,31673], + [5067,27615], + [5069,35998], + [5071,30592], + [5073,27515], + [5075,30288], + [5077,30494], + [5079,35737], + [5081,33416], + [5083,37551], + [5085,50757], + [5087,36502], + [5089,34109], + [5091,40307], + [5093,33407], + [5095,29964], + [5097,35705], + [5099,38375], + [5101,27441], + [5103,31259], + [5105,43635], + [5107,27361], + [5109,32806], + [5111,32267], + [5113,32525], + [5115,39841], + [5117,35346], + [5119,45121], + [5121,30222], + [5123,27019], + [5125,51502], + [5127,36417], + [5129,28811], + [5131,39482], + [5133,34383], + [5135,31135], + [5137,30380], + [5139,36464], + [5141,31960], + [5143,42303], + [5145,39178], + [5147,27186], + [5149,36606], + [6001,69384], + [6003,63478], + [6005,54758], + [6007,43170], + [6009,54971], + [6011,48016], + [6013,78385], + [6015,36118], + [6017,70000], + [6019,46430], + [6021,43074], + [6023,40089], + [6025,38685], + [6027,44808], + [6029,47089], + [6031,48684], + [6033,39491], + [6035,50317], + [6037,55476], + [6039,46039], + [6041,89268], + [6043,49098], + [6045,43759], + [6047,43844], + [6049,34588], + [6051,55087], + [6053,59271], + [6055,67389], + [6057,57121], + [6059,74344], + [6061,74447], + [6063,44000], + [6065,57768], + [6067,56439], + [6069,65771], + [6071,55845], + [6073,63069], + [6075,71304], + [6077,54341], + [6079,57365], + [6081,85648], + [6083,60078], + [6085,86850], + [6087,65253], + [6089,43944], + [6091,52950], + [6093,36981], + [6095,68409], + [6097,63274], + [6099,51094], + [6101,50944], + [6103,38137], + [6105,38725], + [6107,43851], + [6109,47462], + [6111,75348], + [6113,57077], + [6115,46807], + [8001,54666], + [8003,35935], + [8005,58719], + [8007,56068], + [8009,36017], + [8011,36412], + [8013,64839], + [8014,75590], + [8015,42941], + [8017,47125], + [8019,60426], + [8021,33627], + [8023,24388], + [8025,38189], + [8027,39909], + [8029,40451], + [8031,45501], + [8033,43058], + [8035,99198], + [8037,71337], + [8039,78958], + [8041,56268], + [8043,37847], + [8045,64902], + [8047,58036], + [8049,60433], + [8051,49356], + [8053,74659], + [8055,30058], + [8057,37222], + [8059,66075], + [8061,40089], + [8063,41678], + [8065,41103], + [8067,56422], + [8069,56447], + [8071,38134], + [8073,41616], + [8075,40961], + [8077,52067], + [8079,53438], + [8081,53587], + [8083,44103], + [8085,46590], + [8087,43111], + [8089,34142], + [8091,58393], + [8093,64098], + [8095,44084], + [8097,64502], + [8099,33969], + [8101,40699], + [8103,57992], + [8105,39871], + [8107,60876], + [8109,30430], + [8111,43783], + [8113,66399], + [8115,37625], + [8117,68750], + [8119,58080], + [8121,39735], + [8123,55596], + [8125,42114], + [9001,81268], + [9003,62590], + [9005,69639], + [9007,74906], + [9009,61114], + [9011,65419], + [9013,77175], + [9015,59370], + [10001,53183], + [10003,62474], + [10005,51046], + [11001,58526], + [12001,40644], + [12003,47276], + [12005,47770], + [12007,41126], + [12009,49523], + [12011,51694], + [12013,31699], + [12015,45037], + [12017,37933], + [12019,61185], + [12021,58106], + [12023,38214], + [12027,35979], + [12029,32312], + [12031,49463], + [12033,43573], + [12035,48090], + [12037,36490], + [12039,35728], + [12041,37039], + [12043,39429], + [12045,39178], + [12047,37613], + [12049,37466], + [12051,37298], + [12053,42011], + [12055,34946], + [12057,49536], + [12059,32247], + [12061,47341], + [12063,38257], + [12065,41359], + [12067,46445], + [12069,46477], + [12071,50014], + [12073,44490], + [12075,35737], + [12077,40777], + [12079,37459], + [12081,47812], + [12083,40339], + [12085,53210], + [12086,43605], + [12087,53821], + [12089,58712], + [12091,54242], + [12093,38339], + [12095,50138], + [12097,46328], + [12099,53242], + [12101,44228], + [12103,45258], + [12105,43946], + [12107,34645], + [12109,62663], + [12111,45196], + [12113,55129], + [12115,49388], + [12117,58971], + [12119,43079], + [12121,36352], + [12123,37408], + [12125,41794], + [12127,44400], + [12129,53301], + [12131,47273], + [12133,36216], + [13001,36155], + [13003,33834], + [13005,31429], + [13007,27462], + [13009,37237], + [13011,40455], + [13013,48958], + [13015,49216], + [13017,30134], + [13019,32202], + [13021,38798], + [13023,35661], + [13025,37343], + [13027,41309], + [13029,63244], + [13031,34327], + [13033,33155], + [13035,52257], + [13037,30522], + [13039,49230], + [13043,35828], + [13045,45559], + [13047,46544], + [13049,40850], + [13051,44928], + [13053,51089], + [13055,32419], + [13057,66320], + [13059,34253], + [13061,26250], + [13063,43311], + [13065,31963], + [13067,65522], + [13069,35202], + [13071,32902], + [13073,66333], + [13075,31390], + [13077,61550], + [13079,37062], + [13081,29960], + [13083,39760], + [13085,51128], + [13087,33297], + [13089,51349], + [13091,33580], + [13093,31038], + [13095,32435], + [13097,55852], + [13099,26928], + [13101,32390], + [13103,56903], + [13105,30543], + [13107,30205], + [13109,40796], + [13111,34145], + [13113,82216], + [13115,41066], + [13117,87605], + [13119,36739], + [13121,56709], + [13123,36741], + [13125,37149], + [13127,50337], + [13129,40916], + [13131,32247], + [13133,38513], + [13135,63219], + [13137,40192], + [13139,50876], + [13141,22283], + [13143,38996], + [13145,67018], + [13147,36109], + [13149,42685], + [13151,63923], + [13153,55098], + [13155,38376], + [13157,51506], + [13159,42081], + [13161,32928], + [13163,29268], + [13165,27686], + [13167,27607], + [13169,50717], + [13171,37536], + [13173,37522], + [13175,38280], + [13177,59811], + [13179,42674], + [13181,36399], + [13183,41186], + [13185,39096], + [13187,43394], + [13189,35414], + [13191,39075], + [13193,27950], + [13195,41343], + [13197,31581], + [13199,37845], + [13201,33196], + [13205,36198], + [13207,48297], + [13209,35182], + [13211,45817], + [13213,38226], + [13215,41331], + [13217,52361], + [13219,74352], + [13221,39319], + [13223,62348], + [13225,41014], + [13227,49945], + [13229,37062], + [13231,53213], + [13233,38646], + [13235,36262], + [13237,41529], + [13239,28912], + [13241,34406], + [13243,26194], + [13245,37882], + [13247,55779], + [13249,35096], + [13251,32155], + [13253,32666], + [13255,41100], + [13257,34938], + [13259,30954], + [13261,32430], + [13263,33873], + [13265,22188], + [13267,38522], + [13269,25237], + [13271,23876], + [13273,27909], + [13275,35797], + [13277,36847], + [13279,31635], + [13281,39540], + [13283,36467], + [13285,41770], + [13287,30763], + [13289,26521], + [13291,41298], + [13293,34509], + [13295,38723], + [13297,51721], + [13299,35517], + [13301,31043], + [13303,31382], + [13305,37340], + [13307,25708], + [13309,35422], + [13311,41756], + [13313,42345], + [13315,30784], + [13317,28022], + [13319,37902], + [13321,38670], + [15001,54996], + [15003,70093], + [15005,41806], + [15007,62531], + [15009,63989], + [16001,55835], + [16003,36004], + [16005,44848], + [16007,43374], + [16009,37500], + [16011,44128], + [16013,61854], + [16015,48789], + [16017,41943], + [16019,50445], + [16021,37712], + [16023,39413], + [16025,44145], + [16027,43218], + [16029,44958], + [16031,39866], + [16033,40909], + [16035,41835], + [16037,41910], + [16039,43089], + [16041,45682], + [16043,42523], + [16045,42794], + [16047,37228], + [16049,34536], + [16051,51579], + [16053,39188], + [16055,46336], + [16057,36974], + [16059,36411], + [16061,35808], + [16063,45714], + [16065,35461], + [16067,40350], + [16069,44395], + [16071,44599], + [16073,33441], + [16075,43559], + [16077,40843], + [16079,36654], + [16081,53364], + [16083,42455], + [16085,50851], + [16087,36542], + [17001,43824], + [17003,28833], + [17005,51946], + [17007,61210], + [17009,38696], + [17011,45692], + [17013,44891], + [17015,44805], + [17017,41544], + [17019,45262], + [17021,41712], + [17023,43597], + [17025,38016], + [17027,55278], + [17029,36457], + [17031,53942], + [17033,41434], + [17035,42101], + [17037,54002], + [17039,45347], + [17041,46941], + [17043,76581], + [17045,39904], + [17047,40430], + [17049,49509], + [17051,41269], + [17053,48667], + [17055,34381], + [17057,41268], + [17059,38003], + [17061,41450], + [17063,64297], + [17065,35032], + [17067,42857], + [17069,27578], + [17071,43450], + [17073,49164], + [17075,47323], + [17077,32169], + [17079,46546], + [17081,41161], + [17083,53470], + [17085,50279], + [17087,41619], + [17089,67767], + [17091,50484], + [17093,79897], + [17095,39545], + [17097,78948], + [17099,51705], + [17101,38771], + [17103,48502], + [17105,50500], + [17107,48999], + [17109,33702], + [17111,76482], + [17113,57642], + [17115,44337], + [17117,47178], + [17119,51941], + [17121,38974], + [17123,49116], + [17125,42461], + [17127,41077], + [17129,56230], + [17131,50909], + [17133,68253], + [17135,40864], + [17137,44645], + [17139,46364], + [17141,55733], + [17143,49747], + [17145,40696], + [17147,55752], + [17149,40205], + [17151,39672], + [17153,31173], + [17155,56458], + [17157,45020], + [17159,41917], + [17161,46226], + [17163,48562], + [17165,35644], + [17167,52232], + [17169,43686], + [17171,49462], + [17173,44627], + [17175,49195], + [17177,43304], + [17179,54232], + [17181,39760], + [17183,39456], + [17185,46026], + [17187,41636], + [17189,51440], + [17191,39207], + [17193,39728], + [17195,45266], + [17197,75906], + [17199,40579], + [17201,47198], + [17203,65890], + [18001,43317], + [18003,48714], + [18005,52742], + [18007,46318], + [18009,41989], + [18011,68594], + [18013,50139], + [18015,48055], + [18017,42587], + [18019,47368], + [18021,44666], + [18023,48416], + [18025,37988], + [18027,44592], + [18029,56789], + [18031,46894], + [18033,46722], + [18035,38066], + [18037,52871], + [18039,47258], + [18041,37038], + [18043,52422], + [18045,42817], + [18047,51649], + [18049,40372], + [18051,46872], + [18053,38985], + [18055,41103], + [18057,81947], + [18059,61052], + [18061,51272], + [18063,67180], + [18065,41087], + [18067,45003], + [18069,45964], + [18071,43980], + [18073,55093], + [18075,39886], + [18077,42707], + [18079,43755], + [18081,61629], + [18083,39523], + [18085,50217], + [18087,47792], + [18089,48723], + [18091,46014], + [18093,40380], + [18095,43256], + [18097,43541], + [18099,50141], + [18101,43406], + [18103,39485], + [18105,38137], + [18107,47694], + [18109,55427], + [18111,50721], + [18113,45818], + [18115,50966], + [18117,37120], + [18119,44285], + [18121,40512], + [18123,45108], + [18125,41222], + [18127,60889], + [18129,57530], + [18131,44016], + [18133,48992], + [18135,40990], + [18137,48093], + [18139,46685], + [18141,44644], + [18143,39588], + [18145,52292], + [18147,52105], + [18149,37480], + [18151,47479], + [18153,44184], + [18155,44503], + [18157,42632], + [18159,51485], + [18161,43257], + [18163,42396], + [18165,41904], + [18167,38508], + [18169,43157], + [18171,49238], + [18173,62354], + [18175,39722], + [18177,41123], + [18179,47202], + [18181,45891], + [18183,52129], + [19001,45202], + [19003,40368], + [19005,46623], + [19007,34689], + [19009,42717], + [19011,54726], + [19013,44178], + [19015,49578], + [19017,55676], + [19019,51961], + [19021,43182], + [19023,47702], + [19025,41611], + [19027,47507], + [19029,40820], + [19031,54321], + [19033,44741], + [19035,44635], + [19037,41372], + [19039,45596], + [19041,43542], + [19043,45873], + [19045,46170], + [19047,44377], + [19049,67037], + [19051,46597], + [19053,37138], + [19055,47078], + [19057,41937], + [19059,50174], + [19061,48573], + [19063,42286], + [19065,41055], + [19067,39467], + [19069,44863], + [19071,47225], + [19073,43286], + [19075,56184], + [19077,50090], + [19079,46188], + [19081,47318], + [19083,44694], + [19085,51303], + [19087,41983], + [19089,46068], + [19091,45282], + [19093,44521], + [19095,56053], + [19097,42489], + [19099,46396], + [19101,44167], + [19103,51380], + [19105,47955], + [19107,42698], + [19109,48277], + [19111,42444], + [19113,53674], + [19115,50457], + [19117,43005], + [19119,49506], + [19121,53183], + [19123,45025], + [19125,53370], + [19127,45232], + [19129,59481], + [19131,48506], + [19133,41398], + [19135,43245], + [19137,38624], + [19139,51025], + [19141,44018], + [19143,43889], + [19145,40778], + [19147,42800], + [19149,56379], + [19151,42105], + [19153,56094], + [19155,48728], + [19157,50998], + [19159,42336], + [19161,42986], + [19163,49964], + [19165,44085], + [19167,51557], + [19169,48248], + [19171,46288], + [19173,40300], + [19175,40879], + [19177,40073], + [19179,40093], + [19181,62034], + [19183,50710], + [19185,35425], + [19187,40806], + [19189,41871], + [19191,50693], + [19193,44343], + [19195,49673], + [19197,44035], + [20001,41546], + [20003,40428], + [20005,44175], + [20007,38875], + [20009,43763], + [20011,38045], + [20013,37525], + [20015,56290], + [20017,40372], + [20019,35848], + [20021,38154], + [20023,31186], + [20025,37931], + [20027,42490], + [20029,35838], + [20031,47171], + [20033,34808], + [20035,40749], + [20037,35286], + [20039,35383], + [20041,46457], + [20043,43410], + [20045,45831], + [20047,39226], + [20049,33455], + [20051,44543], + [20053,42200], + [20055,50454], + [20057,46621], + [20059,49459], + [20061,45559], + [20063,41295], + [20065,43980], + [20067,55514], + [20069,52824], + [20071,55972], + [20073,37180], + [20075,36297], + [20077,38168], + [20079,46604], + [20081,45859], + [20083,41127], + [20085,51759], + [20087,56886], + [20089,37759], + [20091,73733], + [20093,46435], + [20095,44510], + [20097,37292], + [20099,39049], + [20101,42311], + [20103,61107], + [20105,41071], + [20107,44379], + [20109,39375], + [20111,36921], + [20113,53026], + [20115,45713], + [20117,43125], + [20119,46658], + [20121,60539], + [20123,44247], + [20125,40603], + [20127,42083], + [20129,42273], + [20131,46134], + [20133,36702], + [20135,47639], + [20137,32016], + [20139,48594], + [20141,34797], + [20143,50814], + [20145,40048], + [20147,44381], + [20149,53430], + [20151,43583], + [20153,39797], + [20155,41431], + [20157,38286], + [20159,43164], + [20161,39257], + [20163,37861], + [20165,39435], + [20167,36135], + [20169,45162], + [20171,58341], + [20173,47848], + [20175,41373], + [20177,47464], + [20179,46739], + [20181,41570], + [20183,39836], + [20185,39375], + [20187,49612], + [20189,50517], + [20191,49582], + [20193,47033], + [20195,39655], + [20197,52133], + [20199,43953], + [20201,39698], + [20203,44318], + [20205,39301], + [20207,30385], + [20209,38503], + [21001,29834], + [21003,35247], + [21005,55506], + [21007,41228], + [21009,38374], + [21011,30458], + [21013,24724], + [21015,66549], + [21017,40849], + [21019,38802], + [21021,40720], + [21023,38481], + [21025,19906], + [21027,37395], + [21029,51526], + [21031,33703], + [21033,35289], + [21035,39194], + [21037,51482], + [21039,33909], + [21041,43440], + [21043,32424], + [21045,26592], + [21047,37061], + [21049,46575], + [21051,20175], + [21053,23788], + [21055,34623], + [21057,28135], + [21059,42821], + [21061,35808], + [21063,22097], + [21065,28324], + [21067,47469], + [21069,31236], + [21071,27907], + [21073,47976], + [21075,31965], + [21077,41310], + [21079,37095], + [21081,42475], + [21083,35277], + [21085,33965], + [21087,36575], + [21089,42377], + [21091,44892], + [21093,47540], + [21095,26582], + [21097,40582], + [21099,30969], + [21101,40438], + [21103,43612], + [21105,31836], + [21107,39312], + [21109,21928], + [21111,45352], + [21113,47494], + [21115,30820], + [21117,53213], + [21119,29451], + [21121,21493], + [21123,38891], + [21125,36787], + [21127,28865], + [21129,25129], + [21131,26857], + [21133,31283], + [21135,28376], + [21137,32314], + [21139,39075], + [21141,34647], + [21143,42079], + [21145,41630], + [21147,22643], + [21149,39115], + [21151,41894], + [21153,22779], + [21155,37488], + [21157,43326], + [21159,25173], + [21161,40523], + [21163,43800], + [21165,29740], + [21167,47955], + [21169,34732], + [21171,28439], + [21173,36034], + [21175,30229], + [21177,36750], + [21179,44783], + [21181,40259], + [21183,36050], + [21185,79417], + [21187,46238], + [21189,19351], + [21191,44670], + [21193,29547], + [21195,32563], + [21197,31815], + [21199,32771], + [21201,27254], + [21203,26946], + [21205,31604], + [21207,29980], + [21209,58028], + [21211,55296], + [21213,41323], + [21215,59326], + [21217,35378], + [21219,36989], + [21221,41825], + [21223,47798], + [21225,39515], + [21227,43954], + [21229,43090], + [21231,25993], + [21233,39635], + [21235,28122], + [21237,20910], + [21239,56537], + [22001,37261], + [22003,36926], + [22005,63716], + [22007,45235], + [22009,31412], + [22011,45202], + [22013,31870], + [22015,51020], + [22017,37181], + [22019,43758], + [22021,37423], + [22023,59555], + [22025,36398], + [22027,32292], + [22029,30062], + [22031,38007], + [22033,46179], + [22035,24038], + [22037,35335], + [22039,34057], + [22041,32311], + [22043,40092], + [22045,41783], + [22047,42215], + [22049,40674], + [22051,48175], + [22053,42907], + [22055,47559], + [22057,47492], + [22059,37572], + [22061,35247], + [22063,54708], + [22065,26441], + [22067,31781], + [22069,30326], + [22071,37468], + [22073,39823], + [22075,54730], + [22077,41177], + [22079,40658], + [22081,34723], + [22083,37682], + [22085,35395], + [22087,39200], + [22089,60961], + [22091,27393], + [22093,51725], + [22095,47666], + [22097,31813], + [22099,41302], + [22101,40431], + [22103,60866], + [22105,38957], + [22107,27157], + [22109,48437], + [22111,38930], + [22113,42693], + [22115,42554], + [22117,30363], + [22119,35999], + [22121,47298], + [22123,33901], + [22125,43411], + [22127,32039], + [23001,44470], + [23003,36574], + [23005,55658], + [23007,39831], + [23009,47533], + [23011,45973], + [23013,45264], + [23015,47678], + [23017,39748], + [23019,42658], + [23021,34016], + [23023,55486], + [23025,36647], + [23027,41312], + [23029,34859], + [23031,55008], + [24001,37747], + [24003,83456], + [24005,63959], + [24009,90838], + [24011,58799], + [24013,81621], + [24015,64886], + [24017,88825], + [24019,45151], + [24021,81686], + [24023,45760], + [24025,77010], + [24027,103273], + [24029,50141], + [24031,93373], + [24033,71260], + [24035,81096], + [24037,80053], + [24039,42443], + [24041,63017], + [24043,52994], + [24045,50752], + [24047,55487], + [24510,39386], + [25001,60317], + [25003,48907], + [25005,54955], + [25007,62407], + [25009,64153], + [25011,52002], + [25013,47724], + [25015,59505], + [25017,77377], + [25019,83347], + [25021,81027], + [25023,73131], + [25025,50597], + [25027,64152], + [26001,34858], + [26003,38262], + [26005,50240], + [26007,36695], + [26009,43123], + [26011,36689], + [26013,40541], + [26015,51869], + [26017,44659], + [26019,44718], + [26021,42625], + [26023,42133], + [26025,42568], + [26027,45177], + [26029,48704], + [26031,37903], + [26033,40194], + [26035,34399], + [26037,58016], + [26039,39665], + [26041,41951], + [26043,42586], + [26045,54885], + [26047,49235], + [26049,43483], + [26051,37936], + [26053,33673], + [26055,50647], + [26057,40114], + [26059,42989], + [26061,34174], + [26063,40038], + [26065,45808], + [26067,46454], + [26069,36861], + [26071,33734], + [26073,36880], + [26075,46117], + [26077,44794], + [26079,39350], + [26081,49532], + [26083,38872], + [26085,31205], + [26087,55005], + [26089,56527], + [26091,48618], + [26093,72129], + [26095,40041], + [26097,39339], + [26099,53996], + [26101,40853], + [26103,45130], + [26105,40039], + [26107,35887], + [26109,41332], + [26111,51103], + [26113,40376], + [26115,55366], + [26117,39775], + [26119,34447], + [26121,40670], + [26123,43218], + [26125,66390], + [26127,39543], + [26129,35968], + [26131,35269], + [26133,38341], + [26135,32346], + [26137,45531], + [26139,55095], + [26141,37383], + [26143,33542], + [26145,42954], + [26147,49120], + [26149,44392], + [26151,40818], + [26153,36925], + [26155,46453], + [26157,42198], + [26159,44435], + [26161,59065], + [26163,42241], + [26165,39997], + [27001,40226], + [27003,69028], + [27005,46056], + [27007,43394], + [27009,50848], + [27011,42870], + [27013,47871], + [27015,47696], + [27017,52858], + [27019,80280], + [27021,42445], + [27023,43956], + [27025,64726], + [27027,50057], + [27029,39310], + [27031,49162], + [27033,40292], + [27035,44659], + [27037,72850], + [27039,64438], + [27041,46789], + [27043,41631], + [27045,45888], + [27047,43090], + [27049,56366], + [27051,41697], + [27053,61328], + [27055,50855], + [27057,45066], + [27059,57260], + [27061,45621], + [27063,46869], + [27065,45672], + [27067,49512], + [27069,47568], + [27071,39571], + [27073,45550], + [27075,46765], + [27077,46080], + [27079,57477], + [27081,44672], + [27083,46872], + [27085,58544], + [27087,38523], + [27089,48565], + [27091,43960], + [27093,51173], + [27095,45273], + [27097,47085], + [27099,44497], + [27101,45657], + [27103,57540], + [27105,43040], + [27107,41784], + [27109,64090], + [27111,43478], + [27113,44926], + [27115,43938], + [27117,40589], + [27119,47233], + [27121,47196], + [27123,51915], + [27125,47835], + [27127,44181], + [27129,47623], + [27131,58771], + [27133,45411], + [27135,49400], + [27137,44941], + [27139,82190], + [27141,71704], + [27143,51449], + [27145,51779], + [27147,55321], + [27149,47055], + [27151,41486], + [27153,42927], + [27155,41287], + [27157,51112], + [27159,34686], + [27161,50552], + [27163,79109], + [27165,44228], + [27167,48692], + [27169,44217], + [27171,67963], + [27173,50288], + [28001,27096], + [28003,32342], + [28005,27615], + [28007,28508], + [28009,29202], + [28011,26005], + [28013,28484], + [28015,29290], + [28017,30092], + [28019,30994], + [28021,24150], + [28023,29103], + [28025,31727], + [28027,24726], + [28029,36637], + [28031,32456], + [28033,59418], + [28035,34448], + [28037,33324], + [28039,45492], + [28041,40828], + [28043,32901], + [28045,44494], + [28047,45668], + [28049,39215], + [28051,21375], + [28053,25131], + [28055,21360], + [28057,37588], + [28059,47906], + [28061,30177], + [28063,24304], + [28065,25986], + [28067,36017], + [28069,25649], + [28071,39080], + [28073,48048], + [28075,33926], + [28077,35593], + [28079,31986], + [28081,39049], + [28083,22020], + [28085,38405], + [28087,37607], + [28089,59585], + [28091,31332], + [28093,34183], + [28095,35685], + [28097,31488], + [28099,34905], + [28101,36154], + [28103,22178], + [28105,30320], + [28107,34030], + [28109,40038], + [28111,38887], + [28113,30779], + [28115,38420], + [28117,31262], + [28119,24169], + [28121,54028], + [28123,35765], + [28125,30129], + [28127,36739], + [28129,37176], + [28131,43728], + [28133,25012], + [28135,24668], + [28137,41102], + [28139,32109], + [28141,30211], + [28143,29994], + [28145,35928], + [28147,33054], + [28149,40404], + [28151,27797], + [28153,31081], + [28155,34107], + [28157,28066], + [28159,30738], + [28161,29911], + [28163,27356], + [29001,31176], + [29003,52720], + [29005,42375], + [29007,40935], + [29009,36143], + [29011,39573], + [29013,38882], + [29015,33305], + [29017,33938], + [29019,45786], + [29021,42393], + [29023,33525], + [29025,39439], + [29027,49544], + [29029,44617], + [29031,44479], + [29033,41619], + [29035,28408], + [29037,60097], + [29039,32800], + [29041,41558], + [29043,51135], + [29045,38133], + [29047,58559], + [29049,51915], + [29051,53877], + [29053,42586], + [29055,34506], + [29057,32714], + [29059,38101], + [29061,39925], + [29063,43267], + [29065,36118], + [29067,30968], + [29069,29375], + [29071,49120], + [29073,40837], + [29075,35556], + [29077,41059], + [29079,35239], + [29081,35000], + [29083,35706], + [29085,28097], + [29087,40261], + [29089,42067], + [29091,35282], + [29093,29803], + [29095,46252], + [29097,37894], + [29099,56756], + [29101,44985], + [29103,33029], + [29105,37294], + [29107,48257], + [29109,38350], + [29111,40399], + [29113,52897], + [29115,37706], + [29117,39683], + [29119,36619], + [29121,36429], + [29123,33456], + [29125,40185], + [29127,40859], + [29129,34008], + [29131,35838], + [29133,29586], + [29135,47162], + [29137,38750], + [29139,39369], + [29141,36696], + [29143,32895], + [29145,41163], + [29147,38621], + [29149,26144], + [29151,45746], + [29153,31960], + [29155,30120], + [29157,45713], + [29159,37658], + [29161,40260], + [29163,42082], + [29165,65948], + [29167,35831], + [29169,43155], + [29171,34545], + [29173,45194], + [29175,36458], + [29177,53343], + [29179,32059], + [29181,29369], + [29183,70331], + [29185,32217], + [29186,46911], + [29187,38589], + [29189,57561], + [29195,38818], + [29197,31358], + [29199,39722], + [29201,37716], + [29203,30766], + [29205,35012], + [29207,35932], + [29209,41351], + [29211,30459], + [29213,39026], + [29215,31552], + [29217,34387], + [29219,50231], + [29221,35901], + [29223,30621], + [29225,40889], + [29227,38220], + [29229,29636], + [29510,33652], + [30001,38264], + [30003,36550], + [30005,37034], + [30007,44667], + [30009,49010], + [30011,35703], + [30013,42389], + [30015,41064], + [30017,38913], + [30019,38125], + [30021,50752], + [30023,35310], + [30025,52529], + [30027,37607], + [30029,44998], + [30031,50136], + [30033,42955], + [30035,38075], + [30037,35726], + [30039,36052], + [30041,43606], + [30043,56695], + [30045,41473], + [30047,37274], + [30049,50238], + [30051,40212], + [30053,30823], + [30055,48167], + [30057,42998], + [30059,31577], + [30061,37256], + [30063,42887], + [30065,37033], + [30067,38830], + [30069,36875], + [30071,36453], + [30073,36419], + [30075,37685], + [30077,39851], + [30079,34896], + [30081,43000], + [30083,52516], + [30085,37451], + [30087,44776], + [30089,30622], + [30091,39578], + [30093,37986], + [30095,57227], + [30097,43723], + [30099,39516], + [30101,42949], + [30103,37969], + [30105,42050], + [30107,30321], + [30109,40417], + [30111,48641], + [31001,44443], + [31003,37058], + [31005,43250], + [31007,34063], + [31009,39000], + [31011,40703], + [31013,44404], + [31015,34906], + [31017,28038], + [31019,47120], + [31021,43817], + [31023,44595], + [31025,62039], + [31027,40497], + [31029,38314], + [31031,43431], + [31033,49493], + [31035,42909], + [31037,48133], + [31039,44278], + [31041,42364], + [31043,43729], + [31045,34937], + [31047,41830], + [31049,37148], + [31051,42388], + [31053,42849], + [31055,51878], + [31057,37031], + [31059,43167], + [31061,37220], + [31063,42009], + [31065,37938], + [31067,43311], + [31069,32962], + [31071,38709], + [31073,41442], + [31075,39261], + [31077,41181], + [31079,46138], + [31081,50702], + [31083,44656], + [31085,45595], + [31087,35549], + [31089,43452], + [31091,38750], + [31093,45453], + [31095,42665], + [31097,42083], + [31099,54518], + [31101,42898], + [31103,32000], + [31105,42010], + [31107,36798], + [31109,50849], + [31111,45181], + [31113,45192], + [31115,34219], + [31117,50625], + [31119,44089], + [31121,46116], + [31123,37717], + [31125,41610], + [31127,42534], + [31129,31761], + [31131,47493], + [31133,41969], + [31135,47000], + [31137,45221], + [31139,48318], + [31141,49523], + [31143,48444], + [31145,41927], + [31147,35165], + [31149,39159], + [31151,45469], + [31153,68280], + [31155,57699], + [31157,39004], + [31159,55877], + [31161,33608], + [31163,38631], + [31165,42386], + [31167,47713], + [31169,39159], + [31171,48250], + [31173,39048], + [31175,38588], + [31177,61940], + [31179,45000], + [31181,38015], + [31183,37222], + [31185,47689], + [32001,51597], + [32003,56258], + [32005,60721], + [32007,67038], + [32009,39712], + [32011,61400], + [32013,55656], + [32015,66525], + [32017,44695], + [32019,48433], + [32021,35446], + [32023,41181], + [32027,56491], + [32029,61525], + [32031,55658], + [32033,48545], + [32510,52067], + [33001,54929], + [33003,49897], + [33005,53828], + [33007,41534], + [33009,53075], + [33011,69321], + [33013,63012], + [33015,75825], + [33017,57809], + [33019,50689], + [34001,54766], + [34003,81708], + [34005,76258], + [34007,60976], + [34009,54292], + [34011,50651], + [34013,55125], + [34015,72664], + [34017,55275], + [34019,100980], + [34021,71217], + [34023,77615], + [34025,82265], + [34027,96747], + [34029,59620], + [34031,54944], + [34033,59441], + [34035,97440], + [34037,83089], + [34039,66791], + [34041,71364], + [35001,47481], + [35003,31914], + [35005,37524], + [35006,37361], + [35007,39216], + [35009,38090], + [35011,30643], + [35013,36657], + [35015,46583], + [35017,36591], + [35019,28488], + [35021,33750], + [35023,36733], + [35025,43910], + [35027,43750], + [35028,103643], + [35029,27997], + [35031,31335], + [35033,37784], + [35035,39615], + [35037,28773], + [35039,41437], + [35041,37762], + [35043,57158], + [35045,46189], + [35047,32213], + [35049,52696], + [35051,25583], + [35053,33284], + [35055,35441], + [35057,37117], + [35059,39975], + [35061,42044], + [36001,56090], + [36003,41305], + [36005,34264], + [36007,44457], + [36009,42466], + [36011,48415], + [36013,40639], + [36015,44502], + [36017,43943], + [36019,47489], + [36021,55546], + [36023,45338], + [36025,42967], + [36027,69838], + [36029,47372], + [36031,45216], + [36033,42050], + [36035,43240], + [36037,49750], + [36039,46235], + [36041,49557], + [36043,42318], + [36045,43410], + [36047,43567], + [36049,42846], + [36051,51690], + [36053,53345], + [36055,51303], + [36057,42603], + [36059,93613], + [36061,64971], + [36063,45964], + [36065,46708], + [36067,50676], + [36069,56468], + [36071,69523], + [36073,48063], + [36075,45333], + [36077,45268], + [36079,89218], + [36081,55291], + [36083,54152], + [36085,71084], + [36087,82534], + [36089,42303], + [36091,65100], + [36093,55188], + [36095,50864], + [36097,47404], + [36099,46707], + [36101,43867], + [36103,84506], + [36105,48103], + [36107,51948], + [36109,48655], + [36111,57584], + [36113,51619], + [36115,48327], + [36117,52562], + [36119,79619], + [36121,50075], + [36123,46822], + [37001,44167], + [37003,40014], + [37005,30845], + [37007,34745], + [37009,34538], + [37011,34918], + [37013,40653], + [37015,29110], + [37017,30471], + [37019,45806], + [37021,44190], + [37023,37139], + [37025,53928], + [37027,37261], + [37029,61091], + [37031,46155], + [37033,36927], + [37035,43484], + [37037,56038], + [37039,38144], + [37041,36761], + [37043,35109], + [37045,38208], + [37047,35421], + [37049,44599], + [37051,43834], + [37053,55376], + [37055,53889], + [37057,44249], + [37059,49727], + [37061,32816], + [37063,49894], + [37065,32665], + [37067,46749], + [37069,43710], + [37071,43253], + [37073,45682], + [37075,28447], + [37077,48210], + [37079,41488], + [37081,45676], + [37083,30439], + [37085,42853], + [37087,41377], + [37089,46446], + [37091,30878], + [37093,42927], + [37095,38265], + [37097,48962], + [37099,37190], + [37101,49745], + [37103,38354], + [37105,44120], + [37107,33625], + [37109,47450], + [37111,34953], + [37113,38615], + [37115,38580], + [37117,34766], + [37119,55294], + [37121,32743], + [37123,33861], + [37125,48319], + [37127,44499], + [37129,48553], + [37131,30578], + [37133,43561], + [37135,52981], + [37137,40561], + [37139,44085], + [37141,44338], + [37143,43041], + [37145,44668], + [37147,38592], + [37149,43692], + [37151,40346], + [37153,30439], + [37155,29667], + [37157,39231], + [37159,43596], + [37161,35364], + [37163,35740], + [37165,29368], + [37167,44802], + [37169,42689], + [37171,37294], + [37173,35071], + [37175,39408], + [37177,32215], + [37179,63386], + [37181,34025], + [37183,63770], + [37185,30641], + [37187,32716], + [37189,31967], + [37191,41224], + [37193,33438], + [37195,38596], + [37197,39807], + [37199,35703], + [38001,35966], + [38003,41773], + [38005,30479], + [38007,51923], + [38009,40227], + [38011,48063], + [38013,50800], + [38015,53465], + [38017,47600], + [38019,48786], + [38021,37179], + [38023,48152], + [38025,48707], + [38027,38404], + [38029,35615], + [38031,41066], + [38033,33333], + [38035,44242], + [38037,39500], + [38039,40085], + [38041,38393], + [38043,34250], + [38045,46098], + [38047,41741], + [38049,36944], + [38051,34904], + [38053,48480], + [38055,52922], + [38057,60191], + [38059,50591], + [38061,53912], + [38063,39071], + [38065,62308], + [38067,48502], + [38069,37091], + [38071,41792], + [38073,46044], + [38075,49583], + [38077,47131], + [38079,28265], + [38081,49318], + [38083,37727], + [38085,30990], + [38087,43625], + [38089,49536], + [38091,44191], + [38093,44620], + [38095,43684], + [38097,44290], + [38099,44139], + [38101,48793], + [38103,40136], + [38105,55396], + [39001,32791], + [39003,43632], + [39005,44542], + [39007,42139], + [39009,31559], + [39011,52018], + [39013,38320], + [39015,45887], + [39017,54788], + [39019,43148], + [39021,49246], + [39023,44141], + [39025,58472], + [39027,46261], + [39029,39502], + [39031,39469], + [39033,41228], + [39035,43603], + [39037,44280], + [39039,44480], + [39041,87908], + [39043,46593], + [39045,56796], + [39047,39599], + [39049,49087], + [39051,50717], + [39053,37409], + [39055,65663], + [39057,56679], + [39059,37573], + [39061,48234], + [39063,49070], + [39065,41343], + [39067,35363], + [39069,48367], + [39071,39844], + [39073,39586], + [39075,43533], + [39077,47058], + [39079,34044], + [39081,37527], + [39083,45655], + [39085,54896], + [39087,36461], + [39089,53291], + [39091,46493], + [39093,52066], + [39095,42072], + [39097,50533], + [39099,40123], + [39101,40511], + [39103,66193], + [39105,33407], + [39107,49719], + [39109,51507], + [39111,37030], + [39113,43965], + [39115,34962], + [39117,49891], + [39119,39538], + [39121,39500], + [39123,53463], + [39125,46459], + [39127,42388], + [39129,49262], + [39131,35912], + [39133,50447], + [39135,49780], + [39137,56573], + [39139,42664], + [39141,42626], + [39143,48056], + [39145,32812], + [39147,42573], + [39149,48475], + [39151,44941], + [39153,47926], + [39155,42296], + [39157,42081], + [39159,68452], + [39161,44415], + [39163,34242], + [39165,71274], + [39167,41654], + [39169,48375], + [39171,44538], + [39173,53298], + [39175,47216], + [40001,29811], + [40003,42500], + [40005,31179], + [40007,49743], + [40009,43642], + [40011,41421], + [40013,37230], + [40015,36413], + [40017,60489], + [40019,38385], + [40021,32322], + [40023,27549], + [40025,34096], + [40027,52688], + [40029,31764], + [40031,44012], + [40033,44144], + [40035,39836], + [40037,42314], + [40039,42108], + [40041,34383], + [40043,39940], + [40045,43032], + [40047,40636], + [40049,37785], + [40051,45260], + [40053,42043], + [40055,35096], + [40057,31679], + [40059,39946], + [40061,37474], + [40063,32677], + [40065,41437], + [40067,32750], + [40069,34556], + [40071,39505], + [40073,49104], + [40075,32565], + [40077,42639], + [40079,36335], + [40081,42282], + [40083,48683], + [40085,41629], + [40087,53708], + [40089,31082], + [40091,30620], + [40093,46748], + [40095,40419], + [40097,41228], + [40099,40870], + [40101,37002], + [40103,39515], + [40105,37500], + [40107,33286], + [40109,42916], + [40111,37820], + [40113,41125], + [40115,35483], + [40117,40059], + [40119,34752], + [40121,39245], + [40123,37484], + [40125,40085], + [40127,26742], + [40129,48917], + [40131,57443], + [40133,32985], + [40135,36357], + [40137,43524], + [40139,44623], + [40141,29832], + [40143,45613], + [40145,55487], + [40147,44823], + [40149,43039], + [40151,48076], + [40153,49672], + [41001,39704], + [41003,48012], + [41005,62007], + [41007,42223], + [41009,55199], + [41011,37491], + [41013,46059], + [41015,37469], + [41017,53071], + [41019,39711], + [41021,42148], + [41023,35974], + [41025,39036], + [41027,51307], + [41029,44142], + [41031,41425], + [41033,38035], + [41035,41818], + [41037,41105], + [41039,42923], + [41041,39738], + [41043,45832], + [41045,39144], + [41047,46069], + [41049,43902], + [41051,49618], + [41053,50975], + [41055,41354], + [41057,39412], + [41059,45861], + [41061,42162], + [41063,41116], + [41065,42133], + [41067,62574], + [41069,33403], + [41071,52485], + [42001,56529], + [42003,47961], + [42005,42752], + [42007,46190], + [42009,40249], + [42011,53470], + [42013,42363], + [42015,40543], + [42017,74828], + [42019,56878], + [42021,39574], + [42023,40733], + [42025,47744], + [42027,47016], + [42029,84741], + [42031,40028], + [42033,37130], + [42035,39354], + [42037,42788], + [42039,38924], + [42041,60219], + [42043,52371], + [42045,61876], + [42047,43745], + [42049,43595], + [42051,34796], + [42053,35150], + [42055,51035], + [42057,45240], + [42059,40498], + [42061,41700], + [42063,40225], + [42065,38406], + [42067,44276], + [42069,43673], + [42071,54765], + [42073,42570], + [42075,52356], + [42077,53541], + [42079,42224], + [42081,42689], + [42083,40097], + [42085,42573], + [42087,37539], + [42089,56733], + [42091,76380], + [42093,45255], + [42095,58762], + [42097,38387], + [42099,52659], + [42101,36251], + [42103,56843], + [42105,39196], + [42107,42315], + [42109,44713], + [42111,39194], + [42113,36250], + [42115,43457], + [42117,40338], + [42119,45474], + [42121,39812], + [42123,41286], + [42125,49687], + [42127,45930], + [42129,47689], + [42131,47403], + [42133,57494], + [44001,68333], + [44003,61088], + [44005,67239], + [44007,48500], + [44009,70285], + [45001,33143], + [45003,44468], + [45005,20081], + [45007,42871], + [45009,32538], + [45011,33816], + [45013,55286], + [45015,50777], + [45017,36790], + [45019,48433], + [45021,34132], + [45023,32743], + [45025,32979], + [45027,33066], + [45029,33263], + [45031,38379], + [45033,26818], + [45035,55034], + [45037,42834], + [45039,32022], + [45041,40487], + [45043,42666], + [45045,46830], + [45047,38797], + [45049,34846], + [45051,43142], + [45053,37393], + [45055,44064], + [45057,38959], + [45059,37529], + [45061,23378], + [45063,52205], + [45065,35858], + [45067,30629], + [45069,27688], + [45071,41815], + [45073,42266], + [45075,32849], + [45077,41898], + [45079,47922], + [45081,40508], + [45083,42680], + [45085,39137], + [45087,33470], + [45089,24191], + [45091,51925], + [46003,45230], + [46005,40716], + [46007,32841], + [46009,41107], + [46011,45134], + [46013,45615], + [46015,48277], + [46017,27926], + [46019,39041], + [46021,42833], + [46023,35808], + [46025,43894], + [46027,37198], + [46029,43275], + [46031,30877], + [46033,46743], + [46035,41867], + [46037,36818], + [46039,47000], + [46041,33255], + [46043,42794], + [46045,47026], + [46047,35833], + [46049,38203], + [46051,42625], + [46053,33940], + [46055,46281], + [46057,44439], + [46059,45895], + [46061,46556], + [46063,34792], + [46065,53501], + [46067,39310], + [46069,41196], + [46071,36354], + [46073,40607], + [46075,49464], + [46077,44948], + [46079,45606], + [46081,42356], + [46083,67365], + [46085,36323], + [46087,42022], + [46089,31923], + [46091,41023], + [46093,46180], + [46095,34055], + [46097,43958], + [46099,51799], + [46101,52354], + [46102,24392], + [46103,46849], + [46105,33361], + [46107,42422], + [46109,37708], + [46111,44732], + [46115,45000], + [46117,51875], + [46119,48958], + [46121,25196], + [46123,40221], + [46125,48068], + [46127,59889], + [46129,39517], + [46135,47124], + [46137,27578], + [47001,44650], + [47003,38550], + [47005,33953], + [47007,29729], + [47009,47322], + [47011,40032], + [47013,30686], + [47015,38733], + [47017,36160], + [47019,31173], + [47021,52585], + [47023,39915], + [47025,31353], + [47027,32106], + [47029,28809], + [47031,40078], + [47033,36556], + [47035,36813], + [47037,45668], + [47039,30445], + [47041,34863], + [47043,44554], + [47045,36856], + [47047,56729], + [47049,29642], + [47051,40983], + [47053,35947], + [47055,37860], + [47057,30623], + [47059,36867], + [47061,26529], + [47063,39807], + [47065,45408], + [47067,23125], + [47069,32539], + [47071,30732], + [47073,35392], + [47075,32414], + [47077,38887], + [47079,36836], + [47081,42075], + [47083,33738], + [47085,41486], + [47087,32722], + [47089,38239], + [47091,29949], + [47093,46759], + [47095,24700], + [47097,32894], + [47099,34985], + [47101,35000], + [47103,42962], + [47105,49343], + [47107,37146], + [47109,34777], + [47111,33087], + [47113,40178], + [47115,38785], + [47117,40435], + [47119,46278], + [47121,33506], + [47123,36209], + [47125,48930], + [47127,44433], + [47129,36772], + [47131,39543], + [47133,34347], + [47135,31776], + [47137,30193], + [47139,34027], + [47141,35185], + [47143,36761], + [47145,42698], + [47147,50820], + [47149,53770], + [47151,28728], + [47153,33850], + [47155,41476], + [47157,44705], + [47159,43200], + [47161,40214], + [47163,39957], + [47165,54916], + [47167,49378], + [47169,44205], + [47171,34387], + [47173,30143], + [47175,29087], + [47177,34946], + [47179,41256], + [47181,34993], + [47183,32358], + [47185,33865], + [47187,87832], + [47189,60678], + [48001,40378], + [48003,48699], + [48005,39148], + [48007,42179], + [48009,50891], + [48011,60530], + [48013,42927], + [48015,53263], + [48017,42375], + [48019,44352], + [48021,51829], + [48023,33459], + [48025,40278], + [48027,48618], + [48029,47048], + [48031,46128], + [48033,58409], + [48035,45288], + [48037,42550], + [48039,65607], + [48041,37898], + [48043,35799], + [48045,34196], + [48047,19959], + [48049,38832], + [48051,43185], + [48053,48187], + [48055,41594], + [48057,43258], + [48059,44596], + [48061,31264], + [48063,36029], + [48065,56106], + [48067,36360], + [48069,35087], + [48071,66764], + [48073,36966], + [48075,42004], + [48077,50881], + [48079,37446], + [48081,38702], + [48083,26951], + [48085,80504], + [48087,39712], + [48089,41145], + [48091,64752], + [48093,35218], + [48095,49063], + [48097,48899], + [48099,47374], + [48101,33859], + [48103,50425], + [48105,50653], + [48107,36301], + [48109,35500], + [48111,47073], + [48113,47974], + [48115,33623], + [48117,41127], + [48119,37908], + [48121,70622], + [48123,40668], + [48125,33813], + [48127,25882], + [48129,46130], + [48131,30493], + [48133,32452], + [48135,45815], + [48137,40163], + [48139,60877], + [48141,36333], + [48143,39200], + [48145,31083], + [48147,44551], + [48149,45450], + [48151,41458], + [48153,35240], + [48155,30417], + [48157,79845], + [48159,45625], + [48161,44560], + [48163,35940], + [48165,46393], + [48167,58317], + [48169,35750], + [48171,52682], + [48173,61184], + [48175,51786], + [48177,37094], + [48179,40442], + [48181,46875], + [48183,43367], + [48185,39429], + [48187,61274], + [48189,36509], + [48191,29219], + [48193,40808], + [48195,52239], + [48197,36295], + [48199,52755], + [48201,51444], + [48203,44425], + [48205,66583], + [48207,35295], + [48209,56353], + [48211,62159], + [48213,39779], + [48215,31879], + [48217,39293], + [48219,46430], + [48221,54882], + [48223,41642], + [48225,31929], + [48227,39574], + [48229,22647], + [48231,43101], + [48233,42213], + [48235,48833], + [48237,46801], + [48239,47483], + [48241,38062], + [48243,43750], + [48245,42293], + [48247,40000], + [48249,37020], + [48251,54954], + [48253,39568], + [48255,39611], + [48257,58555], + [48259,66655], + [48261,48333], + [48263,47750], + [48265,43072], + [48267,43429], + [48269,61563], + [48271,24388], + [48273,36571], + [48275,32055], + [48277,38015], + [48279,35458], + [48281,46378], + [48283,30144], + [48285,41429], + [48287,46986], + [48289,40355], + [48291,45929], + [48293,42140], + [48295,52566], + [48297,43719], + [48299,41969], + [48301,83889], + [48303,42562], + [48305,43672], + [48307,34459], + [48309,40672], + [48311,41453], + [48313,37207], + [48315,29943], + [48317,38111], + [48319,38702], + [48321,43205], + [48323,28813], + [48325,49138], + [48327,40996], + [48329,54945], + [48331,39035], + [48333,31895], + [48335,37260], + [48337,42482], + [48339,65620], + [48341,44216], + [48343,38843], + [48345,34081], + [48347,33189], + [48349,41654], + [48351,37452], + [48353,37102], + [48355,43280], + [48357,49309], + [48359,51111], + [48361,47914], + [48363,41095], + [48365,45622], + [48367,61340], + [48369,39753], + [48371,38125], + [48373,33325], + [48375,36766], + [48377,29513], + [48379,42491], + [48381,56041], + [48383,54224], + [48385,29186], + [48387,37047], + [48389,32593], + [48391,42949], + [48393,52500], + [48395,38393], + [48397,78032], + [48399,37823], + [48401,46574], + [48403,33589], + [48405,25974], + [48407,46285], + [48409,45189], + [48411,36308], + [48413,55186], + [48415,42401], + [48417,46629], + [48419,32425], + [48421,50069], + [48423,46139], + [48425,52135], + [48427,24441], + [48429,35691], + [48431,41548], + [48433,52222], + [48435,56146], + [48437,37907], + [48439,55306], + [48441,42403], + [48443,35403], + [48445,39498], + [48447,36339], + [48449,39423], + [48451,41398], + [48453,54074], + [48455,36814], + [48457,35346], + [48459,44403], + [48461,49234], + [48463,35087], + [48465,36993], + [48467,43074], + [48469,48767], + [48471,34259], + [48473,47324], + [48475,41117], + [48477,43159], + [48479,36684], + [48481,41148], + [48483,42909], + [48485,42971], + [48487,40105], + [48489,22881], + [48491,68780], + [48493,60493], + [48495,41828], + [48497,55207], + [48499,41277], + [48501,49146], + [48503,36900], + [48505,24496], + [48507,21707], + [49001,41514], + [49003,55135], + [49005,47013], + [49007,41967], + [49009,36389], + [49011,66866], + [49013,52895], + [49015,49237], + [49017,44745], + [49019,41396], + [49021,42247], + [49023,53225], + [49025,43540], + [49027,44594], + [49029,70152], + [49031,37708], + [49033,54737], + [49035,58004], + [49037,38076], + [49039,42395], + [49041,45622], + [49043,79461], + [49045,60590], + [49047,59730], + [49049,56927], + [49051,65204], + [49053,50050], + [49055,49414], + [49057,54086], + [50001,55800], + [50003,47396], + [50005,42706], + [50007,59878], + [50009,37734], + [50011,53623], + [50013,57436], + [50015,52232], + [50017,52079], + [50019,40202], + [50021,47027], + [50023,55313], + [50025,46714], + [50027,50893], + [51001,41372], + [51003,64847], + [51005,43160], + [51007,50135], + [51009,44757], + [51011,49224], + [51013,94880], + [51015,50612], + [51017,50589], + [51019,54110], + [51021,41552], + [51023,64724], + [51025,35184], + [51027,29183], + [51029,34720], + [51031,43478], + [51033,57690], + [51035,36142], + [51036,46337], + [51037,34881], + [51041,71321], + [51043,73244], + [51045,51291], + [51047,65132], + [51049,40143], + [51051,29080], + [51053,51459], + [51057,46235], + [51059,105416], + [51061,83877], + [51063,42044], + [51065,68223], + [51067,45555], + [51069,61973], + [51071,41186], + [51073,59331], + [51075,79574], + [51077,32178], + [51079,54307], + [51081,38574], + [51083,34705], + [51085,76425], + [51087,60114], + [51089,34086], + [51091,43481], + [51093,62242], + [51095,73903], + [51097,44442], + [51099,76241], + [51101,64946], + [51103,45209], + [51105,31352], + [51107,115574], + [51109,54257], + [51111,37424], + [51113,56608], + [51115,47435], + [51117,36431], + [51119,50207], + [51121,43229], + [51125,48118], + [51127,70590], + [51131,35760], + [51133,51944], + [51135,37344], + [51137,54916], + [51139,41617], + [51141,35813], + [51143,39224], + [51145,73593], + [51147,36191], + [51149,64171], + [51153,91098], + [51155,41163], + [51157,62117], + [51159,42182], + [51161,59446], + [51163,44417], + [51165,49930], + [51167,32780], + [51169,34250], + [51171,50171], + [51173,34864], + [51175,45426], + [51177,76574], + [51179,93065], + [51181,55030], + [51183,37978], + [51185,35215], + [51187,60522], + [51191,40422], + [51193,52990], + [51195,33608], + [51197,38948], + [51199,81055], + [51510,80847], + [51520,32079], + [51530,39955], + [51540,42240], + [51550,67855], + [51570,50571], + [51580,35277], + [51590,29936], + [51595,32788], + [51600,97900], + [51610,114409], + [51620,33174], + [51630,43558], + [51640,22333], + [51650,49815], + [51660,37235], + [51670,37789], + [51678,31571], + [51680,37058], + [51683,75173], + [51685,70299], + [51690,32408], + [51700,49562], + [51710,42677], + [51720,33944], + [51730,36449], + [51735,84315], + [51740,45488], + [51750,29155], + [51760,38266], + [51770,36422], + [51775,48828], + [51790,42724], + [51800,65104], + [51810,64618], + [51820,40977], + [51830,50794], + [51840,44873], + [53001,40829], + [53003,41665], + [53005,57354], + [53007,48674], + [53009,44398], + [53011,58262], + [53013,43611], + [53015,45877], + [53017,48708], + [53019,35485], + [53021,47749], + [53023,42269], + [53025,42572], + [53027,41899], + [53029,57190], + [53031,46048], + [53033,68065], + [53035,59549], + [53037,41232], + [53039,37398], + [53041,43874], + [53043,45582], + [53045,48104], + [53047,38551], + [53049,39642], + [53051,38896], + [53053,57869], + [53055,50726], + [53057,54811], + [53059,48704], + [53061,66300], + [53063,47250], + [53065,42845], + [53067,60930], + [53069,40372], + [53071,45575], + [53073,49031], + [53075,36368], + [53077,42877], + [54001,31212], + [54003,52857], + [54005,39783], + [54007,32158], + [54009,39475], + [54011,34492], + [54013,26922], + [54015,30789], + [54017,30019], + [54019,31912], + [54021,29706], + [54023,35593], + [54025,33732], + [54027,31792], + [54029,38565], + [54031,31347], + [54033,39191], + [54035,41406], + [54037,65603], + [54039,42669], + [54041,33293], + [54043,30868], + [54045,35465], + [54047,22154], + [54049,38115], + [54051,34419], + [54053,36027], + [54055,32131], + [54057,36571], + [54059,32902], + [54061,39167], + [54063,39574], + [54065,37281], + [54067,38457], + [54069,39669], + [54071,33323], + [54073,38882], + [54075,32161], + [54077,40753], + [54079,52618], + [54081,38036], + [54083,36176], + [54085,32619], + [54087,27428], + [54089,27720], + [54091,36956], + [54093,32712], + [54095,33496], + [54097,36114], + [54099,35079], + [54101,28025], + [54103,36636], + [54105,36705], + [54107,42146], + [54109,36343], + [55001,39885], + [55003,38111], + [55005,42601], + [55007,43176], + [55009,52553], + [55011,45302], + [55013,39626], + [55015,61685], + [55017,48672], + [55019,42777], + [55021,55910], + [55023,39486], + [55025,60519], + [55027,52571], + [55029,47775], + [55031,43127], + [55033,48376], + [55035,45846], + [55037,40180], + [55039,51549], + [55041,37627], + [55043,43889], + [55045,53088], + [55047,47624], + [55049,54737], + [55051,35618], + [55053,43191], + [55055,54769], + [55057,45664], + [55059,54430], + [55061,54152], + [55063,49328], + [55065,48114], + [55067,41034], + [55069,46625], + [55071,49354], + [55073,53471], + [55075,39698], + [55077,45012], + [55078,31076], + [55079,43215], + [55081,47333], + [55083,46633], + [55085,45857], + [55087,55914], + [55089,74996], + [55091,48446], + [55093,60181], + [55095,49806], + [55097,51456], + [55099,41026], + [55101,53855], + [55103,43900], + [55105,49716], + [55107,38352], + [55109,67446], + [55111,50390], + [55113,37091], + [55115,45841], + [55117,51127], + [55119,44489], + [55121,46582], + [55123,43632], + [55125,41631], + [55127,54487], + [55129,41641], + [55131,64434], + [55133,75064], + [55135,46876], + [55137,42540], + [55139,50974], + [55141,47204], + [56001,42890], + [56003,48270], + [56005,76576], + [56007,56565], + [56009,54599], + [56011,49890], + [56013,46397], + [56015,42590], + [56017,42469], + [56019,45638], + [56021,52824], + [56023,57794], + [56025,50936], + [56027,45813], + [56029,46637], + [56031,42947], + [56033,48141], + [56035,70147], + [56037,69828], + [56039,70271], + [56041,58346], + [56043,48379], + [56045,53853] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-household-median-2016.json b/data/regional/united-states/economics/income/us-income-household-median-2016.json new file mode 100644 index 0000000..e6465f2 --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-household-median-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Household Income", + "description" : "Median Household Income from the previous 12 months in 2016 US dollars.", + "units" : "$", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income","household"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.household.median.2016"], + [1001,54487], + [1003,56460], + [1005,32884], + [1007,43079], + [1009,47213], + [1011,34278], + [1013,35409], + [1015,41778], + [1017,39530], + [1019,41456], + [1021,44188], + [1023,32691], + [1025,34061], + [1027,38512], + [1029,43483], + [1031,48632], + [1033,46572], + [1035,29758], + [1037,36441], + [1039,35010], + [1041,37374], + [1043,41543], + [1045,40523], + [1047,30488], + [1049,37128], + [1051,54553], + [1053,35096], + [1055,40972], + [1057,38403], + [1059,37049], + [1061,36976], + [1063,26559], + [1065,35381], + [1067,41426], + [1069,42910], + [1071,41407], + [1073,50109], + [1075,38358], + [1077,44124], + [1079,43107], + [1081,47749], + [1083,52181], + [1085,32011], + [1087,30681], + [1089,61193], + [1091,34794], + [1093,36386], + [1095,42117], + [1097,45233], + [1099,36639], + [1101,45111], + [1103,46843], + [1105,25221], + [1107,35968], + [1109,35172], + [1111,40283], + [1113,38617], + [1115,57856], + [1117,74212], + [1119,26814], + [1121,40555], + [1123,40169], + [1125,47483], + [1127,39511], + [1129,37575], + [1131,24216], + [1133,38644], + [2013,63991], + [2016,78151], + [2020,83959], + [2050,46634], + [2060,68026], + [2068,72378], + [2070,52250], + [2090,73427], + [2100,53471], + [2105,53884], + [2110,82011], + [2122,68501], + [2130,67125], + [2150,74683], + [2158,"NA"], + [2164,44310], + [2170,71793], + [2180,55974], + [2185,74998], + [2188,53692], + [2195,60540], + [2198,48888], + [2220,72795], + [2230,65112], + [2240,59412], + [2261,69755], + [2275,56747], + [2282,57687], + [2290,37906], + [4001,34040], + [4003,45151], + [4005,53643], + [4007,40747], + [4009,46714], + [4011,61110], + [4012,34285], + [4013,58742], + [4015,42003], + [4017,37440], + [4019,47644], + [4021,52642], + [4023,39090], + [4025,49824], + [4027,42998], + [5001,39726], + [5003,41277], + [5005,40147], + [5007,64072], + [5009,39881], + [5011,34114], + [5013,33507], + [5015,37145], + [5017,29527], + [5019,37247], + [5021,36037], + [5023,42397], + [5025,45256], + [5027,35322], + [5029,41892], + [5031,44091], + [5033,42941], + [5035,37627], + [5037,40970], + [5039,33679], + [5041,32392], + [5043,40441], + [5045,50909], + [5047,40091], + [5049,33451], + [5051,42087], + [5053,54411], + [5055,45208], + [5057,38769], + [5059,46313], + [5061,36166], + [5063,42520], + [5065,36987], + [5067,35098], + [5069,38485], + [5071,37205], + [5073,32288], + [5075,39015], + [5077,26912], + [5079,35419], + [5081,43567], + [5083,39361], + [5085,56247], + [5087,39059], + [5089,33950], + [5091,38412], + [5093,35846], + [5095,32906], + [5097,36435], + [5099,37612], + [5101,33107], + [5103,36016], + [5105,43819], + [5107,29073], + [5109,34821], + [5111,36125], + [5113,32941], + [5115,42916], + [5117,40340], + [5119,47966], + [5121,38647], + [5123,39675], + [5125,63618], + [5127,34245], + [5129,29747], + [5131,42559], + [5133,38697], + [5135,32379], + [5137,31955], + [5139,41546], + [5141,38166], + [5143,46367], + [5145,44329], + [5147,30400], + [5149,38658], + [6001,89472], + [6003,57481], + [6005,59789], + [6007,45097], + [6009,57990], + [6011,54861], + [6013,90920], + [6015,39458], + [6017,75100], + [6019,48323], + [6021,46141], + [6023,43164], + [6025,43327], + [6027,53350], + [6029,49812], + [6031,51320], + [6033,40818], + [6035,49793], + [6037,61308], + [6039,49467], + [6041,103488], + [6043,51233], + [6045,45247], + [6047,47442], + [6049,42890], + [6051,56574], + [6053,62999], + [6055,73112], + [6057,60501], + [6059,81642], + [6061,85326], + [6063,53646], + [6065,59951], + [6067,59728], + [6069,73298], + [6071,56194], + [6073,70693], + [6075,101873], + [6077,59038], + [6079,69517], + [6081,107075], + [6083,66360], + [6085,110843], + [6087,75929], + [6089,46663], + [6091,48099], + [6093,40875], + [6095,73200], + [6097,73496], + [6099,54060], + [6101,51283], + [6103,40585], + [6105,38727], + [6107,45768], + [6109,50431], + [6111,79470], + [6113,63645], + [6115,46054], + [8001,65442], + [8003,37057], + [8005,70866], + [8007,51998], + [8009,34070], + [8011,33951], + [8013,74772], + [8014,86870], + [8015,49877], + [8017,50558], + [8019,68699], + [8021,34390], + [8023,27211], + [8025,35873], + [8027,52021], + [8029,41798], + [8031,61038], + [8033,46791], + [8035,112399], + [8037,79556], + [8039,86693], + [8041,63610], + [8043,46372], + [8045,69161], + [8047,65472], + [8049,63875], + [8051,53753], + [8053,51717], + [8055,34626], + [8057,46671], + [8059,74342], + [8061,43951], + [8063,48272], + [8065,49064], + [8067,58499], + [8069,66561], + [8071,38224], + [8073,42969], + [8075,49407], + [8077,49825], + [8079,52641], + [8081,54151], + [8083,40679], + [8085,43285], + [8087,49129], + [8089,36773], + [8091,66813], + [8093,68535], + [8095,49046], + [8097,74576], + [8099,40164], + [8101,44644], + [8103,58980], + [8105,41128], + [8107,71322], + [8109,33973], + [8111,44652], + [8113,67251], + [8115,42518], + [8117,70265], + [8119,63966], + [8121,46304], + [8123,63609], + [8125,48963], + [9001,89954], + [9003,69341], + [9005,76323], + [9007,80190], + [9009,66012], + [9011,70258], + [9013,81369], + [9015,60869], + [10001,53994], + [10003,67246], + [10005,56618], + [11001,74093], + [12001,45294], + [12003,51904], + [12005,48843], + [12007,43058], + [12009,51214], + [12011,54055], + [12013,36708], + [12015,44935], + [12017,40009], + [12019,57476], + [12021,62397], + [12023,41667], + [12027,34146], + [12029,34146], + [12031,51948], + [12033,45004], + [12035,50863], + [12037,37479], + [12039,40865], + [12041,41721], + [12043,39607], + [12045,38381], + [12047,34517], + [12049,37612], + [12051,39911], + [12053,46225], + [12055,36864], + [12057,54509], + [12059,41110], + [12061,49813], + [12063,37358], + [12065,43453], + [12067,40653], + [12069,50125], + [12071,52989], + [12073,51041], + [12075,33092], + [12077,38900], + [12079,33721], + [12081,51770], + [12083,39629], + [12085,55917], + [12086,45886], + [12087,63892], + [12089,67967], + [12091,58009], + [12093,37689], + [12095,51312], + [12097,50716], + [12099,57607], + [12101,46326], + [12103,49974], + [12105,46289], + [12107,37526], + [12109,78544], + [12111,45509], + [12113,62668], + [12115,55088], + [12117,61253], + [12119,56568], + [12121,40572], + [12123,40180], + [12125,43795], + [12127,45356], + [12129,56158], + [12131,54686], + [12133,34787], + [13001,37954], + [13003,33318], + [13005,36873], + [13007,35452], + [13009,40683], + [13011,43370], + [13013,54893], + [13015,52497], + [13017,32644], + [13019,39174], + [13021,38115], + [13023,41447], + [13025,37675], + [13027,33676], + [13029,77244], + [13031,42083], + [13033,37410], + [13035,46141], + [13037,33478], + [13039,53130], + [13043,32970], + [13045,50598], + [13047,53740], + [13049,38948], + [13051,52746], + [13053,44097], + [13055,37345], + [13057,78668], + [13059,36692], + [13061,27648], + [13063,44598], + [13065,34777], + [13067,70950], + [13069,38704], + [13071,34931], + [13073,74908], + [13075,35518], + [13077,71114], + [13079,44014], + [13081,34211], + [13083,36213], + [13085,61229], + [13087,36136], + [13089,56053], + [13091,35779], + [13093,40591], + [13095,35750], + [13097,59665], + [13099,26934], + [13101,35892], + [13103,63776], + [13105,37131], + [13107,32495], + [13109,34689], + [13111,41487], + [13113,83145], + [13115,46634], + [13117,101804], + [13119,41543], + [13121,62824], + [13123,46332], + [13125,41412], + [13127,48691], + [13129,45705], + [13131,40234], + [13133,47194], + [13135,67197], + [13137,46828], + [13139,55308], + [13141,30616], + [13143,43196], + [13145,70724], + [13147,41247], + [13149,41994], + [13151,67150], + [13153,61795], + [13155,35866], + [13157,55426], + [13159,48473], + [13161,35538], + [13163,33680], + [13165,30611], + [13167,32201], + [13169,54155], + [13171,44575], + [13173,35690], + [13175,39037], + [13177,62972], + [13179,44154], + [13181,41494], + [13183,44542], + [13185,41331], + [13187,47287], + [13189,39642], + [13191,40788], + [13193,31358], + [13195,47151], + [13197,38734], + [13199,34508], + [13201,42771], + [13205,33490], + [13207,55626], + [13209,39074], + [13211,55347], + [13213,43203], + [13215,40895], + [13217,51167], + [13219,88570], + [13221,45319], + [13223,65480], + [13225,44330], + [13227,57637], + [13229,42908], + [13231,56901], + [13233,42470], + [13235,36611], + [13237,44785], + [13239,30483], + [13241,41913], + [13243,31662], + [13245,41128], + [13247,56689], + [13249,43396], + [13251,36414], + [13253,34986], + [13255,43065], + [13257,37920], + [13259,24945], + [13261,35764], + [13263,36482], + [13265,30133], + [13267,35567], + [13269,31637], + [13271,32327], + [13273,34018], + [13275,40199], + [13277,39982], + [13279,36765], + [13281,42439], + [13283,32100], + [13285,42955], + [13287,31969], + [13289,38507], + [13291,47948], + [13293,34039], + [13295,40814], + [13297,55267], + [13299,34643], + [13301,36789], + [13303,35542], + [13305,42017], + [13307,36329], + [13309,29532], + [13311,44980], + [13313,46796], + [13315,33858], + [13317,33735], + [13319,47309], + [13321,40122], + [15001,54684], + [15003,80012], + [15005,"NA"], + [15007,63164], + [15009,69699], + [16001,61571], + [16003,42310], + [16005,48453], + [16007,45875], + [16009,45285], + [16011,51586], + [16013,66210], + [16015,50123], + [16017,48097], + [16019,59293], + [16021,42725], + [16023,41706], + [16025,49153], + [16027,48461], + [16029,55152], + [16031,48983], + [16033,42050], + [16035,43626], + [16037,45591], + [16039,45003], + [16041,54427], + [16043,46465], + [16045,42027], + [16047,46948], + [16049,42049], + [16051,61156], + [16053,48590], + [16055,52019], + [16057,43767], + [16059,39934], + [16061,41092], + [16063,47754], + [16065,41199], + [16067,48903], + [16069,50030], + [16071,46596], + [16073,35866], + [16075,46595], + [16077,45933], + [16079,39285], + [16081,60745], + [16083,49415], + [16085,58738], + [16087,41647], + [17001,51130], + [17003,33344], + [17005,53631], + [17007,62081], + [17009,51826], + [17011,53410], + [17013,50952], + [17015,50330], + [17017,47511], + [17019,51032], + [17021,49324], + [17023,49937], + [17025,43478], + [17027,61013], + [17029,42066], + [17031,60025], + [17033,46374], + [17035,49733], + [17037,59586], + [17039,54926], + [17041,55891], + [17043,84999], + [17045,47062], + [17047,48884], + [17049,51809], + [17051,46290], + [17053,51861], + [17055,40246], + [17057,49503], + [17059,39634], + [17061,44378], + [17063,71969], + [17065,47855], + [17067,51721], + [17069,39143], + [17071,47792], + [17073,55287], + [17075,47589], + [17077,34982], + [17079,51120], + [17081,45746], + [17083,57243], + [17085,54169], + [17087,48359], + [17089,73684], + [17091,54624], + [17093,91952], + [17095,43277], + [17097,83344], + [17099,56543], + [17101,44774], + [17103,55563], + [17105,54339], + [17107,53052], + [17109,44460], + [17111,81570], + [17113,64271], + [17115,47786], + [17117,52483], + [17119,56297], + [17121,45698], + [17123,54807], + [17125,46962], + [17127,42833], + [17129,62966], + [17131,56661], + [17133,83139], + [17135,46997], + [17137,48600], + [17139,57447], + [17141,58812], + [17143,52380], + [17145,48423], + [17147,65797], + [17149,41671], + [17151,42917], + [17153,35875], + [17155,65902], + [17157,50681], + [17159,46497], + [17161,50952], + [17163,50598], + [17165,40690], + [17167,55090], + [17169,49566], + [17171,52386], + [17173,51069], + [17175,56414], + [17177,45863], + [17179,60590], + [17181,45476], + [17183,45247], + [17185,50195], + [17187,48346], + [17189,58587], + [17191,45583], + [17193,44874], + [17195,51567], + [17197,81640], + [17199,48112], + [17201,50296], + [17203,73055], + [18001,51517], + [18003,51329], + [18005,59765], + [18007,47218], + [18009,42588], + [18011,80634], + [18013,56323], + [18015,55708], + [18017,46287], + [18019,51837], + [18021,50185], + [18023,53862], + [18025,46210], + [18027,49237], + [18029,63876], + [18031,51999], + [18033,52599], + [18035,41404], + [18037,62852], + [18039,54582], + [18041,44673], + [18043,58703], + [18045,43571], + [18047,57674], + [18049,46662], + [18051,54690], + [18053,40177], + [18055,46019], + [18057,92406], + [18059,70655], + [18061,57573], + [18063,78464], + [18065,45356], + [18067,49204], + [18069,50138], + [18071,51871], + [18073,56034], + [18075,46949], + [18077,51534], + [18079,50425], + [18081,67215], + [18083,43897], + [18085,56010], + [18087,60402], + [18089,53600], + [18091,52763], + [18093,47997], + [18095,45853], + [18097,45300], + [18099,53767], + [18101,51008], + [18103,47650], + [18105,44442], + [18107,51527], + [18109,60482], + [18111,51183], + [18113,52318], + [18115,54422], + [18117,41077], + [18119,46069], + [18121,47599], + [18123,48905], + [18125,49578], + [18127,67302], + [18129,61619], + [18131,47243], + [18133,50896], + [18135,46750], + [18137,55129], + [18139,50412], + [18141,48960], + [18143,47738], + [18145,53019], + [18147,58217], + [18149,46602], + [18151,54071], + [18153,46706], + [18155,45337], + [18157,51385], + [18159,60756], + [18161,46862], + [18163,46750], + [18165,51425], + [18167,43560], + [18169,51561], + [18171,55466], + [18173,65809], + [18175,48939], + [18177,42983], + [18179,56054], + [18181,47439], + [18183,54873], + [19001,53416], + [19003,46939], + [19005,49439], + [19007,39124], + [19009,49560], + [19011,63069], + [19013,50887], + [19015,60421], + [19017,65733], + [19019,57228], + [19021,52344], + [19023,54970], + [19025,50767], + [19027,56292], + [19029,47897], + [19031,63672], + [19033,53109], + [19035,53534], + [19037,49197], + [19039,47753], + [19041,53549], + [19043,53809], + [19045,49850], + [19047,51473], + [19049,82123], + [19051,49636], + [19053,36808], + [19055,56747], + [19057,48991], + [19059,58019], + [19061,59403], + [19063,48035], + [19065,52192], + [19067,49771], + [19069,52860], + [19071,53861], + [19073,48769], + [19075,64146], + [19077,55531], + [19079,58920], + [19081,57222], + [19083,50616], + [19085,55325], + [19087,50684], + [19089,49916], + [19091,54315], + [19093,53300], + [19095,57771], + [19097,49769], + [19099,53829], + [19101,46617], + [19103,58904], + [19105,55210], + [19107,49898], + [19109,55129], + [19111,49654], + [19113,64625], + [19115,52271], + [19117,55871], + [19119,62496], + [19121,64776], + [19123,51839], + [19125,61098], + [19127,53645], + [19129,75550], + [19131,55129], + [19133,47371], + [19135,49402], + [19137,47197], + [19139,57583], + [19141,50607], + [19143,55375], + [19145,49507], + [19147,50642], + [19149,66070], + [19151,51260], + [19153,64169], + [19155,55442], + [19157,52408], + [19159,47638], + [19161,54660], + [19163,56208], + [19165,59121], + [19167,66605], + [19169,55561], + [19171,50468], + [19173,50695], + [19175,47422], + [19177,44875], + [19179,41312], + [19181,74031], + [19183,57315], + [19185,41118], + [19187,48013], + [19189,52953], + [19191,62115], + [19193,51877], + [19195,54628], + [19197,47815], + [20001,41950], + [20003,49215], + [20005,49826], + [20007,47540], + [20009,47194], + [20011,44424], + [20013,43960], + [20015,60836], + [20017,44940], + [20019,40859], + [20021,41140], + [20023,42649], + [20025,51280], + [20027,50291], + [20029,42431], + [20031,57224], + [20033,44898], + [20035,45907], + [20037,39521], + [20039,41095], + [20041,50268], + [20043,47320], + [20045,55446], + [20047,46825], + [20049,40227], + [20051,52265], + [20053,50403], + [20055,51812], + [20057,47175], + [20059,50155], + [20061,46326], + [20063,51445], + [20065,42224], + [20067,58620], + [20069,64274], + [20071,47620], + [20073,40518], + [20075,49932], + [20077,42023], + [20079,56848], + [20081,50514], + [20083,51244], + [20085,57869], + [20087,62285], + [20089,40940], + [20091,80872], + [20093,59254], + [20095,59721], + [20097,42976], + [20099,41103], + [20101,56677], + [20103,67558], + [20105,42092], + [20107,44391], + [20109,48453], + [20111,43600], + [20113,56488], + [20115,51569], + [20117,48687], + [20119,57187], + [20121,67651], + [20123,49552], + [20125,41281], + [20127,48093], + [20129,49717], + [20131,55324], + [20133,42441], + [20135,46439], + [20137,45845], + [20139,54760], + [20141,41967], + [20143,52808], + [20145,46961], + [20147,49386], + [20149,64704], + [20151,51419], + [20153,47377], + [20155,46208], + [20157,43921], + [20159,47737], + [20161,49901], + [20163,45268], + [20165,45281], + [20167,43857], + [20169,48748], + [20171,60540], + [20173,52612], + [20175,48648], + [20177,55387], + [20179,49860], + [20181,48456], + [20183,40006], + [20185,46104], + [20187,58135], + [20189,57432], + [20191,52186], + [20193,53816], + [20195,46756], + [20197,61502], + [20199,47844], + [20201,45077], + [20203,55336], + [20205,43134], + [20207,35417], + [20209,43396], + [21001,33925], + [21003,41368], + [21005,57448], + [21007,45074], + [21009,40274], + [21011,36468], + [21013,26014], + [21015,72942], + [21017,46231], + [21019,44569], + [21021,44834], + [21023,47182], + [21025,26659], + [21027,43053], + [21029,63570], + [21031,41701], + [21033,40327], + [21035,39438], + [21037,61490], + [21039,45362], + [21041,47726], + [21043,37406], + [21045,29417], + [21047,41081], + [21049,48474], + [21051,24901], + [21053,29582], + [21055,40656], + [21057,30771], + [21059,51153], + [21061,38395], + [21063,33335], + [21065,33839], + [21067,53288], + [21069,38860], + [21071,31295], + [21073,52395], + [21075,30605], + [21077,49945], + [21079,46967], + [21081,49312], + [21083,41705], + [21085,38418], + [21087,36246], + [21089,46815], + [21091,56823], + [21093,52040], + [21095,25240], + [21097,49615], + [21099,36628], + [21101,46936], + [21103,51774], + [21105,39859], + [21107,43590], + [21109,30798], + [21111,52008], + [21113,55047], + [21115,35408], + [21117,61798], + [21119,29786], + [21121,27432], + [21123,44522], + [21125,38323], + [21127,33757], + [21129,25372], + [21131,28595], + [21133,29308], + [21135,32848], + [21137,35934], + [21139,45229], + [21141,43985], + [21143,44767], + [21145,42936], + [21147,25087], + [21149,43656], + [21151,45406], + [21153,28996], + [21155,41233], + [21157,50165], + [21159,29861], + [21161,43683], + [21163,51893], + [21165,33734], + [21167,51048], + [21169,33562], + [21171,33425], + [21173,44890], + [21175,33716], + [21177,42098], + [21179,56239], + [21181,38958], + [21183,40859], + [21185,92454], + [21187,46358], + [21189,23115], + [21191,51680], + [21193,31814], + [21195,32734], + [21197,35169], + [21199,37782], + [21201,41877], + [21203,35567], + [21205,38684], + [21207,33490], + [21209,64809], + [21211,61700], + [21213,45643], + [21215,71156], + [21217,37806], + [21219,41072], + [21221,37965], + [21223,51827], + [21225,47017], + [21227,47253], + [21229,48041], + [21231,30923], + [21233,43605], + [21235,31985], + [21237,28443], + [21239,58712], + [22001,40218], + [22003,41584], + [22005,74212], + [22007,45847], + [22009,34997], + [22011,49436], + [22013,33887], + [22015,50048], + [22017,38414], + [22019,47052], + [22021,35428], + [22023,52479], + [22025,33154], + [22027,34228], + [22029,32685], + [22031,43325], + [22033,50451], + [22035,25810], + [22037,46172], + [22039,34440], + [22041,31873], + [22043,42948], + [22045,41604], + [22047,41679], + [22049,41192], + [22051,49681], + [22053,42134], + [22055,51125], + [22057,52220], + [22059,45169], + [22061,39158], + [22063,58318], + [22065,27306], + [22067,32269], + [22069,32094], + [22071,38418], + [22073,38525], + [22075,55950], + [22077,42545], + [22079,42452], + [22081,33044], + [22083,33820], + [22085,42700], + [22087,39450], + [22089,64742], + [22091,35519], + [22093,47876], + [22095,52166], + [22097,32185], + [22099,46560], + [22101,37822], + [22103,65861], + [22105,44625], + [22107,26657], + [22109,49206], + [22111,42166], + [22113,44048], + [22115,47172], + [22117,34240], + [22119,33251], + [22121,54454], + [22123,35638], + [22125,56459], + [22127,37600], + [23001,48494], + [23003,39746], + [23005,65475], + [23007,43532], + [23009,53941], + [23011,51013], + [23013,53610], + [23015,54026], + [23017,44508], + [23019,47076], + [23021,35874], + [23023,59271], + [23025,42134], + [23027,48422], + [23029,37711], + [23031,60520], + [24001,44708], + [24003,95297], + [24005,72305], + [24009,97188], + [24011,49616], + [24013,89529], + [24015,70504], + [24017,93947], + [24019,44491], + [24021,89541], + [24023,46710], + [24025,83595], + [24027,119386], + [24029,54210], + [24031,99604], + [24033,78680], + [24035,79966], + [24037,80049], + [24039,38546], + [24041,62264], + [24043,54643], + [24045,50015], + [24047,53509], + [24510,46604], + [25001,67374], + [25003,56011], + [25005,65154], + [25007,66528], + [25009,73503], + [25011,56544], + [25013,51589], + [25015,64425], + [25017,94977], + [25019,82324], + [25021,92606], + [25023,81483], + [25025,61367], + [25027,69064], + [26001,37900], + [26003,43693], + [26005,58311], + [26007,42332], + [26009,50356], + [26011,43339], + [26013,44187], + [26015,60818], + [26017,45731], + [26019,50323], + [26021,47237], + [26023,48321], + [26025,46423], + [26027,51530], + [26029,52944], + [26031,41667], + [26033,43683], + [26035,37646], + [26037,66396], + [26039,39208], + [26041,43835], + [26043,46094], + [26045,57807], + [26047,51122], + [26049,44174], + [26051,41251], + [26053,36429], + [26055,57367], + [26057,42642], + [26059,49049], + [26061,38603], + [26063,44845], + [26065,49387], + [26067,50383], + [26069,39721], + [26071,38913], + [26073,42924], + [26075,50809], + [26077,53370], + [26079,48426], + [26081,59649], + [26083,42799], + [26085,33708], + [26087,56079], + [26089,62174], + [26091,52738], + [26093,79388], + [26095,41881], + [26097,42887], + [26099,60175], + [26101,46851], + [26103,50681], + [26105,46624], + [26107,41759], + [26109,42306], + [26111,58526], + [26113,41625], + [26115,61962], + [26117,46877], + [26119,37021], + [26121,44473], + [26123,47221], + [26125,72078], + [26127,42446], + [26129,37842], + [26131,35894], + [26133,41018], + [26135,36181], + [26137,50061], + [26139,65004], + [26141,43484], + [26143,37817], + [26145,45739], + [26147,52178], + [26149,48271], + [26151,43579], + [26153,42883], + [26155,52716], + [26157,46950], + [26159,48518], + [26161,66040], + [26163,43570], + [26165,40485], + [27001,46617], + [27003,76497], + [27005,55780], + [27007,45344], + [27009,53675], + [27011,46713], + [27013,53829], + [27015,56049], + [27017,58509], + [27019,94057], + [27021,49585], + [27023,51675], + [27025,74908], + [27027,59937], + [27029,43797], + [27031,48884], + [27033,47437], + [27035,51803], + [27037,79111], + [27039,68238], + [27041,55257], + [27043,49176], + [27045,60575], + [27047,48943], + [27049,66038], + [27051,51274], + [27053,71184], + [27055,58201], + [27057,49129], + [27059,68303], + [27061,51644], + [27063,58849], + [27065,51347], + [27067,53034], + [27069,50012], + [27071,49393], + [27073,49669], + [27075,62746], + [27077,47584], + [27079,63451], + [27081,46405], + [27083,52989], + [27085,58393], + [27087,41640], + [27089,54651], + [27091,48326], + [27093,61374], + [27095,53407], + [27097,51422], + [27099,53302], + [27101,52373], + [27103,66868], + [27105,56069], + [27107,49572], + [27109,72511], + [27111,51252], + [27113,52724], + [27115,50962], + [27117,51050], + [27119,50893], + [27121,58892], + [27123,60287], + [27125,50625], + [27127,54918], + [27129,56724], + [27131,67726], + [27133,57518], + [27135,55879], + [27137,50156], + [27139,91046], + [27141,83304], + [27143,60978], + [27145,57881], + [27147,60619], + [27149,58179], + [27151,50954], + [27153,46255], + [27155,50416], + [27157,63115], + [27159,40963], + [27161,53383], + [27163,90755], + [27165,49482], + [27167,54373], + [27169,56499], + [27171,76256], + [27173,55690], + [28001,32956], + [28003,38675], + [28005,34986], + [28007,31722], + [28009,36400], + [28011,29633], + [28013,34417], + [28015,39622], + [28017,34611], + [28019,36194], + [28021,29266], + [28023,37814], + [28025,34408], + [28027,26815], + [28029,34450], + [28031,33348], + [28033,64138], + [28035,36709], + [28037,37533], + [28039,50705], + [28041,39559], + [28043,37419], + [28045,45369], + [28047,42988], + [28049,42903], + [28051,22045], + [28053,25506], + [28055,26957], + [28057,40644], + [28059,53288], + [28061,34806], + [28063,26731], + [28065,30815], + [28067,40283], + [28069,31018], + [28071,42287], + [28073,57419], + [28075,40949], + [28077,42291], + [28079,35644], + [28081,43834], + [28083,27573], + [28085,39701], + [28087,44142], + [28089,65870], + [28091,33416], + [28093,37561], + [28095,38208], + [28097,34946], + [28099,37195], + [28101,37468], + [28103,29330], + [28105,36105], + [28107,35570], + [28109,43654], + [28111,38064], + [28113,32485], + [28115,41455], + [28117,36558], + [28119,26210], + [28121,62284], + [28123,34452], + [28125,27880], + [28127,39568], + [28129,38521], + [28131,41884], + [28133,29529], + [28135,29233], + [28137,45643], + [28139,38571], + [28141,37909], + [28143,30241], + [28145,44880], + [28147,32016], + [28149,41162], + [28151,30187], + [28153,35545], + [28155,39192], + [28157,26390], + [28159,36091], + [28161,35312], + [28163,31773], + [29001,36819], + [29003,53356], + [29005,45966], + [29007,42463], + [29009,38060], + [29011,40349], + [29013,42133], + [29015,36413], + [29017,40935], + [29019,52824], + [29021,47517], + [29023,35494], + [29025,44952], + [29027,53186], + [29029,47373], + [29031,50227], + [29033,44581], + [29035,33283], + [29037,64422], + [29039,35998], + [29041,44229], + [29043,54273], + [29045,43975], + [29047,65973], + [29049,58371], + [29051,55767], + [29053,47187], + [29055,41139], + [29057,37884], + [29059,36178], + [29061,43519], + [29063,46835], + [29065,38722], + [29067,33121], + [29069,33237], + [29071,55496], + [29073,48593], + [29075,42402], + [29077,42802], + [29079,40303], + [29081,39021], + [29083,42607], + [29085,33649], + [29087,42240], + [29089,48518], + [29091,36323], + [29093,34133], + [29095,50822], + [29097,44699], + [29099,61508], + [29101,50257], + [29103,36770], + [29105,40885], + [29107,52065], + [29109,41934], + [29111,43813], + [29113,56833], + [29115,41176], + [29117,41759], + [29119,37594], + [29121,40603], + [29123,36909], + [29125,43192], + [29127,45187], + [29129,42239], + [29131,41274], + [29133,32388], + [29135,50241], + [29137,41630], + [29139,42701], + [29141,38412], + [29143,33037], + [29145,46170], + [29147,44923], + [29149,30126], + [29151,55781], + [29153,32042], + [29155,33293], + [29157,51922], + [29159,42089], + [29161,40738], + [29163,43617], + [29165,77933], + [29167,44357], + [29169,50870], + [29171,40150], + [29173,51564], + [29175,43386], + [29177,57589], + [29179,33487], + [29181,30796], + [29183,80696], + [29185,35683], + [29186,57701], + [29187,42851], + [29189,62756], + [29195,43095], + [29197,38134], + [29199,39399], + [29201,41738], + [29203,29499], + [29205,40679], + [29207,37694], + [29209,43092], + [29211,40770], + [29213,38268], + [29215,33879], + [29217,39036], + [29219,54756], + [29221,35745], + [29223,30793], + [29225,46989], + [29227,41338], + [29229,32722], + [29510,39954], + [30001,40218], + [30003,39445], + [30005,36852], + [30007,50791], + [30009,53794], + [30011,47280], + [30013,45569], + [30015,40718], + [30017,48935], + [30019,49333], + [30021,55312], + [30023,38394], + [30025,54158], + [30027,45520], + [30029,50249], + [30031,60439], + [30033,43328], + [30035,37207], + [30037,38276], + [30039,43469], + [30041,41705], + [30043,62734], + [30045,44607], + [30047,40888], + [30049,60370], + [30051,38535], + [30053,37793], + [30055,46001], + [30057,51252], + [30059,39284], + [30061,39933], + [30063,47086], + [30065,42103], + [30067,45405], + [30069,43230], + [30071,42550], + [30073,39984], + [30075,47996], + [30077,44863], + [30079,43592], + [30081,44851], + [30083,65277], + [30085,40129], + [30087,53946], + [30089,38486], + [30091,49112], + [30093,45231], + [30095,59905], + [30097,49666], + [30099,46185], + [30101,42689], + [30103,50770], + [30105,47028], + [30107,37360], + [30109,47908], + [30111,57351], + [31001,48010], + [31003,48799], + [31005,44511], + [31007,51049], + [31009,48974], + [31011,52844], + [31013,56537], + [31015,41461], + [31017,44709], + [31019,57036], + [31021,51054], + [31023,55285], + [31025,63707], + [31027,53864], + [31029,51695], + [31031,48933], + [31033,52565], + [31035,51712], + [31037,50901], + [31039,56419], + [31041,47199], + [31043,53332], + [31045,44496], + [31047,51688], + [31049,48546], + [31051,52436], + [31053,51704], + [31055,59226], + [31057,43459], + [31059,53037], + [31061,45456], + [31063,55089], + [31065,44219], + [31067,44166], + [31069,38701], + [31071,44016], + [31073,55373], + [31075,55830], + [31077,45429], + [31079,52315], + [31081,63996], + [31083,45626], + [31085,46401], + [31087,43502], + [31089,54055], + [31091,47526], + [31093,54803], + [31095,47750], + [31097,47592], + [31099,66321], + [31101,46431], + [31103,47282], + [31105,45091], + [31107,46647], + [31109,58873], + [31111,57445], + [31113,50979], + [31115,47918], + [31117,49265], + [31119,49625], + [31121,52112], + [31123,44398], + [31125,47579], + [31127,49242], + [31129,41840], + [31131,55030], + [31133,42389], + [31135,59732], + [31137,57432], + [31139,55586], + [31141,59288], + [31143,53881], + [31145,48783], + [31147,45256], + [31149,48802], + [31151,51222], + [31153,74374], + [31155,66330], + [31157,46641], + [31159,66102], + [31161,41128], + [31163,43657], + [31165,48891], + [31167,57857], + [31169,48668], + [31171,49449], + [31173,43737], + [31175,43405], + [31177,70727], + [31179,52764], + [31181,41616], + [31183,46838], + [31185,53960], + [32001,50292], + [32003,54455], + [32005,61988], + [32007,70242], + [32009,48693], + [32011,67590], + [32013,68999], + [32015,71814], + [32017,49874], + [32019,51344], + [32021,41892], + [32023,48001], + [32027,56984], + [32029,60066], + [32031,58253], + [32033,54832], + [32510,52253], + [33001,57779], + [33003,56836], + [33005,57286], + [33007,45127], + [33009,60335], + [33011,75997], + [33013,69320], + [33015,82016], + [33017,69467], + [33019,58021], + [34001,55672], + [34003,93205], + [34005,80081], + [34007,65838], + [34009,59181], + [34011,48867], + [34013,54879], + [34015,79332], + [34017,63157], + [34019,113336], + [34021,76988], + [34023,82183], + [34025,89968], + [34027,107019], + [34029,62276], + [34031,61517], + [34033,56071], + [34035,104668], + [34037,87549], + [34039,71801], + [34041,74834], + [35001,50599], + [35003,34868], + [35005,40573], + [35006,36651], + [35007,38426], + [35009,43450], + [35011,32820], + [35013,38287], + [35015,57287], + [35017,39750], + [35019,31547], + [35021,37027], + [35023,33605], + [35025,52213], + [35027,41214], + [35028,114670], + [35029,28227], + [35031,31505], + [35033,34602], + [35035,41995], + [35037,28996], + [35039,37174], + [35041,37122], + [35043,58621], + [35045,50847], + [35047,31734], + [35049,57469], + [35051,30467], + [35053,33239], + [35055,34075], + [35057,36347], + [35059,37787], + [35061,43819], + [36001,61634], + [36003,45226], + [36005,37355], + [36007,49927], + [36009,46224], + [36011,53437], + [36013,42664], + [36015,50722], + [36017,45193], + [36019,53392], + [36021,57579], + [36023,51810], + [36025,45381], + [36027,73680], + [36029,54175], + [36031,50506], + [36033,49062], + [36035,45982], + [36037,54211], + [36039,49860], + [36041,52134], + [36043,49633], + [36045,46206], + [36047,54793], + [36049,48314], + [36051,54256], + [36053,57703], + [36055,54684], + [36057,42193], + [36059,105486], + [36061,77214], + [36063,50328], + [36065,52404], + [36067,56853], + [36069,58320], + [36071,71963], + [36073,50750], + [36075,52621], + [36077,50034], + [36079,96267], + [36081,61844], + [36083,63174], + [36085,75524], + [36087,84358], + [36089,50897], + [36091,75904], + [36093,57923], + [36095,50244], + [36097,48109], + [36099,48998], + [36101,50190], + [36103,92310], + [36105,49016], + [36107,55643], + [36109,55778], + [36111,61421], + [36113,55769], + [36115,51052], + [36117,58521], + [36119,89380], + [36121,56089], + [36123,48820], + [37001,46060], + [37003,46385], + [37005,35965], + [37007,35809], + [37009,39709], + [37011,38098], + [37013,41431], + [37015,33809], + [37017,33621], + [37019,51457], + [37021,50538], + [37023,41383], + [37025,63059], + [37027,39166], + [37029,65415], + [37031,51557], + [37033,40570], + [37035,49475], + [37037,63303], + [37039,37237], + [37041,41151], + [37043,37581], + [37045,38654], + [37047,35290], + [37049,49524], + [37051,45286], + [37053,57570], + [37055,56371], + [37057,46263], + [37059,54189], + [37061,38771], + [37063,54255], + [37065,34612], + [37067,48987], + [37069,49484], + [37071,48874], + [37073,45755], + [37075,35763], + [37077,50414], + [37079,39738], + [37081,47754], + [37083,33044], + [37085,51106], + [37087,45290], + [37089,53638], + [37091,35424], + [37093,46004], + [37095,37881], + [37097,56325], + [37099,44004], + [37101,55174], + [37103,38873], + [37105,46723], + [37107,39341], + [37109,50714], + [37111,41443], + [37113,41140], + [37115,40765], + [37117,35561], + [37119,63197], + [37121,42530], + [37123,40371], + [37125,54545], + [37127,47403], + [37129,51373], + [37131,35711], + [37133,47163], + [37135,65299], + [37137,43927], + [37139,43687], + [37141,50437], + [37143,45052], + [37145,47974], + [37147,45918], + [37149,47185], + [37151,45939], + [37153,35367], + [37155,34439], + [37157,41620], + [37159,47971], + [37161,38699], + [37163,41477], + [37165,35138], + [37167,49106], + [37169,48148], + [37171,38843], + [37173,38996], + [37175,44578], + [37177,33666], + [37179,72548], + [37181,34717], + [37183,76173], + [37185,36285], + [37187,35367], + [37189,44014], + [37191,42421], + [37193,41640], + [37195,41352], + [37197,46276], + [37199,39686], + [38001,48596], + [38003,53704], + [38005,40787], + [38007,71697], + [38009,54444], + [38011,59668], + [38013,63787], + [38015,66406], + [38017,59711], + [38019,52880], + [38021,54044], + [38023,60315], + [38025,67375], + [38027,55196], + [38029,44646], + [38031,54218], + [38033,56795], + [38035,51820], + [38037,39822], + [38039,49350], + [38041,50158], + [38043,47914], + [38045,52563], + [38047,50841], + [38049,53719], + [38051,42950], + [38053,77733], + [38055,60684], + [38057,80072], + [38059,65021], + [38061,63736], + [38063,45233], + [38065,65920], + [38067,59244], + [38069,44291], + [38071,51481], + [38073,56550], + [38075,57392], + [38077,59556], + [38079,40595], + [38081,59464], + [38083,38977], + [38085,33550], + [38087,54040], + [38089,78604], + [38091,61808], + [38093,53769], + [38095,50987], + [38097,55068], + [38099,51481], + [38101,61089], + [38103,51677], + [38105,81719], + [39001,38302], + [39003,47924], + [39005,50612], + [39007,43668], + [39009,38131], + [39011,59543], + [39013,45661], + [39015,51504], + [39017,63094], + [39019,48616], + [39021,56203], + [39023,47410], + [39025,61203], + [39027,53234], + [39029,46873], + [39031,45777], + [39033,44336], + [39035,46703], + [39037,52771], + [39039,52210], + [39041,102990], + [39043,51354], + [39045,65198], + [39047,44257], + [39049,56090], + [39051,56504], + [39053,42074], + [39055,77938], + [39057,62751], + [39059,43519], + [39061,53344], + [39063,56406], + [39065,46969], + [39067,44274], + [39069,57752], + [39071,44729], + [39073,47799], + [39075,58783], + [39077,51278], + [39079,45168], + [39081,43558], + [39083,53375], + [39085,61946], + [39087,42132], + [39089,58902], + [39091,53760], + [39093,54951], + [39095,45251], + [39097,60039], + [39099,42839], + [39101,44783], + [39103,73148], + [39105,39070], + [39107,57577], + [39109,59591], + [39111,44062], + [39113,47239], + [39115,40680], + [39117,52953], + [39119,44871], + [39121,48836], + [39123,56569], + [39125,51020], + [39127,47543], + [39129,60051], + [39131,42869], + [39133,52947], + [39135,57896], + [39137,61069], + [39139,44835], + [39141,47507], + [39143,52452], + [39145,39245], + [39147,49546], + [39149,59604], + [39151,51036], + [39153,52226], + [39155,45929], + [39157,50273], + [39159,78796], + [39161,52610], + [39163,41522], + [39165,81543], + [39167,47802], + [39169,53605], + [39171,50770], + [39173,60347], + [39175,55590], + [40001,33632], + [40003,53695], + [40005,36766], + [40007,53493], + [40009,47407], + [40011,44229], + [40013,39219], + [40015,40296], + [40017,68291], + [40019,47966], + [40021,36297], + [40023,32458], + [40025,44000], + [40027,61275], + [40029,41111], + [40031,48493], + [40033,43019], + [40035,42781], + [40037,45630], + [40039,43247], + [40041,39144], + [40043,49398], + [40045,51745], + [40047,49841], + [40049,40978], + [40051,55552], + [40053,48118], + [40055,35231], + [40057,36703], + [40059,48559], + [40061,36418], + [40063,33578], + [40065,44211], + [40067,37105], + [40069,38080], + [40071,44391], + [40073,60814], + [40075,36069], + [40077,35942], + [40079,37005], + [40081,44914], + [40083,54305], + [40085,45200], + [40087,61730], + [40089,32664], + [40091,36903], + [40093,51607], + [40095,41669], + [40097,45922], + [40099,48008], + [40101,40581], + [40103,50316], + [40105,41800], + [40107,35106], + [40109,51082], + [40111,38446], + [40113,46074], + [40115,39210], + [40117,44619], + [40119,42035], + [40121,44520], + [40123,44212], + [40125,42453], + [40127,34222], + [40129,54629], + [40131,62622], + [40133,36671], + [40135,39629], + [40137,44505], + [40139,50993], + [40141,36350], + [40143,51476], + [40145,61882], + [40147,52283], + [40149,45642], + [40151,50441], + [40153,57403], + [41001,42177], + [41003,56167], + [41005,74460], + [41007,49898], + [41009,63055], + [41011,41403], + [41013,45350], + [41015,40682], + [41017,61248], + [41019,43202], + [41021,45728], + [41023,44309], + [41025,41846], + [41027,53941], + [41029,48538], + [41031,44943], + [41033,38921], + [41035,44678], + [41037,40095], + [41039,47933], + [41041,41791], + [41043,50876], + [41045,38130], + [41047,55954], + [41049,53588], + [41051,62292], + [41053,55218], + [41055,57216], + [41057,46226], + [41059,49667], + [41061,47309], + [41063,46350], + [41065,50562], + [41067,75577], + [41069,35341], + [41071,60643], + [42001,59645], + [42003,56099], + [42005,46968], + [42007,54715], + [42009,44834], + [42011,59205], + [42013,44197], + [42015,50567], + [42017,80132], + [42019,66277], + [42021,43614], + [42023,39069], + [42025,51021], + [42027,59070], + [42029,92551], + [42031,44670], + [42033,46173], + [42035,46742], + [42037,48821], + [42039,45388], + [42041,64116], + [42043,59958], + [42045,67773], + [42047,49274], + [42049,48820], + [42051,42056], + [42053,38819], + [42055,59474], + [42057,47450], + [42059,50579], + [42061,46684], + [42063,43171], + [42065,42670], + [42067,49506], + [42069,47398], + [42071,61347], + [42073,46727], + [42075,56971], + [42077,60243], + [42079,46452], + [42081,48962], + [42083,43082], + [42085,49187], + [42087,43245], + [42089,59574], + [42091,84156], + [42093,54861], + [42095,65730], + [42097,46783], + [42099,59244], + [42101,41514], + [42103,60082], + [42105,44267], + [42107,50299], + [42109,52487], + [42111,43938], + [42113,43426], + [42115,47518], + [42117,49004], + [42119,57013], + [42121,41395], + [42123,43896], + [42125,58068], + [42127,49357], + [42129,56544], + [42131,55836], + [42133,62305], + [44001,70697], + [44003,63762], + [44005,72776], + [44007,52011], + [44009,77000], + [45001,40211], + [45003,47394], + [45005,26864], + [45007,45821], + [45009,32245], + [45011,41803], + [45013,65354], + [45015,58690], + [45017,41786], + [45019,56564], + [45021,38273], + [45023,39972], + [45025,39869], + [45027,34541], + [45029,35760], + [45031,37711], + [45033,31761], + [45035,58167], + [45037,46816], + [45039,36715], + [45041,45044], + [45043,47842], + [45045,55452], + [45047,40599], + [45049,35667], + [45051,45608], + [45053,41902], + [45055,48824], + [45057,53421], + [45059,43191], + [45061,32015], + [45063,57623], + [45065,43262], + [45067,31556], + [45069,32991], + [45071,42128], + [45073,46996], + [45075,34557], + [45077,46154], + [45079,51973], + [45081,43685], + [45083,47706], + [45085,41205], + [45087,39119], + [45089,28314], + [45091,61044], + [46003,50482], + [46005,48716], + [46007,33973], + [46009,48889], + [46011,58591], + [46013,53039], + [46015,49724], + [46017,22500], + [46019,44052], + [46021,47592], + [46023,41888], + [46025,45997], + [46027,42171], + [46029,50355], + [46031,31267], + [46033,51223], + [46035,50238], + [46037,43602], + [46039,53517], + [46041,38540], + [46043,48475], + [46045,55477], + [46047,44440], + [46049,47756], + [46051,55118], + [46053,38338], + [46055,47596], + [46057,57575], + [46059,52592], + [46061,61242], + [46063,53080], + [46065,63468], + [46067,51786], + [46069,51053], + [46071,33881], + [46073,47468], + [46075,45485], + [46077,49653], + [46079,57473], + [46081,50488], + [46083,84610], + [46085,42682], + [46087,58975], + [46089,41253], + [46091,54019], + [46093,54976], + [46095,33173], + [46097,46744], + [46099,60244], + [46101,55731], + [46102,"NA"], + [46103,51508], + [46105,46868], + [46107,54227], + [46109,43811], + [46111,51157], + [46115,49463], + [46117,66006], + [46119,54593], + [46121,29108], + [46123,45288], + [46125,58802], + [46127,74857], + [46129,47834], + [46135,54665], + [46137,30798], + [47001,46731], + [47003,47295], + [47005,35723], + [47007,37530], + [47009,51233], + [47011,45326], + [47013,34997], + [47015,45097], + [47017,40392], + [47019,33382], + [47021,58555], + [47023,44567], + [47025,33437], + [47027,30976], + [47029,31965], + [47031,47884], + [47033,41447], + [47035,43504], + [47037,54666], + [47039,38246], + [47041,40869], + [47043,52144], + [47045,40163], + [47047,56724], + [47049,32352], + [47051,47562], + [47053,38605], + [47055,43238], + [47057,39752], + [47059,40855], + [47061,32453], + [47063,42047], + [47065,48690], + [47067,28228], + [47069,36653], + [47071,37039], + [47073,38958], + [47075,35672], + [47077,42821], + [47079,38721], + [47081,41406], + [47083,40777], + [47085,44000], + [47087,34117], + [47089,45490], + [47091,33639], + [47093,52174], + [47095,30078], + [47097,38479], + [47099,41370], + [47101,38074], + [47103,43464], + [47105,56774], + [47107,40897], + [47109,37574], + [47111,34203], + [47113,43037], + [47115,42348], + [47117,50014], + [47119,51202], + [47121,40238], + [47123,38265], + [47125,55351], + [47127,54922], + [47129,38069], + [47131,37437], + [47133,35273], + [47135,35140], + [47137,36595], + [47139,41984], + [47141,40479], + [47143,42137], + [47145,47088], + [47147,58487], + [47149,61232], + [47151,34196], + [47153,43367], + [47155,45251], + [47157,47639], + [47159,46977], + [47161,44605], + [47163,43211], + [47165,61134], + [47167,54748], + [47169,44971], + [47171,39755], + [47173,37955], + [47175,38123], + [47177,37682], + [47179,46316], + [47181,37672], + [47183,38214], + [47185,39818], + [47187,107942], + [47189,70955], + [48001,43967], + [48003,60644], + [48005,43658], + [48007,44866], + [48009,58928], + [48011,54868], + [48013,53622], + [48015,55973], + [48017,40536], + [48019,55885], + [48021,56449], + [48023,36616], + [48025,40753], + [48027,51993], + [48029,53170], + [48031,57634], + [48033,60306], + [48035,47636], + [48037,45455], + [48039,74510], + [48041,42279], + [48043,43055], + [48045,43376], + [48047,27703], + [48049,43770], + [48051,48533], + [48053,55919], + [48055,49598], + [48057,52916], + [48059,45727], + [48061,36587], + [48063,41937], + [48065,62573], + [48067,40597], + [48069,45229], + [48071,80279], + [48073,39407], + [48075,39140], + [48077,49171], + [48079,39900], + [48081,41529], + [48083,42258], + [48085,90382], + [48087,37389], + [48089,48161], + [48091,76296], + [48093,40052], + [48095,39622], + [48097,59243], + [48099,50122], + [48101,34605], + [48103,57408], + [48105,46556], + [48107,35136], + [48109,36663], + [48111,48470], + [48113,54429], + [48115,41073], + [48117,43944], + [48119,41266], + [48121,80841], + [48123,46915], + [48125,38239], + [48127,38275], + [48129,38777], + [48131,34777], + [48133,37789], + [48135,53474], + [48137,36539], + [48139,69448], + [48141,42048], + [48143,43787], + [48145,38559], + [48147,46347], + [48149,53776], + [48151,46247], + [48153,40536], + [48155,36056], + [48157,90972], + [48159,44202], + [48161,45681], + [48163,39193], + [48165,51910], + [48167,64155], + [48169,44210], + [48171,58787], + [48173,71360], + [48175,55264], + [48177,45491], + [48179,47828], + [48181,51808], + [48183,45594], + [48185,50891], + [48187,67683], + [48189,40152], + [48191,30971], + [48193,45718], + [48195,57832], + [48197,35521], + [48199,60692], + [48201,56415], + [48203,47181], + [48205,70121], + [48207,34653], + [48209,64864], + [48211,74856], + [48213,43425], + [48215,35928], + [48217,47338], + [48219,46856], + [48221,57346], + [48223,46582], + [48225,34587], + [48227,51863], + [48229,35252], + [48231,51827], + [48233,53936], + [48235,67249], + [48237,46975], + [48239,53143], + [48241,44909], + [48243,46688], + [48245,46198], + [48247,33784], + [48249,40056], + [48251,59809], + [48253,40931], + [48255,47608], + [48257,62363], + [48259,83805], + [48261,38718], + [48263,45123], + [48265,50461], + [48267,40118], + [48269,59142], + [48271,40612], + [48273,44106], + [48275,37586], + [48277,41887], + [48279,37846], + [48281,52637], + [48283,39926], + [48285,48975], + [48287,51768], + [48289,44891], + [48291,48592], + [48293,39382], + [48295,54180], + [48297,51953], + [48299,48135], + [48301,64179], + [48303,48587], + [48305,39869], + [48307,40125], + [48309,46662], + [48311,67249], + [48313,42429], + [48315,34919], + [48317,58760], + [48319,44818], + [48321,46324], + [48323,35654], + [48325,51304], + [48327,34839], + [48329,68729], + [48331,42302], + [48333,43540], + [48335,41262], + [48337,46237], + [48339,72506], + [48341,52344], + [48343,38255], + [48345,37464], + [48347,38099], + [48349,44111], + [48351,41388], + [48353,40969], + [48355,53562], + [48357,61194], + [48359,54212], + [48361,53611], + [48363,43589], + [48365,47780], + [48367,67735], + [48369,48344], + [48371,45414], + [48373,43014], + [48375,41563], + [48377,32742], + [48379,47354], + [48381,65795], + [48383,67308], + [48385,36744], + [48387,36352], + [48389,40092], + [48391,45366], + [48393,75816], + [48395,42680], + [48397,97484], + [48399,40112], + [48401,46421], + [48403,38451], + [48405,36426], + [48407,45794], + [48409,51667], + [48411,39995], + [48413,47258], + [48415,50316], + [48417,55403], + [48419,37410], + [48421,55761], + [48423,52520], + [48425,56944], + [48427,26691], + [48429,42831], + [48431,60577], + [48433,44225], + [48435,54760], + [48437,38790], + [48439,61553], + [48441,48215], + [48443,41114], + [48445,38910], + [48447,42876], + [48449,45324], + [48451,48221], + [48453,70068], + [48455,38973], + [48457,43617], + [48459,49015], + [48461,56335], + [48463,36913], + [48465,42104], + [48467,49751], + [48469,53659], + [48471,42709], + [48473,56407], + [48475,63809], + [48477,53157], + [48479,36718], + [48481,46097], + [48483,47476], + [48485,45071], + [48487,40955], + [48489,31225], + [48491,82370], + [48493,66045], + [48495,53312], + [48497,57609], + [48499,47260], + [48501,57114], + [48503,52133], + [48505,34136], + [48507,25507], + [49001,49843], + [49003,57875], + [49005,57422], + [49007,49743], + [49009,54784], + [49011,77095], + [49013,56408], + [49015,54569], + [49017,47901], + [49019,55916], + [49021,45581], + [49023,57820], + [49025,48697], + [49027,55656], + [49029,85681], + [49031,39659], + [49033,60008], + [49035,68404], + [49037,42747], + [49039,47768], + [49041,50909], + [49043,94540], + [49045,64675], + [49047,64184], + [49049,69568], + [49051,73077], + [49053,54876], + [49055,43080], + [49057,62768], + [50001,59731], + [50003,51989], + [50005,48747], + [50007,67833], + [50009,40813], + [50011,59418], + [50013,65601], + [50015,56207], + [50017,54272], + [50019,43107], + [50021,50569], + [50023,55803], + [50025,47074], + [50027,58123], + [51001,39040], + [51003,73132], + [51005,47037], + [51007,56172], + [51009,46497], + [51011,51431], + [51013,108635], + [51015,56784], + [51017,47059], + [51019,55708], + [51021,44827], + [51023,68390], + [51025,39433], + [51027,31763], + [51029,42455], + [51031,49935], + [51033,55423], + [51035,40390], + [51036,56907], + [51037,38557], + [51041,76260], + [51043,76753], + [51045,48221], + [51047,67023], + [51049,42692], + [51051,32795], + [51053,54805], + [51057,50033], + [51059,115518], + [51061,91372], + [51063,42670], + [51065,70005], + [51067,52424], + [51069,69346], + [51071,51780], + [51073,64296], + [51075,88815], + [51077,36113], + [51079,66170], + [51081,41539], + [51083,39859], + [51085,83405], + [51087,66524], + [51089,36703], + [51091,42837], + [51093,70982], + [51095,84035], + [51097,52115], + [51099,80664], + [51101,68053], + [51103,44941], + [51105,32466], + [51107,134609], + [51109,52671], + [51111,38313], + [51113,56774], + [51115,59439], + [51117,45827], + [51119,49840], + [51121,51428], + [51125,54188], + [51127,84486], + [51131,39348], + [51133,52957], + [51135,40514], + [51137,64656], + [51139,45834], + [51141,38539], + [51143,46192], + [51145,78047], + [51147,41072], + [51149,66775], + [51153,97549], + [51155,49554], + [51157,65278], + [51159,45403], + [51161,62306], + [51163,50570], + [51165,57655], + [51167,39003], + [51169,38612], + [51171,53810], + [51173,40140], + [51175,49595], + [51177,81065], + [51179,97607], + [51181,51810], + [51183,41790], + [51185,38992], + [51187,65434], + [51191,44785], + [51193,48983], + [51195,33810], + [51197,47676], + [51199,87910], + [51510,87822], + [51520,33659], + [51530,38991], + [51540,47977], + [51550,71998], + [51570,52673], + [51580,37904], + [51590,35220], + [51595,33499], + [51600,94701], + [51610,118035], + [51620,40247], + [51630,53714], + [51640,35221], + [51650,50294], + [51660,41636], + [51670,40126], + [51678,45331], + [51680,41586], + [51683,72396], + [51685,75994], + [51690,34262], + [51700,50149], + [51710,45809], + [51720,30587], + [51730,34238], + [51735,90119], + [51740,46617], + [51750,35655], + [51760,42336], + [51770,38238], + [51775,57897], + [51790,46237], + [51800,65025], + [51810,70596], + [51820,41255], + [51830,49231], + [51840,46093], + [53001,48698], + [53003,46121], + [53005,63474], + [53007,51930], + [53009,49502], + [53011,68937], + [53013,47894], + [53015,51772], + [53017,52363], + [53019,40581], + [53021,56940], + [53023,51922], + [53025,48997], + [53027,48210], + [53029,64475], + [53031,53345], + [53033,85907], + [53035,68706], + [53037,50410], + [53039,50691], + [53041,47127], + [53043,53886], + [53045,52758], + [53047,41726], + [53049,43168], + [53051,48706], + [53053,64312], + [53055,59658], + [53057,60442], + [53059,55802], + [53061,78582], + [53063,52933], + [53065,51303], + [53067,65684], + [53069,54162], + [53071,53598], + [53073,56636], + [53075,42693], + [53077,48232], + [54001,36485], + [54003,56966], + [54005,36313], + [54007,36612], + [54009,46020], + [54011,39462], + [54013,33818], + [54015,33706], + [54017,40524], + [54019,38829], + [54021,35325], + [54023,38477], + [54025,38784], + [54027,45172], + [54029,44889], + [54031,40243], + [54033,46548], + [54035,43544], + [54037,71315], + [54039,44956], + [54041,36826], + [54043,32477], + [54045,35667], + [54047,24460], + [54049,45712], + [54051,42357], + [54053,42187], + [54055,36871], + [54057,45437], + [54059,30638], + [54061,49725], + [54063,38395], + [54065,59573], + [54067,37359], + [54069,43240], + [54071,39951], + [54073,47276], + [54075,35906], + [54077,44438], + [54079,56789], + [54081,42282], + [54083,38549], + [54085,42154], + [54087,35135], + [54089,31458], + [54091,44598], + [54093,42128], + [54095,42429], + [54097,40509], + [54099,40881], + [54101,30578], + [54103,42679], + [54105,37542], + [54107,46737], + [54109,36018], + [55001,42390], + [55003,41949], + [55005,49581], + [55007,50666], + [55009,58449], + [55011,52885], + [55013,48087], + [55015,72752], + [55017,54659], + [55019,48675], + [55021,62036], + [55023,46698], + [55025,70815], + [55027,56949], + [55029,56298], + [55031,50340], + [55033,52181], + [55035,52209], + [55037,47704], + [55039,58920], + [55041,42072], + [55043,47512], + [55045,60846], + [55047,50386], + [55049,58372], + [55051,41597], + [55053,51024], + [55055,60744], + [55057,47938], + [55059,59622], + [55061,61074], + [55063,55151], + [55065,56074], + [55067,44522], + [55069,54471], + [55071,53633], + [55073,56223], + [55075,44265], + [55077,50032], + [55078,36562], + [55079,47666], + [55081,56400], + [55083,58025], + [55085,50938], + [55087,61764], + [55089,85706], + [55091,53262], + [55093,70086], + [55095,53661], + [55097,55064], + [55099,46414], + [55101,56246], + [55103,50306], + [55105,51573], + [55107,43075], + [55109,75619], + [55111,57647], + [55113,44180], + [55115,50203], + [55117,55594], + [55119,50963], + [55121,53142], + [55123,51002], + [55125,45902], + [55127,58904], + [55129,46989], + [55131,74631], + [55133,82080], + [55135,52125], + [55137,47596], + [55139,57003], + [55141,52591], + [56001,47355], + [56003,49725], + [56005,79148], + [56007,59103], + [56009,71517], + [56011,60953], + [56013,49282], + [56015,47715], + [56017,46024], + [56019,56323], + [56021,61124], + [56023,63907], + [56025,60559], + [56027,45332], + [56029,60621], + [56031,54588], + [56033,53027], + [56035,72198], + [56037,74546], + [56039,84118], + [56041,64713], + [56043,49533], + [56045,56582] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-household-median-2017.json b/data/regional/united-states/economics/income/us-income-household-median-2017.json new file mode 100644 index 0000000..442e484 --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-household-median-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Household Income", + "description" : "Median Household Income from the previous 12 months in 2017 US dollars.", + "units" : "$", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income","household"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.household.median.2017"], + [1001,55317], + [1003,52562], + [1005,33368], + [1007,43404], + [1009,47412], + [1011,29655], + [1013,36326], + [1015,43686], + [1017,37342], + [1019,40041], + [1021,43501], + [1023,32122], + [1025,33827], + [1027,37287], + [1029,37396], + [1031,49821], + [1033,45477], + [1035,30434], + [1037,34792], + [1039,39467], + [1041,38937], + [1043,40997], + [1045,44711], + [1047,30065], + [1049,38842], + [1051,54981], + [1053,35026], + [1055,42064], + [1057,36541], + [1059,39501], + [1061,39293], + [1063,20954], + [1065,34679], + [1067,45569], + [1069,42803], + [1071,39281], + [1073,49321], + [1075,36016], + [1077,44888], + [1079,43779], + [1081,47564], + [1083,52831], + [1085,29785], + [1087,32308], + [1089,61318], + [1091,32255], + [1093,35719], + [1095,41104], + [1097,45802], + [1099,26036], + [1101,46545], + [1103,47529], + [1105,22973], + [1107,36220], + [1109,35684], + [1111,39485], + [1113,38988], + [1115,53483], + [1117,74063], + [1119,21663], + [1121,39219], + [1123,42181], + [1125,50513], + [1127,38872], + [1129,42185], + [1131,27012], + [1133,35362], + [2013,66607], + [2016,85192], + [2020,82271], + [2050,53853], + [2060,79500], + [2068,83295], + [2070,58708], + [2090,76250], + [2100,70640], + [2105,57900], + [2110,90749], + [2122,65279], + [2130,67321], + [2150,74167], + [2158,"NA"], + [2164,45208], + [2170,74887], + [2180,53821], + [2185,77266], + [2188,61533], + [2195,63490], + [2198,52114], + [2220,70765], + [2230,70673], + [2240,63866], + [2261,86019], + [2275,56094], + [2282,64583], + [2290,37819], + [4001,32360], + [4003,47847], + [4005,53523], + [4007,41179], + [4009,48173], + [4011,56298], + [4012,36479], + [4013,58580], + [4015,41567], + [4017,38798], + [4019,48676], + [4021,52628], + [4023,39630], + [4025,48259], + [4027,43253], + [5001,38532], + [5003,36407], + [5005,40072], + [5007,61271], + [5009,40727], + [5011,36310], + [5013,37225], + [5015,39686], + [5017,32412], + [5019,37144], + [5021,32219], + [5023,42312], + [5025,44840], + [5027,37072], + [5029,39638], + [5031,45672], + [5033,43504], + [5035,38558], + [5037,41081], + [5039,35794], + [5041,27036], + [5043,36092], + [5045,50316], + [5047,39472], + [5049,36051], + [5051,41672], + [5053,49968], + [5055,45566], + [5057,38701], + [5059,40626], + [5061,34851], + [5063,39945], + [5065,39135], + [5067,32783], + [5069,37630], + [5071,35758], + [5073,32500], + [5075,37603], + [5077,27901], + [5079,38873], + [5081,36963], + [5083,37982], + [5085,57290], + [5087,42894], + [5089,36113], + [5091,41862], + [5093,36417], + [5095,31584], + [5097,35252], + [5099,36995], + [5101,38134], + [5103,32136], + [5105,46168], + [5107,26652], + [5109,36893], + [5111,37487], + [5113,33870], + [5115,40668], + [5117,41244], + [5119,48850], + [5121,35930], + [5123,33102], + [5125,58985], + [5127,37396], + [5129,36716], + [5131,40932], + [5133,43675], + [5135,31792], + [5137,33091], + [5139,41106], + [5141,34428], + [5143,47452], + [5145,44074], + [5147,30097], + [5149,39696], + [6001,85743], + [6003,63438], + [6005,60636], + [6007,46516], + [6009,54800], + [6011,56481], + [6013,88456], + [6015,41287], + [6017,74885], + [6019,48730], + [6021,46260], + [6023,43718], + [6025,44779], + [6027,51500], + [6029,50826], + [6031,49742], + [6033,40446], + [6035,54083], + [6037,61015], + [6039,48210], + [6041,104703], + [6043,51385], + [6045,46528], + [6047,46338], + [6049,39296], + [6051,60595], + [6053,63249], + [6055,79637], + [6057,60610], + [6059,81851], + [6061,80488], + [6063,50266], + [6065,60807], + [6067,60239], + [6069,80760], + [6071,57156], + [6073,70588], + [6075,96265], + [6077,57813], + [6079,67175], + [6081,105667], + [6083,68023], + [6085,106761], + [6087,73663], + [6089,47258], + [6091,44190], + [6093,40884], + [6095,72950], + [6097,71769], + [6099,54260], + [6101,54347], + [6103,42512], + [6105,36563], + [6107,44871], + [6109,54325], + [6111,81972], + [6113,61621], + [6115,51776], + [8001,64087], + [8003,36315], + [8005,69553], + [8007,48016], + [8009,35898], + [8011,32500], + [8013,75669], + [8014,85639], + [8015,53762], + [8017,54907], + [8019,68534], + [8021,35657], + [8023,29000], + [8025,35292], + [8027,41330], + [8029,42487], + [8031,60098], + [8033,40352], + [8035,111154], + [8037,83803], + [8039,92849], + [8041,62535], + [8043,44712], + [8045,66503], + [8047,72544], + [8049,66489], + [8051,52651], + [8053,53056], + [8055,35801], + [8057,45994], + [8059,75170], + [8061,39250], + [8063,45881], + [8065,46176], + [8067,62533], + [8069,64980], + [8071,40586], + [8073,44725], + [8075,44876], + [8077,51971], + [8079,50385], + [8081,53010], + [8083,45645], + [8085,44865], + [8087,51456], + [8089,35051], + [8091,61333], + [8093,61644], + [8095,50076], + [8097,67755], + [8099,41740], + [8101,42386], + [8103,57991], + [8105,38534], + [8107,67472], + [8109,34765], + [8111,46397], + [8113,62243], + [8115,49583], + [8117,73538], + [8119,66809], + [8121,51458], + [8123,66489], + [8125,44668], + [9001,89773], + [9003,69936], + [9005,76438], + [9007,81673], + [9009,64872], + [9011,69411], + [9013,81312], + [9015,62553], + [10001,57647], + [10003,68336], + [10005,57901], + [11001,77649], + [12001,45478], + [12003,59506], + [12005,50283], + [12007,46106], + [12009,51536], + [12011,54895], + [12013,36237], + [12015,46511], + [12017,40574], + [12019,61971], + [12021,62407], + [12023,43504], + [12027,35435], + [12029,35910], + [12031,51296], + [12033,47361], + [12035,51049], + [12037,41267], + [12039,39830], + [12041,42934], + [12043,37385], + [12045,44647], + [12047,36209], + [12049,39063], + [12051,37966], + [12053,44324], + [12055,36374], + [12057,53742], + [12059,37474], + [12061,49009], + [12063,36944], + [12065,47599], + [12067,41512], + [12069,49734], + [12071,52052], + [12073,49941], + [12075,36554], + [12077,36741], + [12079,31816], + [12081,53408], + [12083,41964], + [12085,55588], + [12086,46338], + [12087,63030], + [12089,64294], + [12091,59955], + [12093,39059], + [12095,51586], + [12097,47343], + [12099,57256], + [12101,48289], + [12103,48968], + [12105,45988], + [12107,33619], + [12109,73640], + [12111,47132], + [12113,62731], + [12115,55236], + [12117,60739], + [12119,54771], + [12121,40600], + [12123,37188], + [12125,37460], + [12127,43838], + [12129,57866], + [12131,50619], + [12133,36989], + [13001,37089], + [13003,33063], + [13005,38824], + [13007,43867], + [13009,37008], + [13011,42182], + [13013,56119], + [13015,52393], + [13017,32344], + [13019,38297], + [13021,38183], + [13023,40688], + [13025,36812], + [13027,34890], + [13029,68589], + [13031,39305], + [13033,38707], + [13035,39655], + [13037,29617], + [13039,53687], + [13043,33125], + [13045,46844], + [13047,54537], + [13049,43257], + [13051,52215], + [13053,46096], + [13055,35718], + [13057,75477], + [13059,34557], + [13061,23315], + [13063,44106], + [13065,21838], + [13067,72004], + [13069,36572], + [13071,34503], + [13073,74162], + [13075,35539], + [13077,67570], + [13079,41032], + [13081,33194], + [13083,43163], + [13085,62284], + [13087,36934], + [13089,55876], + [13091,35290], + [13093,33389], + [13095,34541], + [13097,59333], + [13099,29493], + [13101,34315], + [13103,64279], + [13105,35207], + [13107,33089], + [13109,38736], + [13111,43344], + [13113,84861], + [13115,46096], + [13117,96445], + [13119,39246], + [13121,61336], + [13123,46211], + [13125,45273], + [13127,47546], + [13129,43452], + [13131,39462], + [13133,45069], + [13135,64496], + [13137,44474], + [13139,55622], + [13141,29268], + [13143,43663], + [13145,69539], + [13147,41216], + [13149,44897], + [13151,64752], + [13153,55965], + [13155,34677], + [13157,57999], + [13159,42067], + [13161,37267], + [13163,29640], + [13165,27197], + [13167,36423], + [13169,55110], + [13171,41157], + [13173,31109], + [13175,35202], + [13177,65018], + [13179,43493], + [13181,37711], + [13183,53083], + [13185,39911], + [13187,43039], + [13189,40469], + [13191,43285], + [13193,30851], + [13195,47653], + [13197,39015], + [13199,36368], + [13201,37255], + [13205,34122], + [13207,50666], + [13209,40308], + [13211,59572], + [13213,41617], + [13215,43239], + [13217,52784], + [13219,77388], + [13221,43938], + [13223,63669], + [13225,43645], + [13227,61542], + [13229,39863], + [13231,52377], + [13233,40652], + [13235,38750], + [13237,48340], + [13239,26750], + [13241,39297], + [13243,30640], + [13245,39430], + [13247,54175], + [13249,41267], + [13251,36556], + [13253,33999], + [13255,42398], + [13257,39756], + [13259,22413], + [13261,34219], + [13263,37226], + [13265,30500], + [13267,36355], + [13269,29875], + [13271,28044], + [13273,32219], + [13275,41336], + [13277,38728], + [13279,35750], + [13281,41182], + [13283,39375], + [13285,43597], + [13287,42622], + [13289,30629], + [13291,42767], + [13293,35375], + [13295,43581], + [13297,55876], + [13299,36962], + [13301,32860], + [13303,38097], + [13305,41534], + [13307,36658], + [13309,28490], + [13311,43944], + [13313,43871], + [13315,35457], + [13317,34234], + [13319,38711], + [13321,40369], + [15001,56395], + [15003,80078], + [15005,61750], + [15007,72330], + [15009,72762], + [16001,60151], + [16003,42727], + [16005,47390], + [16007,50603], + [16009,43472], + [16011,51307], + [16013,58835], + [16015,49964], + [16017,45607], + [16019,54150], + [16021,39512], + [16023,43207], + [16025,36667], + [16027,46426], + [16029,58750], + [16031,48162], + [16033,31927], + [16035,41122], + [16037,37976], + [16039,45154], + [16041,51583], + [16043,51806], + [16045,42888], + [16047,42626], + [16049,40299], + [16051,58055], + [16053,46421], + [16055,53189], + [16057,43310], + [16059,36031], + [16061,40313], + [16063,46383], + [16065,33620], + [16067,48021], + [16069,51804], + [16071,43491], + [16073,36092], + [16075,48447], + [16077,47602], + [16079,39835], + [16081,55986], + [16083,49118], + [16085,54015], + [16087,37521], + [17001,48454], + [17003,31014], + [17005,54393], + [17007,62701], + [17009,56289], + [17011,54271], + [17013,53641], + [17015,50555], + [17017,50156], + [17019,49586], + [17021,50668], + [17023,52068], + [17025,47427], + [17027,64543], + [17029,41907], + [17031,59426], + [17033,47468], + [17035,50680], + [17037,58343], + [17039,55411], + [17041,52261], + [17043,84442], + [17045,47873], + [17047,49632], + [17049,54655], + [17051,44541], + [17053,50851], + [17055,39454], + [17057,48599], + [17059,42450], + [17061,44502], + [17063,71598], + [17065,47293], + [17067,51460], + [17069,39524], + [17071,47428], + [17073,55755], + [17075,48857], + [17077,36008], + [17079,56523], + [17081,46109], + [17083,56320], + [17085,55532], + [17087,45743], + [17089,74862], + [17091,56542], + [17093,89860], + [17095,41972], + [17097,82613], + [17099,54693], + [17101,44504], + [17103,58319], + [17105,54339], + [17107,58271], + [17109,42911], + [17111,82230], + [17113,64573], + [17115,49052], + [17117,53890], + [17119,56536], + [17121,44679], + [17123,55173], + [17125,44695], + [17127,42168], + [17129,62368], + [17131,55649], + [17133,74410], + [17135,47807], + [17137,49353], + [17139,53979], + [17141,57655], + [17143,53063], + [17145,45864], + [17147,67360], + [17149,41387], + [17151,41139], + [17153,34655], + [17155,64741], + [17157,49717], + [17159,46454], + [17161,51426], + [17163,51103], + [17165,40722], + [17167,58687], + [17169,47321], + [17171,48542], + [17173,49807], + [17175,52284], + [17177,46427], + [17179,60874], + [17181,46716], + [17183,44930], + [17185,49716], + [17187,47278], + [17189,54520], + [17191,46405], + [17193,46279], + [17195,51969], + [17197,80782], + [17199,48600], + [17201,51110], + [17203,69507], + [18001,48290], + [18003,51091], + [18005,57331], + [18007,49183], + [18009,40622], + [18011,75591], + [18013,59292], + [18015,56188], + [18017,45558], + [18019,52834], + [18021,50924], + [18023,51659], + [18025,40067], + [18027,48355], + [18029,62905], + [18031,52270], + [18033,51374], + [18035,41208], + [18037,57307], + [18039,52449], + [18041,41476], + [18043,59451], + [18045,46669], + [18047,55588], + [18049,47108], + [18051,51149], + [18053,42046], + [18055,49648], + [18057,90582], + [18059,70973], + [18061,53897], + [18063,74245], + [18065,46131], + [18067,47958], + [18069,50063], + [18071,49080], + [18073,56574], + [18075,42878], + [18077,50722], + [18079,48362], + [18081,65272], + [18083,44837], + [18085,57190], + [18087,58336], + [18089,52559], + [18091,49921], + [18093,49985], + [18095,45432], + [18097,44869], + [18099,51869], + [18101,49372], + [18103,46666], + [18105,45689], + [18107,53075], + [18109,60317], + [18111,52193], + [18113,52393], + [18115,58359], + [18117,42803], + [18119,48315], + [18121,44643], + [18123,49689], + [18125,50196], + [18127,65979], + [18129,60992], + [18131,47633], + [18133,55295], + [18135,44985], + [18137,53698], + [18139,47955], + [18141,48121], + [18143,49243], + [18145,57216], + [18147,55280], + [18149,45526], + [18151,52749], + [18153,45031], + [18155,43468], + [18157,50486], + [18159,53931], + [18161,45531], + [18163,44815], + [18165,45440], + [18167,42030], + [18169,49052], + [18171,58950], + [18173,66080], + [18175,46861], + [18177,41813], + [18179,53038], + [18181,51404], + [18183,57041], + [19001,49477], + [19003,49745], + [19005,47895], + [19007,40377], + [19009,48750], + [19011,64061], + [19013,50916], + [19015,57906], + [19017,65440], + [19019,59348], + [19021,52784], + [19023,53937], + [19025,46302], + [19027,54563], + [19029,45637], + [19031,62555], + [19033,50569], + [19035,53998], + [19037,50688], + [19039,49718], + [19041,48978], + [19043,51114], + [19045,50295], + [19047,51091], + [19049,82719], + [19051,52390], + [19053,41042], + [19055,60534], + [19057,47524], + [19059,59889], + [19061,59150], + [19063,47419], + [19065,48412], + [19067,48607], + [19069,48172], + [19071,54430], + [19073,52529], + [19075,65170], + [19077,56306], + [19079,55836], + [19081,57840], + [19083,52207], + [19085,57558], + [19087,52275], + [19089,51422], + [19091,48847], + [19093,51978], + [19095,58077], + [19097,51806], + [19099,56363], + [19101,44516], + [19103,59965], + [19105,58391], + [19107,48399], + [19109,54868], + [19111,48266], + [19113,62702], + [19115,54393], + [19117,47325], + [19119,62012], + [19121,60077], + [19123,50568], + [19125,57917], + [19127,52752], + [19129,67949], + [19131,53675], + [19133,41598], + [19135,50179], + [19137,43674], + [19139,56398], + [19141,56314], + [19143,53604], + [19145,46708], + [19147,50470], + [19149,61316], + [19151,45969], + [19153,63530], + [19155,56291], + [19157,51456], + [19159,50642], + [19161,53254], + [19163,57681], + [19165,55638], + [19167,66022], + [19169,52671], + [19171,56110], + [19173,46825], + [19175,47597], + [19177,47197], + [19179,43329], + [19181,71514], + [19183,59157], + [19185,42434], + [19187,42148], + [19189,50072], + [19191,60788], + [19193,51350], + [19195,50880], + [19197,48935], + [20001,43031], + [20003,40986], + [20005,46640], + [20007,52075], + [20009,46070], + [20011,39379], + [20013,46964], + [20015,62324], + [20017,42772], + [20019,39531], + [20021,41101], + [20023,47167], + [20025,46094], + [20027,55434], + [20029,44199], + [20031,58662], + [20033,51563], + [20035,46624], + [20037,38017], + [20039,41230], + [20041,49663], + [20043,50300], + [20045,54370], + [20047,50229], + [20049,39405], + [20051,49562], + [20053,48550], + [20055,51703], + [20057,49890], + [20059,53167], + [20061,46096], + [20063,50817], + [20065,43427], + [20067,57474], + [20069,61220], + [20071,47045], + [20073,41648], + [20075,48160], + [20077,48059], + [20079,55687], + [20081,53780], + [20083,55345], + [20085,53592], + [20087,58935], + [20089,43125], + [20091,81121], + [20093,51439], + [20095,57593], + [20097,48226], + [20099,45706], + [20101,51765], + [20103,70022], + [20105,48693], + [20107,46576], + [20109,49926], + [20111,42992], + [20113,56946], + [20115,50212], + [20117,50420], + [20119,54167], + [20121,63501], + [20123,44591], + [20125,43977], + [20127,50338], + [20129,43813], + [20131,53368], + [20133,44402], + [20135,48412], + [20137,50673], + [20139,54186], + [20141,42173], + [20143,51797], + [20145,46224], + [20147,46806], + [20149,64410], + [20151,53415], + [20153,50893], + [20155,47897], + [20157,43489], + [20159,48333], + [20161,48428], + [20163,48352], + [20165,43594], + [20167,48427], + [20169,49728], + [20171,62198], + [20173,52841], + [20175,47535], + [20177,54667], + [20179,56607], + [20181,52030], + [20183,45357], + [20185,47121], + [20187,42222], + [20189,57500], + [20191,52695], + [20193,52465], + [20195,55197], + [20197,58947], + [20199,60000], + [20201,47992], + [20203,55109], + [20205,44468], + [20207,36493], + [20209,42783], + [21001,36575], + [21003,40598], + [21005,51681], + [21007,42988], + [21009,39658], + [21011,38763], + [21013,23558], + [21015,72731], + [21017,47886], + [21019,45543], + [21021,43076], + [21023,40458], + [21025,25861], + [21027,44057], + [21029,59917], + [21031,39362], + [21033,46182], + [21035,39269], + [21037,57208], + [21039,38860], + [21041,43345], + [21043,35095], + [21045,33031], + [21047,41849], + [21049,51547], + [21051,24596], + [21053,31130], + [21055,41114], + [21057,35449], + [21059,48371], + [21061,41114], + [21063,29043], + [21065,30692], + [21067,53013], + [21069,41095], + [21071,31196], + [21073,53539], + [21075,28274], + [21077,50250], + [21079,47906], + [21081,43881], + [21083,40369], + [21085,35944], + [21087,37388], + [21089,47517], + [21091,49135], + [21093,51923], + [21095,24451], + [21097,44620], + [21099,37315], + [21101,43458], + [21103,50787], + [21105,38036], + [21107,44048], + [21109,32055], + [21111,52237], + [21113,55450], + [21115,35629], + [21117,58674], + [21119,30503], + [21121,26061], + [21123,41720], + [21125,37235], + [21127,32703], + [21129,23297], + [21131,27861], + [21133,30293], + [21135,32054], + [21137,37930], + [21139,43472], + [21141,40982], + [21143,50268], + [21145,42894], + [21147,19264], + [21149,44242], + [21151,46674], + [21153,29578], + [21155,40005], + [21157,49126], + [21159,29239], + [21161,43082], + [21163,53732], + [21165,39688], + [21167,47574], + [21169,35594], + [21171,35665], + [21173,42172], + [21175,33523], + [21177,40037], + [21179,55182], + [21181,38900], + [21183,41470], + [21185,92237], + [21187,44031], + [21189,22736], + [21191,49706], + [21193,31820], + [21195,32972], + [21197,34647], + [21199,35022], + [21201,30694], + [21203,35888], + [21205,36411], + [21207,34660], + [21209,65598], + [21211,63171], + [21213,44989], + [21215,68916], + [21217,36455], + [21219,38248], + [21221,47259], + [21223,50998], + [21225,42139], + [21227,49508], + [21229,47843], + [21231,33715], + [21233,39273], + [21235,34103], + [21237,21999], + [21239,60604], + [22001,40492], + [22003,42176], + [22005,74748], + [22007,48656], + [22009,36763], + [22011,47350], + [22013,34077], + [22015,52145], + [22017,40391], + [22019,48219], + [22021,31933], + [22023,60194], + [22025,34470], + [22027,26877], + [22029,30028], + [22031,41443], + [22033,51436], + [22035,20795], + [22037,46964], + [22039,31745], + [22041,34722], + [22043,40577], + [22045,44504], + [22047,47128], + [22049,36394], + [22051,50868], + [22053,40744], + [22055,53950], + [22057,52705], + [22059,34712], + [22061,34424], + [22063,60456], + [22065,29424], + [22067,31672], + [22069,29001], + [22071,38721], + [22073,40081], + [22075,49635], + [22077,43964], + [22079,42655], + [22081,41510], + [22083,34745], + [22085,40695], + [22087,45265], + [22089,64707], + [22091,35254], + [22093,52055], + [22095,53628], + [22097,32163], + [22099,47279], + [22101,41345], + [22103,66539], + [22105,45901], + [22107,21906], + [22109,47650], + [22111,38916], + [22113,49266], + [22115,46620], + [22117,32962], + [22119,30891], + [22121,60902], + [22123,37304], + [22125,55647], + [22127,29472], + [23001,49538], + [23003,39021], + [23005,65702], + [23007,45541], + [23009,51438], + [23011,50116], + [23013,53117], + [23015,54041], + [23017,44582], + [23019,47886], + [23021,38797], + [23023,60457], + [23025,41549], + [23027,50162], + [23029,40328], + [23031,62618], + [24001,42771], + [24003,94502], + [24005,71810], + [24009,100350], + [24011,52469], + [24013,90510], + [24015,70516], + [24017,93973], + [24019,50532], + [24021,88502], + [24023,48174], + [24025,83445], + [24027,115576], + [24029,56638], + [24031,103178], + [24033,78607], + [24035,89241], + [24037,86508], + [24039,39239], + [24041,65595], + [24043,58260], + [24045,54493], + [24047,59458], + [24510,46641], + [25001,68048], + [25003,55190], + [25005,62514], + [25007,67535], + [25009,73533], + [25011,57307], + [25013,52205], + [25015,64974], + [25017,92878], + [25019,91942], + [25021,95668], + [25023,82081], + [25025,61242], + [25027,69313], + [26001,39424], + [26003,42647], + [26005,58487], + [26007,40954], + [26009,50988], + [26011,39947], + [26013,42757], + [26015,57312], + [26017,45983], + [26019,53185], + [26021,47132], + [26023,48192], + [26025,46213], + [26027,50699], + [26029,51567], + [26031,42876], + [26033,44030], + [26035,35913], + [26037,64903], + [26039,42666], + [26041,44639], + [26043,45681], + [26045,59244], + [26047,51475], + [26049,45231], + [26051,40871], + [26053,36689], + [26055,58229], + [26057,42256], + [26059,46160], + [26061,41379], + [26063,45191], + [26065,49109], + [26067,51980], + [26069,41414], + [26071,36773], + [26073,42771], + [26075,49715], + [26077,51945], + [26079,43431], + [26081,57302], + [26083,41118], + [26085,32309], + [26087,56186], + [26089,62646], + [26091,51339], + [26093,78430], + [26095,41221], + [26097,42559], + [26099,58175], + [26101,44882], + [26103,48491], + [26105,45524], + [26107,43470], + [26109,44480], + [26111,57117], + [26113,42370], + [26115,59479], + [26117,44651], + [26119,39152], + [26121,46077], + [26123,45645], + [26125,73369], + [26127,44382], + [26129,38149], + [26131,36073], + [26133,41099], + [26135,36833], + [26137,50823], + [26139,63962], + [26141,43758], + [26143,37834], + [26145,45034], + [26147,53641], + [26149,47856], + [26151,44417], + [26153,37428], + [26155,50967], + [26157,45495], + [26159,49119], + [26161,65618], + [26163,43702], + [26165,42793], + [27001,45860], + [27003,76796], + [27005,55884], + [27007,45923], + [27009,53574], + [27011,48299], + [27013,53752], + [27015,55764], + [27017,58874], + [27019,93095], + [27021,50162], + [27023,57601], + [27025,76747], + [27027,61409], + [27029,45638], + [27031,51903], + [27033,50524], + [27035,53121], + [27037,79995], + [27039,71078], + [27041,58667], + [27043,50847], + [27045,57093], + [27047,51174], + [27049,62431], + [27051,53727], + [27053,71154], + [27055,56837], + [27057,52941], + [27059,67565], + [27061,52050], + [27063,55122], + [27065,50509], + [27067,56604], + [27069,52304], + [27071,47131], + [27073,50195], + [27075,56078], + [27077,46943], + [27079,65500], + [27081,51102], + [27083,54181], + [27085,59869], + [27087,42439], + [27089,57289], + [27091,53627], + [27093,59611], + [27095,53737], + [27097,52855], + [27099,53700], + [27101,54211], + [27103,62593], + [27105,53267], + [27107,53034], + [27109,72337], + [27111,55181], + [27113,53893], + [27115,47285], + [27117,48909], + [27119,55393], + [27121,58198], + [27123,60301], + [27125,52500], + [27127,51871], + [27129,56721], + [27131,63311], + [27133,56753], + [27135,56273], + [27137,50936], + [27139,93151], + [27141,83895], + [27143,60848], + [27145,59564], + [27147,58882], + [27149,57552], + [27151,49556], + [27153,49213], + [27155,48889], + [27157,61973], + [27159,45018], + [27161,55189], + [27163,89598], + [27165,50044], + [27167,52917], + [27169,53975], + [27171,77953], + [27173,54645], + [28001,30359], + [28003,38919], + [28005,30129], + [28007,33815], + [28009,40605], + [28011,28468], + [28013,33370], + [28015,43068], + [28017,33579], + [28019,34542], + [28021,24601], + [28023,37626], + [28025,34118], + [28027,28728], + [28029,38046], + [28031,36471], + [28033,62595], + [28035,39555], + [28037,42388], + [28039,47640], + [28041,48029], + [28043,34876], + [28045,47518], + [28047,44684], + [28049,41011], + [28051,20330], + [28053,26188], + [28055,25609], + [28057,38358], + [28059,50274], + [28061,35271], + [28063,21779], + [28065,26736], + [28067,38656], + [28069,27016], + [28071,45019], + [28073,56129], + [28075,41340], + [28077,40432], + [28079,35578], + [28081,45985], + [28083,25210], + [28085,37308], + [28087,43198], + [28089,68600], + [28091,30998], + [28093,41134], + [28095,39444], + [28097,34983], + [28099,36755], + [28101,37643], + [28103,30808], + [28105,37348], + [28107,35891], + [28109,44734], + [28111,35374], + [28113,30949], + [28115,41865], + [28117,32854], + [28119,25671], + [28121,61605], + [28123,33601], + [28125,30033], + [28127,37591], + [28129,37697], + [28131,46283], + [28133,28556], + [28135,30000], + [28137,46233], + [28139,39351], + [28141,36672], + [28143,32052], + [28145,40076], + [28147,31077], + [28149,41635], + [28151,29387], + [28153,35215], + [28155,35634], + [28157,23340], + [28159,33313], + [28161,37647], + [28163,28330], + [29001,38750], + [29003,56658], + [29005,45259], + [29007,44056], + [29009,40638], + [29011,41184], + [29013,45605], + [29015,35097], + [29017,40791], + [29019,52005], + [29021,48652], + [29023,37878], + [29025,44975], + [29027,53180], + [29029,50496], + [29031,49554], + [29033,43583], + [29035,37875], + [29037,65352], + [29039,35930], + [29041,43186], + [29043,55761], + [29045,45216], + [29047,65675], + [29049,57591], + [29051,54216], + [29053,46547], + [29055,37171], + [29057,38880], + [29059,41441], + [29061,45707], + [29063,46517], + [29065,38829], + [29067,33003], + [29069,32348], + [29071,53849], + [29073,50687], + [29075,43777], + [29077,43175], + [29079,41092], + [29081,42889], + [29083,41089], + [29085,34746], + [29087,43981], + [29089,50356], + [29091,34984], + [29093,36457], + [29095,50652], + [29097,45328], + [29099,60765], + [29101,50689], + [29103,39674], + [29105,42646], + [29107,52557], + [29109,41673], + [29111,47148], + [29113,58603], + [29115,41652], + [29117,45929], + [29119,41207], + [29121,38903], + [29123,37484], + [29125,41715], + [29127,44098], + [29129,43314], + [29131,41461], + [29133,32212], + [29135,50897], + [29137,42011], + [29139,43094], + [29141,34776], + [29143,33846], + [29145,46723], + [29147,41370], + [29149,32070], + [29151,54503], + [29153,32021], + [29155,32468], + [29157,54935], + [29159,43097], + [29161,41681], + [29163,45112], + [29165,74199], + [29167,44805], + [29169,51137], + [29171,37028], + [29173,50161], + [29175,44754], + [29177,57270], + [29179,40265], + [29181,33849], + [29183,78380], + [29185,35066], + [29186,50959], + [29187,42873], + [29189,62931], + [29195,41567], + [29197,38848], + [29199,42939], + [29201,41628], + [29203,31202], + [29205,42593], + [29207,40076], + [29209,43292], + [29211,42034], + [29213,39661], + [29215,35571], + [29217,41479], + [29219,56193], + [29221,37810], + [29223,35135], + [29225,45185], + [29227,48214], + [29229,31290], + [29510,38664], + [30001,43880], + [30003,47276], + [30005,35506], + [30007,55295], + [30009,56988], + [30011,45347], + [30013,46827], + [30015,39577], + [30017,53050], + [30019,53591], + [30021,59622], + [30023,41235], + [30025,56806], + [30027,47110], + [30029,51410], + [30031,59397], + [30033,47188], + [30035,29201], + [30037,43854], + [30039,49063], + [30041,45269], + [30043,64911], + [30045,43281], + [30047,42582], + [30049,60789], + [30051,46641], + [30053,36934], + [30055,46193], + [30057,47900], + [30059,41343], + [30061,40117], + [30063,49412], + [30065,38156], + [30067,44920], + [30069,46429], + [30071,42101], + [30073,44597], + [30075,51136], + [30077,44352], + [30079,50850], + [30081,44733], + [30083,66572], + [30085,39219], + [30087,54709], + [30089,36445], + [30091,51940], + [30093,40480], + [30095,61998], + [30097,49761], + [30099,51060], + [30101,46735], + [30103,42454], + [30105,55267], + [30107,37222], + [30109,47132], + [30111,57955], + [31001,51721], + [31003,46949], + [31005,41250], + [31007,55000], + [31009,52000], + [31011,53854], + [31013,56328], + [31015,48750], + [31017,42773], + [31019,55053], + [31021,50174], + [31023,52448], + [31025,68284], + [31027,57208], + [31029,54568], + [31031,53226], + [31033,58770], + [31035,54167], + [31037,54876], + [31039,50734], + [31041,48836], + [31043,52401], + [31045,46146], + [31047,51238], + [31049,53438], + [31051,57036], + [31053,51748], + [31055,58640], + [31057,44653], + [31059,56750], + [31061,49453], + [31063,52090], + [31065,43400], + [31067,52223], + [31069,48125], + [31071,46509], + [31073,61769], + [31075,45833], + [31077,47218], + [31079,53807], + [31081,61944], + [31083,46750], + [31085,44946], + [31087,41582], + [31089,52050], + [31091,41607], + [31093,53648], + [31095,46576], + [31097,49564], + [31099,53207], + [31101,45078], + [31103,48864], + [31105,43017], + [31107,48072], + [31109,55747], + [31111,55875], + [31113,50278], + [31115,58625], + [31117,60714], + [31119,49865], + [31121,53536], + [31123,44201], + [31125,45428], + [31127,55536], + [31129,42055], + [31131,54605], + [31133,42176], + [31135,58125], + [31137,56408], + [31139,55417], + [31141,58679], + [31143,63667], + [31145,42882], + [31147,46839], + [31149,52361], + [31151,50932], + [31153,75752], + [31155,65015], + [31157,47975], + [31159,63095], + [31161,41209], + [31163,48704], + [31165,45375], + [31167,57534], + [31169,48151], + [31171,53173], + [31173,44701], + [31175,50270], + [31177,66485], + [31179,58093], + [31181,43831], + [31183,49706], + [31185,59966], + [32001,46914], + [32003,54882], + [32005,61176], + [32007,76178], + [32009,39405], + [32011,67159], + [32013,69324], + [32015,79865], + [32017,52971], + [32019,50920], + [32021,39375], + [32023,44225], + [32027,52308], + [32029,63607], + [32031,58595], + [32033,60358], + [32510,49341], + [33001,65834], + [33003,58139], + [33005,60148], + [33007,45386], + [33009,61036], + [33011,75777], + [33013,69856], + [33015,85619], + [33017,67805], + [33019,59419], + [34001,57514], + [34003,91572], + [34005,82839], + [34007,65037], + [34009,62332], + [34011,50000], + [34013,57365], + [34015,81489], + [34017,62681], + [34019,110969], + [34021,77027], + [34023,83133], + [34025,91807], + [34027,107034], + [34029,65771], + [34031,63339], + [34033,63934], + [34035,106046], + [34037,89238], + [34039,73376], + [34041,75500], + [35001,50386], + [35003,42047], + [35005,42177], + [35006,36089], + [35007,33042], + [35009,41941], + [35011,31439], + [35013,39114], + [35015,60703], + [35017,40470], + [35019,26060], + [35021,35096], + [35023,31829], + [35025,59285], + [35027,42145], + [35028,110190], + [35029,27602], + [35031,30336], + [35033,26644], + [35035,43533], + [35037,26663], + [35039,33422], + [35041,35928], + [35043,60345], + [35045,49686], + [35047,29168], + [35049,57945], + [35051,29690], + [35053,34008], + [35055,35314], + [35057,35543], + [35059,38240], + [35061,43428], + [36001,62293], + [36003,45359], + [36005,36593], + [36007,49064], + [36009,45571], + [36011,54664], + [36013,44304], + [36015,51251], + [36017,48567], + [36019,52759], + [36021,61093], + [36023,52451], + [36025,47921], + [36027,75585], + [36029,54006], + [36031,55294], + [36033,50733], + [36035,48033], + [36037,54033], + [36039,53214], + [36041,55587], + [36043,49077], + [36045,50322], + [36047,52782], + [36049,51475], + [36051,53654], + [36053,58365], + [36055,55272], + [36057,47449], + [36059,105744], + [36061,79781], + [36063,51656], + [36065,51316], + [36067,57271], + [36069,61710], + [36071,75146], + [36073,49223], + [36075,51755], + [36077,51254], + [36079,99608], + [36081,62008], + [36083,63166], + [36085,76244], + [36087,88571], + [36089,48330], + [36091,77548], + [36093,61315], + [36095,51842], + [36097,47810], + [36099,51601], + [36101,50157], + [36103,92838], + [36105,53877], + [36107,57153], + [36109,56200], + [36111,61652], + [36113,60222], + [36115,52527], + [36117,53693], + [36119,89968], + [36121,55459], + [36123,51758], + [37001,44281], + [37003,44523], + [37005,38944], + [37007,38123], + [37009,40293], + [37011,37109], + [37013,41101], + [37015,31287], + [37017,32396], + [37019,51164], + [37021,48464], + [37023,40854], + [37025,60716], + [37027,40735], + [37029,68327], + [37031,51584], + [37033,39428], + [37035,48649], + [37037,59684], + [37039,38115], + [37041,41979], + [37043,37070], + [37045,40002], + [37047,36261], + [37049,49391], + [37051,44737], + [37053,65758], + [37055,55640], + [37057,45806], + [37059,53493], + [37061,36679], + [37063,56393], + [37065,32929], + [37067,48369], + [37069,48344], + [37071,46626], + [37073,52481], + [37075,36030], + [37077,52089], + [37079,36989], + [37081,49253], + [37083,33573], + [37085,50323], + [37087,45538], + [37089,50454], + [37091,35806], + [37093,45713], + [37095,40532], + [37097,55957], + [37099,45078], + [37101,54610], + [37103,37256], + [37105,49272], + [37107,37515], + [37109,50782], + [37111,38776], + [37113,40659], + [37115,40563], + [37117,35969], + [37119,61695], + [37121,42534], + [37123,38254], + [37125,54468], + [37127,46187], + [37129,51457], + [37131,33508], + [37133,48162], + [37135,65522], + [37137,45211], + [37139,47264], + [37141,49357], + [37143,44039], + [37145,44921], + [37147,43526], + [37149,48412], + [37151,43598], + [37153,33607], + [37155,32407], + [37157,41700], + [37159,46978], + [37161,38573], + [37163,37765], + [37165,32739], + [37167,46017], + [37169,44490], + [37171,39071], + [37173,35271], + [37175,44559], + [37177,32411], + [37179,70858], + [37181,35246], + [37183,73577], + [37185,35443], + [37187,34557], + [37189,41541], + [37191,41766], + [37193,37173], + [37195,42095], + [37197,41126], + [37199,37610], + [38001,54700], + [38003,56237], + [38005,44500], + [38007,91518], + [38009,58767], + [38011,65435], + [38013,71667], + [38015,67308], + [38017,58026], + [38019,65505], + [38021,58357], + [38023,54223], + [38025,68594], + [38027,55294], + [38029,46581], + [38031,59500], + [38033,44018], + [38035,51410], + [38037,50875], + [38039,50272], + [38041,56118], + [38043,60225], + [38045,57463], + [38047,57379], + [38049,61788], + [38051,46012], + [38053,79316], + [38055,63926], + [38057,80337], + [38059,65385], + [38061,69622], + [38063,52417], + [38065,71500], + [38067,61393], + [38069,45996], + [38071,55927], + [38073,62524], + [38075,66023], + [38077,60551], + [38079,36170], + [38081,60824], + [38083,49750], + [38085,40795], + [38087,61250], + [38089,77328], + [38091,65437], + [38093,56088], + [38095,54625], + [38097,60952], + [38099,50781], + [38101,64159], + [38103,54464], + [38105,89874], + [39001,36320], + [39003,47905], + [39005,50893], + [39007,43017], + [39009,37191], + [39011,59516], + [39013,46484], + [39015,49188], + [39017,62188], + [39019,51748], + [39021,54495], + [39023,46275], + [39025,64183], + [39027,49997], + [39029,45498], + [39031,43251], + [39033,41726], + [39035,46720], + [39037,50064], + [39039,55295], + [39041,100229], + [39043,51033], + [39045,63424], + [39047,44289], + [39049,56319], + [39051,57774], + [39053,42002], + [39055,77104], + [39057,65032], + [39059,42744], + [39061,52389], + [39063,52831], + [39065,46404], + [39067,46223], + [39069,58070], + [39071,42333], + [39073,48073], + [39075,58728], + [39077,49710], + [39079,43397], + [39081,43161], + [39083,51211], + [39085,61137], + [39087,45466], + [39089,59747], + [39091,53051], + [39093,54987], + [39095,44820], + [39097,62897], + [39099,43251], + [39101,44708], + [39103,71595], + [39105,42105], + [39107,57052], + [39109,54568], + [39111,43299], + [39113,47045], + [39115,40276], + [39117,52767], + [39119,43325], + [39121,42171], + [39123,56193], + [39125,49866], + [39127,46477], + [39129,60314], + [39131,43562], + [39133,53816], + [39135,52661], + [39137,61161], + [39139,44138], + [39141,45792], + [39143,50370], + [39145,38978], + [39147,49153], + [39149,57673], + [39151,50117], + [39153,53291], + [39155,45380], + [39157,49460], + [39159,78848], + [39161,50974], + [39163,41541], + [39165,79397], + [39167,46021], + [39169,54037], + [39171,47593], + [39173,58033], + [39175,49767], + [40001,33366], + [40003,57432], + [40005,37106], + [40007,52571], + [40009,49625], + [40011,46362], + [40013,41197], + [40015,41626], + [40017,69220], + [40019,47754], + [40021,39187], + [40023,30298], + [40025,44667], + [40027,60632], + [40029,39931], + [40031,49569], + [40033,49962], + [40035,40465], + [40037,47147], + [40039,48520], + [40041,38234], + [40043,52930], + [40045,50594], + [40047,50724], + [40049,42567], + [40051,55527], + [40053,54460], + [40055,35898], + [40057,38264], + [40059,46915], + [40061,38017], + [40063,38425], + [40065,45189], + [40067,35933], + [40069,38636], + [40071,44067], + [40073,62829], + [40075,38191], + [40077,40539], + [40079,39253], + [40081,47539], + [40083,59133], + [40085,49409], + [40087,62081], + [40089,34250], + [40091,38163], + [40093,52056], + [40095,45671], + [40097,45302], + [40099,51844], + [40101,41329], + [40103,52372], + [40105,41282], + [40107,38346], + [40109,50762], + [40111,39567], + [40113,47683], + [40115,38472], + [40117,46460], + [40119,39149], + [40121,44941], + [40123,46689], + [40125,46159], + [40127,35414], + [40129,51286], + [40131,61320], + [40133,37741], + [40135,37455], + [40137,44805], + [40139,49469], + [40141,40728], + [40143,52017], + [40145,59210], + [40147,50388], + [40149,51909], + [40151,57097], + [40153,57602], + [41001,43765], + [41003,54682], + [41005,72408], + [41007,49828], + [41009,57449], + [41011,40848], + [41013,41777], + [41015,42519], + [41017,59152], + [41019,44023], + [41021,39831], + [41023,44826], + [41025,39504], + [41027,57269], + [41029,48688], + [41031,48464], + [41033,40705], + [41035,42531], + [41037,32769], + [41039,47710], + [41041,43291], + [41043,49515], + [41045,37112], + [41047,53828], + [41049,54386], + [41051,60369], + [41053,56032], + [41055,42074], + [41057,45061], + [41059,50071], + [41061,46228], + [41063,44877], + [41065,48510], + [41067,74033], + [41069,33563], + [41071,58392], + [42001,62661], + [42003,56333], + [42005,47527], + [42007,53981], + [42009,48703], + [42011,59580], + [42013,45664], + [42015,50900], + [42017,82031], + [42019,66037], + [42021,44943], + [42023,40402], + [42025,51236], + [42027,56466], + [42029,92417], + [42031,44373], + [42033,45188], + [42035,47990], + [42037,48395], + [42039,47179], + [42041,65544], + [42043,57071], + [42045,69839], + [42047,49876], + [42049,48192], + [42051,41632], + [42053,37106], + [42055,58267], + [42057,50007], + [42059,50972], + [42061,46765], + [42063,46306], + [42065,45342], + [42067,50571], + [42069,48380], + [42071,61492], + [42073,47188], + [42075,57698], + [42077,60116], + [42079,49290], + [42081,50634], + [42083,45866], + [42085,47340], + [42087,46286], + [42089,61430], + [42091,84791], + [42093,56250], + [42095,65390], + [42097,44534], + [42099,60847], + [42101,40649], + [42103,63417], + [42105,41406], + [42107,47642], + [42109,54182], + [42111,46132], + [42113,45519], + [42115,52014], + [42117,50017], + [42119,53768], + [42121,46487], + [42123,45781], + [42125,59309], + [42127,52161], + [42129,56702], + [42131,55965], + [42133,61707], + [44001,74630], + [44003,69047], + [44005,75463], + [44007,52530], + [44009,77862], + [45001,35254], + [45003,47713], + [45005,23331], + [45007,45551], + [45009,32330], + [45011,34035], + [45013,60603], + [45015,56697], + [45017,44010], + [45019,57882], + [45021,35286], + [45023,37421], + [45025,38469], + [45027,35838], + [45029,34996], + [45031,36217], + [45033,30866], + [45035,58685], + [45037,47500], + [45039,35551], + [45041,43310], + [45043,46967], + [45045,53739], + [45047,39196], + [45049,32147], + [45051,46475], + [45053,39740], + [45055,46565], + [45057,50557], + [45059,40580], + [45061,31963], + [45063,57482], + [45065,40622], + [45067,31129], + [45069,33921], + [45071,39600], + [45073,43978], + [45075,34943], + [45077,45332], + [45079,52082], + [45081,41885], + [45083,47575], + [45085,41946], + [45087,37493], + [45089,30976], + [45091,59394], + [46003,57257], + [46005,48995], + [46007,45725], + [46009,52923], + [46011,53473], + [46013,53807], + [46015,50870], + [46017,30500], + [46019,44786], + [46021,51548], + [46023,44104], + [46025,47500], + [46027,41773], + [46029,52025], + [46031,32260], + [46033,56449], + [46035,48665], + [46037,43902], + [46039,57969], + [46041,41190], + [46043,52543], + [46045,65380], + [46047,48862], + [46049,46750], + [46051,56276], + [46053,42679], + [46055,38873], + [46057,61784], + [46059,50720], + [46061,62448], + [46063,55972], + [46065,59741], + [46067,49583], + [46069,53696], + [46071,38041], + [46073,49882], + [46075,39432], + [46077,58794], + [46079,58467], + [46081,49275], + [46083,81849], + [46085,47113], + [46087,60808], + [46089,41674], + [46091,60948], + [46093,54286], + [46095,31165], + [46097,50658], + [46099,57322], + [46101,56233], + [46102,"NA"], + [46103,52245], + [46105,50450], + [46107,51597], + [46109,51228], + [46111,54677], + [46115,52000], + [46117,63233], + [46119,60694], + [46121,26285], + [46123,48409], + [46125,54294], + [46127,65434], + [46129,46623], + [46135,50029], + [46137,35000], + [47001,47206], + [47003,47117], + [47005,33702], + [47007,40450], + [47009,51172], + [47011,46381], + [47013,35377], + [47015,47457], + [47017,38201], + [47019,34625], + [47021,56150], + [47023,43740], + [47025,35428], + [47027,30801], + [47029,32027], + [47031,46614], + [47033,39692], + [47035,40994], + [47037,53419], + [47039,36427], + [47041,40690], + [47043,47398], + [47045,44386], + [47047,57919], + [47049,32616], + [47051,46882], + [47053,41315], + [47055,43925], + [47057,40088], + [47059,38266], + [47061,31919], + [47063,42042], + [47065,50273], + [47067,29619], + [47069,36686], + [47071,39092], + [47073,38728], + [47075,36118], + [47077,42711], + [47079,40415], + [47081,39333], + [47083,41820], + [47085,40998], + [47087,33933], + [47089,45641], + [47091,32994], + [47093,52458], + [47095,31993], + [47097,35551], + [47099,41522], + [47101,37092], + [47103,42153], + [47105,55431], + [47107,39990], + [47109,34353], + [47111,35533], + [47113,44496], + [47115,45366], + [47117,46837], + [47119,52080], + [47121,39786], + [47123,36931], + [47125,53737], + [47127,51671], + [47129,40707], + [47131,38063], + [47133,36052], + [47135,31503], + [47137,39313], + [47139,42307], + [47141,37802], + [47143,39368], + [47145,45407], + [47147,57424], + [47149,62149], + [47151,31875], + [47153,51312], + [47155,44473], + [47157,48415], + [47159,44275], + [47161,44090], + [47163,42251], + [47165,61584], + [47167,57212], + [47169,41776], + [47171,36576], + [47173,40132], + [47175,43631], + [47177,36765], + [47179,44180], + [47181,34299], + [47183,36550], + [47185,37654], + [47187,103543], + [47189,66123], + [48001,42313], + [48003,70753], + [48005,46472], + [48007,44601], + [48009,63192], + [48011,68750], + [48013,55194], + [48015,62614], + [48017,43523], + [48019,56413], + [48021,59185], + [48023,36157], + [48025,45415], + [48027,52583], + [48029,53999], + [48031,58500], + [48033,77708], + [48035,48677], + [48037,46283], + [48039,76426], + [48041,43907], + [48043,38906], + [48045,42500], + [48047,24794], + [48049,43062], + [48051,52510], + [48053,57173], + [48055,51346], + [48057,58788], + [48059,40945], + [48061,36095], + [48063,41811], + [48065,67010], + [48067,41432], + [48069,44643], + [48071,74368], + [48073,44294], + [48075,40432], + [48077,46863], + [48079,37500], + [48081,42500], + [48083,40804], + [48085,90124], + [48087,46348], + [48089,50241], + [48091,73655], + [48093,42419], + [48095,46696], + [48097,60027], + [48099,50865], + [48101,33534], + [48103,63935], + [48105,52310], + [48107,38674], + [48109,33125], + [48111,45580], + [48113,53626], + [48115,43201], + [48117,51543], + [48119,42642], + [48121,80290], + [48123,50960], + [48125,43088], + [48127,31384], + [48129,44429], + [48131,35443], + [48133,32135], + [48135,59528], + [48137,48462], + [48139,67371], + [48141,43244], + [48143,47013], + [48145,38834], + [48147,47875], + [48149,56941], + [48151,45294], + [48153,48767], + [48155,50000], + [48157,93645], + [48159,43967], + [48161,45890], + [48163,37382], + [48165,58167], + [48167,65702], + [48169,53832], + [48171,56267], + [48173,64886], + [48175,56737], + [48177,47516], + [48179,48314], + [48181,52683], + [48183,47970], + [48185,49745], + [48187,66187], + [48189,46012], + [48191,31324], + [48193,46611], + [48195,40678], + [48197,37995], + [48199,56131], + [48201,57791], + [48203,48644], + [48205,64427], + [48207,43529], + [48209,62815], + [48211,68679], + [48213,44888], + [48215,37097], + [48217,45970], + [48219,49184], + [48221,60275], + [48223,47832], + [48225,33552], + [48227,50855], + [48229,26346], + [48231,49319], + [48233,50035], + [48235,63021], + [48237,52829], + [48239,58504], + [48241,41960], + [48243,46534], + [48245,46315], + [48247,31403], + [48249,41103], + [48251,60458], + [48253,48601], + [48255,53051], + [48257,63926], + [48259,81023], + [48261,24800], + [48263,52250], + [48265,48698], + [48267,41095], + [48269,56964], + [48271,34926], + [48273,41700], + [48275,46319], + [48277,42198], + [48279,43712], + [48281,54467], + [48283,44601], + [48285,51708], + [48287,55741], + [48289,44875], + [48291,48344], + [48293,40356], + [48295,59583], + [48297,51480], + [48299,50524], + [48301,80938], + [48303,49078], + [48305,44922], + [48307,42367], + [48309,46262], + [48311,71389], + [48313,44004], + [48315,36938], + [48317,71115], + [48319,40949], + [48321,44896], + [48323,37734], + [48325,59305], + [48327,37917], + [48329,75815], + [48331,41768], + [48333,46318], + [48335,52194], + [48337,46592], + [48339,74323], + [48341,52469], + [48343,40227], + [48345,40598], + [48347,41482], + [48349,45103], + [48351,40180], + [48353,42019], + [48355,53317], + [48357,50120], + [48359,62426], + [48361,53667], + [48363,45067], + [48365,49704], + [48367,70608], + [48369,50410], + [48371,50543], + [48373,43267], + [48375,41852], + [48377,26486], + [48379,48308], + [48381,65564], + [48383,59760], + [48385,36493], + [48387,35356], + [48389,49390], + [48391,50338], + [48393,79167], + [48395,52189], + [48397,93269], + [48399,41226], + [48401,49270], + [48403,33561], + [48405,32394], + [48407,43421], + [48409,53332], + [48411,40301], + [48413,63432], + [48415,54565], + [48417,46685], + [48419,38121], + [48421,54961], + [48423,50742], + [48425,52346], + [48427,27133], + [48429,45862], + [48431,50000], + [48433,46786], + [48435,60996], + [48437,37883], + [48439,62532], + [48441,49161], + [48443,26063], + [48445,42441], + [48447,37279], + [48449,46980], + [48451,49662], + [48453,68350], + [48455,37398], + [48457,44396], + [48459,48796], + [48461,52750], + [48463,40781], + [48465,44609], + [48467,50061], + [48469,55740], + [48471,41456], + [48473,53506], + [48475,63333], + [48477,55793], + [48479,40442], + [48481,50145], + [48483,50910], + [48485,45776], + [48487,43913], + [48489,29104], + [48491,79123], + [48493,71942], + [48495,55000], + [48497,59081], + [48499,48038], + [48501,62500], + [48503,46351], + [48505,34550], + [48507,25988], + [49001,47878], + [49003,58835], + [49005,53812], + [49007,46994], + [49009,85000], + [49011,75961], + [49013,63000], + [49015,51852], + [49017,51700], + [49019,46658], + [49021,45422], + [49023,57590], + [49025,50266], + [49027,59312], + [49029,86071], + [49031,41750], + [49033,52917], + [49035,67922], + [49037,42581], + [49039,50928], + [49041,50850], + [49043,94952], + [49045,66542], + [49047,67012], + [49049,67042], + [49051,74552], + [49053,55175], + [49055,42444], + [49057,62036], + [50001,61875], + [50003,52251], + [50005,47371], + [50007,66906], + [50009,38767], + [50011,62214], + [50013,66111], + [50015,54899], + [50017,56584], + [50019,45664], + [50021,52635], + [50023,60602], + [50025,50831], + [50027,56828], + [51001,42260], + [51003,72265], + [51005,46020], + [51007,58535], + [51009,49677], + [51011,54875], + [51013,112138], + [51015,59544], + [51017,44483], + [51019,59405], + [51021,46927], + [51023,64733], + [51025,40871], + [51027,30828], + [51029,46610], + [51031,48823], + [51033,60925], + [51035,41145], + [51036,55069], + [51037,38350], + [51041,76969], + [51043,72129], + [51045,53526], + [51047,69693], + [51049,43020], + [51051,29916], + [51053,54640], + [51057,50629], + [51059,117515], + [51061,94775], + [51063,48396], + [51065,67964], + [51067,51208], + [51069,71037], + [51071,49734], + [51073,63881], + [51075,86652], + [51077,32048], + [51079,62952], + [51081,42121], + [51083,39233], + [51085,84955], + [51087,66447], + [51089,36779], + [51091,45094], + [51093,67767], + [51095,80772], + [51097,51495], + [51099,84770], + [51101,67423], + [51103,51495], + [51105,32590], + [51107,129588], + [51109,56946], + [51111,39537], + [51113,52287], + [51115,63622], + [51117,41126], + [51119,50483], + [51121,53424], + [51125,53834], + [51127,78429], + [51131,41468], + [51133,56677], + [51135,38410], + [51137,67196], + [51139,46140], + [51141,37757], + [51143,44356], + [51145,80441], + [51147,44147], + [51149,68461], + [51153,101059], + [51155,49691], + [51157,62541], + [51159,47341], + [51161,62134], + [51163,53918], + [51165,57651], + [51167,40083], + [51169,38725], + [51171,53934], + [51173,40544], + [51175,53681], + [51177,81434], + [51179,103005], + [51181,54656], + [51183,44608], + [51185,40309], + [51187,65353], + [51191,44844], + [51193,55688], + [51195,38255], + [51197,46119], + [51199,86781], + [51510,93370], + [51520,37844], + [51530,33672], + [51540,54739], + [51550,72214], + [51570,50952], + [51580,35546], + [51590,34951], + [51595,27426], + [51600,106870], + [51610,114795], + [51620,38760], + [51630,57258], + [51640,31311], + [51650,52021], + [51660,43009], + [51670,40712], + [51678,37309], + [51680,41971], + [51683,77551], + [51685,79131], + [51690,33545], + [51700,51082], + [51710,47137], + [51720,26971], + [51730,33939], + [51735,88328], + [51740,48727], + [51750,36082], + [51760,42356], + [51770,41483], + [51775,53990], + [51790,46435], + [51800,68089], + [51810,70500], + [51820,42112], + [51830,54606], + [51840,49330], + [53001,48131], + [53003,47483], + [53005,63001], + [53007,54975], + [53009,48002], + [53011,67832], + [53013,46250], + [53015,49804], + [53017,55805], + [53019,41081], + [53021,60275], + [53023,51399], + [53025,52382], + [53027,45483], + [53029,61516], + [53031,51842], + [53033,83571], + [53035,68336], + [53037,53163], + [53039,51258], + [53041,46387], + [53043,49460], + [53045,53087], + [53047,42598], + [53049,39895], + [53051,49184], + [53053,63881], + [53055,60271], + [53057,59263], + [53059,53606], + [53061,78020], + [53063,52159], + [53065,47272], + [53067,66113], + [53069,49508], + [53071,52630], + [53073,56419], + [53075,41574], + [53077,47470], + [54001,37516], + [54003,59480], + [54005,37955], + [54007,41266], + [54009,48835], + [54011,37816], + [54013,36279], + [54015,34242], + [54017,44437], + [54019,39297], + [54021,37175], + [54023,40093], + [54025,40483], + [54027,36575], + [54029,43634], + [54031,42573], + [54033,48315], + [54035,41731], + [54037,72526], + [54039,46859], + [54041,39793], + [54043,37075], + [54045,37859], + [54047,25595], + [54049,48158], + [54051,42473], + [54053,38977], + [54055,37763], + [54057,40749], + [54059,31227], + [54061,49624], + [54063,36684], + [54065,46346], + [54067,39037], + [54069,45777], + [54071,39554], + [54073,45152], + [54075,37111], + [54077,46673], + [54079,59113], + [54081,42386], + [54083,40094], + [54085,41497], + [54087,37931], + [54089,35218], + [54091,45916], + [54093,43294], + [54095,40902], + [54097,39434], + [54099,38905], + [54101,33390], + [54103,40694], + [54105,38936], + [54107,45537], + [54109,37644], + [55001,44003], + [55003,41505], + [55005,49257], + [55007,50110], + [55009,56775], + [55011,54753], + [55013,45891], + [55015,70662], + [55017,55240], + [55019,49131], + [55021,63293], + [55023,47331], + [55025,67631], + [55027,56038], + [55029,56494], + [55031,50730], + [55033,54605], + [55035,52178], + [55037,47827], + [55039,57798], + [55041,43356], + [55043,50522], + [55045,60609], + [55047,50276], + [55049,60017], + [55051,39855], + [55053,51108], + [55055,59215], + [55057,48817], + [55059,57269], + [55061,60320], + [55063,54127], + [55065,55859], + [55067,44122], + [55069,54203], + [55071,51053], + [55073,56509], + [55075,44958], + [55077,49052], + [55078,38080], + [55079,46784], + [55081,56479], + [55083,55762], + [55085,52945], + [55087,61523], + [55089,80526], + [55091,51470], + [55093,66772], + [55095,53551], + [55097,54620], + [55099,45680], + [55101,58334], + [55103,48234], + [55105,53410], + [55107,41930], + [55109,77768], + [55111,54447], + [55113,43565], + [55115,51751], + [55117,56114], + [55119,49821], + [55121,54009], + [55123,49996], + [55125,42720], + [55127,58401], + [55129,46592], + [55131,73021], + [55133,81140], + [55135,54071], + [55137,48412], + [55139,55128], + [55141,51603], + [56001,45816], + [56003,51716], + [56005,80178], + [56007,57644], + [56009,62776], + [56011,66944], + [56013,55013], + [56015,48422], + [56017,48403], + [56019,52415], + [56021,62879], + [56023,63756], + [56025,59400], + [56027,36793], + [56029,60828], + [56031,47380], + [56033,56455], + [56035,84911], + [56037,71083], + [56039,80049], + [56041,54672], + [56043,51362], + [56045,59605] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-household-median-2019.json b/data/regional/united-states/economics/income/us-income-household-median-2019.json new file mode 100644 index 0000000..c7ecfe9 --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-household-median-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Household Income", + "description" : "Median Household Income from the previous 12 months in 2019 US dollars.", + "units" : "$", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income","household"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.household.median.2019"], + [1001,58731], + [1003,58320], + [1005,32525], + [1007,47542], + [1009,49358], + [1011,37785], + [1013,40688], + [1015,47255], + [1017,42289], + [1019,41919], + [1021,47468], + [1023,35892], + [1025,37404], + [1027,40845], + [1029,44741], + [1031,55637], + [1033,48065], + [1035,37837], + [1037,38990], + [1039,42189], + [1041,43163], + [1043,44918], + [1045,47214], + [1047,33845], + [1049,40440], + [1051,60891], + [1053,36275], + [1055,44637], + [1057,39856], + [1059,43514], + [1061,41732], + [1063,24145], + [1065,34046], + [1067,50017], + [1069,47580], + [1071,41769], + [1073,53901], + [1075,38364], + [1077,48094], + [1079,44886], + [1081,51463], + [1083,59686], + [1085,30036], + [1087,33370], + [1089,65449], + [1091,33241], + [1093,35930], + [1095,45983], + [1097,47583], + [1099,30441], + [1101,50124], + [1103,52156], + [1105,23447], + [1107,39848], + [1109,37446], + [1111,43395], + [1113,42443], + [1115,58308], + [1117,77799], + [1119,24320], + [1121,41325], + [1123,45828], + [1125,53326], + [1127,43629], + [1129,41370], + [1131,31014], + [1133,35788], + [2013,69250], + [2016,87466], + [2020,84928], + [2050,53553], + [2060,79808], + [2068,81719], + [2070,56898], + [2090,76992], + [2100,58059], + [2105,59803], + [2110,88390], + [2122,66064], + [2130,72728], + [2150,85839], + [2158,36754], + [2164,44135], + [2170,75493], + [2180,61048], + [2185,79306], + [2188,60906], + [2195,69948], + [2198,52379], + [2220,73682], + [2230,73906], + [2240,70056], + [2261,79867], + [2275,53894], + [2282,71607], + [2290,41413], + [4001,32508], + [4003,49260], + [4005,59460], + [4007,43524], + [4009,51353], + [4011,63473], + [4012,34643], + [4013,64468], + [4015,45587], + [4017,40067], + [4019,53379], + [4021,58174], + [4023,41259], + [4025,52451], + [4027,45243], + [5001,46696], + [5003,44744], + [5005,42260], + [5007,66362], + [5009,45374], + [5011,43184], + [5013,46417], + [5015,46110], + [5017,34147], + [5019,41620], + [5021,37233], + [5023,44483], + [5025,46684], + [5027,36193], + [5029,42802], + [5031,47286], + [5033,46828], + [5035,40161], + [5037,46787], + [5039,38072], + [5041,31893], + [5043,46997], + [5045,52827], + [5047,38923], + [5049,35405], + [5051,44777], + [5053,55388], + [5055,47056], + [5057,42860], + [5059,43889], + [5061,36059], + [5063,44319], + [5065,42876], + [5067,34109], + [5069,40726], + [5071,38511], + [5073,32397], + [5075,39993], + [5077,29681], + [5079,46596], + [5081,45113], + [5083,41466], + [5085,59094], + [5087,41682], + [5089,36719], + [5091,43371], + [5093,39962], + [5095,38468], + [5097,35741], + [5099,38042], + [5101,38082], + [5103,35425], + [5105,48667], + [5107,29320], + [5109,40401], + [5111,40921], + [5113,37974], + [5115,43462], + [5117,42660], + [5119,51749], + [5121,37218], + [5123,35348], + [5125,64412], + [5127,36092], + [5129,36438], + [5131,46228], + [5133,47704], + [5135,34671], + [5137,38188], + [5139,44663], + [5141,38499], + [5143,50451], + [5145,44029], + [5147,32845], + [5149,43923], + [6001,99406], + [6003,63750], + [6005,62772], + [6007,52537], + [6009,63158], + [6011,59401], + [6013,99716], + [6015,45283], + [6017,83377], + [6019,53969], + [6021,49633], + [6023,48041], + [6025,47622], + [6027,57316], + [6029,53350], + [6031,57848], + [6033,47040], + [6035,56352], + [6037,68044], + [6039,57585], + [6041,115246], + [6043,48820], + [6045,51416], + [6047,53672], + [6049,45507], + [6051,62260], + [6053,71015], + [6055,88596], + [6057,66096], + [6059,90234], + [6061,89691], + [6063,55359], + [6065,67005], + [6067,67151], + [6069,86958], + [6071,63362], + [6073,78980], + [6075,112449], + [6077,64432], + [6079,73518], + [6081,122641], + [6083,74624], + [6085,124055], + [6087,82234], + [6089,54667], + [6091,52148], + [6093,45241], + [6095,81472], + [6097,81018], + [6099,60704], + [6101,59050], + [6103,44514], + [6105,40846], + [6107,49687], + [6109,60108], + [6111,88131], + [6113,70228], + [6115,58054], + [8001,71202], + [8003,37515], + [8005,77469], + [8007,52221], + [8009,35878], + [8011,30900], + [8013,83019], + [8014,96416], + [8015,55771], + [8017,53977], + [8019,67060], + [8021,36084], + [8023,30965], + [8025,42135], + [8027,53119], + [8029,45269], + [8031,68592], + [8033,45972], + [8035,119730], + [8037,84790], + [8039,99199], + [8041,68779], + [8043,49409], + [8045,75937], + [8047,76429], + [8049,71198], + [8051,56577], + [8053,56339], + [8055,38137], + [8057,53300], + [8059,82986], + [8061,41731], + [8063,49349], + [8065,50565], + [8067,68685], + [8069,71881], + [8071,41817], + [8073,47258], + [8075,53318], + [8077,55379], + [8079,62188], + [8081,57229], + [8083,49470], + [8085,50489], + [8087,53682], + [8089,38169], + [8091,66417], + [8093,73622], + [8095,51155], + [8097,78935], + [8099,41929], + [8101,46783], + [8103,54357], + [8105,39123], + [8107,77443], + [8109,38571], + [8111,54625], + [8113,67038], + [8115,43150], + [8117,79277], + [8119,66592], + [8121,50094], + [8123,74150], + [8125,52022], + [9001,95645], + [9003,75148], + [9005,79906], + [9007,85898], + [9009,69905], + [9011,73490], + [9013,87069], + [9015,66550], + [10001,60910], + [10003,73892], + [10005,63162], + [11001,86420], + [12001,49689], + [12003,63275], + [12005,54316], + [12007,45921], + [12009,56775], + [12011,59547], + [12013,38568], + [12015,51499], + [12017,44237], + [12019,65740], + [12021,69653], + [12023,46494], + [12027,35438], + [12029,39828], + [12031,55807], + [12033,50915], + [12035,54514], + [12037,46643], + [12039,41401], + [12041,43640], + [12043,40977], + [12045,47712], + [12047,38569], + [12049,38682], + [12051,40820], + [12053,48812], + [12055,40942], + [12057,58884], + [12059,39102], + [12061,54740], + [12063,39872], + [12065,47240], + [12067,50165], + [12069,54513], + [12071,57832], + [12073,53106], + [12075,37326], + [12077,38015], + [12079,37037], + [12081,59009], + [12083,45371], + [12085,61133], + [12086,51347], + [12087,70033], + [12089,69943], + [12091,63412], + [12093,41760], + [12095,58254], + [12097,52279], + [12099,63299], + [12101,52828], + [12103,54090], + [12105,50584], + [12107,37670], + [12109,82252], + [12111,52322], + [12113,67949], + [12115,62236], + [12117,66768], + [12119,57226], + [12121,47839], + [12123,40306], + [12125,44270], + [12127,49494], + [12129,61410], + [12131,58093], + [12133,37022], + [13001,40304], + [13003,37197], + [13005,37519], + [13007,32917], + [13009,43672], + [13011,47811], + [13013,62345], + [13015,57423], + [13017,32229], + [13019,40415], + [13021,41334], + [13023,48174], + [13025,38857], + [13027,38285], + [13029,72624], + [13031,45550], + [13033,44151], + [13035,43471], + [13037,34167], + [13039,56951], + [13043,33736], + [13045,53737], + [13047,56235], + [13049,41961], + [13051,56842], + [13053,47096], + [13055,36807], + [13057,82740], + [13059,38623], + [13061,22325], + [13063,47864], + [13065,27658], + [13067,77932], + [13069,40859], + [13071,36435], + [13073,82339], + [13075,41854], + [13077,75913], + [13079,46283], + [13081,36042], + [13083,42581], + [13085,66281], + [13087,41481], + [13089,62399], + [13091,39302], + [13093,37340], + [13095,39584], + [13097,63835], + [13099,30640], + [13101,39494], + [13103,66822], + [13105,38678], + [13107,37453], + [13109,42607], + [13111,47997], + [13113,90145], + [13115,48336], + [13117,107218], + [13119,42488], + [13121,69673], + [13123,52625], + [13125,45000], + [13127,52977], + [13129,45865], + [13131,43531], + [13133,52129], + [13135,71026], + [13137,50563], + [13139,62984], + [13141,31860], + [13143,48550], + [13145,76319], + [13147,43204], + [13149,51358], + [13151,71288], + [13153,61723], + [13155,37736], + [13157,65385], + [13159,51250], + [13161,36669], + [13163,33944], + [13165,27375], + [13167,42446], + [13169,56020], + [13171,44846], + [13173,40986], + [13175,39120], + [13177,69280], + [13179,48007], + [13181,39742], + [13183,54605], + [13185,42441], + [13187,51790], + [13189,43468], + [13191,49504], + [13193,32161], + [13195,52500], + [13197,44643], + [13199,37121], + [13201,44542], + [13205,38116], + [13207,54754], + [13209,41996], + [13211,66178], + [13213,48033], + [13215,46408], + [13217,56316], + [13219,90751], + [13221,47120], + [13223,68370], + [13225,46636], + [13227,67631], + [13229,42804], + [13231,64878], + [13233,44891], + [13235,45148], + [13237,51606], + [13239,26667], + [13241,42500], + [13243,31699], + [13245,42728], + [13247,60189], + [13249,44448], + [13251,39842], + [13253,33357], + [13255,47111], + [13257,47164], + [13259,29732], + [13261,36681], + [13263,38549], + [13265,37446], + [13267,40730], + [13269,33832], + [13271,32405], + [13273,34768], + [13275,43740], + [13277,45639], + [13279,40175], + [13281,48219], + [13283,32241], + [13285,45649], + [13287,37039], + [13289,34879], + [13291,50021], + [13293,37640], + [13295,46157], + [13297,61599], + [13299,36869], + [13301,37203], + [13303,38068], + [13305,45483], + [13307,37297], + [13309,30192], + [13311,52493], + [13313,48623], + [13315,36964], + [13317,37838], + [13319,38996], + [13321,45398], + [15001,62409], + [15003,85857], + [15005,69375], + [15007,83554], + [15009,80948], + [16001,66293], + [16003,48856], + [16005,51734], + [16007,54167], + [16009,47556], + [16011,55472], + [16013,56694], + [16015,59646], + [16017,50256], + [16019,60615], + [16021,43423], + [16023,42132], + [16025,39688], + [16027,52134], + [16029,59053], + [16031,52935], + [16033,46154], + [16035,43915], + [16037,40875], + [16039,46855], + [16041,57215], + [16043,58065], + [16045,45492], + [16047,47204], + [16049,41516], + [16051,63048], + [16053,52921], + [16055,57242], + [16057,49158], + [16059,39324], + [16061,41198], + [16063,50053], + [16065,39160], + [16067,53370], + [16069,58107], + [16071,53841], + [16073,43798], + [16075,50579], + [16077,48823], + [16079,39386], + [16081,74216], + [16083,52919], + [16085,64475], + [16087,40992], + [17001,52993], + [17003,36806], + [17005,57289], + [17007,69272], + [17009,61655], + [17011,57436], + [17013,63009], + [17015,52410], + [17017,52373], + [17019,52797], + [17021,52834], + [17023,56531], + [17025,48500], + [17027,66639], + [17029,46202], + [17031,64660], + [17033,49779], + [17035,56206], + [17037,63317], + [17039,55587], + [17041,56714], + [17043,92809], + [17045,53647], + [17047,51080], + [17049,56685], + [17051,46650], + [17053,52092], + [17055,42769], + [17057,51643], + [17059,44076], + [17061,49885], + [17063,77350], + [17065,54046], + [17067,52561], + [17069,51250], + [17071,53676], + [17073,59933], + [17075,52700], + [17077,37241], + [17079,54256], + [17081,49896], + [17083,63028], + [17085,57946], + [17087,52774], + [17089,79394], + [17091,58902], + [17093,96563], + [17095,44129], + [17097,89427], + [17099,58142], + [17101,46636], + [17103,58194], + [17105,55160], + [17107,57308], + [17109,44471], + [17111,86799], + [17113,67675], + [17115,50480], + [17117,55159], + [17119,60738], + [17121,47519], + [17123,58465], + [17125,48417], + [17127,47481], + [17129,74684], + [17131,59787], + [17133,85747], + [17135,52748], + [17137,51437], + [17139,61456], + [17141,60986], + [17143,55842], + [17145,52428], + [17147,70849], + [17149,47492], + [17151,38056], + [17153,34640], + [17155,63638], + [17157,53816], + [17159,48894], + [17161,54858], + [17163,55179], + [17165,44090], + [17167,61912], + [17169,52357], + [17171,57118], + [17173,52953], + [17175,54907], + [17177,48805], + [17179,63454], + [17181,50625], + [17183,46515], + [17185,50770], + [17187,50310], + [17189,61763], + [17191,50251], + [17193,49290], + [17195,54232], + [17197,86961], + [17199,50734], + [17201,54489], + [17203,72808], + [18001,52504], + [18003,54857], + [18005,63431], + [18007,49488], + [18009,43505], + [18011,83077], + [18013,61030], + [18015,54806], + [18017,49415], + [18019,55630], + [18021,55637], + [18023,54286], + [18025,41662], + [18027,53629], + [18029,68658], + [18031,57949], + [18033,56421], + [18035,43512], + [18037,60666], + [18039,57021], + [18041,46175], + [18043,64468], + [18045,52874], + [18047,62462], + [18049,52034], + [18051,55462], + [18053,44356], + [18055,51613], + [18057,98173], + [18059,74072], + [18061,57712], + [18063,81933], + [18065,49832], + [18067,52373], + [18069,53632], + [18071,51250], + [18073,63892], + [18075,47658], + [18077,52718], + [18079,54191], + [18081,72440], + [18083,47380], + [18085,61366], + [18087,64498], + [18089,56128], + [18091,53658], + [18093,53610], + [18095,49522], + [18097,48316], + [18099,52658], + [18101,52726], + [18103,50657], + [18105,49839], + [18107,55522], + [18109,64335], + [18111,55356], + [18113,56789], + [18115,60128], + [18117,47917], + [18119,49543], + [18121,52618], + [18123,52348], + [18125,50194], + [18127,71152], + [18129,64196], + [18131,49580], + [18133,61047], + [18135,48036], + [18137,56332], + [18139,54346], + [18141,52769], + [18143,48700], + [18145,60404], + [18147,57305], + [18149,51190], + [18151,58279], + [18153,50245], + [18155,49383], + [18157,53130], + [18159,58118], + [18161,50375], + [18163,49708], + [18165,50243], + [18167,45230], + [18169,54259], + [18171,60553], + [18173,73482], + [18175,47983], + [18177,46516], + [18179,59237], + [18181,54576], + [18183,61741], + [19001,53363], + [19003,49255], + [19005,52216], + [19007,40167], + [19009,52055], + [19011,67729], + [19013,53539], + [19015,64000], + [19017,70395], + [19019,64837], + [19021,57125], + [19023,57115], + [19025,52323], + [19027,59212], + [19029,50187], + [19031,67795], + [19033,53963], + [19035,56550], + [19037,60034], + [19039,54427], + [19041,50521], + [19043,53152], + [19045,51688], + [19047,55755], + [19049,88479], + [19051,63404], + [19053,44462], + [19055,63750], + [19057,51267], + [19059,59969], + [19061,63031], + [19063,51563], + [19065,51128], + [19067,50406], + [19069,56419], + [19071,56750], + [19073,53050], + [19075,68038], + [19077,61161], + [19079,60910], + [19081,61761], + [19083,54196], + [19085,63854], + [19087,53501], + [19089,55060], + [19091,54575], + [19093,58427], + [19095,61443], + [19097,55967], + [19099,58952], + [19101,47708], + [19103,62542], + [19105,57549], + [19107,52881], + [19109,56073], + [19111,49564], + [19113,64903], + [19115,56673], + [19117,55205], + [19119,64982], + [19121,66316], + [19123,54825], + [19125,61038], + [19127,56437], + [19129,72079], + [19131,58302], + [19133,47605], + [19135,58269], + [19137,51696], + [19139,58453], + [19141,53703], + [19143,59725], + [19145,51867], + [19147,52932], + [19149,67297], + [19151,52448], + [19153,67637], + [19155,60065], + [19157,53852], + [19159,55271], + [19161,58232], + [19163,61183], + [19165,58000], + [19167,69844], + [19169,56756], + [19171,56037], + [19173,50431], + [19175,49900], + [19177,48591], + [19179,46246], + [19181,77048], + [19183,62556], + [19185,44768], + [19187,47466], + [19189,49870], + [19191,65263], + [19193,59224], + [19195,57130], + [19197,53333], + [20001,45333], + [20003,50213], + [20005,50439], + [20007,50174], + [20009,49723], + [20011,43917], + [20013,48333], + [20015,64782], + [20017,45353], + [20019,40298], + [20021,43175], + [20023,47639], + [20025,53348], + [20027,53929], + [20029,45373], + [20031,59583], + [20033,54821], + [20035,50102], + [20037,41004], + [20039,48125], + [20041,49991], + [20043,49703], + [20045,59435], + [20047,50902], + [20049,38750], + [20051,52883], + [20053,54902], + [20055,60798], + [20057,51711], + [20059,56582], + [20061,53133], + [20063,48317], + [20065,46375], + [20067,53413], + [20069,64930], + [20071,54112], + [20073,41982], + [20075,46944], + [20077,49865], + [20079,57982], + [20081,55064], + [20083,61211], + [20085,57914], + [20087,64864], + [20089,40676], + [20091,89087], + [20093,52599], + [20095,60469], + [20097,53274], + [20099,47643], + [20101,52125], + [20103,73013], + [20105,45076], + [20107,48778], + [20109,51740], + [20111,46338], + [20113,59089], + [20115,52123], + [20117,51895], + [20119,59316], + [20121,71995], + [20123,46203], + [20125,45157], + [20127,55658], + [20129,47750], + [20131,63216], + [20133,46291], + [20135,56492], + [20137,49038], + [20139,54090], + [20141,51286], + [20143,54784], + [20145,49917], + [20147,50093], + [20149,66835], + [20151,52327], + [20153,53207], + [20155,49936], + [20157,47976], + [20159,53012], + [20161,51208], + [20163,49415], + [20165,47981], + [20167,44792], + [20169,52200], + [20171,65417], + [20173,56524], + [20175,49291], + [20177,56762], + [20179,62885], + [20181,54754], + [20183,43429], + [20185,49375], + [20187,52054], + [20189,57806], + [20191,55000], + [20193,60124], + [20195,57966], + [20197,61178], + [20199,63269], + [20201,50588], + [20203,57978], + [20205,48341], + [20207,39643], + [20209,46881], + [21001,38021], + [21003,44036], + [21005,55334], + [21007,45048], + [21009,41459], + [21011,44898], + [21013,26272], + [21015,78327], + [21017,49637], + [21019,48308], + [21021,46382], + [21023,49158], + [21025,27344], + [21027,47190], + [21029,63348], + [21031,41763], + [21033,44775], + [21035,42273], + [21037,63050], + [21039,45109], + [21041,43524], + [21043,34736], + [21045,34819], + [21047,43919], + [21049,54953], + [21051,26840], + [21053,32184], + [21055,45244], + [21057,35344], + [21059,51673], + [21061,43401], + [21063,32306], + [21065,31688], + [21067,57291], + [21069,44612], + [21071,32730], + [21073,56274], + [21075,30114], + [21077,52167], + [21079,52631], + [21081,48714], + [21083,44043], + [21085,38612], + [21087,35899], + [21089,51655], + [21091,57217], + [21093,54367], + [21095,26478], + [21097,48438], + [21099,38396], + [21101,48926], + [21103,53926], + [21105,42929], + [21107,47170], + [21109,32138], + [21111,56586], + [21113,58245], + [21115,37055], + [21117,64339], + [21119,31198], + [21121,30181], + [21123,47643], + [21125,41526], + [21127,32798], + [21129,25275], + [21131,31627], + [21133,29886], + [21135,31147], + [21137,42919], + [21139,50839], + [21141,48014], + [21143,52528], + [21145,46080], + [21147,28105], + [21149,51861], + [21151,50060], + [21153,28147], + [21155,40107], + [21157,55113], + [21159,41013], + [21161,45377], + [21163,56603], + [21165,39325], + [21167,55093], + [21169,37386], + [21171,34879], + [21173,45516], + [21175,36134], + [21177,43590], + [21179,60127], + [21181,38149], + [21183,45564], + [21185,99128], + [21187,48801], + [21189,30284], + [21191,54375], + [21193,33640], + [21195,34856], + [21197,37469], + [21199,39998], + [21201,41902], + [21203,35720], + [21205,38230], + [21207,38390], + [21209,70817], + [21211,67056], + [21213,48623], + [21215,80166], + [21217,44522], + [21219,44005], + [21221,50536], + [21223,53056], + [21225,46673], + [21227,52270], + [21229,53743], + [21231,34914], + [21233,42119], + [21235,39005], + [21237,24623], + [21239,63820], + [22001,43396], + [22003,46446], + [22005,80527], + [22007,43759], + [22009,38565], + [22011,53209], + [22013,30272], + [22015,54268], + [22017,41797], + [22019,51148], + [22021,37691], + [22023,53423], + [22025,40129], + [22027,26776], + [22029,32500], + [22031,46006], + [22033,54948], + [22035,22346], + [22037,51803], + [22039,31965], + [22041,35282], + [22043,42505], + [22045,46861], + [22047,50161], + [22049,39139], + [22051,54032], + [22053,42105], + [22055,56999], + [22057,55506], + [22059,42104], + [22061,35467], + [22063,63389], + [22065,30350], + [22067,32929], + [22069,28567], + [22071,41604], + [22073,41121], + [22075,57204], + [22077,41480], + [22079,47269], + [22081,33816], + [22083,34029], + [22085,40336], + [22087,44661], + [22089,69019], + [22091,43886], + [22093,51603], + [22095,57429], + [22097,36403], + [22099,48656], + [22101,40485], + [22103,68905], + [22105,47832], + [22107,27500], + [22109,48747], + [22111,44100], + [22113,51945], + [22115,49141], + [22117,37570], + [22119,28951], + [22121,65385], + [22123,38500], + [22125,59637], + [22127,38353], + [23001,53509], + [23003,41123], + [23005,73072], + [23007,51422], + [23009,57178], + [23011,55365], + [23013,57751], + [23015,57720], + [23017,49204], + [23019,50808], + [23021,40890], + [23023,63694], + [23025,44256], + [23027,51931], + [23029,41347], + [23031,67830], + [24001,45893], + [24003,100798], + [24005,76866], + [24009,109313], + [24011,58638], + [24013,96769], + [24015,76887], + [24017,100003], + [24019,52917], + [24021,97730], + [24023,52617], + [24025,89147], + [24027,121160], + [24029,58598], + [24031,108820], + [24033,84920], + [24035,97034], + [24037,89845], + [24039,37803], + [24041,73547], + [24043,60860], + [24045,56956], + [24047,63499], + [24510,50379], + [25001,74336], + [25003,59230], + [25005,69095], + [25007,71811], + [25009,79263], + [25011,60950], + [25013,55429], + [25015,70876], + [25017,102603], + [25019,107717], + [25021,103291], + [25023,89489], + [25025,69669], + [25027,74679], + [26001,40484], + [26003,45570], + [26005,62965], + [26007,43363], + [26009,56165], + [26011,42290], + [26013,46065], + [26015,64490], + [26017,48819], + [26019,57974], + [26021,50795], + [26023,51947], + [26025,48607], + [26027,55107], + [26029,55760], + [26031,48044], + [26033,46486], + [26035,39565], + [26037,70390], + [26039,47977], + [26041,47434], + [26043,51645], + [26045,64348], + [26047,55829], + [26049,48588], + [26051,44619], + [26053,38839], + [26055,63575], + [26057,47848], + [26059,49622], + [26061,43183], + [26063,48289], + [26065,52872], + [26067,57043], + [26069,43678], + [26071,41599], + [26073,45116], + [26075,53658], + [26077,56511], + [26079,46898], + [26081,63053], + [26083,50292], + [26085,37320], + [26087,62641], + [26089,65249], + [26091,55450], + [26093,84221], + [26095,45469], + [26097,47938], + [26099,62855], + [26101,50055], + [26103,53970], + [26105,51725], + [26107,45018], + [26109,46828], + [26111,62625], + [26113,47194], + [26115,62203], + [26117,49448], + [26119,41772], + [26121,50854], + [26123,50326], + [26125,79698], + [26127,50104], + [26129,40373], + [26131,41546], + [26133,44032], + [26135,42335], + [26137,54332], + [26139,69314], + [26141,47948], + [26143,42054], + [26145,48000], + [26147,56951], + [26149,52086], + [26151,47672], + [26153,45500], + [26155,56032], + [26157,49988], + [26159,54485], + [26161,72586], + [26163,47301], + [26165,47193], + [27001,49351], + [27003,82175], + [27005,60284], + [27007,49160], + [27009,57715], + [27011,53900], + [27013,57429], + [27015,61120], + [27017,63098], + [27019,101496], + [27021,52204], + [27023,55269], + [27025,83464], + [27027,65269], + [27029,50386], + [27031,57432], + [27033,52087], + [27035,56549], + [27037,86036], + [27039,74575], + [27041,63819], + [27043,53156], + [27045,61207], + [27047,53631], + [27049,66800], + [27051,55466], + [27053,78167], + [27055,60382], + [27057,56709], + [27059,74616], + [27061,55139], + [27063,58727], + [27065,57163], + [27067,60294], + [27069,59643], + [27071,50870], + [27073,53071], + [27075,61452], + [27077,49967], + [27079,71080], + [27081,53077], + [27083,57730], + [27085,62121], + [27087,44688], + [27089,60118], + [27091,52798], + [27093,63452], + [27095,56135], + [27097,57815], + [27099,54295], + [27101,60231], + [27103,67399], + [27105,55304], + [27107,55085], + [27109,76951], + [27111,58682], + [27113,60122], + [27115,53422], + [27117,52917], + [27119,59343], + [27121,61275], + [27123,64660], + [27125,58576], + [27127,55404], + [27129,59028], + [27131,68584], + [27133,63005], + [27135,62202], + [27137,55646], + [27139,102152], + [27141,89250], + [27143,63439], + [27145,62789], + [27147,64903], + [27149,60559], + [27151,51620], + [27153,53585], + [27155,51957], + [27157,65226], + [27159,46605], + [27161,56762], + [27163,96671], + [27165,54065], + [27167,60595], + [27169,59329], + [27171,84974], + [27173,59210], + [28001,29936], + [28003,42086], + [28005,33981], + [28007,33767], + [28009,36258], + [28011,29854], + [28013,37263], + [28015,46052], + [28017,36548], + [28019,36777], + [28021,29338], + [28023,43207], + [28025,31833], + [28027,29121], + [28029,42151], + [28031,38178], + [28033,67038], + [28035,39840], + [28037,40219], + [28039,47292], + [28041,49677], + [28043,40122], + [28045,48119], + [28047,47894], + [28049,44625], + [28051,21504], + [28053,28962], + [28055,24208], + [28057,44567], + [28059,51657], + [28061,35872], + [28063,25019], + [28065,32116], + [28067,41775], + [28069,31103], + [28071,50272], + [28073,60328], + [28075,42534], + [28077,41914], + [28079,37096], + [28081,50559], + [28083,26735], + [28085,42606], + [28087,50441], + [28089,71824], + [28091,32090], + [28093,42233], + [28095,42354], + [28097,39840], + [28099,37987], + [28101,35958], + [28103,33784], + [28105,40453], + [28107,38304], + [28109,46901], + [28111,42469], + [28113,31784], + [28115,44759], + [28117,39256], + [28119,25283], + [28121,65996], + [28123,34943], + [28125,29394], + [28127,43850], + [28129,43105], + [28131,45483], + [28133,30838], + [28135,29864], + [28137,51030], + [28139,39246], + [28141,37681], + [28143,39370], + [28145,45754], + [28147,30961], + [28149,45113], + [28151,29705], + [28153,37706], + [28155,45730], + [28157,27313], + [28159,34724], + [28161,41464], + [28163,33279], + [29001,41929], + [29003,58772], + [29005,50236], + [29007,44261], + [29009,44403], + [29011,44125], + [29013,47625], + [29015,40249], + [29017,44158], + [29019,55328], + [29021,51916], + [29023,39915], + [29025,49839], + [29027,56938], + [29029,53478], + [29031,53732], + [29033,50830], + [29035,39530], + [29037,69433], + [29039,39365], + [29041,46738], + [29043,60645], + [29045,48909], + [29047,70510], + [29049,62701], + [29051,60066], + [29053,52735], + [29055,44438], + [29057,40399], + [29059,43542], + [29061,51679], + [29063,55918], + [29065,42100], + [29067,37425], + [29069,36380], + [29071,57214], + [29073,54885], + [29075,47790], + [29077,46086], + [29079,45594], + [29081,42917], + [29083,45795], + [29085,34182], + [29087,49524], + [29089,52700], + [29091,38357], + [29093,37435], + [29095,55134], + [29097,48357], + [29099,65454], + [29101,55273], + [29103,40000], + [29105,47257], + [29107,58766], + [29109,44742], + [29111,45988], + [29113,64196], + [29115,45930], + [29117,46992], + [29119,41643], + [29121,42746], + [29123,43636], + [29125,47569], + [29127,48784], + [29129,47298], + [29131,47171], + [29133,35357], + [29135,58010], + [29137,43966], + [29139,46757], + [29141,39003], + [29143,38679], + [29145,50813], + [29147,44232], + [29149,33601], + [29151,61687], + [29153,31947], + [29155,33859], + [29157,55863], + [29159,46157], + [29161,44154], + [29163,46385], + [29165,80393], + [29167,45660], + [29169,53492], + [29171,42849], + [29173,55377], + [29175,47740], + [29177,61957], + [29179,40324], + [29181,34971], + [29183,84978], + [29185,38870], + [29186,60129], + [29187,46466], + [29189,67420], + [29195,44720], + [29197,42694], + [29199,50085], + [29201,44139], + [29203,34265], + [29205,44083], + [29207,41062], + [29209,49656], + [29211,46481], + [29213,46031], + [29215,35067], + [29217,43276], + [29219,60125], + [29221,41483], + [29223,34316], + [29225,50560], + [29227,53580], + [29229,34776], + [29510,43896], + [30001,43201], + [30003,49859], + [30005,41279], + [30007,60594], + [30009,58707], + [30011,48000], + [30013,49913], + [30015,42298], + [30017,52965], + [30019,57440], + [30021,58596], + [30023,41820], + [30025,64545], + [30027,50540], + [30029,56182], + [30031,66397], + [30033,42000], + [30035,36045], + [30037,43875], + [30039,49881], + [30041,49321], + [30043,69646], + [30045,43661], + [30047,48829], + [30049,65791], + [30051,44875], + [30053,40140], + [30055,49701], + [30057,54107], + [30059,46607], + [30061,41705], + [30063,54062], + [30065,43274], + [30067,53068], + [30069,51250], + [30071,46212], + [30073,51151], + [30075,54427], + [30077,54667], + [30079,43625], + [30081,53054], + [30083,67205], + [30085,43194], + [30087,57992], + [30089,40823], + [30091,55521], + [30093,45718], + [30095,64645], + [30097,49886], + [30099,55000], + [30101,50721], + [30103,43047], + [30105,53162], + [30107,39655], + [30109,53958], + [30111,61264], + [31001,53023], + [31003,49912], + [31005,42813], + [31007,51750], + [31009,51094], + [31011,54979], + [31013,54004], + [31015,47778], + [31017,43098], + [31019,59431], + [31021,54203], + [31023,58979], + [31025,71846], + [31027,61869], + [31029,57009], + [31031,56651], + [31033,53871], + [31035,57173], + [31037,58872], + [31039,56768], + [31041,52184], + [31043,59231], + [31045,50750], + [31047,53721], + [31049,47287], + [31051,56905], + [31053,54085], + [31055,64629], + [31057,41716], + [31059,60313], + [31061,49282], + [31063,54659], + [31065,48838], + [31067,53110], + [31069,43750], + [31071,53000], + [31073,64053], + [31075,46500], + [31077,47869], + [31079,57104], + [31081,64210], + [31083,49835], + [31085,51726], + [31087,49962], + [31089,60387], + [31091,41125], + [31093,59348], + [31095,44510], + [31097,54712], + [31099,60266], + [31101,50735], + [31103,56500], + [31105,53403], + [31107,52332], + [31109,60527], + [31111,59795], + [31113,52708], + [31115,51000], + [31117,48125], + [31119,53188], + [31121,55649], + [31123,46194], + [31125,49032], + [31127,51828], + [31129,43388], + [31131,59167], + [31133,46452], + [31135,65543], + [31137,59040], + [31139,64511], + [31141,62305], + [31143,67719], + [31145,48808], + [31147,47917], + [31149,56250], + [31151,51502], + [31153,82032], + [31155,68682], + [31157,49745], + [31159,70389], + [31161,45371], + [31163,50781], + [31165,48269], + [31167,63986], + [31169,51821], + [31171,59432], + [31173,51034], + [31175,55324], + [31177,71430], + [31179,56456], + [31181,46188], + [31183,51591], + [31185,60298], + [32001,57824], + [32003,59340], + [32005,66810], + [32007,81232], + [32009,37375], + [32011,67105], + [32013,67756], + [32015,88030], + [32017,58462], + [32019,56875], + [32021,35806], + [32023,47300], + [32027,50491], + [32029,66292], + [32031,64791], + [32033,60827], + [32510,55718], + [33001,69447], + [33003,63153], + [33005,64751], + [33007,47117], + [33009,63389], + [33011,81460], + [33013,75737], + [33015,93756], + [33017,72960], + [33019,61312], + [34001,62110], + [34003,101144], + [34005,87416], + [34007,70451], + [34009,67074], + [34011,54149], + [34013,61510], + [34015,87283], + [34017,71189], + [34019,115379], + [34021,81057], + [34023,89533], + [34025,99733], + [34027,115527], + [34029,70909], + [34031,69688], + [34033,66842], + [34035,113611], + [34037,94520], + [34039,80198], + [34041,81307], + [35001,53329], + [35003,41910], + [35005,43359], + [35006,39413], + [35007,36302], + [35009,45092], + [35011,31625], + [35013,40973], + [35015,65328], + [35017,37843], + [35019,24798], + [35021,29375], + [35023,42526], + [35025,60546], + [35027,46216], + [35028,121324], + [35029,29360], + [35031,33834], + [35033,28446], + [35035,41988], + [35037,29035], + [35039,39952], + [35041,42702], + [35043,63802], + [35045,50518], + [35047,30946], + [35049,61200], + [35051,29755], + [35053,42083], + [35055,38329], + [35057,36120], + [35059,35884], + [35061,48945], + [36001,66252], + [36003,48412], + [36005,40088], + [36007,52226], + [36009,48703], + [36011,58377], + [36013,46820], + [36015,54940], + [36017,52002], + [36019,56365], + [36021,66787], + [36023,56023], + [36025,49544], + [36027,81219], + [36029,58121], + [36031,56763], + [36033,50407], + [36035,50482], + [36037,60524], + [36039,53601], + [36041,58675], + [36043,54646], + [36045,52685], + [36047,60231], + [36049,54524], + [36051,59510], + [36053,61633], + [36055,60075], + [36057,49462], + [36059,116100], + [36061,86553], + [36063,55522], + [36065,56027], + [36067,61359], + [36069,64944], + [36071,79944], + [36073,52620], + [36075,55967], + [36077,54028], + [36079,104486], + [36081,68666], + [36083,68991], + [36085,82783], + [36087,93024], + [36089,50940], + [36091,84291], + [36093,65499], + [36095,57714], + [36097,52327], + [36099,54545], + [36101,53663], + [36103,101031], + [36105,57426], + [36107,62999], + [36109,60240], + [36111,64304], + [36113,61024], + [36115,57258], + [36117,59449], + [36119,96610], + [36121,58052], + [36123,56563], + [37001,49688], + [37003,48756], + [37005,37830], + [37007,40213], + [37009,40962], + [37011,40340], + [37013,45212], + [37015,35527], + [37017,36173], + [37019,58236], + [37021,52207], + [37023,44557], + [37025,67328], + [37027,44511], + [37029,64572], + [37031,57194], + [37033,45733], + [37035,52056], + [37037,67031], + [37039,41438], + [37041,46519], + [37043,42222], + [37045,42247], + [37047,37628], + [37049,52687], + [37051,46875], + [37053,69964], + [37055,59381], + [37057,49546], + [37059,60434], + [37061,41764], + [37063,60958], + [37065,36866], + [37067,51569], + [37069,55193], + [37071,52835], + [37073,50750], + [37075,39571], + [37077,55856], + [37079,39837], + [37081,53261], + [37083,35502], + [37085,53554], + [37087,51659], + [37089,55945], + [37091,41028], + [37093,48072], + [37095,39663], + [37097,60955], + [37099,47252], + [37101,59865], + [37103,38158], + [37105,49994], + [37107,39402], + [37109,57536], + [37111,43646], + [37113,45507], + [37115,45873], + [37117,40090], + [37119,66641], + [37121,46103], + [37123,44146], + [37125,59963], + [37127,49537], + [37129,54891], + [37131,37146], + [37133,50278], + [37135,71723], + [37137,46728], + [37139,50558], + [37141,57240], + [37143,47162], + [37145,51020], + [37147,47437], + [37149,48787], + [37151,47288], + [37153,36148], + [37155,34976], + [37157,43579], + [37159,49842], + [37161,42608], + [37163,42151], + [37165,37238], + [37167,52623], + [37169,48054], + [37171,43597], + [37173,39317], + [37175,50212], + [37177,35300], + [37179,80033], + [37181,40529], + [37183,80591], + [37185,36466], + [37187,35979], + [37189,47526], + [37191,44416], + [37193,44107], + [37195,43877], + [37197,44682], + [37199,42222], + [38001,56681], + [38003,58365], + [38005,47667], + [38007,75208], + [38009,60381], + [38011,62442], + [38013,77232], + [38015,71524], + [38017,64482], + [38019,64798], + [38021,65492], + [38023,62865], + [38025,76719], + [38027,54868], + [38029,55902], + [38031,61425], + [38033,58690], + [38035,54051], + [38037,50938], + [38039,53565], + [38041,60164], + [38043,54643], + [38045,60806], + [38047,59375], + [38049,64179], + [38051,52587], + [38053,77845], + [38055,68529], + [38057,82181], + [38059,70556], + [38061,72147], + [38063,52039], + [38065,78929], + [38067,64549], + [38069,55660], + [38071,58910], + [38073,63903], + [38075,73182], + [38077,61371], + [38079,43158], + [38081,63073], + [38083,51055], + [38085,38939], + [38087,63611], + [38089,72045], + [38091,70724], + [38093,57674], + [38095,52300], + [38097,64453], + [38099,55700], + [38101,68871], + [38103,57582], + [38105,87161], + [39001,39079], + [39003,53131], + [39005,52823], + [39007,46700], + [39009,40905], + [39011,64074], + [39013,50904], + [39015,54575], + [39017,66117], + [39019,55267], + [39021,60112], + [39023,50873], + [39025,66968], + [39027,52815], + [39029,48345], + [39031,46606], + [39033,44971], + [39035,50366], + [39037,55620], + [39039,59931], + [39041,106908], + [39043,54226], + [39045,67609], + [39047,47308], + [39049,61305], + [39051,63092], + [39053,44858], + [39055,82303], + [39057,68720], + [39059,45917], + [39061,57212], + [39063,58450], + [39065,50506], + [39067,49689], + [39069,59695], + [39071,44169], + [39073,52363], + [39075,63753], + [39077,52560], + [39079,47550], + [39081,46581], + [39083,57749], + [39085,64466], + [39087,45118], + [39089,64589], + [39091,56754], + [39093,58427], + [39095,48736], + [39097,68022], + [39099,46042], + [39101,47498], + [39103,76600], + [39105,44899], + [39107,62952], + [39109,61041], + [39111,45289], + [39113,51542], + [39115,42341], + [39117,59452], + [39119,47254], + [39121,46897], + [39123,59099], + [39125,55330], + [39127,50150], + [39129,63633], + [39131,42832], + [39133,57618], + [39135,58957], + [39137,64822], + [39139,49547], + [39141,51092], + [39143,54089], + [39145,41330], + [39147,52500], + [39149,63806], + [39151,53860], + [39153,57181], + [39155,47280], + [39157,53243], + [39159,86715], + [39161,54254], + [39163,45673], + [39165,87125], + [39167,50021], + [39169,58300], + [39171,53183], + [39173,62390], + [39175,55767], + [40001,34695], + [40003,61852], + [40005,39316], + [40007,52349], + [40009,50721], + [40011,45792], + [40013,44212], + [40015,46592], + [40017,72056], + [40019,51419], + [40021,42774], + [40023,34489], + [40025,46328], + [40027,64016], + [40029,40938], + [40031,52161], + [40033,50885], + [40035,43329], + [40037,51318], + [40039,49900], + [40041,41696], + [40043,52428], + [40045,53245], + [40047,54006], + [40049,47125], + [40051,60875], + [40053,57727], + [40055,41488], + [40057,48344], + [40059,46154], + [40061,42348], + [40063,39365], + [40065,49703], + [40067,39895], + [40069,41332], + [40071,46809], + [40073,57777], + [40075,38019], + [40077,44214], + [40079,40677], + [40081,50671], + [40083,65357], + [40085,49399], + [40087,67662], + [40089,37061], + [40091,39084], + [40093,54332], + [40095,45746], + [40097,50345], + [40099,52478], + [40101,43078], + [40103,56117], + [40105,43145], + [40107,38411], + [40109,54520], + [40111,42998], + [40113,49103], + [40115,39872], + [40117,48009], + [40119,41603], + [40121,46784], + [40123,50392], + [40125,49250], + [40127,37692], + [40129,51302], + [40131,65434], + [40133,39373], + [40135,40351], + [40137,47214], + [40139,52282], + [40141,42280], + [40143,55517], + [40145,62795], + [40147,54997], + [40149,53274], + [40151,54282], + [40153,60147], + [41001,45998], + [41003,62077], + [41005,80484], + [41007,54886], + [41009,62257], + [41011,45051], + [41013,49006], + [41015,48440], + [41017,67043], + [41019,47267], + [41021,47500], + [41023,44712], + [41025,40735], + [41027,65679], + [41029,53412], + [41031,53277], + [41033,45616], + [41035,46491], + [41037,37898], + [41039,52426], + [41041,47882], + [41043,55893], + [41045,43313], + [41047,59625], + [41049,54269], + [41051,69176], + [41053,62691], + [41055,51071], + [41057,49895], + [41059,54699], + [41061,52171], + [41063,51224], + [41065,53105], + [41067,82215], + [41069,40926], + [41071,63902], + [42001,67253], + [42003,61043], + [42005,51410], + [42007,57807], + [42009,50509], + [42011,63728], + [42013,49181], + [42015,52358], + [42017,89139], + [42019,70668], + [42021,46659], + [42023,41165], + [42025,57006], + [42027,60403], + [42029,100214], + [42031,46680], + [42033,49015], + [42035,50923], + [42037,50550], + [42039,50304], + [42041,71269], + [42043,60715], + [42045,74477], + [42047,53440], + [42049,51529], + [42051,47364], + [42053,39717], + [42055,63379], + [42057,53476], + [42059,54776], + [42061,51678], + [42063,49320], + [42065,47603], + [42067,53879], + [42069,52821], + [42071,66056], + [42073,50204], + [42075,60281], + [42077,63897], + [42079,53473], + [42081,54241], + [42083,48647], + [42085,50696], + [42087,50219], + [42089,63934], + [42091,91546], + [42093,58333], + [42095,70471], + [42097,48671], + [42099,63718], + [42101,45927], + [42103,65928], + [42105,45419], + [42107,52280], + [42109,58997], + [42111,49089], + [42113,47407], + [42115,54966], + [42117,51324], + [42119,59399], + [42121,49945], + [42123,50250], + [42125,63543], + [42127,56096], + [42129,60471], + [42131,59415], + [42133,66457], + [44001,83092], + [44003,73521], + [44005,79454], + [44007,58974], + [44009,85531], + [45001,38741], + [45003,51399], + [45005,27185], + [45007,50865], + [45009,31422], + [45011,35803], + [45013,68377], + [45015,63309], + [45017,46339], + [45019,64022], + [45021,36883], + [45023,42442], + [45025,41505], + [45027,40900], + [45029,36324], + [45031,38448], + [45033,30812], + [45035,63080], + [45037,49127], + [45039,38213], + [45041,47058], + [45043,48456], + [45045,60351], + [45047,42336], + [45049,33429], + [45051,50704], + [45053,45601], + [45055,51479], + [45057,58849], + [45059,43304], + [45061,32371], + [45063,61173], + [45065,43633], + [45067,32063], + [45069,33586], + [45071,44226], + [45073,49134], + [45075,37955], + [45077,49573], + [45079,54767], + [45081,45714], + [45083,52332], + [45085,45661], + [45087,41186], + [45089,32485], + [45091,65361], + [46003,64083], + [46005,52313], + [46007,47500], + [46009,54737], + [46011,58136], + [46013,58216], + [46015,57196], + [46017,34808], + [46019,46508], + [46021,54449], + [46023,50481], + [46025,48980], + [46027,50724], + [46029,56376], + [46031,35759], + [46033,58522], + [46035,50570], + [46037,46679], + [46039,65437], + [46041,47475], + [46043,58684], + [46045,71324], + [46047,50588], + [46049,55096], + [46051,58158], + [46053,43438], + [46055,42250], + [46057,67105], + [46059,54155], + [46061,64696], + [46063,59655], + [46065,64783], + [46067,57089], + [46069,57788], + [46071,33295], + [46073,49632], + [46075,46149], + [46077,61699], + [46079,61846], + [46081,52641], + [46083,82473], + [46085,53862], + [46087,61507], + [46089,44574], + [46091,63723], + [46093,60578], + [46095,30650], + [46097,52910], + [46099,61772], + [46101,61538], + [46102,31997], + [46103,57039], + [46105,57981], + [46107,54583], + [46109,50348], + [46111,56875], + [46115,54423], + [46117,71382], + [46119,62153], + [46121,24331], + [46123,57720], + [46125,59242], + [46127,70378], + [46129,55583], + [46135,58342], + [46137,37400], + [47001,50392], + [47003,50415], + [47005,37512], + [47007,44122], + [47009,56667], + [47011,51331], + [47013,39803], + [47015,55330], + [47017,42637], + [47019,38092], + [47021,61913], + [47023,51946], + [47025,36835], + [47027,32167], + [47029,36716], + [47031,50351], + [47033,44717], + [47035,45958], + [47037,60388], + [47039,42031], + [47041,45511], + [47043,53076], + [47045,44185], + [47047,60711], + [47049,36520], + [47051,51585], + [47053,43171], + [47055,49614], + [47057,44064], + [47059,42595], + [47061,40516], + [47063,43619], + [47065,55070], + [47067,30136], + [47069,40304], + [47071,40682], + [47073,41924], + [47075,37905], + [47077,43305], + [47079,40502], + [47081,43596], + [47083,42711], + [47085,45667], + [47087,35207], + [47089,49139], + [47091,36004], + [47093,57470], + [47095,35191], + [47097,39896], + [47099,43614], + [47101,37277], + [47103,49485], + [47105,58065], + [47107,43285], + [47109,39161], + [47111,37430], + [47113,48161], + [47115,49432], + [47117,53197], + [47119,57170], + [47121,49167], + [47123,42429], + [47125,57541], + [47127,57708], + [47129,41333], + [47131,39615], + [47133,37197], + [47135,41034], + [47137,39554], + [47139,43306], + [47141,44259], + [47143,42206], + [47145,53367], + [47147,63307], + [47149,67429], + [47151,38864], + [47153,49370], + [47155,49610], + [47157,51657], + [47159,48068], + [47161,45809], + [47163,46684], + [47165,67204], + [47167,61291], + [47169,56321], + [47171,41890], + [47173,44671], + [47175,42724], + [47177,41125], + [47179,48334], + [47181,41427], + [47183,39937], + [47185,41998], + [47187,112962], + [47189,75991], + [48001,43455], + [48003,76158], + [48005,50453], + [48007,45137], + [48009,63835], + [48011,72500], + [48013,55366], + [48015,66206], + [48017,52273], + [48019,58661], + [48021,64597], + [48023,40739], + [48025,44578], + [48027,54884], + [48029,57157], + [48031,66390], + [48033,72188], + [48035,52148], + [48037,50164], + [48039,81447], + [48041,49181], + [48043,47080], + [48045,40227], + [48047,28333], + [48049,48365], + [48051,57731], + [48053,59492], + [48055,54152], + [48057,58776], + [48059,48651], + [48061,38758], + [48063,48207], + [48065,74872], + [48067,44848], + [48069,50142], + [48071,91141], + [48073,48186], + [48075,43181], + [48077,55989], + [48079,40962], + [48081,45000], + [48083,46743], + [48085,96913], + [48087,39120], + [48089,52559], + [48091,79936], + [48093,53516], + [48095,47500], + [48097,60202], + [48099,52893], + [48101,32305], + [48103,65969], + [48105,47386], + [48107,40759], + [48109,37900], + [48111,58811], + [48113,59607], + [48115,43239], + [48117,49701], + [48119,51038], + [48121,86913], + [48123,55357], + [48125,42540], + [48127,27161], + [48129,42961], + [48131,41186], + [48133,37276], + [48135,62973], + [48137,40766], + [48139,76871], + [48141,46871], + [48143,52742], + [48145,39497], + [48147,54648], + [48149,60189], + [48151,46146], + [48153,50580], + [48155,43625], + [48157,97743], + [48159,53783], + [48161,49471], + [48163,46729], + [48165,63054], + [48167,73330], + [48169,49627], + [48171,59155], + [48173,78456], + [48175,60690], + [48177,53577], + [48179,47952], + [48181,54815], + [48183,50180], + [48185,52913], + [48187,74496], + [48189,48384], + [48191,34673], + [48193,50825], + [48195,38000], + [48197,41859], + [48199,60339], + [48201,61705], + [48203,52220], + [48205,58298], + [48207,40313], + [48209,68717], + [48211,70625], + [48213,47355], + [48215,40014], + [48217,53307], + [48219,48248], + [48221,64041], + [48223,52078], + [48225,37904], + [48227,54208], + [48229,31677], + [48231,54959], + [48233,52524], + [48235,47500], + [48237,52045], + [48239,62806], + [48241,44370], + [48243,53088], + [48245,51248], + [48247,33382], + [48249,41505], + [48251,64359], + [48253,50344], + [48255,56127], + [48257,70107], + [48259,84747], + [48261,38021], + [48263,44688], + [48265,55990], + [48267,43328], + [48269,52083], + [48271,26738], + [48273,43730], + [48275,48798], + [48277,45117], + [48279,45111], + [48281,60772], + [48283,50151], + [48285,54403], + [48287,54744], + [48289,43045], + [48291,51494], + [48293,44418], + [48295,59091], + [48297,53848], + [48299,53411], + [48301,83750], + [48303,52429], + [48305,43382], + [48307,47707], + [48309,49778], + [48311,62000], + [48313,52664], + [48315,37662], + [48317,66610], + [48319,42276], + [48321,48913], + [48323,39625], + [48325,62599], + [48327,36395], + [48329,79421], + [48331,47902], + [48333,49306], + [48335,51492], + [48337,51765], + [48339,80902], + [48341,54871], + [48343,41359], + [48345,43859], + [48347,44847], + [48349,48529], + [48351,40101], + [48353,45537], + [48355,55919], + [48357,50464], + [48359,64545], + [48361,59399], + [48363,50154], + [48365,52982], + [48367,77503], + [48369,55359], + [48371,52397], + [48373,49279], + [48375,42528], + [48377,25098], + [48379,51579], + [48381,68261], + [48383,74868], + [48385,35862], + [48387,39142], + [48389,53311], + [48391,50076], + [48393,68750], + [48395,52928], + [48397,100920], + [48399,44940], + [48401,55234], + [48403,34992], + [48405,40353], + [48407,41614], + [48409,56556], + [48411,45083], + [48413,53229], + [48415,54326], + [48417,46935], + [48419,42522], + [48421,51926], + [48423,56810], + [48425,60632], + [48427,30387], + [48429,46232], + [48431,59868], + [48433,51250], + [48435,54306], + [48437,39771], + [48439,67700], + [48441,53143], + [48443,43208], + [48445,44627], + [48447,40000], + [48449,50196], + [48451,53903], + [48453,75887], + [48455,41357], + [48457,44497], + [48459,52162], + [48461,52171], + [48463,41679], + [48465,46147], + [48467,54654], + [48469,56834], + [48471,43742], + [48473,59642], + [48475,62986], + [48477,54971], + [48479,46475], + [48481,48310], + [48483,49315], + [48485,48650], + [48487,45302], + [48489,35521], + [48491,87337], + [48493,76692], + [48495,60366], + [48497,64536], + [48499,53394], + [48501,70005], + [48503,50635], + [48505,33952], + [48507,34459], + [49001,55221], + [49003,62233], + [49005,59038], + [49007,51158], + [49009,75417], + [49011,83310], + [49013,63224], + [49015,55554], + [49017,54565], + [49019,51557], + [49021,51807], + [49023,61463], + [49025,47044], + [49027,62242], + [49029,91341], + [49031,42813], + [49033,57902], + [49035,74865], + [49037,45394], + [49039,53838], + [49041,54799], + [49043,102958], + [49045,74562], + [49047,65264], + [49049,74665], + [49051,85166], + [49053,59839], + [49055,44245], + [49057,67244], + [50001,68825], + [50003,56183], + [50005,50563], + [50007,73647], + [50009,44349], + [50011,65485], + [50013,71587], + [50015,64003], + [50017,60925], + [50019,49168], + [50021,56139], + [50023,62791], + [50025,51985], + [50027,60987], + [51001,46073], + [51003,79880], + [51005,47673], + [51007,57946], + [51009,52888], + [51011,58696], + [51013,120071], + [51015,62711], + [51017,49738], + [51019,64199], + [51021,48531], + [51023,71110], + [51025,44434], + [51027,31956], + [51029,49025], + [51031,49664], + [51033,65103], + [51035,44835], + [51036,57198], + [51037,40573], + [51041,82599], + [51043,80026], + [51045,55708], + [51047,77935], + [51049,47469], + [51051,29932], + [51053,60346], + [51057,51954], + [51059,124831], + [51061,100783], + [51063,51521], + [51065,76873], + [51067,56254], + [51069,78002], + [51071,54520], + [51073,70537], + [51075,93994], + [51077,36544], + [51079,67398], + [51081,50300], + [51083,42669], + [51085,89390], + [51087,70307], + [51089,37952], + [51091,48587], + [51093,73991], + [51095,87678], + [51097,63982], + [51099,94274], + [51101,66987], + [51103,53711], + [51105,32888], + [51107,142299], + [51109,60975], + [51111,44303], + [51113,57895], + [51115,64237], + [51117,43207], + [51119,57438], + [51121,57977], + [51125,64313], + [51127,87904], + [51131,47227], + [51133,62632], + [51135,45535], + [51137,71548], + [51139,51792], + [51141,43073], + [51143,47690], + [51145,89090], + [51147,47202], + [51149,71912], + [51153,107132], + [51155,53866], + [51157,74284], + [51159,49517], + [51161,68948], + [51163,54600], + [51165,61864], + [51167,39758], + [51169,39820], + [51171,57252], + [51173,40932], + [51175,61348], + [51177,88628], + [51179,111108], + [51181,57962], + [51183,49487], + [51185,42099], + [51187,69116], + [51191,48495], + [51193,53853], + [51195,38888], + [51197,49364], + [51199,92069], + [51510,100939], + [51520,37500], + [51530,32455], + [51540,59471], + [51550,78640], + [51570,54550], + [51580,40655], + [51590,37203], + [51595,27063], + [51600,116979], + [51610,127610], + [51620,40417], + [51630,65641], + [51640,33575], + [51650,56287], + [51660,46679], + [51670,39030], + [51678,42632], + [51680,46409], + [51683,81493], + [51685,88046], + [51690,34371], + [51700,53215], + [51710,51590], + [51720,29000], + [51730,38679], + [51735,97118], + [51740,52175], + [51750,36297], + [51760,47250], + [51770,44230], + [51775,57165], + [51790,52611], + [51800,74884], + [51810,76610], + [51820,45011], + [51830,57463], + [51840,58818], + [53001,48294], + [53003,53715], + [53005,69023], + [53007,58795], + [53009,52192], + [53011,75253], + [53013,53423], + [53015,54506], + [53017,62951], + [53019,41939], + [53021,63584], + [53023,55900], + [53025,55556], + [53027,51240], + [53029,68604], + [53031,55127], + [53033,94974], + [53035,75411], + [53037,56004], + [53039,55773], + [53041,53484], + [53043,54631], + [53045,57634], + [53047,47240], + [53049,46733], + [53051,50591], + [53053,72113], + [53055,63622], + [53057,67028], + [53059,65181], + [53061,86691], + [53063,56904], + [53065,51775], + [53067,72003], + [53069,53227], + [53071,57858], + [53073,62984], + [53075,42745], + [53077,51637], + [54001,38459], + [54003,62515], + [54005,40739], + [54007,41466], + [54009,51496], + [54011,40028], + [54013,38382], + [54015,35024], + [54017,45545], + [54019,41394], + [54021,42636], + [54023,42216], + [54025,40200], + [54027,47857], + [54029,45763], + [54031,47438], + [54033,53022], + [54035,47837], + [54037,80430], + [54039,46639], + [54041,39908], + [54043,42345], + [54045,36168], + [54047,27682], + [54049,50305], + [54051,48557], + [54053,46078], + [54055,40784], + [54057,49936], + [54059,32764], + [54061,52455], + [54063,38540], + [54065,51745], + [54067,40086], + [54069,50584], + [54071,42312], + [54073,56838], + [54075,41882], + [54077,51888], + [54079,60097], + [54081,43748], + [54083,43320], + [54085,43577], + [54087,37373], + [54089,38187], + [54091,48578], + [54093,49118], + [54095,43087], + [54097,40322], + [54099,37988], + [54101,34927], + [54103,43107], + [54105,46048], + [54107,47321], + [54109,42332], + [55001,46369], + [55003,42510], + [55005,52703], + [55007,56096], + [55009,62340], + [55011,57829], + [55013,52672], + [55015,75814], + [55017,59742], + [55019,54012], + [55021,68005], + [55023,50595], + [55025,73893], + [55027,60652], + [55029,61560], + [55031,53986], + [55033,58783], + [55035,59476], + [55037,52181], + [55039,62391], + [55041,45536], + [55043,54800], + [55045,64502], + [55047,55075], + [55049,64124], + [55051,43798], + [55053,53650], + [55055,66291], + [55057,53490], + [55059,63733], + [55061,66192], + [55063,57882], + [55065,60691], + [55067,49491], + [55069,58541], + [55071,56612], + [55073,62633], + [55075,50330], + [55077,52288], + [55078,40921], + [55079,50606], + [55081,59587], + [55083,60908], + [55085,56852], + [55087,65572], + [55089,85215], + [55091,54583], + [55093,72323], + [55095,59994], + [55097,58853], + [55099,47956], + [55101,61336], + [55103,51947], + [55105,57875], + [55107,47532], + [55109,84756], + [55111,59943], + [55113,47714], + [55115,56531], + [55117,60696], + [55119,53020], + [55121,58548], + [55123,52459], + [55125,47072], + [55127,63776], + [55129,50280], + [55131,77663], + [55133,87277], + [55135,58693], + [55137,52810], + [55139,58543], + [55141,54913], + [56001,49322], + [56003,52804], + [56005,82659], + [56007,60161], + [56009,69647], + [56011,65132], + [56013,55896], + [56015,54289], + [56017,51413], + [56019,58132], + [56021,66910], + [56023,66964], + [56025,62772], + [56027,39150], + [56029,63582], + [56031,50903], + [56033,60807], + [56035,77403], + [56037,74843], + [56039,84678], + [56041,63403], + [56043,54158], + [56045,57031] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-individual-mean-2010.json b/data/regional/united-states/economics/income/us-income-individual-mean-2010.json new file mode 100644 index 0000000..16f3d98 --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-individual-mean-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Income Per-Capita", + "description" : "Mean income per-capita from the previous 12 months in 2010 US dollars.", + "units" : "$", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.individual.mean.2010"], + [1001,24568], + [1003,26469], + [1005,15875], + [1007,19918], + [1009,21070], + [1011,20289], + [1013,16916], + [1015,20574], + [1017,16626], + [1019,21322], + [1021,20517], + [1023,17214], + [1025,17372], + [1027,18332], + [1029,17490], + [1031,22797], + [1033,21079], + [1035,15755], + [1037,19209], + [1039,19822], + [1041,19793], + [1043,20284], + [1045,21722], + [1047,16646], + [1049,18152], + [1051,22640], + [1053,16259], + [1055,20439], + [1057,17711], + [1059,18094], + [1061,18351], + [1063,14738], + [1065,16523], + [1067,19716], + [1069,22725], + [1071,18905], + [1073,26529], + [1075,19789], + [1077,22341], + [1079,19370], + [1081,22794], + [1083,24007], + [1085,16524], + [1087,16380], + [1089,29918], + [1091,18323], + [1093,19030], + [1095,19875], + [1097,21548], + [1099,17652], + [1101,24622], + [1103,23090], + [1105,13433], + [1107,16278], + [1109,19013], + [1111,19844], + [1113,17415], + [1115,22192], + [1117,33978], + [1119,14460], + [1121,18713], + [1123,22542], + [1125,22546], + [1127,20516], + [1129,18824], + [1131,12573], + [1133,18055], + [2013,22279], + [2016,29920], + [2020,34678], + [2050,18584], + [2060,31260], + [2068,42245], + [2070,22597], + [2090,30395], + [2100,27979], + [2105,24932], + [2110,34923], + [2122,29127], + [2130,29520], + [2150,26413], + [2158,11269], + [2164,15161], + [2170,27910], + [2180,20549], + [2185,22109], + [2188,21278], + [2195,30971], + [2198,24193], + [2220,29982], + [2230,35536], + [2240,27657], + [2261,30703], + [2275,28731], + [2282,28576], + [2290,18614], + [4001,12294], + [4003,23010], + [4005,22632], + [4007,19600], + [4009,15644], + [4011,21281], + [4012,21165], + [4013,27816], + [4015,21523], + [4017,16745], + [4019,25093], + [4021,21716], + [4023,16209], + [4025,25527], + [4027,18418], + [5001,22142], + [5003,18779], + [5005,21513], + [5007,25186], + [5009,20507], + [5011,18845], + [5013,16457], + [5015,19743], + [5017,14668], + [5019,17186], + [5021,18892], + [5023,20371], + [5025,19481], + [5027,20110], + [5029,19909], + [5031,21728], + [5033,18715], + [5035,18241], + [5037,18248], + [5039,16457], + [5041,17582], + [5043,18903], + [5045,22811], + [5047,18010], + [5049,17067], + [5051,22786], + [5053,22229], + [5055,18225], + [5057,17177], + [5059,18248], + [5061,18216], + [5063,19912], + [5065,17737], + [5067,14874], + [5069,18681], + [5071,16937], + [5073,17699], + [5075,15168], + [5077,13103], + [5079,15024], + [5081,18808], + [5083,19121], + [5085,22473], + [5087,18611], + [5089,19532], + [5091,19654], + [5093,17736], + [5095,17084], + [5097,20010], + [5099,21020], + [5101,15904], + [5103,18244], + [5105,19844], + [5107,15244], + [5109,18122], + [5111,16625], + [5113,16913], + [5115,19693], + [5117,18134], + [5119,27158], + [5121,18751], + [5123,13693], + [5125,24584], + [5127,17668], + [5129,15298], + [5131,22284], + [5133,15590], + [5135,16570], + [5137,16090], + [5139,20447], + [5141,17999], + [5143,22421], + [5145,20900], + [5147,18344], + [5149,16345], + [6001,33961], + [6003,32159], + [6005,26329], + [6007,23404], + [6009,28408], + [6011,21317], + [6013,37818], + [6015,18974], + [6017,34393], + [6019,20329], + [6021,19987], + [6023,24025], + [6025,16395], + [6027,26762], + [6029,20100], + [6031,17875], + [6033,21531], + [6035,19756], + [6037,27344], + [6039,18724], + [6041,53940], + [6043,27064], + [6045,23357], + [6047,18041], + [6049,20536], + [6051,27321], + [6053,25776], + [6055,34310], + [6057,30727], + [6059,34017], + [6061,35680], + [6063,28732], + [6065,24431], + [6067,26953], + [6069,25508], + [6071,21867], + [6073,30715], + [6075,45478], + [6077,22851], + [6079,29790], + [6081,43958], + [6083,29731], + [6085,39804], + [6087,32862], + [6089,23772], + [6091,27389], + [6093,22179], + [6095,28649], + [6097,32597], + [6099,22064], + [6101,22344], + [6103,20198], + [6105,22073], + [6107,17966], + [6109,25483], + [6111,32348], + [6113,27420], + [6115,19937], + [8001,23999], + [8003,18820], + [8005,31898], + [8007,25421], + [8009,21472], + [8011,16505], + [8013,36947], + [8014,35836], + [8015,26110], + [8017,22999], + [8019,34506], + [8021,17541], + [8023,16525], + [8025,18966], + [8027,26860], + [8029,22080], + [8031,30806], + [8033,19244], + [8035,42418], + [8037,36753], + [8039,34782], + [8041,27945], + [8043,19083], + [8045,28457], + [8047,33591], + [8049,30055], + [8051,28490], + [8053,43293], + [8055,23139], + [8057,23814], + [8059,34714], + [8061,22877], + [8063,21086], + [8065,20437], + [8067,29836], + [8069,30046], + [8071,21887], + [8073,23440], + [8075,22564], + [8077,27067], + [8079,46358], + [8081,24563], + [8083,24616], + [8085,23613], + [8087,20181], + [8089,18056], + [8091,29051], + [8093,31663], + [8095,23453], + [8097,64381], + [8099,18429], + [8101,21609], + [8103,28382], + [8105,17199], + [8107,33079], + [8109,18686], + [8111,31232], + [8113,38247], + [8115,21652], + [8117,35770], + [8119,28726], + [8121,23125], + [8123,24732], + [8125,21872], + [9001,48295], + [9003,33151], + [9005,35848], + [9007,37519], + [9009,31720], + [9011,32888], + [9013,33108], + [9015,26457], + [10001,24194], + [10003,31220], + [10005,26779], + [11001,42078], + [12001,24741], + [12003,19593], + [12005,25033], + [12007,16997], + [12009,27606], + [12011,28631], + [12013,15091], + [12015,26938], + [12017,22551], + [12019,26872], + [12021,37046], + [12023,19366], + [12027,15989], + [12029,17066], + [12031,25854], + [12033,23474], + [12035,24939], + [12037,21005], + [12039,16843], + [12041,18309], + [12043,17872], + [12045,17968], + [12047,15794], + [12049,14668], + [12051,14734], + [12053,22775], + [12055,19579], + [12057,27062], + [12059,15285], + [12061,31918], + [12063,17177], + [12065,19647], + [12067,18069], + [12069,25323], + [12071,29445], + [12073,25803], + [12075,18703], + [12077,17003], + [12079,16346], + [12081,28072], + [12083,22384], + [12085,35772], + [12086,22957], + [12087,35516], + [12089,29089], + [12091,28621], + [12093,19664], + [12095,25490], + [12097,20536], + [12099,33610], + [12101,24164], + [12103,28742], + [12105,21881], + [12107,18402], + [12109,36027], + [12111,23296], + [12113,25384], + [12115,33045], + [12117,29795], + [12119,24180], + [12121,18782], + [12123,18649], + [12125,13657], + [12127,24768], + [12129,21892], + [12131,27746], + [12133,18470], + [13001,18977], + [13003,15456], + [13005,17110], + [13007,16379], + [13009,17488], + [13011,19497], + [13013,20882], + [13015,22241], + [13017,15529], + [13019,16049], + [13021,21436], + [13023,18960], + [13025,18905], + [13027,20346], + [13029,28365], + [13031,17812], + [13033,15934], + [13035,20963], + [13037,12452], + [13039,22022], + [13043,16068], + [13045,20523], + [13047,22563], + [13049,16652], + [13051,25397], + [13053,22202], + [13055,15158], + [13057,30217], + [13059,19839], + [13061,13353], + [13063,18958], + [13065,16709], + [13067,33110], + [13069,16664], + [13071,17362], + [13073,29479], + [13075,16528], + [13077,26161], + [13079,20692], + [13081,17187], + [13083,20168], + [13085,25557], + [13087,17833], + [13089,28412], + [13091,16288], + [13093,14871], + [13095,19210], + [13097,24515], + [13099,16330], + [13101,14201], + [13103,23465], + [13105,17100], + [13107,16076], + [13109,19072], + [13111,21103], + [13113,35076], + [13115,20640], + [13117,35385], + [13119,19276], + [13121,37211], + [13123,20439], + [13125,16844], + [13127,28040], + [13129,18285], + [13131,17785], + [13133,24943], + [13135,26901], + [13137,19286], + [13139,23675], + [13141,10925], + [13143,19033], + [13145,31073], + [13147,19124], + [13149,18077], + [13151,25773], + [13153,25206], + [13155,16561], + [13157,22473], + [13159,20263], + [13161,15730], + [13163,15165], + [13165,17629], + [13167,15659], + [13169,21598], + [13171,17725], + [13173,16894], + [13175,19387], + [13177,23867], + [13179,18662], + [13181,19627], + [13183,15068], + [13185,20041], + [13187,20088], + [13189,17261], + [13191,20964], + [13193,12902], + [13195,18975], + [13197,17729], + [13199,18295], + [13201,19895], + [13205,16322], + [13207,23656], + [13209,17168], + [13211,27732], + [13213,16925], + [13215,22514], + [13217,21583], + [13219,34271], + [13221,17572], + [13223,23450], + [13225,18681], + [13227,25892], + [13229,18283], + [13231,21051], + [13233,18214], + [13235,16621], + [13237,25576], + [13239,13642], + [13241,22471], + [13243,17632], + [13245,20604], + [13247,24367], + [13249,16122], + [13251,16189], + [13253,19263], + [13255,19607], + [13257,18285], + [13259,15612], + [13261,17436], + [13263,18007], + [13265,13955], + [13267,16742], + [13269,14693], + [13271,13420], + [13273,15553], + [13275,21261], + [13277,18394], + [13279,17974], + [13281,21527], + [13283,16710], + [13285,19699], + [13287,15973], + [13289,15904], + [13291,24182], + [13293,17398], + [13295,19440], + [13297,22521], + [13299,18295], + [13301,15987], + [13303,15033], + [13305,18393], + [13307,16295], + [13309,10043], + [13311,23680], + [13313,19780], + [13315,12692], + [13317,16993], + [13319,17929], + [13321,18348], + [15001,26194], + [15003,29516], + [15005,43308], + [15007,26513], + [15009,29180], + [16001,27915], + [16003,22730], + [16005,21275], + [16007,19284], + [16009,18312], + [16011,18633], + [16013,32656], + [16015,24288], + [16017,24745], + [16019,23218], + [16021,18011], + [16023,20414], + [16025,19659], + [16027,18366], + [16029,20637], + [16031,17782], + [16033,19737], + [16035,20507], + [16037,22625], + [16039,20388], + [16041,17967], + [16043,18616], + [16045,20431], + [16047,17694], + [16049,18980], + [16051,19019], + [16053,16947], + [16055,24418], + [16057,20218], + [16059,21699], + [16061,18580], + [16063,19011], + [16065,13735], + [16067,17747], + [16069,23899], + [16071,17950], + [16073,17373], + [16075,18814], + [16077,18412], + [16079,19020], + [16081,23633], + [16083,19892], + [16085,27577], + [16087,20015], + [17001,24308], + [17003,15858], + [17005,24341], + [17007,26105], + [17009,17133], + [17011,24103], + [17013,23109], + [17015,25914], + [17017,19825], + [17019,24553], + [17021,21519], + [17023,23173], + [17025,20802], + [17027,25392], + [17029,20601], + [17031,29335], + [17033,21545], + [17035,21262], + [17037,24179], + [17039,24320], + [17041,21438], + [17043,37849], + [17045,22175], + [17047,21113], + [17049,24843], + [17051,21663], + [17053,23401], + [17055,18504], + [17057,20309], + [17059,21537], + [17061,22107], + [17063,27895], + [17065,21602], + [17067,22885], + [17069,18515], + [17071,22492], + [17073,24915], + [17075,23400], + [17077,19294], + [17079,21467], + [17081,21370], + [17083,24368], + [17085,26819], + [17087,16402], + [17089,29480], + [17091,22888], + [17093,30565], + [17095,20908], + [17097,38120], + [17099,24982], + [17101,19297], + [17103,24440], + [17105,23259], + [17107,22063], + [17109,18344], + [17111,31838], + [17113,28167], + [17115,24726], + [17117,23222], + [17119,26127], + [17121,20493], + [17123,24991], + [17125,23427], + [17127,20216], + [17129,26281], + [17131,25332], + [17133,31091], + [17135,21700], + [17137,23244], + [17139,22954], + [17141,24959], + [17143,28157], + [17145,17926], + [17147,26492], + [17149,19996], + [17151,20134], + [17153,18444], + [17155,27004], + [17157,19950], + [17159,22874], + [17161,25071], + [17163,24770], + [17165,20903], + [17167,28394], + [17169,20649], + [17171,27530], + [17173,21891], + [17175,25311], + [17177,22608], + [17179,27036], + [17181,19512], + [17183,20218], + [17185,23350], + [17187,20047], + [17189,24846], + [17191,21493], + [17193,22081], + [17195,23405], + [17197,29811], + [17199,22164], + [17201,24008], + [17203,29475], + [18001,19089], + [18003,24532], + [18005,26860], + [18007,21949], + [18009,21783], + [18011,38696], + [18013,24312], + [18015,23163], + [18017,20562], + [18019,23592], + [18021,20569], + [18023,21131], + [18025,18598], + [18027,20254], + [18029,25023], + [18031,22719], + [18033,21779], + [18035,20405], + [18037,24801], + [18039,22187], + [18041,18928], + [18043,25971], + [18045,20949], + [18047,23090], + [18049,21119], + [18051,22542], + [18053,19792], + [18055,20676], + [18057,38500], + [18059,28017], + [18061,23539], + [18063,28880], + [18065,19879], + [18067,23759], + [18069,21575], + [18071,21498], + [18073,23676], + [18075,18946], + [18077,21278], + [18079,18636], + [18081,28224], + [18083,20381], + [18085,24019], + [18087,18388], + [18089,23142], + [18091,22599], + [18093,21352], + [18095,21722], + [18097,24498], + [18099,22493], + [18101,21750], + [18103,18854], + [18105,21882], + [18107,22788], + [18109,23972], + [18111,24055], + [18113,19783], + [18115,25703], + [18117,19119], + [18119,20581], + [18121,19494], + [18123,20806], + [18125,20005], + [18127,27922], + [18129,26727], + [18131,20491], + [18133,20441], + [18135,19552], + [18137,22025], + [18139,21215], + [18141,23082], + [18143,19414], + [18145,26398], + [18147,23609], + [18149,17991], + [18151,22950], + [18153,20093], + [18155,21214], + [18157,22203], + [18159,23499], + [18161,19243], + [18163,23945], + [18165,22178], + [18167,20398], + [18169,20475], + [18171,23670], + [18173,29737], + [18175,19278], + [18177,21789], + [18179,23169], + [18181,22323], + [18183,24644], + [19001,23497], + [19003,23549], + [19005,21349], + [19007,20084], + [19009,24207], + [19011,25111], + [19013,23357], + [19015,25998], + [19017,26522], + [19019,23437], + [19021,21256], + [19023,24030], + [19025,23049], + [19027,25094], + [19029,21787], + [19031,24742], + [19033,25463], + [19035,24507], + [19037,22447], + [19039,23271], + [19041,25398], + [19043,22303], + [19045,23573], + [19047,21181], + [19049,33051], + [19051,21970], + [19053,18195], + [19055,22578], + [19057,22555], + [19059,29459], + [19061,25045], + [19063,24371], + [19065,21566], + [19067,21416], + [19069,22507], + [19071,23612], + [19073,23947], + [19075,26916], + [19077,26590], + [19079,24765], + [19081,22713], + [19083,24154], + [19085,24221], + [19087,23056], + [19089,22417], + [19091,24568], + [19093,23841], + [19095,26721], + [19097,23008], + [19099,23160], + [19101,23853], + [19103,28008], + [19105,22873], + [19107,22088], + [19109,27415], + [19111,21324], + [19113,28239], + [19115,20367], + [19117,19967], + [19119,21613], + [19121,25711], + [19123,21568], + [19125,24613], + [19127,22407], + [19129,25400], + [19131,22820], + [19133,22774], + [19135,21228], + [19137,21301], + [19139,24138], + [19141,24771], + [19143,23063], + [19145,21204], + [19147,23071], + [19149,28060], + [19151,23385], + [19153,29246], + [19155,23782], + [19157,25218], + [19159,21858], + [19161,23837], + [19163,27408], + [19165,22389], + [19167,21333], + [19169,25450], + [19171,23041], + [19173,21335], + [19175,20435], + [19177,20209], + [19179,22376], + [19181,28798], + [19183,23979], + [19185,18795], + [19187,22653], + [19189,22684], + [19191,23608], + [19193,22069], + [19195,27240], + [19197,23068], + [20001,20195], + [20003,20558], + [20005,20995], + [20007,23542], + [20009,23688], + [20011,18596], + [20013,19555], + [20015,26436], + [20017,21890], + [20019,21613], + [20021,20075], + [20023,19460], + [20025,24605], + [20027,24858], + [20029,18690], + [20031,23744], + [20033,22974], + [20035,20720], + [20037,19753], + [20039,21966], + [20041,22009], + [20043,21704], + [20045,24851], + [20047,24899], + [20049,20958], + [20051,24093], + [20053,21704], + [20055,20976], + [20057,19348], + [20059,22294], + [20061,20709], + [20063,22775], + [20065,25026], + [20067,25188], + [20069,22606], + [20071,28698], + [20073,21325], + [20075,20190], + [20077,22467], + [20079,22890], + [20081,21966], + [20083,20859], + [20085,23306], + [20087,25580], + [20089,22443], + [20091,37882], + [20093,20888], + [20095,22861], + [20097,19430], + [20099,21021], + [20101,25261], + [20103,25925], + [20105,23084], + [20107,22472], + [20109,22856], + [20111,18245], + [20113,26467], + [20115,21166], + [20117,21295], + [20119,23909], + [20121,26218], + [20123,23350], + [20125,21037], + [20127,23967], + [20129,22862], + [20131,22484], + [20133,18683], + [20135,27622], + [20137,19080], + [20139,22697], + [20141,22536], + [20143,22665], + [20145,17927], + [20147,21870], + [20149,25157], + [20151,23585], + [20153,22895], + [20155,22149], + [20157,24731], + [20159,19316], + [20161,19999], + [20163,23435], + [20165,23608], + [20167,23243], + [20169,23669], + [20171,28872], + [20173,25297], + [20175,18083], + [20177,25705], + [20179,24933], + [20181,22651], + [20183,23644], + [20185,23171], + [20187,19196], + [20189,21633], + [20191,23114], + [20193,23883], + [20195,22095], + [20197,23072], + [20199,23269], + [20201,20577], + [20203,20375], + [20205,18708], + [20207,23986], + [20209,18827], + [21001,15790], + [21003,16897], + [21005,24516], + [21007,23001], + [21009,20067], + [21011,15487], + [21013,14627], + [21015,28520], + [21017,21355], + [21019,22064], + [21021,22534], + [21023,18671], + [21025,16442], + [21027,17757], + [21029,22791], + [21031,17236], + [21033,19498], + [21035,20951], + [21037,27096], + [21039,17260], + [21041,21845], + [21043,18147], + [21045,14252], + [21047,18476], + [21049,23966], + [21051,12300], + [21053,14802], + [21055,19463], + [21057,15025], + [21059,22064], + [21061,18959], + [21063,13072], + [21065,15725], + [21067,28345], + [21069,17629], + [21071,15883], + [21073,26857], + [21075,16908], + [21077,17810], + [21079,18735], + [21081,20257], + [21083,19976], + [21085,17443], + [21087,21281], + [21089,21533], + [21091,19952], + [21093,22997], + [21095,15224], + [21097,20037], + [21099,16726], + [21101,22192], + [21103,21090], + [21105,19953], + [21107,21347], + [21109,13935], + [21111,26473], + [21113,24097], + [21115,18486], + [21117,27205], + [21119,16110], + [21121,14101], + [21123,18474], + [21125,19604], + [21127,15903], + [21129,12983], + [21131,14753], + [21133,17393], + [21135,14915], + [21137,16985], + [21139,20800], + [21141,19443], + [21143,19036], + [21145,24709], + [21147,12197], + [21149,21071], + [21151,21536], + [21153,13849], + [21155,18445], + [21157,23056], + [21159,14785], + [21161,21717], + [21163,18823], + [21165,15418], + [21167,23645], + [21169,16835], + [21171,15534], + [21173,20004], + [21175,17705], + [21177,18538], + [21179,21763], + [21181,18452], + [21183,18258], + [21185,32702], + [21187,21754], + [21189,10767], + [21191,19523], + [21193,19049], + [21195,18973], + [21197,15796], + [21199,19540], + [21201,15374], + [21203,15621], + [21205,17435], + [21207,17868], + [21209,26838], + [21211,27593], + [21213,20426], + [21215,25589], + [21217,18014], + [21219,17460], + [21221,23387], + [21223,21161], + [21225,18811], + [21227,23206], + [21229,20873], + [21231,16109], + [21233,18879], + [21235,15258], + [21237,11214], + [21239,28501], + [22001,18116], + [22003,17108], + [22005,26888], + [22007,20348], + [22009,16944], + [22011,21543], + [22013,18873], + [22015,25630], + [22017,22594], + [22019,23591], + [22021,19888], + [22023,24634], + [22025,17166], + [22027,16925], + [22029,15911], + [22031,20112], + [22033,26260], + [22035,15947], + [22037,18376], + [22039,17561], + [22041,18676], + [22043,18536], + [22045,20112], + [22047,19379], + [22049,19308], + [22051,25842], + [22053,20487], + [22055,26791], + [22057,22898], + [22059,20049], + [22061,19665], + [22063,23372], + [22065,13089], + [22067,15713], + [22069,18207], + [22071,24929], + [22073,21893], + [22075,23378], + [22077,21533], + [22079,21982], + [22081,20044], + [22083,18060], + [22085,20626], + [22087,19448], + [22089,25728], + [22091,16387], + [22093,22509], + [22095,20842], + [22097,17839], + [22099,20687], + [22101,20057], + [22103,29282], + [22105,19788], + [22107,15218], + [22109,22931], + [22111,20375], + [22113,21389], + [22115,20191], + [22117,17120], + [22119,19254], + [22121,22101], + [22123,16462], + [22125,18118], + [22127,15833], + [23001,22752], + [23003,20251], + [23005,31041], + [23007,20838], + [23009,26876], + [23011,24656], + [23013,25291], + [23015,28003], + [23017,21254], + [23019,22977], + [23021,19870], + [23023,26983], + [23025,20709], + [23027,22213], + [23029,19401], + [23031,27137], + [24001,20764], + [24003,38660], + [24005,33719], + [24009,36323], + [24011,24294], + [24013,33938], + [24015,28640], + [24017,35780], + [24019,25139], + [24021,35172], + [24023,23888], + [24025,33559], + [24027,45294], + [24029,29536], + [24031,47310], + [24033,31215], + [24035,35964], + [24037,34000], + [24039,16919], + [24041,37958], + [24043,26588], + [24045,25505], + [24047,31520], + [24510,23333], + [25001,35246], + [25003,28300], + [25005,27736], + [25007,33390], + [25009,33828], + [25011,27544], + [25013,24718], + [25015,28367], + [25017,40139], + [25019,53410], + [25021,42371], + [25023,33333], + [25025,30720], + [25027,30557], + [26001,19904], + [26003,19858], + [26005,23108], + [26007,21140], + [26009,23912], + [26011,19073], + [26013,19107], + [26015,24493], + [26017,23049], + [26019,23649], + [26021,24025], + [26023,19049], + [26025,22166], + [26027,22698], + [26029,28403], + [26031,23038], + [26033,20309], + [26035,18491], + [26037,27223], + [26039,21002], + [26041,22064], + [26043,23854], + [26045,25963], + [26047,28308], + [26049,22458], + [26051,20571], + [26053,19933], + [26055,27091], + [26057,18388], + [26059,20006], + [26061,18267], + [26063,22098], + [26065,23883], + [26067,19386], + [26069,20513], + [26071,19986], + [26073,18510], + [26075,21947], + [26077,25138], + [26079,19770], + [26081,24791], + [26083,21307], + [26085,16084], + [26087,25110], + [26089,32194], + [26091,22529], + [26093,31609], + [26095,17195], + [26097,22170], + [26099,26524], + [26101,21612], + [26103,23347], + [26105,21760], + [26107,18745], + [26109,21624], + [26111,28363], + [26113,19560], + [26115,25520], + [26117,18569], + [26119,19102], + [26121,19719], + [26123,20870], + [26125,36138], + [26127,18402], + [26129,18321], + [26131,21448], + [26133,17861], + [26135,18524], + [26137,22568], + [26139,25045], + [26141,20870], + [26143,20194], + [26145,21662], + [26147,23828], + [26149,20192], + [26151,19645], + [26153,20455], + [26155,21869], + [26157,19937], + [26159,22002], + [26161,31316], + [26163,22125], + [26165,19952], + [27001,22966], + [27003,29347], + [27005,24385], + [27007,21016], + [27009,23648], + [27011,23746], + [27013,23691], + [27015,24591], + [27017,23932], + [27019,35807], + [27021,24348], + [27023,23610], + [27025,26576], + [27027,23011], + [27029,20913], + [27031,28873], + [27033,23162], + [27035,24282], + [27037,34142], + [27039,26969], + [27041,25633], + [27043,22667], + [27045,23758], + [27047,23645], + [27049,27472], + [27051,23233], + [27053,35902], + [27055,24865], + [27057,24413], + [27059,25165], + [27061,23465], + [27063,25144], + [27065,21304], + [27067,25844], + [27069,25030], + [27071,24576], + [27073,24291], + [27075,26087], + [27077,27192], + [27079,25958], + [27081,24922], + [27083,23755], + [27085,27590], + [27087,17999], + [27089,24552], + [27091,25321], + [27093,23839], + [27095,21744], + [27097,22934], + [27099,23740], + [27101,24045], + [27103,25656], + [27105,20953], + [27107,22817], + [27109,32704], + [27111,23445], + [27113,22687], + [27115,21328], + [27117,22289], + [27119,23105], + [27121,25935], + [27123,28956], + [27125,23171], + [27127,23548], + [27129,23956], + [27131,24678], + [27133,23079], + [27135,22975], + [27137,25014], + [27139,33612], + [27141,27376], + [27143,24073], + [27145,24816], + [27147,25062], + [27149,24585], + [27151,21571], + [27153,21014], + [27155,24188], + [27157,26282], + [27159,19344], + [27161,23121], + [27163,36248], + [27165,22334], + [27167,24447], + [27169,21864], + [27171,28454], + [27173,23171], + [28001,17473], + [28003,17954], + [28005,16861], + [28007,17659], + [28009,14998], + [28011,16051], + [28013,15183], + [28015,16025], + [28017,15985], + [28019,16545], + [28021,12571], + [28023,16467], + [28025,17604], + [28027,15687], + [28029,17473], + [28031,17713], + [28033,24531], + [28035,19272], + [28037,21583], + [28039,19452], + [28041,14064], + [28043,19701], + [28045,21935], + [28047,22880], + [28049,20676], + [28051,11585], + [28053,13282], + [28055,11810], + [28057,18517], + [28059,22655], + [28061,18268], + [28063,12534], + [28065,15120], + [28067,18632], + [28069,12903], + [28071,21267], + [28073,26052], + [28075,20116], + [28077,19142], + [28079,14617], + [28081,21831], + [28083,12957], + [28085,20620], + [28087,21273], + [28089,31517], + [28091,17549], + [28093,16825], + [28095,18884], + [28097,16584], + [28099,17609], + [28101,16727], + [28103,12759], + [28105,19356], + [28107,15987], + [28109,20014], + [28111,18238], + [28113,17620], + [28115,17820], + [28117,17068], + [28119,13080], + [28121,26637], + [28123,16608], + [28125,14322], + [28127,18397], + [28129,18686], + [28131,21691], + [28133,11993], + [28135,12687], + [28137,18318], + [28139,16365], + [28141,17017], + [28143,15711], + [28145,17945], + [28147,16157], + [28149,22079], + [28151,15946], + [28153,17099], + [28155,17888], + [28157,14333], + [28159,17244], + [28161,16623], + [28163,14339], + [29001,17098], + [29003,24009], + [29005,23659], + [29007,18800], + [29009,19363], + [29011,19117], + [29013,19056], + [29015,19955], + [29017,18172], + [29019,25124], + [29021,21638], + [29023,19368], + [29025,19499], + [29027,22602], + [29029,25509], + [29031,23014], + [29033,25021], + [29035,15881], + [29037,26326], + [29039,16432], + [29041,19978], + [29043,23720], + [29045,19114], + [29047,28204], + [29049,24629], + [29051,25935], + [29053,19234], + [29055,17317], + [29057,16638], + [29059,18400], + [29061,19900], + [29063,16916], + [29065,18111], + [29067,15117], + [29069,16619], + [29071,23365], + [29073,21240], + [29075,19021], + [29077,23443], + [29079,18148], + [29081,18967], + [29083,20304], + [29085,18215], + [29087,21666], + [29089,21829], + [29091,17135], + [29093,17200], + [29095,25213], + [29097,19899], + [29099,24586], + [29101,20405], + [29103,18481], + [29105,19858], + [29107,23043], + [29109,18777], + [29111,18973], + [29113,21862], + [29115,20742], + [29117,20295], + [29119,17070], + [29121,18411], + [29123,17239], + [29125,19155], + [29127,20718], + [29129,19031], + [29131,18202], + [29133,15927], + [29135,19267], + [29137,19834], + [29139,19634], + [29141,18789], + [29143,18811], + [29145,20832], + [29147,18909], + [29149,15093], + [29151,21484], + [29153,17298], + [29155,15841], + [29157,22200], + [29159,19351], + [29161,20817], + [29163,18769], + [29165,34037], + [29167,18138], + [29169,19800], + [29171,20005], + [29173,22605], + [29175,17049], + [29177,25244], + [29179,16964], + [29181,15115], + [29183,30664], + [29185,18309], + [29186,22665], + [29187,18852], + [29189,33344], + [29195,18581], + [29197,18410], + [29199,19895], + [29201,19566], + [29203,15309], + [29205,18056], + [29207,20911], + [29209,21748], + [29211,16633], + [29213,21474], + [29215,15790], + [29217,18314], + [29219,24358], + [29221,16867], + [29223,17105], + [29225,18699], + [29227,18229], + [29229,16413], + [29510,21406], + [30001,21110], + [30003,15066], + [30005,16813], + [30007,19606], + [30009,24983], + [30011,20681], + [30013,22963], + [30015,20202], + [30017,21676], + [30019,24737], + [30021,24602], + [30023,21921], + [30025,26819], + [30027,22295], + [30029,24721], + [30031,27423], + [30033,22424], + [30035,17053], + [30037,19319], + [30039,23222], + [30041,21420], + [30043,26437], + [30045,24029], + [30047,20164], + [30049,25894], + [30051,19097], + [30053,19626], + [30055,23265], + [30057,32205], + [30059,17318], + [30061,19209], + [30063,24343], + [30065,20875], + [30067,24717], + [30069,21008], + [30071,24227], + [30073,18989], + [30075,21543], + [30077,17849], + [30079,21296], + [30081,23908], + [30083,26888], + [30085,17821], + [30087,19844], + [30089,18472], + [30091,26537], + [30093,21357], + [30095,27168], + [30097,22785], + [30099,20509], + [30101,20464], + [30103,20882], + [30105,24305], + [30107,18474], + [30109,22579], + [30111,26152], + [31001,23084], + [31003,20419], + [31005,19722], + [31007,22042], + [31009,20586], + [31011,22790], + [31013,23434], + [31015,21003], + [31017,17330], + [31019,22616], + [31021,23302], + [31023,22494], + [31025,27584], + [31027,20595], + [31029,22730], + [31031,22601], + [31033,26983], + [31035,21147], + [31037,20872], + [31039,22783], + [31041,21685], + [31043,19048], + [31045,18573], + [31047,19384], + [31049,23758], + [31051,20478], + [31053,22049], + [31055,28092], + [31057,24701], + [31059,21990], + [31061,19764], + [31063,22374], + [31065,21644], + [31067,21619], + [31069,19740], + [31071,19235], + [31073,23132], + [31075,20518], + [31077,19235], + [31079,22552], + [31081,23240], + [31083,25050], + [31085,21977], + [31087,20853], + [31089,22498], + [31091,21197], + [31093,22325], + [31095,21976], + [31097,17606], + [31099,27227], + [31101,25315], + [31103,20691], + [31105,22263], + [31107,19894], + [31109,25949], + [31111,25319], + [31113,22320], + [31115,20004], + [31117,21000], + [31119,22157], + [31121,21819], + [31123,21367], + [31125,21457], + [31127,22151], + [31129,20299], + [31131,23773], + [31133,21865], + [31135,23542], + [31137,23951], + [31139,21419], + [31141,23358], + [31143,23831], + [31145,21246], + [31147,20516], + [31149,23871], + [31151,20431], + [31153,29212], + [31155,26898], + [31157,21212], + [31159,26386], + [31161,20066], + [31163,20900], + [31165,25824], + [31167,23018], + [31169,21648], + [31171,31499], + [31173,15686], + [31175,21058], + [31177,27884], + [31179,19681], + [31181,18906], + [31183,20614], + [31185,25412], + [32001,22997], + [32003,27422], + [32005,35239], + [32007,26879], + [32009,34571], + [32011,30306], + [32013,25965], + [32015,25287], + [32017,18148], + [32019,21041], + [32021,23226], + [32023,22687], + [32027,17519], + [32029,31079], + [32031,29687], + [32033,21615], + [32510,27568], + [33001,28517], + [33003,28411], + [33005,27045], + [33007,22976], + [33009,28170], + [33011,33108], + [33013,30544], + [33015,35889], + [33017,28059], + [33019,26322], + [34001,27247], + [34003,42006], + [34005,34802], + [34007,29478], + [34009,33571], + [34011,21883], + [34013,31535], + [34015,31210], + [34017,31024], + [34019,48489], + [34021,36016], + [34023,33289], + [34025,40976], + [34027,47342], + [34029,29826], + [34031,26095], + [34033,27296], + [34035,47067], + [34037,35982], + [34039,34096], + [34041,32985], + [35001,26143], + [35003,20895], + [35005,18504], + [35006,14712], + [35007,21047], + [35009,19925], + [35011,20769], + [35013,18315], + [35015,24587], + [35017,21164], + [35019,13710], + [35021,14684], + [35023,17451], + [35025,19637], + [35027,24290], + [35028,49474], + [35029,15687], + [35031,12932], + [35033,22035], + [35035,19255], + [35037,18234], + [35039,19913], + [35041,16933], + [35043,25979], + [35045,20725], + [35047,18508], + [35049,32188], + [35051,16667], + [35053,17801], + [35055,22145], + [35057,17278], + [35059,19228], + [35061,19955], + [36001,30863], + [36003,20058], + [36005,17575], + [36007,24314], + [36009,20824], + [36011,22959], + [36013,21033], + [36015,23457], + [36017,22036], + [36019,22660], + [36021,31844], + [36023,22078], + [36025,22928], + [36027,31642], + [36029,26378], + [36031,24390], + [36033,19807], + [36035,23147], + [36037,24323], + [36039,23461], + [36041,29965], + [36043,21908], + [36045,21823], + [36047,23605], + [36049,20970], + [36051,22923], + [36053,24311], + [36055,26999], + [36057,22347], + [36059,41387], + [36061,59149], + [36063,24224], + [36065,23458], + [36067,27037], + [36069,28950], + [36071,28944], + [36073,20812], + [36075,21604], + [36077,22902], + [36079,37915], + [36081,25553], + [36083,27457], + [36085,30843], + [36087,34304], + [36089,20143], + [36091,32186], + [36093,27500], + [36095,25105], + [36097,22123], + [36099,21818], + [36101,23279], + [36103,35755], + [36105,23422], + [36107,24596], + [36109,25737], + [36111,28954], + [36113,27744], + [36115,22347], + [36117,24092], + [36119,47814], + [36121,20605], + [36123,23255], + [37001,22819], + [37003,20716], + [37005,18919], + [37007,16856], + [37009,20350], + [37011,23465], + [37013,22728], + [37015,17614], + [37017,17890], + [37019,26315], + [37021,25665], + [37023,19220], + [37025,26165], + [37027,19686], + [37029,25544], + [37031,26791], + [37033,17814], + [37035,22969], + [37037,29991], + [37039,20747], + [37041,20900], + [37043,20474], + [37045,19284], + [37047,18784], + [37049,24591], + [37051,22285], + [37053,26083], + [37055,30327], + [37057,22268], + [37059,26139], + [37061,16693], + [37063,27503], + [37065,16747], + [37067,26213], + [37069,21331], + [37071,22305], + [37073,19893], + [37075,17825], + [37077,21733], + [37079,17362], + [37081,26267], + [37083,17223], + [37085,19274], + [37087,24233], + [37089,26061], + [37091,17002], + [37093,17630], + [37095,14992], + [37097,25610], + [37099,20228], + [37101,22437], + [37103,20066], + [37105,21061], + [37107,19017], + [37109,23560], + [37111,18798], + [37113,26156], + [37115,18792], + [37117,18728], + [37119,31848], + [37121,18804], + [37123,18618], + [37125,25786], + [37127,23909], + [37129,29363], + [37131,17128], + [37133,21048], + [37135,32912], + [37137,23320], + [37139,21736], + [37141,22872], + [37143,22085], + [37145,21848], + [37147,21935], + [37149,24008], + [37151,21297], + [37153,17692], + [37155,15321], + [37157,20801], + [37159,21525], + [37161,18961], + [37163,19086], + [37165,16297], + [37167,21139], + [37169,20852], + [37171,20541], + [37173,19297], + [37175,23939], + [37177,15812], + [37179,28596], + [37181,17622], + [37183,32592], + [37185,17838], + [37187,16982], + [37189,20961], + [37191,20446], + [37193,19406], + [37195,20691], + [37197,20379], + [37199,18576], + [38001,20118], + [38003,26152], + [38005,14545], + [38007,28666], + [38009,26277], + [38011,27354], + [38013,32347], + [38015,28784], + [38017,28184], + [38019,26468], + [38021,21824], + [38023,28462], + [38025,24832], + [38027,20302], + [38029,21358], + [38031,27945], + [38033,21899], + [38035,24276], + [38037,25840], + [38039,24122], + [38041,24928], + [38043,23502], + [38045,27056], + [38047,21654], + [38049,22911], + [38051,22608], + [38053,27605], + [38055,27029], + [38057,30616], + [38059,25303], + [38061,25762], + [38063,22838], + [38065,29348], + [38067,27019], + [38069,18575], + [38071,24130], + [38073,21995], + [38075,26856], + [38077,24342], + [38079,13632], + [38081,26553], + [38083,24286], + [38085,13542], + [38087,24824], + [38089,25282], + [38091,27728], + [38093,23307], + [38095,24203], + [38097,23340], + [38099,23829], + [38101,25326], + [38103,23531], + [38105,29153], + [39001,17693], + [39003,21713], + [39005,20558], + [39007,19898], + [39009,16642], + [39011,25290], + [39013,20266], + [39015,20167], + [39017,25892], + [39019,21575], + [39021,23438], + [39023,22110], + [39025,27900], + [39027,22163], + [39029,19635], + [39031,19635], + [39033,20590], + [39035,26263], + [39037,21483], + [39039,22139], + [39041,40682], + [39043,25290], + [39045,26130], + [39047,20525], + [39049,26909], + [39051,22804], + [39053,20199], + [39055,32735], + [39057,28328], + [39059,19187], + [39061,28799], + [39063,25158], + [39065,19100], + [39067,19318], + [39069,22638], + [39071,18966], + [39073,19048], + [39075,17009], + [39077,21743], + [39079,18775], + [39081,20470], + [39083,21204], + [39085,28221], + [39087,19452], + [39089,25534], + [39091,22974], + [39093,25002], + [39095,23981], + [39097,23980], + [39099,22824], + [39101,19849], + [39103,29986], + [39105,18003], + [39107,22348], + [39109,25006], + [39111,18738], + [39113,24828], + [39115,18777], + [39117,20795], + [39119,20561], + [39121,20029], + [39123,27809], + [39125,20919], + [39127,18916], + [39129,21432], + [39131,17494], + [39133,25097], + [39135,23290], + [39137,24023], + [39139,21459], + [39141,20595], + [39143,22286], + [39145,17778], + [39147,20976], + [39149,21948], + [39151,24015], + [39153,26676], + [39155,21854], + [39157,20536], + [39159,27389], + [39161,20772], + [39163,16736], + [39165,31935], + [39167,22786], + [39169,22645], + [39171,21381], + [39173,26671], + [39175,22553], + [40001,13732], + [40003,21029], + [40005,15772], + [40007,23525], + [40009,21144], + [40011,19445], + [40013,19103], + [40015,16787], + [40017,26970], + [40019,20192], + [40021,16084], + [40023,17231], + [40025,18358], + [40027,25831], + [40029,17338], + [40031,20778], + [40033,20948], + [40035,18784], + [40037,21891], + [40039,22003], + [40041,20142], + [40043,21055], + [40045,23767], + [40047,22812], + [40049,20176], + [40051,21687], + [40053,22204], + [40055,13241], + [40057,17677], + [40059,23693], + [40061,18735], + [40063,18083], + [40065,21249], + [40067,17491], + [40069,18451], + [40071,21167], + [40073,23481], + [40075,18921], + [40077,20353], + [40079,17357], + [40081,20774], + [40083,25090], + [40085,20817], + [40087,23556], + [40089,17456], + [40091,16095], + [40093,24897], + [40095,18794], + [40097,19975], + [40099,20634], + [40101,19161], + [40103,20032], + [40105,20752], + [40107,15046], + [40109,25723], + [40111,19071], + [40113,21446], + [40115,17638], + [40117,19520], + [40119,19540], + [40121,20714], + [40123,21136], + [40125,19437], + [40127,15460], + [40129,28427], + [40131,25358], + [40133,17032], + [40135,18049], + [40137,22790], + [40139,21356], + [40141,15894], + [40143,26769], + [40145,24049], + [40147,26663], + [40149,21511], + [40151,24292], + [40153,24635], + [41001,21683], + [41003,26177], + [41005,31785], + [41007,25347], + [41009,24613], + [41011,21981], + [41013,22275], + [41015,23842], + [41017,27920], + [41019,21342], + [41021,25559], + [41023,22041], + [41025,20849], + [41027,23930], + [41029,24410], + [41031,20009], + [41033,21539], + [41035,22081], + [41037,22586], + [41039,23869], + [41041,24354], + [41043,22165], + [41045,16335], + [41047,21915], + [41049,20201], + [41051,28883], + [41053,24345], + [41055,21688], + [41057,22824], + [41059,20035], + [41061,22947], + [41063,23023], + [41065,21922], + [41067,30522], + [41069,20598], + [41071,24017], + [42001,25606], + [42003,29549], + [42005,21828], + [42007,24168], + [42009,20545], + [42011,25518], + [42013,22880], + [42015,20979], + [42017,35687], + [42019,28446], + [42021,21278], + [42023,21375], + [42025,22956], + [42027,23744], + [42029,41251], + [42031,20259], + [42033,20142], + [42035,19261], + [42037,22403], + [42039,20383], + [42041,30119], + [42043,27727], + [42045,32067], + [42047,22729], + [42049,22644], + [42051,19209], + [42053,14325], + [42055,25307], + [42057,21739], + [42059,20258], + [42061,20616], + [42063,20587], + [42065,20305], + [42067,20682], + [42069,24152], + [42071,25854], + [42073,21467], + [42075,25525], + [42077,27301], + [42079,23245], + [42081,21802], + [42083,21022], + [42085,21765], + [42087,19085], + [42089,24824], + [42091,40076], + [42093,26124], + [42095,28362], + [42097,20654], + [42099,23701], + [42101,21117], + [42103,27564], + [42105,20594], + [42107,21408], + [42109,21072], + [42111,19903], + [42113,19718], + [42115,22173], + [42117,20358], + [42119,21612], + [42121,20522], + [42123,22170], + [42125,26045], + [42127,22525], + [42129,25845], + [42131,22899], + [42133,27196], + [44001,35588], + [44003,31221], + [44005,36994], + [44007,25169], + [44009,34737], + [45001,16653], + [45003,24172], + [45005,14190], + [45007,22117], + [45009,16236], + [45011,17592], + [45013,32731], + [45015,22865], + [45017,20845], + [45019,29401], + [45021,17862], + [45023,17687], + [45025,17162], + [45027,16562], + [45029,17842], + [45031,20096], + [45033,14684], + [45035,24497], + [45037,19901], + [45039,18877], + [45041,21932], + [45043,23942], + [45045,25931], + [45047,21728], + [45049,16262], + [45051,24811], + [45053,17997], + [45055,21777], + [45057,19308], + [45059,18757], + [45061,12924], + [45063,26393], + [45065,19411], + [45067,16653], + [45069,13817], + [45071,21410], + [45073,24055], + [45075,17579], + [45077,20647], + [45079,25805], + [45081,18717], + [45083,21924], + [45085,18944], + [45087,18495], + [45089,13513], + [45091,25707], + [46003,21291], + [46005,23409], + [46007,16153], + [46009,20074], + [46011,20995], + [46013,23878], + [46015,19779], + [46017,11410], + [46019,20418], + [46021,22338], + [46023,17403], + [46025,23909], + [46027,19518], + [46029,24781], + [46031,13359], + [46033,24353], + [46035,22794], + [46037,20542], + [46039,22276], + [46041,15632], + [46043,22200], + [46045,24268], + [46047,21574], + [46049,21898], + [46051,22887], + [46053,21311], + [46055,25877], + [46057,21558], + [46059,23238], + [46061,21391], + [46063,22004], + [46065,28236], + [46067,21944], + [46069,22995], + [46071,14568], + [46073,24942], + [46075,24630], + [46077,24660], + [46079,22447], + [46081,25465], + [46083,33261], + [46085,16930], + [46087,25502], + [46089,19255], + [46091,22441], + [46093,22045], + [46095,16971], + [46097,25450], + [46099,26392], + [46101,24948], + [46102,7772], + [46103,25894], + [46105,25780], + [46107,23986], + [46109,19825], + [46111,21055], + [46115,25295], + [46117,27435], + [46119,26596], + [46121,11010], + [46123,21192], + [46125,22871], + [46127,33783], + [46129,23716], + [46135,24776], + [46137,11069], + [47001,24242], + [47003,18471], + [47005,19114], + [47007,12907], + [47009,24071], + [47011,21444], + [47013,16426], + [47015,18076], + [47017,19712], + [47019,17601], + [47021,24392], + [47023,17343], + [47025,17128], + [47027,18367], + [47029,16957], + [47031,20737], + [47033,19742], + [47035,20544], + [47037,27780], + [47039,19757], + [47041,17976], + [47043,21415], + [47045,19169], + [47047,26898], + [47049,17291], + [47051,20817], + [47053,20065], + [47055,19778], + [47057,16783], + [47059,18782], + [47061,14000], + [47063,21162], + [47065,26588], + [47067,13717], + [47069,15838], + [47071,18122], + [47073,19600], + [47075,17047], + [47077,19988], + [47079,20687], + [47081,18447], + [47083,17791], + [47085,20874], + [47087,17452], + [47089,19680], + [47091,16638], + [47093,27349], + [47095,11813], + [47097,16006], + [47099,18086], + [47101,17473], + [47103,22811], + [47105,27046], + [47107,19796], + [47109,18488], + [47111,16518], + [47113,22948], + [47115,20811], + [47117,20157], + [47119,23136], + [47121,18768], + [47123,18651], + [47125,22092], + [47127,26678], + [47129,17883], + [47131,21235], + [47133,17720], + [47135,17028], + [47137,19327], + [47139,17481], + [47141,19434], + [47143,17655], + [47145,23196], + [47147,22658], + [47149,24390], + [47151,15087], + [47153,18094], + [47155,22047], + [47157,25002], + [47159,21026], + [47161,20670], + [47163,23263], + [47165,26014], + [47167,21585], + [47169,19996], + [47171,20540], + [47173,16155], + [47175,17160], + [47177,18508], + [47179,24114], + [47181,15814], + [47183,18895], + [47185,17880], + [47187,41220], + [47189,27814], + [48001,17465], + [48003,29605], + [48005,20104], + [48007,25610], + [48009,23882], + [48011,24195], + [48013,18461], + [48015,26959], + [48017,18275], + [48019,24249], + [48021,22918], + [48023,22894], + [48025,14188], + [48027,22722], + [48029,23225], + [48031,27010], + [48033,40916], + [48035,21269], + [48037,22293], + [48039,27529], + [48041,21018], + [48043,23577], + [48045,17652], + [48047,14728], + [48049,20586], + [48051,21379], + [48053,25245], + [48055,18106], + [48057,22835], + [48059,22300], + [48061,13695], + [48063,18710], + [48065,24977], + [48067,20137], + [48069,16073], + [48071,26453], + [48073,17230], + [48075,16338], + [48077,24565], + [48079,16018], + [48081,18384], + [48083,16494], + [48085,37362], + [48087,21726], + [48089,22676], + [48091,31862], + [48093,18086], + [48095,17731], + [48097,23598], + [48099,18936], + [48101,17385], + [48103,20185], + [48105,24194], + [48107,17940], + [48109,16060], + [48111,18940], + [48113,26185], + [48115,15288], + [48117,16687], + [48119,20837], + [48121,32538], + [48123,20020], + [48125,18642], + [48127,14045], + [48129,20137], + [48131,15134], + [48133,17973], + [48135,22859], + [48137,31109], + [48139,25346], + [48141,16768], + [48143,20903], + [48145,14979], + [48147,20221], + [48149,26898], + [48151,20516], + [48153,18093], + [48155,18368], + [48157,32016], + [48159,23821], + [48161,23235], + [48163,15036], + [48165,22785], + [48167,28959], + [48169,16185], + [48171,28072], + [48173,26104], + [48175,28120], + [48177,18716], + [48179,20567], + [48181,23242], + [48183,23024], + [48185,17365], + [48187,25218], + [48189,16322], + [48191,20126], + [48193,22429], + [48195,21095], + [48197,17401], + [48199,23965], + [48201,26788], + [48203,22019], + [48205,24616], + [48207,22734], + [48209,25998], + [48211,29343], + [48213,21580], + [48215,13480], + [48217,20554], + [48219,20255], + [48221,30687], + [48223,21163], + [48225,18813], + [48227,17832], + [48229,11485], + [48231,21646], + [48233,21075], + [48235,31857], + [48237,21349], + [48239,24337], + [48241,19182], + [48243,22007], + [48245,22095], + [48247,17163], + [48249,16976], + [48251,23669], + [48253,15880], + [48255,15949], + [48257,23909], + [48259,36418], + [48261,16655], + [48263,27021], + [48265,25454], + [48267,27118], + [48269,39511], + [48271,14207], + [48273,18580], + [48275,20375], + [48277,20588], + [48279,17553], + [48281,22943], + [48283,13542], + [48285,23168], + [48287,23074], + [48289,22484], + [48291,18807], + [48293,18420], + [48295,24839], + [48297,21540], + [48299,29027], + [48301,42220], + [48303,22831], + [48305,19752], + [48307,20116], + [48309,20652], + [48311,21358], + [48313,14245], + [48315,20125], + [48317,19695], + [48319,23555], + [48321,22623], + [48323,12444], + [48325,20604], + [48327,23362], + [48329,30956], + [48331,21509], + [48333,20438], + [48335,13358], + [48337,22328], + [48339,31959], + [48341,18239], + [48343,20292], + [48345,19754], + [48347,18180], + [48349,20539], + [48351,17721], + [48353,19973], + [48355,22558], + [48357,21143], + [48359,22504], + [48361,23155], + [48363,21551], + [48365,22846], + [48367,28539], + [48369,16926], + [48371,16717], + [48373,16961], + [48375,18725], + [48377,15635], + [48379,20855], + [48381,28668], + [48383,23028], + [48385,15074], + [48387,18105], + [48389,13112], + [48391,18638], + [48393,29291], + [48395,21113], + [48397,33274], + [48399,20056], + [48401,22392], + [48403,18155], + [48405,17184], + [48407,21453], + [48409,20766], + [48411,19721], + [48413,21299], + [48415,22424], + [48417,22346], + [48419,20103], + [48421,21587], + [48423,25374], + [48425,26314], + [48427,11659], + [48429,19573], + [48431,20640], + [48433,25177], + [48435,23325], + [48437,16513], + [48439,27333], + [48441,22606], + [48443,18871], + [48445,22306], + [48447,20677], + [48449,17520], + [48451,22292], + [48453,31785], + [48455,19828], + [48457,19450], + [48459,21946], + [48461,23112], + [48463,17842], + [48465,16615], + [48467,20989], + [48469,24146], + [48471,13920], + [48473,21621], + [48475,20055], + [48477,25464], + [48479,14163], + [48481,21049], + [48483,27282], + [48485,22837], + [48487,19916], + [48489,10800], + [48491,29663], + [48493,25149], + [48495,19309], + [48497,24075], + [48499,21682], + [48501,19937], + [48503,24656], + [48505,13915], + [48507,10180], + [49001,16131], + [49003,20465], + [49005,19670], + [49007,20260], + [49009,22862], + [49011,25244], + [49013,21787], + [49015,19968], + [49017,23187], + [49019,20611], + [49021,16898], + [49023,18193], + [49025,25155], + [49027,18839], + [49029,24276], + [49031,16140], + [49033,25376], + [49035,25041], + [49037,15150], + [49039,15731], + [49041,18856], + [49043,40270], + [49045,22020], + [49047,24160], + [49049,20210], + [49051,26873], + [49053,21378], + [49055,19829], + [49057,22849], + [50001,26599], + [50003,27962], + [50005,22504], + [50007,31095], + [50009,20040], + [50011,24767], + [50013,30499], + [50015,27164], + [50017,25951], + [50019,20652], + [50021,25426], + [50023,28337], + [50025,27247], + [50027,29053], + [51001,22766], + [51003,36685], + [51005,22013], + [51007,24197], + [51009,21097], + [51011,22388], + [51013,57724], + [51015,23571], + [51017,22083], + [51019,27732], + [51021,20468], + [51023,29540], + [51025,16739], + [51027,16742], + [51029,16752], + [51031,22044], + [51033,25024], + [51035,18670], + [51036,23955], + [51037,17348], + [51041,31711], + [51043,34630], + [51045,23461], + [51047,27507], + [51049,19691], + [51051,16278], + [51053,23423], + [51057,23795], + [51059,49001], + [51061,38710], + [51063,21425], + [51065,29407], + [51067,23527], + [51069,27977], + [51071,20985], + [51073,27395], + [51075,38553], + [51077,19499], + [51079,24969], + [51081,17631], + [51083,19909], + [51085,34201], + [51087,33001], + [51089,19206], + [51091,25690], + [51093,29547], + [51095,38162], + [51097,21777], + [51099,32630], + [51101,26853], + [51103,29275], + [51105,16513], + [51107,45356], + [51109,27562], + [51111,17744], + [51113,26081], + [51115,27011], + [51117,20162], + [51119,28539], + [51121,22040], + [51125,26996], + [51127,31741], + [51131,23233], + [51133,28646], + [51135,20318], + [51137,26447], + [51139,22969], + [51141,18396], + [51143,20652], + [51145,25851], + [51147,18192], + [51149,25769], + [51153,35737], + [51155,20976], + [51157,37149], + [51159,19965], + [51161,31046], + [51163,23753], + [51165,25274], + [51167,17909], + [51169,18667], + [51171,24502], + [51173,19906], + [51175,21201], + [51177,31012], + [51179,34691], + [51181,23835], + [51183,16735], + [51185,19016], + [51187,29098], + [51191,23488], + [51193,27501], + [51195,17944], + [51197,20589], + [51199,35823], + [51510,54345], + [51520,19700], + [51530,19030], + [51540,24578], + [51550,29306], + [51570,26115], + [51580,20781], + [51590,18840], + [51595,19245], + [51600,44008], + [51610,55389], + [51620,19453], + [51630,27870], + [51640,19609], + [51650,24051], + [51660,16750], + [51670,19148], + [51678,17022], + [51680,21586], + [51683,28941], + [51685,27335], + [51690,19766], + [51700,24249], + [51710,23773], + [51720,24145], + [51730,19142], + [51735,36840], + [51740,22302], + [51750,16496], + [51760,26034], + [51770,22530], + [51775,27081], + [51790,24077], + [51800,28441], + [51810,30873], + [51820,23190], + [51830,22851], + [51840,26341], + [53001,16689], + [53003,23731], + [53005,27161], + [53007,24378], + [53009,24449], + [53011,27828], + [53013,25810], + [53015,22948], + [53017,22359], + [53019,18021], + [53021,18660], + [53023,22825], + [53025,19718], + [53027,21656], + [53029,29079], + [53031,28528], + [53033,38211], + [53035,29755], + [53037,23467], + [53039,21553], + [53041,21695], + [53043,24757], + [53045,22530], + [53047,20093], + [53049,23326], + [53051,22546], + [53053,27446], + [53055,35487], + [53057,26925], + [53059,24140], + [53061,30635], + [53063,25127], + [53065,21773], + [53067,29707], + [53069,23115], + [53071,23027], + [53073,25407], + [53075,19506], + [53077,19325], + [54001,17304], + [54003,25460], + [54005,20457], + [54007,17469], + [54009,22377], + [54011,21907], + [54013,17121], + [54015,16205], + [54017,14658], + [54019,17082], + [54021,13899], + [54023,19358], + [54025,20044], + [54027,17752], + [54029,23118], + [54031,16944], + [54033,21010], + [54035,20633], + [54037,29733], + [54039,25439], + [54041,18240], + [54043,16439], + [54045,18614], + [54047,12955], + [54049,20752], + [54051,21064], + [54053,19609], + [54055,18431], + [54057,20805], + [54059,17629], + [54061,23116], + [54063,18927], + [54065,20732], + [54067,19359], + [54069,23950], + [54071,19401], + [54073,18770], + [54075,19763], + [54077,19329], + [54079,25857], + [54081,20457], + [54083,18472], + [54085,18255], + [54087,15103], + [54089,15190], + [54091,18562], + [54093,20020], + [54095,18245], + [54097,18823], + [54099,18410], + [54101,17268], + [54103,19899], + [54105,18438], + [54107,22890], + [54109,17662], + [55001,21917], + [55003,19730], + [55005,22666], + [55007,24028], + [55009,26816], + [55011,22579], + [55013,22767], + [55015,27567], + [55017,23952], + [55019,19797], + [55021,26993], + [55023,21346], + [55025,32392], + [55027,23663], + [55029,29154], + [55031,24552], + [55033,21624], + [55035,24826], + [55037,20283], + [55039,25360], + [55041,20578], + [55043,20758], + [55045,26721], + [55047,24973], + [55049,25156], + [55051,21286], + [55053,20778], + [55055,24729], + [55057,23026], + [55059,26168], + [55061,24574], + [55063,24917], + [55065,22026], + [55067,22025], + [55069,23793], + [55071,25161], + [55073,25893], + [55075,22999], + [55077,22895], + [55078,14794], + [55079,23740], + [55081,23052], + [55083,24521], + [55085,28085], + [55087,26965], + [55089,39778], + [55091,24233], + [55093,26313], + [55095,24704], + [55097,24873], + [55099,23125], + [55101,26321], + [55103,21301], + [55105,23926], + [55107,20573], + [55109,31377], + [55111,25452], + [55113,23527], + [55115,22539], + [55117,24976], + [55119,22639], + [55121,23224], + [55123,21618], + [55125,27128], + [55127,26769], + [55129,23221], + [55131,30580], + [55133,36752], + [55135,23293], + [55137,22002], + [55139,26383], + [55141,24893], + [56001,25622], + [56003,24486], + [56005,31968], + [56007,26122], + [56009,27656], + [56011,24520], + [56013,24173], + [56015,23753], + [56017,25269], + [56019,26753], + [56021,27406], + [56023,24421], + [56025,28235], + [56027,22885], + [56029,26203], + [56031,24185], + [56033,26756], + [56035,31433], + [56037,30961], + [56039,42224], + [56041,24460], + [56043,28557], + [56045,28463] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-individual-mean-2017.json b/data/regional/united-states/economics/income/us-income-individual-mean-2017.json new file mode 100644 index 0000000..651f1cd --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-individual-mean-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Income Per-Capita", + "description" : "Mean income per-capita from the previous 12 months in 2017 US dollars.", + "units" : "$", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.individual.mean.2017"], + [1001,27841.7], + [1003,27779.85], + [1005,17891.73], + [1007,20572.05], + [1009,21367.39], + [1011,15444.16], + [1013,17014.95], + [1015,23609.64], + [1017,21079.51], + [1019,23067.93], + [1021,22793.82], + [1023,20363.87], + [1025,20099.21], + [1027,20879.67], + [1029,20158.98], + [1031,25627.63], + [1033,22915.45], + [1035,14814.23], + [1037,19147.01], + [1039,22146.06], + [1041,20466.8], + [1043,21287.64], + [1045,22299.61], + [1047,18042.21], + [1049,19007.97], + [1051,27266.03], + [1053,18527.38], + [1055,21208.43], + [1057,21654.89], + [1059,18783.03], + [1061,20741.87], + [1063,12330.36], + [1065,19196.55], + [1067,23562], + [1069,23573.18], + [1071,20061.42], + [1073,29259.76], + [1075,21848.7], + [1077,25827.78], + [1079,21896.84], + [1081,26160], + [1083,25685.4], + [1085,18901.26], + [1087,21921.66], + [1089,34416.12], + [1091,20738.37], + [1093,21682.7], + [1095,21785.98], + [1097,23639.54], + [1099,15964.5], + [1101,26622.04], + [1103,24454.9], + [1105,11800.68], + [1107,19887.9], + [1109,20558.82], + [1111,20401.61], + [1113,20603.92], + [1115,24731.8], + [1117,34709.33], + [1119,14308.71], + [1121,21548.16], + [1123,22228.57], + [1125,24579.41], + [1127,20704.31], + [1129,19907.22], + [1131,14415.88], + [1133,19518.8], + [2013,30891.7], + [2016,28443.14], + [2020,38324.82], + [2050,17802.36], + [2060,38984.1], + [2068,39316.88], + [2070,21804.82], + [2090,34968.82], + [2100,37141.41], + [2105,29040.32], + [2110,41254.44], + [2122,32050.39], + [2130,32635.69], + [2150,29922.97], + [2158,"NA"], + [2164,20957.43], + [2170,27306.48], + [2180,21509.23], + [2185,28886.59], + [2188,19824.44], + [2195,33142.29], + [2198,23990.18], + [2220,35002.92], + [2230,38150.23], + [2240,24596.05], + [2261,30746.27], + [2275,30153.57], + [2282,29311.67], + [2290,19447.74], + [4001,12119.78], + [4003,26016.1], + [4005,27266.04], + [4007,22383.06], + [4009,18615.46], + [4011,25331.52], + [4012,20799.13], + [4013,29379.27], + [4015,23135.98], + [4017,16942.02], + [4019,27560.82], + [4021,22823.51], + [4023,19324.75], + [4025,27384.28], + [4027,20730.32], + [5001,23320], + [5003,20481.75], + [5005,24550.68], + [5007,30406.57], + [5009,21939.27], + [5011,21690.25], + [5013,21168.98], + [5015,20973.23], + [5017,21140.76], + [5019,23008.97], + [5021,18479.49], + [5023,25146.38], + [5025,23134.4], + [5027,21401.68], + [5029,21757.71], + [5031,25814.29], + [5033,21998.06], + [5035,20365.77], + [5037,22523.02], + [5039,19361.09], + [5041,18310.43], + [5043,20589.6], + [5045,25076.32], + [5047,19290.2], + [5049,20378.11], + [5051,25211.3], + [5053,24961.45], + [5055,21840.93], + [5057,18050.91], + [5059,21119.14], + [5061,22078.33], + [5063,22888.49], + [5065,19656.79], + [5067,21982.25], + [5069,21648.54], + [5071,18732.81], + [5073,23877.69], + [5075,19281.3], + [5077,18200], + [5079,21773.59], + [5081,23527.04], + [5083,19604.69], + [5085,24807.04], + [5087,22991.02], + [5089,18241.98], + [5091,22106.83], + [5093,20394.35], + [5095,20108.6], + [5097,21246.75], + [5099,18558.26], + [5101,17848.59], + [5103,18942.08], + [5105,20908.39], + [5107,17125.1], + [5109,19614.92], + [5111,18204.4], + [5113,18338.96], + [5115,21764.09], + [5117,23499.52], + [5119,28876.31], + [5121,21382.4], + [5123,17542.57], + [5125,27566.04], + [5127,16957.74], + [5129,20376.17], + [5131,23596.4], + [5133,17783.86], + [5135,20732.03], + [5137,19135.06], + [5139,23174.59], + [5141,19608.3], + [5143,26841.8], + [5145,23714.84], + [5147,19152.38], + [5149,19234.16], + [6001,40686.83], + [6003,23696.35], + [6005,31931.22], + [6007,26083.07], + [6009,30857.6], + [6011,25121.85], + [6013,42237.76], + [6015,22359.6], + [6017,37106.69], + [6019,21715.19], + [6021,21158.99], + [6023,24853.5], + [6025,16484.08], + [6027,29925.11], + [6029,21636.25], + [6031,20890.25], + [6033,23179.58], + [6035,29714.91], + [6037,29852.16], + [6039,19793.62], + [6041,67062.81], + [6043,29095.96], + [6045,26789.6], + [6047,19528.79], + [6049,21661.54], + [6051,26569.29], + [6053,26688.79], + [6055,39845.16], + [6057,34552.07], + [6059,36768.09], + [6061,38988.81], + [6063,31098.64], + [6065,24557.06], + [6067,29240.94], + [6069,28994.33], + [6071,22388.22], + [6073,33502.79], + [6075,58621.7], + [6077,24243.22], + [6079,35033.07], + [6081,52591.32], + [6083,33001.7], + [6085,48050.67], + [6087,37153.48], + [6089,26106.02], + [6091,29844.92], + [6093,24478.76], + [6095,31587.5], + [6097,37326.25], + [6099,23350.97], + [6101,24592.52], + [6103,22331.56], + [6105,22398.71], + [6107,18604.48], + [6109,33242.73], + [6111,34910.03], + [6113,30862.28], + [6115,22755.48], + [8001,26451.01], + [8003,20083.73], + [8005,36307.2], + [8007,28826.79], + [8009,23550.69], + [8011,21741.28], + [8013,42990.98], + [8014,44114.98], + [8015,30400], + [8017,23390.71], + [8019,42389.95], + [8021,18234.81], + [8023,19705.63], + [8025,13222.44], + [8027,25844.19], + [8029,25779.58], + [8031,38432.47], + [8033,23126.02], + [8035,48499.64], + [8037,36503.64], + [8039,41879.35], + [8041,30999.24], + [8043,27846.26], + [8045,30997.79], + [8047,44426.03], + [8049,30225.69], + [8051,28345.76], + [8053,29233.78], + [8055,26082.41], + [8057,24474.56], + [8059,40029.51], + [8061,23879.74], + [8063,28366.67], + [8065,27513.57], + [8067,33968.88], + [8069,34727.24], + [8071,25698.58], + [8073,24639.08], + [8075,23183.14], + [8077,27787.5], + [8079,33153.73], + [8081,26813.04], + [8083,23830.45], + [8085,24012.18], + [8087,24517.56], + [8089,20416.39], + [8091,35697.63], + [8093,33579.74], + [8095,27119.12], + [8097,54534.17], + [8099,22747.48], + [8101,23022.8], + [8103,28075.88], + [8105,22620.34], + [8107,35613.83], + [8109,21918.26], + [8111,27509.42], + [8113,40147.88], + [8115,24191.81], + [8117,30071.61], + [8119,34647.86], + [8121,28403.11], + [8123,29162.5], + [8125,24119.43], + [9001,53121.82], + [9003,37857.2], + [9005,40724.69], + [9007,44310.92], + [9009,34643.92], + [9011,37578.01], + [9013,41203.24], + [9015,30299.2], + [10001,27239.25], + [10003,34261.13], + [10005,31434.15], + [11001,50916.67], + [12001,26528.4], + [12003,23060.26], + [12005,25837.07], + [12007,21131.03], + [12009,28223.48], + [12011,28384.48], + [12013,17093.01], + [12015,28366.37], + [12017,24463.06], + [12019,27661.92], + [12021,39800.78], + [12023,23214.01], + [12027,17682.42], + [12029,21183.91], + [12031,27626.46], + [12033,25582.19], + [12035,24163.02], + [12037,27243.91], + [12039,20792.21], + [12041,22261.29], + [12043,18029.2], + [12045,22575.58], + [12047,21451.88], + [12049,17351.53], + [12051,17753.42], + [12053,23017.96], + [12055,22077.31], + [12057,29035.36], + [12059,19235.46], + [12061,31107.11], + [12063,20224.27], + [12065,29274.38], + [12067,20532.72], + [12069,25194.07], + [12071,28352.49], + [12073,29203.31], + [12075,19727.71], + [12077,18518.92], + [12079,18351.64], + [12081,29030.08], + [12083,22701.61], + [12085,36989.54], + [12086,23353.4], + [12087,36905.67], + [12089,32914.12], + [12091,30449], + [12093,18359.5], + [12095,26636.69], + [12097,18058.33], + [12099,34682.24], + [12101,25886.45], + [12103,30884.72], + [12105,21464.18], + [12107,18009.06], + [12109,38460.45], + [12111,23333.09], + [12113,29484.91], + [12115,36093.75], + [12117,29667.39], + [12119,34377.07], + [12121,20836.23], + [12123,20073.79], + [12125,19571.15], + [12127,25038.43], + [12129,25537.15], + [12131,31167.22], + [12133,19881.32], + [13001,19438.06], + [13003,17400], + [13005,18892.88], + [13007,21239.02], + [13009,20622.05], + [13011,17605.65], + [13013,22013.49], + [13015,24429.93], + [13017,15825.19], + [13019,17636.92], + [13021,23098.83], + [13023,20515.44], + [13025,17397.45], + [13027,20849.39], + [13029,29387.19], + [13031,22535.34], + [13033,18887.41], + [13035,22962.31], + [13037,17140.56], + [13039,26364.55], + [13043,18237.79], + [13045,23115.5], + [13047,25159.47], + [13049,16552.69], + [13051,28621.26], + [13053,20921.31], + [13055,18827.6], + [13057,33036.88], + [13059,21966.8], + [13061,13984.82], + [13063,18527.21], + [13065,16956.33], + [13067,36309.77], + [13069,19131.87], + [13071,17131.14], + [13073,29556.87], + [13075,16662.28], + [13077,31064.34], + [13079,21481.08], + [13081,19840.07], + [13083,24217.89], + [13085,31578.23], + [13087,20284.8], + [13089,31113.26], + [13091,19765.7], + [13093,18881.86], + [13095,20245.02], + [13097,24947.04], + [13099,17491.34], + [13101,18622.47], + [13103,26132.41], + [13105,20629.67], + [13107,18086.1], + [13109,21635.29], + [13111,24003.77], + [13113,39271.48], + [13115,24106.92], + [13117,39356.52], + [13119,19579.69], + [13121,40402.41], + [13123,23203.91], + [13125,19369.37], + [13127,28631.17], + [13129,20584.29], + [13131,20170.44], + [13133,32398.77], + [13135,26866.03], + [13137,20561.68], + [13139,25073.27], + [13141,21739.9], + [13143,23504.28], + [13145,32320], + [13147,21766.53], + [13149,20565.65], + [13151,26026.85], + [13153,26056.13], + [13155,17805.56], + [13157,24879.66], + [13159,19602.25], + [13161,17854.74], + [13163,16391.73], + [13165,14680.53], + [13167,16464.38], + [13169,25443.33], + [13171,19760.29], + [13173,16616.36], + [13175,19982.71], + [13177,28963.14], + [13179,21098.85], + [13181,24753.81], + [13183,17925.61], + [13185,20632.23], + [13187,23279.55], + [13189,20241.15], + [13191,23863.93], + [13193,16446.27], + [13195,22479.48], + [13197,19586.15], + [13199,19247.08], + [13201,20617.14], + [13205,17435.29], + [13207,29737.83], + [13209,20555.26], + [13211,28585.71], + [13213,18784.48], + [13215,24023.08], + [13217,23194.81], + [13219,37854.61], + [13221,21184.82], + [13223,25993.22], + [13225,23483.74], + [13227,28967.05], + [13229,22632.35], + [13231,24416.22], + [13233,21521.82], + [13235,20497.63], + [13237,27316.33], + [13239,17456.16], + [13241,25564.9], + [13243,18729.8], + [13245,20498.5], + [13247,23190.78], + [13249,19033.58], + [13251,19615.83], + [13253,20451.19], + [13255,21264.18], + [13257,21390.53], + [13259,17297.76], + [13261,19952.28], + [13263,21431], + [13265,16563.71], + [13267,21894.12], + [13269,18992.07], + [13271,15579.76], + [13273,17130.04], + [13275,23646.27], + [13277,20915.56], + [13279,21403.94], + [13281,23753.78], + [13283,21203.35], + [13285,21301.45], + [13287,21130.77], + [13289,15825.36], + [13291,24883], + [13293,18935.6], + [13295,21991.63], + [13297,24703.13], + [13299,20825.94], + [13301,19908.55], + [13303,20184.65], + [13305,19825.47], + [13307,21860.83], + [13309,12177.42], + [13311,23452], + [13313,21641.38], + [13315,18938.82], + [13317,21021.05], + [13319,18299.64], + [13321,20184.67], + [15001,25482.99], + [15003,33069.93], + [15005,50133.57], + [15007,28130.13], + [15009,31637.71], + [16001,31150], + [16003,24528.25], + [16005,24042.86], + [16007,24463.92], + [16009,21863.28], + [16011,20204.95], + [16013,30530.47], + [16015,29354.35], + [16017,25656.36], + [16019,25749.12], + [16021,23973.6], + [16023,25502.45], + [16025,27328.03], + [16027,19439.12], + [16029,25934.46], + [16031,19861.69], + [16033,13548.64], + [16035,26579.7], + [16037,22971.56], + [16039,23291.34], + [16041,20349.84], + [16043,22381.14], + [16045,19479.31], + [16047,20323.62], + [16049,20219.17], + [16051,21330.96], + [16053,19360.34], + [16055,28134.13], + [16057,25744.54], + [16059,23141.18], + [16061,22919.83], + [16063,17347.85], + [16065,14218.64], + [16067,21490.25], + [16069,26638.91], + [16071,21077.32], + [16073,20034.7], + [16075,23391.7], + [16077,21021.4], + [16079,24165.9], + [16081,24798.25], + [16083,22679.18], + [16085,25540.93], + [16087,20495.97], + [17001,27024.37], + [17003,16404.07], + [17005,26432.93], + [17007,28497.19], + [17009,29863.52], + [17011,28240.83], + [17013,24428.74], + [17015,28095], + [17017,25558.13], + [17019,29619.49], + [17021,27252.42], + [17023,28890.04], + [17025,26076.29], + [17027,31642.57], + [17029,26958.01], + [17031,33031.18], + [17033,29053.33], + [17035,24182.87], + [17037,26803.01], + [17039,28051.9], + [17041,25796.91], + [17043,41840.37], + [17045,26342.67], + [17047,26685.34], + [17049,28904.8], + [17051,22091.63], + [17053,27234.78], + [17055,21680.25], + [17057,25657.45], + [17059,24023.48], + [17061,22111.72], + [17063,32196.96], + [17065,25952.72], + [17067,25980.75], + [17069,17677.5], + [17071,27832.02], + [17073,28253.06], + [17075,26824.15], + [17077,24632.46], + [17079,25219.92], + [17081,26314.04], + [17083,28285], + [17085,32773.54], + [17087,24894.51], + [17089,32855.03], + [17091,26457.63], + [17093,32930.29], + [17095,24844], + [17097,42356.58], + [17099,28289.71], + [17101,25531.84], + [17103,30880.34], + [17105,28978.15], + [17107,30817.98], + [17109,23712.35], + [17111,35817.03], + [17113,33624.7], + [17115,28526.92], + [17117,27384.65], + [17119,30282.72], + [17121,24319.57], + [17123,28900.42], + [17125,25885.46], + [17127,23500.43], + [17129,33011.91], + [17131,28061.28], + [17133,37052.17], + [17135,27474.11], + [17137,28902.26], + [17139,26411.84], + [17141,29507.35], + [17143,29575.31], + [17145,26544.1], + [17147,33598.78], + [17149,23636.21], + [17151,20944], + [17153,19314.29], + [17155,33033.47], + [17157,27290.34], + [17159,24998.35], + [17161,28176.6], + [17163,28111.86], + [17165,22704.98], + [17167,33641.38], + [17169,26819.82], + [17171,26586.25], + [17173,24844.49], + [17175,29982.91], + [17177,25919.13], + [17179,32512.86], + [17181,24645.82], + [17183,23759.02], + [17185,25100.85], + [17187,26450], + [17189,29282.7], + [17191,25470.69], + [17193,26967.11], + [17195,28394.96], + [17197,32979.93], + [17199,26030.45], + [17201,27196.36], + [17203,34573.46], + [18001,21723.83], + [18003,26675.2], + [18005,29171.65], + [18007,23375.4], + [18009,22522.84], + [18011,43259.14], + [18013,30788.26], + [18015,26209.06], + [18017,23692.8], + [18019,25707.72], + [18021,24721.81], + [18023,23768.05], + [18025,18054.58], + [18027,21890], + [18029,29989.31], + [18031,25602.78], + [18033,25545.35], + [18035,24152.34], + [18037,28786.85], + [18039,23619.78], + [18041,22215.57], + [18043,29716.99], + [18045,26110.64], + [18047,26348.05], + [18049,22780.63], + [18051,27804.88], + [18053,22021.34], + [18055,23879.92], + [18057,44219.63], + [18059,30984.35], + [18061,24979.32], + [18063,32715.44], + [18065,23746.8], + [18067,26252.54], + [18069,24937.08], + [18071,22848.46], + [18073,24802.26], + [18075,20381.89], + [18077,27238.89], + [18079,22556.25], + [18081,30659.33], + [18083,24283.05], + [18085,28153.33], + [18087,22592.45], + [18089,26179.62], + [18091,27226.89], + [18093,24904.92], + [18095,24348.95], + [18097,25460.56], + [18099,24016.48], + [18101,25589.79], + [18103,23588.05], + [18105,28283.83], + [18107,25851.82], + [18109,27252.63], + [18111,24156], + [18113,25307.42], + [18115,27646.19], + [18117,22548.18], + [18119,24546.91], + [18121,22994.9], + [18123,25136.17], + [18125,25791.67], + [18127,31843.8], + [18129,30283.6], + [18131,24355.46], + [18133,27595.9], + [18135,23894.92], + [18137,25690.8], + [18139,24154.44], + [18141,25979.22], + [18143,23848.29], + [18145,27338.71], + [18147,28392.03], + [18149,21536.78], + [18151,27785], + [18153,23922.27], + [18155,21843.32], + [18157,26961.54], + [18159,28802.95], + [18161,21675.6], + [18163,27223.08], + [18165,23413.14], + [18167,23665], + [18169,25460.78], + [18171,29433.61], + [18173,33531.25], + [18175,22761.54], + [18177,24312.7], + [18179,25899.6], + [18181,26099.19], + [18183,28396.73], + [19001,29682.19], + [19003,27744.09], + [19005,28416], + [19007,24975.55], + [19009,32293.75], + [19011,32504.03], + [19013,28049.79], + [19015,30778.88], + [19017,33141.63], + [19019,31070.75], + [19021,27409.77], + [19023,29301.29], + [19025,29598.59], + [19027,29391.77], + [19029,26994.88], + [19031,30376.99], + [19033,31822.48], + [19035,32750.23], + [19037,28554.22], + [19039,26431.49], + [19041,28985.97], + [19043,27832.46], + [19045,27965.53], + [19047,27706.54], + [19049,42397.27], + [19051,25385.82], + [19053,22546.32], + [19055,30626.32], + [19057,27156.84], + [19059,37302.88], + [19061,30963.22], + [19063,32393.9], + [19065,27476.82], + [19067,28765.33], + [19069,25182.5], + [19071,30632.89], + [19073,28620.18], + [19075,35593.67], + [19077,30657.74], + [19079,28088.94], + [19081,30134.82], + [19083,29207.89], + [19085,30134.93], + [19087,27988.61], + [19089,28083.33], + [19091,30027.68], + [19093,30923.56], + [19095,30677.02], + [19097,28112.28], + [19099,28422.41], + [19101,26967.92], + [19103,34562.87], + [19105,32096.98], + [19107,27250.22], + [19109,30146.19], + [19111,24508.4], + [19113,32764.88], + [19115,26792.13], + [19117,28071.62], + [19119,28828.29], + [19121,31920.9], + [19123,26981.74], + [19125,28893.33], + [19127,25425.59], + [19129,31991.41], + [19131,27350.83], + [19133,27702.35], + [19135,26384.05], + [19137,25509.22], + [19139,27733.33], + [19141,32937.39], + [19143,26971.43], + [19145,26839.73], + [19147,28387.77], + [19149,31051.43], + [19151,28252.8], + [19153,33209.49], + [19155,29063.01], + [19157,30348.18], + [19159,28530.3], + [19161,29948.88], + [19163,30383.27], + [19165,31146.93], + [19167,28811.99], + [19169,30082.76], + [19171,27139.68], + [19173,27774.45], + [19175,25576.96], + [19177,24527.89], + [19179,23681.01], + [19181,33605.58], + [19183,28416.73], + [19185,23441.42], + [19187,25813.27], + [19189,28532.26], + [19191,32257.59], + [19193,25797.25], + [19195,26456.65], + [19197,28463.27], + [20001,23254.74], + [20003,21548.55], + [20005,25662.7], + [20007,27620.24], + [20009,26358.05], + [20011,20580.39], + [20013,24857.68], + [20015,29450.96], + [20017,24024.68], + [20019,22948.94], + [20021,20466.54], + [20023,27481.13], + [20025,26939.01], + [20027,30463.14], + [20029,24914.16], + [20031,32263.16], + [20033,28068.26], + [20035,24173.06], + [20037,21068.67], + [20039,31445.13], + [20041,24359.09], + [20043,26563.68], + [20045,30301.65], + [20047,29972.2], + [20049,21391.78], + [20051,29448.74], + [20053,26755.3], + [20055,23301.73], + [20057,21602.33], + [20059,25699.6], + [20061,20830.86], + [20063,30479.72], + [20065,27237.93], + [20067,25801.72], + [20069,26119.93], + [20071,25133.89], + [20073,24854.95], + [20075,19273.6], + [20077,25742.62], + [20079,27049.4], + [20081,23047.7], + [20083,28862.82], + [20085,26204.82], + [20087,28239.67], + [20089,24764.93], + [20091,42703.13], + [20093,22638.26], + [20095,30626.27], + [20097,26359.66], + [20099,22788.26], + [20101,30352.68], + [20103,30781.78], + [20105,25425.42], + [20107,26800.47], + [20109,28658.05], + [20111,25058.05], + [20113,31020.18], + [20115,26822.75], + [20117,28361.74], + [20119,25350.6], + [20121,31400], + [20123,26816.89], + [20125,23026.36], + [20127,26431.51], + [20129,22232.55], + [20131,28737.55], + [20133,23533.88], + [20135,30797.3], + [20137,23825.1], + [20139,27155.46], + [20141,27491.39], + [20143,28760.58], + [20145,27264.38], + [20147,24496.09], + [20149,28047.58], + [20151,27213.31], + [20153,28614.15], + [20155,25680.58], + [20157,27656.5], + [20159,24597.02], + [20161,27928.46], + [20163,25938.1], + [20165,26486.38], + [20167,25910.14], + [20169,27680.5], + [20171,32663.95], + [20173,27170.93], + [20175,21155.07], + [20177,28710.74], + [20179,31479.17], + [20181,26772.09], + [20183,28335.78], + [20185,27138.86], + [20187,20085.06], + [20189,24346.18], + [20191,25283.13], + [20193,28611.74], + [20195,33357.14], + [20197,25622], + [20199,27465.15], + [20201,26915.52], + [20203,27580.75], + [20205,26170.22], + [20207,22388.46], + [20209,19463.37], + [21001,18449.61], + [21003,20906.42], + [21005,24580.31], + [21007,24566.67], + [21009,20060.71], + [21011,19529.1], + [21013,14789.54], + [21015,33014.55], + [21017,26121.31], + [21019,27168.72], + [21021,24743.55], + [21023,22209.92], + [21025,17218.6], + [21027,20471.97], + [21029,25871.48], + [21031,21539.68], + [21033,25518.99], + [21035,22632.07], + [21037,31391.87], + [21039,24049.38], + [21041,22427.59], + [21043,18295.29], + [21045,18771.78], + [21047,21066.28], + [21049,26304.02], + [21051,15821.29], + [21053,18642], + [21055,23035.27], + [21057,18047.15], + [21059,27052.67], + [21061,22569.87], + [21063,16364.02], + [21065,16823.72], + [21067,32194.09], + [21069,23282.66], + [21071,18602.07], + [21073,28140.09], + [21075,17512.24], + [21077,20573.59], + [21079,24920.65], + [21081,20093.26], + [21083,21467.97], + [21085,18520.45], + [21087,22617.21], + [21089,25146.64], + [21091,22739.37], + [21093,25977.73], + [21095,15567.36], + [21097,22084.44], + [21099,19597.19], + [21101,23934.58], + [21103,24068.24], + [21105,19312.18], + [21107,23337.86], + [21109,16853.28], + [21111,30617.77], + [21113,28694.05], + [21115,19500.39], + [21117,29634.24], + [21119,17653.09], + [21121,15346.4], + [21123,21186.96], + [21125,19807.39], + [21127,18723.02], + [21129,17590.65], + [21131,15673.14], + [21133,18323.01], + [21135,19397.54], + [21137,19772.87], + [21139,24525.65], + [21141,21138.62], + [21143,31457.84], + [21145,29335.78], + [21147,12195.98], + [21149,23030.58], + [21151,24725], + [21153,16926.8], + [21155,21916.73], + [21157,27968.67], + [21159,15697.59], + [21161,25232.27], + [21163,24924.43], + [21165,18740.32], + [21167,24642.68], + [21169,17988.4], + [21171,22428.75], + [21173,20995.4], + [21175,19722.88], + [21177,19679.47], + [21179,28111.67], + [21181,21648.81], + [21183,21074.43], + [21185,39295.27], + [21187,22350.93], + [21189,16019.54], + [21191,22340.29], + [21193,19909.09], + [21195,20676.07], + [21197,19369.35], + [21199,20732.38], + [21201,21964.73], + [21203,19429.37], + [21205,20350.61], + [21207,18463.37], + [21209,31452.71], + [21211,30312.22], + [21213,22533.86], + [21215,30732.46], + [21217,19659.76], + [21219,18950.38], + [21221,25962.45], + [21223,26190], + [21225,23221.67], + [21227,26828.29], + [21229,22489.49], + [21231,16743.53], + [21233,21294.42], + [21235,18562.87], + [21237,13822.8], + [21239,30794.86], + [22001,20995.94], + [22003,21279.34], + [22005,30879.43], + [22007,25552.69], + [22009,21558.4], + [22011,23688.97], + [22013,22325.11], + [22015,26911.02], + [22017,24787.35], + [22019,26217.79], + [22021,20749.61], + [22023,30176.28], + [22025,22420.33], + [22027,17621.76], + [22029,19637.3], + [22031,22506.51], + [22033,29116.48], + [22035,16691.75], + [22037,25300], + [22039,18329.26], + [22041,19442.34], + [22043,20013.08], + [22045,23003.65], + [22047,23689.81], + [22049,21192.62], + [22051,27529.18], + [22053,22338.52], + [22055,29718.08], + [22057,25626.32], + [22059,19605.22], + [22061,22702.76], + [22063,26574.64], + [22065,16329.63], + [22067,18350], + [22069,17817.87], + [22071,27778.51], + [22073,22807.66], + [22075,26155.89], + [22077,26147.41], + [22079,22756.39], + [22081,24422.75], + [22083,19843.89], + [22085,22394.21], + [22087,18757.95], + [22089,29795.64], + [22091,20496.92], + [22093,24906.3], + [22095,23711.15], + [22097,18410], + [22099,22652.92], + [22101,20939.53], + [22103,32604.07], + [22105,23265.02], + [22107,15136.99], + [22109,23185.61], + [22111,19007.22], + [22113,22803.3], + [22115,21231.9], + [22117,18635.43], + [22119,18559.76], + [22121,29208.78], + [22123,22868.24], + [22125,24962.38], + [22127,20318.57], + [23001,27028.7], + [23003,23754.26], + [23005,37083.47], + [23007,23212.35], + [23009,31439.01], + [23011,27729.57], + [23013,30136.28], + [23015,32036.07], + [23017,20830.15], + [23019,26669.36], + [23021,23181.17], + [23023,33361.09], + [23025,22478.72], + [23027,28422.03], + [23029,24753.18], + [23031,33773.11], + [24001,24207.69], + [24003,43550.94], + [24005,36916.67], + [24009,40812.54], + [24011,24818.96], + [24013,40052.4], + [24015,31581.99], + [24017,38863.8], + [24019,28107.32], + [24021,39716.04], + [24023,25979.42], + [24025,37680.9], + [24027,50492.11], + [24029,32978.9], + [24031,50229.75], + [24033,33113.84], + [24035,39756.67], + [24037,36823.27], + [24039,22666.95], + [24041,44539.11], + [24043,30033.07], + [24045,27842.75], + [24047,33137.5], + [24510,27670.56], + [25001,40902.7], + [25003,34504.57], + [25005,32452.19], + [25007,38099.28], + [25009,38501.54], + [25011,33133.48], + [25013,27994.49], + [25015,36465.96], + [25017,48173.93], + [25019,44392.58], + [25021,50453.1], + [25023,38890.74], + [25025,38224.07], + [25027,35027.91], + [26001,24530.1], + [26003,21981.03], + [26005,26905.66], + [26007,24247.27], + [26009,29511.06], + [26011,22716.81], + [26013,24443.95], + [26015,27444], + [26017,25358.9], + [26019,25441.53], + [26021,28023.95], + [26023,23603.98], + [26025,24972.02], + [26027,27843.09], + [26029,31796.52], + [26031,24849.55], + [26033,23431.4], + [26035,20704.22], + [26037,31866.16], + [26039,23107.08], + [26041,25568.44], + [26043,26059.38], + [26045,30017.43], + [26047,31914.73], + [26049,25213.99], + [26051,23189.47], + [26053,23863.03], + [26055,31850.83], + [26057,23292.95], + [26059,24093.52], + [26061,21567.44], + [26063,26145.33], + [26065,28365.69], + [26067,23606.39], + [26069,24166.97], + [26071,23609.22], + [26073,22917.9], + [26075,26735.39], + [26077,29580.82], + [26079,22293.47], + [26081,29204.55], + [26083,28001.91], + [26085,16999.6], + [26087,26966.15], + [26089,37243.4], + [26091,26393.06], + [26093,36551.53], + [26095,21642.62], + [26097,27390.78], + [26099,29572.8], + [26101,24719.23], + [26103,26085.77], + [26105,26318.53], + [26107,22220.62], + [26109,26061.29], + [26111,33217.77], + [26113,21558.23], + [26115,28933.6], + [26117,21376.17], + [26119,22248.21], + [26121,23166.27], + [26123,22954.58], + [26125,40744.31], + [26127,22457.14], + [26129,22268.02], + [26131,22432.02], + [26133,20561.26], + [26135,21984.16], + [26137,26078.84], + [26139,29613.24], + [26141,25386.85], + [26143,21877], + [26145,25595.82], + [26147,27888.16], + [26149,23730.95], + [26151,23702.09], + [26153,20448.56], + [26155,25328.46], + [26157,23830.58], + [26159,25581.03], + [26161,37572.76], + [26163,24209.27], + [26165,21928.51], + [27001,28197.03], + [27003,33797.42], + [27005,28678.37], + [27007,24212.55], + [27009,27561.25], + [27011,29659.72], + [27013,29516.12], + [27015,30869.03], + [27017,27742.97], + [27019,44298.19], + [27021,29273.52], + [27023,29343.4], + [27025,32461.74], + [27027,29449.19], + [27029,23412.2], + [27031,33872.92], + [27033,27763.91], + [27035,29746.64], + [27037,38652.12], + [27039,31124.62], + [27041,34052.89], + [27043,29423.74], + [27045,29174.68], + [27047,27540.52], + [27049,34298.29], + [27051,30413.91], + [27053,41850.42], + [27055,30579.3], + [27057,28358.3], + [27059,30017.62], + [27061,28213.22], + [27063,31549.78], + [27065,25805.26], + [27067,29234.01], + [27069,30779.64], + [27071,26810.41], + [27073,32231.28], + [27075,34195.07], + [27077,22954.66], + [27079,31342.29], + [27081,29204.93], + [27083,30680.74], + [27085,30338.75], + [27087,19996.07], + [27089,28650.21], + [27091,30877.53], + [27093,29333.06], + [27095,25674.19], + [27097,28023.05], + [27099,28474.7], + [27101,31273.87], + [27103,31877.18], + [27105,24569.37], + [27107,26840.68], + [27109,38326.1], + [27111,30033.91], + [27113,28096.2], + [27115,23646.06], + [27117,29307.11], + [27119,28700], + [27121,33269.86], + [27123,32485.66], + [27125,27381.03], + [27127,27749.58], + [27129,31426.72], + [27131,31472.29], + [27133,30499.13], + [27135,27771.2], + [27137,29999.1], + [27139,37929.11], + [27141,32971.53], + [27143,29938.37], + [27145,29796.81], + [27147,29736.8], + [27149,31703.1], + [27151,29543.18], + [27153,24777.24], + [27155,31995.17], + [27157,32349.37], + [27159,25075.76], + [27161,28088.75], + [27163,41391.08], + [27165,26001.2], + [27167,29432.11], + [27169,27940.16], + [27171,32505.38], + [27173,28500.86], + [28001,18274.31], + [28003,20478], + [28005,18522], + [28007,20550], + [28009,16715.11], + [28011,17077.43], + [28013,17446.75], + [28015,21821.43], + [28017,19036.88], + [28019,18536.19], + [28021,12824.06], + [28023,19696.43], + [28025,18682.88], + [28027,16526.24], + [28029,17831.45], + [28031,18041.97], + [28033,27534.4], + [28035,21033.98], + [28037,24446.77], + [28039,19463.64], + [28041,23298.8], + [28043,18853.76], + [28045,24237.08], + [28047,22829.76], + [28049,22155.13], + [28051,11638.57], + [28053,15066.18], + [28055,19968.07], + [28057,21300.39], + [28059,23096.73], + [28061,20858.68], + [28063,13644.76], + [28065,16423.33], + [28067,20427.78], + [28069,16564.63], + [28071,27368.05], + [28073,27308.06], + [28075,23268.92], + [28077,20784.41], + [28079,19070.37], + [28081,23749.22], + [28083,14632.48], + [28085,20218.18], + [28087,22803.13], + [28089,36678.93], + [28091,19505.47], + [28093,20051.92], + [28095,20873.12], + [28097,22775.11], + [28099,19071], + [28101,21501.55], + [28103,16425.37], + [28105,22403.94], + [28107,19144.69], + [28109,22350.78], + [28111,18913.16], + [28113,16842.86], + [28115,19570.07], + [28117,18948.63], + [28119,15493.75], + [28121,29536.02], + [28123,19656.27], + [28125,17380.65], + [28127,17772.28], + [28129,20136.86], + [28131,21297.23], + [28133,15969.63], + [28135,18155.65], + [28137,22703.02], + [28139,19336.36], + [28141,19115.42], + [28143,18641.18], + [28145,18449.47], + [28147,19604.07], + [28149,22045.45], + [28151,18540.38], + [28153,21235.63], + [28155,19902.35], + [28157,12639.07], + [28159,23151.44], + [28161,19746.38], + [28163,17032.1], + [29001,23545.76], + [29003,28126.8], + [29005,28252.38], + [29007,22444.22], + [29009,20117.91], + [29011,24786.61], + [29013,26418.33], + [29015,19603.42], + [29017,21086.56], + [29019,29536.25], + [29021,23968.75], + [29023,20649.41], + [29025,24483.05], + [29027,25100], + [29029,24048.34], + [29031,26043.25], + [29033,24889.71], + [29035,21181.4], + [29037,30696.93], + [29039,20343.78], + [29041,22755.6], + [29043,26178.73], + [29045,26455.6], + [29047,31441.54], + [29049,28033.06], + [29051,28839.51], + [29053,23337.6], + [29055,20051.55], + [29057,20507.95], + [29059,20251.89], + [29061,21991.63], + [29063,25477.35], + [29065,20721.83], + [29067,17574.22], + [29069,19010.13], + [29071,27366.8], + [29073,26505.08], + [29075,21596.69], + [29077,26040.87], + [29079,22155.56], + [29081,21611.02], + [29083,24414.66], + [29085,18749.36], + [29087,26572.12], + [29089,24326.48], + [29091,20293.44], + [29093,19484.02], + [29095,28504.96], + [29097,23582.94], + [29099,27363.12], + [29101,24541.13], + [29103,21831.28], + [29105,20521.65], + [29107,27678.51], + [29109,21030.47], + [29111,22765.18], + [29113,23046.37], + [29115,21999.59], + [29117,24337.87], + [29119,19071.84], + [29121,20160.8], + [29123,19751.82], + [29125,21706.2], + [29127,23516.25], + [29129,20162.93], + [29131,22263.32], + [29133,20035.02], + [29135,22566.42], + [29137,21966.53], + [29139,22672.41], + [29141,19348.82], + [29143,20083.88], + [29145,25663.18], + [29147,23744.78], + [29149,17875.72], + [29151,24709.2], + [29153,18520.35], + [29155,18621.69], + [29157,25014], + [29159,21913.57], + [29161,24850.21], + [29163,23984.17], + [29165,36805.95], + [29167,22192.16], + [29169,21387.28], + [29171,19725], + [29173,24113.44], + [29175,20575], + [29177,26180.38], + [29179,21913.68], + [29181,17714.12], + [29183,35667.55], + [29185,21131.22], + [29186,26347.35], + [29187,22700.83], + [29189,38046.72], + [29195,21855.47], + [29197,19553.03], + [29199,24185.94], + [29201,22621.12], + [29203,16815.5], + [29205,22812.18], + [29207,20993.55], + [29209,25324.48], + [29211,19475.46], + [29213,21787.34], + [29215,17716.41], + [29217,22663.11], + [29219,26039.13], + [29221,18551.14], + [29223,18451.87], + [29225,20570.55], + [29227,24036.44], + [29229,19393.39], + [29510,26416.51], + [30001,29290.58], + [30003,16970.06], + [30005,16589.72], + [30007,32106.33], + [30009,30660.79], + [30011,29646.72], + [30013,28609.57], + [30015,21777.6], + [30017,29187.66], + [30019,36813.93], + [30021,32083.56], + [30023,27170.94], + [30025,32733.04], + [30027,28153.88], + [30029,27388.8], + [30031,33929.83], + [30033,30122.08], + [30035,15355.37], + [30037,24520.87], + [30039,28635], + [30041,21845.74], + [30043,31992.86], + [30045,28075], + [30047,24654.69], + [30049,31318.38], + [30051,31979.92], + [30053,21932.9], + [30055,27867.51], + [30057,30884.4], + [30059,19220.08], + [30061,21141.98], + [30063,29841.56], + [30065,23387.28], + [30067,29862.68], + [30069,29115], + [30071,22789.87], + [30073,22300.38], + [30075,30569.76], + [30077,28711.47], + [30079,28400.84], + [30081,24533.47], + [30083,33683.67], + [30085,16675.15], + [30087,22913.24], + [30089,23017.86], + [30091,34014.29], + [30093,26338.81], + [30095,31619.42], + [30097,27800.84], + [30099,26634.98], + [30101,28875.44], + [30103,23543.98], + [30105,30088.89], + [30107,19257.94], + [30109,24998.19], + [30111,32694.14], + [31001,29105.11], + [31003,28485.65], + [31005,21762.18], + [31007,30125.93], + [31009,30201.85], + [31011,29211.69], + [31013,28599.16], + [31015,26953.81], + [31017,29944.61], + [31019,29133.33], + [31021,27652.91], + [31023,27622.75], + [31025,32418.43], + [31027,29891.67], + [31029,32502.24], + [31031,29339.72], + [31033,33140], + [31035,27788.56], + [31037,23154.55], + [31039,28936.17], + [31041,33007.17], + [31043,23161.54], + [31045,26204.95], + [31047,25083.77], + [31049,27934.96], + [31051,26703.25], + [31053,27905.93], + [31055,32139.84], + [31057,27047.11], + [31059,31520.91], + [31061,29049.3], + [31063,29046.43], + [31065,25075.69], + [31067,27692.95], + [31069,35200.48], + [31071,26066.82], + [31073,32761.16], + [31075,24005.56], + [31077,25027], + [31079,26059.09], + [31081,32152.48], + [31083,27019.07], + [31085,27538.05], + [31087,24784.68], + [31089,29053.85], + [31091,30481.63], + [31093,26384.17], + [31095,27081.02], + [31097,28655.14], + [31099,31063.56], + [31101,29146.53], + [31103,28538.89], + [31105,23838.72], + [31107,27922.12], + [31109,30661.57], + [31111,30164.94], + [31113,24356.18], + [31115,30660.73], + [31117,28814.8], + [31119,26548.95], + [31121,28532.05], + [31123,25373.19], + [31125,27369.55], + [31127,30492.64], + [31129,25442.72], + [31131,28553.91], + [31133,28786.05], + [31135,31231.74], + [31137,30346.52], + [31139,28862.29], + [31141,28184.86], + [31143,31827.27], + [31145,25796.93], + [31147,28472.12], + [31149,36201.98], + [31151,22722.14], + [31153,32819.05], + [31155,30642.52], + [31157,25989.92], + [31159,31945], + [31161,26280.18], + [31163,28357.6], + [31165,26704.61], + [31167,28674.02], + [31169,32026.29], + [31171,29038.81], + [31173,18863], + [31175,28900.93], + [31177,33646.96], + [31179,31554.22], + [31181,25794.47], + [31183,26540.63], + [31185,29799.13], + [32001,25519.09], + [32003,26253.41], + [32005,35501.29], + [32007,30410.42], + [32009,21807.66], + [32011,34963.56], + [32013,28533.09], + [32015,30197], + [32017,28779.42], + [32019,24166.02], + [32021,21618.64], + [32023,22882.28], + [32027,25737.34], + [32029,34648.05], + [32031,31369.17], + [32033,28622.8], + [32510,28268.22], + [33001,33752.89], + [33003,36047.96], + [33005,33081.2], + [33007,27392.13], + [33009,36200.84], + [33011,37684.92], + [33013,35246.15], + [33015,43446.4], + [33017,34286.42], + [33019,30772.69], + [34001,29583.02], + [34003,46158.76], + [34005,39456.77], + [34007,31918.15], + [34009,37035.65], + [34011,23323.49], + [34013,34257.19], + [34015,35777.01], + [34017,34823.31], + [34019,55456.76], + [34021,40413.45], + [34023,36804.93], + [34025,46316.1], + [34027,53409.19], + [34029,33116.09], + [34031,27906.8], + [34033,31410.04], + [34035,50925.7], + [34037,41182.58], + [34039,36897.61], + [34041,37325.2], + [35001,27343.87], + [35003,20715.25], + [35005,20852.21], + [35006,17216.97], + [35007,21533.02], + [35009,21623.22], + [35011,17339.13], + [35013,21014.71], + [35015,27865.91], + [35017,23547.21], + [35019,13697.99], + [35021,25527.51], + [35023,17664.37], + [35025,24422.37], + [35027,25466.53], + [35028,51736.97], + [35029,15268.44], + [35031,12390.96], + [35033,13642.11], + [35035,21069.73], + [35037,15731.99], + [35039,16109.93], + [35041,19671.65], + [35043,26522.86], + [35045,21477.74], + [35047,17171.78], + [35049,35058.55], + [35051,22846.57], + [35053,13484.14], + [35055,20335.69], + [35057,17672.93], + [35059,23415.02], + [35061,19738.04], + [36001,36451.72], + [36003,24276.07], + [36005,18852.63], + [36007,27627.97], + [36009,24452.52], + [36011,28966.95], + [36013,24353.62], + [36015,28293.25], + [36017,25633.47], + [36019,28204.74], + [36021,35465.95], + [36023,27380.8], + [36025,26473.68], + [36027,37704.65], + [36029,31324.14], + [36031,29951.72], + [36033,26415.97], + [36035,26470.51], + [36037,27607.47], + [36039,26698.85], + [36041,15505.81], + [36043,24755.92], + [36045,24872.44], + [36047,29375.27], + [36049,25471.04], + [36051,27778.57], + [36053,28784.19], + [36055,31282.08], + [36057,25251.22], + [36059,46363.91], + [36061,69532.86], + [36063,28193.67], + [36065,27691.77], + [36067,31777.59], + [36069,34328.45], + [36071,32501.03], + [36073,25610.08], + [36075,26118.33], + [36077,28629.18], + [36079,44232.62], + [36081,27385.52], + [36083,33488.7], + [36085,34001.77], + [36087,36497.8], + [36089,25718.07], + [36091,40203.35], + [36093,27658.57], + [36095,27119.09], + [36097,25252.3], + [36099,28671.79], + [36101,28089.87], + [36103,39372], + [36105,28012.36], + [36107,30064.34], + [36109,33084.12], + [36111,33369.42], + [36113,32801.71], + [36115,26747.15], + [36117,27343.27], + [36119,52300.73], + [36121,27489.12], + [36123,27439.22], + [37001,25374.9], + [37003,22385.82], + [37005,21280.18], + [37007,19798.37], + [37009,24350], + [37011,26362.67], + [37013,23442.11], + [37015,19123.28], + [37017,20570.82], + [37019,29150.66], + [37021,29214.59], + [37023,21543.78], + [37025,28506.52], + [37027,21558.57], + [37029,27805.9], + [37031,30886.22], + [37033,22078.99], + [37035,25779.22], + [37037,36372.92], + [37039,20278.84], + [37041,23092.89], + [37043,25969.34], + [37045,21131.35], + [37047,22483.26], + [37049,26911.98], + [37051,22989.41], + [37053,29454.09], + [37055,30793.07], + [37057,24135.6], + [37059,28674.23], + [37061,17995.94], + [37063,33971.31], + [37065,18895.56], + [37067,28725.51], + [37069,23741.41], + [37071,24158.78], + [37073,24216.15], + [37075,17886.38], + [37077,24941.6], + [37079,19505.08], + [37081,28504.02], + [37083,20399.58], + [37085,21959.79], + [37087,26748.23], + [37089,27975], + [37091,19735.27], + [37093,18918.37], + [37095,20158.94], + [37097,29667.67], + [37099,24230.64], + [37101,24248.23], + [37103,20900], + [37105,22977.86], + [37107,21650.62], + [37109,27145.88], + [37111,20661.07], + [37113,27602.75], + [37115,22874.79], + [37117,21705.83], + [37119,34939.53], + [37121,21669.4], + [37123,21720.99], + [37125,31030.86], + [37127,25196.8], + [37129,31839.66], + [37131,20013.96], + [37133,21917.58], + [37135,40317.86], + [37137,26635.11], + [37139,24071.26], + [37141,25171.27], + [37143,25772.37], + [37145,23899.19], + [37147,25548.99], + [37149,29174.78], + [37151,22192.91], + [37153,19800.83], + [37155,16225.35], + [37157,22179.34], + [37159,23472.69], + [37161,20544.53], + [37163,20080.22], + [37165,17585.89], + [37167,23689.84], + [37169,23018.99], + [37171,22511.48], + [37173,20089.8], + [37175,26343.61], + [37177,18774.34], + [37179,32472.48], + [37181,20341.02], + [37183,37277.86], + [37185,21495.32], + [37187,19549.36], + [37189,26269.79], + [37191,22710.2], + [37193,21595.9], + [37195,23215.66], + [37197,22775.21], + [37199,21626.18], + [38001,36380.37], + [38003,35310.34], + [38005,21278.26], + [38007,46290.3], + [38009,39162.44], + [38011,38098.18], + [38013,36088.61], + [38015,37683.41], + [38017,35122.91], + [38019,44283.65], + [38021,32866.51], + [38023,40226.39], + [38025,42134.98], + [38027,36918.4], + [38029,30708.92], + [38031,33829.77], + [38033,30891.87], + [38035,32330.91], + [38037,34715.64], + [38039,33440.48], + [38041,34133.19], + [38043,34458.37], + [38045,37784.75], + [38047,34809.05], + [38049,38231.67], + [38051,32146.91], + [38053,35747.45], + [38055,37655.71], + [38057,37160.94], + [38059,39350.45], + [38061,33407.49], + [38063,34665.98], + [38065,38246.75], + [38067,36524.41], + [38069,27497.56], + [38071,34808.93], + [38073,34284.44], + [38075,31095.93], + [38077,31913.57], + [38079,17293.46], + [38081,36954.98], + [38083,34784.39], + [38085,14906.39], + [38087,35487.16], + [38089,38659.76], + [38091,41067.46], + [38093,33403.32], + [38095,36007.87], + [38097,33178.17], + [38099,31495.39], + [38101,33727.05], + [38103,35474.13], + [38105,45974], + [39001,19986.61], + [39003,24668.15], + [39005,25370.28], + [39007,21844.76], + [39009,21759.68], + [39011,28607.69], + [39013,25705.81], + [39015,24763.05], + [39017,29852.81], + [39019,26729.48], + [39021,25704.8], + [39023,25392.12], + [39025,31423.95], + [39027,25723.69], + [39029,25077.69], + [39031,21222.22], + [39033,24491.03], + [39035,30354.15], + [39037,24807.72], + [39039,27148.37], + [39041,44963.7], + [39043,29841.45], + [39045,29334.7], + [39047,24250.62], + [39049,30968.42], + [39051,28174.12], + [39053,22233.73], + [39055,39892.83], + [39057,34229.46], + [39059,22792.98], + [39061,32724.36], + [39063,30328.26], + [39065,21930.08], + [39067,23090.57], + [39069,27697.54], + [39071,21773.62], + [39073,23557.49], + [39075,21119.24], + [39077,24315.08], + [39079,21288.35], + [39081,24237.45], + [39083,25351.82], + [39085,32244.54], + [39087,22028.74], + [39089,29135.52], + [39091,26762.24], + [39093,28723.2], + [39095,27022.36], + [39097,30886.87], + [39099,26101.31], + [39101,24200], + [39103,33751.15], + [39105,22066.13], + [39107,28179.52], + [39109,27430.95], + [39111,23279.15], + [39113,28018.7], + [39115,22025.1], + [39117,24557.93], + [39119,22808.16], + [39121,24869.87], + [39123,32187.72], + [39125,24154.62], + [39127,21298.86], + [39129,26713.38], + [39131,22677.78], + [39133,28222.09], + [39135,25143.31], + [39137,28794.14], + [39139,24227.73], + [39141,24111.24], + [39143,24965.45], + [39145,22918.52], + [39147,25768.44], + [39149,28237.31], + [39151,27595.83], + [39153,30572.8], + [39155,25895.22], + [39157,24659.6], + [39159,34674.81], + [39161,26314.81], + [39163,19586.43], + [39165,38604.46], + [39167,26617.6], + [39169,26001.93], + [39171,24515.74], + [39173,31085.66], + [39175,25706.69], + [40001,15897.17], + [40003,32877.46], + [40005,23016.81], + [40007,26393.33], + [40009,24300], + [40011,28631.31], + [40013,21728.85], + [40015,20172.46], + [40017,28135.91], + [40019,24596.54], + [40021,18205.99], + [40023,18639.52], + [40025,28570.27], + [40027,29907.09], + [40029,24447.6], + [40031,24575.19], + [40033,21508.49], + [40035,21029.32], + [40037,23351.32], + [40039,24922.05], + [40041,21395.6], + [40043,24842.81], + [40045,26328.11], + [40047,25535.69], + [40049,21740.08], + [40051,26348.16], + [40053,29559.48], + [40055,22530.3], + [40057,23333.48], + [40059,21425.27], + [40061,19408.05], + [40063,18906.14], + [40065,23255.2], + [40067,18491.41], + [40069,20480.63], + [40071,23840.89], + [40073,30932.22], + [40075,23381.12], + [40077,23312.94], + [40079,20012.5], + [40081,23171.05], + [40083,27623.38], + [40085,19049.2], + [40087,27813.24], + [40089,18851], + [40091,21831.62], + [40093,28249.6], + [40095,22193.36], + [40097,22208.17], + [40099,24216.14], + [40101,22113.49], + [40103,28850.21], + [40105,20528.57], + [40107,18481.18], + [40109,28909.02], + [40111,21028.35], + [40113,24380.48], + [40115,19411.37], + [40117,22229.5], + [40119,24527.2], + [40121,25134.45], + [40123,23890.16], + [40125,22463.26], + [40127,22548.76], + [40129,26348.73], + [40131,30074.62], + [40133,19144.36], + [40135,18536.47], + [40137,24548.62], + [40139,20678.6], + [40141,22983.33], + [40143,29389.68], + [40145,26835.93], + [40147,28532.39], + [40149,26101.98], + [40151,29695.06], + [40153,27152.94], + [41001,26258.45], + [41003,32057.56], + [41005,37136.05], + [41007,27859.23], + [41009,27738.22], + [41011,24983.76], + [41013,24528.57], + [41015,26155.87], + [41017,30794.4], + [41019,25122.46], + [41021,23588.94], + [41023,25135.75], + [41025,25150.88], + [41027,30288.72], + [41029,26762.81], + [41031,22289.2], + [41033,24617.09], + [41035,23754.81], + [41037,22634.95], + [41039,27017.15], + [41041,25454.87], + [41043,24108.88], + [41045,19536.02], + [41047,24742.03], + [41049,22024.11], + [41051,34562.81], + [41053,25694.78], + [41055,34187.5], + [41057,25026.97], + [41059,23058.8], + [41061,26828.81], + [41063,26684.65], + [41065,25213.22], + [41067,34978.57], + [41069,22033.98], + [41071,28763.33], + [42001,30490.84], + [42003,35661.43], + [42005,25673.08], + [42007,29081.7], + [42009,23947.15], + [42011,29214.56], + [42013,25580], + [42015,27059.02], + [42017,41704.21], + [42019,36026.47], + [42021,26091.07], + [42023,24383.96], + [42025,25551.85], + [42027,30240.73], + [42029,46758.87], + [42031,24022.98], + [42033,23348.96], + [42035,23111.37], + [42037,26931.62], + [42039,25627.31], + [42041,35071.01], + [42043,31429.29], + [42045,36940.53], + [42047,27306.64], + [42049,27020], + [42051,24031.51], + [42053,22877.66], + [42055,28919.12], + [42057,24794.29], + [42059,27918.8], + [42061,23953.56], + [42063,26181.01], + [42065,23961.44], + [42067,23784.11], + [42069,27595.78], + [42071,29445.45], + [42073,27220.51], + [42075,27926.67], + [42077,31078.13], + [42079,27073.95], + [42081,26920.59], + [42083,26560.35], + [42085,26894.4], + [42087,23796.69], + [42089,26249.48], + [42091,45567.06], + [42093,31971.73], + [42095,33031.37], + [42097,25376.99], + [42099,28870.63], + [42101,23547.47], + [42103,30506.95], + [42105,21128.79], + [42107,25893.99], + [42109,25301.14], + [42111,24917.37], + [42113,26732.72], + [42115,27748.32], + [42117,24839.53], + [42119,30698.76], + [42121,25342.37], + [42123,26261.21], + [42125,32950.62], + [42127,25942.97], + [42129,32201.74], + [42131,27743.6], + [42133,30158.04], + [44001,45230.47], + [44003,36968.64], + [44005,44706.25], + [44007,28647.45], + [44009,41054.77], + [45001,18692.91], + [45003,25768.15], + [45005,13954.8], + [45007,24231.87], + [45009,19927.35], + [45011,18816.08], + [45013,33717.79], + [45015,26229.45], + [45017,24276.47], + [45019,34934.02], + [45021,18821.69], + [45023,19360], + [45025,19921.77], + [45027,21423.75], + [45029,20724.18], + [45031,21061.13], + [45033,14822.14], + [45035,26305.42], + [45037,24819.77], + [45039,20941.11], + [45041,23443.08], + [45043,28337.45], + [45045,28744.19], + [45047,22452.4], + [45049,16802.67], + [45051,24948.98], + [45053,18573.65], + [45055,22866.02], + [45057,25389.22], + [45059,20863.35], + [45061,17914.4], + [45063,29026.27], + [45065,26127.05], + [45067,17307.17], + [45069,17374.21], + [45071,22321.86], + [45073,26470], + [45075,18431.68], + [45077,24058.47], + [45079,28236.25], + [45081,18915.96], + [45083,24644.53], + [45085,21668.9], + [45087,20971.19], + [45089,18244.13], + [45091,30346.72], + [46003,32760.27], + [46005,26089.47], + [46007,14310.96], + [46009,30018.81], + [46011,29292.02], + [46013,32460.53], + [46015,30096.09], + [46017,10466.84], + [46019,26320.33], + [46021,39689.47], + [46023,21546.45], + [46025,27244.74], + [46027,28735], + [46029,29914.47], + [46031,14757.57], + [46033,32902.9], + [46035,29640.74], + [46037,32217.22], + [46039,29198.7], + [46041,16336.73], + [46043,29843.95], + [46045,32853.33], + [46047,27385.58], + [46049,32314.62], + [46051,31008.68], + [46053,27383.18], + [46055,23889.52], + [46057,27630.38], + [46059,32778.34], + [46061,24162.22], + [46063,32346.9], + [46065,33805.88], + [46067,30465.55], + [46069,30783.84], + [46071,16109.06], + [46073,39696.8], + [46075,26809.29], + [46077,34296.68], + [46079,32178.1], + [46081,29929.95], + [46083,38485.77], + [46085,21364.75], + [46087,30600], + [46089,29863.05], + [46091,27880], + [46093,27316.81], + [46095,13855.89], + [46097,29995.52], + [46099,29965.56], + [46101,30491.74], + [46102,"NA"], + [46103,28938.84], + [46105,30826.61], + [46107,33152.29], + [46109,25187.64], + [46111,33277.38], + [46115,32075.31], + [46117,33782.53], + [46119,38679.57], + [46121,10602.22], + [46123,28419.55], + [46125,28465.07], + [46127,37133.05], + [46129,29164.32], + [46135,32155.11], + [46137,11939.89], + [47001,26706.97], + [47003,22601.11], + [47005,20048.12], + [47007,19858.1], + [47009,27950.6], + [47011,25229.53], + [47013,20621.37], + [47015,24460.8], + [47017,20990.83], + [47019,21014.78], + [47021,25081.72], + [47023,21309.43], + [47025,20361.8], + [47027,17158.58], + [47029,19210.04], + [47031,25145.34], + [47033,19953.01], + [47035,23600.87], + [47037,32091.67], + [47039,20804.94], + [47041,24653.67], + [47043,24468.8], + [47045,24957.2], + [47047,30138.13], + [47049,18065.98], + [47051,26302.89], + [47053,21814.06], + [47055,23288.07], + [47057,20638.8], + [47059,21548.77], + [47061,15595.91], + [47063,21442.02], + [47065,29350.61], + [47067,18542.44], + [47069,19201.59], + [47071,22719.52], + [47073,21711.3], + [47075,20745.38], + [47077,20822.44], + [47079,22936.02], + [47081,21685.6], + [47083,20375.19], + [47085,21937.89], + [47087,17701.61], + [47089,23929.53], + [47091,20682.53], + [47093,30666.12], + [47095,21839.56], + [47097,19351.85], + [47099,19643.51], + [47101,20272.91], + [47103,23820.58], + [47105,29822.62], + [47107,20831.62], + [47109,19400.79], + [47111,20876.8], + [47113,24539.92], + [47115,23578.05], + [47117,23315.71], + [47119,25663.32], + [47121,22122.63], + [47123,19599.61], + [47125,24179.56], + [47127,32259.24], + [47129,20848.03], + [47131,22054.66], + [47133,20128.4], + [47135,21174.47], + [47137,21578.6], + [47139,24755.32], + [47141,24040.68], + [47143,21968.4], + [47145,25094.21], + [47147,26298.89], + [47149,27739.64], + [47151,18062.45], + [47153,22306.87], + [47155,22719.92], + [47157,27419.32], + [47159,22935.97], + [47161,22017.41], + [47163,26063.79], + [47165,29903.7], + [47167,25463.25], + [47169,18750.34], + [47171,21096.92], + [47173,20258.24], + [47175,20060.85], + [47177,20923.9], + [47179,27525.54], + [47181,19502.39], + [47183,20876.42], + [47185,19175.85], + [47187,47732.53], + [47189,30617.41], + [48001,21402.24], + [48003,27838.08], + [48005,22135.53], + [48007,28309.38], + [48009,30006.54], + [48011,30383.77], + [48013,23446.43], + [48015,29946.39], + [48017,17739.03], + [48019,28329.08], + [48021,24304.67], + [48023,31298.6], + [48025,20550.85], + [48027,24098.58], + [48029,24880.41], + [48031,29945.17], + [48033,39876.54], + [48035,25905.2], + [48037,24878.95], + [48039,32726.57], + [48041,26271.88], + [48043,24729.31], + [48045,22514.17], + [48047,11893.05], + [48049,23448.28], + [48051,25943.77], + [48053,28168.77], + [48055,23418.6], + [48057,25702.51], + [48059,20683.66], + [48061,15221.11], + [48063,21197.37], + [48065,31314.18], + [48067,21452.19], + [48069,21169.4], + [48071,30891.81], + [48073,22072.79], + [48075,20350], + [48077,27228.06], + [48079,19216.73], + [48081,25882.41], + [48083,25460.17], + [48085,40932.74], + [48087,21307.06], + [48089,25121.48], + [48091,35047.23], + [48093,21156.15], + [48095,20662.69], + [48097,29439.13], + [48099,23378.47], + [48101,20539.82], + [48103,23267.5], + [48105,23454.14], + [48107,19280.07], + [48109,14536.42], + [48111,24671.19], + [48113,29202.16], + [48115,23957.47], + [48117,20222.7], + [48119,22918.33], + [48121,37294.62], + [48123,30617.97], + [48125,24317.2], + [48127,16442.86], + [48129,23325.98], + [48131,17794.01], + [48133,18556.88], + [48135,26693.65], + [48137,17708.16], + [48139,28247.47], + [48141,18919.29], + [48143,22210.28], + [48145,17025.09], + [48147,24147.84], + [48149,29159.7], + [48151,27386.73], + [48153,24137.25], + [48155,24363.27], + [48157,37811.04], + [48159,22715.3], + [48161,25981.12], + [48163,16306.53], + [48165,21586.42], + [48167,33743.28], + [48169,26972.04], + [48171,32897.05], + [48173,31705.35], + [48175,28508.18], + [48177,22585.76], + [48179,23634.33], + [48181,26336.15], + [48183,25206.54], + [48185,26536.23], + [48187,28357.49], + [48189,19271.08], + [48191,20028.81], + [48193,26669.32], + [48195,20649.12], + [48197,20551.55], + [48199,29223.88], + [48201,30020.21], + [48203,24192.47], + [48205,29595.08], + [48207,22796.58], + [48209,29283.33], + [48211,28546.2], + [48213,24255.25], + [48215,15223.53], + [48217,23346.47], + [48219,22563.08], + [48221,31768.11], + [48223,24067.79], + [48225,19950], + [48227,24353.19], + [48229,11148], + [48231,23405.43], + [48233,23302.53], + [48235,33175.2], + [48237,29423.29], + [48239,26161.73], + [48241,19957.64], + [48243,25447.22], + [48245,25895.67], + [48247,15499.7], + [48249,19932], + [48251,26449.82], + [48253,29288.89], + [48255,29501.06], + [48257,25344.84], + [48259,37863.92], + [48261,10978.26], + [48263,30652.61], + [48265,28555.04], + [48267,27362.67], + [48269,27243.01], + [48271,18713], + [48273,20508.52], + [48275,21177.48], + [48277,23206.27], + [48279,21317.09], + [48281,26113.03], + [48283,27303.51], + [48285,29223.81], + [48287,26344.57], + [48289,24904.81], + [48291,22740.21], + [48293,20234.3], + [48295,28850], + [48297,22599.66], + [48299,34951.3], + [48301,32685.77], + [48303,26632.43], + [48305,25238.81], + [48307,22807.09], + [48309,24255.22], + [48311,34902.27], + [48313,25809.79], + [48315,25834.22], + [48317,27476.42], + [48319,22738.34], + [48321,22711.79], + [48323,15510.95], + [48325,25171.62], + [48327,23312.09], + [48329,37601.05], + [48331,22574.41], + [48333,23056.42], + [48335,28188.38], + [48337,26280.17], + [48339,37154.39], + [48341,19821.54], + [48343,22959.76], + [48345,25051.26], + [48347,23994.44], + [48349,22200.37], + [48351,17935.15], + [48353,22760.98], + [48355,26556.25], + [48357,23819.73], + [48359,34042.64], + [48361,27620.62], + [48363,23897.75], + [48365,25741.8], + [48367,32868.09], + [48369,20661.51], + [48371,19723.3], + [48373,23886.99], + [48375,22883.65], + [48377,14147.48], + [48379,22904.65], + [48381,32088.51], + [48383,23580.38], + [48385,16893.43], + [48387,21135.62], + [48389,18678.25], + [48391,22657.58], + [48393,34038.83], + [48395,23282.06], + [48397,38227.36], + [48399,21899.25], + [48401,24199.63], + [48403,18490.41], + [48405,20275.2], + [48407,20463.45], + [48409,24445.77], + [48411,23759.34], + [48413,25486.93], + [48415,26179.62], + [48417,23274.24], + [48419,19703.62], + [48421,24821.75], + [48423,25335.84], + [48425,27185.99], + [48427,11455.84], + [48429,22348.85], + [48431,25123.53], + [48433,27999.11], + [48435,31152.85], + [48437,19585.98], + [48439,30099.65], + [48441,25541.92], + [48443,20030], + [48445,23586.79], + [48447,27406.51], + [48449,20567.66], + [48451,27272.76], + [48453,37948.84], + [48455,19826.86], + [48457,22984.38], + [48459,22740.14], + [48461,24923.51], + [48463,17437.01], + [48465,19590.71], + [48467,24354.95], + [48469,27600], + [48471,22346.12], + [48473,25492.23], + [48475,25753.82], + [48477,27461.89], + [48479,15435.33], + [48481,25902.61], + [48483,26572.73], + [48485,25060.42], + [48487,22952.3], + [48489,12413.68], + [48491,32893.58], + [48493,28941.89], + [48495,22424.67], + [48497,26473.17], + [48499,24959.85], + [48501,22782.5], + [48503,25651.78], + [48505,16761.3], + [48507,11602.08], + [49001,21360.22], + [49003,22821.38], + [49005,21764.26], + [49007,22737.25], + [49009,22533.73], + [49011,27778.05], + [49013,23551.17], + [49015,21216.9], + [49017,23334.56], + [49019,24700.41], + [49021,19136.81], + [49023,20746.25], + [49025,22120.77], + [49027,23417.69], + [49029,30726.76], + [49031,14712.43], + [49033,18918.02], + [49035,29340.53], + [49037,15530.98], + [49039,19665.15], + [49041,21235.19], + [49043,52824.72], + [49045,23723.6], + [49047,23300], + [49049,23285.6], + [49051,29137.58], + [49053,24735.84], + [49055,21212.36], + [49057,24840.2], + [50001,33093.07], + [50003,32353.1], + [50005,25620.58], + [50007,38195.28], + [50009,22403.96], + [50011,29862.93], + [50013,38019.15], + [50015,31454.24], + [50017,30154.35], + [50019,26011.89], + [50021,28699.56], + [50023,32790.79], + [50025,30750.46], + [50027,34149.12], + [51001,24801.7], + [51003,41397.54], + [51005,26215.38], + [51007,25242.38], + [51009,24066.01], + [51011,25632.05], + [51013,65871.95], + [51015,30940.24], + [51017,27525.21], + [51019,30487.1], + [51021,26207.14], + [51023,34140.32], + [51025,21901.69], + [51027,18561.25], + [51029,21010.98], + [51031,25969.42], + [51033,28657.2], + [51035,22786.08], + [51036,31980.58], + [51037,18229.21], + [51041,34796.35], + [51043,37555.12], + [51045,27474.77], + [51047,30243.21], + [51049,23177.24], + [51051,20773.97], + [51053,25296.97], + [51057,25550.82], + [51059,51812.15], + [51061,41969.37], + [51063,24895.85], + [51065,33196.46], + [51067,27609.75], + [51069,31933.95], + [51071,24883.47], + [51073,31953.01], + [51075,50060.63], + [51077,20332.44], + [51079,30445.63], + [51081,21245.06], + [51083,20893], + [51085,38140.38], + [51087,35465.1], + [51089,21331.17], + [51091,33538.95], + [51093,32769.17], + [51095,41304.35], + [51097,25071.31], + [51099,35311.66], + [51101,30416.04], + [51103,33581.04], + [51105,18818.22], + [51107,49456.68], + [51109,29279.46], + [51111,19397.25], + [51113,29738.49], + [51115,34865.52], + [51117,21792.91], + [51119,29729.39], + [51121,29812.85], + [51125,32600.44], + [51127,36946.97], + [51131,25335.84], + [51133,34346.23], + [51135,21054.1], + [51137,29619.77], + [51139,23660.89], + [51141,21613.1], + [51143,24305.26], + [51145,36705.81], + [51147,23461.51], + [51149,28085.23], + [51153,36990.97], + [51155,26845.18], + [51157,37772.65], + [51159,24778.18], + [51161,34043.46], + [51163,30253.09], + [51165,29351.59], + [51167,20942.04], + [51169,20963.33], + [51171,26609.35], + [51173,21934.73], + [51175,26906.83], + [51177,32784], + [51179,39036.18], + [51181,26794.61], + [51183,26406.83], + [51185,24660.08], + [51187,29506.69], + [51191,25572.88], + [51193,31900], + [51195,22083.47], + [51197,24520.66], + [51199,37912.87], + [51510,55309.87], + [51520,21893.78], + [51530,19881.82], + [51540,33503.36], + [51550,32037.32], + [51570,27028.57], + [51580,21292.27], + [51590,22908.26], + [51595,18567.34], + [51600,47602.59], + [51610,64175.38], + [51620,24816.53], + [51630,33135.25], + [51640,22661.33], + [51650,26672.36], + [51660,21203.32], + [51670,22659.09], + [51678,29229.73], + [51680,24170.78], + [51683,28058.36], + [51685,27342.43], + [51690,23367.86], + [51700,25723.11], + [51710,25911.51], + [51720,18544.84], + [51730,21049.15], + [51735,38781.61], + [51740,23405.16], + [51750,20520.69], + [51760,29061.7], + [51770,24337.39], + [51775,31543.29], + [51790,28418.26], + [51800,30838.15], + [51810,34170.99], + [51820,23237.45], + [51830,35027.07], + [51840,28576.19], + [53001,18090.18], + [53003,26066.95], + [53005,30197.39], + [53007,26498.52], + [53009,28446.43], + [53011,31875.56], + [53013,30268.92], + [53015,25563.49], + [53017,24897.08], + [53019,21706.22], + [53021,21375.3], + [53023,25367.12], + [53025,22124.09], + [53027,24406.15], + [53029,34003.91], + [53031,32441.59], + [53033,46225.31], + [53035,34024.7], + [53037,27391.45], + [53039,24617.72], + [53041,23832.13], + [53043,27513.85], + [53045,25229.39], + [53047,23126.27], + [53049,22415.32], + [53051,26191.3], + [53053,30647.35], + [53055,41212.5], + [53057,30078.26], + [53059,27391.36], + [53061,35213.06], + [53063,28683.13], + [53065,24345.97], + [53067,32098.4], + [53069,27420.27], + [53071,28795.49], + [53073,29390.32], + [53075,24855.41], + [53077,21307.69], + [54001,20029.84], + [54003,27174.71], + [54005,20577.91], + [54007,20094.49], + [54009,26537.84], + [54011,24877.29], + [54013,18587.12], + [54015,16034.73], + [54017,19022.48], + [54019,20818.18], + [54021,20986.94], + [54023,19774.62], + [54025,23745.85], + [54027,20594.49], + [54029,24521.46], + [54031,23072.87], + [54033,26924.08], + [54035,21620.38], + [54037,33754.62], + [54039,28130], + [54041,21323.27], + [54043,18385.55], + [54045,21257.85], + [54047,15360.26], + [54049,25365.84], + [54051,23360.64], + [54053,21390.34], + [54055,21458.58], + [54057,21426.69], + [54059,19700], + [54061,28403.54], + [54063,22247.39], + [54065,23752.46], + [54067,21960.5], + [54069,30353.3], + [54071,23633.91], + [54073,26700.41], + [54075,22969.16], + [54077,23371.71], + [54079,29691.12], + [54081,23987.82], + [54083,24604.64], + [54085,19723.85], + [54087,20677.96], + [54089,20543.24], + [54091,22997.6], + [54093,22468.1], + [54095,23867.47], + [54097,21020.8], + [54099,19861.35], + [54101,19977.25], + [54103,20224.81], + [54105,19833.05], + [54107,26326.27], + [54109,20608.3], + [55001,24615.09], + [55003,23278.11], + [55005,27213.73], + [55007,28409.22], + [55009,30439.92], + [55011,28784.72], + [55013,27393.72], + [55015,32798.83], + [55017,27898.76], + [55019,23452.26], + [55021,31954.43], + [55023,25078.72], + [55025,37771.91], + [55027,27360.82], + [55029,35429.61], + [55031,28146.02], + [55033,27727.35], + [55035,27984.3], + [55037,28576.5], + [55039,29837.24], + [55041,24789.86], + [55043,24792.28], + [55045,30025.82], + [55047,26871.67], + [55049,32348.32], + [55051,27504.71], + [55053,25749.37], + [55055,29426.72], + [55057,25266.94], + [55059,28908.91], + [55061,28526.12], + [55063,30491.63], + [55065,27043.95], + [55067,25450.68], + [55069,29983.41], + [55071,27733.91], + [55073,30245.9], + [55075,26405.61], + [55077,25773.82], + [55078,16146.04], + [55079,26556.97], + [55081,26769.08], + [55083,28367.65], + [55085,29637.07], + [55087,30814.86], + [55089,46125.91], + [55091,27761.09], + [55093,32358.73], + [55095,28208.51], + [55097,29160.67], + [55099,28237.44], + [55101,29900], + [55103,25655.95], + [55105,27029.39], + [55107,24130.04], + [55109,36820.16], + [55111,28252.67], + [55113,31407.55], + [55115,26584.45], + [55117,29513.56], + [55119,26835.22], + [55121,26848.77], + [55123,25512.1], + [55125,30089.39], + [55127,29758.87], + [55129,29081.48], + [55131,36222.67], + [55133,42279.12], + [55135,29634.35], + [55137,26502.15], + [55139,30983.55], + [55141,29382.67], + [56001,27300], + [56003,22947.31], + [56005,32954.07], + [56007,29007.11], + [56009,30839.84], + [56011,34374.79], + [56013,26961.92], + [56015,27449.17], + [56017,31335.27], + [56019,32253.78], + [56021,31286.64], + [56023,29580.38], + [56025,31553.53], + [56027,24926.58], + [56029,32426.97], + [56031,30956.52], + [56033,32651.82], + [56035,28810.97], + [56037,30282.59], + [56039,48557.37], + [56041,27048.12], + [56043,27494.83], + [56045,33296.7] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-individual-mean-2019.json b/data/regional/united-states/economics/income/us-income-individual-mean-2019.json new file mode 100644 index 0000000..ae8ff0b --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-individual-mean-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Income Per-Capita", + "description" : "Mean income per-capita from the previous 12 months in 2019 US dollars.", + "units" : "$", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.individual.mean.2019"], + [1001,29819], + [1003,32626], + [1005,18473], + [1007,20778], + [1009,24747], + [1011,20877], + [1013,21038], + [1015,25345], + [1017,22729], + [1019,24301], + [1021,24658], + [1023,22308], + [1025,22225], + [1027,23519], + [1029,23142], + [1031,27806], + [1033,25536], + [1035,19769], + [1037,23694], + [1039,23687], + [1041,24563], + [1043,23468], + [1045,24645], + [1047,19612], + [1049,21907], + [1051,29052], + [1053,19028], + [1055,24883], + [1057,22483], + [1059,21641], + [1061,21711], + [1063,14884], + [1065,21191], + [1067,25276], + [1069,27097], + [1071,22596], + [1073,32098], + [1075,22636], + [1077,28033], + [1079,23450], + [1081,27860], + [1083,28411], + [1085,20209], + [1087,20419], + [1089,36620], + [1091,25635], + [1093,21311], + [1095,24453], + [1097,25861], + [1099,20527], + [1101,29071], + [1103,27367], + [1105,15055], + [1107,23024], + [1109,22453], + [1111,24721], + [1113,23470], + [1115,26409], + [1117,38549], + [1119,16799], + [1121,23305], + [1123,25217], + [1125,26789], + [1127,23882], + [1129,26752], + [1131,16841], + [1133,22952], + [2013,33939], + [2016,39647], + [2020,41415], + [2050,19885], + [2060,44168], + [2068,34365], + [2070,25993], + [2090,37025], + [2100,31731], + [2105,36091], + [2110,43680], + [2122,34226], + [2130,37590], + [2150,32876], + [2158,13762], + [2164,24836], + [2170,31232], + [2180,23581], + [2185,48730], + [2188,23780], + [2195,36112], + [2198,27080], + [2220,39615], + [2230,39453], + [2240,32193], + [2261,38907], + [2275,32286], + [2282,32198], + [2290,22718], + [4001,15128], + [4003,26819], + [4005,27339], + [4007,24251], + [4009,18683], + [4011,25780], + [4012,22879], + [4013,33279], + [4015,26166], + [4017,18935], + [4019,29707], + [4021,24959], + [4023,21480], + [4025,30341], + [4027,21758], + [5001,26386], + [5003,23391], + [5005,26863], + [5007,34442], + [5009,24727], + [5011,22945], + [5013,23688], + [5015,25295], + [5017,20232], + [5019,21337], + [5021,22505], + [5023,27227], + [5025,24225], + [5027,21189], + [5029,25158], + [5031,26948], + [5033,24547], + [5035,23172], + [5037,25380], + [5039,20517], + [5041,19235], + [5043,25543], + [5045,26913], + [5047,20480], + [5049,19697], + [5051,27171], + [5053,28153], + [5055,23494], + [5057,21521], + [5059,21866], + [5061,24481], + [5063,23733], + [5065,21164], + [5067,20295], + [5069,21472], + [5071,21010], + [5073,25876], + [5075,21473], + [5077,16968], + [5079,14764], + [5081,25759], + [5083,21491], + [5085,27293], + [5087,24356], + [5089,21395], + [5091,23729], + [5093,22750], + [5095,23538], + [5097,22631], + [5099,19912], + [5101,19735], + [5103,21562], + [5105,23164], + [5107,18651], + [5109,23362], + [5111,20963], + [5113,23103], + [5115,23391], + [5117,25789], + [5119,32692], + [5121,23248], + [5123,18447], + [5125,30553], + [5127,18281], + [5129,20410], + [5131,25961], + [5133,22320], + [5135,21423], + [5137,20695], + [5139,25193], + [5141,22168], + [5143,27790], + [5145,23702], + [5147,23423], + [5149,22015], + [6001,47314], + [6003,36739], + [6005,31987], + [6007,29506], + [6009,33456], + [6011,26932], + [6013,48178], + [6015,23674], + [6017,42749], + [6019,24422], + [6021,22668], + [6023,28769], + [6025,18018], + [6027,32590], + [6029,23326], + [6031,22373], + [6033,27362], + [6035,22134], + [6037,34156], + [6039,22853], + [6041,72466], + [6043,28757], + [6045,29035], + [6047,23011], + [6049,22843], + [6051,34552], + [6053,30073], + [6055,45195], + [6057,39233], + [6059,41514], + [6061,43759], + [6063,35198], + [6065,28596], + [6067,32751], + [6069,33174], + [6071,25215], + [6073,38073], + [6075,68883], + [6077,27521], + [6079,37233], + [6081,61545], + [6083,36039], + [6085,56248], + [6087,41312], + [6089,29720], + [6091,33747], + [6093,28615], + [6095,35400], + [6097,42178], + [6099,26258], + [6101,27371], + [6103,24301], + [6105,26523], + [6107,21380], + [6109,34702], + [6111,38595], + [6113,34515], + [6115,25583], + [8001,30313], + [8003,22131], + [8005,40443], + [8007,31629], + [8009,24061], + [8011,13930], + [8013,46826], + [8014,50863], + [8015,29827], + [8017,29081], + [8019,39203], + [8021,20640], + [8023,21732], + [8025,15517], + [8027,29258], + [8029,26499], + [8031,43770], + [8033,26323], + [8035,53313], + [8037,44391], + [8039,44690], + [8041,33728], + [8043,22692], + [8045,33393], + [8047,49641], + [8049,37876], + [8051,32191], + [8053,33570], + [8055,25140], + [8057,28199], + [8059,44119], + [8061,25937], + [8063,27797], + [8065,29122], + [8067,39493], + [8069,37363], + [8071,25813], + [8073,16753], + [8075,26727], + [8077,29596], + [8079,33955], + [8081,29100], + [8083,26072], + [8085,28078], + [8087,25064], + [8089,21110], + [8091,41160], + [8093,36500], + [8095,26494], + [8097,54875], + [8099,23698], + [8101,25051], + [8103,26487], + [8105,24582], + [8107,43769], + [8109,22511], + [8111,34502], + [8113,47526], + [8115,27527], + [8117,41281], + [8119,35703], + [8121,27860], + [8123,31793], + [8125,27955], + [9001,57263], + [9003,40540], + [9005,44480], + [9007,46023], + [9009,38009], + [9011,39426], + [9013,41371], + [9015,32732], + [10001,28845], + [10003,37532], + [10005,35491], + [11001,56147], + [12001,28646], + [12003,24686], + [12005,29290], + [12007,20529], + [12009,32176], + [12011,32909], + [12013,19304], + [12015,32144], + [12017,26989], + [12019,30483], + [12021,45567], + [12023,24275], + [12027,18503], + [12029,21144], + [12031,31327], + [12033,28022], + [12035,29383], + [12037,26574], + [12039,20734], + [12041,21578], + [12043,21953], + [12045,23252], + [12047,16136], + [12049,17754], + [12051,19167], + [12053,25860], + [12055,25752], + [12057,32343], + [12059,19201], + [12061,36516], + [12063,20019], + [12065,24510], + [12067,20776], + [12069,28348], + [12071,33543], + [12073,30586], + [12075,21579], + [12077,17872], + [12079,19510], + [12081,33853], + [12083,25839], + [12085,42199], + [12086,28224], + [12087,46028], + [12089,36553], + [12091,33019], + [12093,21367], + [12095,30456], + [12097,22196], + [12099,39933], + [12101,29001], + [12103,35196], + [12105,24864], + [12107,20915], + [12109,43194], + [12111,27121], + [12113,31691], + [12115,41081], + [12117,35175], + [12119,35560], + [12121,22808], + [12123,17391], + [12125,17010], + [12127,28517], + [12129,25733], + [12131,34475], + [12133,18401], + [13001,21300], + [13003,20338], + [13005,20326], + [13007,22525], + [13009,21716], + [13011,21403], + [13013,25266], + [13015,26493], + [13017,17774], + [13019,19547], + [13021,25640], + [13023,20458], + [13025,20191], + [13027,25700], + [13029,31623], + [13031,22328], + [13033,22173], + [13035,27195], + [13037,14005], + [13039,29741], + [13043,20687], + [13045,24993], + [13047,27308], + [13049,18323], + [13051,32229], + [13053,23769], + [13055,18715], + [13057,36503], + [13059,23827], + [13061,17036], + [13063,20970], + [13065,15152], + [13067,40031], + [13069,19905], + [13071,20529], + [13073,34579], + [13075,20128], + [13077,33875], + [13079,23204], + [13081,22933], + [13083,24000], + [13085,34239], + [13087,21568], + [13089,36077], + [13091,20216], + [13093,22716], + [13095,22059], + [13097,27743], + [13099,19026], + [13101,23885], + [13103,31704], + [13105,22355], + [13107,19389], + [13109,20725], + [13111,27940], + [13113,44061], + [13115,25776], + [13117,43832], + [13119,23187], + [13121,47163], + [13123,27282], + [13125,23541], + [13127,33848], + [13129,24092], + [13131,22543], + [13133,37818], + [13135,30636], + [13137,23046], + [13139,29680], + [13141,16704], + [13143,25074], + [13145,36273], + [13147,23181], + [13149,22714], + [13151,29889], + [13153,29462], + [13155,19878], + [13157,28915], + [13159,22814], + [13161,17833], + [13163,19259], + [13165,15531], + [13167,21087], + [13169,25854], + [13171,22413], + [13173,19207], + [13175,21665], + [13177,29348], + [13179,22811], + [13181,26918], + [13183,22639], + [13185,23348], + [13187,27155], + [13189,21625], + [13191,26892], + [13193,17883], + [13195,24511], + [13197,22541], + [13199,21038], + [13201,23870], + [13205,18619], + [13207,33290], + [13209,22477], + [13211,33571], + [13213,21989], + [13215,26097], + [13217,25247], + [13219,44336], + [13221,23523], + [13223,27979], + [13225,24486], + [13227,31965], + [13229,22268], + [13231,27639], + [13233,23857], + [13235,20746], + [13237,31504], + [13239,18639], + [13241,28266], + [13243,16691], + [13245,22787], + [13247,28320], + [13249,20965], + [13251,22213], + [13253,29614], + [13255,24582], + [13257,23546], + [13259,16705], + [13261,20654], + [13263,21357], + [13265,21416], + [13267,18319], + [13269,21298], + [13271,17202], + [13273,20045], + [13275,27454], + [13277,22974], + [13279,24399], + [13281,25972], + [13283,21830], + [13285,23124], + [13287,19527], + [13289,20979], + [13291,28953], + [13293,21747], + [13295,24247], + [13297,27889], + [13299,20411], + [13301,23448], + [13303,20303], + [13305,21090], + [13307,24102], + [13309,14654], + [13311,27406], + [13313,23974], + [13315,16183], + [13317,24674], + [13319,22141], + [13321,24415], + [15001,30542], + [15003,36816], + [15005,49118], + [15007,33143], + [15009,35241], + [16001,34919], + [16003,28026], + [16005,25076], + [16007,26378], + [16009,23255], + [16011,23059], + [16013,33645], + [16015,31975], + [16017,27918], + [16019,28671], + [16021,25782], + [16023,30294], + [16025,30209], + [16027,22232], + [16029,26221], + [16031,21687], + [16033,18860], + [16035,23412], + [16037,23805], + [16039,23028], + [16041,24185], + [16043,23577], + [16045,22661], + [16047,23607], + [16049,22672], + [16051,24677], + [16053,21461], + [16055,29948], + [16057,27011], + [16059,25075], + [16061,24094], + [16063,21656], + [16065,16585], + [16067,24262], + [16069,29544], + [16071,22120], + [16073,22806], + [16075,25768], + [16077,23343], + [16079,23987], + [16081,31191], + [16083,25352], + [16085,33709], + [16087,22650], + [17001,30343], + [17003,19519], + [17005,28119], + [17007,31943], + [17009,23070], + [17011,30255], + [17013,28822], + [17015,29166], + [17017,26992], + [17019,30578], + [17021,27361], + [17023,30796], + [17025,26815], + [17027,31783], + [17029,28084], + [17031,37552], + [17033,26546], + [17035,27812], + [17037,29430], + [17039,30729], + [17041,28139], + [17043,46272], + [17045,27797], + [17047,28255], + [17049,31665], + [17051,23194], + [17053,28957], + [17055,24098], + [17057,27741], + [17059,33377], + [17061,25414], + [17063,35208], + [17065,27702], + [17067,28576], + [17069,28932], + [17071,28950], + [17073,30345], + [17075,27574], + [17077,24804], + [17079,25849], + [17081,26466], + [17083,30182], + [17085,34437], + [17087,23140], + [17089,36270], + [17091,27984], + [17093,36382], + [17095,24545], + [17097,45766], + [17099,30277], + [17101,23613], + [17103,29984], + [17105,27925], + [17107,27546], + [17109,24094], + [17111,39006], + [17113,34532], + [17115,29644], + [17117,28809], + [17119,32427], + [17121,25563], + [17123,30808], + [17125,28534], + [17127,23539], + [17129,37098], + [17131,29268], + [17133,42152], + [17135,26609], + [17137,26755], + [17139,29538], + [17141,31397], + [17143,32041], + [17145,26035], + [17147,33468], + [17149,26157], + [17151,22065], + [17153,21605], + [17155,34438], + [17157,26558], + [17159,26358], + [17161,29756], + [17163,30807], + [17165,25342], + [17167,35509], + [17169,24831], + [17171,27052], + [17173,27029], + [17175,30018], + [17177,27911], + [17179,33507], + [17181,25879], + [17183,25307], + [17185,27781], + [17187,25730], + [17189,32838], + [17191,26313], + [17193,26746], + [17195,29856], + [17197,36524], + [17199,28375], + [17201,29278], + [17203,37170], + [18001,23316], + [18003,29160], + [18005,31774], + [18007,25187], + [18009,24302], + [18011,48295], + [18013,34372], + [18015,29366], + [18017,24948], + [18019,29062], + [18021,26257], + [18023,24489], + [18025,22443], + [18027,23848], + [18029,30800], + [18031,27006], + [18033,29073], + [18035,25107], + [18037,30366], + [18039,26150], + [18041,24015], + [18043,33478], + [18045,28058], + [18047,29166], + [18049,26427], + [18051,28076], + [18053,23046], + [18055,25453], + [18057,49287], + [18059,34119], + [18061,28119], + [18063,36569], + [18065,24687], + [18067,28129], + [18069,26502], + [18071,25840], + [18073,28240], + [18075,23443], + [18077,27152], + [18079,26017], + [18081,34408], + [18083,26041], + [18085,29786], + [18087,24549], + [18089,28923], + [18091,27264], + [18093,26603], + [18095,25557], + [18097,28566], + [18099,25761], + [18101,26758], + [18103,24028], + [18105,28514], + [18107,27162], + [18109,30721], + [18111,26007], + [18113,26832], + [18115,30517], + [18117,24080], + [18119,25209], + [18121,23574], + [18123,25707], + [18125,25624], + [18127,34595], + [18129,32091], + [18131,24992], + [18133,26120], + [18135,24964], + [18137,28312], + [18139,26301], + [18141,28215], + [18143,23646], + [18145,29583], + [18147,31287], + [18149,24673], + [18151,29949], + [18153,24356], + [18155,24944], + [18157,27451], + [18159,31025], + [18161,25661], + [18163,29638], + [18165,26493], + [18167,25113], + [18169,27149], + [18171,31104], + [18173,37466], + [18175,25015], + [18177,26510], + [18179,28663], + [18181,27461], + [18183,31843], + [19001,30822], + [19003,28440], + [19005,27892], + [19007,26012], + [19009,30344], + [19011,33301], + [19013,30563], + [19015,32889], + [19017,32814], + [19019,33373], + [19021,26526], + [19023,30036], + [19025,28434], + [19027,31648], + [19029,28302], + [19031,32268], + [19033,32757], + [19035,32999], + [19037,31095], + [19039,27416], + [19041,28747], + [19043,28294], + [19045,28483], + [19047,29196], + [19049,45090], + [19051,29387], + [19053,22875], + [19055,32112], + [19057,29941], + [19059,39052], + [19061,32905], + [19063,28651], + [19065,28643], + [19067,29622], + [19069,29546], + [19071,29261], + [19073,28451], + [19075,36231], + [19077,31128], + [19079,30127], + [19081,30309], + [19083,28770], + [19085,32443], + [19087,26408], + [19089,29032], + [19091,30480], + [19093,33789], + [19095,33755], + [19097,29660], + [19099,28604], + [19101,28611], + [19103,35108], + [19105,29453], + [19107,29957], + [19109,31225], + [19111,26710], + [19113,34545], + [19115,29021], + [19117,31069], + [19119,29124], + [19121,35470], + [19123,28174], + [19125,30644], + [19127,27196], + [19129,34850], + [19131,29676], + [19133,29591], + [19135,28999], + [19137,29781], + [19139,29511], + [19141,30564], + [19143,30955], + [19145,27390], + [19147,28445], + [19149,33982], + [19151,30013], + [19153,35433], + [19155,30318], + [19157,31827], + [19159,28756], + [19161,32274], + [19163,33643], + [19165,32703], + [19167,29360], + [19169,29539], + [19171,28585], + [19173,29778], + [19175,27750], + [19177,27252], + [19179,26424], + [19181,36496], + [19183,30547], + [19185,25628], + [19187,26498], + [19189,28342], + [19191,32075], + [19193,28688], + [19195,31949], + [19197,29622], + [20001,23734], + [20003,24309], + [20005,24237], + [20007,27648], + [20009,27495], + [20011,23102], + [20013,25208], + [20015,29986], + [20017,23055], + [20019,22962], + [20021,22615], + [20023,29041], + [20025,28227], + [20027,29235], + [20029,27279], + [20031,33371], + [20033,30355], + [20035,24726], + [20037,23091], + [20039,30905], + [20041,27219], + [20043,25775], + [20045,32281], + [20047,27431], + [20049,23875], + [20051,30956], + [20053,26443], + [20055,24152], + [20057,23293], + [20059,26998], + [20061,23897], + [20063,28859], + [20065,27236], + [20067,25411], + [20069,29421], + [20071,28982], + [20073,27500], + [20075,22003], + [20077,24800], + [20079,28226], + [20081,26814], + [20083,30044], + [20085,28127], + [20087,30655], + [20089,27731], + [20091,46517], + [20093,23415], + [20095,34578], + [20097,26321], + [20099,24572], + [20101,28435], + [20103,32444], + [20105,25803], + [20107,27926], + [20109,28135], + [20111,26904], + [20113,31006], + [20115,26577], + [20117,28469], + [20119,28945], + [20121,35659], + [20123,25801], + [20125,24647], + [20127,29558], + [20129,23447], + [20131,30344], + [20133,23845], + [20135,34243], + [20137,25352], + [20139,27951], + [20141,30843], + [20143,29230], + [20145,25131], + [20147,27431], + [20149,29345], + [20151,27442], + [20153,28590], + [20155,27073], + [20157,27424], + [20159,26737], + [20161,27272], + [20163,26420], + [20165,26552], + [20167,26090], + [20169,28813], + [20171,29315], + [20173,29530], + [20175,20754], + [20177,30974], + [20179,35465], + [20181,27919], + [20183,28994], + [20185,28060], + [20187,23033], + [20189,24652], + [20191,26954], + [20193,30442], + [20195,34230], + [20197,27876], + [20199,27966], + [20201,27841], + [20203,29126], + [20205,27471], + [20207,22672], + [20209,22335], + [21001,21196], + [21003,22294], + [21005,27250], + [21007,25217], + [21009,21869], + [21011,22238], + [21013,15501], + [21015,35991], + [21017,27802], + [21019,26193], + [21021,26413], + [21023,24124], + [21025,19053], + [21027,23286], + [21029,29333], + [21031,22951], + [21033,28799], + [21035,23219], + [21037,34025], + [21039,30065], + [21041,25217], + [21043,18778], + [21045,18457], + [21047,23021], + [21049,28802], + [21051,15391], + [21053,21019], + [21055,23959], + [21057,18728], + [21059,28806], + [21061,21802], + [21063,13856], + [21065,17746], + [21067,34442], + [21069,23593], + [21071,19471], + [21073,30711], + [21075,18247], + [21077,23638], + [21079,26272], + [21081,23721], + [21083,24750], + [21085,21231], + [21087,22506], + [21089,27722], + [21091,24830], + [21093,28606], + [21095,16468], + [21097,24154], + [21099,20742], + [21101,26212], + [21103,25202], + [21105,28114], + [21107,25042], + [21109,18560], + [21111,33251], + [21113,31146], + [21115,21974], + [21117,33330], + [21119,18475], + [21121,17832], + [21123,24803], + [21125,22398], + [21127,18124], + [21129,17386], + [21131,15838], + [21133,20641], + [21135,19860], + [21137,21480], + [21139,27728], + [21141,24221], + [21143,26994], + [21145,32357], + [21147,14505], + [21149,25610], + [21151,25837], + [21153,18243], + [21155,22241], + [21157,29792], + [21159,18017], + [21161,28411], + [21163,27861], + [21165,20588], + [21167,27061], + [21169,19121], + [21171,23481], + [21173,22381], + [21175,18310], + [21177,22612], + [21179,32735], + [21181,22212], + [21183,24297], + [21185,42272], + [21187,25640], + [21189,18940], + [21191,24120], + [21193,23135], + [21195,22437], + [21197,20841], + [21199,24646], + [21201,22552], + [21203,20892], + [21205,20488], + [21207,20674], + [21209,32796], + [21211,32468], + [21213,24458], + [21215,33661], + [21217,23602], + [21219,23143], + [21221,28264], + [21223,27237], + [21225,23097], + [21227,28558], + [21229,26035], + [21231,25707], + [21233,22911], + [21235,20547], + [21237,14923], + [21239,32264], + [22001,23122], + [22003,20964], + [22005,34168], + [22007,25752], + [22009,22017], + [22011,26331], + [22013,21491], + [22015,28766], + [22017,26545], + [22019,28778], + [22021,23216], + [22023,28358], + [22025,22412], + [22027,16770], + [22029,19092], + [22031,26767], + [22033,32431], + [22035,19483], + [22037,23612], + [22039,18770], + [22041,19206], + [22043,18801], + [22045,23290], + [22047,23751], + [22049,21594], + [22051,30374], + [22053,25474], + [22055,31892], + [22057,28683], + [22059,21654], + [22061,22863], + [22063,29354], + [22065,16671], + [22067,18494], + [22069,19198], + [22071,31385], + [22073,24361], + [22075,29258], + [22077,28180], + [22079,25984], + [22081,22924], + [22083,20107], + [22085,22687], + [22087,20763], + [22089,32935], + [22091,24380], + [22093,26739], + [22095,25968], + [22097,21162], + [22099,24997], + [22101,22839], + [22103,34658], + [22105,25163], + [22107,15912], + [22109,25924], + [22111,24030], + [22113,25342], + [22115,24554], + [22117,20177], + [22119,18962], + [22121,29697], + [22123,22439], + [22125,26945], + [22127,22107], + [23001,28956], + [23003,25477], + [23005,40527], + [23007,27252], + [23009,34361], + [23011,30685], + [23013,33126], + [23015,33595], + [23017,25464], + [23019,28523], + [23021,24074], + [23023,34675], + [23025,24386], + [23027,29674], + [23029,25157], + [23031,36093], + [24001,23607], + [24003,46629], + [24005,40105], + [24009,45783], + [24011,29624], + [24013,42083], + [24015,34810], + [24017,41717], + [24019,30293], + [24021,43582], + [24023,30617], + [24025,41147], + [24027,54628], + [24029,36813], + [24031,54510], + [24033,37191], + [24035,44754], + [24037,40354], + [24039,18772], + [24041,49136], + [24043,30464], + [24045,28080], + [24047,38080], + [24510,31271], + [25001,44505], + [25003,35616], + [25005,35747], + [25007,45990], + [25009,42347], + [25011,35908], + [25013,30346], + [25015,34838], + [25017,52228], + [25019,55398], + [25021,53889], + [25023,43412], + [25025,42765], + [25027,37574], + [26001,25636], + [26003,20851], + [26005,29215], + [26007,25957], + [26009,31851], + [26011,24328], + [26013,22920], + [26015,31760], + [26017,27469], + [26019,29425], + [26021,30864], + [26023,25279], + [26025,26855], + [26027,31295], + [26029,33620], + [26031,26393], + [26033,25086], + [26035,22573], + [26037,34761], + [26039,26294], + [26041,27632], + [26043,29656], + [26045,33427], + [26047,34074], + [26049,27295], + [26051,25657], + [26053,25555], + [26055,35405], + [26057,23616], + [26059,25621], + [26061,23421], + [26063,27852], + [26065,29380], + [26067,24864], + [26069,25264], + [26071,25944], + [26073,23888], + [26075,28364], + [26077,31975], + [26079,24358], + [26081,32524], + [26083,34608], + [26085,20461], + [26087,30344], + [26089,39073], + [26091,27850], + [26093,40351], + [26095,22350], + [26097,28966], + [26099,32238], + [26101,26668], + [26103,27979], + [26105,29549], + [26107,23431], + [26109,27942], + [26111,36142], + [26113,23838], + [26115,31481], + [26117,24200], + [26119,23958], + [26121,25435], + [26123,25451], + [26125,44629], + [26127,24345], + [26129,23787], + [26131,25022], + [26133,22692], + [26135,24889], + [26137,27234], + [26139,31872], + [26141,28103], + [26143,25807], + [26145,28030], + [26147,30703], + [26149,26248], + [26151,25871], + [26153,24647], + [26155,28437], + [26157,25996], + [26159,28049], + [26161,41399], + [26163,27282], + [26165,25149], + [27001,29275], + [27003,36978], + [27005,31729], + [27007,25418], + [27009,29831], + [27011,29459], + [27013,29677], + [27015,31237], + [27017,29440], + [27019,47221], + [27021,30326], + [27023,30772], + [27025,35021], + [27027,30768], + [27029,27178], + [27031,33194], + [27033,27459], + [27035,32368], + [27037,41552], + [27039,34399], + [27041,36535], + [27043,29991], + [27045,30392], + [27047,29316], + [27049,34803], + [27051,32871], + [27053,45768], + [27055,33032], + [27057,29896], + [27059,34054], + [27061,30286], + [27063,34325], + [27065,28427], + [27067,31039], + [27069,30539], + [27071,29834], + [27073,32437], + [27075,34207], + [27077,25640], + [27079,33311], + [27081,30253], + [27083,29634], + [27085,32465], + [27087,21279], + [27089,30746], + [27091,31066], + [27093,32368], + [27095,27758], + [27097,29680], + [27099,29720], + [27101,31874], + [27103,33031], + [27105,25939], + [27107,30422], + [27109,41066], + [27111,32059], + [27113,31159], + [27115,26407], + [27117,30540], + [27119,30078], + [27121,34166], + [27123,35013], + [27125,30037], + [27127,28611], + [27129,31253], + [27131,31221], + [27133,31345], + [27135,30193], + [27137,31537], + [27139,42155], + [27141,35439], + [27143,32016], + [27145,30994], + [27147,32477], + [27149,32542], + [27151,31765], + [27153,26678], + [27155,32548], + [27157,34442], + [27159,24214], + [27161,29929], + [27163,45822], + [27165,28341], + [27167,34543], + [27169,30013], + [27171,36260], + [27173,29908], + [28001,18386], + [28003,23909], + [28005,21568], + [28007,21276], + [28009,20643], + [28011,18843], + [28013,19229], + [28015,22385], + [28017,19926], + [28019,22257], + [28021,14320], + [28023,23988], + [28025,20599], + [28027,18985], + [28029,20093], + [28031,19180], + [28033,30195], + [28035,22534], + [28037,23067], + [28039,22732], + [28041,16006], + [28043,23135], + [28045,27462], + [28047,25415], + [28049,23734], + [28051,15291], + [28053,18513], + [28055,16388], + [28057,22806], + [28059,27141], + [28061,22523], + [28063,14659], + [28065,20638], + [28067,23163], + [28069,16995], + [28071,27765], + [28073,30062], + [28075,24698], + [28077,22980], + [28079,19893], + [28081,26369], + [28083,18419], + [28085,23541], + [28087,26438], + [28089,38901], + [28091,19545], + [28093,21853], + [28095,23844], + [28097,24054], + [28099,19540], + [28101,20787], + [28103,18525], + [28105,22512], + [28107,19892], + [28109,23920], + [28111,23166], + [28113,17621], + [28115,21191], + [28117,19693], + [28119,15026], + [28121,30835], + [28123,22203], + [28125,19958], + [28127,23520], + [28129,23698], + [28131,23820], + [28133,15646], + [28135,16742], + [28137,23340], + [28139,19501], + [28141,20390], + [28143,20579], + [28145,21705], + [28147,21123], + [28149,25661], + [28151,20174], + [28153,23668], + [28155,22011], + [28157,15475], + [28159,25263], + [28161,20690], + [28163,19972], + [29001,22847], + [29003,29338], + [29005,31248], + [29007,23024], + [29009,25068], + [29011,26509], + [29013,27635], + [29015,24317], + [29017,21340], + [29019,30415], + [29021,26347], + [29023,21652], + [29025,24581], + [29027,25849], + [29029,28275], + [29031,28267], + [29033,25715], + [29035,22104], + [29037,32868], + [29039,22623], + [29041,23903], + [29043,28216], + [29045,26490], + [29047,34560], + [29049,29081], + [29051,30422], + [29053,23961], + [29055,22220], + [29057,23186], + [29059,23647], + [29061,24929], + [29063,20125], + [29065,22711], + [29067,21083], + [29069,21801], + [29071,30278], + [29073,28617], + [29075,24269], + [29077,27525], + [29079,23497], + [29081,22032], + [29083,26944], + [29085,20736], + [29087,27520], + [29089,23753], + [29091,21048], + [29093,21499], + [29095,31480], + [29097,24484], + [29099,29999], + [29101,25380], + [29103,22326], + [29105,23051], + [29107,29565], + [29109,22957], + [29111,22739], + [29113,26848], + [29115,25130], + [29117,23587], + [29119,20468], + [29121,22136], + [29123,24418], + [29125,26226], + [29127,25069], + [29129,23042], + [29131,25827], + [29133,18549], + [29135,24224], + [29137,24697], + [29139,24682], + [29141,21316], + [29143,21419], + [29145,28353], + [29147,22915], + [29149,18398], + [29151,29061], + [29153,18739], + [29155,20646], + [29157,26609], + [29159,23576], + [29161,25202], + [29163,22297], + [29165,40567], + [29167,22773], + [29169,23651], + [29171,24758], + [29173,27023], + [29175,21240], + [29177,29524], + [29179,22720], + [29181,18119], + [29183,38943], + [29185,22520], + [29186,29742], + [29187,22578], + [29189,41426], + [29195,22942], + [29197,19862], + [29199,27706], + [29201,24921], + [29203,17387], + [29205,24304], + [29207,22138], + [29209,29026], + [29211,22370], + [29213,23776], + [29215,19973], + [29217,24312], + [29219,28641], + [29221,20581], + [29223,19457], + [29225,22961], + [29227,26137], + [29229,19850], + [29510,30542], + [30001,28401], + [30003,18934], + [30005,19258], + [30007,31631], + [30009,33067], + [30011,28577], + [30013,30110], + [30015,23769], + [30017,30504], + [30019,35133], + [30021,31658], + [30023,26241], + [30025,37024], + [30027,30529], + [30029,31694], + [30031,36924], + [30033,28541], + [30035,18043], + [30037,30790], + [30039,30752], + [30041,23589], + [30043,32773], + [30045,28811], + [30047,25388], + [30049,34504], + [30051,43320], + [30053,25081], + [30055,27912], + [30057,35719], + [30059,24723], + [30061,23621], + [30063,31897], + [30065,24979], + [30067,35123], + [30069,31177], + [30071,25605], + [30073,25633], + [30075,32094], + [30077,26456], + [30079,27377], + [30081,29761], + [30083,33109], + [30085,18657], + [30087,24922], + [30089,25309], + [30091,36091], + [30093,27706], + [30095,32301], + [30097,30050], + [30099,28022], + [30101,27528], + [30103,29763], + [30105,27946], + [30107,21619], + [30109,25591], + [30111,34451], + [31001,28729], + [31003,26523], + [31005,25906], + [31007,27552], + [31009,25097], + [31011,33027], + [31013,28156], + [31015,29871], + [31017,30674], + [31019,31043], + [31021,31635], + [31023,30095], + [31025,33851], + [31027,30163], + [31029,30080], + [31031,29415], + [31033,31294], + [31035,27539], + [31037,23603], + [31039,29765], + [31041,33561], + [31043,25269], + [31045,25383], + [31047,25956], + [31049,26351], + [31051,27634], + [31053,28019], + [31055,35307], + [31057,25479], + [31059,34483], + [31061,28365], + [31063,28899], + [31065,27021], + [31067,29565], + [31069,35050], + [31071,29146], + [31073,37565], + [31075,23264], + [31077,26553], + [31079,28359], + [31081,32131], + [31083,28919], + [31085,31286], + [31087,30037], + [31089,31785], + [31091,27714], + [31093,27489], + [31095,27461], + [31097,24072], + [31099,31094], + [31101,29823], + [31103,28853], + [31105,27478], + [31107,28409], + [31109,32378], + [31111,31567], + [31113,24355], + [31115,27726], + [31117,30063], + [31119,28179], + [31121,28795], + [31123,26951], + [31125,29454], + [31127,29574], + [31129,30078], + [31131,31450], + [31133,27162], + [31135,35765], + [31137,32864], + [31139,32040], + [31141,30331], + [31143,30234], + [31145,27392], + [31147,28309], + [31149,36140], + [31151,24627], + [31153,36058], + [31155,33851], + [31157,27978], + [31159,32040], + [31161,29477], + [31163,28448], + [31165,28646], + [31167,29117], + [31169,29632], + [31171,36572], + [31173,20141], + [31175,29378], + [31177,35145], + [31179,27671], + [31181,29969], + [31183,29037], + [31185,32975], + [32001,28462], + [32003,30704], + [32005,38814], + [32007,33875], + [32009,25849], + [32011,34249], + [32013,33362], + [32015,34000], + [32017,26432], + [32019,27855], + [32021,22921], + [32023,25558], + [32027,19891], + [32029,37941], + [32031,36071], + [32033,25675], + [32510,31549], + [33001,37430], + [33003,37490], + [33005,33946], + [33007,27393], + [33009,37750], + [33011,40955], + [33013,37367], + [33015,47222], + [33017,35601], + [33019,33042], + [34001,33284], + [34003,51214], + [34005,43187], + [34007,35958], + [34009,40389], + [34011,25694], + [34013,38722], + [34015,39337], + [34017,40740], + [34019,57098], + [34021,43086], + [34023,39599], + [34025,51700], + [34027,58109], + [34029,36100], + [34031,32064], + [34033,34047], + [34035,55828], + [34037,44728], + [34039,41603], + [34041,39802], + [35001,30734], + [35003,21989], + [35005,22041], + [35006,20018], + [35007,24035], + [35009,23021], + [35011,17376], + [35013,22154], + [35015,30246], + [35017,25590], + [35019,17420], + [35021,34721], + [35023,22009], + [35025,25585], + [35027,27454], + [35028,60746], + [35029,17168], + [35031,15931], + [35033,19864], + [35035,23170], + [35037,19784], + [35039,22911], + [35041,20123], + [35043,29255], + [35045,23235], + [35047,20762], + [35049,38520], + [35051,25344], + [35053,18948], + [35055,25646], + [35057,20876], + [35059,22116], + [35061,23675], + [36001,37635], + [36003,24857], + [36005,21778], + [36007,28699], + [36009,25822], + [36011,30509], + [36013,26165], + [36015,28778], + [36017,27708], + [36019,27761], + [36021,38268], + [36023,28229], + [36025,27701], + [36027,40093], + [36029,33598], + [36031,31667], + [36033,25406], + [36035,27443], + [36037,30511], + [36039,28433], + [36041,24851], + [36043,27850], + [36045,26194], + [36047,34173], + [36049,26708], + [36051,28701], + [36053,30469], + [36055,33840], + [36057,26521], + [36059,51422], + [36061,76592], + [36063,30971], + [36065,29687], + [36067,34002], + [36069,36835], + [36071,34959], + [36073,26298], + [36075,28587], + [36077,28849], + [36079,47448], + [36081,31930], + [36083,35903], + [36085,36907], + [36087,39286], + [36089,25378], + [36091,43065], + [36093,32417], + [36095,30397], + [36097,27678], + [36099,28245], + [36101,29886], + [36103,44465], + [36105,30446], + [36107,31822], + [36109,33075], + [36111,34834], + [36113,35271], + [36115,28530], + [36117,31043], + [36119,57049], + [36121,27947], + [36123,28270], + [37001,27312], + [37003,26688], + [37005,23267], + [37007,21635], + [37009,24814], + [37011,21167], + [37013,27504], + [37015,22947], + [37017,23440], + [37019,33312], + [37021,32426], + [37023,24481], + [37025,32255], + [37027,23869], + [37029,28221], + [37031,33722], + [37033,23901], + [37035,28224], + [37037,40967], + [37039,23902], + [37041,26256], + [37043,28467], + [37045,22589], + [37047,22608], + [37049,29521], + [37051,24936], + [37053,31849], + [37055,34578], + [37057,25988], + [37059,31173], + [37061,20254], + [37063,35398], + [37065,20626], + [37067,30769], + [37069,27294], + [37071,27352], + [37073,25846], + [37075,20323], + [37077,27131], + [37079,19168], + [37081,30767], + [37083,21848], + [37085,23767], + [37087,30490], + [37089,31564], + [37091,20119], + [37093,20991], + [37095,18245], + [37097,33194], + [37099,25347], + [37101,27924], + [37103,21928], + [37105,24842], + [37107,23865], + [37109,31771], + [37111,24281], + [37113,28936], + [37115,25956], + [37117,23575], + [37119,38819], + [37121,25009], + [37123,24636], + [37125,34606], + [37127,27406], + [37129,34288], + [37131,22002], + [37133,24413], + [37135,42231], + [37137,29092], + [37139,24664], + [37141,29266], + [37143,27569], + [37145,27329], + [37147,27155], + [37149,30756], + [37151,24397], + [37153,21228], + [37155,18709], + [37157,24209], + [37159,25630], + [37161,23978], + [37163,22875], + [37165,19052], + [37167,25863], + [37169,26279], + [37171,25500], + [37173,23139], + [37175,29549], + [37177,19743], + [37179,36362], + [37181,23049], + [37183,40982], + [37185,23432], + [37187,23431], + [37189,26882], + [37191,25277], + [37193,25202], + [37195,24790], + [37197,25218], + [37199,24487], + [38001,33458], + [38003,35491], + [38005,21707], + [38007,42071], + [38009,35655], + [38011,34880], + [38013,39350], + [38015,38804], + [38017,37620], + [38019,43457], + [38021,33539], + [38023,40184], + [38025,42691], + [38027,35639], + [38029,33088], + [38031,35299], + [38033,33111], + [38035,32153], + [38037,34786], + [38039,34882], + [38041,34181], + [38043,31000], + [38045,37220], + [38047,32619], + [38049,36980], + [38051,32131], + [38053,36690], + [38055,36428], + [38057,39025], + [38059,39384], + [38061,36364], + [38063,34491], + [38065,35565], + [38067,36251], + [38069,30756], + [38071,34041], + [38073,34665], + [38075,34452], + [38077,31346], + [38079,20484], + [38081,37105], + [38083,32627], + [38085,15649], + [38087,33798], + [38089,38103], + [38091,39011], + [38093,31991], + [38095,37239], + [38097,33321], + [38099,34194], + [38101,34923], + [38103,35134], + [38105,44235], + [39001,22366], + [39003,26761], + [39005,26017], + [39007,24265], + [39009,22040], + [39011,31198], + [39013,27580], + [39015,26696], + [39017,31921], + [39019,29518], + [39021,27722], + [39023,27066], + [39025,34390], + [39027,26690], + [39029,26469], + [39031,23432], + [39033,25744], + [39035,33114], + [39037,27855], + [39039,29816], + [39041,48117], + [39043,32790], + [39045,32021], + [39047,26079], + [39049,33998], + [39051,29600], + [39053,24130], + [39055,42958], + [39057,35833], + [39059,24742], + [39061,35570], + [39063,32797], + [39065,23383], + [39067,24940], + [39069,28830], + [39071,23543], + [39073,25588], + [39075,23404], + [39077,26133], + [39079,23254], + [39081,26391], + [39083,26390], + [39085,34409], + [39087,24562], + [39089,31617], + [39091,29424], + [39093,30928], + [39095,29226], + [39097,29164], + [39099,28378], + [39101,24484], + [39103,37788], + [39105,24899], + [39107,29765], + [39109,31254], + [39111,26476], + [39113,30034], + [39115,22937], + [39117,28257], + [39119,25148], + [39121,24440], + [39123,34560], + [39125,28300], + [39127,23484], + [39129,27760], + [39131,24318], + [39133,30054], + [39135,28890], + [39137,31743], + [39139,25585], + [39141,24913], + [39143,27319], + [39145,23719], + [39147,27100], + [39149,29381], + [39151,29495], + [39153,33606], + [39155,26935], + [39157,27057], + [39159,37384], + [39161,27115], + [39163,21781], + [39165,41792], + [39167,28782], + [39169,27884], + [39171,27124], + [39173,32431], + [39175,28541], + [40001,17026], + [40003,27615], + [40005,20443], + [40007,24514], + [40009,24480], + [40011,25851], + [40013,23979], + [40015,23167], + [40017,30755], + [40019,26094], + [40021,22161], + [40023,21277], + [40025,29115], + [40027,31571], + [40029,24055], + [40031,26449], + [40033,23564], + [40035,21318], + [40037,26044], + [40039,26520], + [40041,24070], + [40043,28310], + [40045,28195], + [40047,28333], + [40049,24880], + [40051,30242], + [40053,28815], + [40055,18907], + [40057,26045], + [40059,24130], + [40061,22074], + [40063,20572], + [40065,25555], + [40067,24313], + [40069,21197], + [40071,26189], + [40073,31724], + [40075,21482], + [40077,25240], + [40079,20902], + [40081,25255], + [40083,31105], + [40085,22036], + [40087,32259], + [40089,20671], + [40091,23268], + [40093,28609], + [40095,22781], + [40097,24472], + [40099,26943], + [40101,23826], + [40103,28011], + [40105,22930], + [40107,18437], + [40109,31609], + [40111,23431], + [40113,25473], + [40115,20814], + [40117,24303], + [40119,24057], + [40121,25524], + [40123,26187], + [40125,24178], + [40127,22435], + [40129,30866], + [40131,32148], + [40133,20666], + [40135,20384], + [40137,25769], + [40139,22003], + [40141,21974], + [40143,32044], + [40145,29415], + [40147,30847], + [40149,26265], + [40151,27427], + [40153,28915], + [41001,28700], + [41003,33817], + [41005,41492], + [41007,29757], + [41009,31883], + [41011,27582], + [41013,27007], + [41015,30021], + [41017,35507], + [41019,26478], + [41021,26482], + [41023,27367], + [41025,26370], + [41027,34926], + [41029,30250], + [41031,23987], + [41033,25167], + [41035,25880], + [41037,24241], + [41039,29705], + [41041,27861], + [41043,27345], + [41045,18974], + [41047,27338], + [41049,23682], + [41051,39245], + [41053,29440], + [41055,31615], + [41057,27659], + [41059,24444], + [41061,27646], + [41063,30485], + [41065,27445], + [41067,39679], + [41069,21702], + [41071,31314], + [42001,31590], + [42003,38709], + [42005,27715], + [42007,31305], + [42009,26078], + [42011,31571], + [42013,28119], + [42015,28392], + [42017,45849], + [42019,37811], + [42021,26008], + [42023,24528], + [42025,29202], + [42027,30753], + [42029,50927], + [42031,25157], + [42033,24403], + [42035,25794], + [42037,26787], + [42039,26582], + [42041,37500], + [42043,33639], + [42045,40026], + [42047,29772], + [42049,28306], + [42051,27368], + [42053,15245], + [42055,31221], + [42057,27396], + [42059,27783], + [42061,25746], + [42063,26509], + [42065,25509], + [42067,26239], + [42069,29899], + [42071,32194], + [42073,28926], + [42075,29130], + [42077,33566], + [42079,28972], + [42081,27950], + [42083,27023], + [42085,27639], + [42087,25469], + [42089,29662], + [42091,48845], + [42093,34575], + [42095,35270], + [42097,26389], + [42099,30785], + [42101,27924], + [42103,34589], + [42105,24797], + [42107,27431], + [42109,27482], + [42111,25781], + [42113,30375], + [42115,31309], + [42117,26301], + [42119,27079], + [42121,26969], + [42123,28230], + [42125,35537], + [42127,27412], + [42129,34274], + [42131,29584], + [42133,32623], + [44001,46566], + [44003,39869], + [44005,47594], + [44007,31522], + [44009,42869], + [45001,22646], + [45003,28396], + [45005,16985], + [45007,27552], + [45009,18479], + [45011,20297], + [45013,38946], + [45015,29662], + [45017,26398], + [45019,39914], + [45021,21152], + [45023,22324], + [45025,21325], + [45027,22824], + [45029,21377], + [45031,23027], + [45033,17605], + [45035,29853], + [45037,26228], + [45039,23380], + [45041,26127], + [45043,31382], + [45045,32679], + [45047,24752], + [45049,18424], + [45051,28202], + [45053,24566], + [45055,25442], + [45057,30742], + [45059,23004], + [45061,19300], + [45063,31671], + [45065,25617], + [45067,20160], + [45069,17456], + [45071,24959], + [45073,29844], + [45075,20716], + [45077,26061], + [45079,30175], + [45081,22814], + [45083,27240], + [45085,23460], + [45087,23470], + [45089,18257], + [45091,34010], + [46003,37086], + [46005,27655], + [46007,17793], + [46009,24131], + [46011,28330], + [46013,33122], + [46015,31874], + [46017,11995], + [46019,26961], + [46021,32684], + [46023,22347], + [46025,30991], + [46027,28192], + [46029,30043], + [46031,16449], + [46033,33649], + [46035,31560], + [46037,29808], + [46039,30601], + [46041,17504], + [46043,30033], + [46045,34628], + [46047,27556], + [46049,27569], + [46051,31479], + [46053,26546], + [46055,24333], + [46057,28822], + [46059,33200], + [46061,24948], + [46063,31819], + [46065,33677], + [46067,28872], + [46069,34034], + [46071,13528], + [46073,42660], + [46075,27139], + [46077,35773], + [46079,33728], + [46081,31712], + [46083,40059], + [46085,22850], + [46087,29020], + [46089,28559], + [46091,32472], + [46093,28809], + [46095,13784], + [46097,28381], + [46099,31716], + [46101,31300], + [46102,10388], + [46103,31874], + [46105,33678], + [46107,32379], + [46109,26243], + [46111,32745], + [46115,35393], + [46117,42838], + [46119,39226], + [46121,10739], + [46123,27036], + [46125,30677], + [46127,42411], + [46129,32563], + [46135,31772], + [46137,16555], + [47001,28455], + [47003,24864], + [47005,22636], + [47007,21700], + [47009,30548], + [47011,26655], + [47013,24212], + [47015,26435], + [47017,22394], + [47019,23205], + [47021,27893], + [47023,22629], + [47025,21566], + [47027,18983], + [47029,21867], + [47031,26557], + [47033,23771], + [47035,25832], + [47037,36440], + [47039,23857], + [47041,25399], + [47043,27115], + [47045,27710], + [47047,33383], + [47049,20093], + [47051,28317], + [47053,23211], + [47055,25690], + [47057,23595], + [47059,25190], + [47061,20592], + [47063,23517], + [47065,32839], + [47067,23728], + [47069,18172], + [47071,24243], + [47073,24695], + [47075,21839], + [47077,22695], + [47079,24124], + [47081,22856], + [47083,22360], + [47085,25428], + [47087,21037], + [47089,25159], + [47091,22107], + [47093,33229], + [47095,15732], + [47097,18515], + [47099,21720], + [47101,21516], + [47103,26965], + [47105,31478], + [47107,23885], + [47109,20934], + [47111,22527], + [47113,26722], + [47115,25467], + [47117,25410], + [47119,28970], + [47121,24525], + [47123,23207], + [47125,26923], + [47127,30658], + [47129,20204], + [47131,23375], + [47133,21808], + [47135,27970], + [47137,24907], + [47139,25405], + [47141,24946], + [47143,22336], + [47145,30209], + [47147,29524], + [47149,30159], + [47151,20849], + [47153,23050], + [47155,25283], + [47157,30104], + [47159,28797], + [47161,24113], + [47163,28429], + [47165,33851], + [47167,28457], + [47169,24795], + [47171,23455], + [47173,24010], + [47175,20634], + [47177,22802], + [47179,29656], + [47181,20689], + [47183,22755], + [47185,22040], + [47187,52702], + [47189,34575], + [48001,17280], + [48003,30673], + [48005,23147], + [48007,30863], + [48009,34617], + [48011,31749], + [48013,23890], + [48015,30219], + [48017,21945], + [48019,29561], + [48021,27773], + [48023,22987], + [48025,18340], + [48027,26677], + [48029,27834], + [48031,37998], + [48033,34028], + [48035,26636], + [48037,27095], + [48039,34561], + [48041,27632], + [48043,28915], + [48045,23933], + [48047,14523], + [48049,27463], + [48051,30086], + [48053,30980], + [48055,25086], + [48057,27268], + [48059,26051], + [48061,17430], + [48063,22449], + [48065,34708], + [48067,23075], + [48069,21884], + [48071,35916], + [48073,22391], + [48075,21233], + [48077,29159], + [48079,21463], + [48081,25285], + [48083,27752], + [48085,44548], + [48087,25681], + [48089,29552], + [48091,38991], + [48093,26728], + [48095,21420], + [48097,30704], + [48099,22400], + [48101,19797], + [48103,27893], + [48105,26178], + [48107,19443], + [48109,15109], + [48111,27491], + [48113,32653], + [48115,20084], + [48117,21616], + [48119,27667], + [48121,41153], + [48123,28910], + [48125,25025], + [48127,16925], + [48129,25534], + [48131,17637], + [48133,24548], + [48135,28954], + [48137,24689], + [48139,32571], + [48141,21683], + [48143,27639], + [48145,18745], + [48147,27112], + [48149,30170], + [48151,28750], + [48153,23617], + [48155,27573], + [48157,39994], + [48159,28789], + [48161,24621], + [48163,19256], + [48165,23533], + [48167,36819], + [48169,19997], + [48171,34077], + [48173,31830], + [48175,29855], + [48177,27407], + [48179,24686], + [48181,28011], + [48183,26535], + [48185,25638], + [48187,31842], + [48189,20986], + [48191,21907], + [48193,26930], + [48195,20410], + [48197,24078], + [48199,30399], + [48201,32765], + [48203,27086], + [48205,20563], + [48207,20394], + [48209,32118], + [48211,31530], + [48213,26121], + [48215,17175], + [48217,26370], + [48219,23604], + [48221,35606], + [48223,26821], + [48225,19129], + [48227,24547], + [48229,14239], + [48231,25926], + [48233,24434], + [48235,28487], + [48237,24956], + [48239,27051], + [48241,25269], + [48243,26531], + [48245,27094], + [48247,16864], + [48249,21510], + [48251,28579], + [48253,18081], + [48255,27612], + [48257,28634], + [48259,45866], + [48261,15211], + [48263,30543], + [48265,32988], + [48267,30099], + [48269,26199], + [48271,23934], + [48273,22646], + [48275,23146], + [48277,25038], + [48279,22337], + [48281,29412], + [48283,21110], + [48285,32188], + [48287,27227], + [48289,30129], + [48291,23461], + [48293,22595], + [48295,28131], + [48297,25370], + [48299,37050], + [48301,33624], + [48303,27922], + [48305,24917], + [48307,24311], + [48309,25703], + [48311,31455], + [48313,20748], + [48315,27566], + [48317,30548], + [48319,30388], + [48321,25172], + [48323,16779], + [48325,27475], + [48327,25742], + [48329,39248], + [48331,25714], + [48333,27374], + [48335,21136], + [48337,28096], + [48339,41211], + [48341,23001], + [48343,22971], + [48345,29071], + [48347,23617], + [48349,23786], + [48351,21659], + [48353,25094], + [48355,27740], + [48357,23624], + [48359,26408], + [48361,30114], + [48363,25150], + [48365,26577], + [48367,35142], + [48369,23859], + [48371,21120], + [48373,25164], + [48375,22568], + [48377,15337], + [48379,27938], + [48381,34293], + [48383,25600], + [48385,18235], + [48387,22689], + [48389,20020], + [48391,24248], + [48393,30955], + [48395,26033], + [48397,42346], + [48399,24402], + [48401,26658], + [48403,24870], + [48405,23683], + [48407,23312], + [48409,26054], + [48411,24961], + [48413,26560], + [48415,24552], + [48417,24852], + [48419,21950], + [48421,30467], + [48423,28483], + [48425,29449], + [48427,14179], + [48429,25015], + [48431,28757], + [48433,25638], + [48435,26904], + [48437,19697], + [48439,33292], + [48441,27162], + [48443,25687], + [48445,20627], + [48447,30463], + [48449,21730], + [48451,29505], + [48453,43658], + [48455,25026], + [48457,20249], + [48459,25285], + [48461,25447], + [48463,20329], + [48465,21370], + [48467,27900], + [48469,29199], + [48471,18544], + [48473,25401], + [48475,25931], + [48477,32625], + [48479,18466], + [48481,25298], + [48483,27093], + [48485,24872], + [48487,23696], + [48489,14888], + [48491,37242], + [48493,32312], + [48495,24467], + [48497,29418], + [48499,29005], + [48501,24582], + [48503,27423], + [48505,20169], + [48507,13835], + [49001,23382], + [49003,24797], + [49005,23713], + [49007,23862], + [49009,29574], + [49011,31205], + [49013,24573], + [49015,23705], + [49017,25247], + [49019,27431], + [49021,22909], + [49023,22830], + [49025,26070], + [49027,25225], + [49029,31732], + [49031,19012], + [49033,23464], + [49035,33238], + [49037,18987], + [49039,20056], + [49041,23514], + [49043,56575], + [49045,25949], + [49047,25759], + [49049,26215], + [49051,35641], + [49053,29010], + [49055,22038], + [49057,27828], + [50001,34741], + [50003,33789], + [50005,29769], + [50007,39062], + [50009,25376], + [50011,31195], + [50013,39770], + [50015,36747], + [50017,31697], + [50019,27023], + [50021,31391], + [50023,35236], + [50025,32535], + [50027,36252], + [51001,26018], + [51003,44799], + [51005,27338], + [51007,31688], + [51009,26712], + [51011,28586], + [51013,71841], + [51015,30272], + [51017,27527], + [51019,33678], + [51021,22522], + [51023,35893], + [51025,21732], + [51027,19496], + [51029,20605], + [51031,27739], + [51033,31568], + [51035,25449], + [51036,35304], + [51037,22018], + [51041,37658], + [51043,41332], + [51045,30103], + [51047,32028], + [51049,25138], + [51051,24978], + [51053,28922], + [51057,26847], + [51059,56231], + [51061,45408], + [51063,26882], + [51065,39633], + [51067,30487], + [51069,35123], + [51071,27137], + [51073,33692], + [51075,51720], + [51077,21663], + [51079,32508], + [51081,19550], + [51083,23909], + [51085,41200], + [51087,39516], + [51089,22372], + [51091,31485], + [51093,37126], + [51095,44495], + [51097,31174], + [51099,38739], + [51101,30704], + [51103,40062], + [51105,19720], + [51107,55744], + [51109,34041], + [51111,19848], + [51113,30777], + [51115,35731], + [51117,25056], + [51119,31502], + [51121,30054], + [51125,35489], + [51127,38080], + [51131,28518], + [51133,36261], + [51135,24571], + [51137,32292], + [51139,25170], + [51141,24292], + [51143,26032], + [51145,37424], + [51147,21017], + [51149,29420], + [51153,40932], + [51155,28125], + [51157,41792], + [51159,22853], + [51161,36469], + [51163,31539], + [51165,31275], + [51167,21605], + [51169,22898], + [51171,28882], + [51173,21605], + [51175,26600], + [51177,37212], + [51179,42126], + [51181,30260], + [51183,21652], + [51185,23738], + [51187,32086], + [51191,27524], + [51193,32996], + [51195,21500], + [51197,27381], + [51199,41201], + [51510,62679], + [51520,23015], + [51530,21419], + [51540,38328], + [51550,35536], + [51570,28364], + [51580,25309], + [51590,22826], + [51595,18494], + [51600,50029], + [51610,72325], + [51620,24025], + [51630,35731], + [51640,23025], + [51650,30135], + [51660,23202], + [51670,21927], + [51678,19047], + [51680,23863], + [51683,33082], + [51685,34326], + [51690,22836], + [51700,28294], + [51710,29830], + [51720,21741], + [51730,23611], + [51735,40258], + [51740,26312], + [51750,21797], + [51760,33549], + [51770,27006], + [51775,31924], + [51790,30166], + [51800,34940], + [51810,37776], + [51820,27033], + [51830,29758], + [51840,30859], + [53001,20248], + [53003,29695], + [53005,32882], + [53007,30870], + [53009,30283], + [53011,35860], + [53013,36551], + [53015,28876], + [53017,30544], + [53019,25857], + [53021,24380], + [53023,26742], + [53025,24280], + [53027,27210], + [53029,37087], + [53031,36598], + [53033,52462], + [53035,37493], + [53037,29161], + [53039,29521], + [53041,27127], + [53043,28891], + [53045,28862], + [53047,24876], + [53049,26109], + [53051,28046], + [53053,34618], + [53055,45777], + [53057,33168], + [53059,32221], + [53061,39527], + [53063,31146], + [53065,26896], + [53067,35169], + [53069,31110], + [53071,29035], + [53073,32267], + [53075,23560], + [53077,23459], + [54001,22899], + [54003,29994], + [54005,21751], + [54007,22269], + [54009,26678], + [54011,25271], + [54013,20447], + [54015,17239], + [54017,24053], + [54019,21914], + [54021,18067], + [54023,23351], + [54025,24581], + [54027,24259], + [54029,26435], + [54031,27004], + [54033,28879], + [54035,25341], + [54037,36305], + [54039,29253], + [54041,23820], + [54043,21456], + [54045,21936], + [54047,15047], + [54049,26380], + [54051,26472], + [54053,24844], + [54055,22212], + [54057,25490], + [54059,20060], + [54061,32154], + [54063,23923], + [54065,28127], + [54067,22335], + [54069,32429], + [54071,25059], + [54073,29974], + [54075,25201], + [54077,24890], + [54079,31587], + [54081,25026], + [54083,24842], + [54085,25606], + [54087,21711], + [54089,21437], + [54091,25214], + [54093,25686], + [54095,24924], + [54097,24070], + [54099,21553], + [54101,22054], + [54103,22546], + [54105,23568], + [54107,27725], + [54109,22703], + [55001,27241], + [55003,23946], + [55005,29681], + [55007,31825], + [55009,32874], + [55011,30503], + [55013,30342], + [55015,35527], + [55017,29991], + [55019,25382], + [55021,34984], + [55023,27615], + [55025,40614], + [55027,29726], + [55029,38744], + [55031,30153], + [55033,28034], + [55035,30983], + [55037,32348], + [55039,31653], + [55041,25700], + [55043,25892], + [55045,33459], + [55047,29207], + [55049,34114], + [55051,28857], + [55053,26481], + [55055,31992], + [55057,27889], + [55059,32298], + [55061,30921], + [55063,32565], + [55065,28448], + [55067,27618], + [55069,30972], + [55071,30130], + [55073,33189], + [55075,28282], + [55077,27922], + [55078,20313], + [55079,29270], + [55081,29242], + [55083,30927], + [55085,34910], + [55087,33221], + [55089,49030], + [55091,30827], + [55093,33061], + [55095,30859], + [55097,31453], + [55099,28882], + [55101,31572], + [55103,27597], + [55105,28945], + [55107,25854], + [55109,39287], + [55111,30990], + [55113,31772], + [55115,29338], + [55117,31510], + [55119,27506], + [55121,28902], + [55123,26198], + [55125,33316], + [55127,32302], + [55129,29584], + [55131,39055], + [55133,46073], + [55135,32000], + [55137,28580], + [55139,32571], + [55141,31425], + [56001,29146], + [56003,24693], + [56005,34776], + [56007,29552], + [56009,33693], + [56011,29532], + [56013,28324], + [56015,28554], + [56017,30643], + [56019,36084], + [56021,35190], + [56023,29747], + [56025,33797], + [56027,22958], + [56029,35147], + [56031,35312], + [56033,35254], + [56035,35874], + [56037,32603], + [56039,54051], + [56041,28159], + [56043,28101], + [56045,28531] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-individual-median-2019.json b/data/regional/united-states/economics/income/us-income-individual-median-2019.json new file mode 100644 index 0000000..87e6377 --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-individual-median-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Individual Income", + "description" : "Median individual income from the previous 12 months in 2019 US dollars.", + "units" : "$", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income","individual"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.individual.median.2019"], + [1001,29725], + [1003,29802], + [1005,17963], + [1007,21958], + [1009,26976], + [1011,21571], + [1013,19685], + [1015,24069], + [1017,22754], + [1019,23121], + [1021,24132], + [1023,20652], + [1025,21613], + [1027,22404], + [1029,23433], + [1031,28172], + [1033,25308], + [1035,21085], + [1037,20110], + [1039,24623], + [1041,21337], + [1043,24163], + [1045,24767], + [1047,20682], + [1049,21951], + [1051,29988], + [1053,22986], + [1055,23677], + [1057,21529], + [1059,24210], + [1061,22376], + [1063,16949], + [1065,19167], + [1067,23973], + [1069,25191], + [1071,24004], + [1073,29369], + [1075,21355], + [1077,26007], + [1079,24698], + [1081,25439], + [1083,28473], + [1085,17895], + [1087,17540], + [1089,32588], + [1091,22415], + [1093,20344], + [1095,24278], + [1097,25908], + [1099,20706], + [1101,26487], + [1103,26510], + [1105,17576], + [1107,20311], + [1109,20958], + [1111,24128], + [1113,24726], + [1115,28940], + [1117,38053], + [1119,15278], + [1121,22313], + [1123,24621], + [1125,25278], + [1127,24078], + [1129,21647], + [1131,17766], + [1133,20905], + [2013,29177], + [2016,35204], + [2020,38390], + [2050,14419], + [2060,38804], + [2068,26630], + [2070,23136], + [2090,36644], + [2100,34411], + [2105,28750], + [2110,42746], + [2122,30696], + [2130,35398], + [2150,31806], + [2158,11520], + [2164,21080], + [2170,29828], + [2180,21213], + [2185,51525], + [2188,18986], + [2195,28653], + [2198,23921], + [2220,38659], + [2230,35662], + [2240,29888], + [2261,36760], + [2275,27083], + [2282,32159], + [2290,19238], + [4001,20596], + [4003,25573], + [4005,25094], + [4007,24681], + [4009,24123], + [4011,31420], + [4012,20561], + [4013,32158], + [4015,24105], + [4017,21256], + [4019,27279], + [4021,28080], + [4023,22538], + [4025,26689], + [4027,24291], + [5001,25843], + [5003,23462], + [5005,23819], + [5007,33141], + [5009,23999], + [5011,26213], + [5013,23725], + [5015,24466], + [5017,19980], + [5019,20430], + [5021,21479], + [5023,24984], + [5025,25617], + [5027,19812], + [5029,23023], + [5031,25852], + [5033,25758], + [5035,23938], + [5037,25915], + [5039,21699], + [5041,21551], + [5043,24236], + [5045,27130], + [5047,22283], + [5049,18328], + [5051,24589], + [5053,27153], + [5055,24559], + [5057,23079], + [5059,22711], + [5061,22610], + [5063,22541], + [5065,21763], + [5067,19012], + [5069,24282], + [5071,20955], + [5073,21109], + [5075,20692], + [5077,17433], + [5079,21875], + [5081,25886], + [5083,21690], + [5085,30896], + [5087,22565], + [5089,19980], + [5091,24076], + [5093,22045], + [5095,22568], + [5097,20328], + [5099,23031], + [5101,19494], + [5103,21126], + [5105,22924], + [5107,20294], + [5109,22055], + [5111,22119], + [5113,20349], + [5115,21502], + [5117,26857], + [5119,30084], + [5121,21347], + [5123,19988], + [5125,31869], + [5127,20376], + [5129,19255], + [5131,25248], + [5133,24010], + [5135,19852], + [5137,18521], + [5139,24325], + [5141,20302], + [5143,27431], + [5145,23470], + [5147,22792], + [5149,23158], + [6001,43583], + [6003,30512], + [6005,31160], + [6007,24067], + [6009,29124], + [6011,27103], + [6013,42181], + [6015,23493], + [6017,36682], + [6019,25238], + [6021,24329], + [6023,25114], + [6025,18245], + [6027,31566], + [6029,25013], + [6031,26841], + [6033,25172], + [6035,30814], + [6037,29985], + [6039,23691], + [6041,52866], + [6043,27678], + [6045,26784], + [6047,24873], + [6049,25106], + [6051,30701], + [6053,28207], + [6055,37953], + [6057,32359], + [6059,36135], + [6061,41130], + [6063,31351], + [6065,28557], + [6067,32275], + [6069,33547], + [6071,27235], + [6073,34307], + [6075,52677], + [6077,29535], + [6079,31938], + [6081,49128], + [6083,29657], + [6085,47584], + [6087,31174], + [6089,27000], + [6091,28138], + [6093,25576], + [6095,36273], + [6097,36623], + [6099,27840], + [6101,26334], + [6103,23061], + [6105,23901], + [6107,22994], + [6109,29458], + [6111,33814], + [6113,30331], + [6115,27877], + [8001,34088], + [8003,21241], + [8005,38273], + [8007,26314], + [8009,23096], + [8011,20260], + [8013,36794], + [8014,47013], + [8015,30011], + [8017,32727], + [8019,34483], + [8021,20882], + [8023,18902], + [8025,18032], + [8027,26669], + [8029,25880], + [8031,39806], + [8033,29894], + [8035,52910], + [8037,38850], + [8039,42429], + [8041,32586], + [8043,26243], + [8045,36618], + [8047,44683], + [8049,35000], + [8051,28016], + [8053,30847], + [8055,23471], + [8057,24571], + [8059,41035], + [8061,25980], + [8063,29742], + [8065,30400], + [8067,34074], + [8069,32905], + [8071,23653], + [8073,25561], + [8075,27450], + [8077,28267], + [8079,30038], + [8081,30196], + [8083,26901], + [8085,27033], + [8087,27765], + [8089,21957], + [8091,34906], + [8093,32731], + [8095,31635], + [8097,42002], + [8099,26363], + [8101,25166], + [8103,30251], + [8105,21787], + [8107,37368], + [8109,23863], + [8111,32500], + [8113,36451], + [8115,24202], + [8117,36007], + [8119,35242], + [8121,28315], + [8123,34305], + [8125,30905], + [9001,40609], + [9003,37985], + [9005,39166], + [9007,42907], + [9009,35721], + [9011,35785], + [9013,37303], + [9015,32078], + [10001,30327], + [10003,36458], + [10005,31752], + [11001,49542], + [12001,25648], + [12003,28349], + [12005,27495], + [12007,24309], + [12009,28542], + [12011,30277], + [12013,23568], + [12015,26006], + [12017,24413], + [12019,32036], + [12021,31213], + [12023,25790], + [12027,21509], + [12029,22643], + [12031,30608], + [12033,26946], + [12035,26821], + [12037,24823], + [12039,25734], + [12041,22882], + [12043,21698], + [12045,26523], + [12047,20544], + [12049,21744], + [12051,21225], + [12053,25217], + [12055,22059], + [12057,30363], + [12059,21699], + [12061,27382], + [12063,23053], + [12065,27978], + [12067,21923], + [12069,27221], + [12071,28529], + [12073,27751], + [12075,21676], + [12077,21920], + [12079,21243], + [12081,29551], + [12083,24501], + [12085,30801], + [12086,24787], + [12087,35539], + [12089,31965], + [12091,31212], + [12093,22631], + [12095,28064], + [12097,23483], + [12099,30762], + [12101,27455], + [12103,30009], + [12105,26032], + [12107,21486], + [12109,36462], + [12111,26425], + [12113,31273], + [12115,31707], + [12117,32734], + [12119,27579], + [12121,22987], + [12123,21515], + [12125,23031], + [12127,26792], + [12129,31163], + [12131,28513], + [12133,21452], + [13001,22607], + [13003,22097], + [13005,22385], + [13007,25164], + [13009,22750], + [13011,21895], + [13013,28741], + [13015,29584], + [13017,20795], + [13019,24287], + [13021,24804], + [13023,25249], + [13025,20927], + [13027,26162], + [13029,34997], + [13031,21375], + [13033,25474], + [13035,22360], + [13037,20638], + [13039,28762], + [13043,18675], + [13045,25593], + [13047,27313], + [13049,21198], + [13051,28791], + [13053,24681], + [13055,21970], + [13057,36920], + [13059,20153], + [13061,15701], + [13063,25655], + [13065,21190], + [13067,37999], + [13069,22050], + [13071,22268], + [13073,36592], + [13075,23493], + [13077,34846], + [13079,26396], + [13081,20029], + [13083,23075], + [13085,31997], + [13087,24110], + [13089,32501], + [13091,22254], + [13093,21136], + [13095,21959], + [13097,30782], + [13099,20554], + [13101,24410], + [13103,32482], + [13105,21348], + [13107,21314], + [13109,22803], + [13111,25062], + [13113,41364], + [13115,24845], + [13117,44964], + [13119,22850], + [13121,37675], + [13123,23749], + [13125,25696], + [13127,27542], + [13129,25156], + [13131,24093], + [13133,26619], + [13135,32482], + [13137,25266], + [13139,28161], + [13141,21759], + [13143,25884], + [13145,32702], + [13147,24057], + [13149,25532], + [13151,33610], + [13153,31668], + [13155,21059], + [13157,30862], + [13159,25112], + [13161,20689], + [13163,19890], + [13165,16832], + [13167,21300], + [13169,28674], + [13171,22216], + [13173,21819], + [13175,22223], + [13177,35372], + [13179,28879], + [13181,24732], + [13183,29660], + [13185,24530], + [13187,23480], + [13189,22257], + [13191,27312], + [13193,20249], + [13195,27236], + [13197,25227], + [13199,21327], + [13201,26377], + [13205,22058], + [13207,27473], + [13209,22188], + [13211,30978], + [13213,25683], + [13215,24763], + [13217,26231], + [13219,39118], + [13221,24739], + [13223,33102], + [13225,23739], + [13227,30854], + [13229,21531], + [13231,32228], + [13233,24758], + [13235,21508], + [13237,29520], + [13239,18741], + [13241,22523], + [13243,16983], + [13245,22300], + [13247,31407], + [13249,27516], + [13251,23234], + [13253,22414], + [13255,24805], + [13257,23834], + [13259,18589], + [13261,22179], + [13263,21681], + [13265,19627], + [13267,19892], + [13269,23041], + [13271,18562], + [13273,20089], + [13275,25366], + [13277,24370], + [13279,22909], + [13281,21497], + [13283,19712], + [13285,24771], + [13287,21877], + [13289,25026], + [13291,25320], + [13293,23152], + [13295,23631], + [13297,30379], + [13299,23597], + [13301,21098], + [13303,22101], + [13305,22399], + [13307,24180], + [13309,19452], + [13311,27752], + [13313,26202], + [13315,20837], + [13317,22203], + [13319,22110], + [13321,25104], + [15001,30536], + [15003,36957], + [15005,47188], + [15007,34697], + [15009,35474], + [16001,32937], + [16003,26878], + [16005,24667], + [16007,26286], + [16009,23285], + [16011,24405], + [16013,31209], + [16015,27921], + [16017,25310], + [16019,27063], + [16021,24746], + [16023,25764], + [16025,25087], + [16027,25210], + [16029,25919], + [16031,25371], + [16033,23424], + [16035,25302], + [16037,19388], + [16039,26809], + [16041,22649], + [16043,24360], + [16045,22739], + [16047,25003], + [16049,21757], + [16051,27630], + [16053,24582], + [16055,28786], + [16057,22682], + [16059,22472], + [16061,23597], + [16063,25216], + [16065,12911], + [16067,25095], + [16069,29099], + [16071,24288], + [16073,23583], + [16075,27032], + [16077,26383], + [16079,21338], + [16081,33984], + [16083,26170], + [16085,26342], + [16087,21188], + [17001,30499], + [17003,21845], + [17005,27042], + [17007,30257], + [17009,30690], + [17011,29091], + [17013,27843], + [17015,29036], + [17017,29595], + [17019,28603], + [17021,30053], + [17023,31515], + [17025,26802], + [17027,34187], + [17029,25029], + [17031,32955], + [17033,26611], + [17035,29450], + [17037,28262], + [17039,29287], + [17041,30459], + [17043,41943], + [17045,27974], + [17047,29449], + [17049,30369], + [17051,24407], + [17053,30083], + [17055,24243], + [17057,26843], + [17059,26342], + [17061,25938], + [17063,40057], + [17065,28482], + [17067,29026], + [17069,23420], + [17071,27336], + [17073,31155], + [17075,26890], + [17077,21117], + [17079,26881], + [17081,26679], + [17083,31247], + [17085,30920], + [17087,28494], + [17089,33731], + [17091,27619], + [17093,40170], + [17095,25366], + [17097,37491], + [17099,29484], + [17101,25994], + [17103,30779], + [17105,29147], + [17107,30474], + [17109,21047], + [17111,39390], + [17113,33417], + [17115,28225], + [17117,29329], + [17119,31555], + [17121,26237], + [17123,30372], + [17125,26764], + [17127,23617], + [17129,40057], + [17131,31234], + [17133,41254], + [17135,27335], + [17137,26917], + [17139,31856], + [17141,31666], + [17143,30634], + [17145,27754], + [17147,36317], + [17149,27016], + [17151,21153], + [17153,21208], + [17155,32691], + [17157,28650], + [17159,27334], + [17161,30830], + [17163,30310], + [17165,24185], + [17167,34933], + [17169,29440], + [17171,30248], + [17173,29644], + [17175,29537], + [17177,27178], + [17179,33800], + [17181,27669], + [17183,27550], + [17185,26544], + [17187,26774], + [17189,35549], + [17191,28537], + [17193,25687], + [17195,27944], + [17197,37319], + [17199,27489], + [17201,28400], + [17203,35400], + [18001,29570], + [18003,30325], + [18005,31874], + [18007,27002], + [18009,25424], + [18011,41956], + [18013,29372], + [18015,30193], + [18017,28120], + [18019,30746], + [18021,30251], + [18023,28155], + [18025,23847], + [18027,27372], + [18029,31366], + [18031,30464], + [18033,30167], + [18035,22613], + [18037,31409], + [18039,29100], + [18041,25447], + [18043,31865], + [18045,28168], + [18047,30851], + [18049,27488], + [18051,30141], + [18053,23127], + [18055,26319], + [18057,46631], + [18059,37719], + [18061,29102], + [18063,38755], + [18065,26313], + [18067,30252], + [18069,28502], + [18071,28439], + [18073,30626], + [18075,26060], + [18077,27018], + [18079,28491], + [18081,35832], + [18083,26503], + [18085,30452], + [18087,30961], + [18089,29975], + [18091,28152], + [18093,27398], + [18095,26440], + [18097,29572], + [18099,27595], + [18101,30664], + [18103,27576], + [18105,22409], + [18107,29813], + [18109,31019], + [18111,28690], + [18113,30171], + [18115,31364], + [18117,24555], + [18119,26749], + [18121,26045], + [18123,28928], + [18125,27043], + [18127,33572], + [18129,31535], + [18131,27793], + [18133,27702], + [18135,26306], + [18137,28891], + [18139,30705], + [18141,27208], + [18143,25470], + [18145,31848], + [18147,30798], + [18149,25585], + [18151,28865], + [18153,25703], + [18155,27114], + [18157,24925], + [18159,33733], + [18161,27248], + [18163,27095], + [18165,28558], + [18167,23583], + [18169,27759], + [18171,31885], + [18173,35851], + [18175,28197], + [18177,25292], + [18179,30174], + [18181,29443], + [18183,32719], + [19001,31886], + [19003,30028], + [19005,29921], + [19007,24013], + [19009,28804], + [19011,34887], + [19013,28001], + [19015,33532], + [19017,33610], + [19019,32049], + [19021,29438], + [19023,31123], + [19025,27215], + [19027,31396], + [19029,28948], + [19031,35486], + [19033,31419], + [19035,30888], + [19037,32338], + [19039,30386], + [19041,27708], + [19043,27442], + [19045,29943], + [19047,30641], + [19049,46694], + [19051,30912], + [19053,22853], + [19055,31467], + [19057,29964], + [19059,34232], + [19061,31437], + [19063,27184], + [19065,26735], + [19067,28660], + [19069,31147], + [19071,30390], + [19073,28990], + [19075,36676], + [19077,31673], + [19079,32448], + [19081,31690], + [19083,30203], + [19085,33596], + [19087,28551], + [19089,31701], + [19091,30442], + [19093,32594], + [19095,33102], + [19097,32335], + [19099,30938], + [19101,25018], + [19103,30486], + [19105,31435], + [19107,28824], + [19109,32007], + [19111,26580], + [19113,34626], + [19115,30556], + [19117,31208], + [19119,32845], + [19121,35347], + [19123,27150], + [19125,31558], + [19127,30385], + [19129,33333], + [19131,30614], + [19133,27314], + [19135,32954], + [19137,28472], + [19139,31248], + [19141,30548], + [19143,31817], + [19145,27928], + [19147,30217], + [19149,36509], + [19151,30587], + [19153,36061], + [19155,31953], + [19157,30154], + [19159,29532], + [19161,31386], + [19163,32801], + [19165,32322], + [19167,30737], + [19169,23520], + [19171,30623], + [19173,29178], + [19175,27896], + [19177,25755], + [19179,27905], + [19181,39189], + [19183,32270], + [19185,28464], + [19187,25830], + [19189,30414], + [19191,30273], + [19193,30541], + [19195,32311], + [19197,30596], + [20001,25762], + [20003,25546], + [20005,22503], + [20007,26147], + [20009,26586], + [20011,23767], + [20013,26031], + [20015,32402], + [20017,24442], + [20019,22456], + [20021,24412], + [20023,26798], + [20025,32045], + [20027,27977], + [20029,26492], + [20031,29788], + [20033,29181], + [20035,26974], + [20037,23064], + [20039,28254], + [20041,26855], + [20043,25274], + [20045,26292], + [20047,30531], + [20049,20737], + [20051,26676], + [20053,27225], + [20055,30650], + [20057,29089], + [20059,30681], + [20061,30573], + [20063,28801], + [20065,26768], + [20067,33723], + [20069,32514], + [20071,30542], + [20073,25421], + [20075,29909], + [20077,26080], + [20079,30756], + [20081,28841], + [20083,31348], + [20085,30334], + [20087,35862], + [20089,24077], + [20091,43408], + [20093,26867], + [20095,31157], + [20097,27866], + [20099,25772], + [20101,30275], + [20103,32466], + [20105,28105], + [20107,27113], + [20109,26898], + [20111,26439], + [20113,31091], + [20115,25715], + [20117,29842], + [20119,31543], + [20121,36073], + [20123,27353], + [20125,24542], + [20127,30533], + [20129,28843], + [20131,30556], + [20133,26323], + [20135,30362], + [20137,23436], + [20139,28478], + [20141,27770], + [20143,30751], + [20145,24658], + [20147,26056], + [20149,34454], + [20151,27764], + [20153,27957], + [20155,26565], + [20157,28486], + [20159,26515], + [20161,23025], + [20163,26245], + [20165,27188], + [20167,22825], + [20169,29229], + [20171,30737], + [20173,30468], + [20175,27166], + [20177,31826], + [20179,32220], + [20181,27415], + [20183,25739], + [20185,28120], + [20187,32121], + [20189,29191], + [20191,29526], + [20193,29763], + [20195,32477], + [20197,31168], + [20199,31675], + [20201,28288], + [20203,30813], + [20205,25522], + [20207,22845], + [20209,26878], + [21001,19277], + [21003,22110], + [21005,31028], + [21007,25285], + [21009,22266], + [21011,24636], + [21013,15563], + [21015,36732], + [21017,26389], + [21019,25178], + [21021,24245], + [21023,25861], + [21025,15934], + [21027,23373], + [21029,31348], + [21031,24598], + [21033,26292], + [21035,20899], + [21037,32375], + [21039,25721], + [21041,22711], + [21043,19272], + [21045,19094], + [21047,26667], + [21049,27322], + [21051,16369], + [21053,19275], + [21055,22431], + [21057,18583], + [21059,27831], + [21061,21545], + [21063,16880], + [21065,18707], + [21067,30181], + [21069,23978], + [21071,18188], + [21073,32347], + [21075,20198], + [21077,25496], + [21079,25436], + [21081,26185], + [21083,24822], + [21085,23040], + [21087,19829], + [21089,25769], + [21091,29008], + [21093,30512], + [21095,17709], + [21097,24369], + [21099,21428], + [21101,26733], + [21103,25639], + [21105,23460], + [21107,26085], + [21109,20182], + [21111,31170], + [21113,27057], + [21115,20254], + [21117,32892], + [21119,16796], + [21121,17124], + [21123,23997], + [21125,22721], + [21127,19610], + [21129,16665], + [21131,17902], + [21133,19483], + [21135,20316], + [21137,23142], + [21139,24648], + [21141,26673], + [21143,23580], + [21145,26221], + [21147,15671], + [21149,29536], + [21151,22905], + [21153,16946], + [21155,23359], + [21157,27833], + [21159,22992], + [21161,24944], + [21163,29352], + [21165,23848], + [21167,27340], + [21169,19767], + [21171,20677], + [21173,24173], + [21175,20952], + [21177,20938], + [21179,30824], + [21181,21681], + [21183,23272], + [21185,41157], + [21187,24982], + [21189,17266], + [21191,26522], + [21193,21114], + [21195,20813], + [21197,21237], + [21199,21765], + [21201,26864], + [21203,19607], + [21205,18303], + [21207,21066], + [21209,33307], + [21211,30536], + [21213,26604], + [21215,36253], + [21217,21871], + [21219,26469], + [21221,27365], + [21223,27088], + [21225,25799], + [21227,25057], + [21229,26102], + [21231,19356], + [21233,22344], + [21235,18714], + [21237,14180], + [21239,31738], + [22001,22795], + [22003,22405], + [22005,37330], + [22007,24504], + [22009,21711], + [22011,25940], + [22013,20695], + [22015,29338], + [22017,23699], + [22019,27057], + [22021,20612], + [22023,30517], + [22025,23795], + [22027,16244], + [22029,20415], + [22031,25566], + [22033,28441], + [22035,17979], + [22037,26177], + [22039,19039], + [22041,20588], + [22043,20236], + [22045,24423], + [22047,25164], + [22049,21417], + [22051,29735], + [22053,22566], + [22055,29443], + [22057,27296], + [22059,21949], + [22061,20228], + [22063,31434], + [22065,18095], + [22067,20371], + [22069,18151], + [22071,26095], + [22073,24755], + [22075,28697], + [22077,24851], + [22079,25418], + [22081,18209], + [22083,20158], + [22085,20945], + [22087,24209], + [22089,36001], + [22091,22444], + [22093,26341], + [22095,27932], + [22097,20843], + [22099,25297], + [22101,25255], + [22103,31566], + [22105,23823], + [22107,15723], + [22109,25850], + [22111,24154], + [22113,26353], + [22115,26098], + [22117,19978], + [22119,17267], + [22121,32875], + [22123,20905], + [22125,30783], + [22127,21224], + [23001,30206], + [23003,22893], + [23005,35560], + [23007,25350], + [23009,29700], + [23011,29341], + [23013,29602], + [23015,29871], + [23017,24424], + [23019,25832], + [23021,21687], + [23023,33990], + [23025,22511], + [23027,27241], + [23029,22871], + [23031,32822], + [24001,22555], + [24003,45925], + [24005,38949], + [24009,48972], + [24011,28293], + [24013,42385], + [24015,35836], + [24017,48391], + [24019,29113], + [24021,43752], + [24023,28250], + [24025,41771], + [24027,56447], + [24029,30144], + [24031,49033], + [24033,40372], + [24035,41965], + [24037,42884], + [24039,20174], + [24041,36755], + [24043,30035], + [24045,27278], + [24047,31891], + [24510,29943], + [25001,36031], + [25003,30873], + [25005,32803], + [25007,39842], + [25009,35990], + [25011,31875], + [25013,28671], + [25015,28327], + [25017,46130], + [25019,44630], + [25021,46624], + [25023,39644], + [25025,34192], + [25027,35350], + [26001,23311], + [26003,22430], + [26005,30827], + [26007,24584], + [26009,27113], + [26011,24345], + [26013,25371], + [26015,31940], + [26017,27109], + [26019,27368], + [26021,27125], + [26023,27280], + [26025,26362], + [26027,29198], + [26029,29017], + [26031,24672], + [26033,22322], + [26035,21058], + [26037,35099], + [26039,24226], + [26041,26120], + [26043,29516], + [26045,33721], + [26047,29031], + [26049,26871], + [26051,24249], + [26053,22865], + [26055,30814], + [26057,25803], + [26059,26318], + [26061,20905], + [26063,26855], + [26065,26089], + [26067,29878], + [26069,23828], + [26071,24450], + [26073,18007], + [26075,28006], + [26077,27981], + [26079,24739], + [26081,30869], + [26083,28204], + [26085,18793], + [26087,30352], + [26089,32008], + [26091,28228], + [26093,38524], + [26095,23277], + [26097,25157], + [26099,31619], + [26101,25053], + [26103,26510], + [26105,26094], + [26107,20605], + [26109,25843], + [26111,30833], + [26113,24963], + [26115,31107], + [26117,25605], + [26119,23146], + [26121,26491], + [26123,25457], + [26125,39352], + [26127,24491], + [26129,21906], + [26131,24120], + [26133,23975], + [26135,24163], + [26137,26743], + [26139,30688], + [26141,25208], + [26143,22948], + [26145,25778], + [26147,28654], + [26149,27909], + [26151,25829], + [26153,22869], + [26155,29626], + [26157,25806], + [26159,27226], + [26161,33914], + [26163,26659], + [26165,24167], + [27001,26586], + [27003,39688], + [27005,31304], + [27007,25619], + [27009,32419], + [27011,28857], + [27013,27486], + [27015,32186], + [27017,31007], + [27019,45984], + [27021,28473], + [27023,32049], + [27025,38960], + [27027,32368], + [27029,26597], + [27031,32016], + [27033,30748], + [27035,30326], + [27037,42103], + [27039,39182], + [27041,33855], + [27043,30273], + [27045,32371], + [27047,29777], + [27049,34672], + [27051,30741], + [27053,40502], + [27055,34148], + [27057,28734], + [27059,36132], + [27061,28962], + [27063,33412], + [27065,29092], + [27067,31061], + [27069,32384], + [27071,27799], + [27073,29450], + [27075,32930], + [27077,24131], + [27079,35685], + [27081,30744], + [27083,30699], + [27085,33379], + [27087,24792], + [27089,33917], + [27091,31103], + [27093,31707], + [27095,28194], + [27097,30319], + [27099,30821], + [27101,31283], + [27103,33167], + [27105,30221], + [27107,30234], + [27109,40157], + [27111,31660], + [27113,34055], + [27115,26478], + [27117,29023], + [27119,31715], + [27121,33598], + [27123,33150], + [27125,32688], + [27127,29501], + [27129,31212], + [27131,31174], + [27133,32941], + [27135,32827], + [27137,29063], + [27139,43988], + [27141,39364], + [27143,33260], + [27145,30470], + [27147,34883], + [27149,27740], + [27151,30691], + [27153,28929], + [27155,32362], + [27157,34536], + [27159,26026], + [27161,30688], + [27163,44418], + [27165,30366], + [27167,36838], + [27169,27433], + [27171,40495], + [27173,30470], + [28001,19463], + [28003,23918], + [28005,19961], + [28007,20050], + [28009,26246], + [28011,18718], + [28013,21549], + [28015,22450], + [28017,22654], + [28019,19340], + [28021,15877], + [28023,23381], + [28025,21538], + [28027,17588], + [28029,21718], + [28031,19655], + [28033,32369], + [28035,20502], + [28037,20906], + [28039,25184], + [28041,21427], + [28043,23220], + [28045,26751], + [28047,25896], + [28049,24851], + [28051,16311], + [28053,15900], + [28055,14154], + [28057,23311], + [28059,26888], + [28061,22667], + [28063,17291], + [28065,20051], + [28067,24228], + [28069,17896], + [28071,23358], + [28073,30085], + [28075,23061], + [28077,25295], + [28079,21268], + [28081,26351], + [28083,18160], + [28085,24466], + [28087,27971], + [28089,36455], + [28091,19521], + [28093,25089], + [28095,24172], + [28097,21958], + [28099,20238], + [28101,22218], + [28103,17847], + [28105,19134], + [28107,21299], + [28109,23307], + [28111,19860], + [28113,19574], + [28115,23519], + [28117,21324], + [28119,16623], + [28121,32740], + [28123,21183], + [28125,20299], + [28127,21821], + [28129,24747], + [28131,21066], + [28133,18212], + [28135,18315], + [28137,24970], + [28139,22388], + [28141,21364], + [28143,22490], + [28145,24243], + [28147,21211], + [28149,24260], + [28151,18920], + [28153,22723], + [28155,22854], + [28157,16143], + [28159,20528], + [28161,21930], + [28163,18923], + [29001,20211], + [29003,30478], + [29005,28101], + [29007,23257], + [29009,23819], + [29011,22363], + [29013,26493], + [29015,21691], + [29017,22355], + [29019,29043], + [29021,26406], + [29023,21207], + [29025,26571], + [29027,28863], + [29029,24976], + [29031,26761], + [29033,25904], + [29035,20879], + [29037,34558], + [29039,21190], + [29041,23881], + [29043,30295], + [29045,25281], + [29047,35437], + [29049,32199], + [29051,33462], + [29053,27894], + [29055,22158], + [29057,20907], + [29059,21248], + [29061,25878], + [29063,28051], + [29065,23507], + [29067,19586], + [29069,21034], + [29071,30619], + [29073,26785], + [29075,25652], + [29077,26445], + [29079,23298], + [29081,23496], + [29083,24875], + [29085,20154], + [29087,28772], + [29089,24994], + [29091,21380], + [29093,20351], + [29095,31562], + [29097,25861], + [29099,32137], + [29101,25893], + [29103,20024], + [29105,25278], + [29107,29888], + [29109,23967], + [29111,23806], + [29113,31168], + [29115,26909], + [29117,26939], + [29119,24130], + [29121,24657], + [29123,23587], + [29125,26802], + [29127,25606], + [29129,25028], + [29131,26846], + [29133,14973], + [29135,29996], + [29137,26924], + [29139,27625], + [29141,21027], + [29143,23739], + [29145,26793], + [29147,20924], + [29149,20333], + [29151,31440], + [29153,17707], + [29155,18526], + [29157,28678], + [29159,24493], + [29161,24011], + [29163,23088], + [29165,39879], + [29167,21765], + [29169,24121], + [29171,24892], + [29173,28251], + [29175,25739], + [29177,30594], + [29179,22173], + [29181,17408], + [29183,39314], + [29185,21077], + [29186,28897], + [29187,23815], + [29189,35387], + [29195,24437], + [29197,22271], + [29199,27390], + [29201,22709], + [29203,17782], + [29205,24780], + [29207,22608], + [29209,24046], + [29211,25013], + [29213,23883], + [29215,21045], + [29217,25009], + [29219,29000], + [29221,20390], + [29223,18236], + [29225,26009], + [29227,26183], + [29229,19181], + [29510,28186], + [30001,22728], + [30003,25387], + [30005,23482], + [30007,30913], + [30009,29315], + [30011,30061], + [30013,28467], + [30015,24726], + [30017,28832], + [30019,32053], + [30021,29196], + [30023,23700], + [30025,38867], + [30027,27245], + [30029,28269], + [30031,31088], + [30033,24904], + [30035,20169], + [30037,22246], + [30039,24408], + [30041,25932], + [30043,31749], + [30045,26422], + [30047,23843], + [30049,33992], + [30051,26465], + [30053,21649], + [30055,27143], + [30057,26081], + [30059,22978], + [30061,21457], + [30063,26424], + [30065,26137], + [30067,30906], + [30069,32031], + [30071,26228], + [30073,26273], + [30075,31362], + [30077,23966], + [30079,23077], + [30081,25250], + [30083,32507], + [30085,22477], + [30087,28115], + [30089,20894], + [30091,30951], + [30093,25309], + [30095,30618], + [30097,26618], + [30099,27392], + [30101,24360], + [30103,27500], + [30105,27337], + [30107,24337], + [30109,33634], + [30111,32306], + [31001,28213], + [31003,27204], + [31005,26184], + [31007,31667], + [31009,29141], + [31011,32416], + [31013,31370], + [31015,25286], + [31017,27052], + [31019,29034], + [31021,30128], + [31023,31456], + [31025,36303], + [31027,31682], + [31029,31402], + [31031,30706], + [31033,32105], + [31035,30360], + [31037,30922], + [31039,31859], + [31041,29112], + [31043,29788], + [31045,24964], + [31047,28990], + [31049,26051], + [31051,30474], + [31053,28702], + [31055,34837], + [31057,30585], + [31059,31831], + [31061,27422], + [31063,28080], + [31065,27219], + [31067,30137], + [31069,26809], + [31071,26773], + [31073,33845], + [31075,25324], + [31077,26683], + [31079,30996], + [31081,32042], + [31083,30629], + [31085,30641], + [31087,27922], + [31089,31359], + [31091,25673], + [31093,30998], + [31095,27036], + [31097,28603], + [31099,32080], + [31101,27512], + [31103,27195], + [31105,28264], + [31107,28390], + [31109,31293], + [31111,30714], + [31113,25338], + [31115,24773], + [31117,32222], + [31119,30202], + [31121,30243], + [31123,26909], + [31125,27654], + [31127,26546], + [31129,24586], + [31131,31515], + [31133,25463], + [31135,36429], + [31137,31342], + [31139,34406], + [31141,31704], + [31143,31955], + [31145,25858], + [31147,26924], + [31149,32198], + [31151,27154], + [31153,39856], + [31155,35500], + [31157,27447], + [31159,31663], + [31161,25100], + [31163,28496], + [31165,28917], + [31167,32453], + [31169,30097], + [31171,30556], + [31173,24607], + [31175,27008], + [31177,38306], + [31179,24036], + [31181,29290], + [31183,31615], + [31185,29530], + [32001,30912], + [32003,30913], + [32005,34007], + [32007,39350], + [32009,26310], + [32011,33380], + [32013,33656], + [32015,39984], + [32017,30739], + [32019,28951], + [32021,24316], + [32023,25214], + [32027,26088], + [32029,36864], + [32031,32659], + [32033,30612], + [32510,31335], + [33001,32332], + [33003,32047], + [33005,30044], + [33007,26003], + [33009,30412], + [33011,37887], + [33013,35807], + [33015,42549], + [33017,31687], + [33019,32668], + [34001,30123], + [34003,46138], + [34005,41780], + [34007,33626], + [34009,32777], + [34011,24786], + [34013,32062], + [34015,39098], + [34017,36230], + [34019,51782], + [34021,35699], + [34023,41142], + [34025,43508], + [34027,50928], + [34029,34168], + [34031,31272], + [34033,32111], + [34035,49614], + [34037,42781], + [34039,36098], + [34041,38468], + [35001,28973], + [35003,22920], + [35005,22812], + [35006,20443], + [35007,22717], + [35009,24288], + [35011,23838], + [35013,20801], + [35015,30903], + [35017,21563], + [35019,19409], + [35021,21086], + [35023,20866], + [35025,28748], + [35027,23730], + [35028,66708], + [35029,16620], + [35031,17490], + [35033,14398], + [35035,21871], + [35037,19569], + [35039,25481], + [35041,19323], + [35043,30199], + [35045,24798], + [35047,19308], + [35049,32693], + [35051,17281], + [35053,16986], + [35055,22060], + [35057,20651], + [35059,23643], + [35061,24497], + [36001,34723], + [36003,23709], + [36005,22232], + [36007,26593], + [36009,26389], + [36011,30756], + [36013,25114], + [36015,28854], + [36017,27495], + [36019,29129], + [36021,33048], + [36023,26380], + [36025,26032], + [36027,35996], + [36029,31856], + [36031,30096], + [36033,28799], + [36035,27934], + [36037,30771], + [36039,28253], + [36041,23364], + [36043,28005], + [36045,27607], + [36047,31406], + [36049,29392], + [36051,29939], + [36053,30568], + [36055,31426], + [36057,26952], + [36059,45285], + [36061,50985], + [36063,30704], + [36065,30286], + [36067,32772], + [36069,33098], + [36071,35300], + [36073,28415], + [36075,27878], + [36077,25415], + [36079,42440], + [36081,31992], + [36083,36310], + [36085,39777], + [36087,39095], + [36089,25915], + [36091,41391], + [36093,31997], + [36095,30092], + [36097,25365], + [36099,29451], + [36101,28431], + [36103,41227], + [36105,29887], + [36107,31430], + [36109,27572], + [36111,31547], + [36113,32238], + [36115,29231], + [36117,30575], + [36119,42615], + [36121,31415], + [36123,26361], + [37001,27734], + [37003,25797], + [37005,20795], + [37007,22474], + [37009,24071], + [37011,20407], + [37013,25665], + [37015,19215], + [37017,22298], + [37019,28184], + [37021,28525], + [37023,23880], + [37025,32366], + [37027,23742], + [37029,33651], + [37031,29053], + [37033,24309], + [37035,27887], + [37037,32024], + [37039,22947], + [37041,27338], + [37043,26318], + [37045,23432], + [37047,22271], + [37049,27714], + [37051,26713], + [37053,35901], + [37055,30728], + [37057,27077], + [37059,30029], + [37061,21302], + [37063,34059], + [37065,21874], + [37067,29380], + [37069,29127], + [37071,27099], + [37073,28354], + [37075,20279], + [37077,27413], + [37079,22002], + [37081,28890], + [37083,20754], + [37085,27340], + [37087,27234], + [37089,29652], + [37091,21356], + [37093,26299], + [37095,20806], + [37097,30102], + [37099,21959], + [37101,30254], + [37103,22170], + [37105,25799], + [37107,22957], + [37109,30413], + [37111,24450], + [37113,25439], + [37115,25148], + [37117,22952], + [37119,35339], + [37121,25087], + [37123,23955], + [37125,31217], + [37127,25978], + [37129,29520], + [37131,22203], + [37133,25209], + [37135,31605], + [37137,24135], + [37139,26855], + [37141,27265], + [37143,25800], + [37145,28355], + [37147,25313], + [37149,26725], + [37151,25976], + [37153,21211], + [37155,21284], + [37157,24465], + [37159,26346], + [37161,23142], + [37163,22516], + [37165,21543], + [37167,26826], + [37169,26907], + [37171,24505], + [37173,21291], + [37175,26010], + [37177,19358], + [37179,34405], + [37181,22006], + [37183,39798], + [37185,21858], + [37187,18139], + [37189,19690], + [37191,25285], + [37193,23989], + [37195,24755], + [37197,26335], + [37199,25083], + [38001,31453], + [38003,32744], + [38005,26089], + [38007,39375], + [38009,31982], + [38011,33791], + [38013,43809], + [38015,40277], + [38017,34981], + [38019,35633], + [38021,33423], + [38023,35417], + [38025,37402], + [38027,31143], + [38029,31352], + [38031,35118], + [38033,32500], + [38035,30264], + [38037,28966], + [38039,31869], + [38041,28770], + [38043,30481], + [38045,35498], + [38047,32098], + [38049,38176], + [38051,30646], + [38053,39784], + [38055,36014], + [38057,37940], + [38059,38107], + [38061,37826], + [38063,31642], + [38065,40809], + [38067,32468], + [38069,27453], + [38071,30193], + [38073,32396], + [38075,40758], + [38077,31407], + [38079,27424], + [38081,40227], + [38083,31402], + [38085,21213], + [38087,30568], + [38089,40418], + [38091,42361], + [38093,31343], + [38095,33801], + [38097,35748], + [38099,33699], + [38101,37158], + [38103,35014], + [38105,45062], + [39001,20725], + [39003,26965], + [39005,26810], + [39007,25123], + [39009,16021], + [39011,32918], + [39013,25252], + [39015,28635], + [39017,31637], + [39019,29667], + [39021,30835], + [39023,26850], + [39025,32761], + [39027,27859], + [39029,25791], + [39031,24872], + [39033,25969], + [39035,29458], + [39037,29106], + [39039,30487], + [39041,46471], + [39043,29836], + [39045,32050], + [39047,27986], + [39049,32427], + [39051,30572], + [39053,24975], + [39055,36968], + [39057,32287], + [39059,25942], + [39061,31579], + [39063,31737], + [39065,25434], + [39067,25261], + [39069,31093], + [39071,23646], + [39073,26156], + [39075,27217], + [39077,28398], + [39079,24981], + [39081,25577], + [39083,27404], + [39085,33539], + [39087,24733], + [39089,31000], + [39091,31536], + [39093,30222], + [39095,27602], + [39097,31612], + [39099,25689], + [39101,23412], + [39103,37069], + [39105,23034], + [39107,31890], + [39109,30566], + [39111,24070], + [39113,28867], + [39115,22096], + [39117,30734], + [39119,25116], + [39121,22922], + [39123,30701], + [39125,28873], + [39127,24862], + [39129,30721], + [39131,23430], + [39133,27359], + [39135,29908], + [39137,34795], + [39139,25390], + [39141,26545], + [39143,29611], + [39145,23011], + [39147,26909], + [39149,31569], + [39151,27962], + [39153,30799], + [39155,26458], + [39157,27316], + [39159,39845], + [39161,30494], + [39163,23750], + [39165,41155], + [39167,26399], + [39169,29052], + [39171,28748], + [39173,29107], + [39175,31446], + [40001,21003], + [40003,24113], + [40005,21263], + [40007,26454], + [40009,23010], + [40011,26007], + [40013,23982], + [40015,24226], + [40017,33213], + [40019,26585], + [40021,22142], + [40023,21269], + [40025,30925], + [40027,31458], + [40029,24171], + [40031,26011], + [40033,24600], + [40035,22208], + [40037,27326], + [40039,25736], + [40041,22210], + [40043,26291], + [40045,26869], + [40047,27646], + [40049,27142], + [40051,29704], + [40053,31615], + [40055,19174], + [40057,25767], + [40059,26495], + [40061,21951], + [40063,21859], + [40065,27002], + [40067,22729], + [40069,22430], + [40071,25560], + [40073,31430], + [40075,22663], + [40077,21946], + [40079,21806], + [40081,26190], + [40083,29442], + [40085,24145], + [40087,32824], + [40089,22631], + [40091,21970], + [40093,29333], + [40095,23746], + [40097,25134], + [40099,26909], + [40101,24813], + [40103,27141], + [40105,24022], + [40107,21287], + [40109,30299], + [40111,22500], + [40113,27652], + [40115,21831], + [40117,25474], + [40119,21193], + [40121,26240], + [40123,27415], + [40125,24983], + [40127,20210], + [40129,27069], + [40131,32493], + [40133,22026], + [40135,21001], + [40137,25606], + [40139,27709], + [40141,21892], + [40143,30505], + [40145,31492], + [40147,28068], + [40149,28225], + [40151,23460], + [40153,29442], + [41001,26254], + [41003,25899], + [41005,37878], + [41007,26716], + [41009,31222], + [41011,24980], + [41013,25723], + [41015,23974], + [41017,31371], + [41019,24680], + [41021,29167], + [41023,26332], + [41025,24409], + [41027,31097], + [41029,27407], + [41031,26242], + [41033,23072], + [41035,24668], + [41037,22214], + [41039,26061], + [41041,24631], + [41043,27939], + [41045,21888], + [41047,28340], + [41049,26976], + [41051,34152], + [41053,28241], + [41055,30194], + [41057,25539], + [41059,26520], + [41061,25785], + [41063,26382], + [41065,27985], + [41067,38189], + [41069,21543], + [41071,29737], + [42001,30935], + [42003,33363], + [42005,27409], + [42007,30666], + [42009,26133], + [42011,30695], + [42013,27166], + [42015,27407], + [42017,40466], + [42019,34235], + [42021,25590], + [42023,23191], + [42025,29134], + [42027,26079], + [42029,43323], + [42031,24572], + [42033,24994], + [42035,25229], + [42037,27199], + [42039,26199], + [42041,35935], + [42043,33232], + [42045,35628], + [42047,30340], + [42049,26585], + [42051,25235], + [42053,17495], + [42055,31630], + [42057,29248], + [42059,26277], + [42061,25629], + [42063,23177], + [42065,26079], + [42067,26870], + [42069,27406], + [42071,31318], + [42073,26315], + [42075,30582], + [42077,30969], + [42079,28094], + [42081,27053], + [42083,25302], + [42085,25932], + [42087,26254], + [42089,29056], + [42091,43022], + [42093,30113], + [42095,31975], + [42097,26746], + [42099,32005], + [42101,26211], + [42103,30423], + [42105,24449], + [42107,28165], + [42109,27703], + [42111,25627], + [42113,25406], + [42115,29356], + [42117,25397], + [42119,24477], + [42121,26251], + [42123,26904], + [42125,31369], + [42127,26450], + [42129,31061], + [42131,28347], + [42133,32447], + [44001,37924], + [44003,37994], + [44005,37366], + [44007,30257], + [44009,36249], + [45001,21890], + [45003,27373], + [45005,19688], + [45007,26409], + [45009,19520], + [45011,22901], + [45013,31632], + [45015,31055], + [45017,27528], + [45019,34431], + [45021,23065], + [45023,23837], + [45025,22239], + [45027,21319], + [45029,21844], + [45031,22175], + [45033,18455], + [45035,31613], + [45037,23712], + [45039,23993], + [45041,25706], + [45043,23586], + [45045,30374], + [45047,23996], + [45049,21343], + [45051,25980], + [45053,25243], + [45055,27414], + [45057,28557], + [45059,21883], + [45061,19677], + [45063,32024], + [45065,23510], + [45067,19308], + [45069,19932], + [45071,25159], + [45073,25517], + [45075,20977], + [45077,23331], + [45079,27682], + [45081,22811], + [45083,26358], + [45085,25126], + [45087,21599], + [45089,20438], + [45091,32174], + [46003,35781], + [46005,29818], + [46007,24988], + [46009,25382], + [46011,26704], + [46013,32380], + [46015,28873], + [46017,15181], + [46019,25160], + [46021,31790], + [46023,25353], + [46025,24856], + [46027,20563], + [46029,31021], + [46031,21172], + [46033,31570], + [46035,30801], + [46037,27029], + [46039,32314], + [46041,25887], + [46043,27436], + [46045,36104], + [46047,24749], + [46049,29184], + [46051,32478], + [46053,25806], + [46055,25625], + [46057,32500], + [46059,31679], + [46061,31341], + [46063,33523], + [46065,37626], + [46067,30145], + [46069,34196], + [46071,17050], + [46073,28438], + [46075,30053], + [46077,33683], + [46079,28121], + [46081,27320], + [46083,39432], + [46085,25879], + [46087,32425], + [46089,25558], + [46091,32424], + [46093,30410], + [46095,17740], + [46097,29577], + [46099,33737], + [46101,32692], + [46102,15163], + [46103,29805], + [46105,29757], + [46107,28774], + [46109,26253], + [46111,30921], + [46115,31111], + [46117,36029], + [46119,36450], + [46121,18483], + [46123,28905], + [46125,31455], + [46127,37384], + [46129,31106], + [46135,30126], + [46137,21181], + [47001,26136], + [47003,26084], + [47005,19844], + [47007,23166], + [47009,28221], + [47011,26412], + [47013,21656], + [47015,27262], + [47017,22236], + [47019,22290], + [47021,30987], + [47023,24558], + [47025,20312], + [47027,17133], + [47029,21351], + [47031,25585], + [47033,25620], + [47035,24268], + [47037,32518], + [47039,22024], + [47041,28066], + [47043,28052], + [47045,25698], + [47047,29502], + [47049,19473], + [47051,25327], + [47053,24373], + [47055,26631], + [47057,22533], + [47059,22668], + [47061,20029], + [47063,23358], + [47065,29070], + [47067,18665], + [47069,20987], + [47071,21631], + [47073,22905], + [47075,22915], + [47077,24619], + [47079,22462], + [47081,22891], + [47083,23090], + [47085,23413], + [47087,19749], + [47089,22984], + [47091,17509], + [47093,29660], + [47095,17079], + [47097,22263], + [47099,23591], + [47101,22104], + [47103,27624], + [47105,28529], + [47107,22440], + [47109,21602], + [47111,23375], + [47113,26718], + [47115,23598], + [47117,28320], + [47119,30161], + [47121,24033], + [47123,22364], + [47125,31030], + [47127,31250], + [47129,21844], + [47131,23795], + [47133,23281], + [47135,19701], + [47137,21654], + [47139,25015], + [47141,24160], + [47143,23097], + [47145,26097], + [47147,31153], + [47149,32018], + [47151,20467], + [47153,21794], + [47155,23907], + [47157,28181], + [47159,28205], + [47161,24176], + [47163,24758], + [47165,32203], + [47167,30703], + [47169,26749], + [47171,21814], + [47173,22784], + [47175,21845], + [47177,23268], + [47179,24948], + [47181,21390], + [47183,21594], + [47185,22788], + [47187,45817], + [47189,35388], + [48001,23143], + [48003,33373], + [48005,24657], + [48007,21631], + [48009,32611], + [48011,31212], + [48013,24278], + [48015,30570], + [48017,25217], + [48019,24939], + [48021,30057], + [48023,22319], + [48025,20371], + [48027,29284], + [48029,27976], + [48031,30193], + [48033,35926], + [48035,26155], + [48037,27641], + [48039,40496], + [48041,24118], + [48043,27435], + [48045,24375], + [48047,14471], + [48049,25515], + [48051,30170], + [48053,27425], + [48055,27173], + [48057,26914], + [48059,26843], + [48061,19933], + [48063,25628], + [48065,38411], + [48067,24905], + [48069,28772], + [48071,37261], + [48073,23891], + [48075,27867], + [48077,27652], + [48079,25346], + [48081,25556], + [48083,26692], + [48085,46479], + [48087,21048], + [48089,29522], + [48091,36265], + [48093,27745], + [48095,24384], + [48097,30926], + [48099,26408], + [48101,19886], + [48103,27260], + [48105,31618], + [48107,22188], + [48109,16921], + [48111,30367], + [48113,31136], + [48115,21316], + [48117,28087], + [48119,26636], + [48121,40677], + [48123,27063], + [48125,23000], + [48127,15656], + [48129,23774], + [48131,20615], + [48133,20255], + [48135,31823], + [48137,19526], + [48139,34653], + [48141,23153], + [48143,23502], + [48145,21182], + [48147,28875], + [48149,30069], + [48151,27609], + [48153,25377], + [48155,21806], + [48157,40880], + [48159,28613], + [48161,26288], + [48163,17164], + [48165,27542], + [48167,34255], + [48169,23376], + [48171,28772], + [48173,23286], + [48175,27950], + [48177,27132], + [48179,26651], + [48181,27892], + [48183,25980], + [48185,26262], + [48187,33952], + [48189,25386], + [48191,20053], + [48193,24120], + [48195,24501], + [48197,19629], + [48199,30905], + [48201,31323], + [48203,26572], + [48205,34152], + [48207,20731], + [48209,31519], + [48211,35830], + [48213,23787], + [48215,19271], + [48217,25335], + [48219,25420], + [48221,31204], + [48223,26608], + [48225,21103], + [48227,25808], + [48229,14326], + [48231,26198], + [48233,24896], + [48235,30909], + [48237,24394], + [48239,27460], + [48241,24871], + [48243,27405], + [48245,27672], + [48247,19364], + [48249,21554], + [48251,31846], + [48253,21856], + [48255,27036], + [48257,31774], + [48259,34853], + [48261,22847], + [48263,28333], + [48265,27511], + [48267,25094], + [48269,33750], + [48271,19296], + [48273,22844], + [48275,26690], + [48277,25175], + [48279,24806], + [48281,30269], + [48283,20019], + [48285,29296], + [48287,28827], + [48289,23653], + [48291,27199], + [48293,23703], + [48295,27259], + [48297,24005], + [48299,25152], + [48301,23750], + [48303,26244], + [48305,25000], + [48307,23211], + [48309,25390], + [48311,32325], + [48313,24769], + [48315,22340], + [48317,33282], + [48319,26329], + [48321,25473], + [48323,18489], + [48325,26529], + [48327,22898], + [48329,38804], + [48331,26198], + [48333,20128], + [48335,26595], + [48337,27018], + [48339,37915], + [48341,31237], + [48343,23596], + [48345,23807], + [48347,21426], + [48349,24951], + [48351,21019], + [48353,23370], + [48355,27335], + [48357,24270], + [48359,27938], + [48361,31543], + [48363,23594], + [48365,26162], + [48367,32185], + [48369,29158], + [48371,27388], + [48373,25626], + [48375,25457], + [48377,14817], + [48379,24729], + [48381,34417], + [48383,38030], + [48385,20868], + [48387,22731], + [48389,22515], + [48391,22952], + [48393,30806], + [48395,24907], + [48397,46518], + [48399,24755], + [48401,26176], + [48403,20582], + [48405,21445], + [48407,22614], + [48409,26180], + [48411,23253], + [48413,26524], + [48415,27681], + [48417,26200], + [48419,22658], + [48421,28307], + [48423,27384], + [48425,30157], + [48427,14038], + [48429,22206], + [48431,36827], + [48433,25331], + [48435,30298], + [48437,21851], + [48439,33326], + [48441,26504], + [48443,24069], + [48445,22037], + [48447,26167], + [48449,25174], + [48451,27568], + [48453,39860], + [48455,23576], + [48457,22214], + [48459,26279], + [48461,28795], + [48463,21037], + [48465,21541], + [48467,26570], + [48469,27297], + [48471,26411], + [48473,25613], + [48475,31467], + [48477,28376], + [48479,21894], + [48481,26008], + [48483,27031], + [48485,25448], + [48487,24911], + [48489,16793], + [48491,39583], + [48493,32643], + [48495,28788], + [48497,29858], + [48499,25192], + [48501,34598], + [48503,27199], + [48505,17256], + [48507,15223], + [49001,30436], + [49003,30295], + [49005,23906], + [49007,25497], + [49009,30536], + [49011,34554], + [49013,30440], + [49015,29209], + [49017,23253], + [49019,27170], + [49021,24493], + [49023,26464], + [49025,24877], + [49027,27383], + [49029,37091], + [49031,19495], + [49033,26997], + [49035,32867], + [49037,22504], + [49039,19986], + [49041,25084], + [49043,42507], + [49045,35164], + [49047,26723], + [49049,26084], + [49051,35491], + [49053,27392], + [49055,22381], + [49057,31248], + [50001,31536], + [50003,28353], + [50005,27052], + [50007,34738], + [50009,23933], + [50011,33676], + [50013,35800], + [50015,32179], + [50017,31445], + [50019,26134], + [50021,30112], + [50023,33620], + [50025,28936], + [50027,31840], + [51001,25346], + [51003,37498], + [51005,26560], + [51007,31722], + [51009,27580], + [51011,29989], + [51013,70148], + [51015,30889], + [51017,30285], + [51019,31616], + [51021,25587], + [51023,33271], + [51025,19568], + [51027,17764], + [51029,23248], + [51031,27489], + [51033,32279], + [51035,22506], + [51036,28848], + [51037,21931], + [51041,39276], + [51043,36717], + [51045,30199], + [51047,32427], + [51049,25748], + [51051,19333], + [51053,30619], + [51057,26599], + [51059,53727], + [51061,44134], + [51063,29316], + [51065,38143], + [51067,28319], + [51069,37186], + [51071,29348], + [51073,35294], + [51075,40720], + [51077,20121], + [51079,35259], + [51081,20130], + [51083,23640], + [51085,40097], + [51087,37151], + [51089,21493], + [51091,25969], + [51093,35695], + [51095,38309], + [51097,32279], + [51099,39966], + [51101,34612], + [51103,30382], + [51105,18053], + [51107,60126], + [51109,29405], + [51111,22856], + [51113,28136], + [51115,31223], + [51117,25324], + [51119,29179], + [51121,25174], + [51125,30861], + [51127,40475], + [51131,25717], + [51133,31633], + [51135,25160], + [51137,33574], + [51139,25036], + [51141,23174], + [51143,25237], + [51145,40000], + [51147,18060], + [51149,34491], + [51153,43568], + [51155,27826], + [51157,37708], + [51159,25103], + [51161,36325], + [51163,26949], + [51165,30670], + [51167,20595], + [51169,21713], + [51171,28856], + [51173,22253], + [51175,28940], + [51177,38572], + [51179,45929], + [51181,32457], + [51183,23129], + [51185,22768], + [51187,32367], + [51191,25266], + [51193,29556], + [51195,20795], + [51197,25306], + [51199,42896], + [51510,59419], + [51520,20711], + [51530,18000], + [51540,31307], + [51550,37511], + [51570,30329], + [51580,26006], + [51590,22419], + [51595,19315], + [51600,50560], + [51610,70390], + [51620,26839], + [51630,32193], + [51640,20318], + [51650,30458], + [51660,18223], + [51670,25362], + [51678,8641], + [51680,20819], + [51683,37783], + [51685,36904], + [51690,22126], + [51700,29837], + [51710,26694], + [51720,19756], + [51730,22893], + [51735,41388], + [51740,27350], + [51750,12919], + [51760,26454], + [51770,25057], + [51775,29356], + [51790,29164], + [51800,36375], + [51810,37350], + [51820,28523], + [51830,16302], + [51840,28202], + [53001,24178], + [53003,27238], + [53005,33590], + [53007,28892], + [53009,27638], + [53011,36268], + [53013,31349], + [53015,27688], + [53017,30106], + [53019,23052], + [53021,28942], + [53023,27941], + [53025,26262], + [53027,26117], + [53029,33871], + [53031,29678], + [53033,45489], + [53035,36449], + [53037,25786], + [53039,26430], + [53041,26381], + [53043,29446], + [53045,28386], + [53047,24978], + [53049,24234], + [53051,27528], + [53053,36273], + [53055,33216], + [53057,32180], + [53059,31344], + [53061,40501], + [53063,30173], + [53065,25440], + [53067,37076], + [53069,26813], + [53071,28051], + [53073,29769], + [53075,17679], + [53077,25527], + [54001,21612], + [54003,31811], + [54005,22829], + [54007,23583], + [54009,27808], + [54011,22326], + [54013,19188], + [54015,19222], + [54017,21366], + [54019,22401], + [54021,18646], + [54023,23007], + [54025,23115], + [54027,25543], + [54029,25976], + [54031,24484], + [54033,27547], + [54035,26611], + [54037,34869], + [54039,26777], + [54041,23106], + [54043,23003], + [54045,22558], + [54047,17088], + [54049,26069], + [54051,25627], + [54053,25409], + [54055,22391], + [54057,26545], + [54059,20956], + [54061,24705], + [54063,22752], + [54065,27047], + [54067,22673], + [54069,26881], + [54071,22380], + [54073,25660], + [54075,22409], + [54077,25533], + [54079,32009], + [54081,23997], + [54083,24193], + [54085,24511], + [54087,21446], + [54089,21911], + [54091,25791], + [54093,25045], + [54095,24476], + [54097,24107], + [54099,21185], + [54101,20469], + [54103,23664], + [54105,25048], + [54107,26052], + [54109,22398], + [55001,24940], + [55003,23772], + [55005,27608], + [55007,29710], + [55009,32799], + [55011,30910], + [55013,27403], + [55015,38365], + [55017,30668], + [55019,29167], + [55021,36664], + [55023,27605], + [55025,38191], + [55027,32199], + [55029,32871], + [55031,29967], + [55033,26111], + [55035,29023], + [55037,27257], + [55039,32247], + [55041,25423], + [55043,26687], + [55045,32730], + [55047,30362], + [55049,35190], + [55051,25505], + [55053,27439], + [55055,31785], + [55057,27577], + [55059,31510], + [55061,33195], + [55063,29863], + [55065,31460], + [55067,27700], + [55069,31364], + [55071,30838], + [55073,31870], + [55075,26923], + [55077,28615], + [55078,23783], + [55079,30129], + [55081,31946], + [55083,31619], + [55085,28825], + [55087,33629], + [55089,40734], + [55091,29817], + [55093,31494], + [55095,31523], + [55097,29393], + [55099,27162], + [55101,31195], + [55103,29523], + [55105,30624], + [55107,26765], + [55109,41079], + [55111,31042], + [55113,26906], + [55115,29799], + [55117,32823], + [55119,30638], + [55121,31989], + [55123,28462], + [55125,26808], + [55127,29626], + [55129,28390], + [55131,39079], + [55133,41242], + [55135,30707], + [55137,27300], + [55139,31111], + [55141,31081], + [56001,22850], + [56003,26237], + [56005,41471], + [56007,31516], + [56009,34183], + [56011,33258], + [56013,27725], + [56015,27496], + [56017,27960], + [56019,31327], + [56021,34055], + [56023,30881], + [56025,32749], + [56027,21065], + [56029,31160], + [56031,26585], + [56033,34758], + [56035,33412], + [56037,36512], + [56039,40914], + [56041,29557], + [56043,29327], + [56045,27367] + ] +} diff --git a/data/regional/united-states/economics/income/us-income-individual-over25-median-2019.json b/data/regional/united-states/economics/income/us-income-individual-over25-median-2019.json new file mode 100644 index 0000000..7a298a6 --- /dev/null +++ b/data/regional/united-states/economics/income/us-income-individual-over25-median-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Median Individual Income Ages Over 25", + "description" : "Median individual income of people over the age of 25 from the previous 12 months in 2019 US dollars.", + "units" : "$", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","income","individual","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.income.individual.median.2019"], + [1001,29725], + [1003,29802], + [1005,17963], + [1007,21958], + [1009,26976], + [1011,21571], + [1013,19685], + [1015,24069], + [1017,22754], + [1019,23121], + [1021,24132], + [1023,20652], + [1025,21613], + [1027,22404], + [1029,23433], + [1031,28172], + [1033,25308], + [1035,21085], + [1037,20110], + [1039,24623], + [1041,21337], + [1043,24163], + [1045,24767], + [1047,20682], + [1049,21951], + [1051,29988], + [1053,22986], + [1055,23677], + [1057,21529], + [1059,24210], + [1061,22376], + [1063,16949], + [1065,19167], + [1067,23973], + [1069,25191], + [1071,24004], + [1073,29369], + [1075,21355], + [1077,26007], + [1079,24698], + [1081,25439], + [1083,28473], + [1085,17895], + [1087,17540], + [1089,32588], + [1091,22415], + [1093,20344], + [1095,24278], + [1097,25908], + [1099,20706], + [1101,26487], + [1103,26510], + [1105,17576], + [1107,20311], + [1109,20958], + [1111,24128], + [1113,24726], + [1115,28940], + [1117,38053], + [1119,15278], + [1121,22313], + [1123,24621], + [1125,25278], + [1127,24078], + [1129,21647], + [1131,17766], + [1133,20905], + [2013,29177], + [2016,35204], + [2020,38390], + [2050,14419], + [2060,38804], + [2068,26630], + [2070,23136], + [2090,36644], + [2100,34411], + [2105,28750], + [2110,42746], + [2122,30696], + [2130,35398], + [2150,31806], + [2158,11520], + [2164,21080], + [2170,29828], + [2180,21213], + [2185,51525], + [2188,18986], + [2195,28653], + [2198,23921], + [2220,38659], + [2230,35662], + [2240,29888], + [2261,36760], + [2275,27083], + [2282,32159], + [2290,19238], + [4001,20596], + [4003,25573], + [4005,25094], + [4007,24681], + [4009,24123], + [4011,31420], + [4012,20561], + [4013,32158], + [4015,24105], + [4017,21256], + [4019,27279], + [4021,28080], + [4023,22538], + [4025,26689], + [4027,24291], + [5001,25843], + [5003,23462], + [5005,23819], + [5007,33141], + [5009,23999], + [5011,26213], + [5013,23725], + [5015,24466], + [5017,19980], + [5019,20430], + [5021,21479], + [5023,24984], + [5025,25617], + [5027,19812], + [5029,23023], + [5031,25852], + [5033,25758], + [5035,23938], + [5037,25915], + [5039,21699], + [5041,21551], + [5043,24236], + [5045,27130], + [5047,22283], + [5049,18328], + [5051,24589], + [5053,27153], + [5055,24559], + [5057,23079], + [5059,22711], + [5061,22610], + [5063,22541], + [5065,21763], + [5067,19012], + [5069,24282], + [5071,20955], + [5073,21109], + [5075,20692], + [5077,17433], + [5079,21875], + [5081,25886], + [5083,21690], + [5085,30896], + [5087,22565], + [5089,19980], + [5091,24076], + [5093,22045], + [5095,22568], + [5097,20328], + [5099,23031], + [5101,19494], + [5103,21126], + [5105,22924], + [5107,20294], + [5109,22055], + [5111,22119], + [5113,20349], + [5115,21502], + [5117,26857], + [5119,30084], + [5121,21347], + [5123,19988], + [5125,31869], + [5127,20376], + [5129,19255], + [5131,25248], + [5133,24010], + [5135,19852], + [5137,18521], + [5139,24325], + [5141,20302], + [5143,27431], + [5145,23470], + [5147,22792], + [5149,23158], + [6001,43583], + [6003,30512], + [6005,31160], + [6007,24067], + [6009,29124], + [6011,27103], + [6013,42181], + [6015,23493], + [6017,36682], + [6019,25238], + [6021,24329], + [6023,25114], + [6025,18245], + [6027,31566], + [6029,25013], + [6031,26841], + [6033,25172], + [6035,30814], + [6037,29985], + [6039,23691], + [6041,52866], + [6043,27678], + [6045,26784], + [6047,24873], + [6049,25106], + [6051,30701], + [6053,28207], + [6055,37953], + [6057,32359], + [6059,36135], + [6061,41130], + [6063,31351], + [6065,28557], + [6067,32275], + [6069,33547], + [6071,27235], + [6073,34307], + [6075,52677], + [6077,29535], + [6079,31938], + [6081,49128], + [6083,29657], + [6085,47584], + [6087,31174], + [6089,27000], + [6091,28138], + [6093,25576], + [6095,36273], + [6097,36623], + [6099,27840], + [6101,26334], + [6103,23061], + [6105,23901], + [6107,22994], + [6109,29458], + [6111,33814], + [6113,30331], + [6115,27877], + [8001,34088], + [8003,21241], + [8005,38273], + [8007,26314], + [8009,23096], + [8011,20260], + [8013,36794], + [8014,47013], + [8015,30011], + [8017,32727], + [8019,34483], + [8021,20882], + [8023,18902], + [8025,18032], + [8027,26669], + [8029,25880], + [8031,39806], + [8033,29894], + [8035,52910], + [8037,38850], + [8039,42429], + [8041,32586], + [8043,26243], + [8045,36618], + [8047,44683], + [8049,35000], + [8051,28016], + [8053,30847], + [8055,23471], + [8057,24571], + [8059,41035], + [8061,25980], + [8063,29742], + [8065,30400], + [8067,34074], + [8069,32905], + [8071,23653], + [8073,25561], + [8075,27450], + [8077,28267], + [8079,30038], + [8081,30196], + [8083,26901], + [8085,27033], + [8087,27765], + [8089,21957], + [8091,34906], + [8093,32731], + [8095,31635], + [8097,42002], + [8099,26363], + [8101,25166], + [8103,30251], + [8105,21787], + [8107,37368], + [8109,23863], + [8111,32500], + [8113,36451], + [8115,24202], + [8117,36007], + [8119,35242], + [8121,28315], + [8123,34305], + [8125,30905], + [9001,40609], + [9003,37985], + [9005,39166], + [9007,42907], + [9009,35721], + [9011,35785], + [9013,37303], + [9015,32078], + [10001,30327], + [10003,36458], + [10005,31752], + [11001,49542], + [12001,25648], + [12003,28349], + [12005,27495], + [12007,24309], + [12009,28542], + [12011,30277], + [12013,23568], + [12015,26006], + [12017,24413], + [12019,32036], + [12021,31213], + [12023,25790], + [12027,21509], + [12029,22643], + [12031,30608], + [12033,26946], + [12035,26821], + [12037,24823], + [12039,25734], + [12041,22882], + [12043,21698], + [12045,26523], + [12047,20544], + [12049,21744], + [12051,21225], + [12053,25217], + [12055,22059], + [12057,30363], + [12059,21699], + [12061,27382], + [12063,23053], + [12065,27978], + [12067,21923], + [12069,27221], + [12071,28529], + [12073,27751], + [12075,21676], + [12077,21920], + [12079,21243], + [12081,29551], + [12083,24501], + [12085,30801], + [12086,24787], + [12087,35539], + [12089,31965], + [12091,31212], + [12093,22631], + [12095,28064], + [12097,23483], + [12099,30762], + [12101,27455], + [12103,30009], + [12105,26032], + [12107,21486], + [12109,36462], + [12111,26425], + [12113,31273], + [12115,31707], + [12117,32734], + [12119,27579], + [12121,22987], + [12123,21515], + [12125,23031], + [12127,26792], + [12129,31163], + [12131,28513], + [12133,21452], + [13001,22607], + [13003,22097], + [13005,22385], + [13007,25164], + [13009,22750], + [13011,21895], + [13013,28741], + [13015,29584], + [13017,20795], + [13019,24287], + [13021,24804], + [13023,25249], + [13025,20927], + [13027,26162], + [13029,34997], + [13031,21375], + [13033,25474], + [13035,22360], + [13037,20638], + [13039,28762], + [13043,18675], + [13045,25593], + [13047,27313], + [13049,21198], + [13051,28791], + [13053,24681], + [13055,21970], + [13057,36920], + [13059,20153], + [13061,15701], + [13063,25655], + [13065,21190], + [13067,37999], + [13069,22050], + [13071,22268], + [13073,36592], + [13075,23493], + [13077,34846], + [13079,26396], + [13081,20029], + [13083,23075], + [13085,31997], + [13087,24110], + [13089,32501], + [13091,22254], + [13093,21136], + [13095,21959], + [13097,30782], + [13099,20554], + [13101,24410], + [13103,32482], + [13105,21348], + [13107,21314], + [13109,22803], + [13111,25062], + [13113,41364], + [13115,24845], + [13117,44964], + [13119,22850], + [13121,37675], + [13123,23749], + [13125,25696], + [13127,27542], + [13129,25156], + [13131,24093], + [13133,26619], + [13135,32482], + [13137,25266], + [13139,28161], + [13141,21759], + [13143,25884], + [13145,32702], + [13147,24057], + [13149,25532], + [13151,33610], + [13153,31668], + [13155,21059], + [13157,30862], + [13159,25112], + [13161,20689], + [13163,19890], + [13165,16832], + [13167,21300], + [13169,28674], + [13171,22216], + [13173,21819], + [13175,22223], + [13177,35372], + [13179,28879], + [13181,24732], + [13183,29660], + [13185,24530], + [13187,23480], + [13189,22257], + [13191,27312], + [13193,20249], + [13195,27236], + [13197,25227], + [13199,21327], + [13201,26377], + [13205,22058], + [13207,27473], + [13209,22188], + [13211,30978], + [13213,25683], + [13215,24763], + [13217,26231], + [13219,39118], + [13221,24739], + [13223,33102], + [13225,23739], + [13227,30854], + [13229,21531], + [13231,32228], + [13233,24758], + [13235,21508], + [13237,29520], + [13239,18741], + [13241,22523], + [13243,16983], + [13245,22300], + [13247,31407], + [13249,27516], + [13251,23234], + [13253,22414], + [13255,24805], + [13257,23834], + [13259,18589], + [13261,22179], + [13263,21681], + [13265,19627], + [13267,19892], + [13269,23041], + [13271,18562], + [13273,20089], + [13275,25366], + [13277,24370], + [13279,22909], + [13281,21497], + [13283,19712], + [13285,24771], + [13287,21877], + [13289,25026], + [13291,25320], + [13293,23152], + [13295,23631], + [13297,30379], + [13299,23597], + [13301,21098], + [13303,22101], + [13305,22399], + [13307,24180], + [13309,19452], + [13311,27752], + [13313,26202], + [13315,20837], + [13317,22203], + [13319,22110], + [13321,25104], + [15001,30536], + [15003,36957], + [15005,47188], + [15007,34697], + [15009,35474], + [16001,32937], + [16003,26878], + [16005,24667], + [16007,26286], + [16009,23285], + [16011,24405], + [16013,31209], + [16015,27921], + [16017,25310], + [16019,27063], + [16021,24746], + [16023,25764], + [16025,25087], + [16027,25210], + [16029,25919], + [16031,25371], + [16033,23424], + [16035,25302], + [16037,19388], + [16039,26809], + [16041,22649], + [16043,24360], + [16045,22739], + [16047,25003], + [16049,21757], + [16051,27630], + [16053,24582], + [16055,28786], + [16057,22682], + [16059,22472], + [16061,23597], + [16063,25216], + [16065,12911], + [16067,25095], + [16069,29099], + [16071,24288], + [16073,23583], + [16075,27032], + [16077,26383], + [16079,21338], + [16081,33984], + [16083,26170], + [16085,26342], + [16087,21188], + [17001,30499], + [17003,21845], + [17005,27042], + [17007,30257], + [17009,30690], + [17011,29091], + [17013,27843], + [17015,29036], + [17017,29595], + [17019,28603], + [17021,30053], + [17023,31515], + [17025,26802], + [17027,34187], + [17029,25029], + [17031,32955], + [17033,26611], + [17035,29450], + [17037,28262], + [17039,29287], + [17041,30459], + [17043,41943], + [17045,27974], + [17047,29449], + [17049,30369], + [17051,24407], + [17053,30083], + [17055,24243], + [17057,26843], + [17059,26342], + [17061,25938], + [17063,40057], + [17065,28482], + [17067,29026], + [17069,23420], + [17071,27336], + [17073,31155], + [17075,26890], + [17077,21117], + [17079,26881], + [17081,26679], + [17083,31247], + [17085,30920], + [17087,28494], + [17089,33731], + [17091,27619], + [17093,40170], + [17095,25366], + [17097,37491], + [17099,29484], + [17101,25994], + [17103,30779], + [17105,29147], + [17107,30474], + [17109,21047], + [17111,39390], + [17113,33417], + [17115,28225], + [17117,29329], + [17119,31555], + [17121,26237], + [17123,30372], + [17125,26764], + [17127,23617], + [17129,40057], + [17131,31234], + [17133,41254], + [17135,27335], + [17137,26917], + [17139,31856], + [17141,31666], + [17143,30634], + [17145,27754], + [17147,36317], + [17149,27016], + [17151,21153], + [17153,21208], + [17155,32691], + [17157,28650], + [17159,27334], + [17161,30830], + [17163,30310], + [17165,24185], + [17167,34933], + [17169,29440], + [17171,30248], + [17173,29644], + [17175,29537], + [17177,27178], + [17179,33800], + [17181,27669], + [17183,27550], + [17185,26544], + [17187,26774], + [17189,35549], + [17191,28537], + [17193,25687], + [17195,27944], + [17197,37319], + [17199,27489], + [17201,28400], + [17203,35400], + [18001,29570], + [18003,30325], + [18005,31874], + [18007,27002], + [18009,25424], + [18011,41956], + [18013,29372], + [18015,30193], + [18017,28120], + [18019,30746], + [18021,30251], + [18023,28155], + [18025,23847], + [18027,27372], + [18029,31366], + [18031,30464], + [18033,30167], + [18035,22613], + [18037,31409], + [18039,29100], + [18041,25447], + [18043,31865], + [18045,28168], + [18047,30851], + [18049,27488], + [18051,30141], + [18053,23127], + [18055,26319], + [18057,46631], + [18059,37719], + [18061,29102], + [18063,38755], + [18065,26313], + [18067,30252], + [18069,28502], + [18071,28439], + [18073,30626], + [18075,26060], + [18077,27018], + [18079,28491], + [18081,35832], + [18083,26503], + [18085,30452], + [18087,30961], + [18089,29975], + [18091,28152], + [18093,27398], + [18095,26440], + [18097,29572], + [18099,27595], + [18101,30664], + [18103,27576], + [18105,22409], + [18107,29813], + [18109,31019], + [18111,28690], + [18113,30171], + [18115,31364], + [18117,24555], + [18119,26749], + [18121,26045], + [18123,28928], + [18125,27043], + [18127,33572], + [18129,31535], + [18131,27793], + [18133,27702], + [18135,26306], + [18137,28891], + [18139,30705], + [18141,27208], + [18143,25470], + [18145,31848], + [18147,30798], + [18149,25585], + [18151,28865], + [18153,25703], + [18155,27114], + [18157,24925], + [18159,33733], + [18161,27248], + [18163,27095], + [18165,28558], + [18167,23583], + [18169,27759], + [18171,31885], + [18173,35851], + [18175,28197], + [18177,25292], + [18179,30174], + [18181,29443], + [18183,32719], + [19001,31886], + [19003,30028], + [19005,29921], + [19007,24013], + [19009,28804], + [19011,34887], + [19013,28001], + [19015,33532], + [19017,33610], + [19019,32049], + [19021,29438], + [19023,31123], + [19025,27215], + [19027,31396], + [19029,28948], + [19031,35486], + [19033,31419], + [19035,30888], + [19037,32338], + [19039,30386], + [19041,27708], + [19043,27442], + [19045,29943], + [19047,30641], + [19049,46694], + [19051,30912], + [19053,22853], + [19055,31467], + [19057,29964], + [19059,34232], + [19061,31437], + [19063,27184], + [19065,26735], + [19067,28660], + [19069,31147], + [19071,30390], + [19073,28990], + [19075,36676], + [19077,31673], + [19079,32448], + [19081,31690], + [19083,30203], + [19085,33596], + [19087,28551], + [19089,31701], + [19091,30442], + [19093,32594], + [19095,33102], + [19097,32335], + [19099,30938], + [19101,25018], + [19103,30486], + [19105,31435], + [19107,28824], + [19109,32007], + [19111,26580], + [19113,34626], + [19115,30556], + [19117,31208], + [19119,32845], + [19121,35347], + [19123,27150], + [19125,31558], + [19127,30385], + [19129,33333], + [19131,30614], + [19133,27314], + [19135,32954], + [19137,28472], + [19139,31248], + [19141,30548], + [19143,31817], + [19145,27928], + [19147,30217], + [19149,36509], + [19151,30587], + [19153,36061], + [19155,31953], + [19157,30154], + [19159,29532], + [19161,31386], + [19163,32801], + [19165,32322], + [19167,30737], + [19169,23520], + [19171,30623], + [19173,29178], + [19175,27896], + [19177,25755], + [19179,27905], + [19181,39189], + [19183,32270], + [19185,28464], + [19187,25830], + [19189,30414], + [19191,30273], + [19193,30541], + [19195,32311], + [19197,30596], + [20001,25762], + [20003,25546], + [20005,22503], + [20007,26147], + [20009,26586], + [20011,23767], + [20013,26031], + [20015,32402], + [20017,24442], + [20019,22456], + [20021,24412], + [20023,26798], + [20025,32045], + [20027,27977], + [20029,26492], + [20031,29788], + [20033,29181], + [20035,26974], + [20037,23064], + [20039,28254], + [20041,26855], + [20043,25274], + [20045,26292], + [20047,30531], + [20049,20737], + [20051,26676], + [20053,27225], + [20055,30650], + [20057,29089], + [20059,30681], + [20061,30573], + [20063,28801], + [20065,26768], + [20067,33723], + [20069,32514], + [20071,30542], + [20073,25421], + [20075,29909], + [20077,26080], + [20079,30756], + [20081,28841], + [20083,31348], + [20085,30334], + [20087,35862], + [20089,24077], + [20091,43408], + [20093,26867], + [20095,31157], + [20097,27866], + [20099,25772], + [20101,30275], + [20103,32466], + [20105,28105], + [20107,27113], + [20109,26898], + [20111,26439], + [20113,31091], + [20115,25715], + [20117,29842], + [20119,31543], + [20121,36073], + [20123,27353], + [20125,24542], + [20127,30533], + [20129,28843], + [20131,30556], + [20133,26323], + [20135,30362], + [20137,23436], + [20139,28478], + [20141,27770], + [20143,30751], + [20145,24658], + [20147,26056], + [20149,34454], + [20151,27764], + [20153,27957], + [20155,26565], + [20157,28486], + [20159,26515], + [20161,23025], + [20163,26245], + [20165,27188], + [20167,22825], + [20169,29229], + [20171,30737], + [20173,30468], + [20175,27166], + [20177,31826], + [20179,32220], + [20181,27415], + [20183,25739], + [20185,28120], + [20187,32121], + [20189,29191], + [20191,29526], + [20193,29763], + [20195,32477], + [20197,31168], + [20199,31675], + [20201,28288], + [20203,30813], + [20205,25522], + [20207,22845], + [20209,26878], + [21001,19277], + [21003,22110], + [21005,31028], + [21007,25285], + [21009,22266], + [21011,24636], + [21013,15563], + [21015,36732], + [21017,26389], + [21019,25178], + [21021,24245], + [21023,25861], + [21025,15934], + [21027,23373], + [21029,31348], + [21031,24598], + [21033,26292], + [21035,20899], + [21037,32375], + [21039,25721], + [21041,22711], + [21043,19272], + [21045,19094], + [21047,26667], + [21049,27322], + [21051,16369], + [21053,19275], + [21055,22431], + [21057,18583], + [21059,27831], + [21061,21545], + [21063,16880], + [21065,18707], + [21067,30181], + [21069,23978], + [21071,18188], + [21073,32347], + [21075,20198], + [21077,25496], + [21079,25436], + [21081,26185], + [21083,24822], + [21085,23040], + [21087,19829], + [21089,25769], + [21091,29008], + [21093,30512], + [21095,17709], + [21097,24369], + [21099,21428], + [21101,26733], + [21103,25639], + [21105,23460], + [21107,26085], + [21109,20182], + [21111,31170], + [21113,27057], + [21115,20254], + [21117,32892], + [21119,16796], + [21121,17124], + [21123,23997], + [21125,22721], + [21127,19610], + [21129,16665], + [21131,17902], + [21133,19483], + [21135,20316], + [21137,23142], + [21139,24648], + [21141,26673], + [21143,23580], + [21145,26221], + [21147,15671], + [21149,29536], + [21151,22905], + [21153,16946], + [21155,23359], + [21157,27833], + [21159,22992], + [21161,24944], + [21163,29352], + [21165,23848], + [21167,27340], + [21169,19767], + [21171,20677], + [21173,24173], + [21175,20952], + [21177,20938], + [21179,30824], + [21181,21681], + [21183,23272], + [21185,41157], + [21187,24982], + [21189,17266], + [21191,26522], + [21193,21114], + [21195,20813], + [21197,21237], + [21199,21765], + [21201,26864], + [21203,19607], + [21205,18303], + [21207,21066], + [21209,33307], + [21211,30536], + [21213,26604], + [21215,36253], + [21217,21871], + [21219,26469], + [21221,27365], + [21223,27088], + [21225,25799], + [21227,25057], + [21229,26102], + [21231,19356], + [21233,22344], + [21235,18714], + [21237,14180], + [21239,31738], + [22001,22795], + [22003,22405], + [22005,37330], + [22007,24504], + [22009,21711], + [22011,25940], + [22013,20695], + [22015,29338], + [22017,23699], + [22019,27057], + [22021,20612], + [22023,30517], + [22025,23795], + [22027,16244], + [22029,20415], + [22031,25566], + [22033,28441], + [22035,17979], + [22037,26177], + [22039,19039], + [22041,20588], + [22043,20236], + [22045,24423], + [22047,25164], + [22049,21417], + [22051,29735], + [22053,22566], + [22055,29443], + [22057,27296], + [22059,21949], + [22061,20228], + [22063,31434], + [22065,18095], + [22067,20371], + [22069,18151], + [22071,26095], + [22073,24755], + [22075,28697], + [22077,24851], + [22079,25418], + [22081,18209], + [22083,20158], + [22085,20945], + [22087,24209], + [22089,36001], + [22091,22444], + [22093,26341], + [22095,27932], + [22097,20843], + [22099,25297], + [22101,25255], + [22103,31566], + [22105,23823], + [22107,15723], + [22109,25850], + [22111,24154], + [22113,26353], + [22115,26098], + [22117,19978], + [22119,17267], + [22121,32875], + [22123,20905], + [22125,30783], + [22127,21224], + [23001,30206], + [23003,22893], + [23005,35560], + [23007,25350], + [23009,29700], + [23011,29341], + [23013,29602], + [23015,29871], + [23017,24424], + [23019,25832], + [23021,21687], + [23023,33990], + [23025,22511], + [23027,27241], + [23029,22871], + [23031,32822], + [24001,22555], + [24003,45925], + [24005,38949], + [24009,48972], + [24011,28293], + [24013,42385], + [24015,35836], + [24017,48391], + [24019,29113], + [24021,43752], + [24023,28250], + [24025,41771], + [24027,56447], + [24029,30144], + [24031,49033], + [24033,40372], + [24035,41965], + [24037,42884], + [24039,20174], + [24041,36755], + [24043,30035], + [24045,27278], + [24047,31891], + [24510,29943], + [25001,36031], + [25003,30873], + [25005,32803], + [25007,39842], + [25009,35990], + [25011,31875], + [25013,28671], + [25015,28327], + [25017,46130], + [25019,44630], + [25021,46624], + [25023,39644], + [25025,34192], + [25027,35350], + [26001,23311], + [26003,22430], + [26005,30827], + [26007,24584], + [26009,27113], + [26011,24345], + [26013,25371], + [26015,31940], + [26017,27109], + [26019,27368], + [26021,27125], + [26023,27280], + [26025,26362], + [26027,29198], + [26029,29017], + [26031,24672], + [26033,22322], + [26035,21058], + [26037,35099], + [26039,24226], + [26041,26120], + [26043,29516], + [26045,33721], + [26047,29031], + [26049,26871], + [26051,24249], + [26053,22865], + [26055,30814], + [26057,25803], + [26059,26318], + [26061,20905], + [26063,26855], + [26065,26089], + [26067,29878], + [26069,23828], + [26071,24450], + [26073,18007], + [26075,28006], + [26077,27981], + [26079,24739], + [26081,30869], + [26083,28204], + [26085,18793], + [26087,30352], + [26089,32008], + [26091,28228], + [26093,38524], + [26095,23277], + [26097,25157], + [26099,31619], + [26101,25053], + [26103,26510], + [26105,26094], + [26107,20605], + [26109,25843], + [26111,30833], + [26113,24963], + [26115,31107], + [26117,25605], + [26119,23146], + [26121,26491], + [26123,25457], + [26125,39352], + [26127,24491], + [26129,21906], + [26131,24120], + [26133,23975], + [26135,24163], + [26137,26743], + [26139,30688], + [26141,25208], + [26143,22948], + [26145,25778], + [26147,28654], + [26149,27909], + [26151,25829], + [26153,22869], + [26155,29626], + [26157,25806], + [26159,27226], + [26161,33914], + [26163,26659], + [26165,24167], + [27001,26586], + [27003,39688], + [27005,31304], + [27007,25619], + [27009,32419], + [27011,28857], + [27013,27486], + [27015,32186], + [27017,31007], + [27019,45984], + [27021,28473], + [27023,32049], + [27025,38960], + [27027,32368], + [27029,26597], + [27031,32016], + [27033,30748], + [27035,30326], + [27037,42103], + [27039,39182], + [27041,33855], + [27043,30273], + [27045,32371], + [27047,29777], + [27049,34672], + [27051,30741], + [27053,40502], + [27055,34148], + [27057,28734], + [27059,36132], + [27061,28962], + [27063,33412], + [27065,29092], + [27067,31061], + [27069,32384], + [27071,27799], + [27073,29450], + [27075,32930], + [27077,24131], + [27079,35685], + [27081,30744], + [27083,30699], + [27085,33379], + [27087,24792], + [27089,33917], + [27091,31103], + [27093,31707], + [27095,28194], + [27097,30319], + [27099,30821], + [27101,31283], + [27103,33167], + [27105,30221], + [27107,30234], + [27109,40157], + [27111,31660], + [27113,34055], + [27115,26478], + [27117,29023], + [27119,31715], + [27121,33598], + [27123,33150], + [27125,32688], + [27127,29501], + [27129,31212], + [27131,31174], + [27133,32941], + [27135,32827], + [27137,29063], + [27139,43988], + [27141,39364], + [27143,33260], + [27145,30470], + [27147,34883], + [27149,27740], + [27151,30691], + [27153,28929], + [27155,32362], + [27157,34536], + [27159,26026], + [27161,30688], + [27163,44418], + [27165,30366], + [27167,36838], + [27169,27433], + [27171,40495], + [27173,30470], + [28001,19463], + [28003,23918], + [28005,19961], + [28007,20050], + [28009,26246], + [28011,18718], + [28013,21549], + [28015,22450], + [28017,22654], + [28019,19340], + [28021,15877], + [28023,23381], + [28025,21538], + [28027,17588], + [28029,21718], + [28031,19655], + [28033,32369], + [28035,20502], + [28037,20906], + [28039,25184], + [28041,21427], + [28043,23220], + [28045,26751], + [28047,25896], + [28049,24851], + [28051,16311], + [28053,15900], + [28055,14154], + [28057,23311], + [28059,26888], + [28061,22667], + [28063,17291], + [28065,20051], + [28067,24228], + [28069,17896], + [28071,23358], + [28073,30085], + [28075,23061], + [28077,25295], + [28079,21268], + [28081,26351], + [28083,18160], + [28085,24466], + [28087,27971], + [28089,36455], + [28091,19521], + [28093,25089], + [28095,24172], + [28097,21958], + [28099,20238], + [28101,22218], + [28103,17847], + [28105,19134], + [28107,21299], + [28109,23307], + [28111,19860], + [28113,19574], + [28115,23519], + [28117,21324], + [28119,16623], + [28121,32740], + [28123,21183], + [28125,20299], + [28127,21821], + [28129,24747], + [28131,21066], + [28133,18212], + [28135,18315], + [28137,24970], + [28139,22388], + [28141,21364], + [28143,22490], + [28145,24243], + [28147,21211], + [28149,24260], + [28151,18920], + [28153,22723], + [28155,22854], + [28157,16143], + [28159,20528], + [28161,21930], + [28163,18923], + [29001,20211], + [29003,30478], + [29005,28101], + [29007,23257], + [29009,23819], + [29011,22363], + [29013,26493], + [29015,21691], + [29017,22355], + [29019,29043], + [29021,26406], + [29023,21207], + [29025,26571], + [29027,28863], + [29029,24976], + [29031,26761], + [29033,25904], + [29035,20879], + [29037,34558], + [29039,21190], + [29041,23881], + [29043,30295], + [29045,25281], + [29047,35437], + [29049,32199], + [29051,33462], + [29053,27894], + [29055,22158], + [29057,20907], + [29059,21248], + [29061,25878], + [29063,28051], + [29065,23507], + [29067,19586], + [29069,21034], + [29071,30619], + [29073,26785], + [29075,25652], + [29077,26445], + [29079,23298], + [29081,23496], + [29083,24875], + [29085,20154], + [29087,28772], + [29089,24994], + [29091,21380], + [29093,20351], + [29095,31562], + [29097,25861], + [29099,32137], + [29101,25893], + [29103,20024], + [29105,25278], + [29107,29888], + [29109,23967], + [29111,23806], + [29113,31168], + [29115,26909], + [29117,26939], + [29119,24130], + [29121,24657], + [29123,23587], + [29125,26802], + [29127,25606], + [29129,25028], + [29131,26846], + [29133,14973], + [29135,29996], + [29137,26924], + [29139,27625], + [29141,21027], + [29143,23739], + [29145,26793], + [29147,20924], + [29149,20333], + [29151,31440], + [29153,17707], + [29155,18526], + [29157,28678], + [29159,24493], + [29161,24011], + [29163,23088], + [29165,39879], + [29167,21765], + [29169,24121], + [29171,24892], + [29173,28251], + [29175,25739], + [29177,30594], + [29179,22173], + [29181,17408], + [29183,39314], + [29185,21077], + [29186,28897], + [29187,23815], + [29189,35387], + [29195,24437], + [29197,22271], + [29199,27390], + [29201,22709], + [29203,17782], + [29205,24780], + [29207,22608], + [29209,24046], + [29211,25013], + [29213,23883], + [29215,21045], + [29217,25009], + [29219,29000], + [29221,20390], + [29223,18236], + [29225,26009], + [29227,26183], + [29229,19181], + [29510,28186], + [30001,22728], + [30003,25387], + [30005,23482], + [30007,30913], + [30009,29315], + [30011,30061], + [30013,28467], + [30015,24726], + [30017,28832], + [30019,32053], + [30021,29196], + [30023,23700], + [30025,38867], + [30027,27245], + [30029,28269], + [30031,31088], + [30033,24904], + [30035,20169], + [30037,22246], + [30039,24408], + [30041,25932], + [30043,31749], + [30045,26422], + [30047,23843], + [30049,33992], + [30051,26465], + [30053,21649], + [30055,27143], + [30057,26081], + [30059,22978], + [30061,21457], + [30063,26424], + [30065,26137], + [30067,30906], + [30069,32031], + [30071,26228], + [30073,26273], + [30075,31362], + [30077,23966], + [30079,23077], + [30081,25250], + [30083,32507], + [30085,22477], + [30087,28115], + [30089,20894], + [30091,30951], + [30093,25309], + [30095,30618], + [30097,26618], + [30099,27392], + [30101,24360], + [30103,27500], + [30105,27337], + [30107,24337], + [30109,33634], + [30111,32306], + [31001,28213], + [31003,27204], + [31005,26184], + [31007,31667], + [31009,29141], + [31011,32416], + [31013,31370], + [31015,25286], + [31017,27052], + [31019,29034], + [31021,30128], + [31023,31456], + [31025,36303], + [31027,31682], + [31029,31402], + [31031,30706], + [31033,32105], + [31035,30360], + [31037,30922], + [31039,31859], + [31041,29112], + [31043,29788], + [31045,24964], + [31047,28990], + [31049,26051], + [31051,30474], + [31053,28702], + [31055,34837], + [31057,30585], + [31059,31831], + [31061,27422], + [31063,28080], + [31065,27219], + [31067,30137], + [31069,26809], + [31071,26773], + [31073,33845], + [31075,25324], + [31077,26683], + [31079,30996], + [31081,32042], + [31083,30629], + [31085,30641], + [31087,27922], + [31089,31359], + [31091,25673], + [31093,30998], + [31095,27036], + [31097,28603], + [31099,32080], + [31101,27512], + [31103,27195], + [31105,28264], + [31107,28390], + [31109,31293], + [31111,30714], + [31113,25338], + [31115,24773], + [31117,32222], + [31119,30202], + [31121,30243], + [31123,26909], + [31125,27654], + [31127,26546], + [31129,24586], + [31131,31515], + [31133,25463], + [31135,36429], + [31137,31342], + [31139,34406], + [31141,31704], + [31143,31955], + [31145,25858], + [31147,26924], + [31149,32198], + [31151,27154], + [31153,39856], + [31155,35500], + [31157,27447], + [31159,31663], + [31161,25100], + [31163,28496], + [31165,28917], + [31167,32453], + [31169,30097], + [31171,30556], + [31173,24607], + [31175,27008], + [31177,38306], + [31179,24036], + [31181,29290], + [31183,31615], + [31185,29530], + [32001,30912], + [32003,30913], + [32005,34007], + [32007,39350], + [32009,26310], + [32011,33380], + [32013,33656], + [32015,39984], + [32017,30739], + [32019,28951], + [32021,24316], + [32023,25214], + [32027,26088], + [32029,36864], + [32031,32659], + [32033,30612], + [32510,31335], + [33001,32332], + [33003,32047], + [33005,30044], + [33007,26003], + [33009,30412], + [33011,37887], + [33013,35807], + [33015,42549], + [33017,31687], + [33019,32668], + [34001,30123], + [34003,46138], + [34005,41780], + [34007,33626], + [34009,32777], + [34011,24786], + [34013,32062], + [34015,39098], + [34017,36230], + [34019,51782], + [34021,35699], + [34023,41142], + [34025,43508], + [34027,50928], + [34029,34168], + [34031,31272], + [34033,32111], + [34035,49614], + [34037,42781], + [34039,36098], + [34041,38468], + [35001,28973], + [35003,22920], + [35005,22812], + [35006,20443], + [35007,22717], + [35009,24288], + [35011,23838], + [35013,20801], + [35015,30903], + [35017,21563], + [35019,19409], + [35021,21086], + [35023,20866], + [35025,28748], + [35027,23730], + [35028,66708], + [35029,16620], + [35031,17490], + [35033,14398], + [35035,21871], + [35037,19569], + [35039,25481], + [35041,19323], + [35043,30199], + [35045,24798], + [35047,19308], + [35049,32693], + [35051,17281], + [35053,16986], + [35055,22060], + [35057,20651], + [35059,23643], + [35061,24497], + [36001,34723], + [36003,23709], + [36005,22232], + [36007,26593], + [36009,26389], + [36011,30756], + [36013,25114], + [36015,28854], + [36017,27495], + [36019,29129], + [36021,33048], + [36023,26380], + [36025,26032], + [36027,35996], + [36029,31856], + [36031,30096], + [36033,28799], + [36035,27934], + [36037,30771], + [36039,28253], + [36041,23364], + [36043,28005], + [36045,27607], + [36047,31406], + [36049,29392], + [36051,29939], + [36053,30568], + [36055,31426], + [36057,26952], + [36059,45285], + [36061,50985], + [36063,30704], + [36065,30286], + [36067,32772], + [36069,33098], + [36071,35300], + [36073,28415], + [36075,27878], + [36077,25415], + [36079,42440], + [36081,31992], + [36083,36310], + [36085,39777], + [36087,39095], + [36089,25915], + [36091,41391], + [36093,31997], + [36095,30092], + [36097,25365], + [36099,29451], + [36101,28431], + [36103,41227], + [36105,29887], + [36107,31430], + [36109,27572], + [36111,31547], + [36113,32238], + [36115,29231], + [36117,30575], + [36119,42615], + [36121,31415], + [36123,26361], + [37001,27734], + [37003,25797], + [37005,20795], + [37007,22474], + [37009,24071], + [37011,20407], + [37013,25665], + [37015,19215], + [37017,22298], + [37019,28184], + [37021,28525], + [37023,23880], + [37025,32366], + [37027,23742], + [37029,33651], + [37031,29053], + [37033,24309], + [37035,27887], + [37037,32024], + [37039,22947], + [37041,27338], + [37043,26318], + [37045,23432], + [37047,22271], + [37049,27714], + [37051,26713], + [37053,35901], + [37055,30728], + [37057,27077], + [37059,30029], + [37061,21302], + [37063,34059], + [37065,21874], + [37067,29380], + [37069,29127], + [37071,27099], + [37073,28354], + [37075,20279], + [37077,27413], + [37079,22002], + [37081,28890], + [37083,20754], + [37085,27340], + [37087,27234], + [37089,29652], + [37091,21356], + [37093,26299], + [37095,20806], + [37097,30102], + [37099,21959], + [37101,30254], + [37103,22170], + [37105,25799], + [37107,22957], + [37109,30413], + [37111,24450], + [37113,25439], + [37115,25148], + [37117,22952], + [37119,35339], + [37121,25087], + [37123,23955], + [37125,31217], + [37127,25978], + [37129,29520], + [37131,22203], + [37133,25209], + [37135,31605], + [37137,24135], + [37139,26855], + [37141,27265], + [37143,25800], + [37145,28355], + [37147,25313], + [37149,26725], + [37151,25976], + [37153,21211], + [37155,21284], + [37157,24465], + [37159,26346], + [37161,23142], + [37163,22516], + [37165,21543], + [37167,26826], + [37169,26907], + [37171,24505], + [37173,21291], + [37175,26010], + [37177,19358], + [37179,34405], + [37181,22006], + [37183,39798], + [37185,21858], + [37187,18139], + [37189,19690], + [37191,25285], + [37193,23989], + [37195,24755], + [37197,26335], + [37199,25083], + [38001,31453], + [38003,32744], + [38005,26089], + [38007,39375], + [38009,31982], + [38011,33791], + [38013,43809], + [38015,40277], + [38017,34981], + [38019,35633], + [38021,33423], + [38023,35417], + [38025,37402], + [38027,31143], + [38029,31352], + [38031,35118], + [38033,32500], + [38035,30264], + [38037,28966], + [38039,31869], + [38041,28770], + [38043,30481], + [38045,35498], + [38047,32098], + [38049,38176], + [38051,30646], + [38053,39784], + [38055,36014], + [38057,37940], + [38059,38107], + [38061,37826], + [38063,31642], + [38065,40809], + [38067,32468], + [38069,27453], + [38071,30193], + [38073,32396], + [38075,40758], + [38077,31407], + [38079,27424], + [38081,40227], + [38083,31402], + [38085,21213], + [38087,30568], + [38089,40418], + [38091,42361], + [38093,31343], + [38095,33801], + [38097,35748], + [38099,33699], + [38101,37158], + [38103,35014], + [38105,45062], + [39001,20725], + [39003,26965], + [39005,26810], + [39007,25123], + [39009,16021], + [39011,32918], + [39013,25252], + [39015,28635], + [39017,31637], + [39019,29667], + [39021,30835], + [39023,26850], + [39025,32761], + [39027,27859], + [39029,25791], + [39031,24872], + [39033,25969], + [39035,29458], + [39037,29106], + [39039,30487], + [39041,46471], + [39043,29836], + [39045,32050], + [39047,27986], + [39049,32427], + [39051,30572], + [39053,24975], + [39055,36968], + [39057,32287], + [39059,25942], + [39061,31579], + [39063,31737], + [39065,25434], + [39067,25261], + [39069,31093], + [39071,23646], + [39073,26156], + [39075,27217], + [39077,28398], + [39079,24981], + [39081,25577], + [39083,27404], + [39085,33539], + [39087,24733], + [39089,31000], + [39091,31536], + [39093,30222], + [39095,27602], + [39097,31612], + [39099,25689], + [39101,23412], + [39103,37069], + [39105,23034], + [39107,31890], + [39109,30566], + [39111,24070], + [39113,28867], + [39115,22096], + [39117,30734], + [39119,25116], + [39121,22922], + [39123,30701], + [39125,28873], + [39127,24862], + [39129,30721], + [39131,23430], + [39133,27359], + [39135,29908], + [39137,34795], + [39139,25390], + [39141,26545], + [39143,29611], + [39145,23011], + [39147,26909], + [39149,31569], + [39151,27962], + [39153,30799], + [39155,26458], + [39157,27316], + [39159,39845], + [39161,30494], + [39163,23750], + [39165,41155], + [39167,26399], + [39169,29052], + [39171,28748], + [39173,29107], + [39175,31446], + [40001,21003], + [40003,24113], + [40005,21263], + [40007,26454], + [40009,23010], + [40011,26007], + [40013,23982], + [40015,24226], + [40017,33213], + [40019,26585], + [40021,22142], + [40023,21269], + [40025,30925], + [40027,31458], + [40029,24171], + [40031,26011], + [40033,24600], + [40035,22208], + [40037,27326], + [40039,25736], + [40041,22210], + [40043,26291], + [40045,26869], + [40047,27646], + [40049,27142], + [40051,29704], + [40053,31615], + [40055,19174], + [40057,25767], + [40059,26495], + [40061,21951], + [40063,21859], + [40065,27002], + [40067,22729], + [40069,22430], + [40071,25560], + [40073,31430], + [40075,22663], + [40077,21946], + [40079,21806], + [40081,26190], + [40083,29442], + [40085,24145], + [40087,32824], + [40089,22631], + [40091,21970], + [40093,29333], + [40095,23746], + [40097,25134], + [40099,26909], + [40101,24813], + [40103,27141], + [40105,24022], + [40107,21287], + [40109,30299], + [40111,22500], + [40113,27652], + [40115,21831], + [40117,25474], + [40119,21193], + [40121,26240], + [40123,27415], + [40125,24983], + [40127,20210], + [40129,27069], + [40131,32493], + [40133,22026], + [40135,21001], + [40137,25606], + [40139,27709], + [40141,21892], + [40143,30505], + [40145,31492], + [40147,28068], + [40149,28225], + [40151,23460], + [40153,29442], + [41001,26254], + [41003,25899], + [41005,37878], + [41007,26716], + [41009,31222], + [41011,24980], + [41013,25723], + [41015,23974], + [41017,31371], + [41019,24680], + [41021,29167], + [41023,26332], + [41025,24409], + [41027,31097], + [41029,27407], + [41031,26242], + [41033,23072], + [41035,24668], + [41037,22214], + [41039,26061], + [41041,24631], + [41043,27939], + [41045,21888], + [41047,28340], + [41049,26976], + [41051,34152], + [41053,28241], + [41055,30194], + [41057,25539], + [41059,26520], + [41061,25785], + [41063,26382], + [41065,27985], + [41067,38189], + [41069,21543], + [41071,29737], + [42001,30935], + [42003,33363], + [42005,27409], + [42007,30666], + [42009,26133], + [42011,30695], + [42013,27166], + [42015,27407], + [42017,40466], + [42019,34235], + [42021,25590], + [42023,23191], + [42025,29134], + [42027,26079], + [42029,43323], + [42031,24572], + [42033,24994], + [42035,25229], + [42037,27199], + [42039,26199], + [42041,35935], + [42043,33232], + [42045,35628], + [42047,30340], + [42049,26585], + [42051,25235], + [42053,17495], + [42055,31630], + [42057,29248], + [42059,26277], + [42061,25629], + [42063,23177], + [42065,26079], + [42067,26870], + [42069,27406], + [42071,31318], + [42073,26315], + [42075,30582], + [42077,30969], + [42079,28094], + [42081,27053], + [42083,25302], + [42085,25932], + [42087,26254], + [42089,29056], + [42091,43022], + [42093,30113], + [42095,31975], + [42097,26746], + [42099,32005], + [42101,26211], + [42103,30423], + [42105,24449], + [42107,28165], + [42109,27703], + [42111,25627], + [42113,25406], + [42115,29356], + [42117,25397], + [42119,24477], + [42121,26251], + [42123,26904], + [42125,31369], + [42127,26450], + [42129,31061], + [42131,28347], + [42133,32447], + [44001,37924], + [44003,37994], + [44005,37366], + [44007,30257], + [44009,36249], + [45001,21890], + [45003,27373], + [45005,19688], + [45007,26409], + [45009,19520], + [45011,22901], + [45013,31632], + [45015,31055], + [45017,27528], + [45019,34431], + [45021,23065], + [45023,23837], + [45025,22239], + [45027,21319], + [45029,21844], + [45031,22175], + [45033,18455], + [45035,31613], + [45037,23712], + [45039,23993], + [45041,25706], + [45043,23586], + [45045,30374], + [45047,23996], + [45049,21343], + [45051,25980], + [45053,25243], + [45055,27414], + [45057,28557], + [45059,21883], + [45061,19677], + [45063,32024], + [45065,23510], + [45067,19308], + [45069,19932], + [45071,25159], + [45073,25517], + [45075,20977], + [45077,23331], + [45079,27682], + [45081,22811], + [45083,26358], + [45085,25126], + [45087,21599], + [45089,20438], + [45091,32174], + [46003,35781], + [46005,29818], + [46007,24988], + [46009,25382], + [46011,26704], + [46013,32380], + [46015,28873], + [46017,15181], + [46019,25160], + [46021,31790], + [46023,25353], + [46025,24856], + [46027,20563], + [46029,31021], + [46031,21172], + [46033,31570], + [46035,30801], + [46037,27029], + [46039,32314], + [46041,25887], + [46043,27436], + [46045,36104], + [46047,24749], + [46049,29184], + [46051,32478], + [46053,25806], + [46055,25625], + [46057,32500], + [46059,31679], + [46061,31341], + [46063,33523], + [46065,37626], + [46067,30145], + [46069,34196], + [46071,17050], + [46073,28438], + [46075,30053], + [46077,33683], + [46079,28121], + [46081,27320], + [46083,39432], + [46085,25879], + [46087,32425], + [46089,25558], + [46091,32424], + [46093,30410], + [46095,17740], + [46097,29577], + [46099,33737], + [46101,32692], + [46102,15163], + [46103,29805], + [46105,29757], + [46107,28774], + [46109,26253], + [46111,30921], + [46115,31111], + [46117,36029], + [46119,36450], + [46121,18483], + [46123,28905], + [46125,31455], + [46127,37384], + [46129,31106], + [46135,30126], + [46137,21181], + [47001,26136], + [47003,26084], + [47005,19844], + [47007,23166], + [47009,28221], + [47011,26412], + [47013,21656], + [47015,27262], + [47017,22236], + [47019,22290], + [47021,30987], + [47023,24558], + [47025,20312], + [47027,17133], + [47029,21351], + [47031,25585], + [47033,25620], + [47035,24268], + [47037,32518], + [47039,22024], + [47041,28066], + [47043,28052], + [47045,25698], + [47047,29502], + [47049,19473], + [47051,25327], + [47053,24373], + [47055,26631], + [47057,22533], + [47059,22668], + [47061,20029], + [47063,23358], + [47065,29070], + [47067,18665], + [47069,20987], + [47071,21631], + [47073,22905], + [47075,22915], + [47077,24619], + [47079,22462], + [47081,22891], + [47083,23090], + [47085,23413], + [47087,19749], + [47089,22984], + [47091,17509], + [47093,29660], + [47095,17079], + [47097,22263], + [47099,23591], + [47101,22104], + [47103,27624], + [47105,28529], + [47107,22440], + [47109,21602], + [47111,23375], + [47113,26718], + [47115,23598], + [47117,28320], + [47119,30161], + [47121,24033], + [47123,22364], + [47125,31030], + [47127,31250], + [47129,21844], + [47131,23795], + [47133,23281], + [47135,19701], + [47137,21654], + [47139,25015], + [47141,24160], + [47143,23097], + [47145,26097], + [47147,31153], + [47149,32018], + [47151,20467], + [47153,21794], + [47155,23907], + [47157,28181], + [47159,28205], + [47161,24176], + [47163,24758], + [47165,32203], + [47167,30703], + [47169,26749], + [47171,21814], + [47173,22784], + [47175,21845], + [47177,23268], + [47179,24948], + [47181,21390], + [47183,21594], + [47185,22788], + [47187,45817], + [47189,35388], + [48001,23143], + [48003,33373], + [48005,24657], + [48007,21631], + [48009,32611], + [48011,31212], + [48013,24278], + [48015,30570], + [48017,25217], + [48019,24939], + [48021,30057], + [48023,22319], + [48025,20371], + [48027,29284], + [48029,27976], + [48031,30193], + [48033,35926], + [48035,26155], + [48037,27641], + [48039,40496], + [48041,24118], + [48043,27435], + [48045,24375], + [48047,14471], + [48049,25515], + [48051,30170], + [48053,27425], + [48055,27173], + [48057,26914], + [48059,26843], + [48061,19933], + [48063,25628], + [48065,38411], + [48067,24905], + [48069,28772], + [48071,37261], + [48073,23891], + [48075,27867], + [48077,27652], + [48079,25346], + [48081,25556], + [48083,26692], + [48085,46479], + [48087,21048], + [48089,29522], + [48091,36265], + [48093,27745], + [48095,24384], + [48097,30926], + [48099,26408], + [48101,19886], + [48103,27260], + [48105,31618], + [48107,22188], + [48109,16921], + [48111,30367], + [48113,31136], + [48115,21316], + [48117,28087], + [48119,26636], + [48121,40677], + [48123,27063], + [48125,23000], + [48127,15656], + [48129,23774], + [48131,20615], + [48133,20255], + [48135,31823], + [48137,19526], + [48139,34653], + [48141,23153], + [48143,23502], + [48145,21182], + [48147,28875], + [48149,30069], + [48151,27609], + [48153,25377], + [48155,21806], + [48157,40880], + [48159,28613], + [48161,26288], + [48163,17164], + [48165,27542], + [48167,34255], + [48169,23376], + [48171,28772], + [48173,23286], + [48175,27950], + [48177,27132], + [48179,26651], + [48181,27892], + [48183,25980], + [48185,26262], + [48187,33952], + [48189,25386], + [48191,20053], + [48193,24120], + [48195,24501], + [48197,19629], + [48199,30905], + [48201,31323], + [48203,26572], + [48205,34152], + [48207,20731], + [48209,31519], + [48211,35830], + [48213,23787], + [48215,19271], + [48217,25335], + [48219,25420], + [48221,31204], + [48223,26608], + [48225,21103], + [48227,25808], + [48229,14326], + [48231,26198], + [48233,24896], + [48235,30909], + [48237,24394], + [48239,27460], + [48241,24871], + [48243,27405], + [48245,27672], + [48247,19364], + [48249,21554], + [48251,31846], + [48253,21856], + [48255,27036], + [48257,31774], + [48259,34853], + [48261,22847], + [48263,28333], + [48265,27511], + [48267,25094], + [48269,33750], + [48271,19296], + [48273,22844], + [48275,26690], + [48277,25175], + [48279,24806], + [48281,30269], + [48283,20019], + [48285,29296], + [48287,28827], + [48289,23653], + [48291,27199], + [48293,23703], + [48295,27259], + [48297,24005], + [48299,25152], + [48301,23750], + [48303,26244], + [48305,25000], + [48307,23211], + [48309,25390], + [48311,32325], + [48313,24769], + [48315,22340], + [48317,33282], + [48319,26329], + [48321,25473], + [48323,18489], + [48325,26529], + [48327,22898], + [48329,38804], + [48331,26198], + [48333,20128], + [48335,26595], + [48337,27018], + [48339,37915], + [48341,31237], + [48343,23596], + [48345,23807], + [48347,21426], + [48349,24951], + [48351,21019], + [48353,23370], + [48355,27335], + [48357,24270], + [48359,27938], + [48361,31543], + [48363,23594], + [48365,26162], + [48367,32185], + [48369,29158], + [48371,27388], + [48373,25626], + [48375,25457], + [48377,14817], + [48379,24729], + [48381,34417], + [48383,38030], + [48385,20868], + [48387,22731], + [48389,22515], + [48391,22952], + [48393,30806], + [48395,24907], + [48397,46518], + [48399,24755], + [48401,26176], + [48403,20582], + [48405,21445], + [48407,22614], + [48409,26180], + [48411,23253], + [48413,26524], + [48415,27681], + [48417,26200], + [48419,22658], + [48421,28307], + [48423,27384], + [48425,30157], + [48427,14038], + [48429,22206], + [48431,36827], + [48433,25331], + [48435,30298], + [48437,21851], + [48439,33326], + [48441,26504], + [48443,24069], + [48445,22037], + [48447,26167], + [48449,25174], + [48451,27568], + [48453,39860], + [48455,23576], + [48457,22214], + [48459,26279], + [48461,28795], + [48463,21037], + [48465,21541], + [48467,26570], + [48469,27297], + [48471,26411], + [48473,25613], + [48475,31467], + [48477,28376], + [48479,21894], + [48481,26008], + [48483,27031], + [48485,25448], + [48487,24911], + [48489,16793], + [48491,39583], + [48493,32643], + [48495,28788], + [48497,29858], + [48499,25192], + [48501,34598], + [48503,27199], + [48505,17256], + [48507,15223], + [49001,30436], + [49003,30295], + [49005,23906], + [49007,25497], + [49009,30536], + [49011,34554], + [49013,30440], + [49015,29209], + [49017,23253], + [49019,27170], + [49021,24493], + [49023,26464], + [49025,24877], + [49027,27383], + [49029,37091], + [49031,19495], + [49033,26997], + [49035,32867], + [49037,22504], + [49039,19986], + [49041,25084], + [49043,42507], + [49045,35164], + [49047,26723], + [49049,26084], + [49051,35491], + [49053,27392], + [49055,22381], + [49057,31248], + [50001,31536], + [50003,28353], + [50005,27052], + [50007,34738], + [50009,23933], + [50011,33676], + [50013,35800], + [50015,32179], + [50017,31445], + [50019,26134], + [50021,30112], + [50023,33620], + [50025,28936], + [50027,31840], + [51001,25346], + [51003,37498], + [51005,26560], + [51007,31722], + [51009,27580], + [51011,29989], + [51013,70148], + [51015,30889], + [51017,30285], + [51019,31616], + [51021,25587], + [51023,33271], + [51025,19568], + [51027,17764], + [51029,23248], + [51031,27489], + [51033,32279], + [51035,22506], + [51036,28848], + [51037,21931], + [51041,39276], + [51043,36717], + [51045,30199], + [51047,32427], + [51049,25748], + [51051,19333], + [51053,30619], + [51057,26599], + [51059,53727], + [51061,44134], + [51063,29316], + [51065,38143], + [51067,28319], + [51069,37186], + [51071,29348], + [51073,35294], + [51075,40720], + [51077,20121], + [51079,35259], + [51081,20130], + [51083,23640], + [51085,40097], + [51087,37151], + [51089,21493], + [51091,25969], + [51093,35695], + [51095,38309], + [51097,32279], + [51099,39966], + [51101,34612], + [51103,30382], + [51105,18053], + [51107,60126], + [51109,29405], + [51111,22856], + [51113,28136], + [51115,31223], + [51117,25324], + [51119,29179], + [51121,25174], + [51125,30861], + [51127,40475], + [51131,25717], + [51133,31633], + [51135,25160], + [51137,33574], + [51139,25036], + [51141,23174], + [51143,25237], + [51145,40000], + [51147,18060], + [51149,34491], + [51153,43568], + [51155,27826], + [51157,37708], + [51159,25103], + [51161,36325], + [51163,26949], + [51165,30670], + [51167,20595], + [51169,21713], + [51171,28856], + [51173,22253], + [51175,28940], + [51177,38572], + [51179,45929], + [51181,32457], + [51183,23129], + [51185,22768], + [51187,32367], + [51191,25266], + [51193,29556], + [51195,20795], + [51197,25306], + [51199,42896], + [51510,59419], + [51520,20711], + [51530,18000], + [51540,31307], + [51550,37511], + [51570,30329], + [51580,26006], + [51590,22419], + [51595,19315], + [51600,50560], + [51610,70390], + [51620,26839], + [51630,32193], + [51640,20318], + [51650,30458], + [51660,18223], + [51670,25362], + [51678,8641], + [51680,20819], + [51683,37783], + [51685,36904], + [51690,22126], + [51700,29837], + [51710,26694], + [51720,19756], + [51730,22893], + [51735,41388], + [51740,27350], + [51750,12919], + [51760,26454], + [51770,25057], + [51775,29356], + [51790,29164], + [51800,36375], + [51810,37350], + [51820,28523], + [51830,16302], + [51840,28202], + [53001,24178], + [53003,27238], + [53005,33590], + [53007,28892], + [53009,27638], + [53011,36268], + [53013,31349], + [53015,27688], + [53017,30106], + [53019,23052], + [53021,28942], + [53023,27941], + [53025,26262], + [53027,26117], + [53029,33871], + [53031,29678], + [53033,45489], + [53035,36449], + [53037,25786], + [53039,26430], + [53041,26381], + [53043,29446], + [53045,28386], + [53047,24978], + [53049,24234], + [53051,27528], + [53053,36273], + [53055,33216], + [53057,32180], + [53059,31344], + [53061,40501], + [53063,30173], + [53065,25440], + [53067,37076], + [53069,26813], + [53071,28051], + [53073,29769], + [53075,17679], + [53077,25527], + [54001,21612], + [54003,31811], + [54005,22829], + [54007,23583], + [54009,27808], + [54011,22326], + [54013,19188], + [54015,19222], + [54017,21366], + [54019,22401], + [54021,18646], + [54023,23007], + [54025,23115], + [54027,25543], + [54029,25976], + [54031,24484], + [54033,27547], + [54035,26611], + [54037,34869], + [54039,26777], + [54041,23106], + [54043,23003], + [54045,22558], + [54047,17088], + [54049,26069], + [54051,25627], + [54053,25409], + [54055,22391], + [54057,26545], + [54059,20956], + [54061,24705], + [54063,22752], + [54065,27047], + [54067,22673], + [54069,26881], + [54071,22380], + [54073,25660], + [54075,22409], + [54077,25533], + [54079,32009], + [54081,23997], + [54083,24193], + [54085,24511], + [54087,21446], + [54089,21911], + [54091,25791], + [54093,25045], + [54095,24476], + [54097,24107], + [54099,21185], + [54101,20469], + [54103,23664], + [54105,25048], + [54107,26052], + [54109,22398], + [55001,24940], + [55003,23772], + [55005,27608], + [55007,29710], + [55009,32799], + [55011,30910], + [55013,27403], + [55015,38365], + [55017,30668], + [55019,29167], + [55021,36664], + [55023,27605], + [55025,38191], + [55027,32199], + [55029,32871], + [55031,29967], + [55033,26111], + [55035,29023], + [55037,27257], + [55039,32247], + [55041,25423], + [55043,26687], + [55045,32730], + [55047,30362], + [55049,35190], + [55051,25505], + [55053,27439], + [55055,31785], + [55057,27577], + [55059,31510], + [55061,33195], + [55063,29863], + [55065,31460], + [55067,27700], + [55069,31364], + [55071,30838], + [55073,31870], + [55075,26923], + [55077,28615], + [55078,23783], + [55079,30129], + [55081,31946], + [55083,31619], + [55085,28825], + [55087,33629], + [55089,40734], + [55091,29817], + [55093,31494], + [55095,31523], + [55097,29393], + [55099,27162], + [55101,31195], + [55103,29523], + [55105,30624], + [55107,26765], + [55109,41079], + [55111,31042], + [55113,26906], + [55115,29799], + [55117,32823], + [55119,30638], + [55121,31989], + [55123,28462], + [55125,26808], + [55127,29626], + [55129,28390], + [55131,39079], + [55133,41242], + [55135,30707], + [55137,27300], + [55139,31111], + [55141,31081], + [56001,22850], + [56003,26237], + [56005,41471], + [56007,31516], + [56009,34183], + [56011,33258], + [56013,27725], + [56015,27496], + [56017,27960], + [56019,31327], + [56021,34055], + [56023,30881], + [56025,32749], + [56027,21065], + [56029,31160], + [56031,26585], + [56033,34758], + [56035,33412], + [56037,36512], + [56039,40914], + [56041,29557], + [56043,29327], + [56045,27367] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2007.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2007.json new file mode 100644 index 0000000..ff9210e --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2007"], + [1001,24383], + [1003,82659], + [1005,10334], + [1007,8791], + [1009,26629], + [1011,3653], + [1013,9099], + [1015,54861], + [1017,15474], + [1019,11984], + [1021,19737], + [1023,5183], + [1025,10358], + [1027,6113], + [1029,6483], + [1031,21077], + [1033,25386], + [1035,4965], + [1037,4686], + [1039,17070], + [1041,6546], + [1043,39367], + [1045,20250], + [1047,15555], + [1049,31013], + [1051,35805], + [1053,14288], + [1055,45459], + [1057,7387], + [1059,13742], + [1061,11535], + [1063,3284], + [1065,6976], + [1067,7540], + [1069,47179], + [1071,27020], + [1073,314739], + [1075,5854], + [1077,43257], + [1079,15807], + [1081,65326], + [1083,36340], + [1085,4758], + [1087,8865], + [1089,165286], + [1091,8150], + [1093,12974], + [1095,41311], + [1097,184490], + [1099,8945], + [1101,106156], + [1103,56642], + [1105,3543], + [1107,8015], + [1109,15575], + [1111,9487], + [1113,21734], + [1115,36040], + [1117,99647], + [1119,4778], + [1121,38922], + [1123,18311], + [1125,89008], + [1127,29056], + [1129,7002], + [1131,3438], + [1133,10287], + [2013,1094], + [2016,3085], + [2020,151051], + [2050,6951], + [2060,1064], + [2068,1602], + [2070,2045], + [2090,45385], + [2100,1446], + [2105,"NA"], + [2110,18459], + [2122,25700], + [2130,8222], + [2150,6141], + [2158,"NA"], + [2164,1166], + [2170,39800], + [2180,3796], + [2185,4672], + [2188,2968], + [2195,"NA"], + [2198,"NA"], + [2220,4635], + [2230,"NA"], + [2240,3555], + [2261,5219], + [2275,"NA"], + [2282,308], + [2290,2763], + [4001,20200], + [4003,57271], + [4005,70736], + [4007,21166], + [4009,14294], + [4011,3998], + [4012,7655], + [4013,1945290], + [4015,91440], + [4017,38244], + [4019,458486], + [4021,111626], + [4023,17162], + [4025,97606], + [4027,78841], + [5001,11988], + [5003,9483], + [5005,17748], + [5007,105064], + [5009,16987], + [5011,5799], + [5013,2638], + [5015,14021], + [5017,4995], + [5019,11069], + [5021,6751], + [5023,11687], + [5025,4180], + [5027,11040], + [5029,10073], + [5031,45989], + [5033,28569], + [5035,22416], + [5037,8457], + [5039,3881], + [5041,6177], + [5043,8501], + [5045,55212], + [5047,8600], + [5049,5169], + [5051,42727], + [5053,8587], + [5055,18678], + [5057,10978], + [5059,15477], + [5061,6452], + [5063,17393], + [5065,5445], + [5067,7891], + [5069,35578], + [5071,11443], + [5073,3143], + [5075,7400], + [5077,3634], + [5079,5044], + [5081,6539], + [5083,10575], + [5085,31711], + [5087,7781], + [5089,7052], + [5091,19792], + [5093,21616], + [5095,3897], + [5097,4263], + [5099,4363], + [5101,3520], + [5103,12054], + [5105,4835], + [5107,9060], + [5109,5240], + [5111,10923], + [5113,8904], + [5115,30274], + [5117,4436], + [5119,191162], + [5121,7666], + [5123,10561], + [5125,49069], + [5127,4880], + [5129,3628], + [5131,62414], + [5133,7801], + [5135,6448], + [5137,4804], + [5139,19462], + [5141,7058], + [5143,104859], + [5145,32094], + [5147,3539], + [5149,10645], + [6001,745198], + [6003,493], + [6005,17703], + [6007,101228], + [6009,20725], + [6011,10217], + [6013,514317], + [6015,11029], + [6017,90382], + [6019,418579], + [6021,11975], + [6023,59282], + [6025,65967], + [6027,8885], + [6029,345187], + [6031,57327], + [6033,24041], + [6035,12436], + [6037,4864160], + [6039,63365], + [6041,131904], + [6043,9061], + [6045,43115], + [6047,99843], + [6049,3896], + [6051,8132], + [6053,205460], + [6055,73232], + [6057,50125], + [6059,1606177], + [6061,172478], + [6063,9948], + [6065,902047], + [6067,675800], + [6069,24005], + [6071,862191], + [6073,1515351], + [6075,432564], + [6077,288638], + [6079,134026], + [6081,369503], + [6083,213473], + [6085,843437], + [6087,144713], + [6089,82540], + [6091,1610], + [6093,18786], + [6095,208196], + [6097,257316], + [6099,226889], + [6101,40987], + [6103,24859], + [6105,5024], + [6107,191568], + [6109,25775], + [6111,423062], + [6113,97518], + [6115,27345], + [8001,219560], + [8003,8352], + [8005,304913], + [8007,6604], + [8009,2398], + [8011,2424], + [8013,173647], + [8014,29984], + [8015,8211], + [8017,1366], + [8019,5648], + [8021,3640], + [8023,1303], + [8025,1923], + [8027,1994], + [8029,16412], + [8031,314781], + [8033,1030], + [8035,154953], + [8037,30929], + [8039,12798], + [8041,297494], + [8043,19646], + [8045,34945], + [8047,3414], + [8049,9158], + [8051,9522], + [8053,608], + [8055,3353], + [8057,1103], + [8059,303357], + [8061,911], + [8063,4475], + [8065,4028], + [8067,31007], + [8069,172024], + [8071,8695], + [8073,3014], + [8075,11321], + [8077,77873], + [8079,471], + [8081,8521], + [8083,13172], + [8085,20744], + [8087,14221], + [8089,8813], + [8091,3051], + [8093,9602], + [8095,2420], + [8097,11271], + [8099,6790], + [8101,71808], + [8103,5344], + [8105,6543], + [8107,15692], + [8109,3158], + [8111,563], + [8113,5652], + [8115,1826], + [8117,17129], + [8119,12415], + [8121,2880], + [8123,117044], + [8125,6734], + [9001,466532], + [9003,452749], + [9005,104535], + [9007,93011], + [9009,444223], + [9011,147559], + [9013,83967], + [9015,63624], + [10001,75038], + [10003,275852], + [10005,92683], + [11001,322237], + [12001,129010], + [12003,11913], + [12005,86754], + [12007,12341], + [12009,265782], + [12011,1000426], + [12013,5550], + [12015,69876], + [12017,55641], + [12019,93804], + [12021,151925], + [12023,30955], + [12027,14328], + [12029,5535], + [12031,441216], + [12033,140808], + [12035,30928], + [12037,4922], + [12039,20770], + [12041,7613], + [12043,4789], + [12045,6269], + [12047,4627], + [12049,11858], + [12051,18008], + [12053,61681], + [12055,40249], + [12057,595244], + [12059,8769], + [12061,62723], + [12063,21538], + [12065,6749], + [12067,2921], + [12069,132744], + [12071,290882], + [12073,144890], + [12075,16793], + [12077,3667], + [12079,6954], + [12081,147550], + [12083,137247], + [12085,64940], + [12086,1226005], + [12087,44757], + [12089,35191], + [12091,97527], + [12093,17537], + [12095,594761], + [12097,132902], + [12099,626062], + [12101,193243], + [12103,450329], + [12105,268193], + [12107,31945], + [12109,92427], + [12111,123851], + [12113,69649], + [12115,171609], + [12117,238644], + [12119,31509], + [12121,17350], + [12123,8814], + [12125,5136], + [12127,252491], + [12129,15109], + [12131,31252], + [12133,9652], + [13001,9079], + [13003,3390], + [13005,4738], + [13007,1657], + [13009,20745], + [13011,10601], + [13013,33863], + [13015,45865], + [13017,7891], + [13019,8801], + [13021,73788], + [13023,5364], + [13025,7559], + [13027,8407], + [13029,16623], + [13031,32393], + [13033,9979], + [13035,10151], + [13037,2175], + [13039,21609], + [13043,4418], + [13045,53240], + [13047,35453], + [13049,4595], + [13051,133680], + [13053,1704], + [13055,10922], + [13057,109716], + [13059,64398], + [13061,1476], + [13063,136206], + [13065,2763], + [13067,380566], + [13069,16522], + [13071,20474], + [13073,59917], + [13075,7134], + [13077,59681], + [13079,6124], + [13081,10625], + [13083,8436], + [13085,11103], + [13087,11769], + [13089,393836], + [13091,9524], + [13093,4927], + [13095,42009], + [13097,64829], + [13099,5334], + [13101,2251], + [13103,28501], + [13105,9862], + [13107,10829], + [13109,4985], + [13111,11000], + [13113,53556], + [13115,49791], + [13117,84302], + [13119,10448], + [13121,488891], + [13123,14221], + [13125,1119], + [13127,40736], + [13129,26858], + [13131,12272], + [13133,7458], + [13135,421203], + [13137,20218], + [13139,90768], + [13141,3304], + [13143,12872], + [13145,16064], + [13147,10834], + [13149,4900], + [13151,96909], + [13153,68319], + [13155,4307], + [13157,26964], + [13159,6438], + [13161,5267], + [13163,7098], + [13165,3329], + [13167,3729], + [13169,14054], + [13171,7923], + [13173,4052], + [13175,22430], + [13177,17684], + [13179,24269], + [13181,3838], + [13183,5928], + [13185,53698], + [13187,13154], + [13189,10595], + [13191,5398], + [13193,5089], + [13195,15835], + [13197,3322], + [13199,9572], + [13201,3579], + [13205,10420], + [13207,13547], + [13209,4597], + [13211,9498], + [13213,21072], + [13215,85604], + [13217,46421], + [13219,18031], + [13221,7731], + [13223,65995], + [13225,11537], + [13227,15150], + [13229,8572], + [13231,8076], + [13233,20967], + [13235,4649], + [13237,10414], + [13239,1060], + [13241,7277], + [13243,2745], + [13245,90907], + [13247,40365], + [13249,1823], + [13251,7239], + [13253,3990], + [13255,28269], + [13257,13590], + [13259,2272], + [13261,14796], + [13263,3160], + [13265,848], + [13267,9144], + [13269,3333], + [13271,4998], + [13273,4430], + [13275,22989], + [13277,19128], + [13279,13864], + [13281,6025], + [13283,2714], + [13285,30448], + [13287,4942], + [13289,4668], + [13291,11442], + [13293,12011], + [13295,33084], + [13297,41084], + [13299,15148], + [13301,2455], + [13303,8333], + [13305,12072], + [13307,1246], + [13309,2965], + [13311,12910], + [13313,47042], + [13315,3302], + [13317,4572], + [13319,4584], + [13321,10184], + [15001,84784], + [15003,442512], + [15005,"NA"], + [15007,32665], + [15009,78434], + [16001,196740], + [16003,1999], + [16005,41291], + [16007,3158], + [16009,4061], + [16011,22242], + [16013,13677], + [16015,3576], + [16017,20645], + [16019,50283], + [16021,4576], + [16023,1369], + [16025,618], + [16027,83264], + [16029,3863], + [16031,10795], + [16033,554], + [16035,3208], + [16037,2329], + [16039,11249], + [16041,5751], + [16043,5777], + [16045,7098], + [16047,8805], + [16049,7079], + [16051,11121], + [16053,9827], + [16055,69433], + [16057,17003], + [16059,3745], + [16061,1703], + [16063,2565], + [16065,16441], + [16067,10051], + [16069,19011], + [16071,2381], + [16073,4488], + [16075,10520], + [16077,3753], + [16079,5864], + [16081,5069], + [16083,37746], + [16085,5021], + [16087,4687], + [17001,39619], + [17003,3279], + [17005,8771], + [17007,26764], + [17009,3479], + [17011,19494], + [17013,2656], + [17015,8768], + [17017,7713], + [17019,105132], + [17021,17998], + [17023,8979], + [17025,7003], + [17027,19352], + [17029,27971], + [17031,2615750], + [17033,9821], + [17035,5806], + [17037,59179], + [17039,8604], + [17041,10561], + [17043,530011], + [17045,10614], + [17047,3457], + [17049,18869], + [17051,10344], + [17053,7350], + [17055,18270], + [17057,17927], + [17059,2666], + [17061,7183], + [17063,25757], + [17065,4312], + [17067,9979], + [17069,1712], + [17071,4059], + [17073,27831], + [17075,16821], + [17077,33163], + [17079,5207], + [17081,21365], + [17083,11867], + [17085,13790], + [17087,5286], + [17089,269449], + [17091,55889], + [17093,55716], + [17095,25636], + [17097,372457], + [17099,59225], + [17101,8422], + [17103,18624], + [17105,19679], + [17107,13537], + [17109,17292], + [17111,178885], + [17113,90552], + [17115,54603], + [17117,24830], + [17119,141006], + [17121,18907], + [17123,7345], + [17125,7425], + [17127,7668], + [17129,6978], + [17131,8990], + [17133,18611], + [17135,13676], + [17137,18106], + [17139,8192], + [17141,28026], + [17143,97797], + [17145,10033], + [17147,9084], + [17149,8797], + [17151,1976], + [17153,2946], + [17155,3235], + [17157,15727], + [17159,7836], + [17161,80369], + [17163,125692], + [17165,12751], + [17167,108005], + [17169,4447], + [17171,2790], + [17173,11259], + [17175,3004], + [17177,25541], + [17179,73660], + [17181,8437], + [17183,37863], + [17185,6438], + [17187,9232], + [17189,8553], + [17191,8444], + [17193,8035], + [17195,30904], + [17197,361414], + [17199,36347], + [17201,149201], + [17203,21530], + [18001,15959], + [18003,180707], + [18005,38544], + [18007,4337], + [18009,6550], + [18011,27960], + [18013,7614], + [18015,9926], + [18017,18673], + [18019,55140], + [18021,12878], + [18023,16769], + [18025,5238], + [18027,15123], + [18029,26093], + [18031,12309], + [18033,20698], + [18035,55139], + [18037,22150], + [18039,101303], + [18041,10431], + [18043,37949], + [18045,8652], + [18047,11785], + [18049,10364], + [18051,16759], + [18053,31680], + [18055,15810], + [18057,140741], + [18059,35818], + [18061,19410], + [18063,72418], + [18065,22464], + [18067,37588], + [18069,20025], + [18071,21892], + [18073,15511], + [18075,11609], + [18077,17081], + [18079,13665], + [18081,73207], + [18083,19724], + [18085,41085], + [18087,17028], + [18089,226108], + [18091,52577], + [18093,22133], + [18095,60540], + [18097,460046], + [18099,22795], + [18101,5133], + [18103,16465], + [18105,68676], + [18107,19251], + [18109,36810], + [18111,6967], + [18113,23161], + [18115,3026], + [18117,10455], + [18119,11192], + [18121,8025], + [18123,9706], + [18125,6007], + [18127,83076], + [18129,13364], + [18131,6800], + [18133,17518], + [18135,12656], + [18137,13911], + [18139,9448], + [18141,132785], + [18143,11053], + [18145,23582], + [18147,10427], + [18149,10453], + [18151,16494], + [18153,8918], + [18155,5687], + [18157,81511], + [18159,7708], + [18161,3619], + [18163,90815], + [18165,7890], + [18167,50120], + [18169,16993], + [18171,4991], + [18173,30489], + [18175,14011], + [18177,33800], + [18179,14671], + [18181,12286], + [18183,17736], + [19001,4400], + [19003,2099], + [19005,8163], + [19007,5958], + [19009,3276], + [19011,14271], + [19013,72687], + [19015,15484], + [19017,13831], + [19019,11031], + [19021,10388], + [19023,8260], + [19025,5215], + [19027,12239], + [19029,7605], + [19031,10899], + [19033,25646], + [19035,6624], + [19037,6535], + [19039,4826], + [19041,9756], + [19043,9742], + [19045,27443], + [19047,9302], + [19049,32546], + [19051,4080], + [19053,4196], + [19055,10770], + [19057,21064], + [19059,9744], + [19061,52040], + [19063,5928], + [19065,10903], + [19067,8712], + [19069,5964], + [19071,3957], + [19073,4989], + [19075,6805], + [19077,5857], + [19079,8645], + [19081,6038], + [19083,9057], + [19085,7780], + [19087,10313], + [19089,5243], + [19091,5199], + [19093,4035], + [19095,8612], + [19097,11174], + [19099,17936], + [19101,8370], + [19103,77590], + [19105,10453], + [19107,5629], + [19109,8980], + [19111,17332], + [19113,118163], + [19115,6431], + [19117,4774], + [19119,6681], + [19121,8278], + [19123,11747], + [19125,17815], + [19127,20469], + [19129,8086], + [19131,5571], + [19133,4585], + [19135,4174], + [19137,5554], + [19139,23997], + [19141,7741], + [19143,3349], + [19145,8375], + [19147,5437], + [19149,14433], + [19151,4132], + [19153,237576], + [19155,48121], + [19157,10749], + [19159,2455], + [19161,5798], + [19163,88870], + [19165,7539], + [19167,19339], + [19169,48044], + [19171,8983], + [19173,3357], + [19175,6580], + [19177,3951], + [19179,18850], + [19181,25475], + [19183,11943], + [19185,3208], + [19187,19830], + [19189,5767], + [19191,12425], + [19193,54875], + [19195,4525], + [19197,7003], + [20001,7497], + [20003,4144], + [20005,8781], + [20007,2618], + [20009,14869], + [20011,8857], + [20013,5509], + [20015,32414], + [20017,1584], + [20019,1781], + [20021,11108], + [20023,1416], + [20025,1206], + [20027,5067], + [20029,5590], + [20031,5101], + [20033,1079], + [20035,18211], + [20037,20216], + [20039,1664], + [20041,10611], + [20043,4551], + [20045,62110], + [20047,1636], + [20049,1423], + [20051,17143], + [20053,3690], + [20055,17903], + [20057,16647], + [20059,13817], + [20061,11921], + [20063,1502], + [20065,1481], + [20067,3957], + [20069,3155], + [20071,698], + [20073,3570], + [20075,1250], + [20077,3395], + [20079,17969], + [20081,2152], + [20083,903], + [20085,6945], + [20087,9606], + [20089,1918], + [20091,298890], + [20093,2128], + [20095,4285], + [20097,1492], + [20099,11351], + [20101,1066], + [20103,32857], + [20105,1828], + [20107,4752], + [20109,1775], + [20111,19695], + [20113,16742], + [20115,6697], + [20117,6058], + [20119,2304], + [20121,16470], + [20123,3336], + [20125,17582], + [20127,2968], + [20129,1683], + [20131,5619], + [20133,9291], + [20135,1734], + [20137,2696], + [20139,8526], + [20141,2208], + [20143,3258], + [20145,3991], + [20147,3229], + [20149,11553], + [20151,5706], + [20153,1234], + [20155,32485], + [20157,2756], + [20159,5605], + [20161,39474], + [20163,2655], + [20165,1645], + [20167,3488], + [20169,30271], + [20171,2588], + [20173,250715], + [20175,10447], + [20177,91388], + [20179,1553], + [20181,3632], + [20183,2178], + [20185,2132], + [20187,1120], + [20189,2254], + [20191,11816], + [20193,4140], + [20195,1691], + [20197,3657], + [20199,904], + [20201,3334], + [20203,1237], + [20205,5516], + [20207,1668], + [20209,71446], + [21001,8912], + [21003,8235], + [21005,11038], + [21007,4229], + [21009,19497], + [21011,5049], + [21013,9494], + [21015,61711], + [21017,9689], + [21019,22838], + [21021,12705], + [21023,4259], + [21025,5641], + [21027,9098], + [21029,38936], + [21031,5602], + [21033,6630], + [21035,17749], + [21037,44530], + [21039,2260], + [21041,5726], + [21043,13501], + [21045,7320], + [21047,29455], + [21049,17233], + [21051,6997], + [21053,4639], + [21055,3797], + [21057,2964], + [21059,47117], + [21061,5322], + [21063,3040], + [21065,6119], + [21067,151234], + [21069,6484], + [21071,15081], + [21073,25090], + [21075,2706], + [21077,3893], + [21079,7685], + [21081,12590], + [21083,15948], + [21085,11251], + [21087,5631], + [21089,17487], + [21091,4189], + [21093,47394], + [21095,10160], + [21097,9232], + [21099,8137], + [21101,22689], + [21103,7819], + [21105,2033], + [21107,23298], + [21109,4340], + [21111,356083], + [21113,22825], + [21115,9666], + [21117,83537], + [21119,6232], + [21121,12621], + [21123,6933], + [21125,26612], + [21127,5815], + [21129,2822], + [21131,3561], + [21133,8747], + [21135,5602], + [21137,10611], + [21139,4845], + [21141,12396], + [21143,3278], + [21145,31596], + [21147,5841], + [21149,4573], + [21151,42634], + [21153,4346], + [21155,10271], + [21157,14796], + [21159,3445], + [21161,8809], + [21163,11617], + [21165,2637], + [21167,10620], + [21169,4425], + [21171,4858], + [21173,12241], + [21175,4969], + [21177,13548], + [21179,21294], + [21181,3016], + [21183,12009], + [21185,27555], + [21187,5266], + [21189,1577], + [21191,7308], + [21193,11415], + [21195,25145], + [21197,5669], + [21199,27166], + [21201,1065], + [21203,7239], + [21205,12183], + [21207,8136], + [21209,22332], + [21211,21258], + [21213,9345], + [21215,8919], + [21217,13726], + [21219,5020], + [21221,6266], + [21223,4353], + [21225,7084], + [21227,57538], + [21229,5406], + [21231,8575], + [21233,6530], + [21235,15011], + [21237,2315], + [21239,13264], + [22001,26303], + [22003,8809], + [22005,48952], + [22007,10461], + [22009,15993], + [22011,14268], + [22013,6575], + [22015,53018], + [22017,118612], + [22019,91888], + [22021,4546], + [22023,3559], + [22025,4162], + [22027,6710], + [22029,7333], + [22031,11384], + [22033,216650], + [22035,3069], + [22037,8052], + [22039,12333], + [22041,7789], + [22043,8680], + [22045,34429], + [22047,12270], + [22049,6471], + [22051,221408], + [22053,14599], + [22055,110161], + [22057,48824], + [22059,6249], + [22061,18918], + [22063,55882], + [22065,4453], + [22067,11673], + [22069,17455], + [22071,107655], + [22073,71680], + [22075,9015], + [22077,9516], + [22079,59862], + [22081,3470], + [22083,8710], + [22085,9441], + [22087,9757], + [22089,26273], + [22091,4216], + [22093,8634], + [22095,22505], + [22097,37493], + [22099,23666], + [22101,23359], + [22103,116435], + [22105,52370], + [22107,2212], + [22109,54759], + [22111,10198], + [22113,24128], + [22115,21174], + [22117,15885], + [22119,19807], + [22121,10632], + [22123,4485], + [22125,4788], + [22127,6375], + [23001,58125], + [23003,35128], + [23005,157386], + [23007,14111], + [23009,29442], + [23011,62804], + [23013,21090], + [23015,18187], + [23017,28305], + [23019,78551], + [23021,7426], + [23023,18899], + [23025,24886], + [23027,18872], + [23029,14494], + [23031,112738], + [24001,34917], + [24003,279882], + [24005,427026], + [24009,47616], + [24011,16199], + [24013,93995], + [24015,50522], + [24017,75920], + [24019,16661], + [24021,123692], + [24023,16673], + [24025,131696], + [24027,159215], + [24029,11125], + [24031,509769], + [24033,445492], + [24035,26036], + [24037,50810], + [24039,11168], + [24041,18864], + [24043,68045], + [24045,52137], + [24047,27481], + [24510,275151], + [25001,121322], + [25003,72820], + [25005,290169], + [25007,11128], + [25009,373827], + [25011,39104], + [25013,223699], + [25015,88300], + [25017,816978], + [25019,8527], + [25021,354533], + [25023,259937], + [25025,364284], + [25027,401374], + [26001,4300], + [26003,4393], + [26005,56007], + [26007,14901], + [26009,11860], + [26011,7868], + [26013,4263], + [26015,30385], + [26017,55027], + [26019,8995], + [26021,79672], + [26023,22254], + [26025,69772], + [26027,27196], + [26029,14117], + [26031,12466], + [26033,17520], + [26035,13211], + [26037,37861], + [26039,6655], + [26041,20145], + [26043,14389], + [26045,58968], + [26047,19810], + [26049,208354], + [26051,10686], + [26053,7625], + [26055,49059], + [26057,19857], + [26059,21781], + [26061,17657], + [26063,16714], + [26065,153495], + [26067,30484], + [26069,10895], + [26071,5938], + [26073,38743], + [26075,77563], + [26077,134661], + [26079,8709], + [26081,323454], + [26083,1059], + [26085,4074], + [26087,44306], + [26089,11362], + [26091,49663], + [26093,94930], + [26095,2773], + [26097,6430], + [26099,421017], + [26101,11982], + [26103,35891], + [26105,14924], + [26107,20058], + [26109,13207], + [26111,43003], + [26113,6526], + [26115,77356], + [26117,26870], + [26119,4176], + [26121,89458], + [26123,22955], + [26125,625693], + [26127,14400], + [26129,9651], + [26131,3417], + [26133,9895], + [26135,4013], + [26137,12333], + [26139,135826], + [26141,6106], + [26143,10473], + [26145,96947], + [26147,83783], + [26149,31678], + [26151,21820], + [26153,3957], + [26155,36158], + [26157,28600], + [26159,40190], + [26161,188362], + [26163,883501], + [26165,14590], + [27001,7718], + [27003,189600], + [27005,16852], + [27007,21174], + [27009,22936], + [27011,2801], + [27013,36387], + [27015,14676], + [27017,17208], + [27019,49658], + [27021,14260], + [27023,7071], + [27025,27346], + [27027,31280], + [27029,3872], + [27031,3133], + [27033,6261], + [27035,32719], + [27037,229769], + [27039,11028], + [27041,20039], + [27043,7777], + [27045,11157], + [27047,16336], + [27049,25003], + [27051,3018], + [27053,655691], + [27055,10980], + [27057,9188], + [27059,21689], + [27061,22250], + [27063,6532], + [27065,7917], + [27067,23434], + [27069,2486], + [27071,6517], + [27073,4055], + [27075,6131], + [27077,2298], + [27079,14183], + [27081,3210], + [27083,14454], + [27085,20388], + [27087,2430], + [27089,5172], + [27091,11257], + [27093,12380], + [27095,12282], + [27097,17315], + [27099,20346], + [27101,5382], + [27103,19264], + [27105,11134], + [27107,3551], + [27109,79951], + [27111,29322], + [27113,8550], + [27115,13713], + [27117,5292], + [27119,16675], + [27121,6101], + [27123,271469], + [27125,2297], + [27127,8272], + [27129,8482], + [27131,32138], + [27133,4925], + [27135,9755], + [27137,103338], + [27139,73099], + [27141,48738], + [27143,8694], + [27145,83223], + [27147,20401], + [27149,5640], + [27151,5313], + [27153,12228], + [27155,1839], + [27157,12215], + [27159,6271], + [27161,10257], + [27163,127837], + [27165,5487], + [27167,3484], + [27169,28603], + [27171,66107], + [27173,5687], + [28001,13391], + [28003,15416], + [28005,5157], + [28007,7349], + [28009,2913], + [28011,15573], + [28013,6072], + [28015,4996], + [28017,7427], + [28019,3480], + [28021,3573], + [28023,7083], + [28025,7924], + [28027,10415], + [28029,12173], + [28031,8815], + [28033,76812], + [28035,37064], + [28037,3137], + [28039,9107], + [28041,4934], + [28043,9651], + [28045,18300], + [28047,86384], + [28049,117887], + [28051,7162], + [28053,4357], + [28055,706], + [28057,10036], + [28059,59623], + [28061,7557], + [28063,2779], + [28065,5252], + [28067,31314], + [28069,4108], + [28071,22115], + [28073,23865], + [28075,33274], + [28077,5150], + [28079,8152], + [28081,37650], + [28083,13829], + [28085,14222], + [28087,26208], + [28089,45385], + [28091,10329], + [28093,15413], + [28095,16536], + [28097,4493], + [28099,13988], + [28101,9570], + [28103,4018], + [28105,19921], + [28107,14994], + [28109,21604], + [28111,5130], + [28113,15421], + [28115,13195], + [28117,11107], + [28119,3780], + [28121,73005], + [28123,13266], + [28125,2549], + [28127,11566], + [28129,6732], + [28131,7700], + [28133,10892], + [28135,6034], + [28137,11838], + [28139,9237], + [28141,7974], + [28143,4392], + [28145,11808], + [28147,5878], + [28149,22131], + [28151,22053], + [28153,8678], + [28155,3413], + [28157,3597], + [28159,8025], + [28161,5319], + [28163,10156], + [29001,13500], + [29003,10197], + [29005,3209], + [29007,12293], + [29009,17739], + [29011,5722], + [29013,7921], + [29015,8358], + [29017,5739], + [29019,87412], + [29021,48263], + [29023,21386], + [29025,4374], + [29027,22741], + [29029,22017], + [29031,38991], + [29033,5226], + [29035,2904], + [29037,50176], + [29039,6483], + [29041,3936], + [29043,39791], + [29045,3601], + [29047,116357], + [29049,10394], + [29051,40140], + [29053,9187], + [29055,12165], + [29057,3745], + [29059,7501], + [29061,4031], + [29063,5259], + [29065,6654], + [29067,5881], + [29069,14273], + [29071,52534], + [29073,8110], + [29075,3398], + [29077,141794], + [29079,4804], + [29081,4547], + [29083,10911], + [29085,3422], + [29087,2702], + [29089,5136], + [29091,19812], + [29093,5372], + [29095,336581], + [29097,56572], + [29099,116051], + [29101,26272], + [29103,2344], + [29105,17588], + [29107,16448], + [29109,19267], + [29111,5682], + [29113,26364], + [29115,6455], + [29117,7160], + [29119,11504], + [29121,8044], + [29123,6056], + [29125,4772], + [29127,14435], + [29129,1804], + [29131,13345], + [29133,5878], + [29135,7487], + [29137,4351], + [29139,6123], + [29141,9334], + [29143,8924], + [29145,27856], + [29147,12575], + [29149,4554], + [29151,7371], + [29153,4388], + [29155,8130], + [29157,10416], + [29159,20973], + [29161,21975], + [29163,8885], + [29165,48683], + [29167,14375], + [29169,18724], + [29171,2489], + [29173,5598], + [29175,13122], + [29177,11477], + [29179,2635], + [29181,6645], + [29183,192549], + [29185,4224], + [29186,9932], + [29187,29341], + [29189,526028], + [29195,11701], + [29197,2165], + [29199,2512], + [29201,19933], + [29203,3716], + [29205,3320], + [29207,15519], + [29209,16361], + [29211,3294], + [29213,27358], + [29215,11013], + [29217,10077], + [29219,16150], + [29221,10006], + [29223,5691], + [29225,17034], + [29227,1147], + [29229,8087], + [29510,157604], + [30001,5033], + [30003,5078], + [30005,2858], + [30007,2371], + [30009,5350], + [30011,685], + [30013,39577], + [30015,2517], + [30017,5760], + [30019,768], + [30021,4255], + [30023,3901], + [30025,1741], + [30027,5862], + [30029,45734], + [30031,50406], + [30033,643], + [30035,5812], + [30037,561], + [30039,1283], + [30041,8078], + [30043,5851], + [30045,1046], + [30047,11641], + [30049,33292], + [30051,799], + [30053,7811], + [30055,1000], + [30057,4446], + [30059,901], + [30061,1968], + [30063,59156], + [30065,2037], + [30067,9075], + [30069,235], + [30071,2055], + [30073,2721], + [30075,898], + [30077,2644], + [30079,545], + [30081,18648], + [30083,5436], + [30085,3855], + [30087,3922], + [30089,4683], + [30091,1731], + [30093,17398], + [30095,4508], + [30097,2920], + [30099,3063], + [30101,2454], + [30103,405], + [30105,3637], + [30107,1038], + [30109,515], + [30111,81465], + [31001,17374], + [31003,3631], + [31005,238], + [31007,403], + [31009,238], + [31011,3169], + [31013,5613], + [31015,1075], + [31017,1813], + [31019,28042], + [31021,3910], + [31023,4831], + [31025,13876], + [31027,4776], + [31029,1996], + [31031,3389], + [31033,5242], + [31035,3111], + [31037,5646], + [31039,4995], + [31041,6005], + [31043,10928], + [31045,4802], + [31047,12349], + [31049,1050], + [31051,3313], + [31053,19826], + [31055,269973], + [31057,1016], + [31059,3173], + [31061,1797], + [31063,1660], + [31065,2469], + [31067,12510], + [31069,936], + [31071,1037], + [31073,1043], + [31075,385], + [31077,1278], + [31079,30960], + [31081,5640], + [31083,1812], + [31085,460], + [31087,1442], + [31089,6038], + [31091,465], + [31093,3708], + [31095,4576], + [31097,2874], + [31099,3808], + [31101,4662], + [31103,379], + [31105,1974], + [31107,4712], + [31109,157366], + [31111,21756], + [31113,471], + [31115,333], + [31117,300], + [31119,18819], + [31121,4174], + [31123,2778], + [31125,2020], + [31127,3505], + [31129,2240], + [31131,8949], + [31133,1587], + [31135,1577], + [31137,5101], + [31139,3954], + [31141,18401], + [31143,2967], + [31145,5921], + [31147,4272], + [31149,877], + [31151,8315], + [31153,76803], + [31155,10958], + [31157,19485], + [31159,8893], + [31161,3108], + [31163,1909], + [31165,707], + [31167,3554], + [31169,2863], + [31171,378], + [31173,2988], + [31175,2572], + [31177,11268], + [31179,5304], + [31181,1803], + [31183,417], + [31185,7648], + [32001,13152], + [32003,951064], + [32005,22599], + [32007,26420], + [32009,473], + [32011,809], + [32013,7959], + [32015,3386], + [32017,1722], + [32019,22279], + [32021,2236], + [32023,17812], + [32027,2492], + [32029,2396], + [32031,222441], + [32033,4749], + [32510,28410], + [33001,32409], + [33003,25496], + [33005,42088], + [33007,16698], + [33009,48284], + [33011,228214], + [33013,80318], + [33015,173675], + [33017,68206], + [33019,22548], + [34001,135104], + [34003,471472], + [34005,237634], + [34007,262569], + [34009,56472], + [34011,68174], + [34013,361575], + [34015,153893], + [34017,290029], + [34019,72048], + [34021,196360], + [34023,420390], + [34025,331122], + [34027,271713], + [34029,256510], + [34031,236506], + [34033,31279], + [34035,179245], + [34037,84106], + [34039,267086], + [34041,58513], + [35001,312319], + [35003,1505], + [35005,26808], + [35006,11968], + [35007,6560], + [35009,20964], + [35011,779], + [35013,86938], + [35015,26054], + [35017,12230], + [35019,1791], + [35021,389], + [35023,2518], + [35025,27686], + [35027,10883], + [35028,10485], + [35029,12315], + [35031,26725], + [35033,2018], + [35035,25992], + [35037,3839], + [35039,20310], + [35041,9512], + [35043,54017], + [35045,55637], + [35047,13342], + [35049,78018], + [35051,5545], + [35053,9350], + [35055,17745], + [35057,7086], + [35059,1874], + [35061,30827], + [36001,158712], + [36003,23405], + [36005,512479], + [36007,96858], + [36009,41269], + [36011,41137], + [36013,66781], + [36015,40956], + [36017,24405], + [36019,39784], + [36021,31765], + [36023,23737], + [36025,23129], + [36027,145515], + [36029,465331], + [36031,18557], + [36033,22634], + [36035,27345], + [36037,32868], + [36039,24124], + [36041,3208], + [36043,30974], + [36045,48137], + [36047,1086423], + [36049,12487], + [36051,32250], + [36053,35960], + [36055,373025], + [36057,24476], + [36059,694915], + [36061,917566], + [36063,111370], + [36065,109920], + [36067,232522], + [36069,56227], + [36071,179230], + [36073,19476], + [36075,59415], + [36077,31622], + [36079,55673], + [36081,1102350], + [36083,83128], + [36085,239789], + [36087,153871], + [36089,49337], + [36091,119421], + [36093,75551], + [36095,15725], + [36097,9965], + [36099,16993], + [36101,44734], + [36103,787940], + [36105,35227], + [36107,26179], + [36109,55351], + [36111,90485], + [36113,36324], + [36115,32403], + [36117,47564], + [36119,489581], + [36121,21424], + [36123,13055], + [37001,69983], + [37003,18206], + [37005,4898], + [37007,10302], + [37009,13078], + [37011,8257], + [37013,21313], + [37015,8818], + [37017,15668], + [37019,47823], + [37021,120202], + [37023,40070], + [37025,82663], + [37027,38427], + [37029,4620], + [37031,33229], + [37033,10706], + [37035,76408], + [37037,32498], + [37039,10231], + [37041,7123], + [37043,4903], + [37045,49360], + [37047,24348], + [37049,43233], + [37051,129424], + [37053,12530], + [37055,22662], + [37057,79345], + [37059,20580], + [37061,24280], + [37063,136544], + [37065,24242], + [37067,173449], + [37069,26930], + [37071,97592], + [37073,4987], + [37075,4678], + [37077,25096], + [37079,9174], + [37081,247292], + [37083,24355], + [37085,47956], + [37087,27421], + [37089,48419], + [37091,9925], + [37093,19126], + [37095,2689], + [37097,79857], + [37099,21884], + [37101,75088], + [37103,4820], + [37105,26470], + [37107,27936], + [37109,39774], + [37111,21439], + [37113,16643], + [37115,9830], + [37117,12022], + [37119,456736], + [37121,7344], + [37123,11922], + [37125,37189], + [37127,46370], + [37129,104304], + [37131,9084], + [37133,59887], + [37135,67916], + [37137,5600], + [37139,18288], + [37141,23590], + [37143,5337], + [37145,18861], + [37147,79009], + [37149,9701], + [37151,74238], + [37153,20691], + [37155,56833], + [37157,44568], + [37159,70465], + [37161,30295], + [37163,33022], + [37165,14507], + [37167,30681], + [37169,23807], + [37171,35132], + [37173,7292], + [37175,13357], + [37177,2213], + [37179,91672], + [37181,19622], + [37183,441589], + [37185,7796], + [37187,6412], + [37189,24743], + [37191,52722], + [37193,31357], + [37195,40724], + [37197,19086], + [37199,8077], + [38001,1294], + [38003,6029], + [38005,2644], + [38007,507], + [38009,3423], + [38011,1763], + [38013,1016], + [38015,47237], + [38017,87690], + [38019,2092], + [38021,2947], + [38023,900], + [38025,1691], + [38027,1293], + [38029,1703], + [38031,1701], + [38033,877], + [38035,39381], + [38037,1200], + [38039,1313], + [38041,1155], + [38043,1225], + [38045,2187], + [38047,928], + [38049,2726], + [38051,1420], + [38053,2928], + [38055,4726], + [38057,4753], + [38059,15021], + [38061,2972], + [38063,1642], + [38065,1131], + [38067,4022], + [38069,1913], + [38071,5890], + [38073,3061], + [38075,1291], + [38077,8996], + [38079,5157], + [38081,2226], + [38083,635], + [38085,1292], + [38087,629], + [38089,13947], + [38091,1119], + [38093,11876], + [38095,1144], + [38097,4237], + [38099,5733], + [38101,29340], + [38103,2132], + [38105,13081], + [39001,13547], + [39003,52259], + [39005,27654], + [39007,49729], + [39009,30610], + [39011,27156], + [39013,32878], + [39015,21794], + [39017,190611], + [39019,13935], + [39021,21041], + [39023,71363], + [39025,106078], + [39027,24450], + [39029,53532], + [39031,17513], + [39033,22347], + [39035,653686], + [39037,28313], + [39039,20795], + [39041,90447], + [39043,42673], + [39045,75513], + [39047,16895], + [39049,622081], + [39051,23293], + [39053,14506], + [39055,51658], + [39057,79675], + [39059,19889], + [39061,437604], + [39063,41600], + [39065,15806], + [39067,7417], + [39069,15931], + [39071,21567], + [39073,14229], + [39075,19739], + [39077,29739], + [39079,15922], + [39081,32008], + [39083,31128], + [39085,133810], + [39087,29601], + [39089,83633], + [39091,25324], + [39093,159594], + [39095,224338], + [39097,20097], + [39099,117091], + [39101,32970], + [39103,96074], + [39105,9274], + [39107,24591], + [39109,55278], + [39111,5571], + [39113,271298], + [39115,5757], + [39117,18013], + [39119,39097], + [39121,5830], + [39123,21764], + [39125,10970], + [39127,16449], + [39129,24536], + [39131,10922], + [39133,92197], + [39135,21688], + [39137,18282], + [39139,62590], + [39141,35056], + [39143,33950], + [39145,32298], + [39147,31225], + [39149,28444], + [39151,192111], + [39153,297444], + [39155,106325], + [39157,48239], + [39159,25475], + [39161,15584], + [39163,5895], + [39165,108163], + [39167,33179], + [39169,60204], + [39171,19786], + [39173,69423], + [39175,12245], + [40001,10876], + [40003,2329], + [40005,5914], + [40007,3083], + [40009,11609], + [40011,4943], + [40013,20677], + [40015,11938], + [40017,50999], + [40019,25602], + [40021,23189], + [40023,6841], + [40025,1262], + [40027,117837], + [40029,2499], + [40031,44888], + [40033,3964], + [40035,7404], + [40037,30982], + [40039,14502], + [40041,18393], + [40043,2450], + [40045,2375], + [40047,30294], + [40049,14506], + [40051,22769], + [40053,2539], + [40055,2002], + [40057,1338], + [40059,1878], + [40061,5651], + [40063,4858], + [40065,12580], + [40067,2354], + [40069,5097], + [40071,22926], + [40073,8357], + [40075,3963], + [40077,4210], + [40079,21178], + [40081,13908], + [40083,16991], + [40085,5098], + [40087,14734], + [40089,13853], + [40091,8498], + [40093,3967], + [40095,6379], + [40097,18255], + [40099,8113], + [40101,29586], + [40103,5932], + [40105,4912], + [40107,4665], + [40109,323354], + [40111,16063], + [40113,20153], + [40115,16941], + [40117,7376], + [40119,37680], + [40121,22653], + [40123,20008], + [40125,32774], + [40127,5226], + [40129,1869], + [40131,39870], + [40133,10568], + [40135,17912], + [40137,21561], + [40139,9376], + [40141,3456], + [40143,291603], + [40145,32564], + [40147,26923], + [40149,5957], + [40151,4424], + [40153,12002], + [41001,7292], + [41003,42323], + [41005,196402], + [41007,19891], + [41009,23745], + [41011,28219], + [41013,9790], + [41015,9510], + [41017,81675], + [41019,47035], + [41021,1046], + [41023,3437], + [41025,3317], + [41027,12884], + [41029,101473], + [41031,9289], + [41033,34862], + [41035,30573], + [41037,3639], + [41039,181463], + [41041,22510], + [41043,53653], + [41045,12719], + [41047,151768], + [41049,5326], + [41051,379156], + [41053,38469], + [41055,930], + [41057,12433], + [41059,36645], + [41061,12235], + [41063,3648], + [41065,13239], + [41067,283981], + [41069,611], + [41071,46583], + [42001,55892], + [42003,633672], + [42005,32834], + [42007,88933], + [42009,23545], + [42011,203068], + [42013,65094], + [42015,30827], + [42017,347367], + [42019,96948], + [42021,68335], + [42023,2555], + [42025,31081], + [42027,73700], + [42029,267222], + [42031,20286], + [42033,40780], + [42035,19149], + [42037,35206], + [42039,42787], + [42041,123188], + [42043,135823], + [42045,283132], + [42047,17483], + [42049,140590], + [42051,65659], + [42053,2394], + [42055,80752], + [42057,8104], + [42059,18128], + [42061,22187], + [42063,45705], + [42065,23094], + [42067,12488], + [42069,106909], + [42071,269595], + [42073,44068], + [42075,72124], + [42077,175800], + [42079,159118], + [42081,59328], + [42083,21676], + [42085,55433], + [42087,22514], + [42089,81613], + [42091,430052], + [42093,9214], + [42095,151894], + [42097,47308], + [42099,24560], + [42101,620518], + [42103,27631], + [42105,7756], + [42107,73592], + [42109,19834], + [42111,38870], + [42113,2996], + [42115,21647], + [42117,20374], + [42119,17676], + [42121,26073], + [42123,21423], + [42125,104070], + [42127,25655], + [42129,185838], + [42131,14413], + [42133,225424], + [44001,27647], + [44003,97802], + [44005,45374], + [44007,328144], + [44009,74206], + [45001,11511], + [45003,74572], + [45005,3546], + [45007,84980], + [45009,6232], + [45011,8818], + [45013,63906], + [45015,77641], + [45017,6896], + [45019,173525], + [45021,25257], + [45023,15475], + [45025,18468], + [45027,12641], + [45029,16458], + [45031,30770], + [45033,12978], + [45035,62138], + [45037,10975], + [45039,11118], + [45041,62583], + [45043,29139], + [45045,220826], + [45047,30936], + [45049,7855], + [45051,130268], + [45053,10062], + [45055,29633], + [45057,29787], + [45059,33357], + [45061,8137], + [45063,131525], + [45065,3496], + [45067,12854], + [45069,11832], + [45071,18019], + [45073,30225], + [45075,40302], + [45077,58130], + [45079,179489], + [45081,9116], + [45083,134253], + [45085,44599], + [45087,11657], + [45089,15258], + [45091,104653], + [46003,1381], + [46005,9448], + [46007,1389], + [46009,3091], + [46011,19704], + [46013,21248], + [46015,2814], + [46017,489], + [46019,5341], + [46021,836], + [46023,4030], + [46025,1834], + [46027,7614], + [46029,16778], + [46031,1352], + [46033,4712], + [46035,11285], + [46037,2874], + [46039,2677], + [46041,2515], + [46043,1675], + [46045,2062], + [46047,3753], + [46049,1119], + [46051,4227], + [46053,2374], + [46055,1166], + [46057,3003], + [46059,1873], + [46061,1977], + [46063,748], + [46065,10230], + [46067,3783], + [46069,734], + [46071,1207], + [46073,1379], + [46075,702], + [46077,2952], + [46079,6889], + [46081,13460], + [46083,21201], + [46085,1971], + [46087,2789], + [46089,1130], + [46091,2070], + [46093,12470], + [46095,887], + [46097,1200], + [46099,99419], + [46101,4060], + [46102,"NA"], + [46103,54352], + [46105,1646], + [46107,1306], + [46109,4878], + [46111,1471], + [46115,3393], + [46117,1927], + [46119,992], + [46121,3428], + [46123,3007], + [46125,4305], + [46127,8207], + [46129,2714], + [46135,12299], + [46137,865], + [47001,35887], + [47003,22991], + [47005,7003], + [47007,4943], + [47009,62908], + [47011,48328], + [47013,17046], + [47015,6445], + [47017,13841], + [47019,29725], + [47021,20541], + [47023,7918], + [47025,13246], + [47027,3528], + [47029,16605], + [47031,26001], + [47033,6596], + [47035,23213], + [47037,325361], + [47039,5790], + [47041,10422], + [47043,23382], + [47045,17554], + [47047,18005], + [47049,7842], + [47051,20283], + [47053,21111], + [47055,13464], + [47057,10219], + [47059,31718], + [47061,5994], + [47063,30399], + [47065,168789], + [47067,2466], + [47069,11647], + [47071,12014], + [47073,26405], + [47075,9911], + [47077,12167], + [47079,14172], + [47081,10107], + [47083,3916], + [47085,9183], + [47087,4991], + [47089,24508], + [47091,7415], + [47093,229804], + [47095,2721], + [47097,10478], + [47099,16755], + [47101,5441], + [47103,17528], + [47105,23300], + [47107,24906], + [47109,12420], + [47111,10569], + [47113,49023], + [47115,13154], + [47117,13070], + [47119,36916], + [47121,4929], + [47123,19630], + [47125,68883], + [47127,3196], + [47129,8494], + [47131,15737], + [47133,10189], + [47135,3157], + [47137,1937], + [47139,7148], + [47141,35659], + [47143,13174], + [47145,27068], + [47147,33095], + [47149,130630], + [47151,8771], + [47153,6185], + [47155,48350], + [47157,446771], + [47159,9148], + [47161,5896], + [47163,74033], + [47165,79517], + [47167,28295], + [47169,3686], + [47171,8429], + [47173,8826], + [47175,2505], + [47177,17935], + [47179,61604], + [47181,6671], + [47183,15734], + [47185,10612], + [47187,88210], + [47189,57487], + [48001,20033], + [48003,6678], + [48005,39625], + [48007,10996], + [48009,5100], + [48011,1068], + [48013,18717], + [48015,12820], + [48017,3277], + [48019,9579], + [48021,33376], + [48023,2024], + [48025,11178], + [48027,118579], + [48029,733499], + [48031,4764], + [48033,372], + [48035,8167], + [48037,42908], + [48039,137904], + [48041,88105], + [48043,5217], + [48045,712], + [48047,3081], + [48049,18504], + [48051,7732], + [48053,21718], + [48055,15408], + [48057,9245], + [48059,6924], + [48061,142753], + [48063,5549], + [48065,3349], + [48067,12972], + [48069,3423], + [48071,13816], + [48073,20252], + [48075,3010], + [48077,6212], + [48079,1477], + [48081,1377], + [48083,4367], + [48085,395832], + [48087,1534], + [48089,10442], + [48091,52364], + [48093,6462], + [48095,1315], + [48097,21646], + [48099,23247], + [48101,819], + [48103,1645], + [48105,2068], + [48107,2638], + [48109,1752], + [48111,3236], + [48113,1137194], + [48115,5074], + [48117,8706], + [48119,2301], + [48121,337573], + [48123,8987], + [48125,1176], + [48127,3956], + [48129,1805], + [48131,5133], + [48133,8119], + [48135,66597], + [48137,1001], + [48139,69138], + [48141,291099], + [48143,17914], + [48145,6796], + [48147,13376], + [48149,12051], + [48151,1972], + [48153,3131], + [48155,686], + [48157,252965], + [48159,5430], + [48161,9890], + [48163,6504], + [48165,6399], + [48167,138036], + [48169,2425], + [48171,12904], + [48173,600], + [48175,3440], + [48177,9680], + [48179,11155], + [48181,55226], + [48183,62388], + [48185,10447], + [48187,55441], + [48189,16208], + [48191,1398], + [48193,4024], + [48195,2505], + [48197,2321], + [48199,25726], + [48201,1898209], + [48203,32064], + [48205,2287], + [48207,3054], + [48209,73243], + [48211,2646], + [48213,34143], + [48215,271679], + [48217,15362], + [48219,11376], + [48221,23773], + [48223,16946], + [48225,7853], + [48227,13881], + [48229,1525], + [48231,37612], + [48233,11086], + [48235,924], + [48237,4969], + [48239,6632], + [48241,15478], + [48243,1180], + [48245,112121], + [48247,2735], + [48249,21118], + [48251,71728], + [48253,7624], + [48255,5193], + [48257,45212], + [48259,15371], + [48261,236], + [48263,423], + [48265,22532], + [48267,2229], + [48269,175], + [48271,1354], + [48273,15963], + [48275,1806], + [48277,24128], + [48279,6969], + [48281,10107], + [48283,2754], + [48285,10104], + [48287,8865], + [48289,7562], + [48291,30617], + [48293,10322], + [48295,1840], + [48297,5027], + [48299,8151], + [48301,41], + [48303,136021], + [48305,2674], + [48307,3700], + [48309,110278], + [48311,336], + [48313,4980], + [48315,5072], + [48317,2130], + [48319,2372], + [48321,16480], + [48323,19826], + [48325,19395], + [48327,1066], + [48329,71276], + [48331,12218], + [48333,2291], + [48335,3273], + [48337,10256], + [48339,202727], + [48341,10644], + [48343,6044], + [48345,683], + [48347,30250], + [48349,20632], + [48351,5750], + [48353,7535], + [48355,157697], + [48357,5226], + [48359,932], + [48361,40595], + [48363,13864], + [48365,12376], + [48367,52087], + [48369,4352], + [48371,6555], + [48373,16600], + [48375,56684], + [48377,3209], + [48379,5118], + [48381,66973], + [48383,2395], + [48385,1372], + [48387,6056], + [48389,4089], + [48391,3863], + [48393,561], + [48395,6906], + [48397,36927], + [48399,4415], + [48401,23413], + [48403,3384], + [48405,3498], + [48407,9972], + [48409,29076], + [48411,2470], + [48413,1415], + [48415,7288], + [48417,2045], + [48419,12175], + [48421,1341], + [48423,96729], + [48425,3887], + [48427,21264], + [48429,4470], + [48431,790], + [48433,878], + [48435,3105], + [48437,3486], + [48439,868680], + [48441,65430], + [48443,357], + [48445,5712], + [48447,969], + [48449,14278], + [48451,51711], + [48453,528962], + [48455,5840], + [48457,8044], + [48459,19147], + [48461,1661], + [48463,10957], + [48465,20220], + [48467,25331], + [48469,44439], + [48471,25823], + [48473,16028], + [48475,4860], + [48477,16030], + [48479,89295], + [48481,20580], + [48483,3052], + [48485,61745], + [48487,7660], + [48489,7539], + [48491,193070], + [48493,18150], + [48495,3341], + [48497,27323], + [48499,17919], + [48501,3874], + [48503,9541], + [48505,4943], + [48507,3713], + [49001,3175], + [49003,23460], + [49005,60730], + [49007,9635], + [49009,518], + [49011,144613], + [49013,9218], + [49015,5134], + [49017,2727], + [49019,5170], + [49021,21007], + [49023,4112], + [49025,3491], + [49027,6207], + [49029,3994], + [49031,927], + [49033,1444], + [49035,550691], + [49037,4970], + [49039,10955], + [49041,9479], + [49043,21785], + [49045,26910], + [49047,17270], + [49049,223138], + [49051,10732], + [49053,63506], + [49055,1399], + [49057,112739], + [50001,21557], + [50003,20477], + [50005,16729], + [50007,88330], + [50009,3264], + [50011,25965], + [50013,4197], + [50015,15112], + [50017,16481], + [50019,14364], + [50021,35702], + [50023,34153], + [50025,24701], + [50027,32699], + [51001,18780], + [51003,51326], + [51005,6979], + [51007,6564], + [51009,15528], + [51011,6997], + [51013,131366], + [51015,37183], + [51017,2930], + [51019,37721], + [51021,3385], + [51023,17421], + [51025,6873], + [51027,8657], + [51029,6998], + [51031,27253], + [51033,13902], + [51035,13901], + [51036,3809], + [51037,5268], + [51041,165682], + [51043,8017], + [51045,2559], + [51047,20225], + [51049,4592], + [51051,5787], + [51053,12841], + [51057,5491], + [51059,581377], + [51061,36930], + [51063,7107], + [51065,13799], + [51067,26388], + [51069,41122], + [51071,8144], + [51073,20549], + [51075,11126], + [51077,7121], + [51079,10420], + [51081,4288], + [51083,15403], + [51085,54737], + [51087,162619], + [51089,25752], + [51091,1127], + [51093,18589], + [51095,31343], + [51097,3330], + [51099,9352], + [51101,8461], + [51103,5318], + [51105,9585], + [51107,163971], + [51109,16152], + [51111,5508], + [51113,7352], + [51115,4427], + [51117,13192], + [51119,5041], + [51121,44293], + [51125,7904], + [51127,9415], + [51131,5959], + [51133,5947], + [51135,6577], + [51137,15396], + [51139,11328], + [51141,9049], + [51143,30955], + [51145,14287], + [51147,9053], + [51149,14693], + [51153,200311], + [51155,17706], + [51157,4314], + [51159,3500], + [51161,48977], + [51163,11240], + [51165,41530], + [51167,11772], + [51169,9804], + [51171,20009], + [51173,15065], + [51175,7673], + [51177,64669], + [51179,64503], + [51181,3730], + [51183,4464], + [51185,20298], + [51187,19438], + [51191,26738], + [51193,8313], + [51195,17456], + [51197,15475], + [51199,31002], + [51510,89476], + [51520,7966], + [51530,3376], + [51540,21246], + [51550,114338], + [51570,9205], + [51580,2704], + [51590,19709], + [51595,2456], + [51600,13902], + [51610,6661], + [51620,3924], + [51630,12429], + [51640,3124], + [51650,68492], + [51660,22762], + [51670,10437], + [51678,2367], + [51680,33610], + [51683,19776], + [51685,6562], + [51690,5919], + [51700,87554], + [51710,99742], + [51720,1565], + [51730,14087], + [51735,6327], + [51740,46428], + [51750,7757], + [51760,98875], + [51770,46289], + [51775,13370], + [51790,11609], + [51800,39794], + [51810,222978], + [51820,10090], + [51830,5112], + [51840,14328], + [53001,8021], + [53003,10264], + [53005,86073], + [53007,40622], + [53009,30007], + [53011,209985], + [53013,1531], + [53015,43809], + [53017,20956], + [53019,2975], + [53021,32463], + [53023,1018], + [53025,40534], + [53027,31481], + [53029,32973], + [53031,13696], + [53033,1067240], + [53035,123028], + [53037,20360], + [53039,9756], + [53041,31212], + [53043,4704], + [53045,25189], + [53047,20642], + [53049,9293], + [53051,5290], + [53053,387377], + [53055,8486], + [53057,57934], + [53059,5059], + [53061,363266], + [53063,233681], + [53065,18631], + [53067,128000], + [53069,1667], + [53071,29172], + [53073,106348], + [53075,20298], + [53077,120128], + [54001,6733], + [54003,45993], + [54005,9453], + [54007,6019], + [54009,10948], + [54011,45655], + [54013,2754], + [54015,3500], + [54017,2823], + [54019,18141], + [54021,3106], + [54023,5310], + [54025,15614], + [54027,9693], + [54029,14419], + [54031,7222], + [54033,30762], + [54035,12055], + [54037,25251], + [54039,92044], + [54041,7374], + [54043,8018], + [54045,12888], + [54047,6944], + [54049,26269], + [54051,14867], + [54053,10357], + [54055,24823], + [54057,13397], + [54059,8806], + [54061,47423], + [54063,5954], + [54065,7084], + [54067,10793], + [54069,21089], + [54071,3807], + [54073,3163], + [54075,3747], + [54077,14859], + [54079,27468], + [54081,32751], + [54083,13086], + [54085,4628], + [54087,5595], + [54089,4754], + [54091,6946], + [54093,2994], + [54095,3675], + [54097,10830], + [54099,17752], + [54101,3373], + [54103,6311], + [54105,2489], + [54107,41151], + [54109,8204], + [55001,10105], + [55003,9059], + [55005,25035], + [55007,8168], + [55009,139064], + [55011,8234], + [55013,8110], + [55015,25551], + [55017,33801], + [55019,17798], + [55021,31157], + [55023,9725], + [55025,292809], + [55027,46916], + [55029,17012], + [55031,23176], + [55033,25963], + [55035,57275], + [55037,2500], + [55039,56882], + [55041,5027], + [55043,28222], + [55045,20355], + [55047,10498], + [55049,14048], + [55051,3065], + [55053,9863], + [55055,42244], + [55057,13299], + [55059,84396], + [55061,11720], + [55063,64425], + [55065,9314], + [55067,10689], + [55069,15570], + [55071,44712], + [55073,75971], + [55075,22337], + [55077,7925], + [55078,1650], + [55079,469736], + [55081,24073], + [55083,20353], + [55085,19432], + [55087,97153], + [55089,47848], + [55091,4121], + [55093,23806], + [55095,24222], + [55097,41954], + [55099,8232], + [55101,100263], + [55103,9940], + [55105,84388], + [55107,7306], + [55109,47330], + [55111,35050], + [55113,9571], + [55115,22167], + [55117,66076], + [55119,10471], + [55121,16308], + [55123,14217], + [55125,11588], + [55127,56079], + [55129,7902], + [55131,73845], + [55133,214220], + [55135,28194], + [55137,12718], + [55139,93681], + [55141,41927], + [56001,18535], + [56003,4865], + [56005,25965], + [56007,8234], + [56009,6892], + [56011,3396], + [56013,17893], + [56015,5861], + [56017,2350], + [56019,3888], + [56021,41835], + [56023,8892], + [56025,39943], + [56027,1190], + [56029,14091], + [56031,3913], + [56033,15654], + [56035,6608], + [56037,23712], + [56039,14375], + [56041,11113], + [56043,4194], + [56045,3159] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2008.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2008.json new file mode 100644 index 0000000..42f501b --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2008.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2008"], + [1001,24687], + [1003,83223], + [1005,10161], + [1007,8749], + [1009,26698], + [1011,3634], + [1013,9051], + [1015,54564], + [1017,15012], + [1019,11996], + [1021,19610], + [1023,5069], + [1025,10351], + [1027,5733], + [1029,6557], + [1031,20911], + [1033,25160], + [1035,4878], + [1037,4659], + [1039,16800], + [1041,6464], + [1043,39096], + [1045,19832], + [1047,15473], + [1049,30682], + [1051,36220], + [1053,14412], + [1055,45727], + [1057,7118], + [1059,13380], + [1061,11337], + [1063,3280], + [1065,6991], + [1067,7376], + [1069,46452], + [1071,26857], + [1073,311615], + [1075,5692], + [1077,42873], + [1079,15867], + [1081,65189], + [1083,37427], + [1085,4851], + [1087,9104], + [1089,168340], + [1091,7979], + [1093,12715], + [1095,41700], + [1097,187266], + [1099,8789], + [1101,106155], + [1103,56997], + [1105,3592], + [1107,7925], + [1109,15805], + [1111,9609], + [1113,21693], + [1115,36482], + [1117,101156], + [1119,4721], + [1121,38278], + [1123,18179], + [1125,89185], + [1127,28758], + [1129,6883], + [1131,3482], + [1133,9984], + [2013,1144], + [2016,3061], + [2020,152111], + [2050,6935], + [2060,1009], + [2068,1606], + [2070,2068], + [2090,45993], + [2100,1358], + [2105,"NA"], + [2110,18784], + [2122,26330], + [2130,8297], + [2150,6399], + [2158,"NA"], + [2164,1137], + [2170,41532], + [2180,3991], + [2185,5145], + [2188,2982], + [2195,"NA"], + [2198,"NA"], + [2220,4621], + [2230,"NA"], + [2240,3555], + [2261,5259], + [2275,"NA"], + [2282,320], + [2290,2786], + [4001,21264], + [4003,60278], + [4005,73208], + [4007,22326], + [4009,16139], + [4011,4408], + [4012,7551], + [4013,1970741], + [4015,92592], + [4017,39302], + [4019,474464], + [4021,122313], + [4023,17888], + [4025,98076], + [4027,84314], + [5001,12161], + [5003,9465], + [5005,17704], + [5007,106704], + [5009,17048], + [5011,5622], + [5013,2613], + [5015,14261], + [5017,4967], + [5019,11054], + [5021,6685], + [5023,12111], + [5025,4135], + [5027,10929], + [5029,10237], + [5031,46575], + [5033,28721], + [5035,22601], + [5037,8559], + [5039,3908], + [5041,5942], + [5043,8503], + [5045,56244], + [5047,8566], + [5049,5245], + [5051,42783], + [5053,8691], + [5055,19127], + [5057,10733], + [5059,15211], + [5061,6379], + [5063,17121], + [5065,5476], + [5067,7928], + [5069,35341], + [5071,11631], + [5073,3070], + [5075,7307], + [5077,3618], + [5079,5009], + [5081,6747], + [5083,10435], + [5085,32460], + [5087,7760], + [5089,6963], + [5091,20242], + [5093,22063], + [5095,3860], + [5097,4203], + [5099,4280], + [5101,3504], + [5103,11979], + [5105,4822], + [5107,9047], + [5109,5121], + [5111,10796], + [5113,8919], + [5115,30504], + [5117,4425], + [5119,191923], + [5121,7596], + [5123,10429], + [5125,50037], + [5127,4889], + [5129,3638], + [5131,62219], + [5133,7640], + [5135,6319], + [5137,4744], + [5139,19294], + [5141,7083], + [5143,103877], + [5145,33288], + [5147,3520], + [5149,10652], + [6001,756411], + [6003,465], + [6005,17797], + [6007,102816], + [6009,20621], + [6011,10495], + [6013,523720], + [6015,11361], + [6017,90600], + [6019,429670], + [6021,12182], + [6023,59953], + [6025,72434], + [6027,9087], + [6029,359141], + [6031,58735], + [6033,24525], + [6035,12820], + [6037,4928959], + [6039,65020], + [6041,132204], + [6043,9273], + [6045,43213], + [6047,102153], + [6049,3937], + [6051,8605], + [6053,212064], + [6055,75546], + [6057,50353], + [6059,1615488], + [6061,176976], + [6063,9812], + [6065,911507], + [6067,679394], + [6069,24840], + [6071,862104], + [6073,1545849], + [6075,456989], + [6077,292848], + [6079,136402], + [6081,372360], + [6083,218082], + [6085,868908], + [6087,146119], + [6089,82577], + [6091,1589], + [6093,19204], + [6095,211059], + [6097,259633], + [6099,231707], + [6101,41058], + [6103,25153], + [6105,4850], + [6107,198899], + [6109,25767], + [6111,428792], + [6113,98299], + [6115,27700], + [8001,225880], + [8003,8356], + [8005,312650], + [8007,6524], + [8009,2241], + [8011,2342], + [8013,177472], + [8014,30844], + [8015,8362], + [8017,1257], + [8019,5652], + [8021,3634], + [8023,1280], + [8025,1821], + [8027,1912], + [8029,16501], + [8031,323342], + [8033,985], + [8035,160990], + [8037,31666], + [8039,13020], + [8041,300206], + [8043,19738], + [8045,36753], + [8047,3469], + [8049,9147], + [8051,9503], + [8053,643], + [8055,3435], + [8057,1082], + [8059,307854], + [8061,849], + [8063,4348], + [8065,4101], + [8067,31427], + [8069,175517], + [8071,8795], + [8073,2890], + [8075,11200], + [8077,81800], + [8079,475], + [8081,8726], + [8083,12902], + [8085,20767], + [8087,14083], + [8089,8705], + [8091,3017], + [8093,9678], + [8095,2238], + [8097,11570], + [8099,6529], + [8101,73280], + [8103,5114], + [8105,6423], + [8107,15589], + [8109,3040], + [8111,568], + [8113,5519], + [8115,1533], + [8117,16996], + [8119,12279], + [8121,2656], + [8123,118948], + [8125,6505], + [9001,471297], + [9003,460358], + [9005,105675], + [9007,94548], + [9009,449379], + [9011,150194], + [9013,85296], + [9015,64707], + [10001,75463], + [10003,277739], + [10005,93841], + [11001,330544], + [12001,131246], + [12003,12245], + [12005,88653], + [12007,12475], + [12009,268840], + [12011,1006721], + [12013,5757], + [12015,69531], + [12017,56616], + [12019,95993], + [12021,148368], + [12023,31560], + [12027,14778], + [12029,5496], + [12031,446829], + [12033,138002], + [12035,31935], + [12037,4817], + [12039,21106], + [12041,7828], + [12043,4675], + [12045,6368], + [12047,4791], + [12049,11758], + [12051,17565], + [12053,63163], + [12055,40939], + [12057,599256], + [12059,8999], + [12061,62940], + [12063,22155], + [12065,6844], + [12067,2978], + [12069,136844], + [12071,286092], + [12073,147218], + [12075,16891], + [12077,3851], + [12079,7034], + [12081,144269], + [12083,138375], + [12085,63675], + [12086,1228554], + [12087,46650], + [12089,36276], + [12091,96861], + [12093,17662], + [12095,603287], + [12097,138080], + [12099,628411], + [12101,197619], + [12103,447744], + [12105,273427], + [12107,32057], + [12109,96362], + [12111,124487], + [12113,70359], + [12115,167160], + [12117,241178], + [12119,30934], + [12121,17008], + [12123,9139], + [12125,5309], + [12127,254567], + [12129,15916], + [12131,31129], + [12133,9881], + [13001,9354], + [13003,3388], + [13005,4794], + [13007,1677], + [13009,21101], + [13011,11055], + [13013,35332], + [13015,46936], + [13017,7536], + [13019,8665], + [13021,75685], + [13023,5406], + [13025,7677], + [13027,8406], + [13029,17096], + [13031,33157], + [13033,10002], + [13035,10456], + [13037,2407], + [13039,21373], + [13043,4348], + [13045,53935], + [13047,35778], + [13049,4587], + [13051,134606], + [13053,2558], + [13055,11279], + [13057,112409], + [13059,66162], + [13061,1477], + [13063,136611], + [13065,2798], + [13067,381680], + [13069,16729], + [13071,20769], + [13073,60937], + [13075,7252], + [13077,61411], + [13079,6278], + [13081,10223], + [13083,8451], + [13085,11376], + [13087,12114], + [13089,392969], + [13091,9419], + [13093,4805], + [13095,42288], + [13097,66368], + [13099,5524], + [13101,2217], + [13103,29084], + [13105,10087], + [13107,10803], + [13109,5023], + [13111,10959], + [13113,53285], + [13115,50328], + [13117,88509], + [13119,10465], + [13121,497388], + [13123,14116], + [13125,1130], + [13127,41495], + [13129,26642], + [13131,11997], + [13133,7624], + [13135,425860], + [13137,20854], + [13139,93111], + [13141,3361], + [13143,12951], + [13145,16428], + [13147,10704], + [13149,4962], + [13151,99348], + [13153,69986], + [13155,4236], + [13157,27695], + [13159,6617], + [13161,5313], + [13163,7180], + [13165,2864], + [13167,3715], + [13169,14571], + [13171,7962], + [13173,4227], + [13175,22440], + [13177,18073], + [13179,25479], + [13181,3910], + [13183,6521], + [13185,54974], + [13187,13460], + [13189,10794], + [13191,5469], + [13193,5154], + [13195,16325], + [13197,3338], + [13199,9662], + [13201,3600], + [13205,10571], + [13207,13952], + [13209,4559], + [13211,9626], + [13213,20422], + [13215,86288], + [13217,47716], + [13219,18886], + [13221,7986], + [13223,68486], + [13225,12172], + [13227,15497], + [13229,8710], + [13231,8264], + [13233,21500], + [13235,4607], + [13237,10496], + [13239,1031], + [13241,6973], + [13243,2790], + [13245,92255], + [13247,40840], + [13249,1881], + [13251,7383], + [13253,4105], + [13255,28974], + [13257,13809], + [13259,2322], + [13261,14741], + [13263,3192], + [13265,848], + [13267,9279], + [13269,3447], + [13271,4713], + [13273,4437], + [13275,22221], + [13277,19076], + [13279,14049], + [13281,5831], + [13283,2891], + [13285,30594], + [13287,4800], + [13289,4766], + [13291,11173], + [13293,12032], + [13295,33436], + [13297,42256], + [13299,15255], + [13301,2490], + [13303,8224], + [13305,12251], + [13307,1307], + [13309,2932], + [13311,12672], + [13313,46317], + [13315,3280], + [13317,4691], + [13319,4763], + [13321,10253], + [15001,84886], + [15003,443915], + [15005,"NA"], + [15007,32661], + [15009,78229], + [16001,196434], + [16003,1913], + [16005,39594], + [16007,3302], + [16009,4080], + [16011,22383], + [16013,13726], + [16015,3482], + [16017,20417], + [16019,50146], + [16021,4589], + [16023,1369], + [16025,630], + [16027,84097], + [16029,3899], + [16031,10986], + [16033,596], + [16035,3217], + [16037,2438], + [16039,11381], + [16041,5690], + [16043,5763], + [16045,7038], + [16047,8735], + [16049,7134], + [16051,11279], + [16053,9966], + [16055,70769], + [16057,17180], + [16059,3664], + [16061,1688], + [16063,2570], + [16065,16673], + [16067,10078], + [16069,18560], + [16071,2304], + [16073,4363], + [16075,10446], + [16077,3541], + [16079,6192], + [16081,5304], + [16083,38108], + [16085,4781], + [16087,4645], + [17001,38756], + [17003,3108], + [17005,8779], + [17007,26752], + [17009,3537], + [17011,19294], + [17013,2578], + [17015,8507], + [17017,7610], + [17019,105661], + [17021,17945], + [17023,8588], + [17025,6766], + [17027,19322], + [17029,27740], + [17031,2615675], + [17033,9706], + [17035,5653], + [17037,60336], + [17039,8651], + [17041,10467], + [17043,529285], + [17045,10278], + [17047,3284], + [17049,18542], + [17051,10234], + [17053,7182], + [17055,17928], + [17057,17958], + [17059,2614], + [17061,6945], + [17063,26237], + [17065,4223], + [17067,9859], + [17069,1712], + [17071,3909], + [17073,27596], + [17075,16753], + [17077,32470], + [17079,5201], + [17081,20827], + [17083,11790], + [17085,13420], + [17087,5121], + [17089,271767], + [17091,55903], + [17093,59585], + [17095,25565], + [17097,371016], + [17099,59085], + [17101,8290], + [17103,18220], + [17105,19387], + [17107,13397], + [17109,16892], + [17111,180529], + [17113,90615], + [17115,54586], + [17117,24577], + [17119,139675], + [17121,18550], + [17123,7235], + [17125,7388], + [17127,7412], + [17129,6926], + [17131,8928], + [17133,18600], + [17135,13443], + [17137,17943], + [17139,8014], + [17141,27925], + [17143,98134], + [17145,9578], + [17147,8957], + [17149,8541], + [17151,1937], + [17153,2894], + [17155,3206], + [17157,15327], + [17159,7529], + [17161,79328], + [17163,125059], + [17165,12526], + [17167,107713], + [17169,4346], + [17171,2737], + [17173,11164], + [17175,2980], + [17177,25454], + [17179,73747], + [17181,8331], + [17183,37389], + [17185,6128], + [17187,9250], + [17189,8337], + [17191,8313], + [17193,7829], + [17195,30286], + [17197,365147], + [17199,35360], + [17201,147735], + [17203,21724], + [18001,15521], + [18003,181298], + [18005,39559], + [18007,4405], + [18009,6484], + [18011,28429], + [18013,7587], + [18015,10170], + [18017,18803], + [18019,56064], + [18021,12870], + [18023,16879], + [18025,5388], + [18027,15202], + [18029,26244], + [18031,12681], + [18033,20618], + [18035,55469], + [18037,22293], + [18039,97832], + [18041,10078], + [18043,38348], + [18045,8652], + [18047,11887], + [18049,10276], + [18051,16830], + [18053,32384], + [18055,16012], + [18057,145147], + [18059,36422], + [18061,19652], + [18063,74001], + [18065,22721], + [18067,37112], + [18069,20177], + [18071,21790], + [18073,15750], + [18075,11751], + [18077,16745], + [18079,13793], + [18081,75191], + [18083,20188], + [18085,42069], + [18087,16600], + [18089,228369], + [18091,52700], + [18093,22064], + [18095,61422], + [18097,463200], + [18099,23183], + [18101,5144], + [18103,16602], + [18105,69809], + [18107,19090], + [18109,37519], + [18111,6971], + [18113,22750], + [18115,3044], + [18117,10401], + [18119,11415], + [18121,8053], + [18123,9706], + [18125,6032], + [18127,84369], + [18129,13361], + [18131,6799], + [18133,17701], + [18135,12716], + [18137,14051], + [18139,9232], + [18141,132903], + [18143,11099], + [18145,23816], + [18147,10517], + [18149,10701], + [18151,16177], + [18153,8869], + [18155,5695], + [18157,83556], + [18159,7599], + [18161,3603], + [18163,91482], + [18165,7810], + [18167,50403], + [18169,16541], + [18171,4795], + [18173,31044], + [18175,14106], + [18177,33280], + [18179,14738], + [18181,12411], + [18183,17877], + [19001,4377], + [19003,2112], + [19005,7886], + [19007,6028], + [19009,3229], + [19011,14425], + [19013,73726], + [19015,15658], + [19017,13913], + [19019,11177], + [19021,10629], + [19023,8502], + [19025,5284], + [19027,12348], + [19029,7607], + [19031,11324], + [19033,25711], + [19035,6493], + [19037,6891], + [19039,4908], + [19041,9728], + [19043,9972], + [19045,28110], + [19047,9391], + [19049,33950], + [19051,4069], + [19053,4273], + [19055,10841], + [19057,20878], + [19059,9694], + [19061,52196], + [19063,5940], + [19065,10930], + [19067,8613], + [19069,5848], + [19071,3910], + [19073,5079], + [19075,6875], + [19077,5797], + [19079,8578], + [19081,5948], + [19083,9265], + [19085,7748], + [19087,10161], + [19089,5215], + [19091,5165], + [19093,4200], + [19095,8658], + [19097,11304], + [19099,17742], + [19101,8435], + [19103,79270], + [19105,10548], + [19107,5641], + [19109,9039], + [19111,17461], + [19113,121196], + [19115,6374], + [19117,4656], + [19119,6830], + [19121,8330], + [19123,11816], + [19125,17807], + [19127,20502], + [19129,8110], + [19131,5761], + [19133,4614], + [19135,4215], + [19137,5411], + [19139,23935], + [19141,7798], + [19143,3394], + [19145,8154], + [19147,5440], + [19149,14333], + [19151,4239], + [19153,240951], + [19155,48610], + [19157,10485], + [19159,2426], + [19161,5782], + [19163,90457], + [19165,7585], + [19167,19727], + [19169,48815], + [19171,8941], + [19173,3370], + [19175,6710], + [19177,3950], + [19179,18877], + [19181,25753], + [19183,12018], + [19185,3246], + [19187,20058], + [19189,5922], + [19191,12390], + [19193,55927], + [19195,4576], + [19197,7113], + [20001,7408], + [20003,4339], + [20005,8854], + [20007,2754], + [20009,15624], + [20011,8517], + [20013,5558], + [20015,32739], + [20017,1469], + [20019,1860], + [20021,11210], + [20023,1476], + [20025,1251], + [20027,5170], + [20029,5581], + [20031,5373], + [20033,1112], + [20035,18142], + [20037,19905], + [20039,1784], + [20041,10715], + [20043,4487], + [20045,61712], + [20047,1756], + [20049,1462], + [20051,17372], + [20053,3872], + [20055,19131], + [20057,18094], + [20059,13782], + [20061,13568], + [20063,1516], + [20065,1520], + [20067,4002], + [20069,3323], + [20071,731], + [20073,3628], + [20075,1288], + [20077,3438], + [20079,18086], + [20081,2193], + [20083,944], + [20085,6872], + [20087,9615], + [20089,1950], + [20091,301599], + [20093,2179], + [20095,4490], + [20097,1433], + [20099,11469], + [20101,1098], + [20103,32928], + [20105,1933], + [20107,4639], + [20109,1659], + [20111,18873], + [20113,16521], + [20115,6755], + [20117,5977], + [20119,2404], + [20121,16316], + [20123,3570], + [20125,17971], + [20127,2904], + [20129,1778], + [20131,5768], + [20133,9216], + [20135,1822], + [20137,2819], + [20139,8510], + [20141,2251], + [20143,3385], + [20145,3819], + [20147,3066], + [20149,10778], + [20151,5707], + [20153,1234], + [20155,34408], + [20157,2968], + [20159,5843], + [20161,37328], + [20163,2692], + [20165,1709], + [20167,3611], + [20169,31537], + [20171,2736], + [20173,254830], + [20175,11123], + [20177,92467], + [20179,1570], + [20181,3747], + [20183,2171], + [20185,2157], + [20187,1117], + [20189,2292], + [20191,11695], + [20193,4233], + [20195,1872], + [20197,3708], + [20199,850], + [20201,3340], + [20203,1266], + [20205,5525], + [20207,1674], + [20209,71160], + [21001,8853], + [21003,8367], + [21005,10877], + [21007,4134], + [21009,19414], + [21011,5028], + [21013,9603], + [21015,62871], + [21017,9550], + [21019,22798], + [21021,12745], + [21023,4243], + [21025,5619], + [21027,9153], + [21029,39338], + [21031,5458], + [21033,6661], + [21035,17810], + [21037,44380], + [21039,2270], + [21041,5538], + [21043,13304], + [21045,7125], + [21047,28973], + [21049,17091], + [21051,6798], + [21053,4710], + [21055,4026], + [21057,2945], + [21059,47303], + [21061,5316], + [21063,3143], + [21065,6164], + [21067,150018], + [21069,6456], + [21071,15268], + [21073,24787], + [21075,2711], + [21077,3916], + [21079,7575], + [21081,12771], + [21083,15807], + [21085,11115], + [21087,5530], + [21089,17499], + [21091,4191], + [21093,47522], + [21095,10052], + [21097,9261], + [21099,8237], + [21101,22832], + [21103,7767], + [21105,2094], + [21107,23112], + [21109,4103], + [21111,355732], + [21113,23019], + [21115,9498], + [21117,83664], + [21119,6280], + [21121,12731], + [21123,6962], + [21125,26047], + [21127,5870], + [21129,2676], + [21131,3544], + [21133,8700], + [21135,5517], + [21137,10501], + [21139,4717], + [21141,12367], + [21143,3277], + [21145,31062], + [21147,5709], + [21149,4555], + [21151,42850], + [21153,4261], + [21155,10228], + [21157,14718], + [21159,3512], + [21161,8777], + [21163,11518], + [21165,2582], + [21167,10453], + [21169,4395], + [21171,4741], + [21173,12230], + [21175,4903], + [21177,13098], + [21179,21546], + [21181,3078], + [21183,12504], + [21185,27753], + [21187,5297], + [21189,1528], + [21191,7296], + [21193,11184], + [21195,25688], + [21197,5440], + [21199,27087], + [21201,984], + [21203,7221], + [21205,12332], + [21207,8238], + [21209,22779], + [21211,21465], + [21213,9364], + [21215,9172], + [21217,13543], + [21219,5229], + [21221,6246], + [21223,4339], + [21225,7654], + [21227,57842], + [21229,5400], + [21231,8389], + [21233,6403], + [21235,15370], + [21237,2313], + [21239,13134], + [22001,27106], + [22003,8870], + [22005,50938], + [22007,10671], + [22009,16478], + [22011,14643], + [22013,6185], + [22015,54797], + [22017,121151], + [22019,94473], + [22021,4581], + [22023,3565], + [22025,4235], + [22027,6638], + [22029,7635], + [22031,11782], + [22033,218827], + [22035,3082], + [22037,8190], + [22039,12588], + [22041,7862], + [22043,8937], + [22045,35239], + [22047,12522], + [22049,6667], + [22051,217150], + [22053,15022], + [22055,113129], + [22057,50148], + [22059,6410], + [22061,19417], + [22063,58417], + [22065,4685], + [22067,11885], + [22069,17347], + [22071,133877], + [22073,71854], + [22075,8477], + [22077,9660], + [22079,62250], + [22081,3505], + [22083,8899], + [22085,9653], + [22087,17556], + [22089,24794], + [22091,4284], + [22093,9190], + [22095,21176], + [22097,38127], + [22099,24286], + [22101,23734], + [22103,111695], + [22105,53318], + [22107,2133], + [22109,56498], + [22111,10179], + [22113,24629], + [22115,20886], + [22117,16067], + [22119,20297], + [22121,10779], + [22123,4469], + [22125,4803], + [22127,6499], + [23001,58148], + [23003,34952], + [23005,157278], + [23007,14238], + [23009,29690], + [23011,63377], + [23013,20926], + [23015,18319], + [23017,28212], + [23019,78814], + [23021,7401], + [23023,19055], + [23025,24775], + [23027,19082], + [23029,14516], + [23031,112858], + [24001,35327], + [24003,283135], + [24005,430124], + [24009,48813], + [24011,16468], + [24013,95024], + [24015,50885], + [24017,77637], + [24019,16636], + [24021,123410], + [24023,16788], + [24025,133271], + [24027,161287], + [24029,11024], + [24031,515987], + [24033,450361], + [24035,26645], + [24037,52100], + [24039,11263], + [24041,19212], + [24043,67668], + [24045,52749], + [24047,27586], + [24510,278558], + [25001,121682], + [25003,72825], + [25005,290677], + [25007,11183], + [25009,377099], + [25011,38937], + [25013,224883], + [25015,88410], + [25017,824507], + [25019,8398], + [25021,357635], + [25023,261448], + [25025,371840], + [25027,402921], + [26001,4288], + [26003,4281], + [26005,55201], + [26007,14854], + [26009,11644], + [26011,7972], + [26013,4264], + [26015,29945], + [26017,54627], + [26019,8841], + [26021,79589], + [26023,21828], + [26025,68837], + [26027,26515], + [26029,14047], + [26031,12174], + [26033,17239], + [26035,12904], + [26037,37703], + [26039,6459], + [26041,19692], + [26043,14416], + [26045,58738], + [26047,19796], + [26049,202220], + [26051,10451], + [26053,7533], + [26055,48759], + [26057,19368], + [26059,20879], + [26061,17402], + [26063,16260], + [26065,152552], + [26067,30027], + [26069,10665], + [26071,5838], + [26073,38645], + [26075,76407], + [26077,133981], + [26079,8522], + [26081,320177], + [26083,1062], + [26085,3940], + [26087,43084], + [26089,11142], + [26091,48629], + [26093,92641], + [26095,2739], + [26097,6298], + [26099,412613], + [26101,11714], + [26103,35904], + [26105,14814], + [26107,19706], + [26109,13069], + [26111,43191], + [26113,6409], + [26115,75916], + [26117,26322], + [26119,4010], + [26121,88699], + [26123,22609], + [26125,609423], + [26127,14064], + [26129,9536], + [26131,3274], + [26133,9441], + [26135,3878], + [26137,12024], + [26139,134168], + [26141,6013], + [26143,10206], + [26145,94273], + [26147,81735], + [26149,30595], + [26151,21151], + [26153,3893], + [26155,35335], + [26157,27872], + [26159,39934], + [26161,186421], + [26163,863865], + [26165,14319], + [27001,7681], + [27003,189874], + [27005,16808], + [27007,21196], + [27009,23093], + [27011,2803], + [27013,37418], + [27015,14903], + [27017,17438], + [27019,50504], + [27021,14173], + [27023,7136], + [27025,27414], + [27027,32244], + [27029,4045], + [27031,3121], + [27033,6290], + [27035,32735], + [27037,230661], + [27039,11041], + [27041,20363], + [27043,7750], + [27045,10970], + [27047,16347], + [27049,25137], + [27051,3053], + [27053,656957], + [27055,10910], + [27057,9562], + [27059,21777], + [27061,22229], + [27063,6621], + [27065,8014], + [27067,23576], + [27069,2477], + [27071,6533], + [27073,4113], + [27075,6169], + [27077,2272], + [27079,14362], + [27081,3259], + [27083,14557], + [27085,20505], + [27087,2413], + [27089,5168], + [27091,11492], + [27093,12498], + [27095,12317], + [27097,17683], + [27099,20449], + [27101,5431], + [27103,19842], + [27105,11144], + [27107,3536], + [27109,79968], + [27111,29643], + [27113,8718], + [27115,14161], + [27117,5615], + [27119,16893], + [27121,6093], + [27123,271843], + [27125,2361], + [27127,8089], + [27129,8682], + [27131,32732], + [27133,4945], + [27135,9562], + [27137,104443], + [27139,74340], + [27141,49592], + [27143,8650], + [27145,83513], + [27147,20797], + [27149,5626], + [27151,5223], + [27153,12194], + [27155,1758], + [27157,12085], + [27159,6506], + [27161,10494], + [27163,129322], + [27165,5470], + [27167,3490], + [27169,28929], + [27171,67440], + [27173,5847], + [28001,13488], + [28003,15249], + [28005,5211], + [28007,7304], + [28009,2883], + [28011,15271], + [28013,5986], + [28015,4895], + [28017,7254], + [28019,3427], + [28021,3628], + [28023,7024], + [28025,7319], + [28027,10173], + [28029,12049], + [28031,8812], + [28033,78606], + [28035,36878], + [28037,3083], + [28039,9565], + [28041,4959], + [28043,9595], + [28045,18398], + [28047,86814], + [28049,116684], + [28051,7143], + [28053,4337], + [28055,687], + [28057,10069], + [28059,61569], + [28061,7514], + [28063,2801], + [28065,5623], + [28067,30914], + [28069,4028], + [28071,22246], + [28073,24035], + [28075,33549], + [28077,5324], + [28079,8448], + [28081,37843], + [28083,13525], + [28085,14126], + [28087,25896], + [28089,46205], + [28091,10408], + [28093,15378], + [28095,15864], + [28097,4492], + [28099,14097], + [28101,9450], + [28103,3813], + [28105,20458], + [28107,14715], + [28109,21457], + [28111,5080], + [28113,15703], + [28115,13262], + [28117,11167], + [28119,3618], + [28121,73879], + [28123,13486], + [28125,2484], + [28127,11603], + [28129,6495], + [28131,7782], + [28133,10660], + [28135,5986], + [28137,11807], + [28139,8800], + [28141,7937], + [28143,4431], + [28145,11966], + [28147,5884], + [28149,22552], + [28151,22335], + [28153,8566], + [28155,3416], + [28157,3699], + [28159,8034], + [28161,5442], + [28163,10130], + [29001,13601], + [29003,9991], + [29005,3215], + [29007,12396], + [29009,17789], + [29011,5322], + [29013,7858], + [29015,8355], + [29017,5587], + [29019,86871], + [29021,48673], + [29023,21858], + [29025,4320], + [29027,22636], + [29029,22440], + [29031,38455], + [29033,5046], + [29035,2970], + [29037,50270], + [29039,6455], + [29041,3979], + [29043,39985], + [29045,3551], + [29047,116877], + [29049,10350], + [29051,40105], + [29053,9222], + [29055,12086], + [29057,3570], + [29059,7396], + [29061,3922], + [29063,5166], + [29065,6821], + [29067,6038], + [29069,14303], + [29071,52866], + [29073,7891], + [29075,3482], + [29077,139388], + [29079,4930], + [29081,4570], + [29083,10899], + [29085,3452], + [29087,2759], + [29089,5105], + [29091,19855], + [29093,5731], + [29095,333855], + [29097,56721], + [29099,116350], + [29101,26490], + [29103,2360], + [29105,17873], + [29107,16374], + [29109,19405], + [29111,5526], + [29113,27016], + [29115,6531], + [29117,7103], + [29119,11033], + [29121,7851], + [29123,6174], + [29125,4788], + [29127,14705], + [29129,1834], + [29131,13191], + [29133,5820], + [29135,7419], + [29137,4344], + [29139,6124], + [29141,9344], + [29143,8920], + [29145,27618], + [29147,12871], + [29149,4574], + [29151,7408], + [29153,4408], + [29155,8253], + [29157,10440], + [29159,21241], + [29161,22217], + [29163,9208], + [29165,48640], + [29167,14092], + [29169,19672], + [29171,2507], + [29173,5693], + [29175,13226], + [29177,11336], + [29179,2688], + [29181,6730], + [29183,193994], + [29185,4252], + [29186,10080], + [29187,30146], + [29189,518471], + [29195,11475], + [29197,2164], + [29199,2553], + [29201,19859], + [29203,3726], + [29205,3322], + [29207,15408], + [29209,16531], + [29211,3510], + [29213,28290], + [29215,11182], + [29217,9999], + [29219,16538], + [29221,10094], + [29223,5847], + [29225,16778], + [29227,1146], + [29229,8211], + [29510,156914], + [30001,5128], + [30003,5208], + [30005,2994], + [30007,2460], + [30009,5313], + [30011,754], + [30013,40401], + [30015,2656], + [30017,5892], + [30019,803], + [30021,4396], + [30023,3848], + [30025,1823], + [30027,5950], + [30029,46329], + [30031,50885], + [30033,657], + [30035,5854], + [30037,580], + [30039,1292], + [30041,8233], + [30043,5996], + [30045,1108], + [30047,11678], + [30049,34102], + [30051,777], + [30053,7851], + [30055,1031], + [30057,4550], + [30059,891], + [30061,1896], + [30063,59098], + [30065,2157], + [30067,9032], + [30069,249], + [30071,2186], + [30073,2627], + [30075,949], + [30077,2757], + [30079,594], + [30081,18791], + [30083,5566], + [30085,3979], + [30087,4046], + [30089,4687], + [30091,1842], + [30093,17834], + [30095,4614], + [30097,2877], + [30099,3112], + [30101,2601], + [30103,406], + [30105,3656], + [30107,1098], + [30109,533], + [30111,82535], + [31001,17708], + [31003,3649], + [31005,242], + [31007,401], + [31009,244], + [31011,3255], + [31013,5630], + [31015,1110], + [31017,1847], + [31019,27875], + [31021,3963], + [31023,4911], + [31025,13990], + [31027,4829], + [31029,1991], + [31031,3403], + [31033,5238], + [31035,3119], + [31037,5628], + [31039,4938], + [31041,6060], + [31043,11003], + [31045,4826], + [31047,12461], + [31049,1054], + [31051,3382], + [31053,20006], + [31055,274208], + [31057,1035], + [31059,3180], + [31061,1777], + [31063,1628], + [31065,2517], + [31067,12233], + [31069,948], + [31071,1054], + [31073,1022], + [31075,373], + [31077,1303], + [31079,31742], + [31081,5883], + [31083,1842], + [31085,478], + [31087,1472], + [31089,6138], + [31091,415], + [31093,3739], + [31095,4321], + [31097,2938], + [31099,3693], + [31101,4550], + [31103,375], + [31105,1940], + [31107,4667], + [31109,159845], + [31111,21981], + [31113,464], + [31115,339], + [31117,310], + [31119,18856], + [31121,4222], + [31123,2882], + [31125,2056], + [31127,3414], + [31129,2254], + [31131,9071], + [31133,1566], + [31135,1677], + [31137,5152], + [31139,3940], + [31141,18398], + [31143,3034], + [31145,6020], + [31147,4218], + [31149,848], + [31151,8402], + [31153,79249], + [31155,10969], + [31157,19525], + [31159,9068], + [31161,3061], + [31163,1935], + [31165,716], + [31167,3513], + [31169,2819], + [31171,373], + [31173,2995], + [31175,2577], + [31177,11256], + [31179,5201], + [31181,1790], + [31183,486], + [31185,7050], + [32001,13493], + [32003,980238], + [32005,22620], + [32007,26742], + [32009,486], + [32011,854], + [32013,8156], + [32015,3646], + [32017,1834], + [32019,22626], + [32021,2393], + [32023,17622], + [32027,2520], + [32029,2462], + [32031,224365], + [32033,4793], + [32510,28725], + [33001,32647], + [33003,25911], + [33005,42151], + [33007,16507], + [33009,48793], + [33011,228996], + [33013,81100], + [33015,174270], + [33017,69672], + [33019,22749], + [34001,135738], + [34003,478208], + [34005,239461], + [34007,267190], + [34009,56560], + [34011,69048], + [34013,365516], + [34015,156573], + [34017,294030], + [34019,72965], + [34021,202109], + [34023,425519], + [34025,335057], + [34027,275403], + [34029,261749], + [34031,240502], + [34033,31586], + [34035,181589], + [34037,85205], + [34039,271250], + [34041,59175], + [35001,313468], + [35003,1536], + [35005,26833], + [35006,12357], + [35007,6623], + [35009,21017], + [35011,806], + [35013,88893], + [35015,27311], + [35017,12374], + [35019,1727], + [35021,398], + [35023,2620], + [35025,29278], + [35027,11049], + [35028,9998], + [35029,12332], + [35031,26668], + [35033,2027], + [35035,25888], + [35037,3927], + [35039,20475], + [35041,9474], + [35043,55815], + [35045,57112], + [35047,13314], + [35049,78172], + [35051,5893], + [35053,9512], + [35055,17647], + [35057,6916], + [35059,1949], + [35061,31141], + [36001,160552], + [36003,24123], + [36005,523746], + [36007,98160], + [36009,41766], + [36011,41802], + [36013,67323], + [36015,41459], + [36017,24672], + [36019,39988], + [36021,31881], + [36023,24168], + [36025,22917], + [36027,146689], + [36029,473549], + [36031,18617], + [36033,23056], + [36035,27664], + [36037,33542], + [36039,24370], + [36041,3079], + [36043,31311], + [36045,49275], + [36047,1106224], + [36049,12637], + [36051,32529], + [36053,36505], + [36055,378082], + [36057,24820], + [36059,700692], + [36061,931595], + [36063,114018], + [36065,111293], + [36067,235592], + [36069,56982], + [36071,181533], + [36073,19574], + [36075,60525], + [36077,31703], + [36079,56065], + [36081,1120482], + [36083,84331], + [36085,244150], + [36087,156197], + [36089,50282], + [36091,121922], + [36093,77005], + [36095,15914], + [36097,10157], + [36099,17185], + [36101,45922], + [36103,799996], + [36105,35661], + [36107,26367], + [36109,56222], + [36111,90715], + [36113,36689], + [36115,32850], + [36117,48189], + [36119,495831], + [36121,21392], + [36123,13242], + [37001,71184], + [37003,18214], + [37005,4549], + [37007,10252], + [37009,12551], + [37011,8826], + [37013,20743], + [37015,8694], + [37017,15444], + [37019,49932], + [37021,122278], + [37023,40287], + [37025,84919], + [37027,38151], + [37029,4541], + [37031,32743], + [37033,10747], + [37035,76720], + [37037,33767], + [37039,9976], + [37041,6692], + [37043,4659], + [37045,48838], + [37047,24150], + [37049,42095], + [37051,133207], + [37053,12793], + [37055,21995], + [37057,77717], + [37059,20953], + [37061,24027], + [37063,141313], + [37065,24498], + [37067,176953], + [37069,27744], + [37071,99629], + [37073,4853], + [37075,4371], + [37077,25437], + [37079,9262], + [37081,250557], + [37083,23799], + [37085,47889], + [37087,27812], + [37089,49544], + [37091,9811], + [37093,19699], + [37095,2674], + [37097,78849], + [37099,20956], + [37101,77790], + [37103,4696], + [37105,25800], + [37107,27008], + [37109,39344], + [37111,20799], + [37113,16285], + [37115,10017], + [37117,11891], + [37119,466991], + [37121,7087], + [37123,11302], + [37125,36370], + [37127,46886], + [37129,105444], + [37131,8667], + [37133,63010], + [37135,69732], + [37137,5413], + [37139,17953], + [37141,24381], + [37143,5299], + [37145,19015], + [37147,80996], + [37149,9538], + [37151,75059], + [37153,20109], + [37155,55922], + [37157,44504], + [37159,69967], + [37161,29663], + [37163,32368], + [37165,13888], + [37167,30088], + [37169,24087], + [37171,34132], + [37173,6933], + [37175,13345], + [37177,2204], + [37179,95592], + [37181,19522], + [37183,456089], + [37185,7765], + [37187,6145], + [37189,22998], + [37191,53513], + [37193,30141], + [37195,39932], + [37197,19327], + [37199,7760], + [38001,1260], + [38003,6274], + [38005,2640], + [38007,524], + [38009,3602], + [38011,1736], + [38013,1059], + [38015,47416], + [38017,88926], + [38019,2037], + [38021,2918], + [38023,887], + [38025,1752], + [38027,1248], + [38029,1685], + [38031,1769], + [38033,868], + [38035,38946], + [38037,1200], + [38039,1275], + [38041,1122], + [38043,1242], + [38045,2238], + [38047,924], + [38049,2734], + [38051,1392], + [38053,3111], + [38055,4834], + [38057,4841], + [38059,15004], + [38061,2989], + [38063,1732], + [38065,1148], + [38067,3939], + [38069,1934], + [38071,5841], + [38073,3094], + [38075,1263], + [38077,8967], + [38079,5013], + [38081,2231], + [38083,645], + [38085,1306], + [38087,760], + [38089,14314], + [38091,1168], + [38093,11750], + [38095,1110], + [38097,4167], + [38099,5685], + [38101,29718], + [38103,2113], + [38105,14674], + [39001,13185], + [39003,51638], + [39005,27190], + [39007,49005], + [39009,30777], + [39011,26868], + [39013,33285], + [39015,21758], + [39017,191057], + [39019,13943], + [39021,20481], + [39023,71071], + [39025,106546], + [39027,23409], + [39029,52927], + [39031,17172], + [39033,21916], + [39035,644172], + [39037,27925], + [39039,20647], + [39041,92156], + [39043,42664], + [39045,75533], + [39047,16950], + [39049,624952], + [39051,23205], + [39053,14134], + [39055,51190], + [39057,81005], + [39059,19589], + [39061,438951], + [39063,40861], + [39065,15033], + [39067,7340], + [39069,15696], + [39071,20651], + [39073,14229], + [39075,19425], + [39077,29024], + [39079,15265], + [39081,32856], + [39083,30198], + [39085,133375], + [39087,29399], + [39089,83686], + [39091,25299], + [39093,160099], + [39095,222286], + [39097,20202], + [39099,115824], + [39101,32555], + [39103,96274], + [39105,9143], + [39107,24713], + [39109,54648], + [39111,5710], + [39113,267232], + [39115,5811], + [39117,17970], + [39119,38401], + [39121,5835], + [39123,21529], + [39125,10790], + [39127,16382], + [39129,24810], + [39131,10857], + [39133,92880], + [39135,21422], + [39137,18447], + [39139,62349], + [39141,34685], + [39143,33318], + [39145,32526], + [39147,30486], + [39149,27607], + [39151,192019], + [39153,298291], + [39155,105582], + [39157,47837], + [39159,25897], + [39161,15407], + [39163,5720], + [39165,109239], + [39167,33063], + [39169,59427], + [39171,19903], + [39173,68912], + [39175,11453], + [40001,10849], + [40003,2479], + [40005,6046], + [40007,3263], + [40009,12476], + [40011,4995], + [40013,20342], + [40015,12480], + [40017,52070], + [40019,26779], + [40021,22918], + [40023,6913], + [40025,1250], + [40027,119236], + [40029,2494], + [40031,45904], + [40033,3892], + [40035,7427], + [40037,31216], + [40039,14755], + [40041,18923], + [40043,2638], + [40045,2538], + [40047,31529], + [40049,14874], + [40051,22887], + [40053,2602], + [40055,2039], + [40057,1334], + [40059,2044], + [40061,5961], + [40063,5093], + [40065,12358], + [40067,2399], + [40069,5177], + [40071,23917], + [40073,8529], + [40075,4037], + [40077,4692], + [40079,20859], + [40081,13836], + [40083,17735], + [40085,5311], + [40087,14956], + [40089,14133], + [40091,8593], + [40093,4296], + [40095,6559], + [40097,18542], + [40099,8527], + [40101,29724], + [40103,5759], + [40105,5027], + [40107,4596], + [40109,324124], + [40111,15956], + [40113,20095], + [40115,17833], + [40117,7295], + [40119,35070], + [40121,23856], + [40123,20294], + [40125,33003], + [40127,5253], + [40129,1943], + [40131,40243], + [40133,11033], + [40135,17693], + [40137,22202], + [40139,9752], + [40141,3521], + [40143,293722], + [40145,33266], + [40147,27426], + [40149,6140], + [40151,4343], + [40153,12604], + [41001,7442], + [41003,43100], + [41005,200201], + [41007,20373], + [41009,24202], + [41011,28103], + [41013,9800], + [41015,9518], + [41017,81766], + [41019,46549], + [41021,1200], + [41023,3379], + [41025,3350], + [41027,13351], + [41029,101904], + [41031,9353], + [41033,34991], + [41035,30867], + [41037,3585], + [41039,183901], + [41041,22850], + [41043,55235], + [41045,12760], + [41047,155375], + [41049,5447], + [41051,388379], + [41053,39707], + [41055,974], + [41057,12603], + [41059,37635], + [41061,12320], + [41063,3671], + [41065,13338], + [41067,289385], + [41069,617], + [41071,47894], + [42001,56402], + [42003,643395], + [42005,33403], + [42007,90548], + [42009,24468], + [42011,206505], + [42013,65574], + [42015,31147], + [42017,353465], + [42019,99234], + [42021,69579], + [42023,2536], + [42025,31601], + [42027,75538], + [42029,274238], + [42031,20835], + [42033,40775], + [42035,19460], + [42037,36409], + [42039,43562], + [42041,125832], + [42043,138090], + [42045,287490], + [42047,17578], + [42049,141912], + [42051,66718], + [42053,2392], + [42055,82775], + [42057,8146], + [42059,18622], + [42061,22631], + [42063,46969], + [42065,23301], + [42067,12451], + [42069,108526], + [42071,274555], + [42073,43950], + [42075,73369], + [42077,178950], + [42079,161744], + [42081,60703], + [42083,21938], + [42085,55808], + [42087,22790], + [42089,84017], + [42091,438010], + [42093,9438], + [42095,153803], + [42097,48029], + [42099,25003], + [42101,630620], + [42103,28443], + [42105,7784], + [42107,74496], + [42109,19821], + [42111,39439], + [42113,3006], + [42115,22028], + [42117,20623], + [42119,17849], + [42121,26447], + [42123,21823], + [42125,106420], + [42127,25742], + [42129,189007], + [42131,14548], + [42133,229230], + [44001,27450], + [44003,97344], + [44005,44011], + [44007,327491], + [44009,74032], + [45001,11335], + [45003,74897], + [45005,3335], + [45007,85313], + [45009,6326], + [45011,8815], + [45013,63741], + [45015,79848], + [45017,6763], + [45019,174276], + [45021,25546], + [45023,15314], + [45025,18591], + [45027,12511], + [45029,16649], + [45031,31143], + [45033,12972], + [45035,63518], + [45037,10934], + [45039,11195], + [45041,62863], + [45043,30367], + [45045,223956], + [45047,30615], + [45049,7721], + [45051,130715], + [45053,10055], + [45055,29752], + [45057,29582], + [45059,32897], + [45061,8125], + [45063,132615], + [45065,3444], + [45067,12763], + [45069,11659], + [45071,18582], + [45073,30608], + [45075,41087], + [45077,58155], + [45079,180447], + [45081,8929], + [45083,135710], + [45085,43755], + [45087,11696], + [45089,15437], + [45091,107682], + [46003,1480], + [46005,9705], + [46007,1367], + [46009,3074], + [46011,19593], + [46013,21229], + [46015,2803], + [46017,482], + [46019,5483], + [46021,838], + [46023,4054], + [46025,1815], + [46027,7700], + [46029,16624], + [46031,1364], + [46033,4902], + [46035,11293], + [46037,2914], + [46039,2774], + [46041,2512], + [46043,1706], + [46045,2072], + [46047,3758], + [46049,1145], + [46051,4260], + [46053,2368], + [46055,1160], + [46057,3004], + [46059,1891], + [46061,1980], + [46063,785], + [46065,10322], + [46067,3757], + [46069,738], + [46071,1226], + [46073,1435], + [46075,692], + [46077,3011], + [46079,6815], + [46081,13543], + [46083,22120], + [46085,1987], + [46087,2744], + [46089,1117], + [46091,2109], + [46093,12383], + [46095,881], + [46097,1253], + [46099,100944], + [46101,4063], + [46102,"NA"], + [46103,55229], + [46105,1620], + [46107,1307], + [46109,4861], + [46111,1422], + [46115,3353], + [46117,1904], + [46119,1001], + [46121,3438], + [46123,2976], + [46125,4271], + [46127,8420], + [46129,2681], + [46135,12225], + [46137,846], + [47001,35784], + [47003,22479], + [47005,7056], + [47007,4921], + [47009,63417], + [47011,47543], + [47013,16982], + [47015,6592], + [47017,13776], + [47019,29716], + [47021,20388], + [47023,7947], + [47025,13332], + [47027,3482], + [47029,16501], + [47031,25724], + [47033,6463], + [47035,23188], + [47037,323870], + [47039,5674], + [47041,10170], + [47043,23577], + [47045,17602], + [47047,18173], + [47049,8049], + [47051,19891], + [47053,21198], + [47055,13460], + [47057,10243], + [47059,30265], + [47061,5947], + [47063,30293], + [47065,167906], + [47067,2561], + [47069,11581], + [47071,11892], + [47073,26981], + [47075,9490], + [47077,12093], + [47079,13924], + [47081,10142], + [47083,3864], + [47085,9023], + [47087,4980], + [47089,24619], + [47091,7278], + [47093,230189], + [47095,2674], + [47097,10354], + [47099,16624], + [47101,5462], + [47103,17214], + [47105,23563], + [47107,24033], + [47109,11522], + [47111,10638], + [47113,48674], + [47115,13039], + [47117,12591], + [47119,37574], + [47121,4968], + [47123,18960], + [47125,68013], + [47127,3165], + [47129,8565], + [47131,15602], + [47133,10114], + [47135,2980], + [47137,1893], + [47139,7039], + [47141,36063], + [47143,13446], + [47145,27239], + [47147,33484], + [47149,133528], + [47151,8536], + [47153,6269], + [47155,48468], + [47157,440054], + [47159,9260], + [47161,5928], + [47163,74632], + [47165,79984], + [47167,28736], + [47169,3721], + [47171,8432], + [47173,8802], + [47175,2507], + [47177,17507], + [47179,62201], + [47181,6641], + [47183,15657], + [47185,10623], + [47187,89065], + [47189,58531], + [48001,20214], + [48003,6871], + [48005,39083], + [48007,11389], + [48009,5129], + [48011,1092], + [48013,18903], + [48015,13014], + [48017,3339], + [48019,9661], + [48021,33669], + [48023,2032], + [48025,11234], + [48027,122365], + [48029,748686], + [48031,4872], + [48033,397], + [48035,8265], + [48037,43472], + [48039,142335], + [48041,91699], + [48043,5101], + [48045,703], + [48047,3268], + [48049,18430], + [48051,7883], + [48053,22164], + [48055,15372], + [48057,9378], + [48059,7102], + [48061,145893], + [48063,5559], + [48065,3286], + [48067,12887], + [48069,3600], + [48071,14270], + [48073,20325], + [48075,3052], + [48077,6039], + [48079,1501], + [48081,1282], + [48083,4361], + [48085,405733], + [48087,1475], + [48089,10930], + [48091,54681], + [48093,6528], + [48095,1327], + [48097,22455], + [48099,23451], + [48101,829], + [48103,1703], + [48105,2204], + [48107,2601], + [48109,1754], + [48111,3558], + [48113,1140659], + [48115,5123], + [48117,8932], + [48119,2296], + [48121,344467], + [48123,9043], + [48125,994], + [48127,3965], + [48129,1879], + [48131,5170], + [48133,8444], + [48135,70608], + [48137,1043], + [48139,70202], + [48141,297690], + [48143,18622], + [48145,6555], + [48147,13435], + [48149,12321], + [48151,1981], + [48153,3212], + [48155,712], + [48157,265383], + [48159,5302], + [48161,10192], + [48163,6861], + [48165,6794], + [48167,141815], + [48169,2402], + [48171,13186], + [48173,630], + [48175,3466], + [48177,9741], + [48179,11368], + [48181,55534], + [48183,63962], + [48185,10828], + [48187,57728], + [48189,16753], + [48191,1436], + [48193,4258], + [48195,2647], + [48197,2329], + [48199,26128], + [48201,1933140], + [48203,32306], + [48205,2448], + [48207,3254], + [48209,76598], + [48211,3142], + [48213,34553], + [48215,282305], + [48217,15945], + [48219,11936], + [48221,25244], + [48223,17539], + [48225,7968], + [48227,13974], + [48229,1592], + [48231,36921], + [48233,11220], + [48235,887], + [48237,5444], + [48239,6806], + [48241,15463], + [48243,1191], + [48245,113774], + [48247,2768], + [48249,21466], + [48251,73137], + [48253,7766], + [48255,5282], + [48257,46316], + [48259,16134], + [48261,238], + [48263,441], + [48265,23078], + [48267,2195], + [48269,178], + [48271,1373], + [48273,16515], + [48275,1806], + [48277,23489], + [48279,7090], + [48281,10287], + [48283,2907], + [48285,9906], + [48287,8990], + [48289,7795], + [48291,30840], + [48293,10725], + [48295,1806], + [48297,5107], + [48299,8429], + [48301,43], + [48303,138386], + [48305,2768], + [48307,3979], + [48309,110920], + [48311,333], + [48313,4977], + [48315,5000], + [48317,2233], + [48319,2346], + [48321,17035], + [48323,20816], + [48325,19712], + [48327,1089], + [48329,75209], + [48331,11973], + [48333,2337], + [48335,3297], + [48337,10648], + [48339,212306], + [48341,11237], + [48343,6064], + [48345,691], + [48347,30808], + [48349,20892], + [48351,5721], + [48353,7707], + [48355,162404], + [48357,5611], + [48359,902], + [48361,41201], + [48363,14014], + [48365,12999], + [48367,53223], + [48369,4471], + [48371,7055], + [48373,16766], + [48375,56622], + [48377,3343], + [48379,5056], + [48381,67704], + [48383,2542], + [48385,1458], + [48387,5924], + [48389,4177], + [48391,4036], + [48393,568], + [48395,6938], + [48397,38135], + [48399,4456], + [48401,24069], + [48403,3392], + [48405,3500], + [48407,10072], + [48409,29870], + [48411,2411], + [48413,1469], + [48415,7541], + [48417,2144], + [48419,12421], + [48421,1455], + [48423,98652], + [48425,4107], + [48427,22243], + [48429,4679], + [48431,849], + [48433,860], + [48435,3515], + [48437,3556], + [48439,880826], + [48441,67133], + [48443,330], + [48445,5860], + [48447,942], + [48449,14104], + [48451,51656], + [48453,536895], + [48455,5793], + [48457,8239], + [48459,19783], + [48461,1775], + [48463,11154], + [48465,20417], + [48467,25539], + [48469,45203], + [48471,26305], + [48473,16157], + [48475,5071], + [48477,16370], + [48479,92361], + [48481,20875], + [48483,3391], + [48485,61098], + [48487,7587], + [48489,7705], + [48491,202236], + [48493,18724], + [48495,3454], + [48497,27517], + [48499,18054], + [48501,4085], + [48503,9811], + [48505,5162], + [48507,3642], + [49001,3118], + [49003,23701], + [49005,61540], + [49007,10117], + [49009,451], + [49011,145534], + [49013,10294], + [49015,5055], + [49017,2817], + [49019,5261], + [49021,20845], + [49023,3949], + [49025,3482], + [49027,6051], + [49029,4060], + [49031,902], + [49033,1424], + [49035,557692], + [49037,5007], + [49039,11113], + [49041,9630], + [49043,22102], + [49045,27933], + [49047,18583], + [49049,223222], + [49051,10303], + [49053,61770], + [49055,1392], + [49057,113853], + [50001,21667], + [50003,20536], + [50005,16816], + [50007,88974], + [50009,3260], + [50011,25996], + [50013,4271], + [50015,15140], + [50017,16312], + [50019,14244], + [50021,35725], + [50023,34349], + [50025,24819], + [50027,32782], + [51001,18991], + [51003,52650], + [51005,6882], + [51007,6762], + [51009,16024], + [51011,7297], + [51013,136705], + [51015,37888], + [51017,2798], + [51019,38609], + [51021,3496], + [51023,17759], + [51025,7044], + [51027,8950], + [51029,7268], + [51031,27915], + [51033,14271], + [51035,14058], + [51036,3886], + [51037,5435], + [51041,169943], + [51043,8195], + [51045,2552], + [51047,20962], + [51049,4699], + [51051,6074], + [51053,13191], + [51057,5650], + [51059,592899], + [51061,37829], + [51063,7162], + [51065,14162], + [51067,27094], + [51069,41455], + [51071,8373], + [51073,21066], + [51075,11453], + [51077,7170], + [51079,10686], + [51081,4389], + [51083,15745], + [51085,55834], + [51087,166024], + [51089,25396], + [51091,1143], + [51093,19098], + [51095,32414], + [51097,3349], + [51099,9650], + [51101,8761], + [51103,5542], + [51105,9788], + [51107,173148], + [51109,16793], + [51111,5501], + [51113,7404], + [51115,4500], + [51117,13466], + [51119,5132], + [51121,45879], + [51125,8077], + [51127,9927], + [51131,6112], + [51133,5911], + [51135,6588], + [51137,15677], + [51139,11779], + [51141,9140], + [51143,31711], + [51145,14573], + [51147,9646], + [51149,14985], + [51153,206086], + [51155,18145], + [51157,4281], + [51159,3881], + [51161,49795], + [51163,11504], + [51165,42270], + [51167,11877], + [51169,10102], + [51171,20290], + [51173,15128], + [51175,8112], + [51177,66228], + [51179,66129], + [51181,3815], + [51183,4503], + [51185,20752], + [51187,20070], + [51191,27513], + [51193,8875], + [51195,18108], + [51197,16175], + [51199,31323], + [51510,93221], + [51520,8091], + [51530,3450], + [51540,21730], + [51550,116579], + [51570,9324], + [51580,2675], + [51590,20157], + [51595,2519], + [51600,14413], + [51610,6917], + [51620,3951], + [51630,12965], + [51640,3130], + [51650,69260], + [51660,22980], + [51670,10658], + [51678,2423], + [51680,35129], + [51683,20076], + [51685,6631], + [51690,5930], + [51700,89322], + [51710,100847], + [51720,1620], + [51730,14288], + [51735,6402], + [51740,46504], + [51750,7994], + [51760,101506], + [51770,47072], + [51775,13649], + [51790,11872], + [51800,40871], + [51810,225849], + [51820,10427], + [51830,5331], + [51840,14354], + [53001,8117], + [53003,10403], + [53005,88789], + [53007,40871], + [53009,30083], + [53011,215138], + [53013,1565], + [53015,44370], + [53017,21187], + [53019,2998], + [53021,34124], + [53023,1021], + [53025,40948], + [53027,31893], + [53029,33072], + [53031,13716], + [53033,1090567], + [53035,124802], + [53037,20952], + [53039,10173], + [53041,31519], + [53043,4829], + [53045,25523], + [53047,21389], + [53049,9216], + [53051,5525], + [53053,394631], + [53055,8770], + [53057,58791], + [53059,5157], + [53061,373004], + [53063,239320], + [53065,18887], + [53067,131686], + [53069,1773], + [53071,30445], + [53073,108750], + [53075,21253], + [53077,123322], + [54001,6723], + [54003,46459], + [54005,9422], + [54007,5918], + [54009,11143], + [54011,45433], + [54013,2790], + [54015,3506], + [54017,2816], + [54019,18124], + [54021,3135], + [54023,5252], + [54025,15088], + [54027,9456], + [54029,14723], + [54031,6873], + [54033,31062], + [54035,11979], + [54037,24918], + [54039,92747], + [54041,7453], + [54043,8092], + [54045,13186], + [54047,7193], + [54049,26484], + [54051,14818], + [54053,10135], + [54055,25128], + [54057,13567], + [54059,9051], + [54061,48617], + [54063,5870], + [54065,6979], + [54067,10668], + [54069,21154], + [54071,3715], + [54073,3145], + [54075,3606], + [54077,15122], + [54079,27977], + [54081,32804], + [54083,12807], + [54085,4545], + [54087,5540], + [54089,4654], + [54091,6969], + [54093,2922], + [54095,3620], + [54097,10730], + [54099,17608], + [54101,3294], + [54103,6270], + [54105,2463], + [54107,41121], + [54109,8031], + [55001,10053], + [55003,8983], + [55005,25085], + [55007,8047], + [55009,139296], + [55011,8137], + [55013,7902], + [55015,25647], + [55017,33343], + [55019,17550], + [55021,31061], + [55023,9588], + [55025,295779], + [55027,47213], + [55029,17161], + [55031,23378], + [55033,25550], + [55035,56997], + [55037,2458], + [55039,56928], + [55041,4883], + [55043,28114], + [55045,20357], + [55047,10400], + [55049,14069], + [55051,3024], + [55053,9792], + [55055,42410], + [55057,13363], + [55059,85415], + [55061,11548], + [55063,65352], + [55065,9098], + [55067,10675], + [55069,15544], + [55071,45202], + [55073,75392], + [55075,22071], + [55077,7823], + [55078,1643], + [55079,469227], + [55081,24462], + [55083,20288], + [55085,19201], + [55087,97875], + [55089,47927], + [55091,4097], + [55093,24033], + [55095,24061], + [55097,42215], + [55099,8353], + [55101,99874], + [55103,10234], + [55105,83528], + [55107,7248], + [55109,47543], + [55111,35292], + [55113,9138], + [55115,22167], + [55117,65688], + [55119,10450], + [55121,16183], + [55123,14662], + [55125,11250], + [55127,56534], + [55129,7842], + [55131,74474], + [55133,214460], + [55135,28040], + [55137,12710], + [55139,94371], + [55141,42050], + [56001,18913], + [56003,4930], + [56005,27357], + [56007,8266], + [56009,7344], + [56011,3480], + [56013,18397], + [56015,6084], + [56017,2413], + [56019,4052], + [56021,42525], + [56023,8377], + [56025,40688], + [56027,1235], + [56029,14437], + [56031,3945], + [56033,16061], + [56035,7015], + [56037,24273], + [56039,14459], + [56041,11512], + [56043,4291], + [56045,3225] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2009.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2009.json new file mode 100644 index 0000000..4a5d842 --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2009", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2009"], + [1001,24703], + [1003,82451], + [1005,10003], + [1007,8742], + [1009,26480], + [1011,3739], + [1013,9104], + [1015,53925], + [1017,14650], + [1019,11758], + [1021,19445], + [1023,5134], + [1025,10381], + [1027,5643], + [1029,6514], + [1031,21436], + [1033,25414], + [1035,4908], + [1037,4593], + [1039,16719], + [1041,6439], + [1043,38537], + [1045,20033], + [1047,15868], + [1049,29912], + [1051,36392], + [1053,14762], + [1055,44993], + [1057,6971], + [1059,13240], + [1061,11173], + [1063,3131], + [1065,6869], + [1067,7132], + [1069,45903], + [1071,26370], + [1073,307018], + [1075,5546], + [1077,43432], + [1079,15788], + [1081,64893], + [1083,38288], + [1085,4921], + [1087,9345], + [1089,168887], + [1091,8101], + [1093,12361], + [1095,40743], + [1097,186825], + [1099,8666], + [1101,105106], + [1103,56388], + [1105,3770], + [1107,8042], + [1109,15803], + [1111,9415], + [1113,21566], + [1115,36770], + [1117,99773], + [1119,4761], + [1121,37787], + [1123,18149], + [1125,89100], + [1127,28190], + [1129,6935], + [1131,3648], + [1133,9519], + [2013,1133], + [2016,3005], + [2020,153834], + [2050,7031], + [2060,1045], + [2068,1412], + [2070,2152], + [2090,46015], + [2100,1416], + [2105,"NA"], + [2110,18393], + [2122,26909], + [2130,8331], + [2150,6603], + [2158,"NA"], + [2164,1088], + [2170,42490], + [2180,3968], + [2185,5304], + [2188,2988], + [2195,"NA"], + [2198,"NA"], + [2220,4646], + [2230,"NA"], + [2240,3612], + [2261,5340], + [2275,"NA"], + [2282,314], + [2290,2876], + [4001,22938], + [4003,63049], + [4005,74805], + [4007,23275], + [4009,15246], + [4011,4396], + [4012,7702], + [4013,1966607], + [4015,91554], + [4017,41199], + [4019,485850], + [4021,126779], + [4023,18594], + [4025,98309], + [4027,87808], + [5001,12305], + [5003,9344], + [5005,17328], + [5007,107694], + [5009,16987], + [5011,5486], + [5013,2583], + [5015,14013], + [5017,4873], + [5019,10782], + [5021,6671], + [5023,11794], + [5025,4043], + [5027,10618], + [5029,10265], + [5031,46769], + [5033,27945], + [5035,22055], + [5037,8537], + [5039,3940], + [5041,5593], + [5043,8224], + [5045,56404], + [5047,8183], + [5049,5253], + [5051,42565], + [5053,8520], + [5055,18767], + [5057,10703], + [5059,15337], + [5061,6227], + [5063,16876], + [5065,5349], + [5067,7643], + [5069,35629], + [5071,11562], + [5073,2991], + [5075,7321], + [5077,3534], + [5079,4989], + [5081,6774], + [5083,10120], + [5085,32345], + [5087,7396], + [5089,6711], + [5091,19952], + [5093,21532], + [5095,3717], + [5097,4168], + [5099,4250], + [5101,3459], + [5103,12136], + [5105,4724], + [5107,8841], + [5109,5051], + [5111,10542], + [5113,8797], + [5115,29573], + [5117,4294], + [5119,189945], + [5121,7664], + [5123,10389], + [5125,49591], + [5127,4913], + [5129,3569], + [5131,60582], + [5133,7570], + [5135,6248], + [5137,4597], + [5139,19175], + [5141,7029], + [5143,99482], + [5145,34059], + [5147,3368], + [5149,10643], + [6001,760888], + [6003,446], + [6005,17817], + [6007,103739], + [6009,20327], + [6011,11516], + [6013,524795], + [6015,11679], + [6017,91670], + [6019,434044], + [6021,12579], + [6023,60835], + [6025,75569], + [6027,9388], + [6029,362714], + [6031,60489], + [6033,25372], + [6035,13564], + [6037,4914702], + [6039,66473], + [6041,131981], + [6043,9397], + [6045,43306], + [6047,105373], + [6049,4044], + [6051,8736], + [6053,215363], + [6055,75560], + [6057,50379], + [6059,1589259], + [6061,179718], + [6063,10016], + [6065,915787], + [6067,681094], + [6069,24864], + [6071,857696], + [6073,1554333], + [6075,459432], + [6077,297806], + [6079,136378], + [6081,374199], + [6083,219990], + [6085,874982], + [6087,147664], + [6089,83960], + [6091,1595], + [6093,19631], + [6095,214520], + [6097,256523], + [6099,234462], + [6101,41882], + [6103,25344], + [6105,4985], + [6107,203168], + [6109,25724], + [6111,430294], + [6113,98742], + [6115,28348], + [8001,228327], + [8003,8936], + [8005,312497], + [8007,6334], + [8009,2593], + [8011,2680], + [8013,175518], + [8014,30845], + [8015,8576], + [8017,1372], + [8019,5426], + [8021,3738], + [8023,1379], + [8025,1987], + [8027,2039], + [8029,16973], + [8031,324332], + [8033,1044], + [8035,161345], + [8037,30521], + [8039,12933], + [8041,300226], + [8043,19981], + [8045,34688], + [8047,3675], + [8049,9052], + [8051,9427], + [8053,665], + [8055,3489], + [8057,1293], + [8059,303936], + [8061,1001], + [8063,4860], + [8065,3904], + [8067,31317], + [8069,176900], + [8071,8618], + [8073,3108], + [8075,12031], + [8077,82067], + [8079,479], + [8081,9077], + [8083,13270], + [8085,21101], + [8087,15084], + [8089,9306], + [8091,2902], + [8093,9336], + [8095,2607], + [8097,11141], + [8099,7008], + [8101,74643], + [8103,4659], + [8105,6788], + [8107,15238], + [8109,3422], + [8111,556], + [8113,5220], + [8115,1719], + [8117,16641], + [8119,12099], + [8121,2984], + [8123,120964], + [8125,7112], + [9001,471953], + [9003,464754], + [9005,105724], + [9007,95148], + [9009,450853], + [9011,150961], + [9013,86559], + [9015,65133], + [10001,73786], + [10003,271289], + [10005,92424], + [11001,335672], + [12001,129815], + [12003,12111], + [12005,88810], + [12007,12473], + [12009,266755], + [12011,980551], + [12013,5917], + [12015,68858], + [12017,56762], + [12019,94785], + [12021,143337], + [12023,31597], + [12027,14967], + [12029,5582], + [12031,441641], + [12033,137044], + [12035,32733], + [12037,4919], + [12039,21270], + [12041,7712], + [12043,4843], + [12045,6361], + [12047,4848], + [12049,11962], + [12051,17192], + [12053,62318], + [12055,40483], + [12057,596872], + [12059,8884], + [12061,62299], + [12063,21958], + [12065,6578], + [12067,3074], + [12069,135874], + [12071,278817], + [12073,147363], + [12075,16742], + [12077,3867], + [12079,7140], + [12081,142403], + [12083,135282], + [12085,62927], + [12086,1209622], + [12087,45385], + [12089,35920], + [12091,96418], + [12093,18199], + [12095,596021], + [12097,138807], + [12099,615500], + [12101,195279], + [12103,440723], + [12105,273152], + [12107,32311], + [12109,96570], + [12111,123665], + [12113,70216], + [12115,161799], + [12117,235674], + [12119,31877], + [12121,17450], + [12123,9167], + [12125,5388], + [12127,252474], + [12129,16732], + [12131,30837], + [12133,9920], + [13001,9455], + [13003,3289], + [13005,4643], + [13007,1586], + [13009,20401], + [13011,10552], + [13013,35215], + [13015,46443], + [13017,7286], + [13019,8211], + [13021,74638], + [13023,5451], + [13025,7545], + [13027,8022], + [13029,16983], + [13031,32964], + [13033,9939], + [13035,10144], + [13037,2343], + [13039,20757], + [13043,4341], + [13045,52693], + [13047,34611], + [13049,4472], + [13051,131170], + [13053,2621], + [13055,10773], + [13057,110242], + [13059,64085], + [13061,1414], + [13063,133143], + [13065,2789], + [13067,374868], + [13069,16376], + [13071,20475], + [13073,60883], + [13075,6967], + [13077,61330], + [13079,6075], + [13081,9765], + [13083,8146], + [13085,11256], + [13087,11912], + [13089,381335], + [13091,9079], + [13093,4836], + [13095,42209], + [13097,65190], + [13099,5517], + [13101,2204], + [13103,28603], + [13105,10045], + [13107,10568], + [13109,4958], + [13111,10811], + [13113,51081], + [13115,49526], + [13117,87995], + [13119,10261], + [13121,486983], + [13123,13620], + [13125,1133], + [13127,40419], + [13129,25498], + [13131,11764], + [13133,7588], + [13135,417641], + [13137,20243], + [13139,89690], + [13141,3290], + [13143,12665], + [13145,16406], + [13147,10458], + [13149,4893], + [13151,97375], + [13153,70793], + [13155,4070], + [13157,27055], + [13159,6461], + [13161,5357], + [13163,7106], + [13165,2723], + [13167,3542], + [13169,14322], + [13171,8134], + [13173,4139], + [13175,22061], + [13177,18181], + [13179,26003], + [13181,3902], + [13183,6655], + [13185,53907], + [13187,13305], + [13189,10793], + [13191,5276], + [13193,5196], + [13195,15786], + [13197,3317], + [13199,9449], + [13201,3615], + [13205,10395], + [13207,13800], + [13209,4484], + [13211,9346], + [13213,19722], + [13215,86098], + [13217,47101], + [13219,18585], + [13221,7817], + [13223,67939], + [13225,12340], + [13227,15098], + [13229,8678], + [13231,8077], + [13233,21188], + [13235,4357], + [13237,10371], + [13239,968], + [13241,6968], + [13243,2752], + [13245,91254], + [13247,40153], + [13249,1903], + [13251,7302], + [13253,4090], + [13255,28894], + [13257,13894], + [13259,2317], + [13261,14387], + [13263,3125], + [13265,833], + [13267,9356], + [13269,3550], + [13271,4616], + [13273,4442], + [13275,21412], + [13277,18876], + [13279,13911], + [13281,5740], + [13283,2927], + [13285,30909], + [13287,4626], + [13289,4654], + [13291,10984], + [13293,11912], + [13295,32199], + [13297,41476], + [13299,14894], + [13301,2623], + [13303,7917], + [13305,12050], + [13307,1193], + [13309,2930], + [13311,12387], + [13313,44109], + [13315,3252], + [13317,4495], + [13319,4627], + [13321,10156], + [15001,83897], + [15003,439761], + [15005,"NA"], + [15007,31990], + [15009,76043], + [16001,196383], + [16003,2123], + [16005,39350], + [16007,3365], + [16009,4174], + [16011,21828], + [16013,13348], + [16015,3384], + [16017,20958], + [16019,50059], + [16021,4410], + [16023,1471], + [16025,598], + [16027,85238], + [16029,3464], + [16031,10190], + [16033,549], + [16035,3523], + [16037,2677], + [16039,11408], + [16041,5794], + [16043,5553], + [16045,6985], + [16047,8380], + [16049,7358], + [16051,11502], + [16053,10447], + [16055,70972], + [16057,17794], + [16059,3975], + [16061,1779], + [16063,2584], + [16065,16049], + [16067,9494], + [16069,18704], + [16071,2221], + [16073,4328], + [16075,11007], + [16077,3458], + [16079,6304], + [16081,5287], + [16083,39024], + [16085,4710], + [16087,4921], + [17001,38261], + [17003,3000], + [17005,8563], + [17007,26118], + [17009,3465], + [17011,19259], + [17013,2485], + [17015,8289], + [17017,7683], + [17019,105240], + [17021,17721], + [17023,8112], + [17025,6467], + [17027,18650], + [17029,27673], + [17031,2604692], + [17033,9721], + [17035,5568], + [17037,60157], + [17039,8817], + [17041,10219], + [17043,525702], + [17045,10173], + [17047,3108], + [17049,18145], + [17051,10119], + [17053,7098], + [17055,17682], + [17057,18498], + [17059,2628], + [17061,6775], + [17063,26702], + [17065,4070], + [17067,9438], + [17069,1760], + [17071,3800], + [17073,26772], + [17075,16749], + [17077,32119], + [17079,4942], + [17081,20595], + [17083,11544], + [17085,13081], + [17087,5095], + [17089,271256], + [17091,56196], + [17093,60357], + [17095,25980], + [17097,363170], + [17099,59434], + [17101,8182], + [17103,18308], + [17105,19293], + [17107,13354], + [17109,16951], + [17111,181149], + [17113,91493], + [17115,54824], + [17117,24007], + [17119,138514], + [17121,18338], + [17123,7117], + [17125,7573], + [17127,7161], + [17129,6905], + [17131,8648], + [17133,18415], + [17135,13332], + [17137,17572], + [17139,7857], + [17141,27507], + [17143,97678], + [17145,9411], + [17147,8881], + [17149,8469], + [17151,1901], + [17153,2845], + [17155,3306], + [17157,15203], + [17159,7275], + [17161,77840], + [17163,124016], + [17165,12658], + [17167,107780], + [17169,4229], + [17171,2710], + [17173,11139], + [17175,2837], + [17177,25080], + [17179,73081], + [17181,8112], + [17183,37138], + [17185,6047], + [17187,9232], + [17189,8070], + [17191,8135], + [17193,7697], + [17195,30420], + [17197,366938], + [17199,34652], + [17201,144984], + [17203,21245], + [18001,15118], + [18003,178193], + [18005,38446], + [18007,4284], + [18009,6413], + [18011,28281], + [18013,7450], + [18015,10015], + [18017,18725], + [18019,56018], + [18021,13005], + [18023,16947], + [18025,5214], + [18027,14933], + [18029,26096], + [18031,12627], + [18033,20352], + [18035,55337], + [18037,22056], + [18039,90688], + [18041,9852], + [18043,37975], + [18045,8407], + [18047,11598], + [18049,9999], + [18051,16738], + [18053,33063], + [18055,15988], + [18057,145126], + [18059,36104], + [18061,19525], + [18063,73661], + [18065,22785], + [18067,35612], + [18069,19731], + [18071,21252], + [18073,15686], + [18075,11365], + [18077,16573], + [18079,13626], + [18081,74520], + [18083,19814], + [18085,41388], + [18087,15541], + [18089,226034], + [18091,52587], + [18093,21768], + [18095,62377], + [18097,457524], + [18099,22539], + [18101,5221], + [18103,16177], + [18105,70550], + [18107,18789], + [18109,36623], + [18111,6834], + [18113,22161], + [18115,3088], + [18117,10450], + [18119,11537], + [18121,8032], + [18123,9616], + [18125,5850], + [18127,84211], + [18129,13176], + [18131,6750], + [18133,17218], + [18135,12847], + [18137,13765], + [18139,9086], + [18141,129097], + [18143,10951], + [18145,23647], + [18147,10387], + [18149,10729], + [18151,16301], + [18153,8850], + [18155,5673], + [18157,84263], + [18159,7216], + [18161,3527], + [18163,90591], + [18165,7975], + [18167,50961], + [18169,16331], + [18171,4646], + [18173,31087], + [18175,14037], + [18177,32296], + [18179,14223], + [18181,12426], + [18183,17854], + [19001,4239], + [19003,2154], + [19005,7558], + [19007,6244], + [19009,3291], + [19011,14745], + [19013,74993], + [19015,15821], + [19017,13892], + [19019,11232], + [19021,10777], + [19023,8502], + [19025,5272], + [19027,12386], + [19029,7671], + [19031,11457], + [19033,25563], + [19035,6614], + [19037,6962], + [19039,4937], + [19041,9584], + [19043,9996], + [19045,28228], + [19047,9558], + [19049,34990], + [19051,4054], + [19053,4205], + [19055,10883], + [19057,21189], + [19059,9387], + [19061,52911], + [19063,5873], + [19065,10976], + [19067,8569], + [19069,5881], + [19071,3796], + [19073,5122], + [19075,6957], + [19077,5732], + [19079,8263], + [19081,5652], + [19083,9372], + [19085,7703], + [19087,9863], + [19089,5097], + [19091,5154], + [19093,3985], + [19095,8596], + [19097,11240], + [19099,17834], + [19101,8272], + [19103,80726], + [19105,10776], + [19107,5711], + [19109,8981], + [19111,17434], + [19113,123192], + [19115,5983], + [19117,4690], + [19119,6922], + [19121,8276], + [19123,11852], + [19125,17487], + [19127,20623], + [19129,7963], + [19131,5836], + [19133,4568], + [19135,4337], + [19137,5271], + [19139,23877], + [19141,7889], + [19143,3324], + [19145,7864], + [19147,5320], + [19149,14499], + [19151,4132], + [19153,243967], + [19155,48372], + [19157,10300], + [19159,2453], + [19161,5800], + [19163,90578], + [19165,7600], + [19167,19721], + [19169,49361], + [19171,8974], + [19173,3377], + [19175,6932], + [19177,3850], + [19179,18907], + [19181,25913], + [19183,11924], + [19185,3236], + [19187,19819], + [19189,5771], + [19191,12268], + [19193,55996], + [19195,4486], + [19197,7047], + [20001,7536], + [20003,4482], + [20005,8861], + [20007,2921], + [20009,16047], + [20011,8794], + [20013,5914], + [20015,32715], + [20017,1546], + [20019,1868], + [20021,11606], + [20023,1530], + [20025,1279], + [20027,5290], + [20029,5816], + [20031,5576], + [20033,1105], + [20035,18586], + [20037,20225], + [20039,1815], + [20041,10918], + [20043,4634], + [20045,63191], + [20047,1804], + [20049,1527], + [20051,18090], + [20053,3874], + [20055,19742], + [20057,18924], + [20059,13658], + [20061,14117], + [20063,1623], + [20065,1485], + [20067,4156], + [20069,3476], + [20071,733], + [20073,3579], + [20075,1344], + [20077,3469], + [20079,18262], + [20081,2299], + [20083,953], + [20085,7038], + [20087,9723], + [20089,1995], + [20091,299697], + [20093,2174], + [20095,4633], + [20097,1580], + [20099,11659], + [20101,1142], + [20103,32725], + [20105,2021], + [20107,4533], + [20109,1730], + [20111,18645], + [20113,16937], + [20115,7023], + [20117,6160], + [20119,2559], + [20121,16144], + [20123,3814], + [20125,18732], + [20127,3085], + [20129,1783], + [20131,5921], + [20133,8733], + [20135,1863], + [20137,2898], + [20139,8537], + [20141,2298], + [20143,3418], + [20145,3959], + [20147,3197], + [20149,11102], + [20151,5985], + [20153,1319], + [20155,35110], + [20157,2901], + [20159,6049], + [20161,37558], + [20163,2805], + [20165,1705], + [20167,3606], + [20169,31865], + [20171,2888], + [20173,259399], + [20175,11157], + [20177,94610], + [20179,1603], + [20181,3798], + [20183,2253], + [20185,2275], + [20187,1185], + [20189,2378], + [20191,11670], + [20193,4310], + [20195,1895], + [20197,3768], + [20199,920], + [20201,3474], + [20203,1281], + [20205,5305], + [20207,1792], + [20209,70526], + [21001,9218], + [21003,8740], + [21005,11092], + [21007,4098], + [21009,19339], + [21011,5116], + [21013,9777], + [21015,64357], + [21017,9263], + [21019,22747], + [21021,12948], + [21023,4289], + [21025,5675], + [21027,9377], + [21029,39761], + [21031,5499], + [21033,6909], + [21035,17940], + [21037,45055], + [21039,2339], + [21041,5446], + [21043,13518], + [21045,7145], + [21047,29392], + [21049,17039], + [21051,6964], + [21053,4852], + [21055,4110], + [21057,3063], + [21059,48300], + [21061,5274], + [21063,3274], + [21065,6412], + [21067,152180], + [21069,6543], + [21071,15613], + [21073,24568], + [21075,2684], + [21077,4030], + [21079,7738], + [21081,12856], + [21083,16349], + [21085,11481], + [21087,5681], + [21089,17874], + [21091,4333], + [21093,47868], + [21095,10593], + [21097,9391], + [21099,8333], + [21101,23299], + [21103,7981], + [21105,2126], + [21107,23022], + [21109,4297], + [21111,360376], + [21113,22791], + [21115,9922], + [21117,84184], + [21119,6563], + [21121,12862], + [21123,6997], + [21125,26528], + [21127,6208], + [21129,2785], + [21131,3622], + [21133,8789], + [21135,5598], + [21137,10658], + [21139,4775], + [21141,12428], + [21143,3362], + [21145,31507], + [21147,5861], + [21149,4561], + [21151,43187], + [21153,4473], + [21155,10166], + [21157,14669], + [21159,3818], + [21161,8824], + [21163,11493], + [21165,2602], + [21167,10450], + [21169,4390], + [21171,4751], + [21173,12464], + [21175,5100], + [21177,13842], + [21179,22133], + [21181,3157], + [21183,12672], + [21185,28068], + [21187,5537], + [21189,1576], + [21191,7308], + [21193,11640], + [21195,26346], + [21197,5749], + [21199,27808], + [21201,1068], + [21203,7256], + [21205,12481], + [21207,8413], + [21209,22942], + [21211,21942], + [21213,9235], + [21215,9297], + [21217,13762], + [21219,5331], + [21221,6457], + [21223,4355], + [21225,7859], + [21227,58570], + [21229,5411], + [21231,8538], + [21233,6454], + [21235,15660], + [21237,2388], + [21239,12984], + [22001,26174], + [22003,9092], + [22005,51521], + [22007,10437], + [22009,16420], + [22011,14372], + [22013,6263], + [22015,53948], + [22017,118906], + [22019,92017], + [22021,4601], + [22023,3113], + [22025,4262], + [22027,6642], + [22029,7483], + [22031,11452], + [22033,217988], + [22035,2976], + [22037,8105], + [22039,12714], + [22041,7791], + [22043,8824], + [22045,34245], + [22047,12429], + [22049,6514], + [22051,211151], + [22053,14684], + [22055,111996], + [22057,48459], + [22059,6418], + [22061,19299], + [22063,58952], + [22065,4679], + [22067,11559], + [22069,17347], + [22071,145831], + [22073,71098], + [22075,7974], + [22077,9516], + [22079,60738], + [22081,3517], + [22083,8906], + [22085,9452], + [22087,18076], + [22089,23740], + [22091,4232], + [22093,9335], + [22095,20455], + [22097,38089], + [22099,23819], + [22101,23070], + [22103,107777], + [22105,52708], + [22107,2051], + [22109,54316], + [22111,10301], + [22113,24638], + [22115,20574], + [22117,15715], + [22119,19627], + [22121,10650], + [22123,4491], + [22125,4743], + [22127,6504], + [23001,57854], + [23003,34534], + [23005,156176], + [23007,14375], + [23009,29339], + [23011,63115], + [23013,20559], + [23015,17918], + [23017,28053], + [23019,78535], + [23021,7376], + [23023,18686], + [23025,24650], + [23027,19025], + [23029,14393], + [23031,111656], + [24001,36201], + [24003,286650], + [24005,432708], + [24009,48935], + [24011,16438], + [24013,95197], + [24015,51045], + [24017,78070], + [24019,16870], + [24021,124142], + [24023,16815], + [24025,134560], + [24027,163780], + [24029,10886], + [24031,522421], + [24033,457576], + [24035,27043], + [24037,53739], + [24039,11103], + [24041,18706], + [24043,68286], + [24045,52443], + [24047,27821], + [24510,281265], + [25001,122070], + [25003,73086], + [25005,292640], + [25007,11334], + [25009,381088], + [25011,38913], + [25013,226900], + [25015,87432], + [25017,826709], + [25019,7810], + [25021,358021], + [25023,263807], + [25025,374530], + [25027,406048], + [26001,4127], + [26003,4265], + [26005,54382], + [26007,14931], + [26009,11514], + [26011,7916], + [26013,4497], + [26015,28915], + [26017,54876], + [26019,8724], + [26021,77826], + [26023,21605], + [26025,68573], + [26027,25313], + [26029,13765], + [26031,11907], + [26033,17191], + [26035,12979], + [26037,37232], + [26039,6390], + [26041,19498], + [26043,14291], + [26045,57934], + [26047,19586], + [26049,199418], + [26051,10422], + [26053,7493], + [26055,48509], + [26057,19605], + [26059,20987], + [26061,17689], + [26063,16186], + [26065,151927], + [26067,29284], + [26069,10589], + [26071,5779], + [26073,38315], + [26075,76509], + [26077,133516], + [26079,8496], + [26081,314423], + [26083,1130], + [26085,4080], + [26087,43238], + [26089,10943], + [26091,48487], + [26093,91418], + [26095,2723], + [26097,6185], + [26099,416697], + [26101,11606], + [26103,36329], + [26105,14812], + [26107,20321], + [26109,13156], + [26111,42860], + [26113,6322], + [26115,74736], + [26117,26724], + [26119,4008], + [26121,88315], + [26123,22210], + [26125,606548], + [26127,14212], + [26129,9627], + [26131,3211], + [26133,9546], + [26135,3757], + [26137,11993], + [26139,131050], + [26141,6043], + [26143,10053], + [26145,94536], + [26147,82253], + [26149,28889], + [26151,21027], + [26153,3929], + [26155,35395], + [26157,28025], + [26159,39965], + [26161,185329], + [26163,869996], + [26165,14482], + [27001,7718], + [27003,190905], + [27005,17277], + [27007,21699], + [27009,23241], + [27011,2944], + [27013,37819], + [27015,15063], + [27017,17566], + [27019,50924], + [27021,14136], + [27023,7298], + [27025,27459], + [27027,32769], + [27029,4223], + [27031,3116], + [27033,6477], + [27035,33408], + [27037,229412], + [27039,11131], + [27041,20767], + [27043,7712], + [27045,11270], + [27047,16527], + [27049,25723], + [27051,3174], + [27053,656192], + [27055,11009], + [27057,9570], + [27059,21853], + [27061,22885], + [27063,6976], + [27065,8115], + [27067,23968], + [27069,2523], + [27071,6679], + [27073,4333], + [27075,6195], + [27077,2273], + [27079,14427], + [27081,3376], + [27083,14762], + [27085,20157], + [27087,2437], + [27089,5350], + [27091,11690], + [27093,12551], + [27095,12423], + [27097,18341], + [27099,21020], + [27101,5755], + [27103,19951], + [27105,11615], + [27107,3596], + [27109,81545], + [27111,30228], + [27113,8975], + [27115,14543], + [27117,5578], + [27119,17149], + [27121,6249], + [27123,270603], + [27125,2432], + [27127,8438], + [27129,8771], + [27131,33630], + [27133,5052], + [27135,9533], + [27137,105614], + [27139,74949], + [27141,49293], + [27143,8892], + [27145,84273], + [27147,20813], + [27149,5630], + [27151,5507], + [27153,12534], + [27155,1791], + [27157,12261], + [27159,6559], + [27161,10492], + [27163,128886], + [27165,5585], + [27167,3544], + [27169,28884], + [27171,68094], + [27173,5874], + [28001,12807], + [28003,14874], + [28005,4950], + [28007,6937], + [28009,2788], + [28011,14740], + [28013,5864], + [28015,4740], + [28017,7103], + [28019,3329], + [28021,3673], + [28023,6687], + [28025,7146], + [28027,9915], + [28029,11726], + [28031,8589], + [28033,76330], + [28035,36321], + [28037,2996], + [28039,9384], + [28041,4829], + [28043,8948], + [28045,18096], + [28047,84779], + [28049,113528], + [28051,6956], + [28053,4155], + [28055,662], + [28057,9596], + [28059,60589], + [28061,7102], + [28063,2802], + [28065,5133], + [28067,29509], + [28069,3863], + [28071,21475], + [28073,23539], + [28075,32362], + [28077,5127], + [28079,8438], + [28081,36729], + [28083,12997], + [28085,13590], + [28087,24998], + [28089,45519], + [28091,10288], + [28093,14707], + [28095,15489], + [28097,4503], + [28099,13338], + [28101,9037], + [28103,3681], + [28105,19844], + [28107,14540], + [28109,20920], + [28111,4847], + [28113,15026], + [28115,12703], + [28117,10818], + [28119,3431], + [28121,72616], + [28123,13412], + [28125,2381], + [28127,11290], + [28129,6282], + [28131,7756], + [28133,10258], + [28135,5870], + [28137,11448], + [28139,8334], + [28141,7548], + [28143,4275], + [28145,11544], + [28147,5595], + [28149,21410], + [28151,21400], + [28153,8134], + [28155,3402], + [28157,3875], + [28159,7611], + [28161,5441], + [28163,9952], + [29001,13601], + [29003,10161], + [29005,3232], + [29007,12164], + [29009,17376], + [29011,5244], + [29013,7549], + [29015,8285], + [29017,5594], + [29019,88081], + [29021,49582], + [29023,21496], + [29025,4165], + [29027,22887], + [29029,22086], + [29031,38723], + [29033,5091], + [29035,3103], + [29037,50103], + [29039,6307], + [29041,4044], + [29043,40626], + [29045,3578], + [29047,120656], + [29049,10121], + [29051,40515], + [29053,9105], + [29055,12221], + [29057,3564], + [29059,7309], + [29061,3874], + [29063,5163], + [29065,6830], + [29067,6742], + [29069,14905], + [29071,53651], + [29073,7991], + [29075,3589], + [29077,139574], + [29079,4918], + [29081,4614], + [29083,10958], + [29085,3512], + [29087,2786], + [29089,5109], + [29091,19838], + [29093,5775], + [29095,343945], + [29097,57882], + [29099,117270], + [29101,26190], + [29103,2343], + [29105,16533], + [29107,15872], + [29109,19110], + [29111,5475], + [29113,27431], + [29115,6635], + [29117,7364], + [29119,10656], + [29121,8213], + [29123,6269], + [29125,4824], + [29127,14946], + [29129,1760], + [29131,12812], + [29133,6181], + [29135,7459], + [29137,4232], + [29139,6109], + [29141,9297], + [29143,8478], + [29145,27751], + [29147,12735], + [29149,4664], + [29151,7332], + [29153,4504], + [29155,8517], + [29157,10593], + [29159,20720], + [29161,22039], + [29163,9283], + [29165,49871], + [29167,14171], + [29169,20861], + [29171,2495], + [29173,5602], + [29175,13209], + [29177,11069], + [29179,2815], + [29181,6771], + [29183,196052], + [29185,4248], + [29186,10107], + [29187,30517], + [29189,514851], + [29195,11858], + [29197,2171], + [29199,2494], + [29201,20414], + [29203,3753], + [29205,3303], + [29207,15183], + [29209,16074], + [29211,3625], + [29213,28222], + [29215,11160], + [29217,9358], + [29219,16736], + [29221,10095], + [29223,6034], + [29225,16798], + [29227,1147], + [29229,8247], + [29510,158443], + [30001,5161], + [30003,5223], + [30005,2880], + [30007,2408], + [30009,5249], + [30011,716], + [30013,40611], + [30015,2590], + [30017,5845], + [30019,780], + [30021,4366], + [30023,3935], + [30025,1894], + [30027,6044], + [30029,44642], + [30031,48837], + [30033,652], + [30035,5767], + [30037,554], + [30039,1252], + [30041,8207], + [30043,6036], + [30045,1070], + [30047,11410], + [30049,33935], + [30051,751], + [30053,7891], + [30055,1016], + [30057,4207], + [30059,857], + [30061,1919], + [30063,58728], + [30065,2438], + [30067,8594], + [30069,236], + [30071,2237], + [30073,2573], + [30075,900], + [30077,2718], + [30079,589], + [30081,18263], + [30083,5483], + [30085,4031], + [30087,4040], + [30089,4536], + [30091,1787], + [30093,17242], + [30095,4473], + [30097,2422], + [30099,3024], + [30101,2523], + [30103,401], + [30105,3588], + [30107,1044], + [30109,574], + [30111,81872], + [31001,17593], + [31003,3738], + [31005,242], + [31007,352], + [31009,261], + [31011,3342], + [31013,5641], + [31015,1132], + [31017,1839], + [31019,27704], + [31021,3998], + [31023,4750], + [31025,13741], + [31027,4844], + [31029,2082], + [31031,3490], + [31033,5175], + [31035,3033], + [31037,5783], + [31039,4991], + [31041,6196], + [31043,11152], + [31045,4769], + [31047,12630], + [31049,1070], + [31051,3332], + [31053,19884], + [31055,274796], + [31057,1066], + [31059,3198], + [31061,1787], + [31063,1655], + [31065,2562], + [31067,12015], + [31069,962], + [31071,1086], + [31073,976], + [31075,368], + [31077,1331], + [31079,32175], + [31081,5532], + [31083,1873], + [31085,493], + [31087,1491], + [31089,6240], + [31091,412], + [31093,3615], + [31095,4300], + [31097,3032], + [31099,3626], + [31101,4470], + [31103,398], + [31105,1923], + [31107,4859], + [31109,160713], + [31111,21821], + [31113,458], + [31115,336], + [31117,292], + [31119,18935], + [31121,4178], + [31123,2863], + [31125,2150], + [31127,3433], + [31129,2313], + [31131,8951], + [31133,1546], + [31135,1705], + [31137,5212], + [31139,3873], + [31141,18361], + [31143,3048], + [31145,6099], + [31147,4219], + [31149,878], + [31151,8342], + [31153,79677], + [31155,10825], + [31157,19690], + [31159,8840], + [31161,3116], + [31163,2007], + [31165,735], + [31167,3490], + [31169,2799], + [31171,359], + [31173,3160], + [31175,2572], + [31177,11045], + [31179,5190], + [31181,1813], + [31183,462], + [31185,7078], + [32001,13505], + [32003,967672], + [32005,22325], + [32007,27396], + [32009,489], + [32011,895], + [32013,8583], + [32015,4008], + [32017,1677], + [32019,22900], + [32021,2351], + [32023,17784], + [32027,2598], + [32029,2469], + [32031,220834], + [32033,4954], + [32510,28861], + [33001,32539], + [33003,25862], + [33005,42039], + [33007,16387], + [33009,48888], + [33011,229684], + [33013,81726], + [33015,174577], + [33017,69746], + [33019,22798], + [34001,137079], + [34003,481104], + [34005,241989], + [34007,271508], + [34009,57950], + [34011,70842], + [34013,367513], + [34015,159879], + [34017,300162], + [34019,73220], + [34021,205540], + [34023,427779], + [34025,336864], + [34027,275319], + [34029,265145], + [34031,245108], + [34033,31792], + [34035,182709], + [34037,85607], + [34039,273986], + [34041,59551], + [35001,310124], + [35003,1578], + [35005,27308], + [35006,12336], + [35007,6606], + [35009,21360], + [35011,829], + [35013,90210], + [35015,28005], + [35017,11840], + [35019,1782], + [35021,387], + [35023,2679], + [35025,28329], + [35027,10885], + [35028,9889], + [35029,12436], + [35031,27078], + [35033,2045], + [35035,25939], + [35037,3960], + [35039,20196], + [35041,9312], + [35043,56336], + [35045,56398], + [35047,13294], + [35049,76501], + [35051,5962], + [35053,9467], + [35055,17592], + [35057,6905], + [35059,1926], + [35061,30858], + [36001,158937], + [36003,23898], + [36005,533866], + [36007,97500], + [36009,41668], + [36011,41590], + [36013,65934], + [36015,41016], + [36017,24407], + [36019,39787], + [36021,31432], + [36023,24304], + [36025,22265], + [36027,144842], + [36029,470654], + [36031,18343], + [36033,23032], + [36035,27246], + [36037,33101], + [36039,24079], + [36041,3016], + [36043,31173], + [36045,49515], + [36047,1119823], + [36049,12755], + [36051,32143], + [36053,36089], + [36055,375379], + [36057,24427], + [36059,692905], + [36061,931604], + [36063,113676], + [36065,110627], + [36067,233629], + [36069,56956], + [36071,180483], + [36073,19376], + [36075,60028], + [36077,31640], + [36079,55010], + [36081,1129395], + [36083,83896], + [36085,246087], + [36087,153851], + [36089,49756], + [36091,122056], + [36093,76792], + [36095,15581], + [36097,10054], + [36099,17207], + [36101,46013], + [36103,791881], + [36105,35381], + [36107,26244], + [36109,56661], + [36111,89944], + [36113,36435], + [36115,32510], + [36117,47691], + [36119,487641], + [36121,21030], + [36123,13233], + [37001,71389], + [37003,18177], + [37005,4667], + [37007,10096], + [37009,12547], + [37011,8986], + [37013,20791], + [37015,9016], + [37017,15350], + [37019,50979], + [37021,121935], + [37023,39670], + [37025,84852], + [37027,37967], + [37029,4465], + [37031,32624], + [37033,10861], + [37035,77039], + [37037,34333], + [37039,9972], + [37041,6533], + [37043,4604], + [37045,48587], + [37047,24433], + [37049,42338], + [37051,137050], + [37053,12704], + [37055,21738], + [37057,77564], + [37059,20806], + [37061,24427], + [37063,143682], + [37065,24427], + [37067,179178], + [37069,27633], + [37071,99832], + [37073,4822], + [37075,3696], + [37077,25625], + [37079,9257], + [37081,249715], + [37083,24239], + [37085,48255], + [37087,27812], + [37089,49766], + [37091,10054], + [37093,20799], + [37095,2627], + [37097,78912], + [37099,20703], + [37101,78503], + [37103,4621], + [37105,26038], + [37107,26971], + [37109,39200], + [37111,20475], + [37113,15922], + [37115,9908], + [37117,11864], + [37119,465775], + [37121,7180], + [37123,11059], + [37125,36267], + [37127,47359], + [37129,104719], + [37131,8633], + [37133,65809], + [37135,69999], + [37137,5297], + [37139,17797], + [37141,24623], + [37143,5186], + [37145,19191], + [37147,82319], + [37149,9447], + [37151,74265], + [37153,19973], + [37155,55871], + [37157,43899], + [37159,70583], + [37161,28325], + [37163,31303], + [37165,13789], + [37167,30271], + [37169,23500], + [37171,33728], + [37173,6795], + [37175,13232], + [37177,2206], + [37179,95385], + [37181,19363], + [37183,459057], + [37185,7900], + [37187,6231], + [37189,23041], + [37191,53940], + [37193,30172], + [37195,39661], + [37197,18744], + [37199,7878], + [38001,1271], + [38003,6247], + [38005,2632], + [38007,529], + [38009,3640], + [38011,1737], + [38013,1101], + [38015,47555], + [38017,87854], + [38019,1979], + [38021,2771], + [38023,878], + [38025,1780], + [38027,1184], + [38029,1677], + [38031,1728], + [38033,892], + [38035,37905], + [38037,1202], + [38039,1284], + [38041,1177], + [38043,1209], + [38045,2269], + [38047,943], + [38049,2678], + [38051,1341], + [38053,2911], + [38055,4953], + [38057,5126], + [38059,14964], + [38061,3706], + [38063,1717], + [38065,1281], + [38067,3910], + [38069,1897], + [38071,5691], + [38073,2943], + [38075,1242], + [38077,8678], + [38079,4951], + [38081,2000], + [38083,659], + [38085,1286], + [38087,561], + [38089,14409], + [38091,1116], + [38093,11883], + [38095,1076], + [38097,4024], + [38099,5593], + [38101,29832], + [38103,2040], + [38105,14758], + [39001,13026], + [39003,51347], + [39005,27218], + [39007,48595], + [39009,31330], + [39011,26527], + [39013,33924], + [39015,21811], + [39017,189452], + [39019,14124], + [39021,20290], + [39023,70525], + [39025,105666], + [39027,21051], + [39029,53111], + [39031,17072], + [39033,21828], + [39035,625607], + [39037,27879], + [39039,20396], + [39041,91919], + [39043,42595], + [39045,74973], + [39047,16770], + [39049,624988], + [39051,22374], + [39053,14162], + [39055,51956], + [39057,80186], + [39059,19486], + [39061,432467], + [39063,39965], + [39065,15080], + [39067,7293], + [39069,15709], + [39071,20552], + [39073,14270], + [39075,19186], + [39077,28765], + [39079,15421], + [39081,32809], + [39083,29987], + [39085,132148], + [39087,29156], + [39089,82964], + [39091,24625], + [39093,158356], + [39095,221862], + [39097,20235], + [39099,115543], + [39101,31589], + [39103,95582], + [39105,9383], + [39107,24331], + [39109,55116], + [39111,5664], + [39113,264387], + [39115,6004], + [39117,17985], + [39119,38658], + [39121,5863], + [39123,20792], + [39125,10426], + [39127,16778], + [39129,24742], + [39131,11089], + [39133,92179], + [39135,21450], + [39137,18221], + [39139,61604], + [39141,34905], + [39143,32992], + [39145,32713], + [39147,30487], + [39149,26464], + [39151,190557], + [39153,292933], + [39155,106546], + [39157,47129], + [39159,25896], + [39161,15172], + [39163,5728], + [39165,108917], + [39167,32872], + [39169,58035], + [39171,20109], + [39173,65711], + [39175,11177], + [40001,11166], + [40003,2532], + [40005,6256], + [40007,3329], + [40009,12117], + [40011,4998], + [40013,20568], + [40015,12922], + [40017,53337], + [40019,28565], + [40021,24711], + [40023,7297], + [40025,1289], + [40027,120212], + [40029,2634], + [40031,47619], + [40033,3613], + [40035,7546], + [40037,31142], + [40039,15372], + [40041,19663], + [40043,2747], + [40045,2467], + [40047,32040], + [40049,15162], + [40051,23190], + [40053,2688], + [40055,2097], + [40057,1381], + [40059,2061], + [40061,6174], + [40063,5763], + [40065,12252], + [40067,2543], + [40069,5249], + [40071,23646], + [40073,7773], + [40075,4149], + [40077,4485], + [40079,20818], + [40081,13868], + [40083,18107], + [40085,5603], + [40087,15172], + [40089,14761], + [40091,8914], + [40093,4335], + [40095,6564], + [40097,18502], + [40099,9250], + [40101,31039], + [40103,5903], + [40105,5225], + [40107,4804], + [40109,325899], + [40111,15877], + [40113,19661], + [40115,18667], + [40117,7314], + [40119,35291], + [40121,23615], + [40123,20817], + [40125,33761], + [40127,5537], + [40129,1943], + [40131,40405], + [40133,11155], + [40135,17613], + [40137,22197], + [40139,7689], + [40141,3567], + [40143,293653], + [40145,33375], + [40147,28235], + [40149,6305], + [40151,4570], + [40153,11673], + [41001,7628], + [41003,43653], + [41005,202261], + [41007,20725], + [41009,24640], + [41011,28572], + [41013,9547], + [41015,9483], + [41017,81747], + [41019,47157], + [41021,1226], + [41023,3461], + [41025,3537], + [41027,13956], + [41029,102309], + [41031,9350], + [41033,35332], + [41035,31261], + [41037,3689], + [41039,183890], + [41041,23252], + [41043,56197], + [41045,13156], + [41047,158101], + [41049,5805], + [41051,393391], + [41053,40198], + [41055,1050], + [41057,12870], + [41059,38738], + [41061,12634], + [41063,3762], + [41065,14132], + [41067,290888], + [41069,656], + [41071,48389], + [42001,54978], + [42003,639381], + [42005,33102], + [42007,89935], + [42009,24282], + [42011,203891], + [42013,65096], + [42015,31343], + [42017,343918], + [42019,99691], + [42021,69068], + [42023,2364], + [42025,31454], + [42027,75320], + [42029,268122], + [42031,20658], + [42033,40730], + [42035,19338], + [42037,36446], + [42039,42885], + [42041,124899], + [42043,137073], + [42045,280088], + [42047,17103], + [42049,139893], + [42051,66011], + [42053,2382], + [42055,80943], + [42057,7641], + [42059,19109], + [42061,22738], + [42063,47201], + [42065,22837], + [42067,12157], + [42069,107192], + [42071,269564], + [42073,43579], + [42075,72763], + [42077,178430], + [42079,161298], + [42081,60009], + [42083,21188], + [42085,54749], + [42087,22558], + [42089,82859], + [42091,425087], + [42093,9341], + [42095,153711], + [42097,47323], + [42099,24730], + [42101,652401], + [42103,28396], + [42105,7716], + [42107,73928], + [42109,19376], + [42111,38857], + [42113,3023], + [42115,21794], + [42117,20410], + [42119,17681], + [42121,26339], + [42123,21898], + [42125,106457], + [42127,25640], + [42129,188741], + [42131,14447], + [42133,226705], + [44001,27080], + [44003,96816], + [44005,43436], + [44007,326783], + [44009,73170], + [45001,11260], + [45003,76639], + [45005,3398], + [45007,85177], + [45009,6435], + [45011,8997], + [45013,62884], + [45015,80462], + [45017,6727], + [45019,173571], + [45021,25594], + [45023,15632], + [45025,19022], + [45027,12756], + [45029,17187], + [45031,31068], + [45033,13778], + [45035,64044], + [45037,11151], + [45039,10818], + [45041,63640], + [45043,30222], + [45045,223171], + [45047,30991], + [45049,7955], + [45051,130286], + [45053,10095], + [45055,29874], + [45057,30340], + [45059,32050], + [45061,8495], + [45063,132981], + [45065,3423], + [45067,12916], + [45069,12036], + [45071,18446], + [45073,31227], + [45075,41540], + [45077,56986], + [45079,179853], + [45081,8964], + [45083,135629], + [45085,44819], + [45087,12077], + [45089,15856], + [45091,112281], + [46003,1529], + [46005,9723], + [46007,1431], + [46009,3136], + [46011,19026], + [46013,21221], + [46015,2856], + [46017,510], + [46019,5447], + [46021,856], + [46023,4194], + [46025,1828], + [46027,7655], + [46029,16256], + [46031,1415], + [46033,5017], + [46035,11229], + [46037,2920], + [46039,2728], + [46041,2670], + [46043,1775], + [46045,2009], + [46047,3811], + [46049,1150], + [46051,4203], + [46053,2350], + [46055,1168], + [46057,2970], + [46059,1929], + [46061,1921], + [46063,797], + [46065,10395], + [46067,3808], + [46069,760], + [46071,1271], + [46073,1392], + [46075,724], + [46077,2975], + [46079,6738], + [46081,13589], + [46083,22293], + [46085,2020], + [46087,2642], + [46089,1164], + [46091,2107], + [46093,12074], + [46095,875], + [46097,1278], + [46099,100524], + [46101,3955], + [46102,"NA"], + [46103,55334], + [46105,1635], + [46107,1313], + [46109,4801], + [46111,1412], + [46115,3472], + [46117,1950], + [46119,1001], + [46121,3561], + [46123,2965], + [46125,4085], + [46127,8544], + [46129,2720], + [46135,12022], + [46137,890], + [47001,36055], + [47003,22424], + [47005,7057], + [47007,4933], + [47009,63735], + [47011,47675], + [47013,16980], + [47015,6593], + [47017,13754], + [47019,29418], + [47021,20388], + [47023,7861], + [47025,13178], + [47027,3339], + [47029,16642], + [47031,25541], + [47033,6523], + [47035,23041], + [47037,323043], + [47039,5705], + [47041,10004], + [47043,23523], + [47045,17589], + [47047,18209], + [47049,7977], + [47051,19633], + [47053,21584], + [47055,13425], + [47057,10120], + [47059,29907], + [47061,6016], + [47063,29971], + [47065,164214], + [47067,2664], + [47069,11329], + [47071,11866], + [47073,27491], + [47075,9297], + [47077,12055], + [47079,13672], + [47081,10090], + [47083,3922], + [47085,9033], + [47087,5008], + [47089,24299], + [47091,7460], + [47093,230341], + [47095,2662], + [47097,10416], + [47099,16870], + [47101,5577], + [47103,17095], + [47105,23654], + [47107,23549], + [47109,11077], + [47111,10629], + [47113,48374], + [47115,12707], + [47117,12507], + [47119,37374], + [47121,5135], + [47123,18769], + [47125,69330], + [47127,3051], + [47129,8812], + [47131,15199], + [47133,10105], + [47135,2831], + [47137,1821], + [47139,7080], + [47141,36014], + [47143,13468], + [47145,27483], + [47147,33982], + [47149,135885], + [47151,8519], + [47153,6309], + [47155,48753], + [47157,438125], + [47159,9359], + [47161,5915], + [47163,74989], + [47165,80600], + [47167,29018], + [47169,3718], + [47171,8472], + [47173,8913], + [47175,2452], + [47177,17151], + [47179,62614], + [47181,6692], + [47183,15947], + [47185,10682], + [47187,89683], + [47189,58741], + [48001,20852], + [48003,6985], + [48005,39961], + [48007,11566], + [48009,5001], + [48011,1060], + [48013,19420], + [48015,13214], + [48017,3350], + [48019,9817], + [48021,34248], + [48023,1962], + [48025,11879], + [48027,126877], + [48029,763919], + [48031,5067], + [48033,424], + [48035,8550], + [48037,44185], + [48039,146139], + [48041,96652], + [48043,5153], + [48045,714], + [48047,3308], + [48049,19013], + [48051,8142], + [48053,22224], + [48055,15740], + [48057,9446], + [48059,7092], + [48061,151405], + [48063,5743], + [48065,3261], + [48067,13337], + [48069,3693], + [48071,15348], + [48073,20965], + [48075,3298], + [48077,6074], + [48079,1506], + [48081,1322], + [48083,4381], + [48085,414997], + [48087,1492], + [48089,10742], + [48091,57279], + [48093,6833], + [48095,1348], + [48097,21821], + [48099,24278], + [48101,799], + [48103,1771], + [48105,2282], + [48107,2581], + [48109,1809], + [48111,3756], + [48113,1143197], + [48115,5357], + [48117,9138], + [48119,2254], + [48121,350711], + [48123,9177], + [48125,1027], + [48127,4199], + [48129,1926], + [48131,5254], + [48133,8591], + [48135,71470], + [48137,1076], + [48139,70942], + [48141,307566], + [48143,19196], + [48145,6670], + [48147,13628], + [48149,12261], + [48151,2020], + [48153,3221], + [48155,720], + [48157,276806], + [48159,5466], + [48161,10139], + [48163,7439], + [48165,7041], + [48167,140480], + [48169,2456], + [48171,13690], + [48173,652], + [48175,3383], + [48177,10126], + [48179,11279], + [48181,56774], + [48183,64999], + [48185,11544], + [48187,60038], + [48189,17323], + [48191,1462], + [48193,4352], + [48195,2785], + [48197,2264], + [48199,27221], + [48201,1971402], + [48203,32818], + [48205,2466], + [48207,3240], + [48209,78949], + [48211,2617], + [48213,35137], + [48215,296567], + [48217,16420], + [48219,12196], + [48221,26231], + [48223,17826], + [48225,8214], + [48227,14327], + [48229,1719], + [48231,36422], + [48233,11354], + [48235,921], + [48237,5277], + [48239,6922], + [48241,15935], + [48243,1200], + [48245,115438], + [48247,3008], + [48249,21655], + [48251,74920], + [48253,7766], + [48255,5481], + [48257,46868], + [48259,16712], + [48261,235], + [48263,463], + [48265,23323], + [48267,2145], + [48269,196], + [48271,1436], + [48273,17029], + [48275,1832], + [48277,23503], + [48279,7081], + [48281,10492], + [48283,2920], + [48285,10006], + [48287,9113], + [48289,8250], + [48291,31455], + [48293,11233], + [48295,1730], + [48297,5197], + [48299,8522], + [48301,43], + [48303,141963], + [48305,2870], + [48307,3936], + [48309,113759], + [48311,360], + [48313,5328], + [48315,5132], + [48317,2246], + [48319,2399], + [48321,17837], + [48323,22722], + [48325,19878], + [48327,1103], + [48329,74935], + [48331,11455], + [48333,2450], + [48335,3498], + [48337,10695], + [48339,220240], + [48341,11510], + [48343,6080], + [48345,686], + [48347,31827], + [48349,21318], + [48351,5853], + [48353,7857], + [48355,165625], + [48357,5502], + [48359,923], + [48361,41400], + [48363,14210], + [48365,13199], + [48367,54611], + [48369,4622], + [48371,8410], + [48373,17978], + [48375,57625], + [48377,3744], + [48379,5116], + [48381,69158], + [48383,2215], + [48385,1537], + [48387,6010], + [48389,4687], + [48391,4141], + [48393,583], + [48395,7221], + [48397,39332], + [48399,4561], + [48401,24266], + [48403,3540], + [48405,3605], + [48407,10139], + [48409,30628], + [48411,2455], + [48413,1510], + [48415,7763], + [48417,2127], + [48419,12613], + [48421,1444], + [48423,100397], + [48425,4224], + [48427,24428], + [48429,4629], + [48431,855], + [48433,849], + [48435,3449], + [48437,3648], + [48439,896305], + [48441,67826], + [48443,382], + [48445,6029], + [48447,1033], + [48449,14308], + [48451,52792], + [48453,547413], + [48455,5905], + [48457,8442], + [48459,19653], + [48461,1817], + [48463,11591], + [48465,20998], + [48467,25941], + [48469,45385], + [48471,27669], + [48473,16440], + [48475,5033], + [48477,16966], + [48479,94138], + [48481,21209], + [48483,3212], + [48485,61406], + [48487,7874], + [48489,8388], + [48491,209947], + [48493,18901], + [48495,3411], + [48497,28244], + [48499,18606], + [48501,4101], + [48503,9671], + [48505,5326], + [48507,3922], + [49001,3550], + [49003,23220], + [49005,62057], + [49007,10485], + [49009,479], + [49011,144875], + [49013,10348], + [49015,5248], + [49017,2873], + [49019,5402], + [49021,20949], + [49023,3963], + [49025,3519], + [49027,6479], + [49029,4066], + [49031,894], + [49033,1461], + [49035,553693], + [49037,5292], + [49039,11335], + [49041,9876], + [49043,22210], + [49045,28202], + [49047,17684], + [49049,221538], + [49051,10020], + [49053,60001], + [49055,1479], + [49057,114652], + [50001,21909], + [50003,20622], + [50005,16778], + [50007,90375], + [50009,3318], + [50011,26617], + [50013,4262], + [50015,15694], + [50017,16638], + [50019,14587], + [50021,35660], + [50023,34838], + [50025,25259], + [50027,33304], + [51001,19704], + [51003,51932], + [51005,7071], + [51007,6649], + [51009,15627], + [51011,7141], + [51013,137201], + [51015,38435], + [51017,2690], + [51019,37706], + [51021,3595], + [51023,17491], + [51025,7195], + [51027,9236], + [51029,7372], + [51031,27137], + [51033,14126], + [51035,14407], + [51036,3833], + [51037,5548], + [51041,167338], + [51043,8102], + [51045,2443], + [51047,21308], + [51049,4598], + [51051,6442], + [51053,13060], + [51057,5821], + [51059,587584], + [51061,37407], + [51063,7336], + [51065,13992], + [51067,26808], + [51069,40902], + [51071,8334], + [51073,20830], + [51075,11384], + [51077,7295], + [51079,10754], + [51081,4401], + [51083,16531], + [51085,54576], + [51087,164333], + [51089,25592], + [51091,1161], + [51093,18840], + [51095,32172], + [51097,3263], + [51099,10252], + [51101,8662], + [51103,5654], + [51105,10125], + [51107,174290], + [51109,16665], + [51111,5616], + [51113,7429], + [51115,4335], + [51117,14067], + [51119,5185], + [51121,45447], + [51125,8040], + [51127,9874], + [51131,6382], + [51133,6114], + [51135,6639], + [51137,15836], + [51139,12070], + [51141,9249], + [51143,31800], + [51145,14164], + [51147,9992], + [51149,15052], + [51153,208417], + [51155,18123], + [51157,4229], + [51159,4089], + [51161,48506], + [51163,11671], + [51165,41705], + [51167,12397], + [51169,9861], + [51171,20232], + [51173,15153], + [51175,8095], + [51177,64917], + [51179,65512], + [51181,3719], + [51183,4441], + [51185,21483], + [51187,19746], + [51191,26996], + [51193,9133], + [51195,19412], + [51197,16396], + [51199,30435], + [51510,94424], + [51520,8125], + [51530,3449], + [51540,21718], + [51550,114934], + [51570,9160], + [51580,2742], + [51590,20102], + [51595,2535], + [51600,14525], + [51610,7259], + [51620,3945], + [51630,12984], + [51640,3234], + [51650,67306], + [51660,23048], + [51670,10553], + [51678,2479], + [51680,34844], + [51683,20468], + [51685,6870], + [51690,6208], + [51700,94427], + [51710,98751], + [51720,1724], + [51730,14460], + [51735,6197], + [51740,45167], + [51750,7922], + [51760,101096], + [51770,47264], + [51775,13289], + [51790,11891], + [51800,40575], + [51810,219738], + [51820,10699], + [51830,5543], + [51840,14218], + [53001,8320], + [53003,10387], + [53005,92828], + [53007,42120], + [53009,30374], + [53011,219478], + [53013,1600], + [53015,45014], + [53017,22170], + [53019,3083], + [53021,36752], + [53023,1028], + [53025,42357], + [53027,31602], + [53029,33017], + [53031,13171], + [53033,1113894], + [53035,125529], + [53037,20924], + [53039,10904], + [53041,31789], + [53043,4858], + [53045,25549], + [53047,22152], + [53049,9299], + [53051,5573], + [53053,397744], + [53055,8503], + [53057,58592], + [53059,5117], + [53061,381983], + [53063,240002], + [53065,18977], + [53067,131896], + [53069,1625], + [53071,31127], + [53073,108027], + [53075,21833], + [53077,126001], + [54001,6876], + [54003,46564], + [54005,9381], + [54007,5945], + [54009,11132], + [54011,44709], + [54013,2849], + [54015,3556], + [54017,2860], + [54019,18118], + [54021,3218], + [54023,5092], + [54025,14851], + [54027,9290], + [54029,14598], + [54031,6750], + [54033,31478], + [54035,11722], + [54037,24647], + [54039,92520], + [54041,7707], + [54043,8158], + [54045,13388], + [54047,7463], + [54049,26502], + [54051,14905], + [54053,10279], + [54055,25342], + [54057,13815], + [54059,8937], + [54061,49875], + [54063,5829], + [54065,6883], + [54067,10697], + [54069,21306], + [54071,3562], + [54073,3221], + [54075,3602], + [54077,15420], + [54079,27921], + [54081,32854], + [54083,12712], + [54085,4404], + [54087,5562], + [54089,4652], + [54091,7138], + [54093,2882], + [54095,3631], + [54097,10749], + [54099,17306], + [54101,3257], + [54103,6305], + [54105,2434], + [54107,40962], + [54109,8217], + [55001,9989], + [55003,9136], + [55005,25143], + [55007,8030], + [55009,141023], + [55011,8315], + [55013,7984], + [55015,25633], + [55017,33141], + [55019,17846], + [55021,31128], + [55023,9383], + [55025,298925], + [55027,47272], + [55029,17386], + [55031,23504], + [55033,25785], + [55035,56821], + [55037,2410], + [55039,56234], + [55041,4973], + [55043,28735], + [55045,20333], + [55047,10242], + [55049,14014], + [55051,2989], + [55053,9981], + [55055,42686], + [55057,13554], + [55059,86164], + [55061,11572], + [55063,66001], + [55065,9277], + [55067,10985], + [55069,15584], + [55071,46299], + [55073,74952], + [55075,22450], + [55077,7786], + [55078,1640], + [55079,467652], + [55081,24781], + [55083,20576], + [55085,18972], + [55087,99345], + [55089,47578], + [55091,4134], + [55093,23490], + [55095,24271], + [55097,43149], + [55099,8341], + [55101,99391], + [55103,10153], + [55105,82403], + [55107,7380], + [55109,47322], + [55111,35710], + [55113,9087], + [55115,22679], + [55117,64930], + [55119,10744], + [55121,16315], + [55123,15250], + [55125,10993], + [55127,56186], + [55129,7953], + [55131,74836], + [55133,213079], + [55135,28381], + [55137,12851], + [55139,95244], + [55141,41876], + [56001,19705], + [56003,5066], + [56005,28805], + [56007,7950], + [56009,7634], + [56011,3596], + [56013,19255], + [56015,6315], + [56017,2537], + [56019,4100], + [56021,43841], + [56023,8416], + [56025,41258], + [56027,1299], + [56029,14910], + [56031,4138], + [56033,16508], + [56035,7295], + [56037,24323], + [56039,13882], + [56041,11570], + [56043,4404], + [56045,3313] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2010.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2010.json new file mode 100644 index 0000000..7986af2 --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2010"], + [1001,25713], + [1003,83459], + [1005,10221], + [1007,8934], + [1009,24906], + [1011,4941], + [1013,9261], + [1015,51559], + [1017,14754], + [1019,11464], + [1021,19462], + [1023,4860], + [1025,9108], + [1027,5851], + [1029,6033], + [1031,21088], + [1033,24228], + [1035,4991], + [1037,4654], + [1039,16417], + [1041,6285], + [1043,35959], + [1045,22072], + [1047,17808], + [1049,30942], + [1051,36683], + [1053,15007], + [1055,44000], + [1057,6831], + [1059,14255], + [1061,11559], + [1063,3306], + [1065,6445], + [1067,7259], + [1069,46414], + [1071,24348], + [1073,318520], + [1075,5802], + [1077,43596], + [1079,14901], + [1081,66764], + [1083,38321], + [1085,4350], + [1087,8937], + [1089,169833], + [1091,8136], + [1093,13215], + [1095,41637], + [1097,192730], + [1099,8712], + [1101,108753], + [1103,57817], + [1105,3891], + [1107,7699], + [1109,15677], + [1111,9706], + [1113,23814], + [1115,38280], + [1117,102372], + [1119,5777], + [1121,35129], + [1123,19079], + [1125,93915], + [1127,27279], + [1129,7385], + [1131,3066], + [1133,9883], + [2013,2031], + [2016,3955], + [2020,157923], + [2050,7161], + [2060,505], + [2068,1011], + [2070,2089], + [2090,48285], + [2100,1150], + [2105,1064], + [2110,17903], + [2122,27001], + [2130,7123], + [2150,6470], + [2158,"NA"], + [2164,604], + [2170,42314], + [2180,4111], + [2185,3968], + [2188,2957], + [2195,1844], + [2198,2543], + [2220,4561], + [2230,718], + [2240,3196], + [2261,4875], + [2275,1027], + [2282,297], + [2290,2567], + [4001,23438], + [4003,57023], + [4005,72846], + [4007,21623], + [4009,14570], + [4011,3439], + [4012,7868], + [4013,1919590], + [4015,82726], + [4017,43903], + [4019,478743], + [4021,153707], + [4023,20881], + [4025,96533], + [4027,92816], + [5001,11332], + [5003,9745], + [5005,16610], + [5007,107121], + [5009,16519], + [5011,5002], + [5013,2681], + [5015,12611], + [5017,4272], + [5019,10212], + [5021,7479], + [5023,10336], + [5025,3888], + [5027,10507], + [5029,9029], + [5031,47796], + [5033,28323], + [5035,22819], + [5037,8618], + [5039,3487], + [5041,5884], + [5043,8568], + [5045,58711], + [5047,7800], + [5049,5172], + [5051,41563], + [5053,8567], + [5055,19683], + [5057,10674], + [5059,14188], + [5061,6545], + [5063,17059], + [5065,5139], + [5067,6734], + [5069,33973], + [5071,10977], + [5073,3041], + [5075,7445], + [5077,3704], + [5079,4699], + [5081,6220], + [5083,9805], + [5085,33287], + [5087,7270], + [5089,6716], + [5091,20560], + [5093,20195], + [5095,3413], + [5097,3904], + [5099,4016], + [5101,3790], + [5103,11294], + [5105,4560], + [5107,8585], + [5109,4843], + [5111,10737], + [5113,8981], + [5115,30054], + [5117,3967], + [5119,189321], + [5121,7260], + [5123,9830], + [5125,53382], + [5127,4721], + [5129,3393], + [5131,59543], + [5133,7059], + [5135,6309], + [5137,5522], + [5139,17164], + [5141,6476], + [5143,102865], + [5145,36442], + [5147,3630], + [5149,9714], + [6001,782522], + [6003,542], + [6005,15507], + [6007,102568], + [6009,21012], + [6011,11519], + [6013,525547], + [6015,10931], + [6017,91129], + [6019,439593], + [6021,13218], + [6023,66061], + [6025,78665], + [6027,9753], + [6029,371515], + [6031,59440], + [6033,29847], + [6035,12100], + [6037,4917375], + [6039,61607], + [6041,133012], + [6043,8709], + [6045,41601], + [6047,113579], + [6049,3818], + [6051,8890], + [6053,215788], + [6055,70216], + [6057,48915], + [6059,1537187], + [6061,173338], + [6063,9147], + [6065,976444], + [6067,683127], + [6069,27906], + [6071,890278], + [6073,1515198], + [6075,486019], + [6077,311437], + [6079,133651], + [6081,393004], + [6083,212267], + [6085,926525], + [6087,141717], + [6089,78503], + [6091,1611], + [6093,19628], + [6095,202407], + [6097,244634], + [6099,243274], + [6101,45965], + [6103,25714], + [6105,5423], + [6107,203021], + [6109,22617], + [6111,430010], + [6113,102188], + [6115,29064], + [8001,234221], + [8003,7702], + [8005,316886], + [8007,5785], + [8009,2084], + [8011,2006], + [8013,170293], + [8014,31538], + [8015,8270], + [8017,1047], + [8019,5623], + [8021,3753], + [8023,1553], + [8025,1522], + [8027,2078], + [8029,14510], + [8031,347590], + [8033,1000], + [8035,157522], + [8037,32447], + [8039,12755], + [8041,306308], + [8043,15825], + [8045,31357], + [8047,3327], + [8049,8950], + [8051,10087], + [8053,470], + [8055,2705], + [8057,919], + [8059,304252], + [8061,779], + [8063,4389], + [8065,4372], + [8067,29874], + [8069,170001], + [8071,7195], + [8073,2153], + [8075,11261], + [8077,76113], + [8079,416], + [8081,8078], + [8083,13057], + [8085,20624], + [8087,14436], + [8089,8489], + [8091,2151], + [8093,9641], + [8095,2197], + [8097,10879], + [8099,6166], + [8101,74396], + [8103,3146], + [8105,5209], + [8107,14541], + [8109,3066], + [8111,505], + [8113,4892], + [8115,1101], + [8117,19126], + [8119,12354], + [8121,2590], + [8123,131910], + [8125,4928], + [9001,474545], + [9003,478126], + [9005,108368], + [9007,93110], + [9009,462196], + [9011,144548], + [9013,86139], + [9015,64682], + [10001,72689], + [10003,271492], + [10005,90239], + [11001,346065], + [12001,128370], + [12003,11552], + [12005,86072], + [12007,11587], + [12009,265643], + [12011,936563], + [12013,5314], + [12015,66293], + [12017,52847], + [12019,95867], + [12021,145349], + [12023,28788], + [12027,13081], + [12029,5749], + [12031,454798], + [12033,139913], + [12035,41338], + [12037,4936], + [12039,20080], + [12041,6874], + [12043,5544], + [12045,6232], + [12047,4808], + [12049,11764], + [12051,18361], + [12053,66470], + [12055,37247], + [12057,645687], + [12059,7190], + [12061,61384], + [12063,18938], + [12065,6042], + [12067,3404], + [12069,134021], + [12071,283236], + [12073,149972], + [12075,17327], + [12077,2933], + [12079,7946], + [12081,147572], + [12083,132351], + [12085,66636], + [12086,1225397], + [12087,42182], + [12089,35799], + [12091,89046], + [12093,18103], + [12095,635299], + [12097,137372], + [12099,645737], + [12101,207364], + [12103,465178], + [12105,278479], + [12107,30518], + [12109,99104], + [12111,128690], + [12113,71333], + [12115,167222], + [12117,230697], + [12119,25310], + [12121,19153], + [12123,9473], + [12125,5479], + [12127,238183], + [12129,14589], + [12131,25984], + [12133,10298], + [13001,8746], + [13003,3451], + [13005,4542], + [13007,1232], + [13009,19192], + [13011,8457], + [13013,34670], + [13015,47837], + [13017,6516], + [13019,7990], + [13021,70225], + [13023,5474], + [13025,7468], + [13027,7309], + [13029,14455], + [13031,33132], + [13033,9791], + [13035,10491], + [13037,2620], + [13039,20695], + [13043,4917], + [13045,51817], + [13047,31351], + [13049,4797], + [13051,127323], + [13053,2218], + [13055,10671], + [13057,112578], + [13059,56637], + [13061,1101], + [13063,125156], + [13065,2900], + [13067,380297], + [13069,17202], + [13071,21316], + [13073,61522], + [13075,7885], + [13077,64319], + [13079,5769], + [13081,9208], + [13083,8348], + [13085,10966], + [13087,12446], + [13089,363001], + [13091,8361], + [13093,4960], + [13095,41490], + [13097,66575], + [13099,4478], + [13101,1876], + [13103,25777], + [13105,8934], + [13107,9118], + [13109,4769], + [13111,10271], + [13113,52927], + [13115,45087], + [13117,88343], + [13119,9698], + [13121,485002], + [13123,12811], + [13125,1324], + [13127,38340], + [13129,26068], + [13131,10399], + [13133,6412], + [13135,418368], + [13137,18347], + [13139,86546], + [13141,3104], + [13143,12385], + [13145,16415], + [13147,10959], + [13149,5249], + [13151,101141], + [13153,67099], + [13155,3674], + [13157,28656], + [13159,6873], + [13161,6372], + [13163,7158], + [13165,3229], + [13167,4240], + [13169,13698], + [13171,8160], + [13173,3872], + [13175,20599], + [13177,14345], + [13179,26927], + [13181,3679], + [13183,6231], + [13185,51019], + [13187,14711], + [13189,9447], + [13191,6289], + [13193,5383], + [13195,13374], + [13197,3723], + [13199,9336], + [13201,2803], + [13205,9646], + [13207,12551], + [13209,3876], + [13211,8630], + [13213,17181], + [13215,81718], + [13217,47977], + [13219,16837], + [13221,7079], + [13223,73735], + [13225,12918], + [13227,14045], + [13229,8245], + [13231,8505], + [13233,18690], + [13235,4530], + [13237,9053], + [13239,1006], + [13241,7141], + [13243,2979], + [13245,87887], + [13247,41960], + [13249,2165], + [13251,5804], + [13253,3383], + [13255,28669], + [13257,11892], + [13259,2402], + [13261,14262], + [13263,2875], + [13265,634], + [13267,9678], + [13269,3255], + [13271,5234], + [13273,3917], + [13275,17884], + [13277,18784], + [13279,12303], + [13281,4341], + [13283,2945], + [13285,32546], + [13287,3530], + [13289,3265], + [13291,9502], + [13293,11932], + [13295,30980], + [13297,41037], + [13299,15561], + [13301,2657], + [13303,8124], + [13305,12377], + [13307,1043], + [13309,1937], + [13311,12902], + [13313,47639], + [13315,2935], + [13317,4017], + [13319,3842], + [13321,9781], + [15001,87774], + [15003,446189], + [15005,"NA"], + [15007,34321], + [15009,78966], + [16001,196922], + [16003,1861], + [16005,41091], + [16007,2884], + [16009,4209], + [16011,22845], + [16013,11947], + [16015,3048], + [16017,19494], + [16019,49093], + [16021,5367], + [16023,1352], + [16025,643], + [16027,84728], + [16029,3841], + [16031,11113], + [16033,536], + [16035,3422], + [16037,2295], + [16039,11393], + [16041,6194], + [16043,6746], + [16045,7680], + [16047,8498], + [16049,6653], + [16051,12610], + [16053,11021], + [16055,68851], + [16057,19280], + [16059,3775], + [16061,1571], + [16063,2709], + [16065,17484], + [16067,10467], + [16069,20086], + [16071,2006], + [16073,5050], + [16075,11144], + [16077,3872], + [16079,5488], + [16081,5446], + [16083,36930], + [16085,4692], + [16087,4726], + [17001,34907], + [17003,2971], + [17005,8535], + [17007,27438], + [17009,2587], + [17011,19168], + [17013,2499], + [17015,8544], + [17017,7011], + [17019,108984], + [17021,17212], + [17023,8322], + [17025,6827], + [17027,20551], + [17029,25673], + [17031,2643833], + [17033,10389], + [17035,6069], + [17037,56383], + [17039,8812], + [17041,10339], + [17043,502807], + [17045,9466], + [17047,3230], + [17049,18667], + [17051,11243], + [17053,7293], + [17055,18005], + [17057,17593], + [17059,2637], + [17061,6817], + [17063,25953], + [17065,4015], + [17067,9960], + [17069,1795], + [17071,3930], + [17073,26720], + [17075,16075], + [17077,29863], + [17079,5100], + [17081,18235], + [17083,11613], + [17085,12451], + [17087,4454], + [17089,267214], + [17091,57454], + [17093,62410], + [17095,25353], + [17097,369868], + [17099,61857], + [17101,6707], + [17103,19239], + [17105,19316], + [17107,13959], + [17109,15646], + [17111,168798], + [17113,96144], + [17115,55196], + [17117,24784], + [17119,138772], + [17121,19396], + [17123,6428], + [17125,7433], + [17127,7072], + [17129,7151], + [17131,8955], + [17133,18009], + [17135,13903], + [17137,18416], + [17139,7678], + [17141,28216], + [17143,96024], + [17145,9594], + [17147,9177], + [17149,8126], + [17151,2032], + [17153,2480], + [17155,3311], + [17157,15027], + [17159,8016], + [17161,76298], + [17163,133105], + [17165,11635], + [17167,108728], + [17169,3867], + [17171,2886], + [17173,11207], + [17175,3029], + [17177,24686], + [17179,71672], + [17181,7971], + [17183,37960], + [17185,5863], + [17187,9298], + [17189,8499], + [17191,8398], + [17193,7583], + [17195,29906], + [17197,355644], + [17199,32532], + [17201,150085], + [17203,20340], + [18001,16399], + [18003,175944], + [18005,38388], + [18007,4662], + [18009,5847], + [18011,29395], + [18013,7566], + [18015,10254], + [18017,18851], + [18019,55317], + [18021,13180], + [18023,16899], + [18025,4919], + [18027,14747], + [18029,25524], + [18031,12919], + [18033,20595], + [18035,54724], + [18037,21927], + [18039,94499], + [18041,9770], + [18043,37858], + [18045,8608], + [18047,11395], + [18049,10284], + [18051,16897], + [18053,33554], + [18055,14391], + [18057,144863], + [18059,35810], + [18061,18990], + [18063,74719], + [18065,21391], + [18067,35806], + [18069,19039], + [18071,20476], + [18073,16140], + [18075,10627], + [18077,15464], + [18079,13303], + [18081,71599], + [18083,18521], + [18085,39227], + [18087,16570], + [18089,229124], + [18091,51337], + [18093,20728], + [18095,59407], + [18097,452840], + [18099,23476], + [18101,5262], + [18103,15947], + [18105,67737], + [18107,18896], + [18109,35026], + [18111,7075], + [18113,23011], + [18115,3263], + [18117,9110], + [18119,10316], + [18121,7332], + [18123,8931], + [18125,6199], + [18127,81600], + [18129,13494], + [18131,6370], + [18133,16674], + [18135,13019], + [18137,14528], + [18139,8683], + [18141,130463], + [18143,10590], + [18145,22714], + [18147,10996], + [18149,10444], + [18151,18439], + [18153,9085], + [18155,5025], + [18157,86531], + [18159,8046], + [18161,3729], + [18163,92128], + [18165,7810], + [18167,51129], + [18169,15955], + [18171,4201], + [18173,30817], + [18175,13806], + [18177,31330], + [18179,14137], + [18181,12975], + [18183,17603], + [19001,4105], + [19003,2240], + [19005,7917], + [19007,6200], + [19009,3478], + [19011,14331], + [19013,70989], + [19015,14846], + [19017,13864], + [19019,11351], + [19021,11422], + [19023,8200], + [19025,4656], + [19027,11714], + [19029,7410], + [19031,10989], + [19033,24565], + [19035,7089], + [19037,6555], + [19039,4785], + [19041,9348], + [19043,10483], + [19045,26439], + [19047,8983], + [19049,37296], + [19051,4253], + [19053,4466], + [19055,10362], + [19057,20214], + [19059,9297], + [19061,54224], + [19063,5869], + [19065,11015], + [19067,8549], + [19069,6027], + [19071,3978], + [19073,5201], + [19075,6755], + [19077,5852], + [19079,8083], + [19081,6070], + [19083,9133], + [19085,8001], + [19087,9959], + [19089,5339], + [19091,5227], + [19093,3846], + [19095,9661], + [19097,11106], + [19099,19026], + [19101,8956], + [19103,79267], + [19105,11108], + [19107,5548], + [19109,8381], + [19111,17741], + [19113,120123], + [19115,5964], + [19117,4233], + [19119,6405], + [19121,8460], + [19123,11915], + [19125,17600], + [19127,20156], + [19129,7610], + [19131,5734], + [19133,4887], + [19135,4097], + [19137,5248], + [19139,21815], + [19141,8146], + [19143,3670], + [19145,7131], + [19147,4845], + [19149,14568], + [19151,4057], + [19153,244947], + [19155,50344], + [19157,10570], + [19159,2615], + [19161,5716], + [19163,86880], + [19165,6612], + [19167,19671], + [19169,53344], + [19171,9357], + [19173,3189], + [19175,7019], + [19177,3971], + [19179,18508], + [19181,26357], + [19183,12422], + [19185,2876], + [19187,20145], + [19189,5820], + [19191,12295], + [19193,55997], + [19195,4342], + [19197,6857], + [20001,7010], + [20003,4572], + [20005,7938], + [20007,2769], + [20009,15001], + [20011,7223], + [20013,5266], + [20015,33009], + [20017,1442], + [20019,1740], + [20021,10798], + [20023,1405], + [20025,1223], + [20027,4631], + [20029,4654], + [20031,4847], + [20033,994], + [20035,17259], + [20037,19356], + [20039,1457], + [20041,10234], + [20043,4540], + [20045,64379], + [20047,1683], + [20049,1414], + [20051,17642], + [20053,3395], + [20055,20174], + [20057,18114], + [20059,14363], + [20061,13359], + [20063,1505], + [20065,1389], + [20067,4202], + [20069,3489], + [20071,827], + [20073,3441], + [20075,1825], + [20077,2937], + [20079,17774], + [20081,2445], + [20083,1085], + [20085,7509], + [20087,10671], + [20089,1558], + [20091,307190], + [20093,2155], + [20095,3862], + [20097,1398], + [20099,11277], + [20101,985], + [20103,34342], + [20105,1882], + [20107,4534], + [20109,1737], + [20111,17481], + [20113,16477], + [20115,6742], + [20117,5908], + [20119,2567], + [20121,17111], + [20123,3874], + [20125,18083], + [20127,3311], + [20129,1756], + [20131,5820], + [20133,7410], + [20135,1618], + [20137,3098], + [20139,8618], + [20141,2224], + [20143,3286], + [20145,3608], + [20147,3037], + [20149,11890], + [20151,5289], + [20153,1511], + [20155,32894], + [20157,2732], + [20159,5306], + [20161,36091], + [20163,2767], + [20165,1793], + [20167,3741], + [20169,30934], + [20171,2767], + [20173,252713], + [20175,10794], + [20177,93584], + [20179,1514], + [20181,3154], + [20183,2333], + [20185,2366], + [20187,1093], + [20189,2870], + [20191,11958], + [20193,4543], + [20195,1509], + [20197,3887], + [20199,893], + [20201,3346], + [20203,1336], + [20205,4500], + [20207,1736], + [20209,74994], + [21001,7810], + [21003,9126], + [21005,11579], + [21007,3839], + [21009,19749], + [21011,4887], + [21013,10197], + [21015,63271], + [21017,10064], + [21019,20421], + [21021,13342], + [21023,3982], + [21025,4528], + [21027,8273], + [21029,38803], + [21031,5457], + [21033,5916], + [21035,18915], + [21037,48713], + [21039,2251], + [21041,4999], + [21043,11925], + [21045,6914], + [21047,27294], + [21049,17775], + [21051,6030], + [21053,4273], + [21055,4064], + [21057,3174], + [21059,46881], + [21061,5122], + [21063,2399], + [21065,5694], + [21067,163286], + [21069,6713], + [21071,13940], + [21073,24625], + [21075,2729], + [21077,4076], + [21079,7935], + [21081,11684], + [21083,16827], + [21085,11549], + [21087,5596], + [21089,15351], + [21091,4060], + [21093,46901], + [21095,10193], + [21097,9016], + [21099,8110], + [21101,22850], + [21103,7834], + [21105,2300], + [21107,21211], + [21109,5142], + [21111,378722], + [21113,24710], + [21115,8925], + [21117,83798], + [21119,5924], + [21121,10648], + [21123,6062], + [21125,24952], + [21127,5767], + [21129,2590], + [21131,3607], + [21133,8659], + [21135,5589], + [21137,10625], + [21139,4035], + [21141,12612], + [21143,2982], + [21145,30650], + [21147,5723], + [21149,4524], + [21151,43050], + [21153,4290], + [21155,9110], + [21157,15404], + [21159,3998], + [21161,7892], + [21163,12338], + [21165,2560], + [21167,10532], + [21169,4674], + [21171,4850], + [21173,12077], + [21175,5114], + [21177,13040], + [21179,21971], + [21181,3631], + [21183,10316], + [21185,29248], + [21187,5915], + [21189,1362], + [21191,7387], + [21193,11065], + [21195,24504], + [21197,5290], + [21199,27776], + [21201,869], + [21203,7028], + [21205,10912], + [21207,7297], + [21209,25429], + [21211,21851], + [21213,8642], + [21215,9205], + [21217,11802], + [21219,5676], + [21221,6440], + [21223,4088], + [21225,7687], + [21227,58221], + [21229,6089], + [21231,8213], + [21233,6121], + [21235,14127], + [21237,2152], + [21239,14441], + [22001,26130], + [22003,9395], + [22005,53392], + [22007,10067], + [22009,16867], + [22011,14585], + [22013,5918], + [22015,56576], + [22017,116799], + [22019,87896], + [22021,4179], + [22023,3299], + [22025,4229], + [22027,6892], + [22029,7875], + [22031,11394], + [22033,221984], + [22035,2477], + [22037,8103], + [22039,13141], + [22041,8333], + [22043,8590], + [22045,32240], + [22047,14031], + [22049,7085], + [22051,216258], + [22053,13113], + [22055,113571], + [22057,45070], + [22059,6444], + [22061,20309], + [22063,61281], + [22065,4170], + [22067,11097], + [22069,16590], + [22071,162592], + [22073,70729], + [22075,10028], + [22077,10001], + [22079,58820], + [22081,4020], + [22083,8802], + [22085,9673], + [22087,15951], + [22089,25481], + [22091,4716], + [22093,10130], + [22095,21535], + [22097,34308], + [22099,24050], + [22101,25185], + [22103,108755], + [22105,53664], + [22107,2121], + [22109,50910], + [22111,9674], + [22113,25637], + [22115,18553], + [22117,17114], + [22119,16831], + [22121,11924], + [22123,4452], + [22125,5237], + [22127,5813], + [23001,55909], + [23003,34717], + [23005,156017], + [23007,15502], + [23009,29815], + [23011,62924], + [23013,20391], + [23015,17122], + [23017,27923], + [23019,79017], + [23021,7962], + [23023,19219], + [23025,24679], + [23027,20407], + [23029,14945], + [23031,108635], + [24001,34417], + [24003,286058], + [24005,431512], + [24009,47829], + [24011,17420], + [24013,92595], + [24015,51979], + [24017,78219], + [24019,16551], + [24021,127907], + [24023,15806], + [24025,132786], + [24027,160630], + [24029,10630], + [24031,532549], + [24033,479606], + [24035,26141], + [24037,53617], + [24039,9944], + [24041,19401], + [24043,75802], + [24045,50455], + [24047,26473], + [24510,295504], + [25001,111079], + [25003,68171], + [25005,286777], + [25007,9102], + [25009,392194], + [25011,39956], + [25013,220724], + [25015,85447], + [25017,825801], + [25019,6166], + [25021,358262], + [25023,262176], + [25025,393952], + [25027,420278], + [26001,3880], + [26003,3593], + [26005,57023], + [26007,14273], + [26009,10563], + [26011,6958], + [26013,3906], + [26015,29360], + [26017,54666], + [26019,8961], + [26021,76628], + [26023,20042], + [26025,64996], + [26027,24583], + [26029,13357], + [26031,11358], + [26033,17806], + [26035,12542], + [26037,39637], + [26039,5631], + [26041,18177], + [26043,13213], + [26045,57180], + [26047,18512], + [26049,188190], + [26051,10413], + [26053,7226], + [26055,47553], + [26057,19544], + [26059,21487], + [26061,17939], + [26063,16642], + [26065,148442], + [26067,29931], + [26069,10377], + [26071,5296], + [26073,35522], + [26075,74673], + [26077,129632], + [26079,7918], + [26081,316233], + [26083,1015], + [26085,3890], + [26087,41335], + [26089,10588], + [26091,49811], + [26093,94112], + [26095,2498], + [26097,5560], + [26099,420803], + [26101,11051], + [26103,34937], + [26105,14567], + [26107,19304], + [26109,11958], + [26111,41219], + [26113,7146], + [26115,75640], + [26117,27809], + [26119,3552], + [26121,77712], + [26123,22988], + [26125,621876], + [26127,13380], + [26129,9082], + [26131,3075], + [26133,10383], + [26135,3316], + [26137,11870], + [26139,140585], + [26141,5755], + [26143,8652], + [26145,90722], + [26147,77675], + [26149,28110], + [26151,20006], + [26153,3798], + [26155,34707], + [26157,26057], + [26159,37784], + [26161,182801], + [26163,802754], + [26165,15218], + [27001,7310], + [27003,187355], + [27005,17602], + [27007,22591], + [27009,21100], + [27011,2911], + [27013,38114], + [27015,15102], + [27017,17794], + [27019,51621], + [27021,14383], + [27023,7153], + [27025,29314], + [27027,33883], + [27029,4589], + [27031,3056], + [27033,6227], + [27035,32033], + [27037,227259], + [27039,11307], + [27041,19817], + [27043,7831], + [27045,11246], + [27047,17087], + [27049,26734], + [27051,3399], + [27053,650891], + [27055,10830], + [27057,9751], + [27059,20561], + [27061,22499], + [27063,6026], + [27065,8784], + [27067,23568], + [27069,2576], + [27071,6938], + [27073,4082], + [27075,5798], + [27077,2282], + [27079,15715], + [27081,3445], + [27083,15226], + [27085,20307], + [27087,2503], + [27089,5698], + [27091,11506], + [27093,12811], + [27095,13152], + [27097,18617], + [27099,20908], + [27101,5022], + [27103,19782], + [27105,11522], + [27107,3603], + [27109,81197], + [27111,30869], + [27113,8398], + [27115,15355], + [27117,5148], + [27119,17156], + [27121,5880], + [27123,270063], + [27125,2419], + [27127,8580], + [27129,8993], + [27131,34985], + [27133,5377], + [27135,8685], + [27137,103374], + [27139,74150], + [27141,48989], + [27143,8506], + [27145,85674], + [27147,21063], + [27149,5547], + [27151,5239], + [27153,13519], + [27155,1881], + [27157,12107], + [27159,6483], + [27161,10577], + [27163,132046], + [27165,6311], + [27167,3822], + [27169,29217], + [27171,70095], + [27173,5878], + [28001,12608], + [28003,15721], + [28005,4979], + [28007,7955], + [28009,3273], + [28011,14909], + [28013,7025], + [28015,3834], + [28017,7944], + [28019,3766], + [28021,3580], + [28023,6606], + [28025,8682], + [28027,10480], + [28029,11991], + [28031,8235], + [28033,79619], + [28035,34083], + [28037,3234], + [28039,8759], + [28041,4580], + [28043,9433], + [28045,19653], + [28047,88745], + [28049,113892], + [28051,6848], + [28053,3482], + [28055,525], + [28057,10355], + [28059,64425], + [28061,7013], + [28063,2472], + [28065,4609], + [28067,27932], + [28069,3906], + [28071,21649], + [28073,27659], + [28075,33063], + [28077,5147], + [28079,9177], + [28081,39180], + [28083,11604], + [28085,14459], + [28087,26144], + [28089,48712], + [28091,10544], + [28093,15497], + [28095,16300], + [28097,4675], + [28099,11806], + [28101,9201], + [28103,4430], + [28105,21697], + [28107,14409], + [28109,23423], + [28111,4636], + [28113,15611], + [28115,13672], + [28117,11604], + [28119,3197], + [28121,70858], + [28123,13551], + [28125,2059], + [28127,11372], + [28129,7314], + [28131,6843], + [28133,9869], + [28135,5885], + [28137,12631], + [28139,8991], + [28141,7813], + [28143,5027], + [28145,12138], + [28147,5813], + [28149,23335], + [28151,20950], + [28153,8631], + [28155,4372], + [28157,3444], + [28159,7945], + [28161,5205], + [28163,9913], + [29001,11083], + [29003,9898], + [29005,2999], + [29007,11136], + [29009,15616], + [29011,5757], + [29013,8397], + [29015,7291], + [29017,5842], + [29019,92559], + [29021,46660], + [29023,18765], + [29025,4560], + [29027,22377], + [29029,19459], + [29031,41030], + [29033,4796], + [29035,2666], + [29037,53355], + [29039,6113], + [29041,4128], + [29043,40861], + [29045,3462], + [29047,125001], + [29049,11071], + [29051,40685], + [29053,7961], + [29055,10811], + [29057,3402], + [29059,7285], + [29061,4011], + [29063,5025], + [29065,6512], + [29067,5249], + [29069,12289], + [29071,53456], + [29073,7752], + [29075,3523], + [29077,144734], + [29079,4837], + [29081,4062], + [29083,10139], + [29085,3677], + [29087,2693], + [29089,5002], + [29091,17064], + [29093,3574], + [29095,361018], + [29097,59026], + [29099,117544], + [29101,23492], + [29103,2007], + [29105,15918], + [29107,17549], + [29109,17558], + [29111,5203], + [29113,26706], + [29115,5450], + [29117,7146], + [29119,10360], + [29121,7482], + [29123,5457], + [29125,4256], + [29127,14770], + [29129,1796], + [29131,11858], + [29133,6108], + [29135,7397], + [29137,4118], + [29139,6047], + [29141,7984], + [29143,8225], + [29145,28759], + [29147,11758], + [29149,4107], + [29151,7467], + [29153,3602], + [29155,7205], + [29157,9835], + [29159,20080], + [29161,19813], + [29163,8241], + [29165,51580], + [29167,14405], + [29169,16707], + [29171,2387], + [29173,5635], + [29175,10792], + [29177,11572], + [29179,2383], + [29181,5395], + [29183,205228], + [29185,4136], + [29186,9404], + [29187,27272], + [29189,535129], + [29195,10980], + [29197,1960], + [29199,2306], + [29201,19006], + [29203,3243], + [29205,3241], + [29207,13607], + [29209,14494], + [29211,2937], + [29213,26075], + [29215,9841], + [29217,9572], + [29219,17262], + [29221,10256], + [29223,5565], + [29225,16383], + [29227,1249], + [29229,7612], + [29510,164915], + [30001,5010], + [30003,5525], + [30005,2522], + [30007,2508], + [30009,5330], + [30011,725], + [30013,38447], + [30015,2738], + [30017,6400], + [30019,946], + [30021,4513], + [30023,5181], + [30025,1898], + [30027,6017], + [30029,43786], + [30031,50768], + [30033,763], + [30035,6260], + [30037,418], + [30039,1458], + [30041,7982], + [30043,5628], + [30045,1009], + [30047,12644], + [30049,34314], + [30051,1033], + [30053,8429], + [30055,1131], + [30057,4155], + [30059,935], + [30061,1789], + [30063,58536], + [30065,2381], + [30067,7890], + [30069,299], + [30071,2208], + [30073,2953], + [30075,1044], + [30077,2959], + [30079,567], + [30081,18864], + [30083,5763], + [30085,4583], + [30087,4358], + [30089,5000], + [30091,1819], + [30093,16952], + [30095,4762], + [30097,1738], + [30099,3030], + [30101,2448], + [30103,398], + [30105,3910], + [30107,861], + [30109,529], + [30111,76415], + [31001,16494], + [31003,3526], + [31005,226], + [31007,413], + [31009,258], + [31011,2959], + [31013,5852], + [31015,1107], + [31017,1461], + [31019,26386], + [31021,3641], + [31023,4651], + [31025,13404], + [31027,4627], + [31029,2293], + [31031,3385], + [31033,5558], + [31035,3433], + [31037,5659], + [31039,4863], + [31041,5986], + [31043,11299], + [31045,5499], + [31047,13210], + [31049,1031], + [31051,3115], + [31053,18851], + [31055,279280], + [31057,1216], + [31059,3240], + [31061,1634], + [31063,1596], + [31065,2661], + [31067,11408], + [31069,1266], + [31071,1202], + [31073,1147], + [31075,421], + [31077,1360], + [31079,31519], + [31081,4806], + [31083,1893], + [31085,640], + [31087,1400], + [31089,5832], + [31091,410], + [31093,3346], + [31095,4251], + [31097,2343], + [31099,3796], + [31101,4585], + [31103,568], + [31105,2124], + [31107,4751], + [31109,162567], + [31111,19401], + [31113,492], + [31115,368], + [31117,353], + [31119,18950], + [31121,4199], + [31123,2650], + [31125,1980], + [31127,3851], + [31129,2441], + [31131,8476], + [31133,1586], + [31135,1769], + [31137,4958], + [31139,4175], + [31141,17655], + [31143,2958], + [31145,6216], + [31147,4328], + [31149,891], + [31151,7287], + [31153,84923], + [31155,11179], + [31157,19200], + [31159,8765], + [31161,2821], + [31163,1730], + [31165,835], + [31167,3584], + [31169,2803], + [31171,396], + [31173,3054], + [31175,2143], + [31177,11232], + [31179,5671], + [31181,1705], + [31183,515], + [31185,7411], + [32001,11199], + [32003,984004], + [32005,23087], + [32007,26898], + [32009,414], + [32011,1029], + [32013,8346], + [32015,3070], + [32017,2018], + [32019,22998], + [32021,2334], + [32023,16686], + [32027,2396], + [32029,2013], + [32031,220825], + [32033,4563], + [32510,26700], + [33001,32260], + [33003,24940], + [33005,42623], + [33007,16587], + [33009,48323], + [33011,226154], + [33013,81399], + [33015,172363], + [33017,69570], + [33019,24038], + [34001,140705], + [34003,478642], + [34005,237039], + [34007,264713], + [34009,50068], + [34011,72603], + [34013,382086], + [34015,152539], + [34017,352687], + [34019,68291], + [34021,192648], + [34023,424531], + [34025,330468], + [34027,264830], + [34029,264646], + [34031,253221], + [34033,32124], + [34035,173474], + [34037,82251], + [34039,279174], + [34041,58593], + [35001,326594], + [35003,1216], + [35005,28042], + [35006,9327], + [35007,6363], + [35009,21586], + [35011,833], + [35013,93597], + [35015,25658], + [35017,12349], + [35019,1652], + [35021,295], + [35023,2300], + [35025,26301], + [35027,9386], + [35028,9460], + [35029,11677], + [35031,25440], + [35033,2434], + [35035,24984], + [35037,3501], + [35039,18005], + [35041,8409], + [35043,60901], + [35045,54860], + [35047,11204], + [35049,74289], + [35051,4026], + [35053,6876], + [35055,15398], + [35057,6028], + [35059,1930], + [35061,31167], + [36001,161511], + [36003,24240], + [36005,582287], + [36007,97844], + [36009,39654], + [36011,39885], + [36013,63922], + [36015,41594], + [36017,23691], + [36019,39701], + [36021,32137], + [36023,24475], + [36025,22431], + [36027,149196], + [36029,465675], + [36031,18736], + [36033,22245], + [36035,26105], + [36037,31730], + [36039,22101], + [36041,2502], + [36043,31552], + [36045,50310], + [36047,1163502], + [36049,12756], + [36051,32754], + [36053,35586], + [36055,378251], + [36057,23919], + [36059,691435], + [36061,881204], + [36063,107847], + [36065,112248], + [36067,236994], + [36069,56368], + [36071,181295], + [36073,19149], + [36075,58886], + [36077,31880], + [36079,52594], + [36081,1106461], + [36083,84603], + [36085,216950], + [36087,149978], + [36089,49964], + [36091,118048], + [36093,79016], + [36095,15924], + [36097,9042], + [36099,16423], + [36101,47303], + [36103,777863], + [36105,36475], + [36107,26568], + [36109,54767], + [36111,93606], + [36113,34154], + [36115,30233], + [36117,47429], + [36119,478676], + [36121,19457], + [36123,12230], + [37001,76806], + [37003,18260], + [37005,4748], + [37007,11180], + [37009,13722], + [37011,7945], + [37013,21171], + [37015,9191], + [37017,15194], + [37019,46529], + [37021,123680], + [37023,41687], + [37025,89049], + [37027,38213], + [37029,4594], + [37031,31379], + [37033,10069], + [37035,77898], + [37037,30661], + [37039,11654], + [37041,6151], + [37043,4243], + [37045,45633], + [37047,24184], + [37049,42279], + [37051,131096], + [37053,12189], + [37055,19686], + [37057,80622], + [37059,20258], + [37061,25810], + [37063,143411], + [37065,25501], + [37067,173002], + [37069,27954], + [37071,101249], + [37073,5460], + [37075,3702], + [37077,27384], + [37079,9428], + [37081,252010], + [37083,22791], + [37085,48774], + [37087,27600], + [37089,48301], + [37091,9830], + [37093,18577], + [37095,2235], + [37097,78671], + [37099,18434], + [37101,81701], + [37103,4598], + [37105,27095], + [37107,26874], + [37109,39984], + [37111,20610], + [37113,15461], + [37115,9389], + [37117,10479], + [37119,502428], + [37121,6807], + [37123,11443], + [37125,36325], + [37127,47453], + [37129,107583], + [37131,8703], + [37133,63342], + [37135,69962], + [37137,5502], + [37139,18498], + [37141,24446], + [37143,5334], + [37145,18704], + [37147,85917], + [37149,8561], + [37151,69399], + [37153,18927], + [37155,53853], + [37157,44210], + [37159,64328], + [37161,26979], + [37163,29558], + [37165,13098], + [37167,29064], + [37169,22847], + [37171,34423], + [37173,6269], + [37175,13805], + [37177,1659], + [37179,101154], + [37181,19018], + [37183,480565], + [37185,7550], + [37187,5692], + [37189,26883], + [37191,54808], + [37193,31081], + [37195,38233], + [37197,18198], + [37199,7810], + [38001,1202], + [38003,6187], + [38005,2915], + [38007,426], + [38009,3397], + [38011,1772], + [38013,1130], + [38015,46337], + [38017,88824], + [38019,2260], + [38021,2856], + [38023,1383], + [38025,2301], + [38027,1297], + [38029,1826], + [38031,1802], + [38033,982], + [38035,37866], + [38037,1423], + [38039,1320], + [38041,1479], + [38043,1408], + [38045,2481], + [38047,1001], + [38049,3283], + [38051,1342], + [38053,3586], + [38055,5101], + [38057,4325], + [38059,15993], + [38061,5510], + [38063,1691], + [38065,927], + [38067,4024], + [38069,1997], + [38071,6042], + [38073,2856], + [38075,1459], + [38077,9060], + [38079,5291], + [38081,2045], + [38083,811], + [38085,1308], + [38087,470], + [38089,14546], + [38091,1100], + [38093,11264], + [38095,1396], + [38097,4562], + [38099,6222], + [38101,31526], + [38103,2328], + [38105,14407], + [39001,11881], + [39003,52009], + [39005,26628], + [39007,48407], + [39009,28627], + [39011,24560], + [39013,33462], + [39015,21125], + [39017,190738], + [39019,14373], + [39021,19979], + [39023,68266], + [39025,104819], + [39027,19250], + [39029,52880], + [39031,17471], + [39033,20960], + [39035,631675], + [39037,27050], + [39039,19971], + [39041,94233], + [39043,40163], + [39045,74265], + [39047,14903], + [39049,626837], + [39051,23144], + [39053,13585], + [39055,48975], + [39057,82080], + [39059,18856], + [39061,413738], + [39063,40457], + [39065,15479], + [39067,7241], + [39069,14635], + [39071,19185], + [39073,14036], + [39075,19295], + [39077,30287], + [39079,14300], + [39081,33335], + [39083,30913], + [39085,126272], + [39087,27703], + [39089,87551], + [39091,23346], + [39093,151082], + [39095,217424], + [39097,20665], + [39099,115100], + [39101,30255], + [39103,94041], + [39105,10050], + [39107,22324], + [39109,54400], + [39111,6675], + [39113,265355], + [39115,6865], + [39117,17309], + [39119,41656], + [39121,5223], + [39123,22678], + [39125,9696], + [39127,16646], + [39129,26100], + [39131,11586], + [39133,90710], + [39135,22383], + [39137,19332], + [39139,59079], + [39141,34084], + [39143,33204], + [39145,32608], + [39147,29460], + [39149,24971], + [39151,191869], + [39153,281497], + [39155,99834], + [39157,46070], + [39159,26657], + [39161,14954], + [39163,5797], + [39165,110115], + [39167,29799], + [39169,60131], + [39171,19538], + [39173,68548], + [39175,12178], + [40001,8906], + [40003,2497], + [40005,5113], + [40007,2889], + [40009,10339], + [40011,4473], + [40013,18504], + [40015,11833], + [40017,60083], + [40019,21187], + [40021,19464], + [40023,6123], + [40025,1457], + [40027,131125], + [40029,2294], + [40031,51497], + [40033,3009], + [40035,6591], + [40037,31807], + [40039,14155], + [40041,17181], + [40043,2310], + [40045,2061], + [40047,28519], + [40049,12162], + [40051,25401], + [40053,2573], + [40055,2191], + [40057,1314], + [40059,1866], + [40061,4789], + [40063,5572], + [40065,11466], + [40067,2681], + [40069,3747], + [40071,20938], + [40073,7380], + [40075,4316], + [40077,4574], + [40079,20766], + [40081,15657], + [40083,19805], + [40085,4772], + [40087,17180], + [40089,14544], + [40091,7403], + [40093,3941], + [40095,6512], + [40097,18110], + [40099,6319], + [40101,29871], + [40103,5249], + [40105,4905], + [40107,4354], + [40109,354254], + [40111,16887], + [40113,21250], + [40115,14559], + [40117,7675], + [40119,36872], + [40121,18930], + [40123,17733], + [40125,30998], + [40127,4984], + [40129,1797], + [40131,43377], + [40133,9927], + [40135,18100], + [40137,19981], + [40139,8600], + [40141,3407], + [40143,306671], + [40145,35268], + [40147,24142], + [40149,5459], + [40151,4289], + [40153,9355], + [41001,7361], + [41003,45075], + [41005,202654], + [41007,19078], + [41009,23649], + [41011,27740], + [41013,9582], + [41015,9395], + [41017,81238], + [41019,47878], + [41021,959], + [41023,3398], + [41025,3836], + [41027,14196], + [41029,100968], + [41031,9629], + [41033,34491], + [41035,31221], + [41037,3720], + [41039,178303], + [41041,22117], + [41043,57072], + [41045,13474], + [41047,155350], + [41049,5729], + [41051,418838], + [41053,36385], + [41055,905], + [41057,11768], + [41059,36689], + [41061,12486], + [41063,3505], + [41065,13682], + [41067,289670], + [41069,777], + [41071,51226], + [42001,54589], + [42003,636080], + [42005,33637], + [42007,85609], + [42009,25366], + [42011,210144], + [42013,61779], + [42015,30819], + [42017,337143], + [42019,95779], + [42021,66749], + [42023,2555], + [42025,31792], + [42027,77337], + [42029,269534], + [42031,19574], + [42033,38076], + [42035,18749], + [42037,34736], + [42039,41696], + [42041,124446], + [42043,140563], + [42045,286181], + [42047,16686], + [42049,136359], + [42051,59532], + [42053,2155], + [42055,75710], + [42057,7434], + [42059,17411], + [42061,21116], + [42063,44078], + [42065,21606], + [42067,12087], + [42069,106990], + [42071,268009], + [42073,43135], + [42075,70061], + [42077,177192], + [42079,159763], + [42081,59484], + [42083,20048], + [42085,53628], + [42087,21265], + [42089,82725], + [42091,430378], + [42093,9079], + [42095,151874], + [42097,45371], + [42099,24988], + [42101,687795], + [42103,26119], + [42105,7802], + [42107,70688], + [42109,20112], + [42111,37151], + [42113,2960], + [42115,21623], + [42117,20194], + [42119,19192], + [42121,26428], + [42123,20898], + [42125,105278], + [42127,23616], + [42129,185272], + [42131,14334], + [42133,230398], + [44001,26954], + [44003,94255], + [44005,45051], + [44007,328893], + [44009,71551], + [45001,10925], + [45003,72368], + [45005,3318], + [45007,85234], + [45009,6509], + [45011,9489], + [45013,65336], + [45015,82740], + [45017,7044], + [45019,178847], + [45021,23683], + [45023,14689], + [45025,21289], + [45027,13881], + [45029,16827], + [45031,30590], + [45033,14014], + [45035,65563], + [45037,10986], + [45039,10672], + [45041,64173], + [45043,26045], + [45045,220209], + [45047,31869], + [45049,8785], + [45051,130946], + [45053,10896], + [45055,28136], + [45057,33952], + [45059,30190], + [45061,6953], + [45063,132937], + [45065,3624], + [45067,14407], + [45069,10871], + [45071,18575], + [45073,33314], + [45075,40102], + [45077,54434], + [45079,184934], + [45081,8684], + [45083,131818], + [45085,44419], + [45087,12392], + [45089,13351], + [45091,115647], + [46003,1677], + [46005,9427], + [46007,1195], + [46009,3189], + [46011,17847], + [46013,20882], + [46015,2733], + [46017,693], + [46019,5110], + [46021,907], + [46023,4144], + [46025,1976], + [46027,7387], + [46029,15053], + [46031,1542], + [46033,4070], + [46035,10922], + [46037,3073], + [46039,2478], + [46041,2356], + [46043,1761], + [46045,2383], + [46047,3262], + [46049,1174], + [46051,4797], + [46053,2181], + [46055,1123], + [46057,3133], + [46059,1903], + [46061,1768], + [46063,796], + [46065,10050], + [46067,3804], + [46069,795], + [46071,1393], + [46073,1198], + [46075,677], + [46077,2868], + [46079,6158], + [46081,13155], + [46083,26317], + [46085,1947], + [46087,3241], + [46089,1207], + [46091,2467], + [46093,13148], + [46095,872], + [46097,1371], + [46099,99177], + [46101,4154], + [46102,"NA"], + [46103,52838], + [46105,1612], + [46107,1276], + [46109,5050], + [46111,1345], + [46115,3591], + [46117,1955], + [46119,886], + [46121,3385], + [46123,3284], + [46125,4850], + [46127,7743], + [46129,2393], + [46135,11427], + [46137,1054], + [47001,34926], + [47003,21082], + [47005,7200], + [47007,4470], + [47009,61408], + [47011,46448], + [47013,16131], + [47015,6082], + [47017,13837], + [47019,26226], + [47021,20210], + [47023,8363], + [47025,13619], + [47027,3312], + [47029,15881], + [47031,24263], + [47033,7278], + [47035,23083], + [47037,342404], + [47039,5299], + [47041,8159], + [47043,23958], + [47045,17828], + [47047,18830], + [47049,7407], + [47051,19306], + [47053,23743], + [47055,14243], + [47057,10040], + [47059,30986], + [47061,5635], + [47063,28403], + [47065,169043], + [47067,2575], + [47069,10349], + [47071,11429], + [47073,25559], + [47075,8960], + [47077,12999], + [47079,14467], + [47081,10980], + [47083,3535], + [47085,8882], + [47087,4788], + [47089,24414], + [47091,7446], + [47093,229800], + [47095,2175], + [47097,10782], + [47099,19340], + [47101,5407], + [47103,15705], + [47105,22352], + [47107,22839], + [47109,10497], + [47111,10245], + [47113,48201], + [47115,12542], + [47117,14400], + [47119,41469], + [47121,4971], + [47123,19493], + [47125,75637], + [47127,3257], + [47129,8403], + [47131,15546], + [47133,10246], + [47135,3164], + [47137,2407], + [47139,7336], + [47141,34011], + [47143,13562], + [47145,24323], + [47147,33768], + [47149,140219], + [47151,9253], + [47153,6101], + [47155,49081], + [47157,448829], + [47159,8934], + [47161,5669], + [47163,73637], + [47165,83250], + [47167,29054], + [47169,3742], + [47171,7919], + [47173,7763], + [47175,2342], + [47177,17750], + [47179,60672], + [47181,6935], + [47183,16934], + [47185,12333], + [47187,94495], + [47189,58517], + [48001,21711], + [48003,7120], + [48005,38067], + [48007,9686], + [48009,4601], + [48011,1012], + [48013,19631], + [48015,13920], + [48017,3258], + [48019,9176], + [48021,35289], + [48023,1733], + [48025,10522], + [48027,131835], + [48029,812516], + [48031,5419], + [48033,357], + [48035,8450], + [48037,42211], + [48039,155227], + [48041,100017], + [48043,4912], + [48045,734], + [48047,2592], + [48049,16432], + [48051,7870], + [48053,20289], + [48055,16661], + [48057,10182], + [48059,6002], + [48061,162316], + [48063,5697], + [48065,3353], + [48067,13337], + [48069,4138], + [48071,16607], + [48073,21893], + [48075,3157], + [48077,5539], + [48079,1524], + [48081,1575], + [48083,3484], + [48085,425252], + [48087,1341], + [48089,9596], + [48091,53489], + [48093,6025], + [48095,1566], + [48097,19539], + [48099,25338], + [48101,669], + [48103,1819], + [48105,1721], + [48107,2951], + [48109,1032], + [48111,3880], + [48113,1194015], + [48115,5136], + [48117,9504], + [48119,2596], + [48121,369088], + [48123,9076], + [48125,871], + [48127,3856], + [48129,1810], + [48131,5038], + [48133,8113], + [48135,68186], + [48137,1037], + [48139,75674], + [48141,340841], + [48143,20499], + [48145,7242], + [48147,15341], + [48149,12029], + [48151,1925], + [48153,3372], + [48155,662], + [48157,298162], + [48159,4811], + [48161,8149], + [48163,7584], + [48165,7935], + [48167,147321], + [48169,2143], + [48171,12199], + [48173,704], + [48175,3356], + [48177,9304], + [48179,9282], + [48181,59489], + [48183,60363], + [48185,11320], + [48187,64924], + [48189,16180], + [48191,1421], + [48193,3939], + [48195,3030], + [48197,1941], + [48199,25839], + [48201,2064026], + [48203,30822], + [48205,2695], + [48207,2994], + [48209,80387], + [48211,2130], + [48213,34752], + [48215,318302], + [48217,15940], + [48219,11030], + [48221,23352], + [48223,16624], + [48225,10538], + [48227,13223], + [48229,1413], + [48231,38126], + [48233,9707], + [48235,873], + [48237,3664], + [48239,7131], + [48241,14841], + [48243,1273], + [48245,113217], + [48247,2329], + [48249,18257], + [48251,71940], + [48253,6161], + [48255,4869], + [48257,50807], + [48259,16412], + [48261,219], + [48263,559], + [48265,21919], + [48267,2276], + [48269,278], + [48271,1270], + [48273,15030], + [48275,1909], + [48277,23300], + [48279,6797], + [48281,9020], + [48283,2722], + [48285,9703], + [48287,8227], + [48289,7263], + [48291,30614], + [48293,9938], + [48295,1665], + [48297,4631], + [48299,7994], + [48301,71], + [48303,143339], + [48305,3069], + [48307,4097], + [48309,112900], + [48311,487], + [48313,4753], + [48315,4503], + [48317,2196], + [48319,1991], + [48321,18158], + [48323,23525], + [48325,20017], + [48327,1004], + [48329,71331], + [48331,10539], + [48333,2190], + [48335,2971], + [48337,9424], + [48339,224426], + [48341,11549], + [48343,5769], + [48345,624], + [48347,30782], + [48349,22776], + [48351,5939], + [48353,7331], + [48355,162502], + [48357,4868], + [48359,961], + [48361,38466], + [48363,13254], + [48365,11404], + [48367,56408], + [48369,5353], + [48371,7180], + [48373,17563], + [48375,58038], + [48377,3743], + [48379,5166], + [48381,66245], + [48383,1912], + [48385,1137], + [48387,5580], + [48389,5748], + [48391,3328], + [48393,480], + [48395,7561], + [48397,39439], + [48399,5129], + [48401,23961], + [48403,3654], + [48405,3193], + [48407,11230], + [48409,30434], + [48411,2559], + [48413,1634], + [48415,7101], + [48417,1904], + [48419,11839], + [48421,1555], + [48423,101151], + [48425,4043], + [48427,26074], + [48429,4245], + [48431,675], + [48433,746], + [48435,1990], + [48437,3182], + [48439,924951], + [48441,64285], + [48443,501], + [48445,5756], + [48447,877], + [48449,13988], + [48451,52595], + [48453,575630], + [48455,5783], + [48457,7904], + [48459,18283], + [48461,1552], + [48463,11826], + [48465,20619], + [48467,23601], + [48469,43079], + [48471,23234], + [48473,19960], + [48475,4631], + [48477,15561], + [48479,105016], + [48481,21279], + [48483,2732], + [48485,59280], + [48487,6140], + [48489,7781], + [48491,222584], + [48493,21235], + [48495,2898], + [48497,27668], + [48499,16969], + [48501,3690], + [48503,8646], + [48505,5761], + [48507,4557], + [49001,3157], + [49003,23644], + [49005,57249], + [49007,9910], + [49009,495], + [49011,146959], + [49013,8166], + [49015,5290], + [49017,3074], + [49019,5323], + [49021,20414], + [49023,4612], + [49025,3561], + [49027,6421], + [49029,4274], + [49031,572], + [49033,1039], + [49035,548378], + [49037,6087], + [49039,11461], + [49041,9727], + [49043,20857], + [49045,27454], + [49047,15189], + [49049,229820], + [49051,11360], + [49053,56776], + [49055,1576], + [49057,113259], + [50001,21241], + [50003,20339], + [50005,16785], + [50007,94581], + [50009,3171], + [50011,27686], + [50013,4134], + [50015,14496], + [50017,16725], + [50019,14213], + [50021,33590], + [50023,35117], + [50025,25435], + [50027,31889], + [51001,16805], + [51003,50987], + [51005,7951], + [51007,6227], + [51009,16352], + [51011,7343], + [51013,137368], + [51015,37130], + [51017,2509], + [51019,39053], + [51021,2895], + [51023,17700], + [51025,6953], + [51027,8326], + [51029,6568], + [51031,27756], + [51033,14342], + [51035,14004], + [51036,3901], + [51037,5356], + [51041,168602], + [51043,7695], + [51045,2441], + [51047,23263], + [51049,4523], + [51051,5513], + [51053,13566], + [51057,5715], + [51059,610521], + [51061,35763], + [51063,8134], + [51065,13078], + [51067,27622], + [51069,41981], + [51071,8302], + [51073,19553], + [51075,10483], + [51077,7373], + [51079,9655], + [51081,4562], + [51083,16686], + [51085,54430], + [51087,167701], + [51089,24007], + [51091,1445], + [51093,18800], + [51095,32243], + [51097,3592], + [51099,11413], + [51101,8656], + [51103,5570], + [51105,10127], + [51107,175439], + [51109,17858], + [51111,5547], + [51113,7169], + [51115,4224], + [51117,14158], + [51119,5160], + [51121,47497], + [51125,7574], + [51127,10294], + [51131,6335], + [51133,6150], + [51135,6859], + [51137,15456], + [51139,12336], + [51141,8321], + [51143,30911], + [51145,13510], + [51147,10279], + [51149,13962], + [51153,218394], + [51155,16975], + [51157,4025], + [51159,4366], + [51161,49258], + [51163,11142], + [51165,40373], + [51167,12081], + [51169,10072], + [51171,20831], + [51173,13707], + [51175,9495], + [51177,63357], + [51179,63904], + [51181,3694], + [51183,4281], + [51185,18394], + [51187,20103], + [51191,27416], + [51193,9178], + [51195,16977], + [51197,14277], + [51199,31289], + [51510,90361], + [51520,7977], + [51530,3248], + [51540,23203], + [51550,113319], + [51570,8533], + [51580,2689], + [51590,20099], + [51595,2570], + [51600,12663], + [51610,7382], + [51620,3708], + [51630,12423], + [51640,3172], + [51650,66666], + [51660,23165], + [51670,9864], + [51678,2300], + [51680,35841], + [51683,20972], + [51685,8066], + [51690,6136], + [51700,90664], + [51710,112449], + [51720,2079], + [51730,13877], + [51735,6395], + [51740,45461], + [51750,7787], + [51760,106456], + [51770,49317], + [51775,12789], + [51790,11846], + [51800,41753], + [51810,226894], + [51820,10170], + [51830,6516], + [51840,13688], + [53001,8440], + [53003,10333], + [53005,94253], + [53007,42102], + [53009,29621], + [53011,216620], + [53013,1959], + [53015,46432], + [53017,19876], + [53019,2645], + [53021,38254], + [53023,1061], + [53025,43212], + [53027,31046], + [53029,33812], + [53031,12750], + [53033,1105830], + [53035,120592], + [53037,21306], + [53039,10328], + [53041,33962], + [53043,5327], + [53045,24941], + [53047,22347], + [53049,8789], + [53051,5148], + [53053,395844], + [53055,8449], + [53057,59114], + [53059,5179], + [53061,386587], + [53063,238125], + [53065,19104], + [53067,126948], + [53069,1472], + [53071,30530], + [53073,104359], + [53075,22489], + [53077,122140], + [54001,6870], + [54003,51020], + [54005,8812], + [54007,5686], + [54009,10917], + [54011,43292], + [54013,2906], + [54015,3647], + [54017,3315], + [54019,17567], + [54021,2775], + [54023,6124], + [54025,15430], + [54027,9765], + [54029,14174], + [54031,5710], + [54033,31254], + [54035,12313], + [54037,26869], + [54039,92603], + [54041,6990], + [54043,7873], + [54045,12687], + [54047,6362], + [54049,26641], + [54051,14680], + [54053,11282], + [54055,24076], + [54057,12362], + [54059,9168], + [54061,48354], + [54063,5764], + [54065,7677], + [54067,10937], + [54069,21826], + [54071,3658], + [54073,2937], + [54075,3800], + [54077,14935], + [54079,26390], + [54081,32470], + [54083,12208], + [54085,4295], + [54087,5510], + [54089,4783], + [54091,7446], + [54093,3301], + [54095,3551], + [54097,10369], + [54099,16938], + [54101,3739], + [54103,7016], + [54105,2292], + [54107,39348], + [54109,8414], + [55001,9137], + [55003,8411], + [55005,23791], + [55007,7688], + [55009,137152], + [55011,7197], + [55013,7578], + [55015,27304], + [55017,33182], + [55019,17259], + [55021,32090], + [55023,8367], + [55025,293228], + [55027,47350], + [55029,15758], + [55031,23738], + [55033,23243], + [55035,57108], + [55037,2247], + [55039,56517], + [55041,4253], + [55043,27778], + [55045,21275], + [55047,10308], + [55049,13772], + [55051,2881], + [55053,10123], + [55055,46473], + [55057,13698], + [55059,85825], + [55061,11178], + [55063,65594], + [55065,9489], + [55067,10181], + [55069,15661], + [55071,44631], + [55073,73521], + [55075,21380], + [55077,7691], + [55078,1550], + [55079,476456], + [55081,23123], + [55083,21332], + [55085,19066], + [55087,100597], + [55089,47416], + [55091,4095], + [55093,23984], + [55095,24047], + [55097,39856], + [55099,7563], + [55101,100315], + [55103,9631], + [55105,82699], + [55107,7141], + [55109,47068], + [55111,35853], + [55113,8393], + [55115,21884], + [55117,62239], + [55119,11449], + [55121,15984], + [55123,15162], + [55125,10345], + [55127,56361], + [55129,8043], + [55131,75605], + [55133,218013], + [55135,27744], + [55137,12026], + [55139,92451], + [55141,39966], + [56001,21381], + [56003,5631], + [56005,26296], + [56007,8254], + [56009,7568], + [56011,3910], + [56013,20971], + [56015,7500], + [56017,2569], + [56019,4535], + [56021,46182], + [56023,8675], + [56025,39894], + [56027,1387], + [56029,15849], + [56031,4965], + [56033,16132], + [56035,5691], + [56037,23134], + [56039,13611], + [56041,10557], + [56043,4589], + [56045,4016] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2011.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2011.json new file mode 100644 index 0000000..0a2dada --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2011.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2011", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2011"], + [1001,25836], + [1003,85045], + [1005,9849], + [1007,8933], + [1009,25123], + [1011,4833], + [1013,9188], + [1015,51268], + [1017,15200], + [1019,11476], + [1021,19539], + [1023,4764], + [1025,8843], + [1027,5598], + [1029,5939], + [1031,20749], + [1033,24386], + [1035,4785], + [1037,4477], + [1039,16367], + [1041,6432], + [1043,35669], + [1045,22017], + [1047,17514], + [1049,29809], + [1051,36597], + [1053,14978], + [1055,44722], + [1057,6632], + [1059,14362], + [1061,11486], + [1063,3226], + [1065,6296], + [1067,7270], + [1069,46778], + [1071,24163], + [1073,319652], + [1075,5826], + [1077,44048], + [1079,14788], + [1081,68316], + [1083,38990], + [1085,4239], + [1087,8512], + [1089,171726], + [1091,7875], + [1093,12556], + [1095,41085], + [1097,193851], + [1099,8325], + [1101,109092], + [1103,58319], + [1105,3866], + [1107,7570], + [1109,15438], + [1111,9447], + [1113,24604], + [1115,38509], + [1117,104214], + [1119,5560], + [1121,35293], + [1123,18363], + [1125,95463], + [1127,27092], + [1129,7106], + [1131,2979], + [1133,9819], + [2013,2183], + [2016,4255], + [2020,159006], + [2050,7221], + [2060,518], + [2068,1018], + [2070,2106], + [2090,48354], + [2100,1167], + [2105,1099], + [2110,17907], + [2122,27273], + [2130,7180], + [2150,6783], + [2158,"NA"], + [2164,638], + [2170,43368], + [2180,4127], + [2185,3993], + [2188,2987], + [2195,1856], + [2198,2572], + [2220,4632], + [2230,716], + [2240,3202], + [2261,4938], + [2275,1051], + [2282,301], + [2290,2706], + [4001,23040], + [4003,55917], + [4005,71682], + [4007,21171], + [4009,14345], + [4011,3352], + [4012,7827], + [4013,1894633], + [4015,79594], + [4017,43344], + [4019,466908], + [4021,149658], + [4023,20478], + [4025,93132], + [4027,91935], + [5001,10589], + [5003,9886], + [5005,16602], + [5007,109574], + [5009,16697], + [5011,4560], + [5013,2639], + [5015,12896], + [5017,4282], + [5019,10335], + [5021,7304], + [5023,10551], + [5025,3885], + [5027,10445], + [5029,9038], + [5031,49190], + [5033,28020], + [5035,22778], + [5037,8832], + [5039,3322], + [5041,6151], + [5043,8656], + [5045,59482], + [5047,7799], + [5049,5127], + [5051,41787], + [5053,8560], + [5055,20147], + [5057,11024], + [5059,14527], + [5061,6746], + [5063,16711], + [5065,5232], + [5067,6714], + [5069,33727], + [5071,11134], + [5073,3007], + [5075,7471], + [5077,3678], + [5079,4782], + [5081,6143], + [5083,9641], + [5085,33448], + [5087,7244], + [5089,6758], + [5091,20808], + [5093,20984], + [5095,3390], + [5097,3826], + [5099,4180], + [5101,3803], + [5103,11066], + [5105,4520], + [5107,8447], + [5109,4654], + [5111,10817], + [5113,8947], + [5115,30517], + [5117,3937], + [5119,190083], + [5121,7186], + [5123,9824], + [5125,54212], + [5127,4832], + [5129,3336], + [5131,59600], + [5133,6402], + [5135,6294], + [5137,5402], + [5139,16977], + [5141,6756], + [5143,104823], + [5145,36768], + [5147,3571], + [5149,9605], + [6001,786756], + [6003,593], + [6005,15095], + [6007,100647], + [6009,20668], + [6011,11376], + [6013,529551], + [6015,10895], + [6017,89690], + [6019,443509], + [6021,13167], + [6023,65106], + [6025,79456], + [6027,9682], + [6029,382367], + [6031,59123], + [6033,29611], + [6035,11785], + [6037,4928464], + [6039,62014], + [6041,134576], + [6043,8661], + [6045,40953], + [6047,114735], + [6049,3620], + [6051,8832], + [6053,216558], + [6055,70760], + [6057,49021], + [6059,1546389], + [6061,173744], + [6063,8890], + [6065,978514], + [6067,679995], + [6069,28281], + [6071,888513], + [6073,1524582], + [6075,494760], + [6077,311363], + [6079,134374], + [6081,399859], + [6083,213005], + [6085,939851], + [6087,141335], + [6089,77044], + [6091,1601], + [6093,19435], + [6095,202241], + [6097,246171], + [6099,242320], + [6101,45939], + [6103,25574], + [6105,5385], + [6107,203474], + [6109,22725], + [6111,431718], + [6113,101806], + [6115,28948], + [8001,236385], + [8003,7684], + [8005,319253], + [8007,5748], + [8009,2068], + [8011,1929], + [8013,172002], + [8014,31768], + [8015,8301], + [8017,1050], + [8019,5500], + [8021,3728], + [8023,1582], + [8025,1488], + [8027,2017], + [8029,14409], + [8031,352226], + [8033,947], + [8035,158279], + [8037,32147], + [8039,12674], + [8041,307563], + [8043,15916], + [8045,31376], + [8047,3269], + [8049,8795], + [8051,9935], + [8053,473], + [8055,2659], + [8057,893], + [8059,302402], + [8061,836], + [8063,4265], + [8065,4377], + [8067,29476], + [8069,170942], + [8071,6977], + [8073,2193], + [8075,11081], + [8077,75475], + [8079,426], + [8081,7861], + [8083,12986], + [8085,20017], + [8087,15043], + [8089,8473], + [8091,2023], + [8093,9406], + [8095,2154], + [8097,10926], + [8099,6242], + [8101,75117], + [8103,3119], + [8105,5152], + [8107,14288], + [8109,3015], + [8111,522], + [8113,4885], + [8115,1096], + [8117,19255], + [8119,12154], + [8121,2589], + [8123,134285], + [8125,4962], + [9001,478085], + [9003,478396], + [9005,108015], + [9007,93453], + [9009,462437], + [9011,143702], + [9013,86080], + [9015,64605], + [10001,74035], + [10003,277295], + [10005,92016], + [11001,350778], + [12001,129027], + [12003,11506], + [12005,87205], + [12007,11507], + [12009,265213], + [12011,951445], + [12013,5242], + [12015,65722], + [12017,52057], + [12019,96166], + [12021,148810], + [12023,28242], + [12027,13884], + [12029,5754], + [12031,456441], + [12033,140774], + [12035,41940], + [12037,5051], + [12039,19614], + [12041,6857], + [12043,5292], + [12045,6241], + [12047,4898], + [12049,11916], + [12051,17971], + [12053,66199], + [12055,38151], + [12057,661540], + [12059,7195], + [12061,61940], + [12063,18260], + [12065,5918], + [12067,3636], + [12069,133860], + [12071,287064], + [12073,149969], + [12075,16974], + [12077,2862], + [12079,8078], + [12081,148173], + [12083,131031], + [12085,66822], + [12086,1255105], + [12087,42781], + [12089,36018], + [12091,90913], + [12093,17822], + [12095,642178], + [12097,140286], + [12099,652697], + [12101,206715], + [12103,463993], + [12105,276920], + [12107,29776], + [12109,101402], + [12111,128670], + [12113,72675], + [12115,166864], + [12117,230621], + [12119,26041], + [12121,18870], + [12123,9444], + [12125,5178], + [12127,237832], + [12129,14604], + [12131,26285], + [12133,10412], + [13001,8875], + [13003,3495], + [13005,4508], + [13007,1172], + [13009,18617], + [13011,8506], + [13013,34618], + [13015,47746], + [13017,6254], + [13019,7868], + [13021,71223], + [13023,5492], + [13025,7463], + [13027,7066], + [13029,14722], + [13031,33499], + [13033,9953], + [13035,10458], + [13037,2522], + [13039,21154], + [13043,5033], + [13045,51917], + [13047,32062], + [13049,4965], + [13051,129639], + [13053,2369], + [13055,10578], + [13057,113843], + [13059,57177], + [13061,1066], + [13063,126983], + [13065,2889], + [13067,384688], + [13069,17605], + [13071,21236], + [13073,63320], + [13075,7602], + [13077,65009], + [13079,5807], + [13081,9203], + [13083,8365], + [13085,10882], + [13087,12066], + [13089,366603], + [13091,8292], + [13093,4789], + [13095,41256], + [13097,66989], + [13099,4449], + [13101,1879], + [13103,25639], + [13105,8796], + [13107,9162], + [13109,4809], + [13111,10273], + [13113,53224], + [13115,44852], + [13117,91061], + [13119,9751], + [13121,498861], + [13123,12372], + [13125,1335], + [13127,38256], + [13129,26267], + [13131,10847], + [13133,6379], + [13135,427145], + [13137,18337], + [13139,87726], + [13141,2961], + [13143,12255], + [13145,16399], + [13147,11146], + [13149,5169], + [13151,102687], + [13153,68352], + [13155,3541], + [13157,28906], + [13159,6796], + [13161,6512], + [13163,7121], + [13165,3206], + [13167,4165], + [13169,13817], + [13171,8116], + [13173,3951], + [13175,20302], + [13177,14330], + [13179,27588], + [13181,3636], + [13183,6375], + [13185,51359], + [13187,14884], + [13189,9405], + [13191,6188], + [13193,5281], + [13195,13222], + [13197,3681], + [13199,9244], + [13201,2737], + [13205,9523], + [13207,12739], + [13209,3913], + [13211,8639], + [13213,17062], + [13215,82863], + [13217,48399], + [13219,16910], + [13221,6999], + [13223,74316], + [13225,12693], + [13227,14063], + [13229,8099], + [13231,8437], + [13233,18679], + [13235,4486], + [13237,8667], + [13239,979], + [13241,7034], + [13243,2945], + [13245,88510], + [13247,42258], + [13249,2162], + [13251,5768], + [13253,3272], + [13255,28573], + [13257,11743], + [13259,2337], + [13261,13933], + [13263,2918], + [13265,618], + [13267,9874], + [13269,3179], + [13271,5282], + [13273,3850], + [13275,18338], + [13277,18942], + [13279,12433], + [13281,4357], + [13283,2989], + [13285,34505], + [13287,3598], + [13289,3255], + [13291,9480], + [13293,12013], + [13295,31064], + [13297,41220], + [13299,15280], + [13301,2648], + [13303,8116], + [13305,12504], + [13307,1067], + [13309,1981], + [13311,13169], + [13313,47462], + [13315,2933], + [13317,3931], + [13319,3775], + [13321,9795], + [15001,88675], + [15003,456169], + [15005,"NA"], + [15007,34904], + [15009,80507], + [16001,200187], + [16003,1744], + [16005,41041], + [16007,2921], + [16009,4149], + [16011,22836], + [16013,11870], + [16015,3058], + [16017,19037], + [16019,49315], + [16021,5383], + [16023,1324], + [16025,639], + [16027,85470], + [16029,3883], + [16031,11191], + [16033,516], + [16035,3354], + [16037,2300], + [16039,10998], + [16041,6247], + [16043,6703], + [16045,7704], + [16047,8364], + [16049,6683], + [16051,12506], + [16053,11107], + [16055,69295], + [16057,19244], + [16059,3666], + [16061,1554], + [16063,2680], + [16065,17896], + [16067,10560], + [16069,20083], + [16071,2016], + [16073,4885], + [16075,11159], + [16077,3927], + [16079,5511], + [16081,5325], + [16083,37466], + [16085,4653], + [16087,4733], + [17001,34384], + [17003,2889], + [17005,8486], + [17007,27172], + [17009,2590], + [17011,18739], + [17013,2497], + [17015,8301], + [17017,6910], + [17019,105700], + [17021,16892], + [17023,8115], + [17025,6689], + [17027,20701], + [17029,24782], + [17031,2636434], + [17033,10817], + [17035,5940], + [17037,55673], + [17039,8699], + [17041,10128], + [17043,501986], + [17045,9329], + [17047,3136], + [17049,18649], + [17051,11159], + [17053,6985], + [17055,17606], + [17057,17422], + [17059,2577], + [17061,6704], + [17063,25752], + [17065,3915], + [17067,9624], + [17069,1749], + [17071,3854], + [17073,26495], + [17075,15724], + [17077,29633], + [17079,5001], + [17081,18173], + [17083,11582], + [17085,12130], + [17087,4392], + [17089,267240], + [17091,56864], + [17093,62634], + [17095,24853], + [17097,368282], + [17099,60829], + [17101,6572], + [17103,18831], + [17105,18826], + [17107,13716], + [17109,15143], + [17111,166760], + [17113,95328], + [17115,54902], + [17117,24754], + [17119,137725], + [17121,19114], + [17123,6342], + [17125,7169], + [17127,7117], + [17129,7138], + [17131,8834], + [17133,18117], + [17135,13651], + [17137,18132], + [17139,7456], + [17141,27428], + [17143,96184], + [17145,9461], + [17147,8818], + [17149,7914], + [17151,1971], + [17153,2358], + [17155,3198], + [17157,14797], + [17159,7805], + [17161,75965], + [17163,132793], + [17165,11653], + [17167,108909], + [17169,3771], + [17171,2847], + [17173,11016], + [17175,2973], + [17177,24200], + [17179,71538], + [17181,7755], + [17183,37475], + [17185,5810], + [17187,9127], + [17189,8714], + [17191,8205], + [17193,7422], + [17195,29658], + [17197,354426], + [17199,32315], + [17201,147452], + [17203,20503], + [18001,16154], + [18003,176123], + [18005,40025], + [18007,4644], + [18009,5624], + [18011,29815], + [18013,7430], + [18015,10125], + [18017,18181], + [18019,55551], + [18021,12995], + [18023,16749], + [18025,4866], + [18027,14887], + [18029,25339], + [18031,13014], + [18033,20488], + [18035,54650], + [18037,21938], + [18039,95376], + [18041,9512], + [18043,37767], + [18045,8630], + [18047,11221], + [18049,10200], + [18051,17282], + [18053,33438], + [18055,14180], + [18057,148121], + [18059,35797], + [18061,18773], + [18063,76017], + [18065,21288], + [18067,36051], + [18069,19150], + [18071,20549], + [18073,16094], + [18075,10528], + [18077,15170], + [18079,13341], + [18081,72053], + [18083,18459], + [18085,38972], + [18087,16666], + [18089,229318], + [18091,50457], + [18093,20791], + [18095,58819], + [18097,456014], + [18099,23453], + [18101,5344], + [18103,15937], + [18105,67562], + [18107,18713], + [18109,34902], + [18111,6989], + [18113,23132], + [18115,3210], + [18117,8865], + [18119,10137], + [18121,7195], + [18123,9062], + [18125,6232], + [18127,82283], + [18129,13421], + [18131,6401], + [18133,16596], + [18135,13023], + [18137,14938], + [18139,8584], + [18141,130605], + [18143,10378], + [18145,22512], + [18147,11031], + [18149,10332], + [18151,18565], + [18153,8891], + [18155,4987], + [18157,87456], + [18159,7956], + [18161,3667], + [18163,92760], + [18165,7647], + [18167,50515], + [18169,15707], + [18171,4271], + [18173,31119], + [18175,13515], + [18177,30992], + [18179,14049], + [18181,13108], + [18183,17325], + [19001,4096], + [19003,2209], + [19005,7745], + [19007,6053], + [19009,3363], + [19011,14118], + [19013,70918], + [19015,14658], + [19017,13842], + [19019,11167], + [19021,11338], + [19023,8172], + [19025,4509], + [19027,11611], + [19029,7288], + [19031,10873], + [19033,24160], + [19035,6936], + [19037,6490], + [19039,4686], + [19041,9252], + [19043,10341], + [19045,25839], + [19047,8818], + [19049,38216], + [19051,4187], + [19053,4343], + [19055,10251], + [19057,20304], + [19059,9256], + [19061,54378], + [19063,5787], + [19065,11040], + [19067,8291], + [19069,5970], + [19071,3967], + [19073,5189], + [19075,6703], + [19077,5690], + [19079,7468], + [19081,5938], + [19083,8986], + [19085,7818], + [19087,9829], + [19089,5320], + [19091,5170], + [19093,3793], + [19095,9609], + [19097,10991], + [19099,18605], + [19101,8816], + [19103,79671], + [19105,10915], + [19107,5472], + [19109,8354], + [19111,17440], + [19113,119379], + [19115,5905], + [19117,4185], + [19119,6775], + [19121,8274], + [19123,11834], + [19125,17163], + [19127,20047], + [19129,7447], + [19131,5652], + [19133,4774], + [19135,4034], + [19137,5034], + [19139,21410], + [19141,8104], + [19143,3527], + [19145,6856], + [19147,4774], + [19149,14248], + [19151,4081], + [19153,242973], + [19155,49538], + [19157,10396], + [19159,2600], + [19161,5617], + [19163,86747], + [19165,6717], + [19167,19529], + [19169,53207], + [19171,9190], + [19173,3151], + [19175,6958], + [19177,3849], + [19179,18118], + [19181,25952], + [19183,12313], + [19185,2823], + [19187,19774], + [19189,5445], + [19191,12112], + [19193,54559], + [19195,4288], + [19197,6787], + [20001,7032], + [20003,4490], + [20005,7926], + [20007,2778], + [20009,15036], + [20011,6876], + [20013,5186], + [20015,32445], + [20017,1338], + [20019,1699], + [20021,10801], + [20023,1346], + [20025,1211], + [20027,4389], + [20029,4527], + [20031,4649], + [20033,980], + [20035,17096], + [20037,19169], + [20039,1415], + [20041,10109], + [20043,4453], + [20045,63747], + [20047,1664], + [20049,1382], + [20051,17841], + [20053,3491], + [20055,20743], + [20057,18271], + [20059,13989], + [20061,13174], + [20063,1498], + [20065,1416], + [20067,4104], + [20069,3585], + [20071,842], + [20073,3466], + [20075,1746], + [20077,2895], + [20079,17387], + [20081,2414], + [20083,1109], + [20085,7419], + [20087,10450], + [20089,1528], + [20091,308303], + [20093,2179], + [20095,3823], + [20097,1344], + [20099,11038], + [20101,959], + [20103,34425], + [20105,1877], + [20107,4501], + [20109,1774], + [20111,17333], + [20113,16652], + [20115,6471], + [20117,5992], + [20119,2534], + [20121,16914], + [20123,3893], + [20125,18272], + [20127,3289], + [20129,1674], + [20131,5900], + [20133,7400], + [20135,1623], + [20137,3138], + [20139,8568], + [20141,2261], + [20143,3270], + [20145,3481], + [20147,3019], + [20149,11564], + [20151,5362], + [20153,1518], + [20155,32636], + [20157,2683], + [20159,5388], + [20161,35427], + [20163,2726], + [20165,1841], + [20167,3784], + [20169,30761], + [20171,2725], + [20173,249217], + [20175,10820], + [20177,92932], + [20179,1526], + [20181,3205], + [20183,2265], + [20185,2317], + [20187,1064], + [20189,2765], + [20191,11573], + [20193,4600], + [20195,1494], + [20197,3837], + [20199,882], + [20201,3309], + [20203,1329], + [20205,4270], + [20207,1718], + [20209,74544], + [21001,7747], + [21003,9111], + [21005,11567], + [21007,3884], + [21009,19890], + [21011,4835], + [21013,10190], + [21015,64221], + [21017,10046], + [21019,20244], + [21021,13157], + [21023,3981], + [21025,4410], + [21027,8280], + [21029,38954], + [21031,5452], + [21033,5695], + [21035,19019], + [21037,48811], + [21039,2305], + [21041,5110], + [21043,11696], + [21045,6980], + [21047,26810], + [21049,17537], + [21051,6052], + [21053,4281], + [21055,4174], + [21057,3118], + [21059,47742], + [21061,5122], + [21063,2331], + [21065,5607], + [21067,164926], + [21069,6466], + [21071,13716], + [21073,24611], + [21075,2659], + [21077,4004], + [21079,7810], + [21081,11623], + [21083,16903], + [21085,11397], + [21087,5452], + [21089,15208], + [21091,4080], + [21093,47443], + [21095,10025], + [21097,8950], + [21099,8196], + [21101,22865], + [21103,7752], + [21105,2282], + [21107,21545], + [21109,5294], + [21111,378781], + [21113,24650], + [21115,8691], + [21117,83780], + [21119,5849], + [21121,10634], + [21123,6046], + [21125,24978], + [21127,5774], + [21129,2512], + [21131,3632], + [21133,8883], + [21135,5517], + [21137,10405], + [21139,4024], + [21141,12440], + [21143,3078], + [21145,30974], + [21147,5690], + [21149,4564], + [21151,44056], + [21153,4150], + [21155,9200], + [21157,15441], + [21159,3870], + [21161,7660], + [21163,12815], + [21165,2543], + [21167,10234], + [21169,4611], + [21171,4834], + [21173,12080], + [21175,5232], + [21177,12942], + [21179,21806], + [21181,3585], + [21183,10352], + [21185,29260], + [21187,5701], + [21189,1389], + [21191,7201], + [21193,11020], + [21195,24323], + [21197,5153], + [21199,27525], + [21201,859], + [21203,7193], + [21205,11237], + [21207,7350], + [21209,25543], + [21211,21968], + [21213,8612], + [21215,9248], + [21217,11925], + [21219,5708], + [21221,6190], + [21223,4016], + [21225,7598], + [21227,58969], + [21229,6125], + [21231,7888], + [21233,6212], + [21235,13901], + [21237,2104], + [21239,14326], + [22001,25791], + [22003,9214], + [22005,53941], + [22007,9974], + [22009,16638], + [22011,14269], + [22013,5860], + [22015,56901], + [22017,115609], + [22019,87010], + [22021,4103], + [22023,3250], + [22025,4060], + [22027,6866], + [22029,7813], + [22031,11228], + [22033,221086], + [22035,2342], + [22037,8049], + [22039,13026], + [22041,7961], + [22043,8358], + [22045,31877], + [22047,13976], + [22049,6945], + [22051,213027], + [22053,12907], + [22055,113869], + [22057,44381], + [22059,6689], + [22061,20086], + [22063,61455], + [22065,3980], + [22067,11062], + [22069,16143], + [22071,165726], + [22073,69852], + [22075,10086], + [22077,9980], + [22079,58206], + [22081,4049], + [22083,8796], + [22085,9460], + [22087,16856], + [22089,24836], + [22091,4637], + [22093,9943], + [22095,20953], + [22097,33637], + [22099,24085], + [22101,25136], + [22103,107963], + [22105,53286], + [22107,1979], + [22109,49902], + [22111,9345], + [22113,25357], + [22115,19235], + [22117,16615], + [22119,16569], + [22121,11927], + [22123,4268], + [22125,5138], + [22127,5651], + [23001,56041], + [23003,34531], + [23005,158118], + [23007,15477], + [23009,30097], + [23011,63279], + [23013,20451], + [23015,17130], + [23017,27867], + [23019,79566], + [23021,7944], + [23023,19145], + [23025,24691], + [23027,20395], + [23029,14889], + [23031,109659], + [24001,34087], + [24003,289334], + [24005,435544], + [24009,47713], + [24011,17482], + [24013,92837], + [24015,52098], + [24017,78996], + [24019,16525], + [24021,128566], + [24023,15810], + [24025,133823], + [24027,163945], + [24029,10768], + [24031,536832], + [24033,482913], + [24035,26608], + [24037,54265], + [24039,9890], + [24041,19450], + [24043,76481], + [24045,50630], + [24047,26385], + [24510,295579], + [25001,109690], + [25003,67275], + [25005,284776], + [25007,9162], + [25009,392576], + [25011,39526], + [25013,218969], + [25015,84907], + [25017,823942], + [25019,6211], + [25021,357272], + [25023,260735], + [25025,396271], + [25027,418002], + [26001,3807], + [26003,3475], + [26005,56816], + [26007,13684], + [26009,10165], + [26011,6688], + [26013,3661], + [26015,28877], + [26017,53317], + [26019,8693], + [26021,74551], + [26023,19173], + [26025,63216], + [26027,24419], + [26029,12925], + [26031,10839], + [26033,17390], + [26035,12169], + [26037,38944], + [26039,5498], + [26041,17814], + [26043,12810], + [26045,55660], + [26047,18043], + [26049,182814], + [26051,10115], + [26053,6947], + [26055,46656], + [26057,19075], + [26059,20651], + [26061,17322], + [26063,16412], + [26065,145123], + [26067,29106], + [26069,10130], + [26071,5170], + [26073,34911], + [26075,72614], + [26077,126186], + [26079,7595], + [26081,315111], + [26083,1017], + [26085,3858], + [26087,39862], + [26089,10324], + [26091,48269], + [26093,92626], + [26095,2412], + [26097,5289], + [26099,409065], + [26101,10684], + [26103,33939], + [26105,14263], + [26107,19137], + [26109,11815], + [26111,40869], + [26113,7037], + [26115,73660], + [26117,27300], + [26119,3346], + [26121,75669], + [26123,22463], + [26125,610881], + [26127,12988], + [26129,8786], + [26131,2777], + [26133,10170], + [26135,3149], + [26137,11452], + [26139,139598], + [26141,5569], + [26143,8383], + [26145,89803], + [26147,74208], + [26149,27609], + [26151,19505], + [26153,3678], + [26155,33632], + [26157,25165], + [26159,36445], + [26161,180797], + [26163,774443], + [26165,14656], + [27001,7112], + [27003,187000], + [27005,17715], + [27007,22491], + [27009,21250], + [27011,2902], + [27013,38315], + [27015,15042], + [27017,17630], + [27019,52129], + [27021,14149], + [27023,7183], + [27025,28983], + [27027,34623], + [27029,4573], + [27031,3051], + [27033,6139], + [27035,31556], + [27037,227975], + [27039,11235], + [27041,19780], + [27043,7794], + [27045,11224], + [27047,17051], + [27049,26931], + [27051,3375], + [27053,656063], + [27055,10665], + [27057,9512], + [27059,20589], + [27061,22519], + [27063,6090], + [27065,8709], + [27067,23643], + [27069,2604], + [27071,6811], + [27073,3974], + [27075,5814], + [27077,2339], + [27079,15684], + [27081,3448], + [27083,15396], + [27085,20344], + [27087,2493], + [27089,5787], + [27091,11212], + [27093,12844], + [27095,12924], + [27097,18752], + [27099,20818], + [27101,5039], + [27103,19939], + [27105,11485], + [27107,3649], + [27109,81313], + [27111,30890], + [27113,8559], + [27115,15150], + [27117,5031], + [27119,17420], + [27121,5860], + [27123,272394], + [27125,2424], + [27127,8385], + [27129,8545], + [27131,34771], + [27133,5617], + [27135,8528], + [27137,102271], + [27139,74896], + [27141,48872], + [27143,8500], + [27145,85989], + [27147,21118], + [27149,5587], + [27151,5194], + [27153,13296], + [27155,1843], + [27157,11954], + [27159,6319], + [27161,10582], + [27163,133063], + [27165,6267], + [27167,3818], + [27169,29435], + [27171,70299], + [27173,5743], + [28001,12915], + [28003,16192], + [28005,4993], + [28007,7982], + [28009,3388], + [28011,15023], + [28013,7115], + [28015,3804], + [28017,8255], + [28019,3807], + [28021,3690], + [28023,6755], + [28025,8696], + [28027,10686], + [28029,12254], + [28031,8535], + [28033,83144], + [28035,35065], + [28037,3218], + [28039,9052], + [28041,4692], + [28043,9709], + [28045,20060], + [28047,90572], + [28049,118305], + [28051,6895], + [28053,3422], + [28055,516], + [28057,10572], + [28059,65563], + [28061,7184], + [28063,2539], + [28065,4636], + [28067,29123], + [28069,3916], + [28071,22931], + [28073,28508], + [28075,34382], + [28077,5076], + [28079,8871], + [28081,41068], + [28083,11626], + [28085,14829], + [28087,27321], + [28089,50716], + [28091,10922], + [28093,15773], + [28095,16576], + [28097,4677], + [28099,11969], + [28101,9393], + [28103,4379], + [28105,22769], + [28107,14708], + [28109,24313], + [28111,4671], + [28113,15766], + [28115,14019], + [28117,11731], + [28119,3123], + [28121,73498], + [28123,13667], + [28125,2024], + [28127,11579], + [28129,7400], + [28131,7040], + [28133,9849], + [28135,6078], + [28137,12835], + [28139,9290], + [28141,8070], + [28143,5140], + [28145,13295], + [28147,5826], + [28149,23541], + [28151,21179], + [28153,8743], + [28155,4399], + [28157,3457], + [28159,8003], + [28161,5372], + [28163,10139], + [29001,10917], + [29003,9753], + [29005,2894], + [29007,11294], + [29009,15264], + [29011,5636], + [29013,8385], + [29015,7228], + [29017,5757], + [29019,94108], + [29021,46473], + [29023,18816], + [29025,4450], + [29027,22085], + [29029,19150], + [29031,40687], + [29033,4743], + [29035,2640], + [29037,53085], + [29039,6002], + [29041,4098], + [29043,40908], + [29045,3405], + [29047,125652], + [29049,11033], + [29051,40384], + [29053,7948], + [29055,10856], + [29057,3433], + [29059,7226], + [29061,4056], + [29063,5035], + [29065,6418], + [29067,5196], + [29069,12350], + [29071,52944], + [29073,7633], + [29075,3587], + [29077,144414], + [29079,4955], + [29081,4021], + [29083,9923], + [29085,3572], + [29087,2701], + [29089,4866], + [29091,16532], + [29093,3570], + [29095,358230], + [29097,58850], + [29099,116930], + [29101,23500], + [29103,1979], + [29105,15921], + [29107,17464], + [29109,17396], + [29111,5142], + [29113,26691], + [29115,5335], + [29117,7090], + [29119,10239], + [29121,7489], + [29123,5361], + [29125,4207], + [29127,14547], + [29129,1838], + [29131,11381], + [29133,6072], + [29135,7374], + [29137,4093], + [29139,5954], + [29141,7874], + [29143,8236], + [29145,28981], + [29147,11602], + [29149,4063], + [29151,7424], + [29153,3580], + [29155,7193], + [29157,9873], + [29159,20169], + [29161,19933], + [29163,8208], + [29165,52035], + [29167,14326], + [29169,16671], + [29171,2372], + [29173,5648], + [29175,10817], + [29177,11438], + [29179,2319], + [29181,5487], + [29183,206298], + [29185,4023], + [29186,9316], + [29187,26794], + [29189,534224], + [29195,11121], + [29197,1908], + [29199,2332], + [29201,19679], + [29203,3134], + [29205,3205], + [29207,13700], + [29209,14181], + [29211,2837], + [29213,26143], + [29215,9767], + [29217,9598], + [29219,17114], + [29221,10139], + [29223,5500], + [29225,16180], + [29227,1241], + [29229,7605], + [29510,164340], + [30001,4934], + [30003,5638], + [30005,2486], + [30007,2494], + [30009,5292], + [30011,684], + [30013,38333], + [30015,2652], + [30017,6367], + [30019,943], + [30021,4547], + [30023,5156], + [30025,1952], + [30027,5906], + [30029,43591], + [30031,51559], + [30033,777], + [30035,6061], + [30037,391], + [30039,1457], + [30041,7986], + [30043,5619], + [30045,968], + [30047,12553], + [30049,34503], + [30051,1018], + [30053,8212], + [30055,1098], + [30057,4178], + [30059,910], + [30061,1791], + [30063,58780], + [30065,2329], + [30067,7883], + [30069,280], + [30071,2126], + [30073,2930], + [30075,1058], + [30077,2990], + [30079,531], + [30081,18660], + [30083,6151], + [30085,4629], + [30087,4445], + [30089,4861], + [30091,1885], + [30093,16956], + [30095,4824], + [30097,1703], + [30099,2941], + [30101,2387], + [30103,378], + [30105,3937], + [30107,837], + [30109,526], + [30111,77147], + [31001,16487], + [31003,3598], + [31005,231], + [31007,433], + [31009,280], + [31011,3041], + [31013,5981], + [31015,1149], + [31017,1464], + [31019,26864], + [31021,3638], + [31023,4745], + [31025,13380], + [31027,4709], + [31029,2346], + [31031,3453], + [31033,5684], + [31035,3483], + [31037,5684], + [31039,4924], + [31041,6048], + [31043,11014], + [31045,5473], + [31047,13190], + [31049,1068], + [31051,3161], + [31053,19131], + [31055,282043], + [31057,1275], + [31059,3324], + [31061,1671], + [31063,1602], + [31065,2712], + [31067,11191], + [31069,1260], + [31071,1206], + [31073,1130], + [31075,454], + [31077,1361], + [31079,32013], + [31081,4833], + [31083,1894], + [31085,679], + [31087,1376], + [31089,5941], + [31091,447], + [31093,3395], + [31095,4375], + [31097,2215], + [31099,3904], + [31101,4655], + [31103,602], + [31105,2181], + [31107,4762], + [31109,164156], + [31111,19422], + [31113,509], + [31115,378], + [31117,366], + [31119,19091], + [31121,4174], + [31123,2658], + [31125,2063], + [31127,3961], + [31129,2496], + [31131,8555], + [31133,1653], + [31135,1803], + [31137,5013], + [31139,4212], + [31141,17825], + [31143,3000], + [31145,6287], + [31147,4405], + [31149,899], + [31151,7344], + [31153,86350], + [31155,11202], + [31157,19209], + [31159,8767], + [31161,2831], + [31163,1759], + [31165,844], + [31167,3628], + [31169,2926], + [31171,426], + [31173,3122], + [31175,2149], + [31177,11240], + [31179,5608], + [31181,1736], + [31183,524], + [31185,7515], + [32001,11319], + [32003,995119], + [32005,23178], + [32007,28174], + [32009,416], + [32011,1072], + [32013,8738], + [32015,3219], + [32017,2069], + [32019,23013], + [32021,2229], + [32023,16826], + [32027,2471], + [32029,1974], + [32031,221688], + [32033,5099], + [32510,26513], + [33001,32049], + [33003,24764], + [33005,42545], + [33007,16347], + [33009,48735], + [33011,225078], + [33013,81097], + [33015,172121], + [33017,69614], + [33019,23952], + [34001,139712], + [34003,481389], + [34005,235904], + [34007,263061], + [34009,49460], + [34011,71870], + [34013,382993], + [34015,152043], + [34017,357120], + [34019,67746], + [34021,193382], + [34023,427282], + [34025,330174], + [34027,265514], + [34029,266297], + [34031,253500], + [34033,32402], + [34035,174366], + [34037,81765], + [34039,280560], + [34041,58736], + [35001,323703], + [35003,1161], + [35005,27596], + [35006,9275], + [35007,6319], + [35009,21478], + [35011,818], + [35013,93392], + [35015,26492], + [35017,12775], + [35019,1656], + [35021,297], + [35023,2285], + [35025,27249], + [35027,9110], + [35028,9277], + [35029,11495], + [35031,24976], + [35033,2379], + [35035,24688], + [35037,3391], + [35039,17254], + [35041,8327], + [35043,60822], + [35045,55028], + [35047,11097], + [35049,73631], + [35051,3888], + [35053,6841], + [35055,15172], + [35057,5875], + [35059,1941], + [35061,30667], + [36001,158289], + [36003,23657], + [36005,584353], + [36007,94727], + [36009,38540], + [36011,39068], + [36013,61661], + [36015,40803], + [36017,23830], + [36019,38413], + [36021,31452], + [36023,24341], + [36025,21717], + [36027,146309], + [36029,458769], + [36031,18201], + [36033,21725], + [36035,25552], + [36037,30922], + [36039,21576], + [36041,2442], + [36043,30723], + [36045,48934], + [36047,1170616], + [36049,12393], + [36051,32007], + [36053,34733], + [36055,373786], + [36057,23432], + [36059,683283], + [36061,882224], + [36063,105602], + [36065,108979], + [36067,232622], + [36069,55756], + [36071,178868], + [36073,18812], + [36075,57994], + [36077,31375], + [36079,51607], + [36081,1108920], + [36083,82767], + [36085,216722], + [36087,148873], + [36089,48900], + [36091,115669], + [36093,77068], + [36095,15557], + [36097,9008], + [36099,16104], + [36101,46123], + [36103,770533], + [36105,35480], + [36107,25818], + [36109,54190], + [36111,91289], + [36113,33619], + [36115,29721], + [36117,46445], + [36119,473504], + [36121,18881], + [36123,12086], + [37001,77265], + [37003,17893], + [37005,4630], + [37007,11099], + [37009,13245], + [37011,7766], + [37013,21473], + [37015,9071], + [37017,14863], + [37019,47015], + [37021,124660], + [37023,41196], + [37025,89830], + [37027,37342], + [37029,4591], + [37031,30966], + [37033,10109], + [37035,76812], + [37037,31120], + [37039,11594], + [37041,5957], + [37043,4145], + [37045,45873], + [37047,23939], + [37049,41925], + [37051,132538], + [37053,12350], + [37055,20053], + [37057,79406], + [37059,19991], + [37061,26233], + [37063,145292], + [37065,24925], + [37067,173621], + [37069,27941], + [37071,100475], + [37073,5426], + [37075,3617], + [37077,27862], + [37079,9558], + [37081,253095], + [37083,22346], + [37085,49138], + [37087,27510], + [37089,48402], + [37091,9632], + [37093,19451], + [37095,2114], + [37097,78531], + [37099,18070], + [37101,82457], + [37103,4583], + [37105,27228], + [37107,27601], + [37109,39803], + [37111,20594], + [37113,15483], + [37115,9435], + [37117,10638], + [37119,513764], + [37121,6738], + [37123,11505], + [37125,37081], + [37127,46919], + [37129,107501], + [37131,8630], + [37133,62686], + [37135,70173], + [37137,5481], + [37139,18269], + [37141,24622], + [37143,5303], + [37145,18560], + [37147,85776], + [37149,8444], + [37151,68708], + [37153,18285], + [37155,53473], + [37157,43567], + [37159,63505], + [37161,26482], + [37163,29686], + [37165,12855], + [37167,28833], + [37169,22507], + [37171,33832], + [37173,6484], + [37175,13393], + [37177,1633], + [37179,102404], + [37181,18646], + [37183,487849], + [37185,7641], + [37187,4989], + [37189,27002], + [37191,54885], + [37193,31095], + [37195,38258], + [37197,17963], + [37199,7874], + [38001,1165], + [38003,6046], + [38005,2930], + [38007,440], + [38009,3436], + [38011,1876], + [38013,1235], + [38015,46730], + [38017,89620], + [38019,2249], + [38021,2823], + [38023,1579], + [38025,2929], + [38027,1273], + [38029,1771], + [38031,1766], + [38033,980], + [38035,37731], + [38037,1392], + [38039,1267], + [38041,1489], + [38043,1357], + [38045,2398], + [38047,978], + [38049,3326], + [38051,1309], + [38053,4620], + [38055,4982], + [38057,4142], + [38059,15833], + [38061,6500], + [38063,1664], + [38065,925], + [38067,3929], + [38069,1936], + [38071,6073], + [38073,2879], + [38075,1446], + [38077,8883], + [38079,5154], + [38081,2111], + [38083,799], + [38085,1330], + [38087,493], + [38089,16072], + [38091,1114], + [38093,10840], + [38095,1350], + [38097,4606], + [38099,5968], + [38101,32491], + [38103,2311], + [38105,20091], + [39001,11524], + [39003,50958], + [39005,26144], + [39007,47581], + [39009,27851], + [39011,24128], + [39013,32286], + [39015,20658], + [39017,188924], + [39019,14111], + [39021,19527], + [39023,67537], + [39025,103615], + [39027,18047], + [39029,51859], + [39031,16799], + [39033,20800], + [39035,623251], + [39037,26655], + [39039,19246], + [39041,95206], + [39043,39811], + [39045,73970], + [39047,14367], + [39049,627448], + [39051,22636], + [39053,13034], + [39055,48654], + [39057,81800], + [39059,18474], + [39061,407539], + [39063,40075], + [39065,15104], + [39067,7026], + [39069,14399], + [39071,18111], + [39073,13803], + [39075,19592], + [39077,29709], + [39079,13966], + [39081,32004], + [39083,30505], + [39085,125191], + [39087,27088], + [39089,86838], + [39091,22851], + [39093,149725], + [39095,213380], + [39097,20331], + [39099,112957], + [39101,29582], + [39103,93801], + [39105,9814], + [39107,22180], + [39109,53466], + [39111,6600], + [39113,260110], + [39115,6788], + [39117,17138], + [39119,41313], + [39121,4989], + [39123,22475], + [39125,9458], + [39127,16427], + [39129,25885], + [39131,11035], + [39133,89382], + [39135,21728], + [39137,19252], + [39139,58139], + [39141,34318], + [39143,32721], + [39145,31833], + [39147,28806], + [39149,24239], + [39151,189210], + [39153,276591], + [39155,97442], + [39157,45405], + [39159,26723], + [39161,14541], + [39163,5733], + [39165,109603], + [39167,29041], + [39169,59186], + [39171,18932], + [39173,68376], + [39175,12120], + [40001,8849], + [40003,2558], + [40005,5013], + [40007,2952], + [40009,11336], + [40011,4355], + [40013,17508], + [40015,11619], + [40017,61519], + [40019,21652], + [40021,19236], + [40023,6028], + [40025,1371], + [40027,133181], + [40029,2352], + [40031,50693], + [40033,2915], + [40035,6347], + [40037,31308], + [40039,15181], + [40041,17318], + [40043,2470], + [40045,2113], + [40047,28821], + [40049,12203], + [40051,25282], + [40053,2545], + [40055,2144], + [40057,1319], + [40059,1869], + [40061,4677], + [40063,5474], + [40065,11348], + [40067,2660], + [40069,3713], + [40071,20647], + [40073,7580], + [40075,4268], + [40077,4436], + [40079,20136], + [40081,15504], + [40083,20211], + [40085,4915], + [40087,17256], + [40089,14754], + [40091,7394], + [40093,4051], + [40095,6687], + [40097,18145], + [40099,6484], + [40101,29891], + [40103,5340], + [40105,4910], + [40107,4420], + [40109,357336], + [40111,16537], + [40113,21263], + [40115,14313], + [40117,7606], + [40119,36823], + [40121,19051], + [40123,18124], + [40125,31369], + [40127,4952], + [40129,1902], + [40131,43070], + [40133,9974], + [40135,17481], + [40137,20405], + [40139,8837], + [40141,3356], + [40143,304059], + [40145,35134], + [40147,24203], + [40149,5511], + [40151,4490], + [40153,9919], + [41001,7317], + [41003,45957], + [41005,204119], + [41007,19036], + [41009,23569], + [41011,27968], + [41013,9451], + [41015,9213], + [41017,80559], + [41019,47485], + [41021,973], + [41023,3422], + [41025,3727], + [41027,14329], + [41029,100467], + [41031,9598], + [41033,34489], + [41035,31289], + [41037,3753], + [41039,177473], + [41041,21942], + [41043,56637], + [41045,13373], + [41047,154593], + [41049,5792], + [41051,424717], + [41053,36294], + [41055,920], + [41057,11647], + [41059,37378], + [41061,12458], + [41063,3487], + [41065,13905], + [41067,294384], + [41069,767], + [41071,51404], + [42001,54083], + [42003,643084], + [42005,33635], + [42007,85921], + [42009,24974], + [42011,210158], + [42013,61523], + [42015,32015], + [42017,336338], + [42019,96647], + [42021,66182], + [42023,2510], + [42025,31879], + [42027,77398], + [42029,270047], + [42031,19104], + [42033,38041], + [42035,19180], + [42037,34786], + [42039,41531], + [42041,124438], + [42043,140465], + [42045,286902], + [42047,16866], + [42049,137284], + [42051,59674], + [42053,2034], + [42055,75527], + [42057,7352], + [42059,18191], + [42061,21006], + [42063,44025], + [42065,21791], + [42067,12009], + [42069,107274], + [42071,265997], + [42073,43050], + [42075,69836], + [42077,179493], + [42079,159843], + [42081,61091], + [42083,20113], + [42085,53349], + [42087,20998], + [42089,82214], + [42091,430366], + [42093,9191], + [42095,152641], + [42097,44956], + [42099,24722], + [42101,690922], + [42103,26087], + [42105,7834], + [42107,70052], + [42109,19813], + [42111,36949], + [42113,3039], + [42115,21927], + [42117,21193], + [42119,19063], + [42121,26398], + [42123,20445], + [42125,105890], + [42127,23279], + [42129,185894], + [42131,14330], + [42133,230661], + [44001,26288], + [44003,92724], + [44005,44446], + [44007,326138], + [44009,70460], + [45001,10780], + [45003,73303], + [45005,3279], + [45007,85900], + [45009,6316], + [45011,9203], + [45013,65469], + [45015,85778], + [45017,7092], + [45019,183009], + [45021,23644], + [45023,14411], + [45025,21164], + [45027,13640], + [45029,16662], + [45031,30450], + [45033,13654], + [45035,67006], + [45037,10913], + [45039,10547], + [45041,64430], + [45043,25531], + [45045,224175], + [45047,32039], + [45049,8634], + [45051,132344], + [45053,10993], + [45055,28181], + [45057,34152], + [45059,30350], + [45061,6880], + [45063,134344], + [45065,3632], + [45067,14164], + [45069,10748], + [45071,18577], + [45073,33272], + [45075,40241], + [45077,54730], + [45079,186481], + [45081,8672], + [45083,133260], + [45085,44814], + [45087,12232], + [45089,13427], + [45091,117004], + [46003,1667], + [46005,9484], + [46007,1178], + [46009,3115], + [46011,17871], + [46013,20751], + [46015,2710], + [46017,735], + [46019,5018], + [46021,870], + [46023,4124], + [46025,1944], + [46027,7482], + [46029,15337], + [46031,1533], + [46033,4073], + [46035,11047], + [46037,3045], + [46039,2513], + [46041,2410], + [46043,1751], + [46045,2352], + [46047,3186], + [46049,1170], + [46051,4615], + [46053,2158], + [46055,1109], + [46057,3094], + [46059,1861], + [46061,1799], + [46063,820], + [46065,9961], + [46067,3779], + [46069,784], + [46071,1383], + [46073,1230], + [46075,671], + [46077,2874], + [46079,6186], + [46081,12806], + [46083,26932], + [46085,1905], + [46087,3178], + [46089,1162], + [46091,2496], + [46093,13076], + [46095,862], + [46097,1294], + [46099,99359], + [46101,4124], + [46102,"NA"], + [46103,52983], + [46105,1569], + [46107,1237], + [46109,5030], + [46111,1332], + [46115,3486], + [46117,1915], + [46119,873], + [46121,3369], + [46123,3245], + [46125,4812], + [46127,7644], + [46129,2360], + [46135,11411], + [46137,1059], + [47001,35172], + [47003,20906], + [47005,7132], + [47007,4496], + [47009,61745], + [47011,47447], + [47013,16122], + [47015,6093], + [47017,13684], + [47019,26279], + [47021,20332], + [47023,8531], + [47025,13685], + [47027,3416], + [47029,15778], + [47031,24717], + [47033,7327], + [47035,23832], + [47037,350092], + [47039,5331], + [47041,8223], + [47043,24323], + [47045,17698], + [47047,18773], + [47049,7504], + [47051,19291], + [47053,23852], + [47055,14313], + [47057,10004], + [47059,30708], + [47061,5534], + [47063,28311], + [47065,171726], + [47067,2429], + [47069,10176], + [47071,11456], + [47073,25738], + [47075,8503], + [47077,13586], + [47079,14448], + [47081,10894], + [47083,3568], + [47085,8849], + [47087,4749], + [47089,24314], + [47091,7529], + [47093,233360], + [47095,2198], + [47097,10648], + [47099,19253], + [47101,5255], + [47103,15771], + [47105,22586], + [47107,23065], + [47109,10403], + [47111,10338], + [47113,49066], + [47115,12513], + [47117,14431], + [47119,41313], + [47121,4984], + [47123,19588], + [47125,77267], + [47127,3341], + [47129,8475], + [47131,15287], + [47133,10016], + [47135,3030], + [47137,2434], + [47139,7427], + [47141,34387], + [47143,13854], + [47145,24447], + [47147,34127], + [47149,144110], + [47151,9144], + [47153,6093], + [47155,49713], + [47157,451309], + [47159,8861], + [47161,5657], + [47163,74647], + [47165,84927], + [47167,28855], + [47169,3762], + [47171,7904], + [47173,7846], + [47175,2297], + [47177,17934], + [47179,61291], + [47181,6812], + [47183,16711], + [47185,12485], + [47187,97414], + [47189,60063], + [48001,22194], + [48003,7794], + [48005,38118], + [48007,9815], + [48009,4484], + [48011,1037], + [48013,19891], + [48015,14153], + [48017,3290], + [48019,9179], + [48021,35719], + [48023,1862], + [48025,10591], + [48027,133465], + [48029,829870], + [48031,5420], + [48033,389], + [48035,8408], + [48037,42338], + [48039,158581], + [48041,99772], + [48043,4862], + [48045,722], + [48047,2689], + [48049,16378], + [48051,7764], + [48053,20659], + [48055,16857], + [48057,10602], + [48059,6018], + [48061,165823], + [48063,5679], + [48065,3425], + [48067,13305], + [48069,4091], + [48071,16802], + [48073,22209], + [48075,3084], + [48077,5516], + [48079,1498], + [48081,1536], + [48083,3400], + [48085,438645], + [48087,1307], + [48089,10108], + [48091,54641], + [48093,5946], + [48095,1576], + [48097,20367], + [48099,25663], + [48101,667], + [48103,1919], + [48105,1715], + [48107,3005], + [48109,1018], + [48111,4054], + [48113,1212288], + [48115,5223], + [48117,9633], + [48119,2632], + [48121,379534], + [48123,9475], + [48125,910], + [48127,4913], + [48129,1814], + [48131,5210], + [48133,8421], + [48135,72809], + [48137,991], + [48139,76874], + [48141,346748], + [48143,20688], + [48145,7185], + [48147,15277], + [48149,12510], + [48151,1941], + [48153,3328], + [48155,667], + [48157,308363], + [48159,4756], + [48161,8079], + [48163,7973], + [48165,8508], + [48167,149857], + [48169,2225], + [48171,12447], + [48173,748], + [48175,3377], + [48177,9474], + [48179,9634], + [48181,60176], + [48183,61082], + [48185,11618], + [48187,66766], + [48189,16238], + [48191,1401], + [48193,3880], + [48195,3047], + [48197,1873], + [48199,26253], + [48201,2110507], + [48203,31521], + [48205,2813], + [48207,3039], + [48209,83333], + [48211,2390], + [48213,35053], + [48215,326443], + [48217,15891], + [48219,11360], + [48221,23627], + [48223,16864], + [48225,10660], + [48227,13256], + [48229,1388], + [48231,38438], + [48233,9914], + [48235,877], + [48237,3715], + [48239,7355], + [48241,15035], + [48243,1251], + [48245,115463], + [48247,2330], + [48249,19762], + [48251,72762], + [48253,6138], + [48255,4887], + [48257,51525], + [48259,16921], + [48261,238], + [48263,554], + [48265,21830], + [48267,2234], + [48269,288], + [48271,1271], + [48273,15389], + [48275,1906], + [48277,23383], + [48279,6730], + [48281,9139], + [48283,3136], + [48285,9621], + [48287,8870], + [48289,7158], + [48291,30785], + [48293,9576], + [48295,1743], + [48297,5234], + [48299,8014], + [48301,66], + [48303,145820], + [48305,3084], + [48307,4360], + [48309,113365], + [48311,660], + [48313,4682], + [48315,4423], + [48317,2351], + [48319,1965], + [48321,17794], + [48323,23914], + [48325,20245], + [48327,945], + [48329,76676], + [48331,10409], + [48333,2173], + [48335,2943], + [48337,9602], + [48339,231782], + [48341,11759], + [48343,5814], + [48345,594], + [48347,30628], + [48349,23085], + [48351,6040], + [48353,7352], + [48355,164278], + [48357,5108], + [48359,980], + [48361,39187], + [48363,13481], + [48365,11944], + [48367,57353], + [48369,5292], + [48371,7199], + [48373,17651], + [48375,58757], + [48377,3781], + [48379,5168], + [48381,68124], + [48383,2018], + [48385,1136], + [48387,5493], + [48389,5543], + [48391,3419], + [48393,480], + [48395,7544], + [48397,40616], + [48399,5108], + [48401,24286], + [48403,3462], + [48405,3154], + [48407,11367], + [48409,30231], + [48411,2522], + [48413,1699], + [48415,7407], + [48417,2007], + [48419,11977], + [48421,1578], + [48423,102136], + [48425,4084], + [48427,26168], + [48429,4440], + [48431,682], + [48433,746], + [48435,1947], + [48437,3152], + [48439,950514], + [48441,64678], + [48443,518], + [48445,5853], + [48447,873], + [48449,13719], + [48451,53262], + [48453,594040], + [48455,5719], + [48457,7842], + [48459,18615], + [48461,1571], + [48463,12144], + [48465,20461], + [48467,23741], + [48469,43741], + [48471,23171], + [48473,20344], + [48475,4940], + [48477,15682], + [48479,107892], + [48481,21498], + [48483,2856], + [48485,59026], + [48487,6039], + [48489,7721], + [48491,230895], + [48493,21547], + [48495,3051], + [48497,28152], + [48499,16973], + [48501,4165], + [48503,8593], + [48505,6467], + [48507,4590], + [49001,3044], + [49003,23186], + [49005,56612], + [49007,9547], + [49009,471], + [49011,146629], + [49013,8445], + [49015,5070], + [49017,2962], + [49019,5317], + [49021,19868], + [49023,4595], + [49025,3492], + [49027,6169], + [49029,4245], + [49031,530], + [49033,982], + [49035,546296], + [49037,5954], + [49039,11110], + [49041,9502], + [49043,21205], + [49045,27279], + [49047,15518], + [49049,231181], + [49051,11381], + [49053,55996], + [49055,1430], + [49057,112431], + [50001,21098], + [50003,19961], + [50005,16597], + [50007,95502], + [50009,3059], + [50011,27902], + [50013,4167], + [50015,14552], + [50017,16597], + [50019,14169], + [50021,33287], + [50023,34863], + [50025,24980], + [50027,31373], + [51001,16591], + [51003,52161], + [51005,7908], + [51007,6262], + [51009,16181], + [51011,7262], + [51013,141853], + [51015,37430], + [51017,2576], + [51019,38817], + [51021,2859], + [51023,17729], + [51025,6818], + [51027,8475], + [51029,6594], + [51031,27607], + [51033,14477], + [51035,13629], + [51036,3937], + [51037,5399], + [51041,171539], + [51043,7773], + [51045,2481], + [51047,23397], + [51049,4561], + [51051,5459], + [51053,13643], + [51057,5699], + [51059,620197], + [51061,36128], + [51063,8334], + [51065,13266], + [51067,27679], + [51069,43199], + [51071,8274], + [51073,19550], + [51075,10374], + [51077,7206], + [51079,9792], + [51081,4581], + [51083,16361], + [51085,54957], + [51087,170535], + [51089,22821], + [51091,1460], + [51093,18880], + [51095,32605], + [51097,3664], + [51099,11721], + [51101,8703], + [51103,5590], + [51105,10229], + [51107,181515], + [51109,17943], + [51111,5511], + [51113,7223], + [51115,4244], + [51117,14059], + [51119,5138], + [51121,48374], + [51125,7604], + [51127,10439], + [51131,6364], + [51133,6031], + [51135,6893], + [51137,15788], + [51139,12491], + [51141,8047], + [51143,31169], + [51145,13555], + [51147,10386], + [51149,14530], + [51153,225195], + [51155,16880], + [51157,4003], + [51159,4267], + [51161,49724], + [51163,11010], + [51165,41314], + [51167,11942], + [51169,10156], + [51171,21084], + [51173,13750], + [51175,9441], + [51177,64277], + [51179,65148], + [51181,3760], + [51183,4381], + [51185,18195], + [51187,20119], + [51191,27899], + [51193,9402], + [51195,17257], + [51197,14385], + [51199,31907], + [51510,92505], + [51520,8098], + [51530,3240], + [51540,23247], + [51550,114650], + [51570,8560], + [51580,2663], + [51590,20279], + [51595,2557], + [51600,12712], + [51610,7517], + [51620,3672], + [51630,13068], + [51640,3105], + [51650,66445], + [51660,23788], + [51670,9911], + [51678,2293], + [51680,35762], + [51683,21403], + [51685,8634], + [51690,5902], + [51700,90697], + [51710,112932], + [51720,2113], + [51730,13714], + [51735,6369], + [51740,45777], + [51750,8082], + [51760,107647], + [51770,49488], + [51775,12834], + [51790,12005], + [51800,41913], + [51810,229211], + [51820,10176], + [51830,6745], + [51840,14078], + [53001,8257], + [53003,10051], + [53005,92903], + [53007,41402], + [53009,28488], + [53011,211482], + [53013,1854], + [53015,44774], + [53017,19281], + [53019,2528], + [53021,38700], + [53023,1030], + [53025,42786], + [53027,29705], + [53029,32640], + [53031,12072], + [53033,1108889], + [53035,117324], + [53037,20765], + [53039,10157], + [53041,32542], + [53043,5298], + [53045,23792], + [53047,21338], + [53049,8220], + [53051,4862], + [53053,386867], + [53055,8063], + [53057,57143], + [53059,5083], + [53061,384100], + [53063,230795], + [53065,18296], + [53067,123314], + [53069,1429], + [53071,29623], + [53073,102742], + [53075,22511], + [53077,120326], + [54001,6777], + [54003,51211], + [54005,8680], + [54007,5497], + [54009,10713], + [54011,42919], + [54013,2867], + [54015,3573], + [54017,3325], + [54019,17734], + [54021,2815], + [54023,6190], + [54025,15567], + [54027,9800], + [54029,13894], + [54031,5693], + [54033,31381], + [54035,12018], + [54037,27221], + [54039,91673], + [54041,7171], + [54043,7678], + [54045,12913], + [54047,6671], + [54049,26740], + [54051,14338], + [54053,11051], + [54055,23732], + [54057,12183], + [54059,9201], + [54061,48549], + [54063,5781], + [54065,7588], + [54067,10952], + [54069,21324], + [54071,3648], + [54073,2918], + [54075,3684], + [54077,14635], + [54079,26290], + [54081,33020], + [54083,12083], + [54085,4310], + [54087,5412], + [54089,4693], + [54091,7430], + [54093,3225], + [54095,3601], + [54097,10239], + [54099,16504], + [54101,3632], + [54103,7043], + [54105,2278], + [54107,38647], + [54109,8313], + [55001,9062], + [55003,8310], + [55005,23752], + [55007,7747], + [55009,137593], + [55011,6954], + [55013,7584], + [55015,27521], + [55017,33385], + [55019,17321], + [55021,31790], + [55023,8456], + [55025,295307], + [55027,47633], + [55029,15610], + [55031,23618], + [55033,23373], + [55035,57742], + [55037,2211], + [55039,56213], + [55041,4187], + [55043,27924], + [55045,21131], + [55047,10385], + [55049,13754], + [55051,2756], + [55053,10225], + [55055,46444], + [55057,13713], + [55059,86337], + [55061,11178], + [55063,65559], + [55065,9481], + [55067,10063], + [55069,15332], + [55071,44506], + [55073,72716], + [55075,21527], + [55077,7609], + [55078,1603], + [55079,477614], + [55081,23184], + [55083,21121], + [55085,18897], + [55087,100376], + [55089,47451], + [55091,4100], + [55093,23999], + [55095,24148], + [55097,39010], + [55099,7228], + [55101,100522], + [55103,9676], + [55105,81187], + [55107,6888], + [55109,47520], + [55111,36010], + [55113,8185], + [55115,21776], + [55117,61055], + [55119,11298], + [55121,16199], + [55123,15178], + [55125,10164], + [55127,56264], + [55129,7985], + [55131,75296], + [55133,217776], + [55135,27712], + [55137,11919], + [55139,92403], + [55141,40011], + [56001,21832], + [56003,5741], + [56005,25872], + [56007,8158], + [56009,7659], + [56011,3885], + [56013,21212], + [56015,7641], + [56017,2600], + [56019,4517], + [56021,47167], + [56023,8740], + [56025,41123], + [56027,1395], + [56029,16094], + [56031,4963], + [56033,16062], + [56035,5902], + [56037,23891], + [56039,13637], + [56041,10167], + [56043,4591], + [56045,3966] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2012.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2012.json new file mode 100644 index 0000000..a58d6c5 --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2012.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2012"], + [1001,25740], + [1003,84414], + [1005,9362], + [1007,8798], + [1009,24960], + [1011,4736], + [1013,9088], + [1015,49649], + [1017,15140], + [1019,11268], + [1021,19383], + [1023,4791], + [1025,8374], + [1027,5413], + [1029,5838], + [1031,20612], + [1033,24026], + [1035,4635], + [1037,4445], + [1039,16345], + [1041,6251], + [1043,35568], + [1045,21370], + [1047,16746], + [1049,28833], + [1051,36629], + [1053,14732], + [1055,44232], + [1057,6503], + [1059,13976], + [1061,11274], + [1063,3125], + [1065,6212], + [1067,7030], + [1069,46054], + [1071,23731], + [1073,316511], + [1075,5806], + [1077,43409], + [1079,14391], + [1081,68918], + [1083,38990], + [1085,4081], + [1087,8286], + [1089,170209], + [1091,7650], + [1093,12451], + [1095,40686], + [1097,188626], + [1099,7971], + [1101,107320], + [1103,57410], + [1105,3683], + [1107,7467], + [1109,15017], + [1111,9143], + [1113,24911], + [1115,38516], + [1117,105458], + [1119,5417], + [1121,35013], + [1123,18441], + [1125,95340], + [1127,26574], + [1129,6875], + [1131,2883], + [1133,9607], + [2013,2138], + [2016,4268], + [2020,158380], + [2050,7211], + [2060,481], + [2068,1047], + [2070,2132], + [2090,48197], + [2100,1108], + [2105,1109], + [2110,17904], + [2122,27367], + [2130,7177], + [2150,6717], + [2158,"NA"], + [2164,637], + [2170,43757], + [2180,4178], + [2185,4027], + [2188,3031], + [2195,1878], + [2198,2591], + [2220,4647], + [2230,754], + [2240,3038], + [2261,4894], + [2275,1026], + [2282,288], + [2290,2773], + [4001,22806], + [4003,53898], + [4005,71032], + [4007,20923], + [4009,14472], + [4011,3553], + [4012,8137], + [4013,1895634], + [4015,77570], + [4017,42957], + [4019,462896], + [4021,148689], + [4023,20121], + [4025,92384], + [4027,93806], + [5001,9913], + [5003,9298], + [5005,16373], + [5007,110768], + [5009,16523], + [5011,4371], + [5013,2511], + [5015,12479], + [5017,4062], + [5019,10140], + [5021,6869], + [5023,10390], + [5025,3751], + [5027,10115], + [5029,8704], + [5031,49059], + [5033,27610], + [5035,22103], + [5037,8531], + [5039,3182], + [5041,5930], + [5043,8369], + [5045,59723], + [5047,7669], + [5049,5110], + [5051,41203], + [5053,8425], + [5055,20006], + [5057,10851], + [5059,14485], + [5061,6434], + [5063,16041], + [5065,5163], + [5067,6470], + [5069,32469], + [5071,10807], + [5073,2886], + [5075,7235], + [5077,3521], + [5079,4586], + [5081,5979], + [5083,9627], + [5085,33083], + [5087,6971], + [5089,6608], + [5091,20260], + [5093,20267], + [5095,3270], + [5097,3586], + [5099,4129], + [5101,3628], + [5103,10498], + [5105,4416], + [5107,7970], + [5109,4366], + [5111,10387], + [5113,8701], + [5115,29999], + [5117,3825], + [5119,188484], + [5121,6867], + [5123,9498], + [5125,54388], + [5127,4647], + [5129,3219], + [5131,59025], + [5133,6131], + [5135,6105], + [5137,5052], + [5139,16755], + [5141,6604], + [5143,105383], + [5145,36246], + [5147,3383], + [5149,9266], + [6001,798416], + [6003,544], + [6005,14672], + [6007,100990], + [6009,20201], + [6011,11272], + [6013,535786], + [6015,10496], + [6017,89051], + [6019,440031], + [6021,13148], + [6023,64279], + [6025,79265], + [6027,9557], + [6029,391888], + [6031,58807], + [6033,29509], + [6035,11471], + [6037,4915263], + [6039,62530], + [6041,136911], + [6043,8375], + [6045,40953], + [6047,115016], + [6049,3612], + [6051,8401], + [6053,217796], + [6055,71816], + [6057,48363], + [6059,1562136], + [6061,174919], + [6063,8485], + [6065,987076], + [6067,681281], + [6069,28677], + [6071,892212], + [6073,1540441], + [6075,509444], + [6077,311818], + [6079,137362], + [6081,412056], + [6083,216005], + [6085,958281], + [6087,142063], + [6089,76009], + [6091,1469], + [6093,18876], + [6095,202661], + [6097,246281], + [6099,241965], + [6101,45557], + [6103,25248], + [6105,5330], + [6107,201287], + [6109,22315], + [6111,434681], + [6113,102610], + [6115,28832], + [8001,239471], + [8003,7753], + [8005,322881], + [8007,5736], + [8009,2015], + [8011,1722], + [8013,174313], + [8014,32275], + [8015,8367], + [8017,1010], + [8019,5486], + [8021,3711], + [8023,1603], + [8025,1362], + [8027,1986], + [8029,14406], + [8031,357670], + [8033,949], + [8035,160907], + [8037,32349], + [8039,12692], + [8041,307002], + [8043,15633], + [8045,31490], + [8047,3267], + [8049,8747], + [8051,9832], + [8053,436], + [8055,2634], + [8057,826], + [8059,304298], + [8061,817], + [8063,4229], + [8065,4523], + [8067,29663], + [8069,172883], + [8071,6963], + [8073,2157], + [8075,11067], + [8077,74945], + [8079,444], + [8081,7743], + [8083,12917], + [8085,19836], + [8087,14981], + [8089,8401], + [8091,2085], + [8093,9302], + [8095,2141], + [8097,10911], + [8099,6097], + [8101,74490], + [8103,3091], + [8105,5104], + [8107,14373], + [8109,3055], + [8111,535], + [8113,4856], + [8115,1119], + [8117,19325], + [8119,11912], + [8121,2636], + [8123,136906], + [8125,4884], + [9001,473705], + [9003,471204], + [9005,106126], + [9007,91837], + [9009,456726], + [9011,140123], + [9013,84431], + [9015,63265], + [10001,74273], + [10003,278297], + [10005,93002], + [11001,364989], + [12001,130007], + [12003,11347], + [12005,86694], + [12007,11152], + [12009,262648], + [12011,963563], + [12013,5093], + [12015,65886], + [12017,51550], + [12019,96340], + [12021,152762], + [12023,28041], + [12027,12899], + [12029,5809], + [12031,456398], + [12033,139701], + [12035,42156], + [12037,5051], + [12039,18900], + [12041,6717], + [12043,5701], + [12045,6091], + [12047,5175], + [12049,11844], + [12051,17004], + [12053,66289], + [12055,37385], + [12057,668540], + [12059,7166], + [12061,62012], + [12063,18067], + [12065,5505], + [12067,3485], + [12069,134048], + [12071,292354], + [12073,149342], + [12075,16732], + [12077,2747], + [12079,7999], + [12081,150763], + [12083,130450], + [12085,67147], + [12086,1282458], + [12087,43928], + [12089,35950], + [12091,91453], + [12093,18321], + [12095,653886], + [12097,143550], + [12099,660634], + [12101,208712], + [12103,467029], + [12105,277091], + [12107,28930], + [12109,104055], + [12111,129091], + [12113,72665], + [12115,168019], + [12117,231131], + [12119,26860], + [12121,18342], + [12123,9408], + [12125,5087], + [12127,237385], + [12129,14121], + [12131,26271], + [12133,10064], + [13001,8982], + [13003,3446], + [13005,4557], + [13007,1172], + [13009,18881], + [13011,8591], + [13013,34566], + [13015,47422], + [13017,6183], + [13019,7859], + [13021,71737], + [13023,5282], + [13025,7440], + [13027,6808], + [13029,15153], + [13031,33926], + [13033,9718], + [13035,10375], + [13037,2375], + [13039,21882], + [13043,5187], + [13045,52013], + [13047,32250], + [13049,4980], + [13051,131983], + [13053,2601], + [13055,10642], + [13057,115046], + [13059,58146], + [13061,1009], + [13063,127655], + [13065,2917], + [13067,388649], + [13069,17477], + [13071,21009], + [13073,64708], + [13075,7534], + [13077,65493], + [13079,5831], + [13081,9177], + [13083,8386], + [13085,10859], + [13087,12246], + [13089,370150], + [13091,8152], + [13093,4813], + [13095,40905], + [13097,66984], + [13099,4489], + [13101,1807], + [13103,25958], + [13105,8557], + [13107,9090], + [13109,4804], + [13111,10020], + [13113,53498], + [13115,44808], + [13117,93750], + [13119,9543], + [13121,511185], + [13123,12158], + [13125,1322], + [13127,38791], + [13129,26845], + [13131,10831], + [13133,6420], + [13135,434145], + [13137,18427], + [13139,89115], + [13141,2758], + [13143,12101], + [13145,16275], + [13147,10823], + [13149,5122], + [13151,103207], + [13153,68742], + [13155,3543], + [13157,29412], + [13159,6666], + [13161,6382], + [13163,7085], + [13165,3364], + [13167,4065], + [13169,13879], + [13171,7968], + [13173,3910], + [13175,19799], + [13177,14324], + [13179,27156], + [13181,3538], + [13183,6647], + [13185,52459], + [13187,15178], + [13189,9332], + [13191,6033], + [13193,5173], + [13195,13127], + [13197,3612], + [13199,9031], + [13201,2700], + [13205,9615], + [13207,12821], + [13209,3900], + [13211,8541], + [13213,16406], + [13215,83617], + [13217,48311], + [13219,17068], + [13221,6893], + [13223,74473], + [13225,12548], + [13227,13899], + [13229,8338], + [13231,8422], + [13233,18793], + [13235,4380], + [13237,8292], + [13239,943], + [13241,6939], + [13243,2836], + [13245,88450], + [13247,42138], + [13249,2176], + [13251,5694], + [13253,3254], + [13255,28196], + [13257,11763], + [13259,2320], + [13261,13960], + [13263,2922], + [13265,607], + [13267,9814], + [13269,3116], + [13271,5344], + [13273,3755], + [13275,18487], + [13277,19159], + [13279,12517], + [13281,4440], + [13283,2905], + [13285,35610], + [13287,3460], + [13289,3174], + [13291,9661], + [13293,11994], + [13295,30923], + [13297,41141], + [13299,15485], + [13301,2653], + [13303,8083], + [13305,12611], + [13307,1061], + [13309,1958], + [13311,13570], + [13313,45754], + [13315,2867], + [13317,3841], + [13319,3738], + [13321,9622], + [15001,86114], + [15003,448023], + [15005,"NA"], + [15007,33878], + [15009,79171], + [16001,204201], + [16003,1741], + [16005,41173], + [16007,2880], + [16009,4156], + [16011,22757], + [16013,11717], + [16015,2966], + [16017,18597], + [16019,49090], + [16021,5217], + [16023,1335], + [16025,668], + [16027,86914], + [16029,3970], + [16031,11108], + [16033,424], + [16035,3270], + [16037,2334], + [16039,10670], + [16041,6307], + [16043,6923], + [16045,7608], + [16047,8105], + [16049,6646], + [16051,12188], + [16053,10975], + [16055,68603], + [16057,19619], + [16059,3566], + [16061,1596], + [16063,2697], + [16065,18420], + [16067,10377], + [16069,19866], + [16071,2091], + [16073,5100], + [16075,10835], + [16077,4086], + [16079,5605], + [16081,5311], + [16083,38089], + [16085,4670], + [16087,4783], + [17001,33912], + [17003,2761], + [17005,8284], + [17007,26900], + [17009,2630], + [17011,18220], + [17013,2449], + [17015,8068], + [17017,6629], + [17019,104117], + [17021,16578], + [17023,8038], + [17025,6656], + [17027,20383], + [17029,24862], + [17031,2653326], + [17033,10451], + [17035,5966], + [17037,55613], + [17039,8488], + [17041,9937], + [17043,506425], + [17045,9133], + [17047,3061], + [17049,18532], + [17051,10703], + [17053,6787], + [17055,17414], + [17057,16965], + [17059,2528], + [17061,6487], + [17063,25755], + [17065,3927], + [17067,9282], + [17069,1737], + [17071,3733], + [17073,26179], + [17075,15327], + [17077,29218], + [17079,4943], + [17081,17905], + [17083,11406], + [17085,11891], + [17087,4308], + [17089,267616], + [17091,56653], + [17093,63486], + [17095,24417], + [17097,367964], + [17099,59584], + [17101,6484], + [17103,18247], + [17105,18228], + [17107,13546], + [17109,15025], + [17111,167014], + [17113,94562], + [17115,54313], + [17117,24081], + [17119,135756], + [17121,18683], + [17123,6227], + [17125,7018], + [17127,6579], + [17129,7013], + [17131,8645], + [17133,17954], + [17135,13202], + [17137,17794], + [17139,7395], + [17141,26672], + [17143,96291], + [17145,9236], + [17147,8572], + [17149,7803], + [17151,1893], + [17153,2378], + [17155,3138], + [17157,14622], + [17159,7554], + [17161,75408], + [17163,130479], + [17165,11659], + [17167,107446], + [17169,3631], + [17171,2713], + [17173,10797], + [17175,3005], + [17177,23534], + [17179,71552], + [17181,7587], + [17183,37032], + [17185,5778], + [17187,8939], + [17189,9157], + [17191,8037], + [17193,7284], + [17195,29521], + [17197,356091], + [17199,31881], + [17201,146257], + [17203,20526], + [18001,15884], + [18003,173801], + [18005,41409], + [18007,4550], + [18009,5461], + [18011,30227], + [18013,7323], + [18015,9985], + [18017,17782], + [18019,55405], + [18021,12808], + [18023,16568], + [18025,4791], + [18027,14790], + [18029,24980], + [18031,13583], + [18033,20569], + [18035,54899], + [18037,21583], + [18039,96848], + [18041,9165], + [18043,37784], + [18045,8539], + [18047,10558], + [18049,10083], + [18051,17396], + [18053,32336], + [18055,13811], + [18057,151114], + [18059,35729], + [18061,18557], + [18063,76894], + [18065,21143], + [18067,35916], + [18069,18587], + [18071,20486], + [18073,15968], + [18075,10084], + [18077,15221], + [18079,13111], + [18081,72544], + [18083,18717], + [18085,38740], + [18087,17001], + [18089,228880], + [18091,49698], + [18093,20554], + [18095,57995], + [18097,458381], + [18099,22963], + [18101,5077], + [18103,15634], + [18105,66748], + [18107,18594], + [18109,34688], + [18111,6922], + [18113,22618], + [18115,3181], + [18117,8776], + [18119,9827], + [18121,6990], + [18123,8873], + [18125,6130], + [18127,82373], + [18129,13190], + [18131,6271], + [18133,16338], + [18135,12761], + [18137,13847], + [18139,8377], + [18141,127770], + [18143,10181], + [18145,22318], + [18147,10791], + [18149,10108], + [18151,18914], + [18153,8803], + [18155,4890], + [18157,88449], + [18159,8009], + [18161,3557], + [18163,91825], + [18165,7468], + [18167,50132], + [18169,15693], + [18171,4198], + [18173,30814], + [18175,13174], + [18177,30691], + [18179,13711], + [18181,13028], + [18183,16903], + [19001,4048], + [19003,2183], + [19005,7595], + [19007,5988], + [19009,3216], + [19011,13774], + [19013,71226], + [19015,14571], + [19017,13867], + [19019,11025], + [19021,11227], + [19023,8212], + [19025,4428], + [19027,11337], + [19029,7194], + [19031,10664], + [19033,23723], + [19035,6857], + [19037,6295], + [19039,4610], + [19041,8884], + [19043,10166], + [19045,25080], + [19047,8757], + [19049,39165], + [19051,4091], + [19053,4243], + [19055,10256], + [19057,20092], + [19059,9179], + [19061,54623], + [19063,5714], + [19065,10794], + [19067,8125], + [19069,5812], + [19071,4009], + [19073,5117], + [19075,6652], + [19077,5555], + [19079,7048], + [19081,5981], + [19083,8757], + [19085,7537], + [19087,9621], + [19089,5200], + [19091,5157], + [19093,3773], + [19095,9595], + [19097,10818], + [19099,18543], + [19101,8761], + [19103,80297], + [19105,10676], + [19107,5424], + [19109,8385], + [19111,17480], + [19113,118891], + [19115,5788], + [19117,4184], + [19119,6834], + [19121,8136], + [19123,11638], + [19125,17065], + [19127,19800], + [19129,7264], + [19131,5552], + [19133,4535], + [19135,3979], + [19137,5032], + [19139,21239], + [19141,8041], + [19143,3383], + [19145,6675], + [19147,4757], + [19149,14192], + [19151,4162], + [19153,244144], + [19155,48462], + [19157,10157], + [19159,2538], + [19161,5503], + [19163,86915], + [19165,6992], + [19167,19376], + [19169,53328], + [19171,9089], + [19173,3142], + [19175,6853], + [19177,3799], + [19179,17892], + [19181,25885], + [19183,12150], + [19185,2792], + [19187,19277], + [19189,5116], + [19191,11886], + [19193,54283], + [19195,4221], + [19197,6792], + [20001,6863], + [20003,4300], + [20005,7836], + [20007,2730], + [20009,14963], + [20011,6715], + [20013,5236], + [20015,31996], + [20017,1325], + [20019,1695], + [20021,10571], + [20023,1330], + [20025,1201], + [20027,4246], + [20029,4573], + [20031,4519], + [20033,999], + [20035,17215], + [20037,19284], + [20039,1401], + [20041,10060], + [20043,4392], + [20045,63496], + [20047,1642], + [20049,1348], + [20051,18020], + [20053,3487], + [20055,20154], + [20057,18822], + [20059,13977], + [20061,12807], + [20063,1513], + [20065,1386], + [20067,3987], + [20069,3562], + [20071,884], + [20073,3426], + [20075,1825], + [20077,3107], + [20079,17249], + [20081,2462], + [20083,1111], + [20085,7345], + [20087,10240], + [20089,1449], + [20091,310263], + [20093,2170], + [20095,3768], + [20097,1407], + [20099,10711], + [20101,900], + [20103,34446], + [20105,1847], + [20107,4382], + [20109,1754], + [20111,17227], + [20113,16654], + [20115,6344], + [20117,6084], + [20119,2470], + [20121,16755], + [20123,3868], + [20125,18407], + [20127,3203], + [20129,1655], + [20131,5997], + [20133,6895], + [20135,1626], + [20137,3144], + [20139,8343], + [20141,2172], + [20143,3220], + [20145,3421], + [20147,3012], + [20149,11582], + [20151,5436], + [20153,1569], + [20155,32067], + [20157,2611], + [20159,5403], + [20161,36247], + [20163,2767], + [20165,1891], + [20167,3808], + [20169,30708], + [20171,2775], + [20173,246743], + [20175,10828], + [20177,91978], + [20179,1546], + [20181,3217], + [20183,2215], + [20185,2218], + [20187,1048], + [20189,2886], + [20191,11298], + [20193,4542], + [20195,1509], + [20197,3786], + [20199,872], + [20201,3248], + [20203,1332], + [20205,4188], + [20207,1644], + [20209,74381], + [21001,7826], + [21003,9024], + [21005,11540], + [21007,3881], + [21009,19833], + [21011,4890], + [21013,10269], + [21015,65398], + [21017,9847], + [21019,20080], + [21021,13074], + [21023,3950], + [21025,4538], + [21027,8282], + [21029,39265], + [21031,5411], + [21033,5677], + [21035,18306], + [21037,48813], + [21039,2341], + [21041,5065], + [21043,11492], + [21045,6861], + [21047,26742], + [21049,17416], + [21051,5956], + [21053,4250], + [21055,4159], + [21057,3119], + [21059,48254], + [21061,5033], + [21063,2304], + [21065,5619], + [21067,166267], + [21069,6478], + [21071,13738], + [21073,24555], + [21075,2483], + [21077,3944], + [21079,7752], + [21081,11501], + [21083,16667], + [21085,11312], + [21087,5454], + [21089,15042], + [21091,4150], + [21093,47576], + [21095,9926], + [21097,8901], + [21099,8138], + [21101,22636], + [21103,7700], + [21105,2165], + [21107,21582], + [21109,5177], + [21111,382602], + [21113,24812], + [21115,8597], + [21117,84380], + [21119,5829], + [21121,10555], + [21123,5950], + [21125,24895], + [21127,5636], + [21129,2431], + [21131,3594], + [21133,8582], + [21135,5382], + [21137,10102], + [21139,3973], + [21141,12192], + [21143,3102], + [21145,30912], + [21147,5475], + [21149,4560], + [21151,44628], + [21153,4036], + [21155,9175], + [21157,15369], + [21159,3768], + [21161,7619], + [21163,12631], + [21165,2545], + [21167,10246], + [21169,4426], + [21171,4800], + [21173,12326], + [21175,5221], + [21177,12413], + [21179,21897], + [21181,3535], + [21183,10383], + [21185,29797], + [21187,5750], + [21189,1327], + [21191,7064], + [21193,10957], + [21195,24197], + [21197,5069], + [21199,27305], + [21201,849], + [21203,7190], + [21205,11189], + [21207,7224], + [21209,25810], + [21211,22277], + [21213,8965], + [21215,9263], + [21217,11685], + [21219,5674], + [21221,6034], + [21223,3988], + [21225,7024], + [21227,59961], + [21229,6211], + [21231,7733], + [21233,6252], + [21235,13879], + [21237,2103], + [21239,14127], + [22001,26135], + [22003,9098], + [22005,54849], + [22007,9950], + [22009,16369], + [22011,14413], + [22013,5954], + [22015,57312], + [22017,113533], + [22019,87905], + [22021,4003], + [22023,3226], + [22025,3918], + [22027,7021], + [22029,7827], + [22031,11195], + [22033,222248], + [22035,2190], + [22037,7960], + [22039,12833], + [22041,7696], + [22043,8224], + [22045,32236], + [22047,13892], + [22049,6831], + [22051,212225], + [22053,12975], + [22055,116591], + [22057,45425], + [22059,6737], + [22061,19485], + [22063,62147], + [22065,3891], + [22067,11243], + [22069,16036], + [22071,168791], + [22073,70713], + [22075,10126], + [22077,9883], + [22079,57231], + [22081,3946], + [22083,8666], + [22085,9213], + [22087,17640], + [22089,24715], + [22091,4600], + [22093,9661], + [22095,20513], + [22097,33401], + [22099,24223], + [22101,25413], + [22103,108755], + [22105,53029], + [22107,1815], + [22109,51017], + [22111,9220], + [22113,25807], + [22115,18881], + [22117,16478], + [22119,16084], + [22121,11908], + [22123,4160], + [22125,5131], + [22127,5690], + [23001,56388], + [23003,34192], + [23005,159792], + [23007,15486], + [23009,29970], + [23011,63164], + [23013,20617], + [23015,17256], + [23017,27903], + [23019,79928], + [23021,7880], + [23023,19210], + [23025,24628], + [23027,20684], + [23029,14751], + [23031,110789], + [24001,33847], + [24003,293690], + [24005,440254], + [24009,47706], + [24011,17610], + [24013,93262], + [24015,51885], + [24017,79554], + [24019,16174], + [24021,128605], + [24023,15829], + [24025,135557], + [24027,168214], + [24029,10628], + [24031,540427], + [24033,484964], + [24035,26731], + [24037,54490], + [24039,9747], + [24041,19414], + [24043,77165], + [24045,50517], + [24047,26138], + [24510,297239], + [25001,108251], + [25003,66262], + [25005,285251], + [25007,9328], + [25009,395573], + [25011,39587], + [25013,219020], + [25015,85198], + [25017,831768], + [25019,6386], + [25021,358844], + [25023,260295], + [25025,401379], + [25027,418020], + [26001,3711], + [26003,3433], + [26005,56649], + [26007,13386], + [26009,10001], + [26011,6528], + [26013,3533], + [26015,28950], + [26017,52851], + [26019,8523], + [26021,73289], + [26023,18642], + [26025,62221], + [26027,23748], + [26029,12909], + [26031,10499], + [26033,17105], + [26035,11961], + [26037,38504], + [26039,5368], + [26041,17505], + [26043,12633], + [26045,54878], + [26047,17792], + [26049,181201], + [26051,9926], + [26053,6786], + [26055,46358], + [26057,18575], + [26059,20458], + [26061,16904], + [26063,16389], + [26065,143174], + [26067,28620], + [26069,10148], + [26071,5079], + [26073,34701], + [26075,71562], + [26077,124591], + [26079,7429], + [26081,319697], + [26083,984], + [26085,3661], + [26087,39714], + [26089,10163], + [26091,47498], + [26093,93153], + [26095,2366], + [26097,5187], + [26099,411719], + [26101,10494], + [26103,33986], + [26105,14338], + [26107,18822], + [26109,11755], + [26111,40668], + [26113,6910], + [26115,73606], + [26117,27253], + [26119,3234], + [26121,75633], + [26123,22013], + [26125,616205], + [26127,12824], + [26129,8623], + [26131,2578], + [26133,9968], + [26135,2985], + [26137,11187], + [26139,141570], + [26141,5536], + [26143,8101], + [26145,88770], + [26147,73736], + [26149,27438], + [26151,19300], + [26153,3534], + [26155,33156], + [26157,24683], + [26159,35208], + [26161,181611], + [26163,771845], + [26165,14469], + [27001,6904], + [27003,187260], + [27005,17873], + [27007,22840], + [27009,21197], + [27011,2830], + [27013,38316], + [27015,14817], + [27017,17472], + [27019,52427], + [27021,13852], + [27023,7058], + [27025,28561], + [27027,35023], + [27029,4409], + [27031,3048], + [27033,5947], + [27035,30912], + [27037,228036], + [27039,11339], + [27041,19810], + [27043,7771], + [27045,11274], + [27047,16675], + [27049,26709], + [27051,3337], + [27053,659812], + [27055,10571], + [27057,9540], + [27059,20351], + [27061,22248], + [27063,6206], + [27065,8732], + [27067,23494], + [27069,2563], + [27071,6702], + [27073,3856], + [27075,5828], + [27077,2347], + [27079,15488], + [27081,3422], + [27083,15230], + [27085,19931], + [27087,2478], + [27089,5746], + [27091,10873], + [27093,12736], + [27095,12693], + [27097,17936], + [27099,20661], + [27101,4995], + [27103,19739], + [27105,11289], + [27107,3522], + [27109,82541], + [27111,30777], + [27113,8589], + [27115,14881], + [27117,4906], + [27119,17506], + [27121,5944], + [27123,272944], + [27125,2340], + [27127,8205], + [27129,8426], + [27131,34862], + [27133,5546], + [27135,8537], + [27137,101564], + [27139,75799], + [27141,48620], + [27143,8418], + [27145,86268], + [27147,21570], + [27149,5606], + [27151,5084], + [27153,13033], + [27155,1775], + [27157,11959], + [27159,6229], + [27161,10213], + [27163,133686], + [27165,6285], + [27167,3781], + [27169,29823], + [27171,70288], + [27173,5679], + [28001,12366], + [28003,16001], + [28005,4762], + [28007,7585], + [28009,3290], + [28011,14400], + [28013,6746], + [28015,3676], + [28017,7992], + [28019,3724], + [28021,3530], + [28023,6729], + [28025,8587], + [28027,10217], + [28029,11873], + [28031,8359], + [28033,83109], + [28035,34419], + [28037,3071], + [28039,8823], + [28041,4568], + [28043,9612], + [28045,19597], + [28047,88960], + [28049,115704], + [28051,6618], + [28053,3171], + [28055,471], + [28057,10415], + [28059,63232], + [28061,6893], + [28063,2517], + [28065,4459], + [28067,28735], + [28069,3971], + [28071,23351], + [28073,28145], + [28075,34574], + [28077,4941], + [28079,8405], + [28081,41050], + [28083,11210], + [28085,14412], + [28087,27522], + [28089,50411], + [28091,10334], + [28093,15396], + [28095,16142], + [28097,4544], + [28099,11654], + [28101,9262], + [28103,4211], + [28105,22784], + [28107,14307], + [28109,23776], + [28111,4436], + [28113,15271], + [28115,14081], + [28117,11423], + [28119,2971], + [28121,72785], + [28123,13093], + [28125,1938], + [28127,11285], + [28129,7096], + [28131,6694], + [28133,9485], + [28135,5775], + [28137,12430], + [28139,9038], + [28141,7890], + [28143,4902], + [28145,13548], + [28147,5574], + [28149,23257], + [28151,20027], + [28153,8443], + [28155,4233], + [28157,3263], + [28159,7724], + [28161,5433], + [28163,9844], + [29001,10749], + [29003,9908], + [29005,2879], + [29007,11355], + [29009,15129], + [29011,5544], + [29013,8185], + [29015,7146], + [29017,5724], + [29019,96446], + [29021,46745], + [29023,18688], + [29025,4401], + [29027,21834], + [29029,18967], + [29031,40815], + [29033,4598], + [29035,2547], + [29037,52827], + [29039,5799], + [29041,4033], + [29043,40817], + [29045,3346], + [29047,126525], + [29049,10855], + [29051,39901], + [29053,7814], + [29055,10740], + [29057,3368], + [29059,7110], + [29061,4068], + [29063,5055], + [29065,6010], + [29067,5151], + [29069,12199], + [29071,52013], + [29073,7542], + [29075,3593], + [29077,144032], + [29079,4948], + [29081,3970], + [29083,9849], + [29085,3622], + [29087,2693], + [29089,4844], + [29091,16554], + [29093,3748], + [29095,355862], + [29097,58257], + [29099,115282], + [29101,23079], + [29103,1970], + [29105,15794], + [29107,17249], + [29109,17317], + [29111,5166], + [29113,26361], + [29115,5179], + [29117,7228], + [29119,10186], + [29121,7509], + [29123,5379], + [29125,4152], + [29127,14494], + [29129,1835], + [29131,11373], + [29133,6154], + [29135,7325], + [29137,4060], + [29139,5806], + [29141,7810], + [29143,8134], + [29145,29400], + [29147,11730], + [29149,4052], + [29151,7334], + [29153,3595], + [29155,7109], + [29157,10008], + [29159,19995], + [29161,19677], + [29163,8136], + [29165,52486], + [29167,14083], + [29169,15884], + [29171,2353], + [29173,5631], + [29175,10673], + [29177,11313], + [29179,2268], + [29181,5511], + [29183,205708], + [29185,3918], + [29186,9034], + [29187,26004], + [29189,527539], + [29195,11030], + [29197,1891], + [29199,2347], + [29201,19858], + [29203,3062], + [29205,3126], + [29207,13488], + [29209,13690], + [29211,2780], + [29213,25475], + [29215,9649], + [29217,9622], + [29219,16945], + [29221,9981], + [29223,5329], + [29225,15944], + [29227,1246], + [29229,7588], + [29510,161177], + [30001,4908], + [30003,5531], + [30005,2486], + [30007,2481], + [30009,5331], + [30011,685], + [30013,38376], + [30015,2668], + [30017,6538], + [30019,941], + [30021,4647], + [30023,5189], + [30025,2033], + [30027,5855], + [30029,43332], + [30031,52488], + [30033,768], + [30035,6347], + [30037,390], + [30039,1473], + [30041,8035], + [30043,5601], + [30045,991], + [30047,12437], + [30049,34919], + [30051,1036], + [30053,8210], + [30055,1089], + [30057,4113], + [30059,930], + [30061,1768], + [30063,59139], + [30065,2416], + [30067,8025], + [30069,299], + [30071,2060], + [30073,2940], + [30075,1077], + [30077,3015], + [30079,529], + [30081,18716], + [30083,6714], + [30085,4821], + [30087,4454], + [30089,4795], + [30091,2059], + [30093,17215], + [30095,4954], + [30097,1747], + [30099,2940], + [30101,2501], + [30103,379], + [30105,4024], + [30107,838], + [30109,561], + [30111,78680], + [31001,16887], + [31003,3581], + [31005,230], + [31007,438], + [31009,284], + [31011,3042], + [31013,5977], + [31015,1147], + [31017,1453], + [31019,27306], + [31021,3678], + [31023,4744], + [31025,13313], + [31027,4741], + [31029,2374], + [31031,3482], + [31033,5789], + [31035,3486], + [31037,5664], + [31039,4915], + [31041,6109], + [31043,11197], + [31045,5415], + [31047,13279], + [31049,1192], + [31051,3141], + [31053,19272], + [31055,285676], + [31057,1282], + [31059,3320], + [31061,1644], + [31063,1613], + [31065,2688], + [31067,11179], + [31069,1262], + [31071,1220], + [31073,1145], + [31075,439], + [31077,1299], + [31079,32657], + [31081,4844], + [31083,1878], + [31085,664], + [31087,1359], + [31089,5972], + [31091,438], + [31093,3423], + [31095,4321], + [31097,2193], + [31099,3934], + [31101,4664], + [31103,607], + [31105,2223], + [31107,4791], + [31109,167607], + [31111,19276], + [31113,506], + [31115,392], + [31117,361], + [31119,19209], + [31121,4232], + [31123,2703], + [31125,2099], + [31127,3886], + [31129,2477], + [31131,8512], + [31133,1640], + [31135,1830], + [31137,5049], + [31139,4197], + [31141,18047], + [31143,2993], + [31145,6357], + [31147,4408], + [31149,880], + [31151,7364], + [31153,88075], + [31155,11191], + [31157,19236], + [31159,8957], + [31161,2807], + [31163,1751], + [31165,841], + [31167,3675], + [31169,3008], + [31171,428], + [31173,3146], + [31175,2152], + [31177,11230], + [31179,5727], + [31181,1747], + [31183,523], + [31185,7601], + [32001,11092], + [32003,999472], + [32005,22763], + [32007,29205], + [32009,476], + [32011,1104], + [32013,9096], + [32015,3434], + [32017,2098], + [32019,22495], + [32021,1910], + [32023,16635], + [32027,2606], + [32029,1917], + [32031,221156], + [32033,5014], + [32510,25911], + [33001,32057], + [33003,24673], + [33005,42615], + [33007,16095], + [33009,48731], + [33011,226905], + [33013,81159], + [33015,174766], + [33017,70054], + [33019,24042], + [34001,140844], + [34003,484170], + [34005,236400], + [34007,262892], + [34009,49813], + [34011,71365], + [34013,384068], + [34015,152205], + [34017,360321], + [34019,67526], + [34021,194086], + [34023,431701], + [34025,331636], + [34027,267429], + [34029,268795], + [34031,253746], + [34033,32174], + [34035,175889], + [34037,81238], + [34039,283086], + [34041,58651], + [35001,321012], + [35003,1247], + [35005,26971], + [35006,9290], + [35007,6129], + [35009,21579], + [35011,822], + [35013,93767], + [35015,26831], + [35017,13006], + [35019,1646], + [35021,293], + [35023,2338], + [35025,28325], + [35027,8964], + [35028,8999], + [35029,11461], + [35031,24915], + [35033,2316], + [35035,25049], + [35037,3389], + [35039,16860], + [35041,8344], + [35043,60524], + [35045,55309], + [35047,11103], + [35049,73658], + [35051,3973], + [35053,6819], + [35055,15003], + [35057,5764], + [35059,1872], + [35061,30216], + [36001,160657], + [36003,23691], + [36005,594943], + [36007,94012], + [36009,38308], + [36011,39113], + [36013,61278], + [36015,40553], + [36017,24127], + [36019,37998], + [36021,31681], + [36023,24476], + [36025,21589], + [36027,146383], + [36029,461760], + [36031,18176], + [36033,21796], + [36035,25392], + [36037,30885], + [36039,21547], + [36041,2449], + [36043,30538], + [36045,48426], + [36047,1190125], + [36049,12269], + [36051,32147], + [36053,34620], + [36055,376288], + [36057,23451], + [36059,693607], + [36061,894987], + [36063,105750], + [36065,108562], + [36067,232973], + [36069,56046], + [36071,179621], + [36073,18873], + [36075,57942], + [36077,31460], + [36079,51603], + [36081,1124169], + [36083,83602], + [36085,218237], + [36087,150454], + [36089,48589], + [36091,117525], + [36093,78052], + [36095,15455], + [36097,9032], + [36099,16242], + [36101,45823], + [36103,779400], + [36105,35311], + [36107,25466], + [36109,55074], + [36111,91045], + [36113,33761], + [36115,29899], + [36117,46529], + [36119,477481], + [36121,18902], + [36123,12090], + [37001,78000], + [37003,17674], + [37005,4604], + [37007,11057], + [37009,13186], + [37011,7743], + [37013,21047], + [37015,8668], + [37017,14450], + [37019,47348], + [37021,126437], + [37023,40692], + [37025,91361], + [37027,36895], + [37029,4521], + [37031,31502], + [37033,9961], + [37035,76572], + [37037,31617], + [37039,11423], + [37041,5905], + [37043,4168], + [37045,45749], + [37047,23183], + [37049,41875], + [37051,132432], + [37053,12460], + [37055,20718], + [37057,79611], + [37059,19996], + [37061,26421], + [37063,148700], + [37065,24358], + [37067,176410], + [37069,28165], + [37071,100997], + [37073,5357], + [37075,3576], + [37077,28301], + [37079,9652], + [37081,254739], + [37083,21942], + [37085,49719], + [37087,27515], + [37089,48589], + [37091,9574], + [37093,19831], + [37095,2131], + [37097,79259], + [37099,18073], + [37101,83522], + [37103,4589], + [37105,27094], + [37107,28489], + [37109,39941], + [37111,20596], + [37113,15483], + [37115,9489], + [37117,10431], + [37119,527788], + [37121,6649], + [37123,11554], + [37125,37474], + [37127,46110], + [37129,108852], + [37131,8297], + [37133,63599], + [37135,72076], + [37137,5371], + [37139,18123], + [37141,24880], + [37143,5266], + [37145,18394], + [37147,87721], + [37149,8349], + [37151,68475], + [37153,17929], + [37155,52819], + [37157,43033], + [37159,63310], + [37161,26780], + [37163,29697], + [37165,12462], + [37167,28752], + [37169,22391], + [37171,33651], + [37173,6522], + [37175,13456], + [37177,1583], + [37179,104230], + [37181,18486], + [37183,502454], + [37185,7578], + [37187,4871], + [37189,27059], + [37191,55377], + [37193,30585], + [37195,38327], + [37197,17964], + [37199,7975], + [38001,1112], + [38003,5753], + [38005,2775], + [38007,474], + [38009,3409], + [38011,1918], + [38013,1375], + [38015,46608], + [38017,89610], + [38019,2148], + [38021,2709], + [38023,1787], + [38025,3680], + [38027,1250], + [38029,1648], + [38031,1684], + [38033,981], + [38035,37306], + [38037,1300], + [38039,1225], + [38041,1454], + [38043,1264], + [38045,2277], + [38047,908], + [38049,3284], + [38051,1248], + [38053,6098], + [38055,4755], + [38057,4037], + [38059,15505], + [38061,7412], + [38063,1547], + [38065,891], + [38067,3709], + [38069,1875], + [38071,5827], + [38073,2799], + [38075,1445], + [38077,8565], + [38079,5022], + [38081,2147], + [38083,737], + [38085,1307], + [38087,529], + [38089,18262], + [38091,1049], + [38093,10425], + [38095,1260], + [38097,4532], + [38099,5666], + [38101,33955], + [38103,2228], + [38105,27098], + [39001,10770], + [39003,49937], + [39005,25820], + [39007,46433], + [39009,27585], + [39011,23945], + [39013,31728], + [39015,20144], + [39017,186468], + [39019,13791], + [39021,19372], + [39023,65847], + [39025,102086], + [39027,17282], + [39029,50892], + [39031,16205], + [39033,20305], + [39035,619168], + [39037,26561], + [39039,18986], + [39041,95949], + [39043,38623], + [39045,73311], + [39047,14112], + [39049,630055], + [39051,22419], + [39053,12647], + [39055,48839], + [39057,80619], + [39059,18227], + [39061,401987], + [39063,39785], + [39065,14887], + [39067,6973], + [39069,14117], + [39071,17605], + [39073,13547], + [39075,19745], + [39077,28946], + [39079,13718], + [39081,31258], + [39083,30142], + [39085,124495], + [39087,26501], + [39089,86002], + [39091,22594], + [39093,149175], + [39095,210372], + [39097,20082], + [39099,110705], + [39101,28880], + [39103,93623], + [39105,9502], + [39107,22129], + [39109,52314], + [39111,6492], + [39113,254447], + [39115,6698], + [39117,16894], + [39119,40358], + [39121,4779], + [39123,21991], + [39125,9210], + [39127,16086], + [39129,25692], + [39131,10566], + [39133,87954], + [39135,21470], + [39137,18791], + [39139,55858], + [39141,34037], + [39143,31758], + [39145,31080], + [39147,27788], + [39149,23834], + [39151,187871], + [39153,272305], + [39155,95305], + [39157,44972], + [39159,26329], + [39161,14150], + [39163,5548], + [39165,109019], + [39167,28412], + [39169,59042], + [39171,18853], + [39173,68668], + [39175,12133], + [40001,8503], + [40003,2919], + [40005,5004], + [40007,3129], + [40009,12561], + [40011,4378], + [40013,17629], + [40015,11713], + [40017,63528], + [40019,21939], + [40021,18987], + [40023,5834], + [40025,1292], + [40027,136363], + [40029,2368], + [40031,50862], + [40033,2887], + [40035,6365], + [40037,31618], + [40039,15691], + [40041,17140], + [40043,2383], + [40045,2282], + [40047,29555], + [40049,12526], + [40051,25585], + [40053,2653], + [40055,2076], + [40057,1415], + [40059,1920], + [40061,4624], + [40063,5778], + [40065,11084], + [40067,2605], + [40069,3652], + [40071,20316], + [40073,7704], + [40075,4275], + [40077,4555], + [40079,20119], + [40081,15570], + [40083,20619], + [40085,5116], + [40087,17588], + [40089,14471], + [40091,7432], + [40093,4078], + [40095,6820], + [40097,18499], + [40099,6682], + [40101,30141], + [40103,5497], + [40105,4921], + [40107,4416], + [40109,365892], + [40111,16557], + [40113,21335], + [40115,14573], + [40117,7508], + [40119,37929], + [40121,19047], + [40123,18279], + [40125,32072], + [40127,4866], + [40129,2107], + [40131,43833], + [40133,10003], + [40135,17245], + [40137,20591], + [40139,8991], + [40141,3415], + [40143,310018], + [40145,36015], + [40147,24602], + [40149,5651], + [40151,5075], + [40153,10597], + [41001,7096], + [41003,44962], + [41005,200407], + [41007,18539], + [41009,22920], + [41011,27096], + [41013,9226], + [41015,8951], + [41017,78730], + [41019,45703], + [41021,937], + [41023,3306], + [41025,3516], + [41027,14039], + [41029,98382], + [41031,9588], + [41033,33355], + [41035,29978], + [41037,3627], + [41039,172255], + [41041,21344], + [41043,55287], + [41045,12825], + [41047,150568], + [41049,5642], + [41051,419500], + [41053,35226], + [41055,895], + [41057,11169], + [41059,36674], + [41061,12211], + [41063,3351], + [41065,13801], + [41067,291013], + [41069,781], + [41071,50544], + [42001,54755], + [42003,653215], + [42005,33903], + [42007,86889], + [42009,25078], + [42011,211794], + [42013,61847], + [42015,32637], + [42017,338741], + [42019,97980], + [42021,65981], + [42023,2454], + [42025,32315], + [42027,77565], + [42029,272976], + [42031,19001], + [42033,38232], + [42035,19461], + [42037,35512], + [42039,41984], + [42041,125779], + [42043,141151], + [42045,289577], + [42047,16887], + [42049,137421], + [42051,60256], + [42053,2015], + [42055,76335], + [42057,7441], + [42059,19074], + [42061,20773], + [42063,44757], + [42065,21756], + [42067,12048], + [42069,107640], + [42071,269189], + [42073,43330], + [42075,70907], + [42077,182868], + [42079,160855], + [42081,62752], + [42083,20270], + [42085,53939], + [42087,21130], + [42089,82422], + [42091,435595], + [42093,9444], + [42095,155425], + [42097,45086], + [42099,24658], + [42101,699324], + [42103,26054], + [42105,7929], + [42107,70983], + [42109,19836], + [42111,36584], + [42113,3102], + [42115,22508], + [42117,21727], + [42119,19130], + [42121,26300], + [42123,20588], + [42125,107440], + [42127,23121], + [42129,187624], + [42131,14394], + [42133,233204], + [44001,26195], + [44003,92208], + [44005,44225], + [44007,325779], + [44009,70080], + [45001,10684], + [45003,72956], + [45005,3133], + [45007,85577], + [45009,5800], + [45011,8959], + [45013,65919], + [45015,88403], + [45017,6951], + [45019,186506], + [45021,23751], + [45023,14035], + [45025,21047], + [45027,13282], + [45029,16455], + [45031,30412], + [45033,13203], + [45035,68192], + [45037,10643], + [45039,10392], + [45041,64973], + [45043,24672], + [45045,226950], + [45047,32049], + [45049,8421], + [45051,132681], + [45053,10962], + [45055,28126], + [45057,34350], + [45059,30028], + [45061,6728], + [45063,136586], + [45065,3571], + [45067,13509], + [45069,10799], + [45071,18232], + [45073,33388], + [45075,39379], + [45077,54754], + [45079,189352], + [45081,8595], + [45083,134781], + [45085,44730], + [45087,11963], + [45089,12435], + [45091,118566], + [46003,1683], + [46005,9567], + [46007,1199], + [46009,3036], + [46011,17682], + [46013,20860], + [46015,2648], + [46017,746], + [46019,4974], + [46021,860], + [46023,4056], + [46025,1921], + [46027,7426], + [46029,15486], + [46031,1512], + [46033,4016], + [46035,11204], + [46037,2948], + [46039,2479], + [46041,2414], + [46043,1693], + [46045,2305], + [46047,3121], + [46049,1144], + [46051,4516], + [46053,2130], + [46055,1097], + [46057,3125], + [46059,1832], + [46061,1809], + [46063,807], + [46065,9916], + [46067,3712], + [46069,765], + [46071,1340], + [46073,1216], + [46075,626], + [46077,2971], + [46079,6263], + [46081,12642], + [46083,27813], + [46085,1880], + [46087,3169], + [46089,1144], + [46091,2499], + [46093,13173], + [46095,856], + [46097,1260], + [46099,100905], + [46101,4004], + [46102,"NA"], + [46103,53290], + [46105,1533], + [46107,1210], + [46109,4922], + [46111,1295], + [46115,3397], + [46117,1858], + [46119,880], + [46121,3230], + [46123,3145], + [46125,4730], + [46127,7803], + [46129,2325], + [46135,11568], + [46137,1055], + [47001,34512], + [47003,20297], + [47005,6963], + [47007,4309], + [47009,60433], + [47011,48773], + [47013,15736], + [47015,6029], + [47017,13384], + [47019,25500], + [47021,20176], + [47023,8376], + [47025,13333], + [47027,3321], + [47029,15470], + [47031,24650], + [47033,7215], + [47035,23834], + [47037,353385], + [47039,5214], + [47041,8043], + [47043,24197], + [47045,17486], + [47047,18417], + [47049,7474], + [47051,19475], + [47053,22887], + [47055,14038], + [47057,9686], + [47059,30080], + [47061,5532], + [47063,27603], + [47065,171034], + [47067,2257], + [47069,9999], + [47071,11148], + [47073,25096], + [47075,8229], + [47077,13206], + [47079,14296], + [47081,10652], + [47083,3519], + [47085,8660], + [47087,4588], + [47089,24000], + [47091,7353], + [47093,230959], + [47095,2208], + [47097,10525], + [47099,18710], + [47101,5046], + [47103,15595], + [47105,22335], + [47107,23623], + [47109,9768], + [47111,10139], + [47113,48531], + [47115,12282], + [47117,14300], + [47119,40673], + [47121,5063], + [47123,19478], + [47125,78041], + [47127,3395], + [47129,8325], + [47131,14349], + [47133,9738], + [47135,3115], + [47137,2448], + [47139,7486], + [47141,32924], + [47143,13503], + [47145,23894], + [47147,33744], + [47149,145170], + [47151,8774], + [47153,5960], + [47155,49488], + [47157,446126], + [47159,8670], + [47161,5542], + [47163,72944], + [47165,85031], + [47167,28320], + [47169,3684], + [47171,7710], + [47173,7627], + [47175,2245], + [47177,17498], + [47179,60304], + [47181,6662], + [47183,16946], + [47185,12213], + [47187,99015], + [47189,60691], + [48001,22391], + [48003,8544], + [48005,37870], + [48007,9944], + [48009,4370], + [48011,1027], + [48013,20072], + [48015,14093], + [48017,3183], + [48019,9128], + [48021,35304], + [48023,1866], + [48025,10853], + [48027,134133], + [48029,840497], + [48031,5493], + [48033,419], + [48035,8191], + [48037,41556], + [48039,161209], + [48041,99833], + [48043,4563], + [48045,643], + [48047,2721], + [48049,16071], + [48051,7666], + [48053,20426], + [48055,16844], + [48057,10423], + [48059,5933], + [48061,166314], + [48063,5505], + [48065,3291], + [48067,12827], + [48069,4060], + [48071,17150], + [48073,21979], + [48075,2969], + [48077,5319], + [48079,1447], + [48081,1473], + [48083,3316], + [48085,446733], + [48087,1248], + [48089,10184], + [48091,55918], + [48093,5790], + [48095,1512], + [48097,20693], + [48099,25396], + [48101,666], + [48103,2060], + [48105,1774], + [48107,2911], + [48109,989], + [48111,4021], + [48113,1223343], + [48115,5080], + [48117,9325], + [48119,2625], + [48121,388543], + [48123,9741], + [48125,833], + [48127,5764], + [48129,1710], + [48131,5431], + [48133,8267], + [48135,77060], + [48137,926], + [48139,76794], + [48141,347513], + [48143,20056], + [48145,6917], + [48147,15068], + [48149,12525], + [48151,1908], + [48153,3198], + [48155,622], + [48157,319114], + [48159,4630], + [48161,8062], + [48163,8673], + [48165,8785], + [48167,153148], + [48169,2196], + [48171,12331], + [48173,763], + [48175,3480], + [48177,9457], + [48179,9699], + [48181,60023], + [48183,61643], + [48185,11814], + [48187,68312], + [48189,15861], + [48191,1343], + [48193,3750], + [48195,3055], + [48197,1763], + [48199,25880], + [48201,2156942], + [48203,31972], + [48205,2903], + [48207,2775], + [48209,85818], + [48211,2547], + [48213,34547], + [48215,328096], + [48217,15805], + [48219,11790], + [48221,23783], + [48223,17087], + [48225,10081], + [48227,13403], + [48229,1326], + [48231,38424], + [48233,9828], + [48235,852], + [48237,3804], + [48239,7438], + [48241,14917], + [48243,1215], + [48245,113611], + [48247,2351], + [48249,20652], + [48251,73166], + [48253,5905], + [48255,5288], + [48257,51625], + [48259,17476], + [48261,254], + [48263,553], + [48265,21698], + [48267,2189], + [48269,247], + [48271,1263], + [48273,15418], + [48275,1817], + [48277,22646], + [48279,6466], + [48281,9092], + [48283,3670], + [48285,9482], + [48287,9138], + [48289,6955], + [48291,30881], + [48293,9606], + [48295,1758], + [48297,5768], + [48299,8067], + [48301,67], + [48303,145628], + [48305,2953], + [48307,4402], + [48309,112372], + [48311,745], + [48313,4654], + [48315,4351], + [48317,2416], + [48319,1970], + [48321,17106], + [48323,23373], + [48325,20208], + [48327,972], + [48329,82219], + [48331,10280], + [48333,2101], + [48335,2878], + [48337,9852], + [48339,239219], + [48341,11589], + [48343,5837], + [48345,522], + [48347,29573], + [48349,23250], + [48351,5805], + [48353,7092], + [48355,167030], + [48357,5320], + [48359,951], + [48361,38882], + [48363,13418], + [48365,12322], + [48367,57922], + [48369,5006], + [48371,6993], + [48373,17542], + [48375,58335], + [48377,3827], + [48379,5232], + [48381,68125], + [48383,2078], + [48385,1067], + [48387,5263], + [48389,5345], + [48391,3509], + [48393,472], + [48395,7290], + [48397,41195], + [48399,5061], + [48401,24590], + [48403,3388], + [48405,3027], + [48407,11474], + [48409,30435], + [48411,2295], + [48413,1781], + [48415,8118], + [48417,2214], + [48419,12126], + [48421,1504], + [48423,101770], + [48425,4143], + [48427,26036], + [48429,4384], + [48431,720], + [48433,748], + [48435,2012], + [48437,3050], + [48439,966259], + [48441,64485], + [48443,549], + [48445,5666], + [48447,830], + [48449,13267], + [48451,53790], + [48453,612264], + [48455,5574], + [48457,7580], + [48459,18727], + [48461,1591], + [48463,11952], + [48465,20013], + [48467,23620], + [48469,45250], + [48471,23153], + [48473,20499], + [48475,5356], + [48477,15646], + [48479,109145], + [48481,21437], + [48483,2895], + [48485,58468], + [48487,5924], + [48489,7428], + [48491,237421], + [48493,21732], + [48495,3186], + [48497,28255], + [48499,16735], + [48501,4336], + [48503,8570], + [48505,6819], + [48507,4390], + [49001,2902], + [49003,22948], + [49005,56972], + [49007,9263], + [49009,436], + [49011,148630], + [49013,9150], + [49015,4746], + [49017,2857], + [49019,5409], + [49021,19470], + [49023,4625], + [49025,3462], + [49027,5938], + [49029,4333], + [49031,492], + [49033,946], + [49035,556484], + [49037,5695], + [49039,11253], + [49041,9421], + [49043,21523], + [49045,27746], + [49047,15981], + [49049,238745], + [49051,11651], + [49053,57216], + [49055,1355], + [49057,113321], + [50001,20868], + [50003,19663], + [50005,16137], + [50007,95835], + [50009,2933], + [50011,27854], + [50013,4132], + [50015,14041], + [50017,16450], + [50019,14120], + [50021,32799], + [50023,34630], + [50025,24668], + [50027,30725], + [51001,16419], + [51003,52640], + [51005,7802], + [51007,6219], + [51009,16069], + [51011,7222], + [51013,144012], + [51015,37041], + [51017,2587], + [51019,38326], + [51021,2876], + [51023,17727], + [51025,6732], + [51027,8589], + [51029,6474], + [51031,27088], + [51033,14504], + [51035,13494], + [51036,3854], + [51037,5365], + [51041,172990], + [51043,7737], + [51045,2465], + [51047,23362], + [51049,4528], + [51051,5217], + [51053,13637], + [51057,5742], + [51059,623843], + [51061,36022], + [51063,8378], + [51065,13178], + [51067,27427], + [51069,43479], + [51071,8242], + [51073,19375], + [51075,10281], + [51077,7000], + [51079,9800], + [51081,4468], + [51083,16051], + [51085,55152], + [51087,172595], + [51089,22753], + [51091,1461], + [51093,18766], + [51095,32988], + [51097,3673], + [51099,11735], + [51101,8686], + [51103,5522], + [51105,9794], + [51107,186073], + [51109,17965], + [51111,5385], + [51113,7261], + [51115,4176], + [51117,13540], + [51119,5136], + [51121,49165], + [51125,7465], + [51127,10615], + [51131,6198], + [51133,5893], + [51135,6879], + [51137,15878], + [51139,12202], + [51141,7985], + [51143,30740], + [51145,13559], + [51147,10285], + [51149,14664], + [51153,228830], + [51155,16887], + [51157,3963], + [51159,3926], + [51161,49569], + [51163,10768], + [51165,40874], + [51167,11782], + [51169,10087], + [51171,20834], + [51173,13516], + [51175,9494], + [51177,64141], + [51179,65515], + [51181,3690], + [51183,4277], + [51185,17974], + [51187,20060], + [51191,27772], + [51193,9152], + [51195,16013], + [51197,14125], + [51199,31718], + [51510,93257], + [51520,8003], + [51530,3263], + [51540,23430], + [51550,115188], + [51570,8617], + [51580,2644], + [51590,19971], + [51595,2471], + [51600,12933], + [51610,7728], + [51620,3729], + [51630,13600], + [51640,3058], + [51650,65983], + [51660,24127], + [51670,9742], + [51678,2284], + [51680,35600], + [51683,21926], + [51685,8754], + [51690,5746], + [51700,90033], + [51710,112848], + [51720,1994], + [51730,13623], + [51735,6361], + [51740,45724], + [51750,8109], + [51760,109323], + [51770,49653], + [51775,12915], + [51790,11825], + [51800,41803], + [51810,229035], + [51820,10041], + [51830,6845], + [51840,14246], + [53001,8230], + [53003,9763], + [53005,92041], + [53007,41395], + [53009,28153], + [53011,209404], + [53013,1821], + [53015,44553], + [53017,19262], + [53019,2444], + [53021,39167], + [53023,1020], + [53025,43914], + [53027,28876], + [53029,32528], + [53031,11930], + [53033,1122834], + [53035,116110], + [53037,20583], + [53039,9939], + [53041,32233], + [53043,5245], + [53045,23551], + [53047,21146], + [53049,8193], + [53051,4813], + [53053,386969], + [53055,8105], + [53057,57112], + [53059,5033], + [53061,385500], + [53063,230421], + [53065,18222], + [53067,123207], + [53069,1376], + [53071,29564], + [53073,103136], + [53075,22415], + [53077,121082], + [54001,6728], + [54003,52263], + [54005,8921], + [54007,5411], + [54009,10649], + [54011,43037], + [54013,2843], + [54015,3530], + [54017,3405], + [54019,17576], + [54021,2771], + [54023,6171], + [54025,15490], + [54027,9736], + [54029,13753], + [54031,5570], + [54033,31407], + [54035,12015], + [54037,27507], + [54039,91341], + [54041,7381], + [54043,7706], + [54045,12904], + [54047,6599], + [54049,26833], + [54051,14325], + [54053,10902], + [54055,23431], + [54057,12095], + [54059,8988], + [54061,49695], + [54063,5733], + [54065,7589], + [54067,10832], + [54069,21355], + [54071,3636], + [54073,2878], + [54075,3623], + [54077,14778], + [54079,26373], + [54081,32843], + [54083,12078], + [54085,4382], + [54087,5326], + [54089,4637], + [54091,7562], + [54093,3192], + [54095,3661], + [54097,9986], + [54099,16389], + [54101,3604], + [54103,7262], + [54105,2297], + [54107,38543], + [54109,8379], + [55001,8984], + [55003,8237], + [55005,23711], + [55007,7796], + [55009,137669], + [55011,6639], + [55013,7540], + [55015,27297], + [55017,33264], + [55019,17098], + [55021,31328], + [55023,8302], + [55025,297439], + [55027,47741], + [55029,15765], + [55031,23432], + [55033,23432], + [55035,58258], + [55037,2211], + [55039,56122], + [55041,4142], + [55043,27698], + [55045,20832], + [55047,10314], + [55049,13549], + [55051,2783], + [55053,10315], + [55055,46217], + [55057,13584], + [55059,86975], + [55061,11017], + [55063,66417], + [55065,9399], + [55067,9974], + [55069,15112], + [55071,43693], + [55073,71647], + [55075,21449], + [55077,7580], + [55078,1589], + [55079,476476], + [55081,22787], + [55083,20662], + [55085,19139], + [55087,100334], + [55089,47380], + [55091,4076], + [55093,23896], + [55095,24002], + [55097,38920], + [55099,7049], + [55101,100430], + [55103,9709], + [55105,81437], + [55107,6782], + [55109,47486], + [55111,35638], + [55113,8278], + [55115,21622], + [55117,60309], + [55119,11080], + [55121,16367], + [55123,15043], + [55125,10101], + [55127,56035], + [55129,8089], + [55131,75076], + [55133,217595], + [55135,27389], + [55137,12020], + [55139,92511], + [55141,39717], + [56001,20736], + [56003,5637], + [56005,26119], + [56007,8215], + [56009,7976], + [56011,3814], + [56013,21271], + [56015,7511], + [56017,2578], + [56019,4472], + [56021,47711], + [56023,8274], + [56025,42388], + [56027,1381], + [56029,16262], + [56031,4787], + [56033,15903], + [56035,5572], + [56037,24138], + [56039,13805], + [56041,10263], + [56043,4487], + [56045,3972] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2013.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2013.json new file mode 100644 index 0000000..3e86ea8 --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2013.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2013", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2013"], + [1001,25810], + [1003,85280], + [1005,9099], + [1007,8705], + [1009,24887], + [1011,4778], + [1013,9147], + [1015,48405], + [1017,15275], + [1019,11403], + [1021,19359], + [1023,4703], + [1025,8285], + [1027,5393], + [1029,5830], + [1031,20516], + [1033,23896], + [1035,4695], + [1037,4452], + [1039,16066], + [1041,6311], + [1043,35783], + [1045,20750], + [1047,16293], + [1049,29033], + [1051,36930], + [1053,14292], + [1055,43862], + [1057,6406], + [1059,13678], + [1061,11044], + [1063,2997], + [1065,6208], + [1067,6954], + [1069,45711], + [1071,23687], + [1073,315405], + [1075,5802], + [1077,43150], + [1079,14282], + [1081,70523], + [1083,39435], + [1085,4009], + [1087,8414], + [1089,171363], + [1091,7634], + [1093,12487], + [1095,40614], + [1097,187046], + [1099,7766], + [1101,106360], + [1103,57001], + [1105,3566], + [1107,7420], + [1109,14924], + [1111,9212], + [1113,25018], + [1115,38835], + [1117,107004], + [1119,5463], + [1121,35771], + [1123,18399], + [1125,95678], + [1127,26364], + [1129,6714], + [1131,2780], + [1133,9644], + [2013,2217], + [2016,4272], + [2020,158401], + [2050,7424], + [2060,491], + [2068,1078], + [2070,2134], + [2090,47286], + [2100,1142], + [2105,1124], + [2110,17589], + [2122,27831], + [2130,7168], + [2150,6594], + [2158,"NA"], + [2164,638], + [2170,43925], + [2180,4142], + [2185,4072], + [2188,3068], + [2195,1659], + [2198,2811], + [2220,4625], + [2230,794], + [2240,3013], + [2261,4934], + [2275,1059], + [2282,285], + [2290,2736], + [4001,21829], + [4003,51308], + [4005,70877], + [4007,20901], + [4009,14276], + [4011,4580], + [4012,8028], + [4013,1907171], + [4015,76838], + [4017,41925], + [4019,456994], + [4021,148275], + [4023,20111], + [4025,91587], + [4027,94729], + [5001,9589], + [5003,8923], + [5005,16067], + [5007,111857], + [5009,16048], + [5011,4127], + [5013,2424], + [5015,12284], + [5017,3843], + [5019,9923], + [5021,6530], + [5023,10028], + [5025,3600], + [5027,9679], + [5029,8647], + [5031,49333], + [5033,27056], + [5035,21541], + [5037,8207], + [5039,2934], + [5041,5644], + [5043,8169], + [5045,59300], + [5047,7423], + [5049,4918], + [5051,40834], + [5053,8273], + [5055,19420], + [5057,10096], + [5059,14111], + [5061,6235], + [5063,15805], + [5065,5002], + [5067,6276], + [5069,31027], + [5071,10564], + [5073,2743], + [5075,7149], + [5077,3313], + [5079,4354], + [5081,5708], + [5083,9248], + [5085,32797], + [5087,6857], + [5089,6514], + [5091,19556], + [5093,19000], + [5095,3121], + [5097,3418], + [5099,3779], + [5101,3490], + [5103,10253], + [5105,4364], + [5107,7595], + [5109,4202], + [5111,10147], + [5113,8455], + [5115,29650], + [5117,3803], + [5119,186725], + [5121,6692], + [5123,9173], + [5125,54784], + [5127,4591], + [5129,3125], + [5131,58153], + [5133,5926], + [5135,6019], + [5137,4803], + [5139,16600], + [5141,6494], + [5143,106852], + [5145,35094], + [5147,3237], + [5149,9065], + [6001,802813], + [6003,526], + [6005,14449], + [6007,101748], + [6009,20255], + [6011,11292], + [6013,538002], + [6015,10330], + [6017,88598], + [6019,437908], + [6021,12990], + [6023,63055], + [6025,78271], + [6027,9390], + [6029,393440], + [6031,58198], + [6033,29259], + [6035,11005], + [6037,4967167], + [6039,62263], + [6041,138367], + [6043,8229], + [6045,40837], + [6047,114628], + [6049,3503], + [6051,8368], + [6053,216380], + [6055,72809], + [6057,48169], + [6059,1565334], + [6061,175833], + [6063,8256], + [6065,996411], + [6067,680241], + [6069,28904], + [6071,896673], + [6073,1543189], + [6075,516300], + [6077,313101], + [6079,138258], + [6081,418085], + [6083,217331], + [6085,971862], + [6087,142067], + [6089,75285], + [6091,1452], + [6093,18293], + [6095,203055], + [6097,249962], + [6099,240987], + [6101,44792], + [6103,25086], + [6105,5192], + [6107,201053], + [6109,21749], + [6111,433914], + [6113,101835], + [6115,28250], + [8001,241765], + [8003,7562], + [8005,326280], + [8007,5699], + [8009,1895], + [8011,1646], + [8013,174782], + [8014,32776], + [8015,8301], + [8017,969], + [8019,5440], + [8021,3610], + [8023,1596], + [8025,1322], + [8027,1919], + [8029,13852], + [8031,362752], + [8033,1014], + [8035,164441], + [8037,31874], + [8039,12693], + [8041,306761], + [8043,14946], + [8045,30944], + [8047,3314], + [8049,8769], + [8051,9635], + [8053,432], + [8055,2541], + [8057,793], + [8059,305200], + [8061,764], + [8063,4081], + [8065,4440], + [8067,29559], + [8069,174165], + [8071,6734], + [8073,2105], + [8075,10798], + [8077,73542], + [8079,425], + [8081,7535], + [8083,12713], + [8085,19297], + [8087,14659], + [8089,8207], + [8091,2128], + [8093,9252], + [8095,2124], + [8097,10782], + [8099,5857], + [8101,73335], + [8103,3072], + [8105,4878], + [8107,14494], + [8109,2953], + [8111,477], + [8113,4777], + [8115,1090], + [8117,19350], + [8119,11712], + [8121,2549], + [8123,139047], + [8125,4736], + [9001,468896], + [9003,465640], + [9005,104499], + [9007,90808], + [9009,450812], + [9011,137276], + [9013,83155], + [9015,62255], + [10001,73816], + [10003,276662], + [10005,92251], + [11001,374126], + [12001,129435], + [12003,11270], + [12005,86420], + [12007,10985], + [12009,258685], + [12011,974428], + [12013,4916], + [12015,66196], + [12017,49374], + [12019,96943], + [12021,155575], + [12023,27867], + [12027,13133], + [12029,5846], + [12031,457588], + [12033,138979], + [12035,44020], + [12037,4992], + [12039,18866], + [12041,6623], + [12043,5468], + [12045,6162], + [12047,4633], + [12049,11052], + [12051,16651], + [12053,66338], + [12055,36128], + [12057,673420], + [12059,7012], + [12061,61499], + [12063,17779], + [12065,5469], + [12067,3501], + [12069,135456], + [12071,299129], + [12073,148268], + [12075,16335], + [12077,2844], + [12079,7910], + [12081,155326], + [12083,131043], + [12085,67497], + [12086,1291199], + [12087,44317], + [12089,36175], + [12091,92170], + [12093,18103], + [12095,663087], + [12097,147899], + [12099,672215], + [12101,210396], + [12103,470232], + [12105,278708], + [12107,28211], + [12109,107375], + [12111,129208], + [12113,73045], + [12115,170746], + [12117,232955], + [12119,27572], + [12121,18077], + [12123,9484], + [12125,4984], + [12127,235627], + [12129,14078], + [12131,26975], + [12133,9853], + [13001,8673], + [13003,3485], + [13005,4628], + [13007,1129], + [13009,18527], + [13011,7995], + [13013,34681], + [13015,47053], + [13017,5775], + [13019,7410], + [13021,69888], + [13023,4788], + [13025,7036], + [13027,6682], + [13029,15417], + [13031,34177], + [13033,9484], + [13035,10197], + [13037,2105], + [13039,21579], + [13043,5102], + [13045,51854], + [13047,31646], + [13049,4919], + [13051,131360], + [13053,2461], + [13055,10537], + [13057,115674], + [13059,57878], + [13061,955], + [13063,125018], + [13065,2830], + [13067,388813], + [13069,17509], + [13071,20328], + [13073,65565], + [13075,7437], + [13077,65810], + [13079,5688], + [13081,9674], + [13083,8127], + [13085,10782], + [13087,11575], + [13089,368650], + [13091,7781], + [13093,4515], + [13095,39714], + [13097,67309], + [13099,4375], + [13101,1780], + [13103,26177], + [13105,8368], + [13107,8845], + [13109,4727], + [13111,9762], + [13113,53405], + [13115,43769], + [13117,96487], + [13119,9331], + [13121,508273], + [13123,11907], + [13125,1289], + [13127,38055], + [13129,26195], + [13131,10482], + [13133,6350], + [13135,438240], + [13137,19316], + [13139,89494], + [13141,2641], + [13143,11968], + [13145,15810], + [13147,10498], + [13149,5010], + [13151,103433], + [13153,67462], + [13155,3371], + [13157,29599], + [13159,6514], + [13161,6383], + [13163,6841], + [13165,3324], + [13167,4000], + [13169,13610], + [13171,7822], + [13173,3844], + [13175,19422], + [13177,14297], + [13179,26201], + [13181,3451], + [13183,6697], + [13185,51098], + [13187,15140], + [13189,9079], + [13191,5931], + [13193,4964], + [13195,12909], + [13197,3453], + [13199,8815], + [13201,2655], + [13205,9016], + [13207,12768], + [13209,4049], + [13211,8348], + [13213,15887], + [13215,83129], + [13217,48066], + [13219,17095], + [13221,6739], + [13223,74530], + [13225,11890], + [13227,13809], + [13229,8159], + [13231,8302], + [13233,18507], + [13235,4197], + [13237,8143], + [13239,902], + [13241,6822], + [13243,2790], + [13245,86714], + [13247,42178], + [13249,2131], + [13251,5563], + [13253,3138], + [13255,27777], + [13257,11511], + [13259,2287], + [13261,13416], + [13263,2861], + [13265,590], + [13267,9561], + [13269,3173], + [13271,5295], + [13273,3665], + [13275,17803], + [13277,18694], + [13279,12790], + [13281,4159], + [13283,2828], + [13285,36163], + [13287,3336], + [13289,3122], + [13291,9329], + [13293,11923], + [13295,30158], + [13297,41052], + [13299,15098], + [13301,2728], + [13303,7688], + [13305,12292], + [13307,1036], + [13309,1894], + [13311,13791], + [13313,44658], + [13315,2819], + [13317,3738], + [13319,3717], + [13321,9246], + [15001,86180], + [15003,451490], + [15005,"NA"], + [15007,34000], + [15009,79886], + [16001,206392], + [16003,1707], + [16005,41377], + [16007,2881], + [16009,3987], + [16011,22282], + [16013,11577], + [16015,2919], + [16017,18264], + [16019,48915], + [16021,4903], + [16023,1295], + [16025,633], + [16027,87675], + [16029,3895], + [16031,11109], + [16033,424], + [16035,3185], + [16037,2207], + [16039,10774], + [16041,6259], + [16043,6909], + [16045,7493], + [16047,8046], + [16049,6578], + [16051,12132], + [16053,10943], + [16055,69195], + [16057,19405], + [16059,3434], + [16061,1611], + [16063,2645], + [16065,18431], + [16067,10374], + [16069,20205], + [16071,2093], + [16073,5116], + [16075,10808], + [16077,3977], + [16079,5488], + [16081,5450], + [16083,38544], + [16085,4538], + [16087,4760], + [17001,32956], + [17003,2690], + [17005,8035], + [17007,26424], + [17009,2614], + [17011,17732], + [17013,2416], + [17015,7880], + [17017,6455], + [17019,103064], + [17021,16052], + [17023,7942], + [17025,6318], + [17027,19947], + [17029,24416], + [17031,2671904], + [17033,9964], + [17035,5818], + [17037,54783], + [17039,8149], + [17041,9781], + [17043,510632], + [17045,9033], + [17047,2869], + [17049,18070], + [17051,10132], + [17053,6554], + [17055,16924], + [17057,16215], + [17059,2480], + [17061,6318], + [17063,25906], + [17065,4087], + [17067,8897], + [17069,1734], + [17071,3671], + [17073,25415], + [17075,15025], + [17077,28532], + [17079,4729], + [17081,17832], + [17083,11152], + [17085,11593], + [17087,4287], + [17089,264804], + [17091,56153], + [17093,64445], + [17095,23673], + [17097,364318], + [17099,58114], + [17101,6328], + [17103,18094], + [17105,17691], + [17107,13094], + [17109,14635], + [17111,166937], + [17113,92348], + [17115,52457], + [17117,23472], + [17119,133228], + [17121,18113], + [17123,5907], + [17125,6735], + [17127,6407], + [17129,6730], + [17131,8396], + [17133,17731], + [17135,12603], + [17137,17403], + [17139,7095], + [17141,25787], + [17143,93532], + [17145,9023], + [17147,8377], + [17149,7692], + [17151,1831], + [17153,2217], + [17155,3054], + [17157,14378], + [17159,7372], + [17161,73581], + [17163,127785], + [17165,11280], + [17167,103979], + [17169,3476], + [17171,2606], + [17173,10297], + [17175,2885], + [17177,22740], + [17179,69103], + [17181,7414], + [17183,35948], + [17185,5642], + [17187,8823], + [17189,8920], + [17191,7883], + [17193,7029], + [17195,29388], + [17197,358406], + [17199,31482], + [17201,143275], + [17203,19933], + [18001,15888], + [18003,174131], + [18005,41587], + [18007,4462], + [18009,5440], + [18011,31079], + [18013,7317], + [18015,9906], + [18017,17672], + [18019,56230], + [18021,12582], + [18023,16421], + [18025,4841], + [18027,14869], + [18029,25174], + [18031,13861], + [18033,20941], + [18035,54167], + [18037,21629], + [18039,98970], + [18041,9023], + [18043,38502], + [18045,8320], + [18047,10769], + [18049,9884], + [18051,18014], + [18053,32463], + [18055,13758], + [18057,155749], + [18059,36065], + [18061,18704], + [18063,78649], + [18065,21311], + [18067,36412], + [18069,18520], + [18071,20848], + [18073,15937], + [18075,10047], + [18077,15307], + [18079,13033], + [18081,73664], + [18083,18626], + [18085,39729], + [18087,17610], + [18089,229941], + [18091,48938], + [18093,20657], + [18095,58069], + [18097,463352], + [18099,23096], + [18101,4950], + [18103,15606], + [18105,66654], + [18107,18400], + [18109,34826], + [18111,6909], + [18113,22617], + [18115,3165], + [18117,8755], + [18119,9638], + [18121,6931], + [18123,8931], + [18125,6261], + [18127,83161], + [18129,12946], + [18131,6117], + [18133,16159], + [18135,12576], + [18137,13634], + [18139,8335], + [18141,127097], + [18143,10239], + [18145,22345], + [18147,10690], + [18149,10213], + [18151,19319], + [18153,8705], + [18155,4883], + [18157,89630], + [18159,7958], + [18161,3519], + [18163,90899], + [18165,7324], + [18167,49522], + [18169,15454], + [18171,4152], + [18173,30710], + [18175,13142], + [18177,30535], + [18179,13650], + [18181,12931], + [18183,16760], + [19001,4074], + [19003,2151], + [19005,7654], + [19007,5927], + [19009,3238], + [19011,13725], + [19013,71758], + [19015,14884], + [19017,14001], + [19019,11168], + [19021,11310], + [19023,8263], + [19025,4361], + [19027,11272], + [19029,7291], + [19031,10814], + [19033,23338], + [19035,6841], + [19037,6367], + [19039,4586], + [19041,8815], + [19043,10076], + [19045,24911], + [19047,8770], + [19049,40906], + [19051,4121], + [19053,4302], + [19055,10390], + [19057,20499], + [19059,9337], + [19061,55063], + [19063,5685], + [19065,10669], + [19067,8274], + [19069,5915], + [19071,4128], + [19073,5125], + [19075,6601], + [19077,5533], + [19079,7040], + [19081,6210], + [19083,8698], + [19085,7509], + [19087,9550], + [19089,5231], + [19091,5217], + [19093,3814], + [19095,9928], + [19097,10847], + [19099,19057], + [19101,8927], + [19103,82752], + [19105,10734], + [19107,5478], + [19109,8475], + [19111,17128], + [19113,119688], + [19115,5851], + [19117,4246], + [19119,6854], + [19121,8092], + [19123,11653], + [19125,17322], + [19127,19801], + [19129,7327], + [19131,5509], + [19133,4625], + [19135,4026], + [19137,5123], + [19139,21699], + [19141,8043], + [19143,3410], + [19145,6555], + [19147,4777], + [19149,14492], + [19151,4193], + [19153,250429], + [19155,48637], + [19157,10345], + [19159,2515], + [19161,5516], + [19163,87786], + [19165,6942], + [19167,19570], + [19169,54763], + [19171,9108], + [19173,3166], + [19175,6897], + [19177,3834], + [19179,18136], + [19181,26344], + [19183,12275], + [19185,2850], + [19187,19757], + [19189,5167], + [19191,11893], + [19193,55223], + [19195,4185], + [19197,6846], + [20001,6890], + [20003,4238], + [20005,7777], + [20007,2761], + [20009,15097], + [20011,6868], + [20013,5455], + [20015,31823], + [20017,1250], + [20019,1620], + [20021,10498], + [20023,1310], + [20025,1188], + [20027,4194], + [20029,4452], + [20031,4943], + [20033,1033], + [20035,17163], + [20037,19282], + [20039,1361], + [20041,9859], + [20043,4337], + [20045,63535], + [20047,1607], + [20049,1323], + [20051,18044], + [20053,3447], + [20055,19980], + [20057,18629], + [20059,13966], + [20061,12663], + [20063,1488], + [20065,1351], + [20067,3991], + [20069,3487], + [20071,908], + [20073,3358], + [20075,1715], + [20077,3104], + [20079,17110], + [20081,2389], + [20083,1116], + [20085,7286], + [20087,10187], + [20089,1422], + [20091,314173], + [20093,2099], + [20095,3716], + [20097,1422], + [20099,10728], + [20101,883], + [20103,34597], + [20105,1778], + [20107,4334], + [20109,1742], + [20111,16426], + [20113,16579], + [20115,6210], + [20117,6042], + [20119,2351], + [20121,16783], + [20123,3877], + [20125,17835], + [20127,3100], + [20129,1593], + [20131,5823], + [20133,6733], + [20135,1602], + [20137,3085], + [20139,8278], + [20141,2121], + [20143,3238], + [20145,3414], + [20147,2965], + [20149,11923], + [20151,5439], + [20153,1549], + [20155,31588], + [20157,2649], + [20159,5442], + [20161,36571], + [20163,2779], + [20165,1810], + [20167,3849], + [20169,31098], + [20171,2838], + [20173,246243], + [20175,11082], + [20177,92035], + [20179,1498], + [20181,3128], + [20183,2157], + [20185,2216], + [20187,1045], + [20189,3314], + [20191,11144], + [20193,4465], + [20195,1491], + [20197,3769], + [20199,852], + [20201,3127], + [20203,1288], + [20205,4110], + [20207,1627], + [20209,74775], + [21001,7559], + [21003,8950], + [21005,11531], + [21007,3825], + [21009,19575], + [21011,4828], + [21013,9866], + [21015,66021], + [21017,9824], + [21019,19704], + [21021,12813], + [21023,3932], + [21025,4484], + [21027,8243], + [21029,39671], + [21031,5375], + [21033,5632], + [21035,18141], + [21037,48752], + [21039,2375], + [21041,5167], + [21043,11034], + [21045,6813], + [21047,26605], + [21049,17266], + [21051,5752], + [21053,4113], + [21055,4099], + [21057,3038], + [21059,47636], + [21061,4996], + [21063,2255], + [21065,5536], + [21067,168417], + [21069,6521], + [21071,13134], + [21073,24573], + [21075,2387], + [21077,3953], + [21079,7745], + [21081,11504], + [21083,16479], + [21085,11242], + [21087,5320], + [21089,14793], + [21091,4099], + [21093,47819], + [21095,9510], + [21097,8745], + [21099,8057], + [21101,22130], + [21103,7761], + [21105,2160], + [21107,21504], + [21109,4834], + [21111,385274], + [21113,25084], + [21115,8363], + [21117,85069], + [21119,5589], + [21121,10526], + [21123,5889], + [21125,24642], + [21127,5578], + [21129,2371], + [21131,3495], + [21133,8047], + [21135,5293], + [21137,9918], + [21139,3887], + [21141,12134], + [21143,3092], + [21145,30282], + [21147,5342], + [21149,4479], + [21151,45747], + [21153,4002], + [21155,9297], + [21157,15323], + [21159,3641], + [21161,7792], + [21163,12534], + [21165,2489], + [21167,10190], + [21169,4333], + [21171,4743], + [21173,12138], + [21175,5057], + [21177,12963], + [21179,21683], + [21181,3530], + [21183,9901], + [21185,30308], + [21187,5682], + [21189,1291], + [21191,7016], + [21193,10407], + [21195,23294], + [21197,5057], + [21199,27242], + [21201,849], + [21203,7084], + [21205,10929], + [21207,7029], + [21209,26264], + [21211,22623], + [21213,8854], + [21215,9341], + [21217,11389], + [21219,5632], + [21221,6046], + [21223,3967], + [21225,6856], + [21227,60475], + [21229,6139], + [21231,7461], + [21233,6182], + [21235,13850], + [21237,2110], + [21239,14249], + [22001,26330], + [22003,8745], + [22005,56781], + [22007,9912], + [22009,16000], + [22011,14445], + [22013,5947], + [22015,56863], + [22017,110922], + [22019,89356], + [22021,3958], + [22023,3313], + [22025,3900], + [22027,6525], + [22029,7806], + [22031,11013], + [22033,225959], + [22035,2272], + [22037,7954], + [22039,12863], + [22041,7702], + [22043,8147], + [22045,32283], + [22047,14039], + [22049,7025], + [22051,213643], + [22053,13163], + [22055,118870], + [22057,46823], + [22059,6973], + [22061,20549], + [22063,64070], + [22065,3959], + [22067,11117], + [22069,16827], + [22071,173465], + [22073,70977], + [22075,10057], + [22077,9910], + [22079,57207], + [22081,3858], + [22083,8663], + [22085,9190], + [22087,18518], + [22089,24931], + [22091,4574], + [22093,9680], + [22095,20104], + [22097,33711], + [22099,24303], + [22101,24985], + [22103,111065], + [22105,52934], + [22107,1767], + [22109,53032], + [22111,9166], + [22113,26113], + [22115,17876], + [22117,16423], + [22119,15713], + [22121,12294], + [22123,4247], + [22125,5228], + [22127,5377], + [23001,56466], + [23003,33869], + [23005,160923], + [23007,15395], + [23009,30101], + [23011,63868], + [23013,20785], + [23015,17367], + [23017,27768], + [23019,80082], + [23021,7894], + [23023,19124], + [23025,24811], + [23027,21009], + [23029,14636], + [23031,111315], + [24001,33624], + [24003,296541], + [24005,442215], + [24009,47759], + [24011,17683], + [24013,93057], + [24015,52245], + [24017,80254], + [24019,15957], + [24021,128453], + [24023,15748], + [24025,135688], + [24027,171319], + [24029,10347], + [24031,543124], + [24033,486011], + [24035,26466], + [24037,54260], + [24039,9582], + [24041,19162], + [24043,77219], + [24045,50161], + [24047,25920], + [24510,296564], + [25001,108455], + [25003,65690], + [25005,286403], + [25007,9403], + [25009,399415], + [25011,39296], + [25013,220022], + [25015,85354], + [25017,839644], + [25019,6592], + [25021,362470], + [25023,262695], + [25025,406849], + [25027,420544], + [26001,3794], + [26003,3373], + [26005,57933], + [26007,13367], + [26009,9975], + [26011,6485], + [26013,3540], + [26015,29242], + [26017,53013], + [26019,8592], + [26021,72420], + [26023,19007], + [26025,62761], + [26027,23514], + [26029,12991], + [26031,10497], + [26033,16987], + [26035,11870], + [26037,39008], + [26039,5375], + [26041,17484], + [26043,12611], + [26045,55291], + [26047,18113], + [26049,183792], + [26051,10011], + [26053,6708], + [26055,47035], + [26057,18419], + [26059,20505], + [26061,16824], + [26063,16323], + [26065,144121], + [26067,28765], + [26069,10188], + [26071,5068], + [26073,34863], + [26075,72095], + [26077,124901], + [26079,7557], + [26081,326607], + [26083,986], + [26085,3619], + [26087,40283], + [26089,10259], + [26091,47581], + [26093,94808], + [26095,2397], + [26097,5238], + [26099,420290], + [26101,10484], + [26103,33926], + [26105,14467], + [26107,18704], + [26109,11748], + [26111,40777], + [26113,6937], + [26115,74365], + [26117,27452], + [26119,3198], + [26121,76165], + [26123,22019], + [26125,628635], + [26127,12719], + [26129,8599], + [26131,2445], + [26133,10015], + [26135,2959], + [26137,11213], + [26139,144633], + [26141,5459], + [26143,8077], + [26145,88844], + [26147,74581], + [26149,28150], + [26151,19369], + [26153,3558], + [26155,33046], + [26157,25033], + [26159,34980], + [26161,183727], + [26163,776560], + [26165,14622], + [27001,6802], + [27003,188370], + [27005,17969], + [27007,23024], + [27009,21437], + [27011,2557], + [27013,38620], + [27015,14524], + [27017,17509], + [27019,53318], + [27021,13991], + [27023,6945], + [27025,28523], + [27027,34830], + [27029,4474], + [27031,3055], + [27033,5756], + [27035,31432], + [27037,229724], + [27039,11330], + [27041,19873], + [27043,7494], + [27045,11107], + [27047,16459], + [27049,26821], + [27051,3282], + [27053,666831], + [27055,10478], + [27057,9534], + [27059,20202], + [27061,21916], + [27063,6229], + [27065,8793], + [27067,23472], + [27069,2419], + [27071,6725], + [27073,3667], + [27075,5775], + [27077,2374], + [27079,15497], + [27081,3311], + [27083,15280], + [27085,20019], + [27087,2397], + [27089,5567], + [27091,10335], + [27093,12741], + [27095,12678], + [27097,17677], + [27099,20474], + [27101,4837], + [27103,19715], + [27105,11061], + [27107,3312], + [27109,83374], + [27111,30867], + [27113,8656], + [27115,14831], + [27117,4689], + [27119,17100], + [27121,5964], + [27123,275220], + [27125,2255], + [27127,8051], + [27129,8238], + [27131,34992], + [27133,5626], + [27135,8614], + [27137,102216], + [27139,76971], + [27141,48786], + [27143,8320], + [27145,86690], + [27147,21395], + [27149,5510], + [27151,4894], + [27153,12851], + [27155,1660], + [27157,11829], + [27159,6166], + [27161,9926], + [27163,134883], + [27165,6179], + [27167,3625], + [27169,29580], + [27171,70559], + [27173,5541], + [28001,11835], + [28003,15378], + [28005,4549], + [28007,7251], + [28009,3136], + [28011,13795], + [28013,6403], + [28015,3473], + [28017,7609], + [28019,3746], + [28021,3299], + [28023,6657], + [28025,8387], + [28027,9813], + [28029,11475], + [28031,7955], + [28033,81100], + [28035,33102], + [28037,2953], + [28039,8564], + [28041,4435], + [28043,9334], + [28045,18932], + [28047,86617], + [28049,110759], + [28051,6301], + [28053,3053], + [28055,446], + [28057,10027], + [28059,60944], + [28061,6514], + [28063,2480], + [28065,4218], + [28067,27346], + [28069,3956], + [28071,23038], + [28073,27531], + [28075,34590], + [28077,4717], + [28079,8108], + [28081,39557], + [28083,10738], + [28085,13920], + [28087,26976], + [28089,49764], + [28091,9936], + [28093,14805], + [28095,15505], + [28097,4375], + [28099,10958], + [28101,8981], + [28103,4087], + [28105,22213], + [28107,13674], + [28109,22827], + [28111,4249], + [28113,14642], + [28115,13672], + [28117,10947], + [28119,2858], + [28121,71226], + [28123,12742], + [28125,1844], + [28127,10948], + [28129,6839], + [28131,6461], + [28133,8994], + [28135,5809], + [28137,11969], + [28139,8735], + [28141,7695], + [28143,4791], + [28145,13076], + [28147,5295], + [28149,21636], + [28151,19117], + [28153,7893], + [28155,4070], + [28157,2983], + [28159,7388], + [28161,5024], + [28163,9442], + [29001,10778], + [29003,9896], + [29005,2880], + [29007,11236], + [29009,14905], + [29011,5490], + [29013,8001], + [29015,7256], + [29017,5753], + [29019,97547], + [29021,46590], + [29023,18709], + [29025,4348], + [29027,21630], + [29029,18806], + [29031,40913], + [29033,4678], + [29035,2548], + [29037,52287], + [29039,5879], + [29041,3740], + [29043,41036], + [29045,3361], + [29047,126817], + [29049,10753], + [29051,39752], + [29053,7692], + [29055,10900], + [29057,3450], + [29059,6960], + [29061,4074], + [29063,5041], + [29065,6255], + [29067,5072], + [29069,13008], + [29071,51642], + [29073,7541], + [29075,3598], + [29077,144536], + [29079,4922], + [29081,3966], + [29083,9867], + [29085,3689], + [29087,2742], + [29089,4927], + [29091,16415], + [29093,3932], + [29095,353084], + [29097,57982], + [29099,114854], + [29101,22943], + [29103,1984], + [29105,15595], + [29107,16918], + [29109,17426], + [29111,5081], + [29113,26314], + [29115,5317], + [29117,7269], + [29119,9980], + [29121,7426], + [29123,5564], + [29125,4179], + [29127,14636], + [29129,1810], + [29131,11497], + [29133,6303], + [29135,7318], + [29137,4111], + [29139,5720], + [29141,7850], + [29143,8286], + [29145,28942], + [29147,11357], + [29149,4137], + [29151,7207], + [29153,3677], + [29155,7102], + [29157,10138], + [29159,20082], + [29161,19353], + [29163,8097], + [29165,52743], + [29167,13918], + [29169,15626], + [29171,2450], + [29173,5605], + [29175,10533], + [29177,11131], + [29179,2522], + [29181,5554], + [29183,207053], + [29185,3918], + [29186,9020], + [29187,26293], + [29189,524367], + [29195,11092], + [29197,1902], + [29199,2375], + [29201,19825], + [29203,3368], + [29205,3062], + [29207,13229], + [29209,13598], + [29211,2716], + [29213,25840], + [29215,9707], + [29217,9780], + [29219,16865], + [29221,10473], + [29223,5639], + [29225,15913], + [29227,1319], + [29229,7599], + [29510,159822], + [30001,4840], + [30003,5701], + [30005,2471], + [30007,2508], + [30009,5395], + [30011,672], + [30013,38386], + [30015,2586], + [30017,6632], + [30019,932], + [30021,4807], + [30023,5209], + [30025,2038], + [30027,5870], + [30029,43843], + [30031,54783], + [30033,761], + [30035,6341], + [30037,397], + [30039,1501], + [30041,7938], + [30043,5608], + [30045,978], + [30047,12370], + [30049,35064], + [30051,991], + [30053,8122], + [30055,1095], + [30057,4161], + [30059,931], + [30061,1781], + [30063,59395], + [30065,2376], + [30067,8011], + [30069,294], + [30071,2057], + [30073,2901], + [30075,1124], + [30077,2946], + [30079,521], + [30081,18747], + [30083,7070], + [30085,4921], + [30087,4200], + [30089,4739], + [30091,2172], + [30093,17176], + [30095,5064], + [30097,1769], + [30099,2953], + [30101,2387], + [30103,355], + [30105,4244], + [30107,824], + [30109,558], + [30111,79268], + [31001,16963], + [31003,3619], + [31005,221], + [31007,437], + [31009,272], + [31011,3060], + [31013,5988], + [31015,1130], + [31017,1437], + [31019,27441], + [31021,3658], + [31023,4791], + [31025,13321], + [31027,4733], + [31029,2406], + [31031,3490], + [31033,5819], + [31035,3503], + [31037,5626], + [31039,4961], + [31041,6162], + [31043,11215], + [31045,5429], + [31047,13275], + [31049,1134], + [31051,3123], + [31053,19259], + [31055,286568], + [31057,1304], + [31059,3306], + [31061,1600], + [31063,1598], + [31065,2732], + [31067,11128], + [31069,1237], + [31071,1231], + [31073,1166], + [31075,420], + [31077,1302], + [31079,32586], + [31081,4853], + [31083,1863], + [31085,648], + [31087,1363], + [31089,6014], + [31091,436], + [31093,3425], + [31095,4346], + [31097,2186], + [31099,3905], + [31101,4713], + [31103,611], + [31105,2199], + [31107,4808], + [31109,168939], + [31111,19247], + [31113,503], + [31115,378], + [31117,372], + [31119,19357], + [31121,4210], + [31123,2756], + [31125,2079], + [31127,3824], + [31129,2458], + [31131,8438], + [31133,1685], + [31135,1823], + [31137,5093], + [31139,4223], + [31141,17752], + [31143,3001], + [31145,6439], + [31147,4365], + [31149,887], + [31151,7400], + [31153,89279], + [31155,11178], + [31157,19161], + [31159,9023], + [31161,2801], + [31163,1740], + [31165,806], + [31167,3693], + [31169,3058], + [31171,455], + [31173,3105], + [31175,2143], + [31177,11140], + [31179,5689], + [31181,1748], + [31183,525], + [31185,7507], + [32001,11223], + [32003,1004312], + [32005,22740], + [32007,28863], + [32009,543], + [32011,1093], + [32013,9360], + [32015,3552], + [32017,2047], + [32019,22800], + [32021,1817], + [32023,16524], + [32027,2685], + [32029,1894], + [32031,221375], + [32033,4941], + [32510,25390], + [33001,31992], + [33003,24429], + [33005,41946], + [33007,15929], + [33009,48367], + [33011,227768], + [33013,80880], + [33015,175732], + [33017,70151], + [33019,24092], + [34001,137755], + [34003,480543], + [34005,234288], + [34007,259529], + [34009,49208], + [34011,69660], + [34013,379663], + [34015,151160], + [34017,358829], + [34019,66532], + [34021,193679], + [34023,432108], + [34025,328741], + [34027,264811], + [34029,266921], + [34031,250545], + [34033,31745], + [34035,174575], + [34037,79345], + [34039,281154], + [34041,57771], + [35001,319638], + [35003,1240], + [35005,26633], + [35006,9105], + [35007,6173], + [35009,21427], + [35011,809], + [35013,93721], + [35015,27668], + [35017,12842], + [35019,1632], + [35021,284], + [35023,2174], + [35025,29310], + [35027,8804], + [35028,8621], + [35029,11300], + [35031,24305], + [35033,2254], + [35035,25244], + [35037,3305], + [35039,16644], + [35041,8342], + [35043,60574], + [35045,54546], + [35047,11093], + [35049,73219], + [35051,3989], + [35053,6612], + [35055,15047], + [35057,5597], + [35059,1865], + [35061,29884], + [36001,160805], + [36003,23799], + [36005,603461], + [36007,91934], + [36009,38100], + [36011,38854], + [36013,60218], + [36015,39609], + [36017,24097], + [36019,37176], + [36021,31847], + [36023,24308], + [36025,21050], + [36027,145589], + [36029,460260], + [36031,18113], + [36033,21544], + [36035,24736], + [36037,30534], + [36039,21353], + [36041,2430], + [36043,30004], + [36045,48330], + [36047,1212011], + [36049,12245], + [36051,31880], + [36053,34421], + [36055,374652], + [36057,23179], + [36059,697079], + [36061,904861], + [36063,105051], + [36065,107247], + [36067,231715], + [36069,55910], + [36071,178952], + [36073,18710], + [36075,57217], + [36077,31133], + [36079,51371], + [36081,1143134], + [36083,83498], + [36085,221068], + [36087,150777], + [36089,48498], + [36091,118109], + [36093,78057], + [36095,15298], + [36097,8880], + [36099,15922], + [36101,45687], + [36103,781627], + [36105,34588], + [36107,24972], + [36109,55924], + [36111,90350], + [36113,33147], + [36115,29415], + [36117,45964], + [36119,477670], + [36121,18818], + [36123,11977], + [37001,77241], + [37003,17479], + [37005,4418], + [37007,10919], + [37009,12855], + [37011,7684], + [37013,20457], + [37015,8460], + [37017,14348], + [37019,47687], + [37021,127657], + [37023,40101], + [37025,92218], + [37027,36369], + [37029,4522], + [37031,31178], + [37033,9858], + [37035,76000], + [37037,31556], + [37039,11264], + [37041,5721], + [37043,4054], + [37045,46531], + [37047,24084], + [37049,41467], + [37051,130858], + [37053,12601], + [37055,20509], + [37057,79304], + [37059,19961], + [37061,26448], + [37063,150359], + [37065,23959], + [37067,177448], + [37069,28238], + [37071,100807], + [37073,5255], + [37075,3516], + [37077,28335], + [37079,9411], + [37081,255228], + [37083,21762], + [37085,49676], + [37087,27582], + [37089,49054], + [37091,9503], + [37093,19761], + [37095,2161], + [37097,79420], + [37099,18421], + [37101,84436], + [37103,4539], + [37105,26079], + [37107,28502], + [37109,39874], + [37111,20426], + [37113,15200], + [37115,9486], + [37117,10106], + [37119,537143], + [37121,6668], + [37123,11679], + [37125,37899], + [37127,45333], + [37129,109520], + [37131,8159], + [37133,64041], + [37135,72648], + [37137,5330], + [37139,17676], + [37141,25025], + [37143,5223], + [37145,18290], + [37147,87887], + [37149,8666], + [37151,67952], + [37153,17436], + [37155,52119], + [37157,42156], + [37159,62823], + [37161,25935], + [37163,29661], + [37165,12250], + [37167,28855], + [37169,22180], + [37171,33280], + [37173,6598], + [37175,13397], + [37177,1562], + [37179,105688], + [37181,18128], + [37183,511268], + [37185,7301], + [37187,5300], + [37189,26955], + [37191,54777], + [37193,29954], + [37195,38146], + [37197,17877], + [37199,7807], + [38001,1111], + [38003,5713], + [38005,2549], + [38007,475], + [38009,3260], + [38011,1999], + [38013,1388], + [38015,47344], + [38017,91442], + [38019,2077], + [38021,2661], + [38023,1774], + [38025,4107], + [38027,1271], + [38029,1591], + [38031,1634], + [38033,973], + [38035,37216], + [38037,1275], + [38039,1202], + [38041,1479], + [38043,1256], + [38045,2238], + [38047,918], + [38049,3292], + [38051,1251], + [38053,7561], + [38055,4825], + [38057,4170], + [38059,15781], + [38061,8007], + [38063,1555], + [38065,891], + [38067,3627], + [38069,1830], + [38071,5753], + [38073,2768], + [38075,1403], + [38077,8580], + [38079,4896], + [38081,2140], + [38083,718], + [38085,1315], + [38087,523], + [38089,19479], + [38091,1042], + [38093,10503], + [38095,1215], + [38097,4502], + [38099,5627], + [38101,34493], + [38103,2215], + [38105,29283], + [39001,10693], + [39003,49469], + [39005,25526], + [39007,46023], + [39009,27507], + [39011,23963], + [39013,31961], + [39015,20086], + [39017,186298], + [39019,13701], + [39021,20016], + [39023,65934], + [39025,102499], + [39027,17092], + [39029,50566], + [39031,16354], + [39033,19717], + [39035,621938], + [39037,26400], + [39039,18938], + [39041,98089], + [39043,38552], + [39045,74047], + [39047,14379], + [39049,638834], + [39051,22451], + [39053,12514], + [39055,49259], + [39057,79411], + [39059,18546], + [39061,402433], + [39063,40198], + [39065,14935], + [39067,7290], + [39069,14026], + [39071,17509], + [39073,13199], + [39075,20046], + [39077,28662], + [39079,13604], + [39081,30601], + [39083,30388], + [39085,125690], + [39087,26127], + [39089,86490], + [39091,23045], + [39093,151036], + [39095,210736], + [39097,20234], + [39099,109548], + [39101,28132], + [39103,95022], + [39105,9414], + [39107,22395], + [39109,51861], + [39111,6483], + [39113,251314], + [39115,6692], + [39117,16896], + [39119,39959], + [39121,5289], + [39123,21969], + [39125,9021], + [39127,16068], + [39129,25657], + [39131,10768], + [39133,87710], + [39135,21306], + [39137,18816], + [39139,54943], + [39141,33507], + [39143,31562], + [39145,30349], + [39147,27411], + [39149,23761], + [39151,189051], + [39153,271165], + [39155,94552], + [39157,45049], + [39159,26626], + [39161,14212], + [39163,5578], + [39165,109855], + [39167,28367], + [39169,59320], + [39171,18654], + [39173,69091], + [39175,12358], + [40001,8268], + [40003,2935], + [40005,4913], + [40007,3026], + [40009,12591], + [40011,4319], + [40013,17738], + [40015,11382], + [40017,64764], + [40019,22035], + [40021,18732], + [40023,5976], + [40025,1233], + [40027,137044], + [40029,2253], + [40031,50119], + [40033,2862], + [40035,6245], + [40037,31249], + [40039,16021], + [40041,16990], + [40043,2595], + [40045,2333], + [40047,29436], + [40049,12456], + [40051,25532], + [40053,2661], + [40055,1998], + [40057,1348], + [40059,1919], + [40061,4475], + [40063,5739], + [40065,10828], + [40067,2582], + [40069,3587], + [40071,19986], + [40073,7786], + [40075,4150], + [40077,4145], + [40079,19765], + [40081,15467], + [40083,20749], + [40085,5251], + [40087,17828], + [40089,14336], + [40091,7397], + [40093,4130], + [40095,6956], + [40097,18855], + [40099,6474], + [40101,29712], + [40103,5474], + [40105,4820], + [40107,4423], + [40109,368547], + [40111,16247], + [40113,21114], + [40115,14143], + [40117,7389], + [40119,37539], + [40121,17988], + [40123,17768], + [40125,32121], + [40127,4709], + [40129,1878], + [40131,43827], + [40133,9739], + [40135,16866], + [40137,20607], + [40139,9289], + [40141,3369], + [40143,311042], + [40145,35929], + [40147,24628], + [40149,5576], + [40151,5141], + [40153,10735], + [41001,6798], + [41003,43861], + [41005,196842], + [41007,17859], + [41009,22297], + [41011,26336], + [41013,8908], + [41015,8639], + [41017,78225], + [41019,44120], + [41021,849], + [41023,3188], + [41025,3323], + [41027,13728], + [41029,95941], + [41031,9215], + [41033,32200], + [41035,28848], + [41037,3467], + [41039,167538], + [41041,20605], + [41043,53526], + [41045,12329], + [41047,147319], + [41049,5530], + [41051,411694], + [41053,34690], + [41055,864], + [41057,10924], + [41059,35210], + [41061,11733], + [41063,3222], + [41065,13690], + [41067,287115], + [41069,731], + [41071,49342], + [42001,55378], + [42003,651455], + [42005,33613], + [42007,86545], + [42009,24715], + [42011,211343], + [42013,61529], + [42015,31861], + [42017,337185], + [42019,97875], + [42021,64644], + [42023,2355], + [42025,32230], + [42027,78021], + [42029,273546], + [42031,18681], + [42033,37793], + [42035,19289], + [42037,35337], + [42039,41792], + [42041,125782], + [42043,140471], + [42045,290490], + [42047,16465], + [42049,136002], + [42051,59731], + [42053,1975], + [42055,76619], + [42057,7406], + [42059,18766], + [42061,20338], + [42063,44097], + [42065,21099], + [42067,12032], + [42069,107645], + [42071,270471], + [42073,43047], + [42075,70739], + [42077,183305], + [42079,160767], + [42081,61870], + [42083,19696], + [42085,53737], + [42087,21390], + [42089,81588], + [42091,435621], + [42093,9465], + [42095,155780], + [42097,44731], + [42099,24261], + [42101,698324], + [42103,25878], + [42105,7750], + [42107,70245], + [42109,19745], + [42111,35811], + [42113,3058], + [42115,22342], + [42117,21268], + [42119,19150], + [42121,25270], + [42123,20427], + [42125,107008], + [42127,22717], + [42129,186375], + [42131,14327], + [42133,232147], + [44001,26265], + [44003,91863], + [44005,44333], + [44007,324603], + [44009,69865], + [45001,10543], + [45003,72660], + [45005,3092], + [45007,85793], + [45009,5580], + [45011,8716], + [45013,67239], + [45015,88891], + [45017,6930], + [45019,187570], + [45021,23727], + [45023,13675], + [45025,20991], + [45027,12981], + [45029,16338], + [45031,30085], + [45033,12757], + [45035,68615], + [45037,10518], + [45039,10096], + [45041,64910], + [45043,24370], + [45045,230748], + [45047,31544], + [45049,8346], + [45051,132824], + [45053,11177], + [45055,27933], + [45057,34303], + [45059,29889], + [45061,6562], + [45063,137482], + [45065,3505], + [45067,13048], + [45069,10509], + [45071,17934], + [45073,33189], + [45075,38527], + [45077,54650], + [45079,190577], + [45081,8569], + [45083,135553], + [45085,44194], + [45087,11730], + [45089,12675], + [45091,119431], + [46003,1640], + [46005,9447], + [46007,1132], + [46009,2994], + [46011,17711], + [46013,20885], + [46015,2596], + [46017,737], + [46019,5023], + [46021,840], + [46023,3983], + [46025,1972], + [46027,7062], + [46029,15402], + [46031,1504], + [46033,4012], + [46035,11196], + [46037,2912], + [46039,2374], + [46041,2413], + [46043,1699], + [46045,2276], + [46047,3029], + [46049,1158], + [46051,4630], + [46053,2093], + [46055,1077], + [46057,3106], + [46059,1821], + [46061,1799], + [46063,771], + [46065,9871], + [46067,3654], + [46069,716], + [46071,1307], + [46073,1192], + [46075,618], + [46077,2873], + [46079,6293], + [46081,12642], + [46083,28507], + [46085,1854], + [46087,3162], + [46089,1131], + [46091,2535], + [46093,13518], + [46095,831], + [46097,1231], + [46099,102442], + [46101,3986], + [46102,"NA"], + [46103,53179], + [46105,1531], + [46107,1199], + [46109,4823], + [46111,1288], + [46115,3327], + [46117,1851], + [46119,880], + [46121,3175], + [46123,3087], + [46125,4707], + [46127,7860], + [46129,2350], + [46135,11480], + [46137,1028], + [47001,33670], + [47003,20010], + [47005,6881], + [47007,4336], + [47009,59248], + [47011,49460], + [47013,15240], + [47015,5901], + [47017,13104], + [47019,24769], + [47021,19932], + [47023,8264], + [47025,13005], + [47027,3095], + [47029,14976], + [47031,24434], + [47033,7009], + [47035,23433], + [47037,354139], + [47039,5083], + [47041,7703], + [47043,23788], + [47045,17060], + [47047,18128], + [47049,7410], + [47051,19598], + [47053,22064], + [47055,14056], + [47057,9409], + [47059,30354], + [47061,5319], + [47063,26957], + [47065,168353], + [47067,2146], + [47069,9780], + [47071,10975], + [47073,24671], + [47075,8098], + [47077,12664], + [47079,14296], + [47081,10482], + [47083,3363], + [47085,8644], + [47087,4570], + [47089,23296], + [47091,7329], + [47093,227126], + [47095,2179], + [47097,10224], + [47099,18101], + [47101,4990], + [47103,15549], + [47105,22077], + [47107,22842], + [47109,9327], + [47111,10056], + [47113,47496], + [47115,11995], + [47117,14317], + [47119,40771], + [47121,5030], + [47123,19236], + [47125,77325], + [47127,3323], + [47129,8051], + [47131,13660], + [47133,9492], + [47135,3114], + [47137,2318], + [47139,7531], + [47141,32459], + [47143,13350], + [47145,23176], + [47147,33566], + [47149,146980], + [47151,8582], + [47153,5908], + [47155,48968], + [47157,438627], + [47159,8513], + [47161,5339], + [47163,71515], + [47165,85370], + [47167,27946], + [47169,3649], + [47171,7406], + [47173,7413], + [47175,2192], + [47177,17518], + [47179,58779], + [47181,6531], + [47183,16516], + [47185,11865], + [47187,101172], + [47189,61464], + [48001,22042], + [48003,9173], + [48005,37966], + [48007,10069], + [48009,4231], + [48011,1006], + [48013,20247], + [48015,14136], + [48017,3048], + [48019,9071], + [48021,35910], + [48023,1673], + [48025,11321], + [48027,135335], + [48029,854655], + [48031,5540], + [48033,417], + [48035,8081], + [48037,40557], + [48039,164345], + [48041,102810], + [48043,4155], + [48045,628], + [48047,2764], + [48049,15936], + [48051,7697], + [48053,20802], + [48055,17125], + [48057,10844], + [48059,5917], + [48061,167093], + [48063,5516], + [48065,3178], + [48067,12596], + [48069,3785], + [48071,17485], + [48073,21534], + [48075,2936], + [48077,5141], + [48079,1403], + [48081,1459], + [48083,3158], + [48085,457847], + [48087,1217], + [48089,10102], + [48091,57924], + [48093,5654], + [48095,1455], + [48097,20486], + [48099,25222], + [48101,624], + [48103,2087], + [48105,1883], + [48107,2767], + [48109,1019], + [48111,3898], + [48113,1234933], + [48115,5001], + [48117,9157], + [48119,2636], + [48121,400381], + [48123,9704], + [48125,770], + [48127,6783], + [48129,1988], + [48131,5542], + [48133,8530], + [48135,78750], + [48137,904], + [48139,77676], + [48141,347223], + [48143,19851], + [48145,6779], + [48147,15283], + [48149,12661], + [48151,1886], + [48153,3123], + [48155,578], + [48157,333271], + [48159,4690], + [48161,7859], + [48163,9288], + [48165,8916], + [48167,155754], + [48169,2238], + [48171,12426], + [48173,744], + [48175,3538], + [48177,9517], + [48179,9786], + [48181,60525], + [48183,61556], + [48185,11818], + [48187,70098], + [48189,14811], + [48191,1290], + [48193,3622], + [48195,3129], + [48197,1699], + [48199,25303], + [48201,2199353], + [48203,32322], + [48205,2932], + [48207,2712], + [48209,89904], + [48211,2476], + [48213,34562], + [48215,331246], + [48217,15972], + [48219,11924], + [48221,24016], + [48223,17273], + [48225,9852], + [48227,13572], + [48229,1294], + [48231,38180], + [48233,9776], + [48235,851], + [48237,4008], + [48239,7442], + [48241,14521], + [48243,1162], + [48245,111265], + [48247,2326], + [48249,20143], + [48251,73689], + [48253,5849], + [48255,5624], + [48257,52451], + [48259,18245], + [48261,297], + [48263,532], + [48265,21483], + [48267,2162], + [48269,239], + [48271,1218], + [48273,15445], + [48275,1753], + [48277,22306], + [48279,6148], + [48281,9130], + [48283,4177], + [48285,9230], + [48287,9140], + [48289,6965], + [48291,31027], + [48293,9484], + [48295,1721], + [48297,6032], + [48299,8109], + [48301,75], + [48303,147449], + [48305,2859], + [48307,4272], + [48309,112195], + [48311,882], + [48313,4820], + [48315,4541], + [48317,2551], + [48319,1959], + [48321,16851], + [48323,23667], + [48325,20326], + [48327,920], + [48329,86065], + [48331,10128], + [48333,2071], + [48335,2878], + [48337,10367], + [48339,246342], + [48341,11440], + [48343,5841], + [48345,502], + [48347,29229], + [48349,23391], + [48351,5606], + [48353,6968], + [48355,168310], + [48357,5430], + [48359,961], + [48361,37976], + [48363,13386], + [48365,12748], + [48367,58687], + [48369,5068], + [48371,6705], + [48373,17371], + [48375,57539], + [48377,3757], + [48379,5339], + [48381,68531], + [48383,1959], + [48385,1063], + [48387,5142], + [48389,5631], + [48391,3563], + [48393,451], + [48395,7289], + [48397,42276], + [48399,4979], + [48401,24311], + [48403,3561], + [48405,2936], + [48407,11454], + [48409,30665], + [48411,2273], + [48413,1803], + [48415,8566], + [48417,2298], + [48419,11631], + [48421,1480], + [48423,101647], + [48425,4147], + [48427,26344], + [48429,4207], + [48431,752], + [48433,707], + [48435,2065], + [48437,2964], + [48439,981537], + [48441,64664], + [48443,525], + [48445,5533], + [48447,796], + [48449,13079], + [48451,54242], + [48453,629919], + [48455,5569], + [48457,7602], + [48459,18538], + [48461,1710], + [48463,11949], + [48465,19633], + [48467,23851], + [48469,45837], + [48471,23123], + [48473,20839], + [48475,5520], + [48477,15728], + [48479,110366], + [48481,21509], + [48483,3137], + [48485,57339], + [48487,5779], + [48489,7436], + [48491,246626], + [48493,22213], + [48495,3322], + [48497,28410], + [48499,16725], + [48501,4214], + [48503,8574], + [48505,7064], + [48507,4011], + [49001,3021], + [49003,23161], + [49005,57784], + [49007,8948], + [49009,429], + [49011,152577], + [49013,9299], + [49015,4713], + [49017,2781], + [49019,5455], + [49021,19376], + [49023,4697], + [49025,3474], + [49027,5902], + [49029,4505], + [49031,484], + [49033,984], + [49035,569638], + [49037,5676], + [49039,11058], + [49041,9265], + [49043,22039], + [49045,28488], + [49047,15671], + [49049,248743], + [49051,12196], + [49053,59344], + [49055,1378], + [49057,114544], + [50001,20786], + [50003,19275], + [50005,15757], + [50007,95084], + [50009,2841], + [50011,27490], + [50013,4054], + [50015,13883], + [50017,16176], + [50019,13824], + [50021,32280], + [50023,34583], + [50025,24092], + [50027,30322], + [51001,16230], + [51003,52528], + [51005,7516], + [51007,6172], + [51009,15798], + [51011,7158], + [51013,145047], + [51015,36891], + [51017,2577], + [51019,38232], + [51021,2877], + [51023,17629], + [51025,6659], + [51027,8169], + [51029,6408], + [51031,26938], + [51033,14580], + [51035,13264], + [51036,3789], + [51037,5314], + [51041,174669], + [51043,7623], + [51045,2456], + [51047,23378], + [51049,4508], + [51051,5347], + [51053,13541], + [51057,5685], + [51059,624266], + [51061,35911], + [51063,8387], + [51065,13031], + [51067,27210], + [51069,44138], + [51071,8217], + [51073,19318], + [51075,10371], + [51077,7011], + [51079,9685], + [51081,4355], + [51083,15859], + [51085,55404], + [51087,174077], + [51089,23405], + [51091,1419], + [51093,18857], + [51095,33696], + [51097,3638], + [51099,11975], + [51101,8699], + [51103,5401], + [51105,9305], + [51107,191048], + [51109,18051], + [51111,5326], + [51113,7224], + [51115,4163], + [51117,12780], + [51119,5113], + [51121,49663], + [51125,7358], + [51127,10783], + [51131,6035], + [51133,5690], + [51135,7072], + [51137,16114], + [51139,11944], + [51141,7802], + [51143,30444], + [51145,13561], + [51147,9990], + [51149,14741], + [51153,231105], + [51155,16858], + [51157,3916], + [51159,3939], + [51161,49826], + [51163,10416], + [51165,40622], + [51167,11603], + [51169,10003], + [51171,20940], + [51173,13405], + [51175,9241], + [51177,64155], + [51179,66087], + [51181,3633], + [51183,4185], + [51185,17673], + [51187,20087], + [51191,27839], + [51193,9100], + [51195,15100], + [51197,14001], + [51199,31835], + [51510,93676], + [51520,7823], + [51530,3313], + [51540,23398], + [51550,116337], + [51570,8661], + [51580,2561], + [51590,19805], + [51595,2382], + [51600,13109], + [51610,7840], + [51620,3694], + [51630,13762], + [51640,3019], + [51650,65846], + [51660,24034], + [51670,9657], + [51678,2252], + [51680,35746], + [51683,22238], + [51685,8804], + [51690,5700], + [51700,90473], + [51710,112762], + [51720,1871], + [51730,13777], + [51735,6346], + [51740,45482], + [51750,8338], + [51760,110462], + [51770,49779], + [51775,13049], + [51790,11954], + [51800,41983], + [51810,231008], + [51820,10028], + [51830,6877], + [51840,14359], + [53001,8376], + [53003,9793], + [53005,90301], + [53007,40399], + [53009,27336], + [53011,208351], + [53013,1768], + [53015,43324], + [53017,18914], + [53019,2485], + [53021,38399], + [53023,986], + [53025,44014], + [53027,28125], + [53029,31776], + [53031,11424], + [53033,1137369], + [53035,113691], + [53037,20207], + [53039,9722], + [53041,31352], + [53043,5090], + [53045,23363], + [53047,21002], + [53049,7996], + [53051,4682], + [53053,384278], + [53055,7788], + [53057,56754], + [53059,4998], + [53061,388729], + [53063,227420], + [53065,17734], + [53067,122799], + [53069,1294], + [53071,28421], + [53073,102157], + [53075,22211], + [53077,119049], + [54001,6708], + [54003,52548], + [54005,8653], + [54007,5331], + [54009,10372], + [54011,42399], + [54013,2880], + [54015,3481], + [54017,3517], + [54019,16983], + [54021,2751], + [54023,5995], + [54025,15465], + [54027,9572], + [54029,13397], + [54031,5452], + [54033,31778], + [54035,12024], + [54037,27404], + [54039,89397], + [54041,7359], + [54043,7548], + [54045,12378], + [54047,6192], + [54049,26745], + [54051,14300], + [54053,10566], + [54055,23129], + [54057,11895], + [54059,8480], + [54061,50023], + [54063,5677], + [54065,7439], + [54067,10373], + [54069,21330], + [54071,3579], + [54073,2893], + [54075,3595], + [54077,14631], + [54079,25958], + [54081,31791], + [54083,11921], + [54085,4555], + [54087,5358], + [54089,4550], + [54091,7758], + [54093,3272], + [54095,3632], + [54097,9610], + [54099,16041], + [54101,3515], + [54103,7282], + [54105,2318], + [54107,38447], + [54109,8288], + [55001,8728], + [55003,8163], + [55005,23646], + [55007,7760], + [55009,138060], + [55011,6553], + [55013,7488], + [55015,27184], + [55017,32980], + [55019,17131], + [55021,31235], + [55023,8124], + [55025,301182], + [55027,47380], + [55029,15743], + [55031,23576], + [55033,23548], + [55035,57926], + [55037,2196], + [55039,57076], + [55041,4081], + [55043,27656], + [55045,20863], + [55047,10208], + [55049,13547], + [55051,2728], + [55053,10149], + [55055,45917], + [55057,13481], + [55059,87092], + [55061,10937], + [55063,66776], + [55065,9349], + [55067,9815], + [55069,15183], + [55071,42700], + [55073,72134], + [55075,21452], + [55077,7511], + [55078,1573], + [55079,479059], + [55081,22765], + [55083,20459], + [55085,18597], + [55087,100502], + [55089,47535], + [55091,4031], + [55093,24000], + [55095,24313], + [55097,38957], + [55099,6856], + [55101,99749], + [55103,9350], + [55105,82183], + [55107,6736], + [55109,47820], + [55111,35392], + [55113,8191], + [55115,21470], + [55117,60768], + [55119,10992], + [55121,16417], + [55123,15138], + [55125,10183], + [55127,56804], + [55129,8000], + [55131,75273], + [55133,219057], + [55135,27362], + [55137,11830], + [55139,91681], + [55141,39013], + [56001,20692], + [56003,5583], + [56005,25698], + [56007,8378], + [56009,8108], + [56011,3691], + [56013,21046], + [56015,7333], + [56017,2557], + [56019,4478], + [56021,48587], + [56023,8165], + [56025,43105], + [56027,1381], + [56029,15864], + [56031,4804], + [56033,15792], + [56035,5081], + [56037,23883], + [56039,14107], + [56041,9960], + [56043,4362], + [56045,3956] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2014.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2014.json new file mode 100644 index 0000000..dd950e5 --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2014.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2014", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2014"], + [1001,25602], + [1003,86415], + [1005,8848], + [1007,8562], + [1009,24535], + [1011,4733], + [1013,9272], + [1015,47257], + [1017,15307], + [1019,11390], + [1021,19102], + [1023,4495], + [1025,8157], + [1027,5513], + [1029,5855], + [1031,20235], + [1033,24036], + [1035,4718], + [1037,4469], + [1039,15915], + [1041,6301], + [1043,35929], + [1045,20323], + [1047,16008], + [1049,28954], + [1051,36557], + [1053,14369], + [1055,43735], + [1057,6351], + [1059,13718], + [1061,10796], + [1063,2986], + [1065,6034], + [1067,6778], + [1069,45159], + [1071,23454], + [1073,312247], + [1075,5626], + [1077,43489], + [1079,14026], + [1081,71372], + [1083,39591], + [1085,3874], + [1087,8239], + [1089,170131], + [1091,7626], + [1093,12293], + [1095,39915], + [1097,185382], + [1099,7617], + [1101,105042], + [1103,56053], + [1105,3490], + [1107,7762], + [1109,14953], + [1111,9277], + [1113,24774], + [1115,38524], + [1117,107247], + [1119,5374], + [1121,35399], + [1123,18424], + [1125,97092], + [1127,25761], + [1129,6656], + [1131,2865], + [1133,9634], + [2013,2228], + [2016,4480], + [2020,158213], + [2050,7312], + [2060,497], + [2068,1073], + [2070,2121], + [2090,46833], + [2100,1113], + [2105,1141], + [2110,17475], + [2122,27979], + [2130,7112], + [2150,6587], + [2158,"NA"], + [2164,645], + [2170,44926], + [2180,4128], + [2185,4354], + [2188,3010], + [2195,1584], + [2198,2838], + [2220,4686], + [2230,806], + [2240,2924], + [2261,4888], + [2275,1061], + [2282,273], + [2290,2588], + [4001,21129], + [4003,50772], + [4005,71960], + [4007,21332], + [4009,14387], + [4011,4702], + [4012,7924], + [4013,1954459], + [4015,78060], + [4017,41527], + [4019,461348], + [4021,153156], + [4023,20217], + [4025,93950], + [4027,93020], + [5001,9466], + [5003,8476], + [5005,15986], + [5007,115420], + [5009,15664], + [5011,4153], + [5013,2367], + [5015,12542], + [5017,3850], + [5019,9522], + [5021,6414], + [5023,9745], + [5025,3455], + [5027,9538], + [5029,8596], + [5031,49477], + [5033,26803], + [5035,21433], + [5037,8098], + [5039,2878], + [5041,5552], + [5043,7985], + [5045,59046], + [5047,7287], + [5049,4801], + [5051,40339], + [5053,8222], + [5055,19627], + [5057,9927], + [5059,13978], + [5061,6196], + [5063,15482], + [5065,4917], + [5067,6191], + [5069,29502], + [5071,10297], + [5073,2663], + [5075,7085], + [5077,3252], + [5079,4214], + [5081,5543], + [5083,9079], + [5085,32747], + [5087,6967], + [5089,6536], + [5091,19372], + [5093,19075], + [5095,3093], + [5097,3349], + [5099,3684], + [5101,3363], + [5103,9954], + [5105,4231], + [5107,7228], + [5109,4207], + [5111,10103], + [5113,8457], + [5115,29615], + [5117,3813], + [5119,184549], + [5121,6551], + [5123,8978], + [5125,54611], + [5127,4543], + [5129,2994], + [5131,57183], + [5133,5793], + [5135,5969], + [5137,4701], + [5139,16579], + [5141,6454], + [5143,110157], + [5145,34474], + [5147,3166], + [5149,9036], + [6001,809983], + [6003,512], + [6005,14382], + [6007,101483], + [6009,20292], + [6011,11112], + [6013,540891], + [6015,9954], + [6017,88114], + [6019,439300], + [6021,12834], + [6023,62505], + [6025,78445], + [6027,9234], + [6029,393459], + [6031,57578], + [6033,29352], + [6035,10843], + [6037,5004087], + [6039,61953], + [6041,139122], + [6043,8110], + [6045,40479], + [6047,114589], + [6049,3374], + [6051,8260], + [6053,218226], + [6055,73592], + [6057,47961], + [6059,1572653], + [6061,175888], + [6063,8118], + [6065,1013481], + [6067,680676], + [6069,29241], + [6071,907537], + [6073,1544314], + [6075,529839], + [6077,312782], + [6079,140565], + [6081,427907], + [6083,218314], + [6085,992221], + [6087,142647], + [6089,75047], + [6091,1416], + [6093,18046], + [6095,203266], + [6097,256742], + [6099,241157], + [6101,44394], + [6103,25144], + [6105,5182], + [6107,198635], + [6109,21628], + [6111,431107], + [6113,102474], + [6115,27962], + [8001,244862], + [8003,7507], + [8005,330982], + [8007,5721], + [8009,1924], + [8011,1650], + [8013,176045], + [8014,34151], + [8015,8378], + [8017,971], + [8019,5513], + [8021,3605], + [8023,1608], + [8025,1314], + [8027,1978], + [8029,13587], + [8031,368465], + [8033,1328], + [8035,169078], + [8037,32369], + [8039,12948], + [8041,306425], + [8043,14520], + [8045,31148], + [8047,3447], + [8049,8923], + [8051,9667], + [8053,434], + [8055,2409], + [8057,834], + [8059,307385], + [8061,751], + [8063,4309], + [8065,4503], + [8067,29894], + [8069,176951], + [8071,6420], + [8073,2132], + [8075,10988], + [8077,73160], + [8079,424], + [8081,7301], + [8083,12646], + [8085,19254], + [8087,14796], + [8089,7963], + [8091,2132], + [8093,9348], + [8095,2251], + [8097,11017], + [8099,5722], + [8101,72251], + [8103,2937], + [8105,4816], + [8107,14373], + [8109,3002], + [8111,475], + [8113,4918], + [8115,1085], + [8117,20062], + [8119,11573], + [8121,2645], + [8123,145272], + [8125,4953], + [9001,478479], + [9003,473612], + [9005,105843], + [9007,92289], + [9009,457038], + [9011,137463], + [9013,84735], + [9015,62991], + [10001,75216], + [10003,283309], + [10005,94789], + [11001,378380], + [12001,129548], + [12003,11208], + [12005,87558], + [12007,10752], + [12009,257909], + [12011,987282], + [12013,4945], + [12015,66886], + [12017,48229], + [12019,97811], + [12021,160059], + [12023,28359], + [12027,13168], + [12029,5555], + [12031,459978], + [12033,139309], + [12035,43219], + [12037,4944], + [12039,18811], + [12041,6556], + [12043,4921], + [12045,6124], + [12047,4605], + [12049,10343], + [12051,15827], + [12053,66235], + [12055,35843], + [12057,682847], + [12059,6862], + [12061,61753], + [12063,17484], + [12065,5497], + [12067,3354], + [12069,138345], + [12071,310352], + [12073,149877], + [12075,16298], + [12077,2752], + [12079,7738], + [12081,160548], + [12083,131605], + [12085,68687], + [12086,1320102], + [12087,45043], + [12089,36269], + [12091,92072], + [12093,17674], + [12095,676557], + [12097,152667], + [12099,684793], + [12101,213023], + [12103,471706], + [12105,278477], + [12107,27946], + [12109,110658], + [12111,130539], + [12113,73121], + [12115,174927], + [12117,236046], + [12119,28269], + [12121,17973], + [12123,9363], + [12125,4734], + [12127,237798], + [12129,14308], + [12131,27350], + [12133,9693], + [13001,8664], + [13003,3615], + [13005,4847], + [13007,1114], + [13009,18474], + [13011,8149], + [13013,35183], + [13015,46609], + [13017,5596], + [13019,7234], + [13021,69005], + [13023,4630], + [13025,6887], + [13027,6631], + [13029,15543], + [13031,34535], + [13033,9169], + [13035,10025], + [13037,2139], + [13039,21957], + [13043,5074], + [13045,51951], + [13047,31036], + [13049,4804], + [13051,131711], + [13053,2229], + [13055,10515], + [13057,118001], + [13059,56217], + [13061,915], + [13063,124667], + [13065,2826], + [13067,393441], + [13069,17634], + [13071,20080], + [13073,66428], + [13075,7394], + [13077,66501], + [13079,5612], + [13081,9453], + [13083,7887], + [13085,10796], + [13087,11374], + [13089,368717], + [13091,7430], + [13093,4635], + [13095,38645], + [13097,67664], + [13099,4343], + [13101,1783], + [13103,26264], + [13105,8065], + [13107,8582], + [13109,4736], + [13111,9853], + [13113,53750], + [13115,43274], + [13117,100368], + [13119,9247], + [13121,509436], + [13123,11963], + [13125,1267], + [13127,37076], + [13129,26070], + [13131,10452], + [13133,6424], + [13135,444312], + [13137,18968], + [13139,90063], + [13141,2521], + [13143,11871], + [13145,15723], + [13147,10383], + [13149,4967], + [13151,103521], + [13153,65923], + [13155,3141], + [13157,29812], + [13159,6351], + [13161,6395], + [13163,6650], + [13165,3260], + [13167,3935], + [13169,13691], + [13171,7786], + [13173,3792], + [13175,19026], + [13177,14142], + [13179,25629], + [13181,3336], + [13183,6699], + [13185,50537], + [13187,15255], + [13189,8797], + [13191,5867], + [13193,4737], + [13195,12704], + [13197,3457], + [13199,8743], + [13201,2675], + [13205,8763], + [13207,12729], + [13209,3857], + [13211,8359], + [13213,15866], + [13215,80811], + [13217,47931], + [13219,17260], + [13221,6659], + [13223,74827], + [13225,11484], + [13227,13821], + [13229,8087], + [13231,8192], + [13233,18342], + [13235,4062], + [13237,8088], + [13239,890], + [13241,6548], + [13243,2718], + [13245,84627], + [13247,42028], + [13249,2175], + [13251,5361], + [13253,3120], + [13255,27269], + [13257,11210], + [13259,2188], + [13261,13434], + [13263,2805], + [13265,592], + [13267,9521], + [13269,2846], + [13271,5248], + [13273,3618], + [13275,17145], + [13277,18250], + [13279,12233], + [13281,4138], + [13283,2794], + [13285,36096], + [13287,3257], + [13289,2996], + [13291,9515], + [13293,11303], + [13295,29396], + [13297,41409], + [13299,14756], + [13301,2714], + [13303,7552], + [13305,11830], + [13307,1016], + [13309,1865], + [13311,13832], + [13313,44722], + [13315,2841], + [13317,3735], + [13319,3716], + [13321,8941], + [15001,87707], + [15003,461744], + [15005,"NA"], + [15007,34792], + [15009,82431], + [16001,211681], + [16003,1676], + [16005,41518], + [16007,2859], + [16009,3967], + [16011,22057], + [16013,11456], + [16015,2919], + [16017,18228], + [16019,49585], + [16021,4909], + [16023,1301], + [16025,631], + [16027,89030], + [16029,3851], + [16031,11237], + [16033,442], + [16035,3130], + [16037,2137], + [16039,11007], + [16041,6403], + [16043,6974], + [16045,7512], + [16047,7973], + [16049,6487], + [16051,12248], + [16053,11104], + [16055,70466], + [16057,19290], + [16059,3360], + [16061,1594], + [16063,2602], + [16065,19016], + [16067,10405], + [16069,20339], + [16071,2116], + [16073,5019], + [16075,10957], + [16077,3976], + [16079,5204], + [16081,5619], + [16083,38211], + [16085,4557], + [16087,4582], + [17001,32635], + [17003,2556], + [17005,7893], + [17007,26324], + [17009,2734], + [17011,17475], + [17013,2365], + [17015,7849], + [17017,6432], + [17019,103402], + [17021,15788], + [17023,7964], + [17025,6439], + [17027,19954], + [17029,24280], + [17031,2653342], + [17033,9744], + [17035,5859], + [17037,54928], + [17039,7935], + [17041,9861], + [17043,509913], + [17045,9133], + [17047,2851], + [17049,18361], + [17051,9754], + [17053,6452], + [17055,16640], + [17057,15753], + [17059,2463], + [17061,6178], + [17063,25583], + [17065,4332], + [17067,8883], + [17069,1639], + [17071,3739], + [17073,25236], + [17075,15006], + [17077,28466], + [17079,4645], + [17081,17617], + [17083,11077], + [17085,11562], + [17087,4160], + [17089,264897], + [17091,55811], + [17093,65164], + [17095,23586], + [17097,365199], + [17099,57202], + [17101,6347], + [17103,18142], + [17105,17468], + [17107,13024], + [17109,14292], + [17111,165732], + [17113,90778], + [17115,50797], + [17117,23130], + [17119,132268], + [17121,18043], + [17123,5755], + [17125,6636], + [17127,6318], + [17129,6748], + [17131,8285], + [17133,17877], + [17135,12138], + [17137,17214], + [17139,7045], + [17141,25933], + [17143,91556], + [17145,8883], + [17147,8323], + [17149,7748], + [17151,1796], + [17153,2139], + [17155,3033], + [17157,14161], + [17159,7230], + [17161,72601], + [17163,126416], + [17165,10767], + [17167,104386], + [17169,3458], + [17171,2560], + [17173,10147], + [17175,2803], + [17177,22238], + [17179,67789], + [17181,7293], + [17183,35526], + [17185,5565], + [17187,8734], + [17189,9021], + [17191,7672], + [17193,7071], + [17195,28579], + [17197,356697], + [17199,31390], + [17201,142061], + [17203,19692], + [18001,16404], + [18003,175539], + [18005,42577], + [18007,4470], + [18009,5260], + [18011,32166], + [18013,7352], + [18015,9875], + [18017,17720], + [18019,57572], + [18021,12428], + [18023,16642], + [18025,4889], + [18027,15165], + [18029,25097], + [18031,14172], + [18033,21244], + [18035,53553], + [18037,22024], + [18039,102097], + [18041,9083], + [18043,39044], + [18045,8191], + [18047,10875], + [18049,9785], + [18051,18418], + [18053,32633], + [18055,13843], + [18057,160997], + [18059,36584], + [18061,19028], + [18063,80633], + [18065,21449], + [18067,36907], + [18069,18538], + [18071,21304], + [18073,16128], + [18075,10094], + [18077,15050], + [18079,13079], + [18081,75466], + [18083,18829], + [18085,40293], + [18087,18209], + [18089,230390], + [18091,48844], + [18093,20366], + [18095,57897], + [18097,467242], + [18099,23704], + [18101,4951], + [18103,15661], + [18105,67448], + [18107,18681], + [18109,34969], + [18111,6942], + [18113,23119], + [18115,3217], + [18117,8534], + [18119,9475], + [18121,6945], + [18123,9171], + [18125,6342], + [18127,83965], + [18129,13146], + [18131,6191], + [18133,16258], + [18135,12480], + [18137,13629], + [18139,8525], + [18141,128667], + [18143,10182], + [18145,22420], + [18147,10739], + [18149,10225], + [18151,19796], + [18153,8643], + [18155,4800], + [18157,91257], + [18159,8160], + [18161,3541], + [18163,92029], + [18165,7222], + [18167,49446], + [18169,15461], + [18171,4093], + [18173,31166], + [18175,13310], + [18177,30901], + [18179,13749], + [18181,13445], + [18183,16831], + [19001,4158], + [19003,2215], + [19005,7715], + [19007,6159], + [19009,3263], + [19011,13882], + [19013,72258], + [19015,15214], + [19017,14197], + [19019,11482], + [19021,11497], + [19023,8391], + [19025,4427], + [19027,11241], + [19029,7394], + [19031,10940], + [19033,23266], + [19035,6640], + [19037,6488], + [19039,4684], + [19041,8955], + [19043,10204], + [19045,24802], + [19047,8745], + [19049,42774], + [19051,4116], + [19053,4446], + [19055,10541], + [19057,20869], + [19059,9725], + [19061,55648], + [19063,5742], + [19065,10808], + [19067,8421], + [19069,5986], + [19071,4175], + [19073,5281], + [19075,6733], + [19077,5619], + [19079,7109], + [19081,6306], + [19083,8721], + [19085,7548], + [19087,9558], + [19089,5323], + [19091,5268], + [19093,3895], + [19095,10222], + [19097,11035], + [19099,19356], + [19101,9093], + [19103,84150], + [19105,10810], + [19107,5524], + [19109,8675], + [19111,17759], + [19113,121179], + [19115,5942], + [19117,4317], + [19119,7026], + [19121,8243], + [19123,11877], + [19125,17462], + [19127,19863], + [19129,7409], + [19131,5469], + [19133,4763], + [19135,4080], + [19137,5170], + [19139,22149], + [19141,8249], + [19143,3465], + [19145,6608], + [19147,4860], + [19149,14686], + [19151,4334], + [19153,256028], + [19155,49263], + [19157,10420], + [19159,2535], + [19161,5564], + [19163,88611], + [19165,7063], + [19167,20162], + [19169,56709], + [19171,9252], + [19173,3247], + [19175,6825], + [19177,3920], + [19179,18166], + [19181,26810], + [19183,12341], + [19185,2877], + [19187,19856], + [19189,5232], + [19191,12078], + [19193,56036], + [19195,4211], + [19197,6960], + [20001,6806], + [20003,4187], + [20005,7631], + [20007,2715], + [20009,15455], + [20011,7093], + [20013,5407], + [20015,31944], + [20017,1232], + [20019,1577], + [20021,10349], + [20023,1314], + [20025,1143], + [20027,4169], + [20029,4389], + [20031,4893], + [20033,978], + [20035,17260], + [20037,19132], + [20039,1352], + [20041,9719], + [20043,4294], + [20045,64633], + [20047,1605], + [20049,1308], + [20051,17905], + [20053,3445], + [20055,20196], + [20057,18174], + [20059,14049], + [20061,12332], + [20063,1483], + [20065,1312], + [20067,3936], + [20069,3494], + [20071,897], + [20073,3327], + [20075,1662], + [20077,2979], + [20079,17110], + [20081,2356], + [20083,1034], + [20085,7386], + [20087,10215], + [20089,1380], + [20091,320747], + [20093,2117], + [20095,3603], + [20097,1349], + [20099,10772], + [20101,863], + [20103,34990], + [20105,1771], + [20107,4319], + [20109,1733], + [20111,16511], + [20113,16823], + [20115,6139], + [20117,5876], + [20119,2379], + [20121,16853], + [20123,3834], + [20125,17335], + [20127,3096], + [20129,1488], + [20131,5847], + [20133,6393], + [20135,1613], + [20137,3038], + [20139,8138], + [20141,2057], + [20143,3241], + [20145,3389], + [20147,2907], + [20149,12027], + [20151,5499], + [20153,1515], + [20155,31182], + [20157,2567], + [20159,5446], + [20161,36570], + [20163,2849], + [20165,1807], + [20167,3836], + [20169,30680], + [20171,2851], + [20173,246940], + [20175,11153], + [20177,91849], + [20179,1458], + [20181,3090], + [20183,2116], + [20185,2162], + [20187,1026], + [20189,3364], + [20191,11065], + [20193,4378], + [20195,1488], + [20197,3759], + [20199,876], + [20201,3104], + [20203,1234], + [20205,4169], + [20207,1627], + [20209,75548], + [21001,7216], + [21003,8658], + [21005,11416], + [21007,3672], + [21009,18700], + [21011,4716], + [21013,9300], + [21015,65181], + [21017,9637], + [21019,19056], + [21021,12279], + [21023,3795], + [21025,4176], + [21027,8076], + [21029,39174], + [21031,5184], + [21033,5445], + [21035,18693], + [21037,47830], + [21039,2380], + [21041,4863], + [21043,10473], + [21045,6612], + [21047,25398], + [21049,16959], + [21051,5549], + [21053,4000], + [21055,3867], + [21057,2947], + [21059,45889], + [21061,4776], + [21063,2152], + [21065,5401], + [21067,166831], + [21069,6364], + [21071,12389], + [21073,24336], + [21075,2226], + [21077,3859], + [21079,7582], + [21081,11193], + [21083,15845], + [21085,10853], + [21087,5077], + [21089,14277], + [21091,3977], + [21093,46565], + [21095,8392], + [21097,8415], + [21099,7811], + [21101,21627], + [21103,7633], + [21105,2126], + [21107,20396], + [21109,4578], + [21111,377049], + [21113,24886], + [21115,8044], + [21117,83049], + [21119,5130], + [21121,10110], + [21123,5761], + [21125,24105], + [21127,5271], + [21129,2310], + [21131,3172], + [21133,7239], + [21135,5167], + [21137,9320], + [21139,3756], + [21141,11909], + [21143,2978], + [21145,29453], + [21147,5040], + [21149,4312], + [21151,45264], + [21153,3721], + [21155,9182], + [21157,14946], + [21159,3433], + [21161,7735], + [21163,12110], + [21165,2354], + [21167,9890], + [21169,4127], + [21171,4597], + [21173,11744], + [21175,4790], + [21177,12355], + [21179,21284], + [21181,3449], + [21183,9511], + [21185,30238], + [21187,5519], + [21189,1177], + [21191,6754], + [21193,9529], + [21195,21975], + [21197,4966], + [21199,26254], + [21201,808], + [21203,6880], + [21205,10544], + [21207,6578], + [21209,26461], + [21211,22477], + [21213,8481], + [21215,9148], + [21217,11266], + [21219,5455], + [21221,5711], + [21223,3873], + [21225,6752], + [21227,59313], + [21229,6118], + [21231,7250], + [21233,6282], + [21235,13391], + [21237,2054], + [21239,14224], + [22001,26689], + [22003,8911], + [22005,59751], + [22007,10075], + [22009,16153], + [22011,14818], + [22013,5938], + [22015,58226], + [22017,111244], + [22019,94664], + [22021,4081], + [22023,3447], + [22025,3849], + [22027,6367], + [22029,7764], + [22031,11139], + [22033,232359], + [22035,2224], + [22037,8200], + [22039,13149], + [22041,7608], + [22043,8422], + [22045,32610], + [22047,14389], + [22049,7248], + [22051,218380], + [22053,13589], + [22055,122595], + [22057,48547], + [22059,6637], + [22061,20707], + [22063,66663], + [22065,3928], + [22067,11180], + [22069,16924], + [22071,179296], + [22073,72082], + [22075,10251], + [22077,10119], + [22079,58112], + [22081,3997], + [22083,8733], + [22085,9223], + [22087,19251], + [22089,25517], + [22091,4541], + [22093,9784], + [22095,20411], + [22097,34242], + [22099,24705], + [22101,25366], + [22103,115130], + [22105,53829], + [22107,1787], + [22109,54745], + [22111,9385], + [22113,26558], + [22115,17456], + [22117,16984], + [22119,15700], + [22121,12900], + [22123,4250], + [22125,5366], + [22127,5426], + [23001,55900], + [23003,32947], + [23005,159167], + [23007,14937], + [23009,29784], + [23011,63301], + [23013,20642], + [23015,17202], + [23017,27347], + [23019,78956], + [23021,7697], + [23023,19029], + [23025,24318], + [23027,20836], + [23029,14383], + [23031,109862], + [24001,33315], + [24003,297831], + [24005,442036], + [24009,47282], + [24011,17434], + [24013,92699], + [24015,52505], + [24017,80250], + [24019,15805], + [24021,128206], + [24023,15560], + [24025,135428], + [24027,173617], + [24029,10361], + [24031,545005], + [24033,486971], + [24035,26401], + [24037,54142], + [24039,9287], + [24041,19148], + [24043,76485], + [24045,50134], + [24047,25692], + [24510,294342], + [25001,111978], + [25003,65703], + [25005,288627], + [25007,9468], + [25009,404947], + [25011,39489], + [25013,222012], + [25015,86935], + [25017,854600], + [25019,6959], + [25021,367092], + [25023,266779], + [25025,415222], + [25027,426431], + [26001,3821], + [26003,3311], + [26005,59631], + [26007,13518], + [26009,10049], + [26011,6384], + [26013,3459], + [26015,29899], + [26017,53029], + [26019,8710], + [26021,73277], + [26023,19253], + [26025,63970], + [26027,23792], + [26029,13071], + [26031,10654], + [26033,16847], + [26035,11897], + [26037,39526], + [26039,5329], + [26041,17411], + [26043,12831], + [26045,55652], + [26047,17907], + [26049,183700], + [26051,10019], + [26053,6684], + [26055,47855], + [26057,18439], + [26059,20467], + [26061,16913], + [26063,16515], + [26065,145186], + [26067,29191], + [26069,10282], + [26071,5195], + [26073,35426], + [26075,72888], + [26077,127872], + [26079,7700], + [26081,335664], + [26083,982], + [26085,3611], + [26087,39882], + [26089,10510], + [26091,47915], + [26093,95436], + [26095,2479], + [26097,5283], + [26099,420858], + [26101,10340], + [26103,33734], + [26105,14658], + [26107,19146], + [26109,11708], + [26111,41546], + [26113,7050], + [26115,75927], + [26117,27608], + [26119,3151], + [26121,77067], + [26123,22589], + [26125,630196], + [26127,12815], + [26129,8580], + [26131,2377], + [26133,10196], + [26135,2973], + [26137,11190], + [26139,149009], + [26141,5438], + [26143,7942], + [26145,88977], + [26147,73701], + [26149,28818], + [26151,19602], + [26153,3527], + [26155,33199], + [26157,25094], + [26159,35296], + [26161,186899], + [26163,768439], + [26165,14666], + [27001,6772], + [27003,189030], + [27005,17975], + [27007,23310], + [27009,21710], + [27011,2593], + [27013,38538], + [27015,14193], + [27017,17588], + [27019,54280], + [27021,13993], + [27023,6897], + [27025,28584], + [27027,35235], + [27029,4545], + [27031,3056], + [27033,5580], + [27035,31475], + [27037,231511], + [27039,11250], + [27041,19875], + [27043,7374], + [27045,11025], + [27047,16246], + [27049,26728], + [27051,3282], + [27053,672435], + [27055,10357], + [27057,9434], + [27059,20238], + [27061,21952], + [27063,6302], + [27065,8850], + [27067,23675], + [27069,2390], + [27071,6433], + [27073,3651], + [27075,5681], + [27077,2388], + [27079,15484], + [27081,3280], + [27083,15284], + [27085,19822], + [27087,2361], + [27089,5591], + [27091,10220], + [27093,12859], + [27095,12681], + [27097,17395], + [27099,20280], + [27101,4859], + [27103,19770], + [27105,11232], + [27107,3315], + [27109,83053], + [27111,30884], + [27113,8844], + [27115,14605], + [27117,4783], + [27119,17088], + [27121,6224], + [27123,277378], + [27125,2259], + [27127,8002], + [27129,8204], + [27131,35108], + [27133,5673], + [27135,8813], + [27137,102285], + [27139,78168], + [27141,49205], + [27143,8268], + [27145,87725], + [27147,21303], + [27149,5569], + [27151,4869], + [27153,12818], + [27155,1712], + [27157,11727], + [27159,6142], + [27161,9672], + [27163,136056], + [27165,6160], + [27167,3593], + [27169,29347], + [27171,71193], + [27173,5488], + [28001,11603], + [28003,15136], + [28005,4449], + [28007,7044], + [28009,2979], + [28011,13310], + [28013,6240], + [28015,3412], + [28017,7206], + [28019,3578], + [28021,3110], + [28023,6270], + [28025,7981], + [28027,9558], + [28029,11169], + [28031,7840], + [28033,81350], + [28035,32288], + [28037,2907], + [28039,8919], + [28041,4394], + [28043,9296], + [28045,18476], + [28047,84780], + [28049,108127], + [28051,6140], + [28053,2562], + [28055,426], + [28057,9898], + [28059,59094], + [28061,6433], + [28063,2405], + [28065,4119], + [28067,26671], + [28069,3751], + [28071,23279], + [28073,27777], + [28075,32578], + [28077,4521], + [28079,7831], + [28081,38830], + [28083,10555], + [28085,13743], + [28087,25266], + [28089,49769], + [28091,9893], + [28093,14360], + [28095,15461], + [28097,4194], + [28099,10779], + [28101,8773], + [28103,4007], + [28105,22081], + [28107,13415], + [28109,22335], + [28111,4208], + [28113,14542], + [28115,13486], + [28117,10857], + [28119,2751], + [28121,70991], + [28123,12672], + [28125,1769], + [28127,10761], + [28129,6727], + [28131,6332], + [28133,8660], + [28135,5841], + [28137,11775], + [28139,8727], + [28141,7592], + [28143,4759], + [28145,12849], + [28147,5156], + [28149,20942], + [28151,18363], + [28153,7737], + [28155,3965], + [28157,2835], + [28159,7153], + [28161,4922], + [28163,9277], + [29001,10602], + [29003,9859], + [29005,2874], + [29007,11244], + [29009,14816], + [29011,5489], + [29013,8104], + [29015,7181], + [29017,5647], + [29019,97699], + [29021,46293], + [29023,19102], + [29025,4337], + [29027,21801], + [29029,18816], + [29031,40694], + [29033,4741], + [29035,2559], + [29037,52846], + [29039,5866], + [29041,3853], + [29043,42225], + [29045,3441], + [29047,129494], + [29049,10693], + [29051,39680], + [29053,7655], + [29055,10896], + [29057,3511], + [29059,6970], + [29061,4039], + [29063,4974], + [29065,6274], + [29067,5031], + [29069,13146], + [29071,52120], + [29073,7623], + [29075,3637], + [29077,147446], + [29079,4904], + [29081,3984], + [29083,10128], + [29085,3699], + [29087,2699], + [29089,4992], + [29091,16289], + [29093,3928], + [29095,357620], + [29097,57779], + [29099,116430], + [29101,22822], + [29103,1973], + [29105,15915], + [29107,16972], + [29109,17488], + [29111,5162], + [29113,26596], + [29115,5226], + [29117,7313], + [29119,10297], + [29121,7454], + [29123,5507], + [29125,3976], + [29127,14639], + [29129,1871], + [29131,11652], + [29133,6271], + [29135,7388], + [29137,4189], + [29139,5692], + [29141,7971], + [29143,8470], + [29145,28455], + [29147,11109], + [29149,4147], + [29151,7231], + [29153,3668], + [29155,7104], + [29157,10288], + [29159,20672], + [29161,19451], + [29163,8152], + [29165,54025], + [29167,14123], + [29169,15233], + [29171,2494], + [29173,5644], + [29175,10573], + [29177,11141], + [29179,2693], + [29181,5571], + [29183,212318], + [29185,3991], + [29186,9083], + [29187,26333], + [29189,529604], + [29195,11250], + [29197,1891], + [29199,2395], + [29201,19885], + [29203,3429], + [29205,3060], + [29207,13161], + [29209,13324], + [29211,2742], + [29213,25757], + [29215,9441], + [29217,9841], + [29219,17124], + [29221,10473], + [29223,5657], + [29225,16313], + [29227,1295], + [29229,7648], + [29510,160220], + [30001,4857], + [30003,5584], + [30005,2429], + [30007,2496], + [30009,5379], + [30011,686], + [30013,38215], + [30015,2587], + [30017,6579], + [30019,950], + [30021,4856], + [30023,5229], + [30025,2070], + [30027,5732], + [30029,43684], + [30031,56763], + [30033,746], + [30035,5945], + [30037,391], + [30039,1524], + [30041,7816], + [30043,5620], + [30045,965], + [30047,12462], + [30049,35143], + [30051,971], + [30053,7906], + [30055,1087], + [30057,4223], + [30059,906], + [30061,1743], + [30063,59837], + [30065,2357], + [30067,8051], + [30069,283], + [30071,1990], + [30073,2836], + [30075,1073], + [30077,2931], + [30079,513], + [30081,18752], + [30083,7312], + [30085,4811], + [30087,4167], + [30089,4629], + [30091,2125], + [30093,16985], + [30095,4987], + [30097,1778], + [30099,2876], + [30101,2343], + [30103,346], + [30105,4355], + [30107,781], + [30109,549], + [30111,79298], + [31001,16708], + [31003,3589], + [31005,224], + [31007,436], + [31009,275], + [31011,3022], + [31013,5741], + [31015,1099], + [31017,1419], + [31019,27465], + [31021,3580], + [31023,4825], + [31025,13230], + [31027,4665], + [31029,2346], + [31031,3413], + [31033,5744], + [31035,3459], + [31037,5618], + [31039,4947], + [31041,6131], + [31043,11042], + [31045,5281], + [31047,13325], + [31049,1090], + [31051,3055], + [31053,19210], + [31055,286332], + [31057,1276], + [31059,3243], + [31061,1575], + [31063,1550], + [31065,2708], + [31067,11081], + [31069,1192], + [31071,1201], + [31073,1135], + [31075,428], + [31077,1271], + [31079,32380], + [31081,4760], + [31083,1801], + [31085,627], + [31087,1340], + [31089,5918], + [31091,423], + [31093,3364], + [31095,4297], + [31097,2168], + [31099,3846], + [31101,4663], + [31103,619], + [31105,2226], + [31107,4730], + [31109,167883], + [31111,18720], + [31113,494], + [31115,380], + [31117,438], + [31119,19474], + [31121,4112], + [31123,2680], + [31125,2070], + [31127,3723], + [31129,2403], + [31131,8239], + [31133,1652], + [31135,1851], + [31137,5050], + [31139,4237], + [31141,17305], + [31143,2961], + [31145,6284], + [31147,4275], + [31149,883], + [31151,7230], + [31153,89768], + [31155,11012], + [31157,18742], + [31159,8840], + [31161,2779], + [31163,1726], + [31165,806], + [31167,3574], + [31169,3030], + [31171,428], + [31173,3020], + [31175,2117], + [31177,11038], + [31179,5564], + [31181,1727], + [31183,559], + [31185,7393], + [32001,10886], + [32003,1019491], + [32005,22382], + [32007,28218], + [32009,533], + [32011,1035], + [32013,8965], + [32015,3373], + [32017,1940], + [32019,22891], + [32021,1659], + [32023,16319], + [32027,2604], + [32029,1849], + [32031,222734], + [32033,4891], + [32510,24990], + [33001,31558], + [33003,24131], + [33005,41949], + [33007,15126], + [33009,48384], + [33011,228249], + [33013,80758], + [33015,176327], + [33017,70493], + [33019,23692], + [34001,133083], + [34003,481267], + [34005,230681], + [34007,254073], + [34009,48925], + [34011,68160], + [34013,376766], + [34015,148892], + [34017,360027], + [34019,65910], + [34021,195547], + [34023,436315], + [34025,328722], + [34027,262574], + [34029,267076], + [34031,248896], + [34033,31292], + [34035,174019], + [34037,77688], + [34039,280005], + [34041,57261], + [35001,320453], + [35003,1188], + [35005,27106], + [35006,9072], + [35007,6153], + [35009,21696], + [35011,841], + [35013,93976], + [35015,29052], + [35017,12521], + [35019,1615], + [35021,318], + [35023,2148], + [35025,30719], + [35027,8808], + [35028,8461], + [35029,11374], + [35031,23951], + [35033,2266], + [35035,24754], + [35037,3304], + [35039,16514], + [35041,8127], + [35043,61217], + [35045,55332], + [35047,11003], + [35049,72660], + [35051,3951], + [35053,6478], + [35055,15035], + [35057,5574], + [35059,1902], + [35061,29576], + [36001,157958], + [36003,23425], + [36005,609078], + [36007,88379], + [36009,36786], + [36011,37779], + [36013,58030], + [36015,38337], + [36017,23286], + [36019,36140], + [36021,31463], + [36023,23765], + [36025,20118], + [36027,142866], + [36029,450411], + [36031,17626], + [36033,20601], + [36035,23537], + [36037,30155], + [36039,20806], + [36041,2440], + [36043,28978], + [36045,46808], + [36047,1224532], + [36049,11918], + [36051,31084], + [36053,33571], + [36055,366103], + [36057,22364], + [36059,688753], + [36061,913131], + [36063,101979], + [36065,103624], + [36067,225647], + [36069,55012], + [36071,176202], + [36073,18124], + [36075,55299], + [36077,30135], + [36079,50488], + [36081,1159346], + [36083,81513], + [36085,221656], + [36087,150029], + [36089,47277], + [36091,116159], + [36093,76434], + [36095,14804], + [36097,8643], + [36099,15584], + [36101,44285], + [36103,769481], + [36105,33423], + [36107,23884], + [36109,55000], + [36111,88385], + [36113,32440], + [36115,28691], + [36117,44604], + [36119,472758], + [36121,18435], + [36123,11744], + [37001,76827], + [37003,17470], + [37005,4393], + [37007,10922], + [37009,12416], + [37011,7653], + [37013,20096], + [37015,8524], + [37017,14300], + [37019,47714], + [37021,127750], + [37023,39375], + [37025,94340], + [37027,35502], + [37029,4554], + [37031,31088], + [37033,9656], + [37035,74671], + [37037,32250], + [37039,11107], + [37041,5680], + [37043,4107], + [37045,45990], + [37047,23030], + [37049,41105], + [37051,127592], + [37053,12717], + [37055,20118], + [37057,78406], + [37059,19685], + [37061,26591], + [37063,152993], + [37065,23245], + [37067,177327], + [37069,28304], + [37071,100840], + [37073,5198], + [37075,3318], + [37077,28137], + [37079,9415], + [37081,253379], + [37083,21271], + [37085,49388], + [37087,27255], + [37089,49434], + [37091,9386], + [37093,19400], + [37095,2200], + [37097,79966], + [37099,18369], + [37101,85885], + [37103,4489], + [37105,25024], + [37107,27862], + [37109,39646], + [37111,20811], + [37113,15040], + [37115,9399], + [37117,9885], + [37119,548086], + [37121,6537], + [37123,11473], + [37125,38185], + [37127,44251], + [37129,110572], + [37131,7945], + [37133,64033], + [37135,72691], + [37137,5302], + [37139,17281], + [37141,25315], + [37143,5102], + [37145,17945], + [37147,87492], + [37149,8408], + [37151,66648], + [37153,16940], + [37155,51134], + [37157,41126], + [37159,62452], + [37161,25460], + [37163,29643], + [37165,11997], + [37167,28532], + [37169,21788], + [37171,33014], + [37173,6489], + [37175,13345], + [37177,1554], + [37179,108820], + [37181,18063], + [37183,523577], + [37185,7222], + [37187,5042], + [37189,27039], + [37191,53869], + [37193,29546], + [37195,37633], + [37197,17528], + [37199,7491], + [38001,1113], + [38003,5600], + [38005,2515], + [38007,491], + [38009,3259], + [38011,1895], + [38013,1299], + [38015,47474], + [38017,92834], + [38019,2053], + [38021,2589], + [38023,1874], + [38025,4298], + [38027,1292], + [38029,1561], + [38031,1633], + [38033,976], + [38035,36997], + [38037,1298], + [38039,1186], + [38041,1539], + [38043,1280], + [38045,2260], + [38047,928], + [38049,3304], + [38051,1247], + [38053,9195], + [38055,4891], + [38057,4151], + [38059,15967], + [38061,9063], + [38063,1534], + [38065,882], + [38067,3604], + [38069,1806], + [38071,5676], + [38073,2732], + [38075,1408], + [38077,8521], + [38079,4792], + [38081,2166], + [38083,726], + [38085,1302], + [38087,513], + [38089,21338], + [38091,1029], + [38093,10441], + [38095,1236], + [38097,4460], + [38099,5576], + [38101,34553], + [38103,2195], + [38105,31868], + [39001,10512], + [39003,48339], + [39005,25543], + [39007,44923], + [39009,27600], + [39011,24133], + [39013,31819], + [39015,19682], + [39017,186523], + [39019,13569], + [39021,19928], + [39023,64963], + [39025,102563], + [39027,16942], + [39029,50091], + [39031,15771], + [39033,19580], + [39035,616481], + [39037,26133], + [39039,18949], + [39041,100376], + [39043,37405], + [39045,74646], + [39047,14133], + [39049,647277], + [39051,22360], + [39053,12404], + [39055,49092], + [39057,79707], + [39059,19087], + [39061,401401], + [39063,40435], + [39065,15104], + [39067,7352], + [39069,13746], + [39071,17321], + [39073,13175], + [39075,19895], + [39077,27879], + [39079,13220], + [39081,29784], + [39083,31116], + [39085,124573], + [39087,25837], + [39089,86626], + [39091,23079], + [39093,150438], + [39095,208834], + [39097,20453], + [39099,107951], + [39101,27860], + [39103,94993], + [39105,9184], + [39107,22651], + [39109,52052], + [39111,5874], + [39113,249014], + [39115,6666], + [39117,16797], + [39119,39338], + [39121,5081], + [39123,21488], + [39125,9010], + [39127,15811], + [39129,25794], + [39131,10500], + [39133,86810], + [39135,21129], + [39137,18642], + [39139,54500], + [39141,33655], + [39143,31284], + [39145,29873], + [39147,27157], + [39149,23645], + [39151,188218], + [39153,272172], + [39155,92579], + [39157,45304], + [39159,26797], + [39161,14401], + [39163,5513], + [39165,110934], + [39167,28222], + [39169,59512], + [39171,18779], + [39173,69144], + [39175,12351], + [40001,8085], + [40003,3087], + [40005,4794], + [40007,3094], + [40009,12737], + [40011,4478], + [40013,17829], + [40015,11128], + [40017,65805], + [40019,21991], + [40021,18500], + [40023,5807], + [40025,1273], + [40027,135559], + [40029,2297], + [40031,49239], + [40033,2846], + [40035,6046], + [40037,30926], + [40039,15879], + [40041,17081], + [40043,2399], + [40045,2334], + [40047,29610], + [40049,12610], + [40051,25367], + [40053,2805], + [40055,2029], + [40057,1276], + [40059,1968], + [40061,4336], + [40063,5635], + [40065,10645], + [40067,2579], + [40069,3627], + [40071,19255], + [40073,7950], + [40075,4050], + [40077,3955], + [40079,19338], + [40081,15469], + [40083,20959], + [40085,5426], + [40087,18092], + [40089,14136], + [40091,7030], + [40093,4351], + [40095,6924], + [40097,18750], + [40099,6540], + [40101,29257], + [40103,5532], + [40105,4748], + [40107,4447], + [40109,369067], + [40111,15971], + [40113,20940], + [40115,13787], + [40117,7294], + [40119,38328], + [40121,17136], + [40123,17736], + [40125,32075], + [40127,4690], + [40129,1792], + [40131,43648], + [40133,9554], + [40135,16660], + [40137,20268], + [40139,9332], + [40141,3290], + [40143,311137], + [40145,35533], + [40147,24425], + [40149,5594], + [40151,5281], + [40153,10748], + [41001,6704], + [41003,44283], + [41005,200582], + [41007,17998], + [41009,22351], + [41011,26024], + [41013,9002], + [41015,8613], + [41017,80928], + [41019,43992], + [41021,823], + [41023,3132], + [41025,3276], + [41027,13711], + [41029,96538], + [41031,9375], + [41033,32729], + [41035,28557], + [41037,3488], + [41039,169066], + [41041,20523], + [41043,54021], + [41045,12020], + [41047,149071], + [41049,5470], + [41051,419052], + [41053,35467], + [41055,880], + [41057,11151], + [41059,35235], + [41061,11574], + [41063,3203], + [41065,13555], + [41067,292797], + [41069,728], + [41071,49966], + [42001,55132], + [42003,646617], + [42005,33153], + [42007,85927], + [42009,24263], + [42011,211004], + [42013,60948], + [42015,31627], + [42017,335296], + [42019,97441], + [42021,63007], + [42023,2299], + [42025,31594], + [42027,77636], + [42029,273880], + [42031,18439], + [42033,36700], + [42035,18968], + [42037,34233], + [42039,41255], + [42041,126113], + [42043,139336], + [42045,290198], + [42047,16358], + [42049,134640], + [42051,58474], + [42053,1929], + [42055,76516], + [42057,7302], + [42059,18517], + [42061,19862], + [42063,43208], + [42065,20855], + [42067,11857], + [42069,106718], + [42071,272597], + [42073,42611], + [42075,70133], + [42077,183072], + [42079,159038], + [42081,61533], + [42083,19317], + [42085,53070], + [42087,21095], + [42089,79848], + [42091,436596], + [42093,9241], + [42095,155369], + [42097,43931], + [42099,24013], + [42101,691042], + [42103,25135], + [42105,7570], + [42107,68984], + [42109,19861], + [42111,35001], + [42113,3060], + [42115,21444], + [42117,20456], + [42119,19129], + [42121,24692], + [42123,20174], + [42125,106172], + [42127,22345], + [42129,183230], + [42131,14274], + [42133,230710], + [44001,26163], + [44003,91468], + [44005,44084], + [44007,324598], + [44009,69599], + [45001,10576], + [45003,72970], + [45005,2868], + [45007,86688], + [45009,5563], + [45011,8646], + [45013,69435], + [45015,90878], + [45017,6885], + [45019,192333], + [45021,23662], + [45023,13433], + [45025,21219], + [45027,12987], + [45029,16647], + [45031,29750], + [45033,12600], + [45035,70278], + [45037,10555], + [45039,10031], + [45041,64856], + [45043,24837], + [45045,235564], + [45047,31672], + [45049,8315], + [45051,134210], + [45053,11431], + [45055,28434], + [45057,35278], + [45059,29890], + [45061,6452], + [45063,141521], + [45065,3488], + [45067,12860], + [45069,9972], + [45071,18558], + [45073,34185], + [45075,37853], + [45077,54861], + [45079,193973], + [45081,8657], + [45083,136899], + [45085,44406], + [45087,11503], + [45089,12649], + [45091,122649], + [46003,1603], + [46005,9394], + [46007,1131], + [46009,2994], + [46011,18133], + [46013,20954], + [46015,2559], + [46017,732], + [46019,5074], + [46021,848], + [46023,4006], + [46025,1984], + [46027,7070], + [46029,15320], + [46031,1487], + [46033,3961], + [46035,11257], + [46037,2869], + [46039,2328], + [46041,2365], + [46043,1720], + [46045,2227], + [46047,3001], + [46049,1139], + [46051,4682], + [46053,2069], + [46055,1085], + [46057,3120], + [46059,1823], + [46061,1804], + [46063,772], + [46065,9940], + [46067,3649], + [46069,710], + [46071,1332], + [46073,1196], + [46075,605], + [46077,2877], + [46079,6310], + [46081,12612], + [46083,29488], + [46085,1800], + [46087,3150], + [46089,1125], + [46091,2520], + [46093,13261], + [46095,824], + [46097,1237], + [46099,104333], + [46101,3962], + [46102,"NA"], + [46103,53893], + [46105,1547], + [46107,1197], + [46109,4846], + [46111,1240], + [46115,3381], + [46117,1854], + [46119,882], + [46121,3102], + [46123,3120], + [46125,4657], + [46127,7994], + [46129,2359], + [46135,11345], + [46137,1002], + [47001,32927], + [47003,19391], + [47005,6690], + [47007,4267], + [47009,58590], + [47011,48961], + [47013,14669], + [47015,5765], + [47017,12447], + [47019,23722], + [47021,19726], + [47023,8109], + [47025,12621], + [47027,2983], + [47029,14468], + [47031,24334], + [47033,6854], + [47035,22983], + [47037,354598], + [47039,4772], + [47041,7417], + [47043,23467], + [47045,16514], + [47047,17738], + [47049,7007], + [47051,19552], + [47053,21124], + [47055,14163], + [47057,9175], + [47059,30031], + [47061,5076], + [47063,26219], + [47065,163932], + [47067,2059], + [47069,9531], + [47071,10419], + [47073,23756], + [47075,7721], + [47077,12151], + [47079,13857], + [47081,10280], + [47083,3282], + [47085,8346], + [47087,4449], + [47089,22932], + [47091,7103], + [47093,224743], + [47095,2093], + [47097,9777], + [47099,17556], + [47101,4832], + [47103,15266], + [47105,21691], + [47107,22280], + [47109,8905], + [47111,9915], + [47113,46282], + [47115,11580], + [47117,14384], + [47119,40925], + [47121,4848], + [47123,18941], + [47125,76843], + [47127,3273], + [47129,7749], + [47131,12769], + [47133,9079], + [47135,3032], + [47137,2268], + [47139,7362], + [47141,31900], + [47143,13208], + [47145,22465], + [47147,33334], + [47149,148975], + [47151,8213], + [47153,5705], + [47155,48668], + [47157,427667], + [47159,8306], + [47161,5203], + [47163,69534], + [47165,86070], + [47167,27247], + [47169,3653], + [47171,7090], + [47173,7192], + [47175,2098], + [47177,17335], + [47179,57441], + [47181,6425], + [47183,15804], + [47185,11382], + [47187,103213], + [47189,62232], + [48001,21793], + [48003,9529], + [48005,37742], + [48007,10201], + [48009,4242], + [48011,1004], + [48013,20372], + [48015,14136], + [48017,2958], + [48019,9126], + [48021,36713], + [48023,1652], + [48025,10735], + [48027,134896], + [48029,866455], + [48031,5679], + [48033,423], + [48035,8140], + [48037,39662], + [48039,166712], + [48041,104349], + [48043,4067], + [48045,637], + [48047,2707], + [48049,15852], + [48051,7593], + [48053,21502], + [48055,17241], + [48057,11089], + [48059,5832], + [48061,166361], + [48063,5218], + [48065,3150], + [48067,12283], + [48069,3796], + [48071,17843], + [48073,21183], + [48075,2863], + [48077,5019], + [48079,1398], + [48081,1438], + [48083,3121], + [48085,474119], + [48087,1259], + [48089,10277], + [48091,59850], + [48093,5537], + [48095,1414], + [48097,20546], + [48099,24722], + [48101,605], + [48103,2006], + [48105,1933], + [48107,2698], + [48109,1012], + [48111,3903], + [48113,1250984], + [48115,4899], + [48117,9108], + [48119,2653], + [48121,414162], + [48123,10016], + [48125,745], + [48127,7660], + [48129,1620], + [48131,5530], + [48133,8362], + [48135,82387], + [48137,867], + [48139,79088], + [48141,344510], + [48143,20101], + [48145,6549], + [48147,15279], + [48149,13075], + [48151,1864], + [48153,2964], + [48155,579], + [48157,347068], + [48159,4659], + [48161,7844], + [48163,10343], + [48165,9367], + [48167,157629], + [48169,2244], + [48171,12521], + [48173,830], + [48175,3572], + [48177,9938], + [48179,9787], + [48181,60353], + [48183,61148], + [48185,11824], + [48187,71582], + [48189,13525], + [48191,1264], + [48193,3567], + [48195,3242], + [48197,1648], + [48199,25392], + [48201,2230152], + [48203,32194], + [48205,2901], + [48207,2694], + [48209,94045], + [48211,2546], + [48213,34738], + [48215,332027], + [48217,15883], + [48219,12091], + [48221,24258], + [48223,17491], + [48225,9804], + [48227,13593], + [48229,1251], + [48231,38573], + [48233,10519], + [48235,833], + [48237,4307], + [48239,7632], + [48241,14445], + [48243,1147], + [48245,110139], + [48247,2198], + [48249,20106], + [48251,74371], + [48253,5805], + [48255,6275], + [48257,53609], + [48259,18681], + [48261,338], + [48263,513], + [48265,21432], + [48267,2113], + [48269,225], + [48271,1229], + [48273,15261], + [48275,1739], + [48277,22143], + [48279,6030], + [48281,8968], + [48283,4577], + [48285,8975], + [48287,9341], + [48289,7221], + [48291,30982], + [48293,9202], + [48295,1749], + [48297,6116], + [48299,8089], + [48301,78], + [48303,147807], + [48305,2862], + [48307,4113], + [48309,112906], + [48311,1060], + [48313,5025], + [48315,4481], + [48317,2687], + [48319,1897], + [48321,16680], + [48323,23397], + [48325,20403], + [48327,886], + [48329,90947], + [48331,10228], + [48333,2049], + [48335,2905], + [48337,10137], + [48339,253834], + [48341,11298], + [48343,5626], + [48345,497], + [48347,28628], + [48349,23140], + [48351,5560], + [48353,7048], + [48355,168240], + [48357,5573], + [48359,941], + [48361,37893], + [48363,13376], + [48365,12560], + [48367,59108], + [48369,5127], + [48371,6864], + [48373,17228], + [48375,56845], + [48377,3412], + [48379,5406], + [48381,68845], + [48383,2077], + [48385,1059], + [48387,4937], + [48389,5759], + [48391,3600], + [48393,450], + [48395,7148], + [48397,43416], + [48399,4973], + [48401,24206], + [48403,3542], + [48405,2826], + [48407,11413], + [48409,30685], + [48411,2231], + [48413,1780], + [48415,8612], + [48417,2374], + [48419,11613], + [48421,1505], + [48423,102258], + [48425,4136], + [48427,25993], + [48429,4291], + [48431,812], + [48433,697], + [48435,2022], + [48437,2881], + [48439,991015], + [48441,64418], + [48443,480], + [48445,5612], + [48447,833], + [48449,12910], + [48451,54668], + [48453,644428], + [48455,5524], + [48457,7576], + [48459,18577], + [48461,1875], + [48463,11685], + [48465,19384], + [48467,23901], + [48469,46261], + [48471,23156], + [48473,21320], + [48475,5922], + [48477,15700], + [48479,111193], + [48481,21574], + [48483,3082], + [48485,56512], + [48487,5296], + [48489,7171], + [48491,255361], + [48493,22549], + [48495,3286], + [48497,28492], + [48499,16768], + [48501,4294], + [48503,8671], + [48505,6939], + [48507,3898], + [49001,2967], + [49003,23436], + [49005,58904], + [49007,8702], + [49009,431], + [49011,155909], + [49013,9582], + [49015,4616], + [49017,2719], + [49019,5527], + [49021,19928], + [49023,4798], + [49025,3565], + [49027,5966], + [49029,4692], + [49031,460], + [49033,1006], + [49035,575842], + [49037,5610], + [49039,11071], + [49041,9271], + [49043,22543], + [49045,28914], + [49047,16000], + [49049,255288], + [49051,12721], + [49053,61525], + [49055,1386], + [49057,114919], + [50001,20823], + [50003,18675], + [50005,15275], + [50007,95549], + [50009,2770], + [50011,27475], + [50013,4068], + [50015,13757], + [50017,15897], + [50019,13625], + [50021,31774], + [50023,34263], + [50025,23519], + [50027,29705], + [51001,16062], + [51003,53593], + [51005,7196], + [51007,6209], + [51009,15629], + [51011,7116], + [51013,144531], + [51015,36843], + [51017,2592], + [51019,38441], + [51021,2866], + [51023,17687], + [51025,6467], + [51027,7771], + [51029,6302], + [51031,26633], + [51033,14772], + [51035,13188], + [51036,3719], + [51037,5300], + [51041,177421], + [51043,7545], + [51045,2458], + [51047,23348], + [51049,4538], + [51051,5196], + [51053,13462], + [51057,5682], + [51059,619812], + [51061,35919], + [51063,8301], + [51065,13166], + [51067,27163], + [51069,44475], + [51071,8066], + [51073,19434], + [51075,10539], + [51077,7070], + [51079,9851], + [51081,4245], + [51083,15552], + [51085,55794], + [51087,176232], + [51089,22923], + [51091,1419], + [51093,18972], + [51095,34611], + [51097,3644], + [51099,12080], + [51101,8752], + [51103,5348], + [51105,8840], + [51107,195972], + [51109,18448], + [51111,5341], + [51113,7245], + [51115,4125], + [51117,12628], + [51119,5027], + [51121,49774], + [51125,7392], + [51127,11076], + [51131,6082], + [51133,5640], + [51135,7078], + [51137,16180], + [51139,11830], + [51141,7724], + [51143,30257], + [51145,13662], + [51147,10026], + [51149,14764], + [51153,231813], + [51155,16458], + [51157,3797], + [51159,3972], + [51161,49979], + [51163,10299], + [51165,40378], + [51167,11277], + [51169,9784], + [51171,21222], + [51173,13448], + [51175,9124], + [51177,64117], + [51179,66681], + [51181,3664], + [51183,4108], + [51185,17225], + [51187,19916], + [51191,27619], + [51193,9012], + [51195,14435], + [51197,13790], + [51199,31832], + [51510,93538], + [51520,7721], + [51530,3306], + [51540,24220], + [51550,117267], + [51570,8703], + [51580,2488], + [51590,19600], + [51595,2313], + [51600,13243], + [51610,7789], + [51620,3614], + [51630,13671], + [51640,2994], + [51650,65586], + [51660,24216], + [51670,9658], + [51678,2273], + [51680,36000], + [51683,22115], + [51685,8161], + [51690,5545], + [51700,90707], + [51710,112049], + [51720,1807], + [51730,13796], + [51735,6298], + [51740,45095], + [51750,8468], + [51760,112378], + [51770,50088], + [51775,13120], + [51790,12040], + [51800,42366], + [51810,231758], + [51820,10070], + [51830,6637], + [51840,14432], + [53001,8552], + [53003,9707], + [53005,89907], + [53007,41171], + [53009,26738], + [53011,209309], + [53013,1740], + [53015,43617], + [53017,19328], + [53019,2452], + [53021,38056], + [53023,960], + [53025,44845], + [53027,27202], + [53029,31725], + [53031,11196], + [53033,1158195], + [53035,113577], + [53037,20200], + [53039,9586], + [53041,30544], + [53043,5037], + [53045,23134], + [53047,21316], + [53049,7857], + [53051,4581], + [53053,385485], + [53055,7692], + [53057,56490], + [53059,4947], + [53061,395565], + [53063,225474], + [53065,17400], + [53067,123392], + [53069,1276], + [53071,28460], + [53073,101316], + [53075,22153], + [53077,119487], + [54001,6819], + [54003,52512], + [54005,8420], + [54007,5224], + [54009,10101], + [54011,42108], + [54013,2902], + [54015,3317], + [54017,3632], + [54019,16596], + [54021,2741], + [54023,5807], + [54025,15127], + [54027,9407], + [54029,13127], + [54031,5348], + [54033,31780], + [54035,11826], + [54037,26881], + [54039,88618], + [54041,7173], + [54043,7519], + [54045,11891], + [54047,5771], + [54049,26419], + [54051,14241], + [54053,10127], + [54055,22214], + [54057,11782], + [54059,7710], + [54061,50271], + [54063,5559], + [54065,7397], + [54067,10053], + [54069,20970], + [54071,3477], + [54073,2973], + [54075,3536], + [54077,14462], + [54079,25886], + [54081,31198], + [54083,11801], + [54085,4591], + [54087,5283], + [54089,4480], + [54091,7737], + [54093,3358], + [54095,3603], + [54097,9539], + [54099,15848], + [54101,3438], + [54103,7259], + [54105,2263], + [54107,37785], + [54109,7947], + [55001,8399], + [55003,8055], + [55005,24080], + [55007,7545], + [55009,138476], + [55011,6463], + [55013,7372], + [55015,27151], + [55017,33070], + [55019,16972], + [55021,31201], + [55023,7989], + [55025,305805], + [55027,47540], + [55029,15378], + [55031,23549], + [55033,23645], + [55035,58005], + [55037,2206], + [55039,57127], + [55041,4024], + [55043,27747], + [55045,20842], + [55047,10048], + [55049,13556], + [55051,2681], + [55053,10208], + [55055,45824], + [55057,13387], + [55059,86935], + [55061,10843], + [55063,66710], + [55065,9403], + [55067,9570], + [55069,15381], + [55071,42572], + [55073,73176], + [55075,21101], + [55077,7328], + [55078,1600], + [55079,478784], + [55081,22552], + [55083,20352], + [55085,18774], + [55087,101310], + [55089,47955], + [55091,4032], + [55093,24023], + [55095,24445], + [55097,39305], + [55099,6780], + [55101,99872], + [55103,9311], + [55105,82308], + [55107,6997], + [55109,48320], + [55111,34996], + [55113,7959], + [55115,21302], + [55117,61231], + [55119,10640], + [55121,16531], + [55123,15046], + [55125,10085], + [55127,57017], + [55129,7934], + [55131,75787], + [55133,220628], + [55135,27329], + [55137,11619], + [55139,91612], + [55141,34773], + [56001,20487], + [56003,5579], + [56005,26254], + [56007,8438], + [56009,8340], + [56011,3711], + [56013,20557], + [56015,7139], + [56017,2487], + [56019,4480], + [56021,48762], + [56023,8235], + [56025,43355], + [56027,1351], + [56029,15747], + [56031,4780], + [56033,15903], + [56035,4872], + [56037,23290], + [56039,14436], + [56041,9882], + [56043,4276], + [56045,3971] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2015.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2015.json new file mode 100644 index 0000000..8b772f2 --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2015.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2015", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2015"], + [1001,25602], + [1003,87705], + [1005,8609], + [1007,8572], + [1009,24473], + [1011,4777], + [1013,9134], + [1015,45910], + [1017,14975], + [1019,11158], + [1021,19133], + [1023,4378], + [1025,7992], + [1027,5548], + [1029,5677], + [1031,20269], + [1033,23603], + [1035,4681], + [1037,4426], + [1039,15457], + [1041,6355], + [1043,36384], + [1045,19837], + [1047,15589], + [1049,28767], + [1051,36743], + [1053,14597], + [1055,42684], + [1057,6422], + [1059,13661], + [1061,10785], + [1063,2878], + [1065,6047], + [1067,6715], + [1069,44550], + [1071,23461], + [1073,310883], + [1075,5615], + [1077,42649], + [1079,13673], + [1081,70859], + [1083,39948], + [1085,3827], + [1087,7967], + [1089,170889], + [1091,7406], + [1093,12483], + [1095,40382], + [1097,186910], + [1099,7340], + [1101,105051], + [1103,54904], + [1105,3485], + [1107,8007], + [1109,14939], + [1111,9433], + [1113,24104], + [1115,38570], + [1117,108198], + [1119,5107], + [1121,35134], + [1123,18740], + [1125,98867], + [1127,25560], + [1129,6699], + [1131,2824], + [1133,9375], + [2013,2479], + [2016,4072], + [2020,157011], + [2050,7377], + [2060,382], + [2068,1072], + [2070,2044], + [2090,46469], + [2100,1089], + [2105,1136], + [2110,17118], + [2122,27685], + [2130,6974], + [2150,6630], + [2158,"NA"], + [2164,647], + [2170,46260], + [2180,4090], + [2185,4312], + [2188,2916], + [2195,1497], + [2198,2768], + [2220,4607], + [2230,814], + [2240,3013], + [2261,4889], + [2275,1033], + [2282,259], + [2290,2415], + [4001,20518], + [4003,50087], + [4005,72942], + [4007,21110], + [4009,14447], + [4011,4027], + [4012,8135], + [4013,2013552], + [4015,79210], + [4017,40521], + [4019,463229], + [4021,156475], + [4023,19783], + [4025,95782], + [4027,93222], + [5001,9487], + [5003,8146], + [5005,16217], + [5007,121826], + [5009,15844], + [5011,4383], + [5013,2408], + [5015,12657], + [5017,3726], + [5019,9453], + [5021,6297], + [5023,9609], + [5025,3358], + [5027,9537], + [5029,8639], + [5031,50999], + [5033,26854], + [5035,21424], + [5037,8101], + [5039,2873], + [5041,5547], + [5043,7926], + [5045,59915], + [5047,7412], + [5049,4759], + [5051,39950], + [5053,8258], + [5055,19950], + [5057,9856], + [5059,14158], + [5061,6057], + [5063,15667], + [5065,4979], + [5067,6188], + [5069,28769], + [5071,10399], + [5073,2617], + [5075,7046], + [5077,3180], + [5079,4126], + [5081,5594], + [5083,9162], + [5085,33000], + [5087,7082], + [5089,6524], + [5091,19910], + [5093,18370], + [5095,2973], + [5097,3227], + [5099,3633], + [5101,3394], + [5103,9882], + [5105,4201], + [5107,6995], + [5109,4168], + [5111,10064], + [5113,8295], + [5115,29676], + [5117,3728], + [5119,186061], + [5121,6184], + [5123,8948], + [5125,55992], + [5127,4486], + [5129,3027], + [5131,57731], + [5133,5603], + [5135,6004], + [5137,4705], + [5139,16871], + [5141,6427], + [5143,115236], + [5145,34536], + [5147,3031], + [5149,8941], + [6001,823130], + [6003,546], + [6005,14343], + [6007,101337], + [6009,20586], + [6011,11070], + [6013,547455], + [6015,9876], + [6017,88350], + [6019,441364], + [6021,12988], + [6023,62454], + [6025,78162], + [6027,9107], + [6029,390873], + [6031,57873], + [6033,29060], + [6035,10783], + [6037,5002332], + [6039,60021], + [6041,139512], + [6043,8027], + [6045,39930], + [6047,114340], + [6049,3305], + [6051,8262], + [6053,218811], + [6055,73937], + [6057,48140], + [6059,1588764], + [6061,176855], + [6063,7900], + [6065,1035694], + [6067,685987], + [6069,29342], + [6071,921170], + [6073,1554903], + [6075,545704], + [6077,315286], + [6079,139613], + [6081,437690], + [6083,217769], + [6085,1009804], + [6087,143426], + [6089,74324], + [6091,1356], + [6093,17920], + [6095,205325], + [6097,258426], + [6099,241609], + [6101,44704], + [6103,25076], + [6105,5142], + [6107,204111], + [6109,21578], + [6111,428437], + [6113,104706], + [6115,27881], + [8001,247717], + [8003,7649], + [8005,334230], + [8007,6010], + [8009,1969], + [8011,1731], + [8013,176707], + [8014,35527], + [8015,8491], + [8017,1010], + [8019,5542], + [8021,3597], + [8023,1622], + [8025,1353], + [8027,1988], + [8029,13438], + [8031,375443], + [8033,1322], + [8035,172093], + [8037,32734], + [8039,13256], + [8041,307567], + [8043,14497], + [8045,30458], + [8047,3397], + [8049,9051], + [8051,9787], + [8053,440], + [8055,2369], + [8057,834], + [8059,308750], + [8061,791], + [8063,4319], + [8065,4566], + [8067,29848], + [8069,180520], + [8071,6126], + [8073,2169], + [8075,10928], + [8077,71779], + [8079,445], + [8081,7104], + [8083,12335], + [8085,19321], + [8087,14663], + [8089,7880], + [8091,2153], + [8093,9365], + [8095,2356], + [8097,10734], + [8099,5811], + [8101,71679], + [8103,2805], + [8105,4865], + [8107,14274], + [8109,3077], + [8111,470], + [8113,5071], + [8115,1146], + [8117,20553], + [8119,11400], + [8121,2783], + [8123,147722], + [8125,5129], + [9001,481852], + [9003,474499], + [9005,105607], + [9007,92262], + [9009,456601], + [9011,136999], + [9013,85126], + [9015,62883], + [10001,76595], + [10003,292479], + [10005,98037], + [11001,388057], + [12001,129509], + [12003,11174], + [12005,87546], + [12007,10746], + [12009,256470], + [12011,988228], + [12013,4942], + [12015,67666], + [12017,47816], + [12019,98464], + [12021,163708], + [12023,28978], + [12027,13379], + [12029,5587], + [12031,460613], + [12033,138136], + [12035,43676], + [12037,4773], + [12039,18212], + [12041,6499], + [12043,4711], + [12045,5995], + [12047,4522], + [12049,10091], + [12051,15099], + [12053,66100], + [12055,35344], + [12057,689381], + [12059,6692], + [12061,61223], + [12063,17313], + [12065,5375], + [12067,3204], + [12069,140801], + [12071,319381], + [12073,147573], + [12075,16448], + [12077,2638], + [12079,7476], + [12081,164899], + [12083,130198], + [12085,69503], + [12086,1317053], + [12087,45783], + [12089,36565], + [12091,91741], + [12093,17249], + [12095,686092], + [12097,157274], + [12099,690937], + [12101,215394], + [12103,470699], + [12105,279976], + [12107,27267], + [12109,113384], + [12111,131310], + [12113,73970], + [12115,177827], + [12117,236649], + [12119,28635], + [12121,17937], + [12123,8981], + [12125,4736], + [12127,238676], + [12129,13960], + [12131,27844], + [12133,9610], + [13001,8673], + [13003,3866], + [13005,4896], + [13007,1124], + [13009,17750], + [13011,8222], + [13013,36122], + [13015,46858], + [13017,5477], + [13019,7045], + [13021,67932], + [13023,4372], + [13025,6905], + [13027,6886], + [13029,16149], + [13031,34740], + [13033,9131], + [13035,10126], + [13037,2129], + [13039,22305], + [13043,4967], + [13045,51792], + [13047,31376], + [13049,4768], + [13051,133266], + [13053,2110], + [13055,10553], + [13057,120360], + [13059,57140], + [13061,859], + [13063,126392], + [13065,2774], + [13067,398319], + [13069,17291], + [13071,20053], + [13073,68650], + [13075,7287], + [13077,67859], + [13079,5576], + [13081,9426], + [13083,7853], + [13085,10945], + [13087,11394], + [13089,373115], + [13091,6957], + [13093,4759], + [13095,37879], + [13097,68340], + [13099,4358], + [13101,1866], + [13103,27172], + [13105,7613], + [13107,8317], + [13109,4663], + [13111,10115], + [13113,54164], + [13115,42982], + [13117,104421], + [13119,9287], + [13121,514749], + [13123,11723], + [13125,1234], + [13127,37695], + [13129,26154], + [13131,10422], + [13133,6827], + [13135,452452], + [13137,18818], + [13139,92791], + [13141,2488], + [13143,11870], + [13145,15700], + [13147,10402], + [13149,4913], + [13151,105040], + [13153,65689], + [13155,3134], + [13157,30748], + [13159,6441], + [13161,6343], + [13163,6367], + [13165,3104], + [13167,3872], + [13169,13477], + [13171,7682], + [13173,3782], + [13175,18642], + [13177,14130], + [13179,24973], + [13181,3365], + [13183,7086], + [13185,50366], + [13187,15321], + [13189,8786], + [13191,5820], + [13193,4617], + [13195,12626], + [13197,3445], + [13199,8672], + [13201,2671], + [13205,8717], + [13207,12670], + [13209,3712], + [13211,8422], + [13213,16070], + [13215,78898], + [13217,48436], + [13219,17592], + [13221,6728], + [13223,76339], + [13225,11288], + [13227,13876], + [13229,8046], + [13231,8229], + [13233,18151], + [13235,4013], + [13237,7802], + [13239,817], + [13241,6504], + [13243,2426], + [13245,84282], + [13247,42272], + [13249,2110], + [13251,5041], + [13253,3090], + [13255,27114], + [13257,10862], + [13259,2114], + [13261,12832], + [13263,2696], + [13265,593], + [13267,9277], + [13269,2773], + [13271,4825], + [13273,3632], + [13275,16815], + [13277,18347], + [13279,11864], + [13281,3915], + [13283,2701], + [13285,35599], + [13287,3192], + [13289,2965], + [13291,9832], + [13293,11130], + [13295,29400], + [13297,41677], + [13299,14488], + [13301,2640], + [13303,7198], + [13305,11568], + [13307,968], + [13309,1694], + [13311,13785], + [13313,45601], + [13315,2743], + [13317,3890], + [13319,3603], + [13321,8845], + [15001,88719], + [15003,467705], + [15005,"NA"], + [15007,35153], + [15009,83930], + [16001,217052], + [16003,1715], + [16005,41861], + [16007,2828], + [16009,4035], + [16011,22039], + [16013,11815], + [16015,3050], + [16017,18525], + [16019,50961], + [16021,5088], + [16023,1276], + [16025,648], + [16027,90939], + [16029,3762], + [16031,11452], + [16033,395], + [16035,3085], + [16037,2129], + [16039,10734], + [16041,6447], + [16043,7170], + [16045,7530], + [16047,7995], + [16049,6396], + [16051,12459], + [16053,11458], + [16055,71550], + [16057,19460], + [16059,3376], + [16061,1590], + [16063,2639], + [16065,19755], + [16067,10677], + [16069,20605], + [16071,2124], + [16073,5211], + [16075,11092], + [16077,3874], + [16079,5126], + [16081,5819], + [16083,39586], + [16085,4790], + [16087,4564], + [17001,32515], + [17003,2291], + [17005,7779], + [17007,26333], + [17009,2777], + [17011,17105], + [17013,2341], + [17015,7934], + [17017,6446], + [17019,104621], + [17021,15458], + [17023,8078], + [17025,6616], + [17027,20073], + [17029,24079], + [17031,2648861], + [17033,9629], + [17035,5904], + [17037,54601], + [17039,7931], + [17041,10082], + [17043,512100], + [17045,9428], + [17047,2943], + [17049,18410], + [17051,9698], + [17053,6508], + [17055,16482], + [17057,15785], + [17059,2465], + [17061,6045], + [17063,25486], + [17065,4375], + [17067,8910], + [17069,1527], + [17071,3748], + [17073,25072], + [17075,14823], + [17077,28620], + [17079,4638], + [17081,17168], + [17083,11074], + [17085,11447], + [17087,4133], + [17089,267465], + [17091,55189], + [17093,66278], + [17095,23199], + [17097,367049], + [17099,57378], + [17101,6142], + [17103,17839], + [17105,17243], + [17107,13008], + [17109,14066], + [17111,165957], + [17113,90841], + [17115,50527], + [17117,23044], + [17119,132970], + [17121,18088], + [17123,5708], + [17125,6607], + [17127,6107], + [17129,6738], + [17131,8192], + [17133,18090], + [17135,12036], + [17137,16978], + [17139,7362], + [17141,25909], + [17143,89973], + [17145,8854], + [17147,8345], + [17149,7612], + [17151,1768], + [17153,2089], + [17155,3040], + [17157,14299], + [17159,7461], + [17161,72233], + [17163,126135], + [17165,10344], + [17167,105388], + [17169,3481], + [17171,2556], + [17173,10226], + [17175,2761], + [17177,21537], + [17179,66832], + [17181,7352], + [17183,35440], + [17185,5620], + [17187,8563], + [17189,9352], + [17191,7498], + [17193,6926], + [17195,28506], + [17197,357074], + [17199,31915], + [17201,142138], + [17203,19571], + [18001,16900], + [18003,178025], + [18005,43580], + [18007,4578], + [18009,5242], + [18011,33494], + [18013,7443], + [18015,10022], + [18017,17760], + [18019,58893], + [18021,12368], + [18023,16919], + [18025,4918], + [18027,15695], + [18029,25214], + [18031,14293], + [18033,21784], + [18035,54442], + [18037,22675], + [18039,104716], + [18041,8990], + [18043,39932], + [18045,8049], + [18047,11387], + [18049,9862], + [18051,18860], + [18053,32522], + [18055,13754], + [18057,167234], + [18059,37370], + [18061,19417], + [18063,82861], + [18065,21664], + [18067,36987], + [18069,18641], + [18071,21786], + [18073,16357], + [18075,9946], + [18077,15326], + [18079,13167], + [18081,77588], + [18083,19027], + [18085,40662], + [18087,18900], + [18089,229689], + [18091,48522], + [18093,20278], + [18095,58222], + [18097,472332], + [18099,24009], + [18101,5047], + [18103,15751], + [18105,67370], + [18107,19266], + [18109,35368], + [18111,6961], + [18113,23651], + [18115,3179], + [18117,8725], + [18119,9285], + [18121,7053], + [18123,9231], + [18125,6189], + [18127,84691], + [18129,13299], + [18131,6274], + [18133,16401], + [18135,12686], + [18137,13634], + [18139,8838], + [18141,130406], + [18143,10286], + [18145,22626], + [18147,10974], + [18149,10548], + [18151,19981], + [18153,8658], + [18155,4854], + [18157,93117], + [18159,8382], + [18161,3561], + [18163,92238], + [18165,7226], + [18167,48986], + [18169,15387], + [18171,4097], + [18173,31754], + [18175,13526], + [18177,30648], + [18179,14038], + [18181,13610], + [18183,17019], + [19001,4226], + [19003,2292], + [19005,7703], + [19007,6228], + [19009,3239], + [19011,13780], + [19013,70545], + [19015,15322], + [19017,13978], + [19019,11322], + [19021,11590], + [19023,8285], + [19025,4459], + [19027,11310], + [19029,7461], + [19031,10992], + [19033,23023], + [19035,6346], + [19037,6460], + [19039,4772], + [19041,8856], + [19043,10299], + [19045,24432], + [19047,8754], + [19049,43706], + [19051,4179], + [19053,4431], + [19055,10692], + [19057,20532], + [19059,10217], + [19061,55757], + [19063,5667], + [19065,10821], + [19067,8707], + [19069,5962], + [19071,4152], + [19073,5573], + [19075,6736], + [19077,5625], + [19079,7235], + [19081,6370], + [19083,8821], + [19085,7544], + [19087,9604], + [19089,5379], + [19091,5346], + [19093,3963], + [19095,10390], + [19097,11173], + [19099,19119], + [19101,9157], + [19103,83940], + [19105,10789], + [19107,5428], + [19109,8839], + [19111,18283], + [19113,120278], + [19115,6029], + [19117,4405], + [19119,7068], + [19121,8241], + [19123,11844], + [19125,17446], + [19127,19452], + [19129,7430], + [19131,5599], + [19133,4766], + [19135,4040], + [19137,5174], + [19139,22230], + [19141,8436], + [19143,3547], + [19145,6576], + [19147,4868], + [19149,14801], + [19151,4313], + [19153,255841], + [19155,49037], + [19157,10517], + [19159,2569], + [19161,5646], + [19163,87585], + [19165,7023], + [19167,20773], + [19169,57467], + [19171,9676], + [19173,3241], + [19175,6581], + [19177,3844], + [19179,18026], + [19181,26728], + [19183,12400], + [19185,2852], + [19187,20370], + [19189,5174], + [19191,12237], + [19193,56239], + [19195,4231], + [19197,6913], + [20001,6606], + [20003,4135], + [20005,7470], + [20007,2662], + [20009,14591], + [20011,7119], + [20013,5355], + [20015,32035], + [20017,1252], + [20019,1551], + [20021,10414], + [20023,1358], + [20025,1159], + [20027,4117], + [20029,4312], + [20031,4741], + [20033,992], + [20035,17042], + [20037,18928], + [20039,1351], + [20041,9520], + [20043,4319], + [20045,64763], + [20047,1749], + [20049,1280], + [20051,17522], + [20053,2939], + [20055,20130], + [20057,18062], + [20059,14102], + [20061,12111], + [20063,1487], + [20065,1272], + [20067,3902], + [20069,3601], + [20071,935], + [20073,3289], + [20075,1652], + [20077,2855], + [20079,17208], + [20081,2358], + [20083,1027], + [20085,7240], + [20087,10187], + [20089,1374], + [20091,324703], + [20093,2148], + [20095,3649], + [20097,1448], + [20099,10753], + [20101,878], + [20103,35272], + [20105,1798], + [20107,4328], + [20109,1756], + [20111,16637], + [20113,17183], + [20115,6163], + [20117,5735], + [20119,2419], + [20121,16757], + [20123,3775], + [20125,16577], + [20127,3105], + [20129,1436], + [20131,5939], + [20133,6269], + [20135,1538], + [20137,2950], + [20139,8057], + [20141,2091], + [20143,3230], + [20145,3307], + [20147,2954], + [20149,11955], + [20151,5290], + [20153,1535], + [20155,30842], + [20157,2590], + [20159,5478], + [20161,35632], + [20163,2810], + [20165,1795], + [20167,3733], + [20169,30872], + [20171,2885], + [20173,246783], + [20175,10623], + [20177,91236], + [20179,1482], + [20181,3090], + [20183,2094], + [20185,2182], + [20187,1061], + [20189,3178], + [20191,11079], + [20193,4415], + [20195,1509], + [20197,3732], + [20199,877], + [20201,3129], + [20203,1255], + [20205,4008], + [20207,1611], + [20209,76154], + [21001,6946], + [21003,8589], + [21005,11200], + [21007,3604], + [21009,18393], + [21011,4713], + [21013,8815], + [21015,64971], + [21017,9659], + [21019,18130], + [21021,11992], + [21023,3689], + [21025,3990], + [21027,7912], + [21029,39107], + [21031,5046], + [21033,5395], + [21035,18358], + [21037,47322], + [21039,2315], + [21041,4957], + [21043,10195], + [21045,6690], + [21047,24695], + [21049,16732], + [21051,5421], + [21053,3842], + [21055,3823], + [21057,2906], + [21059,45150], + [21061,4640], + [21063,2121], + [21065,5284], + [21067,166522], + [21069,6236], + [21071,11913], + [21073,24018], + [21075,2082], + [21077,3804], + [21079,7609], + [21081,10979], + [21083,15388], + [21085,10677], + [21087,5016], + [21089,13613], + [21091,3850], + [21093,46634], + [21095,7475], + [21097,8398], + [21099,7769], + [21101,21208], + [21103,7599], + [21105,2039], + [21107,19635], + [21109,4323], + [21111,374488], + [21113,25054], + [21115,7629], + [21117,82447], + [21119,4818], + [21121,9772], + [21123,5858], + [21125,23480], + [21127,5128], + [21129,2072], + [21131,2932], + [21133,6859], + [21135,5054], + [21137,9011], + [21139,3685], + [21141,11682], + [21143,2955], + [21145,28783], + [21147,4835], + [21149,4214], + [21151,44515], + [21153,3509], + [21155,9211], + [21157,14846], + [21159,3236], + [21161,7447], + [21163,11795], + [21165,2372], + [21167,9782], + [21169,4009], + [21171,4611], + [21173,11796], + [21175,4497], + [21177,11667], + [21179,21129], + [21181,3327], + [21183,9411], + [21185,30687], + [21187,5517], + [21189,1185], + [21191,6608], + [21193,9009], + [21195,20891], + [21197,4915], + [21199,25801], + [21201,796], + [21203,6773], + [21205,10454], + [21207,6168], + [21209,26694], + [21211,22711], + [21213,8333], + [21215,9186], + [21217,11108], + [21219,5425], + [21221,5670], + [21223,3811], + [21225,6191], + [21227,58932], + [21229,6109], + [21231,7276], + [21233,6042], + [21235,13178], + [21237,1953], + [21239,14249], + [22001,25858], + [22003,8839], + [22005,61748], + [22007,9816], + [22009,15989], + [22011,15218], + [22013,5810], + [22015,58276], + [22017,110463], + [22019,99373], + [22021,4034], + [22023,3673], + [22025,3620], + [22027,6197], + [22029,7553], + [22031,11096], + [22033,235479], + [22035,2220], + [22037,8226], + [22039,13010], + [22041,7532], + [22043,8488], + [22045,31878], + [22047,14431], + [22049,7267], + [22051,219824], + [22053,13621], + [22055,120282], + [22057,46710], + [22059,6617], + [22061,21098], + [22063,68399], + [22065,3910], + [22067,10839], + [22069,16600], + [22071,182334], + [22073,72398], + [22075,10344], + [22077,10143], + [22079,58288], + [22081,3923], + [22083,8680], + [22085,9493], + [22087,19756], + [22089,25657], + [22091,4538], + [22093,9822], + [22095,20412], + [22097,33839], + [22099,24120], + [22101,24306], + [22103,117664], + [22105,54314], + [22107,1720], + [22109,53101], + [22111,9371], + [22113,25883], + [22115,17461], + [22117,17072], + [22119,15608], + [22121,13281], + [22123,4129], + [22125,5415], + [22127,5347], + [23001,54804], + [23003,31704], + [23005,157921], + [23007,14534], + [23009,29065], + [23011,61626], + [23013,20475], + [23015,16727], + [23017,26532], + [23019,76866], + [23021,7452], + [23023,18934], + [23025,23634], + [23027,20617], + [23029,13992], + [23031,108483], + [24001,32391], + [24003,301862], + [24005,446382], + [24009,47161], + [24011,17524], + [24013,93340], + [24015,52742], + [24017,80764], + [24019,15846], + [24021,128928], + [24023,15688], + [24025,136301], + [24027,177290], + [24029,10608], + [24031,549111], + [24033,488148], + [24035,26706], + [24037,54759], + [24039,9214], + [24041,19328], + [24043,76921], + [24045,50151], + [24047,25432], + [24510,294550], + [25001,111567], + [25003,65270], + [25005,288942], + [25007,9455], + [25009,407869], + [25011,39433], + [25013,222565], + [25015,87311], + [25017,863267], + [25019,6967], + [25021,369035], + [25023,268191], + [25025,420860], + [25027,427506], + [26001,3799], + [26003,3223], + [26005,60372], + [26007,13593], + [26009,9972], + [26011,6216], + [26013,3291], + [26015,30170], + [26017,52117], + [26019,8660], + [26021,73276], + [26023,19116], + [26025,64052], + [26027,23979], + [26029,13025], + [26031,10664], + [26033,16663], + [26035,11759], + [26037,39678], + [26039,5264], + [26041,17210], + [26043,12583], + [26045,55764], + [26047,17604], + [26049,181426], + [26051,9961], + [26053,6483], + [26055,48367], + [26057,18260], + [26059,20990], + [26061,16537], + [26063,16336], + [26065,145587], + [26067,29309], + [26069,10077], + [26071,5197], + [26073,35245], + [26075,72913], + [26077,128930], + [26079,7612], + [26081,341904], + [26083,938], + [26085,3672], + [26087,39712], + [26089,10566], + [26091,47393], + [26093,96400], + [26095,2455], + [26097,5113], + [26099,421322], + [26101,10388], + [26103,33323], + [26105,14389], + [26107,19108], + [26109,11507], + [26111,41360], + [26113,6975], + [26115,76092], + [26117,27634], + [26119,3060], + [26121,77170], + [26123,23041], + [26125,632577], + [26127,12465], + [26129,8392], + [26131,2290], + [26133,10142], + [26135,2905], + [26137,11387], + [26139,152151], + [26141,5348], + [26143,7794], + [26145,88253], + [26147,72795], + [26149,28997], + [26151,19471], + [26153,3452], + [26155,33021], + [26157,24482], + [26159,35175], + [26161,188111], + [26163,758684], + [26165,14550], + [27001,6871], + [27003,189854], + [27005,18399], + [27007,23502], + [27009,21589], + [27011,2682], + [27013,39381], + [27015,14620], + [27017,17570], + [27019,55179], + [27021,14031], + [27023,6945], + [27025,28734], + [27027,35546], + [27029,4627], + [27031,3154], + [27033,5788], + [27035,31498], + [27037,232285], + [27039,11454], + [27041,20138], + [27043,7503], + [27045,11405], + [27047,16345], + [27049,26881], + [27051,3347], + [27053,676859], + [27055,10484], + [27057,9553], + [27059,20197], + [27061,22297], + [27063,6288], + [27065,8834], + [27067,24062], + [27069,2473], + [27071,6253], + [27073,3764], + [27075,5610], + [27077,2422], + [27079,15537], + [27081,3392], + [27083,15286], + [27085,20203], + [27087,2405], + [27089,5743], + [27091,10447], + [27093,13339], + [27095,12612], + [27097,17796], + [27099,20363], + [27101,5063], + [27103,20308], + [27105,11526], + [27107,3441], + [27109,83903], + [27111,31118], + [27113,9078], + [27115,14784], + [27117,4977], + [27119,17165], + [27121,6389], + [27123,279593], + [27125,2329], + [27127,8269], + [27129,8592], + [27131,35425], + [27133,5909], + [27135,8602], + [27137,101926], + [27139,79160], + [27141,49472], + [27143,8510], + [27145,88137], + [27147,21203], + [27149,5709], + [27151,5170], + [27153,13008], + [27155,1835], + [27157,11993], + [27159,6328], + [27161,9752], + [27163,137160], + [27165,6251], + [27167,3690], + [27169,29474], + [27171,71983], + [27173,5576], + [28001,11414], + [28003,15724], + [28005,4515], + [28007,6985], + [28009,2984], + [28011,13389], + [28013,6138], + [28015,3460], + [28017,7151], + [28019,3711], + [28021,3119], + [28023,6076], + [28025,8019], + [28027,9451], + [28029,11260], + [28031,7967], + [28033,84566], + [28035,32842], + [28037,2938], + [28039,8857], + [28041,4329], + [28043,9481], + [28045,18676], + [28047,85654], + [28049,109216], + [28051,6116], + [28053,2467], + [28055,419], + [28057,10210], + [28059,58978], + [28061,6364], + [28063,2277], + [28065,4129], + [28067,26552], + [28069,3577], + [28071,24447], + [28073,28902], + [28075,31661], + [28077,4745], + [28079,7890], + [28081,39860], + [28083,10491], + [28085,14225], + [28087,25122], + [28089,51644], + [28091,10008], + [28093,14446], + [28095,15484], + [28097,4199], + [28099,10623], + [28101,8719], + [28103,3954], + [28105,22499], + [28107,13440], + [28109,22868], + [28111,4314], + [28113,14697], + [28115,13876], + [28117,10992], + [28119,2687], + [28121,73013], + [28123,12983], + [28125,1727], + [28127,10897], + [28129,6754], + [28131,6410], + [28133,8474], + [28135,5810], + [28137,11996], + [28139,9440], + [28141,8012], + [28143,4656], + [28145,13213], + [28147,5150], + [28149,20883], + [28151,18043], + [28153,7620], + [28155,3940], + [28157,2882], + [28159,7084], + [28161,4927], + [28163,9206], + [29001,10446], + [29003,9925], + [29005,2834], + [29007,11316], + [29009,14918], + [29011,5329], + [29013,8154], + [29015,7195], + [29017,5556], + [29019,98904], + [29021,46511], + [29023,18983], + [29025,4396], + [29027,21682], + [29029,18758], + [29031,40881], + [29033,4819], + [29035,2510], + [29037,53903], + [29039,5894], + [29041,3853], + [29043,43069], + [29045,3435], + [29047,132244], + [29049,10995], + [29051,39394], + [29053,7616], + [29055,10911], + [29057,3571], + [29059,6981], + [29061,4088], + [29063,5050], + [29065,6301], + [29067,5040], + [29069,13128], + [29071,52540], + [29073,7685], + [29075,3616], + [29077,149353], + [29079,4912], + [29081,3988], + [29083,10112], + [29085,3723], + [29087,2711], + [29089,5047], + [29091,16355], + [29093,3853], + [29095,363168], + [29097,58085], + [29099,117702], + [29101,23117], + [29103,1963], + [29105,15940], + [29107,17186], + [29109,17888], + [29111,5214], + [29113,26966], + [29115,5244], + [29117,7307], + [29119,10415], + [29121,7473], + [29123,5521], + [29125,3938], + [29127,14756], + [29129,1888], + [29131,11656], + [29133,6285], + [29135,7402], + [29137,4211], + [29139,5709], + [29141,8078], + [29143,8584], + [29145,28449], + [29147,11018], + [29149,4164], + [29151,7162], + [29153,3649], + [29155,7046], + [29157,10213], + [29159,20933], + [29161,19574], + [29163,8112], + [29165,55457], + [29167,14263], + [29169,14895], + [29171,2500], + [29173,5673], + [29175,10508], + [29177,11167], + [29179,2714], + [29181,5327], + [29183,217666], + [29185,3980], + [29186,9064], + [29187,26416], + [29189,533812], + [29195,11057], + [29197,1909], + [29199,2452], + [29201,20057], + [29203,3338], + [29205,3078], + [29207,13238], + [29209,13373], + [29211,2780], + [29213,26177], + [29215,9409], + [29217,9823], + [29219,17350], + [29221,10528], + [29223,5720], + [29225,16657], + [29227,1219], + [29229,7646], + [29510,159788], + [30001,4973], + [30003,5542], + [30005,2393], + [30007,2481], + [30009,5417], + [30011,684], + [30013,38241], + [30015,2520], + [30017,6378], + [30019,942], + [30021,4813], + [30023,5228], + [30025,1967], + [30027,5692], + [30029,44753], + [30031,59360], + [30033,761], + [30035,5845], + [30037,379], + [30039,1557], + [30041,7783], + [30043,5574], + [30045,992], + [30047,12677], + [30049,34952], + [30051,984], + [30053,7795], + [30055,1060], + [30057,4280], + [30059,935], + [30061,1725], + [30063,60422], + [30065,2405], + [30067,8286], + [30069,284], + [30071,1974], + [30073,2862], + [30075,1054], + [30077,2955], + [30079,528], + [30081,19190], + [30083,6869], + [30085,4685], + [30087,4169], + [30089,4696], + [30091,2072], + [30093,17103], + [30095,4922], + [30097,1786], + [30099,2886], + [30101,2295], + [30103,357], + [30105,4383], + [30107,787], + [30109,545], + [30111,80651], + [31001,16611], + [31003,3595], + [31005,224], + [31007,440], + [31009,268], + [31011,3011], + [31013,5660], + [31015,1089], + [31017,1394], + [31019,27134], + [31021,3609], + [31023,4738], + [31025,13069], + [31027,4642], + [31029,2338], + [31031,3450], + [31033,5747], + [31035,3374], + [31037,5550], + [31039,4839], + [31041,6284], + [31043,10994], + [31045,5250], + [31047,13062], + [31049,1074], + [31051,3082], + [31053,19093], + [31055,286727], + [31057,1197], + [31059,3208], + [31061,1511], + [31063,1532], + [31065,2728], + [31067,11045], + [31069,1196], + [31071,1194], + [31073,1075], + [31075,435], + [31077,1249], + [31079,31591], + [31081,4672], + [31083,1786], + [31085,616], + [31087,1321], + [31089,5867], + [31091,405], + [31093,3309], + [31095,4274], + [31097,2124], + [31099,3792], + [31101,4684], + [31103,660], + [31105,2051], + [31107,4717], + [31109,167490], + [31111,18535], + [31113,492], + [31115,379], + [31117,461], + [31119,19206], + [31121,4026], + [31123,2650], + [31125,2065], + [31127,3689], + [31129,2381], + [31131,8199], + [31133,1672], + [31135,1835], + [31137,4992], + [31139,4167], + [31141,17141], + [31143,2909], + [31145,6102], + [31147,4300], + [31149,859], + [31151,7278], + [31153,90635], + [31155,10926], + [31157,18659], + [31159,8696], + [31161,2730], + [31163,1709], + [31165,788], + [31167,3504], + [31169,2967], + [31171,435], + [31173,2970], + [31175,2063], + [31177,10935], + [31179,5539], + [31181,1725], + [31183,562], + [31185,7339], + [32001,10616], + [32003,1038703], + [32005,22496], + [32007,26947], + [32009,530], + [32011,1003], + [32013,8467], + [32015,3282], + [32017,1971], + [32019,21895], + [32021,1617], + [32023,16184], + [32027,2511], + [32029,1873], + [32031,225943], + [32033,4823], + [32510,24877], + [33001,31461], + [33003,23694], + [33005,41366], + [33007,14755], + [33009,48443], + [33011,228760], + [33013,80956], + [33015,177990], + [33017,70939], + [33019,23577], + [34001,127902], + [34003,483915], + [34005,232623], + [34007,255390], + [34009,48534], + [34011,68117], + [34013,375066], + [34015,149930], + [34017,362284], + [34019,65534], + [34021,198447], + [34023,440742], + [34025,329935], + [34027,262029], + [34029,268497], + [34031,248816], + [34033,31080], + [34035,174324], + [34037,76640], + [34039,280235], + [34041,57192], + [35001,320916], + [35003,1187], + [35005,27594], + [35006,9228], + [35007,6012], + [35009,21806], + [35011,847], + [35013,93919], + [35015,29685], + [35017,12417], + [35019,1627], + [35021,284], + [35023,2127], + [35025,29783], + [35027,8655], + [35028,8466], + [35029,10993], + [35031,24194], + [35033,2260], + [35035,24895], + [35037,3257], + [35039,16522], + [35041,8007], + [35043,61805], + [35045,55383], + [35047,11041], + [35049,72865], + [35051,4011], + [35053,6510], + [35055,14850], + [35057,5441], + [35059,1884], + [35061,29529], + [36001,159383], + [36003,20458], + [36005,613190], + [36007,87272], + [36009,35412], + [36011,37279], + [36013,57925], + [36015,37681], + [36017,23216], + [36019,36125], + [36021,31588], + [36023,23403], + [36025,19609], + [36027,144065], + [36029,451194], + [36031,17409], + [36033,20083], + [36035,23580], + [36037,30270], + [36039,20836], + [36041,2448], + [36043,28580], + [36045,46788], + [36047,1229405], + [36049,11834], + [36051,31425], + [36053,33077], + [36055,367520], + [36057,22397], + [36059,701610], + [36061,920921], + [36063,101710], + [36065,102702], + [36067,223748], + [36069,55378], + [36071,178984], + [36073,17977], + [36075,54331], + [36077,28868], + [36079,50903], + [36081,1171067], + [36083,82047], + [36085,222148], + [36087,153062], + [36089,44139], + [36091,117549], + [36093,76183], + [36095,14757], + [36097,8399], + [36099,15812], + [36101,43956], + [36103,780621], + [36105,33904], + [36107,23517], + [36109,50714], + [36111,88848], + [36113,32441], + [36115,28818], + [36117,44542], + [36119,481220], + [36121,18483], + [36123,11810], + [37001,77289], + [37003,17539], + [37005,4466], + [37007,10829], + [37009,12310], + [37011,7531], + [37013,20117], + [37015,8603], + [37017,14740], + [37019,48537], + [37021,130400], + [37023,39325], + [37025,97608], + [37027,35465], + [37029,4612], + [37031,31335], + [37033,9624], + [37035,75149], + [37037,33383], + [37039,11121], + [37041,5640], + [37043,4045], + [37045,46086], + [37047,22610], + [37049,41340], + [37051,126260], + [37053,12848], + [37055,20299], + [37057,78735], + [37059,19848], + [37061,26488], + [37063,156610], + [37065,22820], + [37067,179729], + [37069,28715], + [37071,102781], + [37073,5144], + [37075,3187], + [37077,28531], + [37079,9480], + [37081,256282], + [37083,20772], + [37085,50251], + [37087,27651], + [37089,50660], + [37091,9221], + [37093,19831], + [37095,2145], + [37097,82183], + [37099,18465], + [37101,88159], + [37103,4548], + [37105,26090], + [37107,27741], + [37109,40614], + [37111,21260], + [37113,15119], + [37115,9470], + [37117,9717], + [37119,565288], + [37121,6311], + [37123,11625], + [37125,38289], + [37127,43865], + [37129,113388], + [37131,7866], + [37133,63749], + [37135,73372], + [37137,5335], + [37139,17450], + [37141,26017], + [37143,5156], + [37145,17884], + [37147,87688], + [37149,8661], + [37151,66641], + [37153,16926], + [37155,51047], + [37157,41121], + [37159,63095], + [37161,25050], + [37163,29543], + [37165,11860], + [37167,28796], + [37169,21804], + [37171,33328], + [37173,6775], + [37175,13546], + [37177,1547], + [37179,112322], + [37181,18047], + [37183,539483], + [37185,7212], + [37187,4967], + [37189,27391], + [37191,53729], + [37193,29629], + [37195,36751], + [37197,17487], + [37199,7415], + [38001,1109], + [38003,5647], + [38005,2481], + [38007,468], + [38009,3243], + [38011,1863], + [38013,1182], + [38015,48981], + [38017,95417], + [38019,2062], + [38021,2553], + [38023,1816], + [38025,4020], + [38027,1271], + [38029,1553], + [38031,1630], + [38033,978], + [38035,37527], + [38037,1320], + [38039,1155], + [38041,1555], + [38043,1343], + [38045,2272], + [38047,948], + [38049,3281], + [38051,1245], + [38053,9209], + [38055,4925], + [38057,4310], + [38059,16273], + [38061,8147], + [38063,1519], + [38065,883], + [38067,3611], + [38069,1839], + [38071,5692], + [38073,2777], + [38075,1339], + [38077,8603], + [38079,4890], + [38081,2257], + [38083,726], + [38085,1294], + [38087,465], + [38089,20298], + [38091,1063], + [38093,10713], + [38095,1242], + [38097,4452], + [38099,5580], + [38101,34299], + [38103,2173], + [38105,28717], + [39001,10681], + [39003,47839], + [39005,25973], + [39007,44344], + [39009,27908], + [39011,24452], + [39013,31148], + [39015,19485], + [39017,187441], + [39019,13347], + [39021,19873], + [39023,64075], + [39025,102671], + [39027,16685], + [39029,49382], + [39031,15850], + [39033,19074], + [39035,608690], + [39037,26215], + [39039,18671], + [39041,102340], + [39043,37356], + [39045,74877], + [39047,14022], + [39049,655826], + [39051,22435], + [39053,12204], + [39055,48668], + [39057,80377], + [39059,19200], + [39061,401449], + [39063,40755], + [39065,14495], + [39067,7184], + [39069,13547], + [39071,16935], + [39073,13011], + [39075,20625], + [39077,27611], + [39079,13047], + [39081,29383], + [39083,31227], + [39085,123466], + [39087,24897], + [39089,86932], + [39091,23096], + [39093,149794], + [39095,208736], + [39097,20496], + [39099,106925], + [39101,27771], + [39103,94463], + [39105,9093], + [39107,23003], + [39109,52393], + [39111,5541], + [39113,249052], + [39115,6703], + [39117,16684], + [39119,38798], + [39121,4972], + [39123,21023], + [39125,8904], + [39127,15824], + [39129,25741], + [39131,10472], + [39133,86817], + [39135,20983], + [39137,18663], + [39139,53558], + [39141,33713], + [39143,31354], + [39145,29572], + [39147,27142], + [39149,24076], + [39151,186530], + [39153,271713], + [39155,91394], + [39157,45438], + [39159,27023], + [39161,14326], + [39163,5459], + [39165,112405], + [39167,28053], + [39169,59993], + [39171,19010], + [39173,69581], + [39175,12346], + [40001,8165], + [40003,3164], + [40005,4862], + [40007,3023], + [40009,12210], + [40011,4486], + [40013,18340], + [40015,11836], + [40017,68291], + [40019,22557], + [40021,19267], + [40023,5915], + [40025,1375], + [40027,138148], + [40029,2320], + [40031,49642], + [40033,2861], + [40035,6261], + [40037,31339], + [40039,15655], + [40041,17475], + [40043,2496], + [40045,2391], + [40047,30082], + [40049,12831], + [40051,26219], + [40053,3289], + [40055,2169], + [40057,1302], + [40059,1986], + [40061,4480], + [40063,5735], + [40065,10874], + [40067,2680], + [40069,3971], + [40071,19196], + [40073,8276], + [40075,4163], + [40077,3862], + [40079,19636], + [40081,15877], + [40083,21473], + [40085,5978], + [40087,18756], + [40089,14740], + [40091,7085], + [40093,4298], + [40095,6783], + [40097,19402], + [40099,6765], + [40101,29580], + [40103,5640], + [40105,4798], + [40107,4543], + [40109,374832], + [40111,16221], + [40113,21221], + [40115,14372], + [40117,7472], + [40119,38386], + [40121,17434], + [40123,18244], + [40125,32739], + [40127,4913], + [40129,1838], + [40131,44610], + [40133,9606], + [40135,16778], + [40137,20278], + [40139,9692], + [40141,3358], + [40143,317847], + [40145,36246], + [40147,24453], + [40149,5606], + [40151,5367], + [40153,10303], + [41001,6672], + [41003,45433], + [41005,205170], + [41007,18351], + [41009,22682], + [41011,25947], + [41013,9022], + [41015,8712], + [41017,84757], + [41019,44369], + [41021,809], + [41023,3090], + [41025,3304], + [41027,13526], + [41029,98035], + [41031,9644], + [41033,33271], + [41035,28661], + [41037,3436], + [41039,172546], + [41041,20521], + [41043,55192], + [41045,11956], + [41047,152637], + [41049,5541], + [41051,429671], + [41053,36584], + [41055,888], + [41057,11390], + [41059,35248], + [41061,11702], + [41063,3242], + [41065,13024], + [41067,301641], + [41069,692], + [41071,50864], + [42001,54988], + [42003,647492], + [42005,33025], + [42007,85780], + [42009,24125], + [42011,212498], + [42013,60989], + [42015,31366], + [42017,337571], + [42019,98098], + [42021,62331], + [42023,2263], + [42025,31454], + [42027,77805], + [42029,277062], + [42031,18269], + [42033,36412], + [42035,18762], + [42037,33735], + [42039,41044], + [42041,128389], + [42043,140983], + [42045,291513], + [42047,16329], + [42049,134748], + [42051,58364], + [42053,1899], + [42055,77850], + [42057,7440], + [42059,18161], + [42061,19668], + [42063,41757], + [42065,20970], + [42067,11990], + [42069,106408], + [42071,275981], + [42073,42110], + [42075,70063], + [42077,185778], + [42079,158764], + [42081,60904], + [42083,18979], + [42085,52997], + [42087,20913], + [42089,80768], + [42091,440895], + [42093,9147], + [42095,156593], + [42097,43432], + [42099,24107], + [42101,695540], + [42103,24964], + [42105,7375], + [42107,68186], + [42109,20064], + [42111,34463], + [42113,3034], + [42115,21400], + [42117,20330], + [42119,19307], + [42121,24461], + [42123,19955], + [42125,106615], + [42127,22268], + [42129,182925], + [42131,14116], + [42133,232736], + [44001,26163], + [44003,91018], + [44005,44082], + [44007,323888], + [44009,69336], + [45001,10349], + [45003,73925], + [45005,2748], + [45007,88475], + [45009,5460], + [45011,8377], + [45013,71661], + [45015,93501], + [45017,6893], + [45019,198201], + [45021,23460], + [45023,13455], + [45025,21440], + [45027,13065], + [45029,16719], + [45031,30066], + [45033,12674], + [45035,72712], + [45037,10668], + [45039,10022], + [45041,65502], + [45043,25233], + [45045,242978], + [45047,31263], + [45049,8348], + [45051,137323], + [45053,11821], + [45055,28945], + [45057,36712], + [45059,30282], + [45061,6459], + [45063,145391], + [45065,3441], + [45067,12863], + [45069,9647], + [45071,18899], + [45073,34490], + [45075,36944], + [45077,56069], + [45079,198717], + [45081,8830], + [45083,139880], + [45085,44379], + [45087,11556], + [45089,12819], + [45091,126680], + [46003,1568], + [46005,9452], + [46007,1129], + [46009,3004], + [46011,18531], + [46013,20952], + [46015,2532], + [46017,714], + [46019,5083], + [46021,848], + [46023,3977], + [46025,1962], + [46027,6997], + [46029,15292], + [46031,1488], + [46033,3956], + [46035,11305], + [46037,2855], + [46039,2306], + [46041,2289], + [46043,1670], + [46045,2215], + [46047,2968], + [46049,1117], + [46051,4696], + [46053,2053], + [46055,1095], + [46057,3128], + [46059,1870], + [46061,1795], + [46063,778], + [46065,9876], + [46067,3666], + [46069,705], + [46071,1324], + [46073,1123], + [46075,583], + [46077,2748], + [46079,6498], + [46081,12712], + [46083,30397], + [46085,1790], + [46087,3126], + [46089,1111], + [46091,2498], + [46093,13312], + [46095,796], + [46097,1209], + [46099,106109], + [46101,3936], + [46102,"NA"], + [46103,54261], + [46105,1573], + [46107,1180], + [46109,4856], + [46111,1224], + [46115,3310], + [46117,1831], + [46119,868], + [46121,3044], + [46123,3075], + [46125,4627], + [46127,8014], + [46129,2264], + [46135,11577], + [46137,982], + [47001,33228], + [47003,19375], + [47005,6753], + [47007,4243], + [47009,59428], + [47011,49352], + [47013,14604], + [47015,5847], + [47017,12164], + [47019,23492], + [47021,19834], + [47023,8211], + [47025,12585], + [47027,2994], + [47029,14382], + [47031,24249], + [47033,6811], + [47035,22892], + [47037,363536], + [47039,4704], + [47041,7354], + [47043,24053], + [47045,16635], + [47047,17840], + [47049,6990], + [47051,19560], + [47053,20994], + [47055,14528], + [47057,9129], + [47059,30559], + [47061,4862], + [47063,26420], + [47065,167045], + [47067,2060], + [47069,9274], + [47071,10246], + [47073,23494], + [47075,7616], + [47077,12254], + [47079,13854], + [47081,10300], + [47083,3192], + [47085,8454], + [47087,4457], + [47089,23255], + [47091,7296], + [47093,228031], + [47095,1968], + [47097,9580], + [47099,17691], + [47101,4796], + [47103,15117], + [47105,21899], + [47107,22610], + [47109,8744], + [47111,9945], + [47113,46453], + [47115,11693], + [47117,14741], + [47119,42288], + [47121,4848], + [47123,19013], + [47125,78457], + [47127,3300], + [47129,7704], + [47131,12456], + [47133,9075], + [47135,3114], + [47137,2394], + [47139,7312], + [47141,32396], + [47143,13069], + [47145,22547], + [47147,33761], + [47149,155332], + [47151,8067], + [47153,5783], + [47155,49768], + [47157,429297], + [47159,8472], + [47161,5131], + [47163,69035], + [47165,88443], + [47167,27447], + [47169,3677], + [47171,7020], + [47173,7208], + [47175,2050], + [47177,17771], + [47179,57746], + [47181,6177], + [47183,15564], + [47185,11395], + [47187,107404], + [47189,64515], + [48001,22826], + [48003,9293], + [48005,37364], + [48007,10051], + [48009,4119], + [48011,975], + [48013,20520], + [48015,14030], + [48017,2798], + [48019,9171], + [48021,37507], + [48023,1625], + [48025,10373], + [48027,136155], + [48029,878118], + [48031,5763], + [48033,412], + [48035,8053], + [48037,39120], + [48039,166911], + [48041,108516], + [48043,3907], + [48045,594], + [48047,2601], + [48049,15880], + [48051,7751], + [48053,21159], + [48055,17410], + [48057,11319], + [48059,5727], + [48061,162940], + [48063,5089], + [48065,3066], + [48067,12157], + [48069,3613], + [48071,17792], + [48073,20881], + [48075,2866], + [48077,4908], + [48079,1316], + [48081,1396], + [48083,3048], + [48085,488234], + [48087,1270], + [48089,9899], + [48091,61841], + [48093,5354], + [48095,1373], + [48097,19752], + [48099,24484], + [48101,545], + [48103,1835], + [48105,1899], + [48107,2645], + [48109,1039], + [48111,4004], + [48113,1261721], + [48115,4769], + [48117,8787], + [48119,2592], + [48121,428166], + [48123,10045], + [48125,702], + [48127,7156], + [48129,1592], + [48131,5234], + [48133,8031], + [48135,79709], + [48137,864], + [48139,80881], + [48141,341302], + [48143,20145], + [48145,6449], + [48147,15362], + [48149,12764], + [48151,1799], + [48153,2743], + [48155,550], + [48157,355573], + [48159,4553], + [48161,7405], + [48163,9795], + [48165,9398], + [48167,157808], + [48169,2129], + [48171,12633], + [48173,821], + [48175,3445], + [48177,9691], + [48179,9268], + [48181,59944], + [48183,59229], + [48185,11502], + [48187,72882], + [48189,12875], + [48191,1202], + [48193,3480], + [48195,3109], + [48197,1619], + [48199,24968], + [48201,2232553], + [48203,31176], + [48205,3002], + [48207,2580], + [48209,98383], + [48211,2299], + [48213,34339], + [48215,330600], + [48217,15603], + [48219,11709], + [48221,24516], + [48223,16999], + [48225,9929], + [48227,13345], + [48229,1280], + [48231,38873], + [48233,9789], + [48235,799], + [48237,4076], + [48239,7362], + [48241,13866], + [48243,1079], + [48245,107873], + [48247,2026], + [48249,19203], + [48251,74229], + [48253,5663], + [48255,6421], + [48257,55017], + [48259,19145], + [48261,282], + [48263,497], + [48265,21163], + [48267,1998], + [48269,200], + [48271,1184], + [48273,14385], + [48275,1680], + [48277,22164], + [48279,5504], + [48281,9048], + [48283,4265], + [48285,8798], + [48287,9294], + [48289,6927], + [48291,30920], + [48293,8572], + [48295,1723], + [48297,5885], + [48299,8142], + [48301,77], + [48303,149461], + [48305,2760], + [48307,3920], + [48309,112473], + [48311,968], + [48313,5112], + [48315,4410], + [48317,2581], + [48319,1802], + [48321,17163], + [48323,23622], + [48325,20406], + [48327,856], + [48329,88310], + [48331,10112], + [48333,1988], + [48335,2742], + [48337,9696], + [48339,258004], + [48341,11102], + [48343,5309], + [48345,492], + [48347,28107], + [48349,22868], + [48351,5363], + [48353,6907], + [48355,165671], + [48357,5268], + [48359,913], + [48361,37152], + [48363,13156], + [48365,11560], + [48367,59517], + [48369,4964], + [48371,6860], + [48373,17026], + [48375,56208], + [48377,3113], + [48379,5407], + [48381,69033], + [48383,1927], + [48385,1062], + [48387,4905], + [48389,5674], + [48391,3303], + [48393,455], + [48395,7242], + [48397,44862], + [48399,4667], + [48401,22825], + [48403,3498], + [48405,2796], + [48407,11281], + [48409,30206], + [48411,2244], + [48413,1500], + [48415,8161], + [48417,2081], + [48419,11368], + [48421,1419], + [48423,103648], + [48425,4107], + [48427,25855], + [48429,4104], + [48431,746], + [48433,662], + [48435,1718], + [48437,2730], + [48439,990682], + [48441,63301], + [48443,434], + [48445,5398], + [48447,780], + [48449,12728], + [48451,54503], + [48453,655166], + [48455,5477], + [48457,7361], + [48459,17961], + [48461,1783], + [48463,11671], + [48465,19556], + [48467,24191], + [48469,45297], + [48471,22959], + [48473,21643], + [48475,5908], + [48477,15347], + [48479,111696], + [48481,21213], + [48483,2819], + [48485,55280], + [48487,5105], + [48489,6741], + [48491,263790], + [48493,22955], + [48495,3100], + [48497,28650], + [48499,16746], + [48501,4043], + [48503,8462], + [48505,6185], + [48507,3804], + [49001,3123], + [49003,24030], + [49005,60175], + [49007,8729], + [49009,468], + [49011,160321], + [49013,8827], + [49015,4413], + [49017,2762], + [49019,5624], + [49021,20376], + [49023,4949], + [49025,3634], + [49027,6138], + [49029,4939], + [49031,466], + [49033,1048], + [49035,586753], + [49037,5730], + [49039,11443], + [49041,9532], + [49043,23120], + [49045,29601], + [49047,15339], + [49049,266645], + [49051,13288], + [49053,63800], + [49055,1417], + [49057,117485], + [50001,20682], + [50003,18565], + [50005,15073], + [50007,94808], + [50009,2755], + [50011,27281], + [50013,3933], + [50015,13769], + [50017,15883], + [50019,13589], + [50021,31255], + [50023,34037], + [50025,23441], + [50027,29449], + [51001,15877], + [51003,53914], + [51005,7048], + [51007,6191], + [51009,15279], + [51011,7038], + [51013,144282], + [51015,36642], + [51017,2536], + [51019,38228], + [51021,2781], + [51023,17388], + [51025,6332], + [51027,7277], + [51029,6293], + [51031,26223], + [51033,14732], + [51035,13049], + [51036,3717], + [51037,5251], + [51041,177952], + [51043,7430], + [51045,2380], + [51047,23103], + [51049,4555], + [51051,4911], + [51053,13311], + [51057,5511], + [51059,613618], + [51061,35726], + [51063,8292], + [51065,13160], + [51067,26444], + [51069,44612], + [51071,7943], + [51073,19090], + [51075,10616], + [51077,7045], + [51079,9848], + [51081,4172], + [51083,15199], + [51085,56233], + [51087,176916], + [51089,22353], + [51091,1339], + [51093,18801], + [51095,34291], + [51097,3631], + [51099,12053], + [51101,8704], + [51103,5130], + [51105,8572], + [51107,200054], + [51109,18790], + [51111,5284], + [51113,7224], + [51115,4072], + [51117,12514], + [51119,4980], + [51121,49724], + [51125,7266], + [51127,11213], + [51131,6098], + [51133,5464], + [51135,7129], + [51137,16053], + [51139,11642], + [51141,7638], + [51143,30069], + [51145,13388], + [51147,10057], + [51149,14871], + [51153,231347], + [51155,16309], + [51157,3734], + [51159,3900], + [51161,49070], + [51163,10321], + [51165,40108], + [51167,11423], + [51169,9500], + [51171,21034], + [51173,13460], + [51175,9196], + [51177,63800], + [51179,66649], + [51181,3716], + [51183,4073], + [51185,16612], + [51187,19619], + [51191,26978], + [51193,8920], + [51195,13783], + [51197,13642], + [51199,31991], + [51510,94154], + [51520,7513], + [51530,3293], + [51540,24644], + [51550,116309], + [51570,8665], + [51580,2418], + [51590,19117], + [51595,2245], + [51600,12799], + [51610,7844], + [51620,3608], + [51630,13367], + [51640,2946], + [51650,64261], + [51660,23883], + [51670,9620], + [51678,2252], + [51680,35627], + [51683,21593], + [51685,8333], + [51690,5357], + [51700,88807], + [51710,110521], + [51720,1733], + [51730,13502], + [51735,6200], + [51740,44252], + [51750,8291], + [51760,112703], + [51770,48902], + [51775,12765], + [51790,11809], + [51800,42290], + [51810,228767], + [51820,10010], + [51830,6657], + [51840,14199], + [53001,8618], + [53003,9679], + [53005,91760], + [53007,42636], + [53009,26809], + [53011,214351], + [53013,1695], + [53015,44124], + [53017,19776], + [53019,2477], + [53021,38981], + [53023,930], + [53025,44711], + [53027,26928], + [53029,31767], + [53031,11200], + [53033,1178040], + [53035,115357], + [53037,20847], + [53039,9458], + [53041,31232], + [53043,4877], + [53045,23021], + [53047,21239], + [53049,8101], + [53051,4602], + [53053,392345], + [53055,7721], + [53057,56713], + [53059,4950], + [53061,401650], + [53063,227903], + [53065,17451], + [53067,125764], + [53069,1294], + [53071,28054], + [53073,104285], + [53075,22754], + [53077,121810], + [54001,6883], + [54003,53787], + [54005,8166], + [54007,5449], + [54009,10064], + [54011,41187], + [54013,2756], + [54015,3264], + [54017,3634], + [54019,16240], + [54021,2699], + [54023,5751], + [54025,15324], + [54027,9603], + [54029,12965], + [54031,5456], + [54033,31771], + [54035,11882], + [54037,27688], + [54039,86005], + [54041,6962], + [54043,7338], + [54045,11469], + [54047,5331], + [54049,25958], + [54051,14018], + [54053,9944], + [54055,21914], + [54057,11594], + [54059,7229], + [54061,50337], + [54063,5735], + [54065,7455], + [54067,9911], + [54069,20609], + [54071,3565], + [54073,2977], + [54075,3582], + [54077,14601], + [54079,25470], + [54081,30272], + [54083,11870], + [54085,4483], + [54087,5210], + [54089,4509], + [54091,7720], + [54093,3415], + [54095,3647], + [54097,9637], + [54099,15531], + [54101,3463], + [54103,7144], + [54105,2251], + [54107,36981], + [54109,7727], + [55001,8335], + [55003,7929], + [55005,24478], + [55007,7535], + [55009,139340], + [55011,6539], + [55013,7279], + [55015,27480], + [55017,33174], + [55019,17440], + [55021,31366], + [55023,7910], + [55025,310992], + [55027,47580], + [55029,15495], + [55031,23371], + [55033,23792], + [55035,58201], + [55037,2215], + [55039,57074], + [55041,4000], + [55043,28183], + [55045,21107], + [55047,10001], + [55049,13702], + [55051,2623], + [55053,10354], + [55055,45685], + [55057,13521], + [55059,87548], + [55061,10901], + [55063,66668], + [55065,9755], + [55067,9483], + [55069,15270], + [55071,41934], + [55073,73511], + [55075,20762], + [55077,7504], + [55078,1605], + [55079,477410], + [55081,22852], + [55083,20357], + [55085,18649], + [55087,102033], + [55089,48275], + [55091,4110], + [55093,24151], + [55095,24625], + [55097,39612], + [55099,6856], + [55101,99429], + [55103,9301], + [55105,83405], + [55107,7001], + [55109,48846], + [55111,35329], + [55113,7822], + [55115,21302], + [55117,61297], + [55119,10707], + [55121,16628], + [55123,15505], + [55125,10008], + [55127,57027], + [55129,7963], + [55131,76121], + [55133,221565], + [55135,27062], + [55137,11497], + [55139,91521], + [55141,34448], + [56001,20681], + [56003,5571], + [56005,25867], + [56007,8455], + [56009,8332], + [56011,3716], + [56013,20289], + [56015,7095], + [56017,2405], + [56019,4212], + [56021,48727], + [56023,8431], + [56025,42934], + [56027,1330], + [56029,15801], + [56031,4922], + [56033,15965], + [56035,4580], + [56037,22794], + [56039,14725], + [56041,9695], + [56043,4277], + [56045,3970] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2016.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2016.json new file mode 100644 index 0000000..26c3db4 --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2016"], + [1001,25918], + [1003,90500], + [1005,8402], + [1007,8607], + [1009,24576], + [1011,4824], + [1013,9190], + [1015,45818], + [1017,14978], + [1019,11332], + [1021,19183], + [1023,4327], + [1025,7953], + [1027,5624], + [1029,5785], + [1031,20593], + [1033,23449], + [1035,4548], + [1037,4379], + [1039,15490], + [1041,6451], + [1043,37898], + [1045,19956], + [1047,15417], + [1049,29229], + [1051,37221], + [1053,14551], + [1055,43261], + [1057,6594], + [1059,13864], + [1061,10804], + [1063,2871], + [1065,5981], + [1067,6721], + [1069,44543], + [1071,23580], + [1073,311128], + [1075,5688], + [1077,42522], + [1079,13717], + [1081,72336], + [1083,40679], + [1085,3800], + [1087,7866], + [1089,173529], + [1091,7670], + [1093,12494], + [1095,41572], + [1097,187740], + [1099,7314], + [1101,105737], + [1103,54852], + [1105,3466], + [1107,7764], + [1109,14946], + [1111,9426], + [1113,23524], + [1115,39073], + [1117,109551], + [1119,5110], + [1121,34807], + [1123,18575], + [1125,99232], + [1127,25561], + [1129,6740], + [1131,2818], + [1133,9530], + [2013,2591], + [2016,3986], + [2020,155798], + [2050,7267], + [2060,414], + [2068,1096], + [2070,2082], + [2090,46550], + [2100,1077], + [2105,1207], + [2110,17372], + [2122,27227], + [2130,7040], + [2150,6430], + [2158,"NA"], + [2164,657], + [2170,47520], + [2180,4095], + [2185,3962], + [2188,2973], + [2195,1453], + [2198,2775], + [2220,4380], + [2230,808], + [2240,3004], + [2261,4821], + [2275,1056], + [2282,245], + [2290,2430], + [4001,20223], + [4003,49369], + [4005,73841], + [4007,20899], + [4009,14306], + [4011,3882], + [4012,8430], + [4013,2071011], + [4015,80139], + [4017,41136], + [4019,467481], + [4021,163194], + [4023,19101], + [4025,99073], + [4027,93621], + [5001,9284], + [5003,7748], + [5005,16127], + [5007,128180], + [5009,15961], + [5011,4300], + [5013,2381], + [5015,12894], + [5017,3588], + [5019,9402], + [5021,6048], + [5023,9491], + [5025,3349], + [5027,9283], + [5029,8460], + [5031,52330], + [5033,27001], + [5035,21649], + [5037,7896], + [5039,2889], + [5041,5450], + [5043,7824], + [5045,60671], + [5047,7376], + [5049,4674], + [5051,40159], + [5053,8290], + [5055,19838], + [5057,9948], + [5059,14096], + [5061,5961], + [5063,16036], + [5065,4973], + [5067,6068], + [5069,28373], + [5071,10547], + [5073,2552], + [5075,6929], + [5077,3097], + [5079,4102], + [5081,5603], + [5083,9138], + [5085,33453], + [5087,7299], + [5089,6533], + [5091,19906], + [5093,18098], + [5095,2885], + [5097,3105], + [5099,3623], + [5101,3418], + [5103,9834], + [5105,4174], + [5107,6667], + [5109,4177], + [5111,10112], + [5113,8165], + [5115,29272], + [5117,3657], + [5119,187474], + [5121,6533], + [5123,8846], + [5125,56969], + [5127,4429], + [5129,2995], + [5131,57711], + [5133,5638], + [5135,6061], + [5137,4750], + [5139,16342], + [5141,6112], + [5143,118617], + [5145,34087], + [5147,2974], + [5149,8684], + [6001,837583], + [6003,557], + [6005,14574], + [6007,101987], + [6009,20868], + [6011,10943], + [6013,557042], + [6015,9788], + [6017,89088], + [6019,446128], + [6021,12992], + [6023,62635], + [6025,76993], + [6027,8889], + [6029,388445], + [6031,57348], + [6033,29165], + [6035,10397], + [6037,5054938], + [6039,61311], + [6041,140306], + [6043,7594], + [6045,39752], + [6047,114612], + [6049,3303], + [6051,8394], + [6053,219506], + [6055,73190], + [6057,48312], + [6059,1602461], + [6061,180212], + [6063,7876], + [6065,1052648], + [6067,695243], + [6069,29835], + [6071,932257], + [6073,1570270], + [6075,560067], + [6077,319513], + [6079,140300], + [6081,445445], + [6083,216113], + [6085,1023975], + [6087,143995], + [6089,74457], + [6091,1338], + [6093,17955], + [6095,207909], + [6097,260108], + [6099,243542], + [6101,44571], + [6103,25155], + [6105,5010], + [6107,203955], + [6109,21640], + [6111,426660], + [6113,106367], + [6115,28148], + [8001,253559], + [8003,7967], + [8005,340486], + [8007,6363], + [8009,2091], + [8011,1850], + [8013,180799], + [8014,36767], + [8015,8839], + [8017,1081], + [8019,5684], + [8021,3771], + [8023,1728], + [8025,1422], + [8027,2018], + [8029,13956], + [8031,384939], + [8033,1072], + [8035,177471], + [8037,33715], + [8039,13794], + [8041,314615], + [8043,14704], + [8045,30987], + [8047,3483], + [8049,9186], + [8051,10133], + [8053,447], + [8055,2501], + [8057,891], + [8059,315268], + [8061,846], + [8063,4537], + [8065,4615], + [8067,30979], + [8069,187311], + [8071,6186], + [8073,2279], + [8075,11012], + [8077,72087], + [8079,463], + [8081,7180], + [8083,12723], + [8085,20064], + [8087,15035], + [8089,8113], + [8091,2165], + [8093,9831], + [8095,2472], + [8097,10733], + [8099,6003], + [8101,73081], + [8103,2736], + [8105,5155], + [8107,14902], + [8109,3227], + [8111,479], + [8113,5184], + [8115,1177], + [8117,21120], + [8119,11730], + [8121,2918], + [8123,149909], + [8125,5437], + [9001,484926], + [9003,476125], + [9005,105484], + [9007,92719], + [9009,459026], + [9011,137377], + [9013,85631], + [9015,63268], + [10001,77562], + [10003,295027], + [10005,101293], + [11001,394586], + [12001,132693], + [12003,11424], + [12005,87965], + [12007,10866], + [12009,262683], + [12011,1004443], + [12013,4988], + [12015,69321], + [12017,47861], + [12019,101070], + [12021,169288], + [12023,29773], + [12027,13478], + [12029,5653], + [12031,467864], + [12033,141022], + [12035,45359], + [12037,4738], + [12039,18215], + [12041,6680], + [12043,4719], + [12045,5968], + [12047,4659], + [12049,9258], + [12051,15411], + [12053,67945], + [12055,35739], + [12057,707545], + [12059,6715], + [12061,62211], + [12063,17347], + [12065,5388], + [12067,2968], + [12069,146168], + [12071,329489], + [12073,150292], + [12075,16655], + [12077,2639], + [12079,7329], + [12081,170679], + [12083,132083], + [12085,70925], + [12086,1333801], + [12087,46474], + [12089,37794], + [12091,93285], + [12093,18153], + [12095,706819], + [12097,164327], + [12099,709627], + [12101,222621], + [12103,478464], + [12105,287016], + [12107,26989], + [12109,118655], + [12111,135255], + [12113,76163], + [12115,181099], + [12117,242158], + [12119,29399], + [12121,18193], + [12123,8841], + [12125,4799], + [12127,245595], + [12129,14303], + [12131,28956], + [12133,9704], + [13001,9198], + [13003,3981], + [13005,4988], + [13007,1183], + [13009,17653], + [13011,8825], + [13013,37740], + [13015,48244], + [13017,5554], + [13019,7227], + [13021,68728], + [13023,4507], + [13025,7104], + [13027,7018], + [13029,16947], + [13031,36004], + [13033,9252], + [13035,10389], + [13037,2166], + [13039,20374], + [13043,5077], + [13045,53600], + [13047,32208], + [13049,4746], + [13051,136230], + [13053,2061], + [13055,10447], + [13057,126039], + [13059,58827], + [13061,885], + [13063,130906], + [13065,2773], + [13067,410558], + [13069,18107], + [13071,21123], + [13073,71128], + [13075,7532], + [13077,70479], + [13079,5683], + [13081,9199], + [13083,8026], + [13085,11343], + [13087,11486], + [13089,383126], + [13091,7023], + [13093,4955], + [13095,38200], + [13097,70298], + [13099,4405], + [13101,1884], + [13103,28446], + [13105,7737], + [13107,8455], + [13109,4794], + [13111,10839], + [13113,55775], + [13115,43546], + [13117,111123], + [13119,9799], + [13121,531690], + [13123,11847], + [13125,1269], + [13127,39219], + [13129,25327], + [13131,10264], + [13133,6610], + [13135,468217], + [13137,19323], + [13139,96421], + [13141,2534], + [13143,12171], + [13145,16086], + [13147,11024], + [13149,5003], + [13151,109026], + [13153,67743], + [13155,3222], + [13157,33326], + [13159,6588], + [13161,6233], + [13163,6604], + [13165,3166], + [13167,3930], + [13169,13809], + [13171,7907], + [13173,3832], + [13175,19083], + [13177,14573], + [13179,25071], + [13181,3482], + [13183,7432], + [13185,51367], + [13187,15989], + [13189,8809], + [13191,6010], + [13193,4684], + [13195,13098], + [13197,3383], + [13199,8766], + [13201,2757], + [13205,8579], + [13207,13033], + [13209,3728], + [13211,8709], + [13213,15659], + [13215,78508], + [13217,50053], + [13219,18495], + [13221,6927], + [13223,79738], + [13225,11451], + [13227,14420], + [13229,8564], + [13231,8412], + [13233,18090], + [13235,4043], + [13237,7961], + [13239,816], + [13241,6705], + [13243,2476], + [13245,84919], + [13247,43296], + [13249,2118], + [13251,5244], + [13253,3095], + [13255,27820], + [13257,11046], + [13259,2139], + [13261,12859], + [13263,2747], + [13265,549], + [13267,9342], + [13269,3326], + [13271,4817], + [13273,3660], + [13275,17551], + [13277,18573], + [13279,11798], + [13281,4112], + [13283,2744], + [13285,36878], + [13287,3239], + [13289,2952], + [13291,10461], + [13293,11154], + [13295,29969], + [13297,43431], + [13299,15501], + [13301,2702], + [13303,7191], + [13305,11308], + [13307,967], + [13309,1736], + [13311,14498], + [13313,44789], + [13315,2723], + [13317,3711], + [13319,3654], + [13321,9133], + [15001,91526], + [15003,470916], + [15005,"NA"], + [15007,35865], + [15009,85861], + [16001,224773], + [16003,1741], + [16005,41006], + [16007,2805], + [16009,4004], + [16011,22751], + [16013,11825], + [16015,3092], + [16017,18852], + [16019,52293], + [16021,5097], + [16023,1291], + [16025,657], + [16027,93451], + [16029,3787], + [16031,11569], + [16033,393], + [16035,3044], + [16037,2138], + [16039,10937], + [16041,6628], + [16043,7356], + [16045,7715], + [16047,8016], + [16049,6330], + [16051,12803], + [16053,11513], + [16055,73697], + [16057,19859], + [16059,3403], + [16061,1622], + [16063,2636], + [16065,20527], + [16067,10854], + [16069,20828], + [16071,2197], + [16073,5270], + [16075,11235], + [16077,3923], + [16079,5106], + [16081,5971], + [16083,40319], + [16085,4959], + [16087,4592], + [17001,32425], + [17003,2200], + [17005,7864], + [17007,26320], + [17009,2851], + [17011,17340], + [17013,2369], + [17015,7850], + [17017,6226], + [17019,105228], + [17021,15337], + [17023,8146], + [17025,6691], + [17027,20415], + [17029,24474], + [17031,2669585], + [17033,9008], + [17035,5970], + [17037,54979], + [17039,7895], + [17041,10212], + [17043,517781], + [17045,9686], + [17047,2966], + [17049,18654], + [17051,9734], + [17053,6533], + [17055,16656], + [17057,15770], + [17059,2528], + [17061,6056], + [17063,25810], + [17065,4249], + [17067,8812], + [17069,1396], + [17071,3710], + [17073,25056], + [17075,14845], + [17077,28626], + [17079,4637], + [17081,17533], + [17083,11035], + [17085,11355], + [17087,4200], + [17089,269190], + [17091,55571], + [17093,68095], + [17095,22895], + [17097,371647], + [17099,56996], + [17101,6163], + [17103,17987], + [17105,16986], + [17107,13051], + [17109,14001], + [17111,168203], + [17113,89977], + [17115,50182], + [17117,23313], + [17119,134851], + [17121,17990], + [17123,5619], + [17125,6426], + [17127,6022], + [17129,6883], + [17131,8172], + [17133,18454], + [17135,12115], + [17137,16968], + [17139,7422], + [17141,25755], + [17143,87850], + [17145,8687], + [17147,8525], + [17149,7495], + [17151,1761], + [17153,2190], + [17155,3101], + [17157,14521], + [17159,7525], + [17161,71616], + [17163,126941], + [17165,10025], + [17167,106024], + [17169,3353], + [17171,2529], + [17173,10364], + [17175,2752], + [17177,21371], + [17179,65635], + [17181,7508], + [17183,35005], + [17185,5741], + [17187,8680], + [17189,9629], + [17191,7284], + [17193,6875], + [17195,28672], + [17197,363533], + [17199,32261], + [17201,141281], + [17203,19314], + [18001,17030], + [18003,180761], + [18005,44425], + [18007,4563], + [18009,5333], + [18011,34838], + [18013,7518], + [18015,10103], + [18017,18039], + [18019,60642], + [18021,12379], + [18023,17143], + [18025,5002], + [18027,15964], + [18029,25585], + [18031,14546], + [18033,22222], + [18035,55054], + [18037,23382], + [18039,108409], + [18041,9345], + [18043,41056], + [18045,7975], + [18047,11473], + [18049,9883], + [18051,19188], + [18053,32123], + [18055,13734], + [18057,174397], + [18059,38666], + [18061,19992], + [18063,85739], + [18065,22104], + [18067,38061], + [18069,18676], + [18071,22334], + [18073,16560], + [18075,9940], + [18077,15278], + [18079,13258], + [18081,80210], + [18083,19055], + [18085,41475], + [18087,19414], + [18089,232103], + [18091,48624], + [18093,20584], + [18095,58937], + [18097,481213], + [18099,24312], + [18101,5147], + [18103,16078], + [18105,67952], + [18107,19148], + [18109,36019], + [18111,7034], + [18113,23317], + [18115,3225], + [18117,8874], + [18119,9255], + [18121,7263], + [18123,9456], + [18125,6328], + [18127,86221], + [18129,13444], + [18131,6376], + [18133,16594], + [18135,12662], + [18137,14057], + [18139,8973], + [18141,134050], + [18143,10495], + [18145,22943], + [18147,10970], + [18149,10855], + [18151,20072], + [18153,8695], + [18155,4994], + [18157,94337], + [18159,8524], + [18161,3635], + [18163,93179], + [18165,7267], + [18167,49352], + [18169,15471], + [18171,4108], + [18173,32466], + [18175,13705], + [18177,30933], + [18179,14161], + [18181,13636], + [18183,17226], + [19001,4238], + [19003,2219], + [19005,7678], + [19007,6166], + [19009,3280], + [19011,13615], + [19013,69355], + [19015,15132], + [19017,13923], + [19019,11215], + [19021,11526], + [19023,8039], + [19025,4527], + [19027,11291], + [19029,7273], + [19031,10871], + [19033,23145], + [19035,6328], + [19037,6433], + [19039,4837], + [19041,8730], + [19043,10314], + [19045,23827], + [19047,8447], + [19049,45876], + [19051,4295], + [19053,4411], + [19055,10741], + [19057,20064], + [19059,10314], + [19061,54754], + [19063,5603], + [19065,10725], + [19067,8702], + [19069,5952], + [19071,3993], + [19073,5673], + [19075,6643], + [19077,5631], + [19079,7150], + [19081,6398], + [19083,8584], + [19085,7459], + [19087,9574], + [19089,5336], + [19091,5394], + [19093,4030], + [19095,10572], + [19097,11077], + [19099,19271], + [19101,9196], + [19103,84422], + [19105,10701], + [19107,5327], + [19109,8906], + [19111,17484], + [19113,118954], + [19115,6111], + [19117,4388], + [19119,7096], + [19121,8261], + [19123,11815], + [19125,17469], + [19127,19159], + [19129,7416], + [19131,5887], + [19133,4732], + [19135,3962], + [19137,5119], + [19139,22461], + [19141,8371], + [19143,3647], + [19145,6475], + [19147,4973], + [19149,15028], + [19151,4323], + [19153,257675], + [19155,48330], + [19157,10438], + [19159,2610], + [19161,5502], + [19163,86457], + [19165,6832], + [19167,20713], + [19169,57038], + [19171,9780], + [19173,3234], + [19175,6523], + [19177,3865], + [19179,17918], + [19181,27145], + [19183,12371], + [19185,2844], + [19187,20459], + [19189,5205], + [19191,12077], + [19193,55823], + [19195,4275], + [19197,6700], + [20001,6439], + [20003,4176], + [20005,7045], + [20007,2527], + [20009,14023], + [20011,7129], + [20013,5165], + [20015,32196], + [20017,1407], + [20019,1540], + [20021,10290], + [20023,1345], + [20025,1116], + [20027,4034], + [20029,4256], + [20031,4283], + [20033,971], + [20035,16909], + [20037,18919], + [20039,1293], + [20041,9168], + [20043,4274], + [20045,65274], + [20047,1654], + [20049,1189], + [20051,17013], + [20053,2834], + [20055,20151], + [20057,17885], + [20059,14227], + [20061,12058], + [20063,1451], + [20065,1225], + [20067,3774], + [20069,3410], + [20071,912], + [20073,3323], + [20075,1643], + [20077,2881], + [20079,17206], + [20081,2305], + [20083,1030], + [20085,7260], + [20087,10217], + [20089,1331], + [20091,328355], + [20093,2058], + [20095,3528], + [20097,1420], + [20099,10733], + [20101,810], + [20103,35786], + [20105,1738], + [20107,4343], + [20109,1723], + [20111,16822], + [20113,16340], + [20115,6121], + [20117,5563], + [20119,2377], + [20121,17022], + [20123,3696], + [20125,15999], + [20127,3051], + [20129,1344], + [20131,5897], + [20133,6056], + [20135,1423], + [20137,2873], + [20139,8058], + [20141,2059], + [20143,3163], + [20145,3209], + [20147,2857], + [20149,12151], + [20151,5104], + [20153,1545], + [20155,30137], + [20157,2544], + [20159,5305], + [20161,34889], + [20163,2669], + [20165,1732], + [20167,3574], + [20169,30112], + [20171,2887], + [20173,247299], + [20175,10232], + [20177,91691], + [20179,1449], + [20181,2942], + [20183,2034], + [20185,2095], + [20187,1071], + [20189,2908], + [20191,10932], + [20193,4353], + [20195,1476], + [20197,3706], + [20199,860], + [20201,3084], + [20203,1206], + [20205,4116], + [20207,1617], + [20209,76448], + [21001,6834], + [21003,8756], + [21005,11364], + [21007,3659], + [21009,19082], + [21011,4785], + [21013,8760], + [21015,66528], + [21017,9784], + [21019,18358], + [21021,12303], + [21023,3791], + [21025,3925], + [21027,7944], + [21029,40178], + [21031,5106], + [21033,5473], + [21035,18561], + [21037,48187], + [21039,2679], + [21041,5137], + [21043,10180], + [21045,6888], + [21047,24630], + [21049,16859], + [21051,5688], + [21053,3795], + [21055,4154], + [21057,2931], + [21059,46182], + [21061,4755], + [21063,2187], + [21065,5354], + [21067,169790], + [21069,6079], + [21071,11843], + [21073,24239], + [21075,2085], + [21077,3861], + [21079,7642], + [21081,11228], + [21083,15624], + [21085,10919], + [21087,5066], + [21089,13750], + [21091,3997], + [21093,47290], + [21095,7269], + [21097,8574], + [21099,8018], + [21101,21374], + [21103,7857], + [21105,2028], + [21107,20261], + [21109,4308], + [21111,383442], + [21113,25412], + [21115,7474], + [21117,83800], + [21119,4663], + [21121,9954], + [21123,5838], + [21125,24047], + [21127,5206], + [21129,1994], + [21131,2853], + [21133,6675], + [21135,5009], + [21137,9142], + [21139,3707], + [21141,11938], + [21143,3063], + [21145,29158], + [21147,4806], + [21149,4285], + [21151,44495], + [21153,3285], + [21155,9524], + [21157,15016], + [21159,3145], + [21161,7313], + [21163,11966], + [21165,2412], + [21167,10002], + [21169,4159], + [21171,4756], + [21173,11942], + [21175,4588], + [21177,11647], + [21179,21847], + [21181,3370], + [21183,9643], + [21185,31643], + [21187,5630], + [21189,1169], + [21191,6777], + [21193,8753], + [21195,20324], + [21197,5009], + [21199,25895], + [21201,822], + [21203,6596], + [21205,10791], + [21207,6169], + [21209,27715], + [21211,23595], + [21213,8402], + [21215,9571], + [21217,11598], + [21219,5511], + [21221,5757], + [21223,3836], + [21225,6241], + [21227,61301], + [21229,6240], + [21231,7546], + [21233,5914], + [21235,13431], + [21237,1973], + [21239,14611], + [22001,24564], + [22003,8919], + [22005,62130], + [22007,9227], + [22009,15718], + [22011,15098], + [22013,5677], + [22015,57715], + [22017,107277], + [22019,103116], + [22021,3991], + [22023,3826], + [22025,3431], + [22027,5964], + [22029,7266], + [22031,10914], + [22033,232657], + [22035,2143], + [22037,8122], + [22039,12700], + [22041,7295], + [22043,8343], + [22045,30177], + [22047,14140], + [22049,7099], + [22051,216986], + [22053,13606], + [22055,114609], + [22057,43390], + [22059,6285], + [22061,21515], + [22063,68835], + [22065,3843], + [22067,10644], + [22069,16750], + [22071,180378], + [22073,71718], + [22075,10208], + [22077,9983], + [22079,57404], + [22081,3817], + [22083,8464], + [22085,9160], + [22087,19592], + [22089,25381], + [22091,4400], + [22093,9628], + [22095,20100], + [22097,32880], + [22099,23015], + [22101,21986], + [22103,117759], + [22105,54284], + [22107,1629], + [22109,49060], + [22111,9264], + [22113,24757], + [22115,16966], + [22117,16983], + [22119,15232], + [22121,13270], + [22123,4112], + [22125,5340], + [22127,5197], + [23001,55338], + [23003,31470], + [23005,161973], + [23007,14446], + [23009,29180], + [23011,62297], + [23013,20709], + [23015,17014], + [23017,26567], + [23019,76988], + [23021,7476], + [23023,19192], + [23025,23486], + [23027,20861], + [23029,14010], + [23031,111149], + [24001,32618], + [24003,305361], + [24005,447980], + [24009,49089], + [24011,17772], + [24013,93662], + [24015,52958], + [24017,84413], + [24019,15984], + [24021,129447], + [24023,15601], + [24025,137176], + [24027,180344], + [24029,10306], + [24031,548401], + [24033,503489], + [24035,26753], + [24037,55122], + [24039,9277], + [24041,19658], + [24043,75868], + [24045,50655], + [24047,25335], + [24510,291382], + [25001,111448], + [25003,64314], + [25005,289447], + [25007,9337], + [25009,410144], + [25011,39485], + [25013,221675], + [25015,87906], + [25017,872287], + [25019,7038], + [25021,371974], + [25023,270417], + [25025,426576], + [25027,429368], + [26001,3825], + [26003,3261], + [26005,61243], + [26007,13638], + [26009,10060], + [26011,6117], + [26013,3218], + [26015,30729], + [26017,51844], + [26019,8831], + [26021,73739], + [26023,19090], + [26025,64360], + [26027,24326], + [26029,13043], + [26031,10806], + [26033,16377], + [26035,11946], + [26037,40473], + [26039,5364], + [26041,17104], + [26043,12495], + [26045,56853], + [26047,17584], + [26049,182403], + [26051,9880], + [26053,6332], + [26055,49346], + [26057,18154], + [26059,21158], + [26061,16552], + [26063,15985], + [26065,148824], + [26067,29636], + [26069,10103], + [26071,5212], + [26073,35328], + [26075,74356], + [26077,131920], + [26079,7713], + [26081,350111], + [26083,941], + [26085,3750], + [26087,40649], + [26089,10567], + [26091,47317], + [26093,99864], + [26095,2401], + [26097,5185], + [26099,435141], + [26101,10526], + [26103,33294], + [26105,14266], + [26107,19090], + [26109,11243], + [26111,40997], + [26113,7020], + [26115,76357], + [26117,27893], + [26119,3058], + [26121,77385], + [26123,23308], + [26125,651937], + [26127,12314], + [26129,8231], + [26131,2201], + [26133,10424], + [26135,2905], + [26137,11679], + [26139,155279], + [26141,5283], + [26143,7864], + [26145,88524], + [26147,74568], + [26149,29104], + [26151,19400], + [26153,3386], + [26155,33461], + [26157,24202], + [26159,35442], + [26161,191376], + [26163,778434], + [26165,14687], + [27001,7054], + [27003,192622], + [27005,18627], + [27007,23765], + [27009,21858], + [27011,2714], + [27013,39767], + [27015,14575], + [27017,17805], + [27019,56537], + [27021,14207], + [27023,6992], + [27025,29255], + [27027,35746], + [27029,4732], + [27031,3105], + [27033,5556], + [27035,31956], + [27037,235971], + [27039,11599], + [27041,20308], + [27043,7348], + [27045,11541], + [27047,16346], + [27049,26948], + [27051,3299], + [27053,688117], + [27055,10640], + [27057,9834], + [27059,20751], + [27061,22110], + [27063,6121], + [27065,9025], + [27067,24279], + [27069,2413], + [27071,6185], + [27073,3632], + [27075,5438], + [27077,2392], + [27079,15615], + [27081,3396], + [27083,15243], + [27085,19850], + [27087,2397], + [27089,5638], + [27091,10500], + [27093,13311], + [27095,12770], + [27097,17931], + [27099,20595], + [27101,4975], + [27103,20431], + [27105,11499], + [27107,3455], + [27109,85535], + [27111,31411], + [27113,9076], + [27115,14892], + [27117,4919], + [27119,17210], + [27121,6326], + [27123,283461], + [27125,2298], + [27127,8351], + [27129,8447], + [27131,36241], + [27133,5932], + [27135,8279], + [27137,102995], + [27139,81013], + [27141,50884], + [27143,8525], + [27145,89277], + [27147,21269], + [27149,5672], + [27151,5066], + [27153,12956], + [27155,1714], + [27157,12059], + [27159,6271], + [27161,9502], + [27163,139341], + [27165,6602], + [27167,3734], + [27169,29375], + [27171,73378], + [27173,5498], + [28001,11264], + [28003,15837], + [28005,4514], + [28007,7022], + [28009,3051], + [28011,13416], + [28013,6191], + [28015,3568], + [28017,7100], + [28019,3731], + [28021,3095], + [28023,6081], + [28025,8028], + [28027,9228], + [28029,11290], + [28031,8164], + [28033,87373], + [28035,33419], + [28037,2856], + [28039,8822], + [28041,4291], + [28043,9618], + [28045,18893], + [28047,86823], + [28049,110103], + [28051,5984], + [28053,2376], + [28055,401], + [28057,10413], + [28059,59171], + [28061,6198], + [28063,2229], + [28065,4186], + [28067,25821], + [28069,3557], + [28071,26019], + [28073,29638], + [28075,31816], + [28077,4680], + [28079,7762], + [28081,40851], + [28083,10347], + [28085,14438], + [28087,25547], + [28089,53420], + [28091,10276], + [28093,14571], + [28095,15654], + [28097,4241], + [28099,10712], + [28101,8651], + [28103,3969], + [28105,23079], + [28107,13199], + [28109,23244], + [28111,4362], + [28113,14688], + [28115,14450], + [28117,11072], + [28119,2621], + [28121,75023], + [28123,13277], + [28125,1716], + [28127,10942], + [28129,6744], + [28131,6500], + [28133,8348], + [28135,5741], + [28137,12092], + [28139,9407], + [28141,8264], + [28143,4615], + [28145,13674], + [28147,5041], + [28149,20829], + [28151,17779], + [28153,7543], + [28155,3910], + [28157,2838], + [28159,7113], + [28161,4892], + [28163,9256], + [29001,10382], + [29003,10042], + [29005,2845], + [29007,11145], + [29009,15208], + [29011,5325], + [29013,8165], + [29015,7265], + [29017,5465], + [29019,98256], + [29021,46742], + [29023,18815], + [29025,4479], + [29027,21844], + [29029,18739], + [29031,40802], + [29033,4774], + [29035,2546], + [29037,54567], + [29039,5802], + [29041,3859], + [29043,43401], + [29045,3374], + [29047,134141], + [29049,11023], + [29051,39466], + [29053,7489], + [29055,10838], + [29057,3589], + [29059,6963], + [29061,4119], + [29063,5087], + [29065,6209], + [29067,5087], + [29069,12850], + [29071,52726], + [29073,7708], + [29075,3592], + [29077,148738], + [29079,4907], + [29081,3976], + [29083,9902], + [29085,3699], + [29087,2687], + [29089,5035], + [29091,16133], + [29093,3719], + [29095,364575], + [29097,57791], + [29099,117757], + [29101,23208], + [29103,1986], + [29105,16175], + [29107,17209], + [29109,17805], + [29111,5142], + [29113,27256], + [29115,5279], + [29117,7358], + [29119,10486], + [29121,7622], + [29123,5484], + [29125,3914], + [29127,14588], + [29129,1931], + [29131,11895], + [29133,6222], + [29135,7479], + [29137,4167], + [29139,5754], + [29141,7975], + [29143,8250], + [29145,28250], + [29147,10863], + [29149,4119], + [29151,7233], + [29153,3634], + [29155,7040], + [29157,10089], + [29159,20648], + [29161,19527], + [29163,8074], + [29165,56764], + [29167,14236], + [29169,14493], + [29171,2457], + [29173,5632], + [29175,10505], + [29177,11158], + [29179,2686], + [29181,5342], + [29183,221367], + [29185,3921], + [29186,8999], + [29187,26268], + [29189,532225], + [29195,10751], + [29197,1909], + [29199,2458], + [29201,19994], + [29203,3330], + [29205,3074], + [29207,13316], + [29209,13441], + [29211,2774], + [29213,26355], + [29215,9333], + [29217,9618], + [29219,17516], + [29221,10353], + [29223,5665], + [29225,16919], + [29227,1212], + [29229,7612], + [29510,157567], + [30001,5069], + [30003,5531], + [30005,2368], + [30007,2549], + [30009,5416], + [30011,696], + [30013,37775], + [30015,2513], + [30017,6236], + [30019,935], + [30021,4601], + [30023,5296], + [30025,1811], + [30027,5762], + [30029,45929], + [30031,62084], + [30033,763], + [30035,5816], + [30037,379], + [30039,1630], + [30041,7794], + [30043,5667], + [30045,933], + [30047,13072], + [30049,35171], + [30051,988], + [30053,7925], + [30055,1042], + [30057,4411], + [30059,916], + [30061,1686], + [30063,61354], + [30065,2292], + [30067,8404], + [30069,277], + [30071,1935], + [30073,2863], + [30075,1067], + [30077,2866], + [30079,526], + [30081,19556], + [30083,6209], + [30085,4683], + [30087,4105], + [30089,4752], + [30091,1959], + [30093,17180], + [30095,4807], + [30097,1795], + [30099,2827], + [30101,2224], + [30103,353], + [30105,4401], + [30107,796], + [30109,512], + [30111,81129], + [31001,16628], + [31003,3587], + [31005,227], + [31007,416], + [31009,265], + [31011,2999], + [31013,5635], + [31015,1097], + [31017,1378], + [31019,27171], + [31021,3540], + [31023,4619], + [31025,13122], + [31027,4562], + [31029,2288], + [31031,3466], + [31033,5443], + [31035,3317], + [31037,5541], + [31039,4708], + [31041,6341], + [31043,10890], + [31045,5205], + [31047,12943], + [31049,1060], + [31051,3064], + [31053,19097], + [31055,287522], + [31057,1194], + [31059,3178], + [31061,1498], + [31063,1568], + [31065,2710], + [31067,11034], + [31069,1185], + [31071,1154], + [31073,1054], + [31075,452], + [31077,1232], + [31079,31356], + [31081,4645], + [31083,1754], + [31085,589], + [31087,1303], + [31089,5849], + [31091,391], + [31093,3294], + [31095,4213], + [31097,2088], + [31099,3734], + [31101,4609], + [31103,619], + [31105,1968], + [31107,4712], + [31109,168745], + [31111,18678], + [31113,483], + [31115,395], + [31117,463], + [31119,19126], + [31121,4027], + [31123,2643], + [31125,1996], + [31127,3610], + [31129,2363], + [31131,8247], + [31133,1650], + [31135,1816], + [31137,4921], + [31139,4138], + [31141,16944], + [31143,2876], + [31145,5965], + [31147,4230], + [31149,889], + [31151,7338], + [31153,91897], + [31155,10855], + [31157,18813], + [31159,8738], + [31161,2733], + [31163,1714], + [31165,782], + [31167,3435], + [31169,2898], + [31171,448], + [31173,2975], + [31175,2089], + [31177,11087], + [31179,5615], + [31181,1709], + [31183,565], + [31185,7312], + [32001,10750], + [32003,1050639], + [32005,22437], + [32007,27155], + [32009,526], + [32011,995], + [32013,8373], + [32015,3175], + [32017,2038], + [32019,21867], + [32021,1992], + [32023,16235], + [32027,2541], + [32029,1910], + [32031,230332], + [32033,4585], + [32510,24792], + [33001,31177], + [33003,23514], + [33005,41126], + [33007,14546], + [33009,48421], + [33011,230435], + [33013,81380], + [33015,180485], + [33017,71932], + [33019,23436], + [34001,124322], + [34003,484248], + [34005,233255], + [34007,256005], + [34009,47222], + [34011,67131], + [34013,372531], + [34015,150906], + [34017,363241], + [34019,65022], + [34021,199400], + [34023,442068], + [34025,330855], + [34027,261143], + [34029,271477], + [34031,246315], + [34033,30318], + [34035,174096], + [34037,75713], + [34039,278562], + [34041,56957], + [35001,323896], + [35003,1194], + [35005,27792], + [35006,9222], + [35007,5778], + [35009,21777], + [35011,825], + [35013,94788], + [35015,28441], + [35017,12353], + [35019,1676], + [35021,275], + [35023,2183], + [35025,27500], + [35027,8566], + [35028,8719], + [35029,10690], + [35031,24176], + [35033,2217], + [35035,25253], + [35037,3182], + [35039,16615], + [35041,7996], + [35043,63545], + [35045,53764], + [35047,10994], + [35049,72855], + [35051,4027], + [35053,6622], + [35055,14813], + [35057,5461], + [35059,1877], + [35061,29658], + [36001,159525], + [36003,20190], + [36005,618922], + [36007,86448], + [36009,35088], + [36011,36945], + [36013,56500], + [36015,36452], + [36017,22987], + [36019,36043], + [36021,31676], + [36023,23139], + [36025,19352], + [36027,144019], + [36029,448132], + [36031,17354], + [36033,19923], + [36035,23379], + [36037,29932], + [36039,20700], + [36041,2379], + [36043,28358], + [36045,45970], + [36047,1237966], + [36049,11820], + [36051,31244], + [36053,32920], + [36055,365686], + [36057,22456], + [36059,704626], + [36061,932124], + [36063,100900], + [36065,102330], + [36067,222636], + [36069,55433], + [36071,180097], + [36073,17868], + [36075,53653], + [36077,28391], + [36079,51024], + [36081,1180920], + [36083,82111], + [36085,225069], + [36087,153536], + [36089,43643], + [36091,118251], + [36093,76287], + [36095,14820], + [36097,8331], + [36099,15591], + [36101,43446], + [36103,779202], + [36105,34260], + [36107,23168], + [36109,50697], + [36111,88746], + [36113,32198], + [36115,28534], + [36117,44282], + [36119,480991], + [36121,18226], + [36123,11794], + [37001,78862], + [37003,17815], + [37005,4421], + [37007,10649], + [37009,12495], + [37011,7568], + [37013,20285], + [37015,8427], + [37017,14553], + [37019,49656], + [37021,134224], + [37023,39814], + [37025,101077], + [37027,35861], + [37029,4654], + [37031,31540], + [37033,9681], + [37035,76805], + [37037,34487], + [37039,11134], + [37041,5596], + [37043,4047], + [37045,46764], + [37047,22572], + [37049,41713], + [37051,127205], + [37053,13139], + [37055,19983], + [37057,79431], + [37059,20149], + [37061,26478], + [37063,161943], + [37065,22398], + [37067,182455], + [37069,29315], + [37071,105536], + [37073,5185], + [37075,3099], + [37077,29251], + [37079,9514], + [37081,258205], + [37083,20662], + [37085,51407], + [37087,28456], + [37089,52242], + [37091,9306], + [37093,19895], + [37095,2108], + [37097,84472], + [37099,18811], + [37101,91492], + [37103,4511], + [37105,26202], + [37107,27621], + [37109,41051], + [37111,20993], + [37113,15201], + [37115,9691], + [37117,9804], + [37119,582855], + [37121,6181], + [37123,11689], + [37125,39469], + [37127,43881], + [37129,115933], + [37131,7806], + [37133,63649], + [37135,74856], + [37137,5403], + [37139,17378], + [37141,26822], + [37143,5096], + [37145,18016], + [37147,88118], + [37149,8815], + [37151,66817], + [37153,16772], + [37155,50497], + [37157,40810], + [37159,64164], + [37161,24784], + [37163,29485], + [37165,11623], + [37167,29257], + [37169,21850], + [37171,33488], + [37173,7111], + [37175,13944], + [37177,1528], + [37179,115647], + [37181,17984], + [37183,556100], + [37185,7135], + [37187,4861], + [37189,27921], + [37191,53498], + [37193,30172], + [37195,36448], + [37197,17593], + [37199,7471], + [38001,1138], + [38003,5646], + [38005,2445], + [38007,440], + [38009,3243], + [38011,1844], + [38013,1150], + [38015,50845], + [38017,100647], + [38019,2125], + [38021,2558], + [38023,1691], + [38025,3262], + [38027,1284], + [38029,1591], + [38031,1693], + [38033,975], + [38035,38983], + [38037,1303], + [38039,1165], + [38041,1546], + [38043,1381], + [38045,2325], + [38047,964], + [38049,3390], + [38051,1246], + [38053,7980], + [38055,5090], + [38057,4673], + [38059,16866], + [38061,7162], + [38063,1541], + [38065,902], + [38067,3675], + [38069,1906], + [38071,6172], + [38073,2850], + [38075,1313], + [38077,8941], + [38079,5004], + [38081,2343], + [38083,739], + [38085,1345], + [38087,438], + [38089,18161], + [38091,1079], + [38093,11127], + [38095,1337], + [38097,4619], + [38099,5685], + [38101,33679], + [38103,2201], + [38105,22726], + [39001,10957], + [39003,48327], + [39005,26293], + [39007,44280], + [39009,28054], + [39011,24656], + [39013,31048], + [39015,19519], + [39017,189702], + [39019,13455], + [39021,19909], + [39023,63662], + [39025,104053], + [39027,17192], + [39029,48444], + [39031,15013], + [39033,19193], + [39035,610404], + [39037,26412], + [39039,18405], + [39041,105007], + [39043,37467], + [39045,76063], + [39047,14507], + [39049,667760], + [39051,22708], + [39053,12142], + [39055,48901], + [39057,81210], + [39059,18912], + [39061,405509], + [39063,41522], + [39065,14397], + [39067,6978], + [39069,13624], + [39071,16952], + [39073,13029], + [39075,21022], + [39077,28152], + [39079,12817], + [39081,28940], + [39083,31275], + [39085,124192], + [39087,24783], + [39089,88372], + [39091,23355], + [39093,151827], + [39095,210702], + [39097,20367], + [39099,106092], + [39101,27778], + [39103,95599], + [39105,8964], + [39107,23460], + [39109,53087], + [39111,5326], + [39113,250398], + [39115,6761], + [39117,16790], + [39119,39787], + [39121,4899], + [39123,21060], + [39125,8888], + [39127,15910], + [39129,26239], + [39131,10821], + [39133,87246], + [39135,21046], + [39137,18929], + [39139,53484], + [39141,33886], + [39143,31069], + [39145,29913], + [39147,27187], + [39149,24107], + [39151,186717], + [39153,272758], + [39155,90548], + [39157,45081], + [39159,27834], + [39161,14326], + [39163,5462], + [39165,114771], + [39167,27814], + [39169,61307], + [39171,19052], + [39173,70751], + [39175,12693], + [40001,8152], + [40003,2965], + [40005,5059], + [40007,2885], + [40009,11030], + [40011,4389], + [40013,19500], + [40015,11918], + [40017,69381], + [40019,22711], + [40021,19278], + [40023,5753], + [40025,1415], + [40027,139087], + [40029,2320], + [40031,49426], + [40033,2888], + [40035,6250], + [40037,31488], + [40039,15191], + [40041,17962], + [40043,2674], + [40045,2253], + [40047,28986], + [40049,12710], + [40051,26081], + [40053,3003], + [40055,2189], + [40057,1291], + [40059,1909], + [40061,4502], + [40063,5512], + [40065,10997], + [40067,2709], + [40069,4372], + [40071,18939], + [40073,8445], + [40075,4107], + [40077,3724], + [40079,19749], + [40081,15874], + [40083,21568], + [40085,6568], + [40087,18952], + [40089,14805], + [40091,7059], + [40093,3992], + [40095,6613], + [40097,19435], + [40099,6341], + [40101,29620], + [40103,5758], + [40105,4686], + [40107,4552], + [40109,374974], + [40111,16150], + [40113,21061], + [40115,14462], + [40117,7490], + [40119,38895], + [40121,17627], + [40123,18450], + [40125,33050], + [40127,4875], + [40129,1811], + [40131,44867], + [40133,9439], + [40135,16837], + [40137,19022], + [40139,9397], + [40141,3311], + [40143,318096], + [40145,36601], + [40147,23924], + [40149,5320], + [40151,5217], + [40153,9514], + [41001,6957], + [41003,46834], + [41005,212842], + [41007,19037], + [41009,23635], + [41011,26459], + [41013,9348], + [41015,9051], + [41017,89945], + [41019,45736], + [41021,838], + [41023,3109], + [41025,3425], + [41027,13920], + [41029,101475], + [41031,9867], + [41033,34311], + [41035,29245], + [41037,3454], + [41039,178622], + [41041,20913], + [41043,56869], + [41045,12488], + [41047,157531], + [41049,5771], + [41051,444268], + [41053,38358], + [41055,895], + [41057,11649], + [41059,36041], + [41061,11983], + [41063,3316], + [41065,13702], + [41067,313669], + [41069,687], + [41071,53234], + [42001,55412], + [42003,647671], + [42005,33101], + [42007,85343], + [42009,24058], + [42011,213262], + [42013,60866], + [42015,30182], + [42017,340936], + [42019,98638], + [42021,61359], + [42023,2232], + [42025,31570], + [42027,78955], + [42029,280415], + [42031,18031], + [42033,36318], + [42035,18560], + [42037,33905], + [42039,40512], + [42041,130153], + [42043,142150], + [42045,294250], + [42047,16335], + [42049,133626], + [42051,58453], + [42053,1892], + [42055,77509], + [42057,7303], + [42059,17302], + [42061,19677], + [42063,40229], + [42065,20707], + [42067,12203], + [42069,106792], + [42071,279894], + [42073,41513], + [42075,70599], + [42077,189074], + [42079,158791], + [42081,58735], + [42083,18496], + [42085,52544], + [42087,20810], + [42089,81912], + [42091,447537], + [42093,9128], + [42095,158885], + [42097,43962], + [42099,24290], + [42101,703565], + [42103,24918], + [42105,7382], + [42107,67579], + [42109,20496], + [42111,34184], + [42113,2863], + [42115,20870], + [42117,19856], + [42119,19802], + [42121,23720], + [42123,19781], + [42125,107289], + [42127,22527], + [42129,182859], + [42131,14089], + [42133,234956], + [44001,26145], + [44003,90765], + [44005,44255], + [44007,323360], + [44009,69029], + [45001,10287], + [45003,74152], + [45005,2662], + [45007,88932], + [45009,5317], + [45011,8073], + [45013,72535], + [45015,97028], + [45017,6903], + [45019,201825], + [45021,23536], + [45023,13394], + [45025,21640], + [45027,12721], + [45029,16761], + [45031,29915], + [45033,12688], + [45035,73197], + [45037,10551], + [45039,9999], + [45041,65394], + [45043,24970], + [45045,245590], + [45047,31356], + [45049,8232], + [45051,140219], + [45053,12002], + [45055,29255], + [45057,38353], + [45059,30041], + [45061,6441], + [45063,148123], + [45065,3393], + [45067,12683], + [45069,9314], + [45071,19198], + [45073,34232], + [45075,35621], + [45077,56376], + [45079,200496], + [45081,8898], + [45083,142435], + [45085,44284], + [45087,11471], + [45089,12478], + [45091,130699], + [46003,1518], + [46005,9393], + [46007,1121], + [46009,2939], + [46011,18848], + [46013,21046], + [46015,2466], + [46017,725], + [46019,5037], + [46021,848], + [46023,3881], + [46025,1916], + [46027,6972], + [46029,15177], + [46031,1451], + [46033,3985], + [46035,11215], + [46037,2853], + [46039,2236], + [46041,2248], + [46043,1668], + [46045,2158], + [46047,3017], + [46049,1112], + [46051,4449], + [46053,2071], + [46055,1103], + [46057,3168], + [46059,1827], + [46061,1765], + [46063,759], + [46065,10043], + [46067,3642], + [46069,697], + [46071,1302], + [46073,1068], + [46075,568], + [46077,2734], + [46079,6444], + [46081,13036], + [46083,31375], + [46085,1770], + [46087,3127], + [46089,1086], + [46091,2455], + [46093,13649], + [46095,768], + [46097,1198], + [46099,107494], + [46101,3942], + [46102,"NA"], + [46103,54602], + [46105,1574], + [46107,1154], + [46109,4832], + [46111,1207], + [46115,3279], + [46117,1866], + [46119,858], + [46121,3054], + [46123,3058], + [46125,4668], + [46127,8033], + [46129,2237], + [46135,11560], + [46137,974], + [47001,33675], + [47003,19825], + [47005,6739], + [47007,4322], + [47009,60843], + [47011,50128], + [47013,14734], + [47015,6022], + [47017,12022], + [47019,23672], + [47021,20262], + [47023,8447], + [47025,12731], + [47027,3042], + [47029,14451], + [47031,24453], + [47033,6887], + [47035,23563], + [47037,373946], + [47039,4660], + [47041,7548], + [47043,24787], + [47045,16366], + [47047,18284], + [47049,7107], + [47051,19841], + [47053,21238], + [47055,15275], + [47057,9286], + [47059,30875], + [47061,4789], + [47063,26852], + [47065,171922], + [47067,2033], + [47069,9196], + [47071,10205], + [47073,23708], + [47075,7677], + [47077,11987], + [47079,13923], + [47081,10436], + [47083,3198], + [47085,8644], + [47087,4492], + [47089,23616], + [47091,7541], + [47093,233712], + [47095,1916], + [47097,9435], + [47099,17794], + [47101,4888], + [47103,15967], + [47105,22283], + [47107,22763], + [47109,8766], + [47111,10238], + [47113,47801], + [47115,11919], + [47117,15076], + [47119,44098], + [47121,4898], + [47123,19405], + [47125,79969], + [47127,3386], + [47129,7805], + [47131,12571], + [47133,9217], + [47135,3191], + [47137,2325], + [47139,7391], + [47141,33264], + [47143,13475], + [47145,22864], + [47147,34762], + [47149,163654], + [47151,8023], + [47153,5922], + [47155,51213], + [47157,434261], + [47159,8683], + [47161,5168], + [47163,69778], + [47165,92346], + [47167,27512], + [47169,3846], + [47171,7013], + [47173,7280], + [47175,2037], + [47177,17673], + [47179,58751], + [47181,6089], + [47183,15865], + [47185,11765], + [47187,113583], + [47189,67843], + [48001,23466], + [48003,8674], + [48005,36997], + [48007,10220], + [48009,4081], + [48011,932], + [48013,20984], + [48015,14004], + [48017,2714], + [48019,9486], + [48021,38959], + [48023,1603], + [48025,10292], + [48027,139247], + [48029,903856], + [48031,5924], + [48033,365], + [48035,8174], + [48037,39555], + [48039,169559], + [48041,111095], + [48043,3955], + [48045,547], + [48047,2435], + [48049,16142], + [48051,7861], + [48053,21955], + [48055,17911], + [48057,10756], + [48059,5796], + [48061,165730], + [48063,5052], + [48065,3092], + [48067,12247], + [48069,3489], + [48071,18180], + [48073,21160], + [48075,2954], + [48077,4787], + [48079,1172], + [48081,1419], + [48083,3060], + [48085,512119], + [48087,1213], + [48089,9776], + [48091,65377], + [48093,5348], + [48095,1329], + [48097,18882], + [48099,24373], + [48101,525], + [48103,1703], + [48105,1733], + [48107,2616], + [48109,998], + [48111,3993], + [48113,1296256], + [48115,4632], + [48117,8594], + [48119,2602], + [48121,451157], + [48123,9482], + [48125,690], + [48127,6227], + [48129,1554], + [48131,4875], + [48133,7406], + [48135,76073], + [48137,865], + [48139,84838], + [48141,349153], + [48143,20196], + [48145,6598], + [48147,15739], + [48149,12468], + [48151,1756], + [48153,2733], + [48155,539], + [48157,366246], + [48159,4502], + [48161,6857], + [48163,8765], + [48165,9166], + [48167,159820], + [48169,2127], + [48171,12972], + [48173,747], + [48175,3312], + [48177,9553], + [48179,8470], + [48181,61095], + [48183,58251], + [48185,11032], + [48187,75830], + [48189,12567], + [48191,1164], + [48193,3593], + [48195,2940], + [48197,1621], + [48199,25113], + [48201,2246239], + [48203,29895], + [48205,2954], + [48207,2504], + [48209,104691], + [48211,2111], + [48213,35321], + [48215,336469], + [48217,15778], + [48219,11151], + [48221,25222], + [48223,17293], + [48225,10045], + [48227,13188], + [48229,1539], + [48231,40441], + [48233,9617], + [48235,778], + [48237,3848], + [48239,7262], + [48241,13441], + [48243,1071], + [48245,107298], + [48247,1940], + [48249,17429], + [48251,75904], + [48253,5614], + [48255,6266], + [48257,57813], + [48259,20309], + [48261,217], + [48263,469], + [48265,21320], + [48267,1949], + [48269,177], + [48271,1154], + [48273,14083], + [48275,1556], + [48277,23186], + [48279,5238], + [48281,9145], + [48283,3879], + [48285,8726], + [48287,9266], + [48289,6499], + [48291,31480], + [48293,8311], + [48295,1649], + [48297,5194], + [48299,8278], + [48301,86], + [48303,153290], + [48305,2725], + [48307,3703], + [48309,115893], + [48311,860], + [48313,4760], + [48315,4334], + [48317,2478], + [48319,1787], + [48321,16851], + [48323,24190], + [48325,20953], + [48327,816], + [48329,84892], + [48331,10250], + [48333,1920], + [48335,2604], + [48337,9015], + [48339,265406], + [48341,11173], + [48343,4884], + [48345,507], + [48347,28658], + [48349,22726], + [48351,5342], + [48353,6852], + [48355,167447], + [48357,4654], + [48359,907], + [48361,37284], + [48363,13227], + [48365,10211], + [48367,61160], + [48369,4939], + [48371,6484], + [48373,17349], + [48375,56055], + [48377,3073], + [48379,5544], + [48381,70531], + [48383,1698], + [48385,1039], + [48387,5022], + [48389,6023], + [48391,3130], + [48393,441], + [48395,7242], + [48397,47263], + [48399,4639], + [48401,22334], + [48403,3477], + [48405,2798], + [48407,11406], + [48409,30554], + [48411,2443], + [48413,1418], + [48415,7394], + [48417,1874], + [48419,10935], + [48421,1348], + [48423,105252], + [48425,4124], + [48427,26299], + [48429,4010], + [48431,669], + [48433,639], + [48435,1588], + [48437,2710], + [48439,1009291], + [48441,63183], + [48443,405], + [48445,5341], + [48447,742], + [48449,12855], + [48451,54152], + [48453,676998], + [48455,5472], + [48457,7200], + [48459,17862], + [48461,1578], + [48463,11786], + [48465,20102], + [48467,24809], + [48469,43635], + [48471,23743], + [48473,22130], + [48475,5385], + [48477,15054], + [48479,113642], + [48481,21033], + [48483,2477], + [48485,55367], + [48487,5039], + [48489,6489], + [48491,278109], + [48493,23708], + [48495,3064], + [48497,29372], + [48499,17209], + [48501,3753], + [48503,8293], + [48505,5197], + [48507,3878], + [49001,3088], + [49003,24779], + [49005,61470], + [49007,8366], + [49009,465], + [49011,164977], + [49013,8143], + [49015,4282], + [49017,2806], + [49019,5748], + [49021,21549], + [49023,5238], + [49025,3707], + [49027,6236], + [49029,5162], + [49031,460], + [49033,1100], + [49035,603897], + [49037,5764], + [49039,11843], + [49041,9625], + [49043,23964], + [49045,30948], + [49047,14184], + [49049,279993], + [49051,13955], + [49053,67517], + [49055,1432], + [49057,120584], + [50001,20846], + [50003,18439], + [50005,14896], + [50007,95181], + [50009,2701], + [50011,27346], + [50013,3974], + [50015,13913], + [50017,15891], + [50019,13531], + [50021,31448], + [50023,33887], + [50025,23207], + [50027,29316], + [51001,15779], + [51003,54377], + [51005,6924], + [51007,6190], + [51009,14970], + [51011,6988], + [51013,146166], + [51015,36792], + [51017,2492], + [51019,37909], + [51021,2736], + [51023,17325], + [51025,6202], + [51027,6853], + [51029,6258], + [51031,25904], + [51033,14836], + [51035,12944], + [51036,3715], + [51037,5246], + [51041,180468], + [51043,7423], + [51045,2347], + [51047,23415], + [51049,4597], + [51051,4570], + [51053,13427], + [51057,5517], + [51059,615851], + [51061,35872], + [51063,8178], + [51065,13162], + [51067,26330], + [51069,45273], + [51071,7931], + [51073,19063], + [51075,10815], + [51077,7013], + [51079,9918], + [51081,4202], + [51083,14846], + [51085,57089], + [51087,178588], + [51089,22112], + [51091,1305], + [51093,18904], + [51095,34812], + [51097,3655], + [51099,12303], + [51101,8738], + [51103,5103], + [51105,8434], + [51107,206982], + [51109,18542], + [51111,5245], + [51113,7162], + [51115,4033], + [51117,12444], + [51119,5021], + [51121,49659], + [51125,7225], + [51127,11656], + [51131,5869], + [51133,5442], + [51135,7024], + [51137,16340], + [51139,11579], + [51141,7942], + [51143,29657], + [51145,13617], + [51147,10140], + [51149,14910], + [51153,234607], + [51155,16249], + [51157,3706], + [51159,3903], + [51161,49064], + [51163,10447], + [51165,40499], + [51167,11230], + [51169,9412], + [51171,20797], + [51173,13659], + [51175,9024], + [51177,64849], + [51179,68194], + [51181,3652], + [51183,3943], + [51185,15937], + [51187,19671], + [51191,26809], + [51193,8966], + [51195,13190], + [51197,13641], + [51199,32066], + [51510,96239], + [51520,7438], + [51530,3271], + [51540,24842], + [51550,117770], + [51570,8700], + [51580,2379], + [51590,19083], + [51595,2242], + [51600,12952], + [51610,7968], + [51620,3532], + [51630,13540], + [51640,2899], + [51650,63882], + [51660,24197], + [51670,9765], + [51678,2262], + [51680,35470], + [51683,21564], + [51685,8468], + [51690,5156], + [51700,88720], + [51710,110198], + [51720,1659], + [51730,13191], + [51735,6158], + [51740,44007], + [51750,8247], + [51760,114501], + [51770,48866], + [51775,12874], + [51790,11775], + [51800,42900], + [51810,228883], + [51820,10177], + [51830,6704], + [51840,14305], + [53001,8714], + [53003,9964], + [53005,94291], + [53007,43289], + [53009,27313], + [53011,220790], + [53013,1719], + [53015,44844], + [53017,20536], + [53019,2491], + [53021,39844], + [53023,919], + [53025,44567], + [53027,27238], + [53029,32737], + [53031,11507], + [53033,1204361], + [53035,118179], + [53037,21533], + [53039,9642], + [53041,31915], + [53043,4891], + [53045,23501], + [53047,21406], + [53049,8289], + [53051,4660], + [53053,404636], + [53055,7874], + [53057,57965], + [53059,5076], + [53061,412294], + [53063,234478], + [53065,17882], + [53067,129787], + [53069,1288], + [53071,28715], + [53073,107124], + [53075,23110], + [53077,125834], + [54001,6952], + [54003,54018], + [54005,7978], + [54007,5485], + [54009,9967], + [54011,41161], + [54013,2618], + [54015,3254], + [54017,3776], + [54019,15952], + [54021,2536], + [54023,5949], + [54025,15665], + [54027,9883], + [54029,12841], + [54031,5710], + [54033,32307], + [54035,11990], + [54037,28521], + [54039,85190], + [54041,6820], + [54043,7280], + [54045,11143], + [54047,5077], + [54049,25640], + [54051,14048], + [54053,10016], + [54055,21660], + [54057,11894], + [54059,6740], + [54061,51218], + [54063,5972], + [54065,7645], + [54067,9574], + [54069,20603], + [54071,3649], + [54073,2950], + [54075,3722], + [54077,14833], + [54079,25743], + [54081,29896], + [54083,12190], + [54085,4558], + [54087,5195], + [54089,4564], + [54091,7809], + [54093,3471], + [54095,3543], + [54097,9793], + [54099,15511], + [54101,3485], + [54103,7192], + [54105,2229], + [54107,36777], + [54109,7410], + [55001,8311], + [55003,7983], + [55005,24437], + [55007,7560], + [55009,141684], + [55011,6596], + [55013,7202], + [55015,27821], + [55017,33480], + [55019,17595], + [55021,31689], + [55023,7951], + [55025,318936], + [55027,48045], + [55029,15562], + [55031,23655], + [55033,24413], + [55035,59095], + [55037,2236], + [55039,57143], + [55041,4015], + [55043,28307], + [55045,21285], + [55047,9798], + [55049,13748], + [55051,2647], + [55053,10366], + [55055,45874], + [55057,13589], + [55059,88793], + [55061,11075], + [55063,67813], + [55065,9880], + [55067,9612], + [55069,15317], + [55071,42003], + [55073,73899], + [55075,20310], + [55077,7581], + [55078,1580], + [55079,478435], + [55081,23114], + [55083,20542], + [55085,18658], + [55087,104267], + [55089,49229], + [55091,4183], + [55093,24775], + [55095,24970], + [55097,39637], + [55099,6908], + [55101,100112], + [55103,9299], + [55105,84444], + [55107,7029], + [55109,49850], + [55111,35366], + [55113,7948], + [55115,21373], + [55117,61965], + [55119,11121], + [55121,16727], + [55123,15818], + [55125,10012], + [55127,57919], + [55129,8005], + [55131,77492], + [55133,225680], + [55135,27076], + [55137,11523], + [55139,93421], + [55141,34749], + [56001,21007], + [56003,5547], + [56005,24436], + [56007,8376], + [56009,7887], + [56011,3745], + [56013,20059], + [56015,7041], + [56017,2428], + [56019,4213], + [56021,48874], + [56023,8737], + [56025,41054], + [56027,1340], + [56029,15954], + [56031,4781], + [56033,16151], + [56035,4237], + [56037,22165], + [56039,15270], + [56041,9437], + [56043,4219], + [56045,3965] + ] +} diff --git a/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2017.json b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2017.json new file mode 100644 index 0000000..8d581ee --- /dev/null +++ b/data/regional/united-states/economics/labourforce/us-labourforce-civilian-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Civilian Labour Force", + "description" : "Civilian labour force size.", + "units" : "people", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.labourforce.civilian.2017"], + [1001,25909], + [1003,91567], + [1005,8236], + [1007,8506], + [1009,24494], + [1011,4812], + [1013,8946], + [1015,45582], + [1017,15176], + [1019,11174], + [1021,19118], + [1023,4336], + [1025,7720], + [1027,5721], + [1029,5742], + [1031,20671], + [1033,23092], + [1035,4446], + [1037,4348], + [1039,15646], + [1041,6417], + [1043,37637], + [1045,19868], + [1047,14935], + [1049,29038], + [1051,37236], + [1053,14352], + [1055,42894], + [1057,6529], + [1059,13960], + [1061,10817], + [1063,2833], + [1065,6007], + [1067,6697], + [1069,44411], + [1071,23066], + [1073,309076], + [1075,5703], + [1077,41868], + [1079,13640], + [1081,73520], + [1083,41092], + [1085,3750], + [1087,7892], + [1089,175153], + [1091,7623], + [1093,12517], + [1095,42108], + [1097,186239], + [1099,7165], + [1101,105505], + [1103,54840], + [1105,3402], + [1107,7783], + [1109,15238], + [1111,9373], + [1113,23457], + [1115,38946], + [1117,109331], + [1119,5016], + [1121,34501], + [1123,18279], + [1125,99237], + [1127,25145], + [1129,6656], + [1131,2808], + [1133,9646], + [2013,2584], + [2016,3861], + [2020,155462], + [2050,7445], + [2060,426], + [2068,1130], + [2070,2055], + [2090,46708], + [2100,1089], + [2105,1140], + [2110,17435], + [2122,27095], + [2130,7104], + [2150,6447], + [2158,"NA"], + [2164,723], + [2170,47397], + [2180,4089], + [2185,3670], + [2188,2961], + [2195,1413], + [2198,2836], + [2220,4449], + [2230,824], + [2240,2969], + [2261,4898], + [2275,1050], + [2282,235], + [2290,2486], + [4001,20419], + [4003,49373], + [4005,75381], + [4007,21362], + [4009,14423], + [4011,3992], + [4012,8681], + [4013,2134987], + [4015,82407], + [4017,41337], + [4019,475622], + [4021,168806], + [4023,19001], + [4025,101763], + [4027,95167], + [5001,9013], + [5003,7695], + [5005,16401], + [5007,132496], + [5009,15821], + [5011,4379], + [5013,2361], + [5015,13097], + [5017,3505], + [5019,9470], + [5021,5908], + [5023,9351], + [5025,3315], + [5027,9115], + [5029,8281], + [5031,53733], + [5033,26688], + [5035,21807], + [5037,7724], + [5039,2881], + [5041,5453], + [5043,7846], + [5045,61288], + [5047,7439], + [5049,4732], + [5051,40424], + [5053,8371], + [5055,19805], + [5057,9897], + [5059,14188], + [5061,5952], + [5063,16231], + [5065,4908], + [5067,5916], + [5069,28059], + [5071,10640], + [5073,2521], + [5075,6918], + [5077,2976], + [5079,4036], + [5081,5591], + [5083,8947], + [5085,33887], + [5087,7458], + [5089,6495], + [5091,19862], + [5093,17908], + [5095,2820], + [5097,3069], + [5099,3615], + [5101,3380], + [5103,9795], + [5105,4202], + [5107,6574], + [5109,4285], + [5111,10347], + [5113,8033], + [5115,29336], + [5117,3732], + [5119,190086], + [5121,6936], + [5123,8410], + [5125,57787], + [5127,4423], + [5129,2946], + [5131,57210], + [5133,5650], + [5135,6054], + [5137,4827], + [5139,16138], + [5141,6089], + [5143,122329], + [5145,33810], + [5147,2950], + [5149,8650], + [6001,848335], + [6003,538], + [6005,14783], + [6007,102982], + [6009,21184], + [6011,10759], + [6013,563863], + [6015,9780], + [6017,89886], + [6019,449595], + [6021,12915], + [6023,63019], + [6025,73980], + [6027,8682], + [6029,384944], + [6031,57714], + [6033,29714], + [6035,10005], + [6037,5123933], + [6039,61443], + [6041,141308], + [6043,7647], + [6045,40003], + [6047,116088], + [6049,3230], + [6051,8568], + [6053,220120], + [6055,73873], + [6057,48659], + [6059,1618828], + [6061,182169], + [6063,7803], + [6065,1073843], + [6067,702049], + [6069,30317], + [6071,950765], + [6073,1584655], + [6075,568722], + [6077,324788], + [6079,142066], + [6081,452445], + [6083,216954], + [6085,1040558], + [6087,143802], + [6089,74476], + [6091,1301], + [6093,17963], + [6095,209199], + [6097,262807], + [6099,243235], + [6101,45739], + [6103,25598], + [6105,4991], + [6107,205423], + [6109,21477], + [6111,426116], + [6113,107775], + [6115,28546], + [8001,261302], + [8003,8230], + [8005,351417], + [8007,6593], + [8009,2138], + [8011,1925], + [8013,186852], + [8014,37971], + [8015,9318], + [8017,1145], + [8019,5853], + [8021,3920], + [8023,1832], + [8025,1458], + [8027,2015], + [8029,14357], + [8031,397166], + [8033,1138], + [8035,183263], + [8037,35052], + [8039,14330], + [8041,326663], + [8043,15084], + [8045,31778], + [8047,3594], + [8049,9598], + [8051,10714], + [8053,492], + [8055,2580], + [8057,963], + [8059,325390], + [8061,942], + [8063,4606], + [8065,4731], + [8067,31713], + [8069,195084], + [8071,6277], + [8073,2404], + [8075,11213], + [8077,73877], + [8079,453], + [8081,7375], + [8083,12998], + [8085,20925], + [8087,15716], + [8089,8352], + [8091,2291], + [8093,10153], + [8095,2597], + [8097,11032], + [8099,6216], + [8101,74580], + [8103,2822], + [8105,5445], + [8107,15577], + [8109,3404], + [8111,538], + [8113,5397], + [8115,1214], + [8117,22008], + [8119,12170], + [8121,3054], + [8123,157286], + [8125,5726], + [9001,485357], + [9003,481242], + [9005,105736], + [9007,93686], + [9009,462382], + [9011,139444], + [9013,86570], + [9015,64159], + [10001,78132], + [10003,296289], + [10005,102929], + [11001,400894], + [12001,136013], + [12003,11794], + [12005,88900], + [12007,11293], + [12009,268757], + [12011,1026330], + [12013,4933], + [12015,70269], + [12017,47901], + [12019,104588], + [12021,171979], + [12023,29419], + [12027,13833], + [12029,5800], + [12031,483717], + [12033,144784], + [12035,46377], + [12037,4770], + [12039,18477], + [12041,6839], + [12043,5043], + [12045,6024], + [12047,4438], + [12049,9378], + [12051,15652], + [12053,69356], + [12055,35921], + [12057,723973], + [12059,6801], + [12061,63322], + [12063,17307], + [12065,5444], + [12067,2955], + [12069,151015], + [12071,335542], + [12073,152544], + [12075,16967], + [12077,2632], + [12079,7407], + [12081,174945], + [12083,133553], + [12085,72370], + [12086,1384224], + [12087,45317], + [12089,39078], + [12091,95850], + [12093,18691], + [12095,731398], + [12097,169949], + [12099,724465], + [12101,227733], + [12103,490061], + [12105,293587], + [12107,27106], + [12109,122964], + [12111,138067], + [12113,78353], + [12115,185793], + [12117,250562], + [12119,30293], + [12121,18082], + [12123,8785], + [12125,4876], + [12127,251509], + [12129,14622], + [12131,29702], + [12133,9839], + [13001,9261], + [13003,4160], + [13005,5091], + [13007,1220], + [13009,17815], + [13011,9242], + [13013,38866], + [13015,49763], + [13017,5511], + [13019,7419], + [13021,69653], + [13023,4581], + [13025,7238], + [13027,7158], + [13029,17325], + [13031,37157], + [13033,9479], + [13035,10684], + [13037,2236], + [13039,20906], + [13043,5270], + [13045,55039], + [13047,33123], + [13049,4841], + [13051,139026], + [13053,2088], + [13055,10632], + [13057,129987], + [13059,60980], + [13061,875], + [13063,134595], + [13065,2825], + [13067,423398], + [13069,18436], + [13071,22195], + [13073,72880], + [13075,7732], + [13077,72479], + [13079,5758], + [13081,9462], + [13083,8282], + [13085,11688], + [13087,11663], + [13089,394688], + [13091,7126], + [13093,5105], + [13095,39080], + [13097,72367], + [13099,4555], + [13101,1933], + [13103,29036], + [13105,7874], + [13107,8683], + [13109,4921], + [13111,11006], + [13113,57431], + [13115,44296], + [13117,114728], + [13119,10019], + [13121,548023], + [13123,11988], + [13125,1303], + [13127,39838], + [13129,26745], + [13131,10750], + [13133,6817], + [13135,482878], + [13137,19372], + [13139,100338], + [13141,2569], + [13143,12491], + [13145,16350], + [13147,11259], + [13149,5143], + [13151,112204], + [13153,69194], + [13155,3280], + [13157,35004], + [13159,6811], + [13161,6159], + [13163,6760], + [13165,3206], + [13167,4003], + [13169,14045], + [13171,8126], + [13173,3874], + [13175,19445], + [13177,14956], + [13179,25838], + [13181,3578], + [13183,7703], + [13185,51826], + [13187,16756], + [13189,8964], + [13191,6120], + [13193,4763], + [13195,13602], + [13197,3421], + [13199,9012], + [13201,2840], + [13205,8538], + [13207,13235], + [13209,3811], + [13211,9015], + [13213,15815], + [13215,79554], + [13217,51535], + [13219,19231], + [13221,7212], + [13223,82244], + [13225,11669], + [13227,14857], + [13229,8840], + [13231,8667], + [13233,18470], + [13235,4149], + [13237,8145], + [13239,827], + [13241,6915], + [13243,2510], + [13245,86601], + [13247,44641], + [13249,2130], + [13251,5275], + [13253,3124], + [13255,28529], + [13257,11020], + [13259,2266], + [13261,12941], + [13263,2797], + [13265,572], + [13267,9626], + [13269,2844], + [13271,4800], + [13273,3759], + [13275,17273], + [13277,19253], + [13279,12005], + [13281,3839], + [13283,2752], + [13285,37665], + [13287,3305], + [13289,2973], + [13291,10188], + [13293,11295], + [13295,30728], + [13297,44747], + [13299,15972], + [13301,2725], + [13303,7373], + [13305,11371], + [13307,988], + [13309,1758], + [13311,15745], + [13313,45297], + [13315,2742], + [13317,3836], + [13319,3845], + [13321,9353], + [15001,91412], + [15003,471330], + [15005,"NA"], + [15007,36132], + [15009,86545], + [16001,232954], + [16003,1748], + [16005,41733], + [16007,2803], + [16009,3993], + [16011,22946], + [16013,12277], + [16015,3200], + [16017,19131], + [16019,53517], + [16021,5135], + [16023,1314], + [16025,676], + [16027,96377], + [16029,3814], + [16031,11718], + [16033,403], + [16035,3039], + [16037,2151], + [16039,11144], + [16041,6723], + [16043,7583], + [16045,7934], + [16047,8054], + [16049,6246], + [16051,13057], + [16053,11763], + [16055,75457], + [16057,20140], + [16059,3472], + [16061,1604], + [16063,2710], + [16065,21269], + [16067,11000], + [16069,21264], + [16071,2254], + [16073,5178], + [16075,11512], + [16077,3952], + [16079,5041], + [16081,6088], + [16083,41351], + [16085,5131], + [16087,4611], + [17001,32237], + [17003,2161], + [17005,7817], + [17007,25978], + [17009,2842], + [17011,17319], + [17013,2352], + [17015,7607], + [17017,6157], + [17019,104527], + [17021,14687], + [17023,7845], + [17025,6623], + [17027,20251], + [17029,24429], + [17031,2653153], + [17033,8778], + [17035,6096], + [17037,54651], + [17039,7740], + [17041,10120], + [17043,515683], + [17045,9426], + [17047,2838], + [17049,18787], + [17051,9585], + [17053,6483], + [17055,16425], + [17057,15430], + [17059,2455], + [17061,5965], + [17063,25658], + [17065,4416], + [17067,8483], + [17069,1336], + [17071,3643], + [17073,24790], + [17075,14668], + [17077,27990], + [17079,4520], + [17081,17341], + [17083,10931], + [17085,11002], + [17087,4084], + [17089,267675], + [17091,55854], + [17093,67862], + [17095,22472], + [17097,370972], + [17099,55642], + [17101,6042], + [17103,17784], + [17105,16611], + [17107,12827], + [17109,13485], + [17111,167389], + [17113,88354], + [17115,49202], + [17117,23071], + [17119,133452], + [17121,17637], + [17123,5470], + [17125,6375], + [17127,5875], + [17129,6723], + [17131,8067], + [17133,18356], + [17135,11886], + [17137,16437], + [17139,7269], + [17141,25178], + [17143,85721], + [17145,8319], + [17147,8453], + [17149,7192], + [17151,1754], + [17153,2098], + [17155,2985], + [17157,14114], + [17159,7535], + [17161,70698], + [17163,125758], + [17165,9694], + [17167,103457], + [17169,3286], + [17171,2457], + [17173,10235], + [17175,2682], + [17177,21537], + [17179,64033], + [17181,7354], + [17183,34070], + [17185,5596], + [17187,8643], + [17189,9542], + [17191,6868], + [17193,6645], + [17195,28039], + [17197,361592], + [17199,31519], + [17201,138602], + [17203,18837], + [18001,17235], + [18003,180751], + [18005,44516], + [18007,4510], + [18009,5372], + [18011,34993], + [18013,7547], + [18015,10027], + [18017,17811], + [18019,60858], + [18021,12204], + [18023,16913], + [18025,4923], + [18027,15846], + [18029,25591], + [18031,14681], + [18033,22211], + [18035,55024], + [18037,23194], + [18039,111740], + [18041,9042], + [18043,41151], + [18045,7882], + [18047,11169], + [18049,9696], + [18051,19037], + [18053,31781], + [18055,13480], + [18057,175574], + [18059,38770], + [18061,20035], + [18063,86205], + [18065,22122], + [18067,37983], + [18069,18387], + [18071,22363], + [18073,16348], + [18075,9731], + [18077,15031], + [18079,13162], + [18081,80529], + [18083,18645], + [18085,41408], + [18087,19815], + [18089,229520], + [18091,47624], + [18093,20776], + [18095,58889], + [18097,482568], + [18099,23768], + [18101,5114], + [18103,15795], + [18105,67577], + [18107,18927], + [18109,36114], + [18111,6957], + [18113,23050], + [18115,3213], + [18117,8750], + [18119,9162], + [18121,7172], + [18123,9235], + [18125,6477], + [18127,85418], + [18129,13388], + [18131,6357], + [18133,16601], + [18135,11801], + [18137,14017], + [18139,8909], + [18141,133864], + [18143,10486], + [18145,23016], + [18147,10912], + [18149,10449], + [18151,19922], + [18153,8506], + [18155,4961], + [18157,94220], + [18159,8530], + [18161,3624], + [18163,93131], + [18165,7131], + [18167,48600], + [18169,15115], + [18171,4043], + [18173,32433], + [18175,13650], + [18177,30832], + [18179,14158], + [18181,13164], + [18183,17198], + [19001,4143], + [19003,2132], + [19005,7520], + [19007,6058], + [19009,3176], + [19011,13463], + [19013,68275], + [19015,14828], + [19017,13664], + [19019,11031], + [19021,11432], + [19023,7860], + [19025,4301], + [19027,11049], + [19029,7135], + [19031,10797], + [19033,23237], + [19035,6082], + [19037,6399], + [19039,4763], + [19041,8606], + [19043,10169], + [19045,23167], + [19047,8220], + [19049,46065], + [19051,4254], + [19053,4351], + [19055,10512], + [19057,19655], + [19059,10165], + [19061,54459], + [19063,5441], + [19065,10429], + [19067,8777], + [19069,5773], + [19071,3833], + [19073,5409], + [19075,6501], + [19077,5596], + [19079,7059], + [19081,6158], + [19083,8474], + [19085,7362], + [19087,9681], + [19089,5119], + [19091,5273], + [19093,4029], + [19095,10478], + [19097,10884], + [19099,19272], + [19101,8995], + [19103,84887], + [19105,10527], + [19107,5192], + [19109,8731], + [19111,16168], + [19113,118275], + [19115,6053], + [19117,4364], + [19119,6992], + [19121,8315], + [19123,11468], + [19125,17337], + [19127,18248], + [19129,7321], + [19131,5765], + [19133,4520], + [19135,3900], + [19137,4985], + [19139,21819], + [19141,8038], + [19143,3579], + [19145,6284], + [19147,4905], + [19149,14570], + [19151,4118], + [19153,259419], + [19155,48034], + [19157,10440], + [19159,2569], + [19161,5358], + [19163,86085], + [19165,6678], + [19167,20350], + [19169,57279], + [19171,9627], + [19173,3237], + [19175,6430], + [19177,3724], + [19179,17641], + [19181,27296], + [19183,12358], + [19185,2783], + [19187,19369], + [19189,5190], + [19191,11839], + [19193,54218], + [19195,4219], + [19197,6552], + [20001,6298], + [20003,4144], + [20005,7055], + [20007,2475], + [20009,14100], + [20011,6860], + [20013,5327], + [20015,31813], + [20017,1404], + [20019,1447], + [20021,10164], + [20023,1315], + [20025,1104], + [20027,3825], + [20029,3895], + [20031,4124], + [20033,922], + [20035,16961], + [20037,19123], + [20039,1266], + [20041,9279], + [20043,4253], + [20045,65199], + [20047,1548], + [20049,1193], + [20051,16972], + [20053,2708], + [20055,20373], + [20057,17791], + [20059,14142], + [20061,11573], + [20063,1417], + [20065,1125], + [20067,3478], + [20069,3422], + [20071,880], + [20073,3211], + [20075,1608], + [20077,2654], + [20079,17031], + [20081,2218], + [20083,993], + [20085,7181], + [20087,10104], + [20089,1312], + [20091,332197], + [20093,2055], + [20095,3440], + [20097,1342], + [20099,10350], + [20101,797], + [20103,36117], + [20105,1689], + [20107,4355], + [20109,1682], + [20111,16809], + [20113,16290], + [20115,6267], + [20117,5490], + [20119,2260], + [20121,17175], + [20123,3452], + [20125,14987], + [20127,3013], + [20129,1212], + [20131,5580], + [20133,6053], + [20135,1368], + [20137,2820], + [20139,7961], + [20141,2008], + [20143,3060], + [20145,3035], + [20147,2811], + [20149,12168], + [20151,4931], + [20153,1463], + [20155,30028], + [20157,2460], + [20159,5406], + [20161,35023], + [20163,2505], + [20165,1634], + [20167,3501], + [20169,30674], + [20171,2851], + [20173,244662], + [20175,9873], + [20177,90915], + [20179,1363], + [20181,2882], + [20183,1971], + [20185,2003], + [20187,992], + [20189,2657], + [20191,10761], + [20193,4266], + [20195,1435], + [20197,3637], + [20199,847], + [20201,2962], + [20203,1168], + [20205,3998], + [20207,1589], + [20209,77204], + [21001,6854], + [21003,8954], + [21005,11573], + [21007,3650], + [21009,19257], + [21011,4755], + [21013,8790], + [21015,68431], + [21017,9921], + [21019,18497], + [21021,12701], + [21023,3878], + [21025,3942], + [21027,8206], + [21029,41337], + [21031,5257], + [21033,5467], + [21035,18597], + [21037,49517], + [21039,2432], + [21041,4919], + [21043,10232], + [21045,6943], + [21047,25091], + [21049,17258], + [21051,5640], + [21053,3877], + [21055,4139], + [21057,2958], + [21059,47366], + [21061,4884], + [21063,2227], + [21065,5383], + [21067,174304], + [21069,6159], + [21071,11777], + [21073,24673], + [21075,2085], + [21077,3947], + [21079,7744], + [21081,11531], + [21083,16041], + [21085,10990], + [21087,5137], + [21089,13833], + [21091,4087], + [21093,48370], + [21095,6948], + [21097,8803], + [21099,8257], + [21101,21863], + [21103,8048], + [21105,1931], + [21107,20168], + [21109,4203], + [21111,394248], + [21113,26051], + [21115,7392], + [21117,86025], + [21119,4576], + [21121,10208], + [21123,5967], + [21125,24697], + [21127,5123], + [21129,1952], + [21131,2789], + [21133,6541], + [21135,4930], + [21137,9386], + [21139,3766], + [21141,12161], + [21143,3107], + [21145,29636], + [21147,4886], + [21149,4401], + [21151,45448], + [21153,3119], + [21155,9589], + [21157,15180], + [21159,3315], + [21161,7376], + [21163,12211], + [21165,2385], + [21167,10114], + [21169,4176], + [21171,4857], + [21173,11829], + [21175,4644], + [21177,11686], + [21179,22487], + [21181,3455], + [21183,9816], + [21185,32553], + [21187,5581], + [21189,1139], + [21191,6952], + [21193,8648], + [21195,20466], + [21197,5120], + [21199,25539], + [21201,838], + [21203,6702], + [21205,10711], + [21207,6273], + [21209,28401], + [21211,24212], + [21213,8731], + [21215,9838], + [21217,12174], + [21219,5502], + [21221,5863], + [21223,3915], + [21225,6191], + [21227,63289], + [21229,6365], + [21231,7602], + [21233,5839], + [21235,13726], + [21237,1967], + [21239,14876], + [22001,24151], + [22003,9023], + [22005,62243], + [22007,8960], + [22009,15644], + [22011,14778], + [22013,5629], + [22015,56871], + [22017,105707], + [22019,108795], + [22021,3866], + [22023,4036], + [22025,3449], + [22027,5877], + [22029,7160], + [22031,10700], + [22033,232758], + [22035,2076], + [22037,8110], + [22039,12590], + [22041,7301], + [22043,8189], + [22045,29495], + [22047,14142], + [22049,7004], + [22051,215779], + [22053,13679], + [22055,113098], + [22057,41795], + [22059,6172], + [22061,21674], + [22063,68804], + [22065,3823], + [22067,10420], + [22069,16450], + [22071,179465], + [22073,70946], + [22075,10149], + [22077,9974], + [22079,56356], + [22081,3862], + [22083,8364], + [22085,8802], + [22087,19477], + [22089,25219], + [22091,4386], + [22093,9547], + [22095,19975], + [22097,32148], + [22099,22562], + [22101,20410], + [22103,117253], + [22105,55118], + [22107,1559], + [22109,47102], + [22111,9147], + [22113,24349], + [22115,16368], + [22117,16976], + [22119,14869], + [22121,13283], + [22123,4019], + [22125,5330], + [22127,5059], + [23001,55700], + [23003,31616], + [23005,165341], + [23007,14537], + [23009,29396], + [23011,62793], + [23013,20727], + [23015,17077], + [23017,26917], + [23019,77131], + [23021,7543], + [23023,19398], + [23025,23345], + [23027,21095], + [23029,14070], + [23031,113416], + [24001,32514], + [24003,309214], + [24005,453197], + [24009,49925], + [24011,17936], + [24013,94869], + [24015,53107], + [24017,85792], + [24019,15743], + [24021,131266], + [24023,15612], + [24025,138729], + [24027,182804], + [24029,10308], + [24031,557412], + [24033,511766], + [24035,27125], + [24037,55310], + [24039,9436], + [24041,19752], + [24043,76209], + [24045,51488], + [24047,25699], + [24510,294248], + [25001,112489], + [25003,65153], + [25005,292342], + [25007,9468], + [25009,414548], + [25011,39904], + [25013,223137], + [25015,88508], + [25017,885207], + [25019,7126], + [25021,377844], + [25023,274224], + [25025,433072], + [25027,434150], + [26001,3855], + [26003,3336], + [26005,61320], + [26007,13582], + [26009,10162], + [26011,6095], + [26013,3173], + [26015,31125], + [26017,50995], + [26019,8919], + [26021,73790], + [26023,19088], + [26025,63752], + [26027,24431], + [26029,13069], + [26031,10854], + [26033,16451], + [26035,12093], + [26037,40853], + [26039,5451], + [26041,17038], + [26043,12549], + [26045,57498], + [26047,17676], + [26049,183109], + [26051,9905], + [26053,6286], + [26055,49856], + [26057,18068], + [26059,21084], + [26061,16542], + [26063,15737], + [26065,150600], + [26067,29898], + [26069,10173], + [26071,5213], + [26073,35483], + [26075,74314], + [26077,132438], + [26079,7793], + [26081,355111], + [26083,940], + [26085,3772], + [26087,41114], + [26089,10655], + [26091,47363], + [26093,101400], + [26095,2431], + [26097,5282], + [26099,441491], + [26101,10448], + [26103,32799], + [26105,14163], + [26107,18905], + [26109,11018], + [26111,40489], + [26113,7033], + [26115,76449], + [26117,28183], + [26119,3037], + [26121,78193], + [26123,23456], + [26125,662752], + [26127,12397], + [26129,8238], + [26131,2166], + [26133,10624], + [26135,2941], + [26137,11668], + [26139,157285], + [26141,5190], + [26143,7957], + [26145,87662], + [26147,75420], + [26149,28855], + [26151,19457], + [26153,3370], + [26155,33525], + [26157,24039], + [26159,35459], + [26161,193566], + [26163,789088], + [26165,14776], + [27001,7195], + [27003,195328], + [27005,18589], + [27007,23722], + [27009,22088], + [27011,2599], + [27013,40188], + [27015,14473], + [27017,17854], + [27019,57261], + [27021,14554], + [27023,6969], + [27025,29638], + [27027,35875], + [27029,4631], + [27031,3194], + [27033,5636], + [27035,32486], + [27037,239345], + [27039,11657], + [27041,20653], + [27043,7235], + [27045,11521], + [27047,16182], + [27049,26916], + [27051,3281], + [27053,698457], + [27055,10613], + [27057,9924], + [27059,21034], + [27061,21781], + [27063,5779], + [27065,9022], + [27067,24834], + [27069,2381], + [27071,6026], + [27073,3528], + [27075,5591], + [27077,2387], + [27079,15803], + [27081,3321], + [27083,14987], + [27085,19578], + [27087,2367], + [27089,5498], + [27091,10424], + [27093,13301], + [27095,12918], + [27097,17713], + [27099,20575], + [27101,4898], + [27103,20625], + [27105,11344], + [27107,3408], + [27109,86420], + [27111,31757], + [27113,8831], + [27115,15044], + [27117,4909], + [27119,17043], + [27121,6371], + [27123,287472], + [27125,2255], + [27127,7702], + [27129,8900], + [27131,36629], + [27133,5912], + [27135,8157], + [27137,102698], + [27139,82194], + [27141,51601], + [27143,8513], + [27145,90157], + [27147,20561], + [27149,5526], + [27151,5045], + [27153,13476], + [27155,1789], + [27157,12078], + [27159,5831], + [27161,9392], + [27163,141336], + [27165,6491], + [27167,3574], + [27169,29057], + [27171,74355], + [27173,5345], + [28001,11205], + [28003,16095], + [28005,4509], + [28007,6938], + [28009,3054], + [28011,12985], + [28013,6130], + [28015,3597], + [28017,7075], + [28019,3677], + [28021,3034], + [28023,6033], + [28025,7852], + [28027,8923], + [28029,11310], + [28031,8261], + [28033,88199], + [28035,33967], + [28037,2833], + [28039,8914], + [28041,4372], + [28043,9653], + [28045,18911], + [28047,86789], + [28049,110762], + [28051,5789], + [28053,2308], + [28055,396], + [28057,10385], + [28059,59121], + [28061,6100], + [28063,2093], + [28065,4217], + [28067,25476], + [28069,3511], + [28071,26766], + [28073,30205], + [28075,31618], + [28077,4643], + [28079,7683], + [28081,40783], + [28083,10414], + [28085,14579], + [28087,25384], + [28089,53841], + [28091,10233], + [28093,14624], + [28095,15432], + [28097,4173], + [28099,10576], + [28101,8511], + [28103,3923], + [28105,22878], + [28107,13039], + [28109,23243], + [28111,4430], + [28113,14690], + [28115,14424], + [28117,11118], + [28119,2485], + [28121,75655], + [28123,13403], + [28125,1703], + [28127,10997], + [28129,6752], + [28131,6570], + [28133,8091], + [28135,5631], + [28137,12138], + [28139,9486], + [28141,8308], + [28143,4597], + [28145,13976], + [28147,5008], + [28149,20649], + [28151,17237], + [28153,7505], + [28155,3908], + [28157,2836], + [28159,7245], + [28161,5005], + [28163,9212], + [29001,10204], + [29003,9919], + [29005,2817], + [29007,10937], + [29009,15109], + [29011,5116], + [29013,8116], + [29015,7120], + [29017,5382], + [29019,97496], + [29021,46169], + [29023,18085], + [29025,4465], + [29027,21514], + [29029,18475], + [29031,40154], + [29033,4716], + [29035,2471], + [29037,54502], + [29039,5667], + [29041,3780], + [29043,43119], + [29045,3160], + [29047,134548], + [29049,11051], + [29051,38860], + [29053,7348], + [29055,10644], + [29057,3544], + [29059,6917], + [29061,4031], + [29063,5031], + [29065,6040], + [29067,4971], + [29069,12219], + [29071,52277], + [29073,7678], + [29075,3572], + [29077,147999], + [29079,4744], + [29081,3863], + [29083,9663], + [29085,3691], + [29087,2669], + [29089,4987], + [29091,15467], + [29093,3486], + [29095,363854], + [29097,56734], + [29099,116746], + [29101,23157], + [29103,1956], + [29105,16189], + [29107,17206], + [29109,17564], + [29111,5056], + [29113,26985], + [29115,5169], + [29117,7290], + [29119,10573], + [29121,7403], + [29123,5367], + [29125,3860], + [29127,14321], + [29129,1936], + [29131,11823], + [29133,5972], + [29135,7361], + [29137,3985], + [29139,5582], + [29141,7794], + [29143,7888], + [29145,27750], + [29147,10485], + [29149,3971], + [29151,7141], + [29153,3527], + [29155,6474], + [29157,9924], + [29159,20388], + [29161,19311], + [29163,7829], + [29165,56864], + [29167,14117], + [29169,14367], + [29171,2405], + [29173,5520], + [29175,10083], + [29177,11205], + [29179,3056], + [29181,5134], + [29183,219820], + [29185,3789], + [29186,8944], + [29187,26250], + [29189,527507], + [29195,10445], + [29197,1873], + [29199,2410], + [29201,19781], + [29203,3199], + [29205,3047], + [29207,12992], + [29209,13474], + [29211,2710], + [29213,26488], + [29215,9251], + [29217,9498], + [29219,17326], + [29221,10155], + [29223,5436], + [29225,16764], + [29227,1160], + [29229,7539], + [29510,155752], + [30001,5060], + [30003,5534], + [30005,2347], + [30007,2570], + [30009,5411], + [30011,697], + [30013,37886], + [30015,2500], + [30017,6202], + [30019,915], + [30021,4687], + [30023,5134], + [30025,1755], + [30027,5789], + [30029,46773], + [30031,64315], + [30033,770], + [30035,5741], + [30037,380], + [30039,1621], + [30041,7835], + [30043,5645], + [30045,927], + [30047,13194], + [30049,35227], + [30051,981], + [30053,7875], + [30055,1020], + [30057,4329], + [30059,915], + [30061,1680], + [30063,62294], + [30065,2297], + [30067,8631], + [30069,277], + [30071,1898], + [30073,2760], + [30075,1014], + [30077,2892], + [30079,499], + [30081,19786], + [30083,6058], + [30085,4597], + [30087,4035], + [30089,4805], + [30091,1898], + [30093,17149], + [30095,4839], + [30097,1788], + [30099,2778], + [30101,2156], + [30103,345], + [30105,4188], + [30107,781], + [30109,492], + [30111,81485], + [31001,16548], + [31003,3531], + [31005,223], + [31007,397], + [31009,262], + [31011,2914], + [31013,5566], + [31015,1078], + [31017,1387], + [31019,27050], + [31021,3477], + [31023,4544], + [31025,13144], + [31027,4452], + [31029,2287], + [31031,3381], + [31033,5127], + [31035,3259], + [31037,5546], + [31039,4714], + [31041,6335], + [31043,10648], + [31045,5158], + [31047,12855], + [31049,1034], + [31051,2989], + [31053,19279], + [31055,288566], + [31057,1185], + [31059,3120], + [31061,1476], + [31063,1555], + [31065,2662], + [31067,10886], + [31069,1190], + [31071,1150], + [31073,1037], + [31075,438], + [31077,1214], + [31079,31452], + [31081,4638], + [31083,1751], + [31085,569], + [31087,1225], + [31089,5738], + [31091,399], + [31093,3291], + [31095,4166], + [31097,2060], + [31099,3740], + [31101,4553], + [31103,605], + [31105,1957], + [31107,4691], + [31109,168999], + [31111,18518], + [31113,469], + [31115,392], + [31117,447], + [31119,19116], + [31121,3998], + [31123,2608], + [31125,2011], + [31127,3579], + [31129,2348], + [31131,8110], + [31133,1497], + [31135,1794], + [31137,4908], + [31139,4104], + [31141,17160], + [31143,2864], + [31145,5805], + [31147,4203], + [31149,887], + [31151,7333], + [31153,92240], + [31155,10858], + [31157,18352], + [31159,8719], + [31161,2685], + [31163,1668], + [31165,765], + [31167,3445], + [31169,2848], + [31171,441], + [31173,2988], + [31175,2100], + [31177,11113], + [31179,5635], + [31181,1669], + [31183,565], + [31185,7281], + [32001,10782], + [32003,1072593], + [32005,22769], + [32007,27304], + [32009,524], + [32011,1049], + [32013,8303], + [32015,3171], + [32017,2053], + [32019,22090], + [32021,1996], + [32023,16403], + [32027,2645], + [32029,1969], + [32031,239119], + [32033,4572], + [32510,25610], + [33001,30857], + [33003,23352], + [33005,40461], + [33007,14376], + [33009,48495], + [33011,231152], + [33013,81116], + [33015,181322], + [33017,72363], + [33019,23057], + [34001,121102], + [34003,483324], + [34005,234179], + [34007,256929], + [34009,47088], + [34011,66406], + [34013,370503], + [34015,151568], + [34017,362646], + [34019,64722], + [34021,198846], + [34023,442313], + [34025,330689], + [34027,259911], + [34029,271129], + [34031,245454], + [34033,29891], + [34035,173325], + [34037,75277], + [34039,276968], + [34041,56567], + [35001,326340], + [35003,1154], + [35005,27274], + [35006,9081], + [35007,5663], + [35009,22018], + [35011,840], + [35013,93805], + [35015,28871], + [35017,12154], + [35019,1636], + [35021,275], + [35023,2107], + [35025,27554], + [35027,8657], + [35028,9056], + [35029,10454], + [35031,24237], + [35033,2184], + [35035,24778], + [35037,3211], + [35039,16708], + [35041,7937], + [35043,63918], + [35045,53194], + [35047,10852], + [35049,72851], + [35051,4094], + [35053,6490], + [35055,14979], + [35057,5484], + [35059,1870], + [35061,29846], + [36001,159950], + [36003,19858], + [36005,621649], + [36007,85835], + [36009,34668], + [36011,36134], + [36013,55854], + [36015,35872], + [36017,22593], + [36019,36268], + [36021,31457], + [36023,23103], + [36025,19104], + [36027,144725], + [36029,448645], + [36031,17310], + [36033,19982], + [36035,23317], + [36037,29723], + [36039,20757], + [36041,2328], + [36043,28294], + [36045,45455], + [36047,1245943], + [36049,11727], + [36051,31071], + [36053,32802], + [36055,364394], + [36057,22656], + [36059,707997], + [36061,939689], + [36063,101134], + [36065,102069], + [36067,221699], + [36069,55175], + [36071,181557], + [36073,17796], + [36075,53334], + [36077,28231], + [36079,51333], + [36081,1190292], + [36083,82277], + [36085,226924], + [36087,154508], + [36089,43612], + [36091,118482], + [36093,76475], + [36095,14823], + [36097,8291], + [36099,16266], + [36101,43104], + [36103,782689], + [36105,34590], + [36107,22978], + [36109,50395], + [36111,88895], + [36113,32188], + [36115,28504], + [36117,44024], + [36119,484107], + [36121,18086], + [36123,11702], + [37001,79767], + [37003,18159], + [37005,4324], + [37007,10545], + [37009,12709], + [37011,7697], + [37013,20100], + [37015,8177], + [37017,14462], + [37019,51242], + [37021,136994], + [37023,40584], + [37025,104403], + [37027,36528], + [37029,4680], + [37031,32040], + [37033,9731], + [37035,78425], + [37037,35166], + [37039,11157], + [37041,5617], + [37043,3958], + [37045,47537], + [37047,22324], + [37049,41845], + [37051,127617], + [37053,13285], + [37055,20162], + [37057,80147], + [37059,20330], + [37061,25578], + [37063,165496], + [37065,22132], + [37067,184234], + [37069,30122], + [37071,108698], + [37073,5239], + [37075,3172], + [37077,30039], + [37079,9577], + [37081,260244], + [37083,20659], + [37085,52575], + [37087,29020], + [37089,53278], + [37091,9275], + [37093,19912], + [37095,2122], + [37097,87100], + [37099,18983], + [37101,93991], + [37103,4497], + [37105,26639], + [37107,28126], + [37109,42232], + [37111,20948], + [37113,15216], + [37115,9873], + [37117,9636], + [37119,601998], + [37121,6114], + [37123,11732], + [37125,39922], + [37127,43584], + [37129,118501], + [37131,7769], + [37133,64162], + [37135,76435], + [37137,5416], + [37139,17493], + [37141,27362], + [37143,5117], + [37145,18321], + [37147,89270], + [37149,8944], + [37151,67249], + [37153,16726], + [37155,50296], + [37157,41106], + [37159,65907], + [37161,24610], + [37163,29398], + [37165,11523], + [37167,29824], + [37169,22034], + [37171,33680], + [37173,6941], + [37175,14217], + [37177,1534], + [37179,119334], + [37181,17897], + [37183,572771], + [37185,6872], + [37187,4805], + [37189,28574], + [37191,53488], + [37193,31187], + [37195,36056], + [37197,17756], + [37199,7452], + [38001,1122], + [38003,5519], + [38005,2400], + [38007,437], + [38009,3147], + [38011,1793], + [38013,1104], + [38015,50739], + [38017,102364], + [38019,2101], + [38021,2552], + [38023,1623], + [38025,3211], + [38027,1301], + [38029,1580], + [38031,1675], + [38033,955], + [38035,39203], + [38037,1289], + [38039,1137], + [38041,1528], + [38043,1355], + [38045,2298], + [38047,958], + [38049,3339], + [38051,1249], + [38053,8198], + [38055,5103], + [38057,4520], + [38059,16805], + [38061,7088], + [38063,1503], + [38065,887], + [38067,3575], + [38069,1922], + [38071,5872], + [38073,2852], + [38075,1305], + [38077,8882], + [38079,4883], + [38081,2399], + [38083,728], + [38085,1333], + [38087,427], + [38089,18283], + [38091,1082], + [38093,11074], + [38095,1237], + [38097,4654], + [38099,5647], + [38101,32971], + [38103,2183], + [38105,23013], + [39001,10996], + [39003,48897], + [39005,26366], + [39007,44321], + [39009,28594], + [39011,24734], + [39013,30705], + [39015,19726], + [39017,192374], + [39019,13376], + [39021,19859], + [39023,63813], + [39025,105450], + [39027,17593], + [39029,48018], + [39031,14775], + [39033,19020], + [39035,610874], + [39037,26452], + [39039,18498], + [39041,106926], + [39043,37920], + [39045,77449], + [39047,14479], + [39049,680584], + [39051,22640], + [39053,12174], + [39055,48802], + [39057,82142], + [39059,18907], + [39061,411260], + [39063,41822], + [39065,14371], + [39067,7116], + [39069,13655], + [39071,17154], + [39073,13251], + [39075,20813], + [39077,28075], + [39079,12956], + [39081,28373], + [39083,31269], + [39085,124193], + [39087,24732], + [39089,89801], + [39091,23540], + [39093,151638], + [39095,211724], + [39097,20674], + [39099,105154], + [39101,28031], + [39103,95615], + [39105,8970], + [39107,23707], + [39109,53691], + [39111,5152], + [39113,253576], + [39115,6675], + [39117,17053], + [39119,39699], + [39121,4806], + [39123,21350], + [39125,8862], + [39127,16137], + [39129,26635], + [39131,10880], + [39133,87688], + [39135,21150], + [39137,19006], + [39139,53228], + [39141,34130], + [39143,31354], + [39145,29715], + [39147,27323], + [39149,24143], + [39151,187574], + [39153,274131], + [39155,89686], + [39157,45706], + [39159,28240], + [39161,14436], + [39163,5464], + [39165,116363], + [39167,27626], + [39169,61709], + [39171,19061], + [39173,70693], + [39175,12732], + [40001,8272], + [40003,2947], + [40005,5211], + [40007,3046], + [40009,11364], + [40011,4585], + [40013,20496], + [40015,12367], + [40017,69836], + [40019,22511], + [40021,19082], + [40023,5731], + [40025,1414], + [40027,140218], + [40029,2292], + [40031,49246], + [40033,2858], + [40035,6082], + [40037,31523], + [40039,15362], + [40041,18488], + [40043,2490], + [40045,2236], + [40047,27936], + [40049,12630], + [40051,26098], + [40053,2909], + [40055,2081], + [40057,1288], + [40059,1849], + [40061,4372], + [40063,5435], + [40065,10898], + [40067,2506], + [40069,4986], + [40071,19236], + [40073,8662], + [40075,3948], + [40077,3419], + [40079,19373], + [40081,15870], + [40083,21719], + [40085,6607], + [40087,19030], + [40089,14830], + [40091,6934], + [40093,4011], + [40095,6548], + [40097,19145], + [40099,6428], + [40101,29534], + [40103,5784], + [40105,4618], + [40107,4473], + [40109,378076], + [40111,16147], + [40113,21127], + [40115,14461], + [40117,7453], + [40119,38565], + [40121,17645], + [40123,18730], + [40125,33062], + [40127,4774], + [40129,1872], + [40131,45043], + [40133,9338], + [40135,16575], + [40137,18256], + [40139,9385], + [40141,3263], + [40143,319989], + [40145,36823], + [40147,23143], + [40149,5437], + [40151,4928], + [40153,9414], + [41001,7070], + [41003,48126], + [41005,218947], + [41007,19248], + [41009,24224], + [41011,26645], + [41013,9563], + [41015,9049], + [41017,93470], + [41019,46572], + [41021,865], + [41023,3162], + [41025,3438], + [41027,14359], + [41029,103952], + [41031,10041], + [41033,35392], + [41035,29880], + [41037,3545], + [41039,182399], + [41041,21197], + [41043,57998], + [41045,12618], + [41047,162450], + [41049,5856], + [41051,457151], + [41053,39548], + [41055,897], + [41057,11786], + [41059,36924], + [41061,12068], + [41063,3359], + [41065,13955], + [41067,323022], + [41069,743], + [41071,54567], + [42001,55457], + [42003,645906], + [42005,32676], + [42007,84912], + [42009,23757], + [42011,212082], + [42013,60219], + [42015,29363], + [42017,341433], + [42019,98326], + [42021,59765], + [42023,2201], + [42025,31500], + [42027,78636], + [42029,281136], + [42031,17723], + [42033,35854], + [42035,18317], + [42037,33804], + [42039,39398], + [42041,129985], + [42043,141982], + [42045,294762], + [42047,15996], + [42049,130755], + [42051,57811], + [42053,1832], + [42055,76656], + [42057,7191], + [42059,16835], + [42061,19739], + [42063,39219], + [42065,20572], + [42067,12394], + [42069,106305], + [42071,280293], + [42073,40603], + [42075,70550], + [42077,188781], + [42079,158265], + [42081,57623], + [42083,18148], + [42085,50990], + [42087,20630], + [42089,81955], + [42091,448710], + [42093,9096], + [42095,158727], + [42097,43683], + [42099,24239], + [42101,704053], + [42103,24836], + [42105,7228], + [42107,66298], + [42109,20541], + [42111,33582], + [42113,2783], + [42115,20651], + [42117,19220], + [42119,19834], + [42121,23056], + [42123,19337], + [42125,106484], + [42127,22528], + [42129,181839], + [42131,13958], + [42133,234356], + [44001,26179], + [44003,91029], + [44005,44318], + [44007,323988], + [44009,69144], + [45001,10103], + [45003,74442], + [45005,2741], + [45007,89559], + [45009,5230], + [45011,8082], + [45013,74104], + [45015,98452], + [45017,6848], + [45019,204937], + [45021,24094], + [45023,13592], + [45025,21621], + [45027,12425], + [45029,16844], + [45031,29830], + [45033,12574], + [45035,74263], + [45037,10557], + [45039,10045], + [45041,65368], + [45043,25289], + [45045,247585], + [45047,30880], + [45049,8210], + [45051,143389], + [45053,12228], + [45055,29130], + [45057,39127], + [45059,30194], + [45061,6414], + [45063,147870], + [45065,3385], + [45067,12541], + [45069,9257], + [45071,18491], + [45073,34315], + [45075,35174], + [45077,56658], + [45079,199987], + [45081,8854], + [45083,146296], + [45085,44112], + [45087,11759], + [45089,12389], + [45091,133410], + [46003,1516], + [46005,9350], + [46007,1121], + [46009,2918], + [46011,18815], + [46013,20950], + [46015,2455], + [46017,716], + [46019,5019], + [46021,827], + [46023,3867], + [46025,1897], + [46027,7145], + [46029,15186], + [46031,1419], + [46033,4014], + [46035,11108], + [46037,2835], + [46039,2194], + [46041,2234], + [46043,1621], + [46045,2133], + [46047,2982], + [46049,1105], + [46051,4477], + [46053,2025], + [46055,1086], + [46057,3163], + [46059,1823], + [46061,1742], + [46063,731], + [46065,10040], + [46067,3602], + [46069,691], + [46071,1321], + [46073,1118], + [46075,562], + [46077,2729], + [46079,6472], + [46081,12997], + [46083,31959], + [46085,1746], + [46087,3151], + [46089,1044], + [46091,2386], + [46093,13898], + [46095,758], + [46097,1197], + [46099,109516], + [46101,3983], + [46102,"NA"], + [46103,55730], + [46105,1618], + [46107,1139], + [46109,4812], + [46111,1164], + [46115,3227], + [46117,1863], + [46119,845], + [46121,3168], + [46123,3016], + [46125,4706], + [46127,7926], + [46129,2237], + [46135,11541], + [46137,960], + [47001,34175], + [47003,20539], + [47005,6769], + [47007,4317], + [47009,61819], + [47011,50172], + [47013,14825], + [47015,6235], + [47017,12000], + [47019,23911], + [47021,21003], + [47023,8526], + [47025,12734], + [47027,3084], + [47029,14619], + [47031,25035], + [47033,6959], + [47035,23574], + [47037,388112], + [47039,4656], + [47041,7732], + [47043,25674], + [47045,16132], + [47047,18522], + [47049,7132], + [47051,19907], + [47053,21386], + [47055,15600], + [47057,9409], + [47059,30828], + [47061,4851], + [47063,27312], + [47065,176554], + [47067,2051], + [47069,9263], + [47071,10422], + [47073,23838], + [47075,7865], + [47077,11904], + [47079,14035], + [47081,10789], + [47083,3205], + [47085,8840], + [47087,4586], + [47089,23978], + [47091,7625], + [47093,237543], + [47095,1859], + [47097,9455], + [47099,17769], + [47101,4945], + [47103,16316], + [47105,22622], + [47107,22821], + [47109,8591], + [47111,10625], + [47113,48256], + [47115,12176], + [47117,15535], + [47119,45784], + [47121,5007], + [47123,19734], + [47125,80988], + [47127,3484], + [47129,7871], + [47131,12273], + [47133,9590], + [47135,3242], + [47137,2454], + [47139,7372], + [47141,34084], + [47143,13275], + [47145,23150], + [47147,36117], + [47149,169956], + [47151,8171], + [47153,6087], + [47155,52301], + [47157,439415], + [47159,8996], + [47161,5203], + [47163,70193], + [47165,95769], + [47167,27774], + [47169,3971], + [47171,7044], + [47173,7359], + [47175,2099], + [47177,17195], + [47179,59402], + [47181,6157], + [47183,15897], + [47185,11965], + [47187,118004], + [47189,70373], + [48001,23262], + [48003,9011], + [48005,36614], + [48007,10366], + [48009,4093], + [48011,920], + [48013,21181], + [48015,13997], + [48017,2670], + [48019,9639], + [48021,40124], + [48023,1599], + [48025,9938], + [48027,141233], + [48029,924590], + [48031,6217], + [48033,318], + [48035,8176], + [48037,39326], + [48039,171954], + [48041,113424], + [48043,3921], + [48045,556], + [48047,2425], + [48049,16183], + [48051,7987], + [48053,22153], + [48055,18406], + [48057,10424], + [48059,5843], + [48061,166268], + [48063,5040], + [48065,3060], + [48067,12198], + [48069,3358], + [48071,18511], + [48073,20659], + [48075,2910], + [48077,4797], + [48079,1133], + [48081,1396], + [48083,3070], + [48085,527317], + [48087,1159], + [48089,10080], + [48091,66826], + [48093,5288], + [48095,1207], + [48097,18826], + [48099,24691], + [48101,517], + [48103,1588], + [48105,1689], + [48107,2603], + [48109,913], + [48111,4056], + [48113,1333933], + [48115,4656], + [48117,8339], + [48119,2609], + [48121,464581], + [48123,9586], + [48125,682], + [48127,6480], + [48129,1507], + [48131,4803], + [48133,7852], + [48135,78116], + [48137,904], + [48139,87132], + [48141,353387], + [48143,20586], + [48145,6669], + [48147,15937], + [48149,12623], + [48151,1722], + [48153,2694], + [48155,595], + [48157,369788], + [48159,4533], + [48161,6738], + [48163,9300], + [48165,9239], + [48167,161703], + [48169,2117], + [48171,13193], + [48173,689], + [48175,3244], + [48177,9361], + [48179,8216], + [48181,62020], + [48183,57632], + [48185,10842], + [48187,77510], + [48189,12418], + [48191,1129], + [48193,3607], + [48195,2856], + [48197,1654], + [48199,25045], + [48201,2268944], + [48203,29410], + [48205,2947], + [48207,2432], + [48209,108012], + [48211,2335], + [48213,35566], + [48215,341602], + [48217,16142], + [48219,11270], + [48221,25691], + [48223,17145], + [48225,10556], + [48227,13197], + [48229,1537], + [48231,41487], + [48233,9392], + [48235,774], + [48237,3930], + [48239,7366], + [48241,13380], + [48243,1052], + [48245,107321], + [48247,1894], + [48249,16709], + [48251,77413], + [48253,5635], + [48255,6424], + [48257,59437], + [48259,20705], + [48261,246], + [48263,460], + [48265,21290], + [48267,1897], + [48269,163], + [48271,1150], + [48273,13367], + [48275,1493], + [48277,23680], + [48279,5194], + [48281,9235], + [48283,4203], + [48285,8712], + [48287,9625], + [48289,6160], + [48291,31713], + [48293,8315], + [48295,1633], + [48297,5376], + [48299,8319], + [48301,100], + [48303,155834], + [48305,2720], + [48307,3703], + [48309,118021], + [48311,740], + [48313,4669], + [48315,4350], + [48317,2568], + [48319,1799], + [48321,16930], + [48323,23860], + [48325,21273], + [48327,807], + [48329,89359], + [48331,10057], + [48333,1917], + [48335,2531], + [48337,9083], + [48339,267342], + [48341,11012], + [48343,4653], + [48345,490], + [48347,28538], + [48349,22752], + [48351,5312], + [48353,6778], + [48355,167523], + [48357,4504], + [48359,890], + [48361,37246], + [48363,13403], + [48365,10320], + [48367,62302], + [48369,4913], + [48371,6515], + [48373,17435], + [48375,55923], + [48377,3024], + [48379,5666], + [48381,70283], + [48383,1772], + [48385,1049], + [48387,5215], + [48389,6917], + [48391,3112], + [48393,437], + [48395,7351], + [48397,48621], + [48399,4563], + [48401,22113], + [48403,3538], + [48405,2872], + [48407,11436], + [48409,30647], + [48411,2411], + [48413,1338], + [48415,6982], + [48417,1875], + [48419,10781], + [48421,1289], + [48423,105896], + [48425,4218], + [48427,26049], + [48429,4030], + [48431,607], + [48433,621], + [48435,1514], + [48437,2687], + [48439,1033317], + [48441,64051], + [48443,391], + [48445,5245], + [48447,692], + [48449,12954], + [48451,54003], + [48453,698755], + [48455,5366], + [48457,7058], + [48459,17613], + [48461,1543], + [48463,11714], + [48465,20007], + [48467,25311], + [48469,42923], + [48471,23625], + [48473,22201], + [48475,5546], + [48477,14856], + [48479,114696], + [48481,21054], + [48483,2357], + [48485,55970], + [48487,4950], + [48489,6303], + [48491,287330], + [48493,24155], + [48495,3235], + [48497,29844], + [48499,17323], + [48501,3818], + [48503,8082], + [48505,5445], + [48507,3719], + [49001,3093], + [49003,25535], + [49005,63040], + [49007,8372], + [49009,443], + [49011,170335], + [49013,8104], + [49015,4255], + [49017,2934], + [49019,5971], + [49021,22381], + [49023,5466], + [49025,3770], + [49027,6508], + [49029,5328], + [49031,490], + [49033,1155], + [49035,621759], + [49037,5820], + [49039,12064], + [49041,9907], + [49043,24597], + [49045,31829], + [49047,13936], + [49049,292474], + [49051,14632], + [49053,70817], + [49055,1472], + [49057,124363], + [50001,20842], + [50003,18438], + [50005,14714], + [50007,95645], + [50009,2680], + [50011,27427], + [50013,3993], + [50015,14102], + [50017,15934], + [50019,13720], + [50021,30931], + [50023,34124], + [50025,22954], + [50027,29258], + [51001,15948], + [51003,55748], + [51005,6842], + [51007,6246], + [51009,15085], + [51011,7022], + [51013,149627], + [51015,36841], + [51017,2452], + [51019,38238], + [51021,2731], + [51023,17325], + [51025,6006], + [51027,6703], + [51029,6406], + [51031,26129], + [51033,15099], + [51035,12997], + [51036,3772], + [51037,5250], + [51041,183860], + [51043,7519], + [51045,2336], + [51047,23786], + [51049,4634], + [51051,4408], + [51053,13588], + [51057,5470], + [51059,629698], + [51061,36391], + [51063,8093], + [51065,13519], + [51067,26196], + [51069,46296], + [51071,7903], + [51073,19304], + [51075,10969], + [51077,7220], + [51079,10170], + [51081,4280], + [51083,14881], + [51085,58121], + [51087,182026], + [51089,22541], + [51091,1244], + [51093,19105], + [51095,35352], + [51097,3766], + [51099,12359], + [51101,8856], + [51103,5153], + [51105,8245], + [51107,211626], + [51109,19087], + [51111,5198], + [51113,7290], + [51115,4093], + [51117,12150], + [51119,5194], + [51121,49863], + [51125,7354], + [51127,11857], + [51131,5403], + [51133,5364], + [51135,6985], + [51137,16539], + [51139,11640], + [51141,7429], + [51143,29542], + [51145,13858], + [51147,10306], + [51149,15149], + [51153,239833], + [51155,16260], + [51157,3745], + [51159,3893], + [51161,49144], + [51163,10588], + [51165,40837], + [51167,11056], + [51169,9393], + [51171,21027], + [51173,13117], + [51175,8845], + [51177,66131], + [51179,69689], + [51181,3708], + [51183,3917], + [51185,15866], + [51187,20033], + [51191,26908], + [51193,9004], + [51195,12986], + [51197,13646], + [51199,32591], + [51510,98590], + [51520,7471], + [51530,3316], + [51540,25558], + [51550,119577], + [51570,8849], + [51580,2379], + [51590,19140], + [51595,2278], + [51600,13251], + [51610,8160], + [51620,3484], + [51630,13823], + [51640,2879], + [51650,64727], + [51660,24559], + [51670,9931], + [51678,2265], + [51680,35820], + [51683,22051], + [51685,8644], + [51690,5235], + [51700,90074], + [51710,111699], + [51720,1628], + [51730,13392], + [51735,6247], + [51740,44552], + [51750,8285], + [51760,116588], + [51770,48976], + [51775,12907], + [51790,11848], + [51800,43492], + [51810,232521], + [51820,10272], + [51830,6820], + [51840,14570], + [53001,8918], + [53003,10262], + [53005,97430], + [53007,44518], + [53009,27927], + [53011,227382], + [53013,1766], + [53015,46010], + [53017,21012], + [53019,2539], + [53021,40873], + [53023,916], + [53025,45310], + [53027,27971], + [53029,34259], + [53031,12021], + [53033,1230208], + [53035,121104], + [53037,22228], + [53039,10051], + [53041,33151], + [53043,4955], + [53045,23843], + [53047,20930], + [53049,8410], + [53051,4734], + [53053,417219], + [53055,8235], + [53057,59436], + [53059,5218], + [53061,421369], + [53063,240421], + [53065,18284], + [53067,134847], + [53069,1307], + [53071,29304], + [53073,110074], + [53075,23465], + [53077,126814], + [54001,6927], + [54003,54471], + [54005,7692], + [54007,5366], + [54009,9850], + [54011,41479], + [54013,2478], + [54015,3175], + [54017,3894], + [54019,15757], + [54021,2435], + [54023,5873], + [54025,15723], + [54027,10144], + [54029,12687], + [54031,5828], + [54033,32872], + [54035,11930], + [54037,28661], + [54039,84245], + [54041,6508], + [54043,7214], + [54045,10757], + [54047,4997], + [54049,25559], + [54051,13841], + [54053,9985], + [54055,21365], + [54057,11914], + [54059,6755], + [54061,52106], + [54063,6029], + [54065,7715], + [54067,9351], + [54069,20565], + [54071,3672], + [54073,2856], + [54075,3742], + [54077,15074], + [54079,26006], + [54081,29526], + [54083,12099], + [54085,4419], + [54087,5117], + [54089,4537], + [54091,7839], + [54093,3396], + [54095,3442], + [54097,9521], + [54099,15556], + [54101,3362], + [54103,7057], + [54105,2196], + [54107,36269], + [54109,6998], + [55001,8316], + [55003,8021], + [55005,24821], + [55007,7546], + [55009,143350], + [55011,6626], + [55013,7365], + [55015,28041], + [55017,33697], + [55019,18013], + [55021,32023], + [55023,8000], + [55025,322336], + [55027,48607], + [55029,15682], + [55031,23776], + [55033,24598], + [55035,59489], + [55037,2309], + [55039,57544], + [55041,4063], + [55043,28404], + [55045,21571], + [55047,9731], + [55049,13969], + [55051,2626], + [55053,10479], + [55055,45977], + [55057,13664], + [55059,89921], + [55061,11280], + [55063,68207], + [55065,10213], + [55067,9726], + [55069,15598], + [55071,41988], + [55073,74325], + [55075,20044], + [55077,7644], + [55078,1588], + [55079,478333], + [55081,23649], + [55083,20793], + [55085,18434], + [55087,104727], + [55089,49473], + [55091,4260], + [55093,25207], + [55095,25067], + [55097,39814], + [55099,6830], + [55101,100142], + [55103,9408], + [55105,85722], + [55107,7038], + [55109,50667], + [55111,35768], + [55113,8048], + [55115,21624], + [55117,63073], + [55119,11277], + [55121,16611], + [55123,16052], + [55125,10188], + [55127,58265], + [55129,8009], + [55131,77851], + [55133,226578], + [55135,26715], + [55137,11557], + [55139,94244], + [55141,35313], + [56001,20471], + [56003,5396], + [56005,23083], + [56007,7957], + [56009,7481], + [56011,3679], + [56013,19407], + [56015,6983], + [56017,2329], + [56019,4196], + [56021,48162], + [56023,8727], + [56025,39569], + [56027,1319], + [56029,15688], + [56031,4783], + [56033,15791], + [56035,4252], + [56037,21581], + [56039,15467], + [56041,9138], + [56043,4115], + [56045,3771] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-2010.json b/data/regional/united-states/economics/poverty/us-poverty-rate-2010.json new file mode 100644 index 0000000..18eb251 --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Poverty Rate", + "description" : "Percent of the population living below the poverty line.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.poverty.rate.2010"], + [1001,0.106], + [1003,0.122], + [1005,0.25], + [1007,0.126], + [1009,0.134], + [1011,0.253], + [1013,0.25], + [1015,0.195], + [1017,0.203], + [1019,0.176], + [1021,0.184], + [1023,0.187], + [1025,0.292], + [1027,0.188], + [1029,0.171], + [1031,0.172], + [1033,0.157], + [1035,0.306], + [1037,0.16], + [1039,0.19], + [1041,0.177], + [1043,0.167], + [1045,0.148], + [1047,0.318], + [1049,0.2], + [1051,0.124], + [1053,0.244], + [1055,0.168], + [1057,0.179], + [1059,0.195], + [1061,0.163], + [1063,0.308], + [1065,0.246], + [1067,0.151], + [1069,0.168], + [1071,0.175], + [1073,0.155], + [1075,0.185], + [1077,0.177], + [1079,0.136], + [1081,0.192], + [1083,0.135], + [1085,0.273], + [1087,0.274], + [1089,0.12], + [1091,0.227], + [1093,0.178], + [1095,0.199], + [1097,0.192], + [1099,0.254], + [1101,0.189], + [1103,0.15], + [1105,0.288], + [1107,0.269], + [1109,0.286], + [1111,0.215], + [1113,0.233], + [1115,0.106], + [1117,0.074], + [1119,0.348], + [1121,0.184], + [1123,0.175], + [1125,0.197], + [1127,0.186], + [1129,0.197], + [1131,0.385], + [1133,0.206], + [2013,0.104], + [2016,0.126], + [2020,0.079], + [2050,0.186], + [2060,0.05], + [2068,0.046], + [2070,0.181], + [2090,0.076], + [2100,0.072], + [2105,0.159], + [2110,0.065], + [2122,0.095], + [2130,0.083], + [2150,0.109], + [2158,0.314], + [2164,0.214], + [2170,0.099], + [2180,0.246], + [2185,0.118], + [2188,0.197], + [2195,0.097], + [2198,0.14], + [2220,0.07], + [2230,0.108], + [2240,0.1], + [2261,0.069], + [2275,0.083], + [2282,0.043], + [2290,0.236], + [4001,0.344], + [4003,0.157], + [4005,0.186], + [4007,0.189], + [4009,0.2], + [4011,0.135], + [4012,0.203], + [4013,0.139], + [4015,0.161], + [4017,0.244], + [4019,0.164], + [4021,0.135], + [4023,0.252], + [4025,0.137], + [4027,0.209], + [5001,0.189], + [5003,0.185], + [5005,0.155], + [5007,0.117], + [5009,0.16], + [5011,0.304], + [5013,0.119], + [5015,0.172], + [5017,0.341], + [5019,0.238], + [5021,0.187], + [5023,0.174], + [5025,0.151], + [5027,0.229], + [5029,0.17], + [5031,0.194], + [5033,0.183], + [5035,0.274], + [5037,0.167], + [5039,0.177], + [5041,0.276], + [5043,0.236], + [5045,0.153], + [5047,0.178], + [5049,0.203], + [5051,0.177], + [5053,0.088], + [5055,0.164], + [5057,0.232], + [5059,0.123], + [5061,0.22], + [5063,0.193], + [5065,0.187], + [5067,0.259], + [5069,0.226], + [5071,0.194], + [5073,0.199], + [5075,0.245], + [5077,0.288], + [5079,0.258], + [5081,0.185], + [5083,0.143], + [5085,0.126], + [5087,0.188], + [5089,0.155], + [5091,0.181], + [5093,0.255], + [5095,0.225], + [5097,0.198], + [5099,0.2], + [5101,0.225], + [5103,0.199], + [5105,0.151], + [5107,0.324], + [5109,0.207], + [5111,0.258], + [5113,0.204], + [5115,0.182], + [5117,0.152], + [5119,0.164], + [5121,0.197], + [5123,0.296], + [5125,0.099], + [5127,0.239], + [5129,0.227], + [5131,0.18], + [5133,0.229], + [5135,0.215], + [5137,0.234], + [5139,0.214], + [5141,0.225], + [5143,0.179], + [5145,0.157], + [5147,0.229], + [5149,0.177], + [6001,0.114], + [6003,0.131], + [6005,0.08], + [6007,0.184], + [6009,0.083], + [6011,0.15], + [6013,0.09], + [6015,0.22], + [6017,0.079], + [6019,0.225], + [6021,0.175], + [6023,0.177], + [6025,0.214], + [6027,0.119], + [6029,0.206], + [6031,0.193], + [6033,0.191], + [6035,0.142], + [6037,0.157], + [6039,0.193], + [6041,0.07], + [6043,0.125], + [6045,0.171], + [6047,0.218], + [6049,0.184], + [6051,0.12], + [6053,0.139], + [6055,0.1], + [6057,0.09], + [6059,0.101], + [6061,0.066], + [6063,0.121], + [6065,0.134], + [6067,0.139], + [6069,0.117], + [6071,0.148], + [6073,0.123], + [6075,0.119], + [6077,0.16], + [6079,0.129], + [6081,0.07], + [6083,0.143], + [6085,0.089], + [6087,0.127], + [6089,0.165], + [6091,0.109], + [6093,0.171], + [6095,0.104], + [6097,0.103], + [6099,0.164], + [6101,0.143], + [6103,0.203], + [6105,0.151], + [6107,0.229], + [6109,0.117], + [6111,0.092], + [6113,0.171], + [6115,0.2], + [8001,0.139], + [8003,0.24], + [8005,0.116], + [8007,0.085], + [8009,0.14], + [8011,0.24], + [8013,0.128], + [8014,0.055], + [8015,0.116], + [8017,0.121], + [8019,0.08], + [8021,0.177], + [8023,0.284], + [8025,0.21], + [8027,0.151], + [8029,0.131], + [8031,0.192], + [8033,0.16], + [8035,0.029], + [8037,0.094], + [8039,0.035], + [8041,0.111], + [8043,0.16], + [8045,0.092], + [8047,0.11], + [8049,0.066], + [8051,0.108], + [8053,0.037], + [8055,0.207], + [8057,0.139], + [8059,0.08], + [8061,0.125], + [8063,0.085], + [8065,0.217], + [8067,0.102], + [8069,0.133], + [8071,0.168], + [8073,0.126], + [8075,0.128], + [8077,0.124], + [8079,0.077], + [8081,0.13], + [8083,0.176], + [8085,0.109], + [8087,0.146], + [8089,0.21], + [8091,0.082], + [8093,0.062], + [8095,0.093], + [8097,0.084], + [8099,0.221], + [8101,0.173], + [8103,0.053], + [8105,0.171], + [8107,0.069], + [8109,0.244], + [8111,0.122], + [8113,0.098], + [8115,0.141], + [8117,0.073], + [8119,0.076], + [8121,0.143], + [8123,0.139], + [8125,0.098], + [9001,0.08], + [9003,0.107], + [9005,0.058], + [9007,0.061], + [9009,0.109], + [9011,0.072], + [9013,0.064], + [9015,0.114], + [10001,0.125], + [10003,0.103], + [10005,0.117], + [11001,0.185], + [12001,0.236], + [12003,0.17], + [12005,0.124], + [12007,0.16], + [12009,0.105], + [12011,0.123], + [12013,0.211], + [12015,0.105], + [12017,0.144], + [12019,0.085], + [12021,0.122], + [12023,0.156], + [12027,0.269], + [12029,0.155], + [12031,0.142], + [12033,0.164], + [12035,0.119], + [12037,0.256], + [12039,0.276], + [12041,0.201], + [12043,0.196], + [12045,0.195], + [12047,0.214], + [12049,0.261], + [12051,0.264], + [12053,0.118], + [12055,0.169], + [12057,0.142], + [12059,0.199], + [12061,0.126], + [12063,0.197], + [12065,0.187], + [12067,0.18], + [12069,0.11], + [12071,0.12], + [12073,0.22], + [12075,0.216], + [12077,0.158], + [12079,0.21], + [12081,0.128], + [12083,0.153], + [12085,0.104], + [12086,0.172], + [12087,0.108], + [12089,0.093], + [12091,0.106], + [12093,0.197], + [12095,0.134], + [12097,0.133], + [12099,0.122], + [12101,0.123], + [12103,0.121], + [12105,0.152], + [12107,0.233], + [12109,0.091], + [12111,0.137], + [12113,0.113], + [12115,0.105], + [12117,0.098], + [12119,0.112], + [12121,0.173], + [12123,0.191], + [12125,0.213], + [12127,0.138], + [12129,0.125], + [12131,0.146], + [12133,0.193], + [13001,0.222], + [13003,0.28], + [13005,0.165], + [13007,0.3], + [13009,0.252], + [13011,0.159], + [13013,0.126], + [13015,0.14], + [13017,0.269], + [13019,0.231], + [13021,0.224], + [13023,0.195], + [13025,0.214], + [13027,0.17], + [13029,0.11], + [13031,0.284], + [13033,0.257], + [13035,0.124], + [13037,0.288], + [13039,0.153], + [13043,0.223], + [13045,0.173], + [13047,0.112], + [13049,0.198], + [13051,0.166], + [13053,0.159], + [13055,0.192], + [13057,0.074], + [13059,0.335], + [13061,0.342], + [13063,0.167], + [13065,0.257], + [13067,0.106], + [13069,0.213], + [13071,0.234], + [13073,0.071], + [13075,0.233], + [13077,0.102], + [13079,0.205], + [13081,0.291], + [13083,0.155], + [13085,0.12], + [13087,0.24], + [13089,0.161], + [13091,0.2], + [13093,0.271], + [13095,0.289], + [13097,0.113], + [13099,0.289], + [13101,0.321], + [13103,0.103], + [13105,0.23], + [13107,0.242], + [13109,0.212], + [13111,0.162], + [13113,0.047], + [13115,0.187], + [13117,0.06], + [13119,0.178], + [13121,0.153], + [13123,0.181], + [13125,0.166], + [13127,0.152], + [13129,0.171], + [13131,0.259], + [13133,0.236], + [13135,0.11], + [13137,0.196], + [13139,0.148], + [13141,0.268], + [13143,0.204], + [13145,0.09], + [13147,0.224], + [13149,0.198], + [13151,0.083], + [13153,0.128], + [13155,0.254], + [13157,0.151], + [13159,0.191], + [13161,0.24], + [13163,0.269], + [13165,0.191], + [13167,0.277], + [13169,0.131], + [13171,0.204], + [13173,0.204], + [13175,0.21], + [13177,0.082], + [13179,0.178], + [13181,0.263], + [13183,0.158], + [13185,0.216], + [13187,0.152], + [13189,0.195], + [13191,0.166], + [13193,0.33], + [13195,0.178], + [13197,0.22], + [13199,0.168], + [13201,0.182], + [13205,0.222], + [13207,0.123], + [13209,0.182], + [13211,0.154], + [13213,0.171], + [13215,0.182], + [13217,0.127], + [13219,0.074], + [13221,0.19], + [13223,0.082], + [13225,0.254], + [13227,0.116], + [13229,0.154], + [13231,0.105], + [13233,0.193], + [13235,0.116], + [13237,0.123], + [13239,0.316], + [13241,0.185], + [13243,0.28], + [13245,0.233], + [13247,0.123], + [13249,0.192], + [13251,0.204], + [13253,0.254], + [13255,0.212], + [13257,0.188], + [13259,0.242], + [13261,0.269], + [13263,0.235], + [13265,0.344], + [13267,0.214], + [13269,0.331], + [13271,0.313], + [13273,0.31], + [13275,0.228], + [13277,0.228], + [13279,0.257], + [13281,0.093], + [13283,0.247], + [13285,0.198], + [13287,0.254], + [13289,0.212], + [13291,0.139], + [13293,0.201], + [13295,0.151], + [13297,0.125], + [13299,0.205], + [13301,0.257], + [13303,0.276], + [13305,0.183], + [13307,0.236], + [13309,0.243], + [13311,0.194], + [13313,0.192], + [13315,0.255], + [13317,0.255], + [13319,0.231], + [13321,0.208], + [15001,0.144], + [15003,0.088], + [15005,0.041], + [15007,0.088], + [15009,0.089], + [16001,0.102], + [16003,0.124], + [16005,0.14], + [16007,0.139], + [16009,0.152], + [16011,0.147], + [16013,0.093], + [16015,0.163], + [16017,0.143], + [16019,0.11], + [16021,0.188], + [16023,0.138], + [16025,0.163], + [16027,0.173], + [16029,0.084], + [16031,0.154], + [16033,0.113], + [16035,0.117], + [16037,0.138], + [16039,0.12], + [16041,0.137], + [16043,0.085], + [16045,0.147], + [16047,0.165], + [16049,0.191], + [16051,0.102], + [16053,0.155], + [16055,0.119], + [16057,0.215], + [16059,0.2], + [16061,0.16], + [16063,0.153], + [16065,0.322], + [16067,0.131], + [16069,0.116], + [16071,0.134], + [16073,0.222], + [16075,0.157], + [16077,0.111], + [16079,0.179], + [16081,0.074], + [16083,0.13], + [16085,0.154], + [16087,0.132], + [17001,0.123], + [17003,0.201], + [17005,0.108], + [17007,0.104], + [17009,0.12], + [17011,0.111], + [17013,0.117], + [17015,0.117], + [17017,0.129], + [17019,0.205], + [17021,0.166], + [17023,0.109], + [17025,0.163], + [17027,0.078], + [17029,0.203], + [17031,0.153], + [17033,0.169], + [17035,0.125], + [17037,0.146], + [17039,0.086], + [17041,0.102], + [17043,0.057], + [17045,0.135], + [17047,0.122], + [17049,0.105], + [17051,0.161], + [17053,0.083], + [17055,0.198], + [17057,0.138], + [17059,0.18], + [17061,0.151], + [17063,0.069], + [17065,0.145], + [17067,0.126], + [17069,0.223], + [17071,0.114], + [17073,0.104], + [17075,0.1], + [17077,0.285], + [17079,0.085], + [17081,0.171], + [17083,0.085], + [17085,0.084], + [17087,0.136], + [17089,0.091], + [17091,0.15], + [17093,0.039], + [17095,0.155], + [17097,0.07], + [17099,0.108], + [17101,0.175], + [17103,0.096], + [17105,0.11], + [17107,0.098], + [17109,0.237], + [17111,0.062], + [17113,0.129], + [17115,0.157], + [17117,0.12], + [17119,0.129], + [17121,0.165], + [17123,0.095], + [17125,0.152], + [17127,0.137], + [17129,0.077], + [17131,0.093], + [17133,0.045], + [17135,0.14], + [17137,0.164], + [17139,0.11], + [17141,0.089], + [17143,0.145], + [17145,0.14], + [17147,0.076], + [17149,0.154], + [17151,0.124], + [17153,0.227], + [17155,0.109], + [17157,0.104], + [17159,0.138], + [17161,0.123], + [17163,0.155], + [17165,0.184], + [17167,0.134], + [17169,0.14], + [17171,0.091], + [17173,0.113], + [17175,0.112], + [17177,0.148], + [17179,0.079], + [17181,0.211], + [17183,0.187], + [17185,0.13], + [17187,0.134], + [17189,0.091], + [17191,0.143], + [17193,0.148], + [17195,0.112], + [17197,0.066], + [17199,0.167], + [17201,0.159], + [17203,0.07], + [18001,0.163], + [18003,0.123], + [18005,0.104], + [18007,0.1], + [18009,0.142], + [18011,0.071], + [18013,0.108], + [18015,0.094], + [18017,0.14], + [18019,0.118], + [18021,0.125], + [18023,0.117], + [18025,0.187], + [18027,0.123], + [18029,0.072], + [18031,0.108], + [18033,0.09], + [18035,0.202], + [18037,0.096], + [18039,0.137], + [18041,0.194], + [18043,0.108], + [18045,0.132], + [18047,0.117], + [18049,0.113], + [18051,0.122], + [18053,0.17], + [18055,0.144], + [18057,0.045], + [18059,0.073], + [18061,0.1], + [18063,0.057], + [18065,0.137], + [18067,0.164], + [18069,0.114], + [18071,0.111], + [18073,0.09], + [18075,0.135], + [18077,0.151], + [18079,0.123], + [18081,0.081], + [18083,0.164], + [18085,0.1], + [18087,0.16], + [18089,0.161], + [18091,0.138], + [18093,0.158], + [18095,0.147], + [18097,0.173], + [18099,0.122], + [18101,0.13], + [18103,0.167], + [18105,0.255], + [18107,0.122], + [18109,0.101], + [18111,0.082], + [18113,0.114], + [18115,0.084], + [18117,0.202], + [18119,0.124], + [18121,0.158], + [18123,0.104], + [18125,0.129], + [18127,0.094], + [18129,0.083], + [18131,0.172], + [18133,0.103], + [18135,0.132], + [18137,0.098], + [18139,0.128], + [18141,0.146], + [18143,0.159], + [18145,0.1], + [18147,0.121], + [18149,0.157], + [18151,0.109], + [18153,0.119], + [18155,0.144], + [18157,0.2], + [18159,0.065], + [18161,0.119], + [18163,0.156], + [18165,0.147], + [18167,0.195], + [18169,0.116], + [18171,0.088], + [18173,0.061], + [18175,0.169], + [18177,0.161], + [18179,0.08], + [18181,0.095], + [18183,0.068], + [19001,0.106], + [19003,0.122], + [19005,0.11], + [19007,0.159], + [19009,0.111], + [19011,0.072], + [19013,0.169], + [19015,0.106], + [19017,0.082], + [19019,0.094], + [19021,0.12], + [19023,0.103], + [19025,0.104], + [19027,0.112], + [19029,0.136], + [19031,0.072], + [19033,0.121], + [19035,0.051], + [19037,0.094], + [19039,0.122], + [19041,0.111], + [19043,0.113], + [19045,0.112], + [19047,0.106], + [19049,0.067], + [19051,0.095], + [19053,0.169], + [19055,0.088], + [19057,0.138], + [19059,0.082], + [19061,0.091], + [19063,0.119], + [19065,0.134], + [19067,0.14], + [19069,0.106], + [19071,0.087], + [19073,0.08], + [19075,0.075], + [19077,0.072], + [19079,0.097], + [19081,0.11], + [19083,0.099], + [19085,0.101], + [19087,0.14], + [19089,0.112], + [19091,0.096], + [19093,0.105], + [19095,0.09], + [19097,0.099], + [19099,0.123], + [19101,0.143], + [19103,0.182], + [19105,0.082], + [19107,0.103], + [19109,0.086], + [19111,0.135], + [19113,0.096], + [19115,0.124], + [19117,0.163], + [19119,0.057], + [19121,0.088], + [19123,0.143], + [19125,0.08], + [19127,0.127], + [19129,0.1], + [19131,0.059], + [19133,0.115], + [19135,0.134], + [19137,0.14], + [19139,0.137], + [19141,0.11], + [19143,0.085], + [19145,0.117], + [19147,0.106], + [19149,0.048], + [19151,0.099], + [19153,0.103], + [19155,0.121], + [19157,0.112], + [19159,0.127], + [19161,0.102], + [19163,0.129], + [19165,0.1], + [19167,0.064], + [19169,0.186], + [19171,0.106], + [19173,0.114], + [19175,0.178], + [19177,0.167], + [19179,0.162], + [19181,0.07], + [19183,0.107], + [19185,0.127], + [19187,0.142], + [19189,0.1], + [19191,0.084], + [19193,0.14], + [19195,0.117], + [19197,0.112], + [20001,0.127], + [20003,0.124], + [20005,0.131], + [20007,0.131], + [20009,0.122], + [20011,0.155], + [20013,0.196], + [20015,0.073], + [20017,0.109], + [20019,0.101], + [20021,0.175], + [20023,0.132], + [20025,0.129], + [20027,0.09], + [20029,0.174], + [20031,0.115], + [20033,0.089], + [20035,0.15], + [20037,0.177], + [20039,0.162], + [20041,0.111], + [20043,0.126], + [20045,0.191], + [20047,0.171], + [20049,0.184], + [20051,0.14], + [20053,0.079], + [20055,0.141], + [20057,0.172], + [20059,0.084], + [20061,0.12], + [20063,0.091], + [20065,0.107], + [20067,0.118], + [20069,0.069], + [20071,0.065], + [20073,0.169], + [20075,0.077], + [20077,0.122], + [20079,0.086], + [20081,0.12], + [20083,0.08], + [20085,0.101], + [20087,0.065], + [20089,0.137], + [20091,0.055], + [20093,0.135], + [20095,0.104], + [20097,0.094], + [20099,0.155], + [20101,0.139], + [20103,0.081], + [20105,0.102], + [20107,0.103], + [20109,0.118], + [20111,0.222], + [20113,0.076], + [20115,0.098], + [20117,0.104], + [20119,0.115], + [20121,0.08], + [20123,0.083], + [20125,0.148], + [20127,0.109], + [20129,0.065], + [20131,0.093], + [20133,0.17], + [20135,0.073], + [20137,0.099], + [20139,0.115], + [20141,0.155], + [20143,0.102], + [20145,0.107], + [20147,0.1], + [20149,0.071], + [20151,0.1], + [20153,0.123], + [20155,0.131], + [20157,0.114], + [20159,0.137], + [20161,0.247], + [20163,0.163], + [20165,0.126], + [20167,0.169], + [20169,0.126], + [20171,0.086], + [20173,0.139], + [20175,0.167], + [20177,0.149], + [20179,0.154], + [20181,0.179], + [20183,0.12], + [20185,0.14], + [20187,0.06], + [20189,0.121], + [20191,0.107], + [20193,0.087], + [20195,0.091], + [20197,0.087], + [20199,0.153], + [20201,0.106], + [20203,0.104], + [20205,0.15], + [20207,0.214], + [20209,0.213], + [21001,0.213], + [21003,0.203], + [21005,0.114], + [21007,0.13], + [21009,0.187], + [21011,0.296], + [21013,0.294], + [21015,0.075], + [21017,0.161], + [21019,0.181], + [21021,0.186], + [21023,0.197], + [21025,0.332], + [21027,0.192], + [21029,0.095], + [21031,0.191], + [21033,0.186], + [21035,0.17], + [21037,0.113], + [21039,0.157], + [21041,0.218], + [21043,0.206], + [21045,0.282], + [21047,0.2], + [21049,0.16], + [21051,0.344], + [21053,0.291], + [21055,0.17], + [21057,0.266], + [21059,0.146], + [21061,0.188], + [21063,0.365], + [21065,0.251], + [21067,0.174], + [21069,0.201], + [21071,0.281], + [21073,0.139], + [21075,0.276], + [21077,0.235], + [21079,0.175], + [21081,0.174], + [21083,0.199], + [21085,0.195], + [21087,0.18], + [21089,0.15], + [21091,0.155], + [21093,0.13], + [21095,0.307], + [21097,0.204], + [21099,0.235], + [21101,0.144], + [21103,0.185], + [21105,0.161], + [21107,0.182], + [21109,0.331], + [21111,0.155], + [21113,0.148], + [21115,0.221], + [21117,0.114], + [21119,0.241], + [21121,0.365], + [21123,0.155], + [21125,0.201], + [21127,0.244], + [21129,0.316], + [21131,0.246], + [21133,0.268], + [21135,0.275], + [21137,0.219], + [21139,0.112], + [21141,0.183], + [21143,0.14], + [21145,0.153], + [21147,0.352], + [21149,0.16], + [21151,0.189], + [21153,0.298], + [21155,0.178], + [21157,0.116], + [21159,0.33], + [21161,0.211], + [21163,0.134], + [21165,0.204], + [21167,0.124], + [21169,0.187], + [21171,0.271], + [21173,0.211], + [21175,0.236], + [21177,0.206], + [21179,0.142], + [21181,0.183], + [21183,0.19], + [21185,0.074], + [21187,0.12], + [21189,0.415], + [21191,0.186], + [21193,0.279], + [21195,0.221], + [21197,0.263], + [21199,0.211], + [21201,0.251], + [21203,0.281], + [21205,0.298], + [21207,0.242], + [21209,0.134], + [21211,0.114], + [21213,0.145], + [21215,0.07], + [21217,0.228], + [21219,0.214], + [21221,0.13], + [21223,0.169], + [21225,0.185], + [21227,0.185], + [21229,0.132], + [21231,0.267], + [21233,0.16], + [21235,0.289], + [21237,0.422], + [21239,0.113], + [22001,0.201], + [22003,0.174], + [22005,0.117], + [22007,0.177], + [22009,0.232], + [22011,0.132], + [22013,0.266], + [22015,0.134], + [22017,0.204], + [22019,0.162], + [22021,0.219], + [22023,0.116], + [22025,0.246], + [22027,0.268], + [22029,0.308], + [22031,0.203], + [22033,0.184], + [22035,0.408], + [22037,0.213], + [22039,0.221], + [22041,0.293], + [22043,0.161], + [22045,0.212], + [22047,0.177], + [22049,0.156], + [22051,0.142], + [22053,0.16], + [22055,0.164], + [22057,0.156], + [22059,0.13], + [22061,0.264], + [22063,0.114], + [22065,0.336], + [22067,0.274], + [22069,0.286], + [22071,0.244], + [22073,0.21], + [22075,0.116], + [22077,0.202], + [22079,0.181], + [22081,0.215], + [22083,0.203], + [22085,0.207], + [22087,0.15], + [22089,0.125], + [22091,0.231], + [22093,0.136], + [22095,0.155], + [22097,0.283], + [22099,0.169], + [22101,0.21], + [22103,0.094], + [22105,0.225], + [22107,0.324], + [22109,0.174], + [22111,0.22], + [22113,0.172], + [22115,0.15], + [22117,0.261], + [22119,0.215], + [22121,0.16], + [22123,0.23], + [22125,0.13], + [22127,0.237], + [23001,0.143], + [23003,0.154], + [23005,0.105], + [23007,0.155], + [23009,0.115], + [23011,0.125], + [23013,0.125], + [23015,0.108], + [23017,0.132], + [23019,0.157], + [23021,0.162], + [23023,0.088], + [23025,0.184], + [23027,0.146], + [23029,0.198], + [23031,0.085], + [24001,0.145], + [24003,0.053], + [24005,0.081], + [24009,0.044], + [24011,0.115], + [24013,0.053], + [24015,0.09], + [24017,0.052], + [24019,0.134], + [24021,0.048], + [24023,0.125], + [24025,0.056], + [24027,0.042], + [24029,0.122], + [24031,0.06], + [24033,0.079], + [24035,0.055], + [24037,0.071], + [24039,0.186], + [24041,0.061], + [24043,0.104], + [24045,0.143], + [24047,0.101], + [24510,0.213], + [25001,0.072], + [25003,0.116], + [25005,0.113], + [25007,0.086], + [25009,0.101], + [25011,0.113], + [25013,0.172], + [25015,0.117], + [25017,0.076], + [25019,0.072], + [25021,0.062], + [25023,0.07], + [25025,0.206], + [25027,0.095], + [26001,0.146], + [26003,0.123], + [26005,0.119], + [26007,0.159], + [26009,0.155], + [26011,0.165], + [26013,0.12], + [26015,0.089], + [26017,0.132], + [26019,0.111], + [26021,0.164], + [26023,0.169], + [26025,0.167], + [26027,0.139], + [26029,0.113], + [26031,0.163], + [26033,0.177], + [26035,0.219], + [26037,0.085], + [26039,0.18], + [26041,0.127], + [26043,0.107], + [26045,0.091], + [26047,0.09], + [26049,0.181], + [26051,0.19], + [26053,0.175], + [26055,0.097], + [26057,0.173], + [26059,0.156], + [26061,0.223], + [26063,0.133], + [26065,0.2], + [26067,0.154], + [26069,0.162], + [26071,0.127], + [26073,0.297], + [26075,0.149], + [26077,0.184], + [26079,0.169], + [26081,0.143], + [26083,0.203], + [26085,0.195], + [26087,0.11], + [26089,0.084], + [26091,0.137], + [26093,0.062], + [26095,0.174], + [26097,0.147], + [26099,0.098], + [26101,0.132], + [26103,0.132], + [26105,0.152], + [26107,0.206], + [26109,0.122], + [26111,0.11], + [26113,0.144], + [26115,0.09], + [26117,0.19], + [26119,0.176], + [26121,0.18], + [26123,0.173], + [26125,0.087], + [26127,0.192], + [26129,0.185], + [26131,0.127], + [26133,0.185], + [26135,0.204], + [26137,0.121], + [26139,0.087], + [26141,0.12], + [26143,0.22], + [26145,0.185], + [26147,0.124], + [26149,0.151], + [26151,0.148], + [26153,0.176], + [26155,0.139], + [26157,0.158], + [26159,0.158], + [26161,0.137], + [26163,0.214], + [26165,0.173], + [27001,0.135], + [27003,0.064], + [27005,0.112], + [27007,0.199], + [27009,0.118], + [27011,0.094], + [27013,0.19], + [27015,0.098], + [27017,0.105], + [27019,0.047], + [27021,0.131], + [27023,0.094], + [27025,0.071], + [27027,0.12], + [27029,0.155], + [27031,0.089], + [27033,0.109], + [27035,0.115], + [27037,0.056], + [27039,0.061], + [27041,0.107], + [27043,0.109], + [27045,0.123], + [27047,0.1], + [27049,0.082], + [27051,0.12], + [27053,0.121], + [27055,0.092], + [27057,0.117], + [27059,0.089], + [27061,0.118], + [27063,0.091], + [27065,0.125], + [27067,0.121], + [27069,0.064], + [27071,0.124], + [27073,0.093], + [27075,0.116], + [27077,0.137], + [27079,0.082], + [27081,0.092], + [27083,0.122], + [27085,0.066], + [27087,0.236], + [27089,0.084], + [27091,0.09], + [27093,0.086], + [27095,0.124], + [27097,0.131], + [27099,0.143], + [27101,0.093], + [27103,0.116], + [27105,0.18], + [27107,0.12], + [27109,0.084], + [27111,0.129], + [27113,0.119], + [27115,0.14], + [27117,0.099], + [27119,0.13], + [27121,0.08], + [27123,0.158], + [27125,0.098], + [27127,0.107], + [27129,0.108], + [27131,0.104], + [27133,0.095], + [27135,0.106], + [27137,0.151], + [27139,0.047], + [27141,0.073], + [27143,0.096], + [27145,0.129], + [27147,0.075], + [27149,0.143], + [27151,0.091], + [27153,0.149], + [27155,0.093], + [27157,0.073], + [27159,0.168], + [27161,0.076], + [27163,0.052], + [27165,0.118], + [27167,0.079], + [27169,0.154], + [27171,0.055], + [27173,0.127], + [28001,0.304], + [28003,0.191], + [28005,0.276], + [28007,0.249], + [28009,0.26], + [28011,0.357], + [28013,0.231], + [28015,0.236], + [28017,0.249], + [28019,0.213], + [28021,0.35], + [28023,0.231], + [28025,0.257], + [28027,0.355], + [28029,0.226], + [28031,0.256], + [28033,0.098], + [28035,0.256], + [28037,0.232], + [28039,0.144], + [28041,0.184], + [28043,0.252], + [28045,0.147], + [28047,0.153], + [28049,0.225], + [28051,0.434], + [28053,0.429], + [28055,0.397], + [28057,0.13], + [28059,0.148], + [28061,0.186], + [28063,0.39], + [28065,0.262], + [28067,0.228], + [28069,0.283], + [28071,0.241], + [28073,0.152], + [28075,0.236], + [28077,0.199], + [28079,0.228], + [28081,0.191], + [28083,0.397], + [28085,0.172], + [28087,0.223], + [28089,0.13], + [28091,0.233], + [28093,0.218], + [28095,0.208], + [28097,0.241], + [28099,0.192], + [28101,0.17], + [28103,0.356], + [28105,0.32], + [28107,0.291], + [28109,0.201], + [28111,0.188], + [28113,0.253], + [28115,0.164], + [28117,0.221], + [28119,0.348], + [28121,0.111], + [28123,0.222], + [28125,0.349], + [28127,0.224], + [28129,0.195], + [28131,0.175], + [28133,0.333], + [28135,0.325], + [28137,0.175], + [28139,0.241], + [28141,0.204], + [28143,0.257], + [28145,0.198], + [28147,0.223], + [28149,0.214], + [28151,0.348], + [28153,0.236], + [28155,0.254], + [28157,0.281], + [28159,0.25], + [28161,0.262], + [28163,0.33], + [29001,0.26], + [29003,0.085], + [29005,0.131], + [29007,0.17], + [29009,0.171], + [29011,0.157], + [29013,0.174], + [29015,0.183], + [29017,0.197], + [29019,0.184], + [29021,0.146], + [29023,0.204], + [29025,0.159], + [29027,0.113], + [29029,0.118], + [29031,0.142], + [29033,0.13], + [29035,0.196], + [29037,0.072], + [29039,0.179], + [29041,0.143], + [29043,0.095], + [29045,0.135], + [29047,0.078], + [29049,0.083], + [29051,0.096], + [29053,0.143], + [29055,0.154], + [29057,0.205], + [29059,0.164], + [29061,0.138], + [29063,0.095], + [29065,0.182], + [29067,0.224], + [29069,0.236], + [29071,0.111], + [29073,0.108], + [29075,0.149], + [29077,0.162], + [29079,0.133], + [29081,0.151], + [29083,0.164], + [29085,0.154], + [29087,0.144], + [29089,0.155], + [29091,0.197], + [29093,0.216], + [29095,0.157], + [29097,0.189], + [29099,0.095], + [29101,0.16], + [29103,0.205], + [29105,0.16], + [29107,0.106], + [29109,0.173], + [29111,0.163], + [29113,0.109], + [29115,0.146], + [29117,0.206], + [29119,0.153], + [29121,0.148], + [29123,0.193], + [29125,0.139], + [29127,0.16], + [29129,0.159], + [29131,0.168], + [29133,0.276], + [29135,0.113], + [29137,0.129], + [29139,0.148], + [29141,0.17], + [29143,0.211], + [29145,0.163], + [29147,0.228], + [29149,0.24], + [29151,0.109], + [29153,0.165], + [29155,0.318], + [29157,0.106], + [29159,0.162], + [29161,0.179], + [29163,0.129], + [29165,0.07], + [29167,0.216], + [29169,0.143], + [29171,0.181], + [29173,0.093], + [29175,0.182], + [29177,0.094], + [29179,0.213], + [29181,0.24], + [29183,0.05], + [29185,0.166], + [29186,0.107], + [29187,0.157], + [29189,0.096], + [29195,0.191], + [29197,0.209], + [29199,0.195], + [29201,0.18], + [29203,0.228], + [29205,0.12], + [29207,0.18], + [29209,0.16], + [29211,0.211], + [29213,0.148], + [29215,0.215], + [29217,0.212], + [29219,0.123], + [29221,0.207], + [29223,0.198], + [29225,0.168], + [29227,0.162], + [29229,0.247], + [29510,0.26], + [30001,0.15], + [30003,0.235], + [30005,0.29], + [30007,0.101], + [30009,0.122], + [30011,0.14], + [30013,0.135], + [30015,0.21], + [30017,0.157], + [30019,0.141], + [30021,0.093], + [30023,0.212], + [30025,0.085], + [30027,0.147], + [30029,0.117], + [30031,0.135], + [30033,0.107], + [30035,0.254], + [30037,0.109], + [30039,0.121], + [30041,0.179], + [30043,0.128], + [30045,0.099], + [30047,0.216], + [30049,0.097], + [30051,0.195], + [30053,0.186], + [30055,0.086], + [30057,0.116], + [30059,0.19], + [30061,0.19], + [30063,0.173], + [30065,0.178], + [30067,0.136], + [30069,0.167], + [30071,0.135], + [30073,0.215], + [30075,0.141], + [30077,0.173], + [30079,0.169], + [30081,0.15], + [30083,0.135], + [30085,0.215], + [30087,0.185], + [30089,0.213], + [30091,0.145], + [30093,0.178], + [30095,0.095], + [30097,0.121], + [30099,0.128], + [30101,0.157], + [30103,0.082], + [30105,0.101], + [30107,0.115], + [30109,0.118], + [30111,0.112], + [31001,0.135], + [31003,0.114], + [31005,0.077], + [31007,0.161], + [31009,0.124], + [31011,0.066], + [31013,0.142], + [31015,0.083], + [31017,0.194], + [31019,0.14], + [31021,0.099], + [31023,0.091], + [31025,0.047], + [31027,0.106], + [31029,0.14], + [31031,0.078], + [31033,0.098], + [31035,0.083], + [31037,0.11], + [31039,0.123], + [31041,0.1], + [31043,0.155], + [31045,0.227], + [31047,0.142], + [31049,0.143], + [31051,0.103], + [31053,0.131], + [31055,0.131], + [31057,0.113], + [31059,0.117], + [31061,0.157], + [31063,0.126], + [31065,0.151], + [31067,0.127], + [31069,0.134], + [31071,0.134], + [31073,0.114], + [31075,0.174], + [31077,0.123], + [31079,0.112], + [31081,0.089], + [31083,0.103], + [31085,0.096], + [31087,0.13], + [31089,0.078], + [31091,0.066], + [31093,0.099], + [31095,0.125], + [31097,0.145], + [31099,0.091], + [31101,0.092], + [31103,0.227], + [31105,0.105], + [31107,0.137], + [31109,0.138], + [31111,0.101], + [31113,0.056], + [31115,0.191], + [31117,0.083], + [31119,0.119], + [31121,0.107], + [31123,0.15], + [31125,0.098], + [31127,0.137], + [31129,0.18], + [31131,0.12], + [31133,0.129], + [31135,0.059], + [31137,0.106], + [31139,0.082], + [31141,0.08], + [31143,0.069], + [31145,0.103], + [31147,0.142], + [31149,0.096], + [31151,0.12], + [31153,0.057], + [31155,0.072], + [31157,0.151], + [31159,0.07], + [31161,0.165], + [31163,0.153], + [31165,0.094], + [31167,0.11], + [31169,0.121], + [31171,0.097], + [31173,0.291], + [31175,0.161], + [31177,0.044], + [31179,0.157], + [31181,0.15], + [31183,0.128], + [31185,0.07], + [32001,0.088], + [32003,0.117], + [32005,0.079], + [32007,0.071], + [32009,0.112], + [32011,0.162], + [32013,0.12], + [32015,0.122], + [32017,0.106], + [32019,0.128], + [32021,0.191], + [32023,0.189], + [32027,0.137], + [32029,0.056], + [32031,0.126], + [32033,0.155], + [32510,0.14], + [33001,0.086], + [33003,0.096], + [33005,0.1], + [33007,0.121], + [33009,0.098], + [33011,0.072], + [33013,0.081], + [33015,0.047], + [33017,0.113], + [33019,0.1], + [34001,0.118], + [34003,0.058], + [34005,0.055], + [34007,0.112], + [34009,0.092], + [34011,0.155], + [34013,0.146], + [34015,0.071], + [34017,0.151], + [34019,0.04], + [34021,0.101], + [34023,0.074], + [34025,0.063], + [34027,0.04], + [34029,0.09], + [34031,0.151], + [34033,0.101], + [34035,0.036], + [34037,0.048], + [34039,0.091], + [34041,0.068], + [35001,0.156], + [35003,0.153], + [35005,0.21], + [35006,0.24], + [35007,0.172], + [35009,0.201], + [35011,0.216], + [35013,0.245], + [35015,0.136], + [35017,0.148], + [35019,0.282], + [35021,0.191], + [35023,0.226], + [35025,0.177], + [35027,0.129], + [35028,0.024], + [35029,0.328], + [35031,0.334], + [35033,0.119], + [35035,0.2], + [35037,0.211], + [35039,0.197], + [35041,0.228], + [35043,0.114], + [35045,0.208], + [35047,0.248], + [35049,0.144], + [35051,0.225], + [35053,0.268], + [35055,0.17], + [35057,0.194], + [35059,0.098], + [35061,0.194], + [36001,0.126], + [36003,0.165], + [36005,0.284], + [36007,0.155], + [36009,0.16], + [36011,0.121], + [36013,0.171], + [36015,0.152], + [36017,0.136], + [36019,0.133], + [36021,0.095], + [36023,0.141], + [36025,0.133], + [36027,0.084], + [36029,0.14], + [36031,0.129], + [36033,0.144], + [36035,0.172], + [36037,0.117], + [36039,0.132], + [36041,0.095], + [36043,0.128], + [36045,0.144], + [36047,0.22], + [36049,0.146], + [36051,0.119], + [36053,0.098], + [36055,0.137], + [36057,0.149], + [36059,0.05], + [36061,0.178], + [36063,0.128], + [36065,0.149], + [36067,0.136], + [36069,0.087], + [36071,0.111], + [36073,0.121], + [36075,0.153], + [36077,0.149], + [36079,0.07], + [36081,0.13], + [36083,0.117], + [36085,0.103], + [36087,0.113], + [36089,0.169], + [36091,0.064], + [36093,0.111], + [36095,0.114], + [36097,0.083], + [36099,0.139], + [36101,0.135], + [36103,0.057], + [36105,0.166], + [36107,0.096], + [36109,0.188], + [36111,0.113], + [36113,0.1], + [36115,0.115], + [36117,0.111], + [36119,0.082], + [36121,0.109], + [36123,0.147], + [37001,0.163], + [37003,0.15], + [37005,0.262], + [37007,0.205], + [37009,0.178], + [37011,0.181], + [37013,0.172], + [37015,0.233], + [37017,0.241], + [37019,0.135], + [37021,0.147], + [37023,0.173], + [37025,0.113], + [37027,0.162], + [37029,0.093], + [37031,0.122], + [37033,0.217], + [37035,0.125], + [37037,0.122], + [37039,0.132], + [37041,0.174], + [37043,0.214], + [37045,0.194], + [37047,0.214], + [37049,0.16], + [37051,0.166], + [37053,0.085], + [37055,0.105], + [37057,0.145], + [37059,0.122], + [37061,0.237], + [37063,0.161], + [37065,0.223], + [37067,0.153], + [37069,0.15], + [37071,0.166], + [37073,0.205], + [37075,0.195], + [37077,0.119], + [37079,0.184], + [37081,0.159], + [37083,0.238], + [37085,0.165], + [37087,0.123], + [37089,0.127], + [37091,0.241], + [37093,0.212], + [37095,0.204], + [37097,0.124], + [37099,0.204], + [37101,0.151], + [37103,0.168], + [37105,0.15], + [37107,0.227], + [37109,0.138], + [37111,0.179], + [37113,0.169], + [37115,0.169], + [37117,0.234], + [37119,0.125], + [37121,0.168], + [37123,0.232], + [37125,0.129], + [37127,0.141], + [37129,0.154], + [37131,0.217], + [37133,0.138], + [37135,0.163], + [37137,0.107], + [37139,0.181], + [37141,0.148], + [37143,0.18], + [37145,0.16], + [37147,0.239], + [37149,0.129], + [37151,0.172], + [37153,0.252], + [37155,0.302], + [37157,0.156], + [37159,0.163], + [37161,0.207], + [37163,0.204], + [37165,0.295], + [37167,0.127], + [37169,0.122], + [37171,0.169], + [37173,0.224], + [37175,0.14], + [37177,0.219], + [37179,0.085], + [37181,0.275], + [37183,0.097], + [37185,0.27], + [37187,0.248], + [37189,0.248], + [37191,0.186], + [37193,0.192], + [37195,0.21], + [37197,0.147], + [37199,0.181], + [38001,0.106], + [38003,0.12], + [38005,0.356], + [38007,0.083], + [38009,0.136], + [38011,0.067], + [38013,0.058], + [38015,0.094], + [38017,0.128], + [38019,0.082], + [38021,0.11], + [38023,0.14], + [38025,0.086], + [38027,0.154], + [38029,0.161], + [38031,0.073], + [38033,0.13], + [38035,0.175], + [38037,0.13], + [38039,0.114], + [38041,0.11], + [38043,0.179], + [38045,0.091], + [38047,0.109], + [38049,0.123], + [38051,0.139], + [38053,0.1], + [38055,0.093], + [38057,0.062], + [38059,0.082], + [38061,0.165], + [38063,0.099], + [38065,0.097], + [38067,0.08], + [38069,0.129], + [38071,0.115], + [38073,0.094], + [38075,0.059], + [38077,0.107], + [38079,0.318], + [38081,0.078], + [38083,0.189], + [38085,0.472], + [38087,0.105], + [38089,0.1], + [38091,0.042], + [38093,0.121], + [38095,0.103], + [38097,0.092], + [38099,0.099], + [38101,0.094], + [38103,0.103], + [38105,0.087], + [39001,0.23], + [39003,0.163], + [39005,0.156], + [39007,0.157], + [39009,0.303], + [39011,0.072], + [39013,0.152], + [39015,0.124], + [39017,0.128], + [39019,0.126], + [39021,0.129], + [39023,0.159], + [39025,0.093], + [39027,0.14], + [39029,0.16], + [39031,0.17], + [39033,0.13], + [39035,0.164], + [39037,0.106], + [39039,0.127], + [39041,0.046], + [39043,0.125], + [39045,0.104], + [39047,0.174], + [39049,0.17], + [39051,0.105], + [39053,0.213], + [39055,0.076], + [39057,0.114], + [39059,0.173], + [39061,0.154], + [39063,0.114], + [39065,0.162], + [39067,0.184], + [39069,0.106], + [39071,0.162], + [39073,0.153], + [39075,0.133], + [39077,0.145], + [39079,0.233], + [39081,0.177], + [39083,0.131], + [39085,0.081], + [39087,0.194], + [39089,0.111], + [39091,0.148], + [39093,0.131], + [39095,0.18], + [39097,0.117], + [39099,0.166], + [39101,0.173], + [39103,0.063], + [39105,0.208], + [39107,0.083], + [39109,0.095], + [39111,0.173], + [39113,0.157], + [39115,0.191], + [39117,0.108], + [39119,0.166], + [39121,0.149], + [39123,0.09], + [39125,0.11], + [39127,0.185], + [39129,0.124], + [39131,0.236], + [39133,0.135], + [39135,0.094], + [39137,0.071], + [39139,0.124], + [39141,0.173], + [39143,0.109], + [39145,0.208], + [39147,0.119], + [39149,0.119], + [39151,0.127], + [39153,0.138], + [39155,0.154], + [39157,0.128], + [39159,0.064], + [39161,0.088], + [39163,0.195], + [39165,0.06], + [39167,0.152], + [39169,0.099], + [39171,0.118], + [39173,0.122], + [39175,0.082], + [40001,0.265], + [40003,0.111], + [40005,0.225], + [40007,0.124], + [40009,0.16], + [40011,0.148], + [40013,0.191], + [40015,0.209], + [40017,0.079], + [40019,0.165], + [40021,0.263], + [40023,0.246], + [40025,0.218], + [40027,0.121], + [40029,0.216], + [40031,0.174], + [40033,0.131], + [40035,0.171], + [40037,0.154], + [40039,0.169], + [40041,0.212], + [40043,0.136], + [40045,0.139], + [40047,0.168], + [40049,0.158], + [40051,0.148], + [40053,0.103], + [40055,0.156], + [40057,0.269], + [40059,0.125], + [40061,0.123], + [40063,0.219], + [40065,0.183], + [40067,0.167], + [40069,0.199], + [40071,0.179], + [40073,0.12], + [40075,0.202], + [40077,0.139], + [40079,0.207], + [40081,0.148], + [40083,0.15], + [40085,0.142], + [40087,0.094], + [40089,0.277], + [40091,0.225], + [40093,0.103], + [40095,0.144], + [40097,0.169], + [40099,0.155], + [40101,0.191], + [40103,0.135], + [40105,0.176], + [40107,0.246], + [40109,0.168], + [40111,0.203], + [40113,0.126], + [40115,0.182], + [40117,0.182], + [40119,0.234], + [40121,0.167], + [40123,0.205], + [40125,0.173], + [40127,0.271], + [40129,0.116], + [40131,0.095], + [40133,0.238], + [40135,0.209], + [40137,0.122], + [40139,0.156], + [40141,0.211], + [40143,0.151], + [40145,0.117], + [40147,0.132], + [40149,0.169], + [40151,0.121], + [40153,0.122], + [41001,0.199], + [41003,0.191], + [41005,0.09], + [41007,0.128], + [41009,0.103], + [41011,0.164], + [41013,0.14], + [41015,0.139], + [41017,0.105], + [41019,0.156], + [41021,0.106], + [41023,0.144], + [41025,0.185], + [41027,0.095], + [41029,0.14], + [41031,0.201], + [41033,0.178], + [41035,0.166], + [41037,0.175], + [41039,0.167], + [41041,0.162], + [41043,0.156], + [41045,0.227], + [41047,0.16], + [41049,0.153], + [41051,0.16], + [41053,0.129], + [41055,0.2], + [41057,0.169], + [41059,0.158], + [41061,0.161], + [41063,0.129], + [41065,0.155], + [41067,0.095], + [41069,0.114], + [41071,0.127], + [42001,0.076], + [42003,0.123], + [42005,0.117], + [42007,0.111], + [42009,0.135], + [42011,0.124], + [42013,0.129], + [42015,0.136], + [42017,0.049], + [42019,0.083], + [42021,0.137], + [42023,0.114], + [42025,0.105], + [42027,0.185], + [42029,0.062], + [42031,0.158], + [42033,0.147], + [42035,0.155], + [42037,0.137], + [42039,0.158], + [42041,0.065], + [42043,0.119], + [42045,0.094], + [42047,0.11], + [42049,0.156], + [42051,0.192], + [42053,0.117], + [42055,0.082], + [42057,0.133], + [42059,0.167], + [42061,0.114], + [42063,0.186], + [42065,0.137], + [42067,0.083], + [42069,0.132], + [42071,0.097], + [42073,0.127], + [42075,0.089], + [42077,0.119], + [42079,0.137], + [42081,0.144], + [42083,0.139], + [42085,0.132], + [42087,0.139], + [42089,0.104], + [42091,0.056], + [42093,0.11], + [42095,0.088], + [42097,0.149], + [42099,0.091], + [42101,0.251], + [42103,0.087], + [42105,0.148], + [42107,0.119], + [42109,0.117], + [42111,0.129], + [42113,0.155], + [42115,0.113], + [42117,0.158], + [42119,0.126], + [42121,0.157], + [42123,0.122], + [42125,0.104], + [42127,0.109], + [42129,0.098], + [42131,0.109], + [42133,0.09], + [44001,0.065], + [44003,0.079], + [44005,0.073], + [44007,0.154], + [44009,0.074], + [45001,0.207], + [45003,0.166], + [45005,0.424], + [45007,0.158], + [45009,0.299], + [45011,0.254], + [45013,0.105], + [45015,0.126], + [45017,0.158], + [45019,0.165], + [45021,0.195], + [45023,0.214], + [45025,0.227], + [45027,0.23], + [45029,0.213], + [45031,0.2], + [45033,0.305], + [45035,0.112], + [45037,0.212], + [45039,0.227], + [45041,0.18], + [45043,0.197], + [45045,0.141], + [45047,0.176], + [45049,0.208], + [45051,0.161], + [45053,0.215], + [45055,0.155], + [45057,0.204], + [45059,0.192], + [45061,0.299], + [45063,0.111], + [45065,0.182], + [45067,0.251], + [45069,0.275], + [45071,0.166], + [45073,0.166], + [45075,0.258], + [45077,0.166], + [45079,0.145], + [45081,0.151], + [45083,0.148], + [45085,0.194], + [45087,0.201], + [45089,0.329], + [45091,0.125], + [46003,0.082], + [46005,0.131], + [46007,0.321], + [46009,0.124], + [46011,0.191], + [46013,0.102], + [46015,0.091], + [46017,0.493], + [46019,0.156], + [46021,0.107], + [46023,0.24], + [46025,0.131], + [46027,0.24], + [46029,0.127], + [46031,0.351], + [46033,0.097], + [46035,0.138], + [46037,0.125], + [46039,0.061], + [46041,0.305], + [46043,0.098], + [46045,0.116], + [46047,0.174], + [46049,0.179], + [46051,0.116], + [46053,0.16], + [46055,0.125], + [46057,0.075], + [46059,0.131], + [46061,0.137], + [46063,0.161], + [46065,0.093], + [46067,0.104], + [46069,0.112], + [46071,0.3], + [46073,0.109], + [46075,0.091], + [46077,0.092], + [46079,0.121], + [46081,0.153], + [46083,0.043], + [46085,0.188], + [46087,0.079], + [46089,0.165], + [46091,0.171], + [46093,0.101], + [46095,0.27], + [46097,0.088], + [46099,0.097], + [46101,0.071], + [46102,0.535], + [46103,0.14], + [46105,0.187], + [46107,0.1], + [46109,0.2], + [46111,0.127], + [46115,0.17], + [46117,0.119], + [46119,0.08], + [46121,0.488], + [46123,0.165], + [46125,0.077], + [46127,0.049], + [46129,0.145], + [46135,0.112], + [46137,0.46], + [47001,0.165], + [47003,0.217], + [47005,0.176], + [47007,0.231], + [47009,0.117], + [47011,0.16], + [47013,0.232], + [47015,0.137], + [47017,0.196], + [47019,0.235], + [47021,0.093], + [47023,0.151], + [47025,0.193], + [47027,0.187], + [47029,0.263], + [47031,0.175], + [47033,0.187], + [47035,0.158], + [47037,0.173], + [47039,0.203], + [47041,0.192], + [47043,0.14], + [47045,0.202], + [47047,0.13], + [47049,0.25], + [47051,0.132], + [47053,0.191], + [47055,0.171], + [47057,0.187], + [47059,0.197], + [47061,0.315], + [47063,0.177], + [47065,0.147], + [47067,0.303], + [47069,0.2], + [47071,0.207], + [47073,0.183], + [47075,0.266], + [47077,0.164], + [47079,0.172], + [47081,0.16], + [47083,0.194], + [47085,0.129], + [47087,0.217], + [47089,0.182], + [47091,0.238], + [47093,0.137], + [47095,0.287], + [47097,0.241], + [47099,0.174], + [47101,0.183], + [47103,0.159], + [47105,0.138], + [47107,0.173], + [47109,0.211], + [47111,0.241], + [47113,0.186], + [47115,0.187], + [47117,0.164], + [47119,0.133], + [47121,0.252], + [47123,0.188], + [47125,0.146], + [47127,0.145], + [47129,0.192], + [47131,0.149], + [47133,0.192], + [47135,0.242], + [47137,0.171], + [47139,0.184], + [47141,0.225], + [47143,0.191], + [47145,0.134], + [47147,0.12], + [47149,0.127], + [47151,0.245], + [47153,0.218], + [47155,0.135], + [47157,0.197], + [47159,0.177], + [47161,0.171], + [47163,0.159], + [47165,0.101], + [47167,0.167], + [47169,0.097], + [47171,0.188], + [47173,0.219], + [47175,0.246], + [47177,0.211], + [47179,0.169], + [47181,0.155], + [47183,0.217], + [47185,0.191], + [47187,0.052], + [47189,0.076], + [48001,0.165], + [48003,0.171], + [48005,0.178], + [48007,0.174], + [48009,0.1], + [48011,0.107], + [48013,0.188], + [48015,0.088], + [48017,0.173], + [48019,0.184], + [48021,0.141], + [48023,0.173], + [48025,0.19], + [48027,0.141], + [48029,0.169], + [48031,0.117], + [48033,0.043], + [48035,0.162], + [48037,0.168], + [48039,0.106], + [48041,0.297], + [48043,0.165], + [48045,0.199], + [48047,0.34], + [48049,0.162], + [48051,0.135], + [48053,0.137], + [48055,0.196], + [48057,0.163], + [48059,0.139], + [48061,0.347], + [48063,0.204], + [48065,0.057], + [48067,0.193], + [48069,0.233], + [48071,0.105], + [48073,0.224], + [48075,0.162], + [48077,0.117], + [48079,0.249], + [48081,0.151], + [48083,0.294], + [48085,0.069], + [48087,0.208], + [48089,0.152], + [48091,0.1], + [48093,0.221], + [48095,0.2], + [48097,0.136], + [48099,0.132], + [48101,0.109], + [48103,0.17], + [48105,0.159], + [48107,0.239], + [48109,0.288], + [48111,0.125], + [48113,0.176], + [48115,0.191], + [48117,0.175], + [48119,0.145], + [48121,0.08], + [48123,0.164], + [48125,0.246], + [48127,0.364], + [48129,0.105], + [48131,0.229], + [48133,0.21], + [48135,0.167], + [48137,0.247], + [48139,0.113], + [48141,0.256], + [48143,0.197], + [48145,0.234], + [48147,0.147], + [48149,0.11], + [48151,0.139], + [48153,0.238], + [48155,0.234], + [48157,0.08], + [48159,0.148], + [48161,0.16], + [48163,0.218], + [48165,0.18], + [48167,0.128], + [48169,0.217], + [48171,0.08], + [48173,0.112], + [48175,0.118], + [48177,0.203], + [48179,0.15], + [48181,0.135], + [48183,0.165], + [48185,0.159], + [48187,0.097], + [48189,0.19], + [48191,0.277], + [48193,0.114], + [48195,0.135], + [48197,0.192], + [48199,0.12], + [48201,0.168], + [48203,0.152], + [48205,0.093], + [48207,0.188], + [48209,0.164], + [48211,0.168], + [48213,0.168], + [48215,0.344], + [48217,0.15], + [48219,0.17], + [48221,0.109], + [48223,0.158], + [48225,0.237], + [48227,0.177], + [48229,0.46], + [48231,0.192], + [48233,0.152], + [48235,0.015], + [48237,0.178], + [48239,0.117], + [48241,0.186], + [48243,0.147], + [48245,0.188], + [48247,0.12], + [48249,0.219], + [48251,0.105], + [48253,0.123], + [48255,0.19], + [48257,0.114], + [48259,0.071], + [48261,0.149], + [48263,0.054], + [48265,0.141], + [48267,0.146], + [48269,0], + [48271,0.322], + [48273,0.248], + [48275,0.16], + [48277,0.167], + [48279,0.179], + [48281,0.146], + [48283,0.218], + [48285,0.105], + [48287,0.108], + [48289,0.167], + [48291,0.154], + [48293,0.189], + [48295,0.142], + [48297,0.133], + [48299,0.126], + [48301,0], + [48303,0.188], + [48305,0.169], + [48307,0.229], + [48309,0.205], + [48311,0.091], + [48313,0.204], + [48315,0.232], + [48317,0.072], + [48319,0.163], + [48321,0.216], + [48323,0.336], + [48325,0.159], + [48327,0.186], + [48329,0.125], + [48331,0.176], + [48333,0.157], + [48335,0.153], + [48337,0.132], + [48339,0.109], + [48341,0.134], + [48343,0.167], + [48345,0.221], + [48347,0.246], + [48349,0.198], + [48351,0.162], + [48353,0.194], + [48355,0.191], + [48357,0.177], + [48359,0.134], + [48361,0.139], + [48363,0.138], + [48365,0.125], + [48367,0.105], + [48369,0.186], + [48371,0.199], + [48373,0.218], + [48375,0.227], + [48377,0.241], + [48379,0.115], + [48381,0.094], + [48383,0.105], + [48385,0.268], + [48387,0.175], + [48389,0.287], + [48391,0.16], + [48393,0.146], + [48395,0.212], + [48397,0.056], + [48399,0.216], + [48401,0.124], + [48403,0.18], + [48405,0.271], + [48407,0.178], + [48409,0.166], + [48411,0.234], + [48413,0.124], + [48415,0.177], + [48417,0.132], + [48419,0.254], + [48421,0.129], + [48423,0.154], + [48425,0.108], + [48427,0.38], + [48429,0.199], + [48431,0.21], + [48433,0.119], + [48435,0.117], + [48437,0.154], + [48439,0.134], + [48441,0.165], + [48443,0.165], + [48445,0.166], + [48447,0.132], + [48449,0.179], + [48451,0.168], + [48453,0.162], + [48455,0.166], + [48457,0.183], + [48459,0.131], + [48461,0.139], + [48463,0.267], + [48465,0.24], + [48467,0.145], + [48469,0.164], + [48471,0.238], + [48473,0.211], + [48475,0.173], + [48477,0.16], + [48479,0.298], + [48481,0.172], + [48483,0.139], + [48485,0.153], + [48487,0.233], + [48489,0.434], + [48491,0.065], + [48493,0.09], + [48495,0.163], + [48497,0.098], + [48499,0.14], + [48501,0.25], + [48503,0.156], + [48505,0.376], + [48507,0.43], + [49001,0.179], + [49003,0.086], + [49005,0.149], + [49007,0.126], + [49009,0.084], + [49011,0.065], + [49013,0.108], + [49015,0.1], + [49017,0.098], + [49019,0.126], + [49021,0.209], + [49023,0.105], + [49025,0.099], + [49027,0.126], + [49029,0.011], + [49031,0.132], + [49033,0.068], + [49035,0.103], + [49037,0.258], + [49039,0.178], + [49041,0.115], + [49043,0.07], + [49045,0.065], + [49047,0.117], + [49049,0.128], + [49051,0.061], + [49053,0.113], + [49055,0.123], + [49057,0.115], + [50001,0.113], + [50003,0.109], + [50005,0.135], + [50007,0.108], + [50009,0.169], + [50011,0.105], + [50013,0.064], + [50015,0.12], + [50017,0.1], + [50019,0.143], + [50021,0.118], + [50023,0.105], + [50025,0.111], + [50027,0.097], + [51001,0.156], + [51003,0.081], + [51005,0.109], + [51007,0.1], + [51009,0.131], + [51011,0.138], + [51013,0.07], + [51015,0.091], + [51017,0.103], + [51019,0.087], + [51021,0.117], + [51023,0.056], + [51025,0.21], + [51027,0.218], + [51029,0.19], + [51031,0.122], + [51033,0.077], + [51035,0.157], + [51036,0.097], + [51037,0.158], + [51041,0.059], + [51043,0.073], + [51045,0.072], + [51047,0.067], + [51049,0.161], + [51051,0.191], + [51053,0.118], + [51057,0.084], + [51059,0.051], + [51061,0.054], + [51063,0.145], + [51065,0.075], + [51067,0.132], + [51069,0.079], + [51071,0.15], + [51073,0.093], + [51075,0.071], + [51077,0.156], + [51079,0.084], + [51081,0.168], + [51083,0.2], + [51085,0.043], + [51087,0.096], + [51089,0.168], + [51091,0.088], + [51093,0.082], + [51095,0.07], + [51097,0.131], + [51099,0.071], + [51101,0.076], + [51103,0.101], + [51105,0.212], + [51107,0.032], + [51109,0.101], + [51111,0.163], + [51113,0.126], + [51115,0.083], + [51117,0.188], + [51119,0.103], + [51121,0.226], + [51125,0.119], + [51127,0.044], + [51131,0.186], + [51133,0.109], + [51135,0.173], + [51137,0.097], + [51139,0.128], + [51141,0.145], + [51143,0.151], + [51145,0.047], + [51147,0.169], + [51149,0.067], + [51153,0.053], + [51155,0.147], + [51157,0.103], + [51159,0.116], + [51161,0.051], + [51163,0.124], + [51165,0.102], + [51167,0.172], + [51169,0.184], + [51171,0.093], + [51173,0.191], + [51175,0.158], + [51177,0.074], + [51179,0.04], + [51181,0.066], + [51183,0.196], + [51185,0.169], + [51187,0.096], + [51191,0.147], + [51193,0.097], + [51195,0.203], + [51197,0.155], + [51199,0.039], + [51510,0.078], + [51520,0.234], + [51530,0.206], + [51540,0.271], + [51550,0.068], + [51570,0.075], + [51580,0.186], + [51590,0.244], + [51595,0.26], + [51600,0.05], + [51610,0.048], + [51620,0.221], + [51630,0.176], + [51640,0.323], + [51650,0.126], + [51660,0.327], + [51670,0.204], + [51678,0.308], + [51680,0.227], + [51683,0.134], + [51685,0.073], + [51690,0.235], + [51700,0.135], + [51710,0.165], + [51720,0.226], + [51730,0.202], + [51735,0.049], + [51740,0.152], + [51750,0.308], + [51760,0.253], + [51770,0.209], + [51775,0.088], + [51790,0.152], + [51800,0.112], + [51810,0.068], + [51820,0.194], + [51830,0.165], + [51840,0.17], + [53001,0.251], + [53003,0.135], + [53005,0.127], + [53007,0.115], + [53009,0.143], + [53011,0.109], + [53013,0.164], + [53015,0.169], + [53017,0.143], + [53019,0.208], + [53021,0.199], + [53023,0.157], + [53025,0.204], + [53027,0.161], + [53029,0.08], + [53031,0.135], + [53033,0.102], + [53035,0.094], + [53037,0.212], + [53039,0.195], + [53041,0.133], + [53043,0.121], + [53045,0.156], + [53047,0.195], + [53049,0.168], + [53051,0.183], + [53053,0.116], + [53055,0.101], + [53057,0.117], + [53059,0.094], + [53061,0.084], + [53063,0.141], + [53065,0.151], + [53067,0.103], + [53069,0.122], + [53071,0.175], + [53073,0.15], + [53075,0.276], + [53077,0.218], + [54001,0.184], + [54003,0.101], + [54005,0.193], + [54007,0.21], + [54009,0.11], + [54011,0.206], + [54013,0.205], + [54015,0.237], + [54017,0.251], + [54019,0.213], + [54021,0.303], + [54023,0.129], + [54025,0.194], + [54027,0.164], + [54029,0.148], + [54031,0.149], + [54033,0.189], + [54035,0.181], + [54037,0.084], + [54039,0.137], + [54041,0.196], + [54043,0.266], + [54045,0.218], + [54047,0.326], + [54049,0.168], + [54051,0.18], + [54053,0.189], + [54055,0.228], + [54057,0.161], + [54059,0.216], + [54061,0.21], + [54063,0.133], + [54065,0.158], + [54067,0.187], + [54069,0.159], + [54071,0.151], + [54073,0.137], + [54075,0.153], + [54077,0.139], + [54079,0.104], + [54081,0.175], + [54083,0.171], + [54085,0.189], + [54087,0.276], + [54089,0.216], + [54091,0.158], + [54093,0.177], + [54095,0.181], + [54097,0.193], + [54099,0.202], + [54101,0.229], + [54103,0.175], + [54105,0.192], + [54107,0.164], + [54109,0.173], + [55001,0.126], + [55003,0.186], + [55005,0.119], + [55007,0.123], + [55009,0.103], + [55011,0.095], + [55013,0.185], + [55015,0.055], + [55017,0.107], + [55019,0.128], + [55021,0.087], + [55023,0.129], + [55025,0.116], + [55027,0.078], + [55029,0.077], + [55031,0.128], + [55033,0.153], + [55035,0.147], + [55037,0.146], + [55039,0.092], + [55041,0.189], + [55043,0.133], + [55045,0.09], + [55047,0.103], + [55049,0.072], + [55051,0.157], + [55053,0.164], + [55055,0.09], + [55057,0.11], + [55059,0.117], + [55061,0.082], + [55063,0.135], + [55065,0.091], + [55067,0.11], + [55069,0.1], + [55071,0.089], + [55073,0.087], + [55075,0.136], + [55077,0.109], + [55078,0.316], + [55079,0.192], + [55081,0.141], + [55083,0.118], + [55085,0.099], + [55087,0.085], + [55089,0.045], + [55091,0.095], + [55093,0.103], + [55095,0.096], + [55097,0.121], + [55099,0.118], + [55101,0.115], + [55103,0.115], + [55105,0.124], + [55107,0.164], + [55109,0.064], + [55111,0.094], + [55113,0.201], + [55115,0.119], + [55117,0.084], + [55119,0.123], + [55121,0.115], + [55123,0.136], + [55125,0.119], + [55127,0.117], + [55129,0.131], + [55131,0.054], + [55133,0.044], + [55135,0.106], + [55137,0.131], + [55139,0.105], + [55141,0.084], + [56001,0.215], + [56003,0.089], + [56005,0.069], + [56007,0.082], + [56009,0.077], + [56011,0.078], + [56013,0.14], + [56015,0.131], + [56017,0.091], + [56019,0.082], + [56021,0.096], + [56023,0.081], + [56025,0.084], + [56027,0.115], + [56029,0.09], + [56031,0.103], + [56033,0.085], + [56035,0.042], + [56037,0.082], + [56039,0.082], + [56041,0.121], + [56043,0.056], + [56045,0.079] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-2016.json b/data/regional/united-states/economics/poverty/us-poverty-rate-2016.json new file mode 100644 index 0000000..fb10bf3 --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Poverty Rate", + "description" : "Percent of the population living below the poverty line.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.poverty.rate.2016"], + [1001,0.135], + [1003,0.117], + [1005,0.299], + [1007,0.201], + [1009,0.141], + [1011,0.326], + [1013,0.248], + [1015,0.171], + [1017,0.199], + [1019,0.168], + [1021,0.183], + [1023,0.227], + [1025,0.29], + [1027,0.189], + [1029,0.172], + [1031,0.144], + [1033,0.167], + [1035,0.281], + [1037,0.175], + [1039,0.196], + [1041,0.205], + [1043,0.149], + [1045,0.206], + [1047,0.354], + [1049,0.205], + [1051,0.135], + [1053,0.233], + [1055,0.175], + [1057,0.203], + [1059,0.201], + [1061,0.209], + [1063,0.34], + [1065,0.237], + [1067,0.187], + [1069,0.194], + [1071,0.175], + [1073,0.153], + [1075,0.186], + [1077,0.152], + [1079,0.168], + [1081,0.183], + [1083,0.128], + [1085,0.317], + [1087,0.3], + [1089,0.135], + [1091,0.258], + [1093,0.185], + [1095,0.21], + [1097,0.195], + [1099,0.257], + [1101,0.188], + [1103,0.158], + [1105,0.35], + [1107,0.258], + [1109,0.251], + [1111,0.218], + [1113,0.193], + [1115,0.12], + [1117,0.079], + [1119,0.324], + [1121,0.18], + [1123,0.202], + [1125,0.176], + [1127,0.205], + [1129,0.182], + [1131,0.319], + [1133,0.173], + [2013,0.148], + [2016,0.08], + [2020,0.072], + [2050,0.255], + [2060,0.114], + [2068,0.063], + [2070,0.196], + [2090,0.085], + [2100,0.103], + [2105,0.191], + [2110,0.074], + [2122,0.12], + [2130,0.092], + [2150,0.073], + [2158,null], + [2164,0.209], + [2170,0.095], + [2180,0.24], + [2185,0.119], + [2188,0.278], + [2195,0.084], + [2198,0.175], + [2220,0.079], + [2230,0.044], + [2240,0.118], + [2261,0.092], + [2275,0.115], + [2282,0.168], + [2290,0.23], + [4001,0.332], + [4003,0.211], + [4005,0.178], + [4007,0.203], + [4009,0.229], + [4011,0.12], + [4012,0.248], + [4013,0.15], + [4015,0.183], + [4017,0.282], + [4019,0.182], + [4021,0.154], + [4023,0.209], + [4025,0.133], + [4027,0.193], + [5001,0.181], + [5003,0.179], + [5005,0.127], + [5007,0.091], + [5009,0.154], + [5011,0.235], + [5013,0.171], + [5015,0.172], + [5017,0.301], + [5019,0.223], + [5021,0.191], + [5023,0.163], + [5025,0.158], + [5027,0.242], + [5029,0.189], + [5031,0.162], + [5033,0.168], + [5035,0.255], + [5037,0.194], + [5039,0.208], + [5041,0.265], + [5043,0.192], + [5045,0.16], + [5047,0.179], + [5049,0.232], + [5051,0.178], + [5053,0.115], + [5055,0.153], + [5057,0.207], + [5059,0.147], + [5061,0.187], + [5063,0.159], + [5065,0.201], + [5067,0.241], + [5069,0.233], + [5071,0.184], + [5073,0.274], + [5075,0.2], + [5077,0.359], + [5079,0.276], + [5081,0.175], + [5083,0.182], + [5085,0.124], + [5087,0.183], + [5089,0.207], + [5091,0.224], + [5093,0.246], + [5095,0.27], + [5097,0.224], + [5099,0.204], + [5101,0.199], + [5103,0.247], + [5105,0.169], + [5107,0.323], + [5109,0.182], + [5111,0.227], + [5113,0.234], + [5115,0.175], + [5117,0.178], + [5119,0.172], + [5121,0.189], + [5123,0.316], + [5125,0.087], + [5127,0.197], + [5129,0.231], + [5131,0.169], + [5133,0.208], + [5135,0.213], + [5137,0.218], + [5139,0.193], + [5141,0.167], + [5143,0.158], + [5145,0.157], + [5147,0.263], + [5149,0.18], + [6001,0.107], + [6003,0.186], + [6005,0.113], + [6007,0.195], + [6009,0.131], + [6011,0.111], + [6013,0.087], + [6015,0.237], + [6017,0.087], + [6019,0.255], + [6021,0.167], + [6023,0.2], + [6025,0.236], + [6027,0.123], + [6029,0.224], + [6031,0.174], + [6033,0.207], + [6035,0.176], + [6037,0.163], + [6039,0.204], + [6041,0.078], + [6043,0.179], + [6045,0.19], + [6047,0.203], + [6049,0.184], + [6051,0.115], + [6053,0.129], + [6055,0.079], + [6057,0.109], + [6059,0.111], + [6061,0.072], + [6063,0.126], + [6065,0.153], + [6067,0.163], + [6069,0.105], + [6071,0.176], + [6073,0.124], + [6075,0.102], + [6077,0.146], + [6079,0.11], + [6081,0.066], + [6083,0.139], + [6085,0.093], + [6087,0.134], + [6089,0.172], + [6091,0.144], + [6093,0.188], + [6095,0.114], + [6097,0.094], + [6099,0.145], + [6101,0.171], + [6103,0.209], + [6105,0.213], + [6107,0.247], + [6109,0.154], + [6111,0.098], + [6113,0.19], + [6115,0.166], + [8001,0.117], + [8003,0.248], + [8005,0.09], + [8007,0.12], + [8009,0.202], + [8011,0.341], + [8013,0.108], + [8014,0.053], + [8015,0.114], + [8017,0.14], + [8019,0.081], + [8021,0.227], + [8023,0.304], + [8025,0.48], + [8027,0.136], + [8029,0.178], + [8031,0.14], + [8033,0.132], + [8035,0.034], + [8037,0.079], + [8039,0.06], + [8041,0.115], + [8043,0.175], + [8045,0.091], + [8047,0.075], + [8049,0.082], + [8051,0.138], + [8053,0.1], + [8055,0.219], + [8057,0.141], + [8059,0.07], + [8061,0.139], + [8063,0.143], + [8065,0.146], + [8067,0.109], + [8069,0.112], + [8071,0.216], + [8073,0.181], + [8075,0.164], + [8077,0.15], + [8079,0.093], + [8081,0.129], + [8083,0.151], + [8085,0.164], + [8087,0.117], + [8089,0.236], + [8091,0.088], + [8093,0.092], + [8095,0.115], + [8097,0.069], + [8099,0.209], + [8101,0.199], + [8103,0.095], + [8105,0.175], + [8107,0.072], + [8109,0.276], + [8111,0.155], + [8113,0.101], + [8115,0.148], + [8117,0.079], + [8119,0.095], + [8121,0.143], + [8123,0.115], + [8125,0.123], + [9001,0.086], + [9003,0.109], + [9005,0.072], + [9007,0.079], + [9009,0.114], + [9011,0.093], + [9013,0.072], + [9015,0.119], + [10001,0.136], + [10003,0.113], + [10005,0.116], + [11001,0.185], + [12001,0.223], + [12003,0.172], + [12005,0.149], + [12007,0.186], + [12009,0.147], + [12011,0.135], + [12013,0.219], + [12015,0.126], + [12017,0.166], + [12019,0.096], + [12021,0.114], + [12023,0.178], + [12027,0.286], + [12029,0.254], + [12031,0.145], + [12033,0.152], + [12035,0.112], + [12037,0.231], + [12039,0.206], + [12041,0.173], + [12043,0.215], + [12045,0.235], + [12047,0.289], + [12049,0.238], + [12051,0.251], + [12053,0.154], + [12055,0.191], + [12057,0.15], + [12059,0.242], + [12061,0.123], + [12063,0.226], + [12065,0.189], + [12067,0.233], + [12069,0.118], + [12071,0.128], + [12073,0.19], + [12075,0.214], + [12077,0.236], + [12079,0.319], + [12081,0.127], + [12083,0.174], + [12085,0.113], + [12086,0.182], + [12087,0.115], + [12089,0.103], + [12091,0.107], + [12093,0.202], + [12095,0.163], + [12097,0.148], + [12099,0.126], + [12101,0.133], + [12103,0.133], + [12105,0.164], + [12107,0.215], + [12109,0.077], + [12111,0.17], + [12113,0.106], + [12115,0.108], + [12117,0.114], + [12119,0.105], + [12121,0.204], + [12123,0.225], + [12125,0.247], + [12127,0.142], + [12129,0.131], + [12131,0.131], + [12133,0.228], + [13001,0.197], + [13003,0.264], + [13005,0.229], + [13007,0.278], + [13009,0.26], + [13011,0.155], + [13013,0.129], + [13015,0.151], + [13017,0.264], + [13019,0.223], + [13021,0.263], + [13023,0.217], + [13025,0.208], + [13027,0.249], + [13029,0.096], + [13031,0.24], + [13033,0.267], + [13035,0.17], + [13037,0.33], + [13039,0.15], + [13043,0.25], + [13045,0.149], + [13047,0.129], + [13049,0.272], + [13051,0.166], + [13053,0.215], + [13055,0.201], + [13057,0.075], + [13059,0.279], + [13061,0.352], + [13063,0.208], + [13065,0.26], + [13067,0.1], + [13069,0.23], + [13071,0.25], + [13073,0.072], + [13075,0.251], + [13077,0.099], + [13079,0.193], + [13081,0.303], + [13083,0.156], + [13085,0.102], + [13087,0.299], + [13089,0.175], + [13091,0.252], + [13093,0.285], + [13095,0.305], + [13097,0.129], + [13099,0.314], + [13101,0.232], + [13103,0.103], + [13105,0.223], + [13107,0.274], + [13109,0.244], + [13111,0.141], + [13113,0.06], + [13115,0.158], + [13117,0.057], + [13119,0.214], + [13121,0.16], + [13123,0.152], + [13125,0.185], + [13127,0.191], + [13129,0.161], + [13131,0.21], + [13133,0.182], + [13135,0.113], + [13137,0.156], + [13139,0.137], + [13141,0.335], + [13143,0.185], + [13145,0.087], + [13147,0.173], + [13149,0.197], + [13151,0.096], + [13153,0.149], + [13155,0.236], + [13157,0.127], + [13159,0.169], + [13161,0.239], + [13163,0.252], + [13165,0.342], + [13167,0.294], + [13169,0.123], + [13171,0.182], + [13173,0.228], + [13175,0.256], + [13177,0.112], + [13179,0.153], + [13181,0.191], + [13183,0.186], + [13185,0.221], + [13187,0.162], + [13189,0.228], + [13191,0.206], + [13193,0.321], + [13195,0.149], + [13197,0.234], + [13199,0.212], + [13201,0.231], + [13205,0.299], + [13207,0.122], + [13209,0.227], + [13211,0.131], + [13213,0.181], + [13215,0.215], + [13217,0.175], + [13219,0.068], + [13221,0.154], + [13223,0.086], + [13225,0.214], + [13227,0.113], + [13229,0.173], + [13231,0.117], + [13233,0.186], + [13235,0.25], + [13237,0.184], + [13239,0.271], + [13241,0.171], + [13243,0.305], + [13245,0.256], + [13247,0.147], + [13249,0.185], + [13251,0.276], + [13253,0.234], + [13255,0.224], + [13257,0.208], + [13259,0.392], + [13261,0.289], + [13263,0.235], + [13265,0.288], + [13267,0.298], + [13269,0.247], + [13271,0.308], + [13273,0.311], + [13275,0.211], + [13277,0.221], + [13279,0.234], + [13281,0.151], + [13283,0.271], + [13285,0.203], + [13287,0.304], + [13289,0.235], + [13291,0.154], + [13293,0.198], + [13295,0.186], + [13297,0.128], + [13299,0.255], + [13301,0.282], + [13303,0.269], + [13305,0.222], + [13307,0.208], + [13309,0.391], + [13311,0.143], + [13313,0.161], + [13315,0.31], + [13317,0.229], + [13319,0.209], + [13321,0.211], + [15001,0.154], + [15003,0.085], + [15005,null], + [15007,0.081], + [15009,0.095], + [16001,0.108], + [16003,0.15], + [16005,0.168], + [16007,0.139], + [16009,0.18], + [16011,0.138], + [16013,0.098], + [16015,0.136], + [16017,0.154], + [16019,0.117], + [16021,0.17], + [16023,0.182], + [16025,0.099], + [16027,0.151], + [16029,0.113], + [16031,0.142], + [16033,0.164], + [16035,0.158], + [16037,0.157], + [16039,0.139], + [16041,0.093], + [16043,0.165], + [16045,0.179], + [16047,0.138], + [16049,0.162], + [16051,0.104], + [16053,0.16], + [16055,0.145], + [16057,0.176], + [16059,0.177], + [16061,0.16], + [16063,0.128], + [16065,0.241], + [16067,0.158], + [16069,0.149], + [16071,0.131], + [16073,0.173], + [16075,0.159], + [16077,0.157], + [16079,0.189], + [16081,0.097], + [16083,0.145], + [16085,0.096], + [16087,0.151], + [17001,0.128], + [17003,0.29], + [17005,0.136], + [17007,0.096], + [17009,0.167], + [17011,0.115], + [17013,0.122], + [17015,0.126], + [17017,0.137], + [17019,0.189], + [17021,0.127], + [17023,0.12], + [17025,0.16], + [17027,0.093], + [17029,0.193], + [17031,0.15], + [17033,0.144], + [17035,0.124], + [17037,0.158], + [17039,0.106], + [17041,0.098], + [17043,0.07], + [17045,0.136], + [17047,0.111], + [17049,0.109], + [17051,0.152], + [17053,0.112], + [17055,0.215], + [17057,0.147], + [17059,0.205], + [17061,0.151], + [17063,0.079], + [17065,0.144], + [17067,0.12], + [17069,0.219], + [17071,0.117], + [17073,0.115], + [17075,0.133], + [17077,0.234], + [17079,0.107], + [17081,0.158], + [17083,0.112], + [17085,0.099], + [17087,0.144], + [17089,0.105], + [17091,0.142], + [17093,0.046], + [17095,0.171], + [17097,0.087], + [17099,0.133], + [17101,0.186], + [17103,0.133], + [17105,0.143], + [17107,0.137], + [17109,0.202], + [17111,0.073], + [17113,0.126], + [17115,0.173], + [17117,0.133], + [17119,0.133], + [17121,0.158], + [17123,0.098], + [17125,0.151], + [17127,0.206], + [17129,0.097], + [17131,0.102], + [17133,0.048], + [17135,0.16], + [17137,0.157], + [17139,0.1], + [17141,0.102], + [17143,0.152], + [17145,0.156], + [17147,0.068], + [17149,0.164], + [17151,0.182], + [17153,0.211], + [17155,0.08], + [17157,0.137], + [17159,0.144], + [17161,0.156], + [17163,0.154], + [17165,0.204], + [17167,0.138], + [17169,0.121], + [17171,0.115], + [17173,0.117], + [17175,0.115], + [17177,0.154], + [17179,0.088], + [17181,0.174], + [17183,0.202], + [17185,0.135], + [17187,0.136], + [17189,0.093], + [17191,0.139], + [17193,0.162], + [17195,0.119], + [17197,0.072], + [17199,0.159], + [17201,0.156], + [17203,0.066], + [18001,0.152], + [18003,0.15], + [18005,0.117], + [18007,0.115], + [18009,0.128], + [18011,0.07], + [18013,0.109], + [18015,0.103], + [18017,0.125], + [18019,0.105], + [18021,0.142], + [18023,0.137], + [18025,0.172], + [18027,0.142], + [18029,0.082], + [18031,0.115], + [18033,0.09], + [18035,0.216], + [18037,0.066], + [18039,0.132], + [18041,0.178], + [18043,0.103], + [18045,0.132], + [18047,0.107], + [18049,0.125], + [18051,0.108], + [18053,0.203], + [18055,0.161], + [18057,0.048], + [18059,0.073], + [18061,0.102], + [18063,0.058], + [18065,0.162], + [18067,0.148], + [18069,0.111], + [18071,0.131], + [18073,0.094], + [18075,0.139], + [18077,0.134], + [18079,0.127], + [18081,0.076], + [18083,0.17], + [18085,0.104], + [18087,0.1], + [18089,0.166], + [18091,0.157], + [18093,0.137], + [18095,0.175], + [18097,0.189], + [18099,0.12], + [18101,0.124], + [18103,0.157], + [18105,0.238], + [18107,0.113], + [18109,0.105], + [18111,0.122], + [18113,0.114], + [18115,0.101], + [18117,0.163], + [18119,0.138], + [18121,0.163], + [18123,0.149], + [18125,0.114], + [18127,0.078], + [18129,0.087], + [18131,0.115], + [18133,0.126], + [18135,0.154], + [18137,0.122], + [18139,0.139], + [18141,0.162], + [18143,0.158], + [18145,0.123], + [18147,0.091], + [18149,0.161], + [18151,0.107], + [18153,0.142], + [18155,0.172], + [18157,0.176], + [18159,0.085], + [18161,0.128], + [18163,0.174], + [18165,0.133], + [18167,0.178], + [18169,0.115], + [18171,0.091], + [18173,0.075], + [18175,0.143], + [18177,0.17], + [18179,0.097], + [18181,0.109], + [18183,0.09], + [19001,0.107], + [19003,0.123], + [19005,0.132], + [19007,0.187], + [19009,0.111], + [19011,0.078], + [19013,0.161], + [19015,0.092], + [19017,0.067], + [19019,0.101], + [19021,0.121], + [19023,0.098], + [19025,0.124], + [19027,0.088], + [19029,0.128], + [19031,0.066], + [19033,0.117], + [19035,0.109], + [19037,0.109], + [19039,0.116], + [19041,0.091], + [19043,0.099], + [19045,0.135], + [19047,0.141], + [19049,0.049], + [19051,0.129], + [19053,0.2], + [19055,0.095], + [19057,0.161], + [19059,0.078], + [19061,0.105], + [19063,0.109], + [19065,0.128], + [19067,0.129], + [19069,0.116], + [19071,0.116], + [19073,0.112], + [19075,0.063], + [19077,0.099], + [19079,0.093], + [19081,0.088], + [19083,0.11], + [19085,0.109], + [19087,0.124], + [19089,0.098], + [19091,0.1], + [19093,0.102], + [19095,0.072], + [19097,0.13], + [19099,0.101], + [19101,0.14], + [19103,0.17], + [19105,0.105], + [19107,0.12], + [19109,0.114], + [19111,0.14], + [19113,0.1], + [19115,0.114], + [19117,0.149], + [19119,0.073], + [19121,0.078], + [19123,0.123], + [19125,0.085], + [19127,0.122], + [19129,0.088], + [19131,0.101], + [19133,0.128], + [19135,0.125], + [19137,0.129], + [19139,0.108], + [19141,0.101], + [19143,0.105], + [19145,0.147], + [19147,0.103], + [19149,0.084], + [19151,0.118], + [19153,0.109], + [19155,0.103], + [19157,0.11], + [19159,0.143], + [19161,0.116], + [19163,0.134], + [19165,0.09], + [19167,0.073], + [19169,0.192], + [19171,0.121], + [19173,0.123], + [19175,0.132], + [19177,0.145], + [19179,0.166], + [19181,0.068], + [19183,0.099], + [19185,0.179], + [19187,0.143], + [19189,0.105], + [19191,0.094], + [19193,0.133], + [19195,0.089], + [19197,0.126], + [20001,0.155], + [20003,0.129], + [20005,0.158], + [20007,0.12], + [20009,0.139], + [20011,0.174], + [20013,0.133], + [20015,0.089], + [20017,0.114], + [20019,0.175], + [20021,0.158], + [20023,0.112], + [20025,0.115], + [20027,0.103], + [20029,0.132], + [20031,0.104], + [20033,0.117], + [20035,0.14], + [20037,0.223], + [20039,0.148], + [20041,0.111], + [20043,0.137], + [20045,0.158], + [20047,0.112], + [20049,0.179], + [20051,0.124], + [20053,0.102], + [20055,0.143], + [20057,0.134], + [20059,0.119], + [20061,0.116], + [20063,0.104], + [20065,0.123], + [20067,0.12], + [20069,0.082], + [20071,0.117], + [20073,0.148], + [20075,0.135], + [20077,0.146], + [20079,0.105], + [20081,0.101], + [20083,0.099], + [20085,0.089], + [20087,0.095], + [20089,0.127], + [20091,0.056], + [20093,0.116], + [20095,0.107], + [20097,0.13], + [20099,0.208], + [20101,0.101], + [20103,0.088], + [20105,0.124], + [20107,0.166], + [20109,0.099], + [20111,0.163], + [20113,0.097], + [20115,0.112], + [20117,0.103], + [20119,0.109], + [20121,0.082], + [20123,0.119], + [20125,0.189], + [20127,0.118], + [20129,0.124], + [20131,0.093], + [20133,0.164], + [20135,0.113], + [20137,0.137], + [20139,0.109], + [20141,0.142], + [20143,0.107], + [20145,0.147], + [20147,0.126], + [20149,0.082], + [20151,0.114], + [20153,0.124], + [20155,0.147], + [20157,0.114], + [20159,0.128], + [20161,0.182], + [20163,0.119], + [20165,0.12], + [20167,0.145], + [20169,0.12], + [20171,0.075], + [20173,0.149], + [20175,0.136], + [20177,0.109], + [20179,0.115], + [20181,0.144], + [20183,0.142], + [20185,0.133], + [20187,0.109], + [20189,0.1], + [20191,0.135], + [20193,0.105], + [20195,0.11], + [20197,0.081], + [20199,0.121], + [20201,0.108], + [20203,0.117], + [20205,0.164], + [20207,0.184], + [20209,0.194], + [21001,0.261], + [21003,0.186], + [21005,0.106], + [21007,0.162], + [21009,0.218], + [21011,0.249], + [21013,0.387], + [21015,0.076], + [21017,0.176], + [21019,0.182], + [21021,0.171], + [21023,0.167], + [21025,0.343], + [21027,0.173], + [21029,0.104], + [21031,0.178], + [21033,0.204], + [21035,0.212], + [21037,0.125], + [21039,0.145], + [21041,0.208], + [21043,0.226], + [21045,0.278], + [21047,0.208], + [21049,0.159], + [21051,0.421], + [21053,0.253], + [21055,0.186], + [21057,0.253], + [21059,0.164], + [21061,0.223], + [21063,0.307], + [21065,0.273], + [21067,0.179], + [21069,0.212], + [21071,0.304], + [21073,0.137], + [21075,0.3], + [21077,0.145], + [21079,0.163], + [21081,0.156], + [21083,0.207], + [21085,0.221], + [21087,0.204], + [21089,0.174], + [21091,0.126], + [21093,0.138], + [21095,0.371], + [21097,0.153], + [21099,0.218], + [21101,0.171], + [21103,0.185], + [21105,0.201], + [21107,0.183], + [21109,0.319], + [21111,0.149], + [21113,0.159], + [21115,0.259], + [21117,0.126], + [21119,0.382], + [21121,0.392], + [21123,0.169], + [21125,0.232], + [21127,0.271], + [21129,0.39], + [21131,0.318], + [21133,0.316], + [21135,0.268], + [21137,0.229], + [21139,0.145], + [21141,0.175], + [21143,0.164], + [21145,0.187], + [21147,0.393], + [21149,0.173], + [21151,0.213], + [21153,0.319], + [21155,0.201], + [21157,0.121], + [21159,0.393], + [21161,0.194], + [21163,0.134], + [21165,0.241], + [21167,0.145], + [21169,0.227], + [21171,0.232], + [21173,0.179], + [21175,0.272], + [21177,0.196], + [21179,0.116], + [21181,0.198], + [21183,0.203], + [21185,0.059], + [21187,0.182], + [21189,0.452], + [21191,0.144], + [21193,0.309], + [21195,0.314], + [21197,0.265], + [21199,0.189], + [21201,0.246], + [21203,0.242], + [21205,0.254], + [21207,0.25], + [21209,0.104], + [21211,0.115], + [21213,0.151], + [21215,0.088], + [21217,0.213], + [21219,0.204], + [21221,0.145], + [21223,0.148], + [21225,0.186], + [21227,0.185], + [21229,0.157], + [21231,0.269], + [21233,0.179], + [21235,0.293], + [21237,0.322], + [21239,0.121], + [22001,0.231], + [22003,0.214], + [22005,0.107], + [22007,0.212], + [22009,0.259], + [22011,0.148], + [22013,0.235], + [22015,0.167], + [22017,0.264], + [22019,0.199], + [22021,0.226], + [22023,0.123], + [22025,0.275], + [22027,0.349], + [22029,0.285], + [22031,0.211], + [22033,0.199], + [22035,0.435], + [22037,0.2], + [22039,0.294], + [22041,0.292], + [22043,0.215], + [22045,0.234], + [22047,0.228], + [22049,0.212], + [22051,0.161], + [22053,0.193], + [22055,0.181], + [22057,0.171], + [22059,0.193], + [22061,0.302], + [22063,0.126], + [22065,0.413], + [22067,0.287], + [22069,0.319], + [22071,0.241], + [22073,0.245], + [22075,0.154], + [22077,0.197], + [22079,0.199], + [22081,0.263], + [22083,0.272], + [22085,0.185], + [22087,0.235], + [22089,0.131], + [22091,0.247], + [22093,0.19], + [22095,0.185], + [22097,0.266], + [22099,0.185], + [22101,0.222], + [22103,0.098], + [22105,0.215], + [22107,0.316], + [22109,0.211], + [22111,0.202], + [22113,0.196], + [22115,0.149], + [22117,0.278], + [22119,0.241], + [22121,0.168], + [22123,0.238], + [22125,0.237], + [22127,0.243], + [23001,0.127], + [23003,0.163], + [23005,0.1], + [23007,0.143], + [23009,0.11], + [23011,0.141], + [23013,0.114], + [23015,0.113], + [23017,0.134], + [23019,0.148], + [23021,0.189], + [23023,0.093], + [23025,0.195], + [23027,0.143], + [23029,0.184], + [23031,0.081], + [24001,0.172], + [24003,0.07], + [24005,0.09], + [24009,0.058], + [24011,0.153], + [24013,0.055], + [24015,0.1], + [24017,0.074], + [24019,0.174], + [24021,0.069], + [24023,0.128], + [24025,0.072], + [24027,0.052], + [24029,0.14], + [24031,0.069], + [24033,0.092], + [24035,0.073], + [24037,0.091], + [24039,0.243], + [24041,0.104], + [24043,0.132], + [24045,0.18], + [24047,0.114], + [24510,0.218], + [25001,0.076], + [25003,0.109], + [25005,0.107], + [25007,0.076], + [25009,0.107], + [25011,0.1], + [25013,0.165], + [25015,0.119], + [25017,0.077], + [25019,0.064], + [25021,0.061], + [25023,0.08], + [25025,0.195], + [25027,0.096], + [26001,0.162], + [26003,0.139], + [26005,0.09], + [26007,0.155], + [26009,0.117], + [26011,0.165], + [26013,0.165], + [26015,0.084], + [26017,0.152], + [26019,0.108], + [26021,0.167], + [26023,0.168], + [26025,0.168], + [26027,0.129], + [26029,0.115], + [26031,0.18], + [26033,0.16], + [26035,0.217], + [26037,0.084], + [26039,0.214], + [26041,0.143], + [26043,0.128], + [26045,0.112], + [26047,0.118], + [26049,0.203], + [26051,0.18], + [26053,0.204], + [26055,0.1], + [26057,0.188], + [26059,0.145], + [26061,0.202], + [26063,0.142], + [26065,0.201], + [26067,0.145], + [26069,0.182], + [26071,0.154], + [26073,0.234], + [26075,0.136], + [26077,0.166], + [26079,0.153], + [26081,0.121], + [26083,0.123], + [26085,0.219], + [26087,0.108], + [26089,0.081], + [26091,0.125], + [26093,0.058], + [26095,0.209], + [26097,0.137], + [26099,0.11], + [26101,0.142], + [26103,0.151], + [26105,0.153], + [26107,0.207], + [26109,0.13], + [26111,0.095], + [26113,0.147], + [26115,0.1], + [26117,0.156], + [26119,0.17], + [26121,0.188], + [26123,0.172], + [26125,0.087], + [26127,0.18], + [26129,0.173], + [26131,0.158], + [26133,0.191], + [26135,0.186], + [26137,0.14], + [26139,0.09], + [26141,0.147], + [26143,0.177], + [26145,0.178], + [26147,0.138], + [26149,0.149], + [26151,0.155], + [26153,0.148], + [26155,0.12], + [26157,0.136], + [26159,0.165], + [26161,0.146], + [26163,0.229], + [26165,0.178], + [27001,0.131], + [27003,0.068], + [27005,0.127], + [27007,0.183], + [27009,0.085], + [27011,0.119], + [27013,0.15], + [27015,0.082], + [27017,0.102], + [27019,0.043], + [27021,0.155], + [27023,0.089], + [27025,0.067], + [27027,0.12], + [27029,0.165], + [27031,0.101], + [27033,0.12], + [27035,0.11], + [27037,0.056], + [27039,0.077], + [27041,0.086], + [27043,0.117], + [27045,0.123], + [27047,0.11], + [27049,0.077], + [27051,0.12], + [27053,0.109], + [27055,0.085], + [27057,0.131], + [27059,0.077], + [27061,0.133], + [27063,0.087], + [27065,0.132], + [27067,0.115], + [27069,0.11], + [27071,0.143], + [27073,0.097], + [27075,0.091], + [27077,0.109], + [27079,0.084], + [27081,0.127], + [27083,0.128], + [27085,0.074], + [27087,0.175], + [27089,0.098], + [27091,0.121], + [27093,0.071], + [27095,0.121], + [27097,0.119], + [27099,0.132], + [27101,0.093], + [27103,0.08], + [27105,0.116], + [27107,0.121], + [27109,0.086], + [27111,0.105], + [27113,0.098], + [27115,0.122], + [27117,0.109], + [27119,0.145], + [27121,0.091], + [27123,0.139], + [27125,0.098], + [27127,0.091], + [27129,0.099], + [27131,0.097], + [27133,0.094], + [27135,0.078], + [27137,0.147], + [27139,0.055], + [27141,0.063], + [27143,0.091], + [27145,0.117], + [27147,0.091], + [27149,0.111], + [27151,0.102], + [27153,0.125], + [27155,0.127], + [27157,0.076], + [27159,0.146], + [27161,0.093], + [27163,0.045], + [27165,0.113], + [27167,0.089], + [27169,0.115], + [27171,0.053], + [27173,0.099], + [28001,0.314], + [28003,0.169], + [28005,0.24], + [28007,0.238], + [28009,0.253], + [28011,0.353], + [28013,0.219], + [28015,0.174], + [28017,0.222], + [28019,0.231], + [28021,0.382], + [28023,0.209], + [28025,0.239], + [28027,0.412], + [28029,0.271], + [28031,0.235], + [28033,0.102], + [28035,0.254], + [28037,0.202], + [28039,0.161], + [28041,0.241], + [28043,0.225], + [28045,0.172], + [28047,0.205], + [28049,0.208], + [28051,0.425], + [28053,0.389], + [28055,0.405], + [28057,0.181], + [28059,0.176], + [28061,0.227], + [28063,0.337], + [28065,0.269], + [28067,0.205], + [28069,0.283], + [28071,0.207], + [28073,0.126], + [28075,0.237], + [28077,0.197], + [28079,0.249], + [28081,0.17], + [28083,0.356], + [28085,0.2], + [28087,0.212], + [28089,0.12], + [28091,0.27], + [28093,0.23], + [28095,0.194], + [28097,0.242], + [28099,0.225], + [28101,0.217], + [28103,0.316], + [28105,0.283], + [28107,0.227], + [28109,0.186], + [28111,0.214], + [28113,0.301], + [28115,0.184], + [28117,0.242], + [28119,0.343], + [28121,0.095], + [28123,0.226], + [28125,0.35], + [28127,0.231], + [28129,0.189], + [28131,0.203], + [28133,0.351], + [28135,0.372], + [28137,0.172], + [28139,0.248], + [28141,0.176], + [28143,0.313], + [28145,0.131], + [28147,0.241], + [28149,0.241], + [28151,0.342], + [28153,0.253], + [28155,0.207], + [28157,0.351], + [28159,0.23], + [28161,0.229], + [28163,0.348], + [29001,0.238], + [29003,0.097], + [29005,0.128], + [29007,0.17], + [29009,0.214], + [29011,0.161], + [29013,0.138], + [29015,0.179], + [29017,0.174], + [29019,0.166], + [29021,0.178], + [29023,0.22], + [29025,0.127], + [29027,0.116], + [29029,0.168], + [29031,0.152], + [29033,0.166], + [29035,0.212], + [29037,0.087], + [29039,0.198], + [29041,0.133], + [29043,0.107], + [29045,0.155], + [29047,0.084], + [29049,0.104], + [29051,0.109], + [29053,0.147], + [29055,0.186], + [29057,0.175], + [29059,0.186], + [29061,0.169], + [29063,0.157], + [29065,0.198], + [29067,0.198], + [29069,0.272], + [29071,0.107], + [29073,0.121], + [29075,0.146], + [29077,0.165], + [29079,0.171], + [29081,0.181], + [29083,0.207], + [29085,0.193], + [29087,0.141], + [29089,0.159], + [29091,0.205], + [29093,0.224], + [29095,0.155], + [29097,0.175], + [29099,0.101], + [29101,0.144], + [29103,0.189], + [29105,0.157], + [29107,0.127], + [29109,0.149], + [29111,0.169], + [29113,0.112], + [29115,0.161], + [29117,0.176], + [29119,0.214], + [29121,0.163], + [29123,0.18], + [29125,0.152], + [29127,0.145], + [29129,0.136], + [29131,0.163], + [29133,0.284], + [29135,0.116], + [29137,0.154], + [29139,0.156], + [29141,0.196], + [29143,0.25], + [29145,0.143], + [29147,0.17], + [29149,0.249], + [29151,0.086], + [29153,0.253], + [29155,0.309], + [29157,0.103], + [29159,0.152], + [29161,0.196], + [29163,0.18], + [29165,0.061], + [29167,0.168], + [29169,0.142], + [29171,0.175], + [29173,0.109], + [29175,0.161], + [29177,0.11], + [29179,0.221], + [29181,0.277], + [29183,0.052], + [29185,0.207], + [29186,0.117], + [29187,0.163], + [29189,0.092], + [29195,0.159], + [29197,0.198], + [29199,0.161], + [29201,0.184], + [29203,0.264], + [29205,0.166], + [29207,0.191], + [29209,0.129], + [29211,0.17], + [29213,0.17], + [29215,0.299], + [29217,0.175], + [29219,0.118], + [29221,0.22], + [29223,0.26], + [29225,0.167], + [29227,0.142], + [29229,0.242], + [29510,0.243], + [30001,0.144], + [30003,0.255], + [30005,0.243], + [30007,0.106], + [30009,0.103], + [30011,0.138], + [30013,0.142], + [30015,0.157], + [30017,0.114], + [30019,0.103], + [30021,0.112], + [30023,0.186], + [30025,0.085], + [30027,0.146], + [30029,0.123], + [30031,0.114], + [30033,0.138], + [30035,0.283], + [30037,0.183], + [30039,0.131], + [30041,0.195], + [30043,0.088], + [30045,0.134], + [30047,0.192], + [30049,0.104], + [30051,0.202], + [30053,0.187], + [30055,0.156], + [30057,0.112], + [30059,0.183], + [30061,0.178], + [30063,0.152], + [30065,0.174], + [30067,0.117], + [30069,0.151], + [30071,0.155], + [30073,0.184], + [30075,0.107], + [30077,0.175], + [30079,0.121], + [30081,0.138], + [30083,0.075], + [30085,0.239], + [30087,0.166], + [30089,0.176], + [30091,0.106], + [30093,0.155], + [30095,0.084], + [30097,0.098], + [30099,0.141], + [30101,0.168], + [30103,0.103], + [30105,0.125], + [30107,0.19], + [30109,0.109], + [30111,0.088], + [31001,0.127], + [31003,0.113], + [31005,0.119], + [31007,0.125], + [31009,0.155], + [31011,0.101], + [31013,0.115], + [31015,0.147], + [31017,0.138], + [31019,0.112], + [31021,0.107], + [31023,0.089], + [31025,0.076], + [31027,0.094], + [31029,0.093], + [31031,0.119], + [31033,0.094], + [31035,0.113], + [31037,0.098], + [31039,0.087], + [31041,0.116], + [31043,0.12], + [31045,0.169], + [31047,0.127], + [31049,0.115], + [31051,0.085], + [31053,0.117], + [31055,0.124], + [31057,0.124], + [31059,0.098], + [31061,0.133], + [31063,0.125], + [31065,0.14], + [31067,0.113], + [31069,0.163], + [31071,0.128], + [31073,0.098], + [31075,0.1], + [31077,0.143], + [31079,0.127], + [31081,0.077], + [31083,0.121], + [31085,0.168], + [31087,0.129], + [31089,0.106], + [31091,0.082], + [31093,0.105], + [31095,0.107], + [31097,0.126], + [31099,0.091], + [31101,0.128], + [31103,0.161], + [31105,0.13], + [31107,0.129], + [31109,0.122], + [31111,0.094], + [31113,0.103], + [31115,0.16], + [31117,0.122], + [31119,0.143], + [31121,0.104], + [31123,0.165], + [31125,0.125], + [31127,0.134], + [31129,0.125], + [31131,0.095], + [31133,0.154], + [31135,0.106], + [31137,0.092], + [31139,0.096], + [31141,0.09], + [31143,0.08], + [31145,0.107], + [31147,0.124], + [31149,0.138], + [31151,0.115], + [31153,0.058], + [31155,0.074], + [31157,0.159], + [31159,0.079], + [31161,0.162], + [31163,0.123], + [31165,0.155], + [31167,0.076], + [31169,0.112], + [31171,0.139], + [31173,0.253], + [31175,0.116], + [31177,0.07], + [31179,0.12], + [31181,0.129], + [31183,0.114], + [31185,0.105], + [32001,0.142], + [32003,0.146], + [32005,0.097], + [32007,0.104], + [32009,0.148], + [32011,0.099], + [32013,0.119], + [32015,0.119], + [32017,0.141], + [32019,0.119], + [32021,0.182], + [32023,0.159], + [32027,0.175], + [32029,0.078], + [32031,0.125], + [32033,0.147], + [32510,0.13], + [33001,0.1], + [33003,0.105], + [33005,0.086], + [33007,0.138], + [33009,0.103], + [33011,0.08], + [33013,0.074], + [33015,0.042], + [33017,0.077], + [33019,0.095], + [34001,0.142], + [34003,0.069], + [34005,0.062], + [34007,0.12], + [34009,0.119], + [34011,0.184], + [34013,0.163], + [34015,0.078], + [34017,0.156], + [34019,0.045], + [34021,0.111], + [34023,0.086], + [34025,0.071], + [34027,0.054], + [34029,0.11], + [34031,0.172], + [34033,0.126], + [34035,0.052], + [34037,0.06], + [34039,0.106], + [34041,0.083], + [35001,0.162], + [35003,0.232], + [35005,0.22], + [35006,0.269], + [35007,0.214], + [35009,0.189], + [35011,0.212], + [35013,0.256], + [35015,0.152], + [35017,0.228], + [35019,0.251], + [35021,0.143], + [35023,0.267], + [35025,0.18], + [35027,0.182], + [35028,0.04], + [35029,0.276], + [35031,0.344], + [35033,0.252], + [35035,0.205], + [35037,0.246], + [35039,0.225], + [35041,0.223], + [35043,0.145], + [35045,0.174], + [35047,0.257], + [35049,0.14], + [35051,0.27], + [35053,0.254], + [35055,0.224], + [35057,0.273], + [35059,0.201], + [35061,0.186], + [36001,0.121], + [36003,0.184], + [36005,0.286], + [36007,0.165], + [36009,0.146], + [36011,0.125], + [36013,0.192], + [36015,0.152], + [36017,0.152], + [36019,0.144], + [36021,0.127], + [36023,0.164], + [36025,0.175], + [36027,0.092], + [36029,0.142], + [36031,0.126], + [36033,0.184], + [36035,0.15], + [36037,0.114], + [36039,0.164], + [36041,0.102], + [36043,0.163], + [36045,0.153], + [36047,0.206], + [36049,0.158], + [36051,0.139], + [36053,0.111], + [36055,0.147], + [36057,0.199], + [36059,0.061], + [36061,0.172], + [36063,0.126], + [36065,0.163], + [36067,0.146], + [36069,0.096], + [36071,0.126], + [36073,0.152], + [36075,0.172], + [36077,0.147], + [36079,0.06], + [36081,0.133], + [36083,0.116], + [36085,0.132], + [36087,0.144], + [36089,0.175], + [36091,0.063], + [36093,0.114], + [36095,0.127], + [36097,0.15], + [36099,0.135], + [36101,0.132], + [36103,0.076], + [36105,0.169], + [36107,0.127], + [36109,0.185], + [36111,0.139], + [36113,0.117], + [36115,0.111], + [36117,0.104], + [36119,0.1], + [36121,0.1], + [36123,0.141], + [37001,0.161], + [37003,0.15], + [37005,0.206], + [37007,0.251], + [37009,0.161], + [37011,0.197], + [37013,0.19], + [37015,0.244], + [37017,0.264], + [37019,0.138], + [37021,0.135], + [37023,0.177], + [37025,0.11], + [37027,0.171], + [37029,0.087], + [37031,0.123], + [37033,0.197], + [37035,0.127], + [37037,0.117], + [37039,0.184], + [37041,0.189], + [37043,0.153], + [37045,0.206], + [37047,0.246], + [37049,0.153], + [37051,0.188], + [37053,0.102], + [37055,0.109], + [37057,0.154], + [37059,0.116], + [37061,0.213], + [37063,0.161], + [37065,0.239], + [37067,0.175], + [37069,0.153], + [37071,0.157], + [37073,0.152], + [37075,0.199], + [37077,0.152], + [37079,0.237], + [37081,0.183], + [37083,0.27], + [37085,0.161], + [37087,0.159], + [37089,0.122], + [37091,0.261], + [37093,0.195], + [37095,0.223], + [37097,0.106], + [37099,0.209], + [37101,0.132], + [37103,0.215], + [37105,0.169], + [37107,0.206], + [37109,0.127], + [37111,0.184], + [37113,0.164], + [37115,0.188], + [37117,0.225], + [37119,0.123], + [37121,0.164], + [37123,0.214], + [37125,0.114], + [37127,0.165], + [37129,0.173], + [37131,0.224], + [37133,0.137], + [37135,0.128], + [37137,0.185], + [37139,0.17], + [37141,0.15], + [37143,0.169], + [37145,0.154], + [37147,0.215], + [37149,0.145], + [37151,0.144], + [37153,0.249], + [37155,0.278], + [37157,0.181], + [37159,0.165], + [37161,0.186], + [37163,0.196], + [37165,0.276], + [37167,0.131], + [37169,0.124], + [37171,0.17], + [37173,0.167], + [37175,0.166], + [37177,0.273], + [37179,0.09], + [37181,0.242], + [37183,0.092], + [37185,0.264], + [37187,0.261], + [37189,0.243], + [37191,0.206], + [37193,0.168], + [37195,0.223], + [37197,0.14], + [37199,0.191], + [38001,0.096], + [38003,0.109], + [38005,0.294], + [38007,0.089], + [38009,0.111], + [38011,0.082], + [38013,0.09], + [38015,0.072], + [38017,0.107], + [38019,0.097], + [38021,0.109], + [38023,0.1], + [38025,0.098], + [38027,0.101], + [38029,0.139], + [38031,0.089], + [38033,0.098], + [38035,0.139], + [38037,0.156], + [38039,0.096], + [38041,0.105], + [38043,0.126], + [38045,0.116], + [38047,0.127], + [38049,0.109], + [38051,0.121], + [38053,0.079], + [38055,0.092], + [38057,0.066], + [38059,0.089], + [38061,0.095], + [38063,0.116], + [38065,0.103], + [38067,0.091], + [38069,0.13], + [38071,0.141], + [38073,0.081], + [38075,0.082], + [38077,0.102], + [38079,0.267], + [38081,0.077], + [38083,0.169], + [38085,0.353], + [38087,0.113], + [38089,0.08], + [38091,0.083], + [38093,0.112], + [38095,0.107], + [38097,0.084], + [38099,0.11], + [38101,0.088], + [38103,0.105], + [38105,0.068], + [39001,0.202], + [39003,0.155], + [39005,0.122], + [39007,0.182], + [39009,0.288], + [39011,0.092], + [39013,0.157], + [39015,0.167], + [39017,0.124], + [39019,0.128], + [39021,0.111], + [39023,0.157], + [39025,0.106], + [39027,0.134], + [39029,0.172], + [39031,0.127], + [39033,0.139], + [39035,0.183], + [39037,0.107], + [39039,0.104], + [39041,0.047], + [39043,0.125], + [39045,0.097], + [39047,0.16], + [39049,0.166], + [39051,0.089], + [39053,0.206], + [39055,0.058], + [39057,0.121], + [39059,0.186], + [39061,0.16], + [39063,0.1], + [39065,0.133], + [39067,0.168], + [39069,0.083], + [39071,0.198], + [39073,0.145], + [39075,0.117], + [39077,0.122], + [39079,0.181], + [39081,0.163], + [39083,0.127], + [39085,0.086], + [39087,0.179], + [39089,0.117], + [39091,0.122], + [39093,0.124], + [39095,0.198], + [39097,0.118], + [39099,0.187], + [39101,0.148], + [39103,0.065], + [39105,0.211], + [39107,0.082], + [39109,0.095], + [39111,0.152], + [39113,0.182], + [39115,0.187], + [39117,0.122], + [39119,0.148], + [39121,0.151], + [39123,0.104], + [39125,0.107], + [39127,0.17], + [39129,0.132], + [39131,0.205], + [39133,0.135], + [39135,0.11], + [39137,0.083], + [39139,0.158], + [39141,0.186], + [39143,0.116], + [39145,0.221], + [39147,0.129], + [39149,0.094], + [39151,0.132], + [39153,0.137], + [39155,0.176], + [39157,0.127], + [39159,0.061], + [39161,0.089], + [39163,0.208], + [39165,0.054], + [39167,0.137], + [39169,0.119], + [39171,0.097], + [39173,0.114], + [39175,0.086], + [40001,0.29], + [40003,0.158], + [40005,0.199], + [40007,0.116], + [40009,0.171], + [40011,0.177], + [40013,0.169], + [40015,0.213], + [40017,0.084], + [40019,0.164], + [40021,0.232], + [40023,0.268], + [40025,0.177], + [40027,0.124], + [40029,0.219], + [40031,0.162], + [40033,0.169], + [40035,0.175], + [40037,0.155], + [40039,0.18], + [40041,0.177], + [40043,0.132], + [40045,0.13], + [40047,0.146], + [40049,0.175], + [40051,0.132], + [40053,0.133], + [40055,0.267], + [40057,0.261], + [40059,0.106], + [40061,0.211], + [40063,0.247], + [40065,0.192], + [40067,0.222], + [40069,0.219], + [40071,0.166], + [40073,0.104], + [40075,0.223], + [40077,0.21], + [40079,0.216], + [40081,0.158], + [40083,0.145], + [40085,0.139], + [40087,0.108], + [40089,0.257], + [40091,0.212], + [40093,0.121], + [40095,0.157], + [40097,0.175], + [40099,0.134], + [40101,0.214], + [40103,0.134], + [40105,0.174], + [40107,0.251], + [40109,0.163], + [40111,0.207], + [40113,0.155], + [40115,0.191], + [40117,0.166], + [40119,0.251], + [40121,0.144], + [40123,0.163], + [40125,0.18], + [40127,0.22], + [40129,0.13], + [40131,0.091], + [40133,0.226], + [40135,0.196], + [40137,0.167], + [40139,0.139], + [40141,0.236], + [40143,0.157], + [40145,0.113], + [40147,0.143], + [40149,0.16], + [40151,0.135], + [40153,0.125], + [41001,0.176], + [41003,0.184], + [41005,0.087], + [41007,0.129], + [41009,0.11], + [41011,0.175], + [41013,0.142], + [41015,0.141], + [41017,0.106], + [41019,0.156], + [41021,0.122], + [41023,0.16], + [41025,0.164], + [41027,0.107], + [41029,0.146], + [41031,0.173], + [41033,0.18], + [41035,0.19], + [41037,0.152], + [41039,0.183], + [41041,0.196], + [41043,0.131], + [41045,0.229], + [41047,0.136], + [41049,0.148], + [41051,0.142], + [41053,0.121], + [41055,0.122], + [41057,0.129], + [41059,0.157], + [41061,0.16], + [41063,0.146], + [41065,0.142], + [41067,0.09], + [41069,0.196], + [41071,0.117], + [42001,0.094], + [42003,0.115], + [42005,0.138], + [42007,0.097], + [42009,0.137], + [42011,0.131], + [42013,0.136], + [42015,0.115], + [42017,0.066], + [42019,0.073], + [42021,0.156], + [42023,0.142], + [42025,0.131], + [42027,0.17], + [42029,0.07], + [42031,0.152], + [42033,0.141], + [42035,0.178], + [42037,0.135], + [42039,0.144], + [42041,0.079], + [42043,0.113], + [42045,0.108], + [42047,0.101], + [42049,0.157], + [42051,0.175], + [42053,0.246], + [42055,0.091], + [42057,0.106], + [42059,0.157], + [42061,0.136], + [42063,0.2], + [42065,0.133], + [42067,0.102], + [42069,0.141], + [42071,0.107], + [42073,0.137], + [42075,0.099], + [42077,0.138], + [42079,0.146], + [42081,0.146], + [42083,0.174], + [42085,0.161], + [42087,0.147], + [42089,0.12], + [42091,0.062], + [42093,0.112], + [42095,0.093], + [42097,0.146], + [42099,0.091], + [42101,0.253], + [42103,0.098], + [42105,0.14], + [42107,0.128], + [42109,0.127], + [42111,0.141], + [42113,0.128], + [42115,0.127], + [42117,0.133], + [42119,0.118], + [42121,0.146], + [42123,0.153], + [42125,0.097], + [42127,0.137], + [42129,0.098], + [42131,0.113], + [42133,0.098], + [44001,0.082], + [44003,0.096], + [44005,0.09], + [44007,0.158], + [44009,0.098], + [45001,0.153], + [45003,0.17], + [45005,0.382], + [45007,0.154], + [45009,0.284], + [45011,0.226], + [45013,0.103], + [45015,0.123], + [45017,0.162], + [45019,0.15], + [45021,0.186], + [45023,0.198], + [45025,0.205], + [45027,0.249], + [45029,0.234], + [45031,0.211], + [45033,0.256], + [45035,0.095], + [45037,0.177], + [45039,0.212], + [45041,0.183], + [45043,0.152], + [45045,0.109], + [45047,0.217], + [45049,0.223], + [45051,0.15], + [45053,0.207], + [45055,0.156], + [45057,0.13], + [45059,0.182], + [45061,0.277], + [45063,0.117], + [45065,0.181], + [45067,0.252], + [45069,0.281], + [45071,0.189], + [45073,0.146], + [45075,0.227], + [45077,0.149], + [45079,0.164], + [45081,0.167], + [45083,0.156], + [45085,0.204], + [45087,0.212], + [45089,0.298], + [45091,0.107], + [46003,0.104], + [46005,0.14], + [46007,0.338], + [46009,0.146], + [46011,0.14], + [46013,0.106], + [46015,0.127], + [46017,0.395], + [46019,0.139], + [46021,0.096], + [46023,0.217], + [46025,0.116], + [46027,0.2], + [46029,0.118], + [46031,0.391], + [46033,0.106], + [46035,0.108], + [46037,0.14], + [46039,0.098], + [46041,0.275], + [46043,0.11], + [46045,0.101], + [46047,0.129], + [46049,0.138], + [46051,0.099], + [46053,0.159], + [46055,0.112], + [46057,0.095], + [46059,0.09], + [46061,0.088], + [46063,0.114], + [46065,0.085], + [46067,0.127], + [46069,0.093], + [46071,0.307], + [46073,0.126], + [46075,0.13], + [46077,0.094], + [46079,0.086], + [46081,0.119], + [46083,0.037], + [46085,0.223], + [46087,0.1], + [46089,0.151], + [46091,0.11], + [46093,0.099], + [46095,0.33], + [46097,0.122], + [46099,0.099], + [46101,0.105], + [46102,null], + [46103,0.145], + [46105,0.127], + [46107,0.098], + [46109,0.179], + [46111,0.117], + [46115,0.11], + [46117,0.079], + [46119,0.072], + [46121,0.486], + [46123,0.173], + [46125,0.092], + [46127,0.066], + [46129,0.148], + [46135,0.118], + [46137,0.437], + [47001,0.144], + [47003,0.147], + [47005,0.179], + [47007,0.238], + [47009,0.114], + [47011,0.142], + [47013,0.241], + [47015,0.155], + [47017,0.183], + [47019,0.215], + [47021,0.111], + [47023,0.16], + [47025,0.254], + [47027,0.22], + [47029,0.242], + [47031,0.143], + [47033,0.176], + [47035,0.153], + [47037,0.151], + [47039,0.188], + [47041,0.198], + [47043,0.135], + [47045,0.2], + [47047,0.145], + [47049,0.214], + [47051,0.155], + [47053,0.169], + [47055,0.167], + [47057,0.2], + [47059,0.17], + [47061,0.226], + [47063,0.185], + [47065,0.135], + [47067,0.309], + [47069,0.252], + [47071,0.215], + [47073,0.192], + [47075,0.2], + [47077,0.174], + [47079,0.195], + [47081,0.207], + [47083,0.178], + [47085,0.184], + [47087,0.219], + [47089,0.157], + [47091,0.254], + [47093,0.148], + [47095,0.427], + [47097,0.249], + [47099,0.167], + [47101,0.185], + [47103,0.167], + [47105,0.106], + [47107,0.169], + [47109,0.22], + [47111,0.179], + [47113,0.19], + [47115,0.183], + [47117,0.132], + [47119,0.115], + [47121,0.183], + [47123,0.193], + [47125,0.129], + [47127,0.109], + [47129,0.227], + [47131,0.186], + [47133,0.187], + [47135,0.221], + [47137,0.17], + [47139,0.162], + [47141,0.192], + [47143,0.182], + [47145,0.142], + [47147,0.103], + [47149,0.103], + [47151,0.22], + [47153,0.177], + [47155,0.151], + [47157,0.208], + [47159,0.146], + [47161,0.164], + [47163,0.164], + [47165,0.097], + [47167,0.161], + [47169,0.153], + [47171,0.173], + [47173,0.222], + [47175,0.191], + [47177,0.194], + [47179,0.148], + [47181,0.209], + [47183,0.208], + [47185,0.177], + [47187,0.052], + [47189,0.081], + [48001,0.205], + [48003,0.117], + [48005,0.19], + [48007,0.188], + [48009,0.105], + [48011,0.108], + [48013,0.163], + [48015,0.143], + [48017,0.166], + [48019,0.146], + [48021,0.132], + [48023,0.176], + [48025,0.27], + [48027,0.129], + [48029,0.163], + [48031,0.107], + [48033,0.106], + [48035,0.158], + [48037,0.193], + [48039,0.099], + [48041,0.249], + [48043,0.149], + [48045,0.154], + [48047,0.322], + [48049,0.171], + [48051,0.144], + [48053,0.115], + [48055,0.166], + [48057,0.157], + [48059,0.149], + [48061,0.291], + [48063,0.192], + [48065,0.086], + [48067,0.174], + [48069,0.181], + [48071,0.092], + [48073,0.194], + [48075,0.215], + [48077,0.133], + [48079,0.235], + [48081,0.156], + [48083,0.201], + [48085,0.063], + [48087,0.197], + [48089,0.145], + [48091,0.086], + [48093,0.171], + [48095,0.258], + [48097,0.138], + [48099,0.142], + [48101,0.214], + [48103,0.103], + [48105,0.169], + [48107,0.241], + [48109,0.236], + [48111,0.113], + [48113,0.163], + [48115,0.214], + [48117,0.171], + [48119,0.185], + [48121,0.082], + [48123,0.182], + [48125,0.218], + [48127,0.276], + [48129,0.186], + [48131,0.263], + [48133,0.2], + [48135,0.139], + [48137,0.233], + [48139,0.097], + [48141,0.227], + [48143,0.195], + [48145,0.256], + [48147,0.161], + [48149,0.111], + [48151,0.156], + [48153,0.228], + [48155,0.18], + [48157,0.083], + [48159,0.158], + [48161,0.191], + [48163,0.258], + [48165,0.146], + [48167,0.129], + [48169,0.3], + [48171,0.098], + [48173,0.087], + [48175,0.143], + [48177,0.171], + [48179,0.194], + [48181,0.132], + [48183,0.174], + [48185,0.167], + [48187,0.098], + [48189,0.216], + [48191,0.258], + [48193,0.151], + [48195,0.134], + [48197,0.178], + [48199,0.108], + [48201,0.166], + [48203,0.174], + [48205,0.096], + [48207,0.245], + [48209,0.124], + [48211,0.1], + [48213,0.168], + [48215,0.312], + [48217,0.162], + [48219,0.171], + [48221,0.103], + [48223,0.153], + [48225,0.221], + [48227,0.179], + [48229,0.214], + [48231,0.163], + [48233,0.131], + [48235,0.08], + [48237,0.172], + [48239,0.135], + [48241,0.192], + [48243,0.13], + [48245,0.201], + [48247,0.279], + [48249,0.232], + [48251,0.113], + [48253,0.213], + [48255,0.218], + [48257,0.114], + [48259,0.074], + [48261,0.162], + [48263,0.115], + [48265,0.148], + [48267,0.194], + [48269,0.107], + [48271,0.2], + [48273,0.229], + [48275,0.211], + [48277,0.199], + [48279,0.215], + [48281,0.136], + [48283,0.262], + [48285,0.125], + [48287,0.127], + [48289,0.18], + [48291,0.159], + [48293,0.211], + [48295,0.124], + [48297,0.172], + [48299,0.134], + [48301,0.133], + [48303,0.189], + [48305,0.179], + [48307,0.184], + [48309,0.185], + [48311,0.12], + [48313,0.173], + [48315,0.226], + [48317,0.13], + [48319,0.132], + [48321,0.174], + [48323,0.243], + [48325,0.144], + [48327,0.214], + [48329,0.097], + [48331,0.163], + [48333,0.158], + [48335,0.216], + [48337,0.165], + [48339,0.109], + [48341,0.118], + [48343,0.2], + [48345,0.182], + [48347,0.254], + [48349,0.178], + [48351,0.228], + [48353,0.184], + [48355,0.151], + [48357,0.114], + [48359,0.143], + [48361,0.14], + [48363,0.164], + [48365,0.156], + [48367,0.093], + [48369,0.155], + [48371,0.171], + [48373,0.203], + [48375,0.22], + [48377,0.241], + [48379,0.148], + [48381,0.091], + [48383,0.118], + [48385,0.184], + [48387,0.171], + [48389,0.25], + [48391,0.157], + [48393,0.066], + [48395,0.187], + [48397,0.052], + [48399,0.172], + [48401,0.156], + [48403,0.175], + [48405,0.238], + [48407,0.177], + [48409,0.158], + [48411,0.201], + [48413,0.166], + [48415,0.152], + [48417,0.148], + [48419,0.211], + [48421,0.131], + [48423,0.157], + [48425,0.108], + [48427,0.399], + [48429,0.214], + [48431,0.127], + [48433,0.156], + [48435,0.141], + [48437,0.222], + [48439,0.136], + [48441,0.168], + [48443,0.187], + [48445,0.218], + [48447,0.149], + [48449,0.149], + [48451,0.134], + [48453,0.122], + [48455,0.201], + [48457,0.184], + [48459,0.154], + [48461,0.136], + [48463,0.253], + [48465,0.207], + [48467,0.148], + [48469,0.142], + [48471,0.223], + [48473,0.165], + [48475,0.128], + [48477,0.141], + [48479,0.318], + [48481,0.174], + [48483,0.134], + [48485,0.168], + [48487,0.158], + [48489,0.383], + [48491,0.058], + [48493,0.104], + [48495,0.15], + [48497,0.12], + [48499,0.132], + [48501,0.122], + [48503,0.146], + [48505,0.291], + [48507,0.344], + [49001,0.089], + [49003,0.095], + [49005,0.128], + [49007,0.152], + [49009,0.082], + [49011,0.063], + [49013,0.138], + [49015,0.124], + [49017,0.109], + [49019,0.127], + [49021,0.184], + [49023,0.106], + [49025,0.106], + [49027,0.112], + [49029,0.043], + [49031,0.177], + [49033,0.093], + [49035,0.094], + [49037,0.31], + [49039,0.168], + [49041,0.138], + [49043,0.06], + [49045,0.081], + [49047,0.114], + [49049,0.114], + [49051,0.055], + [49053,0.125], + [49055,0.148], + [49057,0.108], + [50001,0.097], + [50003,0.139], + [50005,0.135], + [50007,0.096], + [50009,0.157], + [50011,0.105], + [50013,0.088], + [50015,0.121], + [50017,0.106], + [50019,0.155], + [50021,0.133], + [50023,0.108], + [50025,0.127], + [50027,0.1], + [51001,0.2], + [51003,0.085], + [51005,0.149], + [51007,0.104], + [51009,0.143], + [51011,0.139], + [51013,0.075], + [51015,0.092], + [51017,0.117], + [51019,0.096], + [51021,0.138], + [51023,0.078], + [51025,0.228], + [51027,0.251], + [51029,0.176], + [51031,0.133], + [51033,0.099], + [51035,0.163], + [51036,0.124], + [51037,0.208], + [51041,0.07], + [51043,0.079], + [51045,0.126], + [51047,0.098], + [51049,0.182], + [51051,0.256], + [51053,0.13], + [51057,0.131], + [51059,0.06], + [51061,0.058], + [51063,0.137], + [51065,0.075], + [51067,0.132], + [51069,0.068], + [51071,0.122], + [51073,0.094], + [51075,0.064], + [51077,0.174], + [51079,0.084], + [51081,0.254], + [51083,0.187], + [51085,0.058], + [51087,0.092], + [51089,0.184], + [51091,0.133], + [51093,0.095], + [51095,0.065], + [51097,0.134], + [51099,0.068], + [51101,0.077], + [51103,0.14], + [51105,0.299], + [51107,0.035], + [51109,0.122], + [51111,0.198], + [51113,0.112], + [51115,0.101], + [51117,0.159], + [51119,0.142], + [51121,0.203], + [51125,0.126], + [51127,0.059], + [51131,0.203], + [51133,0.134], + [51135,0.229], + [51137,0.092], + [51139,0.164], + [51141,0.179], + [51143,0.136], + [51145,0.066], + [51147,0.226], + [51149,0.095], + [51153,0.074], + [51155,0.144], + [51157,0.099], + [51159,0.193], + [51161,0.074], + [51163,0.123], + [51165,0.097], + [51167,0.169], + [51169,0.195], + [51171,0.108], + [51173,0.181], + [51175,0.156], + [51177,0.074], + [51179,0.057], + [51181,0.134], + [51183,0.231], + [51185,0.18], + [51187,0.103], + [51191,0.147], + [51193,0.148], + [51195,0.235], + [51197,0.144], + [51199,0.051], + [51510,0.105], + [51520,0.236], + [51530,0.162], + [51540,0.228], + [51550,0.086], + [51570,0.104], + [51580,0.159], + [51590,0.223], + [51595,0.232], + [51600,0.068], + [51610,0.036], + [51620,0.182], + [51630,0.146], + [51640,0.205], + [51650,0.164], + [51660,0.284], + [51670,0.207], + [51678,0.222], + [51680,0.178], + [51683,0.097], + [51685,0.078], + [51690,0.232], + [51700,0.147], + [51710,0.213], + [51720,0.23], + [51730,0.252], + [51735,0.054], + [51740,0.182], + [51750,0.272], + [51760,0.262], + [51770,0.223], + [51775,0.092], + [51790,0.128], + [51800,0.117], + [51810,0.083], + [51820,0.146], + [51830,0.211], + [51840,0.15], + [53001,0.195], + [53003,0.146], + [53005,0.105], + [53007,0.115], + [53009,0.153], + [53011,0.09], + [53013,0.14], + [53015,0.163], + [53017,0.128], + [53019,0.213], + [53021,0.149], + [53023,0.139], + [53025,0.161], + [53027,0.152], + [53029,0.094], + [53031,0.12], + [53033,0.093], + [53035,0.101], + [53037,0.182], + [53039,0.155], + [53041,0.147], + [53043,0.125], + [53045,0.149], + [53047,0.197], + [53049,0.17], + [53051,0.162], + [53053,0.121], + [53055,0.099], + [53057,0.113], + [53059,0.135], + [53061,0.08], + [53063,0.133], + [53065,0.143], + [53067,0.104], + [53069,0.128], + [53071,0.142], + [53073,0.152], + [53075,0.259], + [53077,0.182], + [54001,0.224], + [54003,0.129], + [54005,0.242], + [54007,0.213], + [54009,0.134], + [54011,0.219], + [54013,0.218], + [54015,0.29], + [54017,0.197], + [54019,0.197], + [54021,0.271], + [54023,0.15], + [54025,0.16], + [54027,0.157], + [54029,0.132], + [54031,0.152], + [54033,0.146], + [54035,0.157], + [54037,0.101], + [54039,0.168], + [54041,0.184], + [54043,0.242], + [54045,0.244], + [54047,0.363], + [54049,0.176], + [54051,0.175], + [54053,0.179], + [54055,0.202], + [54057,0.156], + [54059,0.282], + [54061,0.185], + [54063,0.173], + [54065,0.119], + [54067,0.214], + [54069,0.158], + [54071,0.162], + [54073,0.143], + [54075,0.183], + [54077,0.174], + [54079,0.108], + [54081,0.174], + [54083,0.187], + [54085,0.182], + [54087,0.221], + [54089,0.247], + [54091,0.164], + [54093,0.158], + [54095,0.161], + [54097,0.202], + [54099,0.215], + [54101,0.3], + [54103,0.195], + [54105,0.181], + [54107,0.172], + [54109,0.239], + [55001,0.139], + [55003,0.145], + [55005,0.113], + [55007,0.124], + [55009,0.098], + [55011,0.105], + [55013,0.138], + [55015,0.05], + [55017,0.115], + [55019,0.138], + [55021,0.082], + [55023,0.142], + [55025,0.109], + [55027,0.098], + [55029,0.083], + [55031,0.136], + [55033,0.125], + [55035,0.131], + [55037,0.123], + [55039,0.077], + [55041,0.159], + [55043,0.167], + [55045,0.082], + [55047,0.116], + [55049,0.088], + [55051,0.144], + [55053,0.111], + [55055,0.093], + [55057,0.144], + [55059,0.13], + [55061,0.076], + [55063,0.133], + [55065,0.117], + [55067,0.142], + [55069,0.1], + [55071,0.092], + [55073,0.104], + [55075,0.124], + [55077,0.12], + [55078,0.272], + [55079,0.198], + [55081,0.12], + [55083,0.091], + [55085,0.096], + [55087,0.08], + [55089,0.054], + [55091,0.115], + [55093,0.081], + [55095,0.099], + [55097,0.115], + [55099,0.111], + [55101,0.136], + [55103,0.134], + [55105,0.129], + [55107,0.138], + [55109,0.056], + [55111,0.101], + [55113,0.152], + [55115,0.119], + [55117,0.071], + [55119,0.118], + [55121,0.082], + [55123,0.165], + [55125,0.126], + [55127,0.112], + [55129,0.127], + [55131,0.056], + [55133,0.052], + [55135,0.107], + [55137,0.143], + [55139,0.117], + [55141,0.098], + [56001,0.173], + [56003,0.114], + [56005,0.084], + [56007,0.121], + [56009,0.09], + [56011,0.083], + [56013,0.168], + [56015,0.146], + [56017,0.136], + [56019,0.088], + [56021,0.101], + [56023,0.086], + [56025,0.104], + [56027,0.143], + [56029,0.111], + [56031,0.12], + [56033,0.092], + [56035,0.067], + [56037,0.098], + [56039,0.073], + [56041,0.106], + [56043,0.131], + [56045,0.107] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-2017.json b/data/regional/united-states/economics/poverty/us-poverty-rate-2017.json new file mode 100644 index 0000000..d99c8a2 --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Poverty Rate", + "description" : "Percent of the population living below the poverty line.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.poverty.rate.2017"], + [1001,0.137], + [1003,0.118], + [1005,0.272], + [1007,0.152], + [1009,0.156], + [1011,0.285], + [1013,0.244], + [1015,0.186], + [1017,0.188], + [1019,0.161], + [1021,0.194], + [1023,0.223], + [1025,0.253], + [1027,0.191], + [1029,0.191], + [1031,0.161], + [1033,0.168], + [1035,0.264], + [1037,0.144], + [1039,0.176], + [1041,0.176], + [1043,0.164], + [1045,0.196], + [1047,0.319], + [1049,0.215], + [1051,0.135], + [1053,0.238], + [1055,0.179], + [1057,0.181], + [1059,0.23], + [1061,0.225], + [1063,0.388], + [1065,0.261], + [1067,0.137], + [1069,0.185], + [1071,0.19], + [1073,0.176], + [1075,0.231], + [1077,0.163], + [1079,0.166], + [1081,0.22], + [1083,0.148], + [1085,0.302], + [1087,0.259], + [1089,0.136], + [1091,0.256], + [1093,0.176], + [1095,0.21], + [1097,0.193], + [1099,0.337], + [1101,0.208], + [1103,0.166], + [1105,0.419], + [1107,0.229], + [1109,0.263], + [1111,0.187], + [1113,0.209], + [1115,0.137], + [1117,0.083], + [1119,0.36], + [1121,0.193], + [1123,0.212], + [1125,0.173], + [1127,0.215], + [1129,0.22], + [1131,0.319], + [1133,0.187], + [2013,0.167], + [2016,0.075], + [2020,0.081], + [2050,0.27], + [2060,0.071], + [2068,0.155], + [2070,0.166], + [2090,0.077], + [2100,0.084], + [2105,0.111], + [2110,0.074], + [2122,0.11], + [2130,0.106], + [2150,0.093], + [2158,null], + [2164,0.165], + [2170,0.098], + [2180,0.249], + [2185,0.102], + [2188,0.253], + [2195,0.078], + [2198,0.16], + [2220,0.092], + [2230,0.056], + [2240,0.139], + [2261,0.074], + [2275,0.117], + [2282,0.062], + [2290,0.255], + [4001,0.359], + [4003,0.181], + [4005,0.21], + [4007,0.219], + [4009,0.214], + [4011,0.115], + [4012,0.197], + [4013,0.157], + [4015,0.186], + [4017,0.291], + [4019,0.183], + [4021,0.155], + [4023,0.218], + [4025,0.147], + [4027,0.197], + [5001,0.207], + [5003,0.213], + [5005,0.126], + [5007,0.105], + [5009,0.158], + [5011,0.264], + [5013,0.196], + [5015,0.157], + [5017,0.294], + [5019,0.215], + [5021,0.223], + [5023,0.154], + [5025,0.193], + [5027,0.251], + [5029,0.185], + [5031,0.183], + [5033,0.166], + [5035,0.235], + [5037,0.18], + [5039,0.132], + [5041,0.326], + [5043,0.244], + [5045,0.163], + [5047,0.219], + [5049,0.23], + [5051,0.191], + [5053,0.144], + [5055,0.159], + [5057,0.253], + [5059,0.158], + [5061,0.21], + [5063,0.185], + [5065,0.177], + [5067,0.251], + [5069,0.247], + [5071,0.225], + [5073,0.238], + [5075,0.184], + [5077,0.273], + [5079,0.179], + [5081,0.188], + [5083,0.202], + [5085,0.123], + [5087,0.178], + [5089,0.195], + [5091,0.21], + [5093,0.256], + [5095,0.286], + [5097,0.181], + [5099,0.23], + [5101,0.178], + [5103,0.26], + [5105,0.178], + [5107,0.33], + [5109,0.173], + [5111,0.214], + [5113,0.266], + [5115,0.198], + [5117,0.168], + [5119,0.173], + [5121,0.209], + [5123,0.275], + [5125,0.08], + [5127,0.205], + [5129,0.174], + [5131,0.225], + [5133,0.212], + [5135,0.233], + [5137,0.242], + [5139,0.201], + [5141,0.196], + [5143,0.18], + [5145,0.166], + [5147,0.26], + [5149,0.178], + [6001,0.113], + [6003,0.198], + [6005,0.106], + [6007,0.205], + [6009,0.128], + [6011,0.14], + [6013,0.098], + [6015,0.232], + [6017,0.098], + [6019,0.254], + [6021,0.196], + [6023,0.208], + [6025,0.238], + [6027,0.102], + [6029,0.226], + [6031,0.209], + [6033,0.228], + [6035,0.146], + [6037,0.17], + [6039,0.221], + [6041,0.081], + [6043,0.151], + [6045,0.191], + [6047,0.233], + [6049,0.181], + [6051,0.099], + [6053,0.147], + [6055,0.082], + [6057,0.121], + [6059,0.121], + [6061,0.082], + [6063,0.133], + [6065,0.156], + [6067,0.167], + [6069,0.097], + [6071,0.182], + [6073,0.133], + [6075,0.117], + [6077,0.171], + [6079,0.138], + [6081,0.073], + [6083,0.154], + [6085,0.086], + [6087,0.147], + [6089,0.181], + [6091,0.123], + [6093,0.207], + [6095,0.115], + [6097,0.107], + [6099,0.172], + [6101,0.167], + [6103,0.209], + [6105,0.199], + [6107,0.271], + [6109,0.136], + [6111,0.103], + [6113,0.194], + [6115,0.185], + [8001,0.122], + [8003,0.278], + [8005,0.099], + [8007,0.116], + [8009,0.195], + [8011,0.245], + [8013,0.131], + [8014,0.052], + [8015,0.096], + [8017,0.118], + [8019,0.068], + [8021,0.211], + [8023,0.296], + [8025,0.246], + [8027,0.157], + [8029,0.165], + [8031,0.151], + [8033,0.141], + [8035,0.036], + [8037,0.077], + [8039,0.048], + [8041,0.111], + [8043,0.158], + [8045,0.096], + [8047,0.056], + [8049,0.131], + [8051,0.141], + [8053,0.12], + [8055,0.148], + [8057,0.128], + [8059,0.078], + [8061,0.106], + [8063,0.115], + [8065,0.128], + [8067,0.096], + [8069,0.124], + [8071,0.17], + [8073,0.14], + [8075,0.168], + [8077,0.16], + [8079,0.12], + [8081,0.101], + [8083,0.168], + [8085,0.178], + [8087,0.093], + [8089,0.229], + [8091,0.104], + [8093,0.066], + [8095,0.081], + [8097,0.071], + [8099,0.183], + [8101,0.198], + [8103,0.118], + [8105,0.181], + [8107,0.107], + [8109,0.21], + [8111,0.033], + [8113,0.105], + [8115,0.17], + [8117,0.103], + [8119,0.075], + [8121,0.099], + [8123,0.112], + [8125,0.143], + [9001,0.088], + [9003,0.112], + [9005,0.068], + [9007,0.072], + [9009,0.121], + [9011,0.099], + [9013,0.065], + [9015,0.111], + [10001,0.13], + [10003,0.119], + [10005,0.12], + [11001,0.174], + [12001,0.233], + [12003,0.172], + [12005,0.154], + [12007,0.188], + [12009,0.134], + [12011,0.14], + [12013,0.129], + [12015,0.12], + [12017,0.174], + [12019,0.104], + [12021,0.128], + [12023,0.168], + [12027,0.299], + [12029,0.237], + [12031,0.16], + [12033,0.146], + [12035,0.133], + [12037,0.201], + [12039,0.244], + [12041,0.198], + [12043,0.18], + [12045,0.149], + [12047,0.266], + [12049,0.245], + [12051,0.255], + [12053,0.143], + [12055,0.187], + [12057,0.157], + [12059,0.266], + [12061,0.127], + [12063,0.216], + [12065,0.139], + [12067,0.178], + [12069,0.128], + [12071,0.149], + [12073,0.205], + [12075,0.219], + [12077,0.178], + [12079,0.319], + [12081,0.134], + [12083,0.176], + [12085,0.109], + [12086,0.19], + [12087,0.127], + [12089,0.114], + [12091,0.115], + [12093,0.223], + [12095,0.167], + [12097,0.178], + [12099,0.134], + [12101,0.136], + [12103,0.137], + [12105,0.173], + [12107,0.276], + [12109,0.091], + [12111,0.166], + [12113,0.113], + [12115,0.105], + [12117,0.118], + [12119,0.092], + [12121,0.204], + [12123,0.164], + [12125,0.214], + [12127,0.161], + [12129,0.126], + [12131,0.17], + [12133,0.21], + [13001,0.247], + [13003,0.274], + [13005,0.232], + [13007,0.195], + [13009,0.278], + [13011,0.143], + [13013,0.132], + [13015,0.142], + [13017,0.304], + [13019,0.237], + [13021,0.267], + [13023,0.23], + [13025,0.218], + [13027,0.236], + [13029,0.141], + [13031,0.304], + [13033,0.292], + [13035,0.235], + [13037,0.322], + [13039,0.127], + [13043,0.315], + [13045,0.186], + [13047,0.108], + [13049,0.231], + [13051,0.173], + [13053,0.15], + [13055,0.225], + [13057,0.094], + [13059,0.341], + [13061,0.414], + [13063,0.219], + [13065,0.395], + [13067,0.109], + [13069,0.239], + [13071,0.254], + [13073,0.086], + [13075,0.242], + [13077,0.116], + [13079,0.181], + [13081,0.312], + [13083,0.175], + [13085,0.118], + [13087,0.241], + [13089,0.176], + [13091,0.222], + [13093,0.232], + [13095,0.305], + [13097,0.142], + [13099,0.275], + [13101,0.282], + [13103,0.096], + [13105,0.224], + [13107,0.292], + [13109,0.26], + [13111,0.158], + [13113,0.063], + [13115,0.181], + [13117,0.065], + [13119,0.254], + [13121,0.16], + [13123,0.188], + [13125,0.115], + [13127,0.192], + [13129,0.188], + [13131,0.254], + [13133,0.219], + [13135,0.121], + [13137,0.172], + [13139,0.161], + [13141,0.3], + [13143,0.18], + [13145,0.073], + [13147,0.188], + [13149,0.174], + [13151,0.114], + [13153,0.167], + [13155,0.245], + [13157,0.125], + [13159,0.194], + [13161,0.206], + [13163,0.269], + [13165,0.307], + [13167,0.215], + [13169,0.142], + [13171,0.208], + [13173,0.287], + [13175,0.273], + [13177,0.116], + [13179,0.166], + [13181,0.23], + [13183,0.2], + [13185,0.25], + [13187,0.201], + [13189,0.26], + [13191,0.203], + [13193,0.286], + [13195,0.176], + [13197,0.231], + [13199,0.227], + [13201,0.233], + [13205,0.271], + [13207,0.133], + [13209,0.195], + [13211,0.134], + [13213,0.18], + [13215,0.217], + [13217,0.167], + [13219,0.069], + [13221,0.176], + [13223,0.097], + [13225,0.187], + [13227,0.098], + [13229,0.21], + [13231,0.123], + [13233,0.19], + [13235,0.218], + [13237,0.162], + [13239,0.228], + [13241,0.203], + [13243,0.351], + [13245,0.242], + [13247,0.163], + [13249,0.222], + [13251,0.226], + [13253,0.255], + [13255,0.216], + [13257,0.181], + [13259,0.415], + [13261,0.334], + [13263,0.169], + [13265,0.31], + [13267,0.237], + [13269,0.282], + [13271,0.277], + [13273,0.353], + [13275,0.195], + [13277,0.278], + [13279,0.244], + [13281,0.147], + [13283,0.21], + [13285,0.213], + [13287,0.279], + [13289,0.273], + [13291,0.128], + [13293,0.227], + [13295,0.172], + [13297,0.128], + [13299,0.248], + [13301,0.268], + [13303,0.271], + [13305,0.213], + [13307,0.195], + [13309,0.293], + [13311,0.177], + [13313,0.192], + [13315,0.218], + [13317,0.265], + [13319,0.233], + [13321,0.215], + [15001,0.174], + [15003,0.091], + [15005,0.127], + [15007,0.091], + [15009,0.1], + [16001,0.118], + [16003,0.138], + [16005,0.176], + [16007,0.145], + [16009,0.158], + [16011,0.131], + [16013,0.148], + [16015,0.113], + [16017,0.14], + [16019,0.119], + [16021,0.183], + [16023,0.162], + [16025,0.223], + [16027,0.171], + [16029,0.094], + [16031,0.147], + [16033,0.242], + [16035,0.139], + [16037,0.189], + [16039,0.149], + [16041,0.122], + [16043,0.119], + [16045,0.207], + [16047,0.159], + [16049,0.135], + [16051,0.095], + [16053,0.163], + [16055,0.126], + [16057,0.225], + [16059,0.171], + [16061,0.153], + [16063,0.115], + [16065,0.318], + [16067,0.179], + [16069,0.144], + [16071,0.126], + [16073,0.233], + [16075,0.155], + [16077,0.116], + [16079,0.174], + [16081,0.083], + [16083,0.144], + [16085,0.104], + [16087,0.157], + [17001,0.131], + [17003,0.334], + [17005,0.157], + [17007,0.106], + [17009,0.116], + [17011,0.126], + [17013,0.128], + [17015,0.113], + [17017,0.131], + [17019,0.214], + [17021,0.128], + [17023,0.143], + [17025,0.14], + [17027,0.09], + [17029,0.21], + [17031,0.159], + [17033,0.119], + [17035,0.143], + [17037,0.181], + [17039,0.133], + [17041,0.121], + [17043,0.068], + [17045,0.154], + [17047,0.115], + [17049,0.113], + [17051,0.178], + [17053,0.157], + [17055,0.199], + [17057,0.155], + [17059,0.166], + [17061,0.179], + [17063,0.094], + [17065,0.139], + [17067,0.112], + [17069,0.166], + [17071,0.113], + [17073,0.125], + [17075,0.155], + [17077,0.279], + [17079,0.124], + [17081,0.189], + [17083,0.094], + [17085,0.076], + [17087,0.139], + [17089,0.104], + [17091,0.151], + [17093,0.056], + [17095,0.181], + [17097,0.085], + [17099,0.136], + [17101,0.164], + [17103,0.118], + [17105,0.133], + [17107,0.092], + [17109,0.223], + [17111,0.073], + [17113,0.145], + [17115,0.166], + [17117,0.133], + [17119,0.135], + [17121,0.178], + [17123,0.103], + [17125,0.139], + [17127,0.184], + [17129,0.114], + [17131,0.114], + [17133,0.053], + [17135,0.156], + [17137,0.149], + [17139,0.121], + [17141,0.111], + [17143,0.159], + [17145,0.147], + [17147,0.054], + [17149,0.149], + [17151,0.127], + [17153,0.171], + [17155,0.089], + [17157,0.123], + [17159,0.15], + [17161,0.146], + [17163,0.17], + [17165,0.206], + [17167,0.156], + [17169,0.215], + [17171,0.149], + [17173,0.121], + [17175,0.14], + [17177,0.161], + [17179,0.08], + [17181,0.168], + [17183,0.198], + [17185,0.131], + [17187,0.138], + [17189,0.097], + [17191,0.158], + [17193,0.139], + [17195,0.111], + [17197,0.074], + [17199,0.152], + [17201,0.153], + [17203,0.074], + [18001,0.189], + [18003,0.147], + [18005,0.124], + [18007,0.149], + [18009,0.128], + [18011,0.061], + [18013,0.106], + [18015,0.102], + [18017,0.139], + [18019,0.097], + [18021,0.139], + [18023,0.133], + [18025,0.178], + [18027,0.13], + [18029,0.101], + [18031,0.114], + [18033,0.125], + [18035,0.212], + [18037,0.1], + [18039,0.138], + [18041,0.182], + [18043,0.108], + [18045,0.126], + [18047,0.099], + [18049,0.133], + [18051,0.107], + [18053,0.191], + [18055,0.129], + [18057,0.05], + [18059,0.07], + [18061,0.129], + [18063,0.051], + [18065,0.161], + [18067,0.165], + [18069,0.116], + [18071,0.156], + [18073,0.09], + [18075,0.179], + [18077,0.137], + [18079,0.139], + [18081,0.094], + [18083,0.156], + [18085,0.112], + [18087,0.091], + [18089,0.168], + [18091,0.166], + [18093,0.115], + [18095,0.174], + [18097,0.198], + [18099,0.115], + [18101,0.133], + [18103,0.16], + [18105,0.247], + [18107,0.102], + [18109,0.118], + [18111,0.14], + [18113,0.093], + [18115,0.05], + [18117,0.15], + [18119,0.156], + [18121,0.139], + [18123,0.145], + [18125,0.106], + [18127,0.11], + [18129,0.095], + [18131,0.132], + [18133,0.116], + [18135,0.17], + [18137,0.105], + [18139,0.183], + [18141,0.171], + [18143,0.137], + [18145,0.106], + [18147,0.097], + [18149,0.167], + [18151,0.101], + [18153,0.156], + [18155,0.197], + [18157,0.209], + [18159,0.094], + [18161,0.082], + [18163,0.18], + [18165,0.134], + [18167,0.199], + [18169,0.133], + [18171,0.095], + [18173,0.077], + [18175,0.133], + [18177,0.182], + [18179,0.11], + [18181,0.098], + [18183,0.095], + [19001,0.095], + [19003,0.112], + [19005,0.114], + [19007,0.171], + [19009,0.111], + [19011,0.087], + [19013,0.159], + [19015,0.094], + [19017,0.077], + [19019,0.078], + [19021,0.137], + [19023,0.094], + [19025,0.153], + [19027,0.103], + [19029,0.151], + [19031,0.054], + [19033,0.113], + [19035,0.119], + [19037,0.089], + [19039,0.154], + [19041,0.118], + [19043,0.104], + [19045,0.131], + [19047,0.185], + [19049,0.054], + [19051,0.137], + [19053,0.191], + [19055,0.092], + [19057,0.153], + [19059,0.081], + [19061,0.119], + [19063,0.138], + [19065,0.128], + [19067,0.156], + [19069,0.156], + [19071,0.11], + [19073,0.1], + [19075,0.058], + [19077,0.101], + [19079,0.094], + [19081,0.091], + [19083,0.08], + [19085,0.104], + [19087,0.122], + [19089,0.116], + [19091,0.13], + [19093,0.103], + [19095,0.098], + [19097,0.12], + [19099,0.091], + [19101,0.152], + [19103,0.177], + [19105,0.091], + [19107,0.112], + [19109,0.1], + [19111,0.163], + [19113,0.095], + [19115,0.11], + [19117,0.099], + [19119,0.049], + [19121,0.073], + [19123,0.144], + [19125,0.093], + [19127,0.112], + [19129,0.091], + [19131,0.083], + [19133,0.149], + [19135,0.109], + [19137,0.165], + [19139,0.105], + [19141,0.097], + [19143,0.114], + [19145,0.136], + [19147,0.071], + [19149,0.091], + [19151,0.132], + [19153,0.117], + [19155,0.112], + [19157,0.107], + [19159,0.109], + [19161,0.094], + [19163,0.123], + [19165,0.087], + [19167,0.079], + [19169,0.22], + [19171,0.118], + [19173,0.11], + [19175,0.138], + [19177,0.14], + [19179,0.17], + [19181,0.062], + [19183,0.091], + [19185,0.159], + [19187,0.162], + [19189,0.101], + [19191,0.08], + [19193,0.14], + [19195,0.101], + [19197,0.126], + [20001,0.142], + [20003,0.136], + [20005,0.185], + [20007,0.159], + [20009,0.157], + [20011,0.176], + [20013,0.132], + [20015,0.108], + [20017,0.126], + [20019,0.143], + [20021,0.137], + [20023,0.112], + [20025,0.089], + [20027,0.094], + [20029,0.119], + [20031,0.113], + [20033,0.081], + [20035,0.16], + [20037,0.211], + [20039,0.175], + [20041,0.116], + [20043,0.137], + [20045,0.187], + [20047,0.102], + [20049,0.135], + [20051,0.167], + [20053,0.114], + [20055,0.162], + [20057,0.162], + [20059,0.125], + [20061,0.149], + [20063,0.09], + [20065,0.123], + [20067,0.1], + [20069,0.085], + [20071,0.115], + [20073,0.124], + [20075,0.093], + [20077,0.168], + [20079,0.112], + [20081,0.133], + [20083,0.084], + [20085,0.099], + [20087,0.083], + [20089,0.142], + [20091,0.056], + [20093,0.132], + [20095,0.076], + [20097,0.087], + [20099,0.178], + [20101,0.107], + [20103,0.09], + [20105,0.084], + [20107,0.174], + [20109,0.089], + [20111,0.186], + [20113,0.076], + [20115,0.107], + [20117,0.089], + [20119,0.122], + [20121,0.077], + [20123,0.148], + [20125,0.175], + [20127,0.098], + [20129,0.08], + [20131,0.108], + [20133,0.214], + [20135,0.089], + [20137,0.116], + [20139,0.128], + [20141,0.155], + [20143,0.097], + [20145,0.078], + [20147,0.081], + [20149,0.097], + [20151,0.109], + [20153,0.087], + [20155,0.14], + [20157,0.117], + [20159,0.164], + [20161,0.22], + [20163,0.113], + [20165,0.067], + [20167,0.138], + [20169,0.126], + [20171,0.043], + [20173,0.147], + [20175,0.188], + [20177,0.132], + [20179,0.048], + [20181,0.165], + [20183,0.133], + [20185,0.145], + [20187,0.108], + [20189,0.168], + [20191,0.118], + [20193,0.111], + [20195,0.048], + [20197,0.061], + [20199,0.106], + [20201,0.097], + [20203,0.044], + [20205,0.168], + [20207,0.206], + [20209,0.214], + [21001,0.215], + [21003,0.2], + [21005,0.12], + [21007,0.182], + [21009,0.229], + [21011,0.24], + [21013,0.38], + [21015,0.076], + [21017,0.166], + [21019,0.193], + [21021,0.155], + [21023,0.214], + [21025,0.36], + [21027,0.177], + [21029,0.102], + [21031,0.22], + [21033,0.175], + [21035,0.224], + [21037,0.142], + [21039,0.173], + [21041,0.277], + [21043,0.215], + [21045,0.266], + [21047,0.197], + [21049,0.15], + [21051,0.395], + [21053,0.2], + [21055,0.177], + [21057,0.207], + [21059,0.158], + [21061,0.2], + [21063,0.344], + [21065,0.304], + [21067,0.186], + [21069,0.195], + [21071,0.307], + [21073,0.131], + [21075,0.253], + [21077,0.134], + [21079,0.182], + [21081,0.215], + [21083,0.192], + [21085,0.257], + [21087,0.19], + [21089,0.165], + [21091,0.157], + [21093,0.142], + [21095,0.356], + [21097,0.164], + [21099,0.231], + [21101,0.193], + [21103,0.182], + [21105,0.148], + [21107,0.172], + [21109,0.33], + [21111,0.15], + [21113,0.18], + [21115,0.241], + [21117,0.129], + [21119,0.326], + [21121,0.347], + [21123,0.158], + [21125,0.246], + [21127,0.245], + [21129,0.327], + [21131,0.345], + [21133,0.305], + [21135,0.261], + [21137,0.238], + [21139,0.162], + [21141,0.174], + [21143,0.141], + [21145,0.171], + [21147,0.41], + [21149,0.192], + [21151,0.195], + [21153,0.286], + [21155,0.184], + [21157,0.108], + [21159,0.298], + [21161,0.18], + [21163,0.131], + [21165,0.201], + [21167,0.167], + [21169,0.231], + [21171,0.235], + [21173,0.23], + [21175,0.256], + [21177,0.205], + [21179,0.114], + [21181,0.278], + [21183,0.213], + [21185,0.056], + [21187,0.167], + [21189,0.33], + [21191,0.151], + [21193,0.262], + [21195,0.264], + [21197,0.241], + [21199,0.252], + [21201,0.304], + [21203,0.21], + [21205,0.267], + [21207,0.253], + [21209,0.115], + [21211,0.124], + [21213,0.174], + [21215,0.087], + [21217,0.231], + [21219,0.201], + [21221,0.158], + [21223,0.152], + [21225,0.229], + [21227,0.18], + [21229,0.17], + [21231,0.232], + [21233,0.214], + [21235,0.252], + [21237,0.369], + [21239,0.145], + [22001,0.215], + [22003,0.166], + [22005,0.117], + [22007,0.157], + [22009,0.237], + [22011,0.173], + [22013,0.253], + [22015,0.164], + [22017,0.234], + [22019,0.168], + [22021,0.262], + [22023,0.087], + [22025,0.218], + [22027,0.299], + [22029,0.312], + [22031,0.263], + [22033,0.191], + [22035,0.482], + [22037,0.179], + [22039,0.264], + [22041,0.288], + [22043,0.202], + [22045,0.204], + [22047,0.193], + [22049,0.254], + [22051,0.163], + [22053,0.196], + [22055,0.166], + [22057,0.16], + [22059,0.248], + [22061,0.312], + [22063,0.132], + [22065,0.364], + [22067,0.276], + [22069,0.319], + [22071,0.254], + [22073,0.245], + [22075,0.193], + [22077,0.175], + [22079,0.195], + [22081,0.204], + [22083,0.282], + [22085,0.196], + [22087,0.197], + [22089,0.122], + [22091,0.264], + [22093,0.156], + [22095,0.179], + [22097,0.279], + [22099,0.177], + [22101,0.195], + [22103,0.108], + [22105,0.219], + [22107,0.38], + [22109,0.201], + [22111,0.22], + [22113,0.179], + [22115,0.169], + [22117,0.263], + [22119,0.249], + [22121,0.179], + [22123,0.22], + [22125,0.125], + [22127,0.273], + [23001,0.143], + [23003,0.175], + [23005,0.107], + [23007,0.124], + [23009,0.116], + [23011,0.141], + [23013,0.116], + [23015,0.118], + [23017,0.152], + [23019,0.159], + [23021,0.187], + [23023,0.113], + [23025,0.178], + [23027,0.143], + [23029,0.182], + [23031,0.085], + [24001,0.168], + [24003,0.061], + [24005,0.091], + [24009,0.057], + [24011,0.165], + [24013,0.055], + [24015,0.094], + [24017,0.069], + [24019,0.154], + [24021,0.072], + [24023,0.114], + [24025,0.075], + [24027,0.052], + [24029,0.131], + [24031,0.07], + [24033,0.093], + [24035,0.064], + [24037,0.082], + [24039,0.225], + [24041,0.1], + [24043,0.128], + [24045,0.159], + [24047,0.103], + [24510,0.224], + [25001,0.075], + [25003,0.113], + [25005,0.122], + [25007,0.084], + [25009,0.109], + [25011,0.109], + [25013,0.172], + [25015,0.138], + [25017,0.082], + [25019,0.112], + [25021,0.065], + [25023,0.08], + [25025,0.196], + [25027,0.111], + [26001,0.149], + [26003,0.13], + [26005,0.108], + [26007,0.15], + [26009,0.126], + [26011,0.185], + [26013,0.144], + [26015,0.093], + [26017,0.163], + [26019,0.1], + [26021,0.172], + [26023,0.159], + [26025,0.174], + [26027,0.136], + [26029,0.116], + [26031,0.168], + [26033,0.171], + [26035,0.236], + [26037,0.101], + [26039,0.164], + [26041,0.144], + [26043,0.152], + [26045,0.109], + [26047,0.107], + [26049,0.2], + [26051,0.202], + [26053,0.204], + [26055,0.097], + [26057,0.205], + [26059,0.17], + [26061,0.214], + [26063,0.136], + [26065,0.209], + [26067,0.131], + [26069,0.169], + [26071,0.142], + [26073,0.273], + [26075,0.152], + [26077,0.167], + [26079,0.185], + [26081,0.134], + [26083,0.145], + [26085,0.25], + [26087,0.097], + [26089,0.077], + [26091,0.137], + [26093,0.059], + [26095,0.194], + [26097,0.154], + [26099,0.118], + [26101,0.147], + [26103,0.164], + [26105,0.16], + [26107,0.225], + [26109,0.135], + [26111,0.113], + [26113,0.159], + [26115,0.112], + [26117,0.175], + [26119,0.151], + [26121,0.185], + [26123,0.178], + [26125,0.09], + [26127,0.175], + [26129,0.187], + [26131,0.155], + [26133,0.207], + [26135,0.181], + [26137,0.149], + [26139,0.095], + [26141,0.149], + [26143,0.198], + [26145,0.177], + [26147,0.133], + [26149,0.157], + [26151,0.15], + [26153,0.214], + [26155,0.131], + [26157,0.159], + [26159,0.158], + [26161,0.145], + [26163,0.237], + [26165,0.173], + [27001,0.121], + [27003,0.066], + [27005,0.127], + [27007,0.19], + [27009,0.141], + [27011,0.117], + [27013,0.181], + [27015,0.081], + [27017,0.121], + [27019,0.04], + [27021,0.153], + [27023,0.111], + [27025,0.054], + [27027,0.125], + [27029,0.179], + [27031,0.13], + [27033,0.156], + [27035,0.096], + [27037,0.069], + [27039,0.057], + [27041,0.084], + [27043,0.115], + [27045,0.113], + [27047,0.118], + [27049,0.108], + [27051,0.106], + [27053,0.115], + [27055,0.089], + [27057,0.108], + [27059,0.071], + [27061,0.126], + [27063,0.077], + [27065,0.116], + [27067,0.113], + [27069,0.112], + [27071,0.171], + [27073,0.093], + [27075,0.093], + [27077,0.074], + [27079,0.088], + [27081,0.114], + [27083,0.137], + [27085,0.084], + [27087,0.227], + [27089,0.078], + [27091,0.113], + [27093,0.083], + [27095,0.115], + [27097,0.114], + [27099,0.13], + [27101,0.082], + [27103,0.113], + [27105,0.158], + [27107,0.12], + [27109,0.091], + [27111,0.094], + [27113,0.103], + [27115,0.136], + [27117,0.118], + [27119,0.124], + [27121,0.079], + [27123,0.15], + [27125,0.094], + [27127,0.118], + [27129,0.11], + [27131,0.115], + [27133,0.11], + [27135,0.092], + [27137,0.154], + [27139,0.056], + [27141,0.064], + [27143,0.085], + [27145,0.131], + [27147,0.099], + [27149,0.154], + [27151,0.122], + [27153,0.13], + [27155,0.109], + [27157,0.061], + [27159,0.15], + [27161,0.092], + [27163,0.05], + [27165,0.122], + [27167,0.099], + [27169,0.145], + [27171,0.05], + [27173,0.125], + [28001,0.342], + [28003,0.196], + [28005,0.228], + [28007,0.226], + [28009,0.202], + [28011,0.374], + [28013,0.269], + [28015,0.14], + [28017,0.229], + [28019,0.245], + [28021,0.459], + [28023,0.185], + [28025,0.266], + [28027,0.362], + [28029,0.243], + [28031,0.231], + [28033,0.098], + [28035,0.263], + [28037,0.179], + [28039,0.147], + [28041,0.151], + [28043,0.242], + [28045,0.172], + [28047,0.205], + [28049,0.239], + [28051,0.465], + [28053,0.405], + [28055,0.403], + [28057,0.184], + [28059,0.153], + [28061,0.228], + [28063,0.47], + [28065,0.325], + [28067,0.216], + [28069,0.318], + [28071,0.253], + [28073,0.163], + [28075,0.215], + [28077,0.198], + [28079,0.251], + [28081,0.173], + [28083,0.403], + [28085,0.236], + [28087,0.211], + [28089,0.12], + [28091,0.259], + [28093,0.178], + [28095,0.192], + [28097,0.256], + [28099,0.221], + [28101,0.23], + [28103,0.349], + [28105,0.298], + [28107,0.205], + [28109,0.179], + [28111,0.199], + [28113,0.323], + [28115,0.17], + [28117,0.225], + [28119,0.375], + [28121,0.085], + [28123,0.278], + [28125,0.29], + [28127,0.271], + [28129,0.182], + [28131,0.173], + [28133,0.325], + [28135,0.283], + [28137,0.193], + [28139,0.228], + [28141,0.186], + [28143,0.27], + [28145,0.182], + [28147,0.263], + [28149,0.237], + [28151,0.337], + [28153,0.243], + [28155,0.253], + [28157,0.387], + [28159,0.253], + [28161,0.226], + [28163,0.365], + [29001,0.262], + [29003,0.09], + [29005,0.121], + [29007,0.167], + [29009,0.205], + [29011,0.209], + [29013,0.143], + [29015,0.186], + [29017,0.199], + [29019,0.187], + [29021,0.173], + [29023,0.216], + [29025,0.133], + [29027,0.123], + [29029,0.175], + [29031,0.177], + [29033,0.184], + [29035,0.145], + [29037,0.095], + [29039,0.226], + [29041,0.142], + [29043,0.104], + [29045,0.153], + [29047,0.089], + [29049,0.11], + [29051,0.126], + [29053,0.112], + [29055,0.2], + [29057,0.229], + [29059,0.157], + [29061,0.132], + [29063,0.125], + [29065,0.208], + [29067,0.206], + [29069,0.266], + [29071,0.106], + [29073,0.12], + [29075,0.181], + [29077,0.185], + [29079,0.205], + [29081,0.183], + [29083,0.212], + [29085,0.233], + [29087,0.12], + [29089,0.164], + [29091,0.229], + [29093,0.212], + [29095,0.159], + [29097,0.173], + [29099,0.109], + [29101,0.162], + [29103,0.202], + [29105,0.177], + [29107,0.128], + [29109,0.171], + [29111,0.152], + [29113,0.132], + [29115,0.165], + [29117,0.179], + [29119,0.19], + [29121,0.17], + [29123,0.188], + [29125,0.189], + [29127,0.184], + [29129,0.177], + [29131,0.165], + [29133,0.317], + [29135,0.119], + [29137,0.13], + [29139,0.161], + [29141,0.255], + [29143,0.241], + [29145,0.129], + [29147,0.226], + [29149,0.253], + [29151,0.068], + [29153,0.276], + [29155,0.285], + [29157,0.082], + [29159,0.172], + [29161,0.204], + [29163,0.151], + [29165,0.072], + [29167,0.144], + [29169,0.128], + [29171,0.169], + [29173,0.133], + [29175,0.165], + [29177,0.156], + [29179,0.173], + [29181,0.234], + [29183,0.057], + [29185,0.222], + [29186,0.166], + [29187,0.154], + [29189,0.098], + [29195,0.173], + [29197,0.184], + [29199,0.167], + [29201,0.201], + [29203,0.305], + [29205,0.155], + [29207,0.168], + [29209,0.128], + [29211,0.159], + [29213,0.171], + [29215,0.253], + [29217,0.152], + [29219,0.128], + [29221,0.202], + [29223,0.234], + [29225,0.184], + [29227,0.15], + [29229,0.25], + [29510,0.25], + [30001,0.161], + [30003,0.268], + [30005,0.327], + [30007,0.078], + [30009,0.099], + [30011,0.118], + [30013,0.131], + [30015,0.203], + [30017,0.098], + [30019,0.046], + [30021,0.123], + [30023,0.188], + [30025,0.058], + [30027,0.147], + [30029,0.136], + [30031,0.13], + [30033,0.051], + [30035,0.331], + [30037,0.182], + [30039,0.099], + [30041,0.212], + [30043,0.099], + [30045,0.139], + [30047,0.209], + [30049,0.114], + [30051,0.139], + [30053,0.164], + [30055,0.077], + [30057,0.106], + [30059,0.158], + [30061,0.201], + [30063,0.159], + [30065,0.174], + [30067,0.134], + [30069,0.101], + [30071,0.18], + [30073,0.19], + [30075,0.082], + [30077,0.146], + [30079,0.101], + [30081,0.16], + [30083,0.059], + [30085,0.291], + [30087,0.191], + [30089,0.212], + [30091,0.122], + [30093,0.192], + [30095,0.065], + [30097,0.104], + [30099,0.098], + [30101,0.166], + [30103,0.17], + [30105,0.074], + [30107,0.198], + [30109,0.108], + [30111,0.101], + [31001,0.124], + [31003,0.115], + [31005,0.109], + [31007,0.089], + [31009,0.098], + [31011,0.073], + [31013,0.109], + [31015,0.098], + [31017,0.16], + [31019,0.144], + [31021,0.123], + [31023,0.078], + [31025,0.063], + [31027,0.097], + [31029,0.08], + [31031,0.09], + [31033,0.109], + [31035,0.111], + [31037,0.082], + [31039,0.08], + [31041,0.119], + [31043,0.168], + [31045,0.143], + [31047,0.137], + [31049,0.111], + [31051,0.103], + [31053,0.132], + [31055,0.135], + [31057,0.105], + [31059,0.099], + [31061,0.133], + [31063,0.109], + [31065,0.135], + [31067,0.091], + [31069,0.117], + [31071,0.072], + [31073,0.057], + [31075,0.211], + [31077,0.098], + [31079,0.135], + [31081,0.072], + [31083,0.129], + [31085,0.09], + [31087,0.142], + [31089,0.089], + [31091,0.174], + [31093,0.102], + [31095,0.106], + [31097,0.101], + [31099,0.094], + [31101,0.131], + [31103,0.077], + [31105,0.114], + [31107,0.123], + [31109,0.14], + [31111,0.126], + [31113,0.097], + [31115,0.089], + [31117,0.16], + [31119,0.16], + [31121,0.1], + [31123,0.094], + [31125,0.117], + [31127,0.115], + [31129,0.108], + [31131,0.1], + [31133,0.205], + [31135,0.048], + [31137,0.071], + [31139,0.068], + [31141,0.086], + [31143,0.076], + [31145,0.117], + [31147,0.163], + [31149,0.097], + [31151,0.116], + [31153,0.053], + [31155,0.09], + [31157,0.132], + [31159,0.092], + [31161,0.158], + [31163,0.107], + [31165,0.124], + [31167,0.095], + [31169,0.109], + [31171,0.124], + [31173,0.305], + [31175,0.115], + [31177,0.098], + [31179,0.135], + [31181,0.113], + [31183,0.026], + [31185,0.097], + [32001,0.138], + [32003,0.146], + [32005,0.098], + [32007,0.115], + [32009,0.068], + [32011,0.1], + [32013,0.091], + [32015,0.132], + [32017,0.121], + [32019,0.137], + [32021,0.203], + [32023,0.173], + [32027,0.15], + [32029,0.077], + [32031,0.133], + [32033,0.13], + [32510,0.147], + [33001,0.091], + [33003,0.092], + [33005,0.102], + [33007,0.133], + [33009,0.109], + [33011,0.086], + [33013,0.077], + [33015,0.048], + [33017,0.095], + [33019,0.094], + [34001,0.153], + [34003,0.072], + [34005,0.064], + [34007,0.131], + [34009,0.106], + [34011,0.188], + [34013,0.167], + [34015,0.079], + [34017,0.171], + [34019,0.045], + [34021,0.113], + [34023,0.086], + [34025,0.076], + [34027,0.046], + [34029,0.109], + [34031,0.17], + [34033,0.142], + [34035,0.048], + [34037,0.053], + [34039,0.103], + [34041,0.082], + [35001,0.18], + [35003,0.215], + [35005,0.212], + [35006,0.285], + [35007,0.235], + [35009,0.225], + [35011,0.227], + [35013,0.279], + [35015,0.146], + [35017,0.22], + [35019,0.13], + [35021,0.198], + [35023,0.26], + [35025,0.161], + [35027,0.154], + [35028,0.051], + [35029,0.318], + [35031,0.375], + [35033,0.203], + [35035,0.214], + [35037,0.216], + [35039,0.264], + [35041,0.275], + [35043,0.147], + [35045,0.208], + [35047,0.309], + [35049,0.144], + [35051,0.212], + [35053,0.266], + [35055,0.213], + [35057,0.271], + [35059,0.142], + [35061,0.22], + [36001,0.124], + [36003,0.165], + [36005,0.297], + [36007,0.171], + [36009,0.169], + [36011,0.116], + [36013,0.185], + [36015,0.158], + [36017,0.145], + [36019,0.157], + [36021,0.114], + [36023,0.147], + [36025,0.165], + [36027,0.091], + [36029,0.149], + [36031,0.089], + [36033,0.194], + [36035,0.16], + [36037,0.128], + [36039,0.124], + [36041,0.097], + [36043,0.149], + [36045,0.148], + [36047,0.219], + [36049,0.142], + [36051,0.146], + [36053,0.111], + [36055,0.148], + [36057,0.196], + [36059,0.059], + [36061,0.173], + [36063,0.134], + [36065,0.166], + [36067,0.149], + [36069,0.097], + [36071,0.122], + [36073,0.159], + [36075,0.183], + [36077,0.161], + [36079,0.048], + [36081,0.137], + [36083,0.126], + [36085,0.129], + [36087,0.142], + [36089,0.194], + [36091,0.066], + [36093,0.124], + [36095,0.139], + [36097,0.153], + [36099,0.118], + [36101,0.145], + [36103,0.072], + [36105,0.159], + [36107,0.112], + [36109,0.204], + [36111,0.132], + [36113,0.099], + [36115,0.128], + [36117,0.117], + [36119,0.094], + [36121,0.114], + [36123,0.131], + [37001,0.176], + [37003,0.147], + [37005,0.21], + [37007,0.227], + [37009,0.194], + [37011,0.147], + [37013,0.191], + [37015,0.22], + [37017,0.245], + [37019,0.141], + [37021,0.132], + [37023,0.193], + [37025,0.115], + [37027,0.164], + [37029,0.09], + [37031,0.125], + [37033,0.213], + [37035,0.142], + [37037,0.133], + [37039,0.168], + [37041,0.228], + [37043,0.175], + [37045,0.199], + [37047,0.236], + [37049,0.154], + [37051,0.182], + [37053,0.091], + [37055,0.089], + [37057,0.158], + [37059,0.14], + [37061,0.263], + [37063,0.164], + [37065,0.246], + [37067,0.187], + [37069,0.164], + [37071,0.165], + [37073,0.124], + [37075,0.19], + [37077,0.143], + [37079,0.258], + [37081,0.167], + [37083,0.268], + [37085,0.18], + [37087,0.166], + [37089,0.118], + [37091,0.233], + [37093,0.219], + [37095,0.203], + [37097,0.127], + [37099,0.216], + [37101,0.145], + [37103,0.264], + [37105,0.175], + [37107,0.223], + [37109,0.152], + [37111,0.193], + [37113,0.177], + [37115,0.178], + [37117,0.192], + [37119,0.134], + [37121,0.154], + [37123,0.209], + [37125,0.133], + [37127,0.159], + [37129,0.18], + [37131,0.254], + [37133,0.141], + [37135,0.14], + [37137,0.151], + [37139,0.181], + [37141,0.158], + [37143,0.188], + [37145,0.181], + [37147,0.243], + [37149,0.109], + [37151,0.167], + [37153,0.261], + [37155,0.292], + [37157,0.185], + [37159,0.168], + [37161,0.196], + [37163,0.243], + [37165,0.298], + [37167,0.157], + [37169,0.139], + [37171,0.176], + [37173,0.209], + [37175,0.155], + [37177,0.268], + [37179,0.094], + [37181,0.23], + [37183,0.101], + [37185,0.223], + [37187,0.241], + [37189,0.283], + [37191,0.212], + [37193,0.209], + [37195,0.206], + [37197,0.173], + [37199,0.196], + [38001,0.092], + [38003,0.1], + [38005,0.333], + [38007,0.103], + [38009,0.086], + [38011,0.085], + [38013,0.073], + [38015,0.085], + [38017,0.112], + [38019,0.086], + [38021,0.063], + [38023,0.13], + [38025,0.106], + [38027,0.132], + [38029,0.119], + [38031,0.071], + [38033,0.094], + [38035,0.17], + [38037,0.128], + [38039,0.08], + [38041,0.093], + [38043,0.069], + [38045,0.107], + [38047,0.075], + [38049,0.079], + [38051,0.099], + [38053,0.117], + [38055,0.089], + [38057,0.073], + [38059,0.079], + [38061,0.112], + [38063,0.084], + [38065,0.031], + [38067,0.056], + [38069,0.176], + [38071,0.121], + [38073,0.066], + [38075,0.048], + [38077,0.097], + [38079,0.324], + [38081,0.043], + [38083,0.154], + [38085,0.371], + [38087,0.068], + [38089,0.081], + [38091,0.038], + [38093,0.111], + [38095,0.124], + [38097,0.069], + [38099,0.099], + [38101,0.084], + [38103,0.058], + [38105,0.09], + [39001,0.238], + [39003,0.15], + [39005,0.142], + [39007,0.198], + [39009,0.302], + [39011,0.09], + [39013,0.141], + [39015,0.178], + [39017,0.129], + [39019,0.148], + [39021,0.111], + [39023,0.166], + [39025,0.098], + [39027,0.147], + [39029,0.154], + [39031,0.15], + [39033,0.162], + [39035,0.183], + [39037,0.116], + [39039,0.11], + [39041,0.051], + [39043,0.13], + [39045,0.099], + [39047,0.177], + [39049,0.167], + [39051,0.106], + [39053,0.209], + [39055,0.065], + [39057,0.123], + [39059,0.202], + [39061,0.17], + [39063,0.121], + [39065,0.166], + [39067,0.157], + [39069,0.09], + [39071,0.216], + [39073,0.142], + [39075,0.12], + [39077,0.142], + [39079,0.206], + [39081,0.176], + [39083,0.138], + [39085,0.083], + [39087,0.186], + [39089,0.118], + [39091,0.137], + [39093,0.137], + [39095,0.198], + [39097,0.102], + [39099,0.176], + [39101,0.166], + [39103,0.062], + [39105,0.225], + [39107,0.074], + [39109,0.099], + [39111,0.197], + [39113,0.179], + [39115,0.215], + [39117,0.097], + [39119,0.166], + [39121,0.129], + [39123,0.105], + [39125,0.107], + [39127,0.192], + [39129,0.12], + [39131,0.2], + [39133,0.145], + [39135,0.124], + [39137,0.072], + [39139,0.156], + [39141,0.182], + [39143,0.136], + [39145,0.239], + [39147,0.152], + [39149,0.089], + [39151,0.14], + [39153,0.136], + [39155,0.172], + [39157,0.138], + [39159,0.074], + [39161,0.127], + [39163,0.211], + [39165,0.051], + [39167,0.155], + [39169,0.13], + [39171,0.135], + [39173,0.134], + [39175,0.113], + [40001,0.308], + [40003,0.112], + [40005,0.198], + [40007,0.117], + [40009,0.126], + [40011,0.15], + [40013,0.175], + [40015,0.208], + [40017,0.079], + [40019,0.164], + [40021,0.211], + [40023,0.31], + [40025,0.159], + [40027,0.126], + [40029,0.203], + [40031,0.167], + [40033,0.154], + [40035,0.179], + [40037,0.152], + [40039,0.158], + [40041,0.19], + [40043,0.186], + [40045,0.172], + [40047,0.136], + [40049,0.171], + [40051,0.124], + [40053,0.096], + [40055,0.192], + [40057,0.161], + [40059,0.132], + [40061,0.192], + [40063,0.201], + [40065,0.18], + [40067,0.209], + [40069,0.2], + [40071,0.176], + [40073,0.089], + [40075,0.239], + [40077,0.189], + [40079,0.222], + [40081,0.143], + [40083,0.132], + [40085,0.122], + [40087,0.095], + [40089,0.236], + [40091,0.185], + [40093,0.131], + [40095,0.147], + [40097,0.192], + [40099,0.141], + [40101,0.219], + [40103,0.116], + [40105,0.181], + [40107,0.252], + [40109,0.17], + [40111,0.195], + [40113,0.157], + [40115,0.218], + [40117,0.15], + [40119,0.263], + [40121,0.171], + [40123,0.173], + [40125,0.17], + [40127,0.203], + [40129,0.184], + [40131,0.094], + [40133,0.227], + [40135,0.246], + [40137,0.151], + [40139,0.168], + [40141,0.221], + [40143,0.155], + [40145,0.107], + [40147,0.14], + [40149,0.142], + [40151,0.129], + [40153,0.117], + [41001,0.153], + [41003,0.207], + [41005,0.09], + [41007,0.122], + [41009,0.123], + [41011,0.179], + [41013,0.153], + [41015,0.155], + [41017,0.121], + [41019,0.17], + [41021,0.099], + [41023,0.137], + [41025,0.175], + [41027,0.121], + [41029,0.167], + [41031,0.209], + [41033,0.186], + [41035,0.187], + [41037,0.2], + [41039,0.188], + [41041,0.184], + [41043,0.161], + [41045,0.252], + [41047,0.159], + [41049,0.147], + [41051,0.164], + [41053,0.154], + [41055,0.137], + [41057,0.155], + [41059,0.178], + [41061,0.174], + [41063,0.137], + [41065,0.137], + [41067,0.103], + [41069,0.206], + [41071,0.137], + [42001,0.088], + [42003,0.125], + [42005,0.13], + [42007,0.108], + [42009,0.136], + [42011,0.136], + [42013,0.152], + [42015,0.122], + [42017,0.061], + [42019,0.084], + [42021,0.156], + [42023,0.144], + [42025,0.128], + [42027,0.184], + [42029,0.069], + [42031,0.175], + [42033,0.153], + [42035,0.172], + [42037,0.159], + [42039,0.145], + [42041,0.078], + [42043,0.132], + [42045,0.104], + [42047,0.094], + [42049,0.168], + [42051,0.188], + [42053,0.141], + [42055,0.104], + [42057,0.115], + [42059,0.148], + [42061,0.136], + [42063,0.166], + [42065,0.142], + [42067,0.131], + [42069,0.154], + [42071,0.104], + [42073,0.14], + [42075,0.105], + [42077,0.133], + [42079,0.152], + [42081,0.14], + [42083,0.173], + [42085,0.137], + [42087,0.135], + [42089,0.111], + [42091,0.064], + [42093,0.105], + [42095,0.092], + [42097,0.144], + [42099,0.084], + [42101,0.258], + [42103,0.099], + [42105,0.144], + [42107,0.125], + [42109,0.113], + [42111,0.127], + [42113,0.131], + [42115,0.13], + [42117,0.134], + [42119,0.102], + [42121,0.136], + [42123,0.134], + [42125,0.097], + [42127,0.111], + [42129,0.103], + [42131,0.104], + [42133,0.103], + [44001,0.07], + [44003,0.078], + [44005,0.09], + [44007,0.167], + [44009,0.096], + [45001,0.227], + [45003,0.167], + [45005,0.304], + [45007,0.156], + [45009,0.245], + [45011,0.27], + [45013,0.119], + [45015,0.128], + [45017,0.183], + [45019,0.153], + [45021,0.22], + [45023,0.218], + [45025,0.238], + [45027,0.233], + [45029,0.223], + [45031,0.227], + [45033,0.306], + [45035,0.118], + [45037,0.155], + [45039,0.213], + [45041,0.196], + [45043,0.187], + [45045,0.135], + [45047,0.242], + [45049,0.184], + [45051,0.17], + [45053,0.226], + [45055,0.164], + [45057,0.155], + [45059,0.207], + [45061,0.264], + [45063,0.128], + [45065,0.201], + [45067,0.265], + [45069,0.266], + [45071,0.198], + [45073,0.186], + [45075,0.232], + [45077,0.183], + [45079,0.167], + [45081,0.205], + [45083,0.156], + [45085,0.211], + [45087,0.193], + [45089,0.282], + [45091,0.123], + [46003,0.062], + [46005,0.237], + [46007,0.381], + [46009,0.103], + [46011,0.159], + [46013,0.11], + [46015,0.146], + [46017,0.405], + [46019,0.111], + [46021,0.047], + [46023,0.214], + [46025,0.133], + [46027,0.247], + [46029,0.117], + [46031,0.479], + [46033,0.132], + [46035,0.126], + [46037,0.165], + [46039,0.1], + [46041,0.314], + [46043,0.082], + [46045,0.059], + [46047,0.15], + [46049,0.109], + [46051,0.076], + [46053,0.153], + [46055,0.172], + [46057,0.056], + [46059,0.082], + [46061,0.065], + [46063,0.129], + [46065,0.113], + [46067,0.13], + [46069,0.142], + [46071,0.448], + [46073,0.089], + [46075,0.108], + [46077,0.095], + [46079,0.155], + [46081,0.124], + [46083,0.03], + [46085,0.217], + [46087,0.093], + [46089,0.17], + [46091,0.083], + [46093,0.088], + [46095,0.426], + [46097,0.116], + [46099,0.11], + [46101,0.159], + [46102,null], + [46103,0.14], + [46105,0.12], + [46107,0.065], + [46109,0.188], + [46111,0.097], + [46115,0.099], + [46117,0.058], + [46119,0.033], + [46121,0.52], + [46123,0.197], + [46125,0.106], + [46127,0.073], + [46129,0.102], + [46135,0.131], + [46137,0.431], + [47001,0.163], + [47003,0.169], + [47005,0.223], + [47007,0.207], + [47009,0.13], + [47011,0.18], + [47013,0.206], + [47015,0.17], + [47017,0.198], + [47019,0.245], + [47021,0.127], + [47023,0.182], + [47025,0.224], + [47027,0.266], + [47029,0.25], + [47031,0.152], + [47033,0.177], + [47035,0.16], + [47037,0.169], + [47039,0.226], + [47041,0.189], + [47043,0.145], + [47045,0.181], + [47047,0.144], + [47049,0.23], + [47051,0.15], + [47053,0.171], + [47055,0.159], + [47057,0.187], + [47059,0.172], + [47061,0.285], + [47063,0.198], + [47065,0.145], + [47067,0.257], + [47069,0.212], + [47071,0.215], + [47073,0.193], + [47075,0.191], + [47077,0.195], + [47079,0.197], + [47081,0.197], + [47083,0.171], + [47085,0.184], + [47087,0.223], + [47089,0.138], + [47091,0.253], + [47093,0.158], + [47095,0.299], + [47097,0.231], + [47099,0.183], + [47101,0.221], + [47103,0.169], + [47105,0.137], + [47107,0.197], + [47109,0.216], + [47111,0.186], + [47113,0.203], + [47115,0.181], + [47117,0.135], + [47119,0.13], + [47121,0.166], + [47123,0.204], + [47125,0.142], + [47127,0.077], + [47129,0.229], + [47131,0.23], + [47133,0.196], + [47135,0.294], + [47137,0.188], + [47139,0.17], + [47141,0.233], + [47143,0.219], + [47145,0.154], + [47147,0.113], + [47149,0.118], + [47151,0.262], + [47153,0.144], + [47155,0.153], + [47157,0.208], + [47159,0.141], + [47161,0.19], + [47163,0.166], + [47165,0.097], + [47167,0.146], + [47169,0.133], + [47171,0.201], + [47173,0.216], + [47175,0.195], + [47177,0.216], + [47179,0.165], + [47181,0.196], + [47183,0.205], + [47185,0.176], + [47187,0.046], + [47189,0.092], + [48001,0.157], + [48003,0.119], + [48005,0.191], + [48007,0.178], + [48009,0.088], + [48011,0.075], + [48013,0.146], + [48015,0.134], + [48017,0.223], + [48019,0.165], + [48021,0.133], + [48023,0.131], + [48025,0.197], + [48027,0.143], + [48029,0.164], + [48031,0.108], + [48033,0.028], + [48035,0.156], + [48037,0.179], + [48039,0.099], + [48041,0.26], + [48043,0.109], + [48045,0.139], + [48047,0.415], + [48049,0.164], + [48051,0.151], + [48053,0.123], + [48055,0.177], + [48057,0.158], + [48059,0.156], + [48061,0.312], + [48063,0.174], + [48065,0.064], + [48067,0.185], + [48069,0.159], + [48071,0.129], + [48073,0.187], + [48075,0.196], + [48077,0.15], + [48079,0.248], + [48081,0.166], + [48083,0.203], + [48085,0.069], + [48087,0.15], + [48089,0.12], + [48091,0.092], + [48093,0.182], + [48095,0.085], + [48097,0.139], + [48099,0.133], + [48101,0.245], + [48103,0.118], + [48105,0.209], + [48107,0.208], + [48109,0.294], + [48111,0.159], + [48113,0.177], + [48115,0.185], + [48117,0.18], + [48119,0.229], + [48121,0.084], + [48123,0.16], + [48125,0.166], + [48127,0.302], + [48129,0.149], + [48131,0.252], + [48133,0.174], + [48135,0.123], + [48137,0.07], + [48139,0.105], + [48141,0.217], + [48143,0.226], + [48145,0.252], + [48147,0.148], + [48149,0.091], + [48151,0.174], + [48153,0.182], + [48155,0.057], + [48157,0.081], + [48159,0.15], + [48161,0.173], + [48163,0.203], + [48165,0.11], + [48167,0.139], + [48169,0.135], + [48171,0.124], + [48173,0.116], + [48175,0.164], + [48177,0.172], + [48179,0.149], + [48181,0.143], + [48183,0.176], + [48185,0.186], + [48187,0.106], + [48189,0.198], + [48191,0.222], + [48193,0.161], + [48195,0.187], + [48197,0.138], + [48199,0.12], + [48201,0.168], + [48203,0.179], + [48205,0.081], + [48207,0.193], + [48209,0.153], + [48211,0.088], + [48213,0.18], + [48215,0.318], + [48217,0.175], + [48219,0.149], + [48221,0.123], + [48223,0.179], + [48225,0.247], + [48227,0.139], + [48229,0.356], + [48231,0.188], + [48233,0.164], + [48235,0.135], + [48237,0.182], + [48239,0.137], + [48241,0.168], + [48243,0.067], + [48245,0.194], + [48247,0.26], + [48249,0.23], + [48251,0.11], + [48253,0.159], + [48255,0.193], + [48257,0.124], + [48259,0.057], + [48261,0.248], + [48263,0.179], + [48265,0.138], + [48267,0.221], + [48269,0.035], + [48271,0.106], + [48273,0.237], + [48275,0.147], + [48277,0.178], + [48279,0.205], + [48281,0.12], + [48283,0.082], + [48285,0.105], + [48287,0.138], + [48289,0.163], + [48291,0.162], + [48293,0.207], + [48295,0.105], + [48297,0.163], + [48299,0.125], + [48301,0.171], + [48303,0.188], + [48305,0.18], + [48307,0.163], + [48309,0.193], + [48311,0.07], + [48313,0.154], + [48315,0.223], + [48317,0.07], + [48319,0.126], + [48321,0.206], + [48323,0.245], + [48325,0.127], + [48327,0.098], + [48329,0.087], + [48331,0.16], + [48333,0.149], + [48335,0.079], + [48337,0.155], + [48339,0.103], + [48341,0.169], + [48343,0.157], + [48345,0.122], + [48347,0.249], + [48349,0.188], + [48351,0.157], + [48353,0.168], + [48355,0.167], + [48357,0.13], + [48359,0.111], + [48361,0.142], + [48363,0.183], + [48365,0.153], + [48367,0.092], + [48369,0.173], + [48371,0.115], + [48373,0.187], + [48375,0.217], + [48377,0.263], + [48379,0.131], + [48381,0.096], + [48383,0.18], + [48385,0.202], + [48387,0.165], + [48389,0.132], + [48391,0.166], + [48393,0.033], + [48395,0.152], + [48397,0.058], + [48399,0.163], + [48401,0.158], + [48403,0.2], + [48405,0.244], + [48407,0.172], + [48409,0.152], + [48411,0.174], + [48413,0.102], + [48415,0.128], + [48417,0.177], + [48419,0.231], + [48421,0.148], + [48423,0.163], + [48425,0.215], + [48427,0.35], + [48429,0.213], + [48431,0.17], + [48433,0.139], + [48435,0.065], + [48437,0.222], + [48439,0.135], + [48441,0.161], + [48443,0.171], + [48445,0.137], + [48447,0.171], + [48449,0.193], + [48451,0.129], + [48453,0.139], + [48455,0.184], + [48457,0.158], + [48459,0.138], + [48461,0.18], + [48463,0.179], + [48465,0.209], + [48467,0.142], + [48469,0.148], + [48471,0.243], + [48473,0.18], + [48475,0.116], + [48477,0.132], + [48479,0.315], + [48481,0.175], + [48483,0.192], + [48485,0.189], + [48487,0.165], + [48489,0.356], + [48491,0.07], + [48493,0.102], + [48495,0.179], + [48497,0.13], + [48499,0.133], + [48501,0.123], + [48503,0.165], + [48505,0.341], + [48507,0.362], + [49001,0.105], + [49003,0.102], + [49005,0.152], + [49007,0.162], + [49009,0.04], + [49011,0.062], + [49013,0.127], + [49015,0.129], + [49017,0.131], + [49019,0.127], + [49021,0.209], + [49023,0.128], + [49025,0.111], + [49027,0.116], + [49029,0.024], + [49031,0.129], + [49033,0.18], + [49035,0.104], + [49037,0.284], + [49039,0.169], + [49041,0.133], + [49043,0.075], + [49045,0.069], + [49047,0.116], + [49049,0.118], + [49051,0.078], + [49053,0.142], + [49055,0.092], + [49057,0.121], + [50001,0.078], + [50003,0.128], + [50005,0.123], + [50007,0.113], + [50009,0.155], + [50011,0.08], + [50013,0.075], + [50015,0.14], + [50017,0.115], + [50019,0.142], + [50021,0.114], + [50023,0.118], + [50025,0.141], + [50027,0.102], + [51001,0.198], + [51003,0.098], + [51005,0.193], + [51007,0.13], + [51009,0.134], + [51011,0.144], + [51013,0.082], + [51015,0.088], + [51017,0.093], + [51019,0.089], + [51021,0.083], + [51023,0.077], + [51025,0.209], + [51027,0.265], + [51029,0.166], + [51031,0.117], + [51033,0.119], + [51035,0.146], + [51036,0.132], + [51037,0.227], + [51041,0.072], + [51043,0.104], + [51045,0.093], + [51047,0.089], + [51049,0.218], + [51051,0.23], + [51053,0.148], + [51057,0.123], + [51059,0.061], + [51061,0.062], + [51063,0.12], + [51065,0.061], + [51067,0.148], + [51069,0.056], + [51071,0.113], + [51073,0.087], + [51075,0.053], + [51077,0.202], + [51079,0.094], + [51081,0.17], + [51083,0.187], + [51085,0.058], + [51087,0.104], + [51089,0.192], + [51091,0.106], + [51093,0.103], + [51095,0.075], + [51097,0.156], + [51099,0.057], + [51101,0.109], + [51103,0.11], + [51105,0.262], + [51107,0.037], + [51109,0.118], + [51111,0.186], + [51113,0.098], + [51115,0.106], + [51117,0.169], + [51119,0.102], + [51121,0.238], + [51125,0.149], + [51127,0.051], + [51131,0.203], + [51133,0.135], + [51135,0.215], + [51137,0.089], + [51139,0.17], + [51141,0.202], + [51143,0.147], + [51145,0.055], + [51147,0.214], + [51149,0.123], + [51153,0.07], + [51155,0.139], + [51157,0.089], + [51159,0.174], + [51161,0.08], + [51163,0.156], + [51165,0.102], + [51167,0.176], + [51169,0.177], + [51171,0.103], + [51173,0.174], + [51175,0.117], + [51177,0.08], + [51179,0.047], + [51181,0.136], + [51183,0.178], + [51185,0.156], + [51187,0.098], + [51191,0.146], + [51193,0.095], + [51195,0.199], + [51197,0.152], + [51199,0.052], + [51510,0.105], + [51520,0.213], + [51530,0.208], + [51540,0.245], + [51550,0.096], + [51570,0.132], + [51580,0.199], + [51590,0.215], + [51595,0.309], + [51600,0.078], + [51610,0.029], + [51620,0.166], + [51630,0.163], + [51640,0.212], + [51650,0.149], + [51660,0.29], + [51670,0.212], + [51678,0.214], + [51680,0.223], + [51683,0.088], + [51685,0.103], + [51690,0.24], + [51700,0.164], + [51710,0.21], + [51720,0.257], + [51730,0.276], + [51735,0.049], + [51740,0.177], + [51750,0.375], + [51760,0.252], + [51770,0.216], + [51775,0.089], + [51790,0.133], + [51800,0.112], + [51810,0.08], + [51820,0.174], + [51830,0.215], + [51840,0.125], + [53001,0.231], + [53003,0.135], + [53005,0.134], + [53007,0.128], + [53009,0.171], + [53011,0.103], + [53013,0.145], + [53015,0.169], + [53017,0.137], + [53019,0.212], + [53021,0.159], + [53023,0.117], + [53025,0.159], + [53027,0.16], + [53029,0.095], + [53031,0.128], + [53033,0.102], + [53035,0.099], + [53037,0.196], + [53039,0.149], + [53041,0.16], + [53043,0.137], + [53045,0.162], + [53047,0.218], + [53049,0.186], + [53051,0.166], + [53053,0.122], + [53055,0.107], + [53057,0.143], + [53059,0.133], + [53061,0.088], + [53063,0.152], + [53065,0.156], + [53067,0.116], + [53069,0.139], + [53071,0.144], + [53073,0.153], + [53075,0.275], + [53077,0.19], + [54001,0.225], + [54003,0.13], + [54005,0.244], + [54007,0.221], + [54009,0.13], + [54011,0.232], + [54013,0.171], + [54015,0.252], + [54017,0.149], + [54019,0.2], + [54021,0.25], + [54023,0.127], + [54025,0.178], + [54027,0.169], + [54029,0.135], + [54031,0.148], + [54033,0.15], + [54035,0.147], + [54037,0.099], + [54039,0.165], + [54041,0.198], + [54043,0.249], + [54045,0.225], + [54047,0.349], + [54049,0.161], + [54051,0.152], + [54053,0.193], + [54055,0.214], + [54057,0.148], + [54059,0.289], + [54061,0.213], + [54063,0.172], + [54065,0.111], + [54067,0.186], + [54069,0.137], + [54071,0.187], + [54073,0.166], + [54075,0.176], + [54077,0.152], + [54079,0.093], + [54081,0.176], + [54083,0.183], + [54085,0.185], + [54087,0.193], + [54089,0.19], + [54091,0.157], + [54093,0.153], + [54095,0.164], + [54097,0.212], + [54099,0.208], + [54101,0.267], + [54103,0.232], + [54105,0.212], + [54107,0.169], + [54109,0.222], + [55001,0.13], + [55003,0.146], + [55005,0.115], + [55007,0.11], + [55009,0.113], + [55011,0.107], + [55013,0.146], + [55015,0.059], + [55017,0.107], + [55019,0.132], + [55021,0.083], + [55023,0.13], + [55025,0.124], + [55027,0.088], + [55029,0.084], + [55031,0.142], + [55033,0.128], + [55035,0.145], + [55037,0.084], + [55039,0.085], + [55041,0.175], + [55043,0.153], + [55045,0.089], + [55047,0.114], + [55049,0.09], + [55051,0.152], + [55053,0.13], + [55055,0.098], + [55057,0.143], + [55059,0.145], + [55061,0.092], + [55063,0.144], + [55065,0.104], + [55067,0.148], + [55069,0.092], + [55071,0.102], + [55073,0.103], + [55075,0.132], + [55077,0.118], + [55078,0.358], + [55079,0.205], + [55081,0.126], + [55083,0.091], + [55085,0.09], + [55087,0.086], + [55089,0.059], + [55091,0.131], + [55093,0.107], + [55095,0.099], + [55097,0.131], + [55099,0.119], + [55101,0.119], + [55103,0.136], + [55105,0.143], + [55107,0.152], + [55109,0.048], + [55111,0.113], + [55113,0.177], + [55115,0.115], + [55117,0.082], + [55119,0.109], + [55121,0.09], + [55123,0.166], + [55125,0.153], + [55127,0.124], + [55129,0.13], + [55131,0.055], + [55133,0.05], + [55135,0.11], + [55137,0.111], + [55139,0.122], + [55141,0.111], + [56001,0.23], + [56003,0.13], + [56005,0.094], + [56007,0.133], + [56009,0.08], + [56011,0.051], + [56013,0.137], + [56015,0.132], + [56017,0.125], + [56019,0.099], + [56021,0.104], + [56023,0.093], + [56025,0.099], + [56027,0.149], + [56029,0.07], + [56031,0.105], + [56033,0.068], + [56035,0.074], + [56037,0.12], + [56039,0.068], + [56041,0.149], + [56043,0.128], + [56045,0.144] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-2019.json b/data/regional/united-states/economics/poverty/us-poverty-rate-2019.json new file mode 100644 index 0000000..3ec278d --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Poverty Rate", + "description" : "Percent of the population living below the poverty line.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.population.2019"], + [1001,55380], + [1003,212830], + [1005,25361], + [1007,22493], + [1009,57681], + [1011,10248], + [1013,19828], + [1015,114618], + [1017,33660], + [1019,25903], + [1021,44055], + [1023,12925], + [1025,24128], + [1027,13337], + [1029,14916], + [1031,51662], + [1033,54771], + [1035,12394], + [1037,10757], + [1039,37200], + [1041,13844], + [1043,82853], + [1045,49277], + [1047,39149], + [1049,71310], + [1051,81144], + [1053,37057], + [1055,102748], + [1057,16494], + [1059,31466], + [1061,26417], + [1063,8324], + [1065,14809], + [1067,17133], + [1069,104702], + [1071,51852], + [1073,659680], + [1075,13885], + [1077,92556], + [1079,33058], + [1081,161152], + [1083,94727], + [1085,10079], + [1087,18708], + [1089,362276], + [1091,19321], + [1093,29866], + [1095,95643], + [1097,414114], + [1099,21270], + [1101,226941], + [1103,119213], + [1105,9293], + [1107,20243], + [1109,33333], + [1111,22647], + [1113,57952], + [1115,87989], + [1117,213432], + [1119,12797], + [1121,80387], + [1123,40541], + [1125,207305], + [1127,64110], + [1129,16541], + [1131,10681], + [1133,23784], + [2013,3385], + [2016,5698], + [2020,293531], + [2050,18134], + [2060,875], + [2068,2246], + [2070,4961], + [2090,99072], + [2100,2518], + [2105,2139], + [2110,32227], + [2122,58464], + [2130,13800], + [2150,13451], + [2158,8250], + [2164,1393], + [2170,105369], + [2180,9988], + [2185,9792], + [2188,7715], + [2195,3257], + [2198,6407], + [2220,8640], + [2230,1107], + [2240,6878], + [2261,9243], + [2275,2502], + [2282,649], + [2290,5377], + [4001,71511], + [4003,125867], + [4005,141274], + [4007,53546], + [4009,37996], + [4011,9522], + [4012,20793], + [4013,4328810], + [4015,207695], + [4017,109270], + [4019,1027207], + [4021,432793], + [4023,46480], + [4025,228067], + [4027,209468], + [5001,17914], + [5003,20270], + [5005,41427], + [5007,265759], + [5009,37331], + [5011,10874], + [5013,5192], + [5015,27965], + [5017,10615], + [5019,22386], + [5021,14889], + [5023,25100], + [5025,8128], + [5027,23776], + [5029,20858], + [5031,107345], + [5033,62739], + [5035,48672], + [5037,16824], + [5039,7279], + [5041,11709], + [5043,18417], + [5045,123624], + [5047,17738], + [5049,12231], + [5051,98555], + [5053,18126], + [5055,44937], + [5057,21842], + [5059,33597], + [5061,13311], + [5063,37427], + [5065,13570], + [5067,17027], + [5069,69282], + [5071,26372], + [5073,6800], + [5075,16549], + [5077,9194], + [5079,13455], + [5081,12347], + [5083,21668], + [5085,72528], + [5087,16211], + [5089,16476], + [5091,43572], + [5093,42126], + [5095,7050], + [5097,8950], + [5099,8351], + [5101,7812], + [5103,23830], + [5105,10355], + [5107,18606], + [5109,10756], + [5111,23896], + [5113,20094], + [5115,63761], + [5117,8189], + [5119,392967], + [5121,17695], + [5123,25900], + [5125,119415], + [5127,10376], + [5129,7908], + [5131,127591], + [5133,17081], + [5135,17139], + [5137,12475], + [5139,39449], + [5141,16642], + [5143,232289], + [5145,78762], + [5147,6533], + [5149,21464], + [6001,1656754], + [6003,1039], + [6005,38429], + [6007,225817], + [6009,45514], + [6011,21454], + [6013,1142251], + [6015,27495], + [6017,188563], + [6019,984521], + [6021,27976], + [6023,135940], + [6025,180701], + [6027,17977], + [6029,887641], + [6031,150691], + [6033,64195], + [6035,30818], + [6037,10081570], + [6039,155433], + [6041,259943], + [6043,17420], + [6045,87224], + [6047,271382], + [6049,8907], + [6051,14310], + [6053,433410], + [6055,139623], + [6057,99244], + [6059,3168044], + [6061,385512], + [6063,18660], + [6065,2411439], + [6067,1524553], + [6069,60376], + [6071,2149031], + [6073,3316073], + [6075,874961], + [6077,742603], + [6079,282165], + [6081,767423], + [6083,444829], + [6085,1927470], + [6087,273962], + [6089,179212], + [6091,3040], + [6093,43468], + [6095,441829], + [6097,499772], + [6099,543194], + [6101,96109], + [6103,63912], + [6105,12700], + [6107,461898], + [6109,54045], + [6111,847263], + [6113,217352], + [6115,76360], + [8001,504108], + [8003,16107], + [8005,644560], + [8007,13253], + [8009,3561], + [8011,5787], + [8013,322510], + [8014,67886], + [8015,19557], + [8017,2026], + [8019,9495], + [8021,8128], + [8023,3745], + [8025,5754], + [8027,4776], + [8029,30565], + [8031,705576], + [8033,1857], + [8035,336041], + [8037,54681], + [8039,25717], + [8041,698974], + [8043,47321], + [8045,59055], + [8047,6018], + [8049,15303], + [8051,16802], + [8053,857], + [8055,6679], + [8057,1261], + [8059,574798], + [8061,1489], + [8063,7447], + [8065,7751], + [8067,55617], + [8069,344786], + [8071,14266], + [8073,5585], + [8075,22380], + [8077,151218], + [8079,824], + [8081,13127], + [8083,26031], + [8085,41686], + [8087,28517], + [8089,18282], + [8091,4796], + [8093,17867], + [8095,4290], + [8097,17926], + [8099,12022], + [8101,165982], + [8103,6384], + [8105,11305], + [8107,25072], + [8109,6592], + [8111,589], + [8113,8049], + [8115,2322], + [8117,30649], + [8119,24524], + [8121,4868], + [8123,305345], + [8125,10003], + [9001,943926], + [9003,893561], + [9005,182002], + [9007,163053], + [9009,857513], + [9011,267390], + [9013,151063], + [9015,116566], + [10001,176699], + [10003,556165], + [10005,224384], + [11001,692683], + [12001,265443], + [12003,28211], + [12005,182161], + [12007,27317], + [12009,585507], + [12011,1926205], + [12013,14362], + [12015,181067], + [12017,145169], + [12019,211405], + [12021,371453], + [12023,69968], + [12027,36903], + [12029,16589], + [12031,936186], + [12033,313491], + [12035,109801], + [12037,11811], + [12039,45945], + [12041,17953], + [12043,13516], + [12045,15576], + [12047,14326], + [12049,27131], + [12051,40732], + [12053,186313], + [12055,103437], + [12057,1422278], + [12059,19432], + [12061,153989], + [12063,47945], + [12065,14161], + [12067,8637], + [12069,345867], + [12071,737468], + [12073,289770], + [12075,40403], + [12077,8345], + [12079,18460], + [12081,384213], + [12083,353526], + [12085,159065], + [12086,2699428], + [12087,75798], + [12089,83098], + [12091,203794], + [12093,41144], + [12095,1349746], + [12097,351955], + [12099,1465027], + [12101,524602], + [12103,964666], + [12105,686218], + [12107,73252], + [12109,244674], + [12111,312947], + [12113,174755], + [12115,419496], + [12117,461402], + [12119,125044], + [12121,44046], + [12123,21870], + [12125,15303], + [12127,536487], + [12129,32321], + [12131,68262], + [12133,24764], + [13001,18440], + [13003,8239], + [13005,11201], + [13007,3132], + [13009,45111], + [13011,18708], + [13013,78991], + [13015,104919], + [13017,17033], + [13019,19152], + [13021,153200], + [13023,12807], + [13025,18756], + [13027,15590], + [13029,37063], + [13031,76120], + [13033,22520], + [13035,24090], + [13037,6365], + [13039,53231], + [13043,10812], + [13045,117183], + [13047,66700], + [13049,13040], + [13051,288496], + [13053,10560], + [13055,24812], + [13057,247515], + [13059,126176], + [13061,2951], + [13063,283538], + [13065,6686], + [13067,751218], + [13069,43021], + [13071,45486], + [13073,150705], + [13075,17177], + [13077,143260], + [13079,12325], + [13081,22713], + [13083,16197], + [13085,24536], + [13087,26682], + [13089,749323], + [13091,20829], + [13093,13736], + [13095,89703], + [13097,143316], + [13099,10312], + [13101,3981], + [13103,60477], + [13105,19166], + [13107,22533], + [13109,10687], + [13111,25395], + [13113,112303], + [13115,97369], + [13117,228383], + [13119,22766], + [13121,1036200], + [13123,30414], + [13125,2996], + [13127,84470], + [13129,57202], + [13131,24828], + [13133,17349], + [13135,915046], + [13137,44626], + [13139,198667], + [13141,8515], + [13143,29227], + [13145,34105], + [13147,25773], + [13149,11736], + [13151,225356], + [13153,153507], + [13155,9320], + [13157,67885], + [13159,13916], + [13161,15036], + [13163,15618], + [13165,8793], + [13167,9691], + [13169,28579], + [13171,18672], + [13173,10380], + [13175,47405], + [13177,29502], + [13179,61349], + [13181,7856], + [13183,18692], + [13185,115364], + [13187,32402], + [13189,21455], + [13191,14174], + [13193,13305], + [13195,29218], + [13197,8432], + [13199,21106], + [13201,5787], + [13205,22244], + [13207,27171], + [13209,9058], + [13211,18507], + [13213,39724], + [13215,195739], + [13217,108079], + [13219,38132], + [13221,14931], + [13223,159825], + [13225,27145], + [13227,31387], + [13229,19250], + [13231,18327], + [13233,41908], + [13235,11216], + [13237,21691], + [13239,2289], + [13241,16645], + [13243,6973], + [13245,201852], + [13247,89717], + [13249,5221], + [13251,13989], + [13253,8321], + [13255,65306], + [13257,25750], + [13259,6293], + [13261,30064], + [13263,6321], + [13265,1611], + [13267,25382], + [13269,8116], + [13271,16035], + [13273,8737], + [13275,44630], + [13277,40541], + [13279,26972], + [13281,11617], + [13283,6795], + [13285,69919], + [13287,7943], + [13289,8229], + [13291,23288], + [13293,26236], + [13295,69039], + [13297,91442], + [13299,35593], + [13301,5297], + [13303,20436], + [13305,29788], + [13307,2610], + [13309,7928], + [13311,29489], + [13313,104237], + [13315,8824], + [13317,9844], + [13319,9010], + [13321,20494], + [15001,199459], + [15003,984821], + [15005,66], + [15007,71769], + [15009,165979], + [16001,456849], + [16003,4097], + [16005,85765], + [16007,6000], + [16009,9138], + [16011,45839], + [16013,22373], + [16015,7378], + [16017,43611], + [16019,114392], + [16021,11845], + [16023,2581], + [16025,1048], + [16027,217633], + [16029,6953], + [16031,23690], + [16033,913], + [16035,8673], + [16037,4169], + [16039,26743], + [16041,13464], + [16043,13020], + [16045,17331], + [16047,15148], + [16049,16411], + [16051,28534], + [16053,23730], + [16055,157322], + [16057,39505], + [16059,7847], + [16061,3838], + [16063,5350], + [16065,39100], + [16067,20705], + [16069,40217], + [16071,4385], + [16073,11552], + [16075,23260], + [16077,7671], + [16079,12609], + [16081,11426], + [16083,84869], + [16085,10709], + [16087,10057], + [17001,66085], + [17003,6260], + [17005,16589], + [17007,53537], + [17009,6628], + [17011,33122], + [17013,4830], + [17015,14466], + [17017,12493], + [17019,209922], + [17021,32931], + [17023,15716], + [17025,13287], + [17027,37634], + [17029,51353], + [17031,5198275], + [17033,18972], + [17035,10836], + [17037,104366], + [17039,15932], + [17041,19623], + [17043,929060], + [17045,17407], + [17047,6455], + [17049,34137], + [17051,21565], + [17053,13270], + [17055,38923], + [17057,35092], + [17059,5064], + [17061,13132], + [17063,50666], + [17065,8176], + [17067,17983], + [17069,3939], + [17071,6809], + [17073,49267], + [17075,27812], + [17077,57977], + [17079,9594], + [17081,37985], + [17083,21937], + [17085,21588], + [17087,12494], + [17089,531376], + [17091,110637], + [17093,126054], + [17095,50508], + [17097,701473], + [17099,109737], + [17101,16033], + [17103,34389], + [17105,36040], + [17107,29003], + [17109,30479], + [17111,307714], + [17113,172578], + [17115,105528], + [17117,45463], + [17119,264776], + [17121,37743], + [17123,11679], + [17125,13621], + [17127,14219], + [17129,12306], + [17131,15589], + [17133,34168], + [17135,28828], + [17137,34247], + [17139,14641], + [17141,51025], + [17143,182770], + [17145,21251], + [17147,16401], + [17149,15672], + [17151,4203], + [17153,5510], + [17155,5721], + [17157,32295], + [17159,15766], + [17161,143873], + [17163,262338], + [17165,23994], + [17167,196861], + [17169,6953], + [17171,5005], + [17173,21737], + [17175,5447], + [17177,45093], + [17179,133195], + [17181,16968], + [17183,77563], + [17185,11546], + [17187,17146], + [17189,14058], + [17191,16402], + [17193,13868], + [17195,56016], + [17197,689315], + [17199,67102], + [17201,284819], + [17203,38700], + [18001,35376], + [18003,372575], + [18005,82481], + [18007,8677], + [18009,12013], + [18011,65544], + [18013,15064], + [18015,20074], + [18017,37880], + [18019,116507], + [18021,26234], + [18023,32273], + [18025,10569], + [18027,33120], + [18029,49479], + [18031,26562], + [18033,42927], + [18035,115020], + [18037,42543], + [18039,204558], + [18041,23194], + [18043,77320], + [18045,16430], + [18047,22774], + [18049,20096], + [18051,33656], + [18053,66452], + [18055,32159], + [18057,323117], + [18059,75164], + [18061,39940], + [18063,163799], + [18065,48255], + [18067,82331], + [18069,36359], + [18071,44025], + [18073,33447], + [18075,20840], + [18077,32201], + [18079,27710], + [18081,153716], + [18083,37065], + [18085,79035], + [18087,39193], + [18089,485707], + [18091,110154], + [18093,45548], + [18095,129455], + [18097,951869], + [18099,46461], + [18101,10212], + [18103,35815], + [18105,146461], + [18107,38287], + [18109,69922], + [18111,13992], + [18113,47506], + [18115,5874], + [18117,19545], + [18119,20835], + [18121,16946], + [18123,19102], + [18125,12378], + [18127,168636], + [18129,25560], + [18131,12559], + [18133,37384], + [18135,24926], + [18137,28391], + [18139,16641], + [18141,270216], + [18143,23759], + [18145,44438], + [18147,20447], + [18149,22952], + [18151,34453], + [18153,20730], + [18155,10685], + [18157,191553], + [18159,15162], + [18161,7113], + [18163,181291], + [18165,15539], + [18167,107459], + [18169,31389], + [18171,8237], + [18173,62280], + [18175,27848], + [18177,66342], + [18179,28011], + [18181,24149], + [18183,33730], + [19001,7085], + [19003,3670], + [19005,13813], + [19007,12452], + [19009,5571], + [19011,25636], + [19013,132393], + [19015,26370], + [19017,24864], + [19019,21118], + [19021,20058], + [19023,14628], + [19025,9744], + [19027,20281], + [19029,13091], + [19031,18457], + [19033,42834], + [19035,11343], + [19037,12026], + [19039,9360], + [19041,16211], + [19043,17625], + [19045,46909], + [19047,17034], + [19049,87099], + [19051,8920], + [19053,7979], + [19055,17183], + [19057,39386], + [19059,17127], + [19061,96982], + [19063,9438], + [19065,19803], + [19067,15786], + [19069,10162], + [19071,6946], + [19073,8950], + [19075,12299], + [19077,10669], + [19079,14997], + [19081,10802], + [19083,17061], + [19085,14089], + [19087,19941], + [19089,9226], + [19091,9554], + [19093,6901], + [19095,16189], + [19097,19401], + [19099,36971], + [19101,18148], + [19103,148577], + [19105,20559], + [19107,10188], + [19109,14978], + [19111,34227], + [19113,223861], + [19115,11178], + [19117,8583], + [19119,11776], + [19121,16012], + [19123,22164], + [19125,33172], + [19127,39964], + [19129,15034], + [19131,10608], + [19133,8730], + [19135,7807], + [19137,10053], + [19139,42889], + [19141,13835], + [19143,6052], + [19145,15268], + [19147,9003], + [19149,25068], + [19151,6797], + [19153,479612], + [19155,93393], + [19157,18388], + [19159,4964], + [19161,9802], + [19163,172446], + [19165,11606], + [19167,34827], + [19169,96941], + [19171,17032], + [19173,6167], + [19175,12358], + [19177,7150], + [19179,35141], + [19181,50076], + [19183,22100], + [19185,6429], + [19187,36545], + [19189,10534], + [19191,20262], + [19193,102586], + [19195,7445], + [19197,12739], + [20001,12556], + [20003,7835], + [20005,16268], + [20007,4624], + [20009,26453], + [20011,14608], + [20013,9626], + [20015,66698], + [20017,2637], + [20019,3323], + [20021,20179], + [20023,2665], + [20025,2026], + [20027,8082], + [20029,8938], + [20031,8254], + [20033,1740], + [20035,35351], + [20037,38968], + [20039,2860], + [20041,18828], + [20043,7684], + [20045,120290], + [20047,2869], + [20049,2523], + [20051,28775], + [20053,6231], + [20055,36750], + [20057,34179], + [20059,25558], + [20061,34025], + [20063,2644], + [20065,2519], + [20067,7467], + [20069,6039], + [20071,1185], + [20073,6081], + [20075,2591], + [20077,5594], + [20079,34503], + [20081,4018], + [20083,1876], + [20085,13266], + [20087,18890], + [20089,2885], + [20091,591506], + [20093,3907], + [20095,7340], + [20097,2505], + [20099,20119], + [20101,1564], + [20103,80745], + [20105,3044], + [20107,9671], + [20109,2805], + [20111,33251], + [20113,28567], + [20115,11964], + [20117,9749], + [20119,4180], + [20121,33417], + [20123,6145], + [20125,32521], + [20127,5566], + [20129,2754], + [20131,10121], + [20133,16108], + [20135,2876], + [20137,5446], + [20139,15881], + [20141,3530], + [20143,5822], + [20145,6629], + [20147,5340], + [20149,23847], + [20151,9452], + [20153,2502], + [20155,62765], + [20157,4658], + [20159,9658], + [20161,75056], + [20163,5053], + [20165,3022], + [20167,6948], + [20169,54701], + [20171,4917], + [20173,513375], + [20175,22349], + [20177,177852], + [20179,2506], + [20181,5938], + [20183,3627], + [20185,4181], + [20187,2052], + [20189,5603], + [20191,23114], + [20193,7810], + [20195,2840], + [20197,6889], + [20199,1574], + [20201,5493], + [20203,2130], + [20205,8688], + [20207,3157], + [20209,164861], + [21001,19222], + [21003,20944], + [21005,22409], + [21007,8032], + [21009,43884], + [21011,12355], + [21013,26791], + [21015,130820], + [21017,20058], + [21019,47682], + [21021,29972], + [21023,8305], + [21025,12977], + [21027,20176], + [21029,80171], + [21031,12764], + [21033,12702], + [21035,38837], + [21037,92861], + [21039,4784], + [21041,10671], + [21043,27159], + [21045,15885], + [21047,71414], + [21049,35971], + [21051,20368], + [21053,10193], + [21055,9000], + [21057,6697], + [21059,100474], + [21061,12138], + [21063,7510], + [21065,14224], + [21067,320601], + [21069,14513], + [21071,36456], + [21073,50529], + [21075,6130], + [21077,8737], + [21079,17445], + [21081,24951], + [21083,37248], + [21085,26247], + [21087,10979], + [21089,35555], + [21091,8720], + [21093,108527], + [21095,26699], + [21097,18722], + [21099,18729], + [21101,45829], + [21103,15911], + [21105,4510], + [21107,45331], + [21109,13369], + [21111,767419], + [21113,53032], + [21115,22634], + [21117,165668], + [21119,15260], + [21121,31365], + [21123,14204], + [21125,60357], + [21127,15671], + [21129,6881], + [21131,10283], + [21133,22295], + [21135,13417], + [21137,24476], + [21139,9235], + [21141,26902], + [21143,8271], + [21145,65268], + [21147,17465], + [21149,9283], + [21151,90802], + [21153,12491], + [21155,19244], + [21157,31192], + [21159,11648], + [21161,17112], + [21163,28182], + [21165,6443], + [21167,21592], + [21169,10036], + [21171,10627], + [21173,27884], + [21175,13288], + [21177,30951], + [21179,45650], + [21181,7153], + [21183,24071], + [21185,65967], + [21187,10796], + [21189,4442], + [21191,14572], + [21193,26624], + [21195,59497], + [21197,12304], + [21199,64350], + [21201,2123], + [21203,16820], + [21205,24507], + [21207,17778], + [21209,54667], + [21211,47325], + [21213,18183], + [21215,18680], + [21217,25571], + [21219,12316], + [21221,14449], + [21223,8558], + [21225,14638], + [21227,128652], + [21229,12023], + [21231,20546], + [21233,13068], + [21235,36131], + [21237,7207], + [21239,26318], + [22001,62457], + [22003,25618], + [22005,123114], + [22007,22478], + [22009,40669], + [22011,37043], + [22013,13564], + [22015,126499], + [22017,245831], + [22019,201619], + [22021,9992], + [22023,6930], + [22025,9766], + [22027,15985], + [22029,19778], + [22031,27289], + [22033,443763], + [22035,7096], + [22037,19371], + [22039,33589], + [22041,20238], + [22043,22340], + [22045,71887], + [22047,32822], + [22049,15879], + [22051,434850], + [22053,31441], + [22055,241973], + [22057,98108], + [22059,14936], + [22061,47246], + [22063,138928], + [22065,11306], + [22067,25610], + [22069,38769], + [22071,390845], + [22073,155494], + [22075,23338], + [22077,22016], + [22079,130970], + [22081,8565], + [22083,20350], + [22085,23991], + [22087,46266], + [22089,52773], + [22091,10297], + [22093,21308], + [22095,43242], + [22097,83172], + [22099,53732], + [22101,50968], + [22103,255155], + [22105,132057], + [22107,4561], + [22109,112054], + [22111,22353], + [22113,59865], + [22115,49646], + [22117,46435], + [22119,39242], + [22121,26101], + [22123,11041], + [22125,15428], + [22127,14313], + [23001,107602], + [23003,67809], + [23005,292307], + [23007,29982], + [23009,54601], + [23011,121753], + [23013,39759], + [23015,34201], + [23017,57550], + [23019,151774], + [23021,16836], + [23023,35452], + [23025,50520], + [23027,39539], + [23029,31491], + [23031,204316], + [24001,71445], + [24003,571275], + [24005,828018], + [24009,91511], + [24011,33049], + [24013,167699], + [24015,102552], + [24017,159428], + [24019,32138], + [24021,251422], + [24023,29235], + [24025,252222], + [24027,318855], + [24029,19536], + [24031,1043530], + [24033,908670], + [24035,49632], + [24037,112290], + [24039,25729], + [24041,37167], + [24043,150109], + [24045,102539], + [24047,51765], + [24510,609032], + [25001,213496], + [25003,126425], + [25005,561037], + [25007,17312], + [25009,783676], + [25011,70577], + [25013,467871], + [25015,161032], + [25017,1600842], + [25019,11168], + [25021,700437], + [25023,515303], + [25025,796605], + [25027,824772], + [26001,10353], + [26003,9151], + [26005,116143], + [26007,28520], + [26009,23206], + [26011,15070], + [26013,8421], + [26015,60540], + [26017,104104], + [26019,17615], + [26021,154133], + [26023,43513], + [26025,134212], + [26027,51523], + [26029,26188], + [26031,25418], + [26033,37629], + [26035,30651], + [26037,78389], + [26039,13892], + [26041,36026], + [26043,25439], + [26045,109456], + [26047,33104], + [26049,407875], + [26051,25279], + [26053,15061], + [26055,92181], + [26057,40916], + [26059,45757], + [26061,36070], + [26063,31349], + [26065,290587], + [26067,64300], + [26069,25197], + [26071,11152], + [26073,70688], + [26075,158636], + [26077,262745], + [26079,17585], + [26081,648121], + [26083,2111], + [26085,11852], + [26087,88038], + [26089,21652], + [26091,98381], + [26093,189754], + [26095,6338], + [26097,10780], + [26099,870325], + [26101,24457], + [26103,66686], + [26105,28954], + [26107,43251], + [26109,23074], + [26111,83355], + [26113,15028], + [26115,149727], + [26117,63413], + [26119,9265], + [26121,173297], + [26123,48366], + [26125,1253185], + [26127,26416], + [26129,20898], + [26131,5877], + [26133,23290], + [26135,8248], + [26137,24490], + [26139,286558], + [26141,12714], + [26143,23851], + [26145,191821], + [26147,159247], + [26149,60836], + [26151,41295], + [26153,8048], + [26155,68340], + [26157,52939], + [26159,75358], + [26161,367000], + [26163,1757299], + [26165,33256], + [27001,15834], + [27003,350253], + [27005,34011], + [27007,46403], + [27009,40129], + [27011,4996], + [27013,66795], + [27015,25163], + [27017,35633], + [27019,101949], + [27021,29268], + [27023,11953], + [27025,55315], + [27027,63446], + [27029,8821], + [27031,5376], + [27033,11299], + [27035,64217], + [27037,421453], + [27039,20669], + [27041,37513], + [27043,13801], + [27045,20949], + [27047,30463], + [27049,46246], + [27051,5935], + [27053,1245837], + [27055,18648], + [27057,21019], + [27059,39430], + [27061,45141], + [27063,9954], + [27065,16089], + [27067,42841], + [27069,4311], + [27071,12515], + [27073,6719], + [27075,10560], + [27077,3771], + [27079,28242], + [27081,5677], + [27083,25758], + [27085,35832], + [27087,5501], + [27089,9372], + [27091,19852], + [27093,23105], + [27095,25865], + [27097,33064], + [27099,39807], + [27101,8296], + [27103,33954], + [27105,21734], + [27107,6520], + [27109,154809], + [27111,58195], + [27113,14183], + [27115,29223], + [27117,9191], + [27119,31521], + [27121,11048], + [27123,544442], + [27125,4015], + [27127,15261], + [27129,14652], + [27131,66185], + [27133,9402], + [27135,15361], + [27137,199759], + [27139,145275], + [27141,94463], + [27143,14892], + [27145,158452], + [27147,36683], + [27149,9789], + [27151,9359], + [27153,24494], + [27155,3311], + [27157,21537], + [27159,13654], + [27161,18740], + [27163,255938], + [27165,10972], + [27167,6291], + [27169,50725], + [27171,134438], + [27173,9814], + [28001,31266], + [28003,37090], + [28005,12412], + [28007,18437], + [28009,8232], + [28011,31848], + [28013,14499], + [28015,10070], + [28017,17193], + [28019,8277], + [28021,9089], + [28023,15770], + [28025,19640], + [28027,23255], + [28029,28501], + [28031,18978], + [28033,178975], + [28035,75224], + [28037,7733], + [28039,23917], + [28041,13645], + [28043,21088], + [28045,46961], + [28047,204502], + [28049,238797], + [28051,17737], + [28053,8389], + [28055,1361], + [28057,23462], + [28059,142376], + [28061,16505], + [28063,7225], + [28065,11339], + [28067,68352], + [28069,9943], + [28071,53590], + [28073,61969], + [28075,76279], + [28077,12633], + [28079,22792], + [28081,85072], + [28083,29222], + [28085,34320], + [28087,59150], + [28089,104562], + [28091,24990], + [28093,35599], + [28095,35673], + [28097,10068], + [28099,29332], + [28101,21360], + [28103,10700], + [28105,49512], + [28107,34190], + [28109,55219], + [28111,12006], + [28113,39532], + [28115,31618], + [28117,25255], + [28119,7187], + [28121,152677], + [28123,28332], + [28125,4404], + [28127,26888], + [28129,16009], + [28131,18276], + [28133,26168], + [28135,14158], + [28137,28404], + [28139,22018], + [28141,19441], + [28143,9988], + [28145,28507], + [28147,14477], + [28149,46519], + [28151,46057], + [28153,20373], + [28155,9768], + [28157,8875], + [28159,18229], + [28161,12367], + [28163,28565], + [29001,25369], + [29003,17503], + [29005,5229], + [29007,25644], + [29009,35530], + [29011,11797], + [29013,16296], + [29015,19107], + [29017,12225], + [29019,177651], + [29021,88460], + [29023,42656], + [29025,9039], + [29027,44889], + [29029,45466], + [29031,78491], + [29033,8781], + [29035,6147], + [29037,103597], + [29039,14043], + [29041,7483], + [29043,85658], + [29045,6779], + [29047,242516], + [29049,20500], + [29051,76723], + [29053,17660], + [29055,24154], + [29057,7578], + [29059,16617], + [29061,8295], + [29063,12526], + [29065,15545], + [29067,13306], + [29069,30027], + [29071,103191], + [29073,14711], + [29075,6616], + [29077,289756], + [29079,9992], + [29081,8491], + [29083,21735], + [29085,9404], + [29087,4432], + [29089,10058], + [29091,40104], + [29093,10164], + [29095,696216], + [29097,119920], + [29099,223951], + [29101,53682], + [29103,3947], + [29105,35531], + [29107,32597], + [29109,38204], + [29111,9955], + [29113,56477], + [29115,12113], + [29117,15126], + [29119,22782], + [29121,15199], + [29123,12179], + [29125,8803], + [29127,28608], + [29129,3644], + [29131,25201], + [29133,13574], + [29135,16046], + [29137,8629], + [29139,11487], + [29141,20271], + [29143,17560], + [29145,58180], + [29147,22359], + [29149,10647], + [29151,13615], + [29153,9207], + [29155,16663], + [29157,19191], + [29159,42355], + [29161,44630], + [29163,18455], + [29165,100682], + [29167,31748], + [29169,52425], + [29171,4781], + [29173,10234], + [29175,24878], + [29177,22875], + [29179,6290], + [29181,13567], + [29183,394290], + [29185,9370], + [29186,17848], + [29187,66643], + [29189,996919], + [29195,22976], + [29197,4555], + [29199,4902], + [29201,38633], + [29203,8217], + [29205,6013], + [29207,29377], + [29209,31615], + [29211,6247], + [29213,55114], + [29215,25604], + [29217,20595], + [29219,34453], + [29221,24860], + [29223,13195], + [29225,38655], + [29227,2027], + [29229,18203], + [29510,308174], + [30001,9415], + [30003,13387], + [30005,6719], + [30007,5945], + [30009,10597], + [30011,1331], + [30013,81625], + [30015,5732], + [30017,11729], + [30019,1730], + [30021,9017], + [30023,9106], + [30025,2921], + [30027,11221], + [30029,99899], + [30031,108063], + [30033,1036], + [30035,13732], + [30037,728], + [30039,3311], + [30041,16436], + [30043,11917], + [30045,1954], + [30047,30013], + [30049,67805], + [30051,2351], + [30053,19537], + [30055,1790], + [30057,8302], + [30059,1888], + [30061,4251], + [30063,117309], + [30065,4766], + [30067,16352], + [30069,453], + [30071,4077], + [30073,5994], + [30075,1607], + [30077,6854], + [30079,1252], + [30081,42512], + [30083,11199], + [30085,11175], + [30087,9152], + [30089,11681], + [30091,3483], + [30093,34770], + [30095,9466], + [30097,3670], + [30099,6086], + [30101,4892], + [30103,668], + [30105,7471], + [30107,2142], + [30109,1122], + [30111,159008], + [31001,31587], + [31003,6341], + [31005,427], + [31007,722], + [31009,477], + [31011,5279], + [31013,10970], + [31015,1937], + [31017,3015], + [31019,49209], + [31021,6510], + [31023,8029], + [31025,25888], + [31027,8498], + [31029,3783], + [31031,5779], + [31033,9604], + [31035,6203], + [31037,10714], + [31039,8952], + [31041,10826], + [31043,20173], + [31045,8810], + [31047,23733], + [31049,1831], + [31051,5719], + [31053,36665], + [31055,560617], + [31057,1913], + [31059,5547], + [31061,2987], + [31063,2640], + [31065,4747], + [31067,21594], + [31069,1864], + [31071,2001], + [31073,2013], + [31075,722], + [31077,2382], + [31079,61265], + [31081,9215], + [31083,3415], + [31085,893], + [31087,2815], + [31089,10177], + [31091,693], + [31093,6417], + [31095,7144], + [31097,5161], + [31099,6529], + [31101,8068], + [31103,760], + [31105,3633], + [31107,8426], + [31109,313158], + [31111,35263], + [31113,927], + [31115,605], + [31117,395], + [31119,35080], + [31121,7798], + [31123,4781], + [31125,3544], + [31127,6973], + [31129,4244], + [31131,15949], + [31133,2649], + [31135,2901], + [31137,9100], + [31139,7144], + [31141,33174], + [31143,5225], + [31145,10768], + [31147,7961], + [31149,1414], + [31151,14270], + [31153,181232], + [31155,21165], + [31157,36074], + [31159,17171], + [31161,5231], + [31163,3033], + [31165,1219], + [31167,5957], + [31169,5057], + [31171,645], + [31173,7181], + [31175,4206], + [31177,20361], + [31179,9332], + [31181,3537], + [31183,783], + [31185,13745], + [32001,24259], + [32003,2182004], + [32005,48132], + [32007,52297], + [32009,969], + [32011,1859], + [32013,16828], + [32015,5643], + [32017,5180], + [32019,54380], + [32021,4460], + [32023,44380], + [32027,6615], + [32029,3988], + [32031,456936], + [32033,9679], + [32510,54773], + [33001,60887], + [33003,48138], + [33005,76042], + [33007,31741], + [33009,89777], + [33011,413035], + [33013,149917], + [33015,306359], + [33017,129124], + [33019,43104], + [34001,266105], + [34003,930390], + [34005,445702], + [34007,506738], + [34009,93086], + [34011,151906], + [34013,795404], + [34015,291165], + [34017,670046], + [34019,124823], + [34021,367922], + [34023,825920], + [34025,621659], + [34027,493379], + [34029,596415], + [34031,503637], + [34033,62990], + [34035,329838], + [34037,141483], + [34039,554033], + [34041,105862], + [35001,677858], + [35003,3526], + [35005,65144], + [35006,26891], + [35007,12168], + [35009,49732], + [35011,2040], + [35013,216069], + [35015,57732], + [35017,27669], + [35019,4353], + [35021,441], + [35023,4297], + [35025,70277], + [35027,19461], + [35028,18625], + [35029,24083], + [35031,72438], + [35033,4536], + [35035,66137], + [35037,8326], + [35039,39159], + [35041,18888], + [35043,142704], + [35045,126515], + [35047,27738], + [35049,149293], + [35051,11031], + [35053,16858], + [35055,32786], + [35057,15519], + [35059,4133], + [35061,76027], + [36001,306968], + [36003,46688], + [36005,1435068], + [36007,193188], + [36009,77121], + [36011,77425], + [36013,128496], + [36015,84895], + [36017,47909], + [36019,80583], + [36021,60371], + [36023,47865], + [36025,44995], + [36027,293754], + [36029,919355], + [36031,37459], + [36033,50477], + [36035,53646], + [36037,57808], + [36039,47424], + [36041,4515], + [36043,62057], + [36045,112842], + [36047,2589974], + [36049,26572], + [36051,63591], + [36053,71205], + [36055,743341], + [36057,49302], + [36059,1356509], + [36061,1631993], + [36063,210820], + [36065,229959], + [36067,462872], + [36069,109511], + [36071,380085], + [36073,40904], + [36075,118339], + [36077,59972], + [36079,98787], + [36081,2287388], + [36083,159185], + [36085,474893], + [36087,324422], + [36089,108913], + [36091,228502], + [36093,154859], + [36095,31222], + [36097,17920], + [36099,34390], + [36101,96422], + [36103,1483832], + [36105,75116], + [36107,48686], + [36109,102642], + [36111,178665], + [36113,64276], + [36115,61616], + [36117,90519], + [36119,968890], + [36121,40305], + [36123,25011], + [37001,163324], + [37003,37213], + [37005,11008], + [37007,24902], + [37009,26863], + [37011,17506], + [37013,47168], + [37015,19380], + [37017,33407], + [37019,131815], + [37021,256886], + [37023,89968], + [37025,206615], + [37027,81884], + [37029,10551], + [37031,69070], + [37033,22684], + [37035,157613], + [37037,71338], + [37039,27969], + [37041,14097], + [37043,10946], + [37045,97282], + [37047,56068], + [37049,102491], + [37051,332861], + [37053,26363], + [37055,36222], + [37057,165381], + [37059,42257], + [37061,58967], + [37063,311848], + [37065,52648], + [37067,375195], + [37069,66362], + [37071,219271], + [37073,11548], + [37075,8509], + [37077,59328], + [37079,21033], + [37081,527868], + [37083,51190], + [37085,132283], + [37087,61053], + [37089,114913], + [37091,24012], + [37093,53957], + [37095,5213], + [37097,175538], + [37099,42938], + [37101,196870], + [37103,9594], + [37105,60481], + [37107,56756], + [37109,82919], + [37111,45227], + [37113,34813], + [37115,21499], + [37117,22849], + [37119,1074475], + [37121,15004], + [37123,27252], + [37125,97294], + [37127,94030], + [37129,227938], + [37131,19946], + [37133,195069], + [37135,144836], + [37137,12701], + [37139,39514], + [37141,60399], + [37143,13430], + [37145,39345], + [37147,178433], + [37149,20557], + [37151,143118], + [37153,44997], + [37155,132596], + [37157,91077], + [37159,140296], + [37161,66599], + [37163,63385], + [37165,35076], + [37167,61588], + [37169,45781], + [37171,71971], + [37173,14260], + [37175,33775], + [37177,4095], + [37179,231053], + [37181,44479], + [37183,1069079], + [37185,19898], + [37187,11922], + [37189,54925], + [37191,123603], + [37193,68469], + [37195,81435], + [37197,37602], + [37199,17760], + [38001,2311], + [38003,10706], + [38005,6873], + [38007,922], + [38009,6502], + [38011,3148], + [38013,2182], + [38015,94793], + [38017,176975], + [38019,3803], + [38021,4938], + [38023,2335], + [38025,4395], + [38027,2301], + [38029,3310], + [38031,3260], + [38033,1845], + [38035,70224], + [38037,2353], + [38039,2409], + [38041,2547], + [38043,2466], + [38045,4125], + [38047,1872], + [38049,5878], + [38051,2597], + [38053,13334], + [38055,9584], + [38057,8462], + [38059,30868], + [38061,10321], + [38063,2894], + [38065,1842], + [38067,6947], + [38069,4126], + [38071,11583], + [38073,5314], + [38075,2442], + [38077,16254], + [38079,14511], + [38081,3872], + [38083,1409], + [38085,4373], + [38087,742], + [38089,31081], + [38091,1744], + [38093,20965], + [38095,2224], + [38097,8008], + [38099,10751], + [38101,68812], + [38103,3976], + [38105,35208], + [39001,27776], + [39003,103175], + [39005,53536], + [39007,97830], + [39009,65917], + [39011,45729], + [39013,68024], + [39015,43572], + [39017,380019], + [39019,27332], + [39021,38845], + [39023,134726], + [39025,204275], + [39027,41957], + [39029,103190], + [39031,36585], + [39033,41821], + [39035,1247451], + [39037,51513], + [39039,38160], + [39041,201135], + [39043,74780], + [39045,154457], + [39047,28620], + [39049,1290360], + [39051,42253], + [39053,30088], + [39055,93843], + [39057,166502], + [39059,39111], + [39061,813589], + [39063,75837], + [39065,31425], + [39067,15211], + [39069,27208], + [39071,43016], + [39073,28390], + [39075,43901], + [39077,58339], + [39079,32450], + [39081,66371], + [39083,61481], + [39085,229954], + [39087,60184], + [39089,173750], + [39091,45316], + [39093,307670], + [39095,431102], + [39097,44135], + [39099,229961], + [39101,65299], + [39103,177980], + [39105,23078], + [39107,40884], + [39109,105371], + [39111,13942], + [39113,531670], + [39115,14640], + [39117,35043], + [39119,86131], + [39121,14416], + [39123,40632], + [39125,18809], + [39127,36022], + [39129,57762], + [39131,28000], + [39133,162511], + [39135,41093], + [39137,33911], + [39139,121100], + [39141,76948], + [39143,59029], + [39145,76040], + [39147,55351], + [39149,48749], + [39151,372404], + [39153,541334], + [39155,200367], + [39157,92335], + [39159,56707], + [39161,28261], + [39163,13083], + [39165,229132], + [39167,60426], + [39169,116099], + [39171,36816], + [39173,130150], + [39175,22000], + [40001,22220], + [40003,5847], + [40005,13823], + [40007,5377], + [40009,22268], + [40011,9556], + [40013,46457], + [40015,29242], + [40017,140455], + [40019,48319], + [40021,48664], + [40023,14807], + [40025,2174], + [40027,279274], + [40029,5581], + [40031,121762], + [40033,5858], + [40035,14390], + [40037,71427], + [40039,29152], + [40041,42433], + [40043,4922], + [40045,4015], + [40047,61898], + [40049,27835], + [40051,55071], + [40053,4397], + [40055,5861], + [40057,2710], + [40059,3760], + [40061,12687], + [40063,13372], + [40065,25063], + [40067,6158], + [40069,11064], + [40071,44402], + [40073,15694], + [40075,8886], + [40077,10348], + [40079,50026], + [40081,34895], + [40083,46683], + [40085,10063], + [40087,39247], + [40089,33016], + [40091,19725], + [40093,7692], + [40095,16505], + [40097,41044], + [40099,13946], + [40101,68736], + [40103,11335], + [40105,10322], + [40107,12067], + [40109,787216], + [40111,38749], + [40113,47226], + [40115,31454], + [40117,16412], + [40119,81815], + [40121,44146], + [40123,38355], + [40125,72154], + [40127,11128], + [40129,3667], + [40131,91353], + [40133,24832], + [40135,41709], + [40137,43647], + [40139,20805], + [40141,7413], + [40143,646419], + [40145,78958], + [40147,51886], + [40149,11225], + [40151,9043], + [40153,20727], + [41001,16019], + [41003,91107], + [41005,410463], + [41007,39102], + [41009,51375], + [41011,63686], + [41013,23011], + [41015,22650], + [41017,186251], + [41019,109114], + [41021,1878], + [41023,7189], + [41025,7267], + [41027,23209], + [41029,216574], + [41031,23607], + [41033,86251], + [41035,66921], + [41037,7837], + [41039,373340], + [41041,48547], + [41043,125048], + [41045,30412], + [41047,339641], + [41049,11303], + [41051,804606], + [41053,83037], + [41055,1642], + [41057,26389], + [41059,77129], + [41061,26337], + [41063,7004], + [41065,26130], + [41067,589481], + [41069,1415], + [41071,104831], + [42001,102470], + [42003,1221744], + [42005,65867], + [42007,165833], + [42009,48337], + [42011,418025], + [42013,123157], + [42015,60963], + [42017,626806], + [42019,186899], + [42021,133009], + [42023,4611], + [42025,63887], + [42027,161960], + [42029,519560], + [42031,38715], + [42033,79908], + [42035,38915], + [42037,65715], + [42039,85665], + [42041,249328], + [42043,275632], + [42045,564554], + [42047,30340], + [42049,273835], + [42051,131302], + [42053,7313], + [42055,154147], + [42057,14506], + [42059,36870], + [42061,45369], + [42063,85032], + [42065,43846], + [42067,24624], + [42069,210652], + [42071,540999], + [42073,86727], + [42075,139729], + [42077,365052], + [42079,317663], + [42081,114330], + [42083,41401], + [42085,111518], + [42087,46276], + [42089,168032], + [42091,823823], + [42093,18259], + [42095,302809], + [42097,91761], + [42099,46053], + [42101,1579075], + [42103,55453], + [42105,16806], + [42107,142674], + [42109,40483], + [42111,74361], + [42113,6135], + [42115,40970], + [42117,40944], + [42119,45111], + [42121,51818], + [42123,39756], + [42125,207212], + [42127,51422], + [42129,352590], + [42131,27327], + [42133,445565], + [44001,48764], + [44003,163869], + [44005,82801], + [44007,635737], + [44009,126060], + [45001,24627], + [45003,168301], + [45005,9024], + [45007,198064], + [45009,14376], + [45011,21346], + [45013,186095], + [45015,215044], + [45017,14663], + [45019,401165], + [45021,56895], + [45023,32311], + [45025,45953], + [45027,33957], + [45029,37585], + [45031,67027], + [45033,30689], + [45035,158299], + [45037,26927], + [45039,22565], + [45041,138475], + [45043,61952], + [45045,507003], + [45047,70411], + [45049,19564], + [45051,332172], + [45053,28657], + [45055,65112], + [45057,92308], + [45059,66846], + [45061,17365], + [45063,290278], + [45065,9531], + [45067,31308], + [45069,26753], + [45071,38194], + [45073,77528], + [45075,87687], + [45077,124029], + [45079,411357], + [45081,20303], + [45083,307617], + [45085,106757], + [45087,27490], + [45089,31324], + [45091,265872], + [46003,2763], + [46005,18346], + [46007,3425], + [46009,6929], + [46011,34601], + [46013,38915], + [46015,5258], + [46017,2026], + [46019,10225], + [46021,1485], + [46023,9349], + [46025,3685], + [46027,13957], + [46029,28026], + [46031,4150], + [46033,8719], + [46035,19871], + [46037,5486], + [46039,4318], + [46041,5833], + [46043,2929], + [46045,3909], + [46047,6747], + [46049,2312], + [46051,7149], + [46053,4186], + [46055,2018], + [46057,6025], + [46059,3256], + [46061,3399], + [46063,1306], + [46065,17608], + [46067,7308], + [46069,1319], + [46071,3290], + [46073,2018], + [46075,793], + [46077,4944], + [46079,12717], + [46081,25478], + [46083,56826], + [46085,3848], + [46087,5548], + [46089,2297], + [46091,4891], + [46093,27717], + [46095,2052], + [46097,2211], + [46099,188674], + [46101,6507], + [46102,14335], + [46103,110685], + [46105,2897], + [46107,2315], + [46109,10287], + [46111,2379], + [46115,6483], + [46117,3017], + [46119,1305], + [46121,10195], + [46123,5458], + [46125,8300], + [46127,15368], + [46129,5457], + [46135,22717], + [46137,2791], + [47001,76061], + [47003,48292], + [47005,16140], + [47007,14836], + [47009,129927], + [47011,105749], + [47013,39797], + [47015,14178], + [47017,27886], + [47019,56433], + [47021,40181], + [47023,17190], + [47025,31732], + [47027,7654], + [47029,35552], + [47031,55209], + [47033,14399], + [47035,59216], + [47037,687488], + [47039,11686], + [47041,19847], + [47043,52680], + [47045,37416], + [47047,40164], + [47049,18213], + [47051,41725], + [47053,49228], + [47055,29285], + [47057,23101], + [47059,68834], + [47061,13344], + [47063,64132], + [47065,360919], + [47067,6587], + [47069,25443], + [47071,25715], + [47073,56611], + [47075,17623], + [47077,27977], + [47079,32284], + [47081,24813], + [47083,8164], + [47085,18435], + [47087,11682], + [47089,53679], + [47091,17753], + [47093,461104], + [47095,7401], + [47097,25989], + [47099,43390], + [47101,12027], + [47103,33924], + [47105,52340], + [47107,53053], + [47109,25844], + [47111,23842], + [47113,97625], + [47115,28538], + [47117,32965], + [47119,91976], + [47121,12104], + [47123,46064], + [47125,200180], + [47127,6378], + [47129,21545], + [47131,30365], + [47133,22068], + [47135,7962], + [47137,5079], + [47139,16814], + [47141,77447], + [47143,32719], + [47145,53075], + [47147,70280], + [47149,315815], + [47151,21969], + [47153,14816], + [47155,97068], + [47157,936374], + [47159,19740], + [47161,13427], + [47163,157050], + [47165,183437], + [47167,61447], + [47169,10231], + [47171,17811], + [47173,19488], + [47175,5760], + [47177,40702], + [47179,127805], + [47181,16693], + [47183,33510], + [47185,26800], + [47187,225389], + [47189,136666], + [48001,57810], + [48003,18036], + [48005,87322], + [48007,24462], + [48009,8716], + [48011,1973], + [48013,49528], + [48015,29764], + [48017,7100], + [48019,22215], + [48021,84522], + [48023,3577], + [48025,32611], + [48027,348574], + [48029,1952843], + [48031,11478], + [48033,613], + [48035,18296], + [48037,93373], + [48039,360677], + [48041,222981], + [48043,9231], + [48045,1457], + [48047,7141], + [48049,37855], + [48051,18058], + [48053,46530], + [48055,42144], + [48057,21668], + [48059,13856], + [48061,421666], + [48063,12878], + [48065,6009], + [48067,30059], + [48069,7673], + [48071,41305], + [48073,52118], + [48075,7253], + [48077,10403], + [48079,2887], + [48081,3303], + [48083,8334], + [48085,973977], + [48087,2969], + [48089,21224], + [48091,141642], + [48093,13529], + [48095,3266], + [48097,40041], + [48099,75280], + [48101,1642], + [48103,4802], + [48105,3484], + [48107,5836], + [48109,2214], + [48111,7304], + [48113,2606868], + [48115,12813], + [48117,18736], + [48119,5249], + [48121,833822], + [48123,20340], + [48125,2203], + [48127,10438], + [48129,3342], + [48131,11268], + [48133,18273], + [48135,160579], + [48137,1918], + [48139,173772], + [48141,836062], + [48143,41841], + [48145,17272], + [48147,34537], + [48149,25141], + [48151,3856], + [48153,5803], + [48155,1275], + [48157,765394], + [48159,10716], + [48161,19714], + [48163,19871], + [48165,20706], + [48167,332885], + [48169,6070], + [48171,26459], + [48173,1510], + [48175,7565], + [48177,20731], + [48179,22410], + [48181,131014], + [48183,123443], + [48185,27984], + [48187,158966], + [48189,33826], + [48191,3048], + [48193,8332], + [48195,5520], + [48197,3945], + [48199,56765], + [48201,4646630], + [48203,66580], + [48205,5669], + [48207,5726], + [48209,213366], + [48211,3994], + [48213,81070], + [48215,855176], + [48217,35689], + [48219,23064], + [48221,58318], + [48223,36486], + [48225,22954], + [48227,36349], + [48229,4415], + [48231,94162], + [48233,21344], + [48235,1620], + [48237,8852], + [48239,14816], + [48241,35506], + [48243,2241], + [48245,254340], + [48247,5231], + [48249,40972], + [48251,167212], + [48253,19943], + [48255,15545], + [48257,123804], + [48259,43769], + [48261,568], + [48263,647], + [48265,51843], + [48267,4373], + [48269,237], + [48271,3659], + [48273,30974], + [48275,3705], + [48277,49611], + [48279,13123], + [48281,20862], + [48283,7416], + [48285,20021], + [48287,17058], + [48289,17225], + [48291,83702], + [48293,23417], + [48295,3398], + [48297,12139], + [48299,21047], + [48301,98], + [48303,304808], + [48305,5830], + [48307,8057], + [48309,251089], + [48311,774], + [48313,14197], + [48315,10017], + [48317,5649], + [48319,4186], + [48321,36774], + [48323,58174], + [48325,50057], + [48327,2119], + [48329,168167], + [48331,24770], + [48333,4889], + [48335,8523], + [48337,19489], + [48339,571949], + [48341,21399], + [48343,12373], + [48345,1252], + [48347,65339], + [48349,48995], + [48351,13914], + [48353,14904], + [48355,361540], + [48357,10131], + [48359,2094], + [48361,84069], + [48363,28540], + [48365,23327], + [48367,133811], + [48369,9718], + [48371,15815], + [48373,48913], + [48375,119674], + [48377,6975], + [48379,11766], + [48381,134026], + [48383,3766], + [48385,3408], + [48387,12171], + [48389,15492], + [48391,7145], + [48393,805], + [48395,16990], + [48397,97175], + [48399,10277], + [48401,53755], + [48403,10471], + [48405,8286], + [48407,28180], + [48409,67008], + [48411,5991], + [48413,2983], + [48415,17096], + [48417,3296], + [48419,25349], + [48421,3059], + [48423,227449], + [48425,8860], + [48427,64078], + [48429,9364], + [48431,1231], + [48433,1476], + [48435,3824], + [48437,7432], + [48439,2049770], + [48441,136870], + [48443,896], + [48445,12528], + [48447,1436], + [48449,32640], + [48451,117986], + [48453,1226805], + [48455,14620], + [48457,21518], + [48459,41018], + [48461,3659], + [48463,26920], + [48465,48969], + [48467,55103], + [48469,92109], + [48471,72321], + [48473,51832], + [48475,11658], + [48477,35163], + [48479,273526], + [48481,41577], + [48483,5338], + [48485,131596], + [48487,12833], + [48489,21588], + [48491,547604], + [48493,49173], + [48495,7867], + [48497,66290], + [48499,44366], + [48501,8631], + [48503,18036], + [48505,14304], + [48507,12039], + [49001,6517], + [49003,53946], + [49005,124165], + [49007,20308], + [49009,613], + [49011,345767], + [49013,20148], + [49015,10117], + [49017,4998], + [49019,9640], + [49021,51213], + [49023,11301], + [49025,7484], + [49027,12854], + [49029,11664], + [49031,1866], + [49033,2389], + [49035,1133646], + [49037,15302], + [49039,29850], + [49041,21280], + [49043,41103], + [49045,67397], + [49047,36084], + [49049,605490], + [49051,31708], + [49053,165811], + [49055,2689], + [49057,251498], + [50001,36882], + [50003,35746], + [50005,30234], + [50007,162646], + [50009,6200], + [50011,49116], + [50013,7022], + [50015,25318], + [50017,28908], + [50019,26901], + [50021,58892], + [50023,58350], + [50025,42823], + [50027,55275], + [51001,32673], + [51003,107405], + [51005,15157], + [51007,12953], + [51009,31775], + [51011,15707], + [51013,233464], + [51015,75079], + [51017,4307], + [51019,78376], + [51021,6388], + [51023,33343], + [51025,16520], + [51027,21788], + [51029,17059], + [51031,55225], + [51033,30381], + [51035,29801], + [51036,7014], + [51037,12040], + [51041,343551], + [51043,14423], + [51045,5110], + [51047,51101], + [51049,9824], + [51051,14756], + [51053,28485], + [51057,10998], + [51059,1145862], + [51061,69728], + [51063,15704], + [51065,26594], + [51067,56187], + [51069,86415], + [51071,16772], + [51073,37222], + [51075,22865], + [51077,15742], + [51079,19519], + [51081,11525], + [51083,34552], + [51085,105537], + [51087,327535], + [51089,51308], + [51091,2204], + [51093,36627], + [51095,74916], + [51097,7042], + [51099,26229], + [51101,16688], + [51103,10724], + [51105,23948], + [51107,395134], + [51109,36040], + [51111,12282], + [51113,13170], + [51115,8788], + [51117,30728], + [51119,10675], + [51121,98140], + [51125,14831], + [51127,21686], + [51131,11885], + [51133,12190], + [51135,15433], + [51137,36010], + [51139,23788], + [51141,17748], + [51143,61256], + [51145,28815], + [51147,22905], + [51149,38114], + [51153,461423], + [51155,34182], + [51157,7378], + [51159,8884], + [51161,93823], + [51163,22570], + [51165,80284], + [51167,27141], + [51169,21902], + [51171,43224], + [51173,30767], + [51175,17880], + [51177,132833], + [51179,146773], + [51181,6523], + [51183,11377], + [51185,41603], + [51187,39492], + [51191,54071], + [51193,17751], + [51195,38486], + [51197,28844], + [51199,67982], + [51510,157613], + [51520,16912], + [51530,6484], + [51540,47096], + [51550,239982], + [51570,17428], + [51580,5598], + [51590,41070], + [51595,5442], + [51600,23531], + [51610,14128], + [51620,8147], + [51630,28622], + [51640,6517], + [51650,135041], + [51660,53273], + [51670,22456], + [51678,7241], + [51680,80569], + [51683,41174], + [51685,16986], + [51690,12852], + [51700,179673], + [51710,244601], + [51720,3970], + [51730,31362], + [51735,12090], + [51740,95097], + [51750,17691], + [51760,226622], + [51770,99229], + [51775,25317], + [51790,24432], + [51800,90093], + [51810,450201], + [51820,22140], + [51830,14927], + [51840,27897], + [53001,19594], + [53003,22421], + [53005,197518], + [53007,76229], + [53009,75392], + [53011,473252], + [53013,3992], + [53015,106778], + [53017,42023], + [53019,7578], + [53021,92009], + [53023,2230], + [53025,95502], + [53027,72779], + [53029,82866], + [53031,31285], + [53033,2195502], + [53035,265882], + [53037,45897], + [53039,21721], + [53041,78145], + [53043,10574], + [53045,63804], + [53047,41842], + [53049,21688], + [53051,13377], + [53053,877013], + [53055,16788], + [53057,125612], + [53059,11753], + [53061,798808], + [53063,505505], + [53065,44655], + [53067,279711], + [53069,4268], + [53071,60365], + [53073,220821], + [53075,49231], + [53077,249697], + [54001,16633], + [54003,115329], + [54005,22368], + [54007,14190], + [54009,22459], + [54011,94339], + [54013,7295], + [54015,8709], + [54017,8560], + [54019,43576], + [54021,8041], + [54023,11616], + [54025,35155], + [54027,23309], + [54029,29383], + [54031,13805], + [54033,67908], + [54035,28907], + [54037,56506], + [54039,183279], + [54041,16166], + [54043,20850], + [54045,33154], + [54047,18661], + [54049,56355], + [54051,31308], + [54053,26820], + [54055,59919], + [54057,27167], + [54059,24290], + [54061,105474], + [54063,13401], + [54065,17709], + [54067,25078], + [54069,42143], + [54071,7001], + [54073,7482], + [54075,8450], + [54077,33683], + [54079,56610], + [54081,75252], + [54083,28930], + [54085,9844], + [54087,14020], + [54089,12848], + [54091,16864], + [54093,6982], + [54095,8811], + [54097,24502], + [54099,40303], + [54101,8386], + [54103,15436], + [54105,5798], + [54107,84960], + [54109,21281], + [55001,20094], + [55003,15617], + [55005,45229], + [55007,14993], + [55009,261368], + [55011,13126], + [55013,15289], + [55015,49928], + [55017,63892], + [55019,34579], + [55021,57133], + [55023,16235], + [55025,536078], + [55027,87715], + [55029,27472], + [55031,43295], + [55033,44759], + [55035,103514], + [55037,4314], + [55039,102597], + [55041,8995], + [55043,51733], + [55045,36896], + [55047,18755], + [55049,23618], + [55051,5687], + [55053,20522], + [55055,84701], + [55057,26478], + [55059,168524], + [55061,20387], + [55063,117894], + [55065,16715], + [55067,19146], + [55069,27744], + [55071,79185], + [55073,135396], + [55075,40391], + [55077,15304], + [55078,4558], + [55079,951226], + [55081,45771], + [55083,37646], + [55085,35381], + [55087,185700], + [55089,88597], + [55091,7265], + [55093,41977], + [55095,43438], + [55097,70632], + [55099,13416], + [55101,195602], + [55103,17459], + [55105,162152], + [55107,14132], + [55109,88732], + [55111,63922], + [55113,16399], + [55115,40904], + [55117,115178], + [55119,20325], + [55121,29499], + [55123,30633], + [55125,21751], + [55127,103074], + [55129,15688], + [55131,134925], + [55133,400475], + [55135,51245], + [55137,24193], + [55139,170411], + [55141,73112], + [56001,38390], + [56003,11882], + [56005,47409], + [56007,15247], + [56009,13921], + [56011,7472], + [56013,39812], + [56015,13342], + [56017,4607], + [56019,8487], + [56021,98320], + [56023,19274], + [56025,80333], + [56027,2422], + [56029,29148], + [56031,8582], + [56033,30140], + [56035,9880], + [56037,43521], + [56039,23280], + [56041,20479], + [56043,8027], + [56045,7049] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-over65-2019.json b/data/regional/united-states/economics/poverty/us-poverty-rate-over65-2019.json new file mode 100644 index 0000000..d5495e6 --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-over65-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Over 18 Poverty Rate", + "description" : "Percent of the population aged over 65 living below the poverty line.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.poverty.rate.over65.2019"], + [1001,0.087], + [1003,0.074], + [1005,0.168], + [1007,null], + [1009,0.109], + [1011,null], + [1013,null], + [1015,0.097], + [1017,0.114], + [1019,null], + [1021,0.116], + [1023,null], + [1025,null], + [1027,null], + [1029,null], + [1031,0.083], + [1033,0.104], + [1035,null], + [1037,null], + [1039,0.122], + [1041,null], + [1043,0.097], + [1045,0.085], + [1047,0.167], + [1049,0.119], + [1051,0.063], + [1053,0.103], + [1055,0.107], + [1057,null], + [1059,0.131], + [1061,0.098], + [1063,null], + [1065,null], + [1067,null], + [1069,0.1], + [1071,0.111], + [1073,0.104], + [1075,null], + [1077,0.087], + [1079,0.104], + [1081,0.097], + [1083,0.102], + [1085,null], + [1087,null], + [1089,0.07], + [1091,null], + [1093,null], + [1095,0.092], + [1097,0.099], + [1099,null], + [1101,0.107], + [1103,0.105], + [1105,null], + [1107,null], + [1109,0.117], + [1111,null], + [1113,0.167], + [1115,0.097], + [1117,0.061], + [1119,null], + [1121,0.13], + [1123,0.085], + [1125,0.084], + [1127,0.09], + [1129,null], + [1131,null], + [1133,null], + [2013,null], + [2016,null], + [2020,0.055], + [2050,null], + [2060,null], + [2068,null], + [2070,null], + [2090,0.05], + [2100,null], + [2105,null], + [2110,null], + [2122,0.067], + [2130,null], + [2150,null], + [2158,null], + [2164,null], + [2170,0.072], + [2180,null], + [2185,null], + [2188,null], + [2195,null], + [2198,null], + [2220,null], + [2230,null], + [2240,null], + [2261,null], + [2275,null], + [2282,null], + [2290,null], + [4001,0.242], + [4003,0.087], + [4005,0.112], + [4007,0.094], + [4009,0.133], + [4011,null], + [4012,null], + [4013,0.083], + [4015,0.083], + [4017,0.131], + [4019,0.088], + [4021,0.08], + [4023,0.175], + [4025,0.08], + [4027,0.14], + [5001,null], + [5003,null], + [5005,0.088], + [5007,0.077], + [5009,0.113], + [5011,null], + [5013,null], + [5015,null], + [5017,null], + [5019,null], + [5021,null], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,0.076], + [5033,0.107], + [5035,0.115], + [5037,null], + [5039,null], + [5041,null], + [5043,null], + [5045,0.123], + [5047,null], + [5049,null], + [5051,0.086], + [5053,null], + [5055,0.09], + [5057,null], + [5059,0.112], + [5061,null], + [5063,0.073], + [5065,null], + [5067,null], + [5069,0.145], + [5071,0.135], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,0.089], + [5087,null], + [5089,null], + [5091,0.116], + [5093,0.109], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,0.14], + [5105,null], + [5107,0.145], + [5109,null], + [5111,null], + [5113,null], + [5115,0.089], + [5117,null], + [5119,0.103], + [5121,null], + [5123,0.161], + [5125,0.069], + [5127,null], + [5129,null], + [5131,0.101], + [5133,null], + [5135,null], + [5137,null], + [5139,0.086], + [5141,null], + [5143,0.082], + [5145,0.121], + [5147,null], + [5149,null], + [6001,0.095], + [6003,null], + [6005,null], + [6007,0.097], + [6009,null], + [6011,null], + [6013,0.064], + [6015,null], + [6017,0.057], + [6019,0.128], + [6021,null], + [6023,0.097], + [6025,0.193], + [6027,null], + [6029,0.123], + [6031,0.117], + [6033,0.112], + [6035,null], + [6037,0.132], + [6039,0.096], + [6041,0.056], + [6043,null], + [6045,0.097], + [6047,0.11], + [6049,null], + [6051,null], + [6053,0.081], + [6055,0.079], + [6057,0.071], + [6059,0.092], + [6061,0.077], + [6063,null], + [6065,0.105], + [6067,0.1], + [6069,0.053], + [6071,0.109], + [6073,0.089], + [6075,0.136], + [6077,0.099], + [6079,0.068], + [6081,0.065], + [6083,0.077], + [6085,0.081], + [6087,0.077], + [6089,0.091], + [6091,null], + [6093,0.107], + [6095,0.069], + [6097,0.07], + [6099,0.107], + [6101,0.1], + [6103,0.11], + [6105,null], + [6107,0.137], + [6109,0.094], + [6111,0.07], + [6113,0.084], + [6115,0.085], + [8001,0.072], + [8003,null], + [8005,0.066], + [8007,null], + [8009,null], + [8011,null], + [8013,0.063], + [8014,null], + [8015,null], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,0.099], + [8031,0.109], + [8033,null], + [8035,0.029], + [8037,null], + [8039,null], + [8041,0.064], + [8043,0.088], + [8045,null], + [8047,null], + [8049,null], + [8051,null], + [8053,null], + [8055,null], + [8057,null], + [8059,0.058], + [8061,null], + [8063,null], + [8065,null], + [8067,null], + [8069,0.064], + [8071,null], + [8073,null], + [8075,null], + [8077,0.071], + [8079,null], + [8081,null], + [8083,null], + [8085,0.097], + [8087,null], + [8089,null], + [8091,null], + [8093,null], + [8095,null], + [8097,null], + [8099,null], + [8101,0.117], + [8103,null], + [8105,null], + [8107,null], + [8109,null], + [8111,null], + [8113,null], + [8115,null], + [8117,null], + [8119,null], + [8121,null], + [8123,0.084], + [8125,null], + [9001,0.072], + [9003,0.088], + [9005,0.057], + [9007,0.055], + [9009,0.076], + [9011,0.055], + [9013,0.041], + [9015,0.075], + [10001,0.08], + [10003,0.068], + [10005,0.058], + [11001,0.145], + [12001,0.09], + [12003,null], + [12005,0.092], + [12007,null], + [12009,0.078], + [12011,0.13], + [12013,null], + [12015,0.067], + [12017,0.081], + [12019,0.063], + [12021,0.064], + [12023,0.093], + [12027,0.14], + [12029,null], + [12031,0.11], + [12033,0.068], + [12035,0.07], + [12037,null], + [12039,0.099], + [12041,null], + [12043,null], + [12045,null], + [12047,null], + [12049,0.143], + [12051,0.177], + [12053,0.095], + [12055,0.088], + [12057,0.111], + [12059,null], + [12061,0.066], + [12063,0.115], + [12065,null], + [12067,null], + [12069,0.076], + [12071,0.079], + [12073,0.081], + [12075,0.126], + [12077,null], + [12079,null], + [12081,0.069], + [12083,0.08], + [12085,0.069], + [12086,0.213], + [12087,0.11], + [12089,0.074], + [12091,0.073], + [12093,0.105], + [12095,0.115], + [12097,0.11], + [12099,0.092], + [12101,0.098], + [12103,0.1], + [12105,0.099], + [12107,0.119], + [12109,0.057], + [12111,0.1], + [12113,0.064], + [12115,0.062], + [12117,0.085], + [12119,0.052], + [12121,0.046], + [12123,null], + [12125,null], + [12127,0.092], + [12129,null], + [12131,0.059], + [12133,null], + [13001,null], + [13003,null], + [13005,null], + [13007,null], + [13009,0.124], + [13011,null], + [13013,0.078], + [13015,0.13], + [13017,null], + [13019,null], + [13021,0.149], + [13023,null], + [13025,null], + [13027,null], + [13029,null], + [13031,0.125], + [13033,null], + [13035,null], + [13037,null], + [13039,0.09], + [13043,null], + [13045,0.095], + [13047,0.085], + [13049,null], + [13051,0.086], + [13053,null], + [13055,null], + [13057,0.075], + [13059,0.093], + [13061,null], + [13063,0.113], + [13065,null], + [13067,0.06], + [13069,0.128], + [13071,0.144], + [13073,0.064], + [13075,null], + [13077,0.05], + [13079,null], + [13081,0.103], + [13083,null], + [13085,null], + [13087,0.167], + [13089,0.099], + [13091,null], + [13093,null], + [13095,0.154], + [13097,0.085], + [13099,null], + [13101,null], + [13103,0.086], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,0.049], + [13115,0.091], + [13117,0.064], + [13119,null], + [13121,0.11], + [13123,null], + [13125,null], + [13127,0.068], + [13129,0.135], + [13131,null], + [13133,null], + [13135,0.077], + [13137,0.149], + [13139,0.073], + [13141,null], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,0.065], + [13153,0.107], + [13155,null], + [13157,0.097], + [13159,null], + [13161,null], + [13163,null], + [13165,null], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,0.22], + [13177,null], + [13179,0.132], + [13181,null], + [13183,null], + [13185,0.166], + [13187,null], + [13189,null], + [13191,null], + [13193,null], + [13195,null], + [13197,null], + [13199,null], + [13201,null], + [13205,null], + [13207,null], + [13209,null], + [13211,null], + [13213,0.097], + [13215,0.136], + [13217,0.084], + [13219,null], + [13221,null], + [13223,0.089], + [13225,null], + [13227,null], + [13229,null], + [13231,null], + [13233,0.1], + [13235,null], + [13237,null], + [13239,null], + [13241,null], + [13243,null], + [13245,0.117], + [13247,0.058], + [13249,null], + [13251,null], + [13253,null], + [13255,0.085], + [13257,null], + [13259,null], + [13261,0.159], + [13263,null], + [13265,null], + [13267,null], + [13269,null], + [13271,null], + [13273,null], + [13275,0.093], + [13277,0.121], + [13279,0.111], + [13281,null], + [13283,null], + [13285,0.121], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,0.091], + [13297,0.09], + [13299,0.146], + [13301,null], + [13303,null], + [13305,null], + [13307,null], + [13309,null], + [13311,null], + [13313,0.116], + [13315,null], + [13317,null], + [13319,null], + [13321,null], + [15001,0.098], + [15003,0.078], + [15005,null], + [15007,0.064], + [15009,0.081], + [16001,0.092], + [16003,null], + [16005,0.094], + [16007,null], + [16009,null], + [16011,0.092], + [16013,null], + [16015,null], + [16017,0.083], + [16019,0.06], + [16021,null], + [16023,null], + [16025,null], + [16027,0.083], + [16029,null], + [16031,null], + [16033,null], + [16035,null], + [16037,null], + [16039,null], + [16041,null], + [16043,null], + [16045,null], + [16047,null], + [16049,null], + [16051,null], + [16053,null], + [16055,0.069], + [16057,0.063], + [16059,null], + [16061,null], + [16063,null], + [16065,0.079], + [16067,null], + [16069,null], + [16071,null], + [16073,null], + [16075,null], + [16077,null], + [16079,null], + [16081,null], + [16083,0.119], + [16085,null], + [16087,null], + [17001,0.083], + [17003,null], + [17005,null], + [17007,0.063], + [17009,null], + [17011,null], + [17013,null], + [17015,null], + [17017,null], + [17019,0.075], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,0.099], + [17031,0.114], + [17033,null], + [17035,null], + [17037,0.065], + [17039,null], + [17041,null], + [17043,0.054], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,null], + [17055,0.116], + [17057,null], + [17059,null], + [17061,null], + [17063,null], + [17065,null], + [17067,null], + [17069,null], + [17071,null], + [17073,null], + [17075,null], + [17077,0.1], + [17079,null], + [17081,0.08], + [17083,null], + [17085,null], + [17087,null], + [17089,0.07], + [17091,0.107], + [17093,0.064], + [17095,0.094], + [17097,0.06], + [17099,0.065], + [17101,null], + [17103,null], + [17105,null], + [17107,null], + [17109,0.083], + [17111,0.053], + [17113,0.1], + [17115,0.087], + [17117,0.054], + [17119,0.074], + [17121,0.073], + [17123,null], + [17125,null], + [17127,null], + [17129,null], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,0.084], + [17145,null], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,null], + [17157,null], + [17159,null], + [17161,0.087], + [17163,0.086], + [17165,null], + [17167,0.07], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,0.081], + [17179,0.052], + [17181,null], + [17183,0.071], + [17185,null], + [17187,null], + [17189,null], + [17191,null], + [17193,null], + [17195,0.047], + [17197,0.058], + [17199,0.081], + [17201,0.062], + [17203,null], + [18001,0.065], + [18003,0.065], + [18005,0.072], + [18007,null], + [18009,null], + [18011,null], + [18013,null], + [18015,null], + [18017,0.083], + [18019,0.076], + [18021,null], + [18023,null], + [18025,null], + [18027,null], + [18029,null], + [18031,null], + [18033,null], + [18035,0.071], + [18037,null], + [18039,0.075], + [18041,null], + [18043,0.047], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,0.085], + [18055,null], + [18057,0.042], + [18059,0.071], + [18061,null], + [18063,0.047], + [18065,0.094], + [18067,0.07], + [18069,null], + [18071,0.129], + [18073,null], + [18075,null], + [18077,null], + [18079,null], + [18081,0.053], + [18083,0.077], + [18085,0.074], + [18087,null], + [18089,0.083], + [18091,0.06], + [18093,0.084], + [18095,0.067], + [18097,0.101], + [18099,0.119], + [18101,null], + [18103,null], + [18105,0.05], + [18107,null], + [18109,0.051], + [18111,null], + [18113,null], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,0.058], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,null], + [18139,null], + [18141,0.096], + [18143,null], + [18145,null], + [18147,null], + [18149,null], + [18151,null], + [18153,null], + [18155,null], + [18157,0.042], + [18159,null], + [18161,null], + [18163,0.09], + [18165,null], + [18167,0.097], + [18169,null], + [18171,null], + [18173,null], + [18175,null], + [18177,0.099], + [18179,null], + [18181,null], + [18183,null], + [19001,null], + [19003,null], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,0.074], + [19015,null], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,null], + [19035,null], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,0.078], + [19047,null], + [19049,null], + [19051,null], + [19053,null], + [19055,null], + [19057,0.079], + [19059,null], + [19061,0.091], + [19063,null], + [19065,null], + [19067,null], + [19069,null], + [19071,null], + [19073,null], + [19075,null], + [19077,null], + [19079,null], + [19081,null], + [19083,null], + [19085,null], + [19087,null], + [19089,null], + [19091,null], + [19093,null], + [19095,null], + [19097,null], + [19099,null], + [19101,null], + [19103,0.046], + [19105,null], + [19107,null], + [19109,null], + [19111,null], + [19113,0.062], + [19115,null], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,null], + [19129,null], + [19131,null], + [19133,null], + [19135,null], + [19137,null], + [19139,null], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,null], + [19151,null], + [19153,0.06], + [19155,0.074], + [19157,null], + [19159,null], + [19161,null], + [19163,0.073], + [19165,null], + [19167,null], + [19169,0.041], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,0.101], + [19181,null], + [19183,null], + [19185,null], + [19187,null], + [19189,null], + [19191,null], + [19193,0.066], + [19195,null], + [19197,null], + [20001,null], + [20003,null], + [20005,null], + [20007,null], + [20009,null], + [20011,null], + [20013,null], + [20015,0.077], + [20017,null], + [20019,null], + [20021,null], + [20023,null], + [20025,null], + [20027,null], + [20029,null], + [20031,null], + [20033,null], + [20035,null], + [20037,0.087], + [20039,null], + [20041,null], + [20043,null], + [20045,0.073], + [20047,null], + [20049,null], + [20051,null], + [20053,null], + [20055,null], + [20057,0.079], + [20059,null], + [20061,null], + [20063,null], + [20065,null], + [20067,null], + [20069,null], + [20071,null], + [20073,null], + [20075,null], + [20077,null], + [20079,null], + [20081,null], + [20083,null], + [20085,null], + [20087,null], + [20089,null], + [20091,0.048], + [20093,null], + [20095,null], + [20097,null], + [20099,null], + [20101,null], + [20103,0.049], + [20105,null], + [20107,null], + [20109,null], + [20111,0.054], + [20113,null], + [20115,null], + [20117,null], + [20119,null], + [20121,null], + [20123,null], + [20125,0.105], + [20127,null], + [20129,null], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,null], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,0.087], + [20157,null], + [20159,null], + [20161,0.034], + [20163,null], + [20165,null], + [20167,null], + [20169,0.108], + [20171,null], + [20173,0.081], + [20175,null], + [20177,0.07], + [20179,null], + [20181,null], + [20183,null], + [20185,null], + [20187,null], + [20189,null], + [20191,null], + [20193,null], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,null], + [20205,null], + [20207,null], + [20209,0.102], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,0.157], + [21011,null], + [21013,0.168], + [21015,0.036], + [21017,null], + [21019,0.114], + [21021,null], + [21023,null], + [21025,null], + [21027,null], + [21029,0.08], + [21031,null], + [21033,null], + [21035,0.073], + [21037,0.127], + [21039,null], + [21041,null], + [21043,0.15], + [21045,null], + [21047,0.129], + [21049,0.109], + [21051,0.224], + [21053,null], + [21055,null], + [21057,null], + [21059,0.103], + [21061,null], + [21063,null], + [21065,null], + [21067,0.074], + [21069,null], + [21071,0.12], + [21073,0.049], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,0.139], + [21085,0.108], + [21087,null], + [21089,0.072], + [21091,null], + [21093,0.094], + [21095,0.205], + [21097,null], + [21099,null], + [21101,0.136], + [21103,null], + [21105,null], + [21107,0.145], + [21109,null], + [21111,0.084], + [21113,0.087], + [21115,null], + [21117,0.086], + [21119,null], + [21121,0.249], + [21123,null], + [21125,0.138], + [21127,null], + [21129,null], + [21131,null], + [21133,0.172], + [21135,null], + [21137,null], + [21139,null], + [21141,null], + [21143,null], + [21145,0.096], + [21147,0.119], + [21149,null], + [21151,0.105], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,null], + [21165,null], + [21167,null], + [21169,null], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,null], + [21181,null], + [21183,null], + [21185,null], + [21187,null], + [21189,null], + [21191,null], + [21193,0.157], + [21195,0.135], + [21197,null], + [21199,0.137], + [21201,null], + [21203,null], + [21205,0.161], + [21207,null], + [21209,0.059], + [21211,null], + [21213,null], + [21215,null], + [21217,null], + [21219,null], + [21221,null], + [21223,null], + [21225,null], + [21227,0.073], + [21229,null], + [21231,null], + [21233,null], + [21235,0.164], + [21237,null], + [21239,null], + [22001,0.19], + [22003,null], + [22005,0.084], + [22007,null], + [22009,0.191], + [22011,0.133], + [22013,null], + [22015,0.071], + [22017,0.119], + [22019,0.093], + [22021,null], + [22023,null], + [22025,null], + [22027,null], + [22029,null], + [22031,null], + [22033,0.092], + [22035,null], + [22037,null], + [22039,0.195], + [22041,0.151], + [22043,null], + [22045,0.149], + [22047,null], + [22049,null], + [22051,0.1], + [22053,0.142], + [22055,0.113], + [22057,0.103], + [22059,null], + [22061,0.135], + [22063,0.089], + [22065,null], + [22067,0.22], + [22069,0.19], + [22071,0.181], + [22073,0.167], + [22075,null], + [22077,null], + [22079,0.145], + [22081,null], + [22083,0.188], + [22085,null], + [22087,0.141], + [22089,0.108], + [22091,null], + [22093,null], + [22095,0.16], + [22097,0.198], + [22099,0.144], + [22101,0.161], + [22103,0.087], + [22105,0.125], + [22107,null], + [22109,0.122], + [22111,null], + [22113,0.147], + [22115,0.14], + [22117,0.177], + [22119,0.149], + [22121,null], + [22123,null], + [22125,null], + [22127,null], + [23001,0.074], + [23003,0.13], + [23005,0.078], + [23007,null], + [23009,0.101], + [23011,0.094], + [23013,null], + [23015,null], + [23017,0.078], + [23019,0.084], + [23021,null], + [23023,null], + [23025,0.154], + [23027,null], + [23029,0.124], + [23031,0.067], + [24001,0.103], + [24003,0.053], + [24005,0.076], + [24009,null], + [24011,null], + [24013,0.046], + [24015,0.063], + [24017,0.065], + [24019,null], + [24021,0.063], + [24023,null], + [24025,0.058], + [24027,0.056], + [24029,null], + [24031,0.068], + [24033,0.076], + [24035,null], + [24037,0.09], + [24039,null], + [24041,null], + [24043,0.079], + [24045,0.078], + [24047,null], + [24510,0.168], + [25001,0.047], + [25003,0.071], + [25005,0.093], + [25007,null], + [25009,0.097], + [25011,0.058], + [25013,0.107], + [25015,0.066], + [25017,0.074], + [25019,null], + [25021,0.073], + [25023,0.075], + [25025,0.197], + [25027,0.082], + [26001,null], + [26003,null], + [26005,0.08], + [26007,null], + [26009,null], + [26011,null], + [26013,null], + [26015,null], + [26017,0.083], + [26019,null], + [26021,0.087], + [26023,0.085], + [26025,0.086], + [26027,0.052], + [26029,null], + [26031,null], + [26033,0.1], + [26035,0.114], + [26037,0.049], + [26039,null], + [26041,null], + [26043,null], + [26045,0.054], + [26047,null], + [26049,0.091], + [26051,null], + [26053,null], + [26055,0.054], + [26057,0.109], + [26059,0.088], + [26061,0.083], + [26063,null], + [26065,0.086], + [26067,0.092], + [26069,null], + [26071,null], + [26073,0.089], + [26075,0.058], + [26077,0.065], + [26079,null], + [26081,0.073], + [26083,null], + [26085,null], + [26087,0.068], + [26089,null], + [26091,0.078], + [26093,0.05], + [26095,null], + [26097,null], + [26099,0.082], + [26101,null], + [26103,0.063], + [26105,null], + [26107,0.096], + [26109,null], + [26111,0.068], + [26113,null], + [26115,0.072], + [26117,0.083], + [26119,null], + [26121,0.081], + [26123,0.095], + [26125,0.067], + [26127,null], + [26129,null], + [26131,null], + [26133,null], + [26135,null], + [26137,null], + [26139,0.053], + [26141,null], + [26143,null], + [26145,0.081], + [26147,0.07], + [26149,0.075], + [26151,0.087], + [26153,null], + [26155,0.052], + [26157,0.098], + [26159,0.093], + [26161,0.067], + [26163,0.128], + [26165,null], + [27001,null], + [27003,0.056], + [27005,null], + [27007,0.092], + [27009,null], + [27011,null], + [27013,0.074], + [27015,null], + [27017,null], + [27019,null], + [27021,null], + [27023,null], + [27025,null], + [27027,0.063], + [27029,null], + [27031,null], + [27033,null], + [27035,0.074], + [27037,0.051], + [27039,null], + [27041,null], + [27043,null], + [27045,null], + [27047,null], + [27049,null], + [27051,null], + [27053,0.075], + [27055,null], + [27057,null], + [27059,null], + [27061,0.089], + [27063,null], + [27065,null], + [27067,0.048], + [27069,null], + [27071,null], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,null], + [27085,null], + [27087,null], + [27089,null], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,0.077], + [27101,null], + [27103,null], + [27105,null], + [27107,null], + [27109,0.055], + [27111,0.089], + [27113,null], + [27115,null], + [27117,null], + [27119,null], + [27121,null], + [27123,0.078], + [27125,null], + [27127,null], + [27129,null], + [27131,0.078], + [27133,null], + [27135,null], + [27137,0.079], + [27139,0.066], + [27141,0.058], + [27143,null], + [27145,0.068], + [27147,null], + [27149,null], + [27151,null], + [27153,null], + [27155,null], + [27157,null], + [27159,null], + [27161,null], + [27163,0.045], + [27165,null], + [27167,null], + [27169,0.069], + [27171,0.07], + [27173,null], + [28001,0.178], + [28003,0.114], + [28005,null], + [28007,null], + [28009,null], + [28011,0.156], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,0.176], + [28029,0.148], + [28031,null], + [28033,0.069], + [28035,0.155], + [28037,null], + [28039,null], + [28041,null], + [28043,null], + [28045,0.107], + [28047,0.095], + [28049,0.114], + [28051,0.253], + [28053,null], + [28055,null], + [28057,null], + [28059,0.096], + [28061,null], + [28063,null], + [28065,null], + [28067,0.146], + [28069,null], + [28071,0.056], + [28073,0.08], + [28075,0.151], + [28077,null], + [28079,0.225], + [28081,0.11], + [28083,0.225], + [28085,0.179], + [28087,0.148], + [28089,0.088], + [28091,0.154], + [28093,0.121], + [28095,0.171], + [28097,null], + [28099,0.132], + [28101,null], + [28103,null], + [28105,0.095], + [28107,0.111], + [28109,0.137], + [28111,null], + [28113,0.227], + [28115,0.115], + [28117,0.16], + [28119,null], + [28121,0.063], + [28123,0.177], + [28125,null], + [28127,0.14], + [28129,null], + [28131,null], + [28133,0.145], + [28135,null], + [28137,null], + [28139,null], + [28141,null], + [28143,null], + [28145,null], + [28147,null], + [28149,0.114], + [28151,0.168], + [28153,null], + [28155,null], + [28157,null], + [28159,null], + [28161,null], + [28163,0.188], + [29001,null], + [29003,null], + [29005,null], + [29007,null], + [29009,0.105], + [29011,null], + [29013,null], + [29015,null], + [29017,null], + [29019,0.059], + [29021,0.078], + [29023,0.137], + [29025,null], + [29027,null], + [29029,0.074], + [29031,0.075], + [29033,null], + [29035,null], + [29037,0.067], + [29039,null], + [29041,null], + [29043,0.079], + [29045,null], + [29047,0.045], + [29049,null], + [29051,0.064], + [29053,null], + [29055,null], + [29057,null], + [29059,null], + [29061,null], + [29063,null], + [29065,null], + [29067,null], + [29069,0.14], + [29071,0.073], + [29073,null], + [29075,null], + [29077,0.093], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,0.186], + [29093,null], + [29095,0.087], + [29097,0.091], + [29099,0.069], + [29101,0.077], + [29103,null], + [29105,0.133], + [29107,null], + [29109,0.12], + [29111,null], + [29113,0.102], + [29115,null], + [29117,null], + [29119,null], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,0.078], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,0.111], + [29161,0.102], + [29163,null], + [29165,0.045], + [29167,0.066], + [29169,0.11], + [29171,null], + [29173,null], + [29175,null], + [29177,null], + [29179,null], + [29181,null], + [29183,0.04], + [29185,null], + [29186,null], + [29187,0.08], + [29189,0.065], + [29195,null], + [29197,null], + [29199,null], + [29201,0.097], + [29203,null], + [29205,null], + [29207,0.106], + [29209,null], + [29211,null], + [29213,0.105], + [29215,0.184], + [29217,null], + [29219,null], + [29221,null], + [29223,null], + [29225,0.108], + [29227,null], + [29229,null], + [29510,0.155], + [30001,null], + [30003,null], + [30005,null], + [30007,null], + [30009,null], + [30011,null], + [30013,0.086], + [30015,null], + [30017,null], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,null], + [30029,0.071], + [30031,0.065], + [30033,null], + [30035,null], + [30037,null], + [30039,null], + [30041,null], + [30043,null], + [30045,null], + [30047,0.072], + [30049,0.08], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,null], + [30063,0.066], + [30065,null], + [30067,null], + [30069,null], + [30071,null], + [30073,null], + [30075,null], + [30077,null], + [30079,null], + [30081,0.084], + [30083,null], + [30085,null], + [30087,null], + [30089,null], + [30091,null], + [30093,0.114], + [30095,null], + [30097,null], + [30099,null], + [30101,null], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,0.077], + [31001,null], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,null], + [31019,0.079], + [31021,null], + [31023,null], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,null], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,null], + [31045,null], + [31047,null], + [31049,null], + [31051,null], + [31053,null], + [31055,0.078], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,null], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,0.085], + [31081,null], + [31083,null], + [31085,null], + [31087,null], + [31089,null], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,null], + [31109,0.059], + [31111,null], + [31113,null], + [31115,null], + [31117,null], + [31119,null], + [31121,null], + [31123,null], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,null], + [31137,null], + [31139,null], + [31141,null], + [31143,null], + [31145,null], + [31147,null], + [31149,null], + [31151,null], + [31153,0.051], + [31155,null], + [31157,null], + [31159,null], + [31161,null], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,null], + [31179,null], + [31181,null], + [31183,null], + [31185,null], + [32001,null], + [32003,0.092], + [32005,null], + [32007,0.087], + [32009,null], + [32011,null], + [32013,null], + [32015,null], + [32017,null], + [32019,0.084], + [32021,null], + [32023,0.103], + [32027,null], + [32029,null], + [32031,0.079], + [32033,null], + [32510,0.085], + [33001,null], + [33003,null], + [33005,0.055], + [33007,null], + [33009,0.065], + [33011,0.061], + [33013,0.052], + [33015,0.05], + [33017,0.067], + [33019,null], + [34001,0.086], + [34003,0.077], + [34005,0.045], + [34007,0.09], + [34009,0.062], + [34011,0.105], + [34013,0.127], + [34015,0.059], + [34017,0.174], + [34019,0.039], + [34021,0.077], + [34023,0.088], + [34025,0.064], + [34027,0.056], + [34029,0.06], + [34031,0.116], + [34033,0.073], + [34035,0.057], + [34037,0.047], + [34039,0.095], + [34041,0.066], + [35001,0.101], + [35003,null], + [35005,0.143], + [35006,0.189], + [35007,null], + [35009,0.116], + [35011,null], + [35013,0.141], + [35015,0.119], + [35017,0.073], + [35019,null], + [35021,null], + [35023,null], + [35025,0.138], + [35027,null], + [35028,null], + [35029,0.169], + [35031,0.241], + [35033,null], + [35035,0.135], + [35037,null], + [35039,0.199], + [35041,null], + [35043,0.085], + [35045,0.145], + [35047,0.189], + [35049,0.09], + [35051,null], + [35053,null], + [35055,0.159], + [35057,null], + [35059,null], + [35061,0.11], + [36001,0.057], + [36003,0.076], + [36005,0.242], + [36007,0.08], + [36009,0.098], + [36011,0.066], + [36013,0.087], + [36015,0.086], + [36017,0.091], + [36019,0.069], + [36021,0.082], + [36023,0.103], + [36025,0.076], + [36027,0.067], + [36029,0.087], + [36031,null], + [36033,0.104], + [36035,0.076], + [36037,0.077], + [36039,0.101], + [36041,null], + [36043,0.087], + [36045,0.083], + [36047,0.212], + [36049,null], + [36051,0.061], + [36053,0.079], + [36055,0.079], + [36057,0.095], + [36059,0.052], + [36061,0.179], + [36063,0.09], + [36065,0.081], + [36067,0.088], + [36069,0.058], + [36071,0.075], + [36073,null], + [36075,0.088], + [36077,0.081], + [36079,null], + [36081,0.138], + [36083,0.058], + [36085,0.111], + [36087,0.065], + [36089,0.085], + [36091,0.047], + [36093,0.076], + [36095,null], + [36097,null], + [36099,null], + [36101,0.076], + [36103,0.058], + [36105,0.104], + [36107,0.083], + [36109,0.056], + [36111,0.095], + [36113,0.066], + [36115,0.084], + [36117,0.09], + [36119,0.082], + [36121,null], + [36123,null], + [37001,0.095], + [37003,null], + [37005,null], + [37007,null], + [37009,null], + [37011,null], + [37013,0.096], + [37015,null], + [37017,0.17], + [37019,0.062], + [37021,0.086], + [37023,0.092], + [37025,0.073], + [37027,0.098], + [37029,null], + [37031,0.06], + [37033,null], + [37035,0.09], + [37037,0.062], + [37039,null], + [37041,null], + [37043,null], + [37045,0.143], + [37047,0.152], + [37049,0.082], + [37051,0.112], + [37053,null], + [37055,null], + [37057,0.095], + [37059,null], + [37061,0.104], + [37063,0.079], + [37065,0.141], + [37067,0.093], + [37069,0.085], + [37071,0.103], + [37073,null], + [37075,null], + [37077,0.127], + [37079,null], + [37081,0.099], + [37083,0.184], + [37085,0.117], + [37087,0.073], + [37089,0.065], + [37091,null], + [37093,0.126], + [37095,null], + [37097,0.069], + [37099,0.075], + [37101,0.078], + [37103,null], + [37105,0.098], + [37107,0.118], + [37109,0.086], + [37111,0.114], + [37113,0.091], + [37115,null], + [37117,null], + [37119,0.077], + [37121,null], + [37123,null], + [37125,0.074], + [37127,0.122], + [37129,0.096], + [37131,null], + [37133,0.087], + [37135,0.06], + [37137,null], + [37139,0.088], + [37141,0.083], + [37143,null], + [37145,0.088], + [37147,0.097], + [37149,null], + [37151,0.091], + [37153,0.153], + [37155,0.185], + [37157,0.116], + [37159,0.099], + [37161,0.116], + [37163,0.113], + [37165,0.14], + [37167,0.066], + [37169,0.094], + [37171,0.13], + [37173,null], + [37175,null], + [37177,null], + [37179,0.056], + [37181,0.1], + [37183,0.058], + [37185,null], + [37187,null], + [37189,0.059], + [37191,0.109], + [37193,0.103], + [37195,0.14], + [37197,0.069], + [37199,null], + [38001,null], + [38003,null], + [38005,null], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,0.081], + [38017,0.063], + [38019,null], + [38021,null], + [38023,null], + [38025,null], + [38027,null], + [38029,null], + [38031,null], + [38033,null], + [38035,0.106], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,null], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,null], + [38057,null], + [38059,null], + [38061,null], + [38063,null], + [38065,null], + [38067,null], + [38069,null], + [38071,null], + [38073,null], + [38075,null], + [38077,null], + [38079,null], + [38081,null], + [38083,null], + [38085,null], + [38087,null], + [38089,null], + [38091,null], + [38093,null], + [38095,null], + [38097,null], + [38099,null], + [38101,0.074], + [38103,null], + [38105,null], + [39001,0.108], + [39003,0.07], + [39005,0.073], + [39007,0.113], + [39009,0.119], + [39011,null], + [39013,0.087], + [39015,0.095], + [39017,0.065], + [39019,null], + [39021,null], + [39023,0.081], + [39025,0.078], + [39027,0.1], + [39029,0.071], + [39031,0.079], + [39033,0.108], + [39035,0.109], + [39037,0.061], + [39039,null], + [39041,0.038], + [39043,0.05], + [39045,0.058], + [39047,null], + [39049,0.092], + [39051,null], + [39053,0.107], + [39055,0.052], + [39057,0.062], + [39059,0.093], + [39061,0.085], + [39063,0.062], + [39065,null], + [39067,null], + [39069,null], + [39071,0.123], + [39073,null], + [39075,null], + [39077,0.081], + [39079,0.127], + [39081,0.084], + [39083,0.074], + [39085,0.062], + [39087,0.113], + [39089,0.066], + [39091,0.082], + [39093,0.07], + [39095,0.097], + [39097,null], + [39099,0.088], + [39101,0.065], + [39103,0.052], + [39105,null], + [39107,null], + [39109,0.065], + [39111,null], + [39113,0.083], + [39115,null], + [39117,null], + [39119,0.08], + [39121,null], + [39123,null], + [39125,null], + [39127,0.119], + [39129,0.092], + [39131,0.112], + [39133,0.055], + [39135,null], + [39137,null], + [39139,0.08], + [39141,0.097], + [39143,0.089], + [39145,0.131], + [39147,0.082], + [39149,null], + [39151,0.072], + [39153,0.071], + [39155,0.08], + [39157,0.087], + [39159,null], + [39161,null], + [39163,null], + [39165,0.043], + [39167,0.091], + [39169,0.072], + [39171,null], + [39173,0.062], + [39175,null], + [40001,0.179], + [40003,null], + [40005,null], + [40007,null], + [40009,null], + [40011,null], + [40013,0.109], + [40015,0.12], + [40017,0.051], + [40019,0.117], + [40021,0.131], + [40023,null], + [40025,null], + [40027,0.064], + [40029,null], + [40031,0.089], + [40033,null], + [40035,null], + [40037,0.084], + [40039,0.13], + [40041,0.09], + [40043,null], + [40045,null], + [40047,0.061], + [40049,null], + [40051,0.086], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,null], + [40063,null], + [40065,null], + [40067,null], + [40069,null], + [40071,0.089], + [40073,null], + [40075,null], + [40077,null], + [40079,0.12], + [40081,null], + [40083,0.063], + [40085,null], + [40087,null], + [40089,0.163], + [40091,null], + [40093,null], + [40095,null], + [40097,0.1], + [40099,null], + [40101,0.123], + [40103,null], + [40105,null], + [40107,null], + [40109,0.085], + [40111,0.11], + [40113,0.105], + [40115,0.11], + [40117,null], + [40119,0.095], + [40121,0.101], + [40123,0.095], + [40125,0.095], + [40127,null], + [40129,null], + [40131,0.06], + [40133,null], + [40135,0.123], + [40137,0.081], + [40139,null], + [40141,null], + [40143,0.075], + [40145,0.062], + [40147,0.074], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,0.065], + [41005,0.07], + [41007,null], + [41009,0.052], + [41011,0.102], + [41013,null], + [41015,null], + [41017,0.068], + [41019,0.078], + [41021,null], + [41023,null], + [41025,null], + [41027,null], + [41029,0.085], + [41031,null], + [41033,0.097], + [41035,0.1], + [41037,null], + [41039,0.087], + [41041,0.068], + [41043,0.073], + [41045,0.121], + [41047,0.072], + [41049,null], + [41051,0.098], + [41053,0.069], + [41055,null], + [41057,null], + [41059,0.106], + [41061,null], + [41063,null], + [41065,null], + [41067,0.062], + [41069,null], + [41071,0.074], + [42001,0.058], + [42003,0.084], + [42005,0.093], + [42007,0.072], + [42009,0.094], + [42011,0.08], + [42013,0.092], + [42015,0.096], + [42017,0.056], + [42019,0.057], + [42021,0.088], + [42023,null], + [42025,0.081], + [42027,0.044], + [42029,0.049], + [42031,0.099], + [42033,0.088], + [42035,0.098], + [42037,0.097], + [42039,0.079], + [42041,0.047], + [42043,0.068], + [42045,0.068], + [42047,null], + [42049,0.085], + [42051,0.108], + [42053,null], + [42055,0.068], + [42057,null], + [42059,null], + [42061,null], + [42063,0.085], + [42065,0.093], + [42067,null], + [42069,0.081], + [42071,0.064], + [42073,0.084], + [42075,0.063], + [42077,0.074], + [42079,0.084], + [42081,0.077], + [42083,0.07], + [42085,0.059], + [42087,0.078], + [42089,0.081], + [42091,0.05], + [42093,null], + [42095,0.06], + [42097,0.09], + [42099,null], + [42101,0.176], + [42103,null], + [42105,null], + [42107,0.086], + [42109,null], + [42111,0.079], + [42113,null], + [42115,null], + [42117,0.089], + [42119,null], + [42121,0.076], + [42123,null], + [42125,0.072], + [42127,0.067], + [42129,0.073], + [42131,null], + [42133,0.068], + [44001,null], + [44003,0.093], + [44005,0.072], + [44007,0.118], + [44009,0.057], + [45001,null], + [45003,0.078], + [45005,null], + [45007,0.087], + [45009,null], + [45011,0.105], + [45013,0.044], + [45015,0.08], + [45017,null], + [45019,0.091], + [45021,0.105], + [45023,0.162], + [45025,0.135], + [45027,0.141], + [45029,0.115], + [45031,0.134], + [45033,0.195], + [45035,0.087], + [45037,null], + [45039,null], + [45041,0.121], + [45043,0.092], + [45045,0.083], + [45047,0.106], + [45049,null], + [45051,0.066], + [45053,0.096], + [45055,0.124], + [45057,0.093], + [45059,0.119], + [45061,null], + [45063,0.072], + [45065,null], + [45067,0.175], + [45069,0.264], + [45071,0.117], + [45073,0.08], + [45075,0.164], + [45077,0.079], + [45079,0.103], + [45081,null], + [45083,0.094], + [45085,0.122], + [45087,0.126], + [45089,0.246], + [45091,0.076], + [46003,null], + [46005,null], + [46007,null], + [46009,null], + [46011,null], + [46013,null], + [46015,null], + [46017,null], + [46019,null], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,null], + [46031,null], + [46033,null], + [46035,null], + [46037,null], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,null], + [46053,null], + [46055,null], + [46057,null], + [46059,null], + [46061,null], + [46063,null], + [46065,null], + [46067,null], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,null], + [46083,null], + [46085,null], + [46087,null], + [46089,null], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,0.08], + [46101,null], + [46102,0.312], + [46103,0.076], + [46105,null], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,null], + [46123,null], + [46125,null], + [46127,null], + [46129,null], + [46135,null], + [46137,null], + [47001,0.103], + [47003,0.061], + [47005,null], + [47007,null], + [47009,0.072], + [47011,0.101], + [47013,0.121], + [47015,null], + [47017,null], + [47019,0.145], + [47021,null], + [47023,null], + [47025,0.142], + [47027,null], + [47029,0.098], + [47031,0.098], + [47033,null], + [47035,0.085], + [47037,0.09], + [47039,null], + [47041,null], + [47043,0.099], + [47045,0.115], + [47047,null], + [47049,null], + [47051,0.088], + [47053,0.138], + [47055,null], + [47057,null], + [47059,0.094], + [47061,null], + [47063,0.072], + [47065,0.082], + [47067,null], + [47069,null], + [47071,null], + [47073,0.098], + [47075,null], + [47077,null], + [47079,0.115], + [47081,null], + [47083,null], + [47085,null], + [47087,null], + [47089,0.069], + [47091,null], + [47093,0.086], + [47095,null], + [47097,null], + [47099,0.106], + [47101,null], + [47103,null], + [47105,0.064], + [47107,0.105], + [47109,null], + [47111,null], + [47113,0.087], + [47115,null], + [47117,null], + [47119,0.09], + [47121,null], + [47123,0.106], + [47125,0.081], + [47127,null], + [47129,null], + [47131,0.128], + [47133,null], + [47135,null], + [47137,null], + [47139,null], + [47141,0.076], + [47143,0.108], + [47145,0.116], + [47147,0.076], + [47149,0.063], + [47151,null], + [47153,null], + [47155,0.08], + [47157,0.109], + [47159,null], + [47161,null], + [47163,0.086], + [47165,0.069], + [47167,0.074], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,0.107], + [47179,0.088], + [47181,null], + [47183,0.115], + [47185,null], + [47187,0.046], + [47189,0.059], + [48001,0.103], + [48003,null], + [48005,0.098], + [48007,null], + [48009,null], + [48011,null], + [48013,0.126], + [48015,null], + [48017,null], + [48019,null], + [48021,0.093], + [48023,null], + [48025,null], + [48027,0.085], + [48029,0.115], + [48031,null], + [48033,null], + [48035,null], + [48037,0.099], + [48039,0.063], + [48041,0.095], + [48043,null], + [48045,null], + [48047,null], + [48049,null], + [48051,null], + [48053,null], + [48055,0.109], + [48057,null], + [48059,null], + [48061,0.224], + [48063,null], + [48065,null], + [48067,0.09], + [48069,null], + [48071,null], + [48073,0.12], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,null], + [48085,0.071], + [48087,null], + [48089,null], + [48091,0.052], + [48093,null], + [48095,null], + [48097,null], + [48099,0.119], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,0.111], + [48115,null], + [48117,null], + [48119,null], + [48121,0.051], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,null], + [48133,null], + [48135,0.091], + [48137,null], + [48139,0.054], + [48141,0.186], + [48143,0.09], + [48145,null], + [48147,null], + [48149,null], + [48151,null], + [48153,null], + [48155,null], + [48157,0.072], + [48159,null], + [48161,null], + [48163,null], + [48165,null], + [48167,0.08], + [48169,null], + [48171,null], + [48173,null], + [48175,null], + [48177,null], + [48179,null], + [48181,0.082], + [48183,0.097], + [48185,null], + [48187,0.085], + [48189,null], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,0.113], + [48201,0.113], + [48203,0.105], + [48205,null], + [48207,null], + [48209,0.065], + [48211,null], + [48213,0.091], + [48215,0.237], + [48217,null], + [48219,null], + [48221,0.051], + [48223,0.104], + [48225,null], + [48227,0.119], + [48229,null], + [48231,0.076], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,0.091], + [48243,null], + [48245,0.109], + [48247,null], + [48249,0.145], + [48251,0.055], + [48253,null], + [48255,null], + [48257,0.101], + [48259,null], + [48261,null], + [48263,null], + [48265,0.04], + [48267,null], + [48269,null], + [48271,null], + [48273,0.153], + [48275,null], + [48277,0.112], + [48279,null], + [48281,null], + [48283,null], + [48285,null], + [48287,null], + [48289,null], + [48291,0.11], + [48293,null], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,0.092], + [48305,null], + [48307,null], + [48309,0.087], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,0.182], + [48323,0.325], + [48325,0.112], + [48327,null], + [48329,0.113], + [48331,null], + [48333,null], + [48335,null], + [48337,null], + [48339,0.084], + [48341,null], + [48343,null], + [48345,null], + [48347,0.098], + [48349,0.108], + [48351,null], + [48353,null], + [48355,0.125], + [48357,null], + [48359,null], + [48361,0.073], + [48363,0.103], + [48365,null], + [48367,0.074], + [48369,null], + [48371,null], + [48373,0.083], + [48375,0.159], + [48377,null], + [48379,null], + [48381,0.059], + [48383,null], + [48385,null], + [48387,null], + [48389,null], + [48391,null], + [48393,null], + [48395,null], + [48397,null], + [48399,null], + [48401,0.114], + [48403,null], + [48405,null], + [48407,null], + [48409,0.113], + [48411,null], + [48413,null], + [48415,null], + [48417,null], + [48419,0.117], + [48421,null], + [48423,0.104], + [48425,null], + [48427,0.314], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,null], + [48439,0.084], + [48441,0.093], + [48443,null], + [48445,null], + [48447,null], + [48449,0.142], + [48451,0.095], + [48453,0.084], + [48455,null], + [48457,null], + [48459,0.14], + [48461,null], + [48463,null], + [48465,0.244], + [48467,0.097], + [48469,0.094], + [48471,0.054], + [48473,0.091], + [48475,null], + [48477,null], + [48479,0.253], + [48481,0.132], + [48483,null], + [48485,0.109], + [48487,null], + [48489,0.221], + [48491,0.047], + [48493,null], + [48495,null], + [48497,0.07], + [48499,0.088], + [48501,null], + [48503,null], + [48505,null], + [48507,null], + [49001,null], + [49003,null], + [49005,0.058], + [49007,null], + [49009,null], + [49011,0.049], + [49013,null], + [49015,null], + [49017,null], + [49019,null], + [49021,0.075], + [49023,null], + [49025,null], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.067], + [49037,null], + [49039,null], + [49041,null], + [49043,null], + [49045,null], + [49047,null], + [49049,0.056], + [49051,null], + [49053,0.058], + [49055,null], + [49057,0.081], + [50001,null], + [50003,null], + [50005,null], + [50007,0.07], + [50009,null], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,0.082], + [50023,0.06], + [50025,0.084], + [50027,0.052], + [51001,0.093], + [51003,0.047], + [51005,null], + [51007,null], + [51009,null], + [51011,null], + [51013,0.091], + [51015,0.061], + [51017,null], + [51019,0.065], + [51021,null], + [51023,null], + [51025,null], + [51027,0.157], + [51029,null], + [51031,0.109], + [51033,null], + [51035,null], + [51036,null], + [51037,null], + [51041,0.051], + [51043,null], + [51045,null], + [51047,null], + [51049,null], + [51051,null], + [51053,null], + [51057,null], + [51059,0.054], + [51061,null], + [51063,null], + [51065,null], + [51067,0.077], + [51069,0.067], + [51071,null], + [51073,null], + [51075,null], + [51077,null], + [51079,null], + [51081,null], + [51083,null], + [51085,0.047], + [51087,0.07], + [51089,0.093], + [51091,null], + [51093,null], + [51095,0.032], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,0.131], + [51107,0.045], + [51109,null], + [51111,null], + [51113,null], + [51115,null], + [51117,null], + [51119,null], + [51121,0.045], + [51125,null], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,null], + [51143,0.085], + [51145,null], + [51147,null], + [51149,null], + [51153,0.053], + [51155,null], + [51157,null], + [51159,null], + [51161,0.058], + [51163,null], + [51165,0.075], + [51167,0.185], + [51169,null], + [51171,0.086], + [51173,0.111], + [51175,null], + [51177,0.064], + [51179,0.034], + [51181,null], + [51183,null], + [51185,0.104], + [51187,null], + [51191,0.099], + [51193,null], + [51195,0.108], + [51197,null], + [51199,null], + [51510,0.068], + [51520,null], + [51530,null], + [51540,0.104], + [51550,0.043], + [51570,null], + [51580,null], + [51590,0.122], + [51595,null], + [51600,null], + [51610,null], + [51620,null], + [51630,null], + [51640,null], + [51650,0.098], + [51660,0.091], + [51670,0.129], + [51678,null], + [51680,0.086], + [51683,null], + [51685,null], + [51690,null], + [51700,0.113], + [51710,0.119], + [51720,null], + [51730,0.152], + [51735,null], + [51740,0.108], + [51750,null], + [51760,0.132], + [51770,0.121], + [51775,null], + [51790,null], + [51800,0.06], + [51810,0.045], + [51820,null], + [51830,null], + [51840,null], + [53001,null], + [53003,null], + [53005,0.064], + [53007,0.096], + [53009,0.073], + [53011,0.072], + [53013,null], + [53015,0.093], + [53017,0.075], + [53019,null], + [53021,0.094], + [53023,null], + [53025,0.077], + [53027,0.072], + [53029,0.05], + [53031,null], + [53033,0.084], + [53035,0.057], + [53037,0.078], + [53039,null], + [53041,0.067], + [53043,null], + [53045,0.067], + [53047,0.087], + [53049,null], + [53051,null], + [53053,0.069], + [53055,null], + [53057,0.071], + [53059,null], + [53061,0.072], + [53063,0.074], + [53065,0.088], + [53067,0.06], + [53069,null], + [53071,0.085], + [53073,0.08], + [53075,0.103], + [53077,0.092], + [54001,null], + [54003,0.077], + [54005,null], + [54007,null], + [54009,null], + [54011,0.086], + [54013,null], + [54015,null], + [54017,null], + [54019,0.098], + [54021,null], + [54023,null], + [54025,0.113], + [54027,null], + [54029,null], + [54031,null], + [54033,0.091], + [54035,null], + [54037,null], + [54039,0.097], + [54041,null], + [54043,null], + [54045,0.145], + [54047,0.131], + [54049,0.076], + [54051,null], + [54053,null], + [54055,0.087], + [54057,null], + [54059,0.127], + [54061,0.056], + [54063,null], + [54065,null], + [54067,null], + [54069,0.095], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,0.084], + [54081,0.1], + [54083,null], + [54085,null], + [54087,null], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,null], + [54099,0.146], + [54101,null], + [54103,null], + [54105,null], + [54107,0.093], + [54109,null], + [55001,null], + [55003,null], + [55005,0.084], + [55007,null], + [55009,0.072], + [55011,null], + [55013,null], + [55015,null], + [55017,0.097], + [55019,null], + [55021,null], + [55023,null], + [55025,0.051], + [55027,0.069], + [55029,null], + [55031,null], + [55033,0.082], + [55035,0.074], + [55037,null], + [55039,0.08], + [55041,null], + [55043,0.114], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,0.086], + [55057,null], + [55059,0.072], + [55061,null], + [55063,0.066], + [55065,null], + [55067,null], + [55069,null], + [55071,0.087], + [55073,0.073], + [55075,0.081], + [55077,null], + [55078,null], + [55079,0.112], + [55081,0.074], + [55083,null], + [55085,null], + [55087,0.061], + [55089,null], + [55091,null], + [55093,null], + [55095,null], + [55097,0.075], + [55099,null], + [55101,0.073], + [55103,null], + [55105,0.07], + [55107,null], + [55109,null], + [55111,0.061], + [55113,null], + [55115,null], + [55117,0.06], + [55119,null], + [55121,null], + [55123,null], + [55125,null], + [55127,0.061], + [55129,null], + [55131,0.057], + [55133,0.051], + [55135,null], + [55137,null], + [55139,0.066], + [55141,0.094], + [56001,0.07], + [56003,null], + [56005,null], + [56007,null], + [56009,null], + [56011,null], + [56013,null], + [56015,null], + [56017,null], + [56019,null], + [56021,0.083], + [56023,null], + [56025,0.073], + [56027,null], + [56029,null], + [56031,null], + [56033,null], + [56035,null], + [56037,null], + [56039,null], + [56041,null], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-under18-2017.json b/data/regional/united-states/economics/poverty/us-poverty-rate-under18-2017.json new file mode 100644 index 0000000..c96cffc --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-under18-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Under 18 Poverty Rate", + "description" : "Percent of the population aged under 18 living below the poverty line.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.poverty.rate.under.18.2017"], + [1001,0.2], + [1003,0.159], + [1005,0.449], + [1007,0.259], + [1009,0.253], + [1011,0.502], + [1013,0.348], + [1015,0.263], + [1017,0.289], + [1019,0.201], + [1021,0.276], + [1023,0.328], + [1025,0.303], + [1027,0.232], + [1029,0.302], + [1031,0.26], + [1033,0.24], + [1035,0.392], + [1037,0.179], + [1039,0.246], + [1041,0.215], + [1043,0.194], + [1045,0.271], + [1047,0.491], + [1049,0.309], + [1051,0.2], + [1053,0.332], + [1055,0.285], + [1057,0.247], + [1059,0.415], + [1061,0.375], + [1063,0.678], + [1065,0.377], + [1067,0.168], + [1069,0.294], + [1071,0.274], + [1073,0.255], + [1075,0.369], + [1077,0.215], + [1079,0.188], + [1081,0.236], + [1083,0.195], + [1085,0.481], + [1087,0.39], + [1089,0.197], + [1091,0.365], + [1093,0.235], + [1095,0.338], + [1097,0.291], + [1099,0.435], + [1101,0.319], + [1103,0.243], + [1105,0.608], + [1107,0.348], + [1109,0.341], + [1111,0.296], + [1113,0.287], + [1115,0.169], + [1117,0.099], + [1119,0.474], + [1121,0.287], + [1123,0.357], + [1125,0.213], + [1127,0.312], + [1129,0.34], + [1131,0.417], + [1133,0.28], + [2013,0.191], + [2016,0.084], + [2020,0.111], + [2050,0.327], + [2060,0.103], + [2068,0.048], + [2070,0.233], + [2090,0.097], + [2100,0.205], + [2105,0.24], + [2110,0.118], + [2122,0.14], + [2130,0.16], + [2150,0.12], + [2158,null], + [2164,0.173], + [2170,0.109], + [2180,0.297], + [2185,0.156], + [2188,0.321], + [2195,0.081], + [2198,0.236], + [2220,0.102], + [2230,0.039], + [2240,0.192], + [2261,0.056], + [2275,0.181], + [2282,0.101], + [2290,0.323], + [4001,0.451], + [4003,0.257], + [4005,0.229], + [4007,0.357], + [4009,0.283], + [4011,0.157], + [4012,0.379], + [4013,0.222], + [4015,0.27], + [4017,0.385], + [4019,0.253], + [4021,0.214], + [4023,0.293], + [4025,0.196], + [4027,0.279], + [5001,0.279], + [5003,0.321], + [5005,0.166], + [5007,0.141], + [5009,0.228], + [5011,0.42], + [5013,0.343], + [5015,0.231], + [5017,0.405], + [5019,0.279], + [5021,0.318], + [5023,0.233], + [5025,0.312], + [5027,0.346], + [5029,0.273], + [5031,0.249], + [5033,0.237], + [5035,0.368], + [5037,0.274], + [5039,0.174], + [5041,0.484], + [5043,0.293], + [5045,0.159], + [5047,0.316], + [5049,0.383], + [5051,0.286], + [5053,0.177], + [5055,0.222], + [5057,0.374], + [5059,0.192], + [5061,0.36], + [5063,0.276], + [5065,0.285], + [5067,0.421], + [5069,0.39], + [5071,0.309], + [5073,0.321], + [5075,0.209], + [5077,0.352], + [5079,0.218], + [5081,0.245], + [5083,0.286], + [5085,0.17], + [5087,0.226], + [5089,0.305], + [5091,0.316], + [5093,0.373], + [5095,0.466], + [5097,0.29], + [5099,0.344], + [5101,0.231], + [5103,0.41], + [5105,0.284], + [5107,0.533], + [5109,0.227], + [5111,0.346], + [5113,0.35], + [5115,0.241], + [5117,0.234], + [5119,0.26], + [5121,0.286], + [5123,0.429], + [5125,0.099], + [5127,0.309], + [5129,0.179], + [5131,0.333], + [5133,0.315], + [5135,0.343], + [5137,0.367], + [5139,0.301], + [5141,0.291], + [5143,0.209], + [5145,0.193], + [5147,0.34], + [5149,0.273], + [6001,0.128], + [6003,0.148], + [6005,0.191], + [6007,0.209], + [6009,0.184], + [6011,0.206], + [6013,0.121], + [6015,0.291], + [6017,0.114], + [6019,0.362], + [6021,0.255], + [6023,0.213], + [6025,0.307], + [6027,0.124], + [6029,0.31], + [6031,0.284], + [6033,0.311], + [6035,0.198], + [6037,0.237], + [6039,0.312], + [6041,0.092], + [6043,0.154], + [6045,0.235], + [6047,0.332], + [6049,0.194], + [6051,0.119], + [6053,0.212], + [6055,0.088], + [6057,0.14], + [6059,0.161], + [6061,0.078], + [6063,0.126], + [6065,0.209], + [6067,0.222], + [6069,0.141], + [6071,0.255], + [6073,0.167], + [6075,0.109], + [6077,0.228], + [6079,0.123], + [6081,0.083], + [6083,0.189], + [6085,0.094], + [6087,0.166], + [6089,0.247], + [6091,0.106], + [6093,0.264], + [6095,0.161], + [6097,0.125], + [6099,0.228], + [6101,0.231], + [6103,0.302], + [6105,0.245], + [6107,0.36], + [6109,0.13], + [6111,0.14], + [6113,0.161], + [6115,0.242], + [8001,0.162], + [8003,0.336], + [8005,0.129], + [8007,0.213], + [8009,0.287], + [8011,0.324], + [8013,0.113], + [8014,0.042], + [8015,0.082], + [8017,0.102], + [8019,0.077], + [8021,0.27], + [8023,0.499], + [8025,0.307], + [8027,0.257], + [8029,0.221], + [8031,0.225], + [8033,0.197], + [8035,0.036], + [8037,0.099], + [8039,0.04], + [8041,0.14], + [8043,0.243], + [8045,0.116], + [8047,0.055], + [8049,0.211], + [8051,0.068], + [8053,0.155], + [8055,0.196], + [8057,0.225], + [8059,0.096], + [8061,0.113], + [8063,0.162], + [8065,0.105], + [8067,0.087], + [8069,0.105], + [8071,0.214], + [8073,0.149], + [8075,0.216], + [8077,0.213], + [8079,0.171], + [8081,0.078], + [8083,0.259], + [8085,0.277], + [8087,0.121], + [8089,0.297], + [8091,0.116], + [8093,0.073], + [8095,0.032], + [8097,0.059], + [8099,0.234], + [8101,0.262], + [8103,0.154], + [8105,0.227], + [8107,0.109], + [8109,0.272], + [8111,0], + [8113,0.107], + [8115,0.243], + [8117,0.15], + [8119,0.068], + [8121,0.103], + [8123,0.13], + [8125,0.217], + [9001,0.107], + [9003,0.152], + [9005,0.069], + [9007,0.079], + [9009,0.167], + [9011,0.151], + [9013,0.05], + [9015,0.146], + [10001,0.182], + [10003,0.156], + [10005,0.203], + [11001,0.252], + [12001,0.215], + [12003,0.214], + [12005,0.22], + [12007,0.245], + [12009,0.191], + [12011,0.188], + [12013,0.1], + [12015,0.193], + [12017,0.303], + [12019,0.127], + [12021,0.223], + [12023,0.227], + [12027,0.403], + [12029,0.329], + [12031,0.24], + [12033,0.232], + [12035,0.211], + [12037,0.321], + [12039,0.407], + [12041,0.339], + [12043,0.264], + [12045,0.196], + [12047,0.355], + [12049,0.39], + [12051,0.311], + [12053,0.2], + [12055,0.313], + [12057,0.209], + [12059,0.373], + [12061,0.197], + [12063,0.315], + [12065,0.187], + [12067,0.188], + [12069,0.198], + [12071,0.246], + [12073,0.185], + [12075,0.352], + [12077,0.162], + [12079,0.509], + [12081,0.225], + [12083,0.285], + [12085,0.154], + [12086,0.251], + [12087,0.16], + [12089,0.162], + [12091,0.162], + [12093,0.336], + [12095,0.23], + [12097,0.266], + [12099,0.201], + [12101,0.176], + [12103,0.199], + [12105,0.268], + [12107,0.439], + [12109,0.09], + [12111,0.245], + [12113,0.16], + [12115,0.162], + [12117,0.15], + [12119,0.223], + [12121,0.348], + [12123,0.213], + [12125,0.316], + [12127,0.236], + [12129,0.155], + [12131,0.308], + [12133,0.281], + [13001,0.316], + [13003,0.456], + [13005,0.344], + [13007,0.194], + [13009,0.369], + [13011,0.177], + [13013,0.179], + [13015,0.188], + [13017,0.427], + [13019,0.296], + [13021,0.412], + [13023,0.319], + [13025,0.263], + [13027,0.408], + [13029,0.17], + [13031,0.321], + [13033,0.465], + [13035,0.316], + [13037,0.417], + [13039,0.191], + [13043,0.439], + [13045,0.26], + [13047,0.143], + [13049,0.339], + [13051,0.256], + [13053,0.174], + [13055,0.284], + [13057,0.119], + [13059,0.395], + [13061,0.635], + [13063,0.334], + [13065,0.456], + [13067,0.145], + [13069,0.341], + [13071,0.38], + [13073,0.099], + [13075,0.298], + [13077,0.164], + [13079,0.241], + [13081,0.4], + [13083,0.219], + [13085,0.151], + [13087,0.302], + [13089,0.277], + [13091,0.304], + [13093,0.321], + [13095,0.451], + [13097,0.186], + [13099,0.423], + [13101,0.264], + [13103,0.12], + [13105,0.337], + [13107,0.434], + [13109,0.381], + [13111,0.165], + [13113,0.076], + [13115,0.246], + [13117,0.074], + [13119,0.319], + [13121,0.234], + [13123,0.353], + [13125,0.092], + [13127,0.307], + [13129,0.294], + [13131,0.397], + [13133,0.345], + [13135,0.175], + [13137,0.223], + [13139,0.246], + [13141,0.547], + [13143,0.244], + [13145,0.077], + [13147,0.229], + [13149,0.229], + [13151,0.16], + [13153,0.236], + [13155,0.339], + [13157,0.135], + [13159,0.238], + [13161,0.281], + [13163,0.435], + [13165,0.454], + [13167,0.365], + [13169,0.197], + [13171,0.296], + [13173,0.326], + [13175,0.369], + [13177,0.157], + [13179,0.217], + [13181,0.38], + [13183,0.276], + [13185,0.305], + [13187,0.188], + [13189,0.447], + [13191,0.297], + [13193,0.391], + [13195,0.234], + [13197,0.36], + [13199,0.307], + [13201,0.367], + [13205,0.395], + [13207,0.108], + [13209,0.269], + [13211,0.191], + [13213,0.256], + [13215,0.309], + [13217,0.239], + [13219,0.101], + [13221,0.3], + [13223,0.128], + [13225,0.261], + [13227,0.103], + [13229,0.283], + [13231,0.148], + [13233,0.304], + [13235,0.366], + [13237,0.226], + [13239,0.461], + [13241,0.293], + [13243,0.63], + [13245,0.374], + [13247,0.242], + [13249,0.317], + [13251,0.363], + [13253,0.413], + [13255,0.335], + [13257,0.246], + [13259,0.624], + [13261,0.528], + [13263,0.181], + [13265,0.491], + [13267,0.382], + [13269,0.349], + [13271,0.406], + [13273,0.571], + [13275,0.248], + [13277,0.419], + [13279,0.297], + [13281,0.226], + [13283,0.341], + [13285,0.29], + [13287,0.46], + [13289,0.283], + [13291,0.252], + [13293,0.332], + [13295,0.238], + [13297,0.182], + [13299,0.388], + [13301,0.372], + [13303,0.379], + [13305,0.259], + [13307,0.253], + [13309,0.433], + [13311,0.291], + [13313,0.283], + [13315,0.306], + [13317,0.465], + [13319,0.314], + [13321,0.32], + [15001,0.234], + [15003,0.107], + [15005,null], + [15007,0.08], + [15009,0.11], + [16001,0.128], + [16003,0.209], + [16005,0.199], + [16007,0.213], + [16009,0.214], + [16011,0.176], + [16013,0.284], + [16015,0.193], + [16017,0.182], + [16019,0.149], + [16021,0.264], + [16023,0.186], + [16025,0.365], + [16027,0.207], + [16029,0.097], + [16031,0.18], + [16033,0.322], + [16035,0.148], + [16037,0.184], + [16039,0.185], + [16041,0.168], + [16043,0.156], + [16045,0.277], + [16047,0.225], + [16049,0.148], + [16051,0.112], + [16053,0.229], + [16055,0.186], + [16057,0.186], + [16059,0.258], + [16061,0.192], + [16063,0.158], + [16065,0.222], + [16067,0.267], + [16069,0.191], + [16071,0.198], + [16073,0.332], + [16075,0.174], + [16077,0.186], + [16079,0.272], + [16081,0.114], + [16083,0.174], + [16085,0.028], + [16087,0.21], + [17001,0.169], + [17003,0.593], + [17005,0.217], + [17007,0.147], + [17009,0.151], + [17011,0.218], + [17013,0.151], + [17015,0.12], + [17017,0.165], + [17019,0.186], + [17021,0.174], + [17023,0.234], + [17025,0.169], + [17027,0.11], + [17029,0.232], + [17031,0.228], + [17033,0.128], + [17035,0.191], + [17037,0.199], + [17039,0.208], + [17041,0.185], + [17043,0.088], + [17045,0.225], + [17047,0.175], + [17049,0.171], + [17051,0.257], + [17053,0.261], + [17055,0.268], + [17057,0.193], + [17059,0.275], + [17061,0.252], + [17063,0.109], + [17065,0.178], + [17067,0.189], + [17069,0.226], + [17071,0.227], + [17073,0.179], + [17075,0.227], + [17077,0.295], + [17079,0.131], + [17081,0.306], + [17083,0.109], + [17085,0.088], + [17087,0.154], + [17089,0.156], + [17091,0.203], + [17093,0.071], + [17095,0.265], + [17097,0.113], + [17099,0.215], + [17101,0.255], + [17103,0.139], + [17105,0.185], + [17107,0.128], + [17109,0.164], + [17111,0.095], + [17113,0.121], + [17115,0.255], + [17117,0.204], + [17119,0.176], + [17121,0.301], + [17123,0.149], + [17125,0.207], + [17127,0.238], + [17129,0.213], + [17131,0.174], + [17133,0.055], + [17135,0.235], + [17137,0.222], + [17139,0.173], + [17141,0.153], + [17143,0.218], + [17145,0.193], + [17147,0.081], + [17149,0.201], + [17151,0.185], + [17153,0.22], + [17155,0.187], + [17157,0.173], + [17159,0.191], + [17161,0.226], + [17163,0.255], + [17165,0.269], + [17167,0.24], + [17169,0.166], + [17171,0.192], + [17173,0.146], + [17175,0.249], + [17177,0.231], + [17179,0.094], + [17181,0.195], + [17183,0.303], + [17185,0.144], + [17187,0.19], + [17189,0.129], + [17191,0.256], + [17193,0.189], + [17195,0.15], + [17197,0.104], + [17199,0.215], + [17201,0.229], + [17203,0.116], + [18001,0.296], + [18003,0.216], + [18005,0.178], + [18007,0.211], + [18009,0.164], + [18011,0.077], + [18013,0.101], + [18015,0.112], + [18017,0.195], + [18019,0.13], + [18021,0.183], + [18023,0.198], + [18025,0.192], + [18027,0.146], + [18029,0.143], + [18031,0.152], + [18033,0.203], + [18035,0.247], + [18037,0.118], + [18039,0.19], + [18041,0.236], + [18043,0.142], + [18045,0.121], + [18047,0.103], + [18049,0.162], + [18051,0.139], + [18053,0.308], + [18055,0.156], + [18057,0.056], + [18059,0.097], + [18061,0.135], + [18063,0.057], + [18065,0.24], + [18067,0.236], + [18069,0.165], + [18071,0.19], + [18073,0.107], + [18075,0.242], + [18077,0.193], + [18079,0.178], + [18081,0.131], + [18083,0.214], + [18085,0.154], + [18087,0.115], + [18089,0.268], + [18091,0.282], + [18093,0.164], + [18095,0.247], + [18097,0.293], + [18099,0.141], + [18101,0.201], + [18103,0.244], + [18105,0.198], + [18107,0.144], + [18109,0.182], + [18111,0.224], + [18113,0.113], + [18115,0.029], + [18117,0.229], + [18119,0.256], + [18121,0.15], + [18123,0.205], + [18125,0.189], + [18127,0.151], + [18129,0.103], + [18131,0.175], + [18133,0.186], + [18135,0.245], + [18137,0.154], + [18139,0.242], + [18141,0.251], + [18143,0.2], + [18145,0.134], + [18147,0.138], + [18149,0.227], + [18151,0.145], + [18153,0.196], + [18155,0.265], + [18157,0.188], + [18159,0.167], + [18161,0.06], + [18163,0.268], + [18165,0.167], + [18167,0.247], + [18169,0.225], + [18171,0.152], + [18173,0.096], + [18175,0.177], + [18177,0.256], + [18179,0.152], + [18181,0.134], + [18183,0.141], + [19001,0.117], + [19003,0.086], + [19005,0.152], + [19007,0.257], + [19009,0.146], + [19011,0.095], + [19013,0.181], + [19015,0.107], + [19017,0.064], + [19019,0.09], + [19021,0.212], + [19023,0.13], + [19025,0.205], + [19027,0.113], + [19029,0.248], + [19031,0.022], + [19033,0.134], + [19035,0.183], + [19037,0.111], + [19039,0.239], + [19041,0.172], + [19043,0.143], + [19045,0.164], + [19047,0.232], + [19049,0.05], + [19051,0.18], + [19053,0.237], + [19055,0.139], + [19057,0.23], + [19059,0.092], + [19061,0.154], + [19063,0.179], + [19065,0.163], + [19067,0.27], + [19069,0.261], + [19071,0.141], + [19073,0.109], + [19075,0.04], + [19077,0.112], + [19079,0.114], + [19081,0.117], + [19083,0.097], + [19085,0.123], + [19087,0.191], + [19089,0.137], + [19091,0.202], + [19093,0.093], + [19095,0.142], + [19097,0.14], + [19099,0.093], + [19101,0.195], + [19103,0.109], + [19105,0.098], + [19107,0.126], + [19109,0.129], + [19111,0.241], + [19113,0.11], + [19115,0.134], + [19117,0.103], + [19119,0.055], + [19121,0.046], + [19123,0.165], + [19125,0.094], + [19127,0.162], + [19129,0.084], + [19131,0.102], + [19133,0.235], + [19135,0.123], + [19137,0.252], + [19139,0.154], + [19141,0.129], + [19143,0.18], + [19145,0.18], + [19147,0.097], + [19149,0.129], + [19151,0.137], + [19153,0.16], + [19155,0.151], + [19157,0.117], + [19159,0.086], + [19161,0.098], + [19163,0.165], + [19165,0.109], + [19167,0.087], + [19169,0.087], + [19171,0.194], + [19173,0.107], + [19175,0.15], + [19177,0.272], + [19179,0.207], + [19181,0.069], + [19183,0.123], + [19185,0.252], + [19187,0.216], + [19189,0.115], + [19191,0.077], + [19193,0.192], + [19195,0.138], + [19197,0.206], + [20001,0.16], + [20003,0.222], + [20005,0.246], + [20007,0.225], + [20009,0.214], + [20011,0.247], + [20013,0.187], + [20015,0.156], + [20017,0.181], + [20019,0.214], + [20021,0.193], + [20023,0.135], + [20025,0.12], + [20027,0.137], + [20029,0.112], + [20031,0.13], + [20033,0.064], + [20035,0.21], + [20037,0.197], + [20039,0.299], + [20041,0.13], + [20043,0.214], + [20045,0.127], + [20047,0.173], + [20049,0.163], + [20051,0.121], + [20053,0.145], + [20055,0.214], + [20057,0.23], + [20059,0.179], + [20061,0.225], + [20063,0.09], + [20065,0.163], + [20067,0.095], + [20069,0.116], + [20071,0.233], + [20073,0.147], + [20075,0.136], + [20077,0.208], + [20079,0.142], + [20081,0.184], + [20083,0.11], + [20085,0.112], + [20087,0.12], + [20089,0.243], + [20091,0.062], + [20093,0.147], + [20095,0.096], + [20097,0.069], + [20099,0.26], + [20101,0.068], + [20103,0.124], + [20105,0.077], + [20107,0.19], + [20109,0.071], + [20111,0.193], + [20113,0.069], + [20115,0.115], + [20117,0.109], + [20119,0.208], + [20121,0.088], + [20123,0.172], + [20125,0.234], + [20127,0.114], + [20129,0.065], + [20131,0.12], + [20133,0.363], + [20135,0.124], + [20137,0.227], + [20139,0.146], + [20141,0.246], + [20143,0.139], + [20145,0.047], + [20147,0.106], + [20149,0.093], + [20151,0.104], + [20153,0.077], + [20155,0.199], + [20157,0.182], + [20159,0.222], + [20161,0.134], + [20163,0.128], + [20165,0.022], + [20167,0.168], + [20169,0.167], + [20171,0.038], + [20173,0.201], + [20175,0.271], + [20177,0.167], + [20179,0.057], + [20181,0.242], + [20183,0.24], + [20185,0.193], + [20187,0.107], + [20189,0.247], + [20191,0.138], + [20193,0.063], + [20195,0.027], + [20197,0.067], + [20199,0.162], + [20201,0.134], + [20203,0.012], + [20205,0.242], + [20207,0.272], + [20209,0.307], + [21001,0.268], + [21003,0.277], + [21005,0.143], + [21007,0.283], + [21009,0.333], + [21011,0.317], + [21013,0.492], + [21015,0.104], + [21017,0.239], + [21019,0.273], + [21021,0.181], + [21023,0.252], + [21025,0.48], + [21027,0.215], + [21029,0.123], + [21031,0.358], + [21033,0.224], + [21035,0.236], + [21037,0.191], + [21039,0.305], + [21041,0.443], + [21043,0.279], + [21045,0.329], + [21047,0.245], + [21049,0.208], + [21051,0.519], + [21053,0.23], + [21055,0.236], + [21057,0.178], + [21059,0.219], + [21061,0.25], + [21063,0.455], + [21065,0.39], + [21067,0.226], + [21069,0.26], + [21071,0.427], + [21073,0.193], + [21075,0.368], + [21077,0.199], + [21079,0.258], + [21081,0.344], + [21083,0.245], + [21085,0.366], + [21087,0.196], + [21089,0.246], + [21091,0.237], + [21093,0.205], + [21095,0.446], + [21097,0.196], + [21099,0.281], + [21101,0.277], + [21103,0.247], + [21105,0.125], + [21107,0.246], + [21109,0.457], + [21111,0.217], + [21113,0.262], + [21115,0.255], + [21117,0.191], + [21119,0.48], + [21121,0.448], + [21123,0.221], + [21125,0.351], + [21127,0.286], + [21129,0.443], + [21131,0.359], + [21133,0.427], + [21135,0.33], + [21137,0.29], + [21139,0.204], + [21141,0.199], + [21143,0.206], + [21145,0.241], + [21147,0.486], + [21149,0.313], + [21151,0.193], + [21153,0.374], + [21155,0.231], + [21157,0.144], + [21159,0.337], + [21161,0.254], + [21163,0.166], + [21165,0.328], + [21167,0.229], + [21169,0.293], + [21171,0.343], + [21173,0.284], + [21175,0.366], + [21177,0.285], + [21179,0.142], + [21181,0.477], + [21183,0.334], + [21185,0.069], + [21187,0.181], + [21189,0.349], + [21191,0.215], + [21193,0.296], + [21195,0.348], + [21197,0.296], + [21199,0.31], + [21201,0.558], + [21203,0.285], + [21205,0.321], + [21207,0.338], + [21209,0.159], + [21211,0.162], + [21213,0.293], + [21215,0.077], + [21217,0.361], + [21219,0.25], + [21221,0.278], + [21223,0.25], + [21225,0.241], + [21227,0.23], + [21229,0.196], + [21231,0.308], + [21233,0.364], + [21235,0.329], + [21237,0.453], + [21239,0.28], + [22001,0.271], + [22003,0.219], + [22005,0.148], + [22007,0.23], + [22009,0.317], + [22011,0.195], + [22013,0.362], + [22015,0.225], + [22017,0.354], + [22019,0.239], + [22021,0.343], + [22023,0.073], + [22025,0.319], + [22027,0.443], + [22029,0.444], + [22031,0.412], + [22033,0.256], + [22035,0.765], + [22037,0.219], + [22039,0.355], + [22041,0.428], + [22043,0.26], + [22045,0.31], + [22047,0.28], + [22049,0.379], + [22051,0.27], + [22053,0.231], + [22055,0.215], + [22057,0.217], + [22059,0.322], + [22061,0.301], + [22063,0.165], + [22065,0.512], + [22067,0.398], + [22069,0.396], + [22071,0.382], + [22073,0.359], + [22075,0.208], + [22077,0.248], + [22079,0.27], + [22081,0.236], + [22083,0.434], + [22085,0.255], + [22087,0.272], + [22089,0.152], + [22091,0.378], + [22093,0.254], + [22095,0.256], + [22097,0.416], + [22099,0.277], + [22101,0.252], + [22103,0.13], + [22105,0.315], + [22107,0.542], + [22109,0.262], + [22111,0.377], + [22113,0.212], + [22115,0.224], + [22117,0.337], + [22119,0.367], + [22121,0.259], + [22123,0.357], + [22125,0.269], + [22127,0.41], + [23001,0.191], + [23003,0.218], + [23005,0.123], + [23007,0.126], + [23009,0.142], + [23011,0.195], + [23013,0.14], + [23015,0.146], + [23017,0.215], + [23019,0.184], + [23021,0.249], + [23023,0.189], + [23025,0.255], + [23027,0.182], + [23029,0.226], + [23031,0.093], + [24001,0.221], + [24003,0.07], + [24005,0.111], + [24009,0.047], + [24011,0.253], + [24013,0.067], + [24015,0.126], + [24017,0.092], + [24019,0.256], + [24021,0.087], + [24023,0.167], + [24025,0.089], + [24027,0.055], + [24029,0.204], + [24031,0.091], + [24033,0.125], + [24035,0.08], + [24037,0.106], + [24039,0.37], + [24041,0.141], + [24043,0.179], + [24045,0.205], + [24047,0.144], + [24510,0.326], + [25001,0.108], + [25003,0.147], + [25005,0.169], + [25007,0.13], + [25009,0.152], + [25011,0.14], + [25013,0.262], + [25015,0.122], + [25017,0.09], + [25019,0.221], + [25021,0.063], + [25023,0.106], + [25025,0.278], + [25027,0.139], + [26001,0.214], + [26003,0.167], + [26005,0.136], + [26007,0.18], + [26009,0.185], + [26011,0.288], + [26013,0.22], + [26015,0.121], + [26017,0.24], + [26019,0.117], + [26021,0.258], + [26023,0.249], + [26025,0.256], + [26027,0.189], + [26029,0.156], + [26031,0.277], + [26033,0.242], + [26035,0.373], + [26037,0.103], + [26039,0.239], + [26041,0.188], + [26043,0.149], + [26045,0.162], + [26047,0.116], + [26049,0.295], + [26051,0.326], + [26053,0.355], + [26055,0.106], + [26057,0.246], + [26059,0.247], + [26061,0.156], + [26063,0.23], + [26065,0.239], + [26067,0.163], + [26069,0.257], + [26071,0.229], + [26073,0.204], + [26075,0.246], + [26077,0.184], + [26079,0.226], + [26081,0.17], + [26083,0.232], + [26085,0.393], + [26087,0.122], + [26089,0.107], + [26091,0.196], + [26093,0.07], + [26095,0.363], + [26097,0.209], + [26099,0.174], + [26101,0.231], + [26103,0.158], + [26105,0.271], + [26107,0.284], + [26109,0.224], + [26111,0.122], + [26113,0.217], + [26115,0.141], + [26117,0.247], + [26119,0.227], + [26121,0.26], + [26123,0.24], + [26125,0.11], + [26127,0.237], + [26129,0.299], + [26131,0.234], + [26133,0.339], + [26135,0.24], + [26137,0.221], + [26139,0.099], + [26141,0.224], + [26143,0.326], + [26145,0.236], + [26147,0.187], + [26149,0.243], + [26151,0.211], + [26153,0.299], + [26155,0.185], + [26157,0.237], + [26159,0.214], + [26161,0.124], + [26163,0.353], + [26165,0.248], + [27001,0.155], + [27003,0.089], + [27005,0.166], + [27007,0.233], + [27009,0.175], + [27011,0.158], + [27013,0.116], + [27015,0.104], + [27017,0.128], + [27019,0.03], + [27021,0.27], + [27023,0.169], + [27025,0.043], + [27027,0.131], + [27029,0.25], + [27031,0.15], + [27033,0.183], + [27035,0.108], + [27037,0.09], + [27039,0.064], + [27041,0.086], + [27043,0.146], + [27045,0.172], + [27047,0.162], + [27049,0.153], + [27051,0.166], + [27053,0.151], + [27055,0.117], + [27057,0.156], + [27059,0.065], + [27061,0.18], + [27063,0.085], + [27065,0.149], + [27067,0.166], + [27069,0.173], + [27071,0.239], + [27073,0.103], + [27075,0.136], + [27077,0.077], + [27079,0.112], + [27081,0.138], + [27083,0.181], + [27085,0.11], + [27087,0.335], + [27089,0.075], + [27091,0.144], + [27093,0.082], + [27095,0.144], + [27097,0.127], + [27099,0.151], + [27101,0.087], + [27103,0.095], + [27105,0.217], + [27107,0.186], + [27109,0.108], + [27111,0.119], + [27113,0.143], + [27115,0.167], + [27117,0.156], + [27119,0.163], + [27121,0.074], + [27123,0.22], + [27125,0.103], + [27127,0.17], + [27129,0.171], + [27131,0.166], + [27133,0.123], + [27135,0.131], + [27137,0.168], + [27139,0.062], + [27141,0.08], + [27143,0.124], + [27145,0.151], + [27147,0.142], + [27149,0.083], + [27151,0.172], + [27153,0.191], + [27155,0.108], + [27157,0.057], + [27159,0.169], + [27161,0.099], + [27163,0.057], + [27165,0.195], + [27167,0.068], + [27169,0.114], + [27171,0.044], + [27173,0.153], + [28001,0.567], + [28003,0.239], + [28005,0.295], + [28007,0.29], + [28009,0.154], + [28011,0.517], + [28013,0.416], + [28015,0.202], + [28017,0.332], + [28019,0.446], + [28021,0.666], + [28023,0.271], + [28025,0.431], + [28027,0.519], + [28029,0.385], + [28031,0.353], + [28033,0.121], + [28035,0.329], + [28037,0.24], + [28039,0.145], + [28041,0.132], + [28043,0.386], + [28045,0.21], + [28047,0.315], + [28049,0.344], + [28051,0.617], + [28053,0.56], + [28055,0.696], + [28057,0.237], + [28059,0.215], + [28061,0.362], + [28063,0.549], + [28065,0.442], + [28067,0.307], + [28069,0.465], + [28071,0.261], + [28073,0.189], + [28075,0.331], + [28077,0.295], + [28079,0.373], + [28081,0.236], + [28083,0.544], + [28085,0.349], + [28087,0.317], + [28089,0.171], + [28091,0.359], + [28093,0.257], + [28095,0.264], + [28097,0.443], + [28099,0.294], + [28101,0.324], + [28103,0.476], + [28105,0.229], + [28107,0.282], + [28109,0.25], + [28111,0.231], + [28113,0.439], + [28115,0.237], + [28117,0.326], + [28119,0.542], + [28121,0.09], + [28123,0.404], + [28125,0.357], + [28127,0.412], + [28129,0.295], + [28131,0.244], + [28133,0.464], + [28135,0.441], + [28137,0.284], + [28139,0.34], + [28141,0.224], + [28143,0.396], + [28145,0.25], + [28147,0.365], + [28149,0.361], + [28151,0.477], + [28153,0.328], + [28155,0.375], + [28157,0.568], + [28159,0.407], + [28161,0.291], + [28163,0.491], + [29001,0.205], + [29003,0.08], + [29005,0.143], + [29007,0.259], + [29009,0.316], + [29011,0.288], + [29013,0.189], + [29015,0.273], + [29017,0.292], + [29019,0.146], + [29021,0.263], + [29023,0.294], + [29025,0.157], + [29027,0.187], + [29029,0.28], + [29031,0.208], + [29033,0.229], + [29035,0.111], + [29037,0.13], + [29039,0.27], + [29041,0.148], + [29043,0.125], + [29045,0.223], + [29047,0.111], + [29049,0.139], + [29051,0.174], + [29053,0.125], + [29055,0.245], + [29057,0.346], + [29059,0.225], + [29061,0.176], + [29063,0.198], + [29065,0.253], + [29067,0.306], + [29069,0.37], + [29071,0.151], + [29073,0.168], + [29075,0.238], + [29077,0.213], + [29079,0.278], + [29081,0.275], + [29083,0.325], + [29085,0.37], + [29087,0.123], + [29089,0.242], + [29091,0.312], + [29093,0.313], + [29095,0.235], + [29097,0.233], + [29099,0.142], + [29101,0.134], + [29103,0.281], + [29105,0.23], + [29107,0.201], + [29109,0.268], + [29111,0.194], + [29113,0.174], + [29115,0.261], + [29117,0.254], + [29119,0.274], + [29121,0.278], + [29123,0.208], + [29125,0.324], + [29127,0.247], + [29129,0.198], + [29131,0.236], + [29133,0.508], + [29135,0.171], + [29137,0.218], + [29139,0.218], + [29141,0.367], + [29143,0.356], + [29145,0.157], + [29147,0.229], + [29149,0.384], + [29151,0.076], + [29153,0.388], + [29155,0.388], + [29157,0.099], + [29159,0.226], + [29161,0.196], + [29163,0.193], + [29165,0.094], + [29167,0.135], + [29169,0.183], + [29171,0.251], + [29173,0.171], + [29175,0.2], + [29177,0.273], + [29179,0.223], + [29181,0.298], + [29183,0.074], + [29185,0.341], + [29186,0.269], + [29187,0.18], + [29189,0.136], + [29195,0.263], + [29197,0.258], + [29199,0.255], + [29201,0.302], + [29203,0.44], + [29205,0.275], + [29207,0.198], + [29209,0.184], + [29211,0.189], + [29213,0.241], + [29215,0.355], + [29217,0.218], + [29219,0.178], + [29221,0.296], + [29223,0.303], + [29225,0.25], + [29227,0.192], + [29229,0.349], + [29510,0.394], + [30001,0.094], + [30003,0.334], + [30005,0.441], + [30007,0.04], + [30009,0.106], + [30011,0.183], + [30013,0.169], + [30015,0.265], + [30017,0.094], + [30019,0.018], + [30021,0.232], + [30023,0.213], + [30025,0.095], + [30027,0.223], + [30029,0.185], + [30031,0.087], + [30033,0.014], + [30035,0.342], + [30037,0.294], + [30039,0.161], + [30041,0.251], + [30043,0.105], + [30045,0.113], + [30047,0.281], + [30049,0.139], + [30051,0.18], + [30053,0.201], + [30055,0.02], + [30057,0.13], + [30059,0.191], + [30061,0.391], + [30063,0.147], + [30065,0.212], + [30067,0.115], + [30069,0.162], + [30071,0.189], + [30073,0.281], + [30075,0.066], + [30077,0.247], + [30079,0.138], + [30081,0.238], + [30083,0.037], + [30085,0.394], + [30087,0.255], + [30089,0.327], + [30091,0.136], + [30093,0.253], + [30095,0.08], + [30097,0.151], + [30099,0.1], + [30101,0.208], + [30103,0.232], + [30105,0.069], + [30107,0.301], + [30109,0.091], + [30111,0.116], + [31001,0.167], + [31003,0.142], + [31005,0.069], + [31007,0.105], + [31009,0.151], + [31011,0.063], + [31013,0.143], + [31015,0.047], + [31017,0.223], + [31019,0.143], + [31021,0.156], + [31023,0.082], + [31025,0.067], + [31027,0.139], + [31029,0.068], + [31031,0.09], + [31033,0.163], + [31035,0.168], + [31037,0.079], + [31039,0.118], + [31041,0.156], + [31043,0.228], + [31045,0.106], + [31047,0.189], + [31049,0.167], + [31051,0.156], + [31053,0.188], + [31055,0.182], + [31057,0.191], + [31059,0.114], + [31061,0.186], + [31063,0.154], + [31065,0.191], + [31067,0.098], + [31069,0.09], + [31071,0.045], + [31073,0.101], + [31075,0.329], + [31077,0.14], + [31079,0.199], + [31081,0.12], + [31083,0.198], + [31085,0.052], + [31087,0.22], + [31089,0.072], + [31091,0.243], + [31093,0.133], + [31095,0.132], + [31097,0.103], + [31099,0.13], + [31101,0.209], + [31103,0.133], + [31105,0.095], + [31107,0.182], + [31109,0.154], + [31111,0.182], + [31113,0.122], + [31115,0.096], + [31117,0.216], + [31119,0.214], + [31121,0.101], + [31123,0.11], + [31125,0.091], + [31127,0.112], + [31129,0.16], + [31131,0.151], + [31133,0.353], + [31135,0.044], + [31137,0.059], + [31139,0.066], + [31141,0.111], + [31143,0.076], + [31145,0.151], + [31147,0.291], + [31149,0.07], + [31151,0.127], + [31153,0.055], + [31155,0.141], + [31157,0.189], + [31159,0.095], + [31161,0.275], + [31163,0.174], + [31165,0.187], + [31167,0.066], + [31169,0.173], + [31171,0.144], + [31173,0.41], + [31175,0.099], + [31177,0.147], + [31179,0.079], + [31181,0.146], + [31183,0.026], + [31185,0.126], + [32001,0.148], + [32003,0.208], + [32005,0.133], + [32007,0.16], + [32009,0.089], + [32011,0], + [32013,0.096], + [32015,0.223], + [32017,0.246], + [32019,0.174], + [32021,0.414], + [32023,0.266], + [32027,0.227], + [32029,0.116], + [32031,0.165], + [32033,0.207], + [32510,0.224], + [33001,0.136], + [33003,0.112], + [33005,0.124], + [33007,0.18], + [33009,0.142], + [33011,0.105], + [33013,0.085], + [33015,0.052], + [33017,0.09], + [33019,0.12], + [34001,0.241], + [34003,0.084], + [34005,0.086], + [34007,0.19], + [34009,0.142], + [34011,0.277], + [34013,0.231], + [34015,0.101], + [34017,0.255], + [34019,0.046], + [34021,0.152], + [34023,0.109], + [34025,0.098], + [34027,0.047], + [34029,0.185], + [34031,0.261], + [34033,0.259], + [34035,0.048], + [34037,0.06], + [34039,0.142], + [34041,0.121], + [35001,0.251], + [35003,0.331], + [35005,0.307], + [35006,0.4], + [35007,0.345], + [35009,0.339], + [35011,0.218], + [35013,0.403], + [35015,0.197], + [35017,0.321], + [35019,0.196], + [35021,0.307], + [35023,0.377], + [35025,0.222], + [35027,0.175], + [35028,0.054], + [35029,0.425], + [35031,0.457], + [35033,0.297], + [35035,0.32], + [35037,0.369], + [35039,0.331], + [35041,0.378], + [35043,0.192], + [35045,0.273], + [35047,0.398], + [35049,0.218], + [35051,0.33], + [35053,0.356], + [35055,0.278], + [35057,0.318], + [35059,0.262], + [35061,0.291], + [36001,0.147], + [36003,0.248], + [36005,0.416], + [36007,0.224], + [36009,0.232], + [36011,0.167], + [36013,0.279], + [36015,0.222], + [36017,0.185], + [36019,0.197], + [36021,0.137], + [36023,0.162], + [36025,0.298], + [36027,0.115], + [36029,0.222], + [36031,0.105], + [36033,0.268], + [36035,0.229], + [36037,0.197], + [36039,0.161], + [36041,0.125], + [36043,0.228], + [36045,0.208], + [36047,0.302], + [36049,0.23], + [36051,0.176], + [36053,0.141], + [36055,0.221], + [36057,0.291], + [36059,0.074], + [36061,0.229], + [36063,0.186], + [36065,0.257], + [36067,0.21], + [36069,0.126], + [36071,0.195], + [36073,0.231], + [36075,0.281], + [36077,0.191], + [36079,0.036], + [36081,0.179], + [36083,0.192], + [36085,0.177], + [36087,0.243], + [36089,0.284], + [36091,0.074], + [36093,0.194], + [36095,0.18], + [36097,0.199], + [36099,0.139], + [36101,0.207], + [36103,0.091], + [36105,0.227], + [36107,0.148], + [36109,0.16], + [36111,0.153], + [36113,0.123], + [36115,0.16], + [36117,0.161], + [36119,0.114], + [36121,0.168], + [36123,0.181], + [37001,0.258], + [37003,0.236], + [37005,0.347], + [37007,0.298], + [37009,0.263], + [37011,0.169], + [37013,0.241], + [37015,0.351], + [37017,0.346], + [37019,0.23], + [37021,0.173], + [37023,0.287], + [37025,0.155], + [37027,0.204], + [37029,0.144], + [37031,0.175], + [37033,0.339], + [37035,0.202], + [37037,0.204], + [37039,0.246], + [37041,0.395], + [37043,0.28], + [37045,0.272], + [37047,0.346], + [37049,0.251], + [37051,0.262], + [37053,0.098], + [37055,0.112], + [37057,0.22], + [37059,0.212], + [37061,0.403], + [37063,0.241], + [37065,0.363], + [37067,0.284], + [37069,0.218], + [37071,0.238], + [37073,0.196], + [37075,0.266], + [37077,0.182], + [37079,0.385], + [37081,0.239], + [37083,0.37], + [37085,0.237], + [37087,0.268], + [37089,0.165], + [37091,0.358], + [37093,0.285], + [37095,0.272], + [37097,0.184], + [37099,0.29], + [37101,0.21], + [37103,0.46], + [37105,0.254], + [37107,0.348], + [37109,0.211], + [37111,0.277], + [37113,0.304], + [37115,0.238], + [37117,0.259], + [37119,0.182], + [37121,0.225], + [37123,0.303], + [37125,0.2], + [37127,0.22], + [37129,0.227], + [37131,0.397], + [37133,0.192], + [37135,0.091], + [37137,0.29], + [37139,0.278], + [37141,0.182], + [37143,0.307], + [37145,0.279], + [37147,0.286], + [37149,0.181], + [37151,0.245], + [37153,0.401], + [37155,0.419], + [37157,0.263], + [37159,0.254], + [37161,0.267], + [37163,0.355], + [37165,0.415], + [37167,0.234], + [37169,0.204], + [37171,0.242], + [37173,0.342], + [37175,0.289], + [37177,0.475], + [37179,0.123], + [37181,0.34], + [37183,0.132], + [37185,0.311], + [37187,0.466], + [37189,0.216], + [37191,0.343], + [37193,0.296], + [37195,0.35], + [37197,0.282], + [37199,0.247], + [38001,0.088], + [38003,0.111], + [38005,0.506], + [38007,0.108], + [38009,0.072], + [38011,0.058], + [38013,0.063], + [38015,0.085], + [38017,0.105], + [38019,0.124], + [38021,0.013], + [38023,0.106], + [38025,0.076], + [38027,0.17], + [38029,0.035], + [38031,0.063], + [38033,0.148], + [38035,0.15], + [38037,0.089], + [38039,0.105], + [38041,0.142], + [38043,0.07], + [38045,0.15], + [38047,0.022], + [38049,0.078], + [38051,0.053], + [38053,0.159], + [38055,0.104], + [38057,0.069], + [38059,0.069], + [38061,0.147], + [38063,0.105], + [38065,0.003], + [38067,0.047], + [38069,0.262], + [38071,0.135], + [38073,0.047], + [38075,0.021], + [38077,0.094], + [38079,0.457], + [38081,0.027], + [38083,0.217], + [38085,0.478], + [38087,0.028], + [38089,0.059], + [38091,0.05], + [38093,0.172], + [38095,0.156], + [38097,0.044], + [38099,0.094], + [38101,0.097], + [38103,0.004], + [38105,0.104], + [39001,0.318], + [39003,0.208], + [39005,0.212], + [39007,0.303], + [39009,0.297], + [39011,0.121], + [39013,0.197], + [39015,0.247], + [39017,0.167], + [39019,0.211], + [39021,0.154], + [39023,0.247], + [39025,0.125], + [39027,0.205], + [39029,0.242], + [39031,0.209], + [39033,0.258], + [39035,0.266], + [39037,0.168], + [39039,0.161], + [39041,0.056], + [39043,0.189], + [39045,0.126], + [39047,0.264], + [39049,0.239], + [39051,0.143], + [39053,0.295], + [39055,0.086], + [39057,0.167], + [39059,0.332], + [39061,0.244], + [39063,0.156], + [39065,0.224], + [39067,0.236], + [39069,0.117], + [39071,0.316], + [39073,0.185], + [39075,0.173], + [39077,0.217], + [39079,0.276], + [39081,0.245], + [39083,0.184], + [39085,0.111], + [39087,0.255], + [39089,0.176], + [39091,0.216], + [39093,0.208], + [39095,0.277], + [39097,0.152], + [39099,0.274], + [39101,0.236], + [39103,0.08], + [39105,0.312], + [39107,0.08], + [39109,0.12], + [39111,0.343], + [39113,0.274], + [39115,0.301], + [39117,0.117], + [39119,0.231], + [39121,0.216], + [39123,0.164], + [39125,0.128], + [39127,0.268], + [39129,0.165], + [39131,0.267], + [39133,0.184], + [39135,0.16], + [39137,0.096], + [39139,0.219], + [39141,0.251], + [39143,0.183], + [39145,0.311], + [39147,0.233], + [39149,0.118], + [39151,0.211], + [39153,0.188], + [39155,0.291], + [39157,0.196], + [39159,0.082], + [39161,0.164], + [39163,0.314], + [39165,0.058], + [39167,0.201], + [39169,0.2], + [39171,0.198], + [39173,0.106], + [39175,0.109], + [40001,0.426], + [40003,0.16], + [40005,0.267], + [40007,0.162], + [40009,0.131], + [40011,0.205], + [40013,0.232], + [40015,0.274], + [40017,0.096], + [40019,0.201], + [40021,0.273], + [40023,0.434], + [40025,0.206], + [40027,0.128], + [40029,0.283], + [40031,0.23], + [40033,0.139], + [40035,0.243], + [40037,0.221], + [40039,0.172], + [40041,0.296], + [40043,0.279], + [40045,0.221], + [40047,0.17], + [40049,0.201], + [40051,0.163], + [40053,0.151], + [40055,0.237], + [40057,0.169], + [40059,0.223], + [40061,0.243], + [40063,0.289], + [40065,0.242], + [40067,0.298], + [40069,0.259], + [40071,0.242], + [40073,0.136], + [40075,0.362], + [40077,0.258], + [40079,0.294], + [40081,0.189], + [40083,0.15], + [40085,0.154], + [40087,0.107], + [40089,0.318], + [40091,0.255], + [40093,0.163], + [40095,0.212], + [40097,0.264], + [40099,0.171], + [40101,0.318], + [40103,0.112], + [40105,0.201], + [40107,0.274], + [40109,0.255], + [40111,0.27], + [40113,0.238], + [40115,0.319], + [40117,0.185], + [40119,0.216], + [40121,0.223], + [40123,0.216], + [40125,0.226], + [40127,0.283], + [40129,0.291], + [40131,0.126], + [40133,0.309], + [40135,0.369], + [40137,0.201], + [40139,0.238], + [40141,0.296], + [40143,0.229], + [40145,0.144], + [40147,0.205], + [40149,0.201], + [40151,0.129], + [40153,0.15], + [41001,0.232], + [41003,0.126], + [41005,0.103], + [41007,0.14], + [41009,0.147], + [41011,0.243], + [41013,0.226], + [41015,0.183], + [41017,0.149], + [41019,0.24], + [41021,0.023], + [41023,0.209], + [41025,0.23], + [41027,0.161], + [41029,0.221], + [41031,0.298], + [41033,0.241], + [41035,0.238], + [41037,0.256], + [41039,0.195], + [41041,0.298], + [41043,0.212], + [41045,0.364], + [41047,0.229], + [41049,0.188], + [41051,0.199], + [41053,0.172], + [41055,0.128], + [41057,0.215], + [41059,0.25], + [41061,0.215], + [41063,0.21], + [41065,0.151], + [41067,0.134], + [41069,0.374], + [41071,0.192], + [42001,0.135], + [42003,0.166], + [42005,0.198], + [42007,0.156], + [42009,0.186], + [42011,0.21], + [42013,0.213], + [42015,0.181], + [42017,0.073], + [42019,0.094], + [42021,0.249], + [42023,0.251], + [42025,0.222], + [42027,0.119], + [42029,0.079], + [42031,0.23], + [42033,0.238], + [42035,0.242], + [42037,0.178], + [42039,0.196], + [42041,0.1], + [42043,0.197], + [42045,0.137], + [42047,0.142], + [42049,0.247], + [42051,0.302], + [42053,0.381], + [42055,0.152], + [42057,0.131], + [42059,0.214], + [42061,0.193], + [42063,0.189], + [42065,0.202], + [42067,0.204], + [42069,0.222], + [42071,0.147], + [42073,0.201], + [42075,0.145], + [42077,0.201], + [42079,0.256], + [42081,0.208], + [42083,0.264], + [42085,0.235], + [42087,0.21], + [42089,0.151], + [42091,0.072], + [42093,0.154], + [42095,0.13], + [42097,0.206], + [42099,0.11], + [42101,0.357], + [42103,0.158], + [42105,0.186], + [42107,0.176], + [42109,0.173], + [42111,0.201], + [42113,0.11], + [42115,0.194], + [42117,0.166], + [42119,0.114], + [42121,0.205], + [42123,0.232], + [42125,0.117], + [42127,0.146], + [42129,0.141], + [42131,0.147], + [42133,0.149], + [44001,0.057], + [44003,0.086], + [44005,0.111], + [44007,0.242], + [44009,0.094], + [45001,0.318], + [45003,0.265], + [45005,0.523], + [45007,0.222], + [45009,0.397], + [45011,0.427], + [45013,0.205], + [45015,0.184], + [45017,0.223], + [45019,0.226], + [45021,0.315], + [45023,0.288], + [45025,0.352], + [45027,0.343], + [45029,0.337], + [45031,0.32], + [45033,0.453], + [45035,0.159], + [45037,0.237], + [45039,0.284], + [45041,0.275], + [45043,0.324], + [45045,0.191], + [45047,0.397], + [45049,0.242], + [45051,0.291], + [45053,0.397], + [45055,0.208], + [45057,0.229], + [45059,0.314], + [45061,0.405], + [45063,0.185], + [45065,0.454], + [45067,0.423], + [45069,0.391], + [45071,0.32], + [45073,0.271], + [45075,0.359], + [45077,0.169], + [45079,0.223], + [45081,0.3], + [45083,0.233], + [45085,0.315], + [45087,0.297], + [45089,0.409], + [45091,0.163], + [46003,0.058], + [46005,0.384], + [46007,0.516], + [46009,0.143], + [46011,0.103], + [46013,0.113], + [46015,0.183], + [46017,0.441], + [46019,0.05], + [46021,0], + [46023,0.286], + [46025,0.219], + [46027,0.153], + [46029,0.125], + [46031,0.616], + [46033,0.248], + [46035,0.18], + [46037,0.281], + [46039,0.119], + [46041,0.364], + [46043,0.102], + [46045,0.011], + [46047,0.238], + [46049,0], + [46051,0.067], + [46053,0.206], + [46055,0.273], + [46057,0.043], + [46059,0.106], + [46061,0.057], + [46063,0.105], + [46065,0.176], + [46067,0.17], + [46069,0.253], + [46071,0.524], + [46073,0.054], + [46075,0], + [46077,0.108], + [46079,0.202], + [46081,0.109], + [46083,0.023], + [46085,0.316], + [46087,0.089], + [46089,0.09], + [46091,0.064], + [46093,0.094], + [46095,0.615], + [46097,0.167], + [46099,0.142], + [46101,0.22], + [46102,null], + [46103,0.211], + [46105,0.133], + [46107,0.096], + [46109,0.307], + [46111,0.175], + [46115,0.113], + [46117,0.044], + [46119,0.009], + [46121,0.615], + [46123,0.277], + [46125,0.126], + [46127,0.064], + [46129,0.108], + [46135,0.148], + [46137,0.555], + [47001,0.245], + [47003,0.23], + [47005,0.284], + [47007,0.262], + [47009,0.187], + [47011,0.258], + [47013,0.301], + [47015,0.242], + [47017,0.237], + [47019,0.363], + [47021,0.169], + [47023,0.229], + [47025,0.302], + [47027,0.338], + [47029,0.397], + [47031,0.217], + [47033,0.237], + [47035,0.247], + [47037,0.275], + [47039,0.342], + [47041,0.306], + [47043,0.186], + [47045,0.241], + [47047,0.221], + [47049,0.28], + [47051,0.17], + [47053,0.255], + [47055,0.189], + [47057,0.242], + [47059,0.235], + [47061,0.386], + [47063,0.284], + [47065,0.212], + [47067,0.329], + [47069,0.269], + [47071,0.284], + [47073,0.299], + [47075,0.269], + [47077,0.277], + [47079,0.305], + [47081,0.236], + [47083,0.269], + [47085,0.26], + [47087,0.375], + [47089,0.18], + [47091,0.389], + [47093,0.197], + [47095,0.476], + [47097,0.301], + [47099,0.263], + [47101,0.331], + [47103,0.24], + [47105,0.245], + [47107,0.27], + [47109,0.267], + [47111,0.217], + [47113,0.3], + [47115,0.254], + [47117,0.176], + [47119,0.172], + [47121,0.253], + [47123,0.312], + [47125,0.18], + [47127,0.11], + [47129,0.311], + [47131,0.335], + [47133,0.266], + [47135,0.433], + [47137,0.316], + [47139,0.237], + [47141,0.302], + [47143,0.308], + [47145,0.199], + [47147,0.163], + [47149,0.146], + [47151,0.338], + [47153,0.199], + [47155,0.208], + [47157,0.337], + [47159,0.168], + [47161,0.281], + [47163,0.258], + [47165,0.129], + [47167,0.198], + [47169,0.138], + [47171,0.298], + [47173,0.319], + [47175,0.296], + [47177,0.33], + [47179,0.218], + [47181,0.304], + [47183,0.269], + [47185,0.24], + [47187,0.049], + [47189,0.128], + [48001,0.228], + [48003,0.153], + [48005,0.27], + [48007,0.257], + [48009,0.098], + [48011,0.136], + [48013,0.22], + [48015,0.234], + [48017,0.335], + [48019,0.308], + [48021,0.187], + [48023,0.034], + [48025,0.317], + [48027,0.202], + [48029,0.23], + [48031,0.161], + [48033,0], + [48035,0.265], + [48037,0.263], + [48039,0.119], + [48041,0.227], + [48043,0.076], + [48045,0.172], + [48047,0.623], + [48049,0.239], + [48051,0.267], + [48053,0.182], + [48055,0.216], + [48057,0.24], + [48059,0.147], + [48061,0.437], + [48063,0.242], + [48065,0.074], + [48067,0.302], + [48069,0.227], + [48071,0.177], + [48073,0.289], + [48075,0.154], + [48077,0.216], + [48079,0.335], + [48081,0.188], + [48083,0.29], + [48085,0.08], + [48087,0.258], + [48089,0.151], + [48091,0.139], + [48093,0.278], + [48095,0.138], + [48097,0.243], + [48099,0.186], + [48101,0.358], + [48103,0.15], + [48105,0.398], + [48107,0.293], + [48109,0.473], + [48111,0.245], + [48113,0.269], + [48115,0.197], + [48117,0.266], + [48119,0.399], + [48121,0.091], + [48123,0.2], + [48125,0.184], + [48127,0.433], + [48129,0.235], + [48131,0.362], + [48133,0.236], + [48135,0.155], + [48137,0.124], + [48139,0.144], + [48141,0.3], + [48143,0.213], + [48145,0.374], + [48147,0.187], + [48149,0.09], + [48151,0.237], + [48153,0.287], + [48155,0.053], + [48157,0.105], + [48159,0.226], + [48161,0.258], + [48163,0.267], + [48165,0.115], + [48167,0.194], + [48169,0.254], + [48171,0.219], + [48173,0.061], + [48175,0.308], + [48177,0.25], + [48179,0.198], + [48181,0.193], + [48183,0.244], + [48185,0.305], + [48187,0.144], + [48189,0.267], + [48191,0.275], + [48193,0.238], + [48195,0.275], + [48197,0.159], + [48199,0.146], + [48201,0.248], + [48203,0.241], + [48205,0.114], + [48207,0.326], + [48209,0.146], + [48211,0.143], + [48213,0.29], + [48215,0.437], + [48217,0.266], + [48219,0.183], + [48221,0.2], + [48223,0.272], + [48225,0.4], + [48227,0.166], + [48229,0.515], + [48231,0.26], + [48233,0.228], + [48235,0.163], + [48237,0.264], + [48239,0.175], + [48241,0.215], + [48243,0], + [48245,0.288], + [48247,0.359], + [48249,0.32], + [48251,0.139], + [48253,0.197], + [48255,0.315], + [48257,0.162], + [48259,0.076], + [48261,0.299], + [48263,0.42], + [48265,0.223], + [48267,0.364], + [48269,0.068], + [48271,0.083], + [48273,0.273], + [48275,0.232], + [48277,0.261], + [48279,0.276], + [48281,0.148], + [48283,0.087], + [48285,0.13], + [48287,0.189], + [48289,0.27], + [48291,0.211], + [48293,0.335], + [48295,0.13], + [48297,0.236], + [48299,0.195], + [48301,0], + [48303,0.21], + [48305,0.269], + [48307,0.226], + [48309,0.259], + [48311,0], + [48313,0.178], + [48315,0.379], + [48317,0.078], + [48319,0.201], + [48321,0.338], + [48323,0.316], + [48325,0.168], + [48327,0.094], + [48329,0.114], + [48331,0.252], + [48333,0.198], + [48335,0.086], + [48337,0.217], + [48339,0.137], + [48341,0.257], + [48343,0.21], + [48345,0.113], + [48347,0.322], + [48349,0.295], + [48351,0.193], + [48353,0.245], + [48355,0.235], + [48357,0.147], + [48359,0.146], + [48361,0.181], + [48363,0.269], + [48365,0.206], + [48367,0.122], + [48369,0.273], + [48371,0.112], + [48373,0.316], + [48375,0.287], + [48377,0.318], + [48379,0.172], + [48381,0.109], + [48383,0.294], + [48385,0.311], + [48387,0.177], + [48389,0.161], + [48391,0.282], + [48393,0], + [48395,0.211], + [48397,0.074], + [48399,0.202], + [48401,0.225], + [48403,0.362], + [48405,0.374], + [48407,0.21], + [48409,0.219], + [48411,0.329], + [48413,0.099], + [48415,0.172], + [48417,0.207], + [48419,0.368], + [48421,0.246], + [48423,0.22], + [48425,0.308], + [48427,0.456], + [48429,0.327], + [48431,0.371], + [48433,0.201], + [48435,0.055], + [48437,0.306], + [48439,0.192], + [48441,0.204], + [48443,0.14], + [48445,0.208], + [48447,0.196], + [48449,0.291], + [48451,0.17], + [48453,0.185], + [48455,0.299], + [48457,0.238], + [48459,0.202], + [48461,0.238], + [48463,0.276], + [48465,0.27], + [48467,0.188], + [48469,0.208], + [48471,0.24], + [48473,0.246], + [48475,0.126], + [48477,0.207], + [48479,0.418], + [48481,0.29], + [48483,0.309], + [48485,0.263], + [48487,0.219], + [48489,0.493], + [48491,0.08], + [48493,0.126], + [48495,0.221], + [48497,0.198], + [48499,0.219], + [48501,0.145], + [48503,0.248], + [48505,0.48], + [48507,0.563], + [49001,0.158], + [49003,0.129], + [49005,0.139], + [49007,0.187], + [49009,0], + [49011,0.069], + [49013,0.152], + [49015,0.202], + [49017,0.179], + [49019,0.181], + [49021,0.229], + [49023,0.175], + [49025,0.098], + [49027,0.189], + [49029,0.008], + [49031,0.181], + [49033,0.205], + [49035,0.126], + [49037,0.337], + [49039,0.166], + [49041,0.144], + [49043,0.09], + [49045,0.074], + [49047,0.124], + [49049,0.102], + [49051,0.102], + [49053,0.195], + [49055,0.087], + [49057,0.151], + [50001,0.082], + [50003,0.196], + [50005,0.152], + [50007,0.117], + [50009,0.192], + [50011,0.09], + [50013,0.093], + [50015,0.191], + [50017,0.153], + [50019,0.154], + [50021,0.14], + [50023,0.176], + [50025,0.17], + [50027,0.138], + [51001,0.312], + [51003,0.106], + [51005,0.255], + [51007,0.181], + [51009,0.2], + [51011,0.218], + [51013,0.097], + [51015,0.114], + [51017,0.058], + [51019,0.101], + [51021,0.118], + [51023,0.096], + [51025,0.395], + [51027,0.421], + [51029,0.215], + [51031,0.128], + [51033,0.192], + [51035,0.163], + [51036,0.22], + [51037,0.305], + [51041,0.087], + [51043,0.156], + [51045,0.061], + [51047,0.1], + [51049,0.413], + [51051,0.331], + [51053,0.214], + [51057,0.147], + [51059,0.076], + [51061,0.079], + [51063,0.094], + [51065,0.044], + [51067,0.224], + [51069,0.051], + [51071,0.11], + [51073,0.12], + [51075,0.053], + [51077,0.356], + [51079,0.115], + [51081,0.249], + [51083,0.255], + [51085,0.076], + [51087,0.159], + [51089,0.322], + [51091,0.103], + [51093,0.164], + [51095,0.097], + [51097,0.353], + [51099,0.08], + [51101,0.241], + [51103,0.135], + [51105,0.358], + [51107,0.033], + [51109,0.149], + [51111,0.277], + [51113,0.067], + [51115,0.228], + [51117,0.225], + [51119,0.129], + [51121,0.151], + [51125,0.187], + [51127,0.071], + [51131,0.365], + [51133,0.271], + [51135,0.209], + [51137,0.142], + [51139,0.237], + [51141,0.408], + [51143,0.217], + [51145,0.046], + [51147,0.19], + [51149,0.197], + [51153,0.096], + [51155,0.202], + [51157,0.093], + [51159,0.29], + [51161,0.1], + [51163,0.232], + [51165,0.146], + [51167,0.229], + [51169,0.22], + [51171,0.114], + [51173,0.233], + [51175,0.153], + [51177,0.105], + [51179,0.061], + [51181,0.202], + [51183,0.248], + [51185,0.214], + [51187,0.138], + [51191,0.198], + [51193,0.04], + [51195,0.266], + [51197,0.187], + [51199,0.061], + [51510,0.176], + [51520,0.359], + [51530,0.288], + [51540,0.21], + [51550,0.152], + [51570,0.197], + [51580,0.317], + [51590,0.305], + [51595,0.523], + [51600,0.047], + [51610,0.018], + [51620,0.231], + [51630,0.2], + [51640,0.288], + [51650,0.211], + [51660,0.193], + [51670,0.31], + [51678,0.18], + [51680,0.289], + [51683,0.138], + [51685,0.164], + [51690,0.356], + [51700,0.254], + [51710,0.312], + [51720,0.344], + [51730,0.43], + [51735,0.048], + [51740,0.303], + [51750,0.202], + [51760,0.403], + [51770,0.33], + [51775,0.114], + [51790,0.178], + [51800,0.166], + [51810,0.11], + [51820,0.236], + [51830,0.14], + [51840,0.186], + [53001,0.316], + [53003,0.185], + [53005,0.195], + [53007,0.166], + [53009,0.273], + [53011,0.127], + [53013,0.152], + [53015,0.215], + [53017,0.185], + [53019,0.244], + [53021,0.233], + [53023,0.182], + [53025,0.206], + [53027,0.214], + [53029,0.14], + [53031,0.185], + [53033,0.119], + [53035,0.116], + [53037,0.114], + [53039,0.195], + [53041,0.196], + [53043,0.229], + [53045,0.253], + [53047,0.287], + [53049,0.248], + [53051,0.182], + [53053,0.155], + [53055,0.155], + [53057,0.189], + [53059,0.183], + [53061,0.104], + [53063,0.181], + [53065,0.202], + [53067,0.141], + [53069,0.166], + [53071,0.174], + [53073,0.136], + [53075,0.144], + [53077,0.274], + [54001,0.324], + [54003,0.185], + [54005,0.375], + [54007,0.33], + [54009,0.2], + [54011,0.293], + [54013,0.221], + [54015,0.241], + [54017,0.124], + [54019,0.28], + [54021,0.298], + [54023,0.119], + [54025,0.239], + [54027,0.281], + [54029,0.226], + [54031,0.269], + [54033,0.177], + [54035,0.167], + [54037,0.124], + [54039,0.241], + [54041,0.294], + [54043,0.377], + [54045,0.286], + [54047,0.475], + [54049,0.213], + [54051,0.228], + [54053,0.275], + [54055,0.317], + [54057,0.189], + [54059,0.412], + [54061,0.162], + [54063,0.287], + [54065,0.109], + [54067,0.299], + [54069,0.176], + [54071,0.303], + [54073,0.259], + [54075,0.358], + [54077,0.216], + [54079,0.09], + [54081,0.257], + [54083,0.225], + [54085,0.263], + [54087,0.224], + [54089,0.255], + [54091,0.196], + [54093,0.255], + [54095,0.224], + [54097,0.299], + [54099,0.319], + [54101,0.36], + [54103,0.406], + [54105,0.387], + [54107,0.264], + [54109,0.289], + [55001,0.229], + [55003,0.197], + [55005,0.156], + [55007,0.172], + [55009,0.151], + [55011,0.143], + [55013,0.212], + [55015,0.081], + [55017,0.137], + [55019,0.182], + [55021,0.103], + [55023,0.193], + [55025,0.116], + [55027,0.107], + [55029,0.092], + [55031,0.168], + [55033,0.119], + [55035,0.13], + [55037,0.077], + [55039,0.106], + [55041,0.243], + [55043,0.155], + [55045,0.114], + [55047,0.156], + [55049,0.087], + [55051,0.205], + [55053,0.197], + [55055,0.122], + [55057,0.22], + [55059,0.216], + [55061,0.106], + [55063,0.116], + [55065,0.14], + [55067,0.209], + [55069,0.121], + [55071,0.136], + [55073,0.144], + [55075,0.165], + [55077,0.149], + [55078,0.534], + [55079,0.299], + [55081,0.189], + [55083,0.118], + [55085,0.105], + [55087,0.113], + [55089,0.063], + [55091,0.185], + [55093,0.104], + [55095,0.124], + [55097,0.105], + [55099,0.128], + [55101,0.176], + [55103,0.18], + [55105,0.215], + [55107,0.233], + [55109,0.052], + [55111,0.168], + [55113,0.327], + [55115,0.17], + [55117,0.101], + [55119,0.131], + [55121,0.109], + [55123,0.254], + [55125,0.217], + [55127,0.128], + [55129,0.2], + [55131,0.065], + [55133,0.056], + [55135,0.165], + [55137,0.156], + [55139,0.154], + [55141,0.146], + [56001,0.118], + [56003,0.132], + [56005,0.126], + [56007,0.143], + [56009,0.075], + [56011,0.007], + [56013,0.186], + [56015,0.195], + [56017,0.205], + [56019,0.099], + [56021,0.118], + [56023,0.113], + [56025,0.111], + [56027,0.135], + [56029,0.071], + [56031,0.16], + [56033,0.057], + [56035,0.054], + [56037,0.156], + [56039,0.028], + [56041,0.188], + [56043,0.166], + [56045,0.241] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-under18-2019.json b/data/regional/united-states/economics/poverty/us-poverty-rate-under18-2019.json new file mode 100644 index 0000000..d9b3c89 --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-under18-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Under 18 Poverty Rate", + "description" : "Percent of the population aged under 18 living below the poverty line.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.poverty.rate.under18.2019"], + [1001,0.232], + [1003,0.134], + [1005,0.501], + [1007,null], + [1009,0.184], + [1011,null], + [1013,null], + [1015,0.256], + [1017,0.255], + [1019,null], + [1021,0.227], + [1023,null], + [1025,null], + [1027,null], + [1029,null], + [1031,0.243], + [1033,0.211], + [1035,null], + [1037,null], + [1039,0.287], + [1041,null], + [1043,0.195], + [1045,0.277], + [1047,0.461], + [1049,0.313], + [1051,0.152], + [1053,0.311], + [1055,0.289], + [1057,null], + [1059,0.36], + [1061,0.328], + [1063,null], + [1065,null], + [1067,null], + [1069,0.275], + [1071,0.242], + [1073,0.228], + [1075,null], + [1077,0.18], + [1079,0.244], + [1081,0.188], + [1083,0.202], + [1085,null], + [1087,null], + [1089,0.18], + [1091,null], + [1093,null], + [1095,0.327], + [1097,0.286], + [1099,null], + [1101,0.306], + [1103,0.207], + [1105,null], + [1107,null], + [1109,0.324], + [1111,null], + [1113,0.298], + [1115,0.147], + [1117,0.089], + [1119,null], + [1121,0.268], + [1123,0.313], + [1125,0.212], + [1127,0.25], + [1129,null], + [1131,null], + [1133,null], + [2013,null], + [2016,null], + [2020,0.131], + [2050,null], + [2060,null], + [2068,null], + [2070,null], + [2090,0.102], + [2100,null], + [2105,null], + [2110,null], + [2122,0.152], + [2130,null], + [2150,null], + [2158,null], + [2164,null], + [2170,0.122], + [2180,null], + [2185,null], + [2188,null], + [2195,null], + [2198,null], + [2220,null], + [2230,null], + [2240,null], + [2261,null], + [2275,null], + [2282,null], + [2290,null], + [4001,0.448], + [4003,0.246], + [4005,0.172], + [4007,0.378], + [4009,0.313], + [4011,null], + [4012,null], + [4013,0.198], + [4015,0.247], + [4017,0.376], + [4019,0.239], + [4021,0.175], + [4023,0.315], + [4025,0.172], + [4027,0.285], + [5001,null], + [5003,null], + [5005,0.176], + [5007,0.134], + [5009,0.223], + [5011,null], + [5013,null], + [5015,null], + [5017,null], + [5019,null], + [5021,null], + [5023,null], + [5025,null], + [5027,null], + [5029,null], + [5031,0.222], + [5033,0.267], + [5035,0.343], + [5037,null], + [5039,null], + [5041,null], + [5043,null], + [5045,0.158], + [5047,null], + [5049,null], + [5051,0.314], + [5053,null], + [5055,0.256], + [5057,null], + [5059,0.241], + [5061,null], + [5063,0.244], + [5065,null], + [5067,null], + [5069,0.338], + [5071,0.309], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,null], + [5083,null], + [5085,0.167], + [5087,null], + [5089,null], + [5091,0.31], + [5093,0.351], + [5095,null], + [5097,null], + [5099,null], + [5101,null], + [5103,0.347], + [5105,null], + [5107,0.559], + [5109,null], + [5111,null], + [5113,null], + [5115,0.209], + [5117,null], + [5119,0.251], + [5121,null], + [5123,0.336], + [5125,0.129], + [5127,null], + [5129,null], + [5131,0.268], + [5133,null], + [5135,null], + [5137,null], + [5139,0.258], + [5141,null], + [5143,0.18], + [5145,0.202], + [5147,null], + [5149,null], + [6001,0.113], + [6003,null], + [6005,null], + [6007,0.196], + [6009,null], + [6011,null], + [6013,0.109], + [6015,null], + [6017,0.096], + [6019,0.322], + [6021,null], + [6023,0.208], + [6025,0.322], + [6027,null], + [6029,0.291], + [6031,0.255], + [6033,0.238], + [6035,null], + [6037,0.208], + [6039,0.295], + [6041,0.081], + [6043,null], + [6045,0.254], + [6047,0.298], + [6049,null], + [6051,null], + [6053,0.194], + [6055,0.081], + [6057,0.124], + [6059,0.142], + [6061,0.08], + [6063,null], + [6065,0.182], + [6067,0.198], + [6069,0.127], + [6071,0.229], + [6073,0.147], + [6075,0.1], + [6077,0.199], + [6079,0.101], + [6081,0.074], + [6083,0.156], + [6085,0.077], + [6087,0.14], + [6089,0.229], + [6091,null], + [6093,0.244], + [6095,0.133], + [6097,0.107], + [6099,0.204], + [6101,0.213], + [6103,0.328], + [6105,null], + [6107,0.317], + [6109,0.141], + [6111,0.121], + [6113,0.158], + [6115,0.19], + [8001,0.149], + [8003,null], + [8005,0.101], + [8007,null], + [8009,null], + [8011,null], + [8013,0.085], + [8014,null], + [8015,null], + [8017,null], + [8019,null], + [8021,null], + [8023,null], + [8025,null], + [8027,null], + [8029,0.277], + [8031,0.182], + [8033,null], + [8035,0.028], + [8037,null], + [8039,null], + [8041,0.132], + [8043,0.213], + [8045,null], + [8047,null], + [8049,null], + [8051,null], + [8053,null], + [8055,null], + [8057,null], + [8059,0.083], + [8061,null], + [8063,null], + [8065,null], + [8067,null], + [8069,0.094], + [8071,null], + [8073,null], + [8075,null], + [8077,0.192], + [8079,null], + [8081,null], + [8083,null], + [8085,0.214], + [8087,null], + [8089,null], + [8091,null], + [8093,null], + [8095,null], + [8097,null], + [8099,null], + [8101,0.266], + [8103,null], + [8105,null], + [8107,null], + [8109,null], + [8111,null], + [8113,null], + [8115,null], + [8117,null], + [8119,null], + [8121,null], + [8123,0.12], + [8125,null], + [9001,0.11], + [9003,0.145], + [9005,0.083], + [9007,0.08], + [9009,0.173], + [9011,0.147], + [9013,0.05], + [9015,0.145], + [10001,0.204], + [10003,0.155], + [10005,0.206], + [11001,0.24], + [12001,0.196], + [12003,null], + [12005,0.214], + [12007,null], + [12009,0.172], + [12011,0.18], + [12013,null], + [12015,0.19], + [12017,0.262], + [12019,0.138], + [12021,0.195], + [12023,0.23], + [12027,0.383], + [12029,null], + [12031,0.215], + [12033,0.231], + [12035,0.193], + [12037,null], + [12039,0.386], + [12041,null], + [12043,null], + [12045,null], + [12047,null], + [12049,0.378], + [12051,0.321], + [12053,0.193], + [12055,0.334], + [12057,0.198], + [12059,null], + [12061,0.188], + [12063,0.269], + [12065,null], + [12067,null], + [12069,0.192], + [12071,0.221], + [12073,0.197], + [12075,0.29], + [12077,null], + [12079,null], + [12081,0.198], + [12083,0.281], + [12085,0.136], + [12086,0.23], + [12087,0.17], + [12089,0.141], + [12091,0.152], + [12093,0.373], + [12095,0.21], + [12097,0.216], + [12099,0.181], + [12101,0.172], + [12103,0.169], + [12105,0.247], + [12107,0.37], + [12109,0.075], + [12111,0.18], + [12113,0.137], + [12115,0.128], + [12117,0.137], + [12119,0.173], + [12121,0.244], + [12123,null], + [12125,null], + [12127,0.204], + [12129,null], + [12131,0.223], + [12133,null], + [13001,null], + [13003,null], + [13005,null], + [13007,null], + [13009,0.308], + [13011,null], + [13013,0.184], + [13015,0.182], + [13017,null], + [13019,null], + [13021,0.375], + [13023,null], + [13025,null], + [13027,null], + [13029,null], + [13031,0.278], + [13033,null], + [13035,null], + [13037,null], + [13039,0.264], + [13043,null], + [13045,0.241], + [13047,0.124], + [13049,null], + [13051,0.21], + [13053,null], + [13055,null], + [13057,0.097], + [13059,0.334], + [13061,null], + [13063,0.279], + [13065,null], + [13067,0.125], + [13069,0.279], + [13071,0.355], + [13073,0.094], + [13075,null], + [13077,0.151], + [13079,null], + [13081,0.499], + [13083,null], + [13085,null], + [13087,0.334], + [13089,0.235], + [13091,null], + [13093,null], + [13095,0.415], + [13097,0.183], + [13099,null], + [13101,null], + [13103,0.103], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,0.071], + [13115,0.279], + [13117,0.067], + [13119,null], + [13121,0.215], + [13123,null], + [13125,null], + [13127,0.331], + [13129,0.285], + [13131,null], + [13133,null], + [13135,0.151], + [13137,0.184], + [13139,0.218], + [13141,null], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,0.125], + [13153,0.194], + [13155,null], + [13157,0.139], + [13159,null], + [13161,null], + [13163,null], + [13165,null], + [13167,null], + [13169,null], + [13171,null], + [13173,null], + [13175,0.364], + [13177,null], + [13179,0.208], + [13181,null], + [13183,null], + [13185,0.309], + [13187,null], + [13189,null], + [13191,null], + [13193,null], + [13195,null], + [13197,null], + [13199,null], + [13201,null], + [13205,null], + [13207,null], + [13209,null], + [13211,null], + [13213,0.258], + [13215,0.287], + [13217,0.214], + [13219,null], + [13221,null], + [13223,0.111], + [13225,null], + [13227,null], + [13229,null], + [13231,null], + [13233,0.28], + [13235,null], + [13237,null], + [13239,null], + [13241,null], + [13243,null], + [13245,0.361], + [13247,0.206], + [13249,null], + [13251,null], + [13253,null], + [13255,0.259], + [13257,null], + [13259,null], + [13261,0.414], + [13263,null], + [13265,null], + [13267,null], + [13269,null], + [13271,null], + [13273,null], + [13275,0.263], + [13277,0.36], + [13279,0.318], + [13281,null], + [13283,null], + [13285,0.281], + [13287,null], + [13289,null], + [13291,null], + [13293,null], + [13295,0.229], + [13297,0.182], + [13299,0.43], + [13301,null], + [13303,null], + [13305,null], + [13307,null], + [13309,null], + [13311,null], + [13313,0.238], + [13315,null], + [13317,null], + [13319,null], + [13321,null], + [15001,0.229], + [15003,0.101], + [15005,null], + [15007,0.09], + [15009,0.107], + [16001,0.117], + [16003,null], + [16005,0.187], + [16007,null], + [16009,null], + [16011,0.139], + [16013,null], + [16015,null], + [16017,0.196], + [16019,0.126], + [16021,null], + [16023,null], + [16025,null], + [16027,0.155], + [16029,null], + [16031,null], + [16033,null], + [16035,null], + [16037,null], + [16039,null], + [16041,null], + [16043,null], + [16045,null], + [16047,null], + [16049,null], + [16051,null], + [16053,null], + [16055,0.177], + [16057,0.138], + [16059,null], + [16061,null], + [16063,null], + [16065,0.232], + [16067,null], + [16069,null], + [16071,null], + [16073,null], + [16075,null], + [16077,null], + [16079,null], + [16081,null], + [16083,0.182], + [16085,null], + [16087,null], + [17001,0.186], + [17003,null], + [17005,null], + [17007,0.147], + [17009,null], + [17011,null], + [17013,null], + [17015,null], + [17017,null], + [17019,0.158], + [17021,null], + [17023,null], + [17025,null], + [17027,null], + [17029,0.258], + [17031,0.203], + [17033,null], + [17035,null], + [17037,0.182], + [17039,null], + [17041,null], + [17043,0.081], + [17045,null], + [17047,null], + [17049,null], + [17051,null], + [17053,null], + [17055,0.252], + [17057,null], + [17059,null], + [17061,null], + [17063,null], + [17065,null], + [17067,null], + [17069,null], + [17071,null], + [17073,null], + [17075,null], + [17077,0.292], + [17079,null], + [17081,0.3], + [17083,null], + [17085,null], + [17087,null], + [17089,0.145], + [17091,0.203], + [17093,0.05], + [17095,0.252], + [17097,0.107], + [17099,0.214], + [17101,null], + [17103,null], + [17105,null], + [17107,null], + [17109,0.161], + [17111,0.104], + [17113,0.112], + [17115,0.255], + [17117,0.214], + [17119,0.178], + [17121,0.286], + [17123,null], + [17125,null], + [17127,null], + [17129,null], + [17131,null], + [17133,null], + [17135,null], + [17137,null], + [17139,null], + [17141,null], + [17143,0.203], + [17145,null], + [17147,null], + [17149,null], + [17151,null], + [17153,null], + [17155,null], + [17157,null], + [17159,null], + [17161,0.224], + [17163,0.221], + [17165,null], + [17167,0.23], + [17169,null], + [17171,null], + [17173,null], + [17175,null], + [17177,0.199], + [17179,0.098], + [17181,null], + [17183,0.297], + [17185,null], + [17187,null], + [17189,null], + [17191,null], + [17193,null], + [17195,0.161], + [17197,0.095], + [17199,0.201], + [17201,0.246], + [17203,null], + [18001,0.245], + [18003,0.196], + [18005,0.212], + [18007,null], + [18009,null], + [18011,null], + [18013,null], + [18015,null], + [18017,0.199], + [18019,0.15], + [18021,null], + [18023,null], + [18025,null], + [18027,null], + [18029,null], + [18031,null], + [18033,null], + [18035,0.25], + [18037,null], + [18039,0.173], + [18041,null], + [18043,0.152], + [18045,null], + [18047,null], + [18049,null], + [18051,null], + [18053,0.269], + [18055,null], + [18057,0.053], + [18059,0.078], + [18061,null], + [18063,0.053], + [18065,0.215], + [18067,0.23], + [18069,null], + [18071,0.174], + [18073,null], + [18075,null], + [18077,null], + [18079,null], + [18081,0.101], + [18083,0.199], + [18085,0.133], + [18087,null], + [18089,0.248], + [18091,0.27], + [18093,0.167], + [18095,0.244], + [18097,0.265], + [18099,0.162], + [18101,null], + [18103,null], + [18105,0.191], + [18107,null], + [18109,0.159], + [18111,null], + [18113,null], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,null], + [18125,null], + [18127,0.127], + [18129,null], + [18131,null], + [18133,null], + [18135,null], + [18137,null], + [18139,null], + [18141,0.221], + [18143,null], + [18145,null], + [18147,null], + [18149,null], + [18151,null], + [18153,null], + [18155,null], + [18157,0.156], + [18159,null], + [18161,null], + [18163,0.245], + [18165,null], + [18167,0.222], + [18169,null], + [18171,null], + [18173,null], + [18175,null], + [18177,0.261], + [18179,null], + [18181,null], + [18183,null], + [19001,null], + [19003,null], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,0.188], + [19015,null], + [19017,null], + [19019,null], + [19021,null], + [19023,null], + [19025,null], + [19027,null], + [19029,null], + [19031,null], + [19033,null], + [19035,null], + [19037,null], + [19039,null], + [19041,null], + [19043,null], + [19045,0.164], + [19047,null], + [19049,null], + [19051,null], + [19053,null], + [19055,null], + [19057,0.249], + [19059,null], + [19061,0.139], + [19063,null], + [19065,null], + [19067,null], + [19069,null], + [19071,null], + [19073,null], + [19075,null], + [19077,null], + [19079,null], + [19081,null], + [19083,null], + [19085,null], + [19087,null], + [19089,null], + [19091,null], + [19093,null], + [19095,null], + [19097,null], + [19099,null], + [19101,null], + [19103,0.14], + [19105,null], + [19107,null], + [19109,null], + [19111,null], + [19113,0.133], + [19115,null], + [19117,null], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,null], + [19129,null], + [19131,null], + [19133,null], + [19135,null], + [19137,null], + [19139,null], + [19141,null], + [19143,null], + [19145,null], + [19147,null], + [19149,null], + [19151,null], + [19153,0.136], + [19155,0.138], + [19157,null], + [19159,null], + [19161,null], + [19163,0.166], + [19165,null], + [19167,null], + [19169,0.095], + [19171,null], + [19173,null], + [19175,null], + [19177,null], + [19179,0.201], + [19181,null], + [19183,null], + [19185,null], + [19187,null], + [19189,null], + [19191,null], + [19193,0.173], + [19195,null], + [19197,null], + [20001,null], + [20003,null], + [20005,null], + [20007,null], + [20009,null], + [20011,null], + [20013,null], + [20015,0.13], + [20017,null], + [20019,null], + [20021,null], + [20023,null], + [20025,null], + [20027,null], + [20029,null], + [20031,null], + [20033,null], + [20035,null], + [20037,0.221], + [20039,null], + [20041,null], + [20043,null], + [20045,0.122], + [20047,null], + [20049,null], + [20051,null], + [20053,null], + [20055,null], + [20057,0.214], + [20059,null], + [20061,null], + [20063,null], + [20065,null], + [20067,null], + [20069,null], + [20071,null], + [20073,null], + [20075,null], + [20077,null], + [20079,null], + [20081,null], + [20083,null], + [20085,null], + [20087,null], + [20089,null], + [20091,0.062], + [20093,null], + [20095,null], + [20097,null], + [20099,null], + [20101,null], + [20103,0.111], + [20105,null], + [20107,null], + [20109,null], + [20111,0.152], + [20113,null], + [20115,null], + [20117,null], + [20119,null], + [20121,null], + [20123,null], + [20125,0.269], + [20127,null], + [20129,null], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,null], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,0.158], + [20157,null], + [20159,null], + [20161,0.132], + [20163,null], + [20165,null], + [20167,null], + [20169,0.156], + [20171,null], + [20173,0.185], + [20175,null], + [20177,0.139], + [20179,null], + [20181,null], + [20183,null], + [20185,null], + [20187,null], + [20189,null], + [20191,null], + [20193,null], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,null], + [20205,null], + [20207,null], + [20209,0.277], + [21001,null], + [21003,null], + [21005,null], + [21007,null], + [21009,0.36], + [21011,null], + [21013,0.467], + [21015,0.1], + [21017,null], + [21019,0.28], + [21021,null], + [21023,null], + [21025,null], + [21027,null], + [21029,0.11], + [21031,null], + [21033,null], + [21035,0.27], + [21037,0.159], + [21039,null], + [21041,null], + [21043,0.332], + [21045,null], + [21047,0.252], + [21049,0.196], + [21051,0.472], + [21053,null], + [21055,null], + [21057,null], + [21059,0.233], + [21061,null], + [21063,null], + [21065,null], + [21067,0.204], + [21069,null], + [21071,0.415], + [21073,0.188], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,0.284], + [21085,0.386], + [21087,null], + [21089,0.263], + [21091,null], + [21093,0.173], + [21095,0.474], + [21097,null], + [21099,null], + [21101,0.255], + [21103,null], + [21105,null], + [21107,0.294], + [21109,null], + [21111,0.214], + [21113,0.25], + [21115,null], + [21117,0.164], + [21119,null], + [21121,0.433], + [21123,null], + [21125,0.333], + [21127,null], + [21129,null], + [21131,null], + [21133,0.462], + [21135,null], + [21137,null], + [21139,null], + [21141,null], + [21143,null], + [21145,0.23], + [21147,0.421], + [21149,null], + [21151,0.206], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,null], + [21165,null], + [21167,null], + [21169,null], + [21171,null], + [21173,null], + [21175,null], + [21177,null], + [21179,null], + [21181,null], + [21183,null], + [21185,null], + [21187,null], + [21189,null], + [21191,null], + [21193,0.313], + [21195,0.347], + [21197,null], + [21199,0.283], + [21201,null], + [21203,null], + [21205,0.371], + [21207,null], + [21209,0.182], + [21211,null], + [21213,null], + [21215,null], + [21217,null], + [21219,null], + [21221,null], + [21223,null], + [21225,null], + [21227,0.213], + [21229,null], + [21231,null], + [21233,null], + [21235,0.303], + [21237,null], + [21239,null], + [22001,0.356], + [22003,null], + [22005,0.138], + [22007,null], + [22009,0.32], + [22011,0.18], + [22013,null], + [22015,0.25], + [22017,0.359], + [22019,0.253], + [22021,null], + [22023,null], + [22025,null], + [22027,null], + [22029,null], + [22031,null], + [22033,0.26], + [22035,null], + [22037,null], + [22039,0.381], + [22041,0.434], + [22043,null], + [22045,0.329], + [22047,null], + [22049,null], + [22051,0.253], + [22053,0.233], + [22055,0.227], + [22057,0.214], + [22059,null], + [22061,0.366], + [22063,0.152], + [22065,null], + [22067,0.362], + [22069,0.384], + [22071,0.342], + [22073,0.367], + [22075,null], + [22077,null], + [22079,0.265], + [22081,null], + [22083,0.463], + [22085,null], + [22087,0.266], + [22089,0.151], + [22091,null], + [22093,null], + [22095,0.248], + [22097,0.378], + [22099,0.284], + [22101,0.24], + [22103,0.155], + [22105,0.319], + [22107,null], + [22109,0.276], + [22111,null], + [22113,0.213], + [22115,0.229], + [22117,0.327], + [22119,0.435], + [22121,null], + [22123,null], + [22125,null], + [22127,null], + [23001,0.151], + [23003,0.199], + [23005,0.098], + [23007,null], + [23009,0.133], + [23011,0.172], + [23013,null], + [23015,null], + [23017,0.256], + [23019,0.177], + [23021,null], + [23023,null], + [23025,0.3], + [23027,null], + [23029,0.262], + [23031,0.082], + [24001,0.241], + [24003,0.074], + [24005,0.114], + [24009,null], + [24011,null], + [24013,0.057], + [24015,0.136], + [24017,0.09], + [24019,null], + [24021,0.08], + [24023,null], + [24025,0.096], + [24027,0.055], + [24029,null], + [24031,0.086], + [24033,0.116], + [24035,null], + [24037,0.112], + [24039,null], + [24041,null], + [24043,0.172], + [24045,0.196], + [24047,null], + [24510,0.31], + [25001,0.085], + [25003,0.151], + [25005,0.167], + [25007,null], + [25009,0.14], + [25011,0.116], + [25013,0.251], + [25015,0.11], + [25017,0.08], + [25019,null], + [25021,0.06], + [25023,0.093], + [25025,0.262], + [25027,0.123], + [26001,null], + [26003,null], + [26005,0.149], + [26007,null], + [26009,null], + [26011,null], + [26013,null], + [26015,null], + [26017,0.259], + [26019,null], + [26021,0.25], + [26023,0.241], + [26025,0.252], + [26027,0.177], + [26029,null], + [26031,null], + [26033,0.288], + [26035,0.364], + [26037,0.089], + [26039,null], + [26041,null], + [26043,null], + [26045,0.156], + [26047,null], + [26049,0.28], + [26051,null], + [26053,null], + [26055,0.132], + [26057,0.215], + [26059,0.242], + [26061,0.154], + [26063,null], + [26065,0.221], + [26067,0.148], + [26069,null], + [26071,null], + [26073,0.204], + [26075,0.212], + [26077,0.164], + [26079,null], + [26081,0.154], + [26083,null], + [26085,null], + [26087,0.131], + [26089,null], + [26091,0.154], + [26093,0.06], + [26095,null], + [26097,null], + [26099,0.152], + [26101,null], + [26103,0.167], + [26105,null], + [26107,0.239], + [26109,null], + [26111,0.123], + [26113,null], + [26115,0.156], + [26117,0.2], + [26119,null], + [26121,0.221], + [26123,0.254], + [26125,0.1], + [26127,null], + [26129,null], + [26131,null], + [26133,null], + [26135,null], + [26137,null], + [26139,0.081], + [26141,null], + [26143,null], + [26145,0.258], + [26147,0.188], + [26149,0.225], + [26151,0.222], + [26153,null], + [26155,0.136], + [26157,0.199], + [26159,0.221], + [26161,0.12], + [26163,0.337], + [26165,null], + [27001,null], + [27003,0.077], + [27005,null], + [27007,0.248], + [27009,null], + [27011,null], + [27013,0.118], + [27015,null], + [27017,null], + [27019,null], + [27021,null], + [27023,null], + [27025,null], + [27027,0.137], + [27029,null], + [27031,null], + [27033,null], + [27035,0.147], + [27037,0.08], + [27039,null], + [27041,null], + [27043,null], + [27045,null], + [27047,null], + [27049,null], + [27051,null], + [27053,0.133], + [27055,null], + [27057,null], + [27059,null], + [27061,0.159], + [27063,null], + [27065,null], + [27067,0.155], + [27069,null], + [27071,null], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,null], + [27085,null], + [27087,null], + [27089,null], + [27091,null], + [27093,null], + [27095,null], + [27097,null], + [27099,0.182], + [27101,null], + [27103,null], + [27105,null], + [27107,null], + [27109,0.104], + [27111,0.114], + [27113,null], + [27115,null], + [27117,null], + [27119,null], + [27121,null], + [27123,0.206], + [27125,null], + [27127,null], + [27129,null], + [27131,0.133], + [27133,null], + [27135,null], + [27137,0.145], + [27139,0.073], + [27141,0.084], + [27143,null], + [27145,0.168], + [27147,null], + [27149,null], + [27151,null], + [27153,null], + [27155,null], + [27157,null], + [27159,null], + [27161,null], + [27163,0.051], + [27165,null], + [27167,null], + [27169,0.101], + [27171,0.043], + [27173,null], + [28001,0.501], + [28003,0.182], + [28005,null], + [28007,null], + [28009,null], + [28011,0.485], + [28013,null], + [28015,null], + [28017,null], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,0.495], + [28029,0.384], + [28031,null], + [28033,0.121], + [28035,0.322], + [28037,null], + [28039,null], + [28041,null], + [28043,null], + [28045,0.288], + [28047,0.319], + [28049,0.321], + [28051,0.513], + [28053,null], + [28055,null], + [28057,null], + [28059,0.226], + [28061,null], + [28063,null], + [28065,null], + [28067,0.318], + [28069,null], + [28071,0.178], + [28073,0.235], + [28075,0.299], + [28077,null], + [28079,0.382], + [28081,0.203], + [28083,0.512], + [28085,0.282], + [28087,0.296], + [28089,0.14], + [28091,0.303], + [28093,0.315], + [28095,0.242], + [28097,null], + [28099,0.366], + [28101,null], + [28103,null], + [28105,0.229], + [28107,0.259], + [28109,0.219], + [28111,null], + [28113,0.463], + [28115,0.264], + [28117,0.35], + [28119,null], + [28121,0.088], + [28123,0.364], + [28125,null], + [28127,0.27], + [28129,null], + [28131,null], + [28133,0.452], + [28135,null], + [28137,null], + [28139,null], + [28141,null], + [28143,null], + [28145,null], + [28147,null], + [28149,0.303], + [28151,0.499], + [28153,null], + [28155,null], + [28157,null], + [28159,null], + [28161,null], + [28163,0.468], + [29001,null], + [29003,null], + [29005,null], + [29007,null], + [29009,0.325], + [29011,null], + [29013,null], + [29015,null], + [29017,null], + [29019,0.145], + [29021,0.26], + [29023,0.357], + [29025,null], + [29027,null], + [29029,0.249], + [29031,0.189], + [29033,null], + [29035,null], + [29037,0.133], + [29039,null], + [29041,null], + [29043,0.119], + [29045,null], + [29047,0.112], + [29049,null], + [29051,0.143], + [29053,null], + [29055,null], + [29057,null], + [29059,null], + [29061,null], + [29063,null], + [29065,null], + [29067,null], + [29069,0.359], + [29071,0.17], + [29073,null], + [29075,null], + [29077,0.176], + [29079,null], + [29081,null], + [29083,null], + [29085,null], + [29087,null], + [29089,null], + [29091,0.316], + [29093,null], + [29095,0.222], + [29097,0.251], + [29099,0.125], + [29101,0.111], + [29103,null], + [29105,0.195], + [29107,null], + [29109,0.277], + [29111,null], + [29113,0.138], + [29115,null], + [29117,null], + [29119,null], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,null], + [29131,null], + [29133,null], + [29135,null], + [29137,null], + [29139,null], + [29141,null], + [29143,null], + [29145,0.183], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,0.198], + [29161,0.193], + [29163,null], + [29165,0.078], + [29167,0.201], + [29169,0.193], + [29171,null], + [29173,null], + [29175,null], + [29177,null], + [29179,null], + [29181,null], + [29183,0.069], + [29185,null], + [29186,null], + [29187,0.191], + [29189,0.138], + [29195,null], + [29197,null], + [29199,null], + [29201,0.305], + [29203,null], + [29205,null], + [29207,0.238], + [29209,null], + [29211,null], + [29213,0.199], + [29215,0.326], + [29217,null], + [29219,null], + [29221,null], + [29223,null], + [29225,0.265], + [29227,null], + [29229,null], + [29510,0.338], + [30001,null], + [30003,null], + [30005,null], + [30007,null], + [30009,null], + [30011,null], + [30013,0.163], + [30015,null], + [30017,null], + [30019,null], + [30021,null], + [30023,null], + [30025,null], + [30027,null], + [30029,0.146], + [30031,0.069], + [30033,null], + [30035,null], + [30037,null], + [30039,null], + [30041,null], + [30043,null], + [30045,null], + [30047,0.287], + [30049,0.143], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,null], + [30061,null], + [30063,0.137], + [30065,null], + [30067,null], + [30069,null], + [30071,null], + [30073,null], + [30075,null], + [30077,null], + [30079,null], + [30081,0.178], + [30083,null], + [30085,null], + [30087,null], + [30089,null], + [30091,null], + [30093,0.199], + [30095,null], + [30097,null], + [30099,null], + [30101,null], + [30103,null], + [30105,null], + [30107,null], + [30109,null], + [30111,0.118], + [31001,null], + [31003,null], + [31005,null], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,null], + [31019,0.126], + [31021,null], + [31023,null], + [31025,null], + [31027,null], + [31029,null], + [31031,null], + [31033,null], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,null], + [31045,null], + [31047,null], + [31049,null], + [31051,null], + [31053,null], + [31055,0.163], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,null], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,null], + [31077,null], + [31079,0.172], + [31081,null], + [31083,null], + [31085,null], + [31087,null], + [31089,null], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,null], + [31109,0.13], + [31111,null], + [31113,null], + [31115,null], + [31117,null], + [31119,null], + [31121,null], + [31123,null], + [31125,null], + [31127,null], + [31129,null], + [31131,null], + [31133,null], + [31135,null], + [31137,null], + [31139,null], + [31141,null], + [31143,null], + [31145,null], + [31147,null], + [31149,null], + [31151,null], + [31153,0.07], + [31155,null], + [31157,null], + [31159,null], + [31161,null], + [31163,null], + [31165,null], + [31167,null], + [31169,null], + [31171,null], + [31173,null], + [31175,null], + [31177,null], + [31179,null], + [31181,null], + [31183,null], + [31185,null], + [32001,null], + [32003,0.193], + [32005,null], + [32007,0.161], + [32009,null], + [32011,null], + [32013,null], + [32015,null], + [32017,null], + [32019,0.166], + [32021,null], + [32023,0.22], + [32027,null], + [32029,null], + [32031,0.139], + [32033,null], + [32510,0.168], + [33001,null], + [33003,null], + [33005,0.108], + [33007,null], + [33009,0.137], + [33011,0.094], + [33013,0.066], + [33015,0.056], + [33017,0.091], + [33019,null], + [34001,0.203], + [34003,0.074], + [34005,0.085], + [34007,0.174], + [34009,0.142], + [34011,0.242], + [34013,0.22], + [34015,0.084], + [34017,0.222], + [34019,0.049], + [34021,0.157], + [34023,0.111], + [34025,0.091], + [34027,0.051], + [34029,0.162], + [34031,0.247], + [34033,0.206], + [34035,0.061], + [34037,0.062], + [34039,0.132], + [34041,0.11], + [35001,0.238], + [35003,null], + [35005,0.266], + [35006,0.325], + [35007,null], + [35009,0.304], + [35011,null], + [35013,0.383], + [35015,0.19], + [35017,0.37], + [35019,null], + [35021,null], + [35023,null], + [35025,0.211], + [35027,null], + [35028,null], + [35029,0.368], + [35031,0.439], + [35033,null], + [35035,0.31], + [35037,null], + [35039,0.289], + [35041,null], + [35043,0.167], + [35045,0.274], + [35047,0.353], + [35049,0.183], + [35051,null], + [35053,null], + [35055,0.234], + [35057,null], + [35059,null], + [35061,0.224], + [36001,0.163], + [36003,0.267], + [36005,0.392], + [36007,0.241], + [36009,0.231], + [36011,0.178], + [36013,0.285], + [36015,0.194], + [36017,0.171], + [36019,0.21], + [36021,0.157], + [36023,0.182], + [36025,0.312], + [36027,0.116], + [36029,0.211], + [36031,null], + [36033,0.269], + [36035,0.214], + [36037,0.158], + [36039,0.179], + [36041,null], + [36043,0.202], + [36045,0.195], + [36047,0.273], + [36049,null], + [36051,0.156], + [36053,0.11], + [36055,0.212], + [36057,0.331], + [36059,0.067], + [36061,0.208], + [36063,0.199], + [36065,0.236], + [36067,0.205], + [36069,0.114], + [36071,0.181], + [36073,null], + [36075,0.272], + [36077,0.174], + [36079,null], + [36081,0.159], + [36083,0.181], + [36085,0.153], + [36087,0.241], + [36089,0.264], + [36091,0.067], + [36093,0.169], + [36095,null], + [36097,null], + [36099,null], + [36101,0.197], + [36103,0.091], + [36105,0.238], + [36107,0.126], + [36109,0.139], + [36111,0.172], + [36113,0.11], + [36115,0.153], + [36117,0.173], + [36119,0.104], + [36121,null], + [36123,null], + [37001,0.248], + [37003,null], + [37005,null], + [37007,null], + [37009,null], + [37011,null], + [37013,0.293], + [37015,null], + [37017,0.336], + [37019,0.187], + [37021,0.172], + [37023,0.267], + [37025,0.148], + [37027,0.197], + [37029,null], + [37031,0.142], + [37033,null], + [37035,0.182], + [37037,0.157], + [37039,null], + [37041,null], + [37043,null], + [37045,0.298], + [37047,0.345], + [37049,0.241], + [37051,0.259], + [37053,null], + [37055,null], + [37057,0.236], + [37059,null], + [37061,0.34], + [37063,0.235], + [37065,0.371], + [37067,0.258], + [37069,0.192], + [37071,0.204], + [37073,null], + [37075,null], + [37077,0.224], + [37079,null], + [37081,0.23], + [37083,0.368], + [37085,0.215], + [37087,0.226], + [37089,0.177], + [37091,null], + [37093,0.26], + [37095,null], + [37097,0.157], + [37099,0.249], + [37101,0.193], + [37103,null], + [37105,0.229], + [37107,0.403], + [37109,0.178], + [37111,0.223], + [37113,0.252], + [37115,null], + [37117,null], + [37119,0.164], + [37121,null], + [37123,null], + [37125,0.176], + [37127,0.207], + [37129,0.197], + [37131,null], + [37133,0.18], + [37135,0.114], + [37137,null], + [37139,0.225], + [37141,0.199], + [37143,null], + [37145,0.344], + [37147,0.277], + [37149,null], + [37151,0.223], + [37153,0.414], + [37155,0.402], + [37157,0.264], + [37159,0.248], + [37161,0.255], + [37163,0.32], + [37165,0.419], + [37167,0.22], + [37169,0.196], + [37171,0.241], + [37173,null], + [37175,null], + [37177,null], + [37179,0.11], + [37181,0.308], + [37183,0.12], + [37185,null], + [37187,null], + [37189,0.193], + [37191,0.328], + [37193,0.294], + [37195,0.326], + [37197,0.273], + [37199,null], + [38001,null], + [38003,null], + [38005,null], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,0.075], + [38017,0.101], + [38019,null], + [38021,null], + [38023,null], + [38025,null], + [38027,null], + [38029,null], + [38031,null], + [38033,null], + [38035,0.14], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,null], + [38047,null], + [38049,null], + [38051,null], + [38053,null], + [38055,null], + [38057,null], + [38059,null], + [38061,null], + [38063,null], + [38065,null], + [38067,null], + [38069,null], + [38071,null], + [38073,null], + [38075,null], + [38077,null], + [38079,null], + [38081,null], + [38083,null], + [38085,null], + [38087,null], + [38089,null], + [38091,null], + [38093,null], + [38095,null], + [38097,null], + [38099,null], + [38101,0.099], + [38103,null], + [38105,null], + [39001,0.294], + [39003,0.206], + [39005,0.215], + [39007,0.296], + [39009,0.294], + [39011,null], + [39013,0.155], + [39015,0.208], + [39017,0.163], + [39019,null], + [39021,null], + [39023,0.213], + [39025,0.11], + [39027,0.23], + [39029,0.221], + [39031,0.216], + [39033,0.229], + [39035,0.255], + [39037,0.155], + [39039,null], + [39041,0.054], + [39043,0.179], + [39045,0.118], + [39047,null], + [39049,0.227], + [39051,null], + [39053,0.294], + [39055,0.06], + [39057,0.162], + [39059,0.325], + [39061,0.234], + [39063,0.136], + [39065,null], + [39067,null], + [39069,null], + [39071,0.277], + [39073,null], + [39075,null], + [39077,0.188], + [39079,0.275], + [39081,0.271], + [39083,0.204], + [39085,0.116], + [39087,0.249], + [39089,0.151], + [39091,0.15], + [39093,0.206], + [39095,0.265], + [39097,null], + [39099,0.278], + [39101,0.218], + [39103,0.081], + [39105,null], + [39107,null], + [39109,0.11], + [39111,null], + [39113,0.252], + [39115,null], + [39117,null], + [39119,0.246], + [39121,null], + [39123,null], + [39125,null], + [39127,0.272], + [39129,0.176], + [39131,0.255], + [39133,0.159], + [39135,null], + [39137,null], + [39139,0.186], + [39141,0.22], + [39143,0.155], + [39145,0.308], + [39147,0.184], + [39149,null], + [39151,0.214], + [39153,0.192], + [39155,0.284], + [39157,0.19], + [39159,null], + [39161,null], + [39163,null], + [39165,0.048], + [39167,0.193], + [39169,0.164], + [39171,null], + [39173,0.113], + [39175,null], + [40001,0.408], + [40003,null], + [40005,null], + [40007,null], + [40009,null], + [40011,null], + [40013,0.216], + [40015,0.257], + [40017,0.107], + [40019,0.213], + [40021,0.275], + [40023,null], + [40025,null], + [40027,0.109], + [40029,null], + [40031,0.227], + [40033,null], + [40035,null], + [40037,0.221], + [40039,0.179], + [40041,0.305], + [40043,null], + [40045,null], + [40047,0.199], + [40049,null], + [40051,0.148], + [40053,null], + [40055,null], + [40057,null], + [40059,null], + [40061,null], + [40063,null], + [40065,null], + [40067,null], + [40069,null], + [40071,0.256], + [40073,null], + [40075,null], + [40077,null], + [40079,0.297], + [40081,null], + [40083,0.182], + [40085,null], + [40087,null], + [40089,0.303], + [40091,null], + [40093,null], + [40095,null], + [40097,0.25], + [40099,null], + [40101,0.294], + [40103,null], + [40105,null], + [40107,null], + [40109,0.237], + [40111,0.273], + [40113,0.244], + [40115,0.306], + [40117,null], + [40119,0.217], + [40121,0.216], + [40123,0.197], + [40125,0.201], + [40127,null], + [40129,null], + [40131,0.144], + [40133,null], + [40135,0.314], + [40137,0.2], + [40139,null], + [40141,null], + [40143,0.218], + [40145,0.144], + [40147,0.194], + [40149,null], + [40151,null], + [40153,null], + [41001,null], + [41003,0.139], + [41005,0.092], + [41007,null], + [41009,0.138], + [41011,0.239], + [41013,null], + [41015,null], + [41017,0.142], + [41019,0.221], + [41021,null], + [41023,null], + [41025,null], + [41027,null], + [41029,0.211], + [41031,null], + [41033,0.256], + [41035,0.269], + [41037,null], + [41039,0.199], + [41041,0.249], + [41043,0.161], + [41045,0.305], + [41047,0.195], + [41049,null], + [41051,0.17], + [41053,0.14], + [41055,null], + [41057,null], + [41059,0.259], + [41061,null], + [41063,null], + [41065,null], + [41067,0.115], + [41069,null], + [41071,0.163], + [42001,0.117], + [42003,0.153], + [42005,0.154], + [42007,0.173], + [42009,0.145], + [42011,0.187], + [42013,0.205], + [42015,0.189], + [42017,0.072], + [42019,0.093], + [42021,0.253], + [42023,null], + [42025,0.194], + [42027,0.107], + [42029,0.073], + [42031,0.202], + [42033,0.242], + [42035,0.181], + [42037,0.179], + [42039,0.183], + [42041,0.093], + [42043,0.202], + [42045,0.135], + [42047,null], + [42049,0.231], + [42051,0.272], + [42053,null], + [42055,0.148], + [42057,null], + [42059,null], + [42061,null], + [42063,0.198], + [42065,0.232], + [42067,null], + [42069,0.212], + [42071,0.144], + [42073,0.201], + [42075,0.165], + [42077,0.195], + [42079,0.255], + [42081,0.204], + [42083,0.26], + [42085,0.233], + [42087,0.213], + [42089,0.147], + [42091,0.069], + [42093,null], + [42095,0.133], + [42097,0.188], + [42099,null], + [42101,0.348], + [42103,null], + [42105,null], + [42107,0.166], + [42109,null], + [42111,0.203], + [42113,null], + [42115,null], + [42117,0.167], + [42119,null], + [42121,0.177], + [42123,null], + [42125,0.111], + [42127,0.15], + [42129,0.135], + [42131,null], + [42133,0.14], + [44001,null], + [44003,0.088], + [44005,0.106], + [44007,0.217], + [44009,0.092], + [45001,null], + [45003,0.221], + [45005,null], + [45007,0.214], + [45009,null], + [45011,0.464], + [45013,0.185], + [45015,0.171], + [45017,null], + [45019,0.207], + [45021,0.272], + [45023,0.274], + [45025,0.333], + [45027,0.36], + [45029,0.379], + [45031,0.292], + [45033,0.457], + [45035,0.178], + [45037,null], + [45039,null], + [45041,0.259], + [45043,0.326], + [45045,0.153], + [45047,0.359], + [45049,null], + [45051,0.265], + [45053,0.303], + [45055,0.193], + [45057,0.188], + [45059,0.306], + [45061,null], + [45063,0.184], + [45065,null], + [45067,0.3], + [45069,0.384], + [45071,0.27], + [45073,0.26], + [45075,0.382], + [45077,0.133], + [45079,0.209], + [45081,null], + [45083,0.213], + [45085,0.272], + [45087,0.365], + [45089,0.349], + [45091,0.14], + [46003,null], + [46005,null], + [46007,null], + [46009,null], + [46011,null], + [46013,null], + [46015,null], + [46017,null], + [46019,null], + [46021,null], + [46023,null], + [46025,null], + [46027,null], + [46029,null], + [46031,null], + [46033,null], + [46035,null], + [46037,null], + [46039,null], + [46041,null], + [46043,null], + [46045,null], + [46047,null], + [46049,null], + [46051,null], + [46053,null], + [46055,null], + [46057,null], + [46059,null], + [46061,null], + [46063,null], + [46065,null], + [46067,null], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,null], + [46081,null], + [46083,null], + [46085,null], + [46087,null], + [46089,null], + [46091,null], + [46093,null], + [46095,null], + [46097,null], + [46099,0.126], + [46101,null], + [46102,0.528], + [46103,0.212], + [46105,null], + [46107,null], + [46109,null], + [46111,null], + [46115,null], + [46117,null], + [46119,null], + [46121,null], + [46123,null], + [46125,null], + [46127,null], + [46129,null], + [46135,null], + [46137,null], + [47001,0.222], + [47003,0.194], + [47005,null], + [47007,null], + [47009,0.157], + [47011,0.223], + [47013,0.309], + [47015,null], + [47017,null], + [47019,0.319], + [47021,null], + [47023,null], + [47025,0.335], + [47027,null], + [47029,0.4], + [47031,0.204], + [47033,null], + [47035,0.201], + [47037,0.238], + [47039,null], + [47041,null], + [47043,0.171], + [47045,0.218], + [47047,null], + [47049,null], + [47051,0.181], + [47053,0.202], + [47055,null], + [47057,null], + [47059,0.255], + [47061,null], + [47063,0.24], + [47065,0.182], + [47067,null], + [47069,null], + [47071,null], + [47073,0.329], + [47075,null], + [47077,null], + [47079,0.322], + [47081,null], + [47083,null], + [47085,null], + [47087,null], + [47089,0.187], + [47091,null], + [47093,0.18], + [47095,null], + [47097,null], + [47099,0.243], + [47101,null], + [47103,null], + [47105,0.18], + [47107,0.27], + [47109,null], + [47111,null], + [47113,0.306], + [47115,null], + [47117,null], + [47119,0.122], + [47121,null], + [47123,0.28], + [47125,0.171], + [47127,null], + [47129,null], + [47131,0.303], + [47133,null], + [47135,null], + [47137,null], + [47139,null], + [47141,0.231], + [47143,0.289], + [47145,0.174], + [47147,0.174], + [47149,0.141], + [47151,null], + [47153,null], + [47155,0.205], + [47157,0.31], + [47159,null], + [47161,null], + [47163,0.262], + [47165,0.118], + [47167,0.18], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,0.377], + [47179,0.192], + [47181,null], + [47183,0.276], + [47185,null], + [47187,0.041], + [47189,0.106], + [48001,0.214], + [48003,null], + [48005,0.247], + [48007,null], + [48009,null], + [48011,null], + [48013,0.211], + [48015,null], + [48017,null], + [48019,null], + [48021,0.149], + [48023,null], + [48025,null], + [48027,0.195], + [48029,0.223], + [48031,null], + [48033,null], + [48035,null], + [48037,0.222], + [48039,0.106], + [48041,0.206], + [48043,null], + [48045,null], + [48047,null], + [48049,null], + [48051,null], + [48053,null], + [48055,0.257], + [48057,null], + [48059,null], + [48061,0.411], + [48063,null], + [48065,null], + [48067,0.282], + [48069,null], + [48071,null], + [48073,0.219], + [48075,null], + [48077,null], + [48079,null], + [48081,null], + [48083,null], + [48085,0.07], + [48087,null], + [48089,null], + [48091,0.104], + [48093,null], + [48095,null], + [48097,null], + [48099,0.175], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,0.233], + [48115,null], + [48117,null], + [48119,null], + [48121,0.084], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,null], + [48133,null], + [48135,0.155], + [48137,null], + [48139,0.13], + [48141,0.285], + [48143,0.161], + [48145,null], + [48147,null], + [48149,null], + [48151,null], + [48153,null], + [48155,null], + [48157,0.092], + [48159,null], + [48161,null], + [48163,null], + [48165,null], + [48167,0.174], + [48169,null], + [48171,null], + [48173,null], + [48175,null], + [48177,null], + [48179,null], + [48181,0.187], + [48183,0.257], + [48185,null], + [48187,0.127], + [48189,null], + [48191,null], + [48193,null], + [48195,null], + [48197,null], + [48199,0.144], + [48201,0.234], + [48203,0.254], + [48205,null], + [48207,null], + [48209,0.139], + [48211,null], + [48213,0.271], + [48215,0.414], + [48217,null], + [48219,null], + [48221,0.145], + [48223,0.186], + [48225,null], + [48227,0.207], + [48229,null], + [48231,0.225], + [48233,null], + [48235,null], + [48237,null], + [48239,null], + [48241,0.268], + [48243,null], + [48245,0.264], + [48247,null], + [48249,0.341], + [48251,0.146], + [48253,null], + [48255,null], + [48257,0.144], + [48259,null], + [48261,null], + [48263,null], + [48265,0.195], + [48267,null], + [48269,null], + [48271,null], + [48273,0.362], + [48275,null], + [48277,0.26], + [48279,null], + [48281,null], + [48283,null], + [48285,null], + [48287,null], + [48289,null], + [48291,0.192], + [48293,null], + [48295,null], + [48297,null], + [48299,null], + [48301,null], + [48303,0.212], + [48305,null], + [48307,null], + [48309,0.25], + [48311,null], + [48313,null], + [48315,null], + [48317,null], + [48319,null], + [48321,0.297], + [48323,0.367], + [48325,0.178], + [48327,null], + [48329,0.132], + [48331,null], + [48333,null], + [48335,null], + [48337,null], + [48339,0.123], + [48341,null], + [48343,null], + [48345,null], + [48347,0.304], + [48349,0.231], + [48351,null], + [48353,null], + [48355,0.241], + [48357,null], + [48359,null], + [48361,0.183], + [48363,0.279], + [48365,null], + [48367,0.101], + [48369,null], + [48371,null], + [48373,0.312], + [48375,0.266], + [48377,null], + [48379,null], + [48381,0.1], + [48383,null], + [48385,null], + [48387,null], + [48389,null], + [48391,null], + [48393,null], + [48395,null], + [48397,null], + [48399,null], + [48401,0.147], + [48403,null], + [48405,null], + [48407,null], + [48409,0.239], + [48411,null], + [48413,null], + [48415,null], + [48417,null], + [48419,0.378], + [48421,null], + [48423,0.204], + [48425,null], + [48427,0.443], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,null], + [48439,0.171], + [48441,0.191], + [48443,null], + [48445,null], + [48447,null], + [48449,0.259], + [48451,0.196], + [48453,0.156], + [48455,null], + [48457,null], + [48459,0.213], + [48461,null], + [48463,null], + [48465,0.285], + [48467,0.186], + [48469,0.203], + [48471,0.214], + [48473,0.218], + [48475,null], + [48477,null], + [48479,0.378], + [48481,0.259], + [48483,null], + [48485,0.205], + [48487,null], + [48489,0.395], + [48491,0.075], + [48493,null], + [48495,null], + [48497,0.163], + [48499,0.241], + [48501,null], + [48503,null], + [48505,null], + [48507,null], + [49001,null], + [49003,null], + [49005,0.156], + [49007,null], + [49009,null], + [49011,0.065], + [49013,null], + [49015,null], + [49017,null], + [49019,null], + [49021,0.175], + [49023,null], + [49025,null], + [49027,null], + [49029,null], + [49031,null], + [49033,null], + [49035,0.111], + [49037,null], + [49039,null], + [49041,null], + [49043,null], + [49045,null], + [49047,null], + [49049,0.094], + [49051,null], + [49053,0.156], + [49055,null], + [49057,0.125], + [50001,null], + [50003,null], + [50005,null], + [50007,0.127], + [50009,null], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,0.107], + [50023,0.153], + [50025,0.184], + [50027,0.101], + [51001,0.328], + [51003,0.107], + [51005,null], + [51007,null], + [51009,null], + [51011,null], + [51013,0.066], + [51015,0.118], + [51017,null], + [51019,0.109], + [51021,null], + [51023,null], + [51025,null], + [51027,0.425], + [51029,null], + [51031,0.142], + [51033,null], + [51035,null], + [51036,null], + [51037,null], + [51041,0.087], + [51043,null], + [51045,null], + [51047,null], + [51049,null], + [51051,null], + [51053,null], + [51057,null], + [51059,0.078], + [51061,null], + [51063,null], + [51065,null], + [51067,0.235], + [51069,0.077], + [51071,null], + [51073,null], + [51075,null], + [51077,null], + [51079,null], + [51081,null], + [51083,null], + [51085,0.064], + [51087,0.136], + [51089,0.299], + [51091,null], + [51093,null], + [51095,0.099], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,0.394], + [51107,0.032], + [51109,null], + [51111,null], + [51113,null], + [51115,null], + [51117,null], + [51119,null], + [51121,0.145], + [51125,null], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,null], + [51143,0.273], + [51145,null], + [51147,null], + [51149,null], + [51153,0.09], + [51155,null], + [51157,null], + [51159,null], + [51161,0.084], + [51163,null], + [51165,0.099], + [51167,0.229], + [51169,null], + [51171,0.158], + [51173,0.262], + [51175,null], + [51177,0.09], + [51179,0.052], + [51181,null], + [51183,null], + [51185,0.266], + [51187,null], + [51191,0.213], + [51193,null], + [51195,0.292], + [51197,null], + [51199,null], + [51510,0.188], + [51520,null], + [51530,null], + [51540,0.208], + [51550,0.149], + [51570,null], + [51580,null], + [51590,0.334], + [51595,null], + [51600,null], + [51610,null], + [51620,null], + [51630,null], + [51640,null], + [51650,0.232], + [51660,0.184], + [51670,0.367], + [51678,null], + [51680,0.23], + [51683,null], + [51685,null], + [51690,null], + [51700,0.222], + [51710,0.283], + [51720,null], + [51730,0.365], + [51735,null], + [51740,0.289], + [51750,null], + [51760,0.37], + [51770,0.318], + [51775,null], + [51790,null], + [51800,0.161], + [51810,0.102], + [51820,null], + [51830,null], + [51840,null], + [53001,null], + [53003,null], + [53005,0.175], + [53007,0.171], + [53009,0.232], + [53011,0.118], + [53013,null], + [53015,0.181], + [53017,0.159], + [53019,null], + [53021,0.215], + [53023,null], + [53025,0.203], + [53027,0.202], + [53029,0.098], + [53031,null], + [53033,0.104], + [53035,0.103], + [53037,0.096], + [53039,null], + [53041,0.153], + [53043,null], + [53045,0.231], + [53047,0.268], + [53049,null], + [53051,null], + [53053,0.134], + [53055,null], + [53057,0.162], + [53059,null], + [53061,0.088], + [53063,0.164], + [53065,0.176], + [53067,0.125], + [53069,null], + [53071,0.157], + [53073,0.113], + [53075,0.149], + [53077,0.256], + [54001,null], + [54003,0.182], + [54005,null], + [54007,null], + [54009,null], + [54011,0.26], + [54013,null], + [54015,null], + [54017,null], + [54019,0.296], + [54021,null], + [54023,null], + [54025,0.213], + [54027,null], + [54029,null], + [54031,null], + [54033,0.198], + [54035,null], + [54037,null], + [54039,0.247], + [54041,null], + [54043,null], + [54045,0.329], + [54047,0.449], + [54049,0.236], + [54051,null], + [54053,null], + [54055,0.276], + [54057,null], + [54059,0.392], + [54061,0.15], + [54063,null], + [54065,null], + [54067,null], + [54069,0.128], + [54071,null], + [54073,null], + [54075,null], + [54077,null], + [54079,0.119], + [54081,0.275], + [54083,null], + [54085,null], + [54087,null], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,null], + [54099,0.315], + [54101,null], + [54103,null], + [54105,null], + [54107,0.243], + [54109,null], + [55001,null], + [55003,null], + [55005,0.14], + [55007,null], + [55009,0.128], + [55011,null], + [55013,null], + [55015,null], + [55017,0.145], + [55019,null], + [55021,null], + [55023,null], + [55025,0.086], + [55027,0.109], + [55029,null], + [55031,null], + [55033,0.115], + [55035,0.128], + [55037,null], + [55039,0.111], + [55041,null], + [55043,0.152], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,0.103], + [55057,null], + [55059,0.183], + [55061,null], + [55063,0.084], + [55065,null], + [55067,null], + [55069,null], + [55071,0.143], + [55073,0.128], + [55075,0.197], + [55077,null], + [55078,null], + [55079,0.275], + [55081,0.17], + [55083,null], + [55085,null], + [55087,0.11], + [55089,null], + [55091,null], + [55093,null], + [55095,null], + [55097,0.1], + [55099,null], + [55101,0.185], + [55103,null], + [55105,0.196], + [55107,null], + [55109,null], + [55111,0.153], + [55113,null], + [55115,null], + [55117,0.093], + [55119,null], + [55121,null], + [55123,null], + [55125,null], + [55127,0.098], + [55129,null], + [55131,0.05], + [55133,0.056], + [55135,null], + [55137,null], + [55139,0.141], + [55141,0.134], + [56001,0.115], + [56003,null], + [56005,null], + [56007,null], + [56009,null], + [56011,null], + [56013,null], + [56015,null], + [56017,null], + [56019,null], + [56021,0.125], + [56023,null], + [56025,0.105], + [56027,null], + [56029,null], + [56031,null], + [56033,null], + [56035,null], + [56037,null], + [56039,null], + [56041,null], + [56043,null], + [56045,null] + ] +} diff --git a/data/regional/united-states/economics/poverty/us-poverty-rate-under5-2017.json b/data/regional/united-states/economics/poverty/us-poverty-rate-under5-2017.json new file mode 100644 index 0000000..8c61a56 --- /dev/null +++ b/data/regional/united-states/economics/poverty/us-poverty-rate-under5-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Under 5 Poverty Rate", + "description" : "Percent of the population aged under 5 living below the poverty line.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","demographics","economics","poverty","age"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.poverty.rate.under5.2017"], + [1001,0.172], + [1003,0.194], + [1005,0.568], + [1007,0.216], + [1009,0.295], + [1011,0.597], + [1013,0.301], + [1015,0.311], + [1017,0.319], + [1019,0.128], + [1021,0.309], + [1023,0.255], + [1025,0.351], + [1027,0.336], + [1029,0.328], + [1031,0.315], + [1033,0.305], + [1035,0.475], + [1037,0.103], + [1039,0.219], + [1041,0.285], + [1043,0.225], + [1045,0.336], + [1047,0.538], + [1049,0.318], + [1051,0.266], + [1053,0.306], + [1055,0.317], + [1057,0.375], + [1059,0.53], + [1061,0.302], + [1063,0.693], + [1065,0.472], + [1067,0.147], + [1069,0.364], + [1071,0.23], + [1073,0.295], + [1075,0.61], + [1077,0.251], + [1079,0.162], + [1081,0.269], + [1083,0.217], + [1085,0.443], + [1087,0.524], + [1089,0.27], + [1091,0.439], + [1093,0.297], + [1095,0.385], + [1097,0.343], + [1099,0.543], + [1101,0.373], + [1103,0.277], + [1105,0.654], + [1107,0.366], + [1109,0.413], + [1111,0.4], + [1113,0.293], + [1115,0.15], + [1117,0.1], + [1119,0.496], + [1121,0.314], + [1123,0.393], + [1125,0.234], + [1127,0.41], + [1129,0.565], + [1131,0.464], + [1133,0.272], + [2013,0.287], + [2016,0.134], + [2020,0.098], + [2050,0.343], + [2060,0.174], + [2068,0.058], + [2070,0.263], + [2090,0.112], + [2100,0.07], + [2105,0.429], + [2110,0.225], + [2122,0.152], + [2130,0.195], + [2150,0.204], + [2158,null], + [2164,0.23], + [2170,0.117], + [2180,0.335], + [2185,0.167], + [2188,0.366], + [2195,0.12], + [2198,0.346], + [2220,0.107], + [2230,0.028], + [2240,0.261], + [2261,0.071], + [2275,0.248], + [2282,0.146], + [2290,0.431], + [4001,0.5], + [4003,0.287], + [4005,0.261], + [4007,0.423], + [4009,0.315], + [4011,0.232], + [4012,0.448], + [4013,0.246], + [4015,0.301], + [4017,0.441], + [4019,0.286], + [4021,0.251], + [4023,0.365], + [4025,0.235], + [4027,0.268], + [5001,0.39], + [5003,0.307], + [5005,0.297], + [5007,0.161], + [5009,0.364], + [5011,0.364], + [5013,0.375], + [5015,0.298], + [5017,0.528], + [5019,0.383], + [5021,0.315], + [5023,0.251], + [5025,0.405], + [5027,0.288], + [5029,0.316], + [5031,0.306], + [5033,0.204], + [5035,0.454], + [5037,0.32], + [5039,0.174], + [5041,0.479], + [5043,0.411], + [5045,0.237], + [5047,0.316], + [5049,0.419], + [5051,0.404], + [5053,0.197], + [5055,0.279], + [5057,0.492], + [5059,0.21], + [5061,0.39], + [5063,0.312], + [5065,0.481], + [5067,0.514], + [5069,0.468], + [5071,0.374], + [5073,0.444], + [5075,0.204], + [5077,0.474], + [5079,0.21], + [5081,0.171], + [5083,0.296], + [5085,0.183], + [5087,0.235], + [5089,0.552], + [5091,0.317], + [5093,0.394], + [5095,0.583], + [5097,0.228], + [5099,0.342], + [5101,0.209], + [5103,0.506], + [5105,0.205], + [5107,0.652], + [5109,0.31], + [5111,0.41], + [5113,0.398], + [5115,0.285], + [5117,0.219], + [5119,0.286], + [5121,0.421], + [5123,0.496], + [5125,0.123], + [5127,0.321], + [5129,0.174], + [5131,0.337], + [5133,0.295], + [5135,0.486], + [5137,0.261], + [5139,0.328], + [5141,0.312], + [5143,0.247], + [5145,0.197], + [5147,0.492], + [5149,0.421], + [6001,0.126], + [6003,0.217], + [6005,0.196], + [6007,0.222], + [6009,0.153], + [6011,0.194], + [6013,0.127], + [6015,0.275], + [6017,0.12], + [6019,0.417], + [6021,0.278], + [6023,0.212], + [6025,0.307], + [6027,0.182], + [6029,0.343], + [6031,0.265], + [6033,0.339], + [6035,0.148], + [6037,0.24], + [6039,0.339], + [6041,0.122], + [6043,0.15], + [6045,0.261], + [6047,0.375], + [6049,0.201], + [6051,0.158], + [6053,0.23], + [6055,0.119], + [6057,0.135], + [6059,0.16], + [6061,0.097], + [6063,0.177], + [6065,0.228], + [6067,0.252], + [6069,0.188], + [6071,0.273], + [6073,0.168], + [6075,0.086], + [6077,0.247], + [6079,0.124], + [6081,0.079], + [6083,0.197], + [6085,0.095], + [6087,0.169], + [6089,0.282], + [6091,0.028], + [6093,0.293], + [6095,0.181], + [6097,0.129], + [6099,0.245], + [6101,0.266], + [6103,0.343], + [6105,0.304], + [6107,0.39], + [6109,0.177], + [6111,0.164], + [6113,0.171], + [6115,0.252], + [8001,0.179], + [8003,0.427], + [8005,0.15], + [8007,0.183], + [8009,0.4], + [8011,0.39], + [8013,0.129], + [8014,0.034], + [8015,0.143], + [8017,0.183], + [8019,0.098], + [8021,0.279], + [8023,0.509], + [8025,0.309], + [8027,0.428], + [8029,0.237], + [8031,0.209], + [8033,0.413], + [8035,0.038], + [8037,0.096], + [8039,0.03], + [8041,0.156], + [8043,0.247], + [8045,0.096], + [8047,0.145], + [8049,0.179], + [8051,0.093], + [8053,0.759], + [8055,0.333], + [8057,0.112], + [8059,0.107], + [8061,0.095], + [8063,0.15], + [8065,0.107], + [8067,0.059], + [8069,0.094], + [8071,0.223], + [8073,0.147], + [8075,0.405], + [8077,0.256], + [8079,0.769], + [8081,0.128], + [8083,0.343], + [8085,0.448], + [8087,0.144], + [8089,0.374], + [8091,0.225], + [8093,0.161], + [8095,0.065], + [8097,0.071], + [8099,0.319], + [8101,0.295], + [8103,0.081], + [8105,0.229], + [8107,0.13], + [8109,0.271], + [8111,0], + [8113,0.108], + [8115,0.248], + [8117,0.259], + [8119,0.082], + [8121,0.206], + [8123,0.147], + [8125,0.231], + [9001,0.123], + [9003,0.165], + [9005,0.081], + [9007,0.109], + [9009,0.198], + [9011,0.165], + [9013,0.069], + [9015,0.173], + [10001,0.233], + [10003,0.169], + [10005,0.262], + [11001,0.218], + [12001,0.241], + [12003,0.216], + [12005,0.284], + [12007,0.355], + [12009,0.229], + [12011,0.216], + [12013,0.179], + [12015,0.232], + [12017,0.334], + [12019,0.132], + [12021,0.251], + [12023,0.302], + [12027,0.388], + [12029,0.413], + [12031,0.269], + [12033,0.27], + [12035,0.175], + [12037,0.221], + [12039,0.44], + [12041,0.411], + [12043,0.348], + [12045,0.241], + [12047,0.351], + [12049,0.485], + [12051,0.318], + [12053,0.241], + [12055,0.326], + [12057,0.238], + [12059,0.545], + [12061,0.19], + [12063,0.472], + [12065,0.293], + [12067,0.397], + [12069,0.216], + [12071,0.27], + [12073,0.217], + [12075,0.395], + [12077,0.087], + [12079,0.577], + [12081,0.243], + [12083,0.322], + [12085,0.216], + [12086,0.263], + [12087,0.169], + [12089,0.173], + [12091,0.165], + [12093,0.395], + [12095,0.258], + [12097,0.259], + [12099,0.226], + [12101,0.191], + [12103,0.214], + [12105,0.288], + [12107,0.488], + [12109,0.099], + [12111,0.33], + [12113,0.172], + [12115,0.219], + [12117,0.159], + [12119,0.302], + [12121,0.39], + [12123,0.268], + [12125,0.361], + [12127,0.278], + [12129,0.174], + [12131,0.293], + [12133,0.321], + [13001,0.388], + [13003,0.494], + [13005,0.437], + [13007,0.268], + [13009,0.399], + [13011,0.218], + [13013,0.164], + [13015,0.182], + [13017,0.408], + [13019,0.35], + [13021,0.475], + [13023,0.267], + [13025,0.362], + [13027,0.39], + [13029,0.21], + [13031,0.348], + [13033,0.426], + [13035,0.435], + [13037,0.55], + [13039,0.184], + [13043,0.55], + [13045,0.258], + [13047,0.196], + [13049,0.342], + [13051,0.265], + [13053,0.208], + [13055,0.342], + [13057,0.172], + [13059,0.354], + [13061,0.701], + [13063,0.387], + [13065,0.554], + [13067,0.154], + [13069,0.38], + [13071,0.465], + [13073,0.096], + [13075,0.332], + [13077,0.216], + [13079,0.294], + [13081,0.469], + [13083,0.237], + [13085,0.236], + [13087,0.361], + [13089,0.3], + [13091,0.225], + [13093,0.289], + [13095,0.451], + [13097,0.268], + [13099,0.446], + [13101,0.46], + [13103,0.145], + [13105,0.418], + [13107,0.482], + [13109,0.411], + [13111,0.099], + [13113,0.093], + [13115,0.271], + [13117,0.098], + [13119,0.401], + [13121,0.254], + [13123,0.413], + [13125,0.071], + [13127,0.37], + [13129,0.306], + [13131,0.416], + [13133,0.36], + [13135,0.186], + [13137,0.249], + [13139,0.286], + [13141,0.592], + [13143,0.225], + [13145,0.104], + [13147,0.304], + [13149,0.224], + [13151,0.195], + [13153,0.275], + [13155,0.259], + [13157,0.197], + [13159,0.108], + [13161,0.429], + [13163,0.52], + [13165,0.702], + [13167,0.545], + [13169,0.25], + [13171,0.323], + [13173,0.446], + [13175,0.468], + [13177,0.207], + [13179,0.26], + [13181,0.639], + [13183,0.298], + [13185,0.359], + [13187,0.2], + [13189,0.541], + [13191,0.485], + [13193,0.554], + [13195,0.23], + [13197,0.435], + [13199,0.281], + [13201,0.321], + [13205,0.444], + [13207,0.128], + [13209,0.33], + [13211,0.295], + [13213,0.286], + [13215,0.328], + [13217,0.275], + [13219,0.129], + [13221,0.258], + [13223,0.113], + [13225,0.325], + [13227,0.102], + [13229,0.307], + [13231,0.25], + [13233,0.328], + [13235,0.425], + [13237,0.381], + [13239,0.295], + [13241,0.217], + [13243,0.78], + [13245,0.36], + [13247,0.366], + [13249,0.373], + [13251,0.357], + [13253,0.399], + [13255,0.362], + [13257,0.147], + [13259,0.788], + [13261,0.498], + [13263,0.282], + [13265,0.544], + [13267,0.399], + [13269,0.442], + [13271,0.557], + [13273,0.677], + [13275,0.268], + [13277,0.547], + [13279,0.387], + [13281,0.169], + [13283,0.359], + [13285,0.358], + [13287,0.486], + [13289,0.344], + [13291,0.487], + [13293,0.478], + [13295,0.217], + [13297,0.212], + [13299,0.431], + [13301,0.353], + [13303,0.416], + [13305,0.295], + [13307,0.25], + [13309,0.586], + [13311,0.352], + [13313,0.333], + [13315,0.404], + [13317,0.514], + [13319,0.153], + [13321,0.277], + [15001,0.28], + [15003,0.113], + [15005,null], + [15007,0.096], + [15009,0.14], + [16001,0.129], + [16003,0.167], + [16005,0.224], + [16007,0.3], + [16009,0.25], + [16011,0.21], + [16013,0.339], + [16015,0.158], + [16017,0.226], + [16019,0.17], + [16021,0.366], + [16023,0.276], + [16025,0.333], + [16027,0.241], + [16029,0.08], + [16031,0.22], + [16033,0.465], + [16035,0.174], + [16037,0.234], + [16039,0.166], + [16041,0.176], + [16043,0.165], + [16045,0.216], + [16047,0.204], + [16049,0.221], + [16051,0.109], + [16053,0.276], + [16055,0.208], + [16057,0.269], + [16059,0.417], + [16061,0.153], + [16063,0.184], + [16065,0.379], + [16067,0.222], + [16069,0.267], + [16071,0.313], + [16073,0.337], + [16075,0.28], + [16077,0.188], + [16079,0.323], + [16081,0.095], + [16083,0.192], + [16085,0.032], + [16087,0.196], + [17001,0.221], + [17003,0.6], + [17005,0.288], + [17007,0.197], + [17009,0.23], + [17011,0.26], + [17013,0.209], + [17015,0.212], + [17017,0.248], + [17019,0.208], + [17021,0.203], + [17023,0.224], + [17025,0.289], + [17027,0.111], + [17029,0.264], + [17031,0.233], + [17033,0.15], + [17035,0.23], + [17037,0.209], + [17039,0.322], + [17041,0.248], + [17043,0.093], + [17045,0.347], + [17047,0.211], + [17049,0.205], + [17051,0.28], + [17053,0.15], + [17055,0.351], + [17057,0.218], + [17059,0.198], + [17061,0.224], + [17063,0.117], + [17065,0.12], + [17067,0.185], + [17069,0.331], + [17071,0.201], + [17073,0.213], + [17075,0.275], + [17077,0.345], + [17079,0.112], + [17081,0.339], + [17083,0.217], + [17085,0.069], + [17087,0.239], + [17089,0.152], + [17091,0.234], + [17093,0.069], + [17095,0.308], + [17097,0.136], + [17099,0.25], + [17101,0.373], + [17103,0.143], + [17105,0.245], + [17107,0.12], + [17109,0.209], + [17111,0.108], + [17113,0.144], + [17115,0.381], + [17117,0.283], + [17119,0.228], + [17121,0.336], + [17123,0.21], + [17125,0.227], + [17127,0.307], + [17129,0.274], + [17131,0.293], + [17133,0.081], + [17135,0.287], + [17137,0.224], + [17139,0.259], + [17141,0.198], + [17143,0.275], + [17145,0.131], + [17147,0.076], + [17149,0.271], + [17151,0.18], + [17153,0.263], + [17155,0.298], + [17157,0.223], + [17159,0.176], + [17161,0.27], + [17163,0.3], + [17165,0.298], + [17167,0.289], + [17169,0.201], + [17171,0.262], + [17173,0.088], + [17175,0.327], + [17177,0.268], + [17179,0.119], + [17181,0.181], + [17183,0.389], + [17185,0.169], + [17187,0.204], + [17189,0.105], + [17191,0.316], + [17193,0.302], + [17195,0.181], + [17197,0.12], + [17199,0.29], + [17201,0.307], + [17203,0.115], + [18001,0.411], + [18003,0.257], + [18005,0.189], + [18007,0.265], + [18009,0.278], + [18011,0.084], + [18013,0.056], + [18015,0.068], + [18017,0.243], + [18019,0.162], + [18021,0.211], + [18023,0.259], + [18025,0.152], + [18027,0.188], + [18029,0.224], + [18031,0.162], + [18033,0.25], + [18035,0.334], + [18037,0.172], + [18039,0.212], + [18041,0.301], + [18043,0.166], + [18045,0.129], + [18047,0.103], + [18049,0.2], + [18051,0.162], + [18053,0.363], + [18055,0.207], + [18057,0.044], + [18059,0.131], + [18061,0.177], + [18063,0.072], + [18065,0.289], + [18067,0.348], + [18069,0.191], + [18071,0.223], + [18073,0.062], + [18075,0.316], + [18077,0.327], + [18079,0.169], + [18081,0.17], + [18083,0.26], + [18085,0.171], + [18087,0.127], + [18089,0.3], + [18091,0.341], + [18093,0.171], + [18095,0.258], + [18097,0.319], + [18099,0.159], + [18101,0.195], + [18103,0.273], + [18105,0.272], + [18107,0.153], + [18109,0.242], + [18111,0.19], + [18113,0.178], + [18115,0], + [18117,0.177], + [18119,0.366], + [18121,0.223], + [18123,0.36], + [18125,0.18], + [18127,0.185], + [18129,0.111], + [18131,0.137], + [18133,0.246], + [18135,0.254], + [18137,0.182], + [18139,0.299], + [18141,0.292], + [18143,0.235], + [18145,0.163], + [18147,0.228], + [18149,0.253], + [18151,0.164], + [18153,0.311], + [18155,0.271], + [18157,0.249], + [18159,0.075], + [18161,0.107], + [18163,0.328], + [18165,0.21], + [18167,0.262], + [18169,0.233], + [18171,0.146], + [18173,0.069], + [18175,0.218], + [18177,0.334], + [18179,0.155], + [18181,0.141], + [18183,0.168], + [19001,0.246], + [19003,0.119], + [19005,0.205], + [19007,0.289], + [19009,0.225], + [19011,0.099], + [19013,0.231], + [19015,0.031], + [19017,0.092], + [19019,0.082], + [19021,0.24], + [19023,0.114], + [19025,0.27], + [19027,0.127], + [19029,0.345], + [19031,0.033], + [19033,0.118], + [19035,0.306], + [19037,0.208], + [19039,0.22], + [19041,0.224], + [19043,0.168], + [19045,0.199], + [19047,0.274], + [19049,0.051], + [19051,0.179], + [19053,0.309], + [19055,0.186], + [19057,0.31], + [19059,0.096], + [19061,0.176], + [19063,0.179], + [19065,0.154], + [19067,0.401], + [19069,0.291], + [19071,0.193], + [19073,0.128], + [19075,0.043], + [19077,0.168], + [19079,0.127], + [19081,0.128], + [19083,0.124], + [19085,0.13], + [19087,0.226], + [19089,0.138], + [19091,0.15], + [19093,0.13], + [19095,0.17], + [19097,0.167], + [19099,0.063], + [19101,0.187], + [19103,0.152], + [19105,0.103], + [19107,0.085], + [19109,0.189], + [19111,0.286], + [19113,0.115], + [19115,0.125], + [19117,0.084], + [19119,0.103], + [19121,0.085], + [19123,0.214], + [19125,0.128], + [19127,0.164], + [19129,0.148], + [19131,0.063], + [19133,0.186], + [19135,0.163], + [19137,0.345], + [19139,0.117], + [19141,0.204], + [19143,0.265], + [19145,0.259], + [19147,0.077], + [19149,0.085], + [19151,0.104], + [19153,0.17], + [19155,0.183], + [19157,0.164], + [19159,0.063], + [19161,0.141], + [19163,0.216], + [19165,0.168], + [19167,0.107], + [19169,0.103], + [19171,0.2], + [19173,0.137], + [19175,0.215], + [19177,0.33], + [19179,0.26], + [19181,0.12], + [19183,0.156], + [19185,0.32], + [19187,0.227], + [19189,0.09], + [19191,0.066], + [19193,0.189], + [19195,0.177], + [19197,0.252], + [20001,0.151], + [20003,0.159], + [20005,0.363], + [20007,0.247], + [20009,0.262], + [20011,0.326], + [20013,0.194], + [20015,0.157], + [20017,0.157], + [20019,0.104], + [20021,0.144], + [20023,0.213], + [20025,0.086], + [20027,0.125], + [20029,0.195], + [20031,0.187], + [20033,0.063], + [20035,0.248], + [20037,0.229], + [20039,0.406], + [20041,0.097], + [20043,0.237], + [20045,0.157], + [20047,0.129], + [20049,0.254], + [20051,0.194], + [20053,0.13], + [20055,0.244], + [20057,0.265], + [20059,0.254], + [20061,0.269], + [20063,0.093], + [20065,0.308], + [20067,0.126], + [20069,0.085], + [20071,0.053], + [20073,0.188], + [20075,0.249], + [20077,0.244], + [20079,0.209], + [20081,0.252], + [20083,0.21], + [20085,0.158], + [20087,0.123], + [20089,0.416], + [20091,0.069], + [20093,0.071], + [20095,0.145], + [20097,0.075], + [20099,0.295], + [20101,0.123], + [20103,0.149], + [20105,0.105], + [20107,0.272], + [20109,0.113], + [20111,0.277], + [20113,0.068], + [20115,0.175], + [20117,0.179], + [20119,0.274], + [20121,0.069], + [20123,0.235], + [20125,0.337], + [20127,0.103], + [20129,0.202], + [20131,0.214], + [20133,0.393], + [20135,0.052], + [20137,0.207], + [20139,0.214], + [20141,0.292], + [20143,0.369], + [20145,0.088], + [20147,0.159], + [20149,0.111], + [20151,0.141], + [20153,0.008], + [20155,0.228], + [20157,0.148], + [20159,0.219], + [20161,0.164], + [20163,0.195], + [20165,0.037], + [20167,0.236], + [20169,0.201], + [20171,0], + [20173,0.223], + [20175,0.329], + [20177,0.224], + [20179,0.03], + [20181,0.26], + [20183,0.325], + [20185,0.238], + [20187,0.184], + [20189,0.392], + [20191,0.148], + [20193,0.101], + [20195,0.045], + [20197,0.031], + [20199,0.067], + [20201,0.133], + [20203,0], + [20205,0.292], + [20207,0.269], + [20209,0.339], + [21001,0.267], + [21003,0.412], + [21005,0.154], + [21007,0.311], + [21009,0.399], + [21011,0.401], + [21013,0.632], + [21015,0.134], + [21017,0.338], + [21019,0.348], + [21021,0.249], + [21023,0.262], + [21025,0.539], + [21027,0.223], + [21029,0.163], + [21031,0.398], + [21033,0.146], + [21035,0.261], + [21037,0.182], + [21039,0.344], + [21041,0.582], + [21043,0.341], + [21045,0.312], + [21047,0.245], + [21049,0.187], + [21051,0.552], + [21053,0.278], + [21055,0.244], + [21057,0.143], + [21059,0.305], + [21061,0.288], + [21063,0.382], + [21065,0.432], + [21067,0.271], + [21069,0.373], + [21071,0.469], + [21073,0.311], + [21075,0.58], + [21077,0.181], + [21079,0.288], + [21081,0.23], + [21083,0.241], + [21085,0.402], + [21087,0.24], + [21089,0.265], + [21091,0.186], + [21093,0.253], + [21095,0.464], + [21097,0.302], + [21099,0.341], + [21101,0.387], + [21103,0.228], + [21105,0.163], + [21107,0.306], + [21109,0.394], + [21111,0.237], + [21113,0.261], + [21115,0.319], + [21117,0.215], + [21119,0.527], + [21121,0.553], + [21123,0.191], + [21125,0.398], + [21127,0.472], + [21129,0.711], + [21131,0.331], + [21133,0.556], + [21135,0.358], + [21137,0.358], + [21139,0.106], + [21141,0.162], + [21143,0.211], + [21145,0.242], + [21147,0.553], + [21149,0.225], + [21151,0.261], + [21153,0.383], + [21155,0.216], + [21157,0.23], + [21159,0.339], + [21161,0.285], + [21163,0.197], + [21165,0.241], + [21167,0.284], + [21169,0.342], + [21171,0.518], + [21173,0.263], + [21175,0.435], + [21177,0.258], + [21179,0.217], + [21181,0.529], + [21183,0.4], + [21185,0.05], + [21187,0.218], + [21189,0.36], + [21191,0.223], + [21193,0.304], + [21195,0.463], + [21197,0.202], + [21199,0.345], + [21201,0.681], + [21203,0.387], + [21205,0.466], + [21207,0.368], + [21209,0.199], + [21211,0.194], + [21213,0.375], + [21215,0.076], + [21217,0.329], + [21219,0.284], + [21221,0.348], + [21223,0.42], + [21225,0.298], + [21227,0.277], + [21229,0.257], + [21231,0.418], + [21233,0.383], + [21235,0.285], + [21237,0.419], + [21239,0.235], + [22001,0.291], + [22003,0.282], + [22005,0.179], + [22007,0.224], + [22009,0.409], + [22011,0.195], + [22013,0.392], + [22015,0.253], + [22017,0.41], + [22019,0.286], + [22021,0.474], + [22023,0.036], + [22025,0.362], + [22027,0.492], + [22029,0.439], + [22031,0.379], + [22033,0.294], + [22035,0.905], + [22037,0.2], + [22039,0.354], + [22041,0.549], + [22043,0.286], + [22045,0.338], + [22047,0.356], + [22049,0.46], + [22051,0.311], + [22053,0.243], + [22055,0.222], + [22057,0.185], + [22059,0.479], + [22061,0.379], + [22063,0.143], + [22065,0.625], + [22067,0.351], + [22069,0.422], + [22071,0.398], + [22073,0.435], + [22075,0.246], + [22077,0.209], + [22079,0.248], + [22081,0.154], + [22083,0.535], + [22085,0.355], + [22087,0.28], + [22089,0.239], + [22091,0.353], + [22093,0.226], + [22095,0.305], + [22097,0.493], + [22099,0.294], + [22101,0.26], + [22103,0.164], + [22105,0.339], + [22107,0.611], + [22109,0.292], + [22111,0.372], + [22113,0.265], + [22115,0.225], + [22117,0.408], + [22119,0.479], + [22121,0.3], + [22123,0.318], + [22125,0.222], + [22127,0.327], + [23001,0.243], + [23003,0.326], + [23005,0.124], + [23007,0.2], + [23009,0.185], + [23011,0.269], + [23013,0.235], + [23015,0.18], + [23017,0.258], + [23019,0.202], + [23021,0.29], + [23023,0.188], + [23025,0.338], + [23027,0.255], + [23029,0.253], + [23031,0.133], + [24001,0.25], + [24003,0.075], + [24005,0.129], + [24009,0.072], + [24011,0.325], + [24013,0.078], + [24015,0.134], + [24017,0.099], + [24019,0.256], + [24021,0.095], + [24023,0.214], + [24025,0.106], + [24027,0.056], + [24029,0.235], + [24031,0.104], + [24033,0.137], + [24035,0.105], + [24037,0.111], + [24039,0.492], + [24041,0.169], + [24043,0.234], + [24045,0.278], + [24047,0.189], + [24510,0.328], + [25001,0.113], + [25003,0.193], + [25005,0.215], + [25007,0.058], + [25009,0.175], + [25011,0.163], + [25013,0.291], + [25015,0.131], + [25017,0.106], + [25019,0.188], + [25021,0.055], + [25023,0.135], + [25025,0.258], + [25027,0.171], + [26001,0.283], + [26003,0.129], + [26005,0.189], + [26007,0.17], + [26009,0.253], + [26011,0.374], + [26013,0.24], + [26015,0.16], + [26017,0.328], + [26019,0.188], + [26021,0.297], + [26023,0.335], + [26025,0.312], + [26027,0.238], + [26029,0.204], + [26031,0.285], + [26033,0.387], + [26035,0.443], + [26037,0.137], + [26039,0.454], + [26041,0.2], + [26043,0.185], + [26045,0.188], + [26047,0.143], + [26049,0.383], + [26051,0.325], + [26053,0.34], + [26055,0.13], + [26057,0.352], + [26059,0.286], + [26061,0.203], + [26063,0.271], + [26065,0.259], + [26067,0.21], + [26069,0.342], + [26071,0.33], + [26073,0.272], + [26075,0.273], + [26077,0.226], + [26079,0.248], + [26081,0.195], + [26083,0.443], + [26085,0.515], + [26087,0.164], + [26089,0.11], + [26091,0.223], + [26093,0.096], + [26095,0.218], + [26097,0.287], + [26099,0.212], + [26101,0.202], + [26103,0.174], + [26105,0.347], + [26107,0.318], + [26109,0.205], + [26111,0.138], + [26113,0.257], + [26115,0.157], + [26117,0.294], + [26119,0.331], + [26121,0.305], + [26123,0.263], + [26125,0.139], + [26127,0.306], + [26129,0.295], + [26131,0.392], + [26133,0.373], + [26135,0.228], + [26137,0.359], + [26139,0.098], + [26141,0.399], + [26143,0.281], + [26145,0.342], + [26147,0.218], + [26149,0.347], + [26151,0.261], + [26153,0.358], + [26155,0.238], + [26157,0.234], + [26159,0.245], + [26161,0.159], + [26163,0.392], + [26165,0.288], + [27001,0.226], + [27003,0.097], + [27005,0.227], + [27007,0.316], + [27009,0.269], + [27011,0.06], + [27013,0.136], + [27015,0.141], + [27017,0.175], + [27019,0.021], + [27021,0.302], + [27023,0.223], + [27025,0.059], + [27027,0.137], + [27029,0.284], + [27031,0.079], + [27033,0.235], + [27035,0.183], + [27037,0.099], + [27039,0.092], + [27041,0.092], + [27043,0.169], + [27045,0.234], + [27047,0.161], + [27049,0.104], + [27051,0.148], + [27053,0.161], + [27055,0.174], + [27057,0.176], + [27059,0.091], + [27061,0.203], + [27063,0.089], + [27065,0.174], + [27067,0.158], + [27069,0.267], + [27071,0.257], + [27073,0.135], + [27075,0.101], + [27077,0.228], + [27079,0.144], + [27081,0.135], + [27083,0.258], + [27085,0.118], + [27087,0.389], + [27089,0.057], + [27091,0.247], + [27093,0.086], + [27095,0.206], + [27097,0.158], + [27099,0.167], + [27101,0.12], + [27103,0.086], + [27105,0.302], + [27107,0.188], + [27109,0.111], + [27111,0.141], + [27113,0.205], + [27115,0.182], + [27117,0.157], + [27119,0.204], + [27121,0.059], + [27123,0.215], + [27125,0.116], + [27127,0.209], + [27129,0.206], + [27131,0.191], + [27133,0.209], + [27135,0.167], + [27137,0.207], + [27139,0.066], + [27141,0.093], + [27143,0.204], + [27145,0.188], + [27147,0.191], + [27149,0.147], + [27151,0.183], + [27153,0.244], + [27155,0.132], + [27157,0.037], + [27159,0.223], + [27161,0.109], + [27163,0.067], + [27165,0.177], + [27167,0.158], + [27169,0.147], + [27171,0.049], + [27173,0.198], + [28001,0.614], + [28003,0.325], + [28005,0.329], + [28007,0.191], + [28009,0.174], + [28011,0.498], + [28013,0.46], + [28015,0.181], + [28017,0.381], + [28019,0.584], + [28021,0.658], + [28023,0.337], + [28025,0.414], + [28027,0.488], + [28029,0.462], + [28031,0.428], + [28033,0.113], + [28035,0.313], + [28037,0.356], + [28039,0.182], + [28041,0.197], + [28043,0.349], + [28045,0.245], + [28047,0.334], + [28049,0.367], + [28051,0.617], + [28053,0.528], + [28055,0.713], + [28057,0.201], + [28059,0.212], + [28061,0.386], + [28063,0.332], + [28065,0.544], + [28067,0.371], + [28069,0.674], + [28071,0.28], + [28073,0.171], + [28075,0.398], + [28077,0.271], + [28079,0.379], + [28081,0.256], + [28083,0.566], + [28085,0.352], + [28087,0.331], + [28089,0.201], + [28091,0.456], + [28093,0.338], + [28095,0.352], + [28097,0.543], + [28099,0.353], + [28101,0.343], + [28103,0.525], + [28105,0.213], + [28107,0.391], + [28109,0.329], + [28111,0.243], + [28113,0.49], + [28115,0.264], + [28117,0.405], + [28119,0.426], + [28121,0.094], + [28123,0.418], + [28125,0.311], + [28127,0.391], + [28129,0.459], + [28131,0.148], + [28133,0.508], + [28135,0.364], + [28137,0.248], + [28139,0.377], + [28141,0.242], + [28143,0.391], + [28145,0.216], + [28147,0.373], + [28149,0.39], + [28151,0.496], + [28153,0.254], + [28155,0.436], + [28157,0.641], + [28159,0.489], + [28161,0.278], + [28163,0.574], + [29001,0.396], + [29003,0.135], + [29005,0.2], + [29007,0.355], + [29009,0.429], + [29011,0.371], + [29013,0.211], + [29015,0.301], + [29017,0.33], + [29019,0.166], + [29021,0.33], + [29023,0.436], + [29025,0.262], + [29027,0.213], + [29029,0.349], + [29031,0.302], + [29033,0.258], + [29035,0.206], + [29037,0.156], + [29039,0.312], + [29041,0.159], + [29043,0.154], + [29045,0.178], + [29047,0.143], + [29049,0.26], + [29051,0.24], + [29053,0.121], + [29055,0.259], + [29057,0.454], + [29059,0.118], + [29061,0.21], + [29063,0.259], + [29065,0.27], + [29067,0.328], + [29069,0.437], + [29071,0.169], + [29073,0.167], + [29075,0.304], + [29077,0.255], + [29079,0.465], + [29081,0.329], + [29083,0.326], + [29085,0.216], + [29087,0.139], + [29089,0.291], + [29091,0.351], + [29093,0.436], + [29095,0.258], + [29097,0.262], + [29099,0.189], + [29101,0.115], + [29103,0.301], + [29105,0.284], + [29107,0.199], + [29109,0.278], + [29111,0.332], + [29113,0.156], + [29115,0.317], + [29117,0.291], + [29119,0.475], + [29121,0.27], + [29123,0.083], + [29125,0.414], + [29127,0.223], + [29129,0.102], + [29131,0.263], + [29133,0.646], + [29135,0.224], + [29137,0.289], + [29139,0.23], + [29141,0.446], + [29143,0.402], + [29145,0.246], + [29147,0.333], + [29149,0.543], + [29151,0.075], + [29153,0.385], + [29155,0.472], + [29157,0.131], + [29159,0.277], + [29161,0.237], + [29163,0.258], + [29165,0.098], + [29167,0.174], + [29169,0.197], + [29171,0.241], + [29173,0.094], + [29175,0.31], + [29177,0.281], + [29179,0.227], + [29181,0.363], + [29183,0.076], + [29185,0.37], + [29186,0.327], + [29187,0.209], + [29189,0.16], + [29195,0.266], + [29197,0.365], + [29199,0.301], + [29201,0.418], + [29203,0.434], + [29205,0.261], + [29207,0.256], + [29209,0.278], + [29211,0.274], + [29213,0.246], + [29215,0.388], + [29217,0.295], + [29219,0.249], + [29221,0.341], + [29223,0.281], + [29225,0.282], + [29227,0.211], + [29229,0.445], + [29510,0.378], + [30001,0.119], + [30003,0.356], + [30005,0.468], + [30007,0.12], + [30009,0.052], + [30011,0.138], + [30013,0.197], + [30015,0.188], + [30017,0.136], + [30019,0], + [30021,0.101], + [30023,0.186], + [30025,0.149], + [30027,0.264], + [30029,0.181], + [30031,0.099], + [30033,0], + [30035,0.418], + [30037,0.143], + [30039,0.411], + [30041,0.314], + [30043,0.232], + [30045,0.221], + [30047,0.335], + [30049,0.195], + [30051,0.444], + [30053,0.19], + [30055,0], + [30057,0.101], + [30059,0.283], + [30061,0.335], + [30063,0.133], + [30065,0.263], + [30067,0.151], + [30069,0.4], + [30071,0.202], + [30073,0.357], + [30075,0.085], + [30077,0.399], + [30079,0.077], + [30081,0.244], + [30083,0.062], + [30085,0.523], + [30087,0.327], + [30089,0.295], + [30091,0.148], + [30093,0.331], + [30095,0.192], + [30097,0.148], + [30099,0.066], + [30101,0.193], + [30103,0.063], + [30105,0.034], + [30107,0.35], + [30109,0.182], + [30111,0.169], + [31001,0.167], + [31003,0.143], + [31005,0.091], + [31007,0.149], + [31009,0.259], + [31011,0.052], + [31013,0.221], + [31015,0.026], + [31017,0.478], + [31019,0.237], + [31021,0.178], + [31023,0.086], + [31025,0.123], + [31027,0.159], + [31029,0.07], + [31031,0.066], + [31033,0.172], + [31035,0.185], + [31037,0.102], + [31039,0.189], + [31041,0.156], + [31043,0.34], + [31045,0.198], + [31047,0.24], + [31049,0.126], + [31051,0.285], + [31053,0.284], + [31055,0.204], + [31057,0.23], + [31059,0.106], + [31061,0.221], + [31063,0.313], + [31065,0.171], + [31067,0.113], + [31069,0.069], + [31071,0], + [31073,0], + [31075,0.362], + [31077,0.27], + [31079,0.283], + [31081,0.117], + [31083,0.155], + [31085,0.022], + [31087,0.212], + [31089,0.061], + [31091,0], + [31093,0.059], + [31095,0.116], + [31097,0.133], + [31099,0.187], + [31101,0.207], + [31103,0.233], + [31105,0.143], + [31107,0.19], + [31109,0.187], + [31111,0.248], + [31113,0.231], + [31115,0.103], + [31117,0.032], + [31119,0.278], + [31121,0.119], + [31123,0.098], + [31125,0.176], + [31127,0.209], + [31129,0.173], + [31131,0.221], + [31133,0.347], + [31135,0.016], + [31137,0.114], + [31139,0.073], + [31141,0.118], + [31143,0.105], + [31145,0.198], + [31147,0.389], + [31149,0.172], + [31151,0.192], + [31153,0.07], + [31155,0.216], + [31157,0.226], + [31159,0.135], + [31161,0.197], + [31163,0.132], + [31165,0.085], + [31167,0.121], + [31169,0.195], + [31171,0.056], + [31173,0.421], + [31175,0.106], + [31177,0.189], + [31179,0.142], + [31181,0.253], + [31183,0.045], + [31185,0.087], + [32001,0.062], + [32003,0.237], + [32005,0.184], + [32007,0.242], + [32009,0], + [32011,0], + [32013,0.158], + [32015,0.439], + [32017,0.222], + [32019,0.189], + [32021,0.456], + [32023,0.237], + [32027,0.258], + [32029,0.154], + [32031,0.19], + [32033,0.167], + [32510,0.312], + [33001,0.227], + [33003,0.178], + [33005,0.179], + [33007,0.187], + [33009,0.144], + [33011,0.12], + [33013,0.099], + [33015,0.058], + [33017,0.138], + [33019,0.143], + [34001,0.303], + [34003,0.086], + [34005,0.106], + [34007,0.22], + [34009,0.134], + [34011,0.269], + [34013,0.274], + [34015,0.103], + [34017,0.231], + [34019,0.06], + [34021,0.183], + [34023,0.119], + [34025,0.108], + [34027,0.053], + [34029,0.23], + [34031,0.282], + [34033,0.314], + [34035,0.046], + [34037,0.067], + [34039,0.15], + [34041,0.107], + [35001,0.289], + [35003,0.725], + [35005,0.381], + [35006,0.388], + [35007,0.505], + [35009,0.418], + [35011,0], + [35013,0.43], + [35015,0.264], + [35017,0.32], + [35019,0.423], + [35021,0.083], + [35023,0.399], + [35025,0.244], + [35027,0.089], + [35028,0.077], + [35029,0.467], + [35031,0.45], + [35033,0.36], + [35035,0.291], + [35037,0.418], + [35039,0.326], + [35041,0.476], + [35043,0.25], + [35045,0.279], + [35047,0.601], + [35049,0.27], + [35051,0.486], + [35053,0.498], + [35055,0.215], + [35057,0.425], + [35059,0.327], + [35061,0.357], + [36001,0.181], + [36003,0.3], + [36005,0.406], + [36007,0.26], + [36009,0.271], + [36011,0.195], + [36013,0.33], + [36015,0.3], + [36017,0.263], + [36019,0.281], + [36021,0.186], + [36023,0.241], + [36025,0.358], + [36027,0.135], + [36029,0.25], + [36031,0.174], + [36033,0.337], + [36035,0.201], + [36037,0.225], + [36039,0.203], + [36041,0.149], + [36043,0.313], + [36045,0.216], + [36047,0.301], + [36049,0.233], + [36051,0.244], + [36053,0.177], + [36055,0.235], + [36057,0.309], + [36059,0.084], + [36061,0.185], + [36063,0.236], + [36065,0.316], + [36067,0.251], + [36069,0.134], + [36071,0.225], + [36073,0.308], + [36075,0.344], + [36077,0.239], + [36079,0.036], + [36081,0.175], + [36083,0.215], + [36085,0.177], + [36087,0.31], + [36089,0.354], + [36091,0.088], + [36093,0.204], + [36095,0.307], + [36097,0.333], + [36099,0.217], + [36101,0.269], + [36103,0.105], + [36105,0.261], + [36107,0.184], + [36109,0.216], + [36111,0.193], + [36113,0.186], + [36115,0.171], + [36117,0.204], + [36119,0.119], + [36121,0.175], + [36123,0.182], + [37001,0.282], + [37003,0.172], + [37005,0.549], + [37007,0.396], + [37009,0.411], + [37011,0.081], + [37013,0.225], + [37015,0.465], + [37017,0.285], + [37019,0.293], + [37021,0.185], + [37023,0.413], + [37025,0.202], + [37027,0.282], + [37029,0.146], + [37031,0.206], + [37033,0.394], + [37035,0.236], + [37037,0.247], + [37039,0.194], + [37041,0.487], + [37043,0.27], + [37045,0.351], + [37047,0.463], + [37049,0.253], + [37051,0.296], + [37053,0.113], + [37055,0.176], + [37057,0.25], + [37059,0.284], + [37061,0.517], + [37063,0.236], + [37065,0.471], + [37067,0.34], + [37069,0.223], + [37071,0.263], + [37073,0.133], + [37075,0.229], + [37077,0.184], + [37079,0.472], + [37081,0.262], + [37083,0.47], + [37085,0.271], + [37087,0.414], + [37089,0.135], + [37091,0.569], + [37093,0.31], + [37095,0.227], + [37097,0.241], + [37099,0.311], + [37101,0.249], + [37103,0.495], + [37105,0.264], + [37107,0.407], + [37109,0.24], + [37111,0.267], + [37113,0.378], + [37115,0.371], + [37117,0.349], + [37119,0.2], + [37121,0.233], + [37123,0.424], + [37125,0.242], + [37127,0.277], + [37129,0.241], + [37131,0.41], + [37133,0.209], + [37135,0.113], + [37137,0.323], + [37139,0.302], + [37141,0.212], + [37143,0.272], + [37145,0.366], + [37147,0.294], + [37149,0.26], + [37151,0.279], + [37153,0.511], + [37155,0.483], + [37157,0.375], + [37159,0.257], + [37161,0.247], + [37163,0.45], + [37165,0.502], + [37167,0.24], + [37169,0.228], + [37171,0.301], + [37173,0.426], + [37175,0.214], + [37177,0.434], + [37179,0.142], + [37181,0.425], + [37183,0.157], + [37185,0.241], + [37187,0.672], + [37189,0.222], + [37191,0.376], + [37193,0.334], + [37195,0.401], + [37197,0.314], + [37199,0.291], + [38001,0.321], + [38003,0.213], + [38005,0.485], + [38007,0.024], + [38009,0.048], + [38011,0.156], + [38013,0.058], + [38015,0.102], + [38017,0.141], + [38019,0.09], + [38021,0.041], + [38023,0.302], + [38025,0.144], + [38027,0.444], + [38029,0.031], + [38031,0.124], + [38033,0.315], + [38035,0.138], + [38037,0.143], + [38039,0.092], + [38041,0.211], + [38043,0.144], + [38045,0.167], + [38047,0.067], + [38049,0.035], + [38051,0.058], + [38053,0.203], + [38055,0.068], + [38057,0.176], + [38059,0.061], + [38061,0.189], + [38063,0.078], + [38065,0], + [38067,0.091], + [38069,0.39], + [38071,0.207], + [38073,0.046], + [38075,0.051], + [38077,0.097], + [38079,0.53], + [38081,0.063], + [38083,0.301], + [38085,0.489], + [38087,0], + [38089,0.059], + [38091,0], + [38093,0.203], + [38095,0.398], + [38097,0.062], + [38099,0.122], + [38101,0.102], + [38103,0.014], + [38105,0.121], + [39001,0.351], + [39003,0.243], + [39005,0.26], + [39007,0.389], + [39009,0.351], + [39011,0.177], + [39013,0.279], + [39015,0.3], + [39017,0.188], + [39019,0.255], + [39021,0.211], + [39023,0.272], + [39025,0.157], + [39027,0.231], + [39029,0.283], + [39031,0.23], + [39033,0.303], + [39035,0.3], + [39037,0.173], + [39039,0.257], + [39041,0.058], + [39043,0.238], + [39045,0.171], + [39047,0.388], + [39049,0.262], + [39051,0.189], + [39053,0.342], + [39055,0.108], + [39057,0.2], + [39059,0.431], + [39061,0.279], + [39063,0.127], + [39065,0.316], + [39067,0.241], + [39069,0.118], + [39071,0.394], + [39073,0.223], + [39075,0.212], + [39077,0.214], + [39079,0.236], + [39081,0.305], + [39083,0.165], + [39085,0.118], + [39087,0.189], + [39089,0.212], + [39091,0.31], + [39093,0.281], + [39095,0.342], + [39097,0.156], + [39099,0.351], + [39101,0.294], + [39103,0.101], + [39105,0.409], + [39107,0.095], + [39109,0.135], + [39111,0.396], + [39113,0.325], + [39115,0.326], + [39117,0.145], + [39119,0.313], + [39121,0.339], + [39123,0.195], + [39125,0.106], + [39127,0.357], + [39129,0.205], + [39131,0.351], + [39133,0.264], + [39135,0.21], + [39137,0.137], + [39139,0.306], + [39141,0.319], + [39143,0.211], + [39145,0.398], + [39147,0.288], + [39149,0.157], + [39151,0.274], + [39153,0.215], + [39155,0.35], + [39157,0.245], + [39159,0.11], + [39161,0.223], + [39163,0.398], + [39165,0.092], + [39167,0.257], + [39169,0.239], + [39171,0.209], + [39173,0.127], + [39175,0.094], + [40001,0.436], + [40003,0.171], + [40005,0.334], + [40007,0.25], + [40009,0.175], + [40011,0.228], + [40013,0.204], + [40015,0.372], + [40017,0.11], + [40019,0.208], + [40021,0.313], + [40023,0.422], + [40025,0.206], + [40027,0.128], + [40029,0.351], + [40031,0.256], + [40033,0.203], + [40035,0.351], + [40037,0.259], + [40039,0.131], + [40041,0.351], + [40043,0.357], + [40045,0.292], + [40047,0.198], + [40049,0.261], + [40051,0.212], + [40053,0.146], + [40055,0.268], + [40057,0.404], + [40059,0.271], + [40061,0.329], + [40063,0.32], + [40065,0.291], + [40067,0.307], + [40069,0.362], + [40071,0.284], + [40073,0.073], + [40075,0.439], + [40077,0.297], + [40079,0.336], + [40081,0.236], + [40083,0.108], + [40085,0.195], + [40087,0.08], + [40089,0.344], + [40091,0.233], + [40093,0.221], + [40095,0.2], + [40097,0.31], + [40099,0.153], + [40101,0.362], + [40103,0.124], + [40105,0.276], + [40107,0.372], + [40109,0.286], + [40111,0.346], + [40113,0.256], + [40115,0.35], + [40117,0.213], + [40119,0.275], + [40121,0.241], + [40123,0.278], + [40125,0.245], + [40127,0.301], + [40129,0.184], + [40131,0.149], + [40133,0.388], + [40135,0.398], + [40137,0.236], + [40139,0.231], + [40141,0.272], + [40143,0.269], + [40145,0.155], + [40147,0.248], + [40149,0.185], + [40151,0.252], + [40153,0.205], + [41001,0.254], + [41003,0.173], + [41005,0.124], + [41007,0.188], + [41009,0.194], + [41011,0.333], + [41013,0.294], + [41015,0.186], + [41017,0.188], + [41019,0.309], + [41021,0], + [41023,0.269], + [41025,0.313], + [41027,0.283], + [41029,0.296], + [41031,0.402], + [41033,0.31], + [41035,0.272], + [41037,0.512], + [41039,0.231], + [41041,0.343], + [41043,0.219], + [41045,0.465], + [41047,0.257], + [41049,0.258], + [41051,0.2], + [41053,0.227], + [41055,0], + [41057,0.322], + [41059,0.277], + [41061,0.235], + [41063,0.316], + [41065,0.179], + [41067,0.157], + [41069,0.333], + [41071,0.256], + [42001,0.187], + [42003,0.179], + [42005,0.258], + [42007,0.168], + [42009,0.222], + [42011,0.221], + [42013,0.272], + [42015,0.178], + [42017,0.087], + [42019,0.111], + [42021,0.306], + [42023,0.404], + [42025,0.285], + [42027,0.134], + [42029,0.093], + [42031,0.247], + [42033,0.3], + [42035,0.347], + [42037,0.225], + [42039,0.261], + [42041,0.12], + [42043,0.242], + [42045,0.155], + [42047,0.175], + [42049,0.323], + [42051,0.312], + [42053,0.333], + [42055,0.184], + [42057,0.143], + [42059,0.25], + [42061,0.219], + [42063,0.259], + [42065,0.294], + [42067,0.195], + [42069,0.22], + [42071,0.164], + [42073,0.235], + [42075,0.171], + [42077,0.216], + [42079,0.321], + [42081,0.257], + [42083,0.336], + [42085,0.26], + [42087,0.298], + [42089,0.157], + [42091,0.081], + [42093,0.19], + [42095,0.155], + [42097,0.274], + [42099,0.155], + [42101,0.364], + [42103,0.173], + [42105,0.311], + [42107,0.211], + [42109,0.211], + [42111,0.227], + [42113,0.122], + [42115,0.279], + [42117,0.261], + [42119,0.142], + [42121,0.252], + [42123,0.271], + [42125,0.147], + [42127,0.138], + [42129,0.175], + [42131,0.176], + [42133,0.164], + [44001,0.026], + [44003,0.085], + [44005,0.131], + [44007,0.268], + [44009,0.129], + [45001,0.477], + [45003,0.292], + [45005,0.616], + [45007,0.278], + [45009,0.427], + [45011,0.475], + [45013,0.219], + [45015,0.223], + [45017,0.339], + [45019,0.23], + [45021,0.394], + [45023,0.383], + [45025,0.485], + [45027,0.365], + [45029,0.414], + [45031,0.345], + [45033,0.519], + [45035,0.162], + [45037,0.24], + [45039,0.172], + [45041,0.31], + [45043,0.395], + [45045,0.213], + [45047,0.498], + [45049,0.282], + [45051,0.322], + [45053,0.419], + [45055,0.207], + [45057,0.254], + [45059,0.387], + [45061,0.505], + [45063,0.213], + [45065,0.507], + [45067,0.501], + [45069,0.492], + [45071,0.382], + [45073,0.378], + [45075,0.435], + [45077,0.21], + [45079,0.27], + [45081,0.331], + [45083,0.248], + [45085,0.303], + [45087,0.435], + [45089,0.45], + [45091,0.187], + [46003,0.034], + [46005,0.511], + [46007,0.466], + [46009,0.113], + [46011,0.1], + [46013,0.22], + [46015,0.239], + [46017,0.567], + [46019,0.047], + [46021,0], + [46023,0.323], + [46025,0.238], + [46027,0.212], + [46029,0.119], + [46031,0.699], + [46033,0.163], + [46035,0.202], + [46037,0.368], + [46039,0.171], + [46041,0.437], + [46043,0.086], + [46045,0], + [46047,0.156], + [46049,0], + [46051,0.048], + [46053,0.273], + [46055,0.227], + [46057,0.056], + [46059,0.176], + [46061,0.062], + [46063,0.235], + [46065,0.206], + [46067,0.284], + [46069,0.256], + [46071,0.633], + [46073,0.024], + [46075,0], + [46077,0.117], + [46079,0.21], + [46081,0.184], + [46083,0.023], + [46085,0.426], + [46087,0.096], + [46089,0], + [46091,0.073], + [46093,0.103], + [46095,0.712], + [46097,0.208], + [46099,0.153], + [46101,0.101], + [46102,null], + [46103,0.239], + [46105,0.215], + [46107,0.169], + [46109,0.308], + [46111,0.154], + [46115,0.225], + [46117,0.168], + [46119,0.035], + [46121,0.677], + [46123,0.304], + [46125,0.208], + [46127,0.081], + [46129,0.14], + [46135,0.239], + [46137,0.605], + [47001,0.305], + [47003,0.27], + [47005,0.497], + [47007,0.284], + [47009,0.254], + [47011,0.355], + [47013,0.415], + [47015,0.27], + [47017,0.177], + [47019,0.319], + [47021,0.177], + [47023,0.26], + [47025,0.461], + [47027,0.427], + [47029,0.537], + [47031,0.255], + [47033,0.233], + [47035,0.286], + [47037,0.269], + [47039,0.484], + [47041,0.235], + [47043,0.247], + [47045,0.335], + [47047,0.23], + [47049,0.268], + [47051,0.201], + [47053,0.36], + [47055,0.247], + [47057,0.336], + [47059,0.306], + [47061,0.336], + [47063,0.42], + [47065,0.239], + [47067,0.354], + [47069,0.216], + [47071,0.344], + [47073,0.335], + [47075,0.366], + [47077,0.277], + [47079,0.319], + [47081,0.2], + [47083,0.318], + [47085,0.305], + [47087,0.245], + [47089,0.16], + [47091,0.491], + [47093,0.215], + [47095,0.55], + [47097,0.387], + [47099,0.314], + [47101,0.514], + [47103,0.373], + [47105,0.382], + [47107,0.354], + [47109,0.272], + [47111,0.269], + [47113,0.355], + [47115,0.277], + [47117,0.186], + [47119,0.19], + [47121,0.327], + [47123,0.379], + [47125,0.187], + [47127,0.066], + [47129,0.278], + [47131,0.401], + [47133,0.318], + [47135,0.563], + [47137,0.342], + [47139,0.148], + [47141,0.384], + [47143,0.371], + [47145,0.233], + [47147,0.233], + [47149,0.183], + [47151,0.355], + [47153,0.035], + [47155,0.25], + [47157,0.395], + [47159,0.195], + [47161,0.463], + [47163,0.305], + [47165,0.147], + [47167,0.192], + [47169,0.028], + [47171,0.334], + [47173,0.467], + [47175,0.364], + [47177,0.435], + [47179,0.279], + [47181,0.473], + [47183,0.349], + [47185,0.267], + [47187,0.045], + [47189,0.136], + [48001,0.221], + [48003,0.162], + [48005,0.317], + [48007,0.501], + [48009,0.147], + [48011,0.252], + [48013,0.207], + [48015,0.289], + [48017,0.49], + [48019,0.366], + [48021,0.224], + [48023,0.028], + [48025,0.332], + [48027,0.205], + [48029,0.248], + [48031,0.295], + [48033,0], + [48035,0.331], + [48037,0.27], + [48039,0.106], + [48041,0.281], + [48043,0.048], + [48045,0.299], + [48047,0.724], + [48049,0.311], + [48051,0.483], + [48053,0.223], + [48055,0.281], + [48057,0.316], + [48059,0.218], + [48061,0.467], + [48063,0.204], + [48065,0.109], + [48067,0.271], + [48069,0.281], + [48071,0.13], + [48073,0.311], + [48075,0.217], + [48077,0.226], + [48079,0.316], + [48081,0.059], + [48083,0.311], + [48085,0.093], + [48087,0.26], + [48089,0.108], + [48091,0.154], + [48093,0.319], + [48095,0.144], + [48097,0.304], + [48099,0.215], + [48101,0.396], + [48103,0.223], + [48105,0.487], + [48107,0.334], + [48109,0.564], + [48111,0.223], + [48113,0.276], + [48115,0.155], + [48117,0.306], + [48119,0.46], + [48121,0.111], + [48123,0.218], + [48125,0.263], + [48127,0.325], + [48129,0.31], + [48131,0.467], + [48133,0.185], + [48135,0.18], + [48137,0.276], + [48139,0.187], + [48141,0.295], + [48143,0.185], + [48145,0.447], + [48147,0.224], + [48149,0.094], + [48151,0.233], + [48153,0.249], + [48155,0.061], + [48157,0.111], + [48159,0.327], + [48161,0.354], + [48163,0.216], + [48165,0.099], + [48167,0.181], + [48169,0.45], + [48171,0.306], + [48173,0], + [48175,0.351], + [48177,0.285], + [48179,0.301], + [48181,0.21], + [48183,0.277], + [48185,0.269], + [48187,0.166], + [48189,0.336], + [48191,0.486], + [48193,0.304], + [48195,0.229], + [48197,0.211], + [48199,0.175], + [48201,0.263], + [48203,0.306], + [48205,0.081], + [48207,0.263], + [48209,0.151], + [48211,0.241], + [48213,0.347], + [48215,0.453], + [48217,0.331], + [48219,0.202], + [48221,0.303], + [48223,0.293], + [48225,0.517], + [48227,0.259], + [48229,0.443], + [48231,0.308], + [48233,0.274], + [48235,0.256], + [48237,0.226], + [48239,0.284], + [48241,0.267], + [48243,0], + [48245,0.291], + [48247,0.553], + [48249,0.341], + [48251,0.145], + [48253,0.265], + [48255,0.374], + [48257,0.183], + [48259,0.073], + [48261,0], + [48263,0.468], + [48265,0.248], + [48267,0.361], + [48269,0.095], + [48271,0], + [48273,0.33], + [48275,0.331], + [48277,0.314], + [48279,0.325], + [48281,0.198], + [48283,0.101], + [48285,0.16], + [48287,0.192], + [48289,0.303], + [48291,0.245], + [48293,0.385], + [48295,0.134], + [48297,0.317], + [48299,0.166], + [48301,null], + [48303,0.221], + [48305,0.373], + [48307,0.177], + [48309,0.298], + [48311,0], + [48313,0.178], + [48315,0.276], + [48317,0.223], + [48319,0.322], + [48321,0.316], + [48323,0.311], + [48325,0.213], + [48327,0.106], + [48329,0.17], + [48331,0.288], + [48333,0.333], + [48335,0.067], + [48337,0.244], + [48339,0.147], + [48341,0.26], + [48343,0.247], + [48345,0.167], + [48347,0.329], + [48349,0.373], + [48351,0.259], + [48353,0.274], + [48355,0.291], + [48357,0.095], + [48359,0.078], + [48361,0.179], + [48363,0.282], + [48365,0.227], + [48367,0.118], + [48369,0.374], + [48371,0.113], + [48373,0.358], + [48375,0.335], + [48377,0.343], + [48379,0.222], + [48381,0.129], + [48383,0.263], + [48385,0.538], + [48387,0.149], + [48389,0.244], + [48391,0.265], + [48393,0], + [48395,0.217], + [48397,0.084], + [48399,0.208], + [48401,0.195], + [48403,0.558], + [48405,0.477], + [48407,0.235], + [48409,0.236], + [48411,0.337], + [48413,0.082], + [48415,0.213], + [48417,0.337], + [48419,0.363], + [48421,0.229], + [48423,0.321], + [48425,0.286], + [48427,0.505], + [48429,0.497], + [48431,0.457], + [48433,0], + [48435,0.049], + [48437,0.397], + [48439,0.216], + [48441,0.231], + [48443,0], + [48445,0.225], + [48447,0.268], + [48449,0.335], + [48451,0.159], + [48453,0.198], + [48455,0.273], + [48457,0.185], + [48459,0.212], + [48461,0.276], + [48463,0.299], + [48465,0.306], + [48467,0.226], + [48469,0.238], + [48471,0.268], + [48473,0.323], + [48475,0.181], + [48477,0.157], + [48479,0.464], + [48481,0.376], + [48483,0.287], + [48485,0.338], + [48487,0.16], + [48489,0.434], + [48491,0.095], + [48493,0.13], + [48495,0.326], + [48497,0.226], + [48499,0.254], + [48501,0.186], + [48503,0.256], + [48505,0.595], + [48507,0.579], + [49001,0.246], + [49003,0.175], + [49005,0.169], + [49007,0.296], + [49009,0], + [49011,0.072], + [49013,0.179], + [49015,0.207], + [49017,0.167], + [49019,0.336], + [49021,0.22], + [49023,0.21], + [49025,0.108], + [49027,0.248], + [49029,0.03], + [49031,0.275], + [49033,0.136], + [49035,0.14], + [49037,0.428], + [49039,0.183], + [49041,0.247], + [49043,0.16], + [49045,0.091], + [49047,0.159], + [49049,0.132], + [49051,0.088], + [49053,0.186], + [49055,0.019], + [49057,0.165], + [50001,0.138], + [50003,0.212], + [50005,0.275], + [50007,0.122], + [50009,0.239], + [50011,0.14], + [50013,0.067], + [50015,0.233], + [50017,0.182], + [50019,0.188], + [50021,0.16], + [50023,0.2], + [50025,0.131], + [50027,0.186], + [51001,0.304], + [51003,0.14], + [51005,0.285], + [51007,0.134], + [51009,0.239], + [51011,0.247], + [51013,0.113], + [51015,0.111], + [51017,0.317], + [51019,0.121], + [51021,0.252], + [51023,0.167], + [51025,0.407], + [51027,0.465], + [51029,0.257], + [51031,0.134], + [51033,0.127], + [51035,0.262], + [51036,0.234], + [51037,0.272], + [51041,0.096], + [51043,0.229], + [51045,0.136], + [51047,0.111], + [51049,0.604], + [51051,0.448], + [51053,0.185], + [51057,0.136], + [51059,0.087], + [51061,0.117], + [51063,0.154], + [51065,0.053], + [51067,0.265], + [51069,0.069], + [51071,0.095], + [51073,0.146], + [51075,0.025], + [51077,0.462], + [51079,0.212], + [51081,0.176], + [51083,0.289], + [51085,0.081], + [51087,0.194], + [51089,0.298], + [51091,0.309], + [51093,0.153], + [51095,0.162], + [51097,0.292], + [51099,0.11], + [51101,0.162], + [51103,0.255], + [51105,0.421], + [51107,0.035], + [51109,0.18], + [51111,0.277], + [51113,0.13], + [51115,0.332], + [51117,0.192], + [51119,0.299], + [51121,0.162], + [51125,0.14], + [51127,0.148], + [51131,0.428], + [51133,0.082], + [51135,0.237], + [51137,0.176], + [51139,0.367], + [51141,0.506], + [51143,0.299], + [51145,0.032], + [51147,0.186], + [51149,0.226], + [51153,0.114], + [51155,0.243], + [51157,0.052], + [51159,0.166], + [51161,0.066], + [51163,0.189], + [51165,0.219], + [51167,0.241], + [51169,0.329], + [51171,0.108], + [51173,0.362], + [51175,0.193], + [51177,0.142], + [51179,0.064], + [51181,0.212], + [51183,0.298], + [51185,0.254], + [51187,0.143], + [51191,0.258], + [51193,0.034], + [51195,0.318], + [51197,0.089], + [51199,0.073], + [51510,0.142], + [51520,0.465], + [51530,0.207], + [51540,0.217], + [51550,0.172], + [51570,0.164], + [51580,0.069], + [51590,0.331], + [51595,0.256], + [51600,0.096], + [51610,0.036], + [51620,0.227], + [51630,0.223], + [51640,0.292], + [51650,0.216], + [51660,0.238], + [51670,0.258], + [51678,0], + [51680,0.287], + [51683,0.162], + [51685,0.134], + [51690,0.416], + [51700,0.239], + [51710,0.311], + [51720,0.616], + [51730,0.352], + [51735,0.098], + [51740,0.291], + [51750,0.252], + [51760,0.374], + [51770,0.304], + [51775,0.111], + [51790,0.127], + [51800,0.186], + [51810,0.128], + [51820,0.202], + [51830,0.07], + [51840,0.207], + [53001,0.411], + [53003,0.191], + [53005,0.232], + [53007,0.174], + [53009,0.318], + [53011,0.135], + [53013,0.246], + [53015,0.252], + [53017,0.193], + [53019,0.368], + [53021,0.266], + [53023,0.193], + [53025,0.234], + [53027,0.254], + [53029,0.117], + [53031,0.193], + [53033,0.121], + [53035,0.159], + [53037,0.111], + [53039,0.292], + [53041,0.27], + [53043,0.225], + [53045,0.241], + [53047,0.345], + [53049,0.224], + [53051,0.132], + [53053,0.167], + [53055,0.193], + [53057,0.189], + [53059,0.237], + [53061,0.119], + [53063,0.204], + [53065,0.231], + [53067,0.156], + [53069,0.076], + [53071,0.14], + [53073,0.149], + [53075,0.209], + [53077,0.304], + [54001,0.535], + [54003,0.172], + [54005,0.359], + [54007,0.297], + [54009,0.309], + [54011,0.294], + [54013,0.468], + [54015,0.186], + [54017,0.156], + [54019,0.293], + [54021,0.416], + [54023,0.122], + [54025,0.302], + [54027,0.419], + [54029,0.314], + [54031,0.144], + [54033,0.2], + [54035,0.094], + [54037,0.159], + [54039,0.321], + [54041,0.445], + [54043,0.366], + [54045,0.35], + [54047,0.607], + [54049,0.261], + [54051,0.251], + [54053,0.318], + [54055,0.348], + [54057,0.35], + [54059,0.537], + [54061,0.23], + [54063,0.36], + [54065,0.183], + [54067,0.588], + [54069,0.232], + [54071,0.272], + [54073,0.259], + [54075,0.489], + [54077,0.257], + [54079,0.096], + [54081,0.378], + [54083,0.244], + [54085,0.237], + [54087,0.201], + [54089,0.44], + [54091,0.175], + [54093,0.277], + [54095,0.208], + [54097,0.545], + [54099,0.366], + [54101,0.603], + [54103,0.493], + [54105,0.404], + [54107,0.335], + [54109,0.404], + [55001,0.245], + [55003,0.166], + [55005,0.225], + [55007,0.219], + [55009,0.178], + [55011,0.129], + [55013,0.356], + [55015,0.092], + [55017,0.18], + [55019,0.234], + [55021,0.16], + [55023,0.189], + [55025,0.124], + [55027,0.132], + [55029,0.098], + [55031,0.203], + [55033,0.154], + [55035,0.143], + [55037,0.094], + [55039,0.117], + [55041,0.235], + [55043,0.214], + [55045,0.189], + [55047,0.211], + [55049,0.14], + [55051,0.243], + [55053,0.173], + [55055,0.13], + [55057,0.269], + [55059,0.257], + [55061,0.105], + [55063,0.167], + [55065,0.166], + [55067,0.262], + [55069,0.151], + [55071,0.168], + [55073,0.163], + [55075,0.223], + [55077,0.17], + [55078,0.607], + [55079,0.316], + [55081,0.225], + [55083,0.145], + [55085,0.08], + [55087,0.145], + [55089,0.115], + [55091,0.251], + [55093,0.165], + [55095,0.156], + [55097,0.18], + [55099,0.18], + [55101,0.211], + [55103,0.2], + [55105,0.254], + [55107,0.319], + [55109,0.072], + [55111,0.207], + [55113,0.488], + [55115,0.226], + [55117,0.16], + [55119,0.188], + [55121,0.118], + [55123,0.239], + [55125,0.223], + [55127,0.156], + [55129,0.229], + [55131,0.045], + [55133,0.065], + [55135,0.246], + [55137,0.176], + [55139,0.173], + [55141,0.232], + [56001,0.141], + [56003,0.17], + [56005,0.194], + [56007,0.18], + [56009,0.065], + [56011,0.018], + [56013,0.231], + [56015,0.243], + [56017,0.303], + [56019,0.047], + [56021,0.151], + [56023,0.165], + [56025,0.148], + [56027,0.088], + [56029,0.079], + [56031,0.331], + [56033,0.041], + [56035,0.039], + [56037,0.207], + [56039,0.027], + [56041,0.164], + [56043,0.15], + [56045,0.176] + ] +} diff --git a/data/regional/united-states/economics/retail/us-hospitality-sales-2007.json b/data/regional/united-states/economics/retail/us-hospitality-sales-2007.json new file mode 100644 index 0000000..c161054 --- /dev/null +++ b/data/regional/united-states/economics/retail/us-hospitality-sales-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Hospitality Sales", + "description" : "Hospitality sales.", + "units" : "$", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","hospitality"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.hospitality.sales.2007"], + [1001,88157000], + [1003,436955000], + [1005,null], + [1007,10757000], + [1009,20941000], + [1011,3670000], + [1013,28427000], + [1015,186533000], + [1017,23237000], + [1019,13948000], + [1021,34073000], + [1023,11345000], + [1025,23596000], + [1027,4352000], + [1029,4134000], + [1031,50080000], + [1033,61935000], + [1035,8667000], + [1037,575000], + [1039,30271000], + [1041,5640000], + [1043,102291000], + [1045,37229000], + [1047,33708000], + [1049,67915000], + [1051,47884000], + [1053,31909000], + [1055,137966000], + [1057,10869000], + [1059,25389000], + [1061,10402000], + [1063,1226000], + [1065,3136000], + [1067,7415000], + [1069,177224000], + [1071,39315000], + [1073,1268154000], + [1075,6008000], + [1077,136587000], + [1079,22719000], + [1081,201205000], + [1083,68140000], + [1085,595000], + [1087,19354000], + [1089,596324000], + [1091,16684000], + [1093,19081000], + [1095,103539000], + [1097,562436000], + [1099,14796000], + [1101,402861000], + [1103,154700000], + [1105,2632000], + [1107,6302000], + [1109,45692000], + [1111,9241000], + [1113,56392000], + [1115,70254000], + [1117,301893000], + [1119,8199000], + [1121,67078000], + [1123,28222000], + [1125,327429000], + [1127,73895000], + [1129,null], + [1131,12949000], + [1133,16564000], + [2013,null], + [2016,14684000], + [2020,933301000], + [2050,4091000], + [2060,13278000], + [2068,37099000], + [2070,7197000], + [2090,221600000], + [2100,6351000], + [2105,20660000], + [2110,86874000], + [2122,131217000], + [2130,45557000], + [2150,26252000], + [2158,0], + [2164,null], + [2170,113679000], + [2180,10198000], + [2185,56347000], + [2188,null], + [2195,8300000], + [2198,10917000], + [2220,27072000], + [2230,null], + [2240,22181000], + [2261,23148000], + [2275,null], + [2282,3757000], + [2290,5429000], + [4001,47781000], + [4003,171397000], + [4005,717689000], + [4007,106693000], + [4009,34671000], + [4011,4888000], + [4012,37986000], + [4013,8408940000], + [4015,274299000], + [4017,191458000], + [4019,2135243000], + [4021,341933000], + [4023,67226000], + [4025,456458000], + [4027,271852000], + [5001,15452000], + [5003,15276000], + [5005,60260000], + [5007,295747000], + [5009,41893000], + [5011,6240000], + [5013,802000], + [5015,53966000], + [5017,6074000], + [5019,32727000], + [5021,6345000], + [5023,29180000], + [5025,null], + [5027,21775000], + [5029,16218000], + [5031,146652000], + [5033,53249000], + [5035,65142000], + [5037,12504000], + [5039,4648000], + [5041,9790000], + [5043,19657000], + [5045,137881000], + [5047,10416000], + [5049,5299000], + [5051,203277000], + [5053,10188000], + [5055,37645000], + [5057,21236000], + [5059,16843000], + [5061,9151000], + [5063,34685000], + [5065,3275000], + [5067,9669000], + [5069,87074000], + [5071,20545000], + [5073,1519000], + [5075,9250000], + [5077,2793000], + [5079,null], + [5081,6101000], + [5083,10022000], + [5085,46387000], + [5087,3245000], + [5089,8605000], + [5091,43650000], + [5093,45822000], + [5095,8190000], + [5097,18197000], + [5099,3228000], + [5101,3264000], + [5103,14614000], + [5105,1718000], + [5107,13481000], + [5109,6825000], + [5111,11615000], + [5113,14410000], + [5115,79437000], + [5117,4266000], + [5119,809950000], + [5121,13904000], + [5123,28530000], + [5125,81237000], + [5127,3086000], + [5129,2859000], + [5131,207768000], + [5133,6925000], + [5135,12969000], + [5137,12052000], + [5139,39958000], + [5141,12534000], + [5143,355688000], + [5145,79764000], + [5147,1311000], + [5149,9171000], + [6001,2807766000], + [6003,null], + [6005,61202000], + [6007,355840000], + [6009,42359000], + [6011,91604000], + [6013,1562250000], + [6015,32195000], + [6017,301718000], + [6019,1147177000], + [6021,30980000], + [6023,209017000], + [6025,167799000], + [6027,91666000], + [6029,940340000], + [6031,360069000], + [6033,68069000], + [6035,29679000], + [6037,20238148000], + [6039,125079000], + [6041,626574000], + [6043,132992000], + [6045,194204000], + [6047,219430000], + [6049,8787000], + [6051,217352000], + [6053,1197083000], + [6055,620353000], + [6057,199443000], + [6059,8247828000], + [6061,773617000], + [6063,30078000], + [6065,4835331000], + [6067,2252889000], + [6069,50184000], + [6071,2754662000], + [6073,9551513000], + [6075,5039171000], + [6077,745809000], + [6079,767899000], + [6081,2107180000], + [6083,1361476000], + [6085,4147579000], + [6087,513826000], + [6089,280996000], + [6091,null], + [6093,78518000], + [6095,573269000], + [6097,1005419000], + [6099,615119000], + [6101,100653000], + [6103,56074000], + [6105,14624000], + [6107,379422000], + [6109,86532000], + [6111,1478160000], + [6113,840344000], + [6115,52440000], + [8001,578044000], + [8003,30297000], + [8005,1008531000], + [8007,33162000], + [8009,null], + [8011,2990000], + [8013,668939000], + [8014,163445000], + [8015,49240000], + [8017,407000], + [8019,25036000], + [8021,4499000], + [8023,null], + [8025,null], + [8027,5545000], + [8029,26912000], + [8031,2279048000], + [8033,1659000], + [8035,435099000], + [8037,469696000], + [8039,6884000], + [8041,1153810000], + [8043,40834000], + [8045,161174000], + [8047,291507000], + [8049,73865000], + [8051,89685000], + [8053,3567000], + [8055,9712000], + [8057,2416000], + [8059,960467000], + [8061,null], + [8063,10306000], + [8065,12573000], + [8067,206242000], + [8069,604358000], + [8071,22369000], + [8073,8400000], + [8075,23276000], + [8077,268843000], + [8079,9476000], + [8081,35307000], + [8083,84913000], + [8085,51053000], + [8087,27652000], + [8089,20313000], + [8091,21247000], + [8093,11083000], + [8095,1880000], + [8097,270848000], + [8099,16282000], + [8101,220852000], + [8103,11303000], + [8105,14191000], + [8107,184368000], + [8109,null], + [8111,5079000], + [8113,77135000], + [8115,1697000], + [8117,281619000], + [8119,128005000], + [8121,1542000], + [8123,217231000], + [8125,8777000], + [9001,1861946000], + [9003,1637963000], + [9005,245161000], + [9007,293408000], + [9009,1345875000], + [9011,3444661000], + [9013,173091000], + [9015,136332000], + [10001,447861000], + [10003,999186000], + [10005,463723000], + [11001,4278171000], + [12001,493980000], + [12003,19819000], + [12005,480359000], + [12007,37088000], + [12009,855503000], + [12011,4209090000], + [12013,9289000], + [12015,178021000], + [12017,109681000], + [12019,213775000], + [12021,1037152000], + [12023,103321000], + [12027,24311000], + [12029,7395000], + [12031,1719352000], + [12033,493882000], + [12035,114760000], + [12037,37568000], + [12039,18920000], + [12041,8145000], + [12043,4894000], + [12045,18763000], + [12047,7863000], + [12049,17883000], + [12051,37321000], + [12053,166197000], + [12055,100789000], + [12057,2619799000], + [12059,8328000], + [12061,190526000], + [12063,43151000], + [12065,7035000], + [12067,2663000], + [12069,436028000], + [12071,1191997000], + [12073,551621000], + [12075,32401000], + [12077,3368000], + [12079,12314000], + [12081,443809000], + [12083,353110000], + [12085,279037000], + [12086,6005856000], + [12087,748100000], + [12089,286967000], + [12091,491894000], + [12093,46949000], + [12095,6645089000], + [12097,890451000], + [12099,3088613000], + [12101,432390000], + [12103,1925067000], + [12105,699617000], + [12107,48880000], + [12109,507634000], + [12111,268322000], + [12113,135111000], + [12115,844369000], + [12117,764148000], + [12119,79933000], + [12121,31870000], + [12123,19967000], + [12125,10512000], + [12127,899154000], + [12129,20092000], + [12131,312686000], + [12133,18080000], + [13001,15835000], + [13003,937000], + [13005,5947000], + [13007,null], + [13009,57925000], + [13011,44269000], + [13013,125078000], + [13015,140737000], + [13017,20020000], + [13019,9253000], + [13021,306252000], + [13023,6646000], + [13025,4259000], + [13027,null], + [13029,34786000], + [13031,95340000], + [13033,11108000], + [13035,17970000], + [13037,946000], + [13039,71770000], + [13043,14749000], + [13045,142419000], + [13047,76458000], + [13049,9831000], + [13051,872885000], + [13053,804000], + [13055,null], + [13057,246874000], + [13059,293388000], + [13061,null], + [13063,398890000], + [13065,3333000], + [13067,1393471000], + [13069,47137000], + [13071,35043000], + [13073,119074000], + [13075,18080000], + [13077,146607000], + [13079,1372000], + [13081,39028000], + [13083,15778000], + [13085,49886000], + [13087,24104000], + [13089,1207713000], + [13091,12514000], + [13093,6625000], + [13095,170969000], + [13097,212285000], + [13099,6271000], + [13101,0], + [13103,26103000], + [13105,14557000], + [13107,14804000], + [13109,6395000], + [13111,29653000], + [13113,171207000], + [13115,144251000], + [13117,183104000], + [13119,22760000], + [13121,4133808000], + [13123,36555000], + [13125,null], + [13127,398301000], + [13129,62480000], + [13131,13083000], + [13133,60642000], + [13135,1264671000], + [13137,41762000], + [13139,224064000], + [13141,1031000], + [13143,14624000], + [13145,43474000], + [13147,16806000], + [13149,1886000], + [13151,243225000], + [13153,206115000], + [13155,2608000], + [13157,33343000], + [13159,3412000], + [13161,9883000], + [13163,11202000], + [13165,3823000], + [13167,1384000], + [13169,13415000], + [13171,12041000], + [13173,null], + [13175,66796000], + [13177,6881000], + [13179,62915000], + [13181,5229000], + [13183,1830000], + [13185,209463000], + [13187,33394000], + [13189,23602000], + [13191,19840000], + [13193,5623000], + [13195,7222000], + [13197,1021000], + [13199,14833000], + [13201,2935000], + [13205,15388000], + [13207,23756000], + [13209,2877000], + [13211,40310000], + [13213,24649000], + [13215,428162000], + [13217,93483000], + [13219,38870000], + [13221,1816000], + [13223,108987000], + [13225,28726000], + [13227,27773000], + [13229,8687000], + [13231,2432000], + [13233,35178000], + [13235,13668000], + [13237,19813000], + [13239,null], + [13241,41073000], + [13243,3852000], + [13245,395411000], + [13247,196568000], + [13249,879000], + [13251,8297000], + [13253,5449000], + [13255,77353000], + [13257,26220000], + [13259,2689000], + [13261,33712000], + [13263,0], + [13265,null], + [13267,9522000], + [13269,1590000], + [13271,11149000], + [13273,null], + [13275,49874000], + [13277,92037000], + [13279,42329000], + [13281,31033000], + [13283,1792000], + [13285,88719000], + [13287,6479000], + [13289,1349000], + [13291,21565000], + [13293,22893000], + [13295,25369000], + [13297,58350000], + [13299,55465000], + [13301,749000], + [13303,16524000], + [13305,32909000], + [13307,null], + [13309,null], + [13311,51128000], + [13313,144781000], + [13315,612000], + [13317,7075000], + [13319,1377000], + [13321,6544000], + [15001,874735000], + [15003,4123825000], + [15005,0], + [15007,591483000], + [15009,2452167000], + [16001,795953000], + [16003,null], + [16005,117808000], + [16007,null], + [16009,null], + [16011,24298000], + [16013,153302000], + [16015,5741000], + [16017,63260000], + [16019,153475000], + [16021,null], + [16023,null], + [16025,1518000], + [16027,140865000], + [16029,null], + [16031,33455000], + [16033,null], + [16035,null], + [16037,11270000], + [16039,26980000], + [16041,5841000], + [16043,10050000], + [16045,9205000], + [16047,null], + [16049,14650000], + [16051,7387000], + [16053,14045000], + [16055,303725000], + [16057,55179000], + [16059,7704000], + [16061,null], + [16063,2350000], + [16065,32041000], + [16067,18923000], + [16069,64508000], + [16071,2135000], + [16073,4150000], + [16075,12757000], + [16077,2596000], + [16079,11068000], + [16081,10730000], + [16083,112044000], + [16085,43204000], + [16087,null], + [17001,null], + [17003,null], + [17005,13125000], + [17007,40186000], + [17009,null], + [17011,27440000], + [17013,5376000], + [17015,12957000], + [17017,8121000], + [17019,374499000], + [17021,29295000], + [17023,17035000], + [17025,null], + [17027,32422000], + [17029,75603000], + [17031,13094372000], + [17033,15266000], + [17035,3098000], + [17037,128175000], + [17039,13923000], + [17041,24490000], + [17043,2226207000], + [17045,12036000], + [17047,2538000], + [17049,85192000], + [17051,18286000], + [17053,11430000], + [17055,34169000], + [17057,29399000], + [17059,null], + [17061,null], + [17063,56309000], + [17065,2759000], + [17067,10926000], + [17069,1016000], + [17071,1914000], + [17073,42009000], + [17075,20770000], + [17077,108315000], + [17079,3246000], + [17081,67783000], + [17083,26668000], + [17085,81271000], + [17087,6806000], + [17089,680888000], + [17091,null], + [17093,99906000], + [17095,68325000], + [17097,1299296000], + [17099,158601000], + [17101,null], + [17103,34957000], + [17105,38283000], + [17107,30369000], + [17109,52785000], + [17111,365565000], + [17113,336104000], + [17115,170857000], + [17117,26082000], + [17119,382660000], + [17121,36765000], + [17123,9228000], + [17125,10399000], + [17127,null], + [17129,6909000], + [17131,5605000], + [17133,35946000], + [17135,36376000], + [17137,44423000], + [17139,null], + [17141,43365000], + [17143,343149000], + [17145,15379000], + [17147,9981000], + [17149,13705000], + [17151,1219000], + [17153,null], + [17155,2266000], + [17157,26776000], + [17159,14233000], + [17161,224219000], + [17163,615352000], + [17165,28274000], + [17167,366849000], + [17169,null], + [17171,1714000], + [17173,14065000], + [17175,1352000], + [17177,44798000], + [17179,353944000], + [17181,10029000], + [17183,84980000], + [17185,10150000], + [17187,14251000], + [17189,12325000], + [17191,null], + [17193,11408000], + [17195,60604000], + [17197,1404940000], + [17199,118603000], + [17201,452187000], + [17203,26023000], + [18001,27069000], + [18003,550450000], + [18005,139684000], + [18007,2561000], + [18009,8038000], + [18011,54490000], + [18013,19753000], + [18015,18411000], + [18017,33801000], + [18019,197472000], + [18021,18422000], + [18023,25067000], + [18025,null], + [18027,25851000], + [18029,null], + [18031,29861000], + [18033,47475000], + [18035,160815000], + [18037,58781000], + [18039,272416000], + [18041,21624000], + [18043,null], + [18045,12013000], + [18047,28470000], + [18049,null], + [18051,38501000], + [18053,88055000], + [18055,19511000], + [18057,437156000], + [18059,66306000], + [18061,null], + [18063,227647000], + [18065,36185000], + [18067,150481000], + [18069,44268000], + [18071,58429000], + [18073,33940000], + [18075,null], + [18077,43158000], + [18079,16079000], + [18081,208425000], + [18083,56801000], + [18085,92258000], + [18087,33861000], + [18089,1069166000], + [18091,389663000], + [18093,42970000], + [18095,155130000], + [18097,2248380000], + [18099,50494000], + [18101,null], + [18103,25837000], + [18105,287796000], + [18107,48487000], + [18109,59095000], + [18111,7984000], + [18113,35884000], + [18115,null], + [18117,null], + [18119,10444000], + [18121,null], + [18123,null], + [18125,5609000], + [18127,211334000], + [18129,17130000], + [18131,null], + [18133,45904000], + [18135,null], + [18137,18675000], + [18139,null], + [18141,439711000], + [18143,30721000], + [18145,46357000], + [18147,16299000], + [18149,null], + [18151,57024000], + [18153,14252000], + [18155,null], + [18157,315997000], + [18159,9837000], + [18161,3006000], + [18163,516819000], + [18165,16305000], + [18167,195501000], + [18169,30325000], + [18171,8420000], + [18173,36854000], + [18175,null], + [18177,107213000], + [18179,19285000], + [18181,24469000], + [18183,28272000], + [19001,4128000], + [19003,null], + [19005,8456000], + [19007,7996000], + [19009,null], + [19011,9616000], + [19013,194601000], + [19015,16172000], + [19017,16655000], + [19019,11530000], + [19021,25523000], + [19023,null], + [19025,null], + [19027,20787000], + [19029,11638000], + [19031,9509000], + [19033,83915000], + [19035,8706000], + [19037,7433000], + [19039,84923000], + [19041,23407000], + [19043,53722000], + [19045,54058000], + [19047,12931000], + [19049,110369000], + [19051,3054000], + [19053,4323000], + [19055,9038000], + [19057,68773000], + [19059,54611000], + [19061,145685000], + [19063,7910000], + [19065,14582000], + [19067,13656000], + [19069,4424000], + [19071,14804000], + [19073,3859000], + [19075,4346000], + [19077,8345000], + [19079,12245000], + [19081,4144000], + [19083,11447000], + [19085,10399000], + [19087,22246000], + [19089,4842000], + [19091,7477000], + [19093,null], + [19095,25049000], + [19097,14490000], + [19099,30110000], + [19101,16610000], + [19103,258762000], + [19105,9765000], + [19107,null], + [19109,11502000], + [19111,36970000], + [19113,353610000], + [19115,4530000], + [19117,null], + [19119,null], + [19121,7596000], + [19123,16819000], + [19125,28951000], + [19127,40400000], + [19129,5388000], + [19131,5070000], + [19133,7234000], + [19135,null], + [19137,7599000], + [19139,44245000], + [19141,9778000], + [19143,null], + [19145,12573000], + [19147,34628000], + [19149,21970000], + [19151,null], + [19153,825244000], + [19155,451451000], + [19157,17021000], + [19159,null], + [19161,null], + [19163,423931000], + [19165,8692000], + [19167,31746000], + [19169,151011000], + [19171,null], + [19173,null], + [19175,11160000], + [19177,null], + [19179,41514000], + [19181,25116000], + [19183,114716000], + [19185,null], + [19187,61910000], + [19189,6386000], + [19191,21459000], + [19193,158358000], + [19195,4736000], + [19197,7591000], + [20001,12409000], + [20003,5600000], + [20005,14931000], + [20007,2727000], + [20009,35379000], + [20011,16285000], + [20013,7611000], + [20015,57370000], + [20017,2283000], + [20019,null], + [20021,8639000], + [20023,937000], + [20025,null], + [20027,5547000], + [20029,13731000], + [20031,4869000], + [20033,1452000], + [20035,34235000], + [20037,51852000], + [20039,1538000], + [20041,15310000], + [20043,1516000], + [20045,213749000], + [20047,null], + [20049,null], + [20051,72165000], + [20053,4554000], + [20055,54895000], + [20057,40272000], + [20059,27910000], + [20061,51976000], + [20063,2010000], + [20065,1339000], + [20067,7133000], + [20069,1277000], + [20071,null], + [20073,2983000], + [20075,636000], + [20077,4388000], + [20079,29446000], + [20081,null], + [20083,209000], + [20085,null], + [20087,4409000], + [20089,1152000], + [20091,1082977000], + [20093,1234000], + [20095,4451000], + [20097,856000], + [20099,14150000], + [20101,null], + [20103,48348000], + [20105,763000], + [20107,1271000], + [20109,3502000], + [20111,51039000], + [20113,29843000], + [20115,5621000], + [20117,8833000], + [20119,1456000], + [20121,23967000], + [20123,5081000], + [20125,43496000], + [20127,4614000], + [20129,2290000], + [20131,4229000], + [20133,13085000], + [20135,1541000], + [20137,5399000], + [20139,null], + [20141,1421000], + [20143,1533000], + [20145,5749000], + [20147,3679000], + [20149,11780000], + [20151,15023000], + [20153,727000], + [20155,83362000], + [20157,3130000], + [20159,6640000], + [20161,125435000], + [20163,null], + [20165,901000], + [20167,10038000], + [20169,96095000], + [20171,null], + [20173,846879000], + [20175,32249000], + [20177,null], + [20179,768000], + [20181,11006000], + [20183,1422000], + [20185,1152000], + [20187,813000], + [20189,null], + [20191,16779000], + [20193,18327000], + [20195,4032000], + [20197,null], + [20199,null], + [20201,2497000], + [20203,529000], + [20205,5805000], + [20207,1526000], + [20209,241883000], + [21001,9057000], + [21003,8240000], + [21005,11256000], + [21007,1841000], + [21009,64669000], + [21011,null], + [21013,38133000], + [21015,null], + [21017,13466000], + [21019,100532000], + [21021,57725000], + [21023,null], + [21025,8742000], + [21027,7882000], + [21029,73041000], + [21031,5358000], + [21033,9358000], + [21035,52463000], + [21037,163252000], + [21039,1071000], + [21041,18212000], + [21043,24362000], + [21045,6399000], + [21047,80082000], + [21049,51254000], + [21051,12401000], + [21053,7804000], + [21055,5086000], + [21057,4529000], + [21059,147433000], + [21061,6325000], + [21063,3224000], + [21065,7916000], + [21067,785725000], + [21069,5972000], + [21071,34911000], + [21073,80515000], + [21075,null], + [21077,null], + [21079,4517000], + [21081,29952000], + [21083,null], + [21085,16243000], + [21087,3962000], + [21089,21048000], + [21091,2158000], + [21093,168623000], + [21095,20320000], + [21097,11311000], + [21099,11506000], + [21101,54742000], + [21103,null], + [21105,null], + [21107,53708000], + [21109,2078000], + [21111,1629185000], + [21113,46401000], + [21115,27186000], + [21117,323301000], + [21119,2950000], + [21121,27458000], + [21123,5861000], + [21125,91032000], + [21127,11508000], + [21129,2530000], + [21131,3874000], + [21133,14125000], + [21135,3942000], + [21137,9405000], + [21139,null], + [21141,15264000], + [21143,12199000], + [21145,179175000], + [21147,7070000], + [21149,3067000], + [21151,127253000], + [21153,7290000], + [21155,12288000], + [21157,42695000], + [21159,4927000], + [21161,36489000], + [21163,null], + [21165,null], + [21167,20665000], + [21169,5132000], + [21171,6490000], + [21173,30886000], + [21175,8093000], + [21177,27189000], + [21179,null], + [21181,762000], + [21183,15269000], + [21185,47130000], + [21187,6557000], + [21189,null], + [21191,4453000], + [21193,43807000], + [21195,75472000], + [21197,9333000], + [21199,73492000], + [21201,null], + [21203,11277000], + [21205,36058000], + [21207,14527000], + [21209,73114000], + [21211,null], + [21213,29682000], + [21215,null], + [21217,25363000], + [21219,2331000], + [21221,11289000], + [21223,1844000], + [21225,9845000], + [21227,231205000], + [21229,6302000], + [21231,18787000], + [21233,4700000], + [21235,39252000], + [21237,558000], + [21239,15725000], + [22001,40790000], + [22003,17401000], + [22005,116260000], + [22007,4085000], + [22009,174653000], + [22011,19527000], + [22013,6558000], + [22015,711717000], + [22017,675315000], + [22019,878553000], + [22021,5829000], + [22023,1381000], + [22025,4973000], + [22027,2251000], + [22029,17791000], + [22031,10419000], + [22033,998287000], + [22035,2074000], + [22037,5964000], + [22039,9263000], + [22041,14329000], + [22043,null], + [22045,73544000], + [22047,17866000], + [22049,7863000], + [22051,982943000], + [22053,26709000], + [22055,584645000], + [22057,106618000], + [22059,7583000], + [22061,72490000], + [22063,89170000], + [22065,9396000], + [22067,19773000], + [22069,52432000], + [22071,2148176000], + [22073,250288000], + [22075,43227000], + [22077,14042000], + [22079,null], + [22081,3469000], + [22083,14610000], + [22085,13984000], + [22087,36343000], + [22089,40093000], + [22091,1653000], + [22093,11979000], + [22095,55538000], + [22097,56570000], + [22099,45107000], + [22101,60317000], + [22103,370687000], + [22105,164632000], + [22107,528000], + [22109,233139000], + [22111,10217000], + [22113,51097000], + [22115,39827000], + [22117,28122000], + [22119,28725000], + [22121,35180000], + [22123,4096000], + [22125,11835000], + [22127,11247000], + [23001,149702000], + [23003,71782000], + [23005,734947000], + [23007,43024000], + [23009,167455000], + [23011,198512000], + [23013,90110000], + [23015,72027000], + [23017,92619000], + [23019,224163000], + [23021,13589000], + [23023,51500000], + [23025,44981000], + [23027,37580000], + [23029,24740000], + [23031,499096000], + [24001,124706000], + [24003,1288086000], + [24005,1414111000], + [24009,110741000], + [24011,18868000], + [24013,203808000], + [24015,133366000], + [24017,231630000], + [24019,81825000], + [24021,356482000], + [24023,47284000], + [24025,361855000], + [24027,565685000], + [24029,36003000], + [24031,1872772000], + [24033,1205022000], + [24035,103044000], + [24037,132293000], + [24039,9899000], + [24041,104944000], + [24043,229661000], + [24045,184806000], + [24047,506848000], + [24510,1434689000], + [25001,890997000], + [25003,401912000], + [25005,885231000], + [25007,95785000], + [25009,1301497000], + [25011,80305000], + [25013,661740000], + [25015,225453000], + [25017,3250213000], + [25019,88915000], + [25021,1294000000], + [25023,794552000], + [25025,3795879000], + [25027,1150731000], + [26001,4236000], + [26003,14239000], + [26005,118800000], + [26007,32160000], + [26009,35232000], + [26011,15617000], + [26013,5641000], + [26015,32312000], + [26017,134694000], + [26019,44171000], + [26021,219492000], + [26023,44710000], + [26025,181995000], + [26027,27133000], + [26029,60229000], + [26031,45986000], + [26033,189886000], + [26035,28898000], + [26037,50774000], + [26039,19605000], + [26041,46419000], + [26043,28601000], + [26045,155322000], + [26047,108399000], + [26049,528674000], + [26051,17568000], + [26053,55668000], + [26055,237714000], + [26057,40125000], + [26059,31369000], + [26061,46469000], + [26063,33647000], + [26065,446061000], + [26067,37417000], + [26069,27267000], + [26071,11646000], + [26073,117754000], + [26075,185386000], + [26077,414648000], + [26079,13744000], + [26081,925177000], + [26083,4385000], + [26085,7788000], + [26087,72559000], + [26089,40646000], + [26091,94196000], + [26093,180995000], + [26095,7374000], + [26097,56481000], + [26099,1120853000], + [26101,26791000], + [26103,100271000], + [26105,39650000], + [26107,44055000], + [26109,17217000], + [26111,108035000], + [26113,9446000], + [26115,171549000], + [26117,45828000], + [26119,7882000], + [26121,220979000], + [26123,32121000], + [26125,2284814000], + [26127,32250000], + [26129,31109000], + [26131,6753000], + [26133,19225000], + [26135,9005000], + [26137,58833000], + [26139,277197000], + [26141,9188000], + [26143,37284000], + [26145,337257000], + [26147,178285000], + [26149,53768000], + [26151,30192000], + [26153,10158000], + [26155,57479000], + [26157,24671000], + [26159,80514000], + [26161,613520000], + [26163,3112369000], + [26165,48791000], + [27001,19708000], + [27003,374922000], + [27005,43449000], + [27007,65600000], + [27009,42112000], + [27011,null], + [27013,138977000], + [27015,40488000], + [27017,32568000], + [27019,91065000], + [27021,146417000], + [27023,11559000], + [27025,43041000], + [27027,58515000], + [27029,null], + [27031,40376000], + [27033,8984000], + [27035,149594000], + [27037,614280000], + [27039,11799000], + [27041,71018000], + [27043,10517000], + [27045,14499000], + [27047,33762000], + [27049,254569000], + [27051,null], + [27053,3279149000], + [27055,8029000], + [27057,20637000], + [27059,30395000], + [27061,51027000], + [27063,7751000], + [27065,9999000], + [27067,51963000], + [27069,null], + [27071,21260000], + [27073,null], + [27075,33945000], + [27077,20371000], + [27079,17014000], + [27081,null], + [27083,37308000], + [27085,39793000], + [27087,null], + [27089,null], + [27091,24429000], + [27093,13868000], + [27095,200475000], + [27097,32087000], + [27099,41794000], + [27101,null], + [27103,25556000], + [27105,26072000], + [27107,null], + [27109,326873000], + [27111,62687000], + [27113,43324000], + [27115,null], + [27117,null], + [27119,36677000], + [27121,12597000], + [27123,963534000], + [27125,null], + [27127,81494000], + [27129,null], + [27131,80619000], + [27133,null], + [27135,24494000], + [27137,498616000], + [27139,527464000], + [27141,75305000], + [27143,null], + [27145,251180000], + [27147,67718000], + [27149,11685000], + [27151,null], + [27153,15083000], + [27155,null], + [27157,16992000], + [27159,10906000], + [27161,13502000], + [27163,340899000], + [27165,9103000], + [27167,5102000], + [27169,65402000], + [27171,106702000], + [27173,38276000], + [28001,98002000], + [28003,42518000], + [28005,1322000], + [28007,13697000], + [28009,0], + [28011,31055000], + [28013,2525000], + [28015,667000], + [28017,11476000], + [28019,1666000], + [28021,4726000], + [28023,4486000], + [28025,15843000], + [28027,120568000], + [28029,15675000], + [28031,11175000], + [28033,256752000], + [28035,158846000], + [28037,null], + [28039,13432000], + [28041,1698000], + [28043,36218000], + [28045,133842000], + [28047,1619113000], + [28049,403797000], + [28051,5530000], + [28053,4395000], + [28055,0], + [28057,12294000], + [28059,178044000], + [28061,4405000], + [28063,null], + [28065,6156000], + [28067,442842000], + [28069,1374000], + [28071,96237000], + [28073,103490000], + [28075,135846000], + [28077,4008000], + [28079,13004000], + [28081,148229000], + [28083,51401000], + [28085,41228000], + [28087,88621000], + [28089,180563000], + [28091,20071000], + [28093,14189000], + [28095,21770000], + [28097,7336000], + [28099,24150000], + [28101,11180000], + [28103,4571000], + [28105,77313000], + [28107,32577000], + [28109,43186000], + [28111,1221000], + [28113,50918000], + [28115,14755000], + [28117,17540000], + [28119,1903000], + [28121,197777000], + [28123,19732000], + [28125,1618000], + [28127,20622000], + [28129,1829000], + [28131,18606000], + [28133,15067000], + [28135,3639000], + [28137,14639000], + [28139,11772000], + [28141,9168000], + [28143,1308603000], + [28145,20831000], + [28147,null], + [28149,384592000], + [28151,93800000], + [28153,15340000], + [28155,3192000], + [28157,3435000], + [28159,16545000], + [28161,2881000], + [28163,12405000], + [29001,38667000], + [29003,4479000], + [29005,4510000], + [29007,18584000], + [29009,25785000], + [29011,8445000], + [29013,12312000], + [29015,13167000], + [29017,null], + [29019,315136000], + [29021,154484000], + [29023,57927000], + [29025,2129000], + [29027,33202000], + [29029,157554000], + [29031,145859000], + [29033,5499000], + [29035,3456000], + [29037,82368000], + [29039,9794000], + [29041,2043000], + [29043,59653000], + [29045,2120000], + [29047,822122000], + [29049,16242000], + [29051,127555000], + [29053,112683000], + [29055,25507000], + [29057,2099000], + [29059,8357000], + [29061,2187000], + [29063,5214000], + [29065,10779000], + [29067,7693000], + [29069,24917000], + [29071,109271000], + [29073,13473000], + [29075,2012000], + [29077,578286000], + [29079,6236000], + [29081,11022000], + [29083,25044000], + [29085,1641000], + [29087,3966000], + [29089,3435000], + [29091,47630000], + [29093,5296000], + [29095,1505780000], + [29097,182316000], + [29099,203297000], + [29101,56687000], + [29103,614000], + [29105,50320000], + [29107,25448000], + [29109,20500000], + [29111,null], + [29113,31065000], + [29115,9272000], + [29117,17366000], + [29119,10000000], + [29121,15206000], + [29123,6690000], + [29125,2635000], + [29127,41812000], + [29129,647000], + [29131,30047000], + [29133,10000000], + [29135,8206000], + [29137,4383000], + [29139,6008000], + [29141,13322000], + [29143,14988000], + [29145,69583000], + [29147,28785000], + [29149,5890000], + [29151,4114000], + [29153,6403000], + [29155,14371000], + [29157,20242000], + [29159,55361000], + [29161,73609000], + [29163,11303000], + [29165,465596000], + [29167,23301000], + [29169,74338000], + [29171,453000], + [29173,3626000], + [29175,21767000], + [29177,10157000], + [29179,4126000], + [29181,5678000], + [29183,537680000], + [29185,5420000], + [29186,11391000], + [29187,null], + [29189,2440721000], + [29195,15866000], + [29197,386000], + [29199,2216000], + [29201,null], + [29203,4419000], + [29205,1680000], + [29207,20526000], + [29209,47618000], + [29211,646000], + [29213,360747000], + [29215,10980000], + [29217,18697000], + [29219,22441000], + [29221,17311000], + [29223,4414000], + [29225,22194000], + [29227,526000], + [29229,38047000], + [29510,1059295000], + [30001,16054000], + [30003,13590000], + [30005,2414000], + [30007,5749000], + [30009,18542000], + [30011,null], + [30013,174295000], + [30015,3802000], + [30017,22098000], + [30019,1027000], + [30021,21216000], + [30023,16363000], + [30025,4002000], + [30027,14146000], + [30029,232886000], + [30031,325789000], + [30033,647000], + [30035,37613000], + [30037,362000], + [30039,2518000], + [30041,23819000], + [30043,7268000], + [30045,1270000], + [30047,34712000], + [30049,118555000], + [30051,771000], + [30053,26474000], + [30055,745000], + [30057,14998000], + [30059,2072000], + [30061,6680000], + [30063,269078000], + [30065,3467000], + [30067,61864000], + [30069,409000], + [30071,4135000], + [30073,4191000], + [30075,2241000], + [30077,7269000], + [30079,883000], + [30081,36471000], + [30083,19700000], + [30085,9667000], + [30087,9014000], + [30089,12192000], + [30091,4772000], + [30093,78285000], + [30095,9810000], + [30097,6185000], + [30099,2987000], + [30101,10602000], + [30103,null], + [30105,10950000], + [30107,1574000], + [30109,1057000], + [30111,361729000], + [31001,43747000], + [31003,2432000], + [31005,null], + [31007,0], + [31009,null], + [31011,3551000], + [31013,12355000], + [31015,null], + [31017,2949000], + [31019,103135000], + [31021,1961000], + [31023,1975000], + [31025,14206000], + [31027,3527000], + [31029,1985000], + [31031,9671000], + [31033,21057000], + [31035,1388000], + [31037,3530000], + [31039,6520000], + [31041,8242000], + [31043,19223000], + [31045,13657000], + [31047,24652000], + [31049,4101000], + [31051,1897000], + [31053,53012000], + [31055,1118911000], + [31057,476000], + [31059,3508000], + [31061,972000], + [31063,575000], + [31065,null], + [31067,23364000], + [31069,null], + [31071,1325000], + [31073,1749000], + [31075,null], + [31077,398000], + [31079,96898000], + [31081,5074000], + [31083,2777000], + [31085,288000], + [31087,1048000], + [31089,10151000], + [31091,null], + [31093,2849000], + [31095,6353000], + [31097,3089000], + [31099,2798000], + [31101,22762000], + [31103,null], + [31105,3056000], + [31107,3311000], + [31109,472514000], + [31111,null], + [31113,0], + [31115,0], + [31117,null], + [31119,48522000], + [31121,3850000], + [31123,3242000], + [31125,782000], + [31127,6975000], + [31129,2118000], + [31131,16980000], + [31133,924000], + [31135,778000], + [31137,9077000], + [31139,1613000], + [31141,39135000], + [31143,1141000], + [31145,16396000], + [31147,4122000], + [31149,323000], + [31151,11308000], + [31153,160273000], + [31155,9218000], + [31157,52919000], + [31159,13537000], + [31161,2876000], + [31163,2145000], + [31165,null], + [31167,1630000], + [31169,1858000], + [31171,987000], + [31173,null], + [31175,2656000], + [31177,12507000], + [31179,9314000], + [31181,null], + [31183,null], + [31185,28903000], + [32001,33010000], + [32003,24857836000], + [32005,680439000], + [32007,474078000], + [32009,null], + [32011,2239000], + [32013,52022000], + [32015,5362000], + [32017,null], + [32019,35040000], + [32021,20183000], + [32023,88105000], + [32027,9241000], + [32029,4780000], + [32031,2399394000], + [32033,22035000], + [32510,127696000], + [33001,151572000], + [33003,214906000], + [33005,110289000], + [33007,85674000], + [33009,272818000], + [33011,732310000], + [33013,223534000], + [33015,660746000], + [33017,146812000], + [33019,32307000], + [34001,6093042000], + [34003,1848306000], + [34005,656980000], + [34007,678828000], + [34009,516973000], + [34011,155140000], + [34013,1335840000], + [34015,379388000], + [34017,880714000], + [34019,175768000], + [34021,695848000], + [34023,1275068000], + [34025,1153458000], + [34027,1129752000], + [34029,703022000], + [34031,538657000], + [34033,82295000], + [34035,656131000], + [34037,172435000], + [34039,748001000], + [34041,117967000], + [35001,1398044000], + [35003,2638000], + [35005,92362000], + [35006,117318000], + [35007,56884000], + [35009,68312000], + [35011,null], + [35013,238748000], + [35015,80485000], + [35017,35488000], + [35019,16673000], + [35021,276000], + [35023,9853000], + [35025,85079000], + [35027,60207000], + [35028,17726000], + [35029,36899000], + [35031,109149000], + [35033,null], + [35035,92381000], + [35037,17946000], + [35039,66753000], + [35041,17635000], + [35043,150799000], + [35045,173198000], + [35047,33145000], + [35049,540400000], + [35051,14920000], + [35053,24224000], + [35055,100133000], + [35057,12894000], + [35059,6557000], + [35061,55675000], + [36001,738926000], + [36003,40159000], + [36005,743221000], + [36007,326420000], + [36009,264848000], + [36011,76380000], + [36013,181164000], + [36015,123134000], + [36017,32162000], + [36019,126639000], + [36021,65122000], + [36023,84612000], + [36025,41246000], + [36027,424664000], + [36029,1462823000], + [36031,125639000], + [36033,42710000], + [36035,46555000], + [36037,79495000], + [36039,90600000], + [36041,22572000], + [36043,54239000], + [36045,171973000], + [36047,1544409000], + [36049,17998000], + [36051,70849000], + [36053,77560000], + [36055,1061299000], + [36057,41969000], + [36059,2439350000], + [36061,17182554000], + [36063,662356000], + [36065,260498000], + [36067,784291000], + [36069,206314000], + [36071,454721000], + [36073,21341000], + [36075,128074000], + [36077,121733000], + [36079,94449000], + [36081,2223352000], + [36083,171796000], + [36085,401558000], + [36087,435305000], + [36089,116630000], + [36091,333539000], + [36093,151820000], + [36095,21552000], + [36097,25487000], + [36099,32950000], + [36101,103422000], + [36103,2376382000], + [36105,120652000], + [36107,32746000], + [36109,177718000], + [36111,321410000], + [36113,299993000], + [36115,25041000], + [36117,52348000], + [36119,1799292000], + [36121,31074000], + [36123,24364000], + [37001,219415000], + [37003,22587000], + [37005,11251000], + [37007,null], + [37009,22621000], + [37011,33556000], + [37013,49915000], + [37015,5618000], + [37017,23299000], + [37019,150576000], + [37021,684287000], + [37023,107721000], + [37025,321521000], + [37027,63694000], + [37029,1385000], + [37031,151047000], + [37033,5410000], + [37035,272070000], + [37037,39556000], + [37039,36834000], + [37041,19538000], + [37043,7417000], + [37045,96647000], + [37047,41129000], + [37049,142120000], + [37051,null], + [37053,34534000], + [37055,248321000], + [37057,131833000], + [37059,28967000], + [37061,42245000], + [37063,729319000], + [37065,36390000], + [37067,646828000], + [37069,21392000], + [37071,253421000], + [37073,2348000], + [37075,15443000], + [37077,48774000], + [37079,6345000], + [37081,1044546000], + [37083,71947000], + [37085,null], + [37087,99102000], + [37089,170539000], + [37091,25422000], + [37093,null], + [37095,16867000], + [37097,246678000], + [37099,74029000], + [37101,197202000], + [37103,1192000], + [37105,67309000], + [37107,69668000], + [37109,65246000], + [37111,41953000], + [37113,68205000], + [37115,12110000], + [37117,26378000], + [37119,2550518000], + [37121,12626000], + [37123,13401000], + [37125,227547000], + [37127,163803000], + [37129,525548000], + [37131,5195000], + [37133,287943000], + [37135,275614000], + [37137,23793000], + [37139,64786000], + [37141,35467000], + [37143,5776000], + [37145,37380000], + [37147,293539000], + [37149,15539000], + [37151,131315000], + [37153,37720000], + [37155,128842000], + [37157,84590000], + [37159,132143000], + [37161,60170000], + [37163,38575000], + [37165,32743000], + [37167,55742000], + [37169,28721000], + [37171,84911000], + [37173,561555000], + [37175,62757000], + [37177,null], + [37179,null], + [37181,53898000], + [37183,1726633000], + [37185,5653000], + [37187,13538000], + [37189,131419000], + [37191,132100000], + [37193,62131000], + [37195,112816000], + [37197,33597000], + [37199,10518000], + [38001,null], + [38003,12098000], + [38005,2083000], + [38007,13494000], + [38009,6913000], + [38011,3889000], + [38013,3347000], + [38015,170107000], + [38017,341193000], + [38019,3086000], + [38021,4844000], + [38023,null], + [38025,null], + [38027,null], + [38029,null], + [38031,3701000], + [38033,972000], + [38035,141124000], + [38037,null], + [38039,null], + [38041,1246000], + [38043,null], + [38045,2588000], + [38047,1138000], + [38049,1040000], + [38051,2067000], + [38053,3514000], + [38055,7185000], + [38057,8162000], + [38059,26063000], + [38061,4752000], + [38063,2030000], + [38065,null], + [38067,5623000], + [38069,3020000], + [38071,21714000], + [38073,4256000], + [38075,969000], + [38077,84638000], + [38079,36080000], + [38081,2173000], + [38083,600000], + [38085,null], + [38087,null], + [38089,40874000], + [38091,588000], + [38093,30208000], + [38095,null], + [38097,7008000], + [38099,9189000], + [38101,106720000], + [38103,2987000], + [38105,36595000], + [39001,19039000], + [39003,173208000], + [39005,55604000], + [39007,110649000], + [39009,80961000], + [39011,42917000], + [39013,91234000], + [39015,29265000], + [39017,531073000], + [39019,18879000], + [39021,25933000], + [39023,173143000], + [39025,239467000], + [39027,62173000], + [39029,87515000], + [39031,22685000], + [39033,39099000], + [39035,2499199000], + [39037,43685000], + [39039,41264000], + [39041,344178000], + [39043,254704000], + [39045,169513000], + [39047,38947000], + [39049,2596341000], + [39051,34650000], + [39053,33335000], + [39055,94053000], + [39057,283253000], + [39059,67040000], + [39061,1788350000], + [39063,130599000], + [39065,29488000], + [39067,6577000], + [39069,17831000], + [39071,36108000], + [39073,40242000], + [39075,36371000], + [39077,51687000], + [39079,35451000], + [39081,66322000], + [39083,53029000], + [39085,390752000], + [39087,41188000], + [39089,194174000], + [39091,55721000], + [39093,326569000], + [39095,728585000], + [39097,38403000], + [39099,340679000], + [39101,79053000], + [39103,186094000], + [39105,15334000], + [39107,39441000], + [39109,127602000], + [39111,4292000], + [39113,882692000], + [39115,5786000], + [39117,13979000], + [39119,124028000], + [39121,7267000], + [39123,101439000], + [39125,7947000], + [39127,13814000], + [39129,40037000], + [39131,31451000], + [39133,187682000], + [39135,32240000], + [39137,23206000], + [39139,178875000], + [39141,90194000], + [39143,76298000], + [39145,84833000], + [39147,46502000], + [39149,55185000], + [39151,517952000], + [39153,885042000], + [39155,245161000], + [39157,114445000], + [39159,51449000], + [39161,25464000], + [39163,2836000], + [39165,329812000], + [39167,83684000], + [39169,111046000], + [39171,33732000], + [39173,191076000], + [39175,21803000], + [40001,6082000], + [40003,1215000], + [40005,13934000], + [40007,1224000], + [40009,39226000], + [40011,8940000], + [40013,40395000], + [40015,13104000], + [40017,102239000], + [40019,68116000], + [40021,42076000], + [40023,10906000], + [40025,3360000], + [40027,391825000], + [40029,2195000], + [40031,154462000], + [40033,null], + [40035,14768000], + [40037,43437000], + [40039,41485000], + [40041,27083000], + [40043,1162000], + [40045,null], + [40047,74443000], + [40049,20314000], + [40051,38363000], + [40053,608000], + [40055,1675000], + [40057,null], + [40059,null], + [40061,5971000], + [40063,9340000], + [40065,40970000], + [40067,null], + [40069,3119000], + [40071,61454000], + [40073,null], + [40075,6392000], + [40077,5113000], + [40079,25819000], + [40081,19605000], + [40083,27916000], + [40085,5264000], + [40087,30766000], + [40089,21650000], + [40091,15494000], + [40093,3597000], + [40095,12222000], + [40097,36033000], + [40099,13962000], + [40101,88050000], + [40103,7080000], + [40105,3954000], + [40107,2273000], + [40109,1500945000], + [40111,29542000], + [40113,18150000], + [40115,28022000], + [40117,10412000], + [40119,117802000], + [40121,64461000], + [40123,47134000], + [40125,98896000], + [40127,4732000], + [40129,1900000], + [40131,62433000], + [40133,17655000], + [40135,34857000], + [40137,38788000], + [40139,24433000], + [40141,2747000], + [40143,1226453000], + [40145,30694000], + [40147,72525000], + [40149,3256000], + [40151,10403000], + [40153,34204000], + [41001,25659000], + [41003,134027000], + [41005,607444000], + [41007,160570000], + [41009,44223000], + [41011,83538000], + [41013,22704000], + [41015,56246000], + [41017,416425000], + [41019,228371000], + [41021,1505000], + [41023,6583000], + [41025,11056000], + [41027,55651000], + [41029,372936000], + [41031,45756000], + [41033,108909000], + [41035,103007000], + [41037,7159000], + [41039,607721000], + [41041,205434000], + [41043,125446000], + [41045,45264000], + [41047,null], + [41049,7057000], + [41051,2048635000], + [41053,null], + [41055,5895000], + [41057,53673000], + [41059,159389000], + [41061,32852000], + [41063,7350000], + [41065,47598000], + [41067,849401000], + [41069,554000], + [41071,98905000], + [42001,160108000], + [42003,2540334000], + [42005,39542000], + [42007,156309000], + [42009,70289000], + [42011,445993000], + [42013,178855000], + [42015,48780000], + [42017,970247000], + [42019,269549000], + [42021,155969000], + [42023,2764000], + [42025,104719000], + [42027,240050000], + [42029,783220000], + [42031,51159000], + [42033,88010000], + [42035,43233000], + [42037,90614000], + [42039,90060000], + [42041,402745000], + [42043,676791000], + [42045,779477000], + [42047,24081000], + [42049,428110000], + [42051,246895000], + [42053,8362000], + [42055,164527000], + [42057,9922000], + [42059,36814000], + [42061,40380000], + [42063,92360000], + [42065,32316000], + [42067,14597000], + [42069,360487000], + [42071,763937000], + [42073,73373000], + [42075,125336000], + [42077,546275000], + [42079,442900000], + [42081,147871000], + [42083,40949000], + [42085,166752000], + [42087,36095000], + [42089,394427000], + [42091,1477987000], + [42093,27509000], + [42095,384787000], + [42097,54514000], + [42099,21735000], + [42101,3051401000], + [42103,75810000], + [42105,10576000], + [42107,135797000], + [42109,53993000], + [42111,81350000], + [42113,6790000], + [42115,32095000], + [42117,39984000], + [42119,80214000], + [42121,44284000], + [42123,34962000], + [42125,233718000], + [42127,187793000], + [42129,454326000], + [42131,22304000], + [42133,527937000], + [44001,68287000], + [44003,398643000], + [44005,343003000], + [44007,1065946000], + [44009,272795000], + [45001,10963000], + [45003,172893000], + [45005,2949000], + [45007,235779000], + [45009,9368000], + [45011,14706000], + [45013,530485000], + [45015,161164000], + [45017,4052000], + [45019,1382702000], + [45021,68158000], + [45023,25201000], + [45025,30532000], + [45027,29787000], + [45029,55994000], + [45031,53900000], + [45033,31568000], + [45035,104021000], + [45037,7863000], + [45039,8892000], + [45041,250032000], + [45043,136648000], + [45045,817772000], + [45047,86061000], + [45049,17608000], + [45051,1483780000], + [45053,32368000], + [45055,52193000], + [45057,56293000], + [45059,53708000], + [45061,10724000], + [45063,434490000], + [45065,1954000], + [45067,31211000], + [45069,13417000], + [45071,30350000], + [45073,62807000], + [45075,152207000], + [45077,142900000], + [45079,733609000], + [45081,4310000], + [45083,411477000], + [45085,109382000], + [45087,18534000], + [45089,12820000], + [45091,285831000], + [46003,null], + [46005,20755000], + [46007,1821000], + [46009,2284000], + [46011,53179000], + [46013,74059000], + [46015,9870000], + [46017,null], + [46019,8544000], + [46021,null], + [46023,18219000], + [46025,1599000], + [46027,19325000], + [46029,75569000], + [46031,94000], + [46033,27837000], + [46035,45636000], + [46037,4297000], + [46039,2459000], + [46041,null], + [46043,null], + [46045,1855000], + [46047,9964000], + [46049,null], + [46051,9143000], + [46053,2836000], + [46055,null], + [46057,2329000], + [46059,2747000], + [46061,403000], + [46063,868000], + [46065,35077000], + [46067,3903000], + [46069,null], + [46071,1879000], + [46073,null], + [46075,3740000], + [46077,3711000], + [46079,14312000], + [46081,221659000], + [46083,27621000], + [46085,15937000], + [46087,3412000], + [46089,null], + [46091,4428000], + [46093,33442000], + [46095,null], + [46097,null], + [46099,389913000], + [46101,null], + [46102,18096000], + [46103,286549000], + [46105,null], + [46107,4215000], + [46109,7226000], + [46111,1090000], + [46115,4626000], + [46117,5356000], + [46119,2027000], + [46121,1719000], + [46123,8116000], + [46125,2239000], + [46127,19714000], + [46129,19839000], + [46135,34531000], + [46137,null], + [47001,126580000], + [47003,35265000], + [47005,13340000], + [47007,3483000], + [47009,208506000], + [47011,130465000], + [47013,35438000], + [47015,7102000], + [47017,15356000], + [47019,41911000], + [47021,23255000], + [47023,11578000], + [47025,21624000], + [47027,4049000], + [47029,44255000], + [47031,79255000], + [47033,6995000], + [47035,61652000], + [47037,2202982000], + [47039,6048000], + [47041,12131000], + [47043,60508000], + [47045,42802000], + [47047,12553000], + [47049,8176000], + [47051,28049000], + [47053,30831000], + [47055,24871000], + [47057,6097000], + [47059,61990000], + [47061,9837000], + [47063,91273000], + [47065,663283000], + [47067,1382000], + [47069,15636000], + [47071,28737000], + [47073,31738000], + [47075,13900000], + [47077,20893000], + [47079,29442000], + [47081,7097000], + [47083,2725000], + [47085,17794000], + [47087,2577000], + [47089,48272000], + [47091,6610000], + [47093,919247000], + [47095,5859000], + [47097,9726000], + [47099,37439000], + [47101,7996000], + [47103,26170000], + [47105,50805000], + [47107,57476000], + [47109,13145000], + [47111,11896000], + [47113,204863000], + [47115,32734000], + [47117,21090000], + [47119,97274000], + [47121,2046000], + [47123,40997000], + [47125,245217000], + [47127,1442000], + [47129,3500000], + [47131,null], + [47133,13319000], + [47135,null], + [47137,3141000], + [47139,8780000], + [47141,138047000], + [47143,26918000], + [47145,46029000], + [47147,60729000], + [47149,386963000], + [47151,14628000], + [47153,9377000], + [47155,611929000], + [47157,1787964000], + [47159,12379000], + [47161,6112000], + [47163,255074000], + [47165,155496000], + [47167,29779000], + [47169,4556000], + [47171,13024000], + [47173,5737000], + [47175,null], + [47177,28791000], + [47179,247065000], + [47181,8470000], + [47183,null], + [47185,16760000], + [47187,383468000], + [47189,147321000], + [48001,48576000], + [48003,14944000], + [48005,112556000], + [48007,48803000], + [48009,1406000], + [48011,647000], + [48013,32151000], + [48015,24961000], + [48017,7036000], + [48019,23207000], + [48021,115125000], + [48023,3162000], + [48025,25513000], + [48027,401438000], + [48029,3829048000], + [48031,9427000], + [48033,0], + [48035,5331000], + [48037,166546000], + [48039,313474000], + [48041,340272000], + [48043,25405000], + [48045,338000], + [48047,14217000], + [48049,49890000], + [48051,12843000], + [48053,74443000], + [48055,28157000], + [48057,21053000], + [48059,7639000], + [48061,503079000], + [48063,7480000], + [48065,1831000], + [48067,17538000], + [48069,2366000], + [48071,31404000], + [48073,36459000], + [48075,11657000], + [48077,2572000], + [48079,299000], + [48081,null], + [48083,5096000], + [48085,1380442000], + [48087,1390000], + [48089,21717000], + [48091,184420000], + [48093,null], + [48095,4346000], + [48097,52556000], + [48099,45375000], + [48101,null], + [48103,1023000], + [48105,8295000], + [48107,null], + [48109,10313000], + [48111,12548000], + [48113,5705137000], + [48115,12466000], + [48117,17267000], + [48119,null], + [48121,797850000], + [48123,14886000], + [48125,914000], + [48127,8259000], + [48129,3717000], + [48131,3745000], + [48133,17694000], + [48135,228555000], + [48137,null], + [48139,126593000], + [48141,1031298000], + [48143,55362000], + [48145,null], + [48147,18458000], + [48149,31977000], + [48151,null], + [48153,1805000], + [48155,null], + [48157,583427000], + [48159,6490000], + [48161,22549000], + [48163,7439000], + [48165,9535000], + [48167,590991000], + [48169,6171000], + [48171,52219000], + [48173,0], + [48175,3895000], + [48177,17385000], + [48179,null], + [48181,167728000], + [48183,246699000], + [48185,12524000], + [48187,116490000], + [48189,40263000], + [48191,1845000], + [48193,6045000], + [48195,3102000], + [48197,3359000], + [48199,37231000], + [48201,7874724000], + [48203,64027000], + [48205,1034000], + [48207,4662000], + [48209,235341000], + [48211,4078000], + [48213,63108000], + [48215,757984000], + [48217,44297000], + [48219,19778000], + [48221,61900000], + [48223,29169000], + [48225,18698000], + [48227,42548000], + [48229,1994000], + [48231,null], + [48233,21100000], + [48235,null], + [48237,6468000], + [48239,9870000], + [48241,32582000], + [48243,7053000], + [48245,387509000], + [48247,3600000], + [48249,46050000], + [48251,126352000], + [48253,4601000], + [48255,8635000], + [48257,93663000], + [48259,55776000], + [48261,0], + [48263,null], + [48265,97589000], + [48267,8162000], + [48269,0], + [48271,1089000], + [48273,43247000], + [48275,1406000], + [48277,61073000], + [48279,6963000], + [48281,16104000], + [48283,5336000], + [48285,9065000], + [48287,13214000], + [48289,13118000], + [48291,48868000], + [48293,18247000], + [48295,null], + [48297,11666000], + [48299,61053000], + [48301,null], + [48303,null], + [48305,795000], + [48307,8752000], + [48309,375262000], + [48311,null], + [48313,13114000], + [48315,5753000], + [48317,null], + [48319,3659000], + [48321,38800000], + [48323,48530000], + [48325,29785000], + [48327,null], + [48329,259193000], + [48331,17678000], + [48333,2080000], + [48335,3667000], + [48337,10935000], + [48339,728582000], + [48341,22995000], + [48343,8814000], + [48345,310000], + [48347,87801000], + [48349,42653000], + [48351,1860000], + [48353,16810000], + [48355,661990000], + [48357,9184000], + [48359,2919000], + [48361,85256000], + [48363,44899000], + [48365,18337000], + [48367,110365000], + [48369,1827000], + [48371,24316000], + [48373,33372000], + [48375,326019000], + [48377,5009000], + [48379,6194000], + [48381,131874000], + [48383,2216000], + [48385,3662000], + [48387,null], + [48389,12449000], + [48391,null], + [48393,null], + [48395,15197000], + [48397,105900000], + [48399,5612000], + [48401,29742000], + [48403,3346000], + [48405,1381000], + [48407,3968000], + [48409,77569000], + [48411,4105000], + [48413,333000], + [48415,20636000], + [48417,1905000], + [48419,14912000], + [48421,null], + [48423,337268000], + [48425,23122000], + [48427,26162000], + [48429,6240000], + [48431,null], + [48433,null], + [48435,9712000], + [48437,4002000], + [48439,3763516000], + [48441,246182000], + [48443,null], + [48445,9946000], + [48447,null], + [48449,40665000], + [48451,null], + [48453,2833744000], + [48455,11928000], + [48457,9783000], + [48459,20243000], + [48461,null], + [48463,39907000], + [48465,58971000], + [48467,32941000], + [48469,130821000], + [48471,73827000], + [48473,24703000], + [48475,8862000], + [48477,41272000], + [48479,317331000], + [48481,45912000], + [48483,9333000], + [48485,254849000], + [48487,16052000], + [48489,13211000], + [48491,583644000], + [48493,20847000], + [48495,4671000], + [48497,59273000], + [48499,30363000], + [48501,6025000], + [48503,17730000], + [48505,9403000], + [48507,4638000], + [49001,12753000], + [49003,36827000], + [49005,95153000], + [49007,26154000], + [49009,6358000], + [49011,274255000], + [49013,13557000], + [49015,10750000], + [49017,49289000], + [49019,68229000], + [49021,59642000], + [49023,7158000], + [49025,20941000], + [49027,11647000], + [49029,5686000], + [49031,null], + [49033,3732000], + [49035,1874594000], + [49037,null], + [49039,8332000], + [49041,24734000], + [49043,228891000], + [49045,35159000], + [49047,46512000], + [49049,451687000], + [49051,38846000], + [49053,254511000], + [49055,7736000], + [49057,261152000], + [50001,48164000], + [50003,106659000], + [50005,29922000], + [50007,360756000], + [50009,3090000], + [50011,39606000], + [50013,6528000], + [50015,174189000], + [50017,26208000], + [50019,36307000], + [50021,124431000], + [50023,118956000], + [50025,138405000], + [50027,154409000], + [51001,48144000], + [51003,120194000], + [51005,11029000], + [51007,3834000], + [51009,23765000], + [51011,7267000], + [51013,1164025000], + [51015,57138000], + [51017,null], + [51019,27892000], + [51021,null], + [51023,null], + [51025,8785000], + [51027,12056000], + [51029,null], + [51031,32679000], + [51033,14720000], + [51035,23259000], + [51036,null], + [51037,2729000], + [51041,491530000], + [51043,8980000], + [51045,null], + [51047,45329000], + [51049,1230000], + [51051,5152000], + [51053,13789000], + [51057,19386000], + [51059,2705714000], + [51061,104395000], + [51063,6569000], + [51065,11945000], + [51067,40310000], + [51069,86657000], + [51071,12455000], + [51073,40084000], + [51075,15818000], + [51077,null], + [51079,9978000], + [51081,14112000], + [51083,31245000], + [51085,137013000], + [51087,685845000], + [51089,38392000], + [51091,null], + [51093,32977000], + [51095,164358000], + [51097,null], + [51099,14697000], + [51101,7519000], + [51103,15990000], + [51105,8570000], + [51107,610172000], + [51109,13861000], + [51111,null], + [51113,10056000], + [51115,null], + [51117,43485000], + [51119,8743000], + [51121,148286000], + [51125,6178000], + [51127,9651000], + [51131,23555000], + [51133,5238000], + [51135,11072000], + [51137,25953000], + [51139,35414000], + [51141,6647000], + [51143,15256000], + [51145,17607000], + [51147,39964000], + [51149,23081000], + [51153,537865000], + [51155,40707000], + [51157,19953000], + [51159,null], + [51161,112694000], + [51163,49186000], + [51165,62105000], + [51167,15571000], + [51169,11577000], + [51171,50053000], + [51173,24143000], + [51175,null], + [51177,169842000], + [51179,140309000], + [51181,null], + [51183,15741000], + [51185,52190000], + [51187,41270000], + [51191,59216000], + [51193,14209000], + [51195,40082000], + [51197,63199000], + [51199,187400000], + [51510,471725000], + [51520,76579000], + [51530,null], + [51540,303579000], + [51550,369770000], + [51570,76059000], + [51580,null], + [51590,110262000], + [51595,24206000], + [51600,140285000], + [51610,56298000], + [51620,22572000], + [51630,171568000], + [51640,22522000], + [51650,233596000], + [51660,168643000], + [51670,47791000], + [51678,31279000], + [51680,189961000], + [51683,75620000], + [51685,5324000], + [51690,28727000], + [51700,329053000], + [51710,505017000], + [51720,17292000], + [51730,36635000], + [51735,9175000], + [51740,106189000], + [51750,36217000], + [51760,476810000], + [51770,267171000], + [51775,67944000], + [51790,65549000], + [51800,72760000], + [51810,1074236000], + [51820,48864000], + [51830,239559000], + [51840,104640000], + [53001,14844000], + [53003,22983000], + [53005,238019000], + [53007,171201000], + [53009,105726000], + [53011,493316000], + [53013,2686000], + [53015,124010000], + [53017,30403000], + [53019,2077000], + [53021,67659000], + [53023,523000], + [53025,95775000], + [53027,110958000], + [53029,77613000], + [53031,48744000], + [53033,5478918000], + [53035,392801000], + [53037,84390000], + [53039,16096000], + [53041,96165000], + [53043,4020000], + [53045,115435000], + [53047,48962000], + [53049,37164000], + [53051,9155000], + [53053,1172468000], + [53055,63338000], + [53057,251025000], + [53059,28489000], + [53061,1049765000], + [53063,780200000], + [53065,27654000], + [53067,346683000], + [53069,1849000], + [53071,75763000], + [53073,407945000], + [53075,48955000], + [53077,245645000], + [54001,9889000], + [54003,156378000], + [54005,13226000], + [54007,16765000], + [54009,31311000], + [54011,205158000], + [54013,1305000], + [54015,1344000], + [54017,null], + [54019,35668000], + [54021,5244000], + [54023,6052000], + [54025,139522000], + [54027,17351000], + [54029,33983000], + [54031,10841000], + [54033,117645000], + [54035,31817000], + [54037,71937000], + [54039,414905000], + [54041,27332000], + [54043,2777000], + [54045,39628000], + [54047,6926000], + [54049,67227000], + [54051,26294000], + [54053,12058000], + [54055,88355000], + [54057,21407000], + [54059,9961000], + [54061,192832000], + [54063,2844000], + [54065,11529000], + [54067,30507000], + [54069,98255000], + [54071,3114000], + [54073,6573000], + [54075,60373000], + [54077,12240000], + [54079,61640000], + [54081,144263000], + [54083,30726000], + [54085,3646000], + [54087,7311000], + [54089,9138000], + [54091,null], + [54093,12083000], + [54095,1816000], + [54097,24548000], + [54099,18397000], + [54101,1965000], + [54103,21022000], + [54105,863000], + [54107,157906000], + [54109,9872000], + [55001,41954000], + [55003,29469000], + [55005,50402000], + [55007,34175000], + [55009,464616000], + [55011,null], + [55013,null], + [55015,40052000], + [55017,56276000], + [55019,null], + [55021,164208000], + [55023,22551000], + [55025,916701000], + [55027,66077000], + [55029,130076000], + [55031,76565000], + [55033,42565000], + [55035,170257000], + [55037,4636000], + [55039,131511000], + [55041,null], + [55043,40869000], + [55045,33457000], + [55047,22380000], + [55049,25940000], + [55051,null], + [55053,23212000], + [55055,86389000], + [55057,28270000], + [55059,214034000], + [55061,14372000], + [55063,214449000], + [55065,null], + [55067,25281000], + [55069,27186000], + [55071,82443000], + [55073,173708000], + [55075,54376000], + [55077,null], + [55078,null], + [55079,1570614000], + [55081,71449000], + [55083,28196000], + [55085,84113000], + [55087,296108000], + [55089,124890000], + [55091,null], + [55093,32888000], + [55095,41813000], + [55097,97014000], + [55099,null], + [55101,242667000], + [55103,null], + [55105,211671000], + [55107,null], + [55109,110863000], + [55111,462144000], + [55113,74686000], + [55115,42735000], + [55117,193012000], + [55119,null], + [55121,null], + [55123,null], + [55125,161614000], + [55127,267234000], + [55129,25328000], + [55131,152903000], + [55133,616641000], + [55135,55597000], + [55137,25080000], + [55139,212069000], + [55141,84291000], + [56001,65787000], + [56003,5611000], + [56005,89245000], + [56007,42949000], + [56009,20947000], + [56011,6135000], + [56013,66975000], + [56015,11779000], + [56017,10368000], + [56019,20749000], + [56021,173722000], + [56023,21115000], + [56025,167974000], + [56027,3071000], + [56029,132951000], + [56031,12103000], + [56033,66787000], + [56035,19746000], + [56037,150439000], + [56039,327363000], + [56041,35497000], + [56043,10175000], + [56045,7520000] + ] +} diff --git a/data/regional/united-states/economics/retail/us-retail-sales-2007.json b/data/regional/united-states/economics/retail/us-retail-sales-2007.json new file mode 100644 index 0000000..011b4a9 --- /dev/null +++ b/data/regional/united-states/economics/retail/us-retail-sales-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Retail Sales", + "description" : "Retail sales.", + "units" : "$", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","retail"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.retail.sales.2007"], + [1001,598175000], + [1003,2966489000], + [1005,188337000], + [1007,124707000], + [1009,319700000], + [1011,43810000], + [1013,229277000], + [1015,1542981000], + [1017,264650000], + [1019,186321000], + [1021,359910000], + [1023,84633000], + [1025,344311000], + [1027,70558000], + [1029,133407000], + [1031,639623000], + [1033,821284000], + [1035,71232000], + [1037,20531000], + [1039,424873000], + [1041,75456000], + [1043,867058000], + [1045,332503000], + [1047,437359000], + [1049,635185000], + [1051,618313000], + [1053,379587000], + [1055,1114841000], + [1057,130362000], + [1059,269096000], + [1061,170044000], + [1063,33639000], + [1065,86735000], + [1067,92574000], + [1069,1909615000], + [1071,410988000], + [1073,11066328000], + [1075,70780000], + [1077,1131585000], + [1079,166958000], + [1081,1451634000], + [1083,723200000], + [1085,103636000], + [1087,87509000], + [1089,4438653000], + [1091,197221000], + [1093,209924000], + [1095,1357696000], + [1097,5225494000], + [1099,212618000], + [1101,3238175000], + [1103,1637628000], + [1105,34121000], + [1107,113222000], + [1109,367926000], + [1111,161410000], + [1113,428236000], + [1115,581324000], + [1117,2520488000], + [1119,59636000], + [1121,730728000], + [1123,362304000], + [1125,2445850000], + [1127,903643000], + [1129,76343000], + [1131,75708000], + [1133,166709000], + [2013,9326000], + [2016,46785000], + [2020,4482714000], + [2050,96755000], + [2060,12785000], + [2068,11046000], + [2070,42742000], + [2090,1574267000], + [2100,16185000], + [2105,52012000], + [2110,465334000], + [2122,666923000], + [2130,268880000], + [2150,108173000], + [2158,39514000], + [2164,null], + [2170,853888000], + [2180,63167000], + [2185,70105000], + [2188,41576000], + [2195,68451000], + [2198,41561000], + [2220,94916000], + [2230,null], + [2240,47342000], + [2261,79692000], + [2275,null], + [2282,null], + [2290,41553000], + [4001,276872000], + [4003,1313671000], + [4005,1691664000], + [4007,550763000], + [4009,389416000], + [4011,35595000], + [4012,394370000], + [4013,58688328000], + [4015,2837691000], + [4017,1237467000], + [4019,11928538000], + [4021,2033110000], + [4023,681267000], + [4025,2695406000], + [4027,2004643000], + [5001,286337000], + [5003,170779000], + [5005,486791000], + [5007,2390591000], + [5009,466894000], + [5011,71522000], + [5013,17859000], + [5015,265358000], + [5017,67030000], + [5019,247757000], + [5021,132637000], + [5023,282382000], + [5025,12265000], + [5027,197935000], + [5029,270351000], + [5031,1440936000], + [5033,452539000], + [5035,750517000], + [5037,185706000], + [5039,79676000], + [5041,119201000], + [5043,198993000], + [5045,1227650000], + [5047,140227000], + [5049,42434000], + [5051,1443438000], + [5053,107622000], + [5055,373077000], + [5057,204433000], + [5059,207424000], + [5061,160839000], + [5063,384242000], + [5065,104699000], + [5067,190887000], + [5069,867380000], + [5071,196775000], + [5073,32850000], + [5075,163661000], + [5077,35796000], + [5079,57549000], + [5081,88228000], + [5083,178072000], + [5085,497238000], + [5087,114683000], + [5089,87884000], + [5091,407683000], + [5093,421872000], + [5095,82241000], + [5097,32370000], + [5099,136792000], + [5101,13268000], + [5103,185662000], + [5105,32763000], + [5107,229411000], + [5109,52793000], + [5111,193122000], + [5113,176896000], + [5115,919267000], + [5117,39496000], + [5119,6163074000], + [5121,137421000], + [5123,353772000], + [5125,1157723000], + [5127,48651000], + [5129,59109000], + [5131,1825534000], + [5133,160591000], + [5135,155959000], + [5137,108393000], + [5139,526384000], + [5141,152073000], + [5143,2723279000], + [5145,803511000], + [5147,64736000], + [5149,109292000], + [6001,17909054000], + [6003,null], + [6005,1800754000], + [6007,2400652000], + [6009,292762000], + [6011,208543000], + [6013,11763753000], + [6015,206291000], + [6017,1619711000], + [6019,9808267000], + [6021,203958000], + [6023,1726357000], + [6025,1727258000], + [6027,241967000], + [6029,7876043000], + [6031,1035901000], + [6033,557902000], + [6035,260422000], + [6037,119111840000], + [6039,1010216000], + [6041,4589300000], + [6043,84507000], + [6045,1259064000], + [6047,2001290000], + [6049,53025000], + [6051,154316000], + [6053,4541144000], + [6055,1665005000], + [6057,1077159000], + [6059,45022513000], + [6061,6180067000], + [6063,175272000], + [6065,24146447000], + [6067,15599967000], + [6069,352941000], + [6071,21717402000], + [6073,38710620000], + [6075,12399960000], + [6077,7109680000], + [6079,3548407000], + [6081,10198837000], + [6083,4983368000], + [6085,26491464000], + [6087,3725362000], + [6089,2526411000], + [6091,null], + [6093,403309000], + [6095,4827955000], + [6097,6427191000], + [6099,5661922000], + [6101,1065391000], + [6103,735399000], + [6105,69188000], + [6107,3900853000], + [6109,582426000], + [6111,11083611000], + [6113,1765735000], + [6115,423597000], + [8001,4848908000], + [8003,262997000], + [8005,9931962000], + [8007,142696000], + [8009,32910000], + [8011,16419000], + [8013,4039254000], + [8014,1139808000], + [8015,252573000], + [8017,12958000], + [8019,73119000], + [8021,33081000], + [8023,5702000], + [8025,15707000], + [8027,58746000], + [8029,312871000], + [8031,6835351000], + [8033,15039000], + [8035,3765450000], + [8037,928788000], + [8039,80718000], + [8041,7950151000], + [8043,352422000], + [8045,1184677000], + [8047,3225000], + [8049,193138000], + [8051,211576000], + [8053,7808000], + [8055,55321000], + [8057,19370000], + [8059,7282158000], + [8061,8036000], + [8063,84356000], + [8065,51369000], + [8067,790433000], + [8069,3922871000], + [8071,164359000], + [8073,134696000], + [8075,281292000], + [8077,2389507000], + [8079,6008000], + [8081,213043000], + [8083,301379000], + [8085,610875000], + [8087,232820000], + [8089,171450000], + [8091,26977000], + [8093,55409000], + [8095,45616000], + [8097,399540000], + [8099,146970000], + [8101,1864599000], + [8103,54732000], + [8105,110165000], + [8107,421473000], + [8109,20857000], + [8111,6624000], + [8113,97815000], + [8115,33331000], + [8117,641013000], + [8119,169017000], + [8121,23053000], + [8123,2246115000], + [8125,106085000], + [9001,15702222000], + [9003,13820736000], + [9005,2458157000], + [9007,2129195000], + [9009,11785336000], + [9011,3882978000], + [9013,1206302000], + [9015,1180554000], + [10001,2589237000], + [10003,8633413000], + [10005,2979433000], + [11001,3843716000], + [12001,3152244000], + [12003,180555000], + [12005,2471968000], + [12007,215629000], + [12009,6593988000], + [12011,30886257000], + [12013,64750000], + [12015,1898114000], + [12017,1405565000], + [12019,2005718000], + [12021,5186468000], + [12023,862158000], + [12027,280786000], + [12029,49120000], + [12031,13316700000], + [12033,4055667000], + [12035,684121000], + [12037,92324000], + [12039,440290000], + [12041,52477000], + [12043,13064000], + [12045,76286000], + [12047,103218000], + [12049,400142000], + [12051,345685000], + [12053,1654088000], + [12055,1089559000], + [12057,19110290000], + [12059,73133000], + [12061,1851697000], + [12063,541943000], + [12065,88713000], + [12067,66528000], + [12069,3441893000], + [12071,9193114000], + [12073,3533827000], + [12075,346356000], + [12077,24403000], + [12079,124831000], + [12081,3874822000], + [12083,4218810000], + [12085,2470433000], + [12086,34530470000], + [12087,1387603000], + [12089,630924000], + [12091,3031043000], + [12093,430587000], + [12095,19195634000], + [12097,2868737000], + [12099,19321650000], + [12101,4746208000], + [12103,14826852000], + [12105,6420144000], + [12107,671648000], + [12109,2039710000], + [12111,3697675000], + [12113,1107974000], + [12115,5599478000], + [12117,6872148000], + [12119,672106000], + [12121,353760000], + [12123,207073000], + [12125,42047000], + [12127,6099931000], + [12129,167697000], + [12131,705008000], + [12133,177286000], + [13001,179447000], + [13003,35656000], + [13005,68612000], + [13007,5320000], + [13009,524150000], + [13011,233863000], + [13013,660898000], + [13015,1177422000], + [13017,224967000], + [13019,129158000], + [13021,2536200000], + [13023,76320000], + [13025,62404000], + [13027,88152000], + [13029,224984000], + [13031,733425000], + [13033,177473000], + [13035,295450000], + [13037,19557000], + [13039,648346000], + [13043,114511000], + [13045,1252468000], + [13047,795089000], + [13049,68423000], + [13051,4004232000], + [13053,12987000], + [13055,147194000], + [13057,2114906000], + [13059,1669122000], + [13061,11021000], + [13063,3207049000], + [13065,39791000], + [13067,10480711000], + [13069,458699000], + [13071,432377000], + [13073,1406298000], + [13075,118054000], + [13077,1290974000], + [13079,18191000], + [13081,326453000], + [13083,189274000], + [13085,466567000], + [13087,395435000], + [13089,7973387000], + [13091,167117000], + [13093,151362000], + [13095,1543650000], + [13097,2055804000], + [13099,75758000], + [13101,null], + [13103,322581000], + [13105,136950000], + [13107,184041000], + [13109,153912000], + [13111,293099000], + [13113,1390039000], + [13115,1039780000], + [13117,1960919000], + [13119,315062000], + [13121,13239670000], + [13123,370523000], + [13125,4815000], + [13127,1351775000], + [13129,659417000], + [13131,168147000], + [13133,137147000], + [13135,13857021000], + [13137,492128000], + [13139,2220699000], + [13141,21008000], + [13143,313130000], + [13145,66126000], + [13147,170726000], + [13149,24751000], + [13151,1907354000], + [13153,1524261000], + [13155,27252000], + [13157,559370000], + [13159,33351000], + [13161,204381000], + [13163,129391000], + [13165,53910000], + [13167,25209000], + [13169,70608000], + [13171,113965000], + [13173,null], + [13175,613069000], + [13177,123990000], + [13179,539287000], + [13181,39568000], + [13183,17394000], + [13185,1804839000], + [13187,206576000], + [13189,350350000], + [13191,113983000], + [13193,47915000], + [13195,119211000], + [13197,71742000], + [13199,100756000], + [13201,53450000], + [13205,150978000], + [13207,114402000], + [13209,24737000], + [13211,276447000], + [13213,218860000], + [13215,2889210000], + [13217,679365000], + [13219,326375000], + [13221,69636000], + [13223,973010000], + [13225,317396000], + [13227,320506000], + [13229,99714000], + [13231,33873000], + [13233,314659000], + [13235,84491000], + [13237,204112000], + [13239,2769000], + [13241,234433000], + [13243,44341000], + [13245,2505076000], + [13247,1450095000], + [13249,18573000], + [13251,93578000], + [13253,76470000], + [13255,661569000], + [13257,274713000], + [13259,23878000], + [13261,326121000], + [13263,4663000], + [13265,1710000], + [13267,102403000], + [13269,46384000], + [13271,77349000], + [13273,68284000], + [13275,627509000], + [13277,721588000], + [13279,386338000], + [13281,102261000], + [13283,30428000], + [13285,798823000], + [13287,64546000], + [13289,30340000], + [13291,246740000], + [13293,208661000], + [13295,344223000], + [13297,797195000], + [13299,621068000], + [13301,23192000], + [13303,213695000], + [13305,310344000], + [13307,4748000], + [13309,18141000], + [13311,280664000], + [13313,1440223000], + [13315,27365000], + [13317,73407000], + [13319,24250000], + [13321,132224000], + [15001,2566012000], + [15003,11518349000], + [15005,0], + [15007,1052671000], + [15009,2474819000], + [16001,5855102000], + [16003,19965000], + [16005,1099246000], + [16007,58739000], + [16009,93862000], + [16011,339940000], + [16013,356031000], + [16015,18745000], + [16017,485307000], + [16019,1871454000], + [16021,86256000], + [16023,18069000], + [16025,null], + [16027,2176039000], + [16029,68364000], + [16031,318904000], + [16033,null], + [16035,69845000], + [16037,35092000], + [16039,241226000], + [16041,113519000], + [16043,68167000], + [16045,113895000], + [16047,88226000], + [16049,97645000], + [16051,92388000], + [16053,300421000], + [16055,2175172000], + [16057,361668000], + [16059,122983000], + [16061,29657000], + [16063,16924000], + [16065,407686000], + [16067,162891000], + [16069,702969000], + [16071,24106000], + [16073,50935000], + [16075,145621000], + [16077,50445000], + [16079,623117000], + [16081,84074000], + [16083,1259106000], + [16085,135620000], + [16087,76253000], + [17001,928289000], + [17003,22853000], + [17005,104527000], + [17007,454857000], + [17009,30018000], + [17011,331951000], + [17013,22307000], + [17015,88717000], + [17017,115401000], + [17019,2347059000], + [17021,369948000], + [17023,109618000], + [17025,114775000], + [17027,383207000], + [17029,635068000], + [17031,60585557000], + [17033,164186000], + [17035,22877000], + [17037,1090171000], + [17039,188199000], + [17041,218438000], + [17043,18043391000], + [17045,197055000], + [17047,40643000], + [17049,857847000], + [17051,227314000], + [17053,112302000], + [17055,362193000], + [17057,288858000], + [17059,21882000], + [17061,95884000], + [17063,522618000], + [17065,41922000], + [17067,106493000], + [17069,14363000], + [17071,26145000], + [17073,477578000], + [17075,265444000], + [17077,684089000], + [17079,82642000], + [17081,567630000], + [17083,250326000], + [17085,310735000], + [17087,65543000], + [17089,5688267000], + [17091,1258509000], + [17093,1064021000], + [17095,681371000], + [17097,20336251000], + [17099,1739926000], + [17101,81715000], + [17103,366468000], + [17105,396450000], + [17107,275457000], + [17109,338109000], + [17111,3578581000], + [17113,2231369000], + [17115,1450614000], + [17117,326048000], + [17119,3104222000], + [17121,345728000], + [17123,78465000], + [17125,98760000], + [17127,75936000], + [17129,68939000], + [17131,85284000], + [17133,405724000], + [17135,401515000], + [17137,403082000], + [17139,118718000], + [17141,454312000], + [17143,2425913000], + [17145,168280000], + [17147,118815000], + [17149,136472000], + [17151,9223000], + [17153,31840000], + [17155,21663000], + [17157,332305000], + [17159,161489000], + [17161,1711386000], + [17163,3087185000], + [17165,271186000], + [17167,2862623000], + [17169,53090000], + [17171,34894000], + [17173,140900000], + [17175,57253000], + [17177,480551000], + [17179,1758134000], + [17181,145142000], + [17183,757887000], + [17185,109214000], + [17187,133722000], + [17189,197317000], + [17191,146263000], + [17193,123142000], + [17195,570627000], + [17197,6841452000], + [17199,987511000], + [17201,3851993000], + [17203,278287000], + [18001,369895000], + [18003,4774175000], + [18005,1075239000], + [18007,50891000], + [18009,97872000], + [18011,484483000], + [18013,61518000], + [18015,102111000], + [18017,340870000], + [18019,1729530000], + [18021,312395000], + [18023,223595000], + [18025,40720000], + [18027,381537000], + [18029,509651000], + [18031,315023000], + [18033,408899000], + [18035,1516815000], + [18037,763441000], + [18039,2416879000], + [18041,208881000], + [18043,787397000], + [18045,142465000], + [18047,171270000], + [18049,200781000], + [18051,442605000], + [18053,765826000], + [18055,226084000], + [18057,3295421000], + [18059,568518000], + [18061,400931000], + [18063,2088672000], + [18065,455036000], + [18067,1194698000], + [18069,328017000], + [18071,529531000], + [18073,405489000], + [18075,139539000], + [18077,382708000], + [18079,223798000], + [18081,2072896000], + [18083,471778000], + [18085,794883000], + [18087,276916000], + [18089,7102425000], + [18091,1363592000], + [18093,481647000], + [18095,1234877000], + [18097,12951290000], + [18099,550984000], + [18101,81212000], + [18103,235379000], + [18105,1530793000], + [18107,429214000], + [18109,586949000], + [18111,96674000], + [18113,357295000], + [18115,23731000], + [18117,153183000], + [18119,106333000], + [18121,84463000], + [18123,153361000], + [18125,55934000], + [18127,1956275000], + [18129,268383000], + [18131,112778000], + [18133,310811000], + [18135,273327000], + [18137,255352000], + [18139,113360000], + [18141,3683417000], + [18143,241227000], + [18145,487648000], + [18147,166048000], + [18149,156674000], + [18151,575134000], + [18153,146923000], + [18155,19919000], + [18157,2079578000], + [18159,136038000], + [18161,31015000], + [18163,3025844000], + [18165,184550000], + [18167,1668183000], + [18169,325620000], + [18171,24040000], + [18173,331226000], + [18175,190711000], + [18177,1004328000], + [18179,221300000], + [18181,283389000], + [18183,343476000], + [19001,49644000], + [19003,32586000], + [19005,128662000], + [19007,133534000], + [19009,37302000], + [19011,176434000], + [19013,1929430000], + [19015,210610000], + [19017,268428000], + [19019,214820000], + [19021,260846000], + [19023,79082000], + [19025,103509000], + [19027,298050000], + [19029,178171000], + [19031,131334000], + [19033,887071000], + [19035,139445000], + [19037,103931000], + [19039,95388000], + [19041,298664000], + [19043,163572000], + [19045,635654000], + [19047,162386000], + [19049,905710000], + [19051,71612000], + [19053,39590000], + [19055,171404000], + [19057,616900000], + [19059,255190000], + [19061,1433461000], + [19063,92665000], + [19065,157244000], + [19067,149138000], + [19069,65933000], + [19071,102932000], + [19073,87923000], + [19075,109363000], + [19077,91301000], + [19079,149277000], + [19081,119314000], + [19083,161778000], + [19085,100916000], + [19087,214737000], + [19089,83186000], + [19091,82011000], + [19093,61131000], + [19095,213413000], + [19097,209951000], + [19099,273960000], + [19101,333485000], + [19103,1653057000], + [19105,257667000], + [19107,66877000], + [19109,195827000], + [19111,420758000], + [19113,3592845000], + [19115,56465000], + [19117,84344000], + [19119,91091000], + [19121,80594000], + [19123,242911000], + [19125,333092000], + [19127,407694000], + [19129,78569000], + [19131,93053000], + [19133,99152000], + [19135,62488000], + [19137,88288000], + [19139,448581000], + [19141,169740000], + [19143,40538000], + [19145,163001000], + [19147,65829000], + [19149,299650000], + [19151,79888000], + [19153,6714418000], + [19155,1503395000], + [19157,241342000], + [19159,63578000], + [19161,92468000], + [19163,2852978000], + [19165,135125000], + [19167,394422000], + [19169,968345000], + [19171,112481000], + [19173,25098000], + [19175,153754000], + [19177,36920000], + [19179,500711000], + [19181,328428000], + [19183,195045000], + [19185,49159000], + [19187,577547000], + [19189,114958000], + [19191,289636000], + [19193,1511955000], + [19195,28655000], + [19197,100154000], + [20001,121694000], + [20003,87242000], + [20005,130130000], + [20007,70317000], + [20009,339355000], + [20011,120585000], + [20013,67859000], + [20015,567483000], + [20017,10868000], + [20019,15764000], + [20021,121743000], + [20023,12191000], + [20025,9889000], + [20027,76023000], + [20029,109669000], + [20031,102988000], + [20033,10297000], + [20035,317199000], + [20037,395361000], + [20039,17169000], + [20041,191407000], + [20043,25238000], + [20045,1202225000], + [20047,12379000], + [20049,7998000], + [20051,497467000], + [20053,31852000], + [20055,504229000], + [20057,395737000], + [20059,234280000], + [20061,295149000], + [20063,17068000], + [20065,30166000], + [20067,66963000], + [20069,34787000], + [20071,9621000], + [20073,53316000], + [20075,25434000], + [20077,50209000], + [20079,274715000], + [20081,13723000], + [20083,5906000], + [20085,91112000], + [20087,71260000], + [20089,14347000], + [20091,9255321000], + [20093,7593000], + [20095,43185000], + [20097,14583000], + [20099,204285000], + [20101,13628000], + [20103,492953000], + [20105,11148000], + [20107,47786000], + [20109,78581000], + [20111,470739000], + [20113,382204000], + [20115,69995000], + [20117,185982000], + [20119,20284000], + [20121,251725000], + [20123,98777000], + [20125,364610000], + [20127,44988000], + [20129,28557000], + [20131,106838000], + [20133,199840000], + [20135,16086000], + [20137,36977000], + [20139,70601000], + [20141,38522000], + [20143,19295000], + [20145,48480000], + [20147,46642000], + [20149,283927000], + [20151,170163000], + [20153,16263000], + [20155,828616000], + [20157,43742000], + [20159,46889000], + [20161,728603000], + [20163,56427000], + [20165,30704000], + [20167,67979000], + [20169,1064587000], + [20171,46785000], + [20173,6574213000], + [20175,314598000], + [20177,2310142000], + [20179,18361000], + [20181,110618000], + [20183,23598000], + [20185,15895000], + [20187,16449000], + [20189,40304000], + [20191,131407000], + [20193,159367000], + [20195,40422000], + [20197,26718000], + [20199,6284000], + [20201,34776000], + [20203,18489000], + [20205,54160000], + [20207,17184000], + [20209,1710043000], + [21001,137063000], + [21003,112099000], + [21005,170715000], + [21007,52778000], + [21009,552941000], + [21011,51512000], + [21013,374889000], + [21015,2439188000], + [21017,175304000], + [21019,934561000], + [21021,430021000], + [21023,25883000], + [21025,103735000], + [21027,113835000], + [21029,500549000], + [21031,57992000], + [21033,151840000], + [21035,454838000], + [21037,970778000], + [21039,23792000], + [21041,182693000], + [21043,268548000], + [21045,71832000], + [21047,936093000], + [21049,461765000], + [21051,138743000], + [21053,55307000], + [21055,53418000], + [21057,44182000], + [21059,1282912000], + [21061,32536000], + [21063,12169000], + [21065,84217000], + [21067,4778490000], + [21069,128537000], + [21071,403311000], + [21073,622089000], + [21075,52203000], + [21077,37304000], + [21079,39605000], + [21081,285154000], + [21083,342536000], + [21085,234914000], + [21087,64411000], + [21089,355697000], + [21091,28055000], + [21093,1449522000], + [21095,211085000], + [21097,147036000], + [21099,92791000], + [21101,662033000], + [21103,153316000], + [21105,65403000], + [21107,560520000], + [21109,45224000], + [21111,10002441000], + [21113,731697000], + [21115,350076000], + [21117,1261984000], + [21119,47551000], + [21121,318643000], + [21123,49171000], + [21125,914739000], + [21127,123575000], + [21129,58622000], + [21131,59363000], + [21133,123973000], + [21135,56840000], + [21137,127171000], + [21139,29706000], + [21141,230608000], + [21143,60988000], + [21145,1570758000], + [21147,82470000], + [21149,48015000], + [21151,975986000], + [21153,52924000], + [21155,136155000], + [21157,345665000], + [21159,108045000], + [21161,357976000], + [21163,170689000], + [21165,24246000], + [21167,157041000], + [21169,58045000], + [21171,99988000], + [21173,355788000], + [21175,88058000], + [21177,265567000], + [21179,422267000], + [21181,27370000], + [21183,142528000], + [21185,374793000], + [21187,43191000], + [21189,16715000], + [21191,47235000], + [21193,463063000], + [21195,894872000], + [21197,94985000], + [21199,884391000], + [21201,1617000], + [21203,71642000], + [21205,272076000], + [21207,180335000], + [21209,528609000], + [21211,498709000], + [21213,415161000], + [21215,68129000], + [21217,371903000], + [21219,58574000], + [21221,70866000], + [21223,31956000], + [21225,144171000], + [21227,1691205000], + [21229,63268000], + [21231,152513000], + [21233,67451000], + [21235,373329000], + [21237,45265000], + [21239,225208000], + [22001,525956000], + [22003,142901000], + [22005,1317978000], + [22007,100015000], + [22009,310858000], + [22011,317434000], + [22013,58735000], + [22015,1741931000], + [22017,3706835000], + [22019,2775998000], + [22021,112858000], + [22023,36818000], + [22025,52651000], + [22027,74200000], + [22029,194919000], + [22031,184484000], + [22033,7043044000], + [22035,34009000], + [22037,72831000], + [22039,228598000], + [22041,215511000], + [22043,74699000], + [22045,910199000], + [22047,274399000], + [22049,114478000], + [22051,8106201000], + [22053,338794000], + [22055,3814288000], + [22057,917511000], + [22059,116442000], + [22061,527771000], + [22063,923742000], + [22065,142503000], + [22067,241374000], + [22069,413982000], + [22071,2718026000], + [22073,2221645000], + [22075,113637000], + [22077,216342000], + [22079,1910244000], + [22081,36722000], + [22083,228448000], + [22085,172740000], + [22087,291779000], + [22089,389164000], + [22091,35533000], + [22093,162938000], + [22095,454761000], + [22097,970661000], + [22099,407646000], + [22101,508177000], + [22103,3481120000], + [22105,1742378000], + [22107,31767000], + [22109,1915438000], + [22111,148072000], + [22113,518285000], + [22115,315686000], + [22117,326287000], + [22119,484791000], + [22121,319730000], + [22123,67722000], + [22125,65994000], + [22127,122523000], + [23001,1704277000], + [23003,1105943000], + [23005,5277196000], + [23007,381289000], + [23009,819990000], + [23011,2382310000], + [23013,640156000], + [23015,433225000], + [23017,489480000], + [23019,2983923000], + [23021,196521000], + [23023,415540000], + [23025,577288000], + [23027,340345000], + [23029,405170000], + [23031,2291378000], + [24001,865196000], + [24003,9464955000], + [24005,12074866000], + [24009,730625000], + [24011,406934000], + [24013,2141774000], + [24015,1099661000], + [24017,2369800000], + [24019,318559000], + [24021,3066281000], + [24023,431388000], + [24025,3380253000], + [24027,4554990000], + [24029,197080000], + [24031,13255784000], + [24033,9209683000], + [24035,618290000], + [24037,1193036000], + [24039,105159000], + [24041,711868000], + [24043,2463271000], + [24045,1780832000], + [24047,875104000], + [24510,4348797000], + [25001,3973206000], + [25003,1901784000], + [25005,8647669000], + [25007,348999000], + [25009,9822136000], + [25011,691013000], + [25013,5668671000], + [25015,1546067000], + [25017,19661130000], + [25019,342825000], + [25021,11241440000], + [25023,6615087000], + [25025,7565785000], + [25027,10057154000], + [26001,55317000], + [26003,54386000], + [26005,881344000], + [26007,416778000], + [26009,156734000], + [26011,118751000], + [26013,67726000], + [26015,276150000], + [26017,1301043000], + [26019,131310000], + [26021,1622828000], + [26023,396895000], + [26025,1571317000], + [26027,183403000], + [26029,221210000], + [26031,316945000], + [26033,369455000], + [26035,246126000], + [26037,631864000], + [26039,216830000], + [26041,459804000], + [26043,417302000], + [26045,1326967000], + [26047,580619000], + [26049,4836688000], + [26051,140155000], + [26053,137990000], + [26055,1570064000], + [26057,316388000], + [26059,323333000], + [26061,335452000], + [26063,323115000], + [26065,3156158000], + [26067,446654000], + [26069,270567000], + [26071,101386000], + [26073,705401000], + [26075,1690871000], + [26077,2808829000], + [26079,144117000], + [26081,8058005000], + [26083,3262000], + [26085,53307000], + [26087,799900000], + [26089,128208000], + [26091,944698000], + [26093,2059768000], + [26095,74036000], + [26097,155835000], + [26099,10007613000], + [26101,225381000], + [26103,729823000], + [26105,330426000], + [26107,474988000], + [26109,166886000], + [26111,869266000], + [26113,91893000], + [26115,1465317000], + [26117,563109000], + [26119,70129000], + [26121,1656745000], + [26123,355262000], + [26125,18183680000], + [26127,171532000], + [26129,364748000], + [26131,60901000], + [26133,151621000], + [26135,57124000], + [26137,499775000], + [26139,2367832000], + [26141,101360000], + [26143,338403000], + [26145,2534269000], + [26147,1601609000], + [26149,559870000], + [26151,300913000], + [26153,110816000], + [26155,614745000], + [26157,432316000], + [26159,556714000], + [26161,3681086000], + [26163,17275751000], + [26165,525400000], + [27001,147509000], + [27003,3738881000], + [27005,373467000], + [27007,627360000], + [27009,495214000], + [27011,32850000], + [27013,1211463000], + [27015,301204000], + [27017,357385000], + [27019,807141000], + [27021,276752000], + [27023,168339000], + [27025,428633000], + [27027,630252000], + [27029,42917000], + [27031,61860000], + [27033,90280000], + [27035,1141915000], + [27037,5163980000], + [27039,91773000], + [27041,625509000], + [27043,116717000], + [27045,176767000], + [27047,492110000], + [27049,595766000], + [27051,56392000], + [27053,22278830000], + [27055,152459000], + [27057,200851000], + [27059,405211000], + [27061,521587000], + [27063,80280000], + [27065,150453000], + [27067,597567000], + [27069,41288000], + [27071,164966000], + [27073,61599000], + [27075,119763000], + [27077,39851000], + [27079,206212000], + [27081,53106000], + [27083,378877000], + [27085,477130000], + [27087,20236000], + [27089,118568000], + [27091,268228000], + [27093,174062000], + [27095,251779000], + [27097,361223000], + [27099,347668000], + [27101,46600000], + [27103,164856000], + [27105,303588000], + [27107,52466000], + [27109,2182050000], + [27111,704539000], + [27113,209522000], + [27115,243454000], + [27117,110916000], + [27119,297780000], + [27121,103471000], + [27123,6156546000], + [27125,41090000], + [27127,156822000], + [27129,116957000], + [27131,599153000], + [27133,109119000], + [27135,179942000], + [27137,2760528000], + [27139,1169699000], + [27141,844316000], + [27143,75457000], + [27145,2423575000], + [27147,543894000], + [27149,170056000], + [27151,80615000], + [27153,160034000], + [27155,45484000], + [27157,210766000], + [27159,177697000], + [27161,163649000], + [27163,2690704000], + [27165,70359000], + [27167,56267000], + [27169,666138000], + [27171,1458815000], + [27173,112949000], + [28001,427733000], + [28003,527641000], + [28005,36342000], + [28007,171350000], + [28009,25101000], + [28011,303409000], + [28013,94108000], + [28015,24204000], + [28017,128019000], + [28019,30814000], + [28021,39271000], + [28023,58099000], + [28025,126026000], + [28027,260323000], + [28029,143069000], + [28031,171612000], + [28033,2069453000], + [28035,2121634000], + [28037,20884000], + [28039,231543000], + [28041,39126000], + [28043,377005000], + [28045,383192000], + [28047,2903219000], + [28049,2992625000], + [28051,114372000], + [28053,81350000], + [28055,0], + [28057,135017000], + [28059,1305043000], + [28061,68927000], + [28063,18620000], + [28065,57305000], + [28067,816399000], + [28069,46672000], + [28071,507113000], + [28073,991801000], + [28075,1320584000], + [28077,46762000], + [28079,180447000], + [28081,1439479000], + [28083,438713000], + [28085,501974000], + [28087,809310000], + [28089,1268437000], + [28091,259002000], + [28093,166379000], + [28095,281974000], + [28097,136579000], + [28099,255834000], + [28101,146663000], + [28103,82888000], + [28105,387892000], + [28107,384416000], + [28109,615612000], + [28111,60391000], + [28113,544686000], + [28115,203614000], + [28117,162043000], + [28119,24719000], + [28121,2226182000], + [28123,235128000], + [28125,30978000], + [28127,212575000], + [28129,51097000], + [28131,190727000], + [28133,211330000], + [28135,56799000], + [28137,237674000], + [28139,130910000], + [28141,112571000], + [28143,130682000], + [28145,267289000], + [28147,124687000], + [28149,606527000], + [28151,577738000], + [28153,178937000], + [28155,69649000], + [28157,59831000], + [28159,183152000], + [28161,59650000], + [28163,230475000], + [29001,310089000], + [29003,79988000], + [29005,86619000], + [29007,247806000], + [29009,413782000], + [29011,135142000], + [29013,135422000], + [29015,174325000], + [29017,59556000], + [29019,3012263000], + [29021,1438683000], + [29023,634785000], + [29025,34109000], + [29027,331093000], + [29029,677919000], + [29031,1353015000], + [29033,60608000], + [29035,27709000], + [29037,898675000], + [29039,119883000], + [29041,51816000], + [29043,716787000], + [29045,88695000], + [29047,3366942000], + [29049,147247000], + [29051,1203694000], + [29053,225574000], + [29055,174262000], + [29057,46902000], + [29059,144726000], + [29061,45292000], + [29063,128002000], + [29065,124535000], + [29067,93694000], + [29069,371322000], + [29071,1326744000], + [29073,146014000], + [29075,59228000], + [29077,4710360000], + [29079,88259000], + [29081,143542000], + [29083,284256000], + [29085,49990000], + [29087,35782000], + [29089,88059000], + [29091,545843000], + [29093,65805000], + [29095,8460776000], + [29097,1967427000], + [29099,1709786000], + [29101,412938000], + [29103,27773000], + [29105,469720000], + [29107,301376000], + [29109,419502000], + [29111,59309000], + [29113,433169000], + [29115,117732000], + [29117,234535000], + [29119,223284000], + [29121,156455000], + [29123,106559000], + [29125,46261000], + [29127,422995000], + [29129,20164000], + [29131,451776000], + [29133,161504000], + [29135,159656000], + [29137,47986000], + [29139,81503000], + [29141,191467000], + [29143,509771000], + [29145,605682000], + [29147,206771000], + [29149,90916000], + [29151,132832000], + [29153,45982000], + [29155,209476000], + [29157,263521000], + [29159,547263000], + [29161,632535000], + [29163,161331000], + [29165,1737430000], + [29167,275957000], + [29169,376475000], + [29171,38629000], + [29173,60215000], + [29175,293462000], + [29177,141668000], + [29179,28708000], + [29181,92395000], + [29183,4408513000], + [29185,64746000], + [29186,148176000], + [29187,685764000], + [29189,17237496000], + [29195,230299000], + [29197,32109000], + [29199,39408000], + [29201,358429000], + [29203,26168000], + [29205,49094000], + [29207,436085000], + [29209,222907000], + [29211,45021000], + [29213,833027000], + [29215,167843000], + [29217,200581000], + [29219,317983000], + [29221,124339000], + [29223,65784000], + [29225,294218000], + [29227,13164000], + [29229,237875000], + [29510,2496672000], + [30001,122910000], + [30003,87369000], + [30005,44240000], + [30007,59235000], + [30009,60650000], + [30011,11929000], + [30013,1302292000], + [30015,44696000], + [30017,199923000], + [30019,26586000], + [30021,118284000], + [30023,71477000], + [30025,26323000], + [30027,135416000], + [30029,1581348000], + [30031,1791758000], + [30033,10240000], + [30035,106256000], + [30037,null], + [30039,23787000], + [30041,231140000], + [30043,39880000], + [30045,5468000], + [30047,276964000], + [30049,972926000], + [30051,15603000], + [30053,170563000], + [30055,18033000], + [30057,48923000], + [30059,16374000], + [30061,46129000], + [30063,2179398000], + [30065,33610000], + [30067,208923000], + [30069,null], + [30071,34033000], + [30073,64672000], + [30075,13808000], + [30077,35007000], + [30079,7425000], + [30081,344777000], + [30083,128640000], + [30085,99861000], + [30087,53358000], + [30089,82124000], + [30091,31524000], + [30093,504698000], + [30095,103225000], + [30097,42651000], + [30099,43930000], + [30101,54824000], + [30103,null], + [30105,81315000], + [30107,18254000], + [30109,4305000], + [30111,2840723000], + [31001,360802000], + [31003,57007000], + [31005,937000], + [31007,0], + [31009,null], + [31011,81645000], + [31013,82175000], + [31015,13217000], + [31017,48132000], + [31019,739878000], + [31021,40579000], + [31023,72333000], + [31025,183630000], + [31027,121798000], + [31029,60445000], + [31031,78284000], + [31033,null], + [31035,60659000], + [31037,107576000], + [31039,174641000], + [31041,118022000], + [31043,170315000], + [31045,164591000], + [31047,345341000], + [31049,102008000], + [31051,37054000], + [31053,665022000], + [31055,8109038000], + [31057,14035000], + [31059,39676000], + [31061,17262000], + [31063,14785000], + [31065,50222000], + [31067,238113000], + [31069,12385000], + [31071,27142000], + [31073,2343000], + [31075,null], + [31077,25361000], + [31079,1087733000], + [31081,101126000], + [31083,25999000], + [31085,null], + [31087,null], + [31089,143200000], + [31091,null], + [31093,48446000], + [31095,124811000], + [31097,34432000], + [31099,29729000], + [31101,203776000], + [31103,null], + [31105,49041000], + [31107,82386000], + [31109,3662691000], + [31111,634917000], + [31113,null], + [31115,null], + [31117,null], + [31119,649732000], + [31121,45568000], + [31123,46228000], + [31125,22402000], + [31127,59321000], + [31129,53345000], + [31131,146815000], + [31133,14362000], + [31135,44652000], + [31137,94533000], + [31139,41414000], + [31141,494298000], + [31143,35465000], + [31145,175905000], + [31147,70387000], + [31149,null], + [31151,102412000], + [31153,2285801000], + [31155,148986000], + [31157,519759000], + [31159,109761000], + [31161,50250000], + [31163,35456000], + [31165,null], + [31167,33003000], + [31169,54943000], + [31171,null], + [31173,54072000], + [31175,66843000], + [31177,642646000], + [31179,79455000], + [31181,23738000], + [31183,null], + [31185,241319000], + [32001,265255000], + [32003,26676633000], + [32005,670386000], + [32007,791435000], + [32009,null], + [32011,16289000], + [32013,333593000], + [32015,54981000], + [32017,31053000], + [32019,371385000], + [32021,null], + [32023,396798000], + [32027,43044000], + [32029,6765000], + [32031,6667427000], + [32033,88805000], + [32510,991506000], + [33001,1348651000], + [33003,889015000], + [33005,1649001000], + [33007,602906000], + [33009,1961272000], + [33011,7647259000], + [33013,2605617000], + [33015,6414862000], + [33017,1672899000], + [33019,562392000], + [34001,4429395000], + [34003,16474977000], + [34005,7005059000], + [34007,5859348000], + [34009,1584880000], + [34011,1952706000], + [34013,7750635000], + [34015,4352549000], + [34017,6099871000], + [34019,2186600000], + [34021,5089133000], + [34023,11131032000], + [34025,11225081000], + [34027,8756311000], + [34029,7307436000], + [34031,6598022000], + [34033,669436000], + [34035,5755996000], + [34037,1722382000], + [34039,7312120000], + [34041,1550611000], + [35001,9396128000], + [35003,7206000], + [35005,836078000], + [35006,217448000], + [35007,158777000], + [35009,591302000], + [35011,12426000], + [35013,1925550000], + [35015,562792000], + [35017,261444000], + [35019,109941000], + [35021,1270000], + [35023,113382000], + [35025,765930000], + [35027,245639000], + [35028,97901000], + [35029,236777000], + [35031,926423000], + [35033,14120000], + [35035,527819000], + [35037,143904000], + [35039,313533000], + [35041,166682000], + [35043,1117438000], + [35045,1742017000], + [35047,277210000], + [35049,2426284000], + [35051,82782000], + [35053,126228000], + [35055,309212000], + [35057,157502000], + [35059,27509000], + [35061,571343000], + [36001,5404372000], + [36003,276686000], + [36005,5539827000], + [36007,2573019000], + [36009,1008952000], + [36011,884034000], + [36013,1364052000], + [36015,1207246000], + [36017,518164000], + [36019,1195037000], + [36021,638351000], + [36023,523122000], + [36025,389577000], + [36027,3599202000], + [36029,11217146000], + [36031,429194000], + [36033,476393000], + [36035,577056000], + [36037,705717000], + [36039,622994000], + [36041,31894000], + [36043,503108000], + [36045,1867704000], + [36047,15431858000], + [36049,175759000], + [36051,586479000], + [36053,665908000], + [36055,8496065000], + [36057,621786000], + [36059,24312618000], + [36061,38797518000], + [36063,2075125000], + [36065,2751013000], + [36067,6363051000], + [36069,1894245000], + [36071,5729216000], + [36073,262619000], + [36075,994135000], + [36077,932374000], + [36079,922315000], + [36081,14587146000], + [36083,1384387000], + [36085,3850133000], + [36087,3866839000], + [36089,1238804000], + [36091,4506435000], + [36093,1664349000], + [36095,268923000], + [36097,179850000], + [36099,426239000], + [36101,1076914000], + [36103,23319943000], + [36105,815240000], + [36107,302210000], + [36109,1018298000], + [36111,2241099000], + [36113,1382215000], + [36115,485551000], + [36117,816657000], + [36119,14205055000], + [36121,337990000], + [36123,178857000], + [37001,1968813000], + [37003,216769000], + [37005,73665000], + [37007,180010000], + [37009,292410000], + [37011,197646000], + [37013,573361000], + [37015,93015000], + [37017,196691000], + [37019,1004231000], + [37021,3597871000], + [37023,661178000], + [37025,2807782000], + [37027,648606000], + [37029,26999000], + [37031,979612000], + [37033,52986000], + [37035,2683077000], + [37037,559438000], + [37039,404019000], + [37041,136106000], + [37043,133702000], + [37045,928777000], + [37047,527600000], + [37049,1111719000], + [37051,3897360000], + [37053,263948000], + [37055,869102000], + [37057,1264173000], + [37059,407832000], + [37061,412609000], + [37063,3135341000], + [37065,324723000], + [37067,5202887000], + [37069,371837000], + [37071,2245345000], + [37073,33978000], + [37075,46180000], + [37077,323857000], + [37079,97812000], + [37081,7252646000], + [37083,610319000], + [37085,872002000], + [37087,821787000], + [37089,1479207000], + [37091,252048000], + [37093,121696000], + [37095,26685000], + [37097,2288865000], + [37099,433723000], + [37101,1971715000], + [37103,31806000], + [37105,764540000], + [37107,842826000], + [37109,713799000], + [37111,482389000], + [37113,476264000], + [37115,76045000], + [37117,227775000], + [37119,14114263000], + [37121,171884000], + [37123,210239000], + [37125,1001063000], + [37127,1271214000], + [37129,3825475000], + [37131,101990000], + [37133,1913882000], + [37135,1195285000], + [37137,68916000], + [37139,694308000], + [37141,331801000], + [37143,69022000], + [37145,384238000], + [37147,2176014000], + [37149,110320000], + [37151,1156737000], + [37153,424114000], + [37155,1337907000], + [37157,839555000], + [37159,1163827000], + [37161,640132000], + [37163,575816000], + [37165,361658000], + [37167,609966000], + [37169,226515000], + [37171,1054073000], + [37173,112322000], + [37175,266182000], + [37177,30744000], + [37179,1699810000], + [37181,582116000], + [37183,12598141000], + [37185,62865000], + [37187,107746000], + [37189,795216000], + [37191,1388030000], + [37193,759255000], + [37195,1058605000], + [37197,238645000], + [37199,149078000], + [38001,30739000], + [38003,147846000], + [38005,20136000], + [38007,1185000], + [38009,56982000], + [38011,63487000], + [38013,17871000], + [38015,1401007000], + [38017,2885559000], + [38019,83207000], + [38021,78086000], + [38023,11784000], + [38025,39273000], + [38027,32470000], + [38029,26808000], + [38031,80669000], + [38033,49866000], + [38035,1238204000], + [38037,12383000], + [38039,11169000], + [38041,46886000], + [38043,28001000], + [38045,37173000], + [38047,21532000], + [38049,37146000], + [38051,48499000], + [38053,36840000], + [38055,52821000], + [38057,85749000], + [38059,342132000], + [38061,118895000], + [38063,24384000], + [38065,9964000], + [38067,89953000], + [38069,85697000], + [38071,234254000], + [38073,53907000], + [38075,23759000], + [38077,205012000], + [38079,107052000], + [38081,27627000], + [38083,4345000], + [38085,13228000], + [38087,0], + [38089,403392000], + [38091,25883000], + [38093,309715000], + [38095,7221000], + [38097,72545000], + [38099,98752000], + [38101,1118967000], + [38103,63979000], + [38105,403259000], + [39001,210327000], + [39003,1577528000], + [39005,418627000], + [39007,1077599000], + [39009,563216000], + [39011,493766000], + [39013,888815000], + [39015,262309000], + [39017,4876153000], + [39019,163596000], + [39021,287593000], + [39023,1398675000], + [39025,2439577000], + [39027,450943000], + [39029,1064159000], + [39031,259193000], + [39033,338651000], + [39035,14478876000], + [39037,447176000], + [39039,559458000], + [39041,2331404000], + [39043,1034935000], + [39045,1360639000], + [39047,610736000], + [39049,19403588000], + [39051,405926000], + [39053,356037000], + [39055,916653000], + [39057,2029318000], + [39059,468298000], + [39061,10629458000], + [39063,1092812000], + [39065,193012000], + [39067,52855000], + [39069,267979000], + [39071,370494000], + [39073,218941000], + [39075,360343000], + [39077,550255000], + [39079,336097000], + [39081,721472000], + [39083,541863000], + [39085,3460873000], + [39087,508772000], + [39089,1774673000], + [39091,420671000], + [39093,3225508000], + [39095,5829999000], + [39097,958649000], + [39099,3025664000], + [39101,674758000], + [39103,2113387000], + [39105,124229000], + [39107,394378000], + [39109,1080491000], + [39111,62611000], + [39113,6844551000], + [39115,52335000], + [39117,167878000], + [39119,1125701000], + [39121,103273000], + [39123,461192000], + [39125,97266000], + [39127,136103000], + [39129,416443000], + [39131,197025000], + [39133,1657377000], + [39135,443064000], + [39137,252285000], + [39139,1489514000], + [39141,831195000], + [39143,597958000], + [39145,700731000], + [39147,458832000], + [39149,432544000], + [39151,4963666000], + [39153,7384206000], + [39155,2318389000], + [39157,1077428000], + [39159,479058000], + [39161,242794000], + [39163,43303000], + [39165,1862643000], + [39167,658444000], + [39169,1110221000], + [39171,333850000], + [39173,1522477000], + [39175,190247000], + [40001,108389000], + [40003,33329000], + [40005,136897000], + [40007,21953000], + [40009,523567000], + [40011,74597000], + [40013,318757000], + [40015,234420000], + [40017,1110668000], + [40019,686909000], + [40021,332498000], + [40023,118936000], + [40025,33241000], + [40027,2522273000], + [40029,38082000], + [40031,1206757000], + [40033,33465000], + [40035,191694000], + [40037,518275000], + [40039,407481000], + [40041,292628000], + [40043,43383000], + [40045,41218000], + [40047,737081000], + [40049,331592000], + [40051,440093000], + [40053,54664000], + [40055,28053000], + [40057,17679000], + [40059,20983000], + [40061,131028000], + [40063,87460000], + [40065,350157000], + [40067,34815000], + [40069,74913000], + [40071,576407000], + [40073,185164000], + [40075,55381000], + [40077,40497000], + [40079,376331000], + [40081,161886000], + [40083,275565000], + [40085,56379000], + [40087,412967000], + [40089,261075000], + [40091,266418000], + [40093,78779000], + [40095,126842000], + [40097,414596000], + [40099,193639000], + [40101,904003000], + [40103,86777000], + [40105,24900000], + [40107,64583000], + [40109,10759969000], + [40111,329490000], + [40113,172087000], + [40115,287559000], + [40117,82529000], + [40119,818401000], + [40121,606867000], + [40123,408979000], + [40125,682296000], + [40127,74766000], + [40129,42803000], + [40131,663785000], + [40133,192627000], + [40135,362440000], + [40137,495092000], + [40139,182625000], + [40141,35829000], + [40143,9580670000], + [40145,276389000], + [40147,626397000], + [40149,76437000], + [40151,99783000], + [40153,337409000], + [41001,155456000], + [41003,685172000], + [41005,5095774000], + [41007,604480000], + [41009,357383000], + [41011,716036000], + [41013,139916000], + [41015,227007000], + [41017,2809059000], + [41019,1169216000], + [41021,13474000], + [41023,72523000], + [41025,87576000], + [41027,293665000], + [41029,3422363000], + [41031,165302000], + [41033,1024331000], + [41035,788445000], + [41037,52050000], + [41039,4452231000], + [41041,559591000], + [41043,1158963000], + [41045,484644000], + [41047,4016561000], + [41049,17401000], + [41051,9868453000], + [41053,375062000], + [41055,56043000], + [41057,224903000], + [41059,763606000], + [41061,333760000], + [41063,82730000], + [41065,381866000], + [41067,8754390000], + [41069,10357000], + [41071,951130000], + [42001,832377000], + [42003,20075411000], + [42005,532139000], + [42007,1555258000], + [42009,581577000], + [42011,4953210000], + [42013,2038719000], + [42015,727813000], + [42017,13089805000], + [42019,2527258000], + [42021,1626462000], + [42023,29606000], + [42025,483916000], + [42027,1604290000], + [42029,11338422000], + [42031,421097000], + [42033,1150136000], + [42035,520692000], + [42037,826209000], + [42039,877346000], + [42041,3684912000], + [42043,3869515000], + [42045,6358447000], + [42047,291195000], + [42049,3428421000], + [42051,1535518000], + [42053,19250000], + [42055,1749971000], + [42057,101400000], + [42059,432778000], + [42061,363191000], + [42063,1278987000], + [42065,477351000], + [42067,197576000], + [42069,3178821000], + [42071,6542276000], + [42073,949636000], + [42075,1488641000], + [42077,5081208000], + [42079,5223747000], + [42081,1458361000], + [42083,422296000], + [42085,1441622000], + [42087,526069000], + [42089,2014874000], + [42091,15151273000], + [42093,156857000], + [42095,3405008000], + [42097,797025000], + [42099,393394000], + [42101,11167787000], + [42103,401092000], + [42105,138427000], + [42107,1317896000], + [42109,566335000], + [42111,764746000], + [42113,44996000], + [42115,403593000], + [42117,413451000], + [42119,372075000], + [42121,594243000], + [42123,485347000], + [42125,2283225000], + [42127,692267000], + [42129,4154689000], + [42131,288579000], + [42133,4942667000], + [44001,295711000], + [44003,3242897000], + [44005,1096241000], + [44007,5924945000], + [44009,1726691000], + [45001,71936000], + [45003,1599845000], + [45005,32596000], + [45007,2004732000], + [45009,102813000], + [45011,169135000], + [45013,2255071000], + [45015,1552266000], + [45017,66836000], + [45019,6320992000], + [45021,718119000], + [45023,210872000], + [45025,298054000], + [45027,296362000], + [45029,419700000], + [45031,527471000], + [45033,381709000], + [45035,879527000], + [45037,120262000], + [45039,216197000], + [45041,2237935000], + [45043,702159000], + [45045,6036638000], + [45047,774268000], + [45049,150702000], + [45051,4967238000], + [45053,400765000], + [45055,577695000], + [45057,587872000], + [45059,370058000], + [45061,154589000], + [45063,3666090000], + [45065,34750000], + [45067,269937000], + [45069,158984000], + [45071,369861000], + [45073,743455000], + [45075,1007038000], + [45077,1153530000], + [45079,4367658000], + [45081,73369000], + [45083,3638406000], + [45085,1021525000], + [45087,192164000], + [45089,224573000], + [45091,2172656000], + [46003,38083000], + [46005,245785000], + [46007,23956000], + [46009,40723000], + [46011,338220000], + [46013,692230000], + [46015,78462000], + [46017,null], + [46019,108937000], + [46021,3906000], + [46023,82107000], + [46025,21034000], + [46027,140095000], + [46029,560668000], + [46031,10591000], + [46033,51478000], + [46035,436178000], + [46037,50954000], + [46039,36353000], + [46041,23806000], + [46043,22468000], + [46045,39685000], + [46047,68727000], + [46049,20325000], + [46051,99804000], + [46053,52969000], + [46055,23945000], + [46057,49099000], + [46059,30290000], + [46061,5967000], + [46063,8696000], + [46065,262349000], + [46067,74049000], + [46069,37513000], + [46071,29109000], + [46073,20503000], + [46075,23030000], + [46077,34146000], + [46079,134741000], + [46081,435072000], + [46083,444437000], + [46085,69000000], + [46087,43532000], + [46089,15698000], + [46091,48196000], + [46093,194275000], + [46095,9280000], + [46097,10679000], + [46099,3823826000], + [46101,38279000], + [46102,39229000], + [46103,1967791000], + [46105,28156000], + [46107,26799000], + [46109,81013000], + [46111,6731000], + [46115,41083000], + [46117,30697000], + [46119,31341000], + [46121,39515000], + [46123,88362000], + [46125,52391000], + [46127,304153000], + [46129,74782000], + [46135,293043000], + [46137,null], + [47001,907783000], + [47003,340609000], + [47005,136843000], + [47007,30486000], + [47009,1551134000], + [47011,1164641000], + [47013,361821000], + [47015,53596000], + [47017,188945000], + [47019,461274000], + [47021,238792000], + [47023,117681000], + [47025,155854000], + [47027,37286000], + [47029,326897000], + [47031,790849000], + [47033,65024000], + [47035,596983000], + [47037,10581843000], + [47039,98877000], + [47041,119410000], + [47043,605859000], + [47045,514056000], + [47047,126612000], + [47049,140548000], + [47051,343584000], + [47053,438966000], + [47055,313287000], + [47057,79483000], + [47059,681959000], + [47061,67509000], + [47063,1055016000], + [47065,4865677000], + [47067,24369000], + [47069,158797000], + [47071,313661000], + [47073,286874000], + [47075,180636000], + [47077,279627000], + [47079,404167000], + [47081,76884000], + [47083,33434000], + [47085,181921000], + [47087,27779000], + [47089,554331000], + [47091,93196000], + [47093,8209407000], + [47095,19529000], + [47097,151836000], + [47099,380971000], + [47101,132793000], + [47103,366545000], + [47105,435619000], + [47107,561286000], + [47109,194653000], + [47111,167327000], + [47113,1696459000], + [47115,286563000], + [47117,269685000], + [47119,898300000], + [47121,29829000], + [47123,453016000], + [47125,1877647000], + [47127,16325000], + [47129,58482000], + [47131,403505000], + [47133,110652000], + [47135,24286000], + [47137,23632000], + [47139,67693000], + [47141,1193021000], + [47143,250814000], + [47145,436400000], + [47147,627764000], + [47149,2804294000], + [47151,159566000], + [47153,105293000], + [47155,1641080000], + [47157,11932863000], + [47159,117776000], + [47161,63737000], + [47163,2026276000], + [47165,1300149000], + [47167,404163000], + [47169,41695000], + [47171,119502000], + [47173,60543000], + [47175,9185000], + [47177,373696000], + [47179,1869147000], + [47181,66626000], + [47183,265377000], + [47185,195438000], + [47187,3306994000], + [47189,1164992000], + [48001,495496000], + [48003,98318000], + [48005,1174060000], + [48007,241543000], + [48009,39354000], + [48011,2361000], + [48013,362861000], + [48015,234178000], + [48017,41726000], + [48019,76525000], + [48021,684655000], + [48023,27120000], + [48025,247136000], + [48027,3349957000], + [48029,22815281000], + [48031,50592000], + [48033,null], + [48035,106512000], + [48037,1535383000], + [48039,2958757000], + [48041,2119149000], + [48043,86813000], + [48045,6660000], + [48047,81552000], + [48049,512498000], + [48051,183826000], + [48053,639540000], + [48055,298264000], + [48057,322244000], + [48059,118945000], + [48061,3911719000], + [48063,96866000], + [48065,49747000], + [48067,216849000], + [48069,40007000], + [48071,274916000], + [48073,363156000], + [48075,75474000], + [48077,77638000], + [48079,26876000], + [48081,24506000], + [48083,47942000], + [48085,12350753000], + [48087,17184000], + [48089,226783000], + [48091,1539740000], + [48093,117792000], + [48095,17668000], + [48097,499700000], + [48099,442577000], + [48101,12673000], + [48103,47808000], + [48105,58893000], + [48107,23791000], + [48109,106249000], + [48111,85370000], + [48113,33177208000], + [48115,148370000], + [48117,224228000], + [48119,26426000], + [48121,7668326000], + [48123,159887000], + [48125,11311000], + [48127,74775000], + [48129,29218000], + [48131,49609000], + [48133,259667000], + [48135,2090614000], + [48137,11690000], + [48139,1323106000], + [48141,8460929000], + [48143,445038000], + [48145,71633000], + [48147,297301000], + [48149,262010000], + [48151,12001000], + [48153,40010000], + [48155,7042000], + [48157,5306163000], + [48159,87874000], + [48161,254298000], + [48163,107560000], + [48165,82554000], + [48167,2750294000], + [48169,34963000], + [48171,311100000], + [48173,null], + [48175,37331000], + [48177,179237000], + [48179,null], + [48181,1594749000], + [48183,2405150000], + [48185,157336000], + [48187,1026147000], + [48189,325074000], + [48191,23247000], + [48193,78583000], + [48195,60072000], + [48197,22226000], + [48199,612350000], + [48201,51899053000], + [48203,603936000], + [48205,34066000], + [48207,59213000], + [48209,1954688000], + [48211,39206000], + [48213,657384000], + [48215,7898809000], + [48217,400271000], + [48219,201686000], + [48221,730014000], + [48223,447708000], + [48225,159279000], + [48227,341223000], + [48229,12480000], + [48231,931267000], + [48233,210806000], + [48235,null], + [48237,34121000], + [48239,133487000], + [48241,371047000], + [48243,7132000], + [48245,3973125000], + [48247,61626000], + [48249,462397000], + [48251,1269633000], + [48253,163334000], + [48255,101827000], + [48257,943809000], + [48259,808099000], + [48261,0], + [48263,null], + [48265,719852000], + [48267,78662000], + [48269,0], + [48271,8052000], + [48273,657070000], + [48275,34309000], + [48277,637577000], + [48279,95775000], + [48281,207126000], + [48283,79867000], + [48285,172013000], + [48287,162558000], + [48289,159859000], + [48291,653043000], + [48293,268348000], + [48295,24490000], + [48297,112717000], + [48299,113011000], + [48301,0], + [48303,3924861000], + [48305,19743000], + [48307,104265000], + [48309,2942576000], + [48311,null], + [48313,178851000], + [48315,66344000], + [48317,45368000], + [48319,28978000], + [48321,313945000], + [48323,504755000], + [48325,360081000], + [48327,16323000], + [48329,2276743000], + [48331,181361000], + [48333,70373000], + [48335,55754000], + [48337,213681000], + [48339,5260066000], + [48341,217873000], + [48343,70300000], + [48345,5220000], + [48347,691236000], + [48349,471758000], + [48351,50925000], + [48353,179695000], + [48355,4314450000], + [48357,97444000], + [48359,16797000], + [48361,851995000], + [48363,272673000], + [48365,221953000], + [48367,1517829000], + [48369,39479000], + [48371,153994000], + [48373,445440000], + [48375,2489973000], + [48377,42509000], + [48379,93947000], + [48381,1465538000], + [48383,23721000], + [48385,9440000], + [48387,61221000], + [48389,113223000], + [48391,61964000], + [48393,null], + [48395,115236000], + [48397,946288000], + [48399,128394000], + [48401,354320000], + [48403,51907000], + [48405,70092000], + [48407,54707000], + [48409,621585000], + [48411,60473000], + [48413,10353000], + [48415,199581000], + [48417,14844000], + [48419,246528000], + [48421,10079000], + [48423,3110146000], + [48425,55179000], + [48427,445281000], + [48429,78824000], + [48431,null], + [48433,8605000], + [48435,41916000], + [48437,35247000], + [48439,24931407000], + [48441,2063290000], + [48443,3875000], + [48445,133700000], + [48447,6813000], + [48449,425109000], + [48451,null], + [48453,13879471000], + [48455,57024000], + [48457,114973000], + [48459,216729000], + [48461,16720000], + [48463,322212000], + [48465,524418000], + [48467,410538000], + [48469,1434272000], + [48471,626334000], + [48473,593065000], + [48475,94619000], + [48477,509916000], + [48479,2913533000], + [48481,466705000], + [48483,46067000], + [48485,1715924000], + [48487,170215000], + [48489,122890000], + [48491,9918009000], + [48493,180452000], + [48495,40330000], + [48497,565279000], + [48499,383490000], + [48501,36959000], + [48503,185157000], + [48505,62126000], + [48507,33290000], + [49001,89663000], + [49003,447418000], + [49005,1095090000], + [49007,298872000], + [49009,null], + [49011,3217656000], + [49013,215996000], + [49015,128628000], + [49017,22916000], + [49019,159918000], + [49021,652165000], + [49023,112160000], + [49025,72071000], + [49027,125054000], + [49029,42681000], + [49031,null], + [49033,11499000], + [49035,16758729000], + [49037,44601000], + [49039,196917000], + [49041,324631000], + [49043,659852000], + [49045,503618000], + [49047,461448000], + [49049,5772180000], + [49051,228355000], + [49053,2087828000], + [49055,27847000], + [49057,2810553000], + [50001,464847000], + [50003,833024000], + [50005,412719000], + [50007,2740931000], + [50009,15031000], + [50011,545346000], + [50013,39465000], + [50015,313467000], + [50017,237240000], + [50019,324145000], + [50021,1084887000], + [50023,946580000], + [50025,660735000], + [50027,691702000], + [51001,298001000], + [51003,1689315000], + [51005,123147000], + [51007,67957000], + [51009,311758000], + [51011,107167000], + [51013,2482916000], + [51015,636318000], + [51017,20958000], + [51019,466545000], + [51021,38351000], + [51023,247811000], + [51025,74581000], + [51027,143922000], + [51029,68700000], + [51031,511759000], + [51033,365938000], + [51035,203034000], + [51036,10896000], + [51037,62090000], + [51041,4615854000], + [51043,91615000], + [51045,15771000], + [51047,547366000], + [51049,46146000], + [51051,122849000], + [51053,114937000], + [51057,224598000], + [51059,14002361000], + [51061,853058000], + [51063,72431000], + [51065,79398000], + [51067,444514000], + [51069,1120732000], + [51071,172401000], + [51073,500063000], + [51075,183950000], + [51077,47520000], + [51079,96030000], + [51081,101892000], + [51083,324090000], + [51085,1706383000], + [51087,6737176000], + [51089,436996000], + [51091,8851000], + [51093,212738000], + [51095,658826000], + [51097,16167000], + [51099,154993000], + [51101,125958000], + [51103,166615000], + [51105,171558000], + [51107,4469513000], + [51109,153825000], + [51111,54682000], + [51113,112941000], + [51115,59350000], + [51117,406322000], + [51119,94451000], + [51121,1102647000], + [51125,75628000], + [51127,135156000], + [51131,135111000], + [51133,90247000], + [51135,137346000], + [51137,280339000], + [51139,167412000], + [51141,148590000], + [51143,269316000], + [51145,159301000], + [51147,350587000], + [51149,197759000], + [51153,4948909000], + [51155,317286000], + [51157,21909000], + [51159,75648000], + [51161,835653000], + [51163,338393000], + [51165,455492000], + [51167,255615000], + [51169,197209000], + [51171,494209000], + [51173,300319000], + [51175,57936000], + [51177,2148513000], + [51179,930261000], + [51181,12558000], + [51183,68872000], + [51185,811756000], + [51187,369617000], + [51191,701610000], + [51193,100420000], + [51195,438617000], + [51197,908076000], + [51199,852204000], + [51510,2353754000], + [51520,343502000], + [51530,30610000], + [51540,699395000], + [51550,3977784000], + [51570,761064000], + [51580,104599000], + [51590,892207000], + [51595,131626000], + [51600,1884013000], + [51610,288000000], + [51620,186278000], + [51630,1052131000], + [51640,227492000], + [51650,1805727000], + [51660,1465322000], + [51670,173896000], + [51678,86765000], + [51680,1665130000], + [51683,921227000], + [51685,158012000], + [51690,316916000], + [51700,2431256000], + [51710,2724146000], + [51720,283790000], + [51730,324219000], + [51735,54707000], + [51740,682095000], + [51750,109698000], + [51760,1922799000], + [51770,2039763000], + [51775,537832000], + [51790,447486000], + [51800,820304000], + [51810,5579915000], + [51820,386631000], + [51830,323040000], + [51840,998681000], + [53001,144809000], + [53003,208856000], + [53005,2122018000], + [53007,1022020000], + [53009,838273000], + [53011,4169989000], + [53013,28894000], + [53015,1219672000], + [53017,413596000], + [53019,35028000], + [53021,788496000], + [53023,11673000], + [53025,777527000], + [53027,768583000], + [53029,519916000], + [53031,210897000], + [53033,37153888000], + [53035,2936238000], + [53037,472728000], + [53039,65712000], + [53041,910552000], + [53043,91599000], + [53045,420213000], + [53047,417198000], + [53049,114478000], + [53051,66624000], + [53053,9741617000], + [53055,155257000], + [53057,2134762000], + [53059,25995000], + [53061,9057126000], + [53063,6741223000], + [53065,281605000], + [53067,3102980000], + [53069,11743000], + [53071,534054000], + [53073,2556022000], + [53075,271057000], + [53077,2425601000], + [54001,74996000], + [54003,886400000], + [54005,190618000], + [54007,219637000], + [54009,158111000], + [54011,1496115000], + [54013,34099000], + [54015,41338000], + [54017,19329000], + [54019,345744000], + [54021,34262000], + [54023,118345000], + [54025,490169000], + [54027,112165000], + [54029,238492000], + [54031,132083000], + [54033,1148532000], + [54035,325186000], + [54037,455710000], + [54039,2947318000], + [54041,212862000], + [54043,73416000], + [54045,494714000], + [54047,129379000], + [54049,614884000], + [54051,272442000], + [54053,135351000], + [54055,765556000], + [54057,223649000], + [54059,108241000], + [54061,1289674000], + [54063,31612000], + [54065,94838000], + [54067,345876000], + [54069,649939000], + [54071,39387000], + [54073,40436000], + [54075,60206000], + [54077,221141000], + [54079,589769000], + [54081,1260806000], + [54083,319240000], + [54085,60394000], + [54087,142023000], + [54089,53727000], + [54091,91746000], + [54093,53359000], + [54095,45455000], + [54097,297123000], + [54099,232794000], + [54101,40144000], + [54103,206427000], + [54105,14354000], + [54107,1712248000], + [54109,146968000], + [55001,130364000], + [55003,193578000], + [55005,670752000], + [55007,107608000], + [55009,3538353000], + [55011,74038000], + [55013,118697000], + [55015,390127000], + [55017,1059612000], + [55019,263868000], + [55021,631312000], + [55023,218311000], + [55025,7132444000], + [55027,735702000], + [55029,406336000], + [55031,504464000], + [55033,381822000], + [55035,1512451000], + [55037,21411000], + [55039,1277658000], + [55041,56601000], + [55043,480071000], + [55045,766565000], + [55047,252931000], + [55049,1707860000], + [55051,74581000], + [55053,250989000], + [55055,857229000], + [55057,284464000], + [55059,1800637000], + [55061,152889000], + [55063,1799668000], + [55065,96802000], + [55067,309222000], + [55069,289495000], + [55071,815529000], + [55073,2139106000], + [55075,526911000], + [55077,79688000], + [55078,5207000], + [55079,10207295000], + [55081,502249000], + [55083,257543000], + [55085,921151000], + [55087,2902996000], + [55089,976543000], + [55091,90048000], + [55093,208532000], + [55095,423199000], + [55097,937882000], + [55099,121071000], + [55101,2230013000], + [55103,223315000], + [55105,2439767000], + [55107,198374000], + [55109,933401000], + [55111,1050852000], + [55113,224148000], + [55115,413963000], + [55117,1398661000], + [55119,189138000], + [55121,251829000], + [55123,250463000], + [55125,312228000], + [55127,1091166000], + [55129,178121000], + [55131,1759993000], + [55133,5955006000], + [55135,516629000], + [55137,203004000], + [55139,1796479000], + [55141,1002909000], + [56001,468773000], + [56003,71008000], + [56005,775117000], + [56007,295340000], + [56009,134349000], + [56011,56351000], + [56013,558410000], + [56015,116123000], + [56017,38266000], + [56019,71779000], + [56021,1720451000], + [56023,221712000], + [56025,1377032000], + [56027,19649000], + [56029,388380000], + [56031,93405000], + [56033,478180000], + [56035,82792000], + [56037,898189000], + [56039,515644000], + [56041,413983000], + [56043,98308000], + [56045,64312000] + ] +} diff --git a/data/regional/united-states/economics/retail/us-retail-sales-precapita-2007.json b/data/regional/united-states/economics/retail/us-retail-sales-precapita-2007.json new file mode 100644 index 0000000..f323e64 --- /dev/null +++ b/data/regional/united-states/economics/retail/us-retail-sales-precapita-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Retail Sales Per-Capita", + "description" : "Retail sales per-capita.", + "units" : "$", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","retail"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.retail.sales.percapita.2007"], + [1001,12003], + [1003,17166], + [1005,6334], + [1007,5804], + [1009,5622], + [1011,3995], + [1013,11326], + [1015,13678], + [1017,7620], + [1019,7613], + [1021,8496], + [1023,5969], + [1025,13034], + [1027,5123], + [1029,9080], + [1031,13665], + [1033,15040], + [1035,5430], + [1037,1904], + [1039,11544], + [1041,5491], + [1043,10757], + [1045,6889], + [1047,10223], + [1049,9303], + [1051,7982], + [1053,10089], + [1055,10801], + [1057,7433], + [1059,8786], + [1061,6612], + [1063,3697], + [1065,4794], + [1067,5559], + [1069,19608], + [1071,7784], + [1073,16730], + [1075,4887], + [1077,12783], + [1079,4889], + [1081,11099], + [1083,9785], + [1085,8184], + [1087,3932], + [1089,14145], + [1091,9274], + [1093,7116], + [1095,15434], + [1097,12895], + [1099,9342], + [1101,14351], + [1103,14222], + [1105,3181], + [1107,5805], + [1109,12189], + [1111,7209], + [1113,8526], + [1115,7404], + [1117,13737], + [1119,4494], + [1121,9113], + [1123,8881], + [1125,13664], + [1127,13162], + [1129,4458], + [1131,6018], + [1133,6853], + [2013,3309], + [2016,9823], + [2020,16096], + [2050,5658], + [2060,12823], + [2068,6120], + [2070,8612], + [2090,16072], + [2100,6991], + [2105,23610], + [2110,15235], + [2122,12527], + [2130,20488], + [2150,8274], + [2158,5211], + [2164,"NA"], + [2170,10362], + [2180,6785], + [2185,10574], + [2188,5599], + [2195,17606], + [2198,7514], + [2220,10875], + [2230,"NA"], + [2240,6906], + [2261,8422], + [2275,"NA"], + [2282,"NA"], + [2290,7151], + [4001,3997], + [4003,10284], + [4005,13273], + [4007,10545], + [4009,11211], + [4011,4587], + [4012,19588], + [4013,15153], + [4015,14489], + [4017,11148], + [4019,11969], + [4021,6718], + [4023,15958], + [4025,12714], + [4027,10596], + [5001,14825], + [5003,7673], + [5005,11633], + [5007,11332], + [5009,12738], + [5011,5978], + [5013,3263], + [5015,9728], + [5017,5446], + [5019,10461], + [5021,8255], + [5023,11169], + [5025,1404], + [5027,8143], + [5029,13074], + [5031,15768], + [5033,7666], + [5035,14399], + [5037,9970], + [5039,9727], + [5041,8691], + [5043,10645], + [5045,11730], + [5047,7748], + [5049,3598], + [5051,14958], + [5053,6148], + [5055,9257], + [5057,8807], + [5059,6511], + [5061,11402], + [5063,11132], + [5065,8035], + [5067,11203], + [5069,10922], + [5071,7942], + [5073,4257], + [5075,9703], + [5077,3345], + [5079,4202], + [5081,6846], + [5083,7855], + [5085,7821], + [5087,7381], + [5089,5291], + [5091,9503], + [5093,9051], + [5095,9599], + [5097,3570], + [5099,14660], + [5101,1596], + [5103,7135], + [5105,3162], + [5107,10468], + [5109,4876], + [5111,7762], + [5113,8785], + [5115,15530], + [5117,4481], + [5119,16435], + [5121,7618], + [5123,13206], + [5125,12137], + [5127,4308], + [5129,7339], + [5131,14995], + [5133,9806], + [5135,8792], + [5137,9100], + [5139,12261], + [5141,9238], + [5143,13987], + [5145,10907], + [5147,8451], + [5149,5001], + [6001,12359], + [6003,"NA"], + [6005,46797], + [6007,11025], + [6009,6249], + [6011,9884], + [6013,11641], + [6015,7176], + [6017,9216], + [6019,11022], + [6021,7320], + [6023,13428], + [6025,10771], + [6027,13876], + [6029,10037], + [6031,7017], + [6033,8630], + [6035,7440], + [6037,12236], + [6039,6956], + [6041,18648], + [6043,4705], + [6045,14716], + [6047,8233], + [6049,5827], + [6051,12032], + [6053,11293], + [6055,12619], + [6057,11111], + [6059,15221], + [6061,18622], + [6063,8506], + [6065,11745], + [6067,11357], + [6069,6475], + [6071,10897], + [6073,13009], + [6075,15516], + [6077,10687], + [6079,13559], + [6081,14625], + [6083,12443], + [6085,15367], + [6087,14894], + [6089,14088], + [6091,"NA"], + [6093,9120], + [6095,11892], + [6097,13929], + [6099,11180], + [6101,11644], + [6103,12103], + [6105,4966], + [6107,9373], + [6109,10460], + [6111,14036], + [6113,9106], + [6115,5908], + [8001,11556], + [8003,17193], + [8005,18277], + [8007,11435], + [8009,8570], + [8011,2838], + [8013,13660], + [8014,21240], + [8015,14982], + [8017,7276], + [8019,8185], + [8021,4132], + [8023,1726], + [8025,2427], + [8027,14820], + [8029,10353], + [8031,11810], + [8033,7961], + [8035,13846], + [8037,18367], + [8039,3558], + [8041,13578], + [8043,7444], + [8045,22367], + [8047,636], + [8049,14227], + [8051,14116], + [8053,9362], + [8055,7180], + [8057,14149], + [8059,13782], + [8061,6158], + [8063,10717], + [8065,6540], + [8067,15914], + [8069,13672], + [8071,10393], + [8073,25671], + [8075,13454], + [8077,17279], + [8079,6239], + [8081,15717], + [8083,12003], + [8085,15484], + [8087,8450], + [8089,9166], + [8091,6131], + [8093,3266], + [8095,10207], + [8097,26461], + [8099,11300], + [8101,12080], + [8103,8831], + [8105,9480], + [8107,18866], + [8109,3039], + [8111,11540], + [8113,13114], + [8115,14305], + [8117,24434], + [8119,7771], + [8121,5015], + [8123,9272], + [8125,11074], + [9001,17661], + [9003,15811], + [9005,13043], + [9007,12980], + [9009,13970], + [9011,14682], + [9013,8140], + [9015,10120], + [10001,17024], + [10003,16358], + [10005,16103], + [11001,6555], + [12001,13124], + [12003,7052], + [12005,15138], + [12007,7436], + [12009,12339], + [12011,17680], + [12013,4791], + [12015,12072], + [12017,10051], + [12019,10997], + [12021,16546], + [12023,12692], + [12027,8001], + [12029,3303], + [12031,15688], + [12033,13404], + [12035,7766], + [12037,8191], + [12039,9422], + [12041,3102], + [12043,1191], + [12045,4840], + [12047,7243], + [12049,13878], + [12051,8774], + [12053,9789], + [12055,11060], + [12057,16335], + [12059,3825], + [12061,13940], + [12063,11070], + [12065,6403], + [12067,8292], + [12069,11391], + [12071,15708], + [12073,13451], + [12075,8920], + [12077,3129], + [12079,6578], + [12081,12339], + [12083,13060], + [12085,17790], + [12086,14074], + [12087,18900], + [12089,9219], + [12091,16754], + [12093,10758], + [12095,18005], + [12097,11107], + [12099,15278], + [12101,10328], + [12103,16244], + [12105,11195], + [12107,9108], + [12109,11601], + [12111,14197], + [12113,7499], + [12115,15181], + [12117,16831], + [12119,9244], + [12121,8962], + [12123,9886], + [12125,2855], + [12127,12230], + [12129,5544], + [12131,13387], + [12133,7747], + [13001,10022], + [13003,4367], + [13005,6495], + [13007,1421], + [13009,11267], + [13011,14223], + [13013,9839], + [13015,12699], + [13017,12693], + [13019,7739], + [13021,16374], + [13023,5950], + [13025,4043], + [13027,5394], + [13029,7479], + [13031,11044], + [13033,7776], + [13035,12496], + [13037,3266], + [13039,13688], + [13043,10977], + [13045,11190], + [13047,12730], + [13049,6460], + [13051,16107], + [13053,934], + [13055,5478], + [13057,10373], + [13059,14711], + [13061,3465], + [13063,11760], + [13065,5714], + [13067,15157], + [13069,11367], + [13071,9669], + [13073,12919], + [13075,7198], + [13077,10852], + [13079,1451], + [13081,14719], + [13083,11687], + [13085,21598], + [13087,13854], + [13089,10867], + [13091,8452], + [13093,13121], + [13095,16198], + [13097,16536], + [13099,6416], + [13101,"NA"], + [13103,6345], + [13105,6644], + [13107,8160], + [13109,13507], + [13111,12995], + [13113,13122], + [13115,10932], + [13117,12382], + [13119,14431], + [13121,13363], + [13123,12965], + [13125,1739], + [13127,18083], + [13129,12680], + [13131,6750], + [13133,8715], + [13135,17939], + [13137,11672], + [13139,12417], + [13141,2183], + [13143,10907], + [13145,2271], + [13147,7077], + [13149,2167], + [13151,10315], + [13153,11610], + [13155,2734], + [13157,9365], + [13159,2442], + [13161,15440], + [13163,7897], + [13165,6311], + [13167,2678], + [13169,2588], + [13171,6732], + [13173,"NA"], + [13175,12912], + [13177,3754], + [13179,8908], + [13181,4927], + [13183,1548], + [13185,17744], + [13187,7764], + [13189,16276], + [13191,9952], + [13193,3588], + [13195,4291], + [13197,10179], + [13199,4421], + [13201,8671], + [13205,6268], + [13207,4563], + [13209,2753], + [13211,15202], + [13213,5374], + [13215,15482], + [13217,7096], + [13219,10357], + [13221,4988], + [13223,7607], + [13225,12122], + [13227,10541], + [13229,5586], + [13231,1970], + [13233,7592], + [13235,8619], + [13237,10073], + [13239,1045], + [13241,14153], + [13243,6087], + [13245,12695], + [13247,17720], + [13249,4503], + [13251,6219], + [13253,8485], + [13255,10492], + [13257,10895], + [13259,5203], + [13261,10016], + [13263,710], + [13265,925], + [13267,4457], + [13269,5359], + [13271,5817], + [13273,6657], + [13275,13852], + [13277,17119], + [13279,13914], + [13281,9426], + [13283,4407], + [13285,12600], + [13287,6881], + [13289,2969], + [13291,11809], + [13293,7575], + [13295,5332], + [13297,9577], + [13299,17285], + [13301,3954], + [13303,10248], + [13305,10703], + [13307,2095], + [13309,2674], + [13311,11284], + [13313,15535], + [13315,3157], + [13317,7168], + [13319,2418], + [13321,6203], + [15001,14816], + [15003,12817], + [15005,0], + [15007,16730], + [15009,17437], + [16001,15720], + [16003,5627], + [16005,13706], + [16007,10031], + [16009,10111], + [16011,7822], + [16013,16414], + [16015,2465], + [16017,11788], + [16019,19405], + [16021,7945], + [16023,6500], + [16025,"NA"], + [16027,12171], + [16029,9967], + [16031,15216], + [16033,"NA"], + [16035,8489], + [16037,8542], + [16039,8319], + [16041,9319], + [16043,5412], + [16045,6914], + [16047,6158], + [16049,6395], + [16051,4058], + [16053,15013], + [16055,16242], + [16057,9697], + [16059,15806], + [16061,8193], + [16063,3721], + [16065,10971], + [16067,8722], + [16069,18133], + [16071,5834], + [16073,4653], + [16075,6401], + [16077,6572], + [16079,48689], + [16081,9987], + [16083,17270], + [16085,15201], + [16087,7645], + [17001,13888], + [17003,2785], + [17005,5708], + [17007,8556], + [17009,4597], + [17011,9525], + [17013,4376], + [17015,5593], + [17017,8480], + [17019,12163], + [17021,10703], + [17023,6513], + [17025,8375], + [17027,10581], + [17029,12150], + [17031,11571], + [17033,8419], + [17035,2119], + [17037,10351], + [17039,11527], + [17041,11222], + [17043,19550], + [17045,10476], + [17047,6229], + [17049,25050], + [17051,10846], + [17053,7990], + [17055,9236], + [17057,7843], + [17059,3684], + [17061,7009], + [17063,11097], + [17065,5145], + [17067,5676], + [17069,3219], + [17071,3462], + [17073,9644], + [17075,8843], + [17077,11751], + [17079,8592], + [17081,14157], + [17083,11186], + [17085,14017], + [17087,4788], + [17089,11482], + [17091,11264], + [17093,10957], + [17095,13120], + [17097,28949], + [17099,15466], + [17101,4923], + [17103,10426], + [17105,10438], + [17107,9219], + [17109,10221], + [17111,11372], + [17113,13607], + [17115,13342], + [17117,6760], + [17119,11622], + [17121,8734], + [17123,6085], + [17125,6563], + [17127,5025], + [17129,5507], + [17131,5191], + [17133,12507], + [17135,13479], + [17137,11399], + [17139,8275], + [17141,8257], + [17143,13250], + [17145,7452], + [17147,7220], + [17149,8233], + [17151,2245], + [17153,4941], + [17155,3619], + [17157,10123], + [17159,10346], + [17161,11636], + [17163,11818], + [17165,10427], + [17167,14768], + [17169,7647], + [17171,6686], + [17173,6477], + [17175,9404], + [17177,10285], + [17179,13424], + [17181,8009], + [17183,9367], + [17185,8966], + [17187,7602], + [17189,13400], + [17191,8814], + [17193,8392], + [17195,9676], + [17197,10211], + [17199,15370], + [17201,12943], + [17203,7329], + [18001,10928], + [18003,13667], + [18005,14399], + [18007,5852], + [18009,7389], + [18011,8970], + [18013,4180], + [18015,5153], + [18017,8714], + [18019,16414], + [18021,11737], + [18023,6579], + [18025,3752], + [18027,12667], + [18029,10256], + [18031,12582], + [18033,9774], + [18035,13156], + [18037,18509], + [18039,12182], + [18041,8604], + [18043,10813], + [18045,8336], + [18047,7407], + [18049,9931], + [18051,13501], + [18053,11121], + [18055,6924], + [18057,12582], + [18059,8584], + [18061,10862], + [18063,15496], + [18065,9706], + [18067,14264], + [18069,8651], + [18071,12572], + [18073,12531], + [18075,6543], + [18077,11801], + [18079,7956], + [18081,15169], + [18083,12463], + [18085,10423], + [18087,7498], + [18089,14455], + [18091,12355], + [18093,10481], + [18095,9433], + [18097,14748], + [18099,11839], + [18101,8044], + [18103,6423], + [18105,11968], + [18107,11343], + [18109,8378], + [18111,6901], + [18113,7491], + [18115,4068], + [18117,7812], + [18119,4750], + [18121,4932], + [18123,8097], + [18125,4449], + [18127,12188], + [18129,10225], + [18131,8175], + [18133,8367], + [18135,10588], + [18137,9347], + [18139,6468], + [18141,13831], + [18143,10156], + [18145,11094], + [18147,8215], + [18149,6730], + [18151,17170], + [18153,6894], + [18155,2074], + [18157,12769], + [18159,8473], + [18161,4366], + [18163,17308], + [18165,11296], + [18167,15780], + [18169,9889], + [18171,2812], + [18173,5794], + [18175,6844], + [18177,14748], + [18179,7969], + [18181,11911], + [18183,10547], + [19001,6546], + [19003,7950], + [19005,8922], + [19007,10331], + [19009,6083], + [19011,6645], + [19013,15224], + [19015,8009], + [19017,11358], + [19019,10242], + [19021,13408], + [19023,5407], + [19025,10402], + [19027,14338], + [19029,12846], + [19031,7317], + [19033,20200], + [19035,11935], + [19037,8537], + [19039,10579], + [19041,17960], + [19043,9249], + [19045,12950], + [19047,9840], + [19049,15813], + [19051,8351], + [19053,4746], + [19055,9791], + [19057,15182], + [19059,15386], + [19061,15538], + [19063,8961], + [19065,7716], + [19067,9192], + [19069,6207], + [19071,13599], + [19073,9258], + [19075,9049], + [19077,8262], + [19079,9607], + [19081,10549], + [19083,9242], + [19085,6546], + [19087,10665], + [19089,8789], + [19091,8520], + [19093,8758], + [19095,13512], + [19097,10547], + [19099,7492], + [19101,21471], + [19103,13168], + [19105,12629], + [19107,6236], + [19109,12670], + [19111,11745], + [19113,17502], + [19115,4798], + [19117,8919], + [19119,8113], + [19121,5253], + [19123,10995], + [19125,10201], + [19127,10434], + [19129,5187], + [19131,8627], + [19133,10868], + [19135,8256], + [19137,8071], + [19139,10566], + [19141,12093], + [19143,6291], + [19145,10243], + [19147,6988], + [19149,12330], + [19151,10492], + [19153,16130], + [19155,16784], + [19157,12932], + [19159,12562], + [19161,8983], + [19163,17574], + [19165,10996], + [19167,12319], + [19169,11361], + [19171,6366], + [19173,3906], + [19175,12759], + [19177,4810], + [19179,14167], + [19181,7415], + [19183,9221], + [19185,7824], + [19187,15022], + [19189,10672], + [19191,13909], + [19193,14913], + [19195,3759], + [19197,7681], + [20001,9077], + [20003,11102], + [20005,7912], + [20007,14910], + [20009,12254], + [20011,8136], + [20013,6771], + [20015,9024], + [20017,3815], + [20019,4176], + [20021,5686], + [20023,4422], + [20025,4775], + [20027,8756], + [20029,11776], + [20031,12228], + [20033,5608], + [20035,9291], + [20037,10204], + [20039,5793], + [20041,10143], + [20043,3241], + [20045,10601], + [20047,3987], + [20049,2680], + [20051,18264], + [20053,5066], + [20055,12364], + [20057,12121], + [20059,8921], + [20061,9992], + [20063,6552], + [20065,11710], + [20067,8998], + [20069,6032], + [20071,7406], + [20073,7684], + [20075,9816], + [20077,8746], + [20079,8170], + [20081,3400], + [20083,3052], + [20085,6822], + [20087,3880], + [20089,4502], + [20091,17598], + [20093,1835], + [20095,5556], + [20097,5385], + [20099,9305], + [20101,7841], + [20103,6697], + [20105,3413], + [20107,4981], + [20109,29856], + [20111,13179], + [20113,13167], + [20115,5743], + [20117,18309], + [20119,4602], + [20121,8183], + [20123,15654], + [20125,10599], + [20127,7570], + [20129,9251], + [20131,10528], + [20133,12360], + [20135,5433], + [20137,6796], + [20139,4327], + [20141,10001], + [20143,3232], + [20145,7574], + [20147,8776], + [20149,14582], + [20151,18089], + [20153,6413], + [20155,13150], + [20157,8902], + [20159,4671], + [20161,10498], + [20163,10991], + [20165,9689], + [20167,10110], + [20169,19676], + [20171,10344], + [20173,13838], + [20175,13898], + [20177,13295], + [20179,7482], + [20181,18781], + [20183,5980], + [20185,3613], + [20187,7701], + [20189,7989], + [20191,5531], + [20193,21574], + [20195,13740], + [20197,3920], + [20199,4388], + [20201,5992], + [20203,8528], + [20205,5539], + [20207,5223], + [20209,11154], + [21001,7655], + [21003,5945], + [21005,8002], + [21007,6485], + [21009,13464], + [21011,4474], + [21013,12915], + [21015,21623], + [21017,8939], + [21019,19244], + [21021,14875], + [21023,3007], + [21025,6652], + [21027,5968], + [21029,6788], + [21031,4362], + [21033,11848], + [21035,12578], + [21037,11120], + [21039,4614], + [21041,17403], + [21043,9831], + [21045,4408], + [21047,11565], + [21049,12951], + [21051,5858], + [21053,5838], + [21055,5873], + [21057,6484], + [21059,13652], + [21061,2723], + [21063,1489], + [21065,5655], + [21067,16635], + [21069,8768], + [21071,9596], + [21073,12816], + [21075,7608], + [21077,4619], + [21079,2331], + [21081,11333], + [21083,9119], + [21085,9281], + [21087,5592], + [21089,9483], + [21091,3266], + [21093,14781], + [21095,6793], + [21097,7912], + [21099,5074], + [21101,14659], + [21103,9689], + [21105,13345], + [21107,12118], + [21109,3370], + [21111,14053], + [21113,16060], + [21115,14646], + [21117,8046], + [21119,2782], + [21121,9870], + [21123,3621], + [21125,15970], + [21127,7568], + [21129,7891], + [21131,5072], + [21133,5176], + [21135,4074], + [21137,5053], + [21139,3103], + [21141,8497], + [21143,7316], + [21145,24179], + [21147,4639], + [21149,4949], + [21151,12008], + [21153,4022], + [21155,7093], + [21157,11065], + [21159,8149], + [21161,20831], + [21163,6274], + [21165,3631], + [21167,7219], + [21169,5711], + [21171,8582], + [21173,14128], + [21175,6175], + [21177,8444], + [21179,9951], + [21181,3956], + [21183,6066], + [21185,6621], + [21187,3805], + [21189,3625], + [21191,3152], + [21193,15886], + [21195,13658], + [21197,6967], + [21199,14753], + [21201,733], + [21203,4323], + [21205,12039], + [21207,10563], + [21209,12283], + [21211,12279], + [21213,24342], + [21215,4029], + [21217,15436], + [21219,4878], + [21221,5317], + [21223,3564], + [21225,9585], + [21227,16186], + [21229,5490], + [21231,7412], + [21233,4858], + [21235,9752], + [21237,6355], + [21239,9242], + [22001,8808], + [22003,5529], + [22005,13219], + [22007,4331], + [22009,7367], + [22011,9128], + [22013,3947], + [22015,15991], + [22017,14686], + [22019,15061], + [22021,10874], + [22023,5094], + [22025,5037], + [22027,4516], + [22029,10300], + [22031,7010], + [22033,16353], + [22035,4117], + [22037,3484], + [22039,6379], + [22041,10760], + [22043,3778], + [22045,12167], + [22047,8337], + [22049,7594], + [22051,18409], + [22053,10916], + [22055,18588], + [22057,9878], + [22059,8321], + [22061,12361], + [22063,7893], + [22065,12081], + [22067,8443], + [22069,10627], + [22071,9434], + [22073,14823], + [22075,5322], + [22077,9638], + [22079,14369], + [22081,4019], + [22083,11183], + [22085,7288], + [22087,8726], + [22089,7492], + [22091,3358], + [22093,7669], + [22095,9492], + [22097,10633], + [22099,7897], + [22101,9933], + [22103,15382], + [22105,15059], + [22107,5498], + [22109,17633], + [22111,6521], + [22113,9317], + [22115,6692], + [22117,7241], + [22119,11899], + [22121,14125], + [22123,5905], + [22125,4362], + [22127,7884], + [23001,15973], + [23003,15350], + [23005,19119], + [23007,12807], + [23009,15363], + [23011,19729], + [23013,15659], + [23015,12412], + [23017,8647], + [23019,20080], + [23021,11440], + [23023,11359], + [23025,11211], + [23027,8857], + [23029,12360], + [23031,11389], + [24001,11907], + [24003,18491], + [24005,15341], + [24009,8291], + [24011,12341], + [24013,12645], + [24015,11063], + [24017,16846], + [24019,10030], + [24021,13629], + [24023,14550], + [24025,14066], + [24027,16622], + [24029,9917], + [24031,14080], + [24033,11060], + [24035,13203], + [24037,11883], + [24039,4011], + [24041,19732], + [24043,16988], + [24045,19078], + [24047,17779], + [24510,6793], + [25001,17878], + [25003,14605], + [25005,15882], + [25007,22333], + [25009,13399], + [25011,9628], + [25013,12119], + [25015,9962], + [25017,13325], + [25019,30997], + [25021,17133], + [25023,13463], + [25025,10381], + [25027,12634], + [26001,4848], + [26003,5636], + [26005,7805], + [26007,14018], + [26009,6480], + [26011,7144], + [26013,7801], + [26015,4676], + [26017,12117], + [26019,7488], + [26021,10150], + [26023,8581], + [26025,11496], + [26027,3623], + [26029,8437], + [26031,11806], + [26033,9521], + [26035,8021], + [26037,9061], + [26039,14942], + [26041,12298], + [26043,15399], + [26045,12383], + [26047,17380], + [26049,11142], + [26051,5336], + [26053,8543], + [26055,18415], + [26057,7464], + [26059,6964], + [26061,9599], + [26063,9727], + [26065,11328], + [26067,6976], + [26069,10272], + [26071,8496], + [26073,10577], + [26075,10393], + [26077,11481], + [26079,8400], + [26081,13377], + [26083,1465], + [26085,4801], + [26087,8707], + [26089,5857], + [26091,9336], + [26093,11260], + [26095,11044], + [26097,14289], + [26099,12074], + [26101,9096], + [26103,11200], + [26105,11540], + [26107,11352], + [26109,6914], + [26111,10524], + [26113,6143], + [26115,9555], + [26117,8962], + [26119,6862], + [26121,9507], + [26123,7213], + [26125,15131], + [26127,6164], + [26129,17118], + [26131,8767], + [26133,6562], + [26135,6379], + [26137,20761], + [26139,9149], + [26141,7339], + [26143,13327], + [26145,12546], + [26147,9424], + [26149,8971], + [26151,6918], + [26153,13097], + [26155,8568], + [26157,7624], + [26159,7145], + [26161,10584], + [26163,8720], + [26165,16573], + [27001,9211], + [27003,11435], + [27005,11723], + [27007,14510], + [27009,12524], + [27011,6147], + [27013,20200], + [27015,11618], + [27017,10620], + [27019,9139], + [27021,9663], + [27023,13563], + [27025,8586], + [27027,11534], + [27029,5213], + [27031,11420], + [27033,7982], + [27035,18535], + [27037,13231], + [27039,4727], + [27041,17390], + [27043,7861], + [27045,8404], + [27047,15755], + [27049,13030], + [27051,9421], + [27053,19646], + [27055,7810], + [27057,10722], + [27059,10414], + [27061,11733], + [27063,7346], + [27065,9309], + [27067,14621], + [27069,9212], + [27071,12325], + [27073,8474], + [27075,11121], + [27077,9847], + [27079,7359], + [27081,9136], + [27083,15250], + [27085,12850], + [27087,3997], + [27089,12580], + [27091,13145], + [27093,7488], + [27095,9603], + [27097,11034], + [27099,9133], + [27101,5492], + [27103,5186], + [27105,15111], + [27107,7965], + [27109,15631], + [27111,12366], + [27113,15204], + [27115,8636], + [27117,11968], + [27119,9692], + [27121,9428], + [27123,12328], + [27125,9959], + [27127,10057], + [27129,7246], + [27131,9666], + [27133,11531], + [27135,11273], + [27137,14051], + [27139,9270], + [27141,9845], + [27143,5011], + [27145,16539], + [27147,14959], + [27149,17786], + [27151,7272], + [27153,6664], + [27155,12380], + [27157,9685], + [27159,13284], + [27161,8424], + [27163,11886], + [27165,6402], + [27167,8675], + [27169,13403], + [27171,12448], + [27173,11221], + [28001,13528], + [28003,14756], + [28005,2727], + [28007,8756], + [28009,3141], + [28011,8116], + [28013,6445], + [28015,2344], + [28017,6785], + [28019,3424], + [28021,3675], + [28023,3346], + [28025,6037], + [28027,9448], + [28029,4889], + [28031,8453], + [28033,13825], + [28035,26812], + [28037,2507], + [28039,10510], + [28041,2857], + [28043,16312], + [28045,9642], + [28047,16472], + [28049,12021], + [28051,5599], + [28053,8198], + [28055,0], + [28057,5876], + [28059,9964], + [28061,3839], + [28063,2073], + [28065,4508], + [28067,12212], + [28069,4670], + [28071,11711], + [28073,20858], + [28075,16936], + [28077,3530], + [28079,7927], + [28081,17967], + [28083,12503], + [28085,14629], + [28087,13596], + [28089,14172], + [28091,10098], + [28093,4559], + [28095,7610], + [28097,11892], + [28099,8565], + [28101,6500], + [28103,6993], + [28105,8838], + [28107,10918], + [28109,10779], + [28111,4951], + [28113,13694], + [28115,7068], + [28117,6359], + [28119,2815], + [28121,16103], + [28123,8050], + [28125,5644], + [28127,7640], + [28129,3206], + [28131,12237], + [28133,6825], + [28135,4315], + [28137,8833], + [28139,6101], + [28141,5867], + [28143,12457], + [28145,9965], + [28147,8113], + [28149,12405], + [28151,10413], + [28153,8466], + [28155,7119], + [28157,5857], + [28159,9297], + [28161,4341], + [28163,8056], + [29001,12590], + [29003,4751], + [29005,14207], + [29007,9643], + [29009,11466], + [29011,10623], + [29013,7994], + [29015,9379], + [29017,4912], + [29019,19777], + [29021,16199], + [29023,15437], + [29025,3691], + [29027,7660], + [29029,16779], + [29031,18626], + [29033,6161], + [29035,4668], + [29037,9180], + [29039,8694], + [29041,6682], + [29043,9781], + [29045,12319], + [29047,15427], + [29049,7019], + [29051,16357], + [29053,12858], + [29055,7267], + [29057,6222], + [29059,8610], + [29061,5630], + [29063,10405], + [29065,8310], + [29067,6979], + [29069,11781], + [29071,13268], + [29073,9486], + [29075,9511], + [29077,17856], + [29079,8765], + [29081,16382], + [29083,12697], + [29085,5516], + [29087,7214], + [29089,8968], + [29091,14163], + [29093,6524], + [29095,12347], + [29097,17111], + [29099,7919], + [29101,7940], + [29103,6876], + [29105,13316], + [29107,9230], + [29109,11171], + [29111,5933], + [29113,8413], + [29115,9230], + [29117,16582], + [29119,9735], + [29121,10118], + [29123,8661], + [29125,5125], + [29127,15033], + [29129,5850], + [29131,18214], + [29133,11946], + [29135,10580], + [29137,5219], + [29139,6829], + [29141,9221], + [29143,28850], + [29145,10809], + [29147,9377], + [29149,8789], + [29151,9940], + [29153,4913], + [29155,11275], + [29157,14060], + [29159,13415], + [29161,14900], + [29163,8746], + [29165,19821], + [29167,9140], + [29169,8479], + [29171,7916], + [29173,6189], + [29175,11460], + [29177,6023], + [29179,4484], + [29181,6815], + [29183,12822], + [29185,6861], + [29186,8311], + [29187,10930], + [29189,17347], + [29195,10141], + [29197,7858], + [29199,8205], + [29201,8780], + [29203,3137], + [29205,7606], + [29207,14717], + [29209,7087], + [29211,6623], + [29213,18157], + [29215,6845], + [29217,10004], + [29219,10438], + [29221,5116], + [29223,5255], + [29225,8197], + [29227,6359], + [29229,13121], + [29510,7020], + [30001,13877], + [30003,6852], + [30005,6813], + [30007,12928], + [30009,6219], + [30011,9667], + [30013,15924], + [30015,8576], + [30017,17987], + [30019,15806], + [30021,13784], + [30023,8067], + [30025,9926], + [30027,12093], + [30029,18135], + [30031,20524], + [30033,8583], + [30035,7956], + [30037,"NA"], + [30039,8239], + [30041,14015], + [30043,3584], + [30045,2667], + [30047,9855], + [30049,16180], + [30051,8673], + [30053,9102], + [30055,10497], + [30057,6628], + [30059,8541], + [30061,11886], + [30063,20589], + [30065,7526], + [30067,13036], + [30069,"NA"], + [30071,8612], + [30073,10886], + [30075,8108], + [30077,4921], + [30079,7025], + [30081,8556], + [30083,14138], + [30085,9869], + [30087,5847], + [30089,7460], + [30091,9450], + [30093,15486], + [30095,11961], + [30097,11450], + [30099,7130], + [30101,10989], + [30103,"NA"], + [30105,11829], + [30107,9127], + [30109,4767], + [30111,20284], + [31001,10976], + [31003,8534], + [31005,2519], + [31007,0], + [31009,"NA"], + [31011,14818], + [31013,7443], + [31015,6300], + [31017,15169], + [31019,16483], + [31021,5793], + [31023,8617], + [31025,7196], + [31027,14277], + [31029,16394], + [31031,13802], + [31033,"NA"], + [31035,9604], + [31037,10802], + [31039,18835], + [31041,10906], + [31043,8368], + [31045,18763], + [31047,13937], + [31049,54087], + [31051,5948], + [31053,18547], + [31055,16306], + [31057,7074], + [31059,6576], + [31061,5522], + [31063,5567], + [31065,10789], + [31067,10321], + [31069,6720], + [31071,15744], + [31073,1195], + [31075,"NA"], + [31077,10871], + [31079,19639], + [31081,10863], + [31083,7708], + [31085,"NA"], + [31087,"NA"], + [31089,13980], + [31091,"NA"], + [31093,7498], + [31095,16744], + [31097,6828], + [31099,4523], + [31101,25472], + [31103,"NA"], + [31105,13589], + [31107,9544], + [31109,13351], + [31111,17911], + [31113,"NA"], + [31115,"NA"], + [31117,"NA"], + [31119,19020], + [31121,6009], + [31123,9242], + [31125,6330], + [31127,8542], + [31129,11844], + [31131,9459], + [31133,5347], + [31135,15558], + [31137,10350], + [31139,5717], + [31141,15542], + [31143,6843], + [31145,16520], + [31147,8481], + [31149,"NA"], + [31151,7410], + [31153,15630], + [31155,7398], + [31157,14283], + [31159,6662], + [31161,9302], + [31163,12043], + [31165,"NA"], + [31167,5201], + [31169,10654], + [31171,"NA"], + [31173,7443], + [31175,15780], + [31177,32377], + [31179,8580], + [31181,6642], + [31183,"NA"], + [31185,16968], + [32001,10725], + [32003,14509], + [32005,14645], + [32007,16842], + [32009,"NA"], + [32011,10605], + [32013,18936], + [32015,10812], + [32017,6970], + [32019,7100], + [32021,"NA"], + [32023,9004], + [32027,6751], + [32029,1580], + [32031,16409], + [32033,9748], + [32510,18025], + [33001,22099], + [33003,18569], + [33005,21293], + [33007,18656], + [33009,22919], + [33011,18989], + [33013,17536], + [33015,21603], + [33017,13701], + [33019,13154], + [34001,16409], + [34003,18602], + [34005,15695], + [34007,11321], + [34009,16390], + [34011,12566], + [34013,10077], + [34015,15216], + [34017,10350], + [34019,16865], + [34021,14004], + [34023,14274], + [34025,17511], + [34027,18032], + [34029,12922], + [34031,13546], + [34033,10146], + [34035,17946], + [34037,11359], + [34039,14069], + [34041,14137], + [35001,14942], + [35003,2084], + [35005,13392], + [35006,7992], + [35007,12049], + [35009,13109], + [35011,6641], + [35013,9715], + [35015,10980], + [35017,8747], + [35019,24941], + [35021,1789], + [35023,22609], + [35025,13217], + [35027,11791], + [35028,5279], + [35029,8835], + [35031,13254], + [35033,2799], + [35035,8338], + [35037,16018], + [35039,7689], + [35041,8752], + [35043,9484], + [35045,14245], + [35047,9725], + [35049,16923], + [35051,6634], + [35053,6955], + [35055,9781], + [35057,9501], + [35059,7399], + [35061,7995], + [36001,18121], + [36003,5626], + [36005,4000], + [36007,13196], + [36009,12572], + [36011,11060], + [36013,10178], + [36015,13710], + [36017,10134], + [36019,14598], + [36021,10249], + [36023,10828], + [36025,8417], + [36027,12334], + [36029,12302], + [36031,11338], + [36033,9437], + [36035,10478], + [36037,12134], + [36039,12670], + [36041,6358], + [36043,8058], + [36045,15834], + [36047,6077], + [36049,6677], + [36051,9291], + [36053,9506], + [36055,11628], + [36057,12792], + [36059,17969], + [36061,23872], + [36063,9689], + [36065,11912], + [36067,14048], + [36069,18243], + [36071,15228], + [36073,6198], + [36075,8186], + [36077,14991], + [36079,9315], + [36081,6404], + [36083,8915], + [36085,7974], + [36087,13019], + [36089,11304], + [36091,20838], + [36093,11074], + [36095,8422], + [36097,9504], + [36099,12435], + [36101,11168], + [36103,15426], + [36105,10670], + [36107,5996], + [36109,10141], + [36111,12346], + [36113,21005], + [36115,7759], + [36117,8922], + [36119,15007], + [36121,8078], + [36123,7290], + [37001,13595], + [37003,5957], + [37005,6719], + [37007,7145], + [37009,11474], + [37011,11084], + [37013,12504], + [37015,4780], + [37017,6086], + [37019,10070], + [37021,15862], + [37023,7443], + [37025,17253], + [37027,8173], + [37029,2864], + [37031,15467], + [37033,2281], + [37035,17251], + [37037,9113], + [37039,15242], + [37041,9235], + [37043,13167], + [37045,9448], + [37047,9769], + [37049,11512], + [37051,12624], + [37053,11058], + [37055,25548], + [37057,8101], + [37059,10066], + [37061,7879], + [37063,12257], + [37065,6204], + [37067,14953], + [37069,6500], + [37071,11096], + [37073,2895], + [37075,5834], + [37077,5757], + [37079,4731], + [37081,15600], + [37083,11061], + [37085,8029], + [37087,14501], + [37089,14699], + [37091,10828], + [37093,2877], + [37095,5138], + [37097,15114], + [37099,11900], + [37101,12565], + [37103,3171], + [37105,13219], + [37107,14876], + [37109,9800], + [37111,11066], + [37113,14571], + [37115,3757], + [37117,9640], + [37119,16306], + [37121,10953], + [37123,7655], + [37125,11819], + [37127,13643], + [37129,20126], + [37131,4928], + [37133,11698], + [37135,9583], + [37137,5546], + [37139,17009], + [37141,6674], + [37143,5546], + [37145,10302], + [37147,14302], + [37149,5764], + [37151,8303], + [37153,9232], + [37155,10470], + [37157,9121], + [37159,8474], + [37161,10144], + [37163,9126], + [37165,9928], + [37167,10306], + [37169,4921], + [37171,14614], + [37173,8417], + [37175,8885], + [37177,7392], + [37179,9214], + [37181,13553], + [37183,15147], + [37185,3222], + [37187,8370], + [37189,17836], + [37191,12251], + [37193,11390], + [37195,13816], + [37197,6366], + [37199,8103], + [38001,13406], + [38003,13681], + [38005,2928], + [38007,1510], + [38009,8936], + [38011,21609], + [38013,9718], + [38015,18153], + [38017,20953], + [38019,21680], + [38021,14514], + [38023,5866], + [38025,11937], + [38027,13423], + [38029,7640], + [38031,23423], + [38033,30185], + [38035,18742], + [38037,5088], + [38039,4707], + [38041,19577], + [38043,12090], + [38045,9075], + [38047,11031], + [38049,7124], + [38051,17811], + [38053,6650], + [38055,6332], + [38057,10763], + [38059,13238], + [38061,18342], + [38063,7563], + [38065,5844], + [38067,11867], + [38069,20927], + [38071,20873], + [38073,9383], + [38075,10513], + [38077,12424], + [38079,7847], + [38081,6773], + [38083,3317], + [38085,3195], + [38087,0], + [38089,18005], + [38091,14052], + [38093,15146], + [38095,3140], + [38097,8988], + [38099,8972], + [38101,19949], + [38103,15168], + [38105,20610], + [39001,7485], + [39003,15039], + [39005,7638], + [39007,10627], + [39009,8959], + [39011,10616], + [39013,12993], + [39015,5987], + [39017,13616], + [39019,5687], + [39021,7264], + [39023,9977], + [39025,12577], + [39027,10489], + [39029,9782], + [39031,7151], + [39033,7671], + [39035,11193], + [39037,8567], + [39039,14543], + [39041,14508], + [39043,13377], + [39045,9634], + [39047,21602], + [39049,17288], + [39051,9561], + [39053,11534], + [39055,9332], + [39057,12776], + [39059,11596], + [39061,12419], + [39063,14703], + [39065,6075], + [39067,3418], + [39069,9260], + [39071,8679], + [39073,7553], + [39075,8719], + [39077,9166], + [39079,10092], + [39081,10525], + [39083,9189], + [39085,14759], + [39087,8107], + [39089,11324], + [39091,9042], + [39093,10646], + [39095,12493], + [39097,22988], + [39099,12567], + [39101,10301], + [39103,12439], + [39105,5424], + [39107,9664], + [39109,10704], + [39111,4401], + [39113,12719], + [39115,3605], + [39117,4847], + [39119,13214], + [39121,7218], + [39123,11195], + [39125,5069], + [39127,3894], + [39129,7673], + [39131,7058], + [39133,10630], + [39135,10638], + [39137,7300], + [39139,11818], + [39141,10947], + [39143,9845], + [39145,9170], + [39147,8087], + [39149,8884], + [39151,13068], + [39153,13558], + [39155,10872], + [39157,11800], + [39159,10039], + [39161,8403], + [39163,3241], + [39165,9129], + [39167,10715], + [39169,9760], + [39171,8708], + [39173,12175], + [39175,8460], + [40001,4941], + [40003,5983], + [40005,9472], + [40007,4123], + [40009,25187], + [40011,5917], + [40013,8075], + [40015,8231], + [40017,10685], + [40019,14526], + [40021,7378], + [40023,7928], + [40025,12520], + [40027,10692], + [40029,6735], + [40031,10539], + [40033,5256], + [40035,12665], + [40037,7529], + [40039,15754], + [40041,7223], + [40043,9932], + [40045,10745], + [40047,12834], + [40049,12248], + [40051,8727], + [40053,12196], + [40055,4834], + [40057,6240], + [40059,6355], + [40061,10827], + [40063,6407], + [40065,13604], + [40067,5590], + [40069,7163], + [40071,12543], + [40073,12968], + [40075,5955], + [40077,3878], + [40079,7583], + [40081,5025], + [40083,7382], + [40085,6221], + [40087,12949], + [40089,7800], + [40091,13552], + [40093,10966], + [40095,8529], + [40097,10425], + [40099,15312], + [40101,12789], + [40103,7915], + [40105,2325], + [40107,5774], + [40109,15382], + [40111,8391], + [40113,3801], + [40115,8921], + [40117,5005], + [40119,10449], + [40121,13661], + [40123,11232], + [40125,9864], + [40127,6432], + [40129,13078], + [40131,7979], + [40133,8018], + [40135,8845], + [40137,11474], + [40139,9063], + [40141,4419], + [40143,16366], + [40145,4112], + [40147,12552], + [40149,6572], + [40151,11779], + [40153,17219], + [41001,9710], + [41003,8398], + [41005,13567], + [41007,16299], + [41009,7306], + [41011,11339], + [41013,6147], + [41015,10555], + [41017,18311], + [41019,11276], + [41021,8141], + [41023,10560], + [41025,12936], + [41027,13872], + [41029,17255], + [41031,8056], + [41033,12694], + [41035,11845], + [41037,7219], + [41039,12912], + [41041,12180], + [41043,10248], + [41045,15637], + [41047,12950], + [41049,1537], + [41051,14157], + [41053,5007], + [41055,33162], + [41057,8988], + [41059,10482], + [41061,13318], + [41063,12127], + [41065,16089], + [41067,16886], + [41069,7419], + [41071,9890], + [42001,8222], + [42003,16456], + [42005,7734], + [42007,8989], + [42009,11712], + [42011,12307], + [42013,16182], + [42015,11864], + [42017,21067], + [42019,13849], + [42021,11212], + [42023,5534], + [42025,7661], + [42027,11134], + [42029,23255], + [42031,10563], + [42033,13875], + [42035,14025], + [42037,12752], + [42039,9859], + [42041,16179], + [42043,15064], + [42045,11456], + [42047,8922], + [42049,12253], + [42051,10661], + [42053,2779], + [42055,12323], + [42057,6789], + [42059,10998], + [42061,7977], + [42063,14627], + [42065,10594], + [42067,8560], + [42069,15185], + [42071,13101], + [42073,10447], + [42075,11612], + [42077,15047], + [42079,16746], + [42081,12482], + [42083,9679], + [42085,12308], + [42087,11435], + [42089,12236], + [42091,19534], + [42093,8835], + [42095,11550], + [42097,8744], + [42099,8712], + [42101,7299], + [42103,6847], + [42105,8080], + [42107,8952], + [42109,14756], + [42111,9838], + [42113,7205], + [42115,9827], + [42117,10162], + [42119,8536], + [42121,10846], + [42123,11837], + [42125,11097], + [42127,13355], + [42129,11441], + [42131,10329], + [42133,11724], + [44001,5917], + [44003,19228], + [44005,13483], + [44007,9430], + [44009,13619], + [45001,2841], + [45003,10450], + [45005,3129], + [45007,11128], + [45009,6679], + [45011,7361], + [45013,15240], + [45015,9497], + [45017,4523], + [45019,18348], + [45021,13261], + [45023,6460], + [45025,6947], + [45027,9062], + [45029,10721], + [45031,7902], + [45033,12419], + [45035,7092], + [45037,4732], + [45039,9280], + [45041,16919], + [45043,11634], + [45045,13999], + [45047,11313], + [45049,7146], + [45051,19797], + [45053,18044], + [45055,9883], + [45057,7998], + [45059,5315], + [45061,7684], + [45063,15027], + [45065,3449], + [45067,7925], + [45069,5499], + [45071,9707], + [45073,10518], + [45075,11113], + [45077,9935], + [45079,12127], + [45081,3870], + [45083,13148], + [45085,9801], + [45087,6936], + [45089,6367], + [45091,10315], + [46003,13292], + [46005,15595], + [46007,7031], + [46009,5807], + [46011,11458], + [46013,19735], + [46015,15191], + [46017,"NA"], + [46019,11491], + [46021,2810], + [46023,9164], + [46025,6006], + [46027,10410], + [46029,21311], + [46031,2536], + [46033,6529], + [46035,22997], + [46037,9023], + [46039,8651], + [46041,3976], + [46043,7384], + [46045,10049], + [46047,9531], + [46049,8918], + [46051,13951], + [46053,13072], + [46055,13207], + [46057,8750], + [46059,9283], + [46061,1665], + [46063,7458], + [46065,15487], + [46067,10158], + [46069,26123], + [46071,10601], + [46073,10466], + [46075,22144], + [46077,6414], + [46079,11723], + [46081,18679], + [46083,11773], + [46085,17779], + [46087,7604], + [46089,6307], + [46091,11359], + [46093,8067], + [46095,4529], + [46097,4389], + [46099,21711], + [46101,5878], + [46102,2883], + [46103,20388], + [46105,9613], + [46107,12226], + [46109,8149], + [46111,2744], + [46115,6197], + [46117,10975], + [46119,22180], + [46121,3911], + [46123,15407], + [46125,6266], + [46127,21752], + [46129,14187], + [46135,13498], + [46137,"NA"], + [47001,12381], + [47003,7649], + [47005,8472], + [47007,2335], + [47009,12945], + [47011,12196], + [47013,8920], + [47015,3991], + [47017,6564], + [47019,7826], + [47021,6100], + [47023,7319], + [47025,5011], + [47027,4706], + [47029,9236], + [47031,15285], + [47033,4515], + [47035,11208], + [47037,17029], + [47039,8594], + [47041,6424], + [47043,12779], + [47045,13643], + [47047,3402], + [47049,8075], + [47051,8341], + [47053,9063], + [47055,10799], + [47057,3515], + [47059,10355], + [47061,4717], + [47063,17030], + [47065,14695], + [47067,3649], + [47069,5711], + [47071,11995], + [47073,5031], + [47075,9425], + [47077,10450], + [47079,12824], + [47081,3233], + [47083,4152], + [47085,9964], + [47087,2560], + [47089,10994], + [47091,5156], + [47093,19329], + [47095,2635], + [47097,5708], + [47099,9318], + [47101,11519], + [47103,11198], + [47105,9607], + [47107,10770], + [47109,7664], + [47111,7713], + [47113,17559], + [47115,10227], + [47117,9179], + [47119,11170], + [47121,2549], + [47123,10109], + [47125,12125], + [47127,2701], + [47129,2986], + [47131,12779], + [47133,5283], + [47135,3163], + [47137,4933], + [47139,4305], + [47141,17059], + [47143,8206], + [47145,8186], + [47147,9862], + [47149,11588], + [47151,7270], + [47153,7820], + [47155,19548], + [47157,12971], + [47159,6246], + [47161,4889], + [47163,13200], + [47165,8521], + [47167,7002], + [47169,5409], + [47171,6751], + [47173,3198], + [47175,1692], + [47177,9363], + [47179,16014], + [47181,4020], + [47183,7986], + [47185,7828], + [47187,19834], + [47189,10935], + [48001,8731], + [48003,7480], + [48005,14216], + [48007,9929], + [48009,4425], + [48011,1147], + [48013,8324], + [48015,8785], + [48017,6642], + [48019,3766], + [48021,9485], + [48023,7026], + [48025,7619], + [48027,12035], + [48029,14359], + [48031,5627], + [48033,"NA"], + [48035,5989], + [48037,16768], + [48039,10094], + [48041,12425], + [48043,9461], + [48045,4458], + [48047,10914], + [48049,13406], + [48051,11101], + [48053,14609], + [48055,8143], + [48057,15877], + [48059,8937], + [48061,10221], + [48063,7738], + [48065,7952], + [48067,7388], + [48069,5579], + [48071,9540], + [48073,7547], + [48075,10014], + [48077,6984], + [48079,8706], + [48081,7233], + [48083,5646], + [48085,16850], + [48087,5788], + [48089,11050], + [48091,14632], + [48093,8744], + [48095,4930], + [48097,13006], + [48099,6096], + [48101,8219], + [48103,12379], + [48105,15572], + [48107,3807], + [48109,42653], + [48111,13911], + [48113,13929], + [48115,10747], + [48117,12227], + [48119,4920], + [48121,12465], + [48123,8108], + [48125,4577], + [48127,7658], + [48129,7637], + [48131,4084], + [48133,14170], + [48135,16222], + [48137,6063], + [48139,9265], + [48141,11625], + [48143,12543], + [48145,4249], + [48147,9044], + [48149,11611], + [48151,3040], + [48153,6026], + [48155,5037], + [48157,10440], + [48159,7968], + [48161,13512], + [48163,6679], + [48165,5575], + [48167,9700], + [48169,7370], + [48171,13247], + [48173,"NA"], + [48175,5332], + [48177,9252], + [48179,"NA"], + [48181,13493], + [48183,20568], + [48185,6110], + [48187,9115], + [48189,9120], + [48191,6817], + [48193,9734], + [48195,11548], + [48197,5387], + [48199,11835], + [48201,13276], + [48203,9541], + [48205,6549], + [48207,11504], + [48209,13765], + [48211,11855], + [48213,8341], + [48215,11254], + [48217,11364], + [48219,9075], + [48221,14785], + [48223,13159], + [48225,7027], + [48227,10608], + [48229,3898], + [48231,11302], + [48233,9707], + [48235,"NA"], + [48237,3926], + [48239,9533], + [48241,10809], + [48243,3227], + [48245,16453], + [48247,12577], + [48249,11263], + [48251,8490], + [48253,8527], + [48255,6766], + [48257,9770], + [48259,25877], + [48261,0], + [48263,"NA"], + [48265,15159], + [48267,17777], + [48269,0], + [48271,2430], + [48273,21446], + [48275,9896], + [48277,13019], + [48279,6933], + [48281,10008], + [48283,13480], + [48285,9224], + [48287,10056], + [48289,9761], + [48291,8729], + [48293,11976], + [48295,8169], + [48297,9981], + [48299,6183], + [48301,0], + [48303,14929], + [48305,3415], + [48307,13357], + [48309,12892], + [48311,"NA"], + [48313,13503], + [48315,6230], + [48317,10274], + [48319,7426], + [48321,8547], + [48323,9897], + [48325,8231], + [48327,7758], + [48329,18058], + [48331,7334], + [48333,14123], + [48335,6003], + [48337,10894], + [48339,12748], + [48341,10995], + [48343,5402], + [48345,4085], + [48347,11048], + [48349,9664], + [48351,3704], + [48353,12325], + [48355,13529], + [48357,10288], + [48359,8118], + [48361,10328], + [48363,9972], + [48365,9638], + [48367,13971], + [48369,4199], + [48371,9730], + [48373,9587], + [48375,20620], + [48377,5616], + [48379,8372], + [48381,12995], + [48383,7936], + [48385,3128], + [48387,4687], + [48389,10197], + [48391,8465], + [48393,"NA"], + [48395,7285], + [48397,12797], + [48399,12439], + [48401,7313], + [48403,5116], + [48405,8070], + [48407,2207], + [48409,9101], + [48411,10246], + [48413,3770], + [48415,12443], + [48417,4764], + [48419,9345], + [48421,3486], + [48423,15706], + [48425,7164], + [48427,7306], + [48429,8334], + [48431,"NA"], + [48433,6254], + [48435,9762], + [48437,4619], + [48439,14582], + [48441,16305], + [48443,4226], + [48445,11012], + [48447,4195], + [48449,14594], + [48451,"NA"], + [48453,14302], + [48455,4067], + [48457,5665], + [48459,5777], + [48461,5618], + [48463,12137], + [48465,11036], + [48467,7915], + [48469,16648], + [48471,9835], + [48473,16554], + [48475,9327], + [48477,15900], + [48479,12621], + [48481,11439], + [48483,9676], + [48485,13382], + [48487,12382], + [48489,6040], + [48491,26573], + [48493,4609], + [48495,6169], + [48497,9819], + [48499,9072], + [48501,4976], + [48503,10447], + [48505,4586], + [48507,2860], + [49001,14776], + [49003,9348], + [49005,10079], + [49007,15197], + [49009,"NA"], + [49011,11177], + [49013,13340], + [49015,12435], + [49017,5094], + [49019,16973], + [49021,15067], + [49023,11743], + [49025,11098], + [49027,10521], + [49029,5058], + [49031,"NA"], + [49033,5601], + [49035,16718], + [49037,3102], + [49039,8016], + [49041,16494], + [49043,18614], + [49045,9204], + [49047,15958], + [49049,11254], + [49051,11197], + [49053,15781], + [49055,11197], + [49057,12715], + [50001,12657], + [50003,22861], + [50005,13565], + [50007,18188], + [50009,2325], + [50011,11383], + [50013,5229], + [50015,12412], + [50017,8181], + [50019,11858], + [50021,17136], + [50023,16125], + [50025,15120], + [50027,12147], + [51001,7749], + [51003,18213], + [51005,7491], + [51007,5368], + [51009,9702], + [51011,7551], + [51013,12176], + [51015,8890], + [51017,4498], + [51019,7029], + [51021,5622], + [51023,7661], + [51025,4203], + [51027,6118], + [51029,4306], + [51031,9742], + [51033,13410], + [51035,6962], + [51036,1528], + [51037,5074], + [51041,15419], + [51043,6381], + [51045,3085], + [51047,11972], + [51049,4830], + [51051,7662], + [51053,4472], + [51057,20827], + [51059,13925], + [51061,12845], + [51063,4929], + [51065,3144], + [51067,8657], + [51069,15427], + [51071,10026], + [51073,13071], + [51075,8914], + [51077,2946], + [51079,5330], + [51081,8558], + [51083,9148], + [51085,17245], + [51087,23251], + [51089,7860], + [51091,3700], + [51093,6063], + [51095,10752], + [51097,2357], + [51099,6873], + [51101,8060], + [51103,14500], + [51105,6868], + [51107,16109], + [51109,4840], + [51111,4227], + [51113,8245], + [51115,6566], + [51117,12684], + [51119,8879], + [51121,12350], + [51125,4967], + [51127,7837], + [51131,10072], + [51133,7006], + [51135,8713], + [51137,8659], + [51139,6925], + [51141,7904], + [51143,4421], + [51145,5794], + [51147,16279], + [51149,5510], + [51153,13724], + [51155,9062], + [51157,3042], + [51159,8259], + [51161,9281], + [51163,15786], + [51165,6171], + [51167,8806], + [51169,8634], + [51171,12176], + [51173,9388], + [51175,3144], + [51177,18064], + [51179,7701], + [51181,1780], + [51183,5698], + [51185,18473], + [51187,10182], + [51191,13292], + [51193,5794], + [51195,10513], + [51197,31847], + [51199,13854], + [51510,16785], + [51520,19709], + [51530,4900], + [51540,16950], + [51550,18152], + [51570,42981], + [51580,16849], + [51590,19845], + [51595,23509], + [51600,80800], + [51610,26089], + [51620,21041], + [51630,47014], + [51640,33474], + [51650,12334], + [51660,33306], + [51670,7534], + [51678,12564], + [51680,23171], + [51683,26459], + [51685,13701], + [51690,21799], + [51700,12593], + [51710,11540], + [51720,76514], + [51730,9823], + [51735,4628], + [51740,6728], + [51750,6789], + [51760,9583], + [51770,21922], + [51775,21445], + [51790,18861], + [51800,10108], + [51810,12853], + [51820,17871], + [51830,26058], + [51840,38614], + [53001,8547], + [53003,9867], + [53005,13309], + [53007,14460], + [53009,11929], + [53011,10008], + [53013,7308], + [53015,12129], + [53017,11387], + [53019,4758], + [53021,11342], + [53023,5582], + [53025,9355], + [53027,10773], + [53029,6430], + [53031,7204], + [53033,20002], + [53035,12333], + [53037,12316], + [53039,3268], + [53041,12355], + [53043,8923], + [53045,7395], + [53047,10538], + [53049,5335], + [53051,5208], + [53053,12585], + [53055,10161], + [53057,18362], + [53059,2418], + [53061,13402], + [53063,14777], + [53065,6712], + [53067,12999], + [53069,2947], + [53071,9286], + [53073,13254], + [53075,6598], + [53077,10442], + [54001,4848], + [54003,8885], + [54005,7589], + [54007,15088], + [54009,6673], + [54011,15844], + [54013,4714], + [54015,4101], + [54017,2666], + [54019,7467], + [54021,4968], + [54023,9974], + [54025,14127], + [54027,4958], + [54029,7934], + [54031,9736], + [54033,16878], + [54035,11504], + [54037,8932], + [54039,15429], + [54041,12426], + [54043,3309], + [54045,13941], + [54047,5664], + [54049,10838], + [54051,8199], + [54053,5320], + [54055,12455], + [54057,8314], + [54059,4057], + [54061,14727], + [54063,2327], + [54065,5744], + [54067,13299], + [54069,14665], + [54071,5227], + [54073,5404], + [54075,7012], + [54077,7285], + [54079,10725], + [54081,16039], + [54083,11252], + [54085,5843], + [54087,9392], + [54089,4070], + [54091,5662], + [54093,7812], + [54095,5060], + [54097,12617], + [54099,5612], + [54101,4246], + [54103,12539], + [54105,2509], + [54107,19847], + [54109,6231], + [55001,6381], + [55003,11918], + [55005,14719], + [55007,7164], + [55009,14551], + [55011,5387], + [55013,7336], + [55015,8810], + [55017,17673], + [55019,7896], + [55021,11465], + [55023,12921], + [55025,14976], + [55027,8386], + [55029,14625], + [55031,11523], + [55033,8972], + [55035,15524], + [55037,4523], + [55039,12857], + [55041,5805], + [55043,9798], + [55045,21438], + [55047,13566], + [55049,72484], + [55051,11906], + [55053,12662], + [55055,10715], + [55057,10720], + [55059,11055], + [55061,7494], + [55063,16142], + [55065,6127], + [55067,15230], + [55069,9770], + [55071,10090], + [55073,16456], + [55075,12458], + [55077,5363], + [55078,1142], + [55079,10720], + [55081,11657], + [55083,6897], + [55085,25450], + [55087,16710], + [55089,11432], + [55091,12207], + [55093,5243], + [55095,9580], + [55097,13685], + [55099,8362], + [55101,11172], + [55103,12285], + [55105,15301], + [55107,13756], + [55109,11509], + [55111,18017], + [55113,13223], + [55115,10068], + [55117,12257], + [55119,9793], + [55121,9088], + [55123,8639], + [55125,14218], + [55127,10886], + [55129,10746], + [55131,13729], + [55133,15712], + [55135,9929], + [55137,8226], + [55139,11126], + [55141,13585], + [56001,14433], + [56003,6242], + [56005,19157], + [56007,19182], + [56009,10436], + [56011,8842], + [56013,14944], + [56015,9614], + [56017,8502], + [56019,8868], + [56021,19866], + [56023,13705], + [56025,19174], + [56027,8408], + [56029,14271], + [56031,11163], + [56033,17110], + [56035,10563], + [56037,22843], + [56039,25688], + [56041,20626], + [56043,12596], + [56045,9395] + ] +} diff --git a/data/regional/united-states/economics/retail/us-wholesale-merchants-sales-2007.json b/data/regional/united-states/economics/retail/us-wholesale-merchants-sales-2007.json new file mode 100644 index 0000000..c166978 --- /dev/null +++ b/data/regional/united-states/economics/retail/us-wholesale-merchants-sales-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Merchant Wholesaler Sales", + "description" : "Merchant wholesaler sales.", + "units" : "$", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","wholesale"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.wholesale.merchant.sales.2007"], + [1001,null], + [1003,null], + [1005,null], + [1007,null], + [1009,null], + [1011,null], + [1013,56712000], + [1015,null], + [1017,null], + [1019,62293000], + [1021,155139000], + [1023,52904000], + [1025,85803000], + [1027,null], + [1029,5888000], + [1031,131594000], + [1033,351388000], + [1035,76736000], + [1037,31647000], + [1039,338692000], + [1041,131874000], + [1043,null], + [1045,69341000], + [1047,null], + [1049,null], + [1051,104885000], + [1053,93125000], + [1055,518424000], + [1057,22463000], + [1059,67398000], + [1061,231687000], + [1063,null], + [1065,null], + [1067,null], + [1069,null], + [1071,null], + [1073,13756797000], + [1075,null], + [1077,514555000], + [1079,23787000], + [1081,null], + [1083,248292000], + [1085,null], + [1087,null], + [1089,2970410000], + [1091,64589000], + [1093,162519000], + [1095,1138701000], + [1097,3268730000], + [1099,92815000], + [1101,3275567000], + [1103,1213925000], + [1105,10360000], + [1107,36581000], + [1109,null], + [1111,26751000], + [1113,null], + [1115,317458000], + [1117,4385596000], + [1119,76499000], + [1121,null], + [1123,null], + [1125,760623000], + [1127,256377000], + [1129,32856000], + [1131,21337000], + [1133,165638000], + [2013,null], + [2016,62073000], + [2020,2914025000], + [2050,3454000], + [2060,null], + [2068,0], + [2070,null], + [2090,null], + [2100,null], + [2105,null], + [2110,null], + [2122,193745000], + [2130,null], + [2150,null], + [2158,null], + [2164,null], + [2170,136960000], + [2180,null], + [2185,135221000], + [2188,null], + [2195,20426000], + [2198,null], + [2220,null], + [2230,null], + [2240,null], + [2261,81239000], + [2275,null], + [2282,9957000], + [2290,null], + [4001,18138000], + [4003,102250000], + [4005,475616000], + [4007,null], + [4009,67967000], + [4011,null], + [4012,65901000], + [4013,49760315000], + [4015,423845000], + [4017,209493000], + [4019,3056767000], + [4021,450438000], + [4023,null], + [4025,831416000], + [4027,null], + [5001,134593000], + [5003,107302000], + [5005,null], + [5007,null], + [5009,null], + [5011,42794000], + [5013,null], + [5015,24110000], + [5017,120552000], + [5019,null], + [5021,116882000], + [5023,54394000], + [5025,1230000], + [5027,null], + [5029,124901000], + [5031,605938000], + [5033,null], + [5035,795836000], + [5037,174748000], + [5039,10852000], + [5041,230922000], + [5043,87552000], + [5045,266098000], + [5047,3128000], + [5049,8179000], + [5051,null], + [5053,48526000], + [5055,null], + [5057,32782000], + [5059,77002000], + [5061,45101000], + [5063,174997000], + [5065,null], + [5067,95424000], + [5069,null], + [5071,44214000], + [5073,null], + [5075,57963000], + [5077,84657000], + [5079,null], + [5081,13527000], + [5083,null], + [5085,161592000], + [5087,null], + [5089,null], + [5091,null], + [5093,null], + [5095,64682000], + [5097,null], + [5099,null], + [5101,null], + [5103,null], + [5105,1528000], + [5107,null], + [5109,92105000], + [5111,null], + [5113,47813000], + [5115,234454000], + [5117,28389000], + [5119,13418974000], + [5121,39297000], + [5123,null], + [5125,265183000], + [5127,9183000], + [5129,null], + [5131,1313822000], + [5133,null], + [5135,null], + [5137,32552000], + [5139,null], + [5141,50733000], + [5143,1328121000], + [5145,null], + [5147,90943000], + [5149,5811000], + [6001,35674007000], + [6003,0], + [6005,null], + [6007,796397000], + [6009,24179000], + [6011,183229000], + [6013,6643987000], + [6015,null], + [6017,363644000], + [6019,7846791000], + [6021,148410000], + [6023,null], + [6025,null], + [6027,null], + [6029,5730521000], + [6031,null], + [6033,null], + [6035,null], + [6037,198435837000], + [6039,353109000], + [6041,2373072000], + [6043,null], + [6045,null], + [6047,null], + [6049,null], + [6051,null], + [6053,null], + [6055,null], + [6057,null], + [6059,97963621000], + [6061,3898601000], + [6063,null], + [6065,16912263000], + [6067,15728050000], + [6069,319609000], + [6071,27579924000], + [6073,33704921000], + [6075,10562176000], + [6077,9001313000], + [6079,955049000], + [6081,12607786000], + [6083,4023586000], + [6085,60644055000], + [6087,null], + [6089,829031000], + [6091,null], + [6093,169098000], + [6095,null], + [6097,3953592000], + [6099,3759083000], + [6101,879004000], + [6103,null], + [6105,null], + [6107,null], + [6109,null], + [6111,null], + [6113,6483616000], + [6115,null], + [8001,11193392000], + [8003,85315000], + [8005,5774128000], + [8007,8772000], + [8009,52654000], + [8011,null], + [8013,2782109000], + [8014,null], + [8015,23550000], + [8017,51173000], + [8019,6955000], + [8021,3595000], + [8023,null], + [8025,0], + [8027,null], + [8029,60887000], + [8031,14920938000], + [8033,19209000], + [8035,null], + [8037,null], + [8039,13792000], + [8041,2810614000], + [8043,null], + [8045,442167000], + [8047,0], + [8049,5107000], + [8051,null], + [8053,0], + [8055,null], + [8057,null], + [8059,2514091000], + [8061,27022000], + [8063,166345000], + [8065,null], + [8067,null], + [8069,1265188000], + [8071,51612000], + [8073,null], + [8075,null], + [8077,1179281000], + [8079,null], + [8081,73158000], + [8083,52094000], + [8085,null], + [8087,null], + [8089,59844000], + [8091,1022000], + [8093,3435000], + [8095,150858000], + [8097,64678000], + [8099,81975000], + [8101,431008000], + [8103,null], + [8105,218177000], + [8107,187821000], + [8109,57075000], + [8111,null], + [8113,null], + [8115,null], + [8117,null], + [8119,26287000], + [8121,42615000], + [8123,null], + [8125,193564000], + [9001,78881637000], + [9003,15631406000], + [9005,null], + [9007,953882000], + [9009,9890749000], + [9011,null], + [9013,214311000], + [9015,546686000], + [10001,null], + [10003,null], + [10005,null], + [11001,2117990000], + [12001,null], + [12003,null], + [12005,644966000], + [12007,null], + [12009,1852661000], + [12011,31411627000], + [12013,null], + [12015,211715000], + [12017,null], + [12019,394349000], + [12021,1649037000], + [12023,478597000], + [12027,null], + [12029,null], + [12031,17205787000], + [12033,1838916000], + [12035,null], + [12037,null], + [12039,383966000], + [12041,2348000], + [12043,null], + [12045,null], + [12047,null], + [12049,null], + [12051,212095000], + [12053,177905000], + [12055,null], + [12057,17752902000], + [12059,null], + [12061,null], + [12063,70612000], + [12065,43717000], + [12067,null], + [12069,726344000], + [12071,2271601000], + [12073,791172000], + [12075,62754000], + [12077,null], + [12079,null], + [12081,1725496000], + [12083,1639464000], + [12085,741647000], + [12086,60760055000], + [12087,null], + [12089,null], + [12091,236877000], + [12093,85257000], + [12095,17080688000], + [12097,3044187000], + [12099,12017516000], + [12101,807398000], + [12103,12378394000], + [12105,13241719000], + [12107,null], + [12109,871130000], + [12111,693623000], + [12113,148932000], + [12115,1560297000], + [12117,2852650000], + [12119,null], + [12121,108657000], + [12123,null], + [12125,null], + [12127,2002931000], + [12129,7019000], + [12131,205148000], + [12133,null], + [13001,58142000], + [13003,null], + [13005,120704000], + [13007,null], + [13009,null], + [13011,23263000], + [13013,466296000], + [13015,648966000], + [13017,null], + [13019,68412000], + [13021,1613732000], + [13023,16882000], + [13025,null], + [13027,65887000], + [13029,154440000], + [13031,null], + [13033,null], + [13035,465389000], + [13037,16497000], + [13039,null], + [13043,24255000], + [13045,985854000], + [13047,151178000], + [13049,45988000], + [13051,3780143000], + [13053,null], + [13055,66428000], + [13057,848952000], + [13059,1782494000], + [13061,1533000], + [13063,3582346000], + [13065,null], + [13067,15524844000], + [13069,323863000], + [13071,184865000], + [13073,357458000], + [13075,51503000], + [13077,524585000], + [13079,null], + [13081,null], + [13083,null], + [13085,103913000], + [13087,null], + [13089,9361148000], + [13091,9821000], + [13093,61913000], + [13095,1175674000], + [13097,929175000], + [13099,131927000], + [13101,null], + [13103,63037000], + [13105,106277000], + [13107,93384000], + [13109,null], + [13111,41794000], + [13113,877241000], + [13115,636186000], + [13117,2503452000], + [13119,107788000], + [13121,40824135000], + [13123,45815000], + [13125,0], + [13127,270865000], + [13129,null], + [13131,201332000], + [13133,31905000], + [13135,28829120000], + [13137,null], + [13139,4914547000], + [13141,0], + [13143,53193000], + [13145,null], + [13147,58960000], + [13149,null], + [13151,3076624000], + [13153,null], + [13155,94087000], + [13157,568845000], + [13159,null], + [13161,35858000], + [13163,127174000], + [13165,null], + [13167,null], + [13169,42353000], + [13171,null], + [13173,null], + [13175,252146000], + [13177,118292000], + [13179,null], + [13181,9380000], + [13183,null], + [13185,756457000], + [13187,37439000], + [13189,null], + [13191,null], + [13193,39536000], + [13195,57790000], + [13197,null], + [13199,null], + [13201,14952000], + [13205,169162000], + [13207,null], + [13209,null], + [13211,54916000], + [13213,89355000], + [13215,1173616000], + [13217,226621000], + [13219,72919000], + [13221,8455000], + [13223,176471000], + [13225,null], + [13227,112023000], + [13229,null], + [13231,16741000], + [13233,null], + [13235,21369000], + [13237,75508000], + [13239,null], + [13241,null], + [13243,41661000], + [13245,916435000], + [13247,515574000], + [13249,null], + [13251,17545000], + [13253,48751000], + [13255,604327000], + [13257,null], + [13259,2608000], + [13261,238965000], + [13263,null], + [13265,0], + [13267,152023000], + [13269,21407000], + [13271,30505000], + [13273,null], + [13275,575289000], + [13277,612216000], + [13279,665035000], + [13281,6174000], + [13283,null], + [13285,null], + [13287,103211000], + [13289,null], + [13291,38051000], + [13293,null], + [13295,null], + [13297,260436000], + [13299,762673000], + [13301,null], + [13303,69978000], + [13305,null], + [13307,3477000], + [13309,8175000], + [13311,40427000], + [13313,1351910000], + [13315,null], + [13317,19021000], + [13319,13316000], + [13321,116373000], + [15001,732242000], + [15003,7377106000], + [15005,0], + [15007,209395000], + [15009,575929000], + [16001,6006918000], + [16003,null], + [16005,386587000], + [16007,23383000], + [16009,6085000], + [16011,null], + [16013,285858000], + [16015,0], + [16017,149654000], + [16019,1881605000], + [16021,19692000], + [16023,5209000], + [16025,0], + [16027,992925000], + [16029,94559000], + [16031,335892000], + [16033,null], + [16035,13677000], + [16037,0], + [16039,53448000], + [16041,49543000], + [16043,76724000], + [16045,13552000], + [16047,118908000], + [16049,64841000], + [16051,null], + [16053,103712000], + [16055,843286000], + [16057,null], + [16059,null], + [16061,null], + [16063,0], + [16065,161967000], + [16067,347045000], + [16069,null], + [16071,null], + [16073,34609000], + [16075,133096000], + [16077,null], + [16079,25007000], + [16081,null], + [16083,497639000], + [16085,20494000], + [16087,63380000], + [17001,null], + [17003,null], + [17005,217636000], + [17007,146167000], + [17009,null], + [17011,977575000], + [17013,null], + [17015,301803000], + [17017,331272000], + [17019,2575981000], + [17021,null], + [17023,176069000], + [17025,168802000], + [17027,281952000], + [17029,382885000], + [17031,83964561000], + [17033,90886000], + [17035,null], + [17037,249685000], + [17039,248857000], + [17041,290117000], + [17043,49574946000], + [17045,126747000], + [17047,147064000], + [17049,null], + [17051,322619000], + [17053,323108000], + [17055,72726000], + [17057,null], + [17059,23177000], + [17061,151301000], + [17063,438450000], + [17065,null], + [17067,200539000], + [17069,0], + [17071,null], + [17073,null], + [17075,614888000], + [17077,null], + [17079,257191000], + [17081,null], + [17083,null], + [17085,120531000], + [17087,16727000], + [17089,9589573000], + [17091,null], + [17093,1299755000], + [17095,null], + [17097,26053269000], + [17099,1208180000], + [17101,82733000], + [17103,null], + [17105,null], + [17107,null], + [17109,null], + [17111,2391154000], + [17113,5309346000], + [17115,null], + [17117,350368000], + [17119,1643600000], + [17121,null], + [17123,null], + [17125,192326000], + [17127,null], + [17129,128740000], + [17131,null], + [17133,null], + [17135,254264000], + [17137,425549000], + [17139,95187000], + [17141,null], + [17143,1609825000], + [17145,42904000], + [17147,263944000], + [17149,265271000], + [17151,0], + [17153,null], + [17155,null], + [17157,166393000], + [17159,250335000], + [17161,1437502000], + [17163,1661620000], + [17165,null], + [17167,1841290000], + [17169,null], + [17171,null], + [17173,157299000], + [17175,null], + [17177,null], + [17179,1225115000], + [17181,20504000], + [17183,null], + [17185,89502000], + [17187,219765000], + [17189,270495000], + [17191,126570000], + [17193,400258000], + [17195,926845000], + [17197,11061791000], + [17199,null], + [17201,2624724000], + [17203,null], + [18001,null], + [18003,null], + [18005,747332000], + [18007,null], + [18009,158855000], + [18011,386393000], + [18013,4299000], + [18015,null], + [18017,438966000], + [18019,1062039000], + [18021,null], + [18023,null], + [18025,null], + [18027,153709000], + [18029,null], + [18031,null], + [18033,null], + [18035,424060000], + [18037,530645000], + [18039,3231392000], + [18041,85936000], + [18043,1420463000], + [18045,124764000], + [18047,18626000], + [18049,62128000], + [18051,null], + [18053,null], + [18055,null], + [18057,2779456000], + [18059,519932000], + [18061,98576000], + [18063,2520749000], + [18065,180241000], + [18067,319544000], + [18069,null], + [18071,null], + [18073,163377000], + [18075,413695000], + [18077,null], + [18079,null], + [18081,682332000], + [18083,321523000], + [18085,null], + [18087,104569000], + [18089,3348813000], + [18091,856204000], + [18093,null], + [18095,574203000], + [18097,15780255000], + [18099,null], + [18101,51087000], + [18103,null], + [18105,683154000], + [18107,368625000], + [18109,185002000], + [18111,121634000], + [18113,null], + [18115,null], + [18117,52770000], + [18119,null], + [18121,24541000], + [18123,12925000], + [18125,64738000], + [18127,1463085000], + [18129,346707000], + [18131,262911000], + [18133,43013000], + [18135,113276000], + [18137,44459000], + [18139,162347000], + [18141,null], + [18143,null], + [18145,291027000], + [18147,181067000], + [18149,61452000], + [18151,97221000], + [18153,201464000], + [18155,3944000], + [18157,413344000], + [18159,141637000], + [18161,null], + [18163,2907819000], + [18165,null], + [18167,584135000], + [18169,168937000], + [18171,118293000], + [18173,412340000], + [18175,16287000], + [18177,325246000], + [18179,null], + [18181,235098000], + [18183,null], + [19001,29361000], + [19003,14217000], + [19005,154490000], + [19007,23061000], + [19009,47778000], + [19011,213218000], + [19013,1278450000], + [19015,null], + [19017,105620000], + [19019,624511000], + [19021,null], + [19023,288359000], + [19025,200683000], + [19027,1350539000], + [19029,151451000], + [19031,221842000], + [19033,650482000], + [19035,114673000], + [19037,210062000], + [19039,6297000], + [19041,425115000], + [19043,564637000], + [19045,190114000], + [19047,121956000], + [19049,218271000], + [19051,17902000], + [19053,76650000], + [19055,302380000], + [19057,null], + [19059,null], + [19061,1847726000], + [19063,103865000], + [19065,304189000], + [19067,121913000], + [19069,154569000], + [19071,105476000], + [19073,144862000], + [19075,269850000], + [19077,null], + [19079,558307000], + [19081,171681000], + [19083,1191033000], + [19085,130170000], + [19087,90587000], + [19089,143611000], + [19091,183078000], + [19093,147075000], + [19095,80218000], + [19097,109127000], + [19099,null], + [19101,114630000], + [19103,567646000], + [19105,144654000], + [19107,122304000], + [19109,318352000], + [19111,396254000], + [19113,2506126000], + [19115,null], + [19117,1472000], + [19119,215272000], + [19121,null], + [19123,null], + [19125,null], + [19127,298112000], + [19129,23046000], + [19131,228655000], + [19133,77612000], + [19135,46184000], + [19137,150731000], + [19139,377484000], + [19141,322652000], + [19143,null], + [19145,116438000], + [19147,132484000], + [19149,243010000], + [19151,86944000], + [19153,6697167000], + [19155,2256650000], + [19157,118099000], + [19159,26024000], + [19161,164976000], + [19163,null], + [19165,158609000], + [19167,753139000], + [19169,432009000], + [19171,154880000], + [19173,40979000], + [19175,384667000], + [19177,null], + [19179,null], + [19181,628117000], + [19183,185719000], + [19185,27010000], + [19187,null], + [19189,169959000], + [19191,167268000], + [19193,1739995000], + [19195,null], + [19197,291061000], + [20001,37176000], + [20003,53525000], + [20005,null], + [20007,35570000], + [20009,null], + [20011,554890000], + [20013,87482000], + [20015,130113000], + [20017,null], + [20019,null], + [20021,205501000], + [20023,54578000], + [20025,null], + [20027,99290000], + [20029,91801000], + [20031,52345000], + [20033,null], + [20035,null], + [20037,null], + [20039,60478000], + [20041,232637000], + [20043,null], + [20045,null], + [20047,74694000], + [20049,null], + [20051,144903000], + [20053,23009000], + [20055,null], + [20057,null], + [20059,168701000], + [20061,70826000], + [20063,104789000], + [20065,23088000], + [20067,253106000], + [20069,112701000], + [20071,null], + [20073,14147000], + [20075,34386000], + [20077,90981000], + [20079,90787000], + [20081,147070000], + [20083,null], + [20085,34453000], + [20087,9597000], + [20089,16800000], + [20091,16252012000], + [20093,19843000], + [20095,57048000], + [20097,71471000], + [20099,null], + [20101,12245000], + [20103,13167000], + [20105,24095000], + [20107,4347000], + [20109,53606000], + [20111,null], + [20113,null], + [20115,106706000], + [20117,128934000], + [20119,108345000], + [20121,72680000], + [20123,73323000], + [20125,null], + [20127,9155000], + [20129,54820000], + [20131,79569000], + [20133,180154000], + [20135,42438000], + [20137,40003000], + [20139,19408000], + [20141,86231000], + [20143,47967000], + [20145,93781000], + [20147,33908000], + [20149,160957000], + [20151,108263000], + [20153,83478000], + [20155,573283000], + [20157,97433000], + [20159,64016000], + [20161,93235000], + [20163,120294000], + [20165,27743000], + [20167,70326000], + [20169,816434000], + [20171,131534000], + [20173,12449361000], + [20175,197478000], + [20177,915256000], + [20179,88426000], + [20181,119079000], + [20183,71095000], + [20185,18054000], + [20187,null], + [20189,113664000], + [20191,202179000], + [20193,163087000], + [20195,24137000], + [20197,13434000], + [20199,null], + [20201,111261000], + [20203,68179000], + [20205,null], + [20207,27383000], + [20209,4127478000], + [21001,54740000], + [21003,97666000], + [21005,null], + [21007,null], + [21009,null], + [21011,0], + [21013,196103000], + [21015,null], + [21017,null], + [21019,null], + [21021,71157000], + [21023,null], + [21025,null], + [21027,19378000], + [21029,879650000], + [21031,null], + [21033,null], + [21035,null], + [21037,null], + [21039,2903000], + [21041,13382000], + [21043,306210000], + [21045,34871000], + [21047,878401000], + [21049,null], + [21051,13210000], + [21053,38656000], + [21055,9413000], + [21057,0], + [21059,818094000], + [21061,null], + [21063,0], + [21065,null], + [21067,4442420000], + [21069,29843000], + [21071,404434000], + [21073,223558000], + [21075,null], + [21077,null], + [21079,7053000], + [21081,null], + [21083,null], + [21085,null], + [21087,1928000], + [21089,3579000], + [21091,3277000], + [21093,281136000], + [21095,159275000], + [21097,39772000], + [21099,21357000], + [21101,545021000], + [21103,46545000], + [21105,29108000], + [21107,null], + [21109,null], + [21111,13000553000], + [21113,null], + [21115,106086000], + [21117,null], + [21119,null], + [21121,63723000], + [21123,19846000], + [21125,null], + [21127,null], + [21129,null], + [21131,0], + [21133,51762000], + [21135,null], + [21137,null], + [21139,null], + [21141,132947000], + [21143,null], + [21145,3529600000], + [21147,1331000], + [21149,38629000], + [21151,242111000], + [21153,11565000], + [21155,22895000], + [21157,97237000], + [21159,123656000], + [21161,null], + [21163,40800000], + [21165,0], + [21167,14950000], + [21169,null], + [21171,28777000], + [21173,null], + [21175,null], + [21177,null], + [21179,217473000], + [21181,0], + [21183,149543000], + [21185,95532000], + [21187,10358000], + [21189,null], + [21191,null], + [21193,267881000], + [21195,589037000], + [21197,3894000], + [21199,989564000], + [21201,0], + [21203,null], + [21205,54111000], + [21207,null], + [21209,null], + [21211,320777000], + [21213,260049000], + [21215,1515000], + [21217,null], + [21219,23248000], + [21221,null], + [21223,0], + [21225,93971000], + [21227,null], + [21229,67650000], + [21231,23597000], + [21233,null], + [21235,null], + [21237,null], + [21239,null], + [22001,null], + [22003,null], + [22005,664953000], + [22007,null], + [22009,171288000], + [22011,null], + [22013,null], + [22015,1028150000], + [22017,5467350000], + [22019,1342893000], + [22021,null], + [22023,62822000], + [22025,193095000], + [22027,125891000], + [22029,null], + [22031,21967000], + [22033,7860127000], + [22035,null], + [22037,null], + [22039,null], + [22041,182680000], + [22043,null], + [22045,null], + [22047,149928000], + [22049,null], + [22051,6049778000], + [22053,null], + [22055,2651421000], + [22057,888422000], + [22059,null], + [22061,171292000], + [22063,483039000], + [22065,153183000], + [22067,255319000], + [22069,null], + [22071,1938441000], + [22073,null], + [22075,920966000], + [22077,177020000], + [22079,null], + [22081,null], + [22083,172613000], + [22085,null], + [22087,164222000], + [22089,2137737000], + [22091,null], + [22093,null], + [22095,2540843000], + [22097,null], + [22099,326091000], + [22101,null], + [22103,2363173000], + [22105,953650000], + [22107,null], + [22109,899049000], + [22111,null], + [22113,null], + [22115,51603000], + [22117,null], + [22119,null], + [22121,602245000], + [22123,null], + [22125,null], + [22127,null], + [23001,444572000], + [23003,230832000], + [23005,3427913000], + [23007,null], + [23009,256613000], + [23011,1195617000], + [23013,177977000], + [23015,65761000], + [23017,188252000], + [23019,null], + [23021,null], + [23023,113895000], + [23025,76669000], + [23027,522257000], + [23029,79089000], + [23031,704167000], + [24001,null], + [24003,6922158000], + [24005,5609327000], + [24009,43666000], + [24011,129733000], + [24013,556104000], + [24015,null], + [24017,null], + [24019,null], + [24021,1252142000], + [24023,null], + [24025,1871327000], + [24027,7170808000], + [24029,null], + [24031,7426648000], + [24033,10449816000], + [24035,212901000], + [24037,null], + [24039,null], + [24041,252667000], + [24043,1265253000], + [24045,null], + [24047,null], + [24510,4843424000], + [25001,null], + [25003,null], + [25005,7719769000], + [25007,null], + [25009,12405726000], + [25011,460103000], + [25013,4991824000], + [25015,2021848000], + [25017,32873334000], + [25019,39771000], + [25021,12398878000], + [25023,5253568000], + [25025,8914822000], + [25027,6913732000], + [26001,null], + [26003,null], + [26005,506692000], + [26007,null], + [26009,null], + [26011,null], + [26013,4594000], + [26015,72312000], + [26017,null], + [26019,3469000], + [26021,689088000], + [26023,null], + [26025,null], + [26027,null], + [26029,8387000], + [26031,null], + [26033,null], + [26035,null], + [26037,562056000], + [26039,null], + [26041,null], + [26043,null], + [26045,914251000], + [26047,null], + [26049,3554890000], + [26051,9008000], + [26053,null], + [26055,424979000], + [26057,null], + [26059,260599000], + [26061,null], + [26063,253604000], + [26065,4423721000], + [26067,118801000], + [26069,null], + [26071,18647000], + [26073,null], + [26075,null], + [26077,1207153000], + [26079,83354000], + [26081,13020792000], + [26083,null], + [26085,null], + [26087,170050000], + [26089,17144000], + [26091,451920000], + [26093,1293290000], + [26095,null], + [26097,null], + [26099,5611118000], + [26101,null], + [26103,162446000], + [26105,148639000], + [26107,null], + [26109,null], + [26111,null], + [26113,null], + [26115,null], + [26117,124840000], + [26119,null], + [26121,null], + [26123,71682000], + [26125,29825742000], + [26127,null], + [26129,null], + [26131,16629000], + [26133,57690000], + [26135,null], + [26137,290713000], + [26139,2120633000], + [26141,8257000], + [26143,6759000], + [26145,1070811000], + [26147,872288000], + [26149,null], + [26151,174871000], + [26153,null], + [26155,null], + [26157,283100000], + [26159,null], + [26161,3630996000], + [26163,26102859000], + [26165,157398000], + [27001,53507000], + [27003,7335912000], + [27005,88443000], + [27007,null], + [27009,513024000], + [27011,185824000], + [27013,1275912000], + [27015,547091000], + [27017,null], + [27019,1484320000], + [27021,44299000], + [27023,201428000], + [27025,null], + [27027,null], + [27029,14153000], + [27031,null], + [27033,177207000], + [27035,278685000], + [27037,4415457000], + [27039,244797000], + [27041,null], + [27043,142934000], + [27045,116089000], + [27047,412074000], + [27049,313866000], + [27051,293825000], + [27053,34472526000], + [27055,null], + [27057,35255000], + [27059,null], + [27061,160561000], + [27063,151733000], + [27065,4933000], + [27067,null], + [27069,217527000], + [27071,16799000], + [27073,96196000], + [27075,null], + [27077,11644000], + [27079,131977000], + [27081,77617000], + [27083,null], + [27085,null], + [27087,9896000], + [27089,246744000], + [27091,null], + [27093,98587000], + [27095,160149000], + [27097,249703000], + [27099,229753000], + [27101,283172000], + [27103,194274000], + [27105,478177000], + [27107,58396000], + [27109,777919000], + [27111,322526000], + [27113,null], + [27115,6799000], + [27117,158303000], + [27119,336876000], + [27121,305508000], + [27123,9278366000], + [27125,null], + [27127,210717000], + [27129,277711000], + [27131,null], + [27133,88474000], + [27135,null], + [27137,1128194000], + [27139,1300774000], + [27141,231733000], + [27143,69261000], + [27145,1813571000], + [27147,323486000], + [27149,130767000], + [27151,665620000], + [27153,17986000], + [27155,82559000], + [27157,92168000], + [27159,243381000], + [27161,105217000], + [27163,1743551000], + [27165,145890000], + [27167,null], + [27169,null], + [27171,440743000], + [27173,302279000], + [28001,null], + [28003,null], + [28005,17879000], + [28007,37028000], + [28009,0], + [28011,null], + [28013,29012000], + [28015,null], + [28017,101537000], + [28019,null], + [28021,null], + [28023,null], + [28025,null], + [28027,null], + [28029,null], + [28031,66560000], + [28033,1676805000], + [28035,424129000], + [28037,null], + [28039,null], + [28041,27584000], + [28043,null], + [28045,null], + [28047,839746000], + [28049,2118836000], + [28051,31091000], + [28053,15127000], + [28055,null], + [28057,59439000], + [28059,null], + [28061,89451000], + [28063,null], + [28065,null], + [28067,402659000], + [28069,null], + [28071,null], + [28073,null], + [28075,1127560000], + [28077,null], + [28079,22652000], + [28081,847900000], + [28083,null], + [28085,null], + [28087,null], + [28089,3305948000], + [28091,155659000], + [28093,43470000], + [28095,111082000], + [28097,7623000], + [28099,286853000], + [28101,9154000], + [28103,26843000], + [28105,166199000], + [28107,484515000], + [28109,null], + [28111,null], + [28113,188719000], + [28115,57538000], + [28117,17781000], + [28119,19137000], + [28121,2629579000], + [28123,41172000], + [28125,64205000], + [28127,null], + [28129,12597000], + [28131,null], + [28133,null], + [28135,62382000], + [28137,18733000], + [28139,131842000], + [28141,54700000], + [28143,40673000], + [28145,174650000], + [28147,null], + [28149,null], + [28151,null], + [28153,221065000], + [28155,1960000], + [28157,44221000], + [28159,187904000], + [28161,14114000], + [28163,null], + [29001,54741000], + [29003,36877000], + [29005,67832000], + [29007,null], + [29009,134759000], + [29011,76001000], + [29013,77442000], + [29015,18445000], + [29017,null], + [29019,610359000], + [29021,1015485000], + [29023,null], + [29025,21230000], + [29027,70815000], + [29029,109440000], + [29031,1791992000], + [29033,70062000], + [29035,13630000], + [29037,351585000], + [29039,13721000], + [29041,198004000], + [29043,166361000], + [29045,null], + [29047,4517272000], + [29049,96781000], + [29051,706090000], + [29053,75706000], + [29055,105183000], + [29057,62405000], + [29059,59893000], + [29061,41751000], + [29063,null], + [29065,null], + [29067,null], + [29069,132812000], + [29071,386379000], + [29073,63145000], + [29075,35196000], + [29077,5076007000], + [29079,76462000], + [29081,55455000], + [29083,101135000], + [29085,null], + [29087,84686000], + [29089,19306000], + [29091,180705000], + [29093,1613000], + [29095,11179928000], + [29097,793412000], + [29099,782821000], + [29101,null], + [29103,29859000], + [29105,null], + [29107,140591000], + [29109,63715000], + [29111,null], + [29113,91753000], + [29115,38879000], + [29117,86240000], + [29119,null], + [29121,50614000], + [29123,6904000], + [29125,7401000], + [29127,114413000], + [29129,null], + [29131,68853000], + [29133,235151000], + [29135,106296000], + [29137,36552000], + [29139,117151000], + [29141,22059000], + [29143,288016000], + [29145,491844000], + [29147,null], + [29149,14176000], + [29151,26739000], + [29153,null], + [29155,382627000], + [29157,97342000], + [29159,169425000], + [29161,103508000], + [29163,252229000], + [29165,3535450000], + [29167,43310000], + [29169,18216000], + [29171,null], + [29173,null], + [29175,null], + [29177,92227000], + [29179,8302000], + [29181,7953000], + [29183,9325599000], + [29185,null], + [29186,73610000], + [29187,null], + [29189,27366632000], + [29195,null], + [29197,null], + [29199,null], + [29201,252385000], + [29203,14335000], + [29205,30529000], + [29207,196305000], + [29209,14165000], + [29211,null], + [29213,76049000], + [29215,50665000], + [29217,61170000], + [29219,null], + [29221,null], + [29223,29839000], + [29225,69536000], + [29227,7737000], + [29229,31676000], + [29510,5042147000], + [30001,24333000], + [30003,null], + [30005,27575000], + [30007,10326000], + [30009,20962000], + [30011,0], + [30013,672008000], + [30015,38357000], + [30017,75061000], + [30019,9863000], + [30021,107556000], + [30023,null], + [30025,32883000], + [30027,400247000], + [30029,863649000], + [30031,508818000], + [30033,null], + [30035,125194000], + [30037,null], + [30039,null], + [30041,190161000], + [30043,null], + [30045,4619000], + [30047,8713000], + [30049,199568000], + [30051,10500000], + [30053,12120000], + [30055,null], + [30057,null], + [30059,0], + [30061,null], + [30063,860085000], + [30065,5025000], + [30067,26285000], + [30069,0], + [30071,80846000], + [30073,46119000], + [30075,null], + [30077,null], + [30079,null], + [30081,164994000], + [30083,235835000], + [30085,66280000], + [30087,null], + [30089,null], + [30091,4959000], + [30093,null], + [30095,14190000], + [30097,null], + [30099,null], + [30101,96316000], + [30103,null], + [30105,80403000], + [30107,null], + [30109,0], + [30111,2772504000], + [31001,499735000], + [31003,136290000], + [31005,0], + [31007,0], + [31009,0], + [31011,92681000], + [31013,89999000], + [31015,null], + [31017,26309000], + [31019,659317000], + [31021,70378000], + [31023,118780000], + [31025,99071000], + [31027,69668000], + [31029,135070000], + [31031,null], + [31033,97852000], + [31035,155623000], + [31037,63564000], + [31039,117391000], + [31041,52764000], + [31043,null], + [31045,10039000], + [31047,424687000], + [31049,null], + [31051,null], + [31053,null], + [31055,6079790000], + [31057,null], + [31059,113431000], + [31061,51176000], + [31063,null], + [31065,88588000], + [31067,null], + [31069,null], + [31071,9224000], + [31073,null], + [31075,8344000], + [31077,23784000], + [31079,707911000], + [31081,375475000], + [31083,55070000], + [31085,0], + [31087,18708000], + [31089,149328000], + [31091,null], + [31093,38383000], + [31095,138991000], + [31097,null], + [31099,151673000], + [31101,54687000], + [31103,null], + [31105,null], + [31107,61784000], + [31109,2729850000], + [31111,245387000], + [31113,null], + [31115,null], + [31117,0], + [31119,1880219000], + [31121,208701000], + [31123,48076000], + [31125,35034000], + [31127,59941000], + [31129,147022000], + [31131,238044000], + [31133,null], + [31135,128283000], + [31137,152000000], + [31139,77571000], + [31141,517777000], + [31143,103321000], + [31145,140941000], + [31147,186872000], + [31149,23359000], + [31151,157004000], + [31153,3005930000], + [31155,147778000], + [31157,null], + [31159,127056000], + [31161,64763000], + [31163,11258000], + [31165,null], + [31167,null], + [31169,98568000], + [31171,null], + [31173,114984000], + [31175,48396000], + [31177,211443000], + [31179,51935000], + [31181,58861000], + [31183,null], + [31185,239094000], + [32001,33256000], + [32003,11493073000], + [32005,null], + [32007,null], + [32009,0], + [32011,0], + [32013,71463000], + [32015,null], + [32017,null], + [32019,null], + [32021,null], + [32023,null], + [32027,null], + [32029,0], + [32031,6317686000], + [32033,null], + [32510,null], + [33001,null], + [33003,null], + [33005,null], + [33007,null], + [33009,null], + [33011,3873122000], + [33013,2812352000], + [33015,5844817000], + [33017,351111000], + [33019,null], + [34001,1342162000], + [34003,66117863000], + [34005,15040891000], + [34007,null], + [34009,276098000], + [34011,null], + [34013,12622517000], + [34015,8962489000], + [34017,14524927000], + [34019,629452000], + [34021,8420998000], + [34023,32631795000], + [34025,11058874000], + [34027,17440010000], + [34029,null], + [34031,7021052000], + [34033,null], + [34035,14634500000], + [34037,null], + [34039,12948687000], + [34041,null], + [35001,6134969000], + [35003,0], + [35005,null], + [35006,15859000], + [35007,45130000], + [35009,171522000], + [35011,0], + [35013,448203000], + [35015,null], + [35017,null], + [35019,null], + [35021,0], + [35023,null], + [35025,376682000], + [35027,null], + [35028,null], + [35029,null], + [35031,null], + [35033,0], + [35035,null], + [35037,1702000], + [35039,null], + [35041,null], + [35043,113082000], + [35045,866414000], + [35047,null], + [35049,null], + [35051,0], + [35053,null], + [35055,null], + [35057,13738000], + [35059,null], + [35061,51565000], + [36001,3642573000], + [36003,51358000], + [36005,8039810000], + [36007,1958804000], + [36009,465695000], + [36011,null], + [36013,2621330000], + [36015,357907000], + [36017,126341000], + [36019,679389000], + [36021,null], + [36023,null], + [36025,440978000], + [36027,982323000], + [36029,19416088000], + [36031,17868000], + [36033,null], + [36035,null], + [36037,811657000], + [36039,232247000], + [36041,0], + [36043,186804000], + [36045,null], + [36047,13802231000], + [36049,33022000], + [36051,219826000], + [36053,109468000], + [36055,6778275000], + [36057,null], + [36059,null], + [36061,108757422000], + [36063,1059307000], + [36065,939366000], + [36067,17121533000], + [36069,536735000], + [36071,6859160000], + [36073,88554000], + [36075,210796000], + [36077,null], + [36079,504685000], + [36081,15308450000], + [36083,1387692000], + [36085,1320074000], + [36087,3228168000], + [36089,116095000], + [36091,2239396000], + [36093,601638000], + [36095,36031000], + [36097,null], + [36099,null], + [36101,null], + [36103,38208940000], + [36105,299093000], + [36107,null], + [36109,189640000], + [36111,946508000], + [36113,341996000], + [36115,85073000], + [36117,189350000], + [36119,20059559000], + [36121,297204000], + [36123,42683000], + [37001,655841000], + [37003,49756000], + [37005,1549000], + [37007,153485000], + [37009,55866000], + [37011,41596000], + [37013,285445000], + [37015,51247000], + [37017,174218000], + [37019,206726000], + [37021,1162902000], + [37023,289487000], + [37025,1412323000], + [37027,236848000], + [37029,9534000], + [37031,254299000], + [37033,null], + [37035,4087319000], + [37037,128681000], + [37039,60509000], + [37041,38519000], + [37043,null], + [37045,1247018000], + [37047,234208000], + [37049,827702000], + [37051,920026000], + [37053,null], + [37055,null], + [37057,null], + [37059,139129000], + [37061,350190000], + [37063,7657298000], + [37065,null], + [37067,4542005000], + [37069,178023000], + [37071,1178440000], + [37073,81130000], + [37075,null], + [37077,125232000], + [37079,15921000], + [37081,11295364000], + [37083,77112000], + [37085,null], + [37087,174370000], + [37089,709882000], + [37091,61155000], + [37093,33060000], + [37095,23455000], + [37097,1275897000], + [37099,52919000], + [37101,820864000], + [37103,41227000], + [37105,672199000], + [37107,null], + [37109,436195000], + [37111,78152000], + [37113,14787000], + [37115,26489000], + [37117,111733000], + [37119,17104781000], + [37121,32295000], + [37123,116594000], + [37125,172397000], + [37127,null], + [37129,1410140000], + [37131,256096000], + [37133,96946000], + [37135,580501000], + [37137,20693000], + [37139,148757000], + [37141,583880000], + [37143,32358000], + [37145,193278000], + [37147,898885000], + [37149,64996000], + [37151,746369000], + [37153,null], + [37155,627050000], + [37157,611498000], + [37159,628616000], + [37161,null], + [37163,381971000], + [37165,null], + [37167,null], + [37169,11736000], + [37171,null], + [37173,2303000], + [37175,null], + [37177,null], + [37179,1232790000], + [37181,null], + [37183,11334335000], + [37185,17714000], + [37187,83173000], + [37189,169263000], + [37191,1094520000], + [37193,260569000], + [37195,728827000], + [37197,101174000], + [37199,7082000], + [38001,31015000], + [38003,142557000], + [38005,125074000], + [38007,null], + [38009,135017000], + [38011,80739000], + [38013,130965000], + [38015,889072000], + [38017,null], + [38019,261486000], + [38021,151702000], + [38023,21313000], + [38025,6484000], + [38027,21041000], + [38029,46807000], + [38031,101726000], + [38033,89008000], + [38035,734260000], + [38037,27339000], + [38039,38029000], + [38041,null], + [38043,10451000], + [38045,137771000], + [38047,62378000], + [38049,null], + [38051,53277000], + [38053,94945000], + [38055,207974000], + [38057,null], + [38059,238106000], + [38061,110852000], + [38063,138226000], + [38065,null], + [38067,367854000], + [38069,85856000], + [38071,266343000], + [38073,142458000], + [38075,null], + [38077,null], + [38079,85776000], + [38081,152934000], + [38083,22861000], + [38085,0], + [38087,0], + [38089,null], + [38091,159787000], + [38093,null], + [38095,null], + [38097,275657000], + [38099,296198000], + [38101,1379691000], + [38103,184613000], + [38105,442648000], + [39001,21129000], + [39003,null], + [39005,206156000], + [39007,null], + [39009,null], + [39011,null], + [39013,null], + [39015,54970000], + [39017,7336978000], + [39019,104193000], + [39021,146381000], + [39023,null], + [39025,1036030000], + [39027,null], + [39029,null], + [39031,null], + [39033,null], + [39035,18894407000], + [39037,null], + [39039,null], + [39041,998452000], + [39043,null], + [39045,null], + [39047,null], + [39049,22138442000], + [39051,238815000], + [39053,null], + [39055,424626000], + [39057,1275540000], + [39059,null], + [39061,13030260000], + [39063,null], + [39065,112704000], + [39067,42754000], + [39069,317933000], + [39071,79847000], + [39073,null], + [39075,240920000], + [39077,null], + [39079,50091000], + [39081,null], + [39083,130828000], + [39085,1867798000], + [39087,null], + [39089,1141426000], + [39091,399630000], + [39093,1822689000], + [39095,4943587000], + [39097,null], + [39099,1858765000], + [39101,338058000], + [39103,1303378000], + [39105,11415000], + [39107,655684000], + [39109,4168916000], + [39111,22787000], + [39113,3766651000], + [39115,null], + [39117,null], + [39119,2222055000], + [39121,6192000], + [39123,71776000], + [39125,115546000], + [39127,85426000], + [39129,null], + [39131,30069000], + [39133,1875503000], + [39135,147477000], + [39137,172256000], + [39139,1010587000], + [39141,226559000], + [39143,null], + [39145,null], + [39147,null], + [39149,null], + [39151,2630637000], + [39153,7063487000], + [39155,null], + [39157,251141000], + [39159,1881681000], + [39161,127049000], + [39163,null], + [39165,2006795000], + [39167,null], + [39169,null], + [39171,229173000], + [39173,1505134000], + [39175,210636000], + [40001,null], + [40003,23261000], + [40005,33137000], + [40007,9488000], + [40009,146699000], + [40011,135256000], + [40013,null], + [40015,70113000], + [40017,null], + [40019,590438000], + [40021,null], + [40023,15204000], + [40025,24892000], + [40027,671536000], + [40029,null], + [40031,null], + [40033,null], + [40035,87019000], + [40037,384519000], + [40039,270921000], + [40041,47081000], + [40043,20423000], + [40045,null], + [40047,null], + [40049,95832000], + [40051,198898000], + [40053,29599000], + [40055,4033000], + [40057,null], + [40059,null], + [40061,null], + [40063,7935000], + [40065,null], + [40067,null], + [40069,null], + [40071,305106000], + [40073,429239000], + [40075,56769000], + [40077,90300000], + [40079,null], + [40081,85491000], + [40083,null], + [40085,8916000], + [40087,null], + [40089,95730000], + [40091,9642000], + [40093,39534000], + [40095,null], + [40097,301364000], + [40099,42243000], + [40101,580658000], + [40103,27993000], + [40105,16263000], + [40107,2778000], + [40109,27232349000], + [40111,42087000], + [40113,null], + [40115,null], + [40117,null], + [40119,null], + [40121,229958000], + [40123,null], + [40125,null], + [40127,10725000], + [40129,null], + [40131,921922000], + [40133,85075000], + [40135,null], + [40137,null], + [40139,null], + [40141,56815000], + [40143,10026188000], + [40145,107645000], + [40147,null], + [40149,38668000], + [40151,69018000], + [40153,140638000], + [41001,19141000], + [41003,387072000], + [41005,5292449000], + [41007,75515000], + [41009,96784000], + [41011,260759000], + [41013,100505000], + [41015,null], + [41017,1222598000], + [41019,null], + [41021,31643000], + [41023,null], + [41025,3000000], + [41027,224366000], + [41029,1047067000], + [41031,192437000], + [41033,null], + [41035,null], + [41037,40273000], + [41039,2889191000], + [41041,48423000], + [41043,956880000], + [41045,null], + [41047,3461700000], + [41049,49400000], + [41051,22043828000], + [41053,70305000], + [41055,12037000], + [41057,31040000], + [41059,284500000], + [41061,null], + [41063,null], + [41065,null], + [41067,11021762000], + [41069,null], + [41071,396840000], + [42001,null], + [42003,18141618000], + [42005,null], + [42007,1180098000], + [42009,295488000], + [42011,4417612000], + [42013,1511209000], + [42015,null], + [42017,9859583000], + [42019,2580221000], + [42021,582513000], + [42023,null], + [42025,35793000], + [42027,572296000], + [42029,8571403000], + [42031,287384000], + [42033,null], + [42035,null], + [42037,109948000], + [42039,146718000], + [42041,3657759000], + [42043,6456618000], + [42045,4219965000], + [42047,69874000], + [42049,1157206000], + [42051,528140000], + [42053,null], + [42055,null], + [42057,215272000], + [42059,191146000], + [42061,null], + [42063,492295000], + [42065,235389000], + [42067,69810000], + [42069,3127587000], + [42071,6333643000], + [42073,null], + [42075,2802572000], + [42077,null], + [42079,2174732000], + [42081,701940000], + [42083,null], + [42085,null], + [42087,null], + [42089,null], + [42091,12012437000], + [42093,177295000], + [42095,9815918000], + [42097,587508000], + [42099,85090000], + [42101,11566105000], + [42103,null], + [42105,18979000], + [42107,1070243000], + [42109,191154000], + [42111,null], + [42113,null], + [42115,215803000], + [42117,201818000], + [42119,null], + [42121,null], + [42123,null], + [42125,2454714000], + [42127,111976000], + [42129,5390535000], + [42131,95247000], + [42133,3822893000], + [44001,227408000], + [44003,1381329000], + [44005,263963000], + [44007,5856937000], + [44009,1453151000], + [45001,null], + [45003,null], + [45005,null], + [45007,null], + [45009,null], + [45011,null], + [45013,298190000], + [45015,1766505000], + [45017,144519000], + [45019,3267396000], + [45021,null], + [45023,null], + [45025,150305000], + [45027,54836000], + [45029,null], + [45031,226137000], + [45033,300100000], + [45035,170198000], + [45037,null], + [45039,null], + [45041,1358686000], + [45043,null], + [45045,11581894000], + [45047,271152000], + [45049,91986000], + [45051,907553000], + [45053,145118000], + [45055,null], + [45057,null], + [45059,66953000], + [45061,49595000], + [45063,3588391000], + [45065,null], + [45067,104394000], + [45069,null], + [45071,null], + [45073,null], + [45075,405655000], + [45077,253217000], + [45079,3150652000], + [45081,null], + [45083,5481960000], + [45085,null], + [45087,null], + [45089,102507000], + [45091,2150074000], + [46003,19196000], + [46005,null], + [46007,null], + [46009,43151000], + [46011,null], + [46013,1471626000], + [46015,46815000], + [46017,0], + [46019,29091000], + [46021,null], + [46023,73074000], + [46025,64319000], + [46027,null], + [46029,344014000], + [46031,null], + [46033,null], + [46035,406961000], + [46037,97126000], + [46039,null], + [46041,12458000], + [46043,null], + [46045,196273000], + [46047,3625000], + [46049,72694000], + [46051,122789000], + [46053,27257000], + [46055,54565000], + [46057,80702000], + [46059,76507000], + [46061,null], + [46063,0], + [46065,250062000], + [46067,321451000], + [46069,0], + [46071,null], + [46073,null], + [46075,null], + [46077,103288000], + [46079,225004000], + [46081,null], + [46083,337755000], + [46085,null], + [46087,41391000], + [46089,null], + [46091,38058000], + [46093,39213000], + [46095,null], + [46097,null], + [46099,3023482000], + [46101,16512000], + [46102,0], + [46103,1007223000], + [46105,null], + [46107,51976000], + [46109,211062000], + [46111,51042000], + [46115,248255000], + [46117,null], + [46119,null], + [46121,null], + [46123,70436000], + [46125,166565000], + [46127,null], + [46129,107036000], + [46135,null], + [46137,null], + [47001,208283000], + [47003,null], + [47005,35221000], + [47007,3384000], + [47009,898029000], + [47011,null], + [47013,134440000], + [47015,null], + [47017,71811000], + [47019,34983000], + [47021,33767000], + [47023,24445000], + [47025,25974000], + [47027,null], + [47029,null], + [47031,196636000], + [47033,112094000], + [47035,null], + [47037,11942568000], + [47039,null], + [47041,8484000], + [47043,327900000], + [47045,252485000], + [47047,74398000], + [47049,null], + [47051,null], + [47053,null], + [47055,112932000], + [47057,8638000], + [47059,null], + [47061,null], + [47063,591685000], + [47065,2958545000], + [47067,null], + [47069,42125000], + [47071,79735000], + [47073,null], + [47075,74223000], + [47077,31846000], + [47079,null], + [47081,null], + [47083,0], + [47085,57235000], + [47087,7188000], + [47089,35299000], + [47091,null], + [47093,7402469000], + [47095,null], + [47097,829714000], + [47099,null], + [47101,null], + [47103,147507000], + [47105,360584000], + [47107,null], + [47109,45711000], + [47111,30350000], + [47113,1160418000], + [47115,null], + [47117,null], + [47119,245115000], + [47121,null], + [47123,173428000], + [47125,345533000], + [47127,null], + [47129,null], + [47131,null], + [47133,46653000], + [47135,null], + [47137,null], + [47139,null], + [47141,465728000], + [47143,17906000], + [47145,null], + [47147,779419000], + [47149,6226284000], + [47151,28362000], + [47153,null], + [47155,null], + [47157,29636012000], + [47159,52470000], + [47161,null], + [47163,1055317000], + [47165,1634893000], + [47167,241853000], + [47169,null], + [47171,null], + [47173,6581000], + [47175,0], + [47177,null], + [47179,1090845000], + [47181,38046000], + [47183,null], + [47185,28869000], + [47187,2755997000], + [47189,967872000], + [48001,365343000], + [48003,null], + [48005,null], + [48007,13511000], + [48009,43433000], + [48011,null], + [48013,69408000], + [48015,null], + [48017,69906000], + [48019,1386000], + [48021,51614000], + [48023,33840000], + [48025,null], + [48027,4202739000], + [48029,12232098000], + [48031,null], + [48033,0], + [48035,28383000], + [48037,null], + [48039,841938000], + [48041,779612000], + [48043,20346000], + [48045,5352000], + [48047,null], + [48049,170974000], + [48051,null], + [48053,81879000], + [48055,26440000], + [48057,null], + [48059,20475000], + [48061,1516606000], + [48063,33518000], + [48065,null], + [48067,155015000], + [48069,154599000], + [48071,137217000], + [48073,null], + [48075,31365000], + [48077,5438000], + [48079,11964000], + [48081,null], + [48083,16164000], + [48085,9374853000], + [48087,null], + [48089,136810000], + [48091,960633000], + [48093,83103000], + [48095,null], + [48097,99848000], + [48099,34335000], + [48101,0], + [48103,23211000], + [48105,null], + [48107,119411000], + [48109,null], + [48111,311073000], + [48113,58165146000], + [48115,91324000], + [48117,null], + [48119,null], + [48121,12358953000], + [48123,30453000], + [48125,0], + [48127,null], + [48129,null], + [48131,17461000], + [48133,180763000], + [48135,2004269000], + [48137,null], + [48139,279168000], + [48141,5002538000], + [48143,null], + [48145,53128000], + [48147,null], + [48149,158741000], + [48151,null], + [48153,65577000], + [48155,null], + [48157,6615255000], + [48159,4826000], + [48161,41614000], + [48163,31535000], + [48165,169294000], + [48167,1761558000], + [48169,9988000], + [48171,100425000], + [48173,null], + [48175,null], + [48177,90249000], + [48179,null], + [48181,651716000], + [48183,1401503000], + [48185,142455000], + [48187,822106000], + [48189,null], + [48191,null], + [48193,44784000], + [48195,89259000], + [48197,18629000], + [48199,35903000], + [48201,205478751000], + [48203,303576000], + [48205,41885000], + [48207,null], + [48209,451199000], + [48211,63474000], + [48213,null], + [48215,4301122000], + [48217,41616000], + [48219,null], + [48221,95542000], + [48223,null], + [48225,39066000], + [48227,88463000], + [48229,null], + [48231,263413000], + [48233,null], + [48235,null], + [48237,112265000], + [48239,66985000], + [48241,123310000], + [48243,null], + [48245,2852515000], + [48247,null], + [48249,193387000], + [48251,536239000], + [48253,378967000], + [48255,40670000], + [48257,443125000], + [48259,285308000], + [48261,0], + [48263,0], + [48265,null], + [48267,125000], + [48269,0], + [48271,null], + [48273,null], + [48275,41626000], + [48277,null], + [48279,84216000], + [48281,11547000], + [48283,0], + [48285,221171000], + [48287,58172000], + [48289,92320000], + [48291,151545000], + [48293,27428000], + [48295,47171000], + [48297,25250000], + [48299,94883000], + [48301,0], + [48303,3707401000], + [48305,null], + [48307,31149000], + [48309,4606220000], + [48311,0], + [48313,31907000], + [48315,5546000], + [48317,24422000], + [48319,41336000], + [48321,null], + [48323,null], + [48325,189912000], + [48327,6667000], + [48329,2411656000], + [48331,87312000], + [48333,null], + [48335,3384000], + [48337,38556000], + [48339,6399326000], + [48341,null], + [48343,138930000], + [48345,null], + [48347,null], + [48349,285724000], + [48351,9995000], + [48353,null], + [48355,2978505000], + [48357,139177000], + [48359,null], + [48361,114354000], + [48363,null], + [48365,80032000], + [48367,524204000], + [48369,224947000], + [48371,117045000], + [48373,51110000], + [48375,2064050000], + [48377,3170000], + [48379,null], + [48381,null], + [48383,4392000], + [48385,null], + [48387,15100000], + [48389,null], + [48391,17991000], + [48393,0], + [48395,null], + [48397,null], + [48399,24642000], + [48401,99785000], + [48403,0], + [48405,6382000], + [48407,null], + [48409,135182000], + [48411,18078000], + [48413,13063000], + [48415,null], + [48417,4120000], + [48419,97607000], + [48421,null], + [48423,922104000], + [48425,14819000], + [48427,null], + [48429,21378000], + [48431,null], + [48433,null], + [48435,29253000], + [48437,42385000], + [48439,25801512000], + [48441,1079748000], + [48443,null], + [48445,87341000], + [48447,3416000], + [48449,null], + [48451,null], + [48453,14119812000], + [48455,34025000], + [48457,70499000], + [48459,58405000], + [48461,21753000], + [48463,120737000], + [48465,39272000], + [48467,50115000], + [48469,651068000], + [48471,null], + [48473,451592000], + [48475,52031000], + [48477,null], + [48479,1472069000], + [48481,541129000], + [48483,25835000], + [48485,548021000], + [48487,null], + [48489,null], + [48491,1525162000], + [48493,48987000], + [48495,29121000], + [48497,418384000], + [48499,137003000], + [48501,51155000], + [48503,86167000], + [48505,null], + [48507,null], + [49001,0], + [49003,null], + [49005,361610000], + [49007,null], + [49009,0], + [49011,null], + [49013,54748000], + [49015,983000], + [49017,null], + [49019,19672000], + [49021,null], + [49023,19287000], + [49025,3848000], + [49027,23248000], + [49029,null], + [49031,null], + [49033,0], + [49035,16956359000], + [49037,null], + [49039,31160000], + [49041,111990000], + [49043,165809000], + [49045,73602000], + [49047,null], + [49049,2424955000], + [49051,null], + [49053,510839000], + [49055,0], + [49057,2218165000], + [50001,101400000], + [50003,null], + [50005,66247000], + [50007,2392465000], + [50009,null], + [50011,413283000], + [50013,9066000], + [50015,null], + [50017,null], + [50019,73373000], + [50021,267644000], + [50023,null], + [50025,867141000], + [50027,327739000], + [51001,59400000], + [51003,530569000], + [51005,2179000], + [51007,55377000], + [51009,161888000], + [51011,16795000], + [51013,453168000], + [51015,306340000], + [51017,1524000], + [51019,368955000], + [51021,null], + [51023,null], + [51025,42022000], + [51027,189777000], + [51029,21509000], + [51031,249388000], + [51033,21218000], + [51035,33550000], + [51036,null], + [51037,10056000], + [51041,1561157000], + [51043,null], + [51045,null], + [51047,null], + [51049,null], + [51051,8348000], + [51053,267009000], + [51057,8496000], + [51059,13299493000], + [51061,null], + [51063,25863000], + [51065,10400000], + [51067,473610000], + [51069,632209000], + [51071,18932000], + [51073,null], + [51075,97362000], + [51077,null], + [51079,24584000], + [51081,null], + [51083,133676000], + [51085,3405922000], + [51087,6197343000], + [51089,527661000], + [51091,null], + [51093,148217000], + [51095,140068000], + [51097,21979000], + [51099,8168000], + [51101,30686000], + [51103,49291000], + [51105,27470000], + [51107,1491999000], + [51109,102933000], + [51111,45743000], + [51113,8746000], + [51115,null], + [51117,74695000], + [51119,31494000], + [51121,97297000], + [51125,6692000], + [51127,null], + [51131,59271000], + [51133,29724000], + [51135,80212000], + [51137,212155000], + [51139,9645000], + [51141,19044000], + [51143,247619000], + [51145,46609000], + [51147,43104000], + [51149,502609000], + [51153,1750552000], + [51155,39225000], + [51157,null], + [51159,null], + [51161,504679000], + [51163,32676000], + [51165,539906000], + [51167,36465000], + [51169,null], + [51171,347179000], + [51173,52716000], + [51175,70454000], + [51177,430377000], + [51179,1249915000], + [51181,null], + [51183,null], + [51185,null], + [51187,18653000], + [51191,279623000], + [51193,38886000], + [51195,496136000], + [51197,105493000], + [51199,149733000], + [51510,525705000], + [51520,318843000], + [51530,null], + [51540,203434000], + [51550,2123285000], + [51570,28363000], + [51580,13015000], + [51590,204059000], + [51595,null], + [51600,192265000], + [51610,null], + [51620,25481000], + [51630,null], + [51640,36907000], + [51650,288918000], + [51660,378468000], + [51670,58132000], + [51678,1918000], + [51680,541451000], + [51683,null], + [51685,null], + [51690,null], + [51700,901976000], + [51710,3280443000], + [51720,94162000], + [51730,356054000], + [51735,null], + [51740,173615000], + [51750,30297000], + [51760,2843348000], + [51770,2233606000], + [51775,621187000], + [51790,68287000], + [51800,715834000], + [51810,2835067000], + [51820,113199000], + [51830,null], + [51840,null], + [53001,574216000], + [53003,null], + [53005,755416000], + [53007,788345000], + [53009,null], + [53011,4238139000], + [53013,30809000], + [53015,1415763000], + [53017,127359000], + [53019,null], + [53021,1028012000], + [53023,70512000], + [53025,599622000], + [53027,null], + [53029,null], + [53031,51061000], + [53033,41042685000], + [53035,553059000], + [53037,null], + [53039,25794000], + [53041,null], + [53043,133156000], + [53045,null], + [53047,224445000], + [53049,null], + [53051,1728000], + [53053,6090535000], + [53055,null], + [53057,698025000], + [53059,2412000], + [53061,6708367000], + [53063,5354273000], + [53065,47196000], + [53067,1003369000], + [53069,0], + [53071,257492000], + [53073,1373621000], + [53075,388870000], + [53077,null], + [54001,null], + [54003,573539000], + [54005,null], + [54007,57417000], + [54009,null], + [54011,778893000], + [54013,null], + [54015,0], + [54017,null], + [54019,null], + [54021,null], + [54023,null], + [54025,59111000], + [54027,null], + [54029,117967000], + [54031,7186000], + [54033,322782000], + [54035,77382000], + [54037,null], + [54039,1726956000], + [54041,54766000], + [54043,null], + [54045,155660000], + [54047,19961000], + [54049,null], + [54051,null], + [54053,null], + [54055,null], + [54057,null], + [54059,50456000], + [54061,370348000], + [54063,3651000], + [54065,5694000], + [54067,136668000], + [54069,3117043000], + [54071,4227000], + [54073,null], + [54075,null], + [54077,null], + [54079,541706000], + [54081,null], + [54083,366900000], + [54085,23299000], + [54087,40674000], + [54089,null], + [54091,null], + [54093,null], + [54095,null], + [54097,179318000], + [54099,77395000], + [54101,null], + [54103,14397000], + [54105,null], + [54107,330697000], + [54109,5861000], + [55001,12643000], + [55003,30184000], + [55005,126597000], + [55007,29592000], + [55009,3388331000], + [55011,24195000], + [55013,5485000], + [55015,149014000], + [55017,206014000], + [55019,107230000], + [55021,203380000], + [55023,100977000], + [55025,6042966000], + [55027,557815000], + [55029,40458000], + [55031,null], + [55033,null], + [55035,909813000], + [55037,null], + [55039,993646000], + [55041,10350000], + [55043,210601000], + [55045,null], + [55047,30600000], + [55049,150555000], + [55051,16339000], + [55053,31193000], + [55055,null], + [55057,51885000], + [55059,1547827000], + [55061,15050000], + [55063,null], + [55065,88751000], + [55067,438752000], + [55069,null], + [55071,null], + [55073,1146367000], + [55075,null], + [55077,12198000], + [55078,0], + [55079,10955307000], + [55081,306139000], + [55083,28414000], + [55085,186651000], + [55087,3528050000], + [55089,707455000], + [55091,134675000], + [55093,null], + [55095,134275000], + [55097,null], + [55099,30969000], + [55101,null], + [55103,73556000], + [55105,2700128000], + [55107,12463000], + [55109,1986968000], + [55111,null], + [55113,50232000], + [55115,256446000], + [55117,503477000], + [55119,26025000], + [55121,114661000], + [55123,153777000], + [55125,29444000], + [55127,1124627000], + [55129,27904000], + [55131,2800492000], + [55133,6882092000], + [55135,86158000], + [55137,49841000], + [55139,1109192000], + [55141,893219000], + [56001,113498000], + [56003,null], + [56005,917314000], + [56007,51494000], + [56009,null], + [56011,14112000], + [56013,76180000], + [56015,52428000], + [56017,null], + [56019,null], + [56021,628089000], + [56023,26778000], + [56025,2889434000], + [56027,null], + [56029,155545000], + [56031,34092000], + [56033,null], + [56035,null], + [56037,437493000], + [56039,null], + [56041,159375000], + [56043,12128000], + [56045,11540000] + ] +} diff --git a/data/regional/united-states/economics/trade/us-manufacturer-shipments-2007.json b/data/regional/united-states/economics/trade/us-manufacturer-shipments-2007.json new file mode 100644 index 0000000..bc53135 --- /dev/null +++ b/data/regional/united-states/economics/trade/us-manufacturer-shipments-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Manufacturer Shipments", + "description" : "Manufadcturer shipments.", + "units" : "$", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","trade","shipping","manufacturing"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.manufacturer.shipments.2007"], + [1001,null], + [1003,1410273000], + [1005,null], + [1007,0], + [1009,341544000], + [1011,null], + [1013,399132000], + [1015,2679991000], + [1017,667283000], + [1019,307439000], + [1021,null], + [1023,null], + [1025,571454000], + [1027,330878000], + [1029,0], + [1031,613758000], + [1033,2083166000], + [1035,183544000], + [1037,89585000], + [1039,561168000], + [1041,270809000], + [1043,1393437000], + [1045,114991000], + [1047,1174763000], + [1049,1831626000], + [1051,766344000], + [1053,665336000], + [1055,1252962000], + [1057,186247000], + [1059,671954000], + [1061,153342000], + [1063,0], + [1065,null], + [1067,425821000], + [1069,1310677000], + [1071,1525396000], + [1073,10260950000], + [1075,234908000], + [1077,1083658000], + [1079,null], + [1081,null], + [1083,947299000], + [1085,1156888000], + [1087,0], + [1089,8650700000], + [1091,542135000], + [1093,794483000], + [1095,3029491000], + [1097,12407151000], + [1099,1251911000], + [1101,7956627000], + [1103,null], + [1105,0], + [1107,107619000], + [1109,null], + [1111,401677000], + [1113,null], + [1115,985409000], + [1117,1723017000], + [1119,0], + [1121,9054200000], + [1123,null], + [1125,10852479000], + [1127,314804000], + [1129,1153449000], + [1131,null], + [1133,797845000], + [2013,null], + [2016,634809000], + [2020,null], + [2050,0], + [2060,0], + [2068,0], + [2070,0], + [2090,null], + [2100,0], + [2105,0], + [2110,0], + [2122,null], + [2130,null], + [2150,null], + [2158,0], + [2164,0], + [2170,0], + [2180,0], + [2185,0], + [2188,0], + [2195,128982000], + [2198,0], + [2220,0], + [2230,null], + [2240,0], + [2261,543389000], + [2275,null], + [2282,0], + [2290,0], + [4001,0], + [4003,181316000], + [4005,1526810000], + [4007,0], + [4009,0], + [4011,0], + [4012,0], + [4013,40182099000], + [4015,1349965000], + [4017,null], + [4019,10365206000], + [4021,2149874000], + [4023,0], + [4025,763989000], + [4027,891604000], + [5001,1702196000], + [5003,null], + [5005,550061000], + [5007,null], + [5009,null], + [5011,176955000], + [5013,0], + [5015,null], + [5017,null], + [5019,433867000], + [5021,111760000], + [5023,205550000], + [5025,0], + [5027,1164275000], + [5029,432551000], + [5031,1830332000], + [5033,847991000], + [5035,701251000], + [5037,null], + [5039,184521000], + [5041,400820000], + [5043,156135000], + [5045,1587628000], + [5047,327694000], + [5049,0], + [5051,661675000], + [5053,489875000], + [5055,1434062000], + [5057,null], + [5059,858460000], + [5061,1081066000], + [5063,920041000], + [5065,0], + [5067,null], + [5069,null], + [5071,546790000], + [5073,0], + [5075,0], + [5077,0], + [5079,null], + [5081,null], + [5083,692089000], + [5085,null], + [5087,null], + [5089,350144000], + [5091,712872000], + [5093,5010206000], + [5095,0], + [5097,0], + [5099,null], + [5101,0], + [5103,null], + [5105,0], + [5107,0], + [5109,0], + [5111,172016000], + [5113,303468000], + [5115,1436684000], + [5117,0], + [5119,5969537000], + [5121,148093000], + [5123,null], + [5125,366948000], + [5127,203046000], + [5129,0], + [5131,5676530000], + [5133,null], + [5135,0], + [5137,0], + [5139,3901892000], + [5141,0], + [5143,3497554000], + [5145,1168164000], + [5147,0], + [5149,449599000], + [6001,25236865000], + [6003,0], + [6005,142958000], + [6007,987397000], + [6009,0], + [6011,288416000], + [6013,32021431000], + [6015,0], + [6017,662228000], + [6019,7827264000], + [6021,278276000], + [6023,877020000], + [6025,1207866000], + [6027,0], + [6029,9456205000], + [6031,2107702000], + [6033,0], + [6035,0], + [6037,153343705000], + [6039,1452945000], + [6041,397211000], + [6043,0], + [6045,773447000], + [6047,3954248000], + [6049,0], + [6051,0], + [6053,2227640000], + [6055,4529328000], + [6057,664601000], + [6059,49131942000], + [6061,3023419000], + [6063,130591000], + [6065,13623526000], + [6067,7282833000], + [6069,630311000], + [6071,18907342000], + [6073,27541073000], + [6075,2077457000], + [6077,8272476000], + [6079,2548202000], + [6081,17918237000], + [6083,3174119000], + [6085,45088754000], + [6087,1502419000], + [6089,662910000], + [6091,0], + [6093,257841000], + [6095,8377320000], + [6097,5841879000], + [6099,9475984000], + [6101,494893000], + [6103,556745000], + [6105,0], + [6107,5015960000], + [6109,222524000], + [6111,8769037000], + [6113,1853300000], + [6115,169975000], + [8001,6161531000], + [8003,0], + [8005,2042979000], + [8007,0], + [8009,0], + [8011,0], + [8013,3855872000], + [8014,2255472000], + [8015,0], + [8017,0], + [8019,0], + [8021,0], + [8023,0], + [8025,0], + [8027,0], + [8029,141382000], + [8031,5189894000], + [8033,0], + [8035,1950842000], + [8037,0], + [8039,0], + [8041,null], + [8043,168772000], + [8045,0], + [8047,0], + [8049,0], + [8051,0], + [8053,0], + [8055,0], + [8057,0], + [8059,6566636000], + [8061,0], + [8063,0], + [8065,0], + [8067,null], + [8069,3226757000], + [8071,0], + [8073,0], + [8075,0], + [8077,539590000], + [8079,0], + [8081,0], + [8083,0], + [8085,218197000], + [8087,null], + [8089,0], + [8091,0], + [8093,0], + [8095,0], + [8097,0], + [8099,0], + [8101,1705822000], + [8103,0], + [8105,0], + [8107,0], + [8109,0], + [8111,0], + [8113,0], + [8115,0], + [8117,0], + [8119,0], + [8121,0], + [8123,4193672000], + [8125,0], + [9001,20028377000], + [9003,15016177000], + [9005,null], + [9007,3336020000], + [9009,10493031000], + [9011,null], + [9013,1021759000], + [9015,1776526000], + [10001,2361835000], + [10003,20268769000], + [10005,3049335000], + [11001,332844000], + [12001,null], + [12003,0], + [12005,1254295000], + [12007,0], + [12009,6767571000], + [12011,7160772000], + [12013,0], + [12015,0], + [12017,0], + [12019,null], + [12021,606697000], + [12023,351463000], + [12027,0], + [12029,null], + [12031,11222050000], + [12033,2117030000], + [12035,235664000], + [12037,0], + [12039,262901000], + [12041,0], + [12043,0], + [12045,0], + [12047,null], + [12049,0], + [12051,null], + [12053,312518000], + [12055,306138000], + [12057,9444867000], + [12059,0], + [12061,413041000], + [12063,180603000], + [12065,0], + [12067,0], + [12069,825472000], + [12071,1181824000], + [12073,593440000], + [12075,130976000], + [12077,0], + [12079,0], + [12081,2985063000], + [12083,1841509000], + [12085,856090000], + [12086,9347116000], + [12087,0], + [12089,696212000], + [12091,656730000], + [12093,0], + [12095,10921814000], + [12097,644949000], + [12099,4240652000], + [12101,745172000], + [12103,8062020000], + [12105,7178034000], + [12107,982580000], + [12109,533263000], + [12111,916481000], + [12113,74894000], + [12115,1366676000], + [12117,1634749000], + [12119,367864000], + [12121,null], + [12123,595497000], + [12125,0], + [12127,1948646000], + [12129,null], + [12131,0], + [12133,null], + [13001,347120000], + [13003,null], + [13005,165420000], + [13007,0], + [13009,null], + [13011,0], + [13013,768413000], + [13015,3723604000], + [13017,null], + [13019,415852000], + [13021,1693877000], + [13023,null], + [13025,0], + [13027,0], + [13029,0], + [13031,523827000], + [13033,null], + [13035,287017000], + [13037,0], + [13039,0], + [13043,0], + [13045,3175562000], + [13047,562058000], + [13049,0], + [13051,null], + [13053,0], + [13055,629589000], + [13057,823737000], + [13059,1971235000], + [13061,0], + [13063,1604635000], + [13065,null], + [13067,5651641000], + [13069,null], + [13071,599465000], + [13073,2411210000], + [13075,360662000], + [13077,2270118000], + [13079,0], + [13081,410798000], + [13083,187845000], + [13085,0], + [13087,1021401000], + [13089,7489009000], + [13091,199135000], + [13093,303771000], + [13095,null], + [13097,989859000], + [13099,832266000], + [13101,0], + [13103,null], + [13105,515223000], + [13107,448400000], + [13109,354790000], + [13111,0], + [13113,1744689000], + [13115,3346076000], + [13117,2318605000], + [13119,430397000], + [13121,10428483000], + [13123,354553000], + [13125,0], + [13127,null], + [13129,2528116000], + [13131,183214000], + [13133,673247000], + [13135,6480318000], + [13137,968514000], + [13139,6068981000], + [13141,0], + [13143,952054000], + [13145,null], + [13147,244785000], + [13149,0], + [13151,1695755000], + [13153,1422893000], + [13155,0], + [13157,1801528000], + [13159,187450000], + [13161,242915000], + [13163,303595000], + [13165,116890000], + [13167,0], + [13169,0], + [13171,0], + [13173,0], + [13175,null], + [13177,0], + [13179,null], + [13181,0], + [13183,0], + [13185,2237776000], + [13187,207779000], + [13189,null], + [13191,0], + [13193,397403000], + [13195,null], + [13197,0], + [13199,233413000], + [13201,0], + [13205,null], + [13207,118057000], + [13209,0], + [13211,239487000], + [13213,1605675000], + [13215,2111391000], + [13217,2205094000], + [13219,null], + [13221,0], + [13223,255438000], + [13225,1057803000], + [13227,104755000], + [13229,0], + [13231,0], + [13233,698637000], + [13235,0], + [13237,316112000], + [13239,0], + [13241,138701000], + [13243,0], + [13245,5256290000], + [13247,1778787000], + [13249,215937000], + [13251,183823000], + [13253,0], + [13255,2285175000], + [13257,535710000], + [13259,0], + [13261,411966000], + [13263,0], + [13265,0], + [13267,0], + [13269,0], + [13271,null], + [13273,null], + [13275,657550000], + [13277,547460000], + [13279,null], + [13281,0], + [13283,0], + [13285,2470774000], + [13287,0], + [13289,0], + [13291,0], + [13293,526494000], + [13295,2060559000], + [13297,591825000], + [13299,null], + [13301,0], + [13303,0], + [13305,663428000], + [13307,0], + [13309,0], + [13311,103902000], + [13313,7524935000], + [13315,0], + [13317,174306000], + [13319,521536000], + [13321,0], + [15001,290120000], + [15003,8201881000], + [15005,0], + [15007,0], + [15009,262749000], + [16001,4942388000], + [16003,0], + [16005,null], + [16007,0], + [16009,null], + [16011,624524000], + [16013,0], + [16015,0], + [16017,498636000], + [16019,null], + [16021,0], + [16023,0], + [16025,0], + [16027,null], + [16029,443222000], + [16031,371255000], + [16033,0], + [16035,0], + [16037,0], + [16039,0], + [16041,0], + [16043,0], + [16045,0], + [16047,null], + [16049,0], + [16051,null], + [16053,764164000], + [16055,992158000], + [16057,0], + [16059,0], + [16061,0], + [16063,0], + [16065,null], + [16067,381084000], + [16069,null], + [16071,0], + [16073,0], + [16075,null], + [16077,null], + [16079,0], + [16081,0], + [16083,970292000], + [16085,0], + [16087,0], + [17001,null], + [17003,0], + [17005,null], + [17007,5553679000], + [17009,0], + [17011,null], + [17013,0], + [17015,320789000], + [17017,null], + [17019,3248908000], + [17021,392440000], + [17023,664438000], + [17025,737102000], + [17027,null], + [17029,null], + [17031,77932858000], + [17033,null], + [17035,0], + [17037,1435916000], + [17039,0], + [17041,699883000], + [17043,16862490000], + [17045,521758000], + [17047,null], + [17049,890285000], + [17051,174590000], + [17053,null], + [17055,223186000], + [17057,0], + [17059,0], + [17061,0], + [17063,2082448000], + [17065,0], + [17067,193240000], + [17069,0], + [17071,0], + [17073,null], + [17075,338655000], + [17077,177351000], + [17079,0], + [17081,null], + [17083,0], + [17085,419517000], + [17087,0], + [17089,9879494000], + [17091,3418939000], + [17093,685730000], + [17095,null], + [17097,16381499000], + [17099,2244000000], + [17101,null], + [17103,1098190000], + [17105,1261471000], + [17107,631562000], + [17109,248754000], + [17111,5291243000], + [17113,2578827000], + [17115,9590836000], + [17117,180436000], + [17119,18978164000], + [17121,689705000], + [17123,null], + [17125,0], + [17127,null], + [17129,0], + [17131,0], + [17133,0], + [17135,305556000], + [17137,null], + [17139,541212000], + [17141,1137608000], + [17143,4951288000], + [17145,369043000], + [17147,0], + [17149,0], + [17151,0], + [17153,0], + [17155,null], + [17157,532245000], + [17159,94581000], + [17161,3714268000], + [17163,2324457000], + [17165,92440000], + [17167,null], + [17169,0], + [17171,0], + [17173,null], + [17175,0], + [17177,905092000], + [17179,5145678000], + [17181,176076000], + [17183,2576404000], + [17185,0], + [17187,null], + [17189,409194000], + [17191,null], + [17193,0], + [17195,1022531000], + [17197,13628202000], + [17199,681388000], + [17201,7913361000], + [17203,963346000], + [18001,2127689000], + [18003,19741940000], + [18005,4843890000], + [18007,0], + [18009,397083000], + [18011,null], + [18013,0], + [18015,null], + [18017,1302002000], + [18019,2114873000], + [18021,null], + [18023,2283489000], + [18025,0], + [18027,643418000], + [18029,786076000], + [18031,1869737000], + [18033,3818858000], + [18035,1280555000], + [18037,null], + [18039,15779841000], + [18041,486488000], + [18043,1558350000], + [18045,498444000], + [18047,null], + [18049,524323000], + [18051,null], + [18053,1670123000], + [18055,0], + [18057,1569925000], + [18059,1256037000], + [18061,410685000], + [18063,2819422000], + [18065,1026569000], + [18067,2923185000], + [18069,1478637000], + [18071,2585502000], + [18073,601064000], + [18075,835131000], + [18077,1476978000], + [18079,377163000], + [18081,1609901000], + [18083,774300000], + [18085,5705256000], + [18087,1602328000], + [18089,21914467000], + [18091,2364020000], + [18093,716454000], + [18095,1046853000], + [18097,24333886000], + [18099,1239448000], + [18101,0], + [18103,711346000], + [18105,1799286000], + [18107,2768351000], + [18109,null], + [18111,197474000], + [18113,2454544000], + [18115,0], + [18117,201749000], + [18119,null], + [18121,137612000], + [18123,600192000], + [18125,0], + [18127,7318767000], + [18129,null], + [18131,null], + [18133,675972000], + [18135,577384000], + [18137,757369000], + [18139,523330000], + [18141,8011023000], + [18143,978675000], + [18145,2354852000], + [18147,null], + [18149,243732000], + [18151,1147951000], + [18153,0], + [18155,0], + [18157,null], + [18159,362143000], + [18161,0], + [18163,6447599000], + [18165,null], + [18167,3565934000], + [18169,1045382000], + [18171,93073000], + [18173,null], + [18175,248328000], + [18177,2483052000], + [18179,699092000], + [18181,715246000], + [18183,2107506000], + [19001,0], + [19003,0], + [19005,null], + [19007,151576000], + [19009,0], + [19011,176791000], + [19013,5880301000], + [19015,161292000], + [19017,699712000], + [19019,640836000], + [19021,1578035000], + [19023,null], + [19025,0], + [19027,794027000], + [19029,null], + [19031,178789000], + [19033,1357504000], + [19035,279270000], + [19037,278276000], + [19039,416569000], + [19041,null], + [19043,206396000], + [19045,3914945000], + [19047,1266847000], + [19049,574183000], + [19051,0], + [19053,0], + [19055,326438000], + [19057,null], + [19059,647529000], + [19061,4711245000], + [19063,331366000], + [19065,157746000], + [19067,461397000], + [19069,260008000], + [19071,null], + [19073,0], + [19075,143848000], + [19077,0], + [19079,1162374000], + [19081,266775000], + [19083,743136000], + [19085,0], + [19087,889862000], + [19089,272970000], + [19091,289818000], + [19093,372971000], + [19095,1478930000], + [19097,247956000], + [19099,170755000], + [19101,246631000], + [19103,null], + [19105,180765000], + [19107,0], + [19109,474756000], + [19111,null], + [19113,8229178000], + [19115,null], + [19117,0], + [19119,100917000], + [19121,0], + [19123,1618526000], + [19125,1856906000], + [19127,1848040000], + [19129,0], + [19131,252014000], + [19133,0], + [19135,0], + [19137,180839000], + [19139,null], + [19141,304999000], + [19143,0], + [19145,348217000], + [19147,401373000], + [19149,null], + [19151,0], + [19153,7519907000], + [19155,null], + [19157,462194000], + [19159,0], + [19161,0], + [19163,5745095000], + [19165,0], + [19167,1152404000], + [19169,1970829000], + [19171,0], + [19173,0], + [19175,214327000], + [19177,null], + [19179,1840383000], + [19181,null], + [19183,null], + [19185,0], + [19187,1909417000], + [19189,1094325000], + [19191,288679000], + [19193,2827480000], + [19195,248922000], + [19197,863324000], + [20001,434704000], + [20003,0], + [20005,null], + [20007,0], + [20009,561411000], + [20011,178967000], + [20013,91416000], + [20015,null], + [20017,0], + [20019,0], + [20021,512058000], + [20023,0], + [20025,0], + [20027,0], + [20029,0], + [20031,0], + [20033,0], + [20035,2025397000], + [20037,757221000], + [20039,0], + [20041,317310000], + [20043,null], + [20045,976469000], + [20047,0], + [20049,0], + [20051,null], + [20053,0], + [20055,null], + [20057,null], + [20059,384080000], + [20061,null], + [20063,0], + [20065,0], + [20067,0], + [20069,0], + [20071,0], + [20073,0], + [20075,0], + [20077,0], + [20079,null], + [20081,0], + [20083,0], + [20085,0], + [20087,0], + [20089,0], + [20091,7847699000], + [20093,0], + [20095,0], + [20097,0], + [20099,410239000], + [20101,0], + [20103,107742000], + [20105,0], + [20107,0], + [20109,0], + [20111,null], + [20113,4222628000], + [20115,0], + [20117,257714000], + [20119,0], + [20121,null], + [20123,0], + [20125,3979668000], + [20127,0], + [20129,0], + [20131,243056000], + [20133,291019000], + [20135,0], + [20137,0], + [20139,0], + [20141,0], + [20143,0], + [20145,0], + [20147,0], + [20149,329645000], + [20151,0], + [20153,0], + [20155,908658000], + [20157,0], + [20159,0], + [20161,null], + [20163,0], + [20165,0], + [20167,0], + [20169,null], + [20171,0], + [20173,21117142000], + [20175,null], + [20177,null], + [20179,0], + [20181,0], + [20183,0], + [20185,0], + [20187,0], + [20189,0], + [20191,null], + [20193,0], + [20195,0], + [20197,0], + [20199,0], + [20201,0], + [20203,0], + [20205,null], + [20207,0], + [20209,7634498000], + [21001,0], + [21003,164790000], + [21005,600926000], + [21007,null], + [21009,1024905000], + [21011,0], + [21013,null], + [21015,4690957000], + [21017,null], + [21019,null], + [21021,null], + [21023,0], + [21025,0], + [21027,0], + [21029,null], + [21031,120473000], + [21033,213233000], + [21035,729241000], + [21037,798230000], + [21039,0], + [21041,4059659000], + [21043,null], + [21045,189089000], + [21047,1571636000], + [21049,1252285000], + [21051,0], + [21053,null], + [21055,0], + [21057,0], + [21059,2919998000], + [21061,0], + [21063,0], + [21065,0], + [21067,3061217000], + [21069,0], + [21071,0], + [21073,1400787000], + [21075,null], + [21077,0], + [21079,0], + [21081,null], + [21083,null], + [21085,692032000], + [21087,0], + [21089,null], + [21091,null], + [21093,1792272000], + [21095,0], + [21097,549589000], + [21099,434551000], + [21101,null], + [21103,null], + [21105,0], + [21107,896339000], + [21109,0], + [21111,25695383000], + [21113,1015569000], + [21115,0], + [21117,1236384000], + [21119,0], + [21121,210723000], + [21123,90029000], + [21125,null], + [21127,0], + [21129,0], + [21131,0], + [21133,0], + [21135,0], + [21137,null], + [21139,0], + [21141,2150571000], + [21143,0], + [21145,null], + [21147,0], + [21149,0], + [21151,null], + [21153,0], + [21155,620176000], + [21157,3095293000], + [21159,0], + [21161,null], + [21163,null], + [21165,0], + [21167,1252350000], + [21169,391327000], + [21171,146465000], + [21173,null], + [21175,0], + [21177,null], + [21179,1348746000], + [21181,0], + [21183,485450000], + [21185,275104000], + [21187,0], + [21189,0], + [21191,null], + [21193,122158000], + [21195,null], + [21197,0], + [21199,1088020000], + [21201,0], + [21203,0], + [21205,259812000], + [21207,null], + [21209,null], + [21211,1373120000], + [21213,1406337000], + [21215,0], + [21217,315183000], + [21219,0], + [21221,235118000], + [21223,0], + [21225,250359000], + [21227,null], + [21229,259028000], + [21231,378860000], + [21233,0], + [21235,null], + [21237,0], + [21239,null], + [22001,null], + [22003,167537000], + [22005,null], + [22007,0], + [22009,0], + [22011,null], + [22013,null], + [22015,null], + [22017,null], + [22019,null], + [22021,0], + [22023,0], + [22025,0], + [22027,0], + [22029,0], + [22031,null], + [22033,null], + [22035,0], + [22037,0], + [22039,null], + [22041,0], + [22043,0], + [22045,1586213000], + [22047,7694728000], + [22049,null], + [22051,2837246000], + [22053,189206000], + [22055,2037231000], + [22057,614334000], + [22059,0], + [22061,null], + [22063,459902000], + [22065,0], + [22067,null], + [22069,1006262000], + [22071,3088945000], + [22073,null], + [22075,null], + [22077,0], + [22079,null], + [22081,0], + [22083,0], + [22085,null], + [22087,null], + [22089,27354671000], + [22091,0], + [22093,null], + [22095,null], + [22097,null], + [22099,324338000], + [22101,2011102000], + [22103,436331000], + [22105,null], + [22107,0], + [22109,1115562000], + [22111,null], + [22113,null], + [22115,0], + [22117,null], + [22119,711994000], + [22121,null], + [22123,0], + [22125,null], + [22127,null], + [23001,2186156000], + [23003,621636000], + [23005,null], + [23007,823516000], + [23009,599099000], + [23011,584124000], + [23013,386986000], + [23015,122607000], + [23017,865837000], + [23019,1088511000], + [23021,119373000], + [23023,null], + [23025,1566889000], + [23027,210346000], + [23029,444105000], + [23031,2904345000], + [24001,null], + [24003,3610107000], + [24005,9247191000], + [24009,null], + [24011,328988000], + [24013,1095101000], + [24015,1301056000], + [24017,157963000], + [24019,991915000], + [24021,3003696000], + [24023,143206000], + [24025,2016099000], + [24027,2368343000], + [24029,290197000], + [24031,3264117000], + [24033,2504675000], + [24035,238752000], + [24037,null], + [24039,0], + [24041,null], + [24043,2448692000], + [24045,null], + [24047,154643000], + [24510,5730887000], + [25001,533264000], + [25003,1425512000], + [25005,8878114000], + [25007,0], + [25009,17488661000], + [25011,1164378000], + [25013,6001102000], + [25015,1098826000], + [25017,22482647000], + [25019,0], + [25021,10340798000], + [25023,2577234000], + [25025,3703400000], + [25027,10706055000], + [26001,0], + [26003,193878000], + [26005,4240717000], + [26007,587361000], + [26009,193641000], + [26011,126555000], + [26013,0], + [26015,977390000], + [26017,1107212000], + [26019,0], + [26021,2298338000], + [26023,1061117000], + [26025,4953967000], + [26027,711270000], + [26029,698616000], + [26031,0], + [26033,null], + [26035,192498000], + [26037,609277000], + [26039,152551000], + [26041,712562000], + [26043,null], + [26045,null], + [26047,254402000], + [26049,12579452000], + [26051,174082000], + [26053,80116000], + [26055,1160721000], + [26057,357431000], + [26059,1330797000], + [26061,null], + [26063,647313000], + [26065,null], + [26067,1117372000], + [26069,190442000], + [26071,0], + [26073,528739000], + [26075,2782988000], + [26077,7145875000], + [26079,0], + [26081,15738279000], + [26083,0], + [26085,0], + [26087,1142583000], + [26089,0], + [26091,2230840000], + [26093,2715794000], + [26095,0], + [26097,0], + [26099,23588483000], + [26101,391221000], + [26103,310442000], + [26105,518341000], + [26107,668177000], + [26109,418452000], + [26111,2821268000], + [26113,0], + [26115,3502955000], + [26117,388978000], + [26119,0], + [26121,3675844000], + [26123,560828000], + [26125,25885162000], + [26127,364129000], + [26129,151662000], + [26131,0], + [26133,967956000], + [26135,0], + [26137,158006000], + [26139,9210895000], + [26141,0], + [26143,0], + [26145,4604837000], + [26147,2855519000], + [26149,3106616000], + [26151,595097000], + [26153,0], + [26155,409484000], + [26157,581524000], + [26159,1312898000], + [26161,5331756000], + [26163,55896948000], + [26165,null], + [27001,0], + [27003,6460209000], + [27005,284757000], + [27007,279841000], + [27009,839106000], + [27011,0], + [27013,2728744000], + [27015,1596868000], + [27017,null], + [27019,3149535000], + [27021,0], + [27023,175820000], + [27025,403091000], + [27027,317074000], + [27029,null], + [27031,0], + [27033,636146000], + [27035,null], + [27037,12930085000], + [27039,null], + [27041,688179000], + [27043,408570000], + [27045,377422000], + [27047,766952000], + [27049,1332287000], + [27051,0], + [27053,20957675000], + [27055,null], + [27057,328593000], + [27059,317710000], + [27061,627175000], + [27063,409641000], + [27065,114482000], + [27067,818684000], + [27069,0], + [27071,null], + [27073,0], + [27075,156799000], + [27077,0], + [27079,623932000], + [27081,0], + [27083,697038000], + [27085,1603433000], + [27087,0], + [27089,0], + [27091,779422000], + [27093,692594000], + [27095,215116000], + [27097,504128000], + [27099,null], + [27101,0], + [27103,872321000], + [27105,951960000], + [27107,0], + [27109,2971351000], + [27111,1054359000], + [27113,null], + [27115,0], + [27117,null], + [27119,954096000], + [27121,82663000], + [27123,7578926000], + [27125,0], + [27127,148059000], + [27129,null], + [27131,1397918000], + [27133,0], + [27135,null], + [27137,null], + [27139,1924968000], + [27141,683259000], + [27143,548531000], + [27145,3745535000], + [27147,1485036000], + [27149,192904000], + [27151,0], + [27153,648116000], + [27155,0], + [27157,null], + [27159,0], + [27161,633876000], + [27163,5751832000], + [27165,327529000], + [27167,0], + [27169,1711138000], + [27171,1124571000], + [27173,0], + [28001,0], + [28003,944585000], + [28005,null], + [28007,319485000], + [28009,0], + [28011,287016000], + [28013,235326000], + [28015,0], + [28017,427185000], + [28019,0], + [28021,0], + [28023,null], + [28025,392963000], + [28027,null], + [28029,null], + [28031,null], + [28033,1663506000], + [28035,883448000], + [28037,0], + [28039,0], + [28041,0], + [28043,732464000], + [28045,null], + [28047,null], + [28049,1406186000], + [28051,207973000], + [28053,null], + [28055,0], + [28057,null], + [28059,null], + [28061,256511000], + [28063,0], + [28065,0], + [28067,1759970000], + [28069,0], + [28071,null], + [28073,null], + [28075,750921000], + [28077,null], + [28079,null], + [28081,2986825000], + [28083,null], + [28085,275680000], + [28087,2075457000], + [28089,6471938000], + [28091,166262000], + [28093,null], + [28095,1472743000], + [28097,0], + [28099,192438000], + [28101,290795000], + [28103,198912000], + [28105,514341000], + [28107,495278000], + [28109,null], + [28111,null], + [28113,null], + [28115,null], + [28117,975223000], + [28119,0], + [28121,1865834000], + [28123,1057520000], + [28125,0], + [28127,0], + [28129,402581000], + [28131,null], + [28133,null], + [28135,0], + [28137,244257000], + [28139,566188000], + [28141,305441000], + [28143,0], + [28145,418120000], + [28147,167291000], + [28149,1856711000], + [28151,840250000], + [28153,287499000], + [28155,0], + [28157,0], + [28159,483377000], + [28161,null], + [28163,371801000], + [29001,null], + [29003,0], + [29005,0], + [29007,1337135000], + [29009,1409848000], + [29011,174302000], + [29013,0], + [29015,0], + [29017,0], + [29019,null], + [29021,null], + [29023,632708000], + [29025,0], + [29027,null], + [29029,251109000], + [29031,null], + [29033,0], + [29035,0], + [29037,483706000], + [29039,0], + [29041,0], + [29043,255616000], + [29045,0], + [29047,10903503000], + [29049,0], + [29051,1568097000], + [29053,155345000], + [29055,271662000], + [29057,0], + [29059,null], + [29061,0], + [29063,0], + [29065,246567000], + [29067,null], + [29069,null], + [29071,2432105000], + [29073,172359000], + [29075,0], + [29077,3845368000], + [29079,null], + [29081,0], + [29083,566623000], + [29085,0], + [29087,0], + [29089,0], + [29091,682130000], + [29093,0], + [29095,8939022000], + [29097,3336561000], + [29099,1538071000], + [29101,null], + [29103,0], + [29105,1225562000], + [29107,225710000], + [29109,608675000], + [29111,0], + [29113,528261000], + [29115,166854000], + [29117,130272000], + [29119,null], + [29121,0], + [29123,0], + [29125,0], + [29127,null], + [29129,0], + [29131,74805000], + [29133,0], + [29135,null], + [29137,null], + [29139,121656000], + [29141,108135000], + [29143,null], + [29145,646652000], + [29147,866565000], + [29149,0], + [29151,433058000], + [29153,0], + [29155,null], + [29157,711618000], + [29159,1535848000], + [29161,454757000], + [29163,308929000], + [29165,2077389000], + [29167,null], + [29169,0], + [29171,0], + [29173,null], + [29175,196853000], + [29177,0], + [29179,0], + [29181,0], + [29183,6532751000], + [29185,0], + [29186,368461000], + [29187,341767000], + [29189,22654565000], + [29195,803465000], + [29197,0], + [29199,0], + [29201,976857000], + [29203,0], + [29205,0], + [29207,887974000], + [29209,0], + [29211,null], + [29213,null], + [29215,214691000], + [29217,null], + [29219,297421000], + [29221,104179000], + [29223,0], + [29225,161470000], + [29227,0], + [29229,146589000], + [29510,10920629000], + [30001,0], + [30003,0], + [30005,0], + [30007,0], + [30009,0], + [30011,0], + [30013,670881000], + [30015,0], + [30017,0], + [30019,0], + [30021,0], + [30023,0], + [30025,0], + [30027,0], + [30029,919447000], + [30031,512617000], + [30033,0], + [30035,0], + [30037,0], + [30039,0], + [30041,0], + [30043,0], + [30045,0], + [30047,119815000], + [30049,null], + [30051,0], + [30053,0], + [30055,0], + [30057,0], + [30059,0], + [30061,0], + [30063,674892000], + [30065,0], + [30067,0], + [30069,0], + [30071,0], + [30073,0], + [30075,0], + [30077,0], + [30079,0], + [30081,130234000], + [30083,0], + [30085,0], + [30087,0], + [30089,0], + [30091,0], + [30093,0], + [30095,0], + [30097,0], + [30099,0], + [30101,0], + [30103,0], + [30105,0], + [30107,0], + [30109,0], + [30111,5739955000], + [31001,null], + [31003,0], + [31005,0], + [31007,0], + [31009,0], + [31011,0], + [31013,0], + [31015,0], + [31017,0], + [31019,null], + [31021,0], + [31023,null], + [31025,0], + [31027,0], + [31029,0], + [31031,0], + [31033,0], + [31035,0], + [31037,null], + [31039,0], + [31041,0], + [31043,null], + [31045,0], + [31047,null], + [31049,0], + [31051,null], + [31053,1233777000], + [31055,10012827000], + [31057,0], + [31059,0], + [31061,0], + [31063,0], + [31065,0], + [31067,602634000], + [31069,0], + [31071,0], + [31073,0], + [31075,0], + [31077,0], + [31079,null], + [31081,463376000], + [31083,0], + [31085,0], + [31087,0], + [31089,0], + [31091,0], + [31093,0], + [31095,127852000], + [31097,0], + [31099,0], + [31101,0], + [31103,0], + [31105,0], + [31107,0], + [31109,null], + [31111,0], + [31113,0], + [31115,0], + [31117,0], + [31119,null], + [31121,0], + [31123,0], + [31125,0], + [31127,0], + [31129,0], + [31131,405399000], + [31133,0], + [31135,0], + [31137,null], + [31139,0], + [31141,2353587000], + [31143,0], + [31145,0], + [31147,0], + [31149,0], + [31151,951752000], + [31153,587723000], + [31155,null], + [31157,177862000], + [31159,null], + [31161,0], + [31163,0], + [31165,0], + [31167,0], + [31169,0], + [31171,0], + [31173,0], + [31175,0], + [31177,724196000], + [31179,180043000], + [31181,0], + [31183,0], + [31185,353197000], + [32001,0], + [32003,7180673000], + [32005,751816000], + [32007,0], + [32009,0], + [32011,0], + [32013,0], + [32015,0], + [32017,0], + [32019,573568000], + [32021,0], + [32023,0], + [32027,0], + [32029,0], + [32031,null], + [32033,0], + [32510,621630000], + [33001,687068000], + [33003,213380000], + [33005,1095187000], + [33007,295901000], + [33009,1314279000], + [33011,7707601000], + [33013,1539636000], + [33015,3912579000], + [33017,1185999000], + [33019,640776000], + [34001,null], + [34003,11973822000], + [34005,6072287000], + [34007,4150100000], + [34009,null], + [34011,2591390000], + [34013,10422670000], + [34015,15679384000], + [34017,2614244000], + [34019,null], + [34021,null], + [34023,12207299000], + [34025,3468419000], + [34027,7631668000], + [34029,null], + [34031,5178299000], + [34033,1440380000], + [34035,6401528000], + [34037,null], + [34039,18574672000], + [34041,2212191000], + [35001,null], + [35003,0], + [35005,661458000], + [35006,0], + [35007,0], + [35009,null], + [35011,0], + [35013,931885000], + [35015,null], + [35017,0], + [35019,0], + [35021,0], + [35023,0], + [35025,280360000], + [35027,0], + [35028,0], + [35029,null], + [35031,null], + [35033,0], + [35035,0], + [35037,0], + [35039,0], + [35041,0], + [35043,null], + [35045,668723000], + [35047,0], + [35049,null], + [35051,0], + [35053,0], + [35055,0], + [35057,0], + [35059,0], + [35061,null], + [36001,3351466000], + [36003,965927000], + [36005,null], + [36007,2525374000], + [36009,738657000], + [36011,1109917000], + [36013,4461927000], + [36015,1280767000], + [36017,595598000], + [36019,1599821000], + [36021,619223000], + [36023,603729000], + [36025,1432929000], + [36027,3823002000], + [36029,15873786000], + [36031,null], + [36033,0], + [36035,520610000], + [36037,815469000], + [36039,591094000], + [36041,0], + [36043,546373000], + [36045,839928000], + [36047,4555642000], + [36049,511634000], + [36051,463926000], + [36053,941392000], + [36055,16615398000], + [36057,719513000], + [36059,null], + [36061,8315093000], + [36063,3433070000], + [36065,3251782000], + [36067,7251514000], + [36069,2097308000], + [36071,2353505000], + [36073,465198000], + [36075,2441281000], + [36077,177758000], + [36079,null], + [36081,5654377000], + [36083,null], + [36085,null], + [36087,13670426000], + [36089,2141635000], + [36091,1783567000], + [36093,1702485000], + [36095,0], + [36097,null], + [36099,428053000], + [36101,1821198000], + [36103,19089722000], + [36105,243754000], + [36107,535756000], + [36109,742802000], + [36111,null], + [36113,1130451000], + [36115,832205000], + [36117,1888986000], + [36119,4122897000], + [36121,456964000], + [36123,null], + [37001,3163071000], + [37003,604762000], + [37005,109160000], + [37007,null], + [37009,206294000], + [37011,0], + [37013,1215635000], + [37015,null], + [37017,1530894000], + [37019,null], + [37021,3211724000], + [37023,2271177000], + [37025,null], + [37027,1558433000], + [37029,0], + [37031,292219000], + [37033,0], + [37035,6291105000], + [37037,1129694000], + [37039,265366000], + [37041,341652000], + [37043,0], + [37045,2229759000], + [37047,887699000], + [37049,null], + [37051,null], + [37053,0], + [37055,98442000], + [37057,2696737000], + [37059,1001617000], + [37061,1621386000], + [37063,9359581000], + [37065,1226856000], + [37067,16881466000], + [37069,1034097000], + [37071,4158572000], + [37073,0], + [37075,0], + [37077,2252128000], + [37079,0], + [37081,23940364000], + [37083,null], + [37085,464691000], + [37087,null], + [37089,2129645000], + [37091,null], + [37093,null], + [37095,0], + [37097,3167081000], + [37099,0], + [37101,2418261000], + [37103,0], + [37105,3521605000], + [37107,1229080000], + [37109,2106018000], + [37111,1332457000], + [37113,230487000], + [37115,0], + [37117,362578000], + [37119,11201036000], + [37121,71030000], + [37123,750829000], + [37125,669618000], + [37127,2956230000], + [37129,2883612000], + [37131,0], + [37133,253035000], + [37135,null], + [37137,0], + [37139,null], + [37141,null], + [37143,0], + [37145,null], + [37147,null], + [37149,153075000], + [37151,4397712000], + [37153,697349000], + [37155,2792640000], + [37157,3118411000], + [37159,3724283000], + [37161,901929000], + [37163,917639000], + [37165,1061208000], + [37167,925848000], + [37169,null], + [37171,1038042000], + [37173,0], + [37175,71860000], + [37177,0], + [37179,null], + [37181,639233000], + [37183,14091675000], + [37185,0], + [37187,727927000], + [37189,129842000], + [37191,1474760000], + [37193,1503279000], + [37195,8357064000], + [37197,null], + [37199,127399000], + [38001,0], + [38003,339829000], + [38005,0], + [38007,0], + [38009,0], + [38011,0], + [38013,0], + [38015,null], + [38017,2480094000], + [38019,0], + [38021,0], + [38023,0], + [38025,0], + [38027,0], + [38029,0], + [38031,0], + [38033,0], + [38035,565274000], + [38037,0], + [38039,0], + [38041,0], + [38043,0], + [38045,0], + [38047,0], + [38049,0], + [38051,0], + [38053,0], + [38055,0], + [38057,0], + [38059,null], + [38061,0], + [38063,0], + [38065,0], + [38067,486499000], + [38069,0], + [38071,0], + [38073,0], + [38075,0], + [38077,941607000], + [38079,0], + [38081,null], + [38083,0], + [38085,0], + [38087,0], + [38089,270564000], + [38091,0], + [38093,230404000], + [38095,0], + [38097,0], + [38099,null], + [38101,null], + [38103,0], + [38105,0], + [39001,133934000], + [39003,10009041000], + [39005,1017388000], + [39007,2201426000], + [39009,0], + [39011,2550625000], + [39013,500855000], + [39015,74204000], + [39017,11362034000], + [39019,344597000], + [39021,1050160000], + [39023,2494342000], + [39025,1250585000], + [39027,1025387000], + [39029,1572135000], + [39031,1222877000], + [39033,1470863000], + [39035,23131659000], + [39037,1517055000], + [39039,1048410000], + [39041,2314533000], + [39043,2329903000], + [39045,1061624000], + [39047,975549000], + [39049,14289424000], + [39051,3330407000], + [39053,0], + [39055,2964442000], + [39057,924130000], + [39059,1403152000], + [39061,25048906000], + [39063,3757206000], + [39065,560511000], + [39067,165163000], + [39069,2284343000], + [39071,642974000], + [39073,261521000], + [39075,1366416000], + [39077,2375769000], + [39079,2083902000], + [39081,null], + [39083,1913953000], + [39085,5220926000], + [39087,null], + [39089,3351769000], + [39091,null], + [39093,8305281000], + [39095,20075519000], + [39097,994608000], + [39099,2475096000], + [39101,3409213000], + [39103,2558826000], + [39105,0], + [39107,927946000], + [39109,2807319000], + [39111,null], + [39113,14049197000], + [39115,0], + [39117,null], + [39119,1134193000], + [39121,0], + [39123,762744000], + [39125,388737000], + [39127,124516000], + [39129,null], + [39131,620770000], + [39133,2969628000], + [39135,1070310000], + [39137,1984952000], + [39139,3563738000], + [39141,2522193000], + [39143,3373132000], + [39145,927058000], + [39147,1408813000], + [39149,6238437000], + [39151,10387443000], + [39153,9275476000], + [39155,8840981000], + [39157,2206524000], + [39159,null], + [39161,1072331000], + [39163,106494000], + [39165,4111235000], + [39167,2563679000], + [39169,2896455000], + [39171,3376848000], + [39173,4416437000], + [39175,791166000], + [40001,414425000], + [40003,0], + [40005,0], + [40007,0], + [40009,0], + [40011,0], + [40013,238180000], + [40015,0], + [40017,1192870000], + [40019,null], + [40021,0], + [40023,0], + [40025,0], + [40027,1223024000], + [40029,0], + [40031,1232438000], + [40033,0], + [40035,139040000], + [40037,1204448000], + [40039,533929000], + [40041,102172000], + [40043,0], + [40045,0], + [40047,1097738000], + [40049,null], + [40051,419712000], + [40053,0], + [40055,0], + [40057,0], + [40059,0], + [40061,0], + [40063,0], + [40065,357021000], + [40067,0], + [40069,0], + [40071,null], + [40073,0], + [40075,0], + [40077,0], + [40079,147458000], + [40081,198229000], + [40083,0], + [40085,0], + [40087,0], + [40089,1361661000], + [40091,0], + [40093,0], + [40095,207746000], + [40097,944026000], + [40099,0], + [40101,1167511000], + [40103,null], + [40105,0], + [40107,0], + [40109,7039445000], + [40111,363172000], + [40113,0], + [40115,379098000], + [40117,0], + [40119,1065263000], + [40121,223810000], + [40123,501296000], + [40125,1024308000], + [40127,0], + [40129,0], + [40131,2856002000], + [40133,124712000], + [40135,272324000], + [40137,1084940000], + [40139,null], + [40141,0], + [40143,16400140000], + [40145,561449000], + [40147,353507000], + [40149,0], + [40151,0], + [40153,0], + [41001,137989000], + [41003,590473000], + [41005,5668235000], + [41007,683627000], + [41009,826200000], + [41011,279107000], + [41013,209877000], + [41015,190654000], + [41017,897387000], + [41019,1506405000], + [41021,0], + [41023,0], + [41025,0], + [41027,245734000], + [41029,2037469000], + [41031,242914000], + [41033,471279000], + [41035,539664000], + [41037,0], + [41039,6219861000], + [41041,582682000], + [41043,2737558000], + [41045,null], + [41047,2845369000], + [41049,null], + [41051,10527633000], + [41053,416672000], + [41055,0], + [41057,633806000], + [41059,null], + [41061,337099000], + [41063,0], + [41065,0], + [41067,24048993000], + [41069,0], + [41071,1885753000], + [42001,2498302000], + [42003,15725247000], + [42005,370895000], + [42007,4708830000], + [42009,728654000], + [42011,8461848000], + [42013,1931222000], + [42015,1772445000], + [42017,9316305000], + [42019,5361964000], + [42021,1439815000], + [42023,213836000], + [42025,514283000], + [42027,1216463000], + [42029,6753001000], + [42031,586557000], + [42033,null], + [42035,1214979000], + [42037,null], + [42039,1632637000], + [42041,3472636000], + [42043,null], + [42045,19060350000], + [42047,1616512000], + [42049,6890810000], + [42051,1161382000], + [42053,0], + [42055,3244364000], + [42057,null], + [42059,null], + [42061,null], + [42063,null], + [42065,953515000], + [42067,392018000], + [42069,null], + [42071,13269853000], + [42073,1745196000], + [42075,2393561000], + [42077,7031570000], + [42079,5708309000], + [42081,3358208000], + [42083,1394433000], + [42085,3463612000], + [42087,950357000], + [42089,2656512000], + [42091,20398758000], + [42093,null], + [42095,3923120000], + [42097,1420453000], + [42099,null], + [42101,18069415000], + [42103,0], + [42105,205919000], + [42107,3043381000], + [42109,null], + [42111,955546000], + [42113,0], + [42115,115690000], + [42117,463131000], + [42119,null], + [42121,1113025000], + [42123,null], + [42125,3672862000], + [42127,115047000], + [42129,7076972000], + [42131,null], + [42133,11957398000], + [44001,496520000], + [44003,3039063000], + [44005,346092000], + [44007,6422854000], + [44009,1756988000], + [45001,657498000], + [45003,3959342000], + [45005,385377000], + [45007,4886331000], + [45009,null], + [45011,681251000], + [45013,223434000], + [45015,5527306000], + [45017,null], + [45019,5338128000], + [45021,2484926000], + [45023,1407542000], + [45025,1361004000], + [45027,291386000], + [45029,245234000], + [45031,2433365000], + [45033,432577000], + [45035,2361389000], + [45037,343876000], + [45039,263153000], + [45041,2885358000], + [45043,1046220000], + [45045,10821412000], + [45047,2821076000], + [45049,280315000], + [45051,894847000], + [45053,76412000], + [45055,1419129000], + [45057,1247597000], + [45059,1562273000], + [45061,0], + [45063,3465738000], + [45065,0], + [45067,367664000], + [45069,989848000], + [45071,1277465000], + [45073,1546420000], + [45075,2597882000], + [45077,1459950000], + [45079,6109796000], + [45081,0], + [45083,11731761000], + [45085,1921957000], + [45087,488385000], + [45089,1398099000], + [45091,3621151000], + [46003,0], + [46005,298554000], + [46007,0], + [46009,0], + [46011,2265746000], + [46013,null], + [46015,0], + [46017,0], + [46019,0], + [46021,0], + [46023,0], + [46025,0], + [46027,0], + [46029,null], + [46031,0], + [46033,0], + [46035,null], + [46037,0], + [46039,0], + [46041,0], + [46043,0], + [46045,0], + [46047,0], + [46049,0], + [46051,634219000], + [46053,0], + [46055,0], + [46057,0], + [46059,0], + [46061,0], + [46063,0], + [46065,0], + [46067,0], + [46069,0], + [46071,0], + [46073,null], + [46075,0], + [46077,0], + [46079,342933000], + [46081,null], + [46083,null], + [46085,0], + [46087,0], + [46089,0], + [46091,0], + [46093,0], + [46095,0], + [46097,0], + [46099,3518804000], + [46101,0], + [46102,0], + [46103,678329000], + [46105,0], + [46107,0], + [46109,0], + [46111,0], + [46115,0], + [46117,0], + [46119,0], + [46121,0], + [46123,0], + [46125,0], + [46127,null], + [46129,0], + [46135,635224000], + [46137,0], + [47001,1911158000], + [47003,1047294000], + [47005,82258000], + [47007,0], + [47009,5312323000], + [47011,null], + [47013,333944000], + [47015,0], + [47017,767010000], + [47019,296682000], + [47021,754873000], + [47023,0], + [47025,436150000], + [47027,0], + [47029,601262000], + [47031,null], + [47033,0], + [47035,468885000], + [47037,7347204000], + [47039,null], + [47041,743834000], + [47043,876604000], + [47045,1646993000], + [47047,889776000], + [47049,0], + [47051,3187056000], + [47053,977402000], + [47055,1004159000], + [47057,171296000], + [47059,1813963000], + [47061,0], + [47063,3214013000], + [47065,8040623000], + [47067,0], + [47069,423749000], + [47071,691797000], + [47073,1148701000], + [47075,631465000], + [47077,566730000], + [47079,null], + [47081,null], + [47083,0], + [47085,1052931000], + [47087,0], + [47089,862933000], + [47091,118206000], + [47093,4470899000], + [47095,0], + [47097,372934000], + [47099,null], + [47101,0], + [47103,null], + [47105,1502305000], + [47107,2381015000], + [47109,420885000], + [47111,null], + [47113,null], + [47115,null], + [47117,1490088000], + [47119,null], + [47121,253005000], + [47123,1386238000], + [47125,null], + [47127,0], + [47129,0], + [47131,null], + [47133,null], + [47135,169955000], + [47137,0], + [47139,0], + [47141,1384046000], + [47143,894654000], + [47145,369666000], + [47147,1667466000], + [47149,11304846000], + [47151,401688000], + [47153,null], + [47155,341511000], + [47157,17969681000], + [47159,null], + [47161,0], + [47163,5463624000], + [47165,1741400000], + [47167,774196000], + [47169,0], + [47171,348551000], + [47173,125615000], + [47175,0], + [47177,852303000], + [47179,1577657000], + [47181,109872000], + [47183,null], + [47185,552177000], + [47187,1106825000], + [47189,null], + [48001,0], + [48003,0], + [48005,1291427000], + [48007,0], + [48009,0], + [48011,0], + [48013,0], + [48015,null], + [48017,0], + [48019,0], + [48021,238609000], + [48023,0], + [48025,0], + [48027,1924972000], + [48029,12305089000], + [48031,0], + [48033,0], + [48035,0], + [48037,1729195000], + [48039,31048091000], + [48041,979406000], + [48043,0], + [48045,0], + [48047,0], + [48049,1249439000], + [48051,0], + [48053,null], + [48055,89770000], + [48057,null], + [48059,0], + [48061,null], + [48063,0], + [48065,0], + [48067,644710000], + [48069,0], + [48071,null], + [48073,552521000], + [48075,0], + [48077,0], + [48079,0], + [48081,0], + [48083,0], + [48085,7433796000], + [48087,0], + [48089,307342000], + [48091,1093683000], + [48093,0], + [48095,0], + [48097,579742000], + [48099,null], + [48101,0], + [48103,0], + [48105,0], + [48107,0], + [48109,0], + [48111,0], + [48113,39047030000], + [48115,0], + [48117,470796000], + [48119,0], + [48121,4008259000], + [48123,110375000], + [48125,0], + [48127,0], + [48129,0], + [48131,0], + [48133,135464000], + [48135,2049699000], + [48137,0], + [48139,4080603000], + [48141,14423498000], + [48143,849331000], + [48145,0], + [48147,135858000], + [48149,277817000], + [48151,0], + [48153,0], + [48155,0], + [48157,4986616000], + [48159,0], + [48161,0], + [48163,0], + [48165,0], + [48167,23480817000], + [48169,0], + [48171,88259000], + [48173,0], + [48175,0], + [48177,444676000], + [48179,683688000], + [48181,2542832000], + [48183,4233987000], + [48185,892610000], + [48187,2154106000], + [48189,null], + [48191,0], + [48193,0], + [48195,0], + [48197,0], + [48199,null], + [48201,169275136000], + [48203,1564301000], + [48205,0], + [48207,0], + [48209,1081843000], + [48211,0], + [48213,201948000], + [48215,1503200000], + [48217,153569000], + [48219,0], + [48221,null], + [48223,923111000], + [48225,265384000], + [48227,2449585000], + [48229,0], + [48231,3134435000], + [48233,null], + [48235,0], + [48237,0], + [48239,null], + [48241,725620000], + [48243,0], + [48245,null], + [48247,0], + [48249,0], + [48251,1441386000], + [48253,0], + [48255,0], + [48257,1172591000], + [48259,180918000], + [48261,0], + [48263,0], + [48265,161752000], + [48267,0], + [48269,0], + [48271,0], + [48273,0], + [48275,0], + [48277,2411601000], + [48279,null], + [48281,0], + [48283,0], + [48285,238235000], + [48287,128453000], + [48289,null], + [48291,null], + [48293,210827000], + [48295,0], + [48297,0], + [48299,0], + [48301,0], + [48303,null], + [48305,0], + [48307,0], + [48309,5888916000], + [48311,0], + [48313,0], + [48315,0], + [48317,0], + [48319,0], + [48321,null], + [48323,0], + [48325,75313000], + [48327,0], + [48329,533829000], + [48331,null], + [48333,0], + [48335,0], + [48337,0], + [48339,3667010000], + [48341,null], + [48343,1140439000], + [48345,0], + [48347,1418896000], + [48349,758537000], + [48351,0], + [48353,224883000], + [48355,null], + [48357,0], + [48359,0], + [48361,null], + [48363,307163000], + [48365,264006000], + [48367,550365000], + [48369,null], + [48371,0], + [48373,98527000], + [48375,null], + [48377,0], + [48379,0], + [48381,null], + [48383,0], + [48385,0], + [48387,101783000], + [48389,0], + [48391,0], + [48393,0], + [48395,0], + [48397,301261000], + [48399,206973000], + [48401,null], + [48403,0], + [48405,0], + [48407,0], + [48409,null], + [48411,0], + [48413,0], + [48415,0], + [48417,0], + [48419,552023000], + [48421,0], + [48423,5423538000], + [48425,0], + [48427,0], + [48429,0], + [48431,0], + [48433,0], + [48435,0], + [48437,0], + [48439,43337529000], + [48441,null], + [48443,0], + [48445,0], + [48447,0], + [48449,1291453000], + [48451,null], + [48453,28294664000], + [48455,0], + [48457,0], + [48459,null], + [48461,0], + [48463,203651000], + [48465,0], + [48467,119886000], + [48469,null], + [48471,null], + [48473,null], + [48475,0], + [48477,762771000], + [48479,242392000], + [48481,463995000], + [48483,0], + [48485,1492453000], + [48487,null], + [48489,0], + [48491,1647635000], + [48493,0], + [48495,0], + [48497,376535000], + [48499,708014000], + [48501,0], + [48503,301414000], + [48505,0], + [48507,0], + [49001,0], + [49003,3150909000], + [49005,null], + [49007,0], + [49009,0], + [49011,4985245000], + [49013,0], + [49015,0], + [49017,0], + [49019,0], + [49021,735967000], + [49023,0], + [49025,0], + [49027,0], + [49029,0], + [49031,0], + [49033,0], + [49035,18860476000], + [49037,0], + [49039,0], + [49041,0], + [49043,0], + [49045,null], + [49047,0], + [49049,null], + [49051,0], + [49053,609632000], + [49055,0], + [49057,null], + [50001,538957000], + [50003,571644000], + [50005,339060000], + [50007,4823542000], + [50009,62793000], + [50011,null], + [50013,0], + [50015,0], + [50017,161917000], + [50019,null], + [50021,640754000], + [50023,1011871000], + [50025,375077000], + [50027,406465000], + [51001,526157000], + [51003,307141000], + [51005,null], + [51007,0], + [51009,554193000], + [51011,null], + [51013,0], + [51015,1582642000], + [51017,0], + [51019,785359000], + [51021,192148000], + [51023,883879000], + [51025,96536000], + [51027,0], + [51029,0], + [51031,1527558000], + [51033,0], + [51035,236759000], + [51036,0], + [51037,91908000], + [51041,3849982000], + [51043,228253000], + [51045,0], + [51047,null], + [51049,0], + [51051,0], + [51053,645731000], + [51057,56903000], + [51059,2052677000], + [51061,159608000], + [51063,0], + [51065,0], + [51067,null], + [51069,2578741000], + [51071,null], + [51073,0], + [51075,0], + [51077,93431000], + [51079,0], + [51081,248688000], + [51083,620067000], + [51085,926273000], + [51087,3264995000], + [51089,1097915000], + [51091,0], + [51093,null], + [51095,1567206000], + [51097,0], + [51099,0], + [51101,0], + [51103,0], + [51105,0], + [51107,1400175000], + [51109,435940000], + [51111,null], + [51113,0], + [51115,0], + [51117,281033000], + [51119,0], + [51121,838137000], + [51125,0], + [51127,0], + [51131,null], + [51133,null], + [51135,0], + [51137,222241000], + [51139,204124000], + [51141,248454000], + [51143,752137000], + [51145,0], + [51147,0], + [51149,783838000], + [51153,563598000], + [51155,2797095000], + [51157,0], + [51159,0], + [51161,896071000], + [51163,325974000], + [51165,5437495000], + [51167,192925000], + [51169,451508000], + [51171,1058065000], + [51173,777241000], + [51175,831405000], + [51177,496376000], + [51179,140813000], + [51181,0], + [51183,0], + [51185,354503000], + [51187,null], + [51191,1359544000], + [51193,199608000], + [51195,0], + [51197,567442000], + [51199,null], + [51510,284508000], + [51520,659762000], + [51530,202807000], + [51540,677065000], + [51550,1437051000], + [51570,0], + [51580,null], + [51590,1275937000], + [51595,311546000], + [51600,0], + [51610,null], + [51620,0], + [51630,0], + [51640,204060000], + [51650,522377000], + [51660,746325000], + [51670,1495977000], + [51678,0], + [51680,2801602000], + [51683,1408656000], + [51685,0], + [51690,201385000], + [51700,4702700000], + [51710,1280817000], + [51720,null], + [51730,595891000], + [51735,0], + [51740,652915000], + [51750,null], + [51760,10192124000], + [51770,1582354000], + [51775,984033000], + [51790,101382000], + [51800,1307801000], + [51810,1806461000], + [51820,759893000], + [51830,0], + [51840,null], + [53001,442178000], + [53003,0], + [53005,null], + [53007,null], + [53009,470437000], + [53011,null], + [53013,0], + [53015,2914723000], + [53017,0], + [53019,0], + [53021,null], + [53023,0], + [53025,992952000], + [53027,1056931000], + [53029,null], + [53031,209489000], + [53033,37390762000], + [53035,null], + [53037,81076000], + [53039,null], + [53041,1109135000], + [53043,0], + [53045,null], + [53047,0], + [53049,138729000], + [53051,null], + [53053,4958643000], + [53055,0], + [53057,8918220000], + [53059,0], + [53061,22552297000], + [53063,3895374000], + [53065,383589000], + [53067,870094000], + [53069,0], + [53071,2155540000], + [53073,11809690000], + [53075,null], + [53077,2686079000], + [54001,0], + [54003,null], + [54005,0], + [54007,0], + [54009,2645118000], + [54011,null], + [54013,0], + [54015,0], + [54017,0], + [54019,null], + [54021,0], + [54023,0], + [54025,148335000], + [54027,0], + [54029,null], + [54031,null], + [54033,null], + [54035,1296649000], + [54037,null], + [54039,null], + [54041,0], + [54043,0], + [54045,124916000], + [54047,0], + [54049,546362000], + [54051,0], + [54053,null], + [54055,252489000], + [54057,null], + [54059,0], + [54061,null], + [54063,0], + [54065,0], + [54067,192587000], + [54069,null], + [54071,0], + [54073,null], + [54075,0], + [54077,null], + [54079,null], + [54081,null], + [54083,321467000], + [54085,null], + [54087,0], + [54089,0], + [54091,0], + [54093,0], + [54095,218637000], + [54097,264775000], + [54099,null], + [54101,0], + [54103,null], + [54105,0], + [54107,null], + [54109,0], + [55001,0], + [55003,222407000], + [55005,1207388000], + [55007,0], + [55009,9321930000], + [55011,0], + [55013,226977000], + [55015,1355169000], + [55017,1574990000], + [55019,1475171000], + [55021,1744110000], + [55023,820849000], + [55025,6968111000], + [55027,3094378000], + [55029,432764000], + [55031,1311647000], + [55033,1613471000], + [55035,1533978000], + [55037,0], + [55039,2903240000], + [55041,0], + [55043,null], + [55045,925791000], + [55047,321524000], + [55049,395500000], + [55051,0], + [55053,229126000], + [55055,3674302000], + [55057,374863000], + [55059,3093705000], + [55061,408066000], + [55063,null], + [55065,209683000], + [55067,372274000], + [55069,null], + [55071,3018830000], + [55073,null], + [55075,1784187000], + [55077,254802000], + [55078,0], + [55079,19065361000], + [55081,1055783000], + [55083,400507000], + [55085,494243000], + [55087,6802635000], + [55089,3161881000], + [55091,0], + [55093,529045000], + [55095,958520000], + [55097,1449500000], + [55099,529386000], + [55101,7863331000], + [55103,613108000], + [55105,12381604000], + [55107,301246000], + [55109,1347251000], + [55111,1638290000], + [55113,180912000], + [55115,582024000], + [55117,6126057000], + [55119,630669000], + [55121,1438897000], + [55123,178393000], + [55125,0], + [55127,2247440000], + [55129,null], + [55131,3393434000], + [55133,15663482000], + [55135,2133603000], + [55137,111250000], + [55139,9198861000], + [55141,2562632000], + [56001,0], + [56003,0], + [56005,262454000], + [56007,0], + [56009,0], + [56011,0], + [56013,0], + [56015,147899000], + [56017,0], + [56019,0], + [56021,2420198000], + [56023,null], + [56025,1230635000], + [56027,0], + [56029,62727000], + [56031,0], + [56033,0], + [56035,0], + [56037,null], + [56039,0], + [56041,0], + [56043,0], + [56045,0] + ] +} diff --git a/data/regional/united-states/economics/traveltime/us-work-traveltime-2010.json b/data/regional/united-states/economics/traveltime/us-work-traveltime-2010.json new file mode 100644 index 0000000..8f6d599 --- /dev/null +++ b/data/regional/united-states/economics/traveltime/us-work-traveltime-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Average Travel Time To Work", + "description" : "Average/mean travel time to work.", + "units" : "minutes", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","workforce","travel","transportation"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.work.traveltime.2010"], + [1001,25.1], + [1003,25.8], + [1005,23.8], + [1007,28.3], + [1009,33.2], + [1011,28.1], + [1013,25.1], + [1015,22.1], + [1017,23.6], + [1019,26.2], + [1021,32], + [1023,34.8], + [1025,25.1], + [1027,27.3], + [1029,29.1], + [1031,20.7], + [1033,22.7], + [1035,25.2], + [1037,30.2], + [1039,20.8], + [1041,27.4], + [1043,27.4], + [1045,20], + [1047,24.7], + [1049,23.1], + [1051,27.5], + [1053,24.6], + [1055,23.6], + [1057,27.2], + [1059,24.4], + [1061,26.1], + [1063,25.1], + [1065,28], + [1067,23.3], + [1069,19.7], + [1071,26.2], + [1073,23.3], + [1075,25.5], + [1077,23.5], + [1079,26.1], + [1081,20.3], + [1083,25], + [1085,35.4], + [1087,22.8], + [1089,20.8], + [1091,21.1], + [1093,23.7], + [1095,24.4], + [1097,24.1], + [1099,23.4], + [1101,19.7], + [1103,22.9], + [1105,29.1], + [1107,29.9], + [1109,19.5], + [1111,26.9], + [1113,22.3], + [1115,30.1], + [1117,29], + [1119,23.8], + [1121,24.6], + [1123,23.7], + [1125,20.3], + [1127,28.8], + [1129,32.1], + [1131,25], + [1133,25.2], + [2013,4.3], + [2016,4.6], + [2020,18.2], + [2050,7], + [2060,8.7], + [2068,12.8], + [2070,9.2], + [2090,18], + [2100,12.9], + [2105,9.7], + [2110,15.3], + [2122,18.4], + [2130,14.2], + [2150,13.4], + [2158,5.4], + [2164,6.3], + [2170,33.4], + [2180,5.9], + [2185,5.4], + [2188,7.4], + [2195,8.5], + [2198,14.2], + [2220,10.1], + [2230,4.6], + [2240,16.6], + [2261,14.3], + [2275,13.4], + [2282,6.3], + [2290,7.7], + [4001,26.4], + [4003,19.5], + [4005,18], + [4007,18.9], + [4009,19.6], + [4011,14.8], + [4012,14.6], + [4013,25.7], + [4015,19.4], + [4017,21.8], + [4019,23.9], + [4021,32.4], + [4023,19], + [4025,21.7], + [4027,19.1], + [5001,14.7], + [5003,18.6], + [5005,17.1], + [5007,20.8], + [5009,19.7], + [5011,17.2], + [5013,26.1], + [5015,19.1], + [5017,21], + [5019,21], + [5021,22.6], + [5023,23.9], + [5025,26.2], + [5027,17.9], + [5029,23.8], + [5031,17.8], + [5033,21.1], + [5035,21.1], + [5037,23.1], + [5039,19.6], + [5041,21.4], + [5043,22.2], + [5045,24.8], + [5047,24.6], + [5049,24], + [5051,22.3], + [5053,28.6], + [5055,19.6], + [5057,19.8], + [5059,26.8], + [5061,18.5], + [5063,20.9], + [5065,24], + [5067,18.6], + [5069,21.3], + [5071,19.5], + [5073,23], + [5075,25.9], + [5077,18.7], + [5079,24.1], + [5081,24.7], + [5083,27.5], + [5085,26.1], + [5087,28.8], + [5089,21.6], + [5091,19.4], + [5093,18.1], + [5095,20.3], + [5097,27.2], + [5099,23.8], + [5101,34.5], + [5103,20.2], + [5105,31.9], + [5107,18.5], + [5109,26.8], + [5111,22.2], + [5113,20], + [5115,19.1], + [5117,22.9], + [5119,19.2], + [5121,27.4], + [5123,19.8], + [5125,24.8], + [5127,23.2], + [5129,25.8], + [5131,17.5], + [5133,19], + [5135,27.2], + [5137,19.1], + [5139,17.6], + [5141,29.2], + [5143,20.3], + [5145,22], + [5147,16.5], + [5149,22.5], + [6001,27.9], + [6003,23.1], + [6005,28.9], + [6007,20.8], + [6009,37.2], + [6011,22.4], + [6013,32], + [6015,14.9], + [6017,29.4], + [6019,21.5], + [6021,20.5], + [6023,17.9], + [6025,19.2], + [6027,17.2], + [6029,23.2], + [6031,20.9], + [6033,27.8], + [6035,17.9], + [6037,29], + [6039,26.9], + [6041,28.2], + [6043,35.2], + [6045,19.2], + [6047,25.6], + [6049,18.2], + [6051,18.4], + [6053,22], + [6055,24.1], + [6057,24.1], + [6059,25.9], + [6061,27], + [6063,20.6], + [6065,31.7], + [6067,25.8], + [6069,30.6], + [6071,29.3], + [6073,24.6], + [6075,29.4], + [6077,29.7], + [6079,20.3], + [6081,25], + [6083,19.5], + [6085,24.2], + [6087,25.7], + [6089,19.4], + [6091,27.4], + [6093,19.5], + [6095,29.5], + [6097,25.1], + [6099,26.5], + [6101,27.9], + [6103,22.7], + [6105,20.9], + [6107,20.9], + [6109,25.8], + [6111,25.4], + [6113,21.3], + [6115,28.8], + [8001,28.4], + [8003,14], + [8005,26.6], + [8007,18.9], + [8009,12.3], + [8011,23.2], + [8013,21.7], + [8014,26.8], + [8015,15.3], + [8017,13.8], + [8019,28.7], + [8021,24.4], + [8023,22.1], + [8025,24.6], + [8027,29.1], + [8029,24], + [8031,24.6], + [8033,18.9], + [8035,27.2], + [8037,19.9], + [8039,41], + [8041,21.8], + [8043,23.5], + [8045,28.5], + [8047,34.1], + [8049,18.6], + [8051,12.5], + [8053,5.7], + [8055,23.2], + [8057,18.8], + [8059,25.9], + [8061,16.4], + [8063,12.8], + [8065,33.3], + [8067,20.3], + [8069,22], + [8071,21.6], + [8073,17.1], + [8075,17.1], + [8077,20.6], + [8079,11.7], + [8081,25.1], + [8083,22.8], + [8085,21.4], + [8087,15.9], + [8089,16.2], + [8091,23.4], + [8093,41.1], + [8095,15.9], + [8097,19], + [8099,14.3], + [8101,20.4], + [8103,19.4], + [8105,19], + [8107,17.8], + [8109,18.9], + [8111,14.5], + [8113,16.7], + [8115,21.4], + [8117,16.4], + [8119,32.7], + [8121,21], + [8123,25.2], + [8125,16.4], + [9001,28], + [9003,21.9], + [9005,26.8], + [9007,24.2], + [9009,23.9], + [9011,22.4], + [9013,25.3], + [9015,25.9], + [10001,24.2], + [10003,24.4], + [10005,23.5], + [11001,29.3], + [12001,20.4], + [12003,30.3], + [12005,20.9], + [12007,24.6], + [12009,23.6], + [12011,26.8], + [12013,27.6], + [12015,23.5], + [12017,25.6], + [12019,32.1], + [12021,23.6], + [12023,21.3], + [12027,24.7], + [12029,23.2], + [12031,23.4], + [12033,21.8], + [12035,24.4], + [12037,20.3], + [12039,29.1], + [12041,32.8], + [12043,27.6], + [12045,25.9], + [12047,25.5], + [12049,25.8], + [12051,28.5], + [12053,30.2], + [12055,22], + [12057,25.6], + [12059,28.3], + [12061,21.7], + [12063,23.5], + [12065,25.7], + [12067,26.7], + [12069,27.8], + [12071,26], + [12073,20], + [12075,29.4], + [12077,23.4], + [12079,25.1], + [12081,23.5], + [12083,24.5], + [12085,23.5], + [12086,29.5], + [12087,18], + [12089,28.4], + [12091,22.3], + [12093,26.7], + [12095,26.2], + [12097,30.2], + [12099,24.7], + [12101,30], + [12103,23], + [12105,25.4], + [12107,28.7], + [12109,25.8], + [12111,28], + [12113,28.1], + [12115,21.6], + [12117,25.7], + [12119,24], + [12121,26.8], + [12123,23.3], + [12125,23.8], + [12127,24.7], + [12129,29], + [12131,27.2], + [12133,30], + [13001,23.4], + [13003,22.5], + [13005,23.8], + [13007,27.2], + [13009,19.2], + [13011,26.9], + [13013,31.7], + [13015,28], + [13017,20.2], + [13019,23.6], + [13021,20.8], + [13023,22.8], + [13025,30.1], + [13027,22.8], + [13029,28], + [13031,21.6], + [13033,30], + [13035,30.2], + [13037,20.1], + [13039,21.5], + [13043,22.7], + [13045,28.7], + [13047,22.8], + [13049,31.8], + [13051,20.7], + [13053,15.6], + [13055,22.4], + [13057,33.3], + [13059,18.6], + [13061,21.2], + [13063,30.5], + [13065,19], + [13067,29.7], + [13069,19.6], + [13071,22], + [13073,23.7], + [13075,23], + [13077,30.8], + [13079,29.1], + [13081,19.1], + [13083,27.4], + [13085,31.9], + [13087,21.4], + [13089,30.7], + [13091,25.2], + [13093,19], + [13095,18], + [13097,32.9], + [13099,19.4], + [13101,28.7], + [13103,29.1], + [13105,20], + [13107,22.9], + [13109,23.1], + [13111,26.7], + [13113,29.7], + [13115,22.3], + [13117,29.9], + [13119,22.3], + [13121,27.1], + [13123,28.1], + [13125,32.4], + [13127,19.1], + [13129,23.7], + [13131,27.4], + [13133,25.5], + [13135,32.5], + [13137,22.3], + [13139,25.9], + [13141,26.5], + [13143,27.6], + [13145,26.7], + [13147,22.6], + [13149,36.2], + [13151,33], + [13153,20.6], + [13155,22.9], + [13157,26.8], + [13159,35.9], + [13161,22.4], + [13163,21.9], + [13165,25], + [13167,29], + [13169,24.4], + [13171,25.3], + [13173,23.2], + [13175,21.4], + [13177,20.1], + [13179,21.2], + [13181,35.1], + [13183,26.4], + [13185,17], + [13187,30.5], + [13189,23.7], + [13191,25.7], + [13193,22], + [13195,23.5], + [13197,26.4], + [13199,29.7], + [13201,19.8], + [13205,19.8], + [13207,27.8], + [13209,23.2], + [13211,25.3], + [13213,23.8], + [13215,18.6], + [13217,31.5], + [13219,21.7], + [13221,26.2], + [13223,38.9], + [13225,22.6], + [13227,30.9], + [13229,22.6], + [13231,31.7], + [13233,26.9], + [13235,22.5], + [13237,26.7], + [13239,19.7], + [13241,21.3], + [13243,18.9], + [13245,19.5], + [13247,32.6], + [13249,30.9], + [13251,28.5], + [13253,23.8], + [13255,28.2], + [13257,21.2], + [13259,29], + [13261,18], + [13263,28.4], + [13265,30.3], + [13267,24.8], + [13269,25.9], + [13271,22], + [13273,20.2], + [13275,19.9], + [13277,16.2], + [13279,21.7], + [13281,24], + [13283,22.3], + [13285,20.5], + [13287,22], + [13289,27.8], + [13291,24.1], + [13293,24], + [13295,25.7], + [13297,32], + [13299,22.1], + [13301,22.6], + [13303,21.4], + [13305,25.7], + [13307,24], + [13309,19.5], + [13311,29.7], + [13313,19.5], + [13315,23.8], + [13317,22.7], + [13319,24.4], + [13321,25.6], + [15001,26.3], + [15003,27], + [15005,6.2], + [15007,19.9], + [15009,20.8], + [16001,19.3], + [16003,18.3], + [16005,17.7], + [16007,20.9], + [16009,17.1], + [16011,20.2], + [16013,17.8], + [16015,36.5], + [16017,23.9], + [16019,20.1], + [16021,17.7], + [16023,19.7], + [16025,28.1], + [16027,24.5], + [16029,17.6], + [16031,16.1], + [16033,16.8], + [16035,23.5], + [16037,23], + [16039,17.9], + [16041,22.7], + [16043,21], + [16045,31.4], + [16047,21.8], + [16049,21.1], + [16051,26], + [16053,16.8], + [16055,21.4], + [16057,18.3], + [16059,14.5], + [16061,20.5], + [16063,31.1], + [16065,15.2], + [16067,17.3], + [16069,15.7], + [16071,21.2], + [16073,26], + [16075,21.2], + [16077,17.1], + [16079,18.5], + [16081,24.6], + [16083,15.7], + [16085,14.5], + [16087,21.8], + [17001,16.6], + [17003,26.7], + [17005,24.5], + [17007,31.6], + [17009,16.2], + [17011,19.6], + [17013,37], + [17015,25.2], + [17017,24.4], + [17019,16.9], + [17021,25.2], + [17023,22.7], + [17025,19], + [17027,25.2], + [17029,16.8], + [17031,31.8], + [17033,17.7], + [17035,23.7], + [17037,25.2], + [17039,22.1], + [17041,20.4], + [17043,29.1], + [17045,21.5], + [17047,21.4], + [17049,17.7], + [17051,23.5], + [17053,22.4], + [17055,23.2], + [17057,26.6], + [17059,26.9], + [17061,28.5], + [17063,28.7], + [17065,24.3], + [17067,22.6], + [17069,26.2], + [17071,24.9], + [17073,21.9], + [17075,24.6], + [17077,17.1], + [17079,23.8], + [17081,20.2], + [17083,29.5], + [17085,20.3], + [17087,25.6], + [17089,29], + [17091,23.3], + [17093,34.1], + [17095,19.8], + [17097,30.4], + [17099,22.3], + [17101,22.3], + [17103,21.4], + [17105,20.2], + [17107,20.8], + [17109,15.1], + [17111,33.7], + [17113,17.3], + [17115,17.6], + [17117,27.9], + [17119,24.3], + [17121,22.5], + [17123,27], + [17125,27], + [17127,19.9], + [17129,27.5], + [17131,27.4], + [17133,28.8], + [17135,23.4], + [17137,19], + [17139,20.5], + [17141,24.4], + [17143,19], + [17145,24.5], + [17147,22.2], + [17149,21.5], + [17151,32.8], + [17153,26], + [17155,22.3], + [17157,23.9], + [17159,17.8], + [17161,18.5], + [17163,23.2], + [17165,22], + [17167,18.9], + [17169,22.6], + [17171,25.3], + [17173,23.3], + [17175,25.3], + [17177,19.7], + [17179,20.7], + [17181,22.8], + [17183,19.7], + [17185,19.6], + [17187,19.3], + [17189,24.8], + [17191,20.4], + [17193,26], + [17195,19.6], + [17197,33.6], + [17199,20.4], + [17201,21.9], + [17203,22.8], + [18001,21.8], + [18003,20.4], + [18005,19.8], + [18007,25], + [18009,23.9], + [18011,23.6], + [18013,35.2], + [18015,26], + [18017,19.9], + [18019,22.5], + [18021,25.7], + [18023,21.9], + [18025,34.2], + [18027,22.6], + [18029,28.1], + [18031,21.1], + [18033,20.7], + [18035,19.2], + [18037,18.7], + [18039,18.8], + [18041,24], + [18043,22.5], + [18045,27.2], + [18047,28.5], + [18049,23.2], + [18051,22.9], + [18053,19.3], + [18055,28.7], + [18057,25.4], + [18059,27.5], + [18061,29.9], + [18063,25.9], + [18065,26.5], + [18067,19.2], + [18069,21], + [18071,19.8], + [18073,27.1], + [18075,21.9], + [18077,20.8], + [18079,25.3], + [18081,25.7], + [18083,18.7], + [18085,19.6], + [18087,21.9], + [18089,27.7], + [18091,21.4], + [18093,25.2], + [18095,25.5], + [18097,22.2], + [18099,21.7], + [18101,24.6], + [18103,22.3], + [18105,18.3], + [18107,20], + [18109,28.7], + [18111,28.2], + [18113,22.6], + [18115,31], + [18117,26.3], + [18119,31.2], + [18121,25.2], + [18123,23.1], + [18125,26], + [18127,26.5], + [18129,24], + [18131,21.2], + [18133,26.6], + [18135,22.6], + [18137,25.3], + [18139,26.4], + [18141,19.8], + [18143,24.8], + [18145,24.4], + [18147,27.3], + [18149,29.3], + [18151,20.9], + [18153,25.1], + [18155,30.6], + [18157,17.4], + [18159,23.9], + [18161,26.5], + [18163,18.4], + [18165,23.8], + [18167,19.5], + [18169,19.9], + [18171,23.9], + [18173,22.8], + [18175,28.2], + [18177,19.9], + [18179,21.9], + [18181,22.7], + [18183,23.6], + [19001,21], + [19003,20.2], + [19005,19.5], + [19007,19.8], + [19009,19.3], + [19011,25.4], + [19013,15.8], + [19015,20.7], + [19017,18.3], + [19019,22.9], + [19021,14.2], + [19023,23.3], + [19025,19.9], + [19027,13], + [19029,17.9], + [19031,24], + [19033,15.3], + [19035,14], + [19037,19.8], + [19039,21.2], + [19041,14.8], + [19043,21.5], + [19045,18.2], + [19047,14.7], + [19049,20.8], + [19051,23.5], + [19053,21.2], + [19055,21], + [19057,16], + [19059,16.6], + [19061,16.5], + [19063,17], + [19065,20.5], + [19067,19.8], + [19069,18.4], + [19071,22.5], + [19073,18.5], + [19075,19.2], + [19077,27], + [19079,16.3], + [19081,17.6], + [19083,16.4], + [19085,27.2], + [19087,18.5], + [19089,16.5], + [19091,16.9], + [19093,14.9], + [19095,21.4], + [19097,22.3], + [19099,21.8], + [19101,13.1], + [19103,17.7], + [19105,23.7], + [19107,26.4], + [19109,15.5], + [19111,17.5], + [19113,18.1], + [19115,21.6], + [19117,25.4], + [19119,19], + [19121,29], + [19123,17.7], + [19125,19.9], + [19127,16.9], + [19129,23.4], + [19131,16], + [19133,21.7], + [19135,23.7], + [19137,20.6], + [19139,17], + [19141,16.5], + [19143,16.7], + [19145,16.1], + [19147,17.6], + [19149,18.1], + [19151,17.4], + [19153,18.6], + [19155,20.2], + [19157,18], + [19159,19.5], + [19161,17.8], + [19163,18.2], + [19165,17.6], + [19167,12.3], + [19169,17.7], + [19171,21.6], + [19173,20.3], + [19175,13.7], + [19177,21.5], + [19179,17.3], + [19181,24.2], + [19183,20.8], + [19185,25.2], + [19187,15.4], + [19189,13.9], + [19191,16.9], + [19193,17], + [19195,20.7], + [19197,14.6], + [20001,16.8], + [20003,25.8], + [20005,18.9], + [20007,15.3], + [20009,15.3], + [20011,17.9], + [20013,17.5], + [20015,22], + [20017,19], + [20019,25.9], + [20021,20], + [20023,14.4], + [20025,14.4], + [20027,20.4], + [20029,14.9], + [20031,21], + [20033,10], + [20035,18.8], + [20037,17], + [20039,14.8], + [20041,20.4], + [20043,21.1], + [20045,19.6], + [20047,20.3], + [20049,30.5], + [20051,13.4], + [20053,18], + [20055,14.4], + [20057,13.5], + [20059,23.8], + [20061,16.3], + [20063,13.4], + [20065,15.4], + [20067,11.8], + [20069,15.2], + [20071,8.8], + [20073,27.7], + [20075,10.6], + [20077,16.4], + [20079,17.9], + [20081,13.5], + [20083,18.1], + [20085,24.7], + [20087,28.8], + [20089,16.7], + [20091,20.2], + [20093,14.1], + [20095,28.3], + [20097,15.1], + [20099,15.3], + [20101,13.3], + [20103,22.5], + [20105,20.7], + [20107,34.2], + [20109,12.7], + [20111,16.9], + [20113,13.9], + [20115,19.9], + [20117,16.4], + [20119,16.5], + [20121,29.8], + [20123,10.1], + [20125,15.8], + [20127,22.7], + [20129,14.6], + [20131,14], + [20133,14.7], + [20135,11.8], + [20137,9.5], + [20139,28.3], + [20141,15.2], + [20143,23.9], + [20145,14.9], + [20147,12.5], + [20149,22.6], + [20151,14.3], + [20153,14.1], + [20155,17.2], + [20157,14.9], + [20159,19.8], + [20161,16], + [20163,15], + [20165,17.7], + [20167,14.8], + [20169,14.9], + [20171,17.1], + [20173,18.1], + [20175,14.1], + [20177,18.3], + [20179,11], + [20181,9.8], + [20183,14.9], + [20185,18.9], + [20187,12.2], + [20189,18.5], + [20191,23], + [20193,12.2], + [20195,11.9], + [20197,28.5], + [20199,12.6], + [20201,17.4], + [20203,14], + [20205,16.1], + [20207,27.7], + [20209,21.1], + [21001,23.1], + [21003,26.8], + [21005,27.4], + [21007,20.9], + [21009,19.5], + [21011,27.2], + [21013,21.5], + [21015,24.1], + [21017,21.5], + [21019,19.5], + [21021,20.9], + [21023,30.8], + [21025,25.4], + [21027,31.5], + [21029,27.4], + [21031,28.9], + [21033,20.9], + [21035,17.3], + [21037,21.9], + [21039,25.7], + [21041,19.3], + [21043,30.3], + [21045,29.4], + [21047,18.1], + [21049,22.5], + [21051,21.8], + [21053,17.3], + [21055,30.7], + [21057,20.7], + [21059,17.8], + [21061,32.4], + [21063,32.7], + [21065,33.1], + [21067,19.7], + [21069,26.4], + [21071,23.1], + [21073,18.1], + [21075,17.8], + [21077,27], + [21079,28.3], + [21081,28.9], + [21083,22.7], + [21085,27.6], + [21087,27.6], + [21089,22.3], + [21091,21.4], + [21093,20.8], + [21095,23.6], + [21097,24.2], + [21099,25.9], + [21101,20.6], + [21103,27.7], + [21105,18.8], + [21107,20], + [21109,35], + [21111,21.3], + [21113,23.1], + [21115,24.6], + [21117,22.3], + [21119,26], + [21121,21.2], + [21123,26], + [21125,21.7], + [21127,28.8], + [21129,26.4], + [21131,27.8], + [21133,25.5], + [21135,28.7], + [21137,27.9], + [21139,27.4], + [21141,21.9], + [21143,20.9], + [21145,17.7], + [21147,23.8], + [21149,27.5], + [21151,22.5], + [21153,30.3], + [21155,21.2], + [21157,21.3], + [21159,27], + [21161,23], + [21163,30.3], + [21165,35.3], + [21167,24.6], + [21169,22.6], + [21171,20.6], + [21173,24.1], + [21175,28.2], + [21177,24.4], + [21179,25.6], + [21181,30.9], + [21183,23.1], + [21185,25.8], + [21187,30.4], + [21189,18.2], + [21191,33.7], + [21193,21.8], + [21195,23.6], + [21197,29.8], + [21199,22.4], + [21201,44.2], + [21203,29.3], + [21205,22.9], + [21207,19.2], + [21209,21.5], + [21211,24.7], + [21213,18.3], + [21215,32.3], + [21217,18.8], + [21219,24.7], + [21221,24.2], + [21223,30.4], + [21225,22.5], + [21227,19], + [21229,30], + [21231,26.1], + [21233,24], + [21235,21.5], + [21237,27.1], + [21239,21], + [22001,28.9], + [22003,28.9], + [22005,26.9], + [22007,32], + [22009,31.2], + [22011,31.4], + [22013,30], + [22015,20.4], + [22017,19.5], + [22019,20.2], + [22021,36.8], + [22023,29], + [22025,40.1], + [22027,29.7], + [22029,27.5], + [22031,28.6], + [22033,23.3], + [22035,15.8], + [22037,30.4], + [22039,33.3], + [22041,34.5], + [22043,30], + [22045,22.6], + [22047,25.4], + [22049,26.2], + [22051,23.7], + [22053,32], + [22055,22.1], + [22057,26.5], + [22059,38.4], + [22061,19.6], + [22063,34.8], + [22065,17.2], + [22067,22.2], + [22069,24.6], + [22071,23.1], + [22073,20.3], + [22075,23.5], + [22077,30.3], + [22079,21.5], + [22081,29.9], + [22083,23.1], + [22085,31.6], + [22087,24.3], + [22089,27.8], + [22091,37.6], + [22093,24], + [22095,26.6], + [22097,27.2], + [22099,28.8], + [22101,22.6], + [22103,31.6], + [22105,30.4], + [22107,20.8], + [22109,24.4], + [22111,29.9], + [22113,28], + [22115,20.8], + [22117,31.3], + [22119,25.8], + [22121,23.8], + [22123,23.6], + [22125,28.2], + [22127,30.8], + [23001,22.9], + [23003,16.7], + [23005,21.9], + [23007,23.4], + [23009,22.6], + [23011,22.4], + [23013,18.8], + [23015,23.9], + [23017,27], + [23019,21.5], + [23021,24.1], + [23023,22.4], + [23025,24.8], + [23027,26], + [23029,19], + [23031,26.5], + [24001,22.2], + [24003,28.8], + [24005,27.9], + [24009,39.6], + [24011,31.6], + [24013,34.4], + [24015,28.9], + [24017,41.8], + [24019,25], + [24021,34.3], + [24023,22.9], + [24025,30.9], + [24027,30.3], + [24029,26.1], + [24031,33.2], + [24033,35.5], + [24035,34.4], + [24037,30], + [24039,23], + [24041,24.4], + [24043,28], + [24045,22.3], + [24047,22.6], + [24510,29.2], + [25001,23.9], + [25003,19.5], + [25005,25.9], + [25007,16], + [25009,27.2], + [25011,24.6], + [25013,22], + [25015,22.8], + [25017,27.7], + [25019,10.3], + [25021,30.4], + [25023,32.2], + [25025,28.5], + [25027,27], + [26001,23.9], + [26003,18.4], + [26005,23.4], + [26007,16.1], + [26009,22.3], + [26011,28.9], + [26013,15.5], + [26015,27.1], + [26017,20.9], + [26019,23.1], + [26021,19.1], + [26023,21.7], + [26025,19.6], + [26027,25.4], + [26029,18.7], + [26031,24.3], + [26033,16], + [26035,26.6], + [26037,23.1], + [26039,22.3], + [26041,18.6], + [26043,15], + [26045,22.1], + [26047,18.8], + [26049,25.7], + [26051,27.6], + [26053,18.3], + [26055,19.5], + [26057,22], + [26059,25], + [26061,15.7], + [26063,20.7], + [26065,20.1], + [26067,26.5], + [26069,21.6], + [26071,18.6], + [26073,18], + [26075,23.2], + [26077,19.3], + [26079,27.2], + [26081,20.5], + [26083,19.9], + [26085,29.3], + [26087,34.3], + [26089,20.4], + [26091,26.2], + [26093,31.8], + [26095,15.5], + [26097,19.3], + [26099,26.2], + [26101,21], + [26103,17.9], + [26105,18.8], + [26107,23.3], + [26109,20.3], + [26111,20.5], + [26113,22.3], + [26115,24.7], + [26117,29.8], + [26119,24.9], + [26121,20.3], + [26123,28.4], + [26125,26], + [26127,24.1], + [26129,23.5], + [26131,21.5], + [26133,23.8], + [26135,21.7], + [26137,21.6], + [26139,19.9], + [26141,23.1], + [26143,24.5], + [26145,21.1], + [26147,27.7], + [26149,22], + [26151,29.8], + [26153,18.6], + [26155,28.6], + [26157,28.8], + [26159,24.6], + [26161,22.6], + [26163,24.6], + [26165,21.4], + [27001,24.8], + [27003,27.2], + [27005,21.8], + [27007,18.9], + [27009,22.3], + [27011,18.5], + [27013,16.9], + [27015,15.1], + [27017,21.9], + [27019,25.4], + [27021,22.6], + [27023,15.5], + [27025,31.2], + [27027,17.9], + [27029,24.9], + [27031,17], + [27033,15.6], + [27035,20.5], + [27037,23.8], + [27039,22.2], + [27041,17.9], + [27043,20.6], + [27045,25.2], + [27047,18.1], + [27049,22.5], + [27051,20.6], + [27053,22.3], + [27055,20.3], + [27057,21.3], + [27059,33.3], + [27061,21], + [27063,16.4], + [27065,32.5], + [27067,17], + [27069,20.2], + [27071,18], + [27073,17.3], + [27075,20.7], + [27077,17.9], + [27079,24.4], + [27081,19.8], + [27083,14.5], + [27085,20.8], + [27087,20.7], + [27089,23.5], + [27091,14.8], + [27093,23.4], + [27095,28], + [27097,25.1], + [27099,18.1], + [27101,18.3], + [27103,16], + [27105,15], + [27107,21.9], + [27109,16.7], + [27111,19.2], + [27113,15], + [27115,27.5], + [27117,16.2], + [27119,17.1], + [27121,19], + [27123,22], + [27125,23.1], + [27127,16.3], + [27129,18.2], + [27131,22], + [27133,21], + [27135,15.4], + [27137,19.4], + [27139,26.3], + [27141,31], + [27143,24.4], + [27145,20.5], + [27147,17.5], + [27149,11.2], + [27151,16.3], + [27153,23.7], + [27155,12.3], + [27157,23.1], + [27159,22.5], + [27161,18.5], + [27163,25.4], + [27165,16.6], + [27167,18], + [27169,16.6], + [27171,29.7], + [27173,18.9], + [28001,20.5], + [28003,19.5], + [28005,34.2], + [28007,24.5], + [28009,36.5], + [28011,17.5], + [28013,22.8], + [28015,22.1], + [28017,23.8], + [28019,23.9], + [28021,23.9], + [28023,32.5], + [28025,21.6], + [28027,20.1], + [28029,25], + [28031,29.1], + [28033,25.5], + [28035,20.7], + [28037,42.8], + [28039,34.4], + [28041,32.9], + [28043,20.7], + [28045,28.8], + [28047,22.3], + [28049,21.6], + [28051,30.5], + [28053,20.5], + [28055,23.1], + [28057,23.8], + [28059,24.6], + [28061,27.1], + [28063,22.8], + [28065,34.5], + [28067,23.3], + [28069,30.6], + [28071,17.6], + [28073,24.9], + [28075,19.2], + [28077,34.1], + [28079,29.9], + [28081,18.9], + [28083,15.9], + [28085,30.5], + [28087,20], + [28089,22.8], + [28091,35.7], + [28093,31.8], + [28095,23.5], + [28097,23.3], + [28099,23.6], + [28101,26.9], + [28103,27.6], + [28105,17.2], + [28107,25.5], + [28109,34.3], + [28111,32.4], + [28113,24.1], + [28115,25.1], + [28117,21.5], + [28119,23.9], + [28121,24.1], + [28123,23.3], + [28125,16.9], + [28127,35.2], + [28129,32.3], + [28131,27.5], + [28133,16.6], + [28135,25.4], + [28137,27.1], + [28139,23.4], + [28141,21.7], + [28143,18.3], + [28145,24.2], + [28147,36.3], + [28149,19.3], + [28151,18.7], + [28153,32.1], + [28155,26.3], + [28157,26.8], + [28159,24.8], + [28161,24.1], + [28163,26.9], + [29001,13.9], + [29003,22.6], + [29005,19.2], + [29007,19.5], + [29009,22.2], + [29011,21.6], + [29013,28], + [29015,34.1], + [29017,33], + [29019,17.8], + [29021,17.4], + [29023,16.4], + [29025,34.4], + [29027,20.2], + [29029,21.2], + [29031,18.4], + [29033,26.7], + [29035,31.2], + [29037,28.2], + [29039,22.6], + [29041,23.2], + [29043,24.1], + [29045,24.1], + [29047,22.5], + [29049,28.6], + [29051,17.9], + [29053,25.4], + [29055,27.9], + [29057,25.8], + [29059,27.9], + [29061,30], + [29063,23.5], + [29065,25.4], + [29067,27.6], + [29069,20.9], + [29071,27.1], + [29073,27.1], + [29075,22.2], + [29077,19.4], + [29079,21.9], + [29081,22.4], + [29083,26.5], + [29085,30.7], + [29087,23.4], + [29089,23.8], + [29091,19.2], + [29093,26.9], + [29095,22.7], + [29097,17.8], + [29099,30.2], + [29101,27.1], + [29103,23.2], + [29105,21.2], + [29107,28], + [29109,20.9], + [29111,23.9], + [29113,33.3], + [29115,19.6], + [29117,17.3], + [29119,27.6], + [29121,21.8], + [29123,23.8], + [29125,28.2], + [29127,17.7], + [29129,21.4], + [29131,27], + [29133,19.4], + [29135,25.9], + [29137,25.7], + [29139,28.4], + [29141,27.1], + [29143,18.4], + [29145,20.2], + [29147,15.8], + [29149,27.6], + [29151,26.4], + [29153,28.5], + [29155,16.4], + [29157,22.2], + [29159,21.5], + [29161,17.7], + [29163,21], + [29165,22.9], + [29167,26], + [29169,20.4], + [29171,20.6], + [29173,23.3], + [29175,20.5], + [29177,31.8], + [29179,26.1], + [29181,22.1], + [29183,25], + [29185,25.7], + [29186,28.1], + [29187,26.1], + [29189,23.2], + [29195,20.4], + [29197,26.5], + [29199,22.6], + [29201,19.1], + [29203,23.8], + [29205,24.3], + [29207,21.4], + [29209,26.4], + [29211,18.4], + [29213,20.3], + [29215,24.4], + [29217,17.3], + [29219,29.7], + [29221,34.2], + [29223,25.5], + [29225,30.3], + [29227,22.4], + [29229,24.2], + [29510,24.4], + [30001,13.7], + [30003,19], + [30005,13.3], + [30007,25.6], + [30009,23.3], + [30011,13], + [30013,15.9], + [30015,18.6], + [30017,14.3], + [30019,12.5], + [30021,16.6], + [30023,21.5], + [30025,11.3], + [30027,13.8], + [30029,18.2], + [30031,18.3], + [30033,11.4], + [30035,11.4], + [30037,30.7], + [30039,22.2], + [30041,14], + [30043,20.1], + [30045,18.2], + [30047,18.9], + [30049,17.3], + [30051,18], + [30053,16.4], + [30055,16.5], + [30057,19.4], + [30059,17.8], + [30061,19.2], + [30063,17.4], + [30065,25.2], + [30067,22], + [30069,9.9], + [30071,13.7], + [30073,16.2], + [30075,15], + [30077,19], + [30079,10.8], + [30081,23.1], + [30083,16.5], + [30085,13], + [30087,12.9], + [30089,23.3], + [30091,13.6], + [30093,16.1], + [30095,26.5], + [30097,21.3], + [30099,19.3], + [30101,17.5], + [30103,14.5], + [30105,12.3], + [30107,20.8], + [30109,12.2], + [30111,17.7], + [31001,14.4], + [31003,17.8], + [31005,22.3], + [31007,25.6], + [31009,21], + [31011,18.7], + [31013,11.7], + [31015,19.2], + [31017,12.8], + [31019,14.7], + [31021,22.1], + [31023,20.9], + [31025,26.1], + [31027,17.5], + [31029,10.9], + [31031,13.6], + [31033,14.1], + [31035,18.4], + [31037,18.8], + [31039,16.3], + [31041,16.4], + [31043,16.2], + [31045,13.2], + [31047,14.5], + [31049,21.3], + [31051,21.6], + [31053,17.6], + [31055,18.4], + [31057,14.3], + [31059,15], + [31061,17.8], + [31063,18.5], + [31065,17.2], + [31067,22], + [31069,16.6], + [31071,12.8], + [31073,20.6], + [31075,15.3], + [31077,18.6], + [31079,14.8], + [31081,17.2], + [31083,18.8], + [31085,19.6], + [31087,17.1], + [31089,15.7], + [31091,13.9], + [31093,22], + [31095,16], + [31097,23.6], + [31099,18.8], + [31101,15.2], + [31103,14.3], + [31105,18.7], + [31107,16.7], + [31109,17.9], + [31111,15.2], + [31113,29.4], + [31115,28.9], + [31117,25.8], + [31119,15], + [31121,21.7], + [31123,18.5], + [31125,23.3], + [31127,16.3], + [31129,14.7], + [31131,20.9], + [31133,20.7], + [31135,17.1], + [31137,12.3], + [31139,18.9], + [31141,15.4], + [31143,18.5], + [31145,13.1], + [31147,16.4], + [31149,14.3], + [31151,18.2], + [31153,19.9], + [31155,25.3], + [31157,16], + [31159,20], + [31161,18.2], + [31163,26.9], + [31165,20.3], + [31167,18.7], + [31169,14.3], + [31171,19], + [31173,17], + [31175,13.5], + [31177,22.5], + [31179,14.7], + [31181,15.4], + [31183,15.4], + [31185,14], + [32001,17.9], + [32003,24.3], + [32005,23.2], + [32007,26.3], + [32009,13.1], + [32011,18.7], + [32013,28.4], + [32015,24.8], + [32017,29.4], + [32019,26.4], + [32021,10.5], + [32023,27.9], + [32027,19.9], + [32029,29.2], + [32031,20.8], + [32033,18.4], + [32510,16.4], + [33001,24.4], + [33003,24.6], + [33005,21.1], + [33007,23], + [33009,21.6], + [33011,25.9], + [33013,25.2], + [33015,28.6], + [33017,24.9], + [33019,23.8], + [34001,23.5], + [34003,29.6], + [34005,28.1], + [34007,27], + [34009,21.8], + [34011,24.1], + [34013,31.1], + [34015,28], + [34017,32.8], + [34019,34.1], + [34021,26.9], + [34023,31.7], + [34025,33.3], + [34027,29.7], + [34029,30.7], + [34031,26.8], + [34033,28.7], + [34035,31.2], + [34037,37.9], + [34039,27.6], + [34041,35.5], + [35001,21.9], + [35003,27.9], + [35005,16.5], + [35006,26], + [35007,16.3], + [35009,15.3], + [35011,18.5], + [35013,18.9], + [35015,17.4], + [35017,17.7], + [35019,16.2], + [35021,18.3], + [35023,16.6], + [35025,17.6], + [35027,16.6], + [35028,15.9], + [35029,17.9], + [35031,22.4], + [35033,31.6], + [35035,20], + [35037,19.3], + [35039,28.5], + [35041,14.6], + [35043,29], + [35045,24.9], + [35047,20.9], + [35049,21.7], + [35051,14], + [35053,18.5], + [35055,20], + [35057,33.6], + [35059,13.7], + [35061,30.1], + [36001,19.7], + [36003,21.2], + [36005,41.7], + [36007,18.2], + [36009,21.4], + [36011,20.9], + [36013,17.6], + [36015,19.6], + [36017,21.9], + [36019,18.8], + [36021,25.1], + [36023,20.8], + [36025,21.3], + [36027,29.9], + [36029,21], + [36031,20.7], + [36033,19], + [36035,22.5], + [36037,21.6], + [36039,25], + [36041,21.7], + [36043,23.3], + [36045,18.7], + [36047,41.6], + [36049,23.4], + [36051,24.5], + [36053,23.4], + [36055,19.1], + [36057,24.1], + [36059,33.3], + [36061,30.1], + [36063,20.8], + [36065,19.4], + [36067,19.1], + [36069,21.8], + [36071,33.5], + [36073,24.4], + [36075,24.1], + [36077,21.4], + [36079,37], + [36081,42], + [36083,22.4], + [36085,42], + [36087,29.8], + [36089,20.2], + [36091,24.9], + [36093,21.9], + [36095,26.7], + [36097,25.1], + [36099,21.7], + [36101,21.5], + [36103,30.2], + [36105,27.1], + [36107,24], + [36109,18.4], + [36111,26.7], + [36113,21.1], + [36115,26.6], + [36117,24.4], + [36119,31.7], + [36121,24.2], + [36123,22], + [37001,22], + [37003,24.5], + [37005,24.6], + [37007,23.9], + [37009,25], + [37011,23.3], + [37013,26.8], + [37015,25.7], + [37017,26], + [37019,24.2], + [37021,20.7], + [37023,21.4], + [37025,26.6], + [37027,22.5], + [37029,30.8], + [37031,23.3], + [37033,30.6], + [37035,21], + [37037,26.1], + [37039,21.6], + [37041,28.5], + [37043,23.5], + [37045,22.6], + [37047,26.8], + [37049,20.1], + [37051,21], + [37053,32], + [37055,20.5], + [37057,22.6], + [37059,23.9], + [37061,23.8], + [37063,21.7], + [37065,20.2], + [37067,20.3], + [37069,32.4], + [37071,24.6], + [37073,39.2], + [37075,17.8], + [37077,27.5], + [37079,24.4], + [37081,20.7], + [37083,21.6], + [37085,27.9], + [37087,22.3], + [37089,21], + [37091,23.1], + [37093,25.1], + [37095,25.5], + [37097,24], + [37099,19.7], + [37101,28.2], + [37103,28.3], + [37105,22.2], + [37107,22.3], + [37109,28.8], + [37111,22.6], + [37113,21.4], + [37115,31.5], + [37117,23.5], + [37119,24.7], + [37121,25.9], + [37123,25.5], + [37125,22.5], + [37127,21], + [37129,19.8], + [37131,26.5], + [37133,22.5], + [37135,21.8], + [37137,25.7], + [37139,23.6], + [37141,27.8], + [37143,28.7], + [37145,29.8], + [37147,19.6], + [37149,27], + [37151,22.7], + [37153,19.8], + [37155,23.5], + [37157,25.6], + [37159,22.7], + [37161,23.1], + [37163,24.1], + [37165,19.6], + [37167,26.2], + [37169,28.8], + [37171,25.3], + [37173,17.3], + [37175,21.5], + [37177,30.4], + [37179,28.6], + [37181,23.1], + [37183,24.1], + [37185,29.3], + [37187,25.1], + [37189,18.6], + [37191,21.8], + [37193,23.6], + [37195,19.5], + [37197,26.3], + [37199,25.6], + [38001,12.8], + [38003,14.6], + [38005,16.2], + [38007,24.9], + [38009,18.5], + [38011,12.3], + [38013,17.4], + [38015,16.1], + [38017,15.9], + [38019,12.1], + [38021,13.7], + [38023,13.9], + [38025,22.3], + [38027,16.8], + [38029,20.4], + [38031,13.2], + [38033,18.3], + [38035,13.5], + [38037,23.1], + [38039,18.9], + [38041,16.8], + [38043,23.8], + [38045,16.7], + [38047,18.3], + [38049,29.7], + [38051,11.3], + [38053,20.4], + [38055,22.2], + [38057,15.4], + [38059,20.4], + [38061,16.1], + [38063,21.2], + [38065,20.9], + [38067,16], + [38069,15.4], + [38071,11], + [38073,18.4], + [38075,20.9], + [38077,19.2], + [38079,15.4], + [38081,16.9], + [38083,17.4], + [38085,17.3], + [38087,23.5], + [38089,16.3], + [38091,17.7], + [38093,13.2], + [38095,14.6], + [38097,18], + [38099,16.1], + [38101,14.6], + [38103,12.8], + [38105,15], + [39001,31.3], + [39003,18.9], + [39005,21.8], + [39007,24.8], + [39009,20.3], + [39011,18.9], + [39013,24.8], + [39015,33.9], + [39017,23.1], + [39019,31.6], + [39021,22.8], + [39023,21.7], + [39025,27.9], + [39027,25], + [39029,24], + [39031,22.9], + [39033,21.5], + [39035,23.5], + [39037,23.3], + [39039,19.4], + [39041,25.1], + [39043,18.7], + [39045,26.9], + [39047,23.2], + [39049,21], + [39051,22.5], + [39053,24.8], + [39055,26.9], + [39057,19.5], + [39059,23.8], + [39061,22.5], + [39063,17.1], + [39065,23.4], + [39067,27.7], + [39069,19.6], + [39071,27.1], + [39073,31.8], + [39075,22.2], + [39077,21.7], + [39079,26], + [39081,22.4], + [39083,25.9], + [39085,23.2], + [39087,23.4], + [39089,25.8], + [39091,21.5], + [39093,24.1], + [39095,19.8], + [39097,23.3], + [39099,20.9], + [39101,19.7], + [39103,27.3], + [39105,30.1], + [39107,18.3], + [39109,20.7], + [39111,28.9], + [39113,20.8], + [39115,34.3], + [39117,30.5], + [39119,23.9], + [39121,26.6], + [39123,22.2], + [39125,21.8], + [39127,33.7], + [39129,27.2], + [39131,28.1], + [39133,24.2], + [39135,24.9], + [39137,22.1], + [39139,20.6], + [39141,25.7], + [39143,19.4], + [39145,24.6], + [39147,19.9], + [39149,18], + [39151,21.2], + [39153,22.4], + [39155,22.4], + [39157,21], + [39159,23.8], + [39161,18.3], + [39163,30.1], + [39165,24.4], + [39167,22.3], + [39169,19.8], + [39171,18.4], + [39173,19.6], + [39175,20.9], + [40001,25.2], + [40003,18.3], + [40005,22.7], + [40007,17], + [40009,17.2], + [40011,21.8], + [40013,20.7], + [40015,22.3], + [40017,22.3], + [40019,18], + [40021,23], + [40023,21.9], + [40025,13.3], + [40027,21.9], + [40029,24.3], + [40031,16.2], + [40033,23.2], + [40035,18.5], + [40037,23.7], + [40039,17.4], + [40041,26.8], + [40043,21.4], + [40045,18.2], + [40047,16.3], + [40049,21.7], + [40051,26], + [40053,19.8], + [40055,16.5], + [40057,17.9], + [40059,15.7], + [40061,26.7], + [40063,24.5], + [40065,12.7], + [40067,23.7], + [40069,23.1], + [40071,15.9], + [40073,20.1], + [40075,20.9], + [40077,24.3], + [40079,20.5], + [40081,29.3], + [40083,27.6], + [40085,22.5], + [40087,27.5], + [40089,20.7], + [40091,25.4], + [40093,20.6], + [40095,20.3], + [40097,25.1], + [40099,19.9], + [40101,20.2], + [40103,22.3], + [40105,23.1], + [40107,24.8], + [40109,19.9], + [40111,26.4], + [40113,22.2], + [40115,20.5], + [40117,27.1], + [40119,17.4], + [40121,20.4], + [40123,17], + [40125,23.7], + [40127,24.3], + [40129,23.3], + [40131,24.5], + [40133,22.4], + [40135,25.3], + [40137,19.4], + [40139,15], + [40141,23.1], + [40143,19.1], + [40145,25.3], + [40147,18], + [40149,21], + [40151,12.4], + [40153,18.3], + [41001,14.8], + [41003,17.9], + [41005,26], + [41007,17.5], + [41009,31.1], + [41011,18.9], + [41013,20.6], + [41015,14.1], + [41017,18.6], + [41019,20], + [41021,16], + [41023,16.3], + [41025,11.1], + [41027,17.1], + [41029,18.4], + [41031,21], + [41033,19.4], + [41035,17.1], + [41037,11.6], + [41039,19.6], + [41041,18.7], + [41043,22.2], + [41045,18.3], + [41047,22.6], + [41049,21.8], + [41051,24.3], + [41053,24.1], + [41055,18.2], + [41057,18.2], + [41059,16.4], + [41061,16.1], + [41063,16.2], + [41065,17.1], + [41067,24.1], + [41069,19.1], + [41071,24], + [42001,27.2], + [42003,25.2], + [42005,27.7], + [42007,24.8], + [42009,26.9], + [42011,23.6], + [42013,19.6], + [42015,22.7], + [42017,28.1], + [42019,26.3], + [42021,22.3], + [42023,15.3], + [42025,31.1], + [42027,19.3], + [42029,27.9], + [42031,21.1], + [42033,24.2], + [42035,23.6], + [42037,20.9], + [42039,21], + [42041,21], + [42043,20.7], + [42045,27.4], + [42047,18], + [42049,18.6], + [42051,23.8], + [42053,27.4], + [42055,23.3], + [42057,31.8], + [42059,26.8], + [42061,27.8], + [42063,23.1], + [42065,20.3], + [42067,29.6], + [42069,19.7], + [42071,21.9], + [42073,21.9], + [42075,22.5], + [42077,23.5], + [42079,21.8], + [42081,19.3], + [42083,18.7], + [42085,20.4], + [42087,21.2], + [42089,39.6], + [42091,27.4], + [42093,19], + [42095,27.5], + [42097,23.3], + [42099,31.5], + [42101,31.5], + [42103,42.1], + [42105,22.5], + [42107,25], + [42109,22.4], + [42111,22.8], + [42113,27.9], + [42115,26.8], + [42117,22.6], + [42119,19.5], + [42121,20.9], + [42123,20.4], + [42125,25.6], + [42127,26.8], + [42129,25.6], + [42131,24.5], + [42133,26.1], + [44001,25.3], + [44003,23.8], + [44005,20.5], + [44007,22.5], + [44009,24.2], + [45001,25.1], + [45003,24.7], + [45005,25.3], + [45007,22.6], + [45009,27.6], + [45011,23.6], + [45013,20.1], + [45015,26.3], + [45017,27.4], + [45019,22.3], + [45021,22.1], + [45023,26.7], + [45025,25.1], + [45027,26.6], + [45029,32.7], + [45031,22.2], + [45033,21.4], + [45035,27.9], + [45037,26.2], + [45039,27.3], + [45041,21.6], + [45043,23.7], + [45045,21.3], + [45047,20.5], + [45049,30.2], + [45051,21], + [45053,29.3], + [45055,27.6], + [45057,27.8], + [45059,24], + [45061,26.7], + [45063,24.6], + [45065,27], + [45067,25.7], + [45069,21.2], + [45071,24], + [45073,24.9], + [45075,22.7], + [45077,22.9], + [45079,21.5], + [45081,28.3], + [45083,22], + [45085,21.1], + [45087,25], + [45089,24.8], + [45091,24.1], + [46003,18.3], + [46005,12.4], + [46007,22], + [46009,17.8], + [46011,13.5], + [46013,12.8], + [46015,13.4], + [46017,12.3], + [46019,21.3], + [46021,17.5], + [46023,12.3], + [46025,19.7], + [46027,16.4], + [46029,14.1], + [46031,20.6], + [46033,25.1], + [46035,13.2], + [46037,15.1], + [46039,19.3], + [46041,12.5], + [46043,13.3], + [46045,19.8], + [46047,15.4], + [46049,13.3], + [46051,15.1], + [46053,14.3], + [46055,13.2], + [46057,18.9], + [46059,14.1], + [46061,18.6], + [46063,15.4], + [46065,12.1], + [46067,15.8], + [46069,15.9], + [46071,17.3], + [46073,15], + [46075,11.7], + [46077,19.7], + [46079,16.5], + [46081,18.2], + [46083,19.2], + [46085,12.3], + [46087,23.7], + [46089,14], + [46091,19], + [46093,20.3], + [46095,24.7], + [46097,17.5], + [46099,16.7], + [46101,18.8], + [46102,16.1], + [46103,17.6], + [46105,12.3], + [46107,11.5], + [46109,17.6], + [46111,20.8], + [46115,13.8], + [46117,14.8], + [46119,17.2], + [46121,16.9], + [46123,12.2], + [46125,25.9], + [46127,17.5], + [46129,15.5], + [46135,14.1], + [46137,20.3], + [47001,23], + [47003,25], + [47005,23.5], + [47007,33.3], + [47009,23.4], + [47011,20.4], + [47013,26.4], + [47015,34.3], + [47017,24.1], + [47019,22.2], + [47021,32.7], + [47023,24.8], + [47025,25], + [47027,29.8], + [47029,26.9], + [47031,22.9], + [47033,22], + [47035,24], + [47037,23.1], + [47039,24.2], + [47041,24.7], + [47043,29.9], + [47045,17.9], + [47047,33], + [47049,26.1], + [47051,23], + [47053,23], + [47055,26.4], + [47057,31.8], + [47059,23.2], + [47061,25.5], + [47063,20.6], + [47065,21.2], + [47067,30.3], + [47069,28.6], + [47071,21.3], + [47073,24], + [47075,22.4], + [47077,24.1], + [47079,20.1], + [47081,37.6], + [47083,27.8], + [47085,25.6], + [47087,31.1], + [47089,24.7], + [47091,25.8], + [47093,20.9], + [47095,20.8], + [47097,22.1], + [47099,26.2], + [47101,27.5], + [47103,26.2], + [47105,23.2], + [47107,22], + [47109,22.3], + [47111,30.5], + [47113,19.6], + [47115,27.4], + [47117,28.2], + [47119,26.6], + [47121,29.4], + [47123,25.8], + [47125,24.4], + [47127,25.9], + [47129,32.1], + [47131,20.3], + [47133,28.4], + [47135,26.5], + [47137,29.4], + [47139,30], + [47141,20.7], + [47143,25.8], + [47145,26.1], + [47147,28.5], + [47149,26.1], + [47151,26.4], + [47153,28.4], + [47155,24.7], + [47157,22.4], + [47159,27.8], + [47161,32], + [47163,20.3], + [47165,27.6], + [47167,31.8], + [47169,31.9], + [47171,23.1], + [47173,32.4], + [47175,21.8], + [47177,23.9], + [47179,20], + [47181,27.1], + [47183,21], + [47185,23.3], + [47187,27], + [47189,27.8], + [48001,23.8], + [48003,21.7], + [48005,20.8], + [48007,18.6], + [48009,19.3], + [48011,26.5], + [48013,32.7], + [48015,28.1], + [48017,14.1], + [48019,32.8], + [48021,33.9], + [48023,17.6], + [48025,20.3], + [48027,18.7], + [48029,24.1], + [48031,26.7], + [48033,21.6], + [48035,27.2], + [48037,17.5], + [48039,28.7], + [48041,17.3], + [48043,13.5], + [48045,22.1], + [48047,18.6], + [48049,16.6], + [48051,28.8], + [48053,26.8], + [48055,29.8], + [48057,19.4], + [48059,23.1], + [48061,19.9], + [48063,21.7], + [48065,20.8], + [48067,28.4], + [48069,18.1], + [48071,29.9], + [48073,20.6], + [48075,10.7], + [48077,24], + [48079,21], + [48081,20.6], + [48083,24.1], + [48085,27.8], + [48087,14], + [48089,26.3], + [48091,28.7], + [48093,22.5], + [48095,20.3], + [48097,25.6], + [48099,19.9], + [48101,17.1], + [48103,22.6], + [48105,18.8], + [48107,18.9], + [48109,8.1], + [48111,12.3], + [48113,25.7], + [48115,12.2], + [48117,16.9], + [48119,30.9], + [48121,27.5], + [48123,22.9], + [48125,15.1], + [48127,22.7], + [48129,17.1], + [48131,26.2], + [48133,19], + [48135,19.4], + [48137,23.6], + [48139,28.6], + [48141,22.4], + [48143,18.3], + [48145,25.8], + [48147,30.5], + [48149,22.3], + [48151,21.2], + [48153,17.6], + [48155,12.4], + [48157,30.6], + [48159,23.8], + [48161,23.5], + [48163,23], + [48165,18.6], + [48167,25.5], + [48169,14], + [48171,20], + [48173,22.7], + [48175,30.8], + [48177,23.2], + [48179,17.3], + [48181,23.6], + [48183,20.4], + [48185,30], + [48187,24.8], + [48189,14.9], + [48191,16.1], + [48193,18.9], + [48195,19.4], + [48197,17.5], + [48199,27.3], + [48201,27.5], + [48203,23.4], + [48205,11.6], + [48207,20.9], + [48209,29.3], + [48211,15.7], + [48213,31.6], + [48215,21], + [48217,30.8], + [48219,19.7], + [48221,32.1], + [48223,20.1], + [48225,26], + [48227,16.8], + [48229,24.4], + [48231,28.7], + [48233,18], + [48235,27.9], + [48237,21.1], + [48239,24.4], + [48241,24.5], + [48243,13.5], + [48245,19], + [48247,24], + [48249,22.7], + [48251,29.1], + [48253,25.8], + [48255,25.6], + [48257,32], + [48259,25.9], + [48261,16.3], + [48263,14.6], + [48265,18.9], + [48267,17], + [48269,4.5], + [48271,17.6], + [48273,18], + [48275,14.2], + [48277,19.1], + [48279,16.2], + [48281,27.4], + [48283,27.5], + [48285,25.1], + [48287,25.6], + [48289,24.7], + [48291,34.3], + [48293,22.3], + [48295,19.5], + [48297,25.7], + [48299,26], + [48301,19], + [48303,16.3], + [48305,16.8], + [48307,12.8], + [48309,18.5], + [48311,20.8], + [48313,24.2], + [48315,26.8], + [48317,18.5], + [48319,13.8], + [48321,21.6], + [48323,19.5], + [48325,29], + [48327,21.9], + [48329,17.3], + [48331,26.2], + [48333,18.3], + [48335,16.7], + [48337,26.5], + [48339,31.6], + [48341,16.1], + [48343,20.2], + [48345,24.1], + [48347,19.1], + [48349,23.3], + [48351,30.1], + [48353,17.4], + [48355,19.2], + [48357,17.5], + [48359,16.6], + [48361,22.3], + [48363,22.9], + [48365,25.6], + [48367,29.8], + [48369,14.7], + [48371,16.3], + [48373,27.3], + [48375,17.1], + [48377,18.6], + [48379,34.6], + [48381,17.8], + [48383,16.7], + [48385,20.2], + [48387,26.9], + [48389,19.3], + [48391,22.9], + [48393,15.5], + [48395,24.8], + [48397,31.6], + [48399,18.3], + [48401,23.8], + [48403,26.1], + [48405,28], + [48407,37.8], + [48409,20.7], + [48411,20.2], + [48413,17.9], + [48415,15.6], + [48417,16.9], + [48419,21.6], + [48421,16.4], + [48423,21.1], + [48425,27.4], + [48427,21.2], + [48429,14.1], + [48431,20.6], + [48433,17.3], + [48435,11.9], + [48437,17.2], + [48439,25.7], + [48441,15.7], + [48443,15.6], + [48445,21.3], + [48447,22.5], + [48449,17.5], + [48451,17.3], + [48453,23.8], + [48455,31.8], + [48457,30.7], + [48459,27.1], + [48461,19.1], + [48463,18.3], + [48465,19], + [48467,34.9], + [48469,20.9], + [48471,22.3], + [48473,31], + [48475,20.1], + [48477,20], + [48479,21], + [48481,24.3], + [48483,18.5], + [48485,15.8], + [48487,12.5], + [48489,18.5], + [48491,26], + [48493,32.5], + [48495,21.3], + [48497,30.4], + [48499,29.7], + [48501,18.1], + [48503,15.9], + [48505,16.4], + [48507,15.5], + [49001,13.3], + [49003,22], + [49005,16.4], + [49007,17.3], + [49009,14.8], + [49011,22.7], + [49013,20.8], + [49015,21], + [49017,14.1], + [49019,13.4], + [49021,15.8], + [49023,25.7], + [49025,18.7], + [49027,16], + [49029,26.1], + [49031,28.5], + [49033,19.9], + [49035,21.8], + [49037,20.1], + [49039,19.2], + [49041,15.3], + [49043,24.5], + [49045,28.4], + [49047,19.9], + [49049,20.7], + [49051,20.5], + [49053,18.1], + [49055,12.8], + [49057,22], + [50001,22.5], + [50003,17.6], + [50005,21.5], + [50007,19.6], + [50009,25.1], + [50011,26.6], + [50013,31.1], + [50015,24.4], + [50017,27], + [50019,22.2], + [50021,20], + [50023,21.3], + [50025,20.4], + [50027,21.3], + [51001,20], + [51003,21.8], + [51005,26.2], + [51007,36.2], + [51009,22.7], + [51011,25], + [51013,26.5], + [51015,22.3], + [51017,31.4], + [51019,26.1], + [51021,27.9], + [51023,25.8], + [51025,31], + [51027,29.3], + [51029,32.2], + [51031,22.3], + [51033,37], + [51035,26.4], + [51036,32.4], + [51037,30.6], + [51041,24.9], + [51043,34.5], + [51045,38.5], + [51047,35.3], + [51049,35.7], + [51051,33.3], + [51053,28.4], + [51057,32.8], + [51059,31.3], + [51061,37.9], + [51063,33.8], + [51065,30.1], + [51067,27.7], + [51069,30.4], + [51071,26.3], + [51073,32.4], + [51075,29.6], + [51077,24.4], + [51079,28.6], + [51081,24.5], + [51083,24.3], + [51085,25.1], + [51087,21.7], + [51089,22.6], + [51091,24.5], + [51093,28.3], + [51095,25.3], + [51097,34], + [51099,31.6], + [51101,35.9], + [51103,21.9], + [51105,26.5], + [51107,33.4], + [51109,35.5], + [51111,30.5], + [51113,31.9], + [51115,37.3], + [51117,27.4], + [51119,27], + [51121,18.2], + [51125,31.6], + [51127,30.6], + [51131,17.5], + [51133,24.7], + [51135,28.6], + [51137,38.5], + [51139,34.4], + [51141,24.9], + [51143,25.6], + [51145,31.6], + [51147,21.4], + [51149,22.1], + [51153,38.8], + [51155,22], + [51157,35.1], + [51159,29.8], + [51161,20.2], + [51163,20.9], + [51165,22.4], + [51167,27.9], + [51169,27.9], + [51171,28.6], + [51173,22.3], + [51175,29.4], + [51177,39.1], + [51179,39.2], + [51181,34.2], + [51183,25.1], + [51185,25.2], + [51187,37.4], + [51191,22.6], + [51193,37.9], + [51195,22], + [51197,21.9], + [51199,22], + [51510,29.6], + [51520,16.7], + [51530,16.6], + [51540,15.5], + [51550,24.1], + [51570,21.8], + [51580,19.9], + [51590,18.8], + [51595,15.4], + [51600,31.4], + [51610,25.8], + [51620,25.1], + [51630,26.6], + [51640,24], + [51650,22.1], + [51660,15.6], + [51670,22.3], + [51678,13.8], + [51680,16.3], + [51683,31.7], + [51685,39.6], + [51690,17.2], + [51700,21.6], + [51710,21.5], + [51720,15.4], + [51730,21.6], + [51735,22.5], + [51740,23.5], + [51750,16.9], + [51760,21.4], + [51770,18.5], + [51775,17.9], + [51790,20.9], + [51800,27.7], + [51810,22.7], + [51820,19.3], + [51830,19.5], + [51840,21.3], + [53001,16.2], + [53003,16.5], + [53005,21.2], + [53007,17.8], + [53009,20.9], + [53011,25], + [53013,21.7], + [53015,23.6], + [53017,18.9], + [53019,24.3], + [53021,21.2], + [53023,17.2], + [53025,18.3], + [53027,24.2], + [53029,26], + [53031,24.6], + [53033,26.6], + [53035,29.9], + [53037,20], + [53039,19.6], + [53041,26.1], + [53043,21.3], + [53045,31.8], + [53047,18.1], + [53049,21.5], + [53051,29.2], + [53053,28.4], + [53055,16.1], + [53057,25.6], + [53059,30.2], + [53061,29.7], + [53063,21.1], + [53065,27.9], + [53067,24.9], + [53069,32], + [53071,14.9], + [53073,20.6], + [53075,14.5], + [53077,19], + [54001,29.9], + [54003,30], + [54005,29.1], + [54007,32.4], + [54009,25.8], + [54011,19.9], + [54013,39.6], + [54015,35.4], + [54017,37.8], + [54019,27.5], + [54021,21.9], + [54023,25.2], + [54025,24], + [54027,35.8], + [54029,23.2], + [54031,25.1], + [54033,22], + [54035,28.5], + [54037,38.3], + [54039,21], + [54041,26.9], + [54043,36.5], + [54045,25.9], + [54047,27.6], + [54049,25.4], + [54051,23.5], + [54053,26.3], + [54055,22.5], + [54057,27.9], + [54059,28.4], + [54061,20.9], + [54063,31.7], + [54065,32.7], + [54067,26.8], + [54069,19.4], + [54071,30.9], + [54073,24.5], + [54075,28.9], + [54077,31.3], + [54079,25.6], + [54081,23], + [54083,20.2], + [54085,26.1], + [54087,38.4], + [54089,31.7], + [54091,31.2], + [54093,28.2], + [54095,28.1], + [54097,24.7], + [54099,25], + [54101,31], + [54103,28.8], + [54105,31.5], + [54107,19.2], + [54109,32.5], + [55001,27.2], + [55003,15.2], + [55005,19.3], + [55007,22.7], + [55009,18.2], + [55011,23.5], + [55013,25.5], + [55015,20], + [55017,21], + [55019,20.6], + [55021,26.7], + [55023,23.6], + [55025,20.2], + [55027,22.4], + [55029,19.1], + [55031,20.3], + [55033,21.6], + [55035,17.1], + [55037,18.2], + [55039,19.5], + [55041,20.8], + [55043,21.3], + [55045,22.8], + [55047,23.3], + [55049,25.6], + [55051,19.8], + [55053,21.3], + [55055,22.9], + [55057,22.1], + [55059,25.9], + [55061,23.2], + [55063,18.1], + [55065,24.7], + [55067,19.3], + [55069,22.6], + [55071,19.1], + [55073,18.7], + [55075,20.3], + [55077,27.2], + [55078,25], + [55079,21.5], + [55081,19.5], + [55083,26.2], + [55085,18.9], + [55087,19.3], + [55089,22.5], + [55091,25.6], + [55093,27.1], + [55095,27.9], + [55097,18.6], + [55099,19.8], + [55101,22.8], + [55103,23], + [55105,21.5], + [55107,22], + [55109,26.4], + [55111,21], + [55113,20.3], + [55115,23], + [55117,18.2], + [55119,21.5], + [55121,21.2], + [55123,22.8], + [55125,19.4], + [55127,24.3], + [55129,22.3], + [55131,23.4], + [55133,23.1], + [55135,20.9], + [55137,26.3], + [55139,17.7], + [55141,18.5], + [56001,12.3], + [56003,20.2], + [56005,20.8], + [56007,15.6], + [56009,30.2], + [56011,22.6], + [56013,19.3], + [56015,19.5], + [56017,17.2], + [56019,16.5], + [56021,15.8], + [56023,24.3], + [56025,17.7], + [56027,14.8], + [56029,17.6], + [56031,16.9], + [56033,17.9], + [56035,24.2], + [56037,22.3], + [56039,14.9], + [56041,21.7], + [56043,12.8], + [56045,25.2] + ] +} diff --git a/data/regional/united-states/economics/traveltime/us-work-traveltime-2017.json b/data/regional/united-states/economics/traveltime/us-work-traveltime-2017.json new file mode 100644 index 0000000..1e23661 --- /dev/null +++ b/data/regional/united-states/economics/traveltime/us-work-traveltime-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Average Travel Time To Work", + "description" : "Average/mean travel time to work.", + "units" : "minutes", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","workforce","travel","transportation"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.work.traveltime.2017"], + [1001,25.8], + [1003,27], + [1005,23.4], + [1007,30], + [1009,35], + [1011,29.8], + [1013,23.2], + [1015,24.8], + [1017,23.6], + [1019,26.5], + [1021,32.5], + [1023,32.7], + [1025,23.9], + [1027,30.3], + [1029,33.2], + [1031,21.7], + [1033,23.1], + [1035,29.6], + [1037,29.8], + [1039,25.2], + [1041,28.6], + [1043,26.5], + [1045,20.7], + [1047,22.1], + [1049,23.2], + [1051,28], + [1053,22.6], + [1055,24], + [1057,27.9], + [1059,28.4], + [1061,27.2], + [1063,29.7], + [1065,29.9], + [1067,25.6], + [1069,21.3], + [1071,25.7], + [1073,23.8], + [1075,28.1], + [1077,24.1], + [1079,28], + [1081,22.2], + [1083,25.7], + [1085,30.3], + [1087,22.5], + [1089,21.3], + [1091,25.5], + [1093,23.2], + [1095,23.9], + [1097,24.8], + [1099,24.7], + [1101,20.3], + [1103,24.1], + [1105,26.1], + [1107,29.5], + [1109,20.4], + [1111,26.3], + [1113,24.1], + [1115,29.7], + [1117,28], + [1119,26.1], + [1121,24.8], + [1123,25.2], + [1125,22.3], + [1127,29.2], + [1129,35.2], + [1131,25], + [1133,27.8], + [2013,5.1], + [2016,7.8], + [2020,18.9], + [2050,7.4], + [2060,9.4], + [2068,16.1], + [2070,8.6], + [2090,18.9], + [2100,7.1], + [2105,9.7], + [2110,15.6], + [2122,20], + [2130,13.4], + [2150,10.5], + [2158,"NA"], + [2164,6.7], + [2170,34.5], + [2180,7], + [2185,6.1], + [2188,6.5], + [2195,7.7], + [2198,16], + [2220,10.4], + [2230,6.1], + [2240,13.4], + [2261,11], + [2275,9.4], + [2282,6.5], + [2290,8.4], + [4001,26.7], + [4003,20.5], + [4005,18.4], + [4007,18.7], + [4009,20.9], + [4011,17.8], + [4012,12.9], + [4013,25.8], + [4015,20.4], + [4017,21.6], + [4019,24.5], + [4021,31], + [4023,23.5], + [4025,23.2], + [4027,19.6], + [5001,14.6], + [5003,20.4], + [5005,16.4], + [5007,19.9], + [5009,19.4], + [5011,22], + [5013,24.4], + [5015,19.8], + [5017,21.8], + [5019,21.3], + [5021,23.3], + [5023,26.1], + [5025,29.6], + [5027,17.3], + [5029,25.8], + [5031,18.5], + [5033,22.4], + [5035,19.9], + [5037,23.9], + [5039,27.5], + [5041,19.3], + [5043,21.7], + [5045,24], + [5047,26.8], + [5049,23.3], + [5051,21.9], + [5053,29.7], + [5055,20.3], + [5057,19.9], + [5059,26.1], + [5061,20.2], + [5063,18.9], + [5065,20.5], + [5067,19.1], + [5069,20.9], + [5071,20.5], + [5073,25.1], + [5075,26.1], + [5077,20.8], + [5079,25.1], + [5081,24.8], + [5083,25.6], + [5085,27.3], + [5087,31.7], + [5089,22.1], + [5091,18.4], + [5093,17.8], + [5095,22], + [5097,30], + [5099,29.9], + [5101,30.5], + [5103,22.2], + [5105,33.3], + [5107,18.2], + [5109,27.7], + [5111,24], + [5113,23], + [5115,18.5], + [5117,26.8], + [5119,20.3], + [5121,28.6], + [5123,19.7], + [5125,26.1], + [5127,19.7], + [5129,28.9], + [5131,19], + [5133,25.8], + [5135,25], + [5137,23.3], + [5139,19], + [5141,27.9], + [5143,21.5], + [5145,24], + [5147,18.1], + [5149,20.8], + [6001,32.5], + [6003,21.9], + [6005,32], + [6007,20.1], + [6009,35.5], + [6011,24.7], + [6013,37.1], + [6015,14.4], + [6017,29.1], + [6019,22.4], + [6021,24], + [6023,18.2], + [6025,20.8], + [6027,16.9], + [6029,23.4], + [6031,22.4], + [6033,28.9], + [6035,20.9], + [6037,30.9], + [6039,25.6], + [6041,31.7], + [6043,30.9], + [6045,19.8], + [6047,27], + [6049,15.2], + [6051,16.1], + [6053,22.4], + [6055,24.1], + [6057,24.5], + [6059,27.4], + [6061,27.3], + [6063,21.9], + [6065,33.1], + [6067,26.9], + [6069,34.1], + [6071,30.9], + [6073,25.7], + [6075,32.8], + [6077,32], + [6079,21.8], + [6081,28.2], + [6083,19.4], + [6085,28], + [6087,26.8], + [6089,19.9], + [6091,29.6], + [6093,18.9], + [6095,31.8], + [6097,25.2], + [6099,28.2], + [6101,26.4], + [6103,23.5], + [6105,17.4], + [6107,22.5], + [6109,27], + [6111,26.6], + [6113,23.2], + [6115,30.7], + [8001,29.2], + [8003,14.6], + [8005,27.7], + [8007,17.2], + [8009,14.5], + [8011,20.1], + [8013,22.7], + [8014,27.9], + [8015,17.5], + [8017,12.6], + [8019,30.3], + [8021,21.6], + [8023,18.1], + [8025,23.1], + [8027,27.1], + [8029,24.3], + [8031,25.3], + [8033,19.2], + [8035,27.6], + [8037,22.3], + [8039,40.4], + [8041,23], + [8043,22.7], + [8045,31.6], + [8047,36.6], + [8049,22.2], + [8051,14.2], + [8053,12.3], + [8055,20.8], + [8057,28.9], + [8059,27.5], + [8061,16.3], + [8063,12.1], + [8065,28.6], + [8067,21.4], + [8069,22.8], + [8071,20.6], + [8073,17.3], + [8075,19.2], + [8077,20.2], + [8079,14], + [8081,22], + [8083,22], + [8085,17.8], + [8087,17.6], + [8089,16.2], + [8091,26.8], + [8093,40.9], + [8095,15.8], + [8097,17.5], + [8099,13.8], + [8101,21.8], + [8103,17.3], + [8105,17.4], + [8107,17.9], + [8109,18.8], + [8111,12.3], + [8113,19.1], + [8115,20.6], + [8117,16.4], + [8119,32.6], + [8121,24], + [8123,26.7], + [8125,15.7], + [9001,30.4], + [9003,23], + [9005,27.4], + [9007,26.1], + [9009,24.9], + [9011,23.4], + [9013,26.3], + [9015,26.3], + [10001,26.3], + [10003,25.7], + [10005,25.3], + [11001,30], + [12001,21.2], + [12003,29.9], + [12005,22.8], + [12007,31.1], + [12009,24.5], + [12011,28.2], + [12013,26.8], + [12015,24.7], + [12017,25.3], + [12019,33.3], + [12021,24.5], + [12023,24.8], + [12027,24.7], + [12029,26.7], + [12031,24.5], + [12033,21.9], + [12035,25.7], + [12037,19.3], + [12039,30.2], + [12041,32.8], + [12043,25.3], + [12045,22.4], + [12047,23.4], + [12049,23.9], + [12051,29.4], + [12053,29.6], + [12055,20.4], + [12057,27.3], + [12059,28.2], + [12061,22.4], + [12063,23], + [12065,28.7], + [12067,27.2], + [12069,28.8], + [12071,27.2], + [12073,20.8], + [12075,30], + [12077,33], + [12079,27], + [12081,25.4], + [12083,25.4], + [12085,26.3], + [12086,31.3], + [12087,17.8], + [12089,29.8], + [12091,23.6], + [12093,24], + [12095,27.6], + [12097,32.2], + [12099,25.3], + [12101,31.6], + [12103,24.4], + [12105,26], + [12107,27.9], + [12109,27.2], + [12111,27.6], + [12113,28.7], + [12115,23.6], + [12117,27.1], + [12119,25.2], + [12121,25.9], + [12123,24.2], + [12125,22.4], + [12127,25.4], + [12129,32.7], + [12131,28.2], + [12133,30.5], + [13001,22], + [13003,22.9], + [13005,20.4], + [13007,27.4], + [13009,21.7], + [13011,30.2], + [13013,33.2], + [13015,27.9], + [13017,17.5], + [13019,23.8], + [13021,21.1], + [13023,24.2], + [13025,30.8], + [13027,24.2], + [13029,30], + [13031,21.6], + [13033,26.4], + [13035,30.8], + [13037,22.6], + [13039,22.8], + [13043,22.2], + [13045,27.8], + [13047,23.3], + [13049,33.7], + [13051,21.8], + [13053,15.5], + [13055,25.2], + [13057,34.5], + [13059,19.4], + [13061,29.6], + [13063,30.4], + [13065,18.5], + [13067,31.4], + [13069,20], + [13071,21.6], + [13073,25.2], + [13075,25.6], + [13077,31], + [13079,28.8], + [13081,18.8], + [13083,26.4], + [13085,32.3], + [13087,24], + [13089,31.9], + [13091,26], + [13093,21.5], + [13095,18.9], + [13097,32.7], + [13099,25.2], + [13101,26.8], + [13103,31.1], + [13105,20.8], + [13107,27.9], + [13109,23.6], + [13111,26.9], + [13113,31.2], + [13115,22.3], + [13117,32.7], + [13119,25.8], + [13121,28.1], + [13123,30.1], + [13125,31.3], + [13127,19.3], + [13129,23.9], + [13131,25.3], + [13133,26.4], + [13135,33.1], + [13137,26.9], + [13139,26.3], + [13141,29.4], + [13143,33.6], + [13145,26.1], + [13147,21.8], + [13149,37.6], + [13151,33.6], + [13153,21.4], + [13155,20.4], + [13157,30.8], + [13159,32.6], + [13161,23], + [13163,25.8], + [13165,25.5], + [13167,28.6], + [13169,26.9], + [13171,29.6], + [13173,24.1], + [13175,23], + [13177,20.5], + [13179,21.6], + [13181,33.3], + [13183,30.2], + [13185,19.2], + [13187,28.7], + [13189,26.5], + [13191,29.1], + [13193,27.3], + [13195,26], + [13197,32.3], + [13199,33], + [13201,24.3], + [13205,23.5], + [13207,26.3], + [13209,21.3], + [13211,25.9], + [13213,27.3], + [13215,20], + [13217,31.5], + [13219,23.5], + [13221,28.5], + [13223,37.7], + [13225,22.7], + [13227,31.7], + [13229,27.1], + [13231,33.7], + [13233,26.2], + [13235,19.3], + [13237,25], + [13239,21.8], + [13241,21.6], + [13243,21.4], + [13245,20.5], + [13247,29.5], + [13249,24.1], + [13251,31.1], + [13253,22.4], + [13255,29], + [13257,20.9], + [13259,26.8], + [13261,20.3], + [13263,34.5], + [13265,32.9], + [13267,24.9], + [13269,28.9], + [13271,22.5], + [13273,24.9], + [13275,20.5], + [13277,19.9], + [13279,19.4], + [13281,19], + [13283,26.1], + [13285,23.2], + [13287,21.6], + [13289,32.3], + [13291,22.4], + [13293,23.3], + [13295,28.4], + [13297,32.3], + [13299,19.2], + [13301,25.4], + [13303,21.5], + [13305,23.4], + [13307,25.8], + [13309,24], + [13311,27], + [13313,20.5], + [13315,27.2], + [13317,25.2], + [13319,26.3], + [13321,26.3], + [15001,25.3], + [15003,29.1], + [15005,6.6], + [15007,22.4], + [15009,21.2], + [16001,20.4], + [16003,24.1], + [16005,17.6], + [16007,23], + [16009,20.8], + [16011,21.9], + [16013,19.2], + [16015,38.1], + [16017,25.6], + [16019,19.2], + [16021,23.7], + [16023,22.6], + [16025,29.2], + [16027,24.6], + [16029,15.6], + [16031,14.8], + [16033,18.3], + [16035,29], + [16037,19.2], + [16039,17.2], + [16041,25], + [16043,25.9], + [16045,29.6], + [16047,20.8], + [16049,17.4], + [16051,24.6], + [16053,18], + [16055,21.7], + [16057,19.4], + [16059,16], + [16061,22.7], + [16063,28.7], + [16065,14.1], + [16067,17.2], + [16069,16], + [16071,24.6], + [16073,24], + [16075,19.1], + [16077,18.2], + [16079,19.4], + [16081,27.9], + [16083,17.4], + [16085,15.9], + [16087,19.7], + [17001,17], + [17003,27.3], + [17005,24.5], + [17007,29], + [17009,16.6], + [17011,20.6], + [17013,39.6], + [17015,24.7], + [17017,20.5], + [17019,17.9], + [17021,25.2], + [17023,22.4], + [17025,20.6], + [17027,25.1], + [17029,16.3], + [17031,32.9], + [17033,15.8], + [17035,22.4], + [17037,25.5], + [17039,21.9], + [17041,20.8], + [17043,29.3], + [17045,19.4], + [17047,20.9], + [17049,17.3], + [17051,22.7], + [17053,22.3], + [17055,24.8], + [17057,24.7], + [17059,27.2], + [17061,27.2], + [17063,28.7], + [17065,27.7], + [17067,23.4], + [17069,27.8], + [17071,24.8], + [17073,22], + [17075,23.2], + [17077,19.2], + [17079,23.6], + [17081,19.8], + [17083,28.6], + [17085,21.5], + [17087,25], + [17089,29], + [17091,23.9], + [17093,33], + [17095,17.8], + [17097,30], + [17099,22.8], + [17101,19], + [17103,21.5], + [17105,19.8], + [17107,21.5], + [17109,15.6], + [17111,33.6], + [17113,18], + [17115,17.9], + [17117,27.6], + [17119,24.8], + [17121,20.4], + [17123,27.7], + [17125,26.9], + [17127,20.7], + [17129,27.6], + [17131,26.7], + [17133,28.4], + [17135,23.3], + [17137,19.4], + [17139,22.3], + [17141,26], + [17143,18.9], + [17145,25], + [17147,23.2], + [17149,24.3], + [17151,33.1], + [17153,27.5], + [17155,23.7], + [17157,25.2], + [17159,19.2], + [17161,19.1], + [17163,24.9], + [17165,23.1], + [17167,19.6], + [17169,24.1], + [17171,25.1], + [17173,23.5], + [17175,24.7], + [17177,20.5], + [17179,21.2], + [17181,24.6], + [17183,19.8], + [17185,20.3], + [17187,17.9], + [17189,23.4], + [17191,23.9], + [17193,24.8], + [17195,19.4], + [17197,32.9], + [17199,21.8], + [17201,21.9], + [17203,22.7], + [18001,22.8], + [18003,21.3], + [18005,19.6], + [18007,26.3], + [18009,23.5], + [18011,24.9], + [18013,33.3], + [18015,28.4], + [18017,20.6], + [18019,24], + [18021,26.2], + [18023,23], + [18025,32.7], + [18027,25.5], + [18029,28.7], + [18031,21.4], + [18033,20.7], + [18035,20.6], + [18037,19.1], + [18039,19.4], + [18041,26.1], + [18043,22.6], + [18045,25.4], + [18047,30.1], + [18049,22.8], + [18051,21.5], + [18053,18.3], + [18055,28.7], + [18057,25.5], + [18059,26.1], + [18061,29.4], + [18063,27], + [18065,26.8], + [18067,19.9], + [18069,20.2], + [18071,20.5], + [18073,27], + [18075,19.6], + [18077,24.2], + [18079,26.3], + [18081,26.1], + [18083,18.4], + [18085,19.7], + [18087,22.9], + [18089,28.3], + [18091,22.1], + [18093,23.6], + [18095,25.9], + [18097,23.3], + [18099,22.4], + [18101,26.4], + [18103,24.1], + [18105,18.7], + [18107,21.9], + [18109,28.1], + [18111,31.2], + [18113,21.9], + [18115,31.3], + [18117,25.6], + [18119,30.8], + [18121,27], + [18123,23.5], + [18125,25.2], + [18127,27.2], + [18129,23.6], + [18131,21.7], + [18133,25], + [18135,24.5], + [18137,27.2], + [18139,26], + [18141,21], + [18143,26], + [18145,23.5], + [18147,26.8], + [18149,30.3], + [18151,22], + [18153,22.8], + [18155,37.4], + [18157,17.7], + [18159,23.7], + [18161,23.6], + [18163,19.6], + [18165,24.3], + [18167,19.9], + [18169,19.6], + [18171,25.6], + [18173,23.6], + [18175,31.4], + [18177,19.6], + [18179,21.3], + [18181,24.9], + [18183,22.9], + [19001,22.3], + [19003,19.6], + [19005,24.3], + [19007,19.6], + [19009,19.2], + [19011,23.8], + [19013,15.7], + [19015,21.4], + [19017,20.2], + [19019,22.4], + [19021,13.9], + [19023,24], + [19025,20.4], + [19027,14], + [19029,18.4], + [19031,25.3], + [19033,16.3], + [19035,16.1], + [19037,19.6], + [19039,24.3], + [19041,16.3], + [19043,21.5], + [19045,19.5], + [19047,16.3], + [19049,21.1], + [19051,22.9], + [19053,24], + [19055,22.6], + [19057,15.9], + [19059,15.7], + [19061,16.4], + [19063,16.7], + [19065,19.5], + [19067,19], + [19069,16.8], + [19071,24.5], + [19073,19.6], + [19075,21.1], + [19077,26.2], + [19079,18.4], + [19081,18.2], + [19083,17.9], + [19085,26.4], + [19087,18.7], + [19089,17.8], + [19091,19.1], + [19093,18.1], + [19095,22.5], + [19097,23.3], + [19099,22.9], + [19101,14.8], + [19103,18.9], + [19105,24.6], + [19107,23.9], + [19109,14.7], + [19111,17.5], + [19113,18.8], + [19115,24.3], + [19117,19.8], + [19119,16.2], + [19121,28.2], + [19123,18.3], + [19125,19], + [19127,17.5], + [19129,24.7], + [19131,17], + [19133,21.1], + [19135,22.4], + [19137,19], + [19139,17.2], + [19141,16.3], + [19143,19.1], + [19145,13.9], + [19147,15.3], + [19149,17.8], + [19151,18.2], + [19153,19.4], + [19155,20.5], + [19157,17.1], + [19159,20.3], + [19161,17.1], + [19163,19.1], + [19165,18.8], + [19167,12.9], + [19169,17.7], + [19171,22.7], + [19173,21.2], + [19175,17.5], + [19177,22.3], + [19179,18.1], + [19181,23.7], + [19183,20.7], + [19185,23.8], + [19187,16.5], + [19189,16.7], + [19191,17.9], + [19193,17.8], + [19195,20.5], + [19197,15.9], + [20001,17.4], + [20003,24.2], + [20005,19.8], + [20007,15.8], + [20009,17.9], + [20011,17.1], + [20013,18.2], + [20015,22.7], + [20017,20.9], + [20019,19.7], + [20021,18.8], + [20023,13.2], + [20025,17.4], + [20027,19.7], + [20029,17], + [20031,19.9], + [20033,13.4], + [20035,18], + [20037,16.4], + [20039,16.9], + [20041,21.1], + [20043,20], + [20045,20.4], + [20047,19.2], + [20049,27], + [20051,12.8], + [20053,16.5], + [20055,14.3], + [20057,14.4], + [20059,23.7], + [20061,16.2], + [20063,12.8], + [20065,15], + [20067,14.5], + [20069,15.5], + [20071,12], + [20073,22.8], + [20075,14.1], + [20077,16], + [20079,19.6], + [20081,13.7], + [20083,16.9], + [20085,25.1], + [20087,30], + [20089,18.4], + [20091,20.9], + [20093,16.3], + [20095,22.1], + [20097,14.5], + [20099,15.8], + [20101,14.4], + [20103,22.6], + [20105,18.8], + [20107,32.8], + [20109,13.1], + [20111,17], + [20113,13.5], + [20115,20], + [20117,15.5], + [20119,15.3], + [20121,27.9], + [20123,9.6], + [20125,16.6], + [20127,21.3], + [20129,17.7], + [20131,15.9], + [20133,16.6], + [20135,12.9], + [20137,13.6], + [20139,29.5], + [20141,13.7], + [20143,23.7], + [20145,14.8], + [20147,14.1], + [20149,21.1], + [20151,12.8], + [20153,15], + [20155,17.5], + [20157,17.6], + [20159,16.5], + [20161,14.9], + [20163,16], + [20165,19], + [20167,14.7], + [20169,14.8], + [20171,14.6], + [20173,18.8], + [20175,14.8], + [20177,18], + [20179,13.4], + [20181,15.3], + [20183,14.5], + [20185,19.3], + [20187,11.1], + [20189,15.7], + [20191,23.5], + [20193,11.1], + [20195,20], + [20197,27], + [20199,13.9], + [20201,19.2], + [20203,11.8], + [20205,17.1], + [20207,23], + [20209,21.5], + [21001,22.2], + [21003,24.1], + [21005,26.6], + [21007,23.6], + [21009,20.7], + [21011,25.5], + [21013,20.6], + [21015,24], + [21017,22.7], + [21019,21.6], + [21021,20.5], + [21023,35.6], + [21025,27.7], + [21027,31.6], + [21029,28.1], + [21031,26], + [21033,22.4], + [21035,16.6], + [21037,22.4], + [21039,26.2], + [21041,18.5], + [21043,30.3], + [21045,28.9], + [21047,17.3], + [21049,23.1], + [21051,29.5], + [21053,18.4], + [21055,24.5], + [21057,19.9], + [21059,19.2], + [21061,29.8], + [21063,39], + [21065,33.4], + [21067,20.9], + [21069,29.4], + [21071,23], + [21073,19], + [21075,21.9], + [21077,29.4], + [21079,34], + [21081,30.2], + [21083,22.7], + [21085,28.2], + [21087,26.9], + [21089,23.1], + [21091,22.5], + [21093,22.2], + [21095,20.6], + [21097,24.6], + [21099,29.1], + [21101,20.8], + [21103,30.5], + [21105,18.9], + [21107,21.3], + [21109,29.3], + [21111,22.2], + [21113,23.9], + [21115,26.7], + [21117,23.4], + [21119,29.3], + [21121,21.6], + [21123,26.7], + [21125,20.1], + [21127,31.8], + [21129,32.1], + [21131,32.6], + [21133,25.6], + [21135,32.4], + [21137,28.2], + [21139,25.2], + [21141,23.3], + [21143,20.3], + [21145,18.1], + [21147,28.2], + [21149,27], + [21151,22.6], + [21153,31.8], + [21155,20.4], + [21157,23.2], + [21159,35.5], + [21161,25.8], + [21163,30.7], + [21165,30.9], + [21167,26.4], + [21169,25.2], + [21171,23.6], + [21173,22.8], + [21175,35.2], + [21177,23.8], + [21179,26.2], + [21181,32.9], + [21183,24.3], + [21185,27.7], + [21187,31.9], + [21189,22.6], + [21191,33.9], + [21193,22.7], + [21195,24.1], + [21197,28.5], + [21199,21], + [21201,34.4], + [21203,24.7], + [21205,22.1], + [21207,20.6], + [21209,21.1], + [21211,25.4], + [21213,19.5], + [21215,32], + [21217,19], + [21219,26.4], + [21221,26.8], + [21223,28.7], + [21225,20.3], + [21227,20.2], + [21229,26.5], + [21231,20.9], + [21233,25.3], + [21235,20.6], + [21237,31.1], + [21239,21.9], + [22001,27.6], + [22003,28.3], + [22005,30], + [22007,29.6], + [22009,30.2], + [22011,30.1], + [22013,32.6], + [22015,21.7], + [22017,20.9], + [22019,20.5], + [22021,23.7], + [22023,33.6], + [22025,23.3], + [22027,26.2], + [22029,20.2], + [22031,29.2], + [22033,23.6], + [22035,12.3], + [22037,30.6], + [22039,28.3], + [22041,21.8], + [22043,34.5], + [22045,24.2], + [22047,24.9], + [22049,30.1], + [22051,24], + [22053,30.8], + [22055,24.1], + [22057,28], + [22059,41.5], + [22061,19.3], + [22063,33.8], + [22065,13], + [22067,23.2], + [22069,22.9], + [22071,23.8], + [22073,19.9], + [22075,25.8], + [22077,29.1], + [22079,22.5], + [22081,33.9], + [22083,20.8], + [22085,32.1], + [22087,27], + [22089,27], + [22091,38.5], + [22093,27], + [22095,28.5], + [22097,26.4], + [22099,27.2], + [22101,21.3], + [22103,31], + [22105,31.3], + [22107,24.1], + [22109,22.7], + [22111,31.9], + [22113,28.7], + [22115,21.6], + [22117,33], + [22119,24.2], + [22121,23.8], + [22123,23.3], + [22125,25.4], + [22127,27.3], + [23001,24.2], + [23003,17.6], + [23005,22.9], + [23007,23.7], + [23009,23.1], + [23011,23.4], + [23013,17.4], + [23015,24.8], + [23017,28.4], + [23019,22.5], + [23021,25.4], + [23023,22.9], + [23025,24.4], + [23027,26.4], + [23029,20.9], + [23031,28], + [24001,20.9], + [24003,30.2], + [24005,29.5], + [24009,41.9], + [24011,32.1], + [24013,35.6], + [24015,29.3], + [24017,43.9], + [24019,26.3], + [24021,35], + [24023,24.2], + [24025,32.1], + [24027,30.9], + [24029,26.7], + [24031,34.7], + [24033,36.9], + [24035,36.2], + [24037,30.9], + [24039,24.9], + [24041,26.6], + [24043,29.3], + [24045,21.2], + [24047,24.3], + [24510,30.7], + [25001,23.3], + [25003,20], + [25005,28], + [25007,14.6], + [25009,29.8], + [25011,24.2], + [25013,22.6], + [25015,23.2], + [25017,30.3], + [25019,12.1], + [25021,33.9], + [25023,33], + [25025,30.7], + [25027,28.7], + [26001,24], + [26003,21.3], + [26005,23.9], + [26007,16.9], + [26009,25], + [26011,27.2], + [26013,19], + [26015,28.4], + [26017,22.1], + [26019,26.2], + [26021,19.3], + [26023,22.5], + [26025,20.2], + [26027,25.1], + [26029,20.4], + [26031,26.8], + [26033,16.8], + [26035,28], + [26037,23.3], + [26039,20.8], + [26041,19.9], + [26043,17], + [26045,22.3], + [26047,19.1], + [26049,26], + [26051,30.4], + [26053,17.3], + [26055,20.5], + [26057,23.4], + [26059,24.7], + [26061,15.7], + [26063,21], + [26065,20.2], + [26067,27.3], + [26069,22], + [26071,21.9], + [26073,17.9], + [26075,23.3], + [26077,20.3], + [26079,28.6], + [26081,21.1], + [26083,21.2], + [26085,27.3], + [26087,34.7], + [26089,22], + [26091,26.8], + [26093,32.4], + [26095,13.6], + [26097,20.7], + [26099,27.4], + [26101,20.8], + [26103,17.6], + [26105,17.6], + [26107,23.8], + [26109,20.8], + [26111,21.1], + [26113,21.4], + [26115,24.5], + [26117,30], + [26119,29], + [26121,21.2], + [26123,28.1], + [26125,26.7], + [26127,22], + [26129,23.8], + [26131,24.6], + [26133,25.2], + [26135,20.4], + [26137,19.5], + [26139,20.5], + [26141,24.4], + [26143,22.5], + [26145,21.7], + [26147,29.1], + [26149,21.4], + [26151,27.5], + [26153,18.8], + [26155,27.4], + [26157,29.1], + [26159,24.4], + [26161,23.7], + [26163,25.2], + [26165,21], + [27001,26], + [27003,28.1], + [27005,22.4], + [27007,19.8], + [27009,23.1], + [27011,17.5], + [27013,17.3], + [27015,15.1], + [27017,22.2], + [27019,26.3], + [27021,23.8], + [27023,15.3], + [27025,32.8], + [27027,18.9], + [27029,25.8], + [27031,15.9], + [27033,16.8], + [27035,21.4], + [27037,24.3], + [27039,24.5], + [27041,17.7], + [27043,18.8], + [27045,26.5], + [27047,18.7], + [27049,24.1], + [27051,22.7], + [27053,23.4], + [27055,21.9], + [27057,21.6], + [27059,34.8], + [27061,22.7], + [27063,16.5], + [27065,31.4], + [27067,17.9], + [27069,20.6], + [27071,16.2], + [27073,16.1], + [27075,21], + [27077,21], + [27079,25.8], + [27081,21.8], + [27083,15.2], + [27085,22.5], + [27087,20.6], + [27089,23.3], + [27091,17], + [27093,24.4], + [27095,30], + [27097,26.8], + [27099,17.9], + [27101,20.3], + [27103,17.9], + [27105,16.1], + [27107,21.1], + [27109,17.5], + [27111,21], + [27113,14.5], + [27115,31.1], + [27117,20.1], + [27119,18.6], + [27121,18.3], + [27123,23.9], + [27125,22.2], + [27127,17.9], + [27129,19.5], + [27131,22.7], + [27133,19.2], + [27135,17.1], + [27137,19.8], + [27139,26], + [27141,32.4], + [27143,25.2], + [27145,20.4], + [27147,18.2], + [27149,11.6], + [27151,17.3], + [27153,24.2], + [27155,16.8], + [27157,23.8], + [27159,21], + [27161,20.4], + [27163,25.8], + [27165,18.4], + [27167,18.5], + [27169,17.9], + [27171,30], + [27173,17.7], + [28001,18.9], + [28003,22.4], + [28005,37.1], + [28007,28.3], + [28009,30.5], + [28011,18], + [28013,25.1], + [28015,28.8], + [28017,24.1], + [28019,29.3], + [28021,22.4], + [28023,32], + [28025,22.2], + [28027,21.8], + [28029,31.5], + [28031,26.1], + [28033,24.9], + [28035,21.6], + [28037,31.4], + [28039,35.4], + [28041,33.9], + [28043,18.2], + [28045,29], + [28047,22.7], + [28049,22.8], + [28051,26.6], + [28053,22.7], + [28055,24.7], + [28057,24.4], + [28059,24.5], + [28061,32.9], + [28063,23.7], + [28065,34.6], + [28067,21.6], + [28069,32.2], + [28071,18.7], + [28073,25.2], + [28075,19.8], + [28077,35.5], + [28079,29.7], + [28081,19.9], + [28083,15.5], + [28085,29.6], + [28087,20.8], + [28089,22.1], + [28091,30.8], + [28093,28.2], + [28095,25], + [28097,27.1], + [28099,25], + [28101,26.1], + [28103,26.7], + [28105,19.9], + [28107,25.6], + [28109,34.5], + [28111,31.1], + [28113,24.4], + [28115,23.9], + [28117,25.4], + [28119,26], + [28121,25.4], + [28123,25.9], + [28125,21.4], + [28127,35.7], + [28129,33], + [28131,32.9], + [28133,18.8], + [28135,26.1], + [28137,32.1], + [28139,23.9], + [28141,22.3], + [28143,21.5], + [28145,23.8], + [28147,35.1], + [28149,18.5], + [28151,16.7], + [28153,33.6], + [28155,28.1], + [28157,33.8], + [28159,27.6], + [28161,25.4], + [28163,27.2], + [29001,17.1], + [29003,22.5], + [29005,17.9], + [29007,21], + [29009,23.4], + [29011,22.8], + [29013,30.1], + [29015,27.4], + [29017,32.6], + [29019,17.9], + [29021,17.4], + [29023,18], + [29025,32.6], + [29027,23.5], + [29029,22.4], + [29031,19.6], + [29033,26], + [29035,24.6], + [29037,27.9], + [29039,25.5], + [29041,23.2], + [29043,25.4], + [29045,23.5], + [29047,23.1], + [29049,31.7], + [29051,18], + [29053,24], + [29055,26.8], + [29057,24.1], + [29059,33.1], + [29061,25.4], + [29063,25], + [29065,25.6], + [29067,31.5], + [29069,20.5], + [29071,28.3], + [29073,26], + [29075,21.5], + [29077,19.3], + [29079,16.9], + [29081,19.3], + [29083,23.2], + [29085,29.7], + [29087,20.7], + [29089,23.3], + [29091,19.3], + [29093,28.2], + [29095,23.4], + [29097,17.7], + [29099,30.9], + [29101,21.5], + [29103,22.8], + [29105,21.3], + [29107,25.5], + [29109,22.2], + [29111,25.3], + [29113,33.1], + [29115,19], + [29117,18.7], + [29119,25.9], + [29121,20], + [29123,25.4], + [29125,31], + [29127,18.6], + [29129,21.7], + [29131,26.6], + [29133,16.5], + [29135,25.1], + [29137,25.3], + [29139,25.8], + [29141,23.6], + [29143,19.1], + [29145,21.7], + [29147,16.1], + [29149,20.9], + [29151,25.6], + [29153,29.4], + [29155,17.4], + [29157,23.2], + [29159,18.3], + [29161,19.6], + [29163,23], + [29165,23.2], + [29167,24.2], + [29169,18.8], + [29171,19.8], + [29173,22.5], + [29175,21.4], + [29177,30.3], + [29179,22.8], + [29181,24.8], + [29183,25.5], + [29185,29.6], + [29186,26.8], + [29187,24.7], + [29189,24.2], + [29195,16.5], + [29197,25.4], + [29199,19.8], + [29201,20], + [29203,25.5], + [29205,21.5], + [29207,22.1], + [29209,28.9], + [29211,16.2], + [29213,21.2], + [29215,24.7], + [29217,17.1], + [29219,30.7], + [29221,33.3], + [29223,26.1], + [29225,28.9], + [29227,25.7], + [29229,27.6], + [29510,24.1], + [30001,14.2], + [30003,18.1], + [30005,15.5], + [30007,26.5], + [30009,27.5], + [30011,18], + [30013,15.3], + [30015,17.2], + [30017,12.8], + [30019,11.4], + [30021,17.4], + [30023,17.2], + [30025,13.1], + [30027,12.4], + [30029,19.1], + [30031,17.7], + [30033,12], + [30035,14.8], + [30037,25.2], + [30039,24.3], + [30041,11.7], + [30043,20.3], + [30045,16.4], + [30047,19.7], + [30049,16.4], + [30051,10.7], + [30053,16.8], + [30055,16.7], + [30057,21.4], + [30059,13.4], + [30061,22.3], + [30063,18.1], + [30065,30.5], + [30067,25.9], + [30069,14], + [30071,19.5], + [30073,14.3], + [30075,16.9], + [30077,21.8], + [30079,12.8], + [30081,22.8], + [30083,16], + [30085,14.1], + [30087,12.8], + [30089,19.3], + [30091,14.6], + [30093,15.1], + [30095,24.1], + [30097,22.1], + [30099,18.4], + [30101,14.9], + [30103,17.6], + [30105,15.4], + [30107,8], + [30109,18.6], + [30111,18.4], + [31001,15.3], + [31003,16], + [31005,20.8], + [31007,24.8], + [31009,20.6], + [31011,15.5], + [31013,10.8], + [31015,17.2], + [31017,14.5], + [31019,14.6], + [31021,22.4], + [31023,22], + [31025,26.1], + [31027,16.4], + [31029,12.7], + [31031,12.3], + [31033,13.3], + [31035,20.9], + [31037,16.2], + [31039,15.4], + [31041,16.2], + [31043,14.7], + [31045,12.8], + [31047,15.3], + [31049,21], + [31051,21], + [31053,18.5], + [31055,19.3], + [31057,14.4], + [31059,16.3], + [31061,18.2], + [31063,20.3], + [31065,13.2], + [31067,19.8], + [31069,21.4], + [31071,11.5], + [31073,16.4], + [31075,20.9], + [31077,21.7], + [31079,17], + [31081,17.6], + [31083,16.8], + [31085,24.5], + [31087,20.8], + [31089,14.3], + [31091,11.7], + [31093,24.2], + [31095,16], + [31097,22.1], + [31099,18.4], + [31101,14.4], + [31103,18.8], + [31105,14.3], + [31107,17.2], + [31109,18.8], + [31111,14.8], + [31113,27.8], + [31115,26.7], + [31117,30.1], + [31119,14.2], + [31121,19.5], + [31123,17.8], + [31125,19.4], + [31127,19.6], + [31129,16.1], + [31131,21.7], + [31133,20.8], + [31135,13.7], + [31137,13.8], + [31139,19.2], + [31141,14], + [31143,19.9], + [31145,12.2], + [31147,18.6], + [31149,16.2], + [31151,20], + [31153,20.6], + [31155,25.3], + [31157,15.4], + [31159,21.7], + [31161,17.4], + [31163,25.5], + [31165,18.9], + [31167,18.4], + [31169,12.8], + [31171,14.3], + [31173,15.8], + [31175,18.1], + [31177,20.8], + [31179,17.5], + [31181,20.9], + [31183,18.8], + [31185,15.5], + [32001,20.1], + [32003,24.5], + [32005,23.9], + [32007,31.3], + [32009,15.9], + [32011,22.5], + [32013,29.9], + [32015,23.6], + [32017,13.2], + [32019,29.6], + [32021,13.1], + [32023,24.4], + [32027,16.7], + [32029,26.7], + [32031,21.4], + [32033,14.2], + [32510,18.5], + [33001,26.4], + [33003,26.2], + [33005,23.4], + [33007,20.8], + [33009,22], + [33011,27.9], + [33013,26.3], + [33015,30.2], + [33017,26.7], + [33019,24.1], + [34001,24.2], + [34003,32.3], + [34005,29.3], + [34007,28.3], + [34009,22.9], + [34011,23.6], + [34013,34.4], + [34015,29.9], + [34017,35.7], + [34019,33.9], + [34021,28.3], + [34023,33.3], + [34025,33.6], + [34027,30.9], + [34029,30.7], + [34031,27.6], + [34033,25.6], + [34035,32], + [34037,38.2], + [34039,31.1], + [34041,35.4], + [35001,21.9], + [35003,14.6], + [35005,19.8], + [35006,23.4], + [35007,15.6], + [35009,14.3], + [35011,10.3], + [35013,20.8], + [35015,17.7], + [35017,16.4], + [35019,18.3], + [35021,23], + [35023,19.9], + [35025,20.4], + [35027,21.1], + [35028,15.7], + [35029,17.8], + [35031,22.1], + [35033,31], + [35035,18.5], + [35037,15.5], + [35039,27.2], + [35041,17.6], + [35043,28.4], + [35045,23.9], + [35047,20.8], + [35049,22.3], + [35051,16.7], + [35053,16.9], + [35055,20.2], + [35057,29.6], + [35059,15.1], + [35061,28.8], + [36001,20.4], + [36003,21.4], + [36005,44.2], + [36007,19.7], + [36009,21.9], + [36011,23], + [36013,18], + [36015,19.6], + [36017,24.1], + [36019,19.8], + [36021,25.8], + [36023,20.5], + [36025,24.4], + [36027,32.2], + [36029,21.3], + [36031,21.9], + [36033,20.9], + [36035,25], + [36037,22.2], + [36039,27.6], + [36041,25.3], + [36043,23.1], + [36045,17.4], + [36047,42.4], + [36049,24.5], + [36051,25.5], + [36053,23.3], + [36055,20.1], + [36057,24.5], + [36059,35.8], + [36061,31.8], + [36063,22], + [36065,19.6], + [36067,20.1], + [36069,23.2], + [36071,33.4], + [36073,24.1], + [36075,24.8], + [36077,22.4], + [36079,39.2], + [36081,43.5], + [36083,24.4], + [36085,44], + [36087,31], + [36089,20.9], + [36091,25.3], + [36093,22.9], + [36095,29.7], + [36097,24.8], + [36099,22.3], + [36101,21.7], + [36103,32], + [36105,30.6], + [36107,23], + [36109,18.6], + [36111,28.2], + [36113,22.8], + [36115,26.2], + [36117,24.9], + [36119,34.1], + [36121,24.7], + [36123,22.5], + [37001,23.6], + [37003,25.6], + [37005,25], + [37007,27.8], + [37009,26.5], + [37011,22.5], + [37013,25.1], + [37015,24.8], + [37017,24.7], + [37019,24.2], + [37021,20.1], + [37023,21.5], + [37025,27.8], + [37027,23.4], + [37029,33.7], + [37031,23.2], + [37033,31], + [37035,22.6], + [37037,28.7], + [37039,24.6], + [37041,28.2], + [37043,21.3], + [37045,24], + [37047,26.4], + [37049,21.6], + [37051,20.5], + [37053,37.2], + [37055,20.2], + [37057,24.8], + [37059,26.3], + [37061,26.1], + [37063,22.9], + [37065,22], + [37067,21.4], + [37069,31.7], + [37071,25.4], + [37073,36.5], + [37075,27.5], + [37077,28.6], + [37079,25.8], + [37081,21.5], + [37083,25.2], + [37085,29.2], + [37087,22.8], + [37089,21.6], + [37091,24.2], + [37093,27.1], + [37095,24.7], + [37097,25.6], + [37099,20.4], + [37101,29.9], + [37103,27.4], + [37105,24.7], + [37107,22.2], + [37109,30], + [37111,23], + [37113,21.4], + [37115,28.9], + [37117,24], + [37119,25.8], + [37121,25.6], + [37123,24], + [37125,24], + [37127,21.9], + [37129,20.4], + [37131,25.6], + [37133,21.4], + [37135,22.2], + [37137,28.4], + [37139,28.3], + [37141,28.9], + [37143,29.6], + [37145,30.7], + [37147,20.6], + [37149,25.7], + [37151,23.8], + [37153,21.5], + [37155,23.8], + [37157,25.6], + [37159,24.2], + [37161,25.8], + [37163,25.6], + [37165,21.8], + [37167,25.7], + [37169,28.7], + [37171,24.5], + [37173,18.7], + [37175,26.1], + [37177,29.5], + [37179,29.5], + [37181,22.6], + [37183,24.9], + [37185,28.5], + [37187,25.1], + [37189,20], + [37191,21.9], + [37193,23.3], + [37195,20.7], + [37197,26.6], + [37199,28.7], + [38001,17.3], + [38003,17], + [38005,18], + [38007,27.6], + [38009,18.7], + [38011,14.3], + [38013,23.9], + [38015,17.2], + [38017,16], + [38019,12.5], + [38021,13.4], + [38023,17], + [38025,22.9], + [38027,17.1], + [38029,15.8], + [38031,12.9], + [38033,14.3], + [38035,14.2], + [38037,22.1], + [38039,18.8], + [38041,19.8], + [38043,23.7], + [38045,17.5], + [38047,14.4], + [38049,26.5], + [38051,11.5], + [38053,17.4], + [38055,23.1], + [38057,17.8], + [38059,20.1], + [38061,17.1], + [38063,17.9], + [38065,29.1], + [38067,16.9], + [38069,14.9], + [38071,12.9], + [38073,18.6], + [38075,26.6], + [38077,18.2], + [38079,16.9], + [38081,13.8], + [38083,23.8], + [38085,17.9], + [38087,27.9], + [38089,18.2], + [38091,17.9], + [38093,15], + [38095,14.9], + [38097,21.2], + [38099,16.1], + [38101,18.9], + [38103,14.9], + [38105,18.5], + [39001,36.5], + [39003,18.9], + [39005,24.4], + [39007,25.9], + [39009,20.2], + [39011,19.6], + [39013,23.2], + [39015,36.5], + [39017,24.4], + [39019,28.5], + [39021,25.9], + [39023,22], + [39025,28], + [39027,25.6], + [39029,25.3], + [39031,23.9], + [39033,20.8], + [39035,24.3], + [39037,23.2], + [39039,20.3], + [39041,26.2], + [39043,21], + [39045,28.3], + [39047,24], + [39049,21.8], + [39051,24.1], + [39053,29], + [39055,28.3], + [39057,21], + [39059,24.4], + [39061,23.2], + [39063,17.1], + [39065,25.2], + [39067,28.3], + [39069,22.3], + [39071,29.2], + [39073,32], + [39075,20.9], + [39077,22.5], + [39079,25.6], + [39081,25], + [39083,24.9], + [39085,23.6], + [39087,23.5], + [39089,25.8], + [39091,22], + [39093,24.2], + [39095,20.6], + [39097,25.3], + [39099,21.9], + [39101,22], + [39103,27.1], + [39105,30.9], + [39107,17.5], + [39109,20.9], + [39111,33.9], + [39113,21.5], + [39115,31.2], + [39117,29.5], + [39119,23.7], + [39121,30.7], + [39123,23.9], + [39125,22.4], + [39127,31.8], + [39129,28.1], + [39131,28.2], + [39133,25.5], + [39135,26.5], + [39137,22.2], + [39139,22.2], + [39141,25.7], + [39143,20.3], + [39145,25.6], + [39147,21.3], + [39149,18], + [39151,21.8], + [39153,22.8], + [39155,22.8], + [39157,22.3], + [39159,24.7], + [39161,19.3], + [39163,31.7], + [39165,25.4], + [39167,22.1], + [39169,20.6], + [39171,19.3], + [39173,20.1], + [39175,21.7], + [40001,23.1], + [40003,18.8], + [40005,25.3], + [40007,19.3], + [40009,17], + [40011,17.2], + [40013,20.2], + [40015,22.9], + [40017,23.8], + [40019,19.6], + [40021,23.6], + [40023,22.7], + [40025,14.7], + [40027,23.3], + [40029,25.6], + [40031,16.7], + [40033,23], + [40035,21.3], + [40037,24.9], + [40039,18.7], + [40041,25.9], + [40043,21.7], + [40045,18.7], + [40047,16.6], + [40049,21.5], + [40051,25.9], + [40053,18.1], + [40055,20.9], + [40057,15.9], + [40059,19.9], + [40061,25.3], + [40063,23], + [40065,14.5], + [40067,26], + [40069,24.3], + [40071,17.5], + [40073,19], + [40075,20.9], + [40077,23.8], + [40079,24.2], + [40081,29.1], + [40083,28.5], + [40085,23.1], + [40087,26.7], + [40089,21.8], + [40091,27], + [40093,23], + [40095,23.8], + [40097,23.3], + [40099,20.5], + [40101,20.5], + [40103,20.5], + [40105,26.3], + [40107,27.5], + [40109,21.2], + [40111,26.1], + [40113,24.4], + [40115,20], + [40117,26.7], + [40119,17.5], + [40121,20.9], + [40123,17.3], + [40125,23.7], + [40127,27], + [40129,20.7], + [40131,24.2], + [40133,23.9], + [40135,25.4], + [40137,20.4], + [40139,15.9], + [40141,19.4], + [40143,19.7], + [40145,26.1], + [40147,17.7], + [40149,21.6], + [40151,14], + [40153,17.4], + [41001,16], + [41003,19.6], + [41005,28.7], + [41007,19.1], + [41009,33.3], + [41011,19.1], + [41013,23.4], + [41015,14.4], + [41017,18.5], + [41019,19.5], + [41021,17.5], + [41023,17.2], + [41025,15.8], + [41027,17.4], + [41029,18.7], + [41031,20.4], + [41033,20.1], + [41035,16.2], + [41037,14.6], + [41039,20.2], + [41041,18.9], + [41043,22.3], + [41045,18.9], + [41047,23.2], + [41049,20.4], + [41051,26.6], + [41053,24.6], + [41055,22.3], + [41057,18.9], + [41059,18], + [41061,18], + [41063,16.1], + [41065,17.6], + [41067,24.9], + [41069,20.2], + [41071,25.9], + [42001,27.6], + [42003,26.7], + [42005,29.7], + [42007,25.6], + [42009,27.2], + [42011,24.9], + [42013,20.1], + [42015,22.5], + [42017,29.8], + [42019,26.8], + [42021,24.1], + [42023,17.6], + [42025,31.9], + [42027,20.4], + [42029,27.9], + [42031,22.5], + [42033,24.4], + [42035,22.6], + [42037,22.3], + [42039,22], + [42041,22.1], + [42043,22], + [42045,29], + [42047,18.8], + [42049,19.3], + [42051,26.3], + [42053,26.9], + [42055,24.4], + [42057,32.3], + [42059,26.8], + [42061,29.5], + [42063,23], + [42065,23.1], + [42067,30.6], + [42069,20.9], + [42071,23.1], + [42073,22.9], + [42075,23.1], + [42077,24.7], + [42079,22.1], + [42081,20.2], + [42083,21.1], + [42085,20.8], + [42087,24.1], + [42089,38.6], + [42091,28.7], + [42093,19], + [42095,27.6], + [42097,23.3], + [42099,32.6], + [42101,32.9], + [42103,44.2], + [42105,24.5], + [42107,25.7], + [42109,22.9], + [42111,24.2], + [42113,31.5], + [42115,28], + [42117,23.9], + [42119,22.5], + [42121,22.1], + [42123,20.4], + [42125,26.9], + [42127,29.6], + [42129,26.3], + [42131,25.6], + [42133,27.1], + [44001,25.9], + [44003,25.3], + [44005,22.5], + [44007,24.4], + [44009,25.9], + [45001,25.8], + [45003,24.9], + [45005,28.3], + [45007,22.9], + [45009,24.4], + [45011,27.6], + [45013,22.4], + [45015,27.3], + [45017,28.1], + [45019,23.2], + [45021,22.1], + [45023,28.8], + [45025,23.9], + [45027,29.6], + [45029,33.1], + [45031,23], + [45033,23.7], + [45035,28.8], + [45037,25.2], + [45039,31.1], + [45041,23.1], + [45043,25.4], + [45045,22.2], + [45047,22.2], + [45049,31.7], + [45051,22], + [45053,30.8], + [45055,26.8], + [45057,29.1], + [45059,24.3], + [45061,26.8], + [45063,25.5], + [45065,26.6], + [45067,30.3], + [45069,25.2], + [45071,24.6], + [45073,24.6], + [45075,28], + [45077,24.8], + [45079,21.4], + [45081,29.8], + [45083,22.7], + [45085,22.3], + [45087,27.5], + [45089,30], + [45091,26.9], + [46003,16.4], + [46005,13.9], + [46007,17.4], + [46009,19.6], + [46011,14.9], + [46013,12.9], + [46015,13.4], + [46017,13], + [46019,20.5], + [46021,17.1], + [46023,10.3], + [46025,20.7], + [46027,15], + [46029,14.4], + [46031,21], + [46033,26.1], + [46035,12.7], + [46037,18.7], + [46039,19.5], + [46041,17.3], + [46043,13.6], + [46045,16.8], + [46047,15.8], + [46049,12.2], + [46051,12.3], + [46053,14.2], + [46055,11.5], + [46057,19.9], + [46059,13.3], + [46061,19.5], + [46063,22.7], + [46065,10.8], + [46067,16.6], + [46069,15.7], + [46071,12.6], + [46073,15.5], + [46075,14.9], + [46077,20.6], + [46079,16], + [46081,17.1], + [46083,19.6], + [46085,11.8], + [46087,24.7], + [46089,18.4], + [46091,17.1], + [46093,20.5], + [46095,21.9], + [46097,21.3], + [46099,17.8], + [46101,19.8], + [46102,"NA"], + [46103,17.3], + [46105,13.3], + [46107,14.3], + [46109,18.6], + [46111,21.5], + [46115,15.9], + [46117,16.4], + [46119,14.6], + [46121,18.1], + [46123,15.4], + [46125,25.4], + [46127,19.6], + [46129,15.2], + [46135,15.1], + [46137,22.8], + [47001,23.3], + [47003,25.1], + [47005,24.4], + [47007,30.4], + [47009,24.8], + [47011,21.1], + [47013,27.1], + [47015,33.4], + [47017,23.9], + [47019,23.8], + [47021,32], + [47023,24.8], + [47025,24.5], + [47027,27.9], + [47029,28.4], + [47031,23.1], + [47033,23.2], + [47035,22.2], + [47037,24.5], + [47039,26.9], + [47041,27.9], + [47043,31.7], + [47045,20.2], + [47047,33.1], + [47049,23.2], + [47051,22.4], + [47053,23.2], + [47055,25.7], + [47057,32.9], + [47059,22.8], + [47061,28.1], + [47063,22.1], + [47065,21.4], + [47067,34.3], + [47069,28.7], + [47071,24.4], + [47073,25.3], + [47075,22.8], + [47077,26.5], + [47079,20.9], + [47081,36.3], + [47083,34.4], + [47085,27.5], + [47087,32], + [47089,25.8], + [47091,24.8], + [47093,21.9], + [47095,18.7], + [47097,23.7], + [47099,27.7], + [47101,26.2], + [47103,27.7], + [47105,23.4], + [47107,23.8], + [47109,26.9], + [47111,34.6], + [47113,18.6], + [47115,28.1], + [47117,30.1], + [47119,29.3], + [47121,31], + [47123,28], + [47125,24.9], + [47127,25.2], + [47129,30.2], + [47131,21.9], + [47133,27.5], + [47135,29.7], + [47137,25.8], + [47139,29.8], + [47141,22.9], + [47143,22.7], + [47145,27.4], + [47147,29.3], + [47149,28.5], + [47151,28.3], + [47153,32.4], + [47155,24.8], + [47157,22.9], + [47159,28.6], + [47161,34.7], + [47163,21.4], + [47165,27.8], + [47167,33], + [47169,29.2], + [47171,20.4], + [47173,33.6], + [47175,27.5], + [47177,24.5], + [47179,20.8], + [47181,29.1], + [47183,20], + [47185,24], + [47187,27.3], + [47189,30], + [48001,23.7], + [48003,19.8], + [48005,18.7], + [48007,20.8], + [48009,20.4], + [48011,27.4], + [48013,30.8], + [48015,31.1], + [48017,16.5], + [48019,37], + [48021,34.4], + [48023,10.6], + [48025,21.9], + [48027,20.6], + [48029,25], + [48031,27.8], + [48033,28.1], + [48035,29.6], + [48037,17.9], + [48039,29.8], + [48041,17], + [48043,13.8], + [48045,20.9], + [48047,21.6], + [48049,17.3], + [48051,27.4], + [48053,26.2], + [48055,30.6], + [48057,20.9], + [48059,22.9], + [48061,20.2], + [48063,26], + [48065,19.7], + [48067,24], + [48069,16.1], + [48071,27.8], + [48073,24.4], + [48075,15.7], + [48077,23.9], + [48079,23.4], + [48081,23], + [48083,24.5], + [48085,28.7], + [48087,15.4], + [48089,20.5], + [48091,30.6], + [48093,25.2], + [48095,22.5], + [48097,25.5], + [48099,22], + [48101,15.2], + [48103,28.5], + [48105,22.3], + [48107,21.6], + [48109,12.5], + [48111,13.5], + [48113,27.2], + [48115,16.6], + [48117,13.1], + [48119,31.5], + [48121,28.9], + [48123,23.8], + [48125,19.1], + [48127,15.6], + [48129,23.6], + [48131,27.6], + [48133,18.6], + [48135,22], + [48137,16.3], + [48139,29.3], + [48141,23.4], + [48143,19.9], + [48145,26.7], + [48147,29.7], + [48149,22.8], + [48151,21.3], + [48153,14.9], + [48155,20.8], + [48157,33], + [48159,23.9], + [48161,25.7], + [48163,15.8], + [48165,19], + [48167,28], + [48169,17.4], + [48171,20.7], + [48173,20.6], + [48175,29.9], + [48177,22.3], + [48179,19], + [48181,24.9], + [48183,20.4], + [48185,27.1], + [48187,26.7], + [48189,17.7], + [48191,15], + [48193,19.1], + [48195,14.8], + [48197,15.9], + [48199,28.3], + [48201,28.9], + [48203,20.9], + [48205,11.9], + [48207,16.1], + [48209,30.1], + [48211,16], + [48213,30.6], + [48215,21.9], + [48217,28.5], + [48219,19.6], + [48221,32.5], + [48223,23.3], + [48225,26.4], + [48227,18.8], + [48229,29], + [48231,30.8], + [48233,18.3], + [48235,22.3], + [48237,26.5], + [48239,25.7], + [48241,29.9], + [48243,18.5], + [48245,19.7], + [48247,33], + [48249,28.6], + [48251,30.3], + [48253,20.2], + [48255,21.7], + [48257,34.7], + [48259,31.2], + [48261,16.3], + [48263,7.7], + [48265,20], + [48267,20.6], + [48269,12.4], + [48271,18.7], + [48273,17.6], + [48275,17.5], + [48277,20.3], + [48279,17.2], + [48281,27.4], + [48283,19.5], + [48285,28], + [48287,25.7], + [48289,28.3], + [48291,36.9], + [48293,21.3], + [48295,20.2], + [48297,33.5], + [48299,24.4], + [48301,22.4], + [48303,17.3], + [48305,19.1], + [48307,15.9], + [48309,19.4], + [48311,21.6], + [48313,23.4], + [48315,31.4], + [48317,17.9], + [48319,20.2], + [48321,21.7], + [48323,22], + [48325,31.5], + [48327,29.3], + [48329,19.5], + [48331,27.2], + [48333,16.5], + [48335,20.2], + [48337,24.3], + [48339,32.7], + [48341,16.9], + [48343,23.8], + [48345,16.4], + [48347,20.4], + [48349,25.3], + [48351,37.3], + [48353,15.5], + [48355,19.6], + [48357,18.5], + [48359,19], + [48361,23.9], + [48363,23.5], + [48365,25.9], + [48367,31.7], + [48369,14.2], + [48371,19.2], + [48373,29.1], + [48375,17.8], + [48377,18.3], + [48379,34.9], + [48381,19.1], + [48383,16.6], + [48385,16.3], + [48387,30.7], + [48389,16.8], + [48391,22.7], + [48393,22.2], + [48395,24.4], + [48397,33.4], + [48399,21.9], + [48401,24.3], + [48403,22.2], + [48405,26.7], + [48407,41.3], + [48409,23.6], + [48411,25.8], + [48413,29], + [48415,16.6], + [48417,20.7], + [48419,26.3], + [48421,20.1], + [48423,23.8], + [48425,28.3], + [48427,23.1], + [48429,19.5], + [48431,21], + [48433,17.7], + [48435,19.7], + [48437,19.7], + [48439,27], + [48441,16.9], + [48443,30], + [48445,20.1], + [48447,22.2], + [48449,18.8], + [48451,17.8], + [48453,25.3], + [48455,33.2], + [48457,35.7], + [48459,27.8], + [48461,20.9], + [48463,18.5], + [48465,19], + [48467,34.4], + [48469,20], + [48471,25.8], + [48473,30], + [48475,21.7], + [48477,21.5], + [48479,21.7], + [48481,23], + [48483,18.4], + [48485,15.4], + [48487,11.5], + [48489,22.7], + [48491,27.9], + [48493,34.5], + [48495,19.2], + [48497,32.1], + [48499,30.2], + [48501,16.2], + [48503,15.3], + [48505,18.2], + [48507,13.7], + [49001,16], + [49003,23.5], + [49005,17.3], + [49007,17.7], + [49009,18.6], + [49011,22.5], + [49013,20.6], + [49015,19.8], + [49017,14], + [49019,15.6], + [49021,17.4], + [49023,22.7], + [49025,12.5], + [49027,17.5], + [49029,27.7], + [49031,24.5], + [49033,21.6], + [49035,22.1], + [49037,20.6], + [49039,21], + [49041,16.6], + [49043,25], + [49045,27.8], + [49047,19.1], + [49049,21.4], + [49051,23.3], + [49053,18.1], + [49055,16.3], + [49057,22], + [50001,23.8], + [50003,19.3], + [50005,26], + [50007,21.1], + [50009,26], + [50011,25.3], + [50013,33.4], + [50015,25.4], + [50017,27], + [50019,24.2], + [50021,21.1], + [50023,22.9], + [50025,21.3], + [50027,22.8], + [51001,22], + [51003,21.9], + [51005,24.6], + [51007,38], + [51009,24.1], + [51011,31.9], + [51013,28.6], + [51015,23.7], + [51017,24.5], + [51019,26.9], + [51021,32.8], + [51023,28.3], + [51025,29.2], + [51027,27.7], + [51029,35.5], + [51031,25.3], + [51033,35.6], + [51035,25.8], + [51036,32.7], + [51037,31.4], + [51041,26.4], + [51043,35.6], + [51045,37.6], + [51047,39.7], + [51049,40.7], + [51051,29.6], + [51053,29.2], + [51057,35], + [51059,32.1], + [51061,39.8], + [51063,31.6], + [51065,33.4], + [51067,30.2], + [51069,31.1], + [51071,24.9], + [51073,32.9], + [51075,31.1], + [51077,27.8], + [51079,31.2], + [51081,22.9], + [51083,25.3], + [51085,26.1], + [51087,22.3], + [51089,23.6], + [51091,22.5], + [51093,29.2], + [51095,25], + [51097,34.6], + [51099,37.1], + [51101,37.4], + [51103,26.7], + [51105,29.8], + [51107,33.7], + [51109,36.3], + [51111,29.1], + [51113,30.5], + [51115,32.5], + [51117,24.7], + [51119,31], + [51121,18.7], + [51125,31.2], + [51127,33.4], + [51131,20.3], + [51133,27.5], + [51135,25.4], + [51137,39.3], + [51139,33.8], + [51141,28], + [51143,25.1], + [51145,31.8], + [51147,21.4], + [51149,25.7], + [51153,39.1], + [51155,22.8], + [51157,37.9], + [51159,24.7], + [51161,22.4], + [51163,23.5], + [51165,21.7], + [51167,28.1], + [51169,28.2], + [51171,31], + [51173,22], + [51175,31], + [51177,38.2], + [51179,40.9], + [51181,39.3], + [51183,33.7], + [51185,23.9], + [51187,40.7], + [51191,24], + [51193,41.5], + [51195,22.4], + [51197,23.4], + [51199,21.9], + [51510,31.8], + [51520,21.1], + [51530,18.3], + [51540,17.8], + [51550,25.9], + [51570,21.7], + [51580,17.8], + [51590,20.1], + [51595,17.9], + [51600,31.2], + [51610,28.9], + [51620,26.2], + [51630,27.7], + [51640,18.6], + [51650,22.4], + [51660,15.7], + [51670,24], + [51678,16.7], + [51680,17.4], + [51683,34.1], + [51685,37.3], + [51690,19.9], + [51700,23], + [51710,21.2], + [51720,14.3], + [51730,22.5], + [51735,24.6], + [51740,24.1], + [51750,19.1], + [51760,21.9], + [51770,20.8], + [51775,19.6], + [51790,20], + [51800,28.4], + [51810,23.7], + [51820,21.5], + [51830,19.6], + [51840,24.8], + [53001,17.8], + [53003,15.4], + [53005,21.8], + [53007,18.6], + [53009,21.2], + [53011,26.4], + [53013,22.6], + [53015,24.6], + [53017,18.2], + [53019,22.2], + [53021,21.5], + [53023,20], + [53025,18.9], + [53027,25.8], + [53029,27.8], + [53031,23.5], + [53033,29.1], + [53035,30.3], + [53037,21.3], + [53039,24.1], + [53041,27.1], + [53043,24.3], + [53045,32.1], + [53047,17.2], + [53049,19.3], + [53051,29.2], + [53053,31.2], + [53055,14.9], + [53057,25.4], + [53059,30.5], + [53061,31.8], + [53063,21.5], + [53065,27.8], + [53067,25.6], + [53069,24.6], + [53071,15.6], + [53073,21], + [53075,15.3], + [53077,18.9], + [54001,29.2], + [54003,31.2], + [54005,32.9], + [54007,30.2], + [54009,26.1], + [54011,20.5], + [54013,33.1], + [54015,45.1], + [54017,31.6], + [54019,28.2], + [54021,31.1], + [54023,27.6], + [54025,25.2], + [54027,37], + [54029,23.9], + [54031,24.9], + [54033,22.3], + [54035,29.9], + [54037,37.4], + [54039,20.9], + [54041,28.2], + [54043,35.4], + [54045,25.1], + [54047,24.8], + [54049,23.8], + [54051,25], + [54053,32.2], + [54055,21.6], + [54057,28.5], + [54059,28.8], + [54061,20.9], + [54063,30.1], + [54065,33], + [54067,28], + [54069,19.7], + [54071,32.1], + [54073,27.2], + [54075,27.3], + [54077,30.2], + [54079,24.7], + [54081,24.2], + [54083,21.4], + [54085,25.6], + [54087,31.9], + [54089,29.7], + [54091,30.2], + [54093,28.9], + [54095,28], + [54097,26.1], + [54099,26.7], + [54101,26.7], + [54103,26.9], + [54105,35], + [54107,20.3], + [54109,30.1], + [55001,28.3], + [55003,16.5], + [55005,19.6], + [55007,23.8], + [55009,19.1], + [55011,25.1], + [55013,27], + [55015,20.2], + [55017,21.9], + [55019,21.1], + [55021,25.7], + [55023,22.6], + [55025,21], + [55027,23.1], + [55029,18.2], + [55031,22.3], + [55033,22.9], + [55035,18.4], + [55037,19.7], + [55039,20.3], + [55041,20.3], + [55043,20.3], + [55045,23.3], + [55047,24.6], + [55049,26.2], + [55051,20.9], + [55053,22.2], + [55055,23.8], + [55057,23.7], + [55059,25.9], + [55061,23], + [55063,18], + [55065,24.6], + [55067,21.3], + [55069,22.7], + [55071,18.7], + [55073,19.5], + [55075,19.8], + [55077,30], + [55078,16.9], + [55079,22.4], + [55081,19.8], + [55083,26.6], + [55085,19.8], + [55087,19.8], + [55089,23.8], + [55091,26.3], + [55093,25.9], + [55095,29.1], + [55097,18.8], + [55099,19.2], + [55101,24.2], + [55103,24.4], + [55105,22.8], + [55107,21.4], + [55109,27.9], + [55111,21.4], + [55113,20.3], + [55115,23.1], + [55117,18.2], + [55119,22.6], + [55121,22.3], + [55123,24.5], + [55125,19.5], + [55127,24], + [55129,22], + [55131,24.6], + [55133,24], + [55135,23.2], + [55137,26.4], + [55139,18.2], + [55141,19.7], + [56001,12.7], + [56003,18.8], + [56005,20.7], + [56007,16.3], + [56009,23.8], + [56011,28], + [56013,17.9], + [56015,18.7], + [56017,19.6], + [56019,24.6], + [56021,15.8], + [56023,26.2], + [56025,17.2], + [56027,15.1], + [56029,17.6], + [56031,16.9], + [56033,16], + [56035,20.9], + [56037,20.5], + [56039,14.3], + [56041,19.9], + [56043,14.3], + [56045,25.7] + ] +} diff --git a/data/regional/united-states/economics/traveltime/us-work-traveltime-2019.json b/data/regional/united-states/economics/traveltime/us-work-traveltime-2019.json new file mode 100644 index 0000000..a26e158 --- /dev/null +++ b/data/regional/united-states/economics/traveltime/us-work-traveltime-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Average Travel Time To Work", + "description" : "Average/mean travel time to work.", + "units" : "minutes", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","workforce","travel","transportation"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.work.traveltime.2019"], + [1001,24.4], + [1003,null], + [1005,null], + [1007,null], + [1009,null], + [1011,27.2], + [1013,23.7], + [1015,null], + [1017,23.7], + [1019,null], + [1021,32.1], + [1023,34.5], + [1025,26.6], + [1027,null], + [1029,null], + [1031,null], + [1033,23.4], + [1035,null], + [1037,null], + [1039,null], + [1041,29.9], + [1043,null], + [1045,null], + [1047,23.8], + [1049,24], + [1051,null], + [1053,null], + [1055,null], + [1057,29.8], + [1059,null], + [1061,27.8], + [1063,null], + [1065,null], + [1067,null], + [1069,null], + [1071,null], + [1073,null], + [1075,null], + [1077,24.3], + [1079,null], + [1081,null], + [1083,27], + [1085,null], + [1087,null], + [1089,21.5], + [1091,24.4], + [1093,null], + [1095,24.6], + [1097,null], + [1099,null], + [1101,20.7], + [1103,23.1], + [1105,null], + [1107,null], + [1109,20.3], + [1111,null], + [1113,24.8], + [1115,29.6], + [1117,null], + [1119,null], + [1121,24.6], + [1123,null], + [1125,null], + [1127,null], + [1129,33.4], + [1131,null], + [1133,null], + [2013,null], + [2016,null], + [2020,null], + [2050,7.3], + [2060,null], + [2068,null], + [2070,null], + [2090,null], + [2100,null], + [2105,null], + [2110,null], + [2122,19.8], + [2130,14.2], + [2150,null], + [2158,null], + [2164,5.8], + [2170,34.9], + [2180,null], + [2185,6.1], + [2188,null], + [2195,null], + [2198,null], + [2220,10.9], + [2230,null], + [2240,null], + [2261,null], + [2275,null], + [2282,null], + [2290,8.8], + [4001,null], + [4003,20.7], + [4005,null], + [4007,20.4], + [4009,21.7], + [4011,17.7], + [4012,14.7], + [4013,26.4], + [4015,null], + [4017,21.3], + [4019,24.9], + [4021,null], + [4023,24], + [4025,23.4], + [4027,null], + [5001,null], + [5003,null], + [5005,null], + [5007,null], + [5009,null], + [5011,22.1], + [5013,null], + [5015,null], + [5017,null], + [5019,20.8], + [5021,21.9], + [5023,27.2], + [5025,null], + [5027,null], + [5029,25], + [5031,19], + [5033,22.3], + [5035,20.3], + [5037,null], + [5039,null], + [5041,17.4], + [5043,21.5], + [5045,null], + [5047,null], + [5049,null], + [5051,22], + [5053,30.1], + [5055,null], + [5057,20.6], + [5059,null], + [5061,20.6], + [5063,18.2], + [5065,19.4], + [5067,19.6], + [5069,null], + [5071,18.9], + [5073,null], + [5075,null], + [5077,null], + [5079,null], + [5081,27], + [5083,25.5], + [5085,null], + [5087,33.9], + [5089,null], + [5091,19.9], + [5093,null], + [5095,null], + [5097,null], + [5099,null], + [5101,30.7], + [5103,21], + [5105,35.4], + [5107,16.7], + [5109,null], + [5111,null], + [5113,23.4], + [5115,null], + [5117,27.1], + [5119,null], + [5121,null], + [5123,null], + [5125,25.8], + [5127,null], + [5129,27], + [5131,19], + [5133,null], + [5135,22.2], + [5137,22.8], + [5139,19.6], + [5141,30.2], + [5143,null], + [5145,24.5], + [5147,null], + [5149,null], + [6001,34.3], + [6003,null], + [6005,32.7], + [6007,null], + [6009,38.3], + [6011,null], + [6013,38.7], + [6015,14.5], + [6017,30], + [6019,23.1], + [6021,22.2], + [6023,18.7], + [6025,22.1], + [6027,16.5], + [6029,null], + [6031,22.8], + [6033,null], + [6035,null], + [6037,31.8], + [6039,null], + [6041,32.6], + [6043,null], + [6045,20.8], + [6047,28.6], + [6049,16.1], + [6051,null], + [6053,23.4], + [6055,25.6], + [6057,25.5], + [6059,28], + [6061,27.9], + [6063,19.8], + [6065,34], + [6067,27.8], + [6069,null], + [6071,31.6], + [6073,26.5], + [6075,33.8], + [6077,34.2], + [6079,null], + [6081,29.3], + [6083,null], + [6085,29.3], + [6087,27.7], + [6089,null], + [6091,null], + [6093,18.4], + [6095,33.2], + [6097,25.6], + [6099,29.9], + [6101,null], + [6103,null], + [6105,21.6], + [6107,null], + [6109,26.9], + [6111,27.2], + [6113,24], + [6115,30], + [8001,29.8], + [8003,null], + [8005,28.1], + [8007,null], + [8009,13], + [8011,null], + [8013,23.4], + [8014,null], + [8015,null], + [8017,13.6], + [8019,29.5], + [8021,null], + [8023,22.9], + [8025,null], + [8027,null], + [8029,28.6], + [8031,25.9], + [8033,null], + [8035,27.8], + [8037,null], + [8039,39.3], + [8041,23.7], + [8043,null], + [8045,32.3], + [8047,null], + [8049,24.5], + [8051,15.6], + [8053,null], + [8055,null], + [8057,29.2], + [8059,28], + [8061,null], + [8063,null], + [8065,31.7], + [8067,null], + [8069,23.5], + [8071,21.2], + [8073,17.3], + [8075,18.3], + [8077,19.6], + [8079,null], + [8081,null], + [8083,null], + [8085,null], + [8087,19], + [8089,null], + [8091,28.4], + [8093,null], + [8095,null], + [8097,19.4], + [8099,14.4], + [8101,null], + [8103,null], + [8105,17.3], + [8107,null], + [8109,null], + [8111,null], + [8113,18.5], + [8115,21.5], + [8117,16.6], + [8119,null], + [8121,24.6], + [8123,27.7], + [8125,null], + [9001,31.3], + [9003,23.5], + [9005,28.7], + [9007,26.5], + [9009,25.5], + [9011,23.7], + [9013,null], + [9015,26.5], + [10001,null], + [10003,26.2], + [10005,26.4], + [11001,30.8], + [12001,22.4], + [12003,null], + [12005,null], + [12007,33], + [12009,25.2], + [12011,28.8], + [12013,30.2], + [12015,null], + [12017,null], + [12019,null], + [12021,null], + [12023,null], + [12027,26.3], + [12029,null], + [12031,25.2], + [12033,null], + [12035,27.1], + [12037,20.1], + [12039,null], + [12041,null], + [12043,33.8], + [12045,null], + [12047,22.3], + [12049,null], + [12051,28.4], + [12053,30.5], + [12055,null], + [12057,28.1], + [12059,null], + [12061,null], + [12063,null], + [12065,null], + [12067,null], + [12069,30], + [12071,27.5], + [12073,20.9], + [12075,null], + [12077,null], + [12079,null], + [12081,null], + [12083,null], + [12085,null], + [12086,32.8], + [12087,null], + [12089,null], + [12091,null], + [12093,24.4], + [12095,28.2], + [12097,null], + [12099,26], + [12101,32.2], + [12103,24.5], + [12105,null], + [12107,31.3], + [12109,null], + [12111,27.9], + [12113,29.7], + [12115,null], + [12117,27.5], + [12119,null], + [12121,null], + [12123,null], + [12125,null], + [12127,25.9], + [12129,null], + [12131,null], + [12133,30.8], + [13001,null], + [13003,24.6], + [13005,null], + [13007,null], + [13009,null], + [13011,null], + [13013,null], + [13015,29.4], + [13017,16.2], + [13019,null], + [13021,null], + [13023,null], + [13025,29.9], + [13027,23.5], + [13029,null], + [13031,22.3], + [13033,null], + [13035,32.7], + [13037,null], + [13039,22.9], + [13043,21.7], + [13045,null], + [13047,24.4], + [13049,null], + [13051,22.1], + [13053,12.9], + [13055,26.9], + [13057,null], + [13059,null], + [13061,null], + [13063,32.3], + [13065,16.9], + [13067,31.9], + [13069,19.8], + [13071,null], + [13073,26.6], + [13075,null], + [13077,31.1], + [13079,null], + [13081,null], + [13083,null], + [13085,33.9], + [13087,22.9], + [13089,32.3], + [13091,null], + [13093,null], + [13095,null], + [13097,null], + [13099,null], + [13101,null], + [13103,null], + [13105,null], + [13107,null], + [13109,null], + [13111,null], + [13113,null], + [13115,null], + [13117,33.6], + [13119,26], + [13121,28.8], + [13123,null], + [13125,null], + [13127,null], + [13129,24.1], + [13131,25.1], + [13133,null], + [13135,34.1], + [13137,null], + [13139,null], + [13141,null], + [13143,null], + [13145,null], + [13147,null], + [13149,null], + [13151,null], + [13153,22.6], + [13155,null], + [13157,null], + [13159,null], + [13161,null], + [13163,null], + [13165,null], + [13167,28.5], + [13169,null], + [13171,null], + [13173,null], + [13175,null], + [13177,21.4], + [13179,null], + [13181,null], + [13183,null], + [13185,null], + [13187,null], + [13189,25.9], + [13191,null], + [13193,26.3], + [13195,null], + [13197,null], + [13199,35.9], + [13201,null], + [13205,23.3], + [13207,null], + [13209,null], + [13211,25.3], + [13213,null], + [13215,null], + [13217,null], + [13219,null], + [13221,28.3], + [13223,null], + [13225,null], + [13227,null], + [13229,null], + [13231,null], + [13233,null], + [13235,null], + [13237,26.4], + [13239,null], + [13241,null], + [13243,null], + [13245,21.3], + [13247,null], + [13249,25.7], + [13251,null], + [13253,26.7], + [13255,29.2], + [13257,null], + [13259,30.5], + [13261,null], + [13263,null], + [13265,null], + [13267,25.1], + [13269,null], + [13271,null], + [13273,null], + [13275,19.6], + [13277,18.1], + [13279,null], + [13281,null], + [13283,null], + [13285,24.6], + [13287,22.7], + [13289,null], + [13291,24.4], + [13293,23.2], + [13295,null], + [13297,null], + [13299,null], + [13301,null], + [13303,21.9], + [13305,null], + [13307,null], + [13309,null], + [13311,null], + [13313,20.9], + [13315,null], + [13317,null], + [13319,26.8], + [13321,null], + [15001,null], + [15003,29.1], + [15005,null], + [15007,null], + [15009,21.3], + [16001,null], + [16003,null], + [16005,null], + [16007,null], + [16009,22], + [16011,23.3], + [16013,19.6], + [16015,38], + [16017,25.8], + [16019,19.3], + [16021,null], + [16023,null], + [16025,null], + [16027,24.6], + [16029,16.6], + [16031,16.6], + [16033,null], + [16035,null], + [16037,null], + [16039,null], + [16041,27.1], + [16043,25], + [16045,null], + [16047,null], + [16049,17.5], + [16051,null], + [16053,17.8], + [16055,null], + [16057,null], + [16059,null], + [16061,null], + [16063,29.6], + [16065,14.2], + [16067,null], + [16069,17], + [16071,22.7], + [16073,null], + [16075,null], + [16077,18.8], + [16079,null], + [16081,29.3], + [16083,null], + [16085,14.6], + [16087,null], + [17001,17.3], + [17003,null], + [17005,25.3], + [17007,null], + [17009,null], + [17011,null], + [17013,null], + [17015,24.7], + [17017,null], + [17019,null], + [17021,24.4], + [17023,null], + [17025,22], + [17027,null], + [17029,null], + [17031,33.4], + [17033,15.9], + [17035,null], + [17037,null], + [17039,21], + [17041,20.5], + [17043,29.8], + [17045,null], + [17047,22.5], + [17049,null], + [17051,null], + [17053,null], + [17055,25.5], + [17057,null], + [17059,null], + [17061,null], + [17063,null], + [17065,26.1], + [17067,25], + [17069,null], + [17071,null], + [17073,22.4], + [17075,23.8], + [17077,20.3], + [17079,24.8], + [17081,19.6], + [17083,null], + [17085,null], + [17087,25.5], + [17089,29.1], + [17091,24.6], + [17093,null], + [17095,null], + [17097,30.4], + [17099,null], + [17101,21.2], + [17103,21.8], + [17105,null], + [17107,21.9], + [17109,17.6], + [17111,33.2], + [17113,17.9], + [17115,null], + [17117,null], + [17119,25.2], + [17121,null], + [17123,27.6], + [17125,26.3], + [17127,23], + [17129,27.1], + [17131,null], + [17133,null], + [17135,25], + [17137,null], + [17139,null], + [17141,null], + [17143,null], + [17145,24.3], + [17147,null], + [17149,26.3], + [17151,null], + [17153,null], + [17155,25.2], + [17157,24.4], + [17159,null], + [17161,null], + [17163,25], + [17165,23.6], + [17167,null], + [17169,25.4], + [17171,null], + [17173,24.7], + [17175,null], + [17177,null], + [17179,null], + [17181,null], + [17183,19.6], + [17185,null], + [17187,19.4], + [17189,24.6], + [17191,24.7], + [17193,24.4], + [17195,19], + [17197,33], + [17199,null], + [17201,22.6], + [17203,22.4], + [18001,21.9], + [18003,21.6], + [18005,null], + [18007,27.6], + [18009,null], + [18011,25.8], + [18013,null], + [18015,null], + [18017,20.2], + [18019,23.7], + [18021,null], + [18023,null], + [18025,34.7], + [18027,26], + [18029,null], + [18031,21.8], + [18033,null], + [18035,20.8], + [18037,18.5], + [18039,null], + [18041,26.8], + [18043,null], + [18045,24.9], + [18047,null], + [18049,null], + [18051,null], + [18053,19], + [18055,null], + [18057,null], + [18059,null], + [18061,null], + [18063,null], + [18065,27.3], + [18067,null], + [18069,null], + [18071,21], + [18073,null], + [18075,20.6], + [18077,null], + [18079,null], + [18081,null], + [18083,20.1], + [18085,null], + [18087,23.7], + [18089,29.2], + [18091,23.6], + [18093,null], + [18095,null], + [18097,null], + [18099,null], + [18101,25.3], + [18103,null], + [18105,null], + [18107,null], + [18109,null], + [18111,null], + [18113,22.2], + [18115,null], + [18117,null], + [18119,null], + [18121,null], + [18123,24], + [18125,null], + [18127,27.8], + [18129,null], + [18131,null], + [18133,null], + [18135,25], + [18137,28.4], + [18139,25.9], + [18141,21.3], + [18143,25.5], + [18145,null], + [18147,null], + [18149,null], + [18151,null], + [18153,23.2], + [18155,36.2], + [18157,null], + [18159,24.5], + [18161,25.1], + [18163,null], + [18165,null], + [18167,20.5], + [18169,20.8], + [18171,null], + [18173,null], + [18175,null], + [18177,20.2], + [18179,null], + [18181,null], + [18183,24], + [19001,25.1], + [19003,21.3], + [19005,null], + [19007,null], + [19009,null], + [19011,null], + [19013,16.2], + [19015,null], + [19017,null], + [19019,null], + [19021,14.2], + [19023,null], + [19025,19], + [19027,13.7], + [19029,null], + [19031,25.3], + [19033,16.9], + [19035,null], + [19037,null], + [19039,23.9], + [19041,16.9], + [19043,22.1], + [19045,19.8], + [19047,null], + [19049,21], + [19051,22.1], + [19053,null], + [19055,22.5], + [19057,16.8], + [19059,16.2], + [19061,16.7], + [19063,null], + [19065,19.1], + [19067,null], + [19069,null], + [19071,22.6], + [19073,19.1], + [19075,null], + [19077,27.5], + [19079,null], + [19081,null], + [19083,null], + [19085,27.7], + [19087,null], + [19089,19.2], + [19091,null], + [19093,19.7], + [19095,null], + [19097,24.4], + [19099,null], + [19101,14.7], + [19103,null], + [19105,null], + [19107,24.9], + [19109,14.8], + [19111,null], + [19113,null], + [19115,null], + [19117,21.6], + [19119,null], + [19121,null], + [19123,null], + [19125,null], + [19127,18.2], + [19129,24.1], + [19131,null], + [19133,null], + [19135,null], + [19137,19.1], + [19139,17.4], + [19141,16.1], + [19143,19.6], + [19145,null], + [19147,null], + [19149,18.2], + [19151,null], + [19153,19.5], + [19155,null], + [19157,null], + [19159,null], + [19161,null], + [19163,null], + [19165,null], + [19167,12.9], + [19169,18], + [19171,null], + [19173,22.8], + [19175,17.3], + [19177,22.6], + [19179,18.3], + [19181,null], + [19183,21.7], + [19185,23], + [19187,null], + [19189,16.9], + [19191,null], + [19193,null], + [19195,null], + [19197,null], + [20001,17.8], + [20003,26.1], + [20005,null], + [20007,null], + [20009,16.4], + [20011,18.7], + [20013,null], + [20015,24], + [20017,21.2], + [20019,21.2], + [20021,null], + [20023,12.2], + [20025,15.2], + [20027,null], + [20029,null], + [20031,21.9], + [20033,null], + [20035,null], + [20037,null], + [20039,null], + [20041,null], + [20043,null], + [20045,null], + [20047,21.3], + [20049,29.2], + [20051,null], + [20053,null], + [20055,null], + [20057,null], + [20059,null], + [20061,17], + [20063,14.1], + [20065,null], + [20067,null], + [20069,16.3], + [20071,null], + [20073,null], + [20075,16.6], + [20077,16.7], + [20079,null], + [20081,16.6], + [20083,null], + [20085,25.2], + [20087,29.5], + [20089,null], + [20091,21], + [20093,13.6], + [20095,null], + [20097,null], + [20099,null], + [20101,null], + [20103,null], + [20105,null], + [20107,null], + [20109,16.2], + [20111,15.9], + [20113,13.8], + [20115,21.3], + [20117,null], + [20119,14.9], + [20121,null], + [20123,10.1], + [20125,16.7], + [20127,null], + [20129,19.3], + [20131,null], + [20133,null], + [20135,null], + [20137,null], + [20139,null], + [20141,null], + [20143,null], + [20145,12], + [20147,null], + [20149,null], + [20151,null], + [20153,null], + [20155,null], + [20157,null], + [20159,17.7], + [20161,14.7], + [20163,15.1], + [20165,null], + [20167,null], + [20169,null], + [20171,null], + [20173,19.3], + [20175,null], + [20177,null], + [20179,16], + [20181,null], + [20183,null], + [20185,null], + [20187,10.8], + [20189,null], + [20191,22.7], + [20193,11.9], + [20195,null], + [20197,null], + [20199,null], + [20201,null], + [20203,14.9], + [20205,null], + [20207,20.4], + [20209,null], + [21001,26.4], + [21003,25.3], + [21005,null], + [21007,23.1], + [21009,null], + [21011,null], + [21013,null], + [21015,24.2], + [21017,null], + [21019,22.4], + [21021,21], + [21023,null], + [21025,30.7], + [21027,32.6], + [21029,28.2], + [21031,null], + [21033,26.5], + [21035,null], + [21037,22.8], + [21039,null], + [21041,null], + [21043,null], + [21045,null], + [21047,null], + [21049,25.1], + [21051,null], + [21053,null], + [21055,null], + [21057,null], + [21059,20.2], + [21061,28.7], + [21063,null], + [21065,31.1], + [21067,null], + [21069,null], + [21071,null], + [21073,19.6], + [21075,null], + [21077,null], + [21079,null], + [21081,null], + [21083,22.9], + [21085,27.1], + [21087,null], + [21089,null], + [21091,null], + [21093,null], + [21095,23.5], + [21097,null], + [21099,null], + [21101,null], + [21103,null], + [21105,null], + [21107,21.8], + [21109,null], + [21111,22.5], + [21113,null], + [21115,null], + [21117,null], + [21119,31.5], + [21121,24.3], + [21123,null], + [21125,null], + [21127,null], + [21129,37.1], + [21131,null], + [21133,26.5], + [21135,null], + [21137,28.7], + [21139,23.1], + [21141,null], + [21143,null], + [21145,17.8], + [21147,29.3], + [21149,null], + [21151,23.7], + [21153,null], + [21155,null], + [21157,null], + [21159,null], + [21161,null], + [21163,31.7], + [21165,35.8], + [21167,null], + [21169,null], + [21171,null], + [21173,24.2], + [21175,null], + [21177,null], + [21179,26.2], + [21181,null], + [21183,25.2], + [21185,27.5], + [21187,null], + [21189,null], + [21191,null], + [21193,null], + [21195,25.9], + [21197,null], + [21199,null], + [21201,null], + [21203,null], + [21205,22.3], + [21207,19.8], + [21209,null], + [21211,26.5], + [21213,null], + [21215,null], + [21217,18.9], + [21219,25.9], + [21221,27.1], + [21223,null], + [21225,22.6], + [21227,20.8], + [21229,24.7], + [21231,null], + [21233,null], + [21235,null], + [21237,null], + [21239,null], + [22001,null], + [22003,null], + [22005,29.5], + [22007,30.9], + [22009,31], + [22011,null], + [22013,null], + [22015,null], + [22017,21.1], + [22019,null], + [22021,null], + [22023,null], + [22025,null], + [22027,27.7], + [22029,null], + [22031,27.3], + [22033,null], + [22035,null], + [22037,null], + [22039,27.7], + [22041,24.5], + [22043,null], + [22045,null], + [22047,26.3], + [22049,null], + [22051,null], + [22053,null], + [22055,null], + [22057,29.3], + [22059,null], + [22061,19.2], + [22063,null], + [22065,null], + [22067,null], + [22069,null], + [22071,24.2], + [22073,null], + [22075,null], + [22077,31.5], + [22079,null], + [22081,null], + [22083,null], + [22085,35.6], + [22087,null], + [22089,null], + [22091,37.9], + [22093,27.1], + [22095,null], + [22097,null], + [22099,28.5], + [22101,20.9], + [22103,null], + [22105,null], + [22107,null], + [22109,24.8], + [22111,30.4], + [22113,null], + [22115,null], + [22117,null], + [22119,27.7], + [22121,null], + [22123,24.6], + [22125,null], + [22127,null], + [23001,24.1], + [23003,18.1], + [23005,23.1], + [23007,null], + [23009,23.7], + [23011,null], + [23013,null], + [23015,null], + [23017,null], + [23019,null], + [23021,null], + [23023,null], + [23025,null], + [23027,27.4], + [23029,null], + [23031,27.9], + [24001,null], + [24003,31.4], + [24005,29.8], + [24009,null], + [24011,32.7], + [24013,36.2], + [24015,29.9], + [24017,null], + [24019,null], + [24021,35.4], + [24023,null], + [24025,32], + [24027,31.2], + [24029,null], + [24031,34.7], + [24033,37.3], + [24035,null], + [24037,null], + [24039,null], + [24041,28.1], + [24043,30.1], + [24045,null], + [24047,24.8], + [24510,31.4], + [25001,23.9], + [25003,19.8], + [25005,28.8], + [25007,12.6], + [25009,30.4], + [25011,null], + [25013,22.9], + [25015,23.6], + [25017,31.4], + [25019,12], + [25021,35], + [25023,33.8], + [25025,31.3], + [25027,29.7], + [26001,null], + [26003,25.3], + [26005,23.9], + [26007,null], + [26009,24.6], + [26011,28.2], + [26013,null], + [26015,27.9], + [26017,22.8], + [26019,null], + [26021,19.9], + [26023,null], + [26025,null], + [26027,null], + [26029,null], + [26031,26.4], + [26033,null], + [26035,27.3], + [26037,null], + [26039,22.3], + [26041,19.8], + [26043,null], + [26045,null], + [26047,19.5], + [26049,null], + [26051,29.3], + [26053,18.2], + [26055,null], + [26057,23.9], + [26059,25.3], + [26061,null], + [26063,null], + [26065,null], + [26067,26.7], + [26069,null], + [26071,null], + [26073,18.2], + [26075,23], + [26077,null], + [26079,null], + [26081,null], + [26083,null], + [26085,null], + [26087,34.8], + [26089,null], + [26091,27.2], + [26093,32.6], + [26095,13.3], + [26097,20.8], + [26099,27.9], + [26101,null], + [26103,17.9], + [26105,17.6], + [26107,23.1], + [26109,21.2], + [26111,null], + [26113,null], + [26115,25.4], + [26117,29.4], + [26119,null], + [26121,null], + [26123,null], + [26125,26.9], + [26127,null], + [26129,24.6], + [26131,24.9], + [26133,null], + [26135,null], + [26137,19.7], + [26139,20.5], + [26141,null], + [26143,24.9], + [26145,null], + [26147,null], + [26149,null], + [26151,null], + [26153,18.4], + [26155,27.1], + [26157,30.4], + [26159,23.7], + [26161,24.2], + [26163,25.4], + [26165,null], + [27001,null], + [27003,27.8], + [27005,22.5], + [27007,null], + [27009,null], + [27011,18.1], + [27013,null], + [27015,16], + [27017,23.4], + [27019,null], + [27021,null], + [27023,18.2], + [27025,null], + [27027,null], + [27029,26.6], + [27031,null], + [27033,null], + [27035,null], + [27037,24.9], + [27039,24.8], + [27041,null], + [27043,19.9], + [27045,27.5], + [27047,null], + [27049,24.4], + [27051,null], + [27053,23.7], + [27055,22.3], + [27057,null], + [27059,null], + [27061,23.3], + [27063,null], + [27065,31.2], + [27067,17.6], + [27069,null], + [27071,14.6], + [27073,null], + [27075,null], + [27077,null], + [27079,null], + [27081,null], + [27083,15.1], + [27085,23.9], + [27087,19], + [27089,24.5], + [27091,16.6], + [27093,null], + [27095,null], + [27097,null], + [27099,18.2], + [27101,19.9], + [27103,null], + [27105,null], + [27107,23], + [27109,17.9], + [27111,null], + [27113,14.2], + [27115,31.6], + [27117,20.9], + [27119,18.5], + [27121,19.5], + [27123,24.2], + [27125,null], + [27127,18], + [27129,19.4], + [27131,null], + [27133,19.5], + [27135,null], + [27137,20], + [27139,null], + [27141,null], + [27143,25.6], + [27145,21.1], + [27147,18], + [27149,null], + [27151,19.3], + [27153,null], + [27155,17.5], + [27157,null], + [27159,null], + [27161,21.2], + [27163,null], + [27165,19.9], + [27167,null], + [27169,null], + [27171,null], + [27173,18.4], + [28001,22.3], + [28003,null], + [28005,null], + [28007,null], + [28009,null], + [28011,18.7], + [28013,25.9], + [28015,null], + [28017,24.5], + [28019,null], + [28021,null], + [28023,null], + [28025,22.5], + [28027,null], + [28029,null], + [28031,28.8], + [28033,null], + [28035,21], + [28037,34.2], + [28039,null], + [28041,31.1], + [28043,null], + [28045,null], + [28047,null], + [28049,23.3], + [28051,null], + [28053,null], + [28055,null], + [28057,null], + [28059,null], + [28061,34.6], + [28063,null], + [28065,null], + [28067,21.7], + [28069,30.5], + [28071,19.5], + [28073,null], + [28075,null], + [28077,null], + [28079,29.4], + [28081,null], + [28083,null], + [28085,null], + [28087,null], + [28089,22.4], + [28091,null], + [28093,28.2], + [28095,24.3], + [28097,null], + [28099,25.6], + [28101,null], + [28103,null], + [28105,18.7], + [28107,null], + [28109,null], + [28111,32.6], + [28113,null], + [28115,25.2], + [28117,null], + [28119,27.8], + [28121,null], + [28123,26], + [28125,null], + [28127,32], + [28129,null], + [28131,null], + [28133,18.8], + [28135,null], + [28137,32.4], + [28139,null], + [28141,21.9], + [28143,22], + [28145,24.7], + [28147,34], + [28149,20.2], + [28151,null], + [28153,33.5], + [28155,null], + [28157,null], + [28159,null], + [28161,null], + [28163,26.1], + [29001,null], + [29003,24.1], + [29005,null], + [29007,22.5], + [29009,null], + [29011,null], + [29013,31.9], + [29015,28.9], + [29017,31.9], + [29019,18.3], + [29021,null], + [29023,18.2], + [29025,null], + [29027,23.4], + [29029,24], + [29031,null], + [29033,null], + [29035,null], + [29037,null], + [29039,null], + [29041,24.7], + [29043,null], + [29045,null], + [29047,null], + [29049,null], + [29051,null], + [29053,27.1], + [29055,27.1], + [29057,null], + [29059,null], + [29061,27.8], + [29063,null], + [29065,25], + [29067,null], + [29069,null], + [29071,28.5], + [29073,27.4], + [29075,23.5], + [29077,null], + [29079,null], + [29081,null], + [29083,25.8], + [29085,31.4], + [29087,null], + [29089,26], + [29091,19], + [29093,null], + [29095,23.7], + [29097,null], + [29099,31.2], + [29101,21.5], + [29103,null], + [29105,21.1], + [29107,null], + [29109,null], + [29111,null], + [29113,null], + [29115,20.7], + [29117,null], + [29119,null], + [29121,null], + [29123,null], + [29125,null], + [29127,null], + [29129,23.5], + [29131,27], + [29133,null], + [29135,null], + [29137,30], + [29139,null], + [29141,null], + [29143,null], + [29145,null], + [29147,null], + [29149,null], + [29151,null], + [29153,null], + [29155,null], + [29157,null], + [29159,19.1], + [29161,19.3], + [29163,null], + [29165,23.8], + [29167,null], + [29169,null], + [29171,null], + [29173,22], + [29175,21.5], + [29177,29.6], + [29179,null], + [29181,26.5], + [29183,25.8], + [29185,null], + [29186,28.4], + [29187,25.4], + [29189,24.4], + [29195,null], + [29197,null], + [29199,19.8], + [29201,null], + [29203,25.3], + [29205,21.1], + [29207,22.3], + [29209,null], + [29211,null], + [29213,null], + [29215,null], + [29217,18.1], + [29219,null], + [29221,null], + [29223,null], + [29225,null], + [29227,null], + [29229,27.2], + [29510,24.4], + [30001,15.8], + [30003,18.4], + [30005,15], + [30007,28.2], + [30009,25.7], + [30011,18.2], + [30013,null], + [30015,18.8], + [30017,12.5], + [30019,null], + [30021,16.9], + [30023,null], + [30025,null], + [30027,null], + [30029,19.6], + [30031,18.3], + [30033,null], + [30035,null], + [30037,null], + [30039,null], + [30041,12.3], + [30043,20.4], + [30045,null], + [30047,19.3], + [30049,16.8], + [30051,null], + [30053,null], + [30055,null], + [30057,null], + [30059,12.9], + [30061,null], + [30063,18.8], + [30065,27.2], + [30067,25.3], + [30069,null], + [30071,null], + [30073,14], + [30075,null], + [30077,null], + [30079,null], + [30081,23.9], + [30083,null], + [30085,null], + [30087,13.3], + [30089,20.5], + [30091,null], + [30093,null], + [30095,null], + [30097,22.2], + [30099,19.2], + [30101,null], + [30103,null], + [30105,14.8], + [30107,null], + [30109,19], + [30111,null], + [31001,null], + [31003,15.1], + [31005,22.8], + [31007,null], + [31009,null], + [31011,null], + [31013,null], + [31015,null], + [31017,12.3], + [31019,15.7], + [31021,null], + [31023,null], + [31025,null], + [31027,17], + [31029,null], + [31031,null], + [31033,13.7], + [31035,null], + [31037,null], + [31039,null], + [31041,null], + [31043,15.3], + [31045,12.6], + [31047,null], + [31049,17.6], + [31051,21.6], + [31053,null], + [31055,19.6], + [31057,null], + [31059,null], + [31061,null], + [31063,null], + [31065,13.3], + [31067,null], + [31069,null], + [31071,null], + [31073,null], + [31075,18.4], + [31077,null], + [31079,null], + [31081,18.6], + [31083,null], + [31085,null], + [31087,21.1], + [31089,13.3], + [31091,null], + [31093,null], + [31095,null], + [31097,null], + [31099,null], + [31101,null], + [31103,null], + [31105,null], + [31107,18.1], + [31109,null], + [31111,null], + [31113,null], + [31115,null], + [31117,null], + [31119,null], + [31121,null], + [31123,null], + [31125,null], + [31127,17.7], + [31129,17.6], + [31131,21.5], + [31133,21.9], + [31135,null], + [31137,14.3], + [31139,20.4], + [31141,null], + [31143,null], + [31145,null], + [31147,16.5], + [31149,null], + [31151,20.3], + [31153,null], + [31155,25.3], + [31157,null], + [31159,21.5], + [31161,17.9], + [31163,null], + [31165,21.6], + [31167,18.6], + [31169,null], + [31171,null], + [31173,16.2], + [31175,16.1], + [31177,22.5], + [31179,16.8], + [31181,null], + [31183,null], + [31185,null], + [32001,20.8], + [32003,25.2], + [32005,24.2], + [32007,30.2], + [32009,null], + [32011,27.2], + [32013,null], + [32015,null], + [32017,null], + [32019,null], + [32021,null], + [32023,25.9], + [32027,null], + [32029,null], + [32031,null], + [32033,null], + [32510,20.2], + [33001,25.8], + [33003,null], + [33005,23.2], + [33007,null], + [33009,null], + [33011,28.3], + [33013,null], + [33015,30.4], + [33017,null], + [33019,null], + [34001,24.9], + [34003,33.1], + [34005,30], + [34007,28.9], + [34009,22.8], + [34011,23.6], + [34013,34.9], + [34015,30.7], + [34017,36.4], + [34019,35], + [34021,28.3], + [34023,34.4], + [34025,35], + [34027,31.5], + [34029,31.2], + [34031,28.3], + [34033,null], + [34035,32.5], + [34037,37.8], + [34039,31.7], + [34041,36], + [35001,null], + [35003,12.9], + [35005,null], + [35006,23.7], + [35007,null], + [35009,15.6], + [35011,null], + [35013,null], + [35015,19.1], + [35017,17.1], + [35019,null], + [35021,null], + [35023,19.6], + [35025,null], + [35027,null], + [35028,null], + [35029,19.4], + [35031,22.3], + [35033,52.6], + [35035,null], + [35037,null], + [35039,28.9], + [35041,16.8], + [35043,28], + [35045,null], + [35047,21.1], + [35049,22.5], + [35051,null], + [35053,19.6], + [35055,20.4], + [35057,null], + [35059,19.5], + [35061,null], + [36001,20.9], + [36003,null], + [36005,45.4], + [36007,null], + [36009,null], + [36011,null], + [36013,null], + [36015,null], + [36017,null], + [36019,null], + [36021,26.3], + [36023,21.2], + [36025,null], + [36027,33], + [36029,21.5], + [36031,23], + [36033,null], + [36035,null], + [36037,null], + [36039,28.9], + [36041,22.9], + [36043,null], + [36045,null], + [36047,43], + [36049,null], + [36051,null], + [36053,null], + [36055,20.4], + [36057,24.8], + [36059,36.6], + [36061,32.2], + [36063,22.8], + [36065,19.8], + [36067,20], + [36069,null], + [36071,33.6], + [36073,25.7], + [36075,null], + [36077,22.9], + [36079,39.6], + [36081,44.4], + [36083,24.8], + [36085,45.2], + [36087,31.5], + [36089,null], + [36091,25.2], + [36093,null], + [36095,30.8], + [36097,26.3], + [36099,null], + [36101,null], + [36103,32.7], + [36105,30.6], + [36107,null], + [36109,null], + [36111,29], + [36113,null], + [36115,null], + [36117,24.7], + [36119,35.1], + [36121,null], + [36123,null], + [37001,24.2], + [37003,24.5], + [37005,null], + [37007,26.7], + [37009,null], + [37011,19.9], + [37013,null], + [37015,28], + [37017,null], + [37019,null], + [37021,null], + [37023,22.3], + [37025,28.2], + [37027,null], + [37029,null], + [37031,null], + [37033,31.6], + [37035,22.6], + [37037,null], + [37039,null], + [37041,null], + [37043,22.9], + [37045,24.7], + [37047,null], + [37049,null], + [37051,null], + [37053,null], + [37055,null], + [37057,null], + [37059,26.4], + [37061,null], + [37063,null], + [37065,22.8], + [37067,21.9], + [37069,33.3], + [37071,null], + [37073,36.6], + [37075,null], + [37077,28.9], + [37079,27], + [37081,null], + [37083,null], + [37085,null], + [37087,22.7], + [37089,null], + [37091,26.6], + [37093,null], + [37095,null], + [37097,null], + [37099,20.2], + [37101,null], + [37103,null], + [37105,null], + [37107,null], + [37109,null], + [37111,null], + [37113,null], + [37115,28.7], + [37117,null], + [37119,26.4], + [37121,null], + [37123,null], + [37125,24.9], + [37127,null], + [37129,null], + [37131,null], + [37133,20.6], + [37135,23.5], + [37137,28.1], + [37139,null], + [37141,null], + [37143,34.8], + [37145,30.4], + [37147,null], + [37149,null], + [37151,24], + [37153,23.8], + [37155,null], + [37157,null], + [37159,null], + [37161,25.6], + [37163,null], + [37165,23.2], + [37167,null], + [37169,null], + [37171,null], + [37173,19.3], + [37175,23.6], + [37177,null], + [37179,29.8], + [37181,null], + [37183,25.5], + [37185,null], + [37187,24.2], + [37189,20.5], + [37191,22.2], + [37193,25.3], + [37195,null], + [37197,null], + [37199,28.4], + [38001,null], + [38003,17.7], + [38005,null], + [38007,null], + [38009,null], + [38011,null], + [38013,null], + [38015,null], + [38017,null], + [38019,null], + [38021,null], + [38023,null], + [38025,null], + [38027,14.4], + [38029,null], + [38031,null], + [38033,null], + [38035,null], + [38037,null], + [38039,null], + [38041,null], + [38043,null], + [38045,17.4], + [38047,null], + [38049,24.5], + [38051,null], + [38053,18.4], + [38055,22.2], + [38057,null], + [38059,null], + [38061,20.6], + [38063,null], + [38065,28.6], + [38067,null], + [38069,null], + [38071,16.4], + [38073,null], + [38075,30.4], + [38077,18.6], + [38079,null], + [38081,null], + [38083,23.7], + [38085,18.3], + [38087,null], + [38089,null], + [38091,null], + [38093,15], + [38095,null], + [38097,null], + [38099,null], + [38101,18.6], + [38103,16.7], + [38105,null], + [39001,36.6], + [39003,null], + [39005,22.9], + [39007,25], + [39009,null], + [39011,null], + [39013,null], + [39015,35.2], + [39017,null], + [39019,null], + [39021,25.3], + [39023,22.5], + [39025,null], + [39027,null], + [39029,25.5], + [39031,24.4], + [39033,null], + [39035,24.3], + [39037,null], + [39039,null], + [39041,null], + [39043,null], + [39045,null], + [39047,26.5], + [39049,null], + [39051,null], + [39053,null], + [39055,null], + [39057,21.3], + [39059,24.3], + [39061,null], + [39063,17.3], + [39065,24.6], + [39067,null], + [39069,22.1], + [39071,null], + [39073,null], + [39075,21.6], + [39077,null], + [39079,26.3], + [39081,null], + [39083,26.8], + [39085,null], + [39087,null], + [39089,26.2], + [39091,22.1], + [39093,24.6], + [39095,null], + [39097,null], + [39099,null], + [39101,null], + [39103,null], + [39105,33.6], + [39107,null], + [39109,null], + [39111,33.3], + [39113,21.8], + [39115,34.9], + [39117,null], + [39119,null], + [39121,null], + [39123,null], + [39125,23.2], + [39127,30.9], + [39129,28.9], + [39131,29.4], + [39133,null], + [39135,null], + [39137,21.9], + [39139,null], + [39141,25.8], + [39143,19.7], + [39145,null], + [39147,null], + [39149,null], + [39151,null], + [39153,23.2], + [39155,null], + [39157,23.8], + [39159,25.7], + [39161,20.2], + [39163,null], + [39165,25.8], + [39167,null], + [39169,null], + [39171,18.5], + [39173,20.5], + [39175,21.6], + [40001,null], + [40003,null], + [40005,null], + [40007,null], + [40009,null], + [40011,null], + [40013,19.8], + [40015,24.3], + [40017,null], + [40019,19.7], + [40021,24.3], + [40023,null], + [40025,null], + [40027,null], + [40029,null], + [40031,17.3], + [40033,23.4], + [40035,21.7], + [40037,24.8], + [40039,null], + [40041,27.6], + [40043,null], + [40045,17.3], + [40047,18], + [40049,null], + [40051,26.2], + [40053,18.3], + [40055,null], + [40057,null], + [40059,null], + [40061,25.9], + [40063,null], + [40065,null], + [40067,27.3], + [40069,null], + [40071,17.6], + [40073,null], + [40075,24.3], + [40077,null], + [40079,null], + [40081,null], + [40083,null], + [40085,null], + [40087,27.9], + [40089,20.6], + [40091,28.4], + [40093,20.8], + [40095,24.1], + [40097,23.7], + [40099,null], + [40101,null], + [40103,null], + [40105,null], + [40107,null], + [40109,21.5], + [40111,27], + [40113,null], + [40115,null], + [40117,null], + [40119,null], + [40121,21], + [40123,null], + [40125,null], + [40127,29.3], + [40129,null], + [40131,null], + [40133,23.4], + [40135,25], + [40137,null], + [40139,null], + [40141,20.4], + [40143,null], + [40145,null], + [40147,18.9], + [40149,24.7], + [40151,13.7], + [40153,17.9], + [41001,null], + [41003,19.6], + [41005,29.2], + [41007,20.3], + [41009,33.9], + [41011,null], + [41013,27.9], + [41015,null], + [41017,null], + [41019,null], + [41021,null], + [41023,15.1], + [41025,14.6], + [41027,null], + [41029,null], + [41031,25.7], + [41033,null], + [41035,null], + [41037,null], + [41039,20.4], + [41041,18.8], + [41043,null], + [41045,18.5], + [41047,24.2], + [41049,null], + [41051,27], + [41053,null], + [41055,24.5], + [41057,19.9], + [41059,18.7], + [41061,null], + [41063,16.3], + [41065,18.2], + [41067,25.2], + [41069,null], + [41071,null], + [42001,null], + [42003,27.2], + [42005,null], + [42007,null], + [42009,null], + [42011,25.2], + [42013,null], + [42015,23.1], + [42017,30.8], + [42019,null], + [42021,24.4], + [42023,null], + [42025,null], + [42027,20.4], + [42029,28.6], + [42031,23.8], + [42033,null], + [42035,null], + [42037,null], + [42039,null], + [42041,22.5], + [42043,22], + [42045,29.7], + [42047,18.6], + [42049,null], + [42051,27.1], + [42053,null], + [42055,null], + [42057,32.8], + [42059,null], + [42061,null], + [42063,24], + [42065,null], + [42067,32.2], + [42069,21.7], + [42071,23.3], + [42073,23.5], + [42075,23], + [42077,24.8], + [42079,22.9], + [42081,null], + [42083,22.5], + [42085,null], + [42087,null], + [42089,39.4], + [42091,29.2], + [42093,null], + [42095,28], + [42097,null], + [42099,null], + [42101,33.6], + [42103,46.8], + [42105,null], + [42107,26.6], + [42109,23.4], + [42111,null], + [42113,null], + [42115,null], + [42117,null], + [42119,21.5], + [42121,null], + [42123,20], + [42125,26.7], + [42127,29.3], + [42129,null], + [42131,null], + [42133,27.4], + [44001,null], + [44003,25.9], + [44005,null], + [44007,25], + [44009,26.9], + [45001,28.1], + [45003,null], + [45005,28.6], + [45007,null], + [45009,26.6], + [45011,31.4], + [45013,22.7], + [45015,null], + [45017,null], + [45019,23.9], + [45021,23.2], + [45023,null], + [45025,null], + [45027,29.4], + [45029,32.1], + [45031,null], + [45033,23.2], + [45035,31], + [45037,null], + [45039,null], + [45041,null], + [45043,25.8], + [45045,23.1], + [45047,null], + [45049,31.7], + [45051,null], + [45053,null], + [45055,null], + [45057,null], + [45059,null], + [45061,null], + [45063,null], + [45065,null], + [45067,30.8], + [45069,25], + [45071,null], + [45073,null], + [45075,29.1], + [45077,null], + [45079,null], + [45081,null], + [45083,null], + [45085,null], + [45087,null], + [45089,31.1], + [45091,27.8], + [46003,17.5], + [46005,14.5], + [46007,null], + [46009,19], + [46011,15.2], + [46013,null], + [46015,13.2], + [46017,12.7], + [46019,null], + [46021,18], + [46023,12], + [46025,21.1], + [46027,15.9], + [46029,14.8], + [46031,null], + [46033,26.2], + [46035,12.1], + [46037,null], + [46039,24], + [46041,null], + [46043,null], + [46045,17.7], + [46047,null], + [46049,null], + [46051,13.8], + [46053,15.6], + [46055,15.1], + [46057,20.8], + [46059,null], + [46061,21.9], + [46063,22.6], + [46065,11.4], + [46067,18.9], + [46069,null], + [46071,null], + [46073,null], + [46075,null], + [46077,null], + [46079,17.5], + [46081,null], + [46083,null], + [46085,null], + [46087,26.2], + [46089,null], + [46091,null], + [46093,20.9], + [46095,null], + [46097,19.1], + [46099,17.9], + [46101,null], + [46102,17.9], + [46103,null], + [46105,13.7], + [46107,null], + [46109,18], + [46111,21.7], + [46115,15.5], + [46117,null], + [46119,12.7], + [46121,null], + [46123,null], + [46125,null], + [46127,null], + [46129,null], + [46135,15.6], + [46137,null], + [47001,null], + [47003,null], + [47005,null], + [47007,null], + [47009,null], + [47011,21.2], + [47013,30.8], + [47015,null], + [47017,26.8], + [47019,23.7], + [47021,null], + [47023,null], + [47025,null], + [47027,null], + [47029,null], + [47031,23.7], + [47033,24], + [47035,22.9], + [47037,24.9], + [47039,null], + [47041,null], + [47043,null], + [47045,20.4], + [47047,null], + [47049,24.4], + [47051,null], + [47053,null], + [47055,26.6], + [47057,null], + [47059,null], + [47061,28.8], + [47063,null], + [47065,21.8], + [47067,null], + [47069,30.1], + [47071,null], + [47073,26], + [47075,23.5], + [47077,null], + [47079,null], + [47081,null], + [47083,33.5], + [47085,33.6], + [47087,null], + [47089,null], + [47091,null], + [47093,null], + [47095,18.1], + [47097,25.3], + [47099,26.8], + [47101,null], + [47103,28.8], + [47105,22.7], + [47107,null], + [47109,null], + [47111,32.5], + [47113,19], + [47115,null], + [47117,30.2], + [47119,29.8], + [47121,null], + [47123,29], + [47125,25.9], + [47127,null], + [47129,null], + [47131,null], + [47133,null], + [47135,25.5], + [47137,null], + [47139,29.4], + [47141,null], + [47143,null], + [47145,null], + [47147,null], + [47149,null], + [47151,null], + [47153,null], + [47155,null], + [47157,22.8], + [47159,null], + [47161,null], + [47163,21.4], + [47165,null], + [47167,33.4], + [47169,null], + [47171,null], + [47173,null], + [47175,null], + [47177,null], + [47179,null], + [47181,null], + [47183,null], + [47185,24], + [47187,null], + [47189,30.8], + [48001,null], + [48003,null], + [48005,20.6], + [48007,null], + [48009,null], + [48011,null], + [48013,30.5], + [48015,29.1], + [48017,16.7], + [48019,null], + [48021,34], + [48023,null], + [48025,20.9], + [48027,null], + [48029,25.6], + [48031,27.7], + [48033,null], + [48035,null], + [48037,18.9], + [48039,null], + [48041,null], + [48043,14.9], + [48045,null], + [48047,null], + [48049,16.3], + [48051,null], + [48053,null], + [48055,32.4], + [48057,null], + [48059,27.8], + [48061,19.9], + [48063,null], + [48065,23.3], + [48067,24.3], + [48069,16.9], + [48071,29], + [48073,null], + [48075,null], + [48077,27.5], + [48079,null], + [48081,21.4], + [48083,null], + [48085,28.9], + [48087,null], + [48089,null], + [48091,null], + [48093,24.6], + [48095,23.5], + [48097,null], + [48099,null], + [48101,null], + [48103,null], + [48105,null], + [48107,null], + [48109,null], + [48111,null], + [48113,27.7], + [48115,16.9], + [48117,14.9], + [48119,null], + [48121,29], + [48123,null], + [48125,null], + [48127,null], + [48129,null], + [48131,null], + [48133,null], + [48135,null], + [48137,null], + [48139,null], + [48141,null], + [48143,null], + [48145,null], + [48147,31.7], + [48149,23.6], + [48151,20], + [48153,null], + [48155,null], + [48157,null], + [48159,null], + [48161,null], + [48163,null], + [48165,21.1], + [48167,null], + [48169,null], + [48171,null], + [48173,null], + [48175,32], + [48177,24.8], + [48179,18.9], + [48181,null], + [48183,20.2], + [48185,28.5], + [48187,null], + [48189,17.1], + [48191,null], + [48193,null], + [48195,null], + [48197,15.1], + [48199,null], + [48201,29.5], + [48203,22.5], + [48205,null], + [48207,null], + [48209,null], + [48211,16.3], + [48213,null], + [48215,22.5], + [48217,null], + [48219,null], + [48221,null], + [48223,null], + [48225,27.6], + [48227,18.8], + [48229,null], + [48231,null], + [48233,null], + [48235,null], + [48237,30.8], + [48239,27.8], + [48241,null], + [48243,20], + [48245,20.4], + [48247,null], + [48249,28.4], + [48251,null], + [48253,null], + [48255,null], + [48257,36.9], + [48259,null], + [48261,null], + [48263,null], + [48265,20.4], + [48267,null], + [48269,null], + [48271,null], + [48273,19.6], + [48275,null], + [48277,19.8], + [48279,null], + [48281,27.7], + [48283,27.1], + [48285,28.5], + [48287,null], + [48289,30], + [48291,null], + [48293,null], + [48295,20.1], + [48297,30.4], + [48299,31], + [48301,30.4], + [48303,null], + [48305,20], + [48307,null], + [48309,19.4], + [48311,null], + [48313,25], + [48315,null], + [48317,null], + [48319,null], + [48321,23.1], + [48323,null], + [48325,null], + [48327,null], + [48329,19.9], + [48331,null], + [48333,null], + [48335,22], + [48337,null], + [48339,null], + [48341,null], + [48343,25], + [48345,null], + [48347,null], + [48349,null], + [48351,null], + [48353,17.4], + [48355,null], + [48357,16.4], + [48359,null], + [48361,24.2], + [48363,null], + [48365,null], + [48367,31.8], + [48369,null], + [48371,null], + [48373,null], + [48375,18.5], + [48377,17.6], + [48379,null], + [48381,null], + [48383,null], + [48385,null], + [48387,28.8], + [48389,18.4], + [48391,null], + [48393,null], + [48395,null], + [48397,34.4], + [48399,null], + [48401,26.8], + [48403,28.2], + [48405,null], + [48407,null], + [48409,null], + [48411,null], + [48413,null], + [48415,15.9], + [48417,21.5], + [48419,25.5], + [48421,22.7], + [48423,24.4], + [48425,null], + [48427,27], + [48429,null], + [48431,null], + [48433,null], + [48435,null], + [48437,null], + [48439,27.4], + [48441,16.7], + [48443,null], + [48445,null], + [48447,null], + [48449,18.8], + [48451,null], + [48453,25.6], + [48455,null], + [48457,31.9], + [48459,null], + [48461,null], + [48463,19], + [48465,null], + [48467,null], + [48469,19.8], + [48471,27.5], + [48473,29.9], + [48475,null], + [48477,null], + [48479,null], + [48481,23.6], + [48483,21.2], + [48485,null], + [48487,null], + [48489,null], + [48491,28.4], + [48493,35.9], + [48495,18.8], + [48497,null], + [48499,null], + [48501,21], + [48503,16.3], + [48505,null], + [48507,null], + [49001,null], + [49003,23.4], + [49005,null], + [49007,null], + [49009,null], + [49011,23.1], + [49013,20.1], + [49015,19.4], + [49017,15.8], + [49019,null], + [49021,null], + [49023,24], + [49025,null], + [49027,17.1], + [49029,null], + [49031,null], + [49033,null], + [49035,22.4], + [49037,null], + [49039,null], + [49041,null], + [49043,null], + [49045,28.8], + [49047,19.5], + [49049,21.9], + [49051,null], + [49053,null], + [49055,null], + [49057,22.6], + [50001,null], + [50003,null], + [50005,25.6], + [50007,null], + [50009,27.7], + [50011,null], + [50013,null], + [50015,null], + [50017,null], + [50019,null], + [50021,null], + [50023,null], + [50025,null], + [50027,null], + [51001,null], + [51003,null], + [51005,25.6], + [51007,39.9], + [51009,null], + [51011,29.5], + [51013,29.2], + [51015,null], + [51017,null], + [51019,null], + [51021,null], + [51023,28], + [51025,null], + [51027,null], + [51029,36.3], + [51031,24.5], + [51033,null], + [51035,null], + [51036,33.8], + [51037,32.8], + [51041,26.6], + [51043,null], + [51045,null], + [51047,null], + [51049,null], + [51051,null], + [51053,null], + [51057,35.7], + [51059,32.3], + [51061,41], + [51063,null], + [51065,null], + [51067,30.6], + [51069,32.3], + [51071,null], + [51073,33.8], + [51075,null], + [51077,26.1], + [51079,29.8], + [51081,null], + [51083,null], + [51085,25.9], + [51087,22.6], + [51089,23.3], + [51091,null], + [51093,30.2], + [51095,null], + [51097,null], + [51099,null], + [51101,null], + [51103,null], + [51105,null], + [51107,34.5], + [51109,null], + [51111,30.3], + [51113,28.9], + [51115,null], + [51117,25.7], + [51119,null], + [51121,18.9], + [51125,30.6], + [51127,null], + [51131,null], + [51133,null], + [51135,null], + [51137,null], + [51139,null], + [51141,30.3], + [51143,25.5], + [51145,33.1], + [51147,null], + [51149,null], + [51153,40], + [51155,null], + [51157,null], + [51159,null], + [51161,23.6], + [51163,null], + [51165,null], + [51167,null], + [51169,null], + [51171,null], + [51173,21.9], + [51175,null], + [51177,38.3], + [51179,40.5], + [51181,41.3], + [51183,null], + [51185,25.1], + [51187,null], + [51191,25.5], + [51193,42.6], + [51195,22.3], + [51197,null], + [51199,null], + [51510,31.9], + [51520,19.9], + [51530,null], + [51540,null], + [51550,null], + [51570,null], + [51580,null], + [51590,null], + [51595,null], + [51600,31.5], + [51610,29.1], + [51620,null], + [51630,30], + [51640,null], + [51650,null], + [51660,null], + [51670,24.5], + [51678,null], + [51680,null], + [51683,36.5], + [51685,null], + [51690,null], + [51700,23.3], + [51710,null], + [51720,null], + [51730,null], + [51735,null], + [51740,null], + [51750,17.5], + [51760,21.8], + [51770,null], + [51775,20.6], + [51790,21.6], + [51800,29.5], + [51810,23.6], + [51820,null], + [51830,19.1], + [51840,null], + [53001,null], + [53003,null], + [53005,null], + [53007,19.2], + [53009,null], + [53011,27.3], + [53013,null], + [53015,25.7], + [53017,19.2], + [53019,24.8], + [53021,21.5], + [53023,null], + [53025,null], + [53027,null], + [53029,28.4], + [53031,24.5], + [53033,29.9], + [53035,30.6], + [53037,null], + [53039,21.9], + [53041,null], + [53043,null], + [53045,33.1], + [53047,null], + [53049,null], + [53051,null], + [53053,32.8], + [53055,null], + [53057,26], + [53059,29.9], + [53061,32.6], + [53063,null], + [53065,null], + [53067,null], + [53069,37.2], + [53071,16], + [53073,null], + [53075,16.1], + [53077,null], + [54001,null], + [54003,null], + [54005,33.2], + [54007,29.1], + [54009,null], + [54011,null], + [54013,null], + [54015,null], + [54017,35.5], + [54019,30.6], + [54021,null], + [54023,null], + [54025,null], + [54027,null], + [54029,null], + [54031,null], + [54033,null], + [54035,null], + [54037,38], + [54039,null], + [54041,29.7], + [54043,null], + [54045,null], + [54047,null], + [54049,null], + [54051,null], + [54053,28.5], + [54055,null], + [54057,27.9], + [54059,null], + [54061,null], + [54063,33.4], + [54065,null], + [54067,30.9], + [54069,19.9], + [54071,null], + [54073,null], + [54075,null], + [54077,30.7], + [54079,null], + [54081,23.9], + [54083,null], + [54085,null], + [54087,31.4], + [54089,null], + [54091,null], + [54093,null], + [54095,27.6], + [54097,null], + [54099,null], + [54101,29.1], + [54103,null], + [54105,null], + [54107,20], + [54109,null], + [55001,null], + [55003,16.6], + [55005,20.7], + [55007,22.9], + [55009,18.9], + [55011,25.2], + [55013,28.9], + [55015,null], + [55017,null], + [55019,null], + [55021,26.7], + [55023,22.2], + [55025,21.1], + [55027,null], + [55029,null], + [55031,22.1], + [55033,22.7], + [55035,18.1], + [55037,null], + [55039,null], + [55041,20.1], + [55043,null], + [55045,null], + [55047,null], + [55049,null], + [55051,null], + [55053,null], + [55055,null], + [55057,null], + [55059,26.3], + [55061,23.7], + [55063,null], + [55065,25.4], + [55067,20.2], + [55069,null], + [55071,19.3], + [55073,null], + [55075,null], + [55077,30.9], + [55078,null], + [55079,22.5], + [55081,19.9], + [55083,26.6], + [55085,20.1], + [55087,19.9], + [55089,23.7], + [55091,null], + [55093,26.4], + [55095,null], + [55097,null], + [55099,20.3], + [55101,24.4], + [55103,26], + [55105,22.9], + [55107,23.9], + [55109,27.3], + [55111,null], + [55113,21.1], + [55115,null], + [55117,null], + [55119,22.8], + [55121,null], + [55123,null], + [55125,null], + [55127,24.3], + [55129,null], + [55131,null], + [55133,24], + [55135,null], + [55137,null], + [55139,null], + [55141,null], + [56001,12.7], + [56003,null], + [56005,21.3], + [56007,null], + [56009,26.3], + [56011,26.3], + [56013,17.7], + [56015,17.3], + [56017,null], + [56019,null], + [56021,null], + [56023,null], + [56025,17], + [56027,null], + [56029,null], + [56031,null], + [56033,null], + [56035,null], + [56037,null], + [56039,15.8], + [56041,22.6], + [56043,12.2], + [56045,24] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2007.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2007.json new file mode 100644 index 0000000..c7b47b1 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2007"], + [1001,806], + [1003,2560], + [1005,650], + [1007,359], + [1009,849], + [1011,345], + [1013,560], + [1015,2152], + [1017,1005], + [1019,500], + [1021,670], + [1023,308], + [1025,628], + [1027,338], + [1029,237], + [1031,802], + [1033,1170], + [1035,319], + [1037,271], + [1039,661], + [1041,282], + [1043,1320], + [1045,800], + [1047,1296], + [1049,1324], + [1051,1185], + [1053,758], + [1055,2028], + [1057,348], + [1059,634], + [1061,398], + [1063,209], + [1065,374], + [1067,405], + [1069,1572], + [1071,1221], + [1073,12136], + [1075,366], + [1077,1868], + [1079,647], + [1081,2377], + [1083,1217], + [1085,358], + [1087,480], + [1089,5068], + [1091,432], + [1093,677], + [1095,1421], + [1097,7394], + [1099,576], + [1101,4358], + [1103,1988], + [1105,299], + [1107,402], + [1109,628], + [1111,482], + [1113,1320], + [1115,1227], + [1117,2604], + [1119,312], + [1121,2024], + [1123,971], + [1125,2928], + [1127,1256], + [1129,416], + [1131,332], + [1133,575], + [2013,87], + [2016,168], + [2020,7715], + [2050,889], + [2060,50], + [2068,100], + [2070,187], + [2090,2527], + [2100,107], + [2105,"NA"], + [2110,833], + [2122,2026], + [2130,465], + [2150,385], + [2158,"NA"], + [2164,64], + [2170,2866], + [2180,422], + [2185,252], + [2188,322], + [2195,"NA"], + [2198,"NA"], + [2220,237], + [2230,"NA"], + [2240,309], + [2261,441], + [2275,"NA"], + [2282,21], + [2290,381], + [4001,1773], + [4003,2337], + [4005,2643], + [4007,910], + [4009,614], + [4011,130], + [4012,393], + [4013,63383], + [4015,4266], + [4017,2461], + [4019,16933], + [4021,5092], + [4023,1269], + [4025,3610], + [4027,11085], + [5001,1046], + [5003,771], + [5005,961], + [5007,3939], + [5009,860], + [5011,353], + [5013,177], + [5015,605], + [5017,412], + [5019,618], + [5021,626], + [5023,710], + [5025,238], + [5027,720], + [5029,490], + [5031,2302], + [5033,1395], + [5035,1461], + [5037,624], + [5039,273], + [5041,610], + [5043,631], + [5045,2419], + [5047,385], + [5049,257], + [5051,2347], + [5053,425], + [5055,1215], + [5057,646], + [5059,823], + [5061,351], + [5063,1072], + [5065,320], + [5067,594], + [5069,2663], + [5071,551], + [5073,235], + [5075,506], + [5077,340], + [5079,395], + [5081,272], + [5083,527], + [5085,1383], + [5087,317], + [5089,381], + [5091,882], + [5093,1572], + [5095,261], + [5097,225], + [5099,248], + [5101,178], + [5103,876], + [5105,234], + [5107,657], + [5109,296], + [5111,791], + [5113,437], + [5115,1439], + [5117,254], + [5119,9045], + [5121,710], + [5123,1015], + [5125,2050], + [5127,225], + [5129,177], + [5131,3209], + [5133,321], + [5135,433], + [5137,273], + [5139,1332], + [5141,418], + [5143,4042], + [5145,2106], + [5147,308], + [5149,456], + [6001,35054], + [6003,39], + [6005,1028], + [6007,6739], + [6009,1331], + [6011,1202], + [6013,24097], + [6015,830], + [6017,4675], + [6019,35790], + [6021,1054], + [6023,3507], + [6025,11915], + [6027,438], + [6029,28228], + [6031,4974], + [6033,2031], + [6035,1014], + [6037,249384], + [6039,4745], + [6041,4821], + [6043,546], + [6045,2371], + [6047,10046], + [6049,314], + [6051,391], + [6053,14679], + [6055,2946], + [6057,2406], + [6059,62474], + [6061,8231], + [6063,849], + [6065,54429], + [6067,36725], + [6069,1736], + [6071,48324], + [6073,69004], + [6075,18365], + [6077,23359], + [6079,5750], + [6081,14088], + [6083,9310], + [6085,39560], + [6087,8555], + [6089,6190], + [6091,128], + [6093,1594], + [6095,10982], + [6097,11173], + [6099,19687], + [6101,3965], + [6103,1798], + [6105,525], + [6107,17713], + [6109,1599], + [6111,20666], + [6113,5590], + [6115,2532], + [8001,9254], + [8003,330], + [8005,11416], + [8007,250], + [8009,60], + [8011,117], + [8013,5694], + [8014,1056], + [8015,293], + [8017,34], + [8019,207], + [8021,202], + [8023,92], + [8025,121], + [8027,79], + [8029,541], + [8031,13031], + [8033,51], + [8035,4827], + [8037,876], + [8039,471], + [8041,12636], + [8043,926], + [8045,857], + [8047,119], + [8049,238], + [8051,268], + [8053,17], + [8055,159], + [8057,28], + [8059,11070], + [8061,24], + [8063,120], + [8065,144], + [8067,864], + [8069,5800], + [8071,314], + [8073,92], + [8075,346], + [8077,2461], + [8079,20], + [8081,261], + [8083,508], + [8085,741], + [8087,475], + [8089,439], + [8091,89], + [8093,346], + [8095,66], + [8097,304], + [8099,234], + [8101,3377], + [8103,110], + [8105,259], + [8107,407], + [8109,165], + [8111,23], + [8113,175], + [8115,40], + [8117,466], + [8119,479], + [8121,77], + [8123,4773], + [8125,143], + [9001,18344], + [9003,22003], + [9005,4402], + [9007,3614], + [9009,21976], + [9011,6159], + [9013,3225], + [9015,3321], + [10001,2521], + [10003,9631], + [10005,3109], + [11001,17811], + [12001,3908], + [12003,436], + [12005,3222], + [12007,424], + [12009,11683], + [12011,35944], + [12013,205], + [12015,3607], + [12017,2844], + [12019,3329], + [12021,6742], + [12023,1132], + [12027,708], + [12029,245], + [12031,18540], + [12033,5596], + [12035,2041], + [12037,159], + [12039,917], + [12041,295], + [12043,230], + [12045,242], + [12047,216], + [12049,545], + [12051,1354], + [12053,3622], + [12055,1965], + [12057,24705], + [12059,314], + [12061,3568], + [12063,859], + [12065,230], + [12067,88], + [12069,5582], + [12071,13816], + [12073,4564], + [12075,721], + [12077,104], + [12079,428], + [12081,6169], + [12083,6396], + [12085,2883], + [12086,37869], + [12087,1225], + [12089,1197], + [12091,2975], + [12093,929], + [12095,22815], + [12097,5738], + [12099,27841], + [12101,9692], + [12103,18712], + [12105,12278], + [12107,1525], + [12109,3045], + [12111,7185], + [12113,2588], + [12115,7825], + [12117,8715], + [12119,1119], + [12121,643], + [12123,383], + [12125,163], + [12127,10595], + [12129,459], + [12131,872], + [12133,393], + [13001,480], + [13003,192], + [13005,227], + [13007,83], + [13009,1155], + [13011,318], + [13013,1416], + [13015,2245], + [13017,543], + [13019,382], + [13021,3836], + [13023,280], + [13025,339], + [13027,360], + [13029,569], + [13031,1399], + [13033,771], + [13035,523], + [13037,143], + [13039,867], + [13043,195], + [13045,2552], + [13047,1276], + [13049,218], + [13051,5286], + [13053,161], + [13055,643], + [13057,3968], + [13059,2487], + [13061,82], + [13063,7762], + [13065,147], + [13067,15247], + [13069,975], + [13071,913], + [13073,2265], + [13075,403], + [13077,2365], + [13079,287], + [13081,614], + [13083,356], + [13085,410], + [13087,707], + [13089,18902], + [13091,473], + [13093,259], + [13095,2347], + [13097,3014], + [13099,297], + [13101,69], + [13103,941], + [13105,559], + [13107,558], + [13109,214], + [13111,412], + [13113,2050], + [13115,2341], + [13117,2782], + [13119,510], + [13121,23482], + [13123,506], + [13125,57], + [13127,1461], + [13129,1260], + [13131,493], + [13133,397], + [13135,16699], + [13137,802], + [13139,3254], + [13141,277], + [13143,602], + [13145,574], + [13147,702], + [13149,244], + [13151,4204], + [13153,2636], + [13155,259], + [13157,1115], + [13159,309], + [13161,357], + [13163,504], + [13165,295], + [13167,218], + [13169,594], + [13171,397], + [13173,150], + [13175,1126], + [13177,642], + [13179,1263], + [13181,221], + [13183,218], + [13185,2064], + [13187,542], + [13189,668], + [13191,220], + [13193,370], + [13195,589], + [13197,156], + [13199,560], + [13201,157], + [13205,534], + [13207,553], + [13209,212], + [13211,412], + [13213,957], + [13215,4454], + [13217,2430], + [13219,535], + [13221,297], + [13223,2679], + [13225,628], + [13227,568], + [13229,337], + [13231,342], + [13233,932], + [13235,184], + [13237,454], + [13239,57], + [13241,425], + [13243,177], + [13245,5545], + [13247,2016], + [13249,108], + [13251,351], + [13253,217], + [13255,1597], + [13257,657], + [13259,143], + [13261,1048], + [13263,202], + [13265,67], + [13267,436], + [13269,196], + [13271,386], + [13273,264], + [13275,942], + [13277,1007], + [13279,655], + [13281,222], + [13283,157], + [13285,1727], + [13287,327], + [13289,262], + [13291,413], + [13293,767], + [13295,1467], + [13297,1877], + [13299,737], + [13301,184], + [13303,470], + [13305,652], + [13307,56], + [13309,152], + [13311,462], + [13313,2141], + [13315,193], + [13317,303], + [13319,247], + [13321,544], + [15001,3012], + [15003,11666], + [15005,"NA"], + [15007,882], + [15009,2300], + [16001,5240], + [16003,115], + [16005,1228], + [16007,73], + [16009,250], + [16011,590], + [16013,321], + [16015,123], + [16017,800], + [16019,1117], + [16021,285], + [16023,34], + [16025,16], + [16027,3084], + [16029,111], + [16031,342], + [16033,13], + [16035,241], + [16037,80], + [16039,440], + [16041,125], + [16043,191], + [16045,272], + [16047,193], + [16049,362], + [16051,274], + [16053,281], + [16055,2327], + [16057,469], + [16059,173], + [16061,45], + [16063,89], + [16065,356], + [16067,392], + [16069,574], + [16071,42], + [16073,86], + [16075,444], + [16077,151], + [16079,312], + [16081,86], + [16083,1047], + [16085,209], + [16087,198], + [17001,1531], + [17003,268], + [17005,451], + [17007,1750], + [17009,95], + [17011,943], + [17013,174], + [17015,438], + [17017,329], + [17019,4393], + [17021,895], + [17023,495], + [17025,385], + [17027,906], + [17029,1215], + [17031,137535], + [17033,531], + [17035,293], + [17037,2544], + [17039,413], + [17041,447], + [17043,20468], + [17045,542], + [17047,168], + [17049,760], + [17051,646], + [17053,362], + [17055,1422], + [17057,942], + [17059,164], + [17061,356], + [17063,1475], + [17065,240], + [17067,536], + [17069,138], + [17071,215], + [17073,1327], + [17075,836], + [17077,1514], + [17079,266], + [17081,1047], + [17083,637], + [17085,553], + [17087,332], + [17089,12089], + [17091,3496], + [17093,2408], + [17095,1280], + [17097,17788], + [17099,3517], + [17101,402], + [17103,937], + [17105,871], + [17107,646], + [17109,729], + [17111,7779], + [17113,3373], + [17115,3053], + [17117,1469], + [17119,7521], + [17121,1198], + [17123,318], + [17125,482], + [17127,428], + [17129,307], + [17131,482], + [17133,782], + [17135,892], + [17137,881], + [17139,295], + [17141,1545], + [17143,4474], + [17145,824], + [17147,342], + [17149,397], + [17151,137], + [17153,208], + [17155,186], + [17157,814], + [17159,365], + [17161,3603], + [17163,7612], + [17165,810], + [17167,4787], + [17169,178], + [17171,142], + [17173,538], + [17175,152], + [17177,1293], + [17179,3097], + [17181,574], + [17183,2318], + [17185,350], + [17187,410], + [17189,388], + [17191,396], + [17193,409], + [17195,1629], + [17197,17292], + [17199,2326], + [17201,8867], + [17203,736], + [18001,682], + [18003,8606], + [18005,1388], + [18007,191], + [18009,378], + [18011,965], + [18013,334], + [18015,403], + [18017,915], + [18019,2392], + [18021,746], + [18023,756], + [18025,318], + [18027,463], + [18029,1315], + [18031,558], + [18033,1134], + [18035,2917], + [18037,680], + [18039,4645], + [18041,756], + [18043,1574], + [18045,363], + [18047,650], + [18049,501], + [18051,765], + [18053,1949], + [18055,810], + [18057,4123], + [18059,1348], + [18061,872], + [18063,2370], + [18065,1300], + [18067,2065], + [18069,949], + [18071,856], + [18073,736], + [18075,504], + [18077,838], + [18079,701], + [18081,2558], + [18083,790], + [18085,1813], + [18087,832], + [18089,11692], + [18091,2662], + [18093,1437], + [18095,3839], + [18097,20828], + [18099,1102], + [18101,200], + [18103,933], + [18105,2560], + [18107,742], + [18109,1537], + [18111,366], + [18113,1258], + [18115,149], + [18117,537], + [18119,551], + [18121,399], + [18123,431], + [18125,258], + [18127,3183], + [18129,568], + [18131,282], + [18133,937], + [18135,714], + [18137,631], + [18139,428], + [18141,6492], + [18143,580], + [18145,1025], + [18147,435], + [18149,618], + [18151,988], + [18153,492], + [18155,221], + [18157,3219], + [18159,359], + [18161,170], + [18163,4261], + [18165,443], + [18167,2654], + [18169,820], + [18171,160], + [18173,1185], + [18175,734], + [18177,1816], + [18179,609], + [18181,542], + [18183,793], + [19001,154], + [19003,87], + [19005,388], + [19007,407], + [19009,128], + [19011,555], + [19013,2708], + [19015,505], + [19017,430], + [19019,460], + [19021,328], + [19023,331], + [19025,170], + [19027,321], + [19029,314], + [19031,352], + [19033,1001], + [19035,239], + [19037,272], + [19039,200], + [19041,303], + [19043,469], + [19045,1021], + [19047,306], + [19049,929], + [19051,184], + [19053,170], + [19055,382], + [19057,930], + [19059,380], + [19061,2066], + [19063,218], + [19065,478], + [19067,389], + [19069,209], + [19071,159], + [19073,176], + [19075,216], + [19077,223], + [19079,276], + [19081,227], + [19083,343], + [19085,325], + [19087,483], + [19089,191], + [19091,160], + [19093,134], + [19095,317], + [19097,520], + [19099,1133], + [19101,343], + [19103,2097], + [19105,432], + [19107,235], + [19109,322], + [19111,991], + [19113,4327], + [19115,235], + [19117,184], + [19119,160], + [19121,341], + [19123,425], + [19125,636], + [19127,825], + [19129,299], + [19131,185], + [19133,251], + [19135,172], + [19137,345], + [19139,809], + [19141,233], + [19143,111], + [19145,384], + [19147,183], + [19149,439], + [19151,131], + [19153,8270], + [19155,2044], + [19157,420], + [19159,102], + [19161,199], + [19163,3317], + [19165,244], + [19167,489], + [19169,1331], + [19171,389], + [19173,136], + [19175,268], + [19177,168], + [19179,816], + [19181,831], + [19183,407], + [19185,145], + [19187,785], + [19189,199], + [19191,452], + [19193,2127], + [19195,169], + [19197,274], + [20001,303], + [20003,195], + [20005,405], + [20007,84], + [20009,518], + [20011,392], + [20013,227], + [20015,1339], + [20017,64], + [20019,84], + [20021,543], + [20023,50], + [20025,37], + [20027,170], + [20029,199], + [20031,230], + [20033,33], + [20035,725], + [20037,986], + [20039,52], + [20041,412], + [20043,218], + [20045,2418], + [20047,56], + [20049,82], + [20051,477], + [20053,124], + [20055,612], + [20057,526], + [20059,702], + [20061,524], + [20063,45], + [20065,46], + [20067,112], + [20069,84], + [20071,23], + [20073,166], + [20075,43], + [20077,103], + [20079,668], + [20081,62], + [20083,36], + [20085,384], + [20087,479], + [20089,55], + [20091,12142], + [20093,69], + [20095,145], + [20097,70], + [20099,561], + [20101,38], + [20103,1771], + [20105,71], + [20107,306], + [20109,50], + [20111,807], + [20113,581], + [20115,245], + [20117,191], + [20119,67], + [20121,772], + [20123,118], + [20125,857], + [20127,144], + [20129,46], + [20131,172], + [20133,382], + [20135,51], + [20137,87], + [20139,466], + [20141,84], + [20143,124], + [20145,124], + [20147,97], + [20149,376], + [20151,177], + [20153,44], + [20155,1372], + [20157,88], + [20159,216], + [20161,1235], + [20163,98], + [20165,61], + [20167,127], + [20169,1075], + [20171,72], + [20173,10602], + [20175,353], + [20177,4236], + [20179,43], + [20181,104], + [20183,69], + [20185,78], + [20187,33], + [20189,74], + [20191,521], + [20193,125], + [20195,56], + [20197,146], + [20199,26], + [20201,113], + [20203,37], + [20205,205], + [20207,86], + [20209,5433], + [21001,519], + [21003,481], + [21005,549], + [21007,233], + [21009,1008], + [21011,379], + [21013,760], + [21015,2712], + [21017,472], + [21019,1178], + [21021,767], + [21023,254], + [21025,394], + [21027,547], + [21029,2197], + [21031,355], + [21033,351], + [21035,955], + [21037,2216], + [21039,137], + [21041,309], + [21043,958], + [21045,404], + [21047,1863], + [21049,837], + [21051,741], + [21053,243], + [21055,231], + [21057,205], + [21059,2279], + [21061,337], + [21063,228], + [21065,394], + [21067,6038], + [21069,417], + [21071,978], + [21073,1131], + [21075,202], + [21077,209], + [21079,432], + [21081,692], + [21083,998], + [21085,911], + [21087,346], + [21089,950], + [21091,215], + [21093,2411], + [21095,910], + [21097,450], + [21099,433], + [21101,1138], + [21103,414], + [21105,138], + [21107,1379], + [21109,591], + [21111,18800], + [21113,1012], + [21115,591], + [21117,4002], + [21119,427], + [21121,846], + [21123,352], + [21125,1408], + [21127,453], + [21129,185], + [21131,310], + [21133,649], + [21135,424], + [21137,691], + [21139,262], + [21141,661], + [21143,209], + [21145,1537], + [21147,526], + [21149,266], + [21151,2012], + [21153,450], + [21155,528], + [21157,851], + [21159,270], + [21161,405], + [21163,699], + [21165,224], + [21167,547], + [21169,246], + [21171,330], + [21173,709], + [21175,432], + [21177,1077], + [21179,1228], + [21181,189], + [21183,628], + [21185,1309], + [21187,265], + [21189,145], + [21191,427], + [21193,797], + [21195,1477], + [21197,374], + [21199,1601], + [21201,51], + [21203,477], + [21205,651], + [21207,499], + [21209,972], + [21211,997], + [21213,472], + [21215,532], + [21217,733], + [21219,327], + [21221,366], + [21223,268], + [21225,393], + [21227,2496], + [21229,301], + [21231,561], + [21233,382], + [21235,954], + [21237,225], + [21239,513], + [22001,988], + [22003,501], + [22005,1941], + [22007,488], + [22009,825], + [22011,701], + [22013,360], + [22015,2171], + [22017,6167], + [22019,3734], + [22021,218], + [22023,130], + [22025,241], + [22027,370], + [22029,444], + [22031,656], + [22033,8837], + [22035,299], + [22037,383], + [22039,626], + [22041,521], + [22043,404], + [22045,1275], + [22047,722], + [22049,282], + [22051,7963], + [22053,506], + [22055,3287], + [22057,1427], + [22059,238], + [22061,934], + [22063,2167], + [22065,300], + [22067,946], + [22069,898], + [22071,5458], + [22073,3612], + [22075,353], + [22077,447], + [22079,2517], + [22081,229], + [22083,548], + [22085,423], + [22087,421], + [22089,998], + [22091,317], + [22093,597], + [22095,1125], + [22097,1729], + [22099,874], + [22101,999], + [22103,3736], + [22105,2411], + [22107,166], + [22109,1651], + [22111,519], + [22113,930], + [22115,979], + [22117,927], + [22119,1030], + [22121,437], + [22123,426], + [22125,267], + [22127,321], + [23001,2671], + [23003,2207], + [23005,5404], + [23007,857], + [23009,1607], + [23011,2875], + [23013,916], + [23015,763], + [23017,1660], + [23019,4025], + [23021,557], + [23023,735], + [23025,1721], + [23027,1025], + [23029,1111], + [23031,4539], + [24001,1778], + [24003,8380], + [24005,15058], + [24009,1336], + [24011,670], + [24013,2749], + [24015,1934], + [24017,2195], + [24019,961], + [24021,3549], + [24023,728], + [24025,4386], + [24027,4017], + [24029,390], + [24031,13368], + [24033,15971], + [24035,806], + [24037,1498], + [24039,595], + [24041,633], + [24043,2954], + [24045,2024], + [24047,1600], + [24510,15165], + [25001,5955], + [25003,3282], + [25005,17238], + [25007,402], + [25009,18242], + [25011,1669], + [25013,12771], + [25015,3421], + [25017,30707], + [25019,204], + [25021,14171], + [25023,12750], + [25025,16752], + [25027,20341], + [26001,442], + [26003,371], + [26005,3576], + [26007,1256], + [26009,959], + [26011,775], + [26013,547], + [26015,1666], + [26017,3774], + [26019,724], + [26021,5537], + [26023,1653], + [26025,4867], + [26027,1554], + [26029,1240], + [26031,1294], + [26033,1555], + [26035,1413], + [26037,2083], + [26039,535], + [26041,1546], + [26043,877], + [26045,3109], + [26047,1797], + [26049,17473], + [26051,1083], + [26053,596], + [26055,3251], + [26057,1732], + [26059,1915], + [26061,1278], + [26063,1337], + [26065,9566], + [26067,2305], + [26069,1093], + [26071,442], + [26073,2038], + [26075,5934], + [26077,7230], + [26079,705], + [26081,19197], + [26083,116], + [26085,428], + [26087,3528], + [26089,624], + [26091,3953], + [26093,5028], + [26095,253], + [26097,651], + [26099,29594], + [26101,1019], + [26103,2258], + [26105,1168], + [26107,1523], + [26109,768], + [26111,2394], + [26113,558], + [26115,5227], + [26117,3144], + [26119,553], + [26121,6515], + [26123,1829], + [26125,36277], + [26127,1215], + [26129,819], + [26131,288], + [26133,797], + [26135,424], + [26137,1145], + [26139,7759], + [26141,775], + [26143,1029], + [26145,7006], + [26147,7072], + [26149,2026], + [26151,1984], + [26153,433], + [26155,2989], + [26157,2433], + [26159,2823], + [26161,9216], + [26163,72949], + [26165,1265], + [27001,525], + [27003,8608], + [27005,963], + [27007,1277], + [27009,1144], + [27011,133], + [27013,1364], + [27015,710], + [27017,976], + [27019,1959], + [27021,1016], + [27023,303], + [27025,1590], + [27027,1079], + [27029,397], + [27031,151], + [27033,252], + [27035,1826], + [27037,9316], + [27039,476], + [27041,885], + [27043,407], + [27045,567], + [27047,806], + [27049,1235], + [27051,178], + [27053,26686], + [27055,556], + [27057,585], + [27059,1292], + [27061,1613], + [27063,252], + [27065,654], + [27067,1004], + [27069,142], + [27071,454], + [27073,168], + [27075,275], + [27077,116], + [27079,872], + [27081,146], + [27083,552], + [27085,1023], + [27087,164], + [27089,413], + [27091,495], + [27093,734], + [27095,939], + [27097,1065], + [27099,823], + [27101,230], + [27103,699], + [27105,386], + [27107,181], + [27109,3020], + [27111,1549], + [27113,589], + [27115,1049], + [27117,198], + [27119,765], + [27121,271], + [27123,11917], + [27125,186], + [27127,390], + [27129,445], + [27131,1593], + [27133,156], + [27135,615], + [27137,5747], + [27139,2956], + [27141,2439], + [27143,438], + [27145,3797], + [27147,878], + [27149,210], + [27151,277], + [27153,663], + [27155,95], + [27157,543], + [27159,466], + [27161,487], + [27163,5106], + [27165,276], + [27167,132], + [27169,1192], + [27171,3340], + [27173,243], + [28001,852], + [28003,1057], + [28005,324], + [28007,554], + [28009,272], + [28011,1250], + [28013,490], + [28015,316], + [28017,739], + [28019,261], + [28021,391], + [28023,518], + [28025,1175], + [28027,928], + [28029,895], + [28031,470], + [28033,2997], + [28035,1840], + [28037,217], + [28039,644], + [28041,372], + [28043,693], + [28045,951], + [28047,4566], + [28049,6480], + [28051,769], + [28053,382], + [28055,54], + [28057,711], + [28059,3246], + [28061,455], + [28063,364], + [28065,367], + [28067,1428], + [28069,319], + [28071,1043], + [28073,1005], + [28075,2111], + [28077,385], + [28079,516], + [28081,2293], + [28083,1098], + [28085,910], + [28087,1946], + [28089,2119], + [28091,646], + [28093,1143], + [28095,1515], + [28097,409], + [28099,704], + [28101,534], + [28103,500], + [28105,1302], + [28107,1186], + [28109,1271], + [28111,346], + [28113,1016], + [28115,850], + [28117,830], + [28119,310], + [28121,2874], + [28123,647], + [28125,210], + [28127,633], + [28129,362], + [28131,432], + [28133,1039], + [28135,463], + [28137,706], + [28139,651], + [28141,632], + [28143,345], + [28145,722], + [28147,368], + [28149,1348], + [28151,1849], + [28153,556], + [28155,276], + [28157,303], + [28159,529], + [28161,408], + [28163,769], + [29001,649], + [29003,402], + [29005,140], + [29007,605], + [29009,865], + [29011,496], + [29013,481], + [29015,497], + [29017,312], + [29019,3250], + [29021,2148], + [29023,1405], + [29025,239], + [29027,1007], + [29029,1075], + [29031,1674], + [29033,264], + [29035,183], + [29037,2490], + [29039,369], + [29041,219], + [29043,1545], + [29045,199], + [29047,5030], + [29049,537], + [29051,1565], + [29053,412], + [29055,856], + [29057,199], + [29059,396], + [29061,181], + [29063,273], + [29065,447], + [29067,347], + [29069,1145], + [29071,2930], + [29073,448], + [29075,139], + [29077,5668], + [29079,232], + [29081,207], + [29083,613], + [29085,256], + [29087,136], + [29089,229], + [29091,923], + [29093,287], + [29095,19712], + [29097,2549], + [29099,6010], + [29101,1217], + [29103,89], + [29105,981], + [29107,849], + [29109,780], + [29111,225], + [29113,1495], + [29115,412], + [29117,315], + [29119,476], + [29121,401], + [29123,345], + [29125,248], + [29127,765], + [29129,74], + [29131,702], + [29133,386], + [29135,346], + [29137,249], + [29139,334], + [29141,576], + [29143,614], + [29145,1315], + [29147,471], + [29149,236], + [29151,348], + [29153,230], + [29155,536], + [29157,410], + [29159,1096], + [29161,1086], + [29163,447], + [29165,1919], + [29167,689], + [29169,969], + [29171,138], + [29173,274], + [29175,704], + [29177,611], + [29179,181], + [29181,443], + [29183,7875], + [29185,276], + [29186,464], + [29187,1713], + [29189,26117], + [29195,591], + [29197,124], + [29199,120], + [29201,1165], + [29203,255], + [29205,166], + [29207,994], + [29209,1052], + [29211,203], + [29213,1858], + [29215,626], + [29217,493], + [29219,872], + [29221,827], + [29223,394], + [29225,816], + [29227,53], + [29229,484], + [29510,11169], + [30001,141], + [30003,338], + [30005,109], + [30007,77], + [30009,153], + [30011,21], + [30013,1378], + [30015,79], + [30017,193], + [30019,21], + [30021,120], + [30023,186], + [30025,35], + [30027,232], + [30029,1807], + [30031,1324], + [30033,19], + [30035,466], + [30037,22], + [30039,61], + [30041,333], + [30043,183], + [30045,39], + [30047,635], + [30049,1011], + [30051,23], + [30053,584], + [30055,22], + [30057,127], + [30059,51], + [30061,93], + [30063,2027], + [30065,109], + [30067,320], + [30069,12], + [30071,86], + [30073,108], + [30075,29], + [30077,141], + [30079,19], + [30081,835], + [30083,131], + [30085,241], + [30087,204], + [30089,309], + [30091,47], + [30093,633], + [30095,142], + [30097,54], + [30099,95], + [30101,62], + [30103,13], + [30105,126], + [30107,35], + [30109,14], + [30111,2203], + [31001,471], + [31003,103], + [31005,9], + [31007,8], + [31009,9], + [31011,77], + [31013,180], + [31015,32], + [31017,48], + [31019,628], + [31021,156], + [31023,122], + [31025,459], + [31027,116], + [31029,49], + [31031,76], + [31033,126], + [31035,86], + [31037,124], + [31039,135], + [31041,128], + [31043,438], + [31045,131], + [31047,376], + [31049,30], + [31051,104], + [31053,632], + [31055,9147], + [31057,26], + [31059,80], + [31061,50], + [31063,38], + [31065,74], + [31067,448], + [31069,25], + [31071,26], + [31073,33], + [31075,10], + [31077,34], + [31079,859], + [31081,125], + [31083,47], + [31085,16], + [31087,39], + [31089,155], + [31091,13], + [31093,102], + [31095,125], + [31097,84], + [31099,84], + [31101,118], + [31103,14], + [31105,55], + [31107,139], + [31109,4396], + [31111,574], + [31113,13], + [31115,14], + [31117,6], + [31119,594], + [31121,120], + [31123,73], + [31125,50], + [31127,134], + [31129,59], + [31131,268], + [31133,47], + [31135,38], + [31137,116], + [31139,118], + [31141,448], + [31143,83], + [31145,149], + [31147,175], + [31149,23], + [31151,221], + [31153,2241], + [31155,339], + [31157,576], + [31159,243], + [31161,83], + [31163,51], + [31165,20], + [31167,105], + [31169,76], + [31171,14], + [31173,195], + [31175,61], + [31177,320], + [31179,135], + [31181,59], + [31183,12], + [31185,208], + [32001,567], + [32003,42756], + [32005,1096], + [32007,865], + [32009,15], + [32011,34], + [32013,284], + [32015,109], + [32017,72], + [32019,1426], + [32021,139], + [32023,1157], + [32027,124], + [32029,118], + [32031,9526], + [32033,173], + [32510,1363], + [33001,1156], + [33003,876], + [33005,1491], + [33007,770], + [33009,1426], + [33011,8085], + [33013,2661], + [33015,6565], + [33017,2226], + [33019,673], + [34001,7927], + [34003,16249], + [34005,9123], + [34007,12692], + [34009,3707], + [34011,4455], + [34013,19326], + [34015,6638], + [34017,14476], + [34019,2053], + [34021,7525], + [34023,16219], + [34025,12393], + [34027,8224], + [34029,11700], + [34031,12653], + [34033,1550], + [34035,5557], + [34037,3305], + [34039,11990], + [34041,2222], + [35001,11153], + [35003,73], + [35005,1045], + [35006,505], + [35007,232], + [35009,596], + [35011,30], + [35013,3616], + [35015,774], + [35017,468], + [35019,105], + [35021,11], + [35023,76], + [35025,687], + [35027,336], + [35028,228], + [35029,1248], + [35031,1242], + [35033,159], + [35035,989], + [35037,174], + [35039,965], + [35041,268], + [35043,2317], + [35045,1879], + [35047,558], + [35049,2346], + [35051,196], + [35053,300], + [35055,868], + [35057,329], + [35059,51], + [35061,1207], + [36001,6145], + [36003,1276], + [36005,34992], + [36007,4309], + [36009,2105], + [36011,1825], + [36013,2991], + [36015,1876], + [36017,1205], + [36019,2228], + [36021,1235], + [36023,1229], + [36025,1001], + [36027,5677], + [36029,21839], + [36031,1051], + [36033,1255], + [36035,1470], + [36037,1493], + [36039,1146], + [36041,151], + [36043,1518], + [36045,2627], + [36047,59125], + [36049,678], + [36051,1579], + [36053,1674], + [36055,16466], + [36057,1431], + [36059,25564], + [36061,39838], + [36063,5942], + [36065,4700], + [36067,9478], + [36069,2355], + [36071,7690], + [36073,1127], + [36075,3329], + [36077,1428], + [36079,1886], + [36081,49391], + [36083,3538], + [36085,10981], + [36087,5927], + [36089,2861], + [36091,4374], + [36093,3133], + [36095,909], + [36097,497], + [36099,756], + [36101,2348], + [36103,30399], + [36105,1836], + [36107,1227], + [36109,1866], + [36111,3930], + [36113,1618], + [36115,1343], + [36117,2247], + [36119,18141], + [36121,1049], + [36123,547], + [37001,3537], + [37003,952], + [37005,253], + [37007,755], + [37009,655], + [37011,387], + [37013,1191], + [37015,493], + [37017,966], + [37019,2174], + [37021,4232], + [37023,2385], + [37025,3651], + [37027,2714], + [37029,184], + [37031,1330], + [37033,713], + [37035,4201], + [37037,1235], + [37039,635], + [37041,436], + [37043,197], + [37045,2940], + [37047,1311], + [37049,1845], + [37051,6851], + [37053,396], + [37055,1102], + [37057,4410], + [37059,999], + [37061,1079], + [37063,5178], + [37065,1813], + [37067,7599], + [37069,1193], + [37071,5537], + [37073,213], + [37075,334], + [37077,1281], + [37079,498], + [37081,11655], + [37083,1562], + [37085,2322], + [37087,1105], + [37089,1695], + [37091,519], + [37093,969], + [37095,153], + [37097,3661], + [37099,804], + [37101,3078], + [37103,214], + [37105,1495], + [37107,1473], + [37109,1955], + [37111,1194], + [37113,680], + [37115,388], + [37117,636], + [37119,20681], + [37121,522], + [37123,751], + [37125,1694], + [37127,2458], + [37129,3927], + [37131,542], + [37133,2680], + [37135,2192], + [37137,239], + [37139,914], + [37141,996], + [37143,277], + [37145,1268], + [37147,4006], + [37149,331], + [37151,3484], + [37153,1539], + [37155,3501], + [37157,2746], + [37159,4237], + [37161,1943], + [37163,1310], + [37165,1449], + [37167,1490], + [37169,1042], + [37171,1869], + [37173,459], + [37175,493], + [37177,125], + [37179,3620], + [37181,1302], + [37183,15415], + [37185,485], + [37187,413], + [37189,838], + [37191,2375], + [37193,1697], + [37195,2551], + [37197,815], + [37199,468], + [38001,32], + [38003,189], + [38005,174], + [38007,13], + [38009,123], + [38011,36], + [38013,26], + [38015,1253], + [38017,2244], + [38019,63], + [38021,79], + [38023,30], + [38025,65], + [38027,71], + [38029,88], + [38031,58], + [38033,24], + [38035,1129], + [38037,43], + [38039,35], + [38041,46], + [38043,59], + [38045,69], + [38047,33], + [38049,136], + [38051,40], + [38053,90], + [38055,218], + [38057,197], + [38059,505], + [38061,171], + [38063,67], + [38065,48], + [38067,225], + [38069,86], + [38071,233], + [38073,96], + [38075,39], + [38077,300], + [38079,467], + [38081,81], + [38083,32], + [38085,82], + [38087,10], + [38089,346], + [38091,26], + [38093,339], + [38095,45], + [38097,141], + [38099,241], + [38101,879], + [38103,98], + [38105,248], + [39001,1041], + [39003,3290], + [39005,1654], + [39007,3470], + [39009,1864], + [39011,1204], + [39013,1840], + [39015,1413], + [39017,9747], + [39019,861], + [39021,1241], + [39023,4442], + [39025,5374], + [39027,1163], + [39029,3324], + [39031,1199], + [39033,1560], + [39035,37154], + [39037,1591], + [39039,1170], + [39041,3604], + [39043,2576], + [39045,3779], + [39047,811], + [39049,29286], + [39051,1468], + [39053,898], + [39055,2345], + [39057,4176], + [39059,1276], + [39061,22155], + [39063,1872], + [39065,943], + [39067,461], + [39069,1002], + [39071,1280], + [39073,908], + [39075,797], + [39077,2412], + [39079,1264], + [39081,2039], + [39083,1677], + [39085,6471], + [39087,1549], + [39089,4426], + [39091,1257], + [39093,9108], + [39095,15163], + [39097,1054], + [39099,7298], + [39101,1805], + [39103,4632], + [39105,828], + [39107,943], + [39109,2998], + [39111,455], + [39113,16775], + [39115,537], + [39117,1050], + [39119,3035], + [39121,431], + [39123,1569], + [39125,547], + [39127,1206], + [39129,1488], + [39131,1035], + [39133,4904], + [39135,1251], + [39137,876], + [39139,4056], + [39141,2414], + [39143,2063], + [39145,2400], + [39147,1785], + [39149,1367], + [39151,11184], + [39153,16049], + [39155,6635], + [39157,2581], + [39159,1102], + [39161,858], + [39163,463], + [39165,4973], + [39167,1717], + [39169,2905], + [39171,1195], + [39173,3709], + [39175,797], + [40001,516], + [40003,102], + [40005,321], + [40007,82], + [40009,281], + [40011,209], + [40013,724], + [40015,593], + [40017,1932], + [40019,873], + [40021,942], + [40023,363], + [40025,48], + [40027,4360], + [40029,155], + [40031,1949], + [40033,106], + [40035,341], + [40037,1358], + [40039,441], + [40041,841], + [40043,75], + [40045,59], + [40047,889], + [40049,475], + [40051,1001], + [40053,82], + [40055,98], + [40057,46], + [40059,53], + [40061,229], + [40063,297], + [40065,427], + [40067,116], + [40069,219], + [40071,964], + [40073,220], + [40075,174], + [40077,210], + [40079,1175], + [40081,585], + [40083,655], + [40085,158], + [40087,562], + [40089,886], + [40091,461], + [40093,110], + [40095,277], + [40097,787], + [40099,232], + [40101,1631], + [40103,200], + [40105,244], + [40107,231], + [40109,14310], + [40111,886], + [40113,843], + [40115,836], + [40117,334], + [40119,1395], + [40121,876], + [40123,719], + [40125,1365], + [40127,257], + [40129,51], + [40131,1518], + [40133,577], + [40135,1040], + [40137,785], + [40139,295], + [40141,161], + [40143,11227], + [40145,1240], + [40147,929], + [40149,180], + [40151,261], + [40153,316], + [41001,422], + [41003,1747], + [41005,8968], + [41007,929], + [41009,1354], + [41011,1855], + [41013,607], + [41015,621], + [41017,4050], + [41019,3614], + [41021,47], + [41023,276], + [41025,242], + [41027,581], + [41029,5723], + [41031,627], + [41033,2457], + [41035,2115], + [41037,264], + [41039,9403], + [41041,1238], + [41043,3386], + [41045,716], + [41047,8182], + [41049,290], + [41051,18475], + [41053,1890], + [41055,45], + [41057,612], + [41059,2123], + [41061,673], + [41063,221], + [41065,650], + [41067,12231], + [41069,34], + [41071,2328], + [42001,1864], + [42003,26233], + [42005,1642], + [42007,4029], + [42009,1330], + [42011,8621], + [42013,2729], + [42015,1459], + [42017,13226], + [42019,3893], + [42021,3633], + [42023,154], + [42025,1668], + [42027,2588], + [42029,8357], + [42031,967], + [42033,2229], + [42035,1004], + [42037,1777], + [42039,2113], + [42041,4020], + [42043,5314], + [42045,11526], + [42047,824], + [42049,6785], + [42051,3742], + [42053,157], + [42055,2738], + [42057,452], + [42059,905], + [42061,1143], + [42063,2127], + [42065,1067], + [42067,526], + [42069,5117], + [42071,9216], + [42073,2299], + [42075,2496], + [42077,7737], + [42079,7937], + [42081,2920], + [42083,1085], + [42085,3074], + [42087,1176], + [42089,4005], + [42091,14930], + [42093,355], + [42095,6700], + [42097,2404], + [42099,995], + [42101,37791], + [42103,1497], + [42105,560], + [42107,3686], + [42109,921], + [42111,2138], + [42113,138], + [42115,940], + [42117,1115], + [42119,930], + [42121,1282], + [42123,976], + [42125,4765], + [42127,1075], + [42129,8508], + [42131,759], + [42133,8568], + [44001,1244], + [44003,4890], + [44005,2061], + [44007,18411], + [44009,3166], + [45001,931], + [45003,4001], + [45005,366], + [45007,4908], + [45009,568], + [45011,822], + [45013,2789], + [45015,3718], + [45017,431], + [45019,7554], + [45021,1714], + [45023,1687], + [45025,1431], + [45027,1061], + [45029,1002], + [45031,2008], + [45033,1181], + [45035,2719], + [45037,694], + [45039,944], + [45041,3799], + [45043,1799], + [45045,10346], + [45047,2137], + [45049,525], + [45051,6528], + [45053,460], + [45055,1588], + [45057,2855], + [45059,2389], + [45061,661], + [45063,5393], + [45065,348], + [45067,1482], + [45069,1406], + [45071,1011], + [45073,2076], + [45075,3271], + [45077,2945], + [45079,9401], + [45081,484], + [45083,7579], + [45085,3134], + [45087,1046], + [45089,1373], + [45091,5644], + [46003,40], + [46005,231], + [46007,56], + [46009,117], + [46011,425], + [46013,490], + [46015,73], + [46017,54], + [46019,143], + [46021,26], + [46023,135], + [46025,66], + [46027,191], + [46029,444], + [46031,76], + [46033,130], + [46035,276], + [46037,137], + [46039,93], + [46041,241], + [46043,42], + [46045,52], + [46047,121], + [46049,35], + [46051,142], + [46053,76], + [46055,29], + [46057,84], + [46059,51], + [46061,59], + [46063,19], + [46065,238], + [46067,114], + [46069,24], + [46071,64], + [46073,33], + [46075,15], + [46077,84], + [46079,199], + [46081,341], + [46083,478], + [46085,85], + [46087,76], + [46089,47], + [46091,87], + [46093,352], + [46095,39], + [46097,42], + [46099,2490], + [46101,151], + [46102,"NA"], + [46103,1462], + [46105,48], + [46107,38], + [46109,196], + [46111,36], + [46115,107], + [46117,44], + [46119,22], + [46121,197], + [46123,87], + [46125,127], + [46127,246], + [46129,106], + [46135,315], + [46137,51], + [47001,1518], + [47003,1104], + [47005,427], + [47007,286], + [47009,2477], + [47011,2164], + [47013,908], + [47015,312], + [47017,872], + [47019,1443], + [47021,787], + [47023,416], + [47025,710], + [47027,280], + [47029,1042], + [47031,1180], + [47033,405], + [47035,1274], + [47037,12432], + [47039,323], + [47041,463], + [47043,972], + [47045,869], + [47047,1092], + [47049,494], + [47051,997], + [47053,1457], + [47055,838], + [47057,537], + [47059,2185], + [47061,355], + [47063,1436], + [47065,6666], + [47067,139], + [47069,760], + [47071,654], + [47073,1209], + [47075,690], + [47077,785], + [47079,878], + [47081,547], + [47083,212], + [47085,507], + [47087,340], + [47089,1250], + [47091,415], + [47093,7839], + [47095,159], + [47097,690], + [47099,1356], + [47101,396], + [47103,623], + [47105,905], + [47107,1376], + [47109,744], + [47111,631], + [47113,2417], + [47115,776], + [47117,983], + [47119,2879], + [47121,307], + [47123,1149], + [47125,3241], + [47127,132], + [47129,491], + [47131,871], + [47133,735], + [47135,241], + [47137,157], + [47139,359], + [47141,1614], + [47143,764], + [47145,1191], + [47147,1441], + [47149,4841], + [47151,615], + [47153,299], + [47155,2395], + [47157,22574], + [47159,489], + [47161,360], + [47163,2941], + [47165,3255], + [47167,1455], + [47169,209], + [47171,441], + [47173,391], + [47175,149], + [47177,1142], + [47179,2485], + [47181,491], + [47183,1023], + [47185,641], + [47187,3229], + [47189,2320], + [48001,1009], + [48003,213], + [48005,1720], + [48007,442], + [48009,161], + [48011,36], + [48013,760], + [48015,478], + [48017,140], + [48019,360], + [48021,1380], + [48023,76], + [48025,655], + [48027,5270], + [48029,30030], + [48031,155], + [48033,15], + [48035,346], + [48037,2011], + [48039,6011], + [48041,3162], + [48043,171], + [48045,30], + [48047,164], + [48049,752], + [48051,296], + [48053,748], + [48055,680], + [48057,408], + [48059,233], + [48061,8378], + [48063,250], + [48065,103], + [48067,693], + [48069,126], + [48071,637], + [48073,965], + [48075,145], + [48077,215], + [48079,73], + [48081,76], + [48083,151], + [48085,15028], + [48087,51], + [48089,372], + [48091,1868], + [48093,243], + [48095,65], + [48097,767], + [48099,1360], + [48101,33], + [48103,66], + [48105,60], + [48107,124], + [48109,47], + [48111,90], + [48113,51767], + [48115,262], + [48117,308], + [48119,108], + [48121,12968], + [48123,350], + [48125,45], + [48127,247], + [48129,78], + [48131,250], + [48133,348], + [48135,2225], + [48137,39], + [48139,2955], + [48141,16853], + [48143,641], + [48145,353], + [48147,684], + [48149,381], + [48151,77], + [48153,161], + [48155,25], + [48157,10116], + [48159,207], + [48161,357], + [48163,315], + [48165,236], + [48167,6287], + [48169,82], + [48171,356], + [48173,21], + [48175,129], + [48177,366], + [48179,374], + [48181,2520], + [48183,2345], + [48185,480], + [48187,2079], + [48189,750], + [48191,74], + [48193,140], + [48195,75], + [48197,83], + [48199,1178], + [48201,80209], + [48203,1411], + [48205,73], + [48207,107], + [48209,2706], + [48211,54], + [48213,1501], + [48215,17641], + [48217,710], + [48219,407], + [48221,968], + [48223,644], + [48225,457], + [48227,562], + [48229,76], + [48231,1717], + [48233,437], + [48235,27], + [48237,150], + [48239,248], + [48241,864], + [48243,39], + [48245,6076], + [48247,102], + [48249,830], + [48251,2948], + [48253,357], + [48255,287], + [48257,2098], + [48259,530], + [48261,7], + [48263,14], + [48265,774], + [48267,74], + [48269,8], + [48271,63], + [48273,653], + [48275,66], + [48277,1110], + [48279,277], + [48281,369], + [48283,133], + [48285,313], + [48287,305], + [48289,310], + [48291,1584], + [48293,431], + [48295,47], + [48297,193], + [48299,322], + [48301,3], + [48303,4838], + [48305,130], + [48307,141], + [48309,4622], + [48311,17], + [48313,229], + [48315,230], + [48317,76], + [48319,65], + [48321,972], + [48323,2250], + [48325,803], + [48327,37], + [48329,2020], + [48331,506], + [48333,83], + [48335,168], + [48337,358], + [48339,7748], + [48341,307], + [48343,314], + [48345,27], + [48347,1243], + [48349,1003], + [48351,368], + [48353,275], + [48355,6687], + [48357,136], + [48359,36], + [48361,2096], + [48363,506], + [48365,467], + [48367,2074], + [48369,136], + [48371,274], + [48373,962], + [48375,2148], + [48377,284], + [48379,215], + [48381,1949], + [48383,49], + [48385,53], + [48387,299], + [48389,211], + [48391,142], + [48393,13], + [48395,344], + [48397,1435], + [48399,192], + [48401,963], + [48403,271], + [48405,188], + [48407,512], + [48409,1408], + [48411,114], + [48413,49], + [48415,274], + [48417,53], + [48419,510], + [48421,46], + [48423,4011], + [48425,171], + [48427,2242], + [48429,156], + [48431,22], + [48433,28], + [48435,65], + [48437,148], + [48439,36823], + [48441,2239], + [48443,18], + [48445,260], + [48447,36], + [48449,530], + [48451,1889], + [48453,18943], + [48455,277], + [48457,437], + [48459,760], + [48461,50], + [48463,571], + [48465,1090], + [48467,977], + [48469,1523], + [48471,1210], + [48473,716], + [48475,178], + [48477,583], + [48479,4166], + [48481,850], + [48483,76], + [48485,2575], + [48487,257], + [48489,607], + [48491,7094], + [48493,734], + [48495,105], + [48497,1129], + [48499,800], + [48501,125], + [48503,305], + [48505,261], + [48507,391], + [49001,80], + [49003,626], + [49005,1244], + [49007,352], + [49009,18], + [49011,3636], + [49013,207], + [49015,172], + [49017,125], + [49019,238], + [49021,608], + [49023,129], + [49025,110], + [49027,155], + [49029,105], + [49031,21], + [49033,29], + [49035,13767], + [49037,258], + [49039,337], + [49041,259], + [49043,542], + [49045,757], + [49047,357], + [49049,5416], + [49051,273], + [49053,1744], + [49055,57], + [49057,3454], + [50001,831], + [50003,827], + [50005,747], + [50007,2975], + [50009,172], + [50011,1123], + [50013,229], + [50015,717], + [50017,615], + [50019,875], + [50021,1560], + [50023,1393], + [50025,1005], + [50027,1103], + [51001,772], + [51003,1149], + [51005,304], + [51007,181], + [51009,540], + [51011,272], + [51013,2527], + [51015,979], + [51017,93], + [51019,1124], + [51021,128], + [51023,459], + [51025,330], + [51027,422], + [51029,242], + [51031,933], + [51033,517], + [51035,785], + [51036,149], + [51037,280], + [51041,4350], + [51043,215], + [51045,95], + [51047,728], + [51049,147], + [51051,303], + [51053,442], + [51057,201], + [51059,12645], + [51061,925], + [51063,248], + [51065,326], + [51067,879], + [51069,1217], + [51071,366], + [51073,510], + [51075,266], + [51077,364], + [51079,222], + [51081,193], + [51083,981], + [51085,1350], + [51087,4494], + [51089,1416], + [51091,38], + [51093,532], + [51095,772], + [51097,116], + [51099,329], + [51101,229], + [51103,232], + [51105,399], + [51107,3439], + [51109,469], + [51111,250], + [51113,196], + [51115,113], + [51117,667], + [51119,151], + [51121,1419], + [51125,212], + [51127,256], + [51131,242], + [51133,258], + [51135,255], + [51137,493], + [51139,573], + [51141,367], + [51143,1770], + [51145,337], + [51147,416], + [51149,474], + [51153,4943], + [51155,976], + [51157,108], + [51159,152], + [51161,1234], + [51163,328], + [51165,1033], + [51167,607], + [51169,454], + [51171,637], + [51173,821], + [51175,276], + [51177,1639], + [51179,1687], + [51181,127], + [51183,200], + [51185,914], + [51187,592], + [51191,1214], + [51193,349], + [51195,687], + [51197,691], + [51199,769], + [51510,1992], + [51520,409], + [51530,121], + [51540,650], + [51550,3444], + [51570,299], + [51580,159], + [51590,1459], + [51595,151], + [51600,352], + [51610,205], + [51620,181], + [51630,557], + [51640,176], + [51650,2440], + [51660,662], + [51670,487], + [51678,109], + [51680,1260], + [51683,576], + [51685,167], + [51690,487], + [51700,3124], + [51710,4086], + [51720,64], + [51730,881], + [51735,144], + [51740,1945], + [51750,314], + [51760,4327], + [51770,1742], + [51775,395], + [51790,358], + [51800,1307], + [51810,6124], + [51820,348], + [51830,287], + [51840,460], + [53001,526], + [53003,531], + [53005,4705], + [53007,2232], + [53009,1966], + [53011,13193], + [53013,114], + [53015,3088], + [53017,1103], + [53019,264], + [53021,2255], + [53023,55], + [53025,2629], + [53027,2485], + [53029,1823], + [53031,728], + [53033,34024], + [53035,6061], + [53037,1095], + [53039,728], + [53041,2450], + [53043,275], + [53045,1646], + [53047,1448], + [53049,702], + [53051,416], + [53053,20617], + [53055,326], + [53057,3064], + [53059,377], + [53061,12791], + [53063,12436], + [53065,1486], + [53067,6276], + [53069,123], + [53071,1569], + [53073,4977], + [53075,865], + [53077,8412], + [54001,367], + [54003,1891], + [54005,446], + [54007,330], + [54009,650], + [54011,1861], + [54013,194], + [54015,245], + [54017,138], + [54019,987], + [54021,126], + [54023,278], + [54025,945], + [54027,350], + [54029,830], + [54031,304], + [54033,1310], + [54035,585], + [54037,812], + [54039,3684], + [54041,377], + [54043,436], + [54045,676], + [54047,515], + [54049,1113], + [54051,786], + [54053,714], + [54055,1043], + [54057,631], + [54059,501], + [54061,1490], + [54063,279], + [54065,334], + [54067,538], + [54069,889], + [54071,141], + [54073,181], + [54075,273], + [54077,641], + [54079,1022], + [54081,1455], + [54083,666], + [54085,237], + [54087,360], + [54089,285], + [54091,338], + [54093,182], + [54095,228], + [54097,477], + [54099,832], + [54101,191], + [54103,433], + [54105,148], + [54107,1922], + [54109,504], + [55001,666], + [55003,544], + [55005,1479], + [55007,539], + [55009,6391], + [55011,360], + [55013,556], + [55015,1215], + [55017,1821], + [55019,1018], + [55021,1572], + [55023,527], + [55025,10136], + [55027,2384], + [55029,921], + [55031,1160], + [55033,1168], + [55035,2402], + [55037,149], + [55039,2689], + [55041,359], + [55043,1357], + [55045,957], + [55047,571], + [55049,636], + [55051,246], + [55053,557], + [55055,2056], + [55057,803], + [55059,4336], + [55061,543], + [55063,2524], + [55065,386], + [55067,658], + [55069,880], + [55071,2437], + [55073,3320], + [55075,1395], + [55077,484], + [55078,172], + [55079,27239], + [55081,1110], + [55083,1267], + [55085,1200], + [55087,4510], + [55089,1832], + [55091,209], + [55093,1039], + [55095,1507], + [55097,1881], + [55099,421], + [55101,5889], + [55103,520], + [55105,4741], + [55107,534], + [55109,2326], + [55111,1655], + [55113,650], + [55115,1166], + [55117,2789], + [55119,600], + [55121,731], + [55123,740], + [55125,741], + [55127,2592], + [55129,541], + [55131,3182], + [55133,8662], + [55135,1500], + [55137,743], + [55139,4269], + [55141,2222], + [56001,448], + [56003,197], + [56005,525], + [56007,238], + [56009,196], + [56011,93], + [56013,672], + [56015,190], + [56017,78], + [56019,129], + [56021,1485], + [56023,224], + [56025,1038], + [56027,36], + [56029,443], + [56031,156], + [56033,443], + [56035,96], + [56037,528], + [56039,317], + [56041,295], + [56043,146], + [56045,100] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2008.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2008.json new file mode 100644 index 0000000..b6a58de --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2008.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2008"], + [1001,0.0513], + [1003,0.0463], + [1005,0.088], + [1007,0.0581], + [1009,0.0466], + [1011,0.1054], + [1013,0.0854], + [1015,0.0567], + [1017,0.1442], + [1019,0.0574], + [1021,0.0506], + [1023,0.0834], + [1025,0.09], + [1027,0.0792], + [1029,0.0506], + [1031,0.0485], + [1033,0.0651], + [1035,0.0937], + [1037,0.0826], + [1039,0.0593], + [1041,0.0555], + [1043,0.0488], + [1045,0.0541], + [1047,0.1108], + [1049,0.0582], + [1051,0.051], + [1053,0.0757], + [1055,0.0597], + [1057,0.0722], + [1059,0.0742], + [1061,0.0547], + [1063,0.0851], + [1065,0.0741], + [1067,0.0771], + [1069,0.0489], + [1071,0.0617], + [1073,0.054], + [1075,0.0799], + [1077,0.0575], + [1079,0.0649], + [1081,0.0521], + [1083,0.0471], + [1085,0.109], + [1087,0.0745], + [1089,0.0417], + [1091,0.0739], + [1093,0.0797], + [1095,0.0475], + [1097,0.0568], + [1099,0.1016], + [1101,0.0592], + [1103,0.0523], + [1105,0.113], + [1107,0.0714], + [1109,0.0488], + [1111,0.0733], + [1113,0.0799], + [1115,0.0502], + [1117,0.0374], + [1119,0.0875], + [1121,0.0721], + [1123,0.0717], + [1125,0.0472], + [1127,0.0572], + [1129,0.0844], + [1131,0.1396], + [1133,0.0865], + [2013,0.0865], + [2016,0.0582], + [2020,0.0544], + [2050,0.1389], + [2060,0.0486], + [2068,0.061], + [2070,0.0933], + [2090,0.0608], + [2100,0.0884], + [2105,null], + [2110,0.048], + [2122,0.0818], + [2130,0.0593], + [2150,0.0684], + [2158,null], + [2164,0.0686], + [2170,0.0761], + [2180,0.1037], + [2185,0.0424], + [2188,0.1157], + [2195,null], + [2198,null], + [2220,0.058], + [2230,null], + [2240,0.0883], + [2261,0.0842], + [2275,null], + [2282,0.075], + [2290,0.1411], + [4001,0.1163], + [4003,0.0586], + [4005,0.056], + [4007,0.0647], + [4009,0.0708], + [4011,0.0531], + [4012,0.0772], + [4013,0.0539], + [4015,0.0768], + [4017,0.1011], + [4019,0.0583], + [4021,0.0739], + [4023,0.1102], + [4025,0.0618], + [4027,0.1839], + [5001,0.098], + [5003,0.0761], + [5005,0.0604], + [5007,0.0415], + [5009,0.0547], + [5011,0.0724], + [5013,0.062], + [5015,0.0449], + [5017,0.0827], + [5019,0.0593], + [5021,0.0806], + [5023,0.0565], + [5025,0.0588], + [5027,0.0698], + [5029,0.0553], + [5031,0.0487], + [5033,0.0485], + [5035,0.0794], + [5037,0.0683], + [5039,0.0724], + [5041,0.0875], + [5043,0.079], + [5045,0.0476], + [5047,0.0446], + [5049,0.0522], + [5051,0.0564], + [5053,0.0522], + [5055,0.0657], + [5057,0.058], + [5059,0.066], + [5061,0.0555], + [5063,0.07], + [5065,0.0672], + [5067,0.0776], + [5069,0.0766], + [5071,0.0474], + [5073,0.0707], + [5075,0.0713], + [5077,0.0854], + [5079,0.0809], + [5081,0.0393], + [5083,0.0654], + [5085,0.0449], + [5087,0.0441], + [5089,0.0628], + [5091,0.0405], + [5093,0.0769], + [5095,0.064], + [5097,0.0566], + [5099,0.068], + [5101,0.0571], + [5103,0.064], + [5105,0.0562], + [5107,0.0717], + [5109,0.0605], + [5111,0.0642], + [5113,0.0516], + [5115,0.049], + [5117,0.0569], + [5119,0.0475], + [5121,0.0819], + [5123,0.0939], + [5125,0.0446], + [5127,0.0477], + [5129,0.0542], + [5131,0.0496], + [5133,0.0406], + [5135,0.0755], + [5137,0.0658], + [5139,0.0637], + [5141,0.0662], + [5143,0.0423], + [5145,0.0597], + [5147,0.0801], + [5149,0.0453], + [6001,0.0621], + [6003,0.1054], + [6005,0.0769], + [6007,0.0846], + [6009,0.0868], + [6011,0.1384], + [6013,0.0622], + [6015,0.0883], + [6017,0.07], + [6019,0.1056], + [6021,0.1049], + [6023,0.0729], + [6025,0.2255], + [6027,0.0661], + [6029,0.0984], + [6031,0.106], + [6033,0.1066], + [6035,0.0958], + [6037,0.0758], + [6039,0.0947], + [6041,0.0471], + [6043,0.0754], + [6045,0.069], + [6047,0.1264], + [6049,0.097], + [6051,0.0592], + [6053,0.0846], + [6055,0.0512], + [6057,0.0659], + [6059,0.0531], + [6061,0.0649], + [6063,0.1058], + [6065,0.0858], + [6067,0.0723], + [6069,0.0968], + [6071,0.0803], + [6073,0.0603], + [6075,0.0525], + [6077,0.1044], + [6079,0.0578], + [6081,0.0489], + [6083,0.0548], + [6085,0.0602], + [6087,0.0738], + [6089,0.1008], + [6091,0.1057], + [6093,0.1022], + [6095,0.069], + [6097,0.0577], + [6099,0.1109], + [6101,0.1237], + [6103,0.0923], + [6105,0.1282], + [6107,0.1083], + [6109,0.0801], + [6111,0.063], + [6113,0.0741], + [6115,0.1193], + [8001,0.054], + [8003,0.0523], + [8005,0.0489], + [8007,0.0506], + [8009,0.0339], + [8011,0.0623], + [8013,0.0415], + [8014,0.0452], + [8015,0.045], + [8017,0.027], + [8019,0.0458], + [8021,0.0729], + [8023,0.0773], + [8025,0.0736], + [8027,0.0507], + [8029,0.0438], + [8031,0.0538], + [8033,0.0721], + [8035,0.0418], + [8037,0.0357], + [8039,0.0479], + [8041,0.0566], + [8043,0.0634], + [8045,0.0311], + [8047,0.0421], + [8049,0.037], + [8051,0.0359], + [8053,0.0327], + [8055,0.064], + [8057,0.0323], + [8059,0.0469], + [8061,0.0365], + [8063,0.0336], + [8065,0.0458], + [8067,0.0361], + [8069,0.0423], + [8071,0.045], + [8073,0.037], + [8075,0.0387], + [8077,0.0389], + [8079,0.0547], + [8081,0.038], + [8083,0.0522], + [8085,0.05], + [8087,0.0425], + [8089,0.0593], + [8091,0.0368], + [8093,0.0476], + [8095,0.034], + [8097,0.033], + [8099,0.0449], + [8101,0.0608], + [8103,0.026], + [8105,0.0565], + [8107,0.0339], + [8109,0.072], + [8111,0.0563], + [8113,0.0388], + [8115,0.032], + [8117,0.0375], + [8119,0.055], + [8121,0.0324], + [8123,0.0523], + [8125,0.0267], + [9001,0.0515], + [9003,0.0604], + [9005,0.053], + [9007,0.0483], + [9009,0.0624], + [9011,0.0541], + [9013,0.0481], + [9015,0.0658], + [10001,0.0491], + [10003,0.0492], + [10005,0.0507], + [11001,0.0646], + [12001,0.0444], + [12003,0.0583], + [12005,0.0567], + [12007,0.0496], + [12009,0.0673], + [12011,0.0556], + [12013,0.0552], + [12015,0.0835], + [12017,0.0835], + [12019,0.0551], + [12021,0.0711], + [12023,0.0569], + [12027,0.069], + [12029,0.0757], + [12031,0.0635], + [12033,0.0617], + [12035,0.0991], + [12037,0.0488], + [12039,0.0627], + [12041,0.0581], + [12043,0.0706], + [12045,0.0645], + [12047,0.0731], + [12049,0.0685], + [12051,0.1108], + [12053,0.0884], + [12055,0.0738], + [12057,0.0654], + [12059,0.052], + [12061,0.0825], + [12063,0.0534], + [12065,0.0516], + [12067,0.0467], + [12069,0.066], + [12071,0.0835], + [12073,0.0465], + [12075,0.0725], + [12077,0.0436], + [12079,0.0717], + [12081,0.0717], + [12083,0.0806], + [12085,0.0715], + [12086,0.0482], + [12087,0.0416], + [12089,0.0555], + [12091,0.0474], + [12093,0.0837], + [12095,0.0604], + [12097,0.0651], + [12099,0.0676], + [12101,0.0766], + [12103,0.066], + [12105,0.0693], + [12107,0.0761], + [12109,0.0518], + [12111,0.0894], + [12113,0.0578], + [12115,0.0738], + [12117,0.0579], + [12119,0.0578], + [12121,0.0605], + [12123,0.0672], + [12125,0.0497], + [12127,0.0678], + [12129,0.0464], + [12131,0.0464], + [12133,0.0655], + [13001,0.0698], + [13003,0.0832], + [13005,0.0624], + [13007,0.0638], + [13009,0.0785], + [13011,0.0451], + [13013,0.0631], + [13015,0.0712], + [13017,0.1084], + [13019,0.0697], + [13021,0.0646], + [13023,0.0727], + [13025,0.064], + [13027,0.057], + [13029,0.0492], + [13031,0.0608], + [13033,0.0869], + [13035,0.0748], + [13037,0.0802], + [13039,0.0559], + [13043,0.0628], + [13045,0.0671], + [13047,0.0511], + [13049,0.0674], + [13051,0.0565], + [13053,0.122], + [13055,0.0981], + [13057,0.0527], + [13059,0.0509], + [13061,0.0724], + [13063,0.0759], + [13065,0.0718], + [13067,0.056], + [13069,0.0826], + [13071,0.06], + [13073,0.0475], + [13075,0.0774], + [13077,0.0571], + [13079,0.0602], + [13081,0.0769], + [13083,0.0567], + [13085,0.0588], + [13087,0.0763], + [13089,0.0638], + [13091,0.067], + [13093,0.0672], + [13095,0.0695], + [13097,0.0644], + [13099,0.0664], + [13101,0.0429], + [13103,0.0482], + [13105,0.0834], + [13107,0.0737], + [13109,0.0629], + [13111,0.0624], + [13113,0.0523], + [13115,0.0646], + [13117,0.0479], + [13119,0.0699], + [13121,0.0644], + [13123,0.0586], + [13125,0.0681], + [13127,0.0505], + [13129,0.0741], + [13131,0.0599], + [13133,0.0678], + [13135,0.0558], + [13137,0.0571], + [13139,0.054], + [13141,0.13], + [13143,0.0656], + [13145,0.0469], + [13147,0.0878], + [13149,0.0756], + [13151,0.0611], + [13153,0.0521], + [13155,0.0992], + [13157,0.0621], + [13159,0.0827], + [13161,0.0977], + [13163,0.0981], + [13165,0.1568], + [13167,0.0797], + [13169,0.0575], + [13171,0.0739], + [13173,0.058], + [13175,0.0709], + [13177,0.045], + [13179,0.0596], + [13181,0.0708], + [13183,0.0442], + [13185,0.0544], + [13187,0.0698], + [13189,0.0783], + [13191,0.0592], + [13193,0.0842], + [13195,0.0519], + [13197,0.0617], + [13199,0.0846], + [13201,0.0494], + [13205,0.0681], + [13207,0.0565], + [13209,0.073], + [13211,0.0597], + [13213,0.0738], + [13215,0.0617], + [13217,0.0751], + [13219,0.0405], + [13221,0.0518], + [13223,0.0594], + [13225,0.0706], + [13227,0.0595], + [13229,0.0537], + [13231,0.0657], + [13233,0.0633], + [13235,0.0532], + [13237,0.0705], + [13239,0.0863], + [13241,0.0635], + [13243,0.0842], + [13245,0.0715], + [13247,0.069], + [13249,0.0665], + [13251,0.0783], + [13253,0.0731], + [13255,0.0846], + [13257,0.0619], + [13259,0.078], + [13261,0.0766], + [13263,0.0658], + [13265,0.0814], + [13267,0.0662], + [13269,0.0746], + [13271,0.1074], + [13273,0.066], + [13275,0.0578], + [13277,0.0711], + [13279,0.0716], + [13281,0.0593], + [13283,0.0851], + [13285,0.0815], + [13287,0.081], + [13289,0.0692], + [13291,0.0584], + [13293,0.0827], + [13295,0.0659], + [13297,0.0639], + [13299,0.0659], + [13301,0.1024], + [13303,0.0787], + [13305,0.0769], + [13307,0.052], + [13309,0.0706], + [13311,0.0548], + [13313,0.0757], + [13315,0.0823], + [13317,0.0829], + [13319,0.0687], + [13321,0.0669], + [15001,0.06], + [15003,0.0385], + [15005,null], + [15007,0.0485], + [15009,0.0488], + [16001,0.0488], + [16003,0.1061], + [16005,0.0474], + [16007,0.0333], + [16009,0.101], + [16011,0.0403], + [16013,0.0393], + [16015,0.0597], + [16017,0.0663], + [16019,0.0359], + [16021,0.0878], + [16023,0.0431], + [16025,0.0444], + [16027,0.0649], + [16029,0.0369], + [16031,0.0393], + [16033,0.0352], + [16035,0.1097], + [16037,0.0459], + [16039,0.0568], + [16041,0.0337], + [16043,0.0496], + [16045,0.0715], + [16047,0.0346], + [16049,0.0761], + [16051,0.0383], + [16053,0.0426], + [16055,0.0582], + [16057,0.0423], + [16059,0.0685], + [16061,0.0391], + [16063,0.0564], + [16065,0.0359], + [16067,0.0458], + [16069,0.046], + [16071,0.0352], + [16073,0.0314], + [16075,0.0597], + [16077,0.0531], + [16079,0.0841], + [16081,0.0292], + [16083,0.0405], + [16085,0.0901], + [16087,0.0579], + [17001,0.0477], + [17003,0.0946], + [17005,0.0664], + [17007,0.0928], + [17009,0.0376], + [17011,0.0605], + [17013,0.0721], + [17015,0.0649], + [17017,0.0526], + [17019,0.0553], + [17021,0.065], + [17023,0.0787], + [17025,0.072], + [17027,0.061], + [17029,0.061], + [17031,0.0644], + [17033,0.0653], + [17035,0.0713], + [17037,0.0578], + [17039,0.059], + [17041,0.0584], + [17043,0.0497], + [17045,0.0688], + [17047,0.0633], + [17049,0.0547], + [17051,0.0781], + [17053,0.0607], + [17055,0.0919], + [17057,0.0654], + [17059,0.08], + [17061,0.0598], + [17063,0.072], + [17065,0.0682], + [17067,0.068], + [17069,0.0923], + [17071,0.0716], + [17073,0.0604], + [17075,0.0663], + [17077,0.0561], + [17079,0.0648], + [17081,0.0617], + [17083,0.0632], + [17085,0.0554], + [17087,0.0797], + [17089,0.0605], + [17091,0.0834], + [17093,0.0576], + [17095,0.0642], + [17097,0.0638], + [17099,0.0772], + [17101,0.0733], + [17103,0.0682], + [17105,0.0582], + [17107,0.0658], + [17109,0.0545], + [17111,0.0578], + [17113,0.0489], + [17115,0.068], + [17117,0.0738], + [17119,0.0644], + [17121,0.0824], + [17123,0.054], + [17125,0.0781], + [17127,0.07], + [17129,0.0547], + [17131,0.0666], + [17133,0.0517], + [17135,0.0854], + [17137,0.0604], + [17139,0.0505], + [17141,0.0766], + [17143,0.0572], + [17145,0.095], + [17147,0.049], + [17149,0.0576], + [17151,0.0826], + [17153,0.0919], + [17155,0.0699], + [17157,0.0654], + [17159,0.0644], + [17161,0.0546], + [17163,0.0748], + [17165,0.0802], + [17167,0.0556], + [17169,0.0506], + [17171,0.0588], + [17173,0.0646], + [17175,0.0631], + [17177,0.0673], + [17179,0.0521], + [17181,0.0852], + [17183,0.0771], + [17185,0.072], + [17187,0.0557], + [17189,0.0594], + [17191,0.0629], + [17193,0.0634], + [17195,0.0672], + [17197,0.0607], + [17199,0.069], + [17201,0.0842], + [17203,0.0423], + [18001,0.0765], + [18003,0.0597], + [18005,0.0464], + [18007,0.0524], + [18009,0.0763], + [18011,0.0433], + [18013,0.0567], + [18015,0.0587], + [18017,0.0628], + [18019,0.0533], + [18021,0.0708], + [18023,0.0547], + [18025,0.0752], + [18027,0.0383], + [18029,0.0586], + [18031,0.0627], + [18033,0.0727], + [18035,0.0669], + [18037,0.0385], + [18039,0.0858], + [18041,0.1136], + [18043,0.051], + [18045,0.0533], + [18047,0.0659], + [18049,0.0656], + [18051,0.0519], + [18053,0.076], + [18055,0.0616], + [18057,0.0381], + [18059,0.0481], + [18061,0.0589], + [18063,0.0431], + [18065,0.0699], + [18067,0.0779], + [18069,0.0668], + [18071,0.0533], + [18073,0.0583], + [18075,0.058], + [18077,0.0608], + [18079,0.0716], + [18081,0.0467], + [18083,0.0503], + [18085,0.0654], + [18087,0.0861], + [18089,0.062], + [18091,0.0623], + [18093,0.0829], + [18095,0.0694], + [18097,0.0563], + [18099,0.073], + [18101,0.0486], + [18103,0.0794], + [18105,0.0454], + [18107,0.0493], + [18109,0.0576], + [18111,0.0625], + [18113,0.0847], + [18115,0.0621], + [18117,0.0637], + [18119,0.064], + [18121,0.0602], + [18123,0.0517], + [18125,0.0564], + [18127,0.0478], + [18129,0.0486], + [18131,0.0563], + [18133,0.0673], + [18135,0.069], + [18137,0.0596], + [18139,0.0616], + [18141,0.0657], + [18143,0.0649], + [18145,0.0586], + [18147,0.0506], + [18149,0.0776], + [18151,0.0749], + [18153,0.067], + [18155,0.0504], + [18157,0.0471], + [18159,0.0724], + [18161,0.0619], + [18163,0.0519], + [18165,0.0723], + [18167,0.0643], + [18169,0.0751], + [18171,0.0411], + [18173,0.0464], + [18175,0.0664], + [18177,0.0711], + [18179,0.0564], + [18181,0.0578], + [18183,0.0635], + [19001,0.0407], + [19003,0.0426], + [19005,0.0647], + [19007,0.0552], + [19009,0.0452], + [19011,0.0421], + [19013,0.0413], + [19015,0.0361], + [19017,0.0357], + [19019,0.0411], + [19021,0.0361], + [19023,0.0468], + [19025,0.0352], + [19027,0.0287], + [19029,0.0463], + [19031,0.0367], + [19033,0.048], + [19035,0.0354], + [19037,0.0495], + [19039,0.0467], + [19041,0.0345], + [19043,0.0551], + [19045,0.0425], + [19047,0.0333], + [19049,0.0329], + [19051,0.0504], + [19053,0.0384], + [19055,0.0398], + [19057,0.0587], + [19059,0.0443], + [19061,0.0441], + [19063,0.0399], + [19065,0.0536], + [19067,0.0589], + [19069,0.0446], + [19071,0.0453], + [19073,0.0394], + [19075,0.0361], + [19077,0.0438], + [19079,0.0387], + [19081,0.0642], + [19083,0.043], + [19085,0.0423], + [19087,0.0539], + [19089,0.0474], + [19091,0.037], + [19093,0.0388], + [19095,0.0423], + [19097,0.0521], + [19099,0.077], + [19101,0.0449], + [19103,0.0302], + [19105,0.045], + [19107,0.0457], + [19109,0.0398], + [19111,0.0658], + [19113,0.0407], + [19115,0.0483], + [19117,0.0415], + [19119,0.0266], + [19121,0.0484], + [19123,0.0457], + [19125,0.0404], + [19127,0.0517], + [19129,0.0369], + [19131,0.041], + [19133,0.0542], + [19135,0.0448], + [19137,0.0577], + [19139,0.0442], + [19141,0.0335], + [19143,0.0386], + [19145,0.0482], + [19147,0.0426], + [19149,0.0336], + [19151,0.0318], + [19153,0.0407], + [19155,0.0425], + [19157,0.0459], + [19159,0.0458], + [19161,0.0374], + [19163,0.0426], + [19165,0.0307], + [19167,0.0283], + [19169,0.0319], + [19171,0.0536], + [19173,0.0404], + [19175,0.0459], + [19177,0.0489], + [19179,0.0504], + [19181,0.0381], + [19183,0.0409], + [19185,0.0422], + [19187,0.0437], + [19189,0.0645], + [19191,0.0435], + [19193,0.0387], + [19195,0.0524], + [19197,0.0447], + [20001,0.0458], + [20003,0.0482], + [20005,0.0461], + [20007,0.0327], + [20009,0.0332], + [20011,0.0486], + [20013,0.0435], + [20015,0.0441], + [20017,0.0415], + [20019,0.0457], + [20021,0.0519], + [20023,0.0318], + [20025,0.032], + [20027,0.0342], + [20029,0.0367], + [20031,0.0475], + [20033,0.0324], + [20035,0.0446], + [20037,0.0533], + [20039,0.0308], + [20041,0.0398], + [20043,0.0557], + [20045,0.0421], + [20047,0.0279], + [20049,0.0568], + [20051,0.0305], + [20053,0.0331], + [20055,0.0355], + [20057,0.0304], + [20059,0.0562], + [20061,0.0468], + [20063,0.0277], + [20065,0.0336], + [20067,0.0287], + [20069,0.0262], + [20071,0.0383], + [20073,0.0529], + [20075,0.0342], + [20077,0.032], + [20079,0.0393], + [20081,0.0274], + [20083,0.0339], + [20085,0.0576], + [20087,0.0526], + [20089,0.0318], + [20091,0.0461], + [20093,0.034], + [20095,0.0334], + [20097,0.0342], + [20099,0.053], + [20101,0.0373], + [20103,0.0581], + [20105,0.0372], + [20107,0.067], + [20109,0.0277], + [20111,0.0586], + [20113,0.036], + [20115,0.037], + [20117,0.0375], + [20119,0.0295], + [20121,0.0515], + [20123,0.0331], + [20125,0.0559], + [20127,0.0482], + [20129,0.0281], + [20131,0.0314], + [20133,0.0493], + [20135,0.0307], + [20137,0.0323], + [20139,0.06], + [20141,0.0342], + [20143,0.0366], + [20145,0.0319], + [20147,0.0431], + [20149,0.0359], + [20151,0.0345], + [20153,0.0348], + [20155,0.0412], + [20157,0.0313], + [20159,0.038], + [20161,0.0351], + [20163,0.0461], + [20165,0.0386], + [20167,0.0374], + [20169,0.0384], + [20171,0.0267], + [20173,0.0453], + [20175,0.0314], + [20177,0.0504], + [20179,0.0261], + [20181,0.0312], + [20183,0.0401], + [20185,0.0371], + [20187,0.0331], + [20189,0.034], + [20191,0.0463], + [20193,0.0309], + [20195,0.0304], + [20197,0.0453], + [20199,0.0482], + [20201,0.0362], + [20203,0.0316], + [20205,0.0561], + [20207,0.0568], + [20209,0.0808], + [21001,0.0683], + [21003,0.0704], + [21005,0.0639], + [21007,0.0622], + [21009,0.0613], + [21011,0.0893], + [21013,0.0887], + [21015,0.0545], + [21017,0.0581], + [21019,0.0589], + [21021,0.0675], + [21023,0.0724], + [21025,0.0728], + [21027,0.0745], + [21029,0.0695], + [21031,0.0788], + [21033,0.0655], + [21035,0.0582], + [21037,0.0605], + [21039,0.0652], + [21041,0.0746], + [21043,0.0816], + [21045,0.0633], + [21047,0.0827], + [21049,0.0634], + [21051,0.1036], + [21053,0.0648], + [21055,0.0653], + [21057,0.0781], + [21059,0.0571], + [21061,0.0754], + [21063,0.0834], + [21065,0.0775], + [21067,0.0485], + [21069,0.0719], + [21071,0.0669], + [21073,0.0581], + [21075,0.0764], + [21077,0.0707], + [21079,0.0653], + [21081,0.0697], + [21083,0.0689], + [21085,0.0994], + [21087,0.0769], + [21089,0.0625], + [21091,0.0582], + [21093,0.0621], + [21095,0.0885], + [21097,0.0628], + [21099,0.0657], + [21101,0.061], + [21103,0.0622], + [21105,0.0702], + [21107,0.0731], + [21109,0.1131], + [21111,0.0631], + [21113,0.055], + [21115,0.0689], + [21117,0.0595], + [21119,0.0675], + [21121,0.0763], + [21123,0.0649], + [21125,0.0661], + [21127,0.0855], + [21129,0.0736], + [21131,0.0827], + [21133,0.0687], + [21135,0.0953], + [21137,0.0746], + [21139,0.0608], + [21141,0.0634], + [21143,0.0763], + [21145,0.0577], + [21147,0.096], + [21149,0.0709], + [21151,0.0549], + [21153,0.107], + [21155,0.0643], + [21157,0.063], + [21159,0.076], + [21161,0.0596], + [21163,0.0771], + [21165,0.0988], + [21167,0.0628], + [21169,0.0699], + [21171,0.0827], + [21173,0.0736], + [21175,0.0971], + [21177,0.0854], + [21179,0.0729], + [21181,0.0728], + [21183,0.0638], + [21185,0.056], + [21187,0.0648], + [21189,0.0805], + [21191,0.0768], + [21193,0.0683], + [21195,0.0585], + [21197,0.0857], + [21199,0.0673], + [21201,0.061], + [21203,0.0733], + [21205,0.06], + [21207,0.0732], + [21209,0.0543], + [21211,0.0573], + [21213,0.0641], + [21215,0.0732], + [21217,0.0605], + [21219,0.0711], + [21221,0.0772], + [21223,0.0726], + [21225,0.0655], + [21227,0.0536], + [21229,0.0724], + [21231,0.0827], + [21233,0.0634], + [21235,0.0735], + [21237,0.0977], + [21239,0.0477], + [22001,0.0419], + [22003,0.0625], + [22005,0.0439], + [22007,0.0582], + [22009,0.0603], + [22011,0.0546], + [22013,0.0645], + [22015,0.0449], + [22017,0.057], + [22019,0.0448], + [22021,0.0522], + [22023,0.0443], + [22025,0.0675], + [22027,0.0625], + [22029,0.0744], + [22031,0.0717], + [22033,0.0469], + [22035,0.1055], + [22037,0.054], + [22039,0.0539], + [22041,0.0761], + [22043,0.053], + [22045,0.0429], + [22047,0.069], + [22049,0.0492], + [22051,0.0445], + [22053,0.0401], + [22055,0.034], + [22057,0.0351], + [22059,0.0404], + [22061,0.0546], + [22063,0.0437], + [22065,0.0794], + [22067,0.09], + [22069,0.0612], + [22071,0.0604], + [22073,0.0518], + [22075,0.0473], + [22077,0.0531], + [22079,0.0462], + [22081,0.0782], + [22083,0.0655], + [22085,0.05], + [22087,0.0451], + [22089,0.0471], + [22091,0.0889], + [22093,0.0745], + [22095,0.0609], + [22097,0.0534], + [22099,0.0421], + [22101,0.0489], + [22103,0.04], + [22105,0.0566], + [22107,0.0853], + [22109,0.0376], + [22111,0.0551], + [22113,0.0439], + [22115,0.0487], + [22117,0.065], + [22119,0.0626], + [22121,0.0494], + [22123,0.1045], + [22125,0.0579], + [22127,0.0571], + [23001,0.0554], + [23003,0.07], + [23005,0.0421], + [23007,0.0709], + [23009,0.0606], + [23011,0.0533], + [23013,0.0528], + [23015,0.0517], + [23017,0.0694], + [23019,0.0576], + [23021,0.0838], + [23023,0.0482], + [23025,0.0792], + [23027,0.0623], + [23029,0.0855], + [23031,0.0488], + [24001,0.0565], + [24003,0.0374], + [24005,0.0439], + [24009,0.0345], + [24011,0.0533], + [24013,0.0365], + [24015,0.0508], + [24017,0.0359], + [24019,0.0672], + [24021,0.0361], + [24023,0.0484], + [24025,0.0409], + [24027,0.0306], + [24029,0.0475], + [24031,0.0316], + [24033,0.0432], + [24035,0.0401], + [24037,0.036], + [24039,0.0636], + [24041,0.0417], + [24043,0.0554], + [24045,0.0515], + [24047,0.0724], + [24510,0.0651], + [25001,0.0603], + [25003,0.0533], + [25005,0.073], + [25007,0.0429], + [25009,0.0586], + [25011,0.0518], + [25013,0.0669], + [25015,0.0455], + [25017,0.0453], + [25019,0.0341], + [25021,0.0489], + [25023,0.0585], + [25025,0.0544], + [25027,0.0603], + [26001,0.1138], + [26003,0.0934], + [26005,0.0734], + [26007,0.088], + [26009,0.0931], + [26011,0.1026], + [26013,0.1344], + [26015,0.064], + [26017,0.0753], + [26019,0.0891], + [26021,0.0775], + [26023,0.0833], + [26025,0.0736], + [26027,0.0666], + [26029,0.0959], + [26031,0.1108], + [26033,0.095], + [26035,0.1144], + [26037,0.0583], + [26039,0.0921], + [26041,0.0825], + [26043,0.0675], + [26045,0.0612], + [26047,0.0971], + [26049,0.1005], + [26051,0.1062], + [26053,0.084], + [26055,0.0729], + [26057,0.0917], + [26059,0.1018], + [26061,0.0769], + [26063,0.0882], + [26065,0.0692], + [26067,0.0825], + [26069,0.1072], + [26071,0.0824], + [26073,0.059], + [26075,0.0824], + [26077,0.061], + [26079,0.0861], + [26081,0.0664], + [26083,0.1073], + [26085,0.1114], + [26087,0.0945], + [26089,0.0605], + [26091,0.097], + [26093,0.0631], + [26095,0.0913], + [26097,0.1151], + [26099,0.0815], + [26101,0.087], + [26103,0.0682], + [26105,0.0832], + [26107,0.0844], + [26109,0.0619], + [26111,0.0608], + [26113,0.1024], + [26115,0.085], + [26117,0.1128], + [26119,0.1369], + [26121,0.0839], + [26123,0.0885], + [26125,0.0661], + [26127,0.1022], + [26129,0.0913], + [26131,0.0907], + [26133,0.0929], + [26135,0.1256], + [26137,0.0991], + [26139,0.0676], + [26141,0.1344], + [26143,0.1088], + [26145,0.0829], + [26147,0.0974], + [26149,0.0852], + [26151,0.1085], + [26153,0.111], + [26155,0.0964], + [26157,0.0995], + [26159,0.0799], + [26161,0.0562], + [26163,0.0927], + [26165,0.1078], + [27001,0.0807], + [27003,0.0546], + [27005,0.0676], + [27007,0.0691], + [27009,0.0606], + [27011,0.0553], + [27013,0.044], + [27015,0.06], + [27017,0.0666], + [27019,0.049], + [27021,0.086], + [27023,0.052], + [27025,0.0682], + [27027,0.037], + [27029,0.1145], + [27031,0.0558], + [27033,0.0526], + [27035,0.0694], + [27037,0.049], + [27039,0.052], + [27041,0.0496], + [27043,0.0623], + [27045,0.0609], + [27047,0.0569], + [27049,0.0568], + [27051,0.0704], + [27053,0.0492], + [27055,0.0576], + [27057,0.0756], + [27059,0.0691], + [27061,0.0788], + [27063,0.042], + [27065,0.1026], + [27067,0.0495], + [27069,0.0565], + [27071,0.077], + [27073,0.0481], + [27075,0.0528], + [27077,0.0603], + [27079,0.0735], + [27081,0.0506], + [27083,0.0442], + [27085,0.0604], + [27087,0.0721], + [27089,0.0786], + [27091,0.0489], + [27093,0.066], + [27095,0.0904], + [27097,0.0756], + [27099,0.0459], + [27101,0.0508], + [27103,0.0435], + [27105,0.0415], + [27107,0.0563], + [27109,0.0444], + [27111,0.0609], + [27113,0.0709], + [27115,0.0855], + [27117,0.0443], + [27119,0.0503], + [27121,0.0532], + [27123,0.0526], + [27125,0.0792], + [27127,0.0541], + [27129,0.0577], + [27131,0.0589], + [27133,0.0386], + [27135,0.0495], + [27137,0.0634], + [27139,0.0497], + [27141,0.0617], + [27143,0.0625], + [27145,0.0555], + [27147,0.0507], + [27149,0.0466], + [27151,0.0609], + [27153,0.0654], + [27155,0.0546], + [27157,0.0504], + [27159,0.0816], + [27161,0.0539], + [27163,0.05], + [27165,0.0653], + [27167,0.0438], + [27169,0.0478], + [27171,0.061], + [27173,0.0508], + [28001,0.0648], + [28003,0.0759], + [28005,0.0697], + [28007,0.0889], + [28009,0.1103], + [28011,0.0844], + [28013,0.0882], + [28015,0.0701], + [28017,0.107], + [28019,0.0788], + [28021,0.1069], + [28023,0.0759], + [28025,0.1283], + [28027,0.0899], + [28029,0.0711], + [28031,0.059], + [28033,0.0464], + [28035,0.0561], + [28037,0.0746], + [28039,0.0737], + [28041,0.0901], + [28043,0.0731], + [28045,0.0554], + [28047,0.0541], + [28049,0.0588], + [28051,0.1288], + [28053,0.0964], + [28055,0.0859], + [28057,0.08], + [28059,0.0571], + [28061,0.0697], + [28063,0.1307], + [28065,0.0685], + [28067,0.0517], + [28069,0.0809], + [28071,0.0521], + [28073,0.0464], + [28075,0.0668], + [28077,0.077], + [28079,0.0669], + [28081,0.0685], + [28083,0.0876], + [28085,0.0717], + [28087,0.0756], + [28089,0.0507], + [28091,0.0695], + [28093,0.0802], + [28095,0.096], + [28097,0.0864], + [28099,0.0531], + [28101,0.0648], + [28103,0.1353], + [28105,0.0618], + [28107,0.0831], + [28109,0.0659], + [28111,0.0809], + [28113,0.0692], + [28115,0.0765], + [28117,0.0799], + [28119,0.0876], + [28121,0.0413], + [28123,0.0496], + [28125,0.0845], + [28127,0.0584], + [28129,0.064], + [28131,0.0576], + [28133,0.1018], + [28135,0.0827], + [28137,0.0667], + [28139,0.0992], + [28141,0.0878], + [28143,0.1049], + [28145,0.0694], + [28147,0.0712], + [28149,0.0629], + [28151,0.0936], + [28153,0.0744], + [28155,0.0916], + [28157,0.0789], + [28159,0.0742], + [28161,0.0853], + [28163,0.0867], + [29001,0.0526], + [29003,0.0479], + [29005,0.0476], + [29007,0.0624], + [29009,0.0549], + [29011,0.0932], + [29013,0.0715], + [29015,0.0689], + [29017,0.0671], + [29019,0.0441], + [29021,0.0522], + [29023,0.0619], + [29025,0.0671], + [29027,0.0538], + [29029,0.0627], + [29031,0.0516], + [29033,0.0709], + [29035,0.0721], + [29037,0.0596], + [29039,0.0654], + [29041,0.0616], + [29043,0.0504], + [29045,0.0614], + [29047,0.0516], + [29049,0.0593], + [29051,0.045], + [29053,0.0575], + [29055,0.081], + [29057,0.0627], + [29059,0.0761], + [29061,0.0535], + [29063,0.0629], + [29065,0.0765], + [29067,0.0677], + [29069,0.0792], + [29071,0.0749], + [29073,0.0763], + [29075,0.0451], + [29077,0.0509], + [29079,0.0558], + [29081,0.049], + [29083,0.067], + [29085,0.0968], + [29087,0.05], + [29089,0.0597], + [29091,0.0567], + [29093,0.0567], + [29095,0.0693], + [29097,0.0524], + [29099,0.0685], + [29101,0.0529], + [29103,0.0466], + [29105,0.0759], + [29107,0.0613], + [29109,0.0484], + [29111,0.0483], + [29113,0.0783], + [29115,0.0695], + [29117,0.0517], + [29119,0.0491], + [29121,0.0597], + [29123,0.0611], + [29125,0.0627], + [29127,0.0564], + [29129,0.048], + [29131,0.0672], + [29133,0.0727], + [29135,0.0551], + [29137,0.0698], + [29139,0.0717], + [29141,0.0753], + [29143,0.0714], + [29145,0.0554], + [29147,0.0422], + [29149,0.0586], + [29151,0.0616], + [29153,0.0606], + [29155,0.0743], + [29157,0.0465], + [29159,0.062], + [29161,0.0586], + [29163,0.0573], + [29165,0.0481], + [29167,0.0608], + [29169,0.0573], + [29171,0.0542], + [29173,0.0534], + [29175,0.0609], + [29177,0.0636], + [29179,0.0733], + [29181,0.0675], + [29183,0.0546], + [29185,0.0708], + [29186,0.0589], + [29187,0.0708], + [29189,0.0605], + [29195,0.0572], + [29197,0.0642], + [29199,0.0662], + [29201,0.0657], + [29203,0.0786], + [29205,0.053], + [29207,0.0754], + [29209,0.078], + [29211,0.0575], + [29213,0.077], + [29215,0.0695], + [29217,0.0562], + [29219,0.0747], + [29221,0.1024], + [29223,0.0676], + [29225,0.0569], + [29227,0.055], + [29229,0.0723], + [29510,0.0783], + [30001,0.041], + [30003,0.0826], + [30005,0.0454], + [30007,0.0557], + [30009,0.0431], + [30011,0.0332], + [30013,0.0466], + [30015,0.0361], + [30017,0.0423], + [30019,0.0374], + [30021,0.0371], + [30023,0.0665], + [30025,0.0263], + [30027,0.0477], + [30029,0.0672], + [30031,0.0423], + [30033,0.035], + [30035,0.0916], + [30037,0.05], + [30039,0.0673], + [30041,0.0506], + [30043,0.0462], + [30045,0.0442], + [30047,0.0754], + [30049,0.0416], + [30051,0.0425], + [30053,0.1083], + [30055,0.0281], + [30057,0.0424], + [30059,0.0696], + [30061,0.0723], + [30063,0.0501], + [30065,0.0589], + [30067,0.0528], + [30069,0.0562], + [30071,0.0512], + [30073,0.0552], + [30075,0.0358], + [30077,0.0769], + [30079,0.0421], + [30081,0.0656], + [30083,0.032], + [30085,0.0739], + [30087,0.0633], + [30089,0.1043], + [30091,0.032], + [30093,0.0485], + [30095,0.0444], + [30097,0.0271], + [30099,0.0424], + [30101,0.0331], + [30103,0.0419], + [30105,0.0432], + [30107,0.041], + [30109,0.0356], + [30111,0.0379], + [31001,0.0307], + [31003,0.0299], + [31005,0.0372], + [31007,0.0249], + [31009,0.0492], + [31011,0.0261], + [31013,0.0373], + [31015,0.0324], + [31017,0.0265], + [31019,0.025], + [31021,0.0419], + [31023,0.0289], + [31025,0.0371], + [31027,0.0253], + [31029,0.0266], + [31031,0.0235], + [31033,0.0283], + [31035,0.0321], + [31037,0.0263], + [31039,0.0292], + [31041,0.0241], + [31043,0.0416], + [31045,0.0292], + [31047,0.0402], + [31049,0.0294], + [31051,0.0319], + [31053,0.035], + [31055,0.037], + [31057,0.029], + [31059,0.0296], + [31061,0.0304], + [31063,0.0276], + [31065,0.0294], + [31067,0.0468], + [31069,0.0295], + [31071,0.0256], + [31073,0.0323], + [31075,0.0295], + [31077,0.0292], + [31079,0.0312], + [31081,0.0243], + [31083,0.0309], + [31085,0.0377], + [31087,0.034], + [31089,0.0269], + [31091,0.0434], + [31093,0.0308], + [31095,0.0386], + [31097,0.0317], + [31099,0.0273], + [31101,0.0286], + [31103,0.048], + [31105,0.0335], + [31107,0.0317], + [31109,0.0306], + [31111,0.0295], + [31113,0.0216], + [31115,0.0383], + [31117,0.0226], + [31119,0.0333], + [31121,0.031], + [31123,0.0312], + [31125,0.0297], + [31127,0.0463], + [31129,0.0293], + [31131,0.0352], + [31133,0.0338], + [31135,0.0244], + [31137,0.0243], + [31139,0.0299], + [31141,0.0296], + [31143,0.0283], + [31145,0.0289], + [31147,0.0441], + [31149,0.0283], + [31151,0.0342], + [31153,0.0323], + [31155,0.036], + [31157,0.037], + [31159,0.0324], + [31161,0.0274], + [31163,0.0274], + [31165,0.0335], + [31167,0.0276], + [31169,0.0323], + [31171,0.0402], + [31173,0.0674], + [31175,0.0279], + [31177,0.0314], + [31179,0.0288], + [31181,0.0335], + [31183,0.0226], + [31185,0.037], + [32001,0.0597], + [32003,0.0664], + [32005,0.0739], + [32007,0.0425], + [32009,0.0494], + [32011,0.0515], + [32013,0.0493], + [32015,0.0436], + [32017,0.0556], + [32019,0.0979], + [32021,0.0748], + [32023,0.0973], + [32027,0.0698], + [32029,0.069], + [32031,0.0679], + [32033,0.0469], + [32510,0.0709], + [33001,0.0409], + [33003,0.0359], + [33005,0.0366], + [33007,0.0517], + [33009,0.0315], + [33011,0.0386], + [33013,0.0364], + [33015,0.0424], + [33017,0.0362], + [33019,0.0339], + [34001,0.0682], + [34003,0.0439], + [34005,0.0491], + [34007,0.059], + [34009,0.079], + [34011,0.0787], + [34013,0.0644], + [34015,0.0531], + [34017,0.0621], + [34019,0.0371], + [34021,0.0473], + [34023,0.0491], + [34025,0.0476], + [34027,0.0391], + [34029,0.0582], + [34031,0.0664], + [34033,0.0613], + [34035,0.04], + [34037,0.0493], + [34039,0.0562], + [34041,0.0492], + [35001,0.0437], + [35003,0.0534], + [35005,0.0434], + [35006,0.0462], + [35007,0.0439], + [35009,0.0316], + [35011,0.0409], + [35013,0.0474], + [35015,0.0304], + [35017,0.0495], + [35019,0.0614], + [35021,0.0302], + [35023,0.0431], + [35025,0.0286], + [35027,0.0355], + [35028,0.03], + [35029,0.1211], + [35031,0.0553], + [35033,0.0863], + [35035,0.0438], + [35037,0.0491], + [35039,0.0546], + [35041,0.0311], + [35043,0.0522], + [35045,0.0394], + [35047,0.0495], + [35049,0.0375], + [35051,0.0406], + [35053,0.0355], + [35055,0.0547], + [35057,0.0555], + [35059,0.0292], + [35061,0.0509], + [36001,0.0486], + [36003,0.064], + [36005,0.0756], + [36007,0.0557], + [36009,0.0609], + [36011,0.0555], + [36013,0.0554], + [36015,0.0558], + [36017,0.0636], + [36019,0.0655], + [36021,0.0483], + [36023,0.0639], + [36025,0.0597], + [36027,0.0512], + [36029,0.0571], + [36031,0.0667], + [36033,0.069], + [36035,0.0671], + [36037,0.0562], + [36039,0.0588], + [36041,0.0624], + [36043,0.0611], + [36045,0.0682], + [36047,0.0602], + [36049,0.0666], + [36051,0.0595], + [36053,0.0574], + [36055,0.0547], + [36057,0.0707], + [36059,0.0474], + [36061,0.0491], + [36063,0.0671], + [36065,0.0539], + [36067,0.0518], + [36069,0.0516], + [36071,0.0537], + [36073,0.0695], + [36075,0.0696], + [36077,0.0569], + [36079,0.0443], + [36081,0.0503], + [36083,0.0517], + [36085,0.0509], + [36087,0.0476], + [36089,0.0709], + [36091,0.0456], + [36093,0.0509], + [36095,0.0686], + [36097,0.058], + [36099,0.0552], + [36101,0.0608], + [36103,0.0501], + [36105,0.0651], + [36107,0.0529], + [36109,0.0414], + [36111,0.0545], + [36113,0.0563], + [36115,0.0533], + [36117,0.0585], + [36119,0.0479], + [36121,0.0622], + [36123,0.0489], + [37001,0.0637], + [37003,0.0696], + [37005,0.0743], + [37007,0.0881], + [37009,0.067], + [37011,0.0568], + [37013,0.0711], + [37015,0.0757], + [37017,0.0769], + [37019,0.0632], + [37021,0.0466], + [37023,0.0808], + [37025,0.0568], + [37027,0.0771], + [37029,0.0537], + [37031,0.0532], + [37033,0.0799], + [37035,0.0706], + [37037,0.049], + [37039,0.0911], + [37041,0.0861], + [37043,0.064], + [37045,0.0817], + [37047,0.0769], + [37049,0.0591], + [37051,0.0611], + [37053,0.0435], + [37055,0.0635], + [37057,0.0705], + [37059,0.0601], + [37061,0.0576], + [37063,0.0471], + [37065,0.101], + [37067,0.0561], + [37069,0.062], + [37071,0.0752], + [37073,0.0528], + [37075,0.1062], + [37077,0.0666], + [37079,0.0654], + [37081,0.0597], + [37083,0.0892], + [37085,0.0656], + [37087,0.0556], + [37089,0.0469], + [37091,0.0659], + [37093,0.0566], + [37095,0.0688], + [37097,0.0635], + [37099,0.05], + [37101,0.0565], + [37103,0.0639], + [37105,0.0751], + [37107,0.0716], + [37109,0.0719], + [37111,0.0814], + [37113,0.0589], + [37115,0.0562], + [37117,0.0643], + [37119,0.0594], + [37121,0.0801], + [37123,0.0814], + [37125,0.061], + [37127,0.0738], + [37129,0.0515], + [37131,0.077], + [37133,0.0563], + [37135,0.0399], + [37137,0.0593], + [37139,0.0682], + [37141,0.0602], + [37143,0.0674], + [37145,0.072], + [37147,0.0642], + [37149,0.0479], + [37151,0.0631], + [37153,0.0918], + [37155,0.0789], + [37157,0.0743], + [37159,0.0675], + [37161,0.08], + [37163,0.0533], + [37165,0.109], + [37167,0.0648], + [37169,0.058], + [37171,0.0773], + [37173,0.0779], + [37175,0.051], + [37177,0.0703], + [37179,0.0546], + [37181,0.088], + [37183,0.0457], + [37185,0.0836], + [37187,0.0762], + [37189,0.047], + [37191,0.0572], + [37193,0.0745], + [37195,0.0767], + [37197,0.0559], + [37199,0.0756], + [38001,0.0238], + [38003,0.0293], + [38005,0.0644], + [38007,0.021], + [38009,0.0325], + [38011,0.0207], + [38013,0.0236], + [38015,0.0278], + [38017,0.0271], + [38019,0.0309], + [38021,0.0302], + [38023,0.0316], + [38025,0.032], + [38027,0.0561], + [38029,0.0487], + [38031,0.03], + [38033,0.0276], + [38035,0.03], + [38037,0.0408], + [38039,0.0243], + [38041,0.0348], + [38043,0.0411], + [38045,0.0326], + [38047,0.0357], + [38049,0.0512], + [38051,0.0287], + [38053,0.0241], + [38055,0.0451], + [38057,0.0457], + [38059,0.0349], + [38061,0.0418], + [38063,0.0335], + [38065,0.0453], + [38067,0.052], + [38069,0.0434], + [38071,0.0377], + [38073,0.0359], + [38075,0.0261], + [38077,0.0388], + [38079,0.0954], + [38081,0.0462], + [38083,0.0419], + [38085,0.0528], + [38087,0.0132], + [38089,0.0235], + [38091,0.0214], + [38093,0.0293], + [38095,0.0324], + [38097,0.0331], + [38099,0.0434], + [38101,0.0295], + [38103,0.044], + [38105,0.017], + [39001,0.0931], + [39003,0.0738], + [39005,0.0745], + [39007,0.08], + [39009,0.0667], + [39011,0.0545], + [39013,0.0609], + [39015,0.0762], + [39017,0.0591], + [39019,0.076], + [39021,0.0696], + [39023,0.0668], + [39025,0.0589], + [39027,0.0604], + [39029,0.0724], + [39031,0.0857], + [39033,0.0866], + [39035,0.0621], + [39037,0.0645], + [39039,0.0749], + [39041,0.0465], + [39043,0.073], + [39045,0.0573], + [39047,0.0572], + [39049,0.0552], + [39051,0.0815], + [39053,0.0656], + [39055,0.0499], + [39057,0.0619], + [39059,0.086], + [39061,0.0566], + [39063,0.0589], + [39065,0.072], + [39067,0.0719], + [39069,0.0796], + [39071,0.0741], + [39073,0.0763], + [39075,0.0491], + [39077,0.0979], + [39079,0.0849], + [39081,0.0704], + [39083,0.0642], + [39085,0.053], + [39087,0.0546], + [39089,0.062], + [39091,0.0603], + [39093,0.0637], + [39095,0.0824], + [39097,0.0621], + [39099,0.0715], + [39101,0.0701], + [39103,0.0529], + [39105,0.1004], + [39107,0.0492], + [39109,0.0641], + [39111,0.0855], + [39113,0.0747], + [39115,0.1024], + [39117,0.0706], + [39119,0.0865], + [39121,0.0855], + [39123,0.0882], + [39125,0.0713], + [39127,0.0852], + [39129,0.0712], + [39131,0.1016], + [39133,0.0626], + [39135,0.0693], + [39137,0.0578], + [39139,0.0744], + [39141,0.0794], + [39143,0.0721], + [39145,0.0835], + [39147,0.0706], + [39149,0.0619], + [39151,0.0677], + [39153,0.0615], + [39155,0.0751], + [39157,0.0625], + [39159,0.0522], + [39161,0.0849], + [39163,0.092], + [39165,0.0551], + [39167,0.0549], + [39169,0.057], + [39171,0.077], + [39173,0.0675], + [39175,0.0789], + [40001,0.0492], + [40003,0.0311], + [40005,0.0463], + [40007,0.0205], + [40009,0.0232], + [40011,0.0364], + [40013,0.0345], + [40015,0.0407], + [40017,0.034], + [40019,0.0325], + [40021,0.038], + [40023,0.0511], + [40025,0.0296], + [40027,0.0342], + [40029,0.0489], + [40031,0.0381], + [40033,0.028], + [40035,0.0384], + [40037,0.0425], + [40039,0.0266], + [40041,0.0419], + [40043,0.0239], + [40045,0.0217], + [40047,0.0257], + [40049,0.0303], + [40051,0.0397], + [40053,0.025], + [40055,0.0436], + [40057,0.0337], + [40059,0.0225], + [40061,0.0374], + [40063,0.0538], + [40065,0.0319], + [40067,0.0425], + [40069,0.0431], + [40071,0.0351], + [40073,0.0234], + [40075,0.0379], + [40077,0.0433], + [40079,0.0524], + [40081,0.0398], + [40083,0.036], + [40085,0.029], + [40087,0.0363], + [40089,0.0664], + [40091,0.0481], + [40093,0.0235], + [40095,0.0404], + [40097,0.0423], + [40099,0.0266], + [40101,0.0473], + [40103,0.0326], + [40105,0.043], + [40107,0.0416], + [40109,0.0392], + [40111,0.0526], + [40113,0.0416], + [40115,0.0421], + [40117,0.0447], + [40119,0.0394], + [40121,0.0321], + [40123,0.0316], + [40125,0.0386], + [40127,0.0482], + [40129,0.0232], + [40131,0.0351], + [40133,0.0449], + [40135,0.0592], + [40137,0.0345], + [40139,0.0273], + [40141,0.0409], + [40143,0.036], + [40145,0.0361], + [40147,0.0305], + [40149,0.027], + [40151,0.0281], + [40153,0.0224], + [41001,0.0715], + [41003,0.047], + [41005,0.0572], + [41007,0.0526], + [41009,0.0712], + [41011,0.083], + [41013,0.0994], + [41015,0.0811], + [41017,0.082], + [41019,0.0991], + [41021,0.0433], + [41023,0.1059], + [41025,0.0952], + [41027,0.0537], + [41029,0.0793], + [41031,0.1006], + [41033,0.0921], + [41035,0.0917], + [41037,0.0865], + [41039,0.0674], + [41041,0.0661], + [41043,0.0778], + [41045,0.0752], + [41047,0.0663], + [41049,0.0637], + [41051,0.0589], + [41053,0.0565], + [41055,0.0585], + [41057,0.055], + [41059,0.0657], + [41061,0.081], + [41063,0.076], + [41065,0.0608], + [41067,0.0531], + [41069,0.06], + [41071,0.0649], + [42001,0.0431], + [42003,0.0481], + [42005,0.0591], + [42007,0.0547], + [42009,0.0681], + [42011,0.0535], + [42013,0.0518], + [42015,0.0526], + [42017,0.0471], + [42019,0.0463], + [42021,0.0613], + [42023,0.0899], + [42025,0.0673], + [42027,0.043], + [42029,0.0392], + [42031,0.0623], + [42033,0.0671], + [42035,0.0618], + [42037,0.0587], + [42039,0.0561], + [42041,0.0424], + [42043,0.0468], + [42045,0.0498], + [42047,0.0596], + [42049,0.0562], + [42051,0.0653], + [42053,0.0765], + [42055,0.043], + [42057,0.0721], + [42059,0.0578], + [42061,0.0655], + [42063,0.0526], + [42065,0.0554], + [42067,0.0532], + [42069,0.058], + [42071,0.0425], + [42073,0.0617], + [42075,0.0415], + [42077,0.0562], + [42079,0.0625], + [42081,0.0588], + [42083,0.0613], + [42085,0.067], + [42087,0.0655], + [42089,0.0598], + [42091,0.0431], + [42093,0.0477], + [42095,0.0546], + [42097,0.0652], + [42099,0.0521], + [42101,0.0707], + [42103,0.06], + [42105,0.0714], + [42107,0.0622], + [42109,0.0608], + [42111,0.0633], + [42113,0.0569], + [42115,0.0565], + [42117,0.0606], + [42119,0.0625], + [42121,0.0567], + [42123,0.0519], + [42125,0.0521], + [42127,0.0521], + [42129,0.0528], + [42131,0.0603], + [42133,0.047], + [44001,0.0679], + [44003,0.0738], + [44005,0.068], + [44007,0.0839], + [44009,0.0658], + [45001,0.0808], + [45003,0.0585], + [45005,0.1652], + [45007,0.0676], + [45009,0.1126], + [45011,0.109], + [45013,0.053], + [45015,0.0613], + [45017,0.0764], + [45019,0.0531], + [45021,0.0906], + [45023,0.1181], + [45025,0.0896], + [45027,0.0976], + [45029,0.0823], + [45031,0.0851], + [45033,0.1031], + [45035,0.0565], + [45037,0.0672], + [45039,0.1064], + [45041,0.07], + [45043,0.0742], + [45045,0.0555], + [45047,0.0762], + [45049,0.0898], + [45051,0.0707], + [45053,0.0605], + [45055,0.0655], + [45057,0.115], + [45059,0.074], + [45061,0.0932], + [45063,0.0488], + [45065,0.1077], + [45067,0.137], + [45069,0.1251], + [45071,0.0696], + [45073,0.0732], + [45075,0.101], + [45077,0.0605], + [45079,0.0611], + [45081,0.0598], + [45083,0.0684], + [45085,0.0827], + [45087,0.1081], + [45089,0.1038], + [45091,0.0701], + [46003,0.0311], + [46005,0.025], + [46007,0.0402], + [46009,0.0345], + [46011,0.0242], + [46013,0.0246], + [46015,0.0271], + [46017,0.1017], + [46019,0.0277], + [46021,0.0286], + [46023,0.0353], + [46025,0.0386], + [46027,0.0275], + [46029,0.0302], + [46031,0.0513], + [46033,0.0282], + [46035,0.0261], + [46037,0.0436], + [46039,0.0382], + [46041,0.092], + [46043,0.027], + [46045,0.0275], + [46047,0.0341], + [46049,0.0297], + [46051,0.0364], + [46053,0.0342], + [46055,0.0259], + [46057,0.0333], + [46059,0.0264], + [46061,0.0308], + [46063,0.0268], + [46065,0.0237], + [46067,0.0306], + [46069,0.0285], + [46071,0.0579], + [46073,0.0237], + [46075,0.0246], + [46077,0.0325], + [46079,0.0315], + [46081,0.0286], + [46083,0.0249], + [46085,0.0453], + [46087,0.0353], + [46089,0.0421], + [46091,0.0436], + [46093,0.0313], + [46095,0.0443], + [46097,0.0343], + [46099,0.0284], + [46101,0.0428], + [46102,null], + [46103,0.0294], + [46105,0.0309], + [46107,0.0306], + [46109,0.0418], + [46111,0.0267], + [46115,0.0331], + [46117,0.0247], + [46119,0.022], + [46121,0.0637], + [46123,0.0299], + [46125,0.033], + [46127,0.0344], + [46129,0.0433], + [46135,0.0281], + [46137,0.0591], + [47001,0.0583], + [47003,0.0679], + [47005,0.0874], + [47007,0.0841], + [47009,0.0617], + [47011,0.064], + [47013,0.0777], + [47015,0.0737], + [47017,0.0915], + [47019,0.0662], + [47021,0.0545], + [47023,0.0696], + [47025,0.0751], + [47027,0.1063], + [47029,0.0878], + [47031,0.0631], + [47033,0.0891], + [47035,0.0784], + [47037,0.0541], + [47039,0.0846], + [47041,0.0668], + [47043,0.0691], + [47045,0.0754], + [47047,0.0743], + [47049,0.0939], + [47051,0.0666], + [47053,0.0947], + [47055,0.0802], + [47057,0.0796], + [47059,0.0932], + [47061,0.0836], + [47063,0.071], + [47065,0.0569], + [47067,0.0828], + [47069,0.086], + [47071,0.0763], + [47073,0.067], + [47075,0.1051], + [47077,0.1023], + [47079,0.0872], + [47081,0.0841], + [47083,0.081], + [47085,0.0846], + [47087,0.0861], + [47089,0.0711], + [47091,0.0866], + [47093,0.0498], + [47095,0.0767], + [47097,0.1241], + [47099,0.0979], + [47101,0.1003], + [47103,0.0493], + [47105,0.0566], + [47107,0.0873], + [47109,0.0907], + [47111,0.0833], + [47113,0.0673], + [47115,0.0766], + [47117,0.0924], + [47119,0.0811], + [47121,0.0888], + [47123,0.0992], + [47125,0.0629], + [47127,0.0556], + [47129,0.076], + [47131,0.0702], + [47133,0.0898], + [47135,0.1601], + [47137,0.1072], + [47139,0.0806], + [47141,0.0645], + [47143,0.0798], + [47145,0.0588], + [47147,0.0615], + [47149,0.0579], + [47151,0.1154], + [47153,0.0759], + [47155,0.0705], + [47157,0.0691], + [47159,0.0815], + [47161,0.0854], + [47163,0.053], + [47165,0.0596], + [47167,0.0788], + [47169,0.0836], + [47171,0.074], + [47173,0.0627], + [47175,0.0834], + [47177,0.0848], + [47179,0.0563], + [47181,0.1006], + [47183,0.0819], + [47185,0.0837], + [47187,0.046], + [47189,0.0573], + [48001,0.0558], + [48003,0.0333], + [48005,0.0473], + [48007,0.0438], + [48009,0.0363], + [48011,0.0348], + [48013,0.0467], + [48015,0.042], + [48017,0.0407], + [48019,0.0436], + [48021,0.0487], + [48023,0.0374], + [48025,0.0614], + [48027,0.0485], + [48029,0.0465], + [48031,0.0361], + [48033,0.0327], + [48035,0.0451], + [48037,0.0494], + [48039,0.0508], + [48041,0.0386], + [48043,0.0367], + [48045,0.0427], + [48047,0.0526], + [48049,0.0437], + [48051,0.0436], + [48053,0.0387], + [48055,0.0522], + [48057,0.0473], + [48059,0.0359], + [48061,0.0659], + [48063,0.0484], + [48065,0.0332], + [48067,0.0606], + [48069,0.0356], + [48071,0.0566], + [48073,0.0583], + [48075,0.0498], + [48077,0.0389], + [48079,0.0473], + [48081,0.0772], + [48083,0.0406], + [48085,0.0447], + [48087,0.0386], + [48089,0.039], + [48091,0.0403], + [48093,0.0375], + [48095,0.0512], + [48097,0.0345], + [48099,0.0618], + [48101,0.0398], + [48103,0.0405], + [48105,0.0286], + [48107,0.0492], + [48109,0.0291], + [48111,0.0298], + [48113,0.0531], + [48115,0.0527], + [48117,0.0375], + [48119,0.0531], + [48121,0.044], + [48123,0.0409], + [48125,0.0503], + [48127,0.0653], + [48129,0.0426], + [48131,0.0532], + [48133,0.0444], + [48135,0.0338], + [48137,0.0374], + [48139,0.0497], + [48141,0.061], + [48143,0.0372], + [48145,0.0577], + [48147,0.0576], + [48149,0.0341], + [48151,0.0379], + [48153,0.047], + [48155,0.0407], + [48157,0.0438], + [48159,0.0419], + [48161,0.0396], + [48163,0.0533], + [48165,0.0381], + [48167,0.056], + [48169,0.0379], + [48171,0.0304], + [48173,0.0381], + [48175,0.0372], + [48177,0.0388], + [48179,0.0345], + [48181,0.0512], + [48183,0.0393], + [48185,0.0509], + [48187,0.0424], + [48189,0.0444], + [48191,0.055], + [48193,0.0355], + [48195,0.0321], + [48197,0.0352], + [48199,0.0525], + [48201,0.0469], + [48203,0.046], + [48205,0.0327], + [48207,0.032], + [48209,0.0425], + [48211,0.0188], + [48213,0.0523], + [48215,0.0712], + [48217,0.0494], + [48219,0.0368], + [48221,0.0416], + [48223,0.0408], + [48225,0.0639], + [48227,0.0452], + [48229,0.0389], + [48231,0.0528], + [48233,0.0408], + [48235,0.0349], + [48237,0.0312], + [48239,0.0403], + [48241,0.0627], + [48243,0.0361], + [48245,0.0656], + [48247,0.0376], + [48249,0.0417], + [48251,0.0456], + [48253,0.0491], + [48255,0.0581], + [48257,0.0524], + [48259,0.0377], + [48261,0.0336], + [48263,0.0408], + [48265,0.0394], + [48267,0.0369], + [48269,0.0449], + [48271,0.0524], + [48273,0.042], + [48275,0.0377], + [48277,0.0533], + [48279,0.0437], + [48281,0.0404], + [48283,0.0533], + [48285,0.0343], + [48287,0.0387], + [48289,0.0426], + [48291,0.0588], + [48293,0.0431], + [48295,0.0282], + [48297,0.0421], + [48299,0.0424], + [48301,0.0698], + [48303,0.0368], + [48305,0.0462], + [48307,0.039], + [48309,0.0448], + [48311,0.0541], + [48313,0.0516], + [48315,0.05], + [48317,0.0349], + [48319,0.0298], + [48321,0.0667], + [48323,0.1055], + [48325,0.05], + [48327,0.0432], + [48329,0.0285], + [48331,0.0538], + [48333,0.0385], + [48335,0.054], + [48337,0.0353], + [48339,0.042], + [48341,0.0307], + [48343,0.0595], + [48345,0.0434], + [48347,0.043], + [48349,0.0544], + [48351,0.0729], + [48353,0.0383], + [48355,0.0447], + [48357,0.0273], + [48359,0.0443], + [48361,0.0635], + [48363,0.0413], + [48365,0.0385], + [48367,0.0437], + [48369,0.0333], + [48371,0.0444], + [48373,0.0615], + [48375,0.0399], + [48377,0.1035], + [48379,0.0504], + [48381,0.031], + [48383,0.0205], + [48385,0.037], + [48387,0.0643], + [48389,0.0572], + [48391,0.0384], + [48393,0.0246], + [48395,0.0493], + [48397,0.0446], + [48399,0.0474], + [48401,0.0425], + [48403,0.089], + [48405,0.0614], + [48407,0.0573], + [48409,0.0528], + [48411,0.0543], + [48413,0.0334], + [48415,0.0398], + [48417,0.0261], + [48419,0.0473], + [48421,0.0371], + [48423,0.0482], + [48425,0.0446], + [48427,0.1131], + [48429,0.0361], + [48431,0.0283], + [48433,0.0326], + [48435,0.0196], + [48437,0.0442], + [48439,0.0477], + [48441,0.0367], + [48443,0.0667], + [48445,0.0415], + [48447,0.034], + [48449,0.0425], + [48451,0.0408], + [48453,0.042], + [48455,0.0542], + [48457,0.0595], + [48459,0.042], + [48461,0.031], + [48463,0.0568], + [48465,0.0575], + [48467,0.0434], + [48469,0.0377], + [48471,0.0518], + [48473,0.0496], + [48475,0.0388], + [48477,0.0394], + [48479,0.0529], + [48481,0.0434], + [48483,0.0239], + [48485,0.0483], + [48487,0.0352], + [48489,0.088], + [48491,0.0445], + [48493,0.0458], + [48495,0.0373], + [48497,0.0431], + [48499,0.0502], + [48501,0.0304], + [48503,0.0341], + [48505,0.0548], + [48507,0.1057], + [49001,0.0346], + [49003,0.0403], + [49005,0.0276], + [49007,0.0429], + [49009,0.0399], + [49011,0.0338], + [49013,0.0266], + [49015,0.0382], + [49017,0.0611], + [49019,0.0589], + [49021,0.0439], + [49023,0.055], + [49025,0.0416], + [49027,0.0334], + [49029,0.0333], + [49031,0.0288], + [49033,0.0267], + [49035,0.0339], + [49037,0.0635], + [49039,0.0423], + [49041,0.0402], + [49043,0.033], + [49045,0.0383], + [49047,0.0229], + [49049,0.0351], + [49051,0.037], + [49053,0.0474], + [49055,0.0546], + [49057,0.0422], + [50001,0.0444], + [50003,0.0481], + [50005,0.0519], + [50007,0.0399], + [50009,0.0617], + [50011,0.0493], + [50013,0.0606], + [50015,0.0545], + [50017,0.0442], + [50019,0.0694], + [50021,0.0549], + [50023,0.0473], + [50025,0.0455], + [50027,0.0379], + [51001,0.0499], + [51003,0.0298], + [51005,0.0541], + [51007,0.0448], + [51009,0.0412], + [51011,0.0445], + [51013,0.0245], + [51015,0.0362], + [51017,0.0407], + [51019,0.0366], + [51021,0.0475], + [51023,0.0326], + [51025,0.0662], + [51027,0.0501], + [51029,0.0491], + [51031,0.0397], + [51033,0.0479], + [51035,0.0664], + [51036,0.0499], + [51037,0.0591], + [51041,0.0366], + [51043,0.0342], + [51045,0.04], + [51047,0.048], + [51049,0.0477], + [51051,0.0571], + [51053,0.0453], + [51057,0.0519], + [51059,0.0284], + [51061,0.0334], + [51063,0.0441], + [51065,0.033], + [51067,0.0476], + [51069,0.0418], + [51071,0.0537], + [51073,0.0347], + [51075,0.0331], + [51077,0.0646], + [51079,0.0328], + [51081,0.0551], + [51083,0.0685], + [51085,0.0343], + [51087,0.0363], + [51089,0.0802], + [51091,0.0507], + [51093,0.0367], + [51095,0.0317], + [51097,0.0457], + [51099,0.0508], + [51101,0.0373], + [51103,0.057], + [51105,0.0531], + [51107,0.028], + [51109,0.042], + [51111,0.0593], + [51113,0.0374], + [51115,0.0356], + [51117,0.0654], + [51119,0.0382], + [51121,0.0408], + [51125,0.0358], + [51127,0.0358], + [51131,0.0543], + [51133,0.057], + [51135,0.0546], + [51137,0.0457], + [51139,0.0688], + [51141,0.0647], + [51143,0.0664], + [51145,0.0336], + [51147,0.055], + [51149,0.0426], + [51153,0.0329], + [51155,0.0638], + [51157,0.0348], + [51159,0.0502], + [51161,0.0319], + [51163,0.0412], + [51165,0.0334], + [51167,0.0575], + [51169,0.0541], + [51171,0.0465], + [51173,0.0609], + [51175,0.0481], + [51177,0.0341], + [51179,0.0344], + [51181,0.0446], + [51183,0.0582], + [51185,0.044], + [51187,0.044], + [51191,0.0492], + [51193,0.0504], + [51195,0.0461], + [51197,0.0534], + [51199,0.0329], + [51510,0.0276], + [51520,0.0576], + [51530,0.051], + [51540,0.0389], + [51550,0.0385], + [51570,0.0443], + [51580,0.0684], + [51590,0.0921], + [51595,0.0738], + [51600,0.0321], + [51610,0.0402], + [51620,0.0625], + [51630,0.0603], + [51640,0.061], + [51650,0.0474], + [51660,0.0416], + [51670,0.0597], + [51678,0.0644], + [51680,0.0478], + [51683,0.0421], + [51685,0.0374], + [51690,0.1194], + [51700,0.0463], + [51710,0.0527], + [51720,0.0519], + [51730,0.0729], + [51735,0.0305], + [51740,0.0515], + [51750,0.053], + [51760,0.0577], + [51770,0.0454], + [51775,0.0365], + [51790,0.0428], + [51800,0.0409], + [51810,0.0363], + [51820,0.049], + [51830,0.0857], + [51840,0.0455], + [53001,0.0658], + [53003,0.0667], + [53005,0.0541], + [53007,0.0594], + [53009,0.0755], + [53011,0.0751], + [53013,0.0754], + [53015,0.0867], + [53017,0.0566], + [53019,0.0941], + [53021,0.0655], + [53023,0.049], + [53025,0.0685], + [53027,0.0823], + [53029,0.0583], + [53031,0.0591], + [53033,0.0389], + [53035,0.0531], + [53037,0.0629], + [53039,0.0803], + [53041,0.0873], + [53043,0.0582], + [53045,0.075], + [53047,0.0689], + [53049,0.0811], + [53051,0.091], + [53053,0.0606], + [53055,0.0396], + [53057,0.0606], + [53059,0.0906], + [53061,0.0456], + [53063,0.0596], + [53065,0.0846], + [53067,0.0537], + [53069,0.0767], + [53071,0.052], + [53073,0.0531], + [53075,0.0434], + [53077,0.0733], + [54001,0.0489], + [54003,0.0474], + [54005,0.0391], + [54007,0.0515], + [54009,0.0572], + [54011,0.0386], + [54013,0.0685], + [54015,0.0627], + [54017,0.0494], + [54019,0.0463], + [54021,0.038], + [54023,0.0527], + [54025,0.0553], + [54027,0.0429], + [54029,0.0584], + [54031,0.0457], + [54033,0.0391], + [54035,0.0506], + [54037,0.038], + [54039,0.0352], + [54041,0.0419], + [54043,0.0468], + [54045,0.0416], + [54047,0.0591], + [54049,0.0359], + [54051,0.0511], + [54053,0.0701], + [54055,0.0404], + [54057,0.0456], + [54059,0.0424], + [54061,0.0278], + [54063,0.0448], + [54065,0.0529], + [54067,0.0461], + [54069,0.0417], + [54071,0.0431], + [54073,0.0585], + [54075,0.071], + [54077,0.0393], + [54079,0.0328], + [54081,0.0398], + [54083,0.0543], + [54085,0.0552], + [54087,0.0644], + [54089,0.0503], + [54091,0.0442], + [54093,0.0643], + [54095,0.0627], + [54097,0.0424], + [54099,0.047], + [54101,0.0553], + [54103,0.0719], + [54105,0.0605], + [54107,0.0472], + [54109,0.0471], + [55001,0.07], + [55003,0.0601], + [55005,0.0574], + [55007,0.067], + [55009,0.0458], + [55011,0.0426], + [55013,0.0715], + [55015,0.0427], + [55017,0.0527], + [55019,0.0557], + [55021,0.0508], + [55023,0.0597], + [55025,0.0343], + [55027,0.0507], + [55029,0.0541], + [55031,0.0526], + [55033,0.0444], + [55035,0.0414], + [55037,0.0594], + [55039,0.048], + [55041,0.0698], + [55043,0.0483], + [55045,0.047], + [55047,0.0559], + [55049,0.0468], + [55051,0.0794], + [55053,0.0571], + [55055,0.0488], + [55057,0.0598], + [55059,0.0546], + [55061,0.0445], + [55063,0.0394], + [55065,0.0422], + [55067,0.061], + [55069,0.0573], + [55071,0.0499], + [55073,0.0456], + [55075,0.0612], + [55077,0.0637], + [55078,0.1065], + [55079,0.0567], + [55081,0.0466], + [55083,0.0632], + [55085,0.0614], + [55087,0.0467], + [55089,0.0386], + [55091,0.0476], + [55093,0.0438], + [55095,0.0592], + [55097,0.0453], + [55099,0.0505], + [55101,0.058], + [55103,0.0473], + [55105,0.0626], + [55107,0.0702], + [55109,0.0448], + [55111,0.0492], + [55113,0.0701], + [55115,0.0522], + [55117,0.045], + [55119,0.0658], + [55121,0.0459], + [55123,0.049], + [55125,0.0644], + [55127,0.0476], + [55129,0.0667], + [55131,0.0436], + [55133,0.04], + [55135,0.0535], + [55137,0.0589], + [55139,0.0439], + [55141,0.0543], + [56001,0.0253], + [56003,0.0402], + [56005,0.0196], + [56007,0.0324], + [56009,0.0275], + [56011,0.029], + [56013,0.041], + [56015,0.0353], + [56017,0.0327], + [56019,0.0328], + [56021,0.0391], + [56023,0.0353], + [56025,0.0281], + [56027,0.034], + [56029,0.0353], + [56031,0.0406], + [56033,0.0308], + [56035,0.0163], + [56037,0.0237], + [56039,0.0293], + [56041,0.0289], + [56043,0.0354], + [56045,0.0319] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2009.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2009.json new file mode 100644 index 0000000..c0a90d7 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2009", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2009"], + [1001,0.0972], + [1003,0.0976], + [1005,0.1431], + [1007,0.1328], + [1009,0.1], + [1011,0.1559], + [1013,0.1636], + [1015,0.1112], + [1017,0.1961], + [1019,0.1169], + [1021,0.1065], + [1023,0.1348], + [1025,0.1654], + [1027,0.1666], + [1029,0.1018], + [1031,0.0851], + [1033,0.1162], + [1035,0.1993], + [1037,0.1605], + [1039,0.1081], + [1041,0.1042], + [1043,0.1026], + [1045,0.0965], + [1047,0.2112], + [1049,0.1426], + [1051,0.0947], + [1053,0.1349], + [1055,0.1146], + [1057,0.1403], + [1059,0.1342], + [1061,0.1077], + [1063,0.1527], + [1065,0.1425], + [1067,0.1119], + [1069,0.0929], + [1071,0.1276], + [1073,0.1075], + [1075,0.1601], + [1077,0.1066], + [1079,0.1364], + [1081,0.0941], + [1083,0.0978], + [1085,0.1933], + [1087,0.1222], + [1089,0.0804], + [1091,0.1421], + [1093,0.1658], + [1095,0.1016], + [1097,0.1129], + [1099,0.1948], + [1101,0.1049], + [1103,0.1081], + [1105,0.1987], + [1107,0.1368], + [1109,0.0951], + [1111,0.1488], + [1113,0.1235], + [1115,0.1089], + [1117,0.0778], + [1119,0.1491], + [1121,0.1439], + [1123,0.1357], + [1125,0.1016], + [1127,0.1164], + [1129,0.1508], + [1131,0.2604], + [1133,0.1772], + [2013,0.0989], + [2016,0.0702], + [2020,0.0652], + [2050,0.1411], + [2060,0.0478], + [2068,0.0829], + [2070,0.1018], + [2090,0.0708], + [2100,0.0904], + [2105,null], + [2110,0.0589], + [2122,0.0982], + [2130,0.0712], + [2150,0.0715], + [2158,null], + [2164,0.0809], + [2170,0.0889], + [2180,0.1167], + [2185,0.0473], + [2188,0.1191], + [2195,null], + [2198,null], + [2220,0.0622], + [2230,null], + [2240,0.0963], + [2261,0.0848], + [2275,null], + [2282,0.1146], + [2290,0.1408], + [4001,0.1578], + [4003,0.0797], + [4005,0.0852], + [4007,0.1137], + [4009,0.1505], + [4011,0.1893], + [4012,0.0988], + [4013,0.0911], + [4015,0.114], + [4017,0.1531], + [4019,0.0906], + [4021,0.1229], + [4023,0.1581], + [4025,0.1045], + [4027,0.2299], + [5001,0.1567], + [5003,0.1054], + [5005,0.0931], + [5007,0.0643], + [5009,0.0751], + [5011,0.0975], + [5013,0.0844], + [5015,0.0609], + [5017,0.1112], + [5019,0.0809], + [5021,0.1135], + [5023,0.0749], + [5025,0.0811], + [5027,0.0974], + [5029,0.0754], + [5031,0.0703], + [5033,0.0783], + [5035,0.109], + [5037,0.0835], + [5039,0.1018], + [5041,0.1132], + [5043,0.1102], + [5045,0.0695], + [5047,0.0726], + [5049,0.0746], + [5051,0.0762], + [5053,0.0712], + [5055,0.1005], + [5057,0.0826], + [5059,0.0861], + [5061,0.0803], + [5063,0.0878], + [5065,0.0916], + [5067,0.1094], + [5069,0.0983], + [5071,0.0719], + [5073,0.0953], + [5075,0.0919], + [5077,0.092], + [5079,0.099], + [5081,0.0602], + [5083,0.0923], + [5085,0.0626], + [5087,0.0676], + [5089,0.1183], + [5091,0.0565], + [5093,0.1393], + [5095,0.0812], + [5097,0.0705], + [5099,0.0929], + [5101,0.0795], + [5103,0.0803], + [5105,0.0785], + [5107,0.095], + [5109,0.0766], + [5111,0.0887], + [5113,0.0764], + [5115,0.0754], + [5117,0.0787], + [5119,0.0667], + [5121,0.0924], + [5123,0.1041], + [5125,0.066], + [5127,0.0684], + [5129,0.0771], + [5131,0.0765], + [5133,0.0587], + [5135,0.092], + [5137,0.0883], + [5139,0.1034], + [5141,0.1046], + [5143,0.0628], + [5145,0.0819], + [5147,0.1102], + [5149,0.0821], + [6001,0.1026], + [6003,0.1413], + [6005,0.1143], + [6007,0.1228], + [6009,0.136], + [6011,0.1759], + [6013,0.0995], + [6015,0.1178], + [6017,0.1086], + [6019,0.1468], + [6021,0.1414], + [6023,0.1069], + [6025,0.2737], + [6027,0.0896], + [6029,0.1406], + [6031,0.1424], + [6033,0.15], + [6035,0.1232], + [6037,0.1159], + [6039,0.1335], + [6041,0.0752], + [6043,0.1028], + [6045,0.1005], + [6047,0.1662], + [6049,0.1209], + [6051,0.0878], + [6053,0.1151], + [6055,0.0836], + [6057,0.1027], + [6059,0.0866], + [6061,0.1018], + [6063,0.1539], + [6065,0.131], + [6067,0.1102], + [6069,0.1396], + [6071,0.1266], + [6073,0.0939], + [6075,0.0868], + [6077,0.1494], + [6079,0.088], + [6081,0.0821], + [6083,0.0824], + [6085,0.1058], + [6087,0.1108], + [6089,0.1434], + [6091,0.1492], + [6093,0.1424], + [6095,0.1039], + [6097,0.094], + [6099,0.1551], + [6101,0.1645], + [6103,0.1364], + [6105,0.1679], + [6107,0.1485], + [6109,0.1217], + [6111,0.0964], + [6113,0.1102], + [6115,0.1684], + [8001,0.0846], + [8003,0.063], + [8005,0.0725], + [8007,0.0745], + [8009,0.0366], + [8011,0.0649], + [8013,0.0613], + [8014,0.0688], + [8015,0.0627], + [8017,0.0255], + [8019,0.0719], + [8021,0.0741], + [8023,0.0906], + [8025,0.0861], + [8027,0.0623], + [8029,0.0715], + [8031,0.0811], + [8033,0.1312], + [8035,0.0617], + [8037,0.0701], + [8039,0.0699], + [8041,0.0787], + [8043,0.0852], + [8045,0.0696], + [8047,0.0604], + [8049,0.0667], + [8051,0.0543], + [8053,0.0316], + [8055,0.0871], + [8057,0.041], + [8059,0.0713], + [8061,0.042], + [8063,0.0391], + [8065,0.0856], + [8067,0.0538], + [8069,0.0626], + [8071,0.0813], + [8073,0.0412], + [8075,0.0496], + [8077,0.0837], + [8079,0.0668], + [8081,0.0621], + [8083,0.0733], + [8085,0.081], + [8087,0.0538], + [8089,0.0683], + [8091,0.0562], + [8093,0.0695], + [8095,0.0357], + [8097,0.0601], + [8099,0.0581], + [8101,0.0819], + [8103,0.0487], + [8105,0.0608], + [8107,0.0651], + [8109,0.0804], + [8111,0.0737], + [8113,0.0592], + [8115,0.0372], + [8117,0.0607], + [8119,0.0755], + [8121,0.0399], + [8123,0.0818], + [8125,0.033], + [9001,0.0748], + [9003,0.0834], + [9005,0.0789], + [9007,0.0666], + [9009,0.0857], + [9011,0.0746], + [9013,0.0664], + [9015,0.0879], + [10001,0.0813], + [10003,0.0833], + [10005,0.0823], + [11001,0.0929], + [12001,0.0711], + [12003,0.1011], + [12005,0.0914], + [12007,0.0807], + [12009,0.1041], + [12011,0.0913], + [12013,0.0852], + [12015,0.1188], + [12017,0.121], + [12019,0.0928], + [12021,0.1109], + [12023,0.0925], + [12027,0.1008], + [12029,0.1143], + [12031,0.1052], + [12033,0.0988], + [12035,0.1473], + [12037,0.074], + [12039,0.0998], + [12041,0.0932], + [12043,0.0927], + [12045,0.0956], + [12047,0.1118], + [12049,0.1054], + [12051,0.1424], + [12053,0.1326], + [12055,0.1079], + [12057,0.1059], + [12059,0.08], + [12061,0.129], + [12063,0.0742], + [12065,0.0815], + [12067,0.0748], + [12069,0.1113], + [12071,0.123], + [12073,0.0706], + [12075,0.1146], + [12077,0.0577], + [12079,0.1067], + [12081,0.1159], + [12083,0.1277], + [12085,0.1097], + [12086,0.104], + [12087,0.0684], + [12089,0.0961], + [12091,0.0718], + [12093,0.1186], + [12095,0.1043], + [12097,0.1124], + [12099,0.107], + [12101,0.1191], + [12103,0.108], + [12105,0.1129], + [12107,0.1175], + [12109,0.084], + [12111,0.134], + [12113,0.0905], + [12115,0.1133], + [12117,0.0983], + [12119,0.0913], + [12121,0.0966], + [12123,0.1076], + [12125,0.0754], + [12127,0.1081], + [12129,0.0695], + [12131,0.0758], + [12133,0.1006], + [13001,0.101], + [13003,0.1496], + [13005,0.0939], + [13007,0.0927], + [13009,0.1242], + [13011,0.0763], + [13013,0.1061], + [13015,0.1213], + [13017,0.1562], + [13019,0.1304], + [13021,0.0972], + [13023,0.0996], + [13025,0.1089], + [13027,0.0858], + [13029,0.0783], + [13031,0.094], + [13033,0.1187], + [13035,0.1204], + [13037,0.1122], + [13039,0.0894], + [13043,0.0928], + [13045,0.1097], + [13047,0.0844], + [13049,0.1093], + [13051,0.0864], + [13053,0.1484], + [13055,0.1331], + [13057,0.0887], + [13059,0.076], + [13061,0.0856], + [13063,0.1178], + [13065,0.1101], + [13067,0.0913], + [13069,0.154], + [13071,0.0911], + [13073,0.0691], + [13075,0.1277], + [13077,0.0984], + [13079,0.1004], + [13081,0.122], + [13083,0.1046], + [13085,0.0997], + [13087,0.1266], + [13089,0.1002], + [13091,0.1074], + [13093,0.0993], + [13095,0.1054], + [13097,0.1082], + [13099,0.1051], + [13101,0.0721], + [13103,0.0824], + [13105,0.1223], + [13107,0.1069], + [13109,0.0875], + [13111,0.105], + [13113,0.0843], + [13115,0.1055], + [13117,0.0816], + [13119,0.1188], + [13121,0.1011], + [13123,0.1038], + [13125,0.1139], + [13127,0.0845], + [13129,0.1297], + [13131,0.0971], + [13133,0.1135], + [13135,0.0899], + [13137,0.1], + [13139,0.0937], + [13141,0.196], + [13143,0.1203], + [13145,0.0726], + [13147,0.1345], + [13149,0.1304], + [13151,0.0975], + [13153,0.0719], + [13155,0.1509], + [13157,0.111], + [13159,0.1254], + [13161,0.1378], + [13163,0.1447], + [13165,0.195], + [13167,0.1251], + [13169,0.0857], + [13171,0.1356], + [13173,0.0906], + [13175,0.112], + [13177,0.0724], + [13179,0.0849], + [13181,0.1089], + [13183,0.0654], + [13185,0.0848], + [13187,0.1174], + [13189,0.1141], + [13191,0.1014], + [13193,0.1241], + [13195,0.0872], + [13197,0.0995], + [13199,0.1377], + [13201,0.0869], + [13205,0.1001], + [13207,0.0908], + [13209,0.0897], + [13211,0.0996], + [13213,0.1298], + [13215,0.0908], + [13217,0.1225], + [13219,0.0622], + [13221,0.0849], + [13223,0.1012], + [13225,0.1035], + [13227,0.106], + [13229,0.0938], + [13231,0.1096], + [13233,0.1077], + [13235,0.078], + [13237,0.1096], + [13239,0.1188], + [13241,0.1039], + [13243,0.1217], + [13245,0.101], + [13247,0.1114], + [13249,0.1272], + [13251,0.1416], + [13253,0.1078], + [13255,0.1418], + [13257,0.1061], + [13259,0.1062], + [13261,0.1298], + [13263,0.0944], + [13265,0.1453], + [13267,0.0901], + [13269,0.1189], + [13271,0.1393], + [13273,0.1036], + [13275,0.092], + [13277,0.1096], + [13279,0.0989], + [13281,0.0869], + [13283,0.1145], + [13285,0.129], + [13287,0.1407], + [13289,0.1107], + [13291,0.0947], + [13293,0.1294], + [13295,0.1092], + [13297,0.1039], + [13299,0.1086], + [13301,0.1807], + [13303,0.1372], + [13305,0.1176], + [13307,0.0997], + [13309,0.0962], + [13311,0.0977], + [13313,0.1276], + [13315,0.1199], + [13317,0.1192], + [13319,0.1111], + [13321,0.1008], + [15001,0.1019], + [15003,0.0604], + [15005,null], + [15007,0.0977], + [15009,0.0913], + [16001,0.0891], + [16003,0.1634], + [16005,0.0784], + [16007,0.0594], + [16009,0.1497], + [16011,0.0657], + [16013,0.0836], + [16015,0.0898], + [16017,0.1111], + [16019,0.0637], + [16021,0.1356], + [16023,0.0571], + [16025,0.1054], + [16027,0.1126], + [16029,0.0667], + [16031,0.0598], + [16033,0.0601], + [16035,0.1482], + [16037,0.0609], + [16039,0.0853], + [16041,0.0554], + [16043,0.089], + [16045,0.117], + [16047,0.0624], + [16049,0.111], + [16051,0.0702], + [16053,0.071], + [16055,0.101], + [16057,0.0681], + [16059,0.0901], + [16061,0.0607], + [16063,0.1196], + [16065,0.0609], + [16067,0.0671], + [16069,0.0678], + [16071,0.0626], + [16073,0.0446], + [16075,0.0992], + [16077,0.0813], + [16079,0.1412], + [16081,0.0694], + [16083,0.07], + [16085,0.1442], + [16087,0.0992], + [17001,0.073], + [17003,0.1227], + [17005,0.0988], + [17007,0.1544], + [17009,0.045], + [17011,0.1054], + [17013,0.1002], + [17015,0.1087], + [17017,0.0694], + [17019,0.0832], + [17021,0.1], + [17023,0.1305], + [17025,0.1257], + [17027,0.0847], + [17029,0.0908], + [17031,0.1054], + [17033,0.0994], + [17035,0.0982], + [17037,0.1001], + [17039,0.0852], + [17041,0.0874], + [17043,0.0857], + [17045,0.1027], + [17047,0.0914], + [17049,0.0805], + [17051,0.1101], + [17053,0.0999], + [17055,0.1304], + [17057,0.1137], + [17059,0.1001], + [17061,0.0837], + [17063,0.1222], + [17065,0.0941], + [17067,0.1111], + [17069,0.1097], + [17071,0.0955], + [17073,0.0918], + [17075,0.0958], + [17077,0.073], + [17079,0.0919], + [17081,0.0956], + [17083,0.0939], + [17085,0.0897], + [17087,0.1052], + [17089,0.1045], + [17091,0.1224], + [17093,0.1013], + [17095,0.0963], + [17097,0.0984], + [17099,0.1219], + [17101,0.1002], + [17103,0.1047], + [17105,0.1028], + [17107,0.0927], + [17109,0.0858], + [17111,0.0982], + [17113,0.0724], + [17115,0.1147], + [17117,0.106], + [17119,0.1024], + [17121,0.1193], + [17123,0.105], + [17125,0.1229], + [17127,0.0898], + [17129,0.074], + [17131,0.1031], + [17133,0.078], + [17135,0.1187], + [17137,0.0808], + [17139,0.0871], + [17141,0.1245], + [17143,0.1102], + [17145,0.1199], + [17147,0.0801], + [17149,0.0805], + [17151,0.1036], + [17153,0.1111], + [17155,0.1358], + [17157,0.0924], + [17159,0.1006], + [17161,0.0921], + [17163,0.109], + [17165,0.0991], + [17167,0.0746], + [17169,0.0672], + [17171,0.0779], + [17173,0.0985], + [17175,0.1036], + [17177,0.114], + [17179,0.1055], + [17181,0.1119], + [17183,0.1154], + [17185,0.1039], + [17187,0.0746], + [17189,0.0809], + [17191,0.0997], + [17193,0.086], + [17195,0.1035], + [17197,0.1033], + [17199,0.0925], + [17201,0.1504], + [17203,0.0824], + [18001,0.146], + [18003,0.1048], + [18005,0.0958], + [18007,0.0997], + [18009,0.1405], + [18011,0.0774], + [18013,0.0992], + [18015,0.106], + [18017,0.1201], + [18019,0.0871], + [18021,0.1125], + [18023,0.1076], + [18025,0.1226], + [18027,0.0587], + [18029,0.0982], + [18031,0.124], + [18033,0.1366], + [18035,0.1067], + [18037,0.0746], + [18039,0.1787], + [18041,0.1515], + [18043,0.0854], + [18045,0.1268], + [18047,0.1049], + [18049,0.1273], + [18051,0.0874], + [18053,0.1174], + [18055,0.0851], + [18057,0.0659], + [18059,0.0853], + [18061,0.0919], + [18063,0.0763], + [18065,0.1267], + [18067,0.1477], + [18069,0.1281], + [18071,0.1113], + [18073,0.1017], + [18075,0.1127], + [18077,0.1087], + [18079,0.136], + [18081,0.0827], + [18083,0.0741], + [18085,0.1236], + [18087,0.1739], + [18089,0.1065], + [18091,0.1186], + [18093,0.1317], + [18095,0.1091], + [18097,0.0933], + [18099,0.135], + [18101,0.0728], + [18103,0.1446], + [18105,0.0647], + [18107,0.1015], + [18109,0.0918], + [18111,0.1118], + [18113,0.1716], + [18115,0.1078], + [18117,0.1069], + [18119,0.0943], + [18121,0.1], + [18123,0.102], + [18125,0.0956], + [18127,0.0934], + [18129,0.0815], + [18131,0.1043], + [18133,0.109], + [18135,0.1196], + [18137,0.1082], + [18139,0.105], + [18141,0.1149], + [18143,0.1294], + [18145,0.1044], + [18147,0.092], + [18149,0.1419], + [18151,0.1455], + [18153,0.0993], + [18155,0.0791], + [18157,0.0911], + [18159,0.1301], + [18161,0.1024], + [18163,0.0821], + [18165,0.121], + [18167,0.1011], + [18169,0.1305], + [18171,0.1048], + [18173,0.077], + [18175,0.1195], + [18177,0.1235], + [18179,0.1067], + [18181,0.1106], + [18183,0.1258], + [19001,0.0578], + [19003,0.0608], + [19005,0.1021], + [19007,0.0866], + [19009,0.0583], + [19011,0.0631], + [19013,0.061], + [19015,0.0594], + [19017,0.0541], + [19019,0.0661], + [19021,0.0524], + [19023,0.0656], + [19025,0.0516], + [19027,0.0421], + [19029,0.0675], + [19031,0.0559], + [19033,0.0693], + [19035,0.0457], + [19037,0.0888], + [19039,0.0762], + [19041,0.0681], + [19043,0.0857], + [19045,0.0725], + [19047,0.0462], + [19049,0.0494], + [19051,0.0913], + [19053,0.0673], + [19055,0.0672], + [19057,0.0804], + [19059,0.0712], + [19061,0.066], + [19063,0.0828], + [19065,0.0861], + [19067,0.0875], + [19069,0.074], + [19071,0.0688], + [19073,0.0588], + [19075,0.0582], + [19077,0.0628], + [19079,0.0762], + [19081,0.1], + [19083,0.0656], + [19085,0.0496], + [19087,0.0932], + [19089,0.0879], + [19091,0.0594], + [19093,0.0542], + [19095,0.0712], + [19097,0.0836], + [19099,0.0858], + [19101,0.0862], + [19103,0.0445], + [19105,0.0715], + [19107,0.0798], + [19109,0.0588], + [19111,0.1023], + [19113,0.0606], + [19115,0.0827], + [19117,0.064], + [19119,0.0428], + [19121,0.0674], + [19123,0.0829], + [19125,0.0667], + [19127,0.0732], + [19129,0.0458], + [19131,0.0588], + [19133,0.0749], + [19135,0.0759], + [19137,0.0894], + [19139,0.0869], + [19141,0.053], + [19143,0.0617], + [19145,0.0858], + [19147,0.0709], + [19149,0.0466], + [19151,0.0574], + [19153,0.0613], + [19155,0.051], + [19157,0.0682], + [19159,0.0554], + [19161,0.0509], + [19163,0.0708], + [19165,0.04], + [19167,0.0436], + [19169,0.0474], + [19171,0.0722], + [19173,0.0687], + [19175,0.0659], + [19177,0.0881], + [19179,0.0874], + [19181,0.0587], + [19183,0.0555], + [19185,0.0633], + [19187,0.0741], + [19189,0.0943], + [19191,0.0625], + [19193,0.0569], + [19195,0.0716], + [19197,0.0736], + [20001,0.0782], + [20003,0.0763], + [20005,0.092], + [20007,0.0445], + [20009,0.0563], + [20011,0.0697], + [20013,0.0563], + [20015,0.0735], + [20017,0.053], + [20019,0.0878], + [20021,0.0841], + [20023,0.0353], + [20025,0.0367], + [20027,0.0446], + [20029,0.0442], + [20031,0.0579], + [20033,0.0353], + [20035,0.0695], + [20037,0.0854], + [20039,0.0369], + [20041,0.052], + [20043,0.104], + [20045,0.0572], + [20047,0.0421], + [20049,0.0819], + [20051,0.0388], + [20053,0.0418], + [20055,0.0439], + [20057,0.0349], + [20059,0.0916], + [20061,0.0737], + [20063,0.0296], + [20065,0.0444], + [20067,0.039], + [20069,0.0302], + [20071,0.0382], + [20073,0.0665], + [20075,0.0394], + [20077,0.0507], + [20079,0.0704], + [20081,0.0335], + [20083,0.0399], + [20085,0.0696], + [20087,0.0758], + [20089,0.0421], + [20091,0.0653], + [20093,0.0442], + [20095,0.0561], + [20097,0.0348], + [20099,0.0858], + [20101,0.0333], + [20103,0.0802], + [20105,0.0549], + [20107,0.1118], + [20109,0.0329], + [20111,0.0613], + [20113,0.0494], + [20115,0.0552], + [20117,0.0558], + [20119,0.0383], + [20121,0.082], + [20123,0.0464], + [20125,0.0983], + [20127,0.0697], + [20129,0.0415], + [20131,0.0409], + [20133,0.0843], + [20135,0.0392], + [20137,0.0438], + [20139,0.0775], + [20141,0.0444], + [20143,0.0556], + [20145,0.0384], + [20147,0.0616], + [20149,0.0568], + [20151,0.0496], + [20153,0.0394], + [20155,0.0583], + [20157,0.0421], + [20159,0.0501], + [20161,0.0445], + [20163,0.067], + [20165,0.0569], + [20167,0.0494], + [20169,0.055], + [20171,0.0301], + [20173,0.0841], + [20175,0.0488], + [20177,0.0654], + [20179,0.0281], + [20181,0.0398], + [20183,0.0475], + [20185,0.0519], + [20187,0.0329], + [20189,0.0475], + [20191,0.0868], + [20193,0.0371], + [20195,0.0375], + [20197,0.0725], + [20199,0.0598], + [20201,0.0484], + [20203,0.0336], + [20205,0.1078], + [20207,0.0854], + [20209,0.1067], + [21001,0.1075], + [21003,0.1439], + [21005,0.1039], + [21007,0.0996], + [21009,0.1232], + [21011,0.1542], + [21013,0.1199], + [21015,0.0896], + [21017,0.0964], + [21019,0.0839], + [21021,0.1133], + [21023,0.1124], + [21025,0.1019], + [21027,0.1176], + [21029,0.1077], + [21031,0.1429], + [21033,0.0997], + [21035,0.0832], + [21037,0.0995], + [21039,0.0881], + [21041,0.1304], + [21043,0.1246], + [21045,0.1059], + [21047,0.1232], + [21049,0.1099], + [21051,0.1367], + [21053,0.0942], + [21055,0.1056], + [21057,0.1283], + [21059,0.0928], + [21061,0.1363], + [21063,0.1341], + [21065,0.1246], + [21067,0.0779], + [21069,0.1232], + [21071,0.1091], + [21073,0.0889], + [21075,0.127], + [21077,0.1211], + [21079,0.1177], + [21081,0.1152], + [21083,0.0995], + [21085,0.1469], + [21087,0.1179], + [21089,0.0929], + [21091,0.1172], + [21093,0.1029], + [21095,0.1088], + [21097,0.1137], + [21099,0.1033], + [21101,0.1064], + [21103,0.1049], + [21105,0.0884], + [21107,0.0923], + [21109,0.1641], + [21111,0.1014], + [21113,0.0907], + [21115,0.1029], + [21117,0.0985], + [21119,0.1056], + [21121,0.1158], + [21123,0.1183], + [21125,0.1019], + [21127,0.1184], + [21129,0.1171], + [21131,0.1242], + [21133,0.1067], + [21135,0.1517], + [21137,0.1256], + [21139,0.0988], + [21141,0.1089], + [21143,0.1228], + [21145,0.0876], + [21147,0.1401], + [21149,0.1046], + [21151,0.091], + [21153,0.1842], + [21155,0.1321], + [21157,0.1057], + [21159,0.1131], + [21161,0.1082], + [21163,0.1287], + [21165,0.1645], + [21167,0.1133], + [21169,0.1563], + [21171,0.1387], + [21173,0.124], + [21175,0.1363], + [21177,0.1078], + [21179,0.1236], + [21181,0.1216], + [21183,0.0971], + [21185,0.0834], + [21187,0.0977], + [21189,0.1047], + [21191,0.1233], + [21193,0.1069], + [21195,0.0962], + [21197,0.1553], + [21199,0.1035], + [21201,0.0993], + [21203,0.1323], + [21205,0.0911], + [21207,0.1199], + [21209,0.0964], + [21211,0.0937], + [21213,0.1291], + [21215,0.103], + [21217,0.1044], + [21219,0.1195], + [21221,0.1544], + [21223,0.1171], + [21225,0.1135], + [21227,0.0991], + [21229,0.1297], + [21231,0.1375], + [21233,0.0959], + [21235,0.1128], + [21237,0.1344], + [21239,0.0823], + [22001,0.0645], + [22003,0.0937], + [22005,0.0594], + [22007,0.0804], + [22009,0.075], + [22011,0.0788], + [22013,0.0958], + [22015,0.0602], + [22017,0.077], + [22019,0.063], + [22021,0.0954], + [22023,0.0588], + [22025,0.1016], + [22027,0.0936], + [22029,0.1108], + [22031,0.0847], + [22033,0.062], + [22035,0.1304], + [22037,0.0721], + [22039,0.0789], + [22041,0.1076], + [22043,0.0781], + [22045,0.0688], + [22047,0.0948], + [22049,0.0766], + [22051,0.0631], + [22053,0.058], + [22055,0.0509], + [22057,0.0456], + [22059,0.0684], + [22061,0.0744], + [22063,0.061], + [22065,0.0945], + [22067,0.1447], + [22069,0.0809], + [22071,0.0792], + [22073,0.0695], + [22075,0.065], + [22077,0.0694], + [22079,0.0638], + [22081,0.0953], + [22083,0.0975], + [22085,0.0814], + [22087,0.0623], + [22089,0.0652], + [22091,0.1085], + [22093,0.0927], + [22095,0.0862], + [22097,0.0741], + [22099,0.0658], + [22101,0.0756], + [22103,0.0543], + [22105,0.0764], + [22107,0.1204], + [22109,0.0483], + [22111,0.1064], + [22113,0.0658], + [22115,0.067], + [22117,0.0879], + [22119,0.0866], + [22121,0.0669], + [22123,0.1628], + [22125,0.0751], + [22127,0.0838], + [23001,0.0841], + [23003,0.0973], + [23005,0.0646], + [23007,0.1042], + [23009,0.0867], + [23011,0.0757], + [23013,0.0789], + [23015,0.0757], + [23017,0.1071], + [23019,0.082], + [23021,0.1223], + [23023,0.0712], + [23025,0.1095], + [23027,0.0887], + [23029,0.1101], + [23031,0.0766], + [24001,0.0851], + [24003,0.0636], + [24005,0.0742], + [24009,0.0585], + [24011,0.09], + [24013,0.0641], + [24015,0.0907], + [24017,0.0585], + [24019,0.1065], + [24021,0.0628], + [24023,0.0776], + [24025,0.0713], + [24027,0.0518], + [24029,0.0758], + [24031,0.0533], + [24033,0.0694], + [24035,0.0667], + [24037,0.0559], + [24039,0.0946], + [24041,0.0724], + [24043,0.0969], + [24045,0.0834], + [24047,0.1091], + [24510,0.1021], + [25001,0.0837], + [25003,0.077], + [25005,0.1065], + [25007,0.0638], + [25009,0.0866], + [25011,0.0759], + [25013,0.0931], + [25015,0.0645], + [25017,0.0688], + [25019,0.0675], + [25021,0.073], + [25023,0.0848], + [25025,0.0773], + [25027,0.0888], + [26001,0.188], + [26003,0.1367], + [26005,0.1289], + [26007,0.1383], + [26009,0.1521], + [26011,0.1665], + [26013,0.2424], + [26015,0.1037], + [26017,0.1194], + [26019,0.1377], + [26021,0.1274], + [26023,0.1414], + [26025,0.1176], + [26027,0.1136], + [26029,0.1475], + [26031,0.1383], + [26033,0.1269], + [26035,0.1658], + [26037,0.0944], + [26039,0.1351], + [26041,0.1226], + [26043,0.1162], + [26045,0.1042], + [26047,0.1427], + [26049,0.1488], + [26051,0.1653], + [26053,0.1292], + [26055,0.1182], + [26057,0.1397], + [26059,0.1735], + [26061,0.1081], + [26063,0.1461], + [26065,0.1142], + [26067,0.1407], + [26069,0.1773], + [26071,0.1208], + [26073,0.0888], + [26075,0.1357], + [26077,0.1018], + [26079,0.1441], + [26081,0.1097], + [26083,0.1416], + [26085,0.1667], + [26087,0.1739], + [26089,0.0928], + [26091,0.1554], + [26093,0.1194], + [26095,0.1326], + [26097,0.14], + [26099,0.1582], + [26101,0.1296], + [26103,0.1039], + [26105,0.1329], + [26107,0.1287], + [26109,0.1187], + [26111,0.0972], + [26113,0.1556], + [26115,0.1455], + [26117,0.1663], + [26119,0.2071], + [26121,0.1492], + [26123,0.1391], + [26125,0.1299], + [26127,0.1611], + [26129,0.1352], + [26131,0.1576], + [26133,0.1525], + [26135,0.2127], + [26137,0.1466], + [26139,0.1246], + [26141,0.1873], + [26143,0.1509], + [26145,0.1253], + [26147,0.1771], + [26149,0.1473], + [26151,0.1751], + [26153,0.1456], + [26155,0.1488], + [26157,0.1588], + [26159,0.1277], + [26161,0.0863], + [26163,0.1623], + [26165,0.1757], + [27001,0.1026], + [27003,0.0836], + [27005,0.0856], + [27007,0.0863], + [27009,0.0845], + [27011,0.0574], + [27013,0.0642], + [27015,0.073], + [27017,0.0847], + [27019,0.0724], + [27021,0.1061], + [27023,0.0774], + [27025,0.0991], + [27027,0.0479], + [27029,0.1466], + [27031,0.07], + [27033,0.0628], + [27035,0.0964], + [27037,0.072], + [27039,0.0738], + [27041,0.0665], + [27043,0.0917], + [27045,0.0808], + [27047,0.0842], + [27049,0.0762], + [27051,0.0835], + [27053,0.0726], + [27055,0.0795], + [27057,0.0995], + [27059,0.1004], + [27061,0.1076], + [27063,0.0542], + [27065,0.1305], + [27067,0.0668], + [27069,0.0717], + [27071,0.0942], + [27073,0.0609], + [27075,0.0906], + [27077,0.0757], + [27079,0.1059], + [27081,0.0581], + [27083,0.0579], + [27085,0.095], + [27087,0.0776], + [27089,0.0978], + [27091,0.0748], + [27093,0.0954], + [27095,0.1253], + [27097,0.1101], + [27099,0.0624], + [27101,0.0566], + [27103,0.0625], + [27105,0.0522], + [27107,0.064], + [27109,0.0611], + [27111,0.0796], + [27113,0.0881], + [27115,0.1117], + [27117,0.0633], + [27119,0.0588], + [27121,0.0711], + [27123,0.0761], + [27125,0.1007], + [27127,0.0673], + [27129,0.0784], + [27131,0.0849], + [27133,0.053], + [27135,0.0759], + [27137,0.0914], + [27139,0.0727], + [27141,0.0907], + [27143,0.0786], + [27145,0.0776], + [27147,0.0859], + [27149,0.0535], + [27151,0.0715], + [27153,0.0891], + [27155,0.0664], + [27157,0.076], + [27159,0.1089], + [27161,0.0819], + [27163,0.0724], + [27165,0.0883], + [27167,0.0536], + [27169,0.0765], + [27171,0.0895], + [27173,0.0642], + [28001,0.0914], + [28003,0.1186], + [28005,0.1065], + [28007,0.1335], + [28009,0.1417], + [28011,0.1061], + [28013,0.1108], + [28015,0.1074], + [28017,0.1326], + [28019,0.122], + [28021,0.156], + [28023,0.1111], + [28025,0.1774], + [28027,0.121], + [28029,0.1019], + [28031,0.0823], + [28033,0.0713], + [28035,0.0784], + [28037,0.1111], + [28039,0.1003], + [28041,0.1158], + [28043,0.1227], + [28045,0.0799], + [28047,0.0767], + [28049,0.0824], + [28051,0.1919], + [28053,0.1259], + [28055,0.1148], + [28057,0.1153], + [28059,0.0827], + [28061,0.1063], + [28063,0.1667], + [28065,0.1044], + [28067,0.0744], + [28069,0.1258], + [28071,0.0797], + [28073,0.0668], + [28075,0.0947], + [28077,0.1114], + [28079,0.0922], + [28081,0.1052], + [28083,0.1255], + [28085,0.1026], + [28087,0.1059], + [28089,0.0687], + [28091,0.1018], + [28093,0.118], + [28095,0.138], + [28097,0.1392], + [28099,0.0925], + [28101,0.092], + [28103,0.1855], + [28105,0.0877], + [28107,0.1224], + [28109,0.0903], + [28111,0.1075], + [28113,0.1011], + [28115,0.1021], + [28117,0.1289], + [28119,0.1239], + [28121,0.0601], + [28123,0.0701], + [28125,0.1079], + [28127,0.0858], + [28129,0.0914], + [28131,0.0794], + [28133,0.1274], + [28135,0.1121], + [28137,0.1071], + [28139,0.1473], + [28141,0.1252], + [28143,0.1455], + [28145,0.1037], + [28147,0.1133], + [28149,0.0981], + [28151,0.1359], + [28153,0.1079], + [28155,0.1373], + [28157,0.1079], + [28159,0.1682], + [28161,0.1413], + [28163,0.1167], + [29001,0.066], + [29003,0.077], + [29005,0.0733], + [29007,0.0933], + [29009,0.0822], + [29011,0.1066], + [29013,0.1065], + [29015,0.0995], + [29017,0.1028], + [29019,0.0631], + [29021,0.0849], + [29023,0.0807], + [29025,0.0975], + [29027,0.0807], + [29029,0.0969], + [29031,0.0727], + [29033,0.1041], + [29035,0.0976], + [29037,0.0956], + [29039,0.0913], + [29041,0.0977], + [29043,0.0822], + [29045,0.1199], + [29047,0.0841], + [29049,0.0981], + [29051,0.0681], + [29053,0.0889], + [29055,0.11], + [29057,0.0887], + [29059,0.1163], + [29061,0.0891], + [29063,0.0945], + [29065,0.0949], + [29067,0.0885], + [29069,0.1072], + [29071,0.1203], + [29073,0.1155], + [29075,0.0632], + [29077,0.0838], + [29079,0.0767], + [29081,0.0765], + [29083,0.0955], + [29085,0.1338], + [29087,0.0707], + [29089,0.0842], + [29091,0.0966], + [29093,0.0883], + [29095,0.1018], + [29097,0.0816], + [29099,0.1058], + [29101,0.0845], + [29103,0.0602], + [29105,0.1251], + [29107,0.0975], + [29109,0.0831], + [29111,0.0827], + [29113,0.1183], + [29115,0.0954], + [29117,0.0773], + [29119,0.0779], + [29121,0.0844], + [29123,0.1027], + [29125,0.0806], + [29127,0.0943], + [29129,0.0727], + [29131,0.1165], + [29133,0.0867], + [29135,0.0816], + [29137,0.1293], + [29139,0.118], + [29141,0.1256], + [29143,0.0932], + [29145,0.081], + [29147,0.0638], + [29149,0.0916], + [29151,0.0675], + [29153,0.0813], + [29155,0.1176], + [29157,0.0705], + [29159,0.0872], + [29161,0.0729], + [29163,0.0908], + [29165,0.077], + [29167,0.0997], + [29169,0.0715], + [29171,0.0729], + [29173,0.0876], + [29175,0.1062], + [29177,0.1003], + [29179,0.1307], + [29181,0.0941], + [29183,0.0852], + [29185,0.0979], + [29186,0.094], + [29187,0.1101], + [29189,0.0897], + [29195,0.0778], + [29197,0.0797], + [29199,0.0794], + [29201,0.0887], + [29203,0.1215], + [29205,0.0884], + [29207,0.0954], + [29209,0.1205], + [29211,0.0676], + [29213,0.12], + [29215,0.092], + [29217,0.0782], + [29219,0.1132], + [29221,0.1421], + [29223,0.0908], + [29225,0.0966], + [29227,0.075], + [29229,0.1016], + [29510,0.1168], + [30001,0.05], + [30003,0.095], + [30005,0.0514], + [30007,0.0772], + [30009,0.0572], + [30011,0.0377], + [30013,0.0542], + [30015,0.0402], + [30017,0.0489], + [30019,0.041], + [30021,0.0474], + [30023,0.0757], + [30025,0.0317], + [30027,0.0548], + [30029,0.1182], + [30031,0.0695], + [30033,0.0368], + [30035,0.0931], + [30037,0.0523], + [30039,0.1038], + [30041,0.0547], + [30043,0.0636], + [30045,0.0533], + [30047,0.0923], + [30049,0.0504], + [30051,0.0426], + [30053,0.1475], + [30055,0.0325], + [30057,0.0635], + [30059,0.0852], + [30061,0.1047], + [30063,0.0632], + [30065,0.0664], + [30067,0.0799], + [30069,0.0551], + [30071,0.0563], + [30073,0.0626], + [30075,0.04], + [30077,0.0912], + [30079,0.0407], + [30081,0.092], + [30083,0.0474], + [30085,0.0776], + [30087,0.0673], + [30089,0.1556], + [30091,0.0431], + [30093,0.0629], + [30095,0.0617], + [30097,0.0462], + [30099,0.0496], + [30101,0.0432], + [30103,0.0524], + [30105,0.0524], + [30107,0.0575], + [30109,0.047], + [30111,0.0495], + [31001,0.0505], + [31003,0.0372], + [31005,0.0579], + [31007,0.0341], + [31009,0.0536], + [31011,0.0341], + [31013,0.0659], + [31015,0.0389], + [31017,0.031], + [31019,0.0361], + [31021,0.0555], + [31023,0.0419], + [31025,0.0521], + [31027,0.0363], + [31029,0.0288], + [31031,0.0261], + [31033,0.0444], + [31035,0.0435], + [31037,0.0372], + [31039,0.0381], + [31041,0.0331], + [31043,0.0604], + [31045,0.044], + [31047,0.0462], + [31049,0.0393], + [31051,0.0468], + [31053,0.0504], + [31055,0.0516], + [31057,0.0394], + [31059,0.0407], + [31061,0.0386], + [31063,0.0314], + [31065,0.0367], + [31067,0.0624], + [31069,0.0426], + [31071,0.0295], + [31073,0.0389], + [31075,0.0353], + [31077,0.0353], + [31079,0.0424], + [31081,0.0325], + [31083,0.0368], + [31085,0.0406], + [31087,0.055], + [31089,0.0311], + [31091,0.051], + [31093,0.0368], + [31095,0.0481], + [31097,0.0419], + [31099,0.0389], + [31101,0.045], + [31103,0.0477], + [31105,0.0478], + [31107,0.0356], + [31109,0.0431], + [31111,0.04], + [31113,0.0306], + [31115,0.0506], + [31117,0.0377], + [31119,0.0434], + [31121,0.0416], + [31123,0.0423], + [31125,0.033], + [31127,0.0524], + [31129,0.0454], + [31131,0.0497], + [31133,0.0369], + [31135,0.0299], + [31137,0.0355], + [31139,0.0395], + [31141,0.0408], + [31143,0.0374], + [31145,0.0449], + [31147,0.0604], + [31149,0.0296], + [31151,0.0457], + [31153,0.0464], + [31155,0.0503], + [31157,0.0514], + [31159,0.041], + [31161,0.0392], + [31163,0.0319], + [31165,0.034], + [31167,0.0413], + [31169,0.0425], + [31171,0.0446], + [31173,0.1051], + [31175,0.033], + [31177,0.046], + [31179,0.0391], + [31181,0.0386], + [31183,0.0368], + [31185,0.0487], + [32001,0.0863], + [32003,0.1149], + [32005,0.1154], + [32007,0.0627], + [32009,0.0695], + [32011,0.0659], + [32013,0.0729], + [32015,0.0581], + [32017,0.0888], + [32019,0.1544], + [32021,0.0863], + [32023,0.1386], + [32027,0.0974], + [32029,0.1179], + [32031,0.111], + [32033,0.0694], + [32510,0.1105], + [33001,0.0667], + [33003,0.056], + [33005,0.0573], + [33007,0.0794], + [33009,0.0513], + [33011,0.0647], + [33013,0.0564], + [33015,0.0659], + [33017,0.062], + [33019,0.0575], + [34001,0.1189], + [34003,0.0779], + [34005,0.0843], + [34007,0.099], + [34009,0.1121], + [34011,0.1253], + [34013,0.1033], + [34015,0.0924], + [34017,0.1052], + [34019,0.0669], + [34021,0.0759], + [34023,0.0851], + [34025,0.0833], + [34027,0.0707], + [34029,0.0954], + [34031,0.1101], + [34033,0.1062], + [34035,0.0725], + [34037,0.0858], + [34039,0.093], + [34041,0.0874], + [35001,0.0753], + [35003,0.0919], + [35005,0.0698], + [35006,0.0684], + [35007,0.0761], + [35009,0.0452], + [35011,0.0519], + [35013,0.0734], + [35015,0.0587], + [35017,0.1278], + [35019,0.0786], + [35021,0.0491], + [35023,0.0821], + [35025,0.079], + [35027,0.0584], + [35028,0.0326], + [35029,0.1754], + [35031,0.0833], + [35033,0.1281], + [35035,0.0675], + [35037,0.0679], + [35039,0.0763], + [35041,0.0481], + [35043,0.0852], + [35045,0.0788], + [35047,0.0735], + [35049,0.0656], + [35051,0.0577], + [35053,0.0526], + [35055,0.0886], + [35057,0.0941], + [35059,0.0556], + [35061,0.0854], + [36001,0.0677], + [36003,0.0871], + [36005,0.1203], + [36007,0.0815], + [36009,0.0861], + [36011,0.0825], + [36013,0.0829], + [36015,0.089], + [36017,0.0892], + [36019,0.0931], + [36021,0.0735], + [36023,0.0912], + [36025,0.0854], + [36027,0.0766], + [36029,0.081], + [36031,0.0911], + [36033,0.085], + [36035,0.0961], + [36037,0.0763], + [36039,0.0832], + [36041,0.0749], + [36043,0.0795], + [36045,0.0883], + [36047,0.0993], + [36049,0.0877], + [36051,0.084], + [36053,0.0807], + [36055,0.0785], + [36057,0.0945], + [36059,0.069], + [36061,0.0844], + [36063,0.0927], + [36065,0.0737], + [36067,0.0764], + [36069,0.0725], + [36071,0.0782], + [36073,0.0932], + [36075,0.0981], + [36077,0.0752], + [36079,0.0669], + [36081,0.0841], + [36083,0.0741], + [36085,0.0821], + [36087,0.0688], + [36089,0.098], + [36091,0.0634], + [36093,0.0727], + [36095,0.0888], + [36097,0.0834], + [36099,0.0758], + [36101,0.0965], + [36103,0.0728], + [36105,0.0868], + [36107,0.0808], + [36109,0.0585], + [36111,0.077], + [36113,0.079], + [36115,0.0744], + [36117,0.0832], + [36119,0.0708], + [36121,0.0895], + [36123,0.0674], + [37001,0.1167], + [37003,0.1387], + [37005,0.1185], + [37007,0.1479], + [37009,0.1199], + [37011,0.0925], + [37013,0.1137], + [37015,0.1094], + [37017,0.1218], + [37019,0.1072], + [37021,0.0832], + [37023,0.1414], + [37025,0.1097], + [37027,0.1504], + [37029,0.0838], + [37031,0.0866], + [37033,0.125], + [37035,0.1395], + [37037,0.0792], + [37039,0.1531], + [37041,0.1179], + [37043,0.1166], + [37045,0.1505], + [37047,0.1288], + [37049,0.1037], + [37051,0.0893], + [37053,0.0686], + [37055,0.1009], + [37057,0.1278], + [37059,0.1135], + [37061,0.0943], + [37063,0.0776], + [37065,0.1583], + [37067,0.0946], + [37069,0.1027], + [37071,0.1377], + [37073,0.074], + [37075,0.1713], + [37077,0.105], + [37079,0.1045], + [37081,0.1063], + [37083,0.1357], + [37085,0.1136], + [37087,0.0956], + [37089,0.0881], + [37091,0.0965], + [37093,0.0801], + [37095,0.0872], + [37097,0.1272], + [37099,0.089], + [37101,0.0992], + [37103,0.1076], + [37105,0.1418], + [37107,0.1184], + [37109,0.1385], + [37111,0.1524], + [37113,0.1101], + [37115,0.0941], + [37117,0.1065], + [37119,0.1059], + [37121,0.1241], + [37123,0.1346], + [37125,0.1014], + [37127,0.1204], + [37129,0.0927], + [37131,0.1132], + [37133,0.0847], + [37135,0.0645], + [37137,0.1001], + [37139,0.0993], + [37141,0.1094], + [37143,0.1057], + [37145,0.113], + [37147,0.1006], + [37149,0.0908], + [37151,0.1123], + [37153,0.1398], + [37155,0.119], + [37157,0.1264], + [37159,0.1272], + [37161,0.1628], + [37163,0.0878], + [37165,0.1683], + [37167,0.1205], + [37169,0.1059], + [37171,0.1244], + [37173,0.1195], + [37175,0.0929], + [37177,0.1083], + [37179,0.1], + [37181,0.1366], + [37183,0.0826], + [37185,0.1315], + [37187,0.1178], + [37189,0.0794], + [37191,0.0875], + [37193,0.1269], + [37195,0.1264], + [37197,0.1038], + [37199,0.1192], + [38001,0.0323], + [38003,0.0431], + [38005,0.06], + [38007,0.0246], + [38009,0.0385], + [38011,0.0299], + [38013,0.0318], + [38015,0.0355], + [38017,0.0411], + [38019,0.0344], + [38021,0.052], + [38023,0.0364], + [38025,0.0421], + [38027,0.0532], + [38029,0.0668], + [38031,0.0359], + [38033,0.0348], + [38035,0.0396], + [38037,0.0424], + [38039,0.0335], + [38041,0.0374], + [38043,0.0471], + [38045,0.0423], + [38047,0.0361], + [38049,0.0515], + [38051,0.0388], + [38053,0.0326], + [38055,0.047], + [38057,0.0425], + [38059,0.0433], + [38061,0.0394], + [38063,0.0414], + [38065,0.0398], + [38067,0.0586], + [38069,0.0527], + [38071,0.042], + [38073,0.0788], + [38075,0.0395], + [38077,0.0514], + [38079,0.1151], + [38081,0.1055], + [38083,0.0516], + [38085,0.0498], + [38087,0.0214], + [38089,0.0319], + [38091,0.0287], + [38093,0.0354], + [38095,0.0307], + [38097,0.0398], + [38099,0.0488], + [38101,0.0369], + [38103,0.0525], + [38105,0.0251], + [39001,0.1466], + [39003,0.1131], + [39005,0.1251], + [39007,0.1357], + [39009,0.0879], + [39011,0.1066], + [39013,0.0921], + [39015,0.1276], + [39017,0.0965], + [39019,0.1375], + [39021,0.1193], + [39023,0.1057], + [39025,0.098], + [39027,0.1475], + [39029,0.1339], + [39031,0.1353], + [39033,0.1481], + [39035,0.0871], + [39037,0.1137], + [39039,0.1414], + [39041,0.0705], + [39043,0.1178], + [39045,0.0873], + [39047,0.112], + [39049,0.0848], + [39051,0.1394], + [39053,0.0953], + [39055,0.0689], + [39057,0.0976], + [39059,0.1218], + [39061,0.0906], + [39063,0.1044], + [39065,0.1226], + [39067,0.1167], + [39069,0.1356], + [39071,0.1552], + [39073,0.1134], + [39075,0.0792], + [39077,0.1576], + [39079,0.1134], + [39081,0.1232], + [39083,0.0983], + [39085,0.0801], + [39087,0.0829], + [39089,0.0958], + [39091,0.1199], + [39093,0.0955], + [39095,0.1244], + [39097,0.0951], + [39099,0.1256], + [39101,0.1148], + [39103,0.0775], + [39105,0.1491], + [39107,0.0897], + [39109,0.1184], + [39111,0.1273], + [39113,0.1163], + [39115,0.1459], + [39117,0.1121], + [39119,0.1265], + [39121,0.1453], + [39123,0.1428], + [39125,0.1387], + [39127,0.1347], + [39129,0.1111], + [39131,0.1529], + [39133,0.1017], + [39135,0.123], + [39137,0.1069], + [39139,0.1292], + [39141,0.1219], + [39143,0.1218], + [39145,0.1251], + [39147,0.1275], + [39149,0.1376], + [39151,0.1142], + [39153,0.1001], + [39155,0.1392], + [39157,0.1133], + [39159,0.0859], + [39161,0.1493], + [39163,0.1323], + [39165,0.0891], + [39167,0.0959], + [39169,0.1007], + [39171,0.159], + [39173,0.1146], + [39175,0.1406], + [40001,0.08], + [40003,0.0482], + [40005,0.0823], + [40007,0.0345], + [40009,0.0586], + [40011,0.056], + [40013,0.0522], + [40015,0.0617], + [40017,0.0555], + [40019,0.0553], + [40021,0.0537], + [40023,0.0702], + [40025,0.0372], + [40027,0.0533], + [40029,0.0854], + [40031,0.0521], + [40033,0.0443], + [40035,0.0559], + [40037,0.0796], + [40039,0.0461], + [40041,0.0645], + [40043,0.0433], + [40045,0.0458], + [40047,0.0436], + [40049,0.0566], + [40051,0.0713], + [40053,0.0376], + [40055,0.0768], + [40057,0.0536], + [40059,0.0393], + [40061,0.0768], + [40063,0.1015], + [40065,0.05], + [40067,0.0826], + [40069,0.0745], + [40071,0.0744], + [40073,0.0441], + [40075,0.0619], + [40077,0.107], + [40079,0.0977], + [40081,0.0706], + [40083,0.0565], + [40085,0.0516], + [40087,0.0568], + [40089,0.1044], + [40091,0.0793], + [40093,0.0445], + [40095,0.081], + [40097,0.085], + [40099,0.0422], + [40101,0.0755], + [40103,0.0769], + [40105,0.0871], + [40107,0.0808], + [40109,0.0611], + [40111,0.0907], + [40113,0.0752], + [40115,0.0621], + [40117,0.0855], + [40119,0.0608], + [40121,0.0617], + [40123,0.0539], + [40125,0.063], + [40127,0.0829], + [40129,0.0448], + [40131,0.0692], + [40133,0.0858], + [40135,0.0952], + [40137,0.0741], + [40139,0.0518], + [40141,0.0698], + [40143,0.0653], + [40145,0.0651], + [40147,0.0547], + [40149,0.056], + [40151,0.042], + [40153,0.0618], + [41001,0.1038], + [41003,0.0797], + [41005,0.1039], + [41007,0.0914], + [41009,0.1333], + [41011,0.1303], + [41013,0.1817], + [41015,0.1318], + [41017,0.149], + [41019,0.1568], + [41021,0.0685], + [41023,0.1367], + [41025,0.1634], + [41027,0.0818], + [41029,0.1281], + [41031,0.1503], + [41033,0.145], + [41035,0.1412], + [41037,0.1263], + [41039,0.1231], + [41041,0.1061], + [41043,0.1396], + [41045,0.1091], + [41047,0.1113], + [41049,0.0935], + [41051,0.1055], + [41053,0.0948], + [41055,0.0914], + [41057,0.0956], + [41059,0.0975], + [41061,0.1162], + [41063,0.1204], + [41065,0.0908], + [41067,0.0948], + [41069,0.0915], + [41071,0.1163], + [42001,0.0743], + [42003,0.068], + [42005,0.0912], + [42007,0.0808], + [42009,0.1088], + [42011,0.0873], + [42013,0.0714], + [42015,0.0836], + [42017,0.073], + [42019,0.0699], + [42021,0.0854], + [42023,0.1709], + [42025,0.1009], + [42027,0.0581], + [42029,0.0624], + [42031,0.0947], + [42033,0.0996], + [42035,0.0884], + [42037,0.0856], + [42039,0.0988], + [42041,0.0663], + [42043,0.0746], + [42045,0.076], + [42047,0.1262], + [42049,0.0891], + [42051,0.0917], + [42053,0.1092], + [42055,0.0808], + [42057,0.134], + [42059,0.0744], + [42061,0.1048], + [42063,0.0746], + [42065,0.0939], + [42067,0.0789], + [42069,0.0821], + [42071,0.0721], + [42073,0.0931], + [42075,0.067], + [42077,0.0867], + [42079,0.09], + [42081,0.0881], + [42083,0.1025], + [42085,0.1115], + [42087,0.0989], + [42089,0.0905], + [42091,0.0682], + [42093,0.0655], + [42095,0.0838], + [42097,0.0967], + [42099,0.0785], + [42101,0.0975], + [42103,0.0907], + [42105,0.1109], + [42107,0.0988], + [42109,0.0899], + [42111,0.0852], + [42113,0.0844], + [42115,0.085], + [42117,0.097], + [42119,0.0905], + [42121,0.0868], + [42123,0.0782], + [42125,0.0762], + [42127,0.0743], + [42129,0.078], + [42131,0.0849], + [42133,0.0813], + [44001,0.1007], + [44003,0.1045], + [44005,0.0976], + [44007,0.1185], + [44009,0.089], + [45001,0.1417], + [45003,0.0921], + [45005,0.2063], + [45007,0.12], + [45009,0.1565], + [45011,0.1713], + [45013,0.0872], + [45015,0.1026], + [45017,0.1225], + [45019,0.0875], + [45021,0.1585], + [45023,0.1982], + [45025,0.1652], + [45027,0.1502], + [45029,0.1305], + [45031,0.1299], + [45033,0.1531], + [45035,0.0975], + [45037,0.1015], + [45039,0.1317], + [45041,0.1114], + [45043,0.1193], + [45045,0.0977], + [45047,0.1249], + [45049,0.1478], + [45051,0.1168], + [45053,0.1031], + [45055,0.1057], + [45057,0.1737], + [45059,0.1173], + [45061,0.1427], + [45063,0.0803], + [45065,0.161], + [45067,0.2036], + [45069,0.1908], + [45071,0.1136], + [45073,0.1327], + [45075,0.1527], + [45077,0.1049], + [45079,0.0924], + [45081,0.0949], + [45083,0.1189], + [45085,0.1229], + [45087,0.1916], + [45089,0.1453], + [45091,0.1349], + [46003,0.0438], + [46005,0.0368], + [46007,0.0538], + [46009,0.0536], + [46011,0.0375], + [46013,0.0362], + [46015,0.035], + [46017,0.151], + [46019,0.0507], + [46021,0.0421], + [46023,0.0494], + [46025,0.0569], + [46027,0.0401], + [46029,0.0619], + [46031,0.0664], + [46033,0.0419], + [46035,0.0484], + [46037,0.0695], + [46039,0.0598], + [46041,0.1101], + [46043,0.0417], + [46045,0.0348], + [46047,0.0601], + [46049,0.0348], + [46051,0.0473], + [46053,0.0413], + [46055,0.0368], + [46057,0.0542], + [46059,0.0311], + [46061,0.0448], + [46063,0.0314], + [46065,0.0323], + [46067,0.0418], + [46069,0.0395], + [46071,0.0692], + [46073,0.0309], + [46075,0.0318], + [46077,0.0534], + [46079,0.0638], + [46081,0.0436], + [46083,0.0433], + [46085,0.0604], + [46087,0.0541], + [46089,0.0533], + [46091,0.0664], + [46093,0.05], + [46095,0.0709], + [46097,0.0532], + [46099,0.0504], + [46101,0.067], + [46102,null], + [46103,0.049], + [46105,0.0416], + [46107,0.0373], + [46109,0.06], + [46111,0.0397], + [46115,0.0418], + [46117,0.0318], + [46119,0.03], + [46121,0.0716], + [46123,0.0351], + [46125,0.0517], + [46127,0.0599], + [46129,0.0511], + [46135,0.0559], + [46137,0.0708], + [47001,0.099], + [47003,0.1222], + [47005,0.1392], + [47007,0.1403], + [47009,0.0988], + [47011,0.0949], + [47013,0.1318], + [47015,0.12], + [47017,0.1599], + [47019,0.1031], + [47021,0.0944], + [47023,0.1128], + [47025,0.1207], + [47027,0.1468], + [47029,0.1398], + [47031,0.1076], + [47033,0.1314], + [47035,0.1138], + [47037,0.0889], + [47039,0.1337], + [47041,0.1092], + [47043,0.1107], + [47045,0.1395], + [47047,0.1107], + [47049,0.134], + [47051,0.1092], + [47053,0.1468], + [47055,0.1493], + [47057,0.1404], + [47059,0.1584], + [47061,0.1411], + [47063,0.1269], + [47065,0.0901], + [47067,0.1479], + [47069,0.1268], + [47071,0.125], + [47073,0.1129], + [47075,0.1593], + [47077,0.1808], + [47079,0.1336], + [47081,0.13], + [47083,0.1211], + [47085,0.1276], + [47087,0.1372], + [47089,0.1264], + [47091,0.1284], + [47093,0.0809], + [47095,0.1104], + [47097,0.188], + [47099,0.1542], + [47101,0.1573], + [47103,0.0718], + [47105,0.0969], + [47107,0.14], + [47109,0.14], + [47111,0.123], + [47113,0.1063], + [47115,0.123], + [47117,0.1739], + [47119,0.1378], + [47121,0.1459], + [47123,0.1752], + [47125,0.0889], + [47127,0.0951], + [47129,0.1134], + [47131,0.1029], + [47133,0.1339], + [47135,0.2307], + [47137,0.1505], + [47139,0.1261], + [47141,0.0971], + [47143,0.1354], + [47145,0.0913], + [47147,0.1022], + [47149,0.0966], + [47151,0.1835], + [47153,0.1235], + [47155,0.1087], + [47157,0.1011], + [47159,0.1359], + [47161,0.1192], + [47163,0.0879], + [47165,0.0983], + [47167,0.1241], + [47169,0.121], + [47171,0.116], + [47173,0.1085], + [47175,0.1489], + [47177,0.1436], + [47179,0.087], + [47181,0.1342], + [47183,0.1245], + [47185,0.1417], + [47187,0.0753], + [47189,0.0903], + [48001,0.0869], + [48003,0.0703], + [48005,0.0821], + [48007,0.0683], + [48009,0.0592], + [48011,0.0453], + [48013,0.0743], + [48015,0.0733], + [48017,0.0561], + [48019,0.0653], + [48021,0.0792], + [48023,0.0561], + [48025,0.0901], + [48027,0.0666], + [48029,0.0674], + [48031,0.0519], + [48033,0.0542], + [48035,0.0778], + [48037,0.0662], + [48039,0.0809], + [48041,0.0547], + [48043,0.0507], + [48045,0.0504], + [48047,0.0934], + [48049,0.0682], + [48051,0.0685], + [48053,0.0609], + [48055,0.0834], + [48057,0.0849], + [48059,0.0582], + [48061,0.0972], + [48063,0.0886], + [48065,0.0583], + [48067,0.1134], + [48069,0.0479], + [48071,0.0909], + [48073,0.0881], + [48075,0.0606], + [48077,0.0687], + [48079,0.0644], + [48081,0.0809], + [48083,0.0689], + [48085,0.0726], + [48087,0.0543], + [48089,0.0638], + [48091,0.0615], + [48093,0.0603], + [48095,0.0712], + [48097,0.065], + [48099,0.0821], + [48101,0.0551], + [48103,0.087], + [48105,0.0855], + [48107,0.069], + [48109,0.0398], + [48111,0.0415], + [48113,0.0823], + [48115,0.0795], + [48117,0.0521], + [48119,0.0865], + [48121,0.0713], + [48123,0.0753], + [48125,0.0721], + [48127,0.1], + [48129,0.0582], + [48131,0.1093], + [48133,0.0754], + [48135,0.0811], + [48137,0.0706], + [48139,0.0795], + [48141,0.0884], + [48143,0.0631], + [48145,0.0871], + [48147,0.0861], + [48149,0.0547], + [48151,0.0599], + [48153,0.0652], + [48155,0.0569], + [48157,0.0714], + [48159,0.0682], + [48161,0.0631], + [48163,0.0747], + [48165,0.0628], + [48167,0.0821], + [48169,0.0517], + [48171,0.0445], + [48173,0.046], + [48175,0.0689], + [48177,0.0551], + [48179,0.0811], + [48181,0.0795], + [48183,0.071], + [48185,0.0857], + [48187,0.0643], + [48189,0.0603], + [48191,0.0821], + [48193,0.0561], + [48195,0.0524], + [48197,0.0733], + [48199,0.0853], + [48201,0.0757], + [48203,0.0818], + [48205,0.0406], + [48207,0.0506], + [48209,0.0659], + [48211,0.0344], + [48213,0.0806], + [48215,0.105], + [48217,0.0782], + [48219,0.0673], + [48221,0.0721], + [48223,0.0607], + [48225,0.0914], + [48227,0.0729], + [48229,0.0541], + [48231,0.0818], + [48233,0.0677], + [48235,0.0521], + [48237,0.0623], + [48239,0.0738], + [48241,0.1011], + [48243,0.0475], + [48245,0.0954], + [48247,0.0771], + [48249,0.0904], + [48251,0.0818], + [48253,0.0766], + [48255,0.0898], + [48257,0.0825], + [48259,0.0565], + [48261,0.0596], + [48263,0.0518], + [48265,0.0578], + [48267,0.0522], + [48269,0.051], + [48271,0.0773], + [48273,0.0672], + [48275,0.0579], + [48277,0.0765], + [48279,0.0713], + [48281,0.058], + [48283,0.0925], + [48285,0.0569], + [48287,0.0667], + [48289,0.0702], + [48291,0.1014], + [48293,0.0628], + [48295,0.0676], + [48297,0.07], + [48299,0.0692], + [48301,0.093], + [48303,0.0537], + [48305,0.0596], + [48307,0.0793], + [48309,0.0674], + [48311,0.0694], + [48313,0.0739], + [48315,0.1031], + [48317,0.0481], + [48319,0.05], + [48321,0.0997], + [48323,0.1433], + [48325,0.0667], + [48327,0.0662], + [48329,0.0556], + [48331,0.1089], + [48333,0.0535], + [48335,0.0832], + [48337,0.0712], + [48339,0.0692], + [48341,0.0464], + [48343,0.1485], + [48345,0.0539], + [48347,0.0648], + [48349,0.0785], + [48351,0.1146], + [48353,0.0627], + [48355,0.0675], + [48357,0.0593], + [48359,0.0563], + [48361,0.0984], + [48363,0.0784], + [48365,0.0734], + [48367,0.0759], + [48369,0.0439], + [48371,0.086], + [48373,0.0907], + [48375,0.0602], + [48377,0.1616], + [48379,0.0799], + [48381,0.0461], + [48383,0.06], + [48385,0.0553], + [48387,0.0915], + [48389,0.1144], + [48391,0.0642], + [48393,0.048], + [48395,0.0782], + [48397,0.0717], + [48399,0.0748], + [48401,0.0778], + [48403,0.1497], + [48405,0.1007], + [48407,0.0929], + [48409,0.0855], + [48411,0.0709], + [48413,0.0934], + [48415,0.0674], + [48417,0.04], + [48419,0.0727], + [48421,0.0436], + [48423,0.0756], + [48425,0.071], + [48427,0.1643], + [48429,0.0676], + [48431,0.0421], + [48433,0.0424], + [48435,0.071], + [48437,0.0573], + [48439,0.0769], + [48441,0.0561], + [48443,0.0916], + [48445,0.0687], + [48447,0.0484], + [48449,0.0723], + [48451,0.0632], + [48453,0.0669], + [48455,0.0847], + [48457,0.0974], + [48459,0.0757], + [48461,0.0545], + [48463,0.0791], + [48465,0.0922], + [48467,0.0694], + [48469,0.0691], + [48471,0.0699], + [48473,0.0824], + [48475,0.0878], + [48477,0.0602], + [48479,0.0853], + [48481,0.0698], + [48483,0.0567], + [48485,0.0754], + [48487,0.047], + [48489,0.1192], + [48491,0.0734], + [48493,0.065], + [48495,0.0932], + [48497,0.0869], + [48499,0.0799], + [48501,0.0761], + [48503,0.0644], + [48505,0.1085], + [48507,0.1448], + [49001,0.0614], + [49003,0.0805], + [49005,0.0547], + [49007,0.0788], + [49009,0.0585], + [49011,0.0658], + [49013,0.0852], + [49015,0.0705], + [49017,0.1044], + [49019,0.0981], + [49021,0.0878], + [49023,0.1002], + [49025,0.0759], + [49027,0.0557], + [49029,0.0627], + [49031,0.066], + [49033,0.0507], + [49035,0.0705], + [49037,0.1181], + [49039,0.0841], + [49041,0.0787], + [49043,0.0699], + [49045,0.079], + [49047,0.0833], + [49049,0.0701], + [49051,0.0836], + [49053,0.0978], + [49055,0.0811], + [49057,0.084], + [50001,0.0612], + [50003,0.0764], + [50005,0.0776], + [50007,0.056], + [50009,0.0892], + [50011,0.0654], + [50013,0.0777], + [50015,0.0756], + [50017,0.0621], + [50019,0.0917], + [50021,0.0793], + [50023,0.0629], + [50025,0.0628], + [50027,0.0578], + [51001,0.0649], + [51003,0.0513], + [51005,0.0911], + [51007,0.0775], + [51009,0.0774], + [51011,0.079], + [51013,0.0426], + [51015,0.0643], + [51017,0.0621], + [51019,0.0681], + [51021,0.074], + [51023,0.0629], + [51025,0.1122], + [51027,0.0853], + [51029,0.081], + [51031,0.0723], + [51033,0.0839], + [51035,0.1082], + [51036,0.09], + [51037,0.0921], + [51041,0.0665], + [51043,0.0631], + [51045,0.0737], + [51047,0.0791], + [51049,0.0731], + [51051,0.0866], + [51053,0.0803], + [51057,0.0807], + [51059,0.0476], + [51061,0.0547], + [51063,0.0763], + [51065,0.0573], + [51067,0.082], + [51069,0.0754], + [51071,0.0914], + [51073,0.0601], + [51075,0.065], + [51077,0.1069], + [51079,0.0578], + [51081,0.0895], + [51083,0.1127], + [51085,0.0652], + [51087,0.0687], + [51089,0.1368], + [51091,0.0749], + [51093,0.062], + [51095,0.0536], + [51097,0.08], + [51099,0.0757], + [51101,0.0701], + [51103,0.0927], + [51105,0.0721], + [51107,0.0469], + [51109,0.0784], + [51111,0.0928], + [51113,0.0614], + [51115,0.0551], + [51117,0.109], + [51119,0.0665], + [51121,0.0696], + [51125,0.0639], + [51127,0.0696], + [51131,0.0766], + [51133,0.0868], + [51135,0.0801], + [51137,0.0772], + [51139,0.1176], + [51141,0.1111], + [51143,0.1059], + [51145,0.0629], + [51147,0.0889], + [51149,0.0693], + [51153,0.0545], + [51155,0.109], + [51157,0.0582], + [51159,0.0773], + [51161,0.0588], + [51163,0.0645], + [51165,0.0586], + [51167,0.105], + [51169,0.0955], + [51171,0.0819], + [51173,0.1109], + [51175,0.0797], + [51177,0.0562], + [51179,0.0547], + [51181,0.0748], + [51183,0.1013], + [51185,0.0754], + [51187,0.0754], + [51191,0.085], + [51193,0.0761], + [51195,0.0661], + [51197,0.1047], + [51199,0.0531], + [51510,0.048], + [51520,0.0997], + [51530,0.0852], + [51540,0.0645], + [51550,0.0636], + [51570,0.0786], + [51580,0.1007], + [51590,0.135], + [51595,0.1211], + [51600,0.0553], + [51610,0.069], + [51620,0.1011], + [51630,0.0937], + [51640,0.0968], + [51650,0.0782], + [51660,0.0673], + [51670,0.1041], + [51678,0.0968], + [51680,0.0805], + [51683,0.0731], + [51685,0.0604], + [51690,0.1928], + [51700,0.0741], + [51710,0.0854], + [51720,0.0638], + [51730,0.1333], + [51735,0.0518], + [51740,0.0851], + [51750,0.0892], + [51760,0.0958], + [51770,0.0861], + [51775,0.0638], + [51790,0.0725], + [51800,0.0671], + [51810,0.0599], + [51820,0.0853], + [51830,0.1483], + [51840,0.081], + [53001,0.0901], + [53003,0.0959], + [53005,0.0723], + [53007,0.0808], + [53009,0.101], + [53011,0.1335], + [53013,0.11], + [53015,0.1346], + [53017,0.0801], + [53019,0.133], + [53021,0.0838], + [53023,0.073], + [53025,0.0993], + [53027,0.1325], + [53029,0.0896], + [53031,0.0893], + [53033,0.0804], + [53035,0.0775], + [53037,0.0913], + [53039,0.1038], + [53041,0.133], + [53043,0.0854], + [53045,0.1078], + [53047,0.0963], + [53049,0.128], + [53051,0.1455], + [53053,0.0974], + [53055,0.0669], + [53057,0.1018], + [53059,0.1307], + [53061,0.0945], + [53063,0.0927], + [53065,0.1304], + [53067,0.0793], + [53069,0.1446], + [53071,0.0683], + [53073,0.0853], + [53075,0.0572], + [53077,0.09], + [54001,0.0871], + [54003,0.0848], + [54005,0.0776], + [54007,0.0824], + [54009,0.11], + [54011,0.067], + [54013,0.1278], + [54015,0.1116], + [54017,0.0776], + [54019,0.0843], + [54021,0.0659], + [54023,0.0994], + [54025,0.0932], + [54027,0.0816], + [54029,0.1124], + [54031,0.0893], + [54033,0.0649], + [54035,0.1135], + [54037,0.0661], + [54039,0.0625], + [54041,0.0732], + [54043,0.0965], + [54045,0.0807], + [54047,0.1152], + [54049,0.0591], + [54051,0.0876], + [54053,0.1173], + [54055,0.0653], + [54057,0.073], + [54059,0.0888], + [54061,0.044], + [54063,0.0724], + [54065,0.088], + [54067,0.0865], + [54069,0.0757], + [54071,0.0755], + [54073,0.1018], + [54075,0.1188], + [54077,0.0704], + [54079,0.0606], + [54081,0.0719], + [54083,0.0886], + [54085,0.0931], + [54087,0.1196], + [54089,0.0787], + [54091,0.0709], + [54093,0.1131], + [54095,0.1047], + [54097,0.0835], + [54099,0.0789], + [54101,0.1044], + [54103,0.1167], + [54105,0.1212], + [54107,0.0852], + [54109,0.0997], + [55001,0.1053], + [55003,0.0997], + [55005,0.09], + [55007,0.0913], + [55009,0.077], + [55011,0.069], + [55013,0.1077], + [55015,0.0761], + [55017,0.0843], + [55019,0.0942], + [55021,0.0829], + [55023,0.0983], + [55025,0.0578], + [55027,0.0962], + [55029,0.0885], + [55031,0.0819], + [55033,0.0721], + [55035,0.068], + [55037,0.1037], + [55039,0.09], + [55041,0.1024], + [55043,0.0749], + [55045,0.0888], + [55047,0.0961], + [55049,0.0771], + [55051,0.1211], + [55053,0.0889], + [55055,0.0917], + [55057,0.1], + [55059,0.1045], + [55061,0.0783], + [55063,0.0665], + [55065,0.0722], + [55067,0.1013], + [55069,0.1122], + [55071,0.0994], + [55073,0.0875], + [55075,0.1156], + [55077,0.1029], + [55078,0.139], + [55079,0.0944], + [55081,0.0763], + [55083,0.1129], + [55085,0.0971], + [55087,0.0831], + [55089,0.0747], + [55091,0.0735], + [55093,0.0759], + [55095,0.1028], + [55097,0.0713], + [55099,0.1089], + [55101,0.1023], + [55103,0.0882], + [55105,0.1256], + [55107,0.1293], + [55109,0.0802], + [55111,0.0827], + [55113,0.0999], + [55115,0.0929], + [55117,0.0917], + [55119,0.115], + [55121,0.0756], + [55123,0.078], + [55125,0.099], + [55127,0.0905], + [55129,0.0977], + [55131,0.0868], + [55133,0.0755], + [55135,0.0957], + [55137,0.0991], + [55139,0.0769], + [55141,0.0878], + [56001,0.0418], + [56003,0.0871], + [56005,0.0535], + [56007,0.0722], + [56009,0.0572], + [56011,0.057], + [56013,0.0772], + [56015,0.0538], + [56017,0.0591], + [56019,0.0751], + [56021,0.0647], + [56023,0.0783], + [56025,0.0657], + [56027,0.05], + [56029,0.0618], + [56031,0.0604], + [56033,0.0678], + [56035,0.0443], + [56037,0.0641], + [56039,0.0695], + [56041,0.0675], + [56043,0.0606], + [56045,0.0622] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2010.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2010.json new file mode 100644 index 0000000..4faea73 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2010"], + [1001,0.0887], + [1003,0.0999], + [1005,0.1235], + [1007,0.1142], + [1009,0.0982], + [1011,0.1184], + [1013,0.1364], + [1015,0.1137], + [1017,0.1491], + [1019,0.1063], + [1021,0.1027], + [1023,0.1325], + [1025,0.1985], + [1027,0.1446], + [1029,0.1001], + [1031,0.0862], + [1033,0.1145], + [1035,0.1723], + [1037,0.1541], + [1039,0.1033], + [1041,0.1017], + [1043,0.1045], + [1045,0.0883], + [1047,0.1686], + [1049,0.1266], + [1051,0.0905], + [1053,0.1179], + [1055,0.1093], + [1057,0.1301], + [1059,0.1074], + [1061,0.1036], + [1063,0.1727], + [1065,0.1508], + [1067,0.1088], + [1069,0.0914], + [1071,0.1183], + [1073,0.1033], + [1075,0.1322], + [1077,0.101], + [1079,0.126], + [1081,0.09], + [1083,0.0964], + [1085,0.1846], + [1087,0.1476], + [1089,0.0835], + [1091,0.137], + [1093,0.1356], + [1095,0.096], + [1097,0.113], + [1099,0.1815], + [1101,0.0999], + [1103,0.1075], + [1105,0.1683], + [1107,0.1314], + [1109,0.0943], + [1111,0.1335], + [1113,0.1087], + [1115,0.1014], + [1117,0.0709], + [1119,0.1335], + [1121,0.1349], + [1123,0.131], + [1125,0.092], + [1127,0.127], + [1129,0.1422], + [1131,0.2626], + [1133,0.1598], + [2013,0.0561], + [2016,0.0506], + [2020,0.0658], + [2050,0.1462], + [2060,0.097], + [2068,0.1187], + [2070,0.101], + [2090,0.0663], + [2100,0.1061], + [2105,0.14], + [2110,0.0589], + [2122,0.0997], + [2130,0.0873], + [2150,0.0737], + [2158,null], + [2164,0.144], + [2170,0.0944], + [2180,0.1255], + [2185,0.0804], + [2188,0.1343], + [2195,0.0792], + [2198,0.105], + [2220,0.0629], + [2230,0.1448], + [2240,0.1189], + [2261,0.0935], + [2275,0.0798], + [2282,0.1077], + [2290,0.1722], + [4001,0.1642], + [4003,0.0935], + [4005,0.0988], + [4007,0.1253], + [4009,0.1292], + [4011,0.164], + [4012,0.1023], + [4013,0.0952], + [4015,0.1297], + [4017,0.147], + [4019,0.0932], + [4021,0.1071], + [4023,0.1525], + [4025,0.1068], + [4027,0.2512], + [5001,0.186], + [5003,0.1006], + [5005,0.0939], + [5007,0.0665], + [5009,0.0783], + [5011,0.108], + [5013,0.088], + [5015,0.0733], + [5017,0.1234], + [5019,0.0857], + [5021,0.1096], + [5023,0.0863], + [5025,0.0838], + [5027,0.0998], + [5029,0.0967], + [5031,0.0742], + [5033,0.0822], + [5035,0.1046], + [5037,0.083], + [5039,0.1233], + [5041,0.1113], + [5043,0.1091], + [5045,0.0723], + [5047,0.0773], + [5049,0.0783], + [5051,0.0846], + [5053,0.0709], + [5055,0.0973], + [5057,0.0927], + [5059,0.0859], + [5061,0.0776], + [5063,0.0879], + [5065,0.1006], + [5067,0.1185], + [5069,0.1041], + [5071,0.0824], + [5073,0.0987], + [5075,0.0951], + [5077,0.0856], + [5079,0.0938], + [5081,0.0775], + [5083,0.0858], + [5085,0.0676], + [5087,0.0707], + [5089,0.1014], + [5091,0.0582], + [5093,0.1252], + [5095,0.0923], + [5097,0.0876], + [5099,0.1001], + [5101,0.0691], + [5103,0.0956], + [5105,0.089], + [5107,0.1053], + [5109,0.0915], + [5111,0.0932], + [5113,0.0746], + [5115,0.0781], + [5117,0.092], + [5119,0.0729], + [5121,0.1025], + [5123,0.1064], + [5125,0.0667], + [5127,0.071], + [5129,0.092], + [5131,0.0803], + [5133,0.0703], + [5135,0.0981], + [5137,0.0759], + [5139,0.1131], + [5141,0.1118], + [5143,0.0652], + [5145,0.0825], + [5147,0.1044], + [5149,0.0809], + [6001,0.1091], + [6003,0.1292], + [6005,0.1406], + [6007,0.1389], + [6009,0.1444], + [6011,0.2084], + [6013,0.1097], + [6015,0.1319], + [6017,0.1221], + [6019,0.1669], + [6021,0.1542], + [6023,0.1056], + [6025,0.2884], + [6027,0.0971], + [6029,0.1565], + [6031,0.1612], + [6033,0.1509], + [6035,0.1404], + [6037,0.1251], + [6039,0.1662], + [6041,0.0785], + [6043,0.1294], + [6045,0.1161], + [6047,0.1795], + [6049,0.1522], + [6051,0.1019], + [6053,0.1272], + [6055,0.1029], + [6057,0.1173], + [6059,0.0974], + [6061,0.116], + [6063,0.1824], + [6065,0.1384], + [6067,0.1261], + [6069,0.151], + [6071,0.1352], + [6073,0.1075], + [6075,0.0891], + [6077,0.1652], + [6079,0.1006], + [6081,0.0836], + [6083,0.097], + [6085,0.1041], + [6087,0.133], + [6089,0.1678], + [6091,0.1533], + [6093,0.1683], + [6095,0.1257], + [6097,0.1085], + [6099,0.1689], + [6101,0.1836], + [6103,0.154], + [6105,0.17], + [6107,0.172], + [6109,0.1523], + [6111,0.1083], + [6113,0.1209], + [6115,0.1776], + [8001,0.1003], + [8003,0.0898], + [8005,0.0857], + [8007,0.1065], + [8009,0.0489], + [8011,0.0813], + [8013,0.0704], + [8014,0.0742], + [8015,0.0769], + [8017,0.0411], + [8019,0.0811], + [8021,0.0957], + [8023,0.1062], + [8025,0.0913], + [8027,0.0664], + [8029,0.1068], + [8031,0.0911], + [8033,0.177], + [8035,0.0696], + [8037,0.0848], + [8039,0.0806], + [8041,0.0935], + [8043,0.117], + [8045,0.1034], + [8047,0.0803], + [8049,0.0877], + [8051,0.0642], + [8053,0.0574], + [8055,0.1397], + [8057,0.0881], + [8059,0.0837], + [8061,0.0642], + [8063,0.0453], + [8065,0.11], + [8067,0.0713], + [8069,0.0763], + [8071,0.106], + [8073,0.0599], + [8075,0.063], + [8077,0.1095], + [8079,0.0697], + [8081,0.0992], + [8083,0.0911], + [8085,0.1098], + [8087,0.0702], + [8089,0.0918], + [8091,0.0981], + [8093,0.0814], + [8095,0.0528], + [8097,0.0808], + [8099,0.0697], + [8101,0.1039], + [8103,0.089], + [8105,0.1064], + [8107,0.0928], + [8109,0.1014], + [8111,0.1248], + [8113,0.0785], + [8115,0.0745], + [8117,0.0674], + [8119,0.0936], + [8121,0.0591], + [8123,0.0918], + [8125,0.0562], + [9001,0.0839], + [9003,0.0946], + [9005,0.0873], + [9007,0.079], + [9009,0.0999], + [9011,0.0889], + [9013,0.0783], + [9015,0.1027], + [10001,0.0889], + [10003,0.0826], + [10005,0.0849], + [11001,0.0941], + [12001,0.0802], + [12003,0.1131], + [12005,0.1048], + [12007,0.0986], + [12009,0.1125], + [12011,0.1015], + [12013,0.1011], + [12015,0.1274], + [12017,0.1372], + [12019,0.0992], + [12021,0.1164], + [12023,0.1083], + [12027,0.1223], + [12029,0.1289], + [12031,0.1135], + [12033,0.1012], + [12035,0.1241], + [12037,0.0796], + [12039,0.1178], + [12041,0.1079], + [12043,0.0951], + [12045,0.1029], + [12047,0.1144], + [12049,0.1151], + [12051,0.1402], + [12053,0.1355], + [12055,0.1251], + [12057,0.1073], + [12059,0.1036], + [12061,0.1391], + [12063,0.091], + [12065,0.0991], + [12067,0.0729], + [12069,0.1177], + [12071,0.1251], + [12073,0.0793], + [12075,0.1192], + [12077,0.0876], + [12079,0.1004], + [12081,0.114], + [12083,0.1364], + [12085,0.1075], + [12086,0.1111], + [12087,0.0777], + [12089,0.1063], + [12091,0.0842], + [12093,0.1263], + [12095,0.1083], + [12097,0.1246], + [12099,0.1097], + [12101,0.1195], + [12103,0.1082], + [12105,0.1214], + [12107,0.1338], + [12109,0.0874], + [12111,0.1376], + [12113,0.0928], + [12115,0.116], + [12117,0.1063], + [12119,0.1326], + [12121,0.0985], + [12123,0.1058], + [12125,0.0851], + [12127,0.1226], + [12129,0.0837], + [12131,0.0938], + [12133,0.1057], + [13001,0.1185], + [13003,0.1524], + [13005,0.1063], + [13007,0.1209], + [13009,0.1537], + [13011,0.0966], + [13013,0.1076], + [13015,0.1219], + [13017,0.1588], + [13019,0.13], + [13021,0.1164], + [13023,0.1246], + [13025,0.1275], + [13027,0.0963], + [13029,0.0958], + [13031,0.1005], + [13033,0.1215], + [13035,0.1147], + [13037,0.0878], + [13039,0.0992], + [13043,0.0885], + [13045,0.1169], + [13047,0.0857], + [13049,0.1061], + [13051,0.0985], + [13053,0.1091], + [13055,0.1168], + [13057,0.0879], + [13059,0.0932], + [13061,0.1163], + [13063,0.1351], + [13065,0.1107], + [13067,0.0932], + [13069,0.158], + [13071,0.0971], + [13073,0.0731], + [13075,0.1166], + [13077,0.0968], + [13079,0.1144], + [13081,0.1419], + [13083,0.0867], + [13085,0.109], + [13087,0.1245], + [13089,0.1083], + [13091,0.1304], + [13093,0.1157], + [13095,0.1255], + [13097,0.1122], + [13099,0.1172], + [13101,0.0821], + [13103,0.0957], + [13105,0.1488], + [13107,0.1285], + [13109,0.0908], + [13111,0.1169], + [13113,0.0824], + [13115,0.1184], + [13117,0.0803], + [13119,0.1268], + [13121,0.1045], + [13123,0.1128], + [13125,0.1103], + [13127,0.0999], + [13129,0.1273], + [13131,0.1048], + [13133,0.1318], + [13135,0.0922], + [13137,0.1067], + [13139,0.0964], + [13141,0.2291], + [13143,0.1226], + [13145,0.0771], + [13147,0.1152], + [13149,0.1208], + [13151,0.1034], + [13153,0.0846], + [13155,0.1467], + [13157,0.1046], + [13159,0.117], + [13161,0.1279], + [13163,0.1407], + [13165,0.1521], + [13167,0.1083], + [13169,0.0972], + [13171,0.1424], + [13173,0.1054], + [13175,0.132], + [13177,0.0905], + [13179,0.0904], + [13181,0.115], + [13183,0.0843], + [13185,0.096], + [13187,0.1038], + [13189,0.1316], + [13191,0.1056], + [13193,0.1321], + [13195,0.1039], + [13197,0.1066], + [13199,0.1373], + [13201,0.1038], + [13205,0.1082], + [13207,0.1018], + [13209,0.12], + [13211,0.1044], + [13213,0.1379], + [13215,0.1008], + [13217,0.1267], + [13219,0.0714], + [13221,0.0965], + [13223,0.1001], + [13225,0.1207], + [13227,0.1096], + [13229,0.1041], + [13231,0.1065], + [13233,0.1202], + [13235,0.0923], + [13237,0.1292], + [13239,0.1004], + [13241,0.1181], + [13243,0.1219], + [13245,0.1101], + [13247,0.1132], + [13249,0.121], + [13251,0.1699], + [13253,0.1253], + [13255,0.1486], + [13257,0.123], + [13259,0.1032], + [13261,0.1327], + [13263,0.1009], + [13265,0.1798], + [13267,0.0905], + [13269,0.1447], + [13271,0.1475], + [13273,0.122], + [13275,0.1124], + [13277,0.1196], + [13279,0.1228], + [13281,0.1285], + [13283,0.1209], + [13285,0.1155], + [13287,0.166], + [13289,0.1547], + [13291,0.1101], + [13293,0.1224], + [13295,0.103], + [13297,0.1065], + [13299,0.1101], + [13301,0.172], + [13303,0.1454], + [13305,0.1205], + [13307,0.1285], + [13309,0.1513], + [13311,0.1018], + [13313,0.1188], + [13315,0.1244], + [13317,0.1322], + [13319,0.1403], + [13321,0.1211], + [15001,0.0987], + [15003,0.0595], + [15005,null], + [15007,0.0875], + [15009,0.0854], + [16001,0.0831], + [16003,0.1854], + [16005,0.0799], + [16007,0.0742], + [16009,0.1361], + [16011,0.0721], + [16013,0.0955], + [16015,0.1056], + [16017,0.1291], + [16019,0.0696], + [16021,0.1342], + [16023,0.0725], + [16025,0.1275], + [16027,0.1126], + [16029,0.0781], + [16031,0.0708], + [16033,0.0933], + [16035,0.1464], + [16037,0.0819], + [16039,0.0864], + [16041,0.0528], + [16043,0.0866], + [16045,0.1143], + [16047,0.0746], + [16049,0.1248], + [16051,0.0706], + [16053,0.0804], + [16055,0.1091], + [16057,0.0664], + [16059,0.102], + [16061,0.0668], + [16063,0.1307], + [16065,0.0537], + [16067,0.0742], + [16069,0.0669], + [16071,0.0603], + [16073,0.042], + [16075,0.0967], + [16077,0.0922], + [16079,0.1591], + [16081,0.0786], + [16083,0.0852], + [16085,0.1569], + [16087,0.1033], + [17001,0.0773], + [17003,0.1175], + [17005,0.1004], + [17007,0.1381], + [17009,0.0696], + [17011,0.108], + [17013,0.1004], + [17015,0.1042], + [17017,0.0829], + [17019,0.082], + [17021,0.1012], + [17023,0.1169], + [17025,0.1131], + [17027,0.0729], + [17029,0.0981], + [17031,0.1087], + [17033,0.0855], + [17035,0.0918], + [17037,0.1052], + [17039,0.087], + [17041,0.0876], + [17043,0.0886], + [17045,0.112], + [17047,0.0873], + [17049,0.0789], + [17051,0.1007], + [17053,0.0945], + [17055,0.1234], + [17057,0.117], + [17059,0.0959], + [17061,0.0929], + [17063,0.1329], + [17065,0.0941], + [17067,0.1057], + [17069,0.1081], + [17071,0.0931], + [17073,0.0912], + [17075,0.1005], + [17077,0.0823], + [17079,0.089], + [17081,0.1021], + [17083,0.0915], + [17085,0.089], + [17087,0.1248], + [17089,0.1103], + [17091,0.123], + [17093,0.1013], + [17095,0.0955], + [17097,0.0984], + [17099,0.1201], + [17101,0.1072], + [17103,0.1002], + [17105,0.0997], + [17107,0.0868], + [17109,0.0853], + [17111,0.1054], + [17113,0.0706], + [17115,0.1116], + [17117,0.1031], + [17119,0.0982], + [17121,0.1082], + [17123,0.1025], + [17125,0.1222], + [17127,0.0949], + [17129,0.0752], + [17131,0.0997], + [17133,0.073], + [17135,0.1229], + [17137,0.0842], + [17139,0.0854], + [17141,0.1243], + [17143,0.105], + [17145,0.1104], + [17147,0.0783], + [17149,0.0896], + [17151,0.0945], + [17153,0.1242], + [17155,0.1202], + [17157,0.0877], + [17159,0.0892], + [17161,0.0954], + [17163,0.1028], + [17165,0.1018], + [17167,0.0774], + [17169,0.0825], + [17171,0.087], + [17173,0.0973], + [17175,0.0974], + [17177,0.1106], + [17179,0.0991], + [17181,0.1197], + [17183,0.1144], + [17185,0.0977], + [17187,0.0777], + [17189,0.0725], + [17191,0.0891], + [17193,0.0849], + [17195,0.1031], + [17197,0.1109], + [17199,0.0971], + [17201,0.1403], + [17203,0.0767], + [18001,0.1009], + [18003,0.107], + [18005,0.0953], + [18007,0.0922], + [18009,0.1437], + [18011,0.0759], + [18013,0.1038], + [18015,0.099], + [18017,0.1083], + [18019,0.0953], + [18021,0.1114], + [18023,0.1014], + [18025,0.1293], + [18027,0.0649], + [18029,0.1086], + [18031,0.1164], + [18033,0.1193], + [18035,0.1155], + [18037,0.0749], + [18039,0.1333], + [18041,0.1462], + [18043,0.0886], + [18045,0.1179], + [18047,0.1147], + [18049,0.1143], + [18051,0.0801], + [18053,0.1158], + [18055,0.1066], + [18057,0.067], + [18059,0.0927], + [18061,0.0985], + [18063,0.0785], + [18065,0.1386], + [18067,0.1258], + [18069,0.119], + [18071,0.1051], + [18073,0.1044], + [18075,0.1066], + [18077,0.1135], + [18079,0.1294], + [18081,0.0882], + [18083,0.0817], + [18085,0.1103], + [18087,0.1205], + [18089,0.108], + [18091,0.1203], + [18093,0.1268], + [18095,0.1206], + [18097,0.1055], + [18099,0.113], + [18101,0.0754], + [18103,0.1249], + [18105,0.0791], + [18107,0.1019], + [18109,0.1037], + [18111,0.1135], + [18113,0.1315], + [18115,0.1106], + [18117,0.1276], + [18119,0.1154], + [18121,0.1094], + [18123,0.1057], + [18125,0.0949], + [18127,0.0947], + [18129,0.0781], + [18131,0.0995], + [18133,0.1165], + [18135,0.1178], + [18137,0.1121], + [18139,0.1114], + [18141,0.1156], + [18143,0.1317], + [18145,0.1097], + [18147,0.0879], + [18149,0.1333], + [18151,0.1113], + [18153,0.1007], + [18155,0.0929], + [18157,0.0886], + [18159,0.1025], + [18161,0.1027], + [18163,0.0894], + [18165,0.1294], + [18167,0.112], + [18169,0.1142], + [18171,0.1055], + [18173,0.0802], + [18175,0.1223], + [18177,0.1283], + [18179,0.0976], + [18181,0.105], + [18183,0.115], + [19001,0.0553], + [19003,0.0482], + [19005,0.0783], + [19007,0.0727], + [19009,0.0558], + [19011,0.0619], + [19013,0.0618], + [19015,0.0571], + [19017,0.049], + [19019,0.0598], + [19021,0.0473], + [19023,0.0605], + [19025,0.0601], + [19027,0.0431], + [19029,0.0626], + [19031,0.0539], + [19033,0.0684], + [19035,0.045], + [19037,0.074], + [19039,0.0767], + [19041,0.0586], + [19043,0.0711], + [19045,0.0703], + [19047,0.0469], + [19049,0.0456], + [19051,0.0712], + [19053,0.0607], + [19055,0.0605], + [19057,0.0744], + [19059,0.0679], + [19061,0.0578], + [19063,0.0702], + [19065,0.0714], + [19067,0.0724], + [19069,0.0624], + [19071,0.0591], + [19073,0.0588], + [19075,0.0568], + [19077,0.0646], + [19079,0.0727], + [19081,0.0664], + [19083,0.0651], + [19085,0.0557], + [19087,0.0829], + [19089,0.0629], + [19091,0.0517], + [19093,0.051], + [19095,0.055], + [19097,0.0715], + [19099,0.073], + [19101,0.0709], + [19103,0.0423], + [19105,0.0636], + [19107,0.0652], + [19109,0.0508], + [19111,0.0887], + [19113,0.0598], + [19115,0.0726], + [19117,0.0612], + [19119,0.0386], + [19121,0.0642], + [19123,0.0672], + [19125,0.0593], + [19127,0.0684], + [19129,0.0524], + [19131,0.0518], + [19133,0.072], + [19135,0.0722], + [19137,0.0806], + [19139,0.0798], + [19141,0.0465], + [19143,0.0493], + [19145,0.0677], + [19147,0.0603], + [19149,0.0448], + [19151,0.051], + [19153,0.0596], + [19155,0.0577], + [19157,0.0579], + [19159,0.047], + [19161,0.0467], + [19163,0.0665], + [19165,0.0454], + [19167,0.0392], + [19169,0.042], + [19171,0.0643], + [19173,0.0555], + [19175,0.0564], + [19177,0.0728], + [19179,0.0786], + [19181,0.0564], + [19183,0.051], + [19185,0.0615], + [19187,0.0693], + [19189,0.0668], + [19191,0.0552], + [19193,0.0658], + [19195,0.0725], + [19197,0.0716], + [20001,0.0829], + [20003,0.077], + [20005,0.0988], + [20007,0.0451], + [20009,0.0601], + [20011,0.0901], + [20013,0.0663], + [20015,0.0776], + [20017,0.0562], + [20019,0.0902], + [20021,0.0909], + [20023,0.0406], + [20025,0.0442], + [20027,0.0555], + [20029,0.0563], + [20031,0.0759], + [20033,0.0453], + [20035,0.0784], + [20037,0.087], + [20039,0.0501], + [20041,0.0662], + [20043,0.0883], + [20045,0.0591], + [20047,0.0535], + [20049,0.0835], + [20051,0.0395], + [20053,0.0471], + [20055,0.0456], + [20057,0.0416], + [20059,0.09], + [20061,0.0915], + [20063,0.0339], + [20065,0.0475], + [20067,0.0431], + [20069,0.0324], + [20071,0.0339], + [20073,0.0756], + [20075,0.0312], + [20077,0.0626], + [20079,0.0718], + [20081,0.036], + [20083,0.0369], + [20085,0.0617], + [20087,0.075], + [20089,0.0546], + [20091,0.0609], + [20093,0.045], + [20095,0.0694], + [20097,0.0522], + [20099,0.0952], + [20101,0.0416], + [20103,0.0759], + [20105,0.0595], + [20107,0.1116], + [20109,0.0351], + [20111,0.0666], + [20113,0.0516], + [20115,0.0593], + [20117,0.0508], + [20119,0.0425], + [20121,0.0757], + [20123,0.0478], + [20125,0.1065], + [20127,0.0683], + [20129,0.0433], + [20131,0.043], + [20133,0.1024], + [20135,0.0396], + [20137,0.0381], + [20139,0.0826], + [20141,0.0486], + [20143,0.0596], + [20145,0.0468], + [20147,0.0514], + [20149,0.0523], + [20151,0.056], + [20153,0.0351], + [20155,0.0637], + [20157,0.0432], + [20159,0.0543], + [20161,0.0499], + [20163,0.0629], + [20165,0.0535], + [20167,0.0511], + [20169,0.0616], + [20171,0.0383], + [20173,0.0879], + [20175,0.0494], + [20177,0.0699], + [20179,0.0337], + [20181,0.0476], + [20183,0.0433], + [20185,0.0507], + [20187,0.0412], + [20189,0.0422], + [20191,0.0888], + [20193,0.0396], + [20195,0.0471], + [20197,0.0653], + [20199,0.0594], + [20201,0.0484], + [20203,0.0344], + [20205,0.1196], + [20207,0.0789], + [20209,0.1008], + [21001,0.1243], + [21003,0.1172], + [21005,0.0961], + [21007,0.1026], + [21009,0.1119], + [21011,0.1463], + [21013,0.1214], + [21015,0.0887], + [21017,0.0907], + [21019,0.1018], + [21021,0.1116], + [21023,0.1138], + [21025,0.1352], + [21027,0.1295], + [21029,0.1065], + [21031,0.12], + [21033,0.1053], + [21035,0.0806], + [21037,0.0909], + [21039,0.0906], + [21041,0.145], + [21043,0.141], + [21045,0.1098], + [21047,0.1168], + [21049,0.1076], + [21051,0.1454], + [21053,0.11], + [21055,0.0994], + [21057,0.1178], + [21059,0.093], + [21061,0.1332], + [21063,0.1584], + [21065,0.1354], + [21067,0.0741], + [21069,0.1151], + [21071,0.1346], + [21073,0.0871], + [21075,0.1151], + [21077,0.1234], + [21079,0.1114], + [21081,0.1178], + [21083,0.0948], + [21085,0.1424], + [21087,0.1176], + [21089,0.1154], + [21091,0.1027], + [21093,0.0968], + [21095,0.1191], + [21097,0.1112], + [21099,0.1043], + [21101,0.1027], + [21103,0.0988], + [21105,0.0817], + [21107,0.0968], + [21109,0.1406], + [21111,0.1001], + [21113,0.0848], + [21115,0.1256], + [21117,0.0977], + [21119,0.1347], + [21121,0.1351], + [21123,0.1128], + [21125,0.1141], + [21127,0.1359], + [21129,0.1263], + [21131,0.1292], + [21133,0.1143], + [21135,0.1379], + [21137,0.1284], + [21139,0.1204], + [21141,0.0991], + [21143,0.116], + [21145,0.0905], + [21147,0.1445], + [21149,0.1021], + [21151,0.0851], + [21153,0.2049], + [21155,0.1261], + [21157,0.1052], + [21159,0.1031], + [21161,0.1125], + [21163,0.118], + [21165,0.1551], + [21167,0.1119], + [21169,0.1333], + [21171,0.107], + [21173,0.1221], + [21175,0.1304], + [21177,0.1093], + [21179,0.1118], + [21181,0.1011], + [21183,0.1122], + [21185,0.0754], + [21187,0.084], + [21189,0.1329], + [21191,0.1228], + [21193,0.1174], + [21195,0.1043], + [21197,0.1554], + [21199,0.106], + [21201,0.1162], + [21203,0.1121], + [21205,0.1013], + [21207,0.1283], + [21209,0.087], + [21211,0.0893], + [21213,0.1297], + [21215,0.0993], + [21217,0.1226], + [21219,0.1004], + [21221,0.1411], + [21223,0.1289], + [21225,0.097], + [21227,0.0921], + [21229,0.1015], + [21231,0.1405], + [21233,0.0946], + [21235,0.1261], + [21237,0.1636], + [21239,0.0725], + [22001,0.0726], + [22003,0.0984], + [22005,0.0745], + [22007,0.1157], + [22009,0.0838], + [22011,0.0793], + [22013,0.1004], + [22015,0.0605], + [22017,0.0815], + [22019,0.0802], + [22021,0.1084], + [22023,0.0627], + [22025,0.1033], + [22027,0.0875], + [22029,0.0993], + [22031,0.0879], + [22033,0.076], + [22035,0.1772], + [22037,0.0834], + [22039,0.0857], + [22041,0.1109], + [22043,0.0845], + [22045,0.0861], + [22047,0.1004], + [22049,0.073], + [22051,0.0738], + [22053,0.0754], + [22055,0.0624], + [22057,0.0613], + [22059,0.0652], + [22061,0.0874], + [22063,0.0752], + [22065,0.1204], + [22067,0.1543], + [22069,0.0898], + [22071,0.0869], + [22073,0.0826], + [22075,0.0606], + [22077,0.0867], + [22079,0.076], + [22081,0.0846], + [22083,0.11], + [22085,0.0727], + [22087,0.0834], + [22089,0.0741], + [22091,0.1313], + [22093,0.1166], + [22095,0.106], + [22097,0.096], + [22099,0.0795], + [22101,0.0941], + [22103,0.063], + [22105,0.0971], + [22107,0.1381], + [22109,0.0647], + [22111,0.1041], + [22113,0.0728], + [22115,0.086], + [22117,0.0961], + [22119,0.1039], + [22121,0.0787], + [22123,0.1628], + [22125,0.0672], + [22127,0.0934], + [23001,0.0857], + [23003,0.0972], + [23005,0.0652], + [23007,0.0923], + [23009,0.0882], + [23011,0.0761], + [23013,0.074], + [23015,0.0758], + [23017,0.107], + [23019,0.0847], + [23021,0.107], + [23023,0.0665], + [23025,0.111], + [23027,0.0849], + [23029,0.1079], + [23031,0.0797], + [24001,0.0934], + [24003,0.0689], + [24005,0.0825], + [24009,0.0687], + [24011,0.0924], + [24013,0.0682], + [24015,0.0952], + [24017,0.0691], + [24019,0.1138], + [24021,0.069], + [24023,0.0887], + [24025,0.0779], + [24027,0.0562], + [24029,0.0881], + [24031,0.056], + [24033,0.075], + [24035,0.073], + [24037,0.0653], + [24039,0.1189], + [24041,0.0796], + [24043,0.096], + [24045,0.0975], + [24047,0.1334], + [24510,0.1122], + [25001,0.0993], + [25003,0.0868], + [25005,0.1058], + [25007,0.0977], + [25009,0.087], + [25011,0.0762], + [25013,0.1029], + [25015,0.0702], + [25017,0.0693], + [25019,0.0963], + [25021,0.0745], + [25023,0.0895], + [25025,0.0764], + [25027,0.0885], + [26001,0.1784], + [26003,0.1414], + [26005,0.1135], + [26007,0.1314], + [26009,0.1598], + [26011,0.165], + [26013,0.1935], + [26015,0.1036], + [26017,0.1156], + [26019,0.1346], + [26021,0.1202], + [26023,0.1265], + [26025,0.117], + [26027,0.1135], + [26029,0.1403], + [26031,0.1396], + [26033,0.1193], + [26035,0.1555], + [26037,0.0839], + [26039,0.1419], + [26041,0.1254], + [26043,0.1151], + [26045,0.0963], + [26047,0.1444], + [26049,0.1396], + [26051,0.1483], + [26053,0.1308], + [26055,0.1165], + [26057,0.1182], + [26059,0.1354], + [26061,0.1075], + [26063,0.1247], + [26065,0.1027], + [26067,0.1192], + [26069,0.158], + [26071,0.1199], + [26073,0.0979], + [26075,0.122], + [26077,0.1001], + [26079,0.1564], + [26081,0.1014], + [26083,0.1507], + [26085,0.1625], + [26087,0.1633], + [26089,0.1037], + [26091,0.1304], + [26093,0.1117], + [26095,0.1341], + [26097,0.1464], + [26099,0.1388], + [26101,0.1308], + [26103,0.0983], + [26105,0.1259], + [26107,0.126], + [26109,0.1164], + [26111,0.0976], + [26113,0.1266], + [26115,0.1173], + [26117,0.141], + [26119,0.2016], + [26121,0.1453], + [26123,0.1266], + [26125,0.1177], + [26127,0.1617], + [26129,0.1448], + [26131,0.1675], + [26133,0.1361], + [26135,0.1957], + [26137,0.1424], + [26139,0.1029], + [26141,0.1745], + [26143,0.1664], + [26145,0.1223], + [26147,0.164], + [26149,0.1254], + [26151,0.1541], + [26153,0.1364], + [26155,0.1289], + [26157,0.1475], + [26159,0.1349], + [26161,0.0811], + [26163,0.1549], + [26165,0.1442], + [27001,0.104], + [27003,0.0801], + [27005,0.0791], + [27007,0.0821], + [27009,0.0871], + [27011,0.0649], + [27013,0.0637], + [27015,0.0687], + [27017,0.0837], + [27019,0.0673], + [27021,0.1056], + [27023,0.0734], + [27025,0.0889], + [27027,0.0553], + [27029,0.131], + [27031,0.0717], + [27033,0.065], + [27035,0.0952], + [27037,0.0697], + [27039,0.0692], + [27041,0.0679], + [27043,0.0797], + [27045,0.075], + [27047,0.0773], + [27049,0.0704], + [27051,0.0794], + [27053,0.0701], + [27055,0.0767], + [27057,0.0992], + [27059,0.0962], + [27061,0.1016], + [27063,0.0584], + [27065,0.112], + [27067,0.0667], + [27069,0.0753], + [27071,0.0868], + [27073,0.0666], + [27075,0.0831], + [27077,0.0649], + [27079,0.0885], + [27081,0.0552], + [27083,0.0559], + [27085,0.0896], + [27087,0.0827], + [27089,0.0927], + [27091,0.0732], + [27093,0.088], + [27095,0.1108], + [27097,0.095], + [27099,0.0609], + [27101,0.0685], + [27103,0.061], + [27105,0.0561], + [27107,0.0688], + [27109,0.0595], + [27111,0.0717], + [27113,0.0904], + [27115,0.0981], + [27117,0.0659], + [27119,0.0663], + [27121,0.0713], + [27123,0.0745], + [27125,0.0959], + [27127,0.0674], + [27129,0.0805], + [27131,0.0778], + [27133,0.0506], + [27135,0.0639], + [27137,0.0811], + [27139,0.0686], + [27141,0.0842], + [27143,0.0788], + [27145,0.0721], + [27147,0.0777], + [27149,0.0557], + [27151,0.0809], + [27153,0.0775], + [27155,0.0622], + [27157,0.0714], + [27159,0.102], + [27161,0.0748], + [27163,0.0671], + [27165,0.073], + [27167,0.0547], + [27169,0.0692], + [27171,0.0804], + [27173,0.0629], + [28001,0.1147], + [28003,0.1155], + [28005,0.1193], + [28007,0.1255], + [28009,0.1247], + [28011,0.1138], + [28013,0.0924], + [28015,0.1315], + [28017,0.1202], + [28019,0.1179], + [28021,0.167], + [28023,0.1256], + [28025,0.1641], + [28027,0.137], + [28029,0.1142], + [28031,0.1012], + [28033,0.0746], + [28035,0.0976], + [28037,0.1138], + [28039,0.1149], + [28041,0.1192], + [28043,0.1157], + [28045,0.0899], + [28047,0.0878], + [28049,0.0982], + [28051,0.196], + [28053,0.1723], + [28055,0.1619], + [28057,0.1127], + [28059,0.0952], + [28061,0.1225], + [28063,0.1881], + [28065,0.1406], + [28067,0.0912], + [28069,0.1475], + [28071,0.0933], + [28073,0.0718], + [28075,0.1065], + [28077,0.1191], + [28079,0.0968], + [28081,0.1038], + [28083,0.1533], + [28085,0.1051], + [28087,0.1185], + [28089,0.0739], + [28091,0.1219], + [28093,0.1207], + [28095,0.1315], + [28097,0.1378], + [28099,0.1039], + [28101,0.1007], + [28103,0.1578], + [28105,0.1023], + [28107,0.1355], + [28109,0.095], + [28111,0.1363], + [28113,0.1161], + [28115,0.1018], + [28117,0.118], + [28119,0.1489], + [28121,0.0685], + [28123,0.0798], + [28125,0.1452], + [28127,0.0939], + [28129,0.0908], + [28131,0.1061], + [28133,0.1541], + [28135,0.1222], + [28137,0.1077], + [28139,0.135], + [28141,0.1275], + [28143,0.1369], + [28145,0.1091], + [28147,0.1295], + [28149,0.1049], + [28151,0.1581], + [28153,0.1207], + [28155,0.1153], + [28157,0.1382], + [28159,0.1697], + [28161,0.1356], + [28163,0.1223], + [29001,0.0865], + [29003,0.0828], + [29005,0.086], + [29007,0.0959], + [29009,0.0965], + [29011,0.103], + [29013,0.1099], + [29015,0.1212], + [29017,0.1007], + [29019,0.0645], + [29021,0.0917], + [29023,0.0957], + [29025,0.0956], + [29027,0.0828], + [29029,0.1197], + [29031,0.0733], + [29033,0.1147], + [29035,0.1152], + [29037,0.0963], + [29039,0.0954], + [29041,0.095], + [29043,0.0842], + [29045,0.1242], + [29047,0.0838], + [29049,0.0966], + [29051,0.0686], + [29053,0.0976], + [29055,0.1269], + [29057,0.0973], + [29059,0.1257], + [29061,0.0982], + [29063,0.0884], + [29065,0.1035], + [29067,0.1214], + [29069,0.1348], + [29071,0.1133], + [29073,0.1044], + [29075,0.0789], + [29077,0.0834], + [29079,0.08], + [29081,0.095], + [29083,0.1079], + [29085,0.1262], + [29087,0.0795], + [29089,0.0874], + [29091,0.1082], + [29093,0.167], + [29095,0.1067], + [29097,0.0848], + [29099,0.1037], + [29101,0.0994], + [29103,0.0777], + [29105,0.1241], + [29107,0.098], + [29109,0.093], + [29111,0.0853], + [29113,0.1179], + [29115,0.1255], + [29117,0.0816], + [29119,0.0916], + [29121,0.0926], + [29123,0.1217], + [29125,0.0947], + [29127,0.0909], + [29129,0.0835], + [29131,0.1288], + [29133,0.0966], + [29135,0.0845], + [29137,0.1226], + [29139,0.1113], + [29141,0.1453], + [29143,0.0996], + [29145,0.0899], + [29147,0.0722], + [29149,0.111], + [29151,0.0691], + [29153,0.1174], + [29155,0.1248], + [29157,0.0725], + [29159,0.0927], + [29161,0.0901], + [29163,0.098], + [29165,0.0773], + [29167,0.1028], + [29169,0.0878], + [29171,0.0804], + [29173,0.0878], + [29175,0.1154], + [29177,0.1027], + [29179,0.1511], + [29181,0.1288], + [29183,0.082], + [29185,0.1122], + [29186,0.1029], + [29187,0.1225], + [29189,0.0892], + [29195,0.0889], + [29197,0.1036], + [29199,0.0807], + [29201,0.0971], + [29203,0.1483], + [29205,0.0861], + [29207,0.1044], + [29209,0.1381], + [29211,0.0882], + [29213,0.1391], + [29215,0.11], + [29217,0.0826], + [29219,0.11], + [29221,0.1432], + [29223,0.1078], + [29225,0.1052], + [29227,0.0681], + [29229,0.1189], + [29510,0.1149], + [30001,0.0593], + [30003,0.1095], + [30005,0.0666], + [30007,0.0742], + [30009,0.0642], + [30011,0.0386], + [30013,0.0638], + [30015,0.0438], + [30017,0.0453], + [30019,0.0349], + [30021,0.0421], + [30023,0.0612], + [30025,0.0306], + [30027,0.0642], + [30029,0.1204], + [30031,0.068], + [30033,0.0354], + [30035,0.0978], + [30037,0.067], + [30039,0.0926], + [30041,0.0581], + [30043,0.0629], + [30045,0.0644], + [30047,0.0895], + [30049,0.055], + [30051,0.0436], + [30053,0.1497], + [30055,0.0292], + [30057,0.0758], + [30059,0.0802], + [30061,0.1247], + [30063,0.0733], + [30065,0.0689], + [30067,0.0876], + [30069,0.0535], + [30071,0.0679], + [30073,0.0586], + [30075,0.0374], + [30077,0.0757], + [30079,0.0511], + [30081,0.0938], + [30083,0.0378], + [30085,0.0687], + [30087,0.0698], + [30089,0.131], + [30091,0.0368], + [30093,0.0652], + [30095,0.0584], + [30097,0.0547], + [30099,0.0597], + [30101,0.0458], + [30103,0.0528], + [30105,0.0488], + [30107,0.079], + [30109,0.0416], + [30111,0.0588], + [31001,0.0474], + [31003,0.0357], + [31005,0.0796], + [31007,0.0436], + [31009,0.0504], + [31011,0.0351], + [31013,0.0497], + [31015,0.0388], + [31017,0.0465], + [31019,0.0363], + [31021,0.0593], + [31023,0.0391], + [31025,0.0563], + [31027,0.0357], + [31029,0.0279], + [31031,0.0295], + [31033,0.0363], + [31035,0.0428], + [31037,0.0394], + [31039,0.0366], + [31041,0.0368], + [31043,0.0734], + [31045,0.0396], + [31047,0.0493], + [31049,0.0388], + [31051,0.0478], + [31053,0.0528], + [31055,0.0512], + [31057,0.0312], + [31059,0.0373], + [31061,0.0435], + [31063,0.0376], + [31065,0.0338], + [31067,0.0575], + [31069,0.0411], + [31071,0.0308], + [31073,0.0357], + [31075,0.038], + [31077,0.036], + [31079,0.0465], + [31081,0.0377], + [31083,0.0322], + [31085,0.0344], + [31087,0.0514], + [31089,0.0362], + [31091,0.0512], + [31093,0.0442], + [31095,0.0473], + [31097,0.0465], + [31099,0.035], + [31101,0.0425], + [31103,0.0352], + [31105,0.0471], + [31107,0.0415], + [31109,0.0421], + [31111,0.0452], + [31113,0.0447], + [31115,0.0571], + [31117,0.0283], + [31119,0.0422], + [31121,0.045], + [31123,0.0408], + [31125,0.0389], + [31127,0.0532], + [31129,0.041], + [31131,0.0505], + [31133,0.0397], + [31135,0.0334], + [31137,0.0357], + [31139,0.0366], + [31141,0.0422], + [31143,0.0402], + [31145,0.0365], + [31147,0.0624], + [31149,0.0281], + [31151,0.0468], + [31153,0.0445], + [31155,0.0479], + [31157,0.055], + [31159,0.04], + [31161,0.0354], + [31163,0.0405], + [31165,0.0371], + [31167,0.0407], + [31169,0.0378], + [31171,0.048], + [31173,0.0956], + [31175,0.0443], + [31177,0.0459], + [31179,0.0379], + [31181,0.0481], + [31183,0.0388], + [31185,0.0464], + [32001,0.1237], + [32003,0.1376], + [32005,0.1376], + [32007,0.077], + [32009,0.0918], + [32011,0.0777], + [32013,0.0867], + [32015,0.0954], + [32017,0.1056], + [32019,0.1749], + [32021,0.1435], + [32023,0.1731], + [32027,0.106], + [32029,0.1674], + [32031,0.1292], + [32033,0.0923], + [32510,0.1348], + [33001,0.0637], + [33003,0.0567], + [33005,0.0554], + [33007,0.0736], + [33009,0.048], + [33011,0.0615], + [33013,0.0535], + [33015,0.0598], + [33017,0.0567], + [33019,0.0518], + [34001,0.1227], + [34003,0.0803], + [34005,0.0899], + [34007,0.1094], + [34009,0.1403], + [34011,0.1299], + [34013,0.1085], + [34015,0.1026], + [34017,0.0957], + [34019,0.0739], + [34021,0.0836], + [34023,0.0894], + [34025,0.0874], + [34027,0.0741], + [34029,0.1026], + [34031,0.1136], + [34033,0.1166], + [34035,0.076], + [34037,0.0943], + [34039,0.0953], + [34041,0.0985], + [35001,0.0773], + [35003,0.1201], + [35005,0.0754], + [35006,0.0961], + [35007,0.0838], + [35009,0.0536], + [35011,0.06], + [35013,0.0776], + [35015,0.064], + [35017,0.0966], + [35019,0.1011], + [35021,0.061], + [35023,0.0848], + [35025,0.079], + [35027,0.075], + [35028,0.0367], + [35029,0.2013], + [35031,0.0987], + [35033,0.1233], + [35035,0.0726], + [35037,0.0943], + [35039,0.0915], + [35041,0.0626], + [35043,0.0839], + [35045,0.0938], + [35047,0.0958], + [35049,0.0679], + [35051,0.0919], + [35053,0.078], + [35055,0.1066], + [35057,0.1156], + [35059,0.0627], + [35061,0.0956], + [36001,0.0696], + [36003,0.0915], + [36005,0.1199], + [36007,0.0872], + [36009,0.0951], + [36011,0.0854], + [36013,0.0885], + [36015,0.0839], + [36017,0.0921], + [36019,0.098], + [36021,0.0731], + [36023,0.0887], + [36025,0.0876], + [36027,0.0772], + [36029,0.0831], + [36031,0.0915], + [36033,0.0897], + [36035,0.106], + [36037,0.0801], + [36039,0.0907], + [36041,0.0983], + [36043,0.0859], + [36045,0.0929], + [36047,0.0993], + [36049,0.0913], + [36051,0.0809], + [36053,0.083], + [36055,0.0804], + [36057,0.1008], + [36059,0.0713], + [36061,0.0858], + [36063,0.0962], + [36065,0.0763], + [36067,0.0803], + [36069,0.0744], + [36071,0.0798], + [36073,0.0958], + [36075,0.1064], + [36077,0.0756], + [36079,0.072], + [36081,0.0862], + [36083,0.0775], + [36085,0.0943], + [36087,0.0745], + [36089,0.1033], + [36091,0.0689], + [36093,0.0765], + [36095,0.0892], + [36097,0.0909], + [36099,0.0819], + [36101,0.0956], + [36103,0.0775], + [36105,0.0891], + [36107,0.0798], + [36109,0.0615], + [36111,0.0779], + [36113,0.0899], + [36115,0.0824], + [36117,0.0886], + [36119,0.0735], + [36121,0.0946], + [36123,0.0738], + [37001,0.1088], + [37003,0.1305], + [37005,0.1198], + [37007,0.1411], + [37009,0.1182], + [37011,0.1077], + [37013,0.1171], + [37015,0.1178], + [37017,0.1333], + [37019,0.1253], + [37021,0.0856], + [37023,0.1291], + [37025,0.1154], + [37027,0.1484], + [37029,0.0838], + [37031,0.0958], + [37033,0.1323], + [37035,0.1306], + [37037,0.0855], + [37039,0.1291], + [37041,0.12], + [37043,0.1251], + [37045,0.1477], + [37047,0.134], + [37049,0.1073], + [37051,0.1012], + [37053,0.089], + [37055,0.1212], + [37057,0.123], + [37059,0.1175], + [37061,0.0928], + [37063,0.0824], + [37065,0.1574], + [37067,0.1014], + [37069,0.109], + [37071,0.1351], + [37073,0.0797], + [37075,0.1756], + [37077,0.0974], + [37079,0.1012], + [37081,0.111], + [37083,0.1473], + [37085,0.1132], + [37087,0.1028], + [37089,0.0911], + [37091,0.1061], + [37093,0.1013], + [37095,0.111], + [37097,0.1289], + [37099,0.1091], + [37101,0.0993], + [37103,0.112], + [37105,0.1278], + [37107,0.1186], + [37109,0.1273], + [37111,0.1332], + [37113,0.1153], + [37115,0.1037], + [37117,0.1274], + [37119,0.1067], + [37121,0.1238], + [37123,0.1233], + [37125,0.1012], + [37127,0.1256], + [37129,0.0971], + [37131,0.1164], + [37133,0.0827], + [37135,0.066], + [37137,0.102], + [37139,0.0995], + [37141,0.1144], + [37143,0.1065], + [37145,0.1239], + [37147,0.1018], + [37149,0.1015], + [37151,0.1198], + [37153,0.1487], + [37155,0.1369], + [37157,0.1321], + [37159,0.1407], + [37161,0.1674], + [37163,0.0966], + [37165,0.1763], + [37167,0.1318], + [37169,0.1139], + [37171,0.1201], + [37173,0.1474], + [37175,0.0977], + [37177,0.1477], + [37179,0.1002], + [37181,0.1412], + [37183,0.0829], + [37185,0.1372], + [37187,0.1427], + [37189,0.0785], + [37191,0.0916], + [37193,0.1344], + [37195,0.139], + [37197,0.1096], + [37199,0.1186], + [38001,0.0291], + [38003,0.0446], + [38005,0.0542], + [38007,0.0329], + [38009,0.0397], + [38011,0.026], + [38013,0.0274], + [38015,0.0361], + [38017,0.0354], + [38019,0.0305], + [38021,0.0322], + [38023,0.021], + [38025,0.0322], + [38027,0.0478], + [38029,0.069], + [38031,0.0344], + [38033,0.0265], + [38035,0.0348], + [38037,0.0372], + [38039,0.0295], + [38041,0.0304], + [38043,0.0533], + [38045,0.0355], + [38047,0.036], + [38049,0.0481], + [38051,0.044], + [38053,0.0218], + [38055,0.0504], + [38057,0.0525], + [38059,0.0456], + [38061,0.0261], + [38063,0.0402], + [38065,0.0572], + [38067,0.0636], + [38069,0.0531], + [38071,0.0381], + [38073,0.0459], + [38075,0.0281], + [38077,0.0384], + [38079,0.1089], + [38081,0.043], + [38083,0.0395], + [38085,0.0512], + [38087,0.0234], + [38089,0.0278], + [38091,0.0273], + [38093,0.0415], + [38095,0.0272], + [38097,0.037], + [38099,0.0509], + [38101,0.0346], + [38103,0.0399], + [38105,0.0219], + [39001,0.1595], + [39003,0.107], + [39005,0.119], + [39007,0.1295], + [39009,0.1061], + [39011,0.1002], + [39013,0.113], + [39015,0.133], + [39017,0.1003], + [39019,0.13], + [39021,0.1154], + [39023,0.1103], + [39025,0.1035], + [39027,0.1702], + [39029,0.126], + [39031,0.1266], + [39033,0.1285], + [39035,0.0852], + [39037,0.1125], + [39039,0.1218], + [39041,0.0724], + [39043,0.1128], + [39045,0.092], + [39047,0.131], + [39049,0.0888], + [39051,0.1183], + [39053,0.1181], + [39055,0.0687], + [39057,0.0953], + [39059,0.1275], + [39061,0.0985], + [39063,0.0909], + [39065,0.112], + [39067,0.1248], + [39069,0.1305], + [39071,0.1728], + [39073,0.1166], + [39075,0.0765], + [39077,0.132], + [39079,0.125], + [39081,0.1445], + [39083,0.0967], + [39085,0.079], + [39087,0.1028], + [39089,0.0961], + [39091,0.1181], + [39093,0.0913], + [39095,0.1154], + [39097,0.0902], + [39099,0.1172], + [39101,0.1096], + [39103,0.0743], + [39105,0.1463], + [39107,0.0846], + [39109,0.1109], + [39111,0.1224], + [39113,0.1136], + [39115,0.1334], + [39117,0.1141], + [39119,0.1258], + [39121,0.1601], + [39123,0.1233], + [39125,0.1257], + [39127,0.1341], + [39129,0.1058], + [39131,0.1483], + [39133,0.1031], + [39135,0.1102], + [39137,0.0932], + [39139,0.1214], + [39141,0.1194], + [39143,0.1077], + [39145,0.1333], + [39147,0.1194], + [39149,0.1243], + [39151,0.1128], + [39153,0.1059], + [39155,0.1323], + [39157,0.1125], + [39159,0.0839], + [39161,0.1208], + [39163,0.1349], + [39165,0.0902], + [39167,0.1142], + [39169,0.0929], + [39171,0.1316], + [39173,0.0991], + [39175,0.1112], + [40001,0.1052], + [40003,0.0489], + [40005,0.1001], + [40007,0.0398], + [40009,0.0576], + [40011,0.0642], + [40013,0.0617], + [40015,0.0695], + [40017,0.0516], + [40019,0.071], + [40021,0.0765], + [40023,0.091], + [40025,0.035], + [40027,0.0528], + [40029,0.0911], + [40031,0.0575], + [40033,0.0668], + [40035,0.0669], + [40037,0.0859], + [40039,0.0515], + [40041,0.0798], + [40043,0.0524], + [40045,0.0534], + [40047,0.0551], + [40049,0.0752], + [40051,0.0654], + [40053,0.0447], + [40055,0.0767], + [40057,0.0586], + [40059,0.045], + [40061,0.0977], + [40063,0.1091], + [40065,0.0592], + [40067,0.0753], + [40069,0.1035], + [40071,0.0922], + [40073,0.0507], + [40075,0.0602], + [40077,0.1003], + [40079,0.0945], + [40081,0.0653], + [40083,0.0566], + [40085,0.057], + [40087,0.0557], + [40089,0.1143], + [40091,0.1096], + [40093,0.0502], + [40095,0.072], + [40097,0.088], + [40099,0.0617], + [40101,0.0824], + [40103,0.0676], + [40105,0.093], + [40107,0.0978], + [40109,0.0614], + [40111,0.0978], + [40113,0.0776], + [40115,0.0806], + [40117,0.0912], + [40119,0.0573], + [40121,0.0816], + [40123,0.0618], + [40125,0.0695], + [40127,0.0981], + [40129,0.0456], + [40131,0.0686], + [40133,0.096], + [40135,0.096], + [40137,0.0781], + [40139,0.0487], + [40141,0.0622], + [40143,0.0703], + [40145,0.0678], + [40147,0.0671], + [40149,0.0608], + [40151,0.0424], + [40153,0.0689], + [41001,0.1026], + [41003,0.071], + [41005,0.1005], + [41007,0.0998], + [41009,0.129], + [41011,0.1271], + [41013,0.1594], + [41015,0.1262], + [41017,0.1384], + [41019,0.1398], + [41021,0.0897], + [41023,0.1368], + [41025,0.1423], + [41027,0.0826], + [41029,0.1246], + [41031,0.1366], + [41033,0.1403], + [41035,0.1292], + [41037,0.1347], + [41039,0.1102], + [41041,0.1102], + [41043,0.1283], + [41045,0.0966], + [41047,0.1115], + [41049,0.0934], + [41051,0.0963], + [41053,0.0972], + [41055,0.1171], + [41057,0.1045], + [41059,0.1028], + [41061,0.1033], + [41063,0.129], + [41065,0.0955], + [41067,0.0896], + [41069,0.0952], + [41071,0.1043], + [42001,0.0772], + [42003,0.0758], + [42005,0.0909], + [42007,0.0858], + [42009,0.1008], + [42011,0.0868], + [42013,0.0801], + [42015,0.0723], + [42017,0.0763], + [42019,0.0737], + [42021,0.0942], + [42023,0.126], + [42025,0.1058], + [42027,0.0595], + [42029,0.0625], + [42031,0.1023], + [42033,0.1044], + [42035,0.094], + [42037,0.0933], + [42039,0.0947], + [42041,0.0684], + [42043,0.0802], + [42045,0.08], + [42047,0.0965], + [42049,0.093], + [42051,0.1075], + [42053,0.1132], + [42055,0.0853], + [42057,0.1227], + [42059,0.0837], + [42061,0.1073], + [42063,0.0868], + [42065,0.1008], + [42067,0.0795], + [42069,0.0896], + [42071,0.075], + [42073,0.0923], + [42075,0.0747], + [42077,0.0919], + [42079,0.0995], + [42081,0.0893], + [42083,0.1006], + [42085,0.0953], + [42087,0.1025], + [42089,0.0973], + [42091,0.0695], + [42093,0.0672], + [42095,0.0877], + [42097,0.0994], + [42099,0.081], + [42101,0.1058], + [42103,0.0972], + [42105,0.1039], + [42107,0.106], + [42109,0.0839], + [42111,0.0958], + [42113,0.0801], + [42115,0.0872], + [42117,0.0831], + [42119,0.0772], + [42121,0.085], + [42123,0.0827], + [42125,0.0809], + [42127,0.0812], + [42129,0.0823], + [42131,0.0877], + [42133,0.084], + [44001,0.0971], + [44003,0.111], + [44005,0.0997], + [44007,0.1177], + [44009,0.1006], + [45001,0.136], + [45003,0.093], + [45005,0.1908], + [45007,0.1156], + [45009,0.1612], + [45011,0.1661], + [45013,0.0865], + [45015,0.1002], + [45017,0.1229], + [45019,0.088], + [45021,0.1574], + [45023,0.1926], + [45025,0.1437], + [45027,0.14], + [45029,0.1375], + [45031,0.1319], + [45033,0.1592], + [45035,0.0952], + [45037,0.0995], + [45039,0.1461], + [45041,0.1133], + [45043,0.1449], + [45045,0.0963], + [45047,0.1185], + [45049,0.1282], + [45051,0.1229], + [45053,0.0985], + [45055,0.1151], + [45057,0.1472], + [45059,0.1229], + [45061,0.1621], + [45063,0.082], + [45065,0.1405], + [45067,0.1828], + [45069,0.2119], + [45071,0.1079], + [45073,0.1138], + [45075,0.1591], + [45077,0.1088], + [45079,0.094], + [45081,0.1003], + [45083,0.1184], + [45085,0.1245], + [45087,0.1767], + [45089,0.1725], + [45091,0.1211], + [46003,0.0352], + [46005,0.0418], + [46007,0.072], + [46009,0.042], + [46011,0.0467], + [46013,0.0385], + [46015,0.037], + [46017,0.1126], + [46019,0.0507], + [46021,0.043], + [46023,0.049], + [46025,0.0516], + [46027,0.0422], + [46029,0.0519], + [46031,0.0694], + [46033,0.0585], + [46035,0.0443], + [46037,0.0667], + [46039,0.0674], + [46041,0.1486], + [46043,0.0443], + [46045,0.0311], + [46047,0.0622], + [46049,0.0392], + [46051,0.0467], + [46053,0.0436], + [46055,0.0338], + [46057,0.0501], + [46059,0.0326], + [46061,0.0526], + [46063,0.0352], + [46065,0.0347], + [46067,0.04], + [46069,0.0377], + [46071,0.0682], + [46073,0.0367], + [46075,0.0295], + [46077,0.054], + [46079,0.0565], + [46081,0.0472], + [46083,0.0391], + [46085,0.0647], + [46087,0.0494], + [46089,0.0489], + [46091,0.0539], + [46093,0.0526], + [46095,0.0631], + [46097,0.0503], + [46099,0.0498], + [46101,0.0701], + [46102,null], + [46103,0.0522], + [46105,0.0416], + [46107,0.0486], + [46109,0.058], + [46111,0.0416], + [46115,0.0376], + [46117,0.0379], + [46119,0.0361], + [46121,0.0765], + [46123,0.0362], + [46125,0.0456], + [46127,0.0579], + [46129,0.0685], + [46135,0.0489], + [46137,0.0579], + [47001,0.0931], + [47003,0.1255], + [47005,0.1231], + [47007,0.1322], + [47009,0.0909], + [47011,0.0939], + [47013,0.125], + [47015,0.1113], + [47017,0.1463], + [47019,0.1093], + [47021,0.0896], + [47023,0.0997], + [47025,0.1079], + [47027,0.1208], + [47029,0.1363], + [47031,0.1078], + [47033,0.116], + [47035,0.1074], + [47037,0.0816], + [47039,0.1313], + [47041,0.1168], + [47043,0.1021], + [47045,0.1207], + [47047,0.0994], + [47049,0.1239], + [47051,0.101], + [47053,0.1202], + [47055,0.1206], + [47057,0.1275], + [47059,0.1283], + [47061,0.1264], + [47063,0.1156], + [47065,0.0833], + [47067,0.1581], + [47069,0.1322], + [47071,0.1204], + [47073,0.1087], + [47075,0.1561], + [47077,0.1425], + [47079,0.1138], + [47081,0.1114], + [47083,0.1197], + [47085,0.1117], + [47087,0.1261], + [47089,0.1148], + [47091,0.1283], + [47093,0.0742], + [47095,0.1108], + [47097,0.142], + [47099,0.123], + [47101,0.1502], + [47103,0.0716], + [47105,0.0927], + [47107,0.1253], + [47109,0.1284], + [47111,0.1122], + [47113,0.1004], + [47115,0.1114], + [47117,0.1401], + [47119,0.1229], + [47121,0.131], + [47123,0.1272], + [47125,0.0854], + [47127,0.0789], + [47129,0.1136], + [47131,0.0962], + [47133,0.1069], + [47135,0.1346], + [47137,0.1113], + [47139,0.1121], + [47141,0.0939], + [47143,0.1231], + [47145,0.0918], + [47147,0.0922], + [47149,0.0886], + [47151,0.17], + [47153,0.1208], + [47155,0.1043], + [47157,0.0975], + [47159,0.1227], + [47161,0.124], + [47163,0.0905], + [47165,0.0887], + [47167,0.1133], + [47169,0.1085], + [47171,0.1195], + [47173,0.1077], + [47175,0.1319], + [47177,0.109], + [47179,0.087], + [47181,0.1141], + [47183,0.11], + [47185,0.1052], + [47187,0.0657], + [47189,0.0837], + [48001,0.0808], + [48003,0.0617], + [48005,0.0852], + [48007,0.0919], + [48009,0.0665], + [48011,0.0494], + [48013,0.0816], + [48015,0.0804], + [48017,0.0789], + [48019,0.078], + [48021,0.0824], + [48023,0.0704], + [48025,0.0893], + [48027,0.0771], + [48029,0.0729], + [48031,0.0596], + [48033,0.0644], + [48035,0.088], + [48037,0.0844], + [48039,0.0849], + [48041,0.0629], + [48043,0.0546], + [48045,0.0613], + [48047,0.1196], + [48049,0.082], + [48051,0.0787], + [48053,0.0677], + [48055,0.0862], + [48057,0.0881], + [48059,0.0726], + [48061,0.1118], + [48063,0.0906], + [48065,0.0543], + [48067,0.1119], + [48069,0.0539], + [48071,0.0968], + [48073,0.0882], + [48075,0.0564], + [48077,0.0749], + [48079,0.0814], + [48081,0.061], + [48083,0.0907], + [48085,0.0721], + [48087,0.0559], + [48089,0.0813], + [48091,0.0704], + [48093,0.0755], + [48095,0.0575], + [48097,0.0727], + [48099,0.0749], + [48101,0.0703], + [48103,0.0759], + [48105,0.0848], + [48107,0.0796], + [48109,0.0707], + [48111,0.0534], + [48113,0.0859], + [48115,0.0769], + [48117,0.0576], + [48119,0.079], + [48121,0.0708], + [48123,0.0777], + [48125,0.1125], + [48127,0.1053], + [48129,0.0691], + [48131,0.1161], + [48133,0.0864], + [48135,0.083], + [48137,0.0714], + [48139,0.0801], + [48141,0.0916], + [48143,0.0644], + [48145,0.0851], + [48147,0.0814], + [48149,0.061], + [48151,0.0701], + [48153,0.0792], + [48155,0.0665], + [48157,0.0762], + [48159,0.0861], + [48161,0.0823], + [48163,0.0729], + [48165,0.0594], + [48167,0.0913], + [48169,0.0588], + [48171,0.0546], + [48173,0.0483], + [48175,0.0739], + [48177,0.0681], + [48179,0.0859], + [48181,0.0818], + [48183,0.0794], + [48185,0.089], + [48187,0.0672], + [48189,0.074], + [48191,0.0908], + [48193,0.068], + [48195,0.0432], + [48197,0.0829], + [48199,0.099], + [48201,0.0829], + [48203,0.0937], + [48205,0.0416], + [48207,0.0544], + [48209,0.0703], + [48211,0.0394], + [48213,0.0881], + [48215,0.1176], + [48217,0.0838], + [48219,0.0705], + [48221,0.0852], + [48223,0.0745], + [48225,0.0767], + [48227,0.0717], + [48229,0.0793], + [48231,0.089], + [48233,0.0845], + [48235,0.0527], + [48237,0.0783], + [48239,0.0704], + [48241,0.1238], + [48243,0.0495], + [48245,0.1135], + [48247,0.103], + [48249,0.0997], + [48251,0.0867], + [48253,0.0876], + [48255,0.0908], + [48257,0.0849], + [48259,0.0622], + [48261,0.0685], + [48263,0.0483], + [48265,0.0667], + [48267,0.0598], + [48269,0.0432], + [48271,0.1118], + [48273,0.0836], + [48275,0.0587], + [48277,0.0929], + [48279,0.0756], + [48281,0.0711], + [48283,0.0893], + [48285,0.0691], + [48287,0.0724], + [48289,0.0885], + [48291,0.1167], + [48293,0.0788], + [48295,0.0589], + [48297,0.0732], + [48299,0.0806], + [48301,0.0563], + [48303,0.0626], + [48305,0.0658], + [48307,0.0701], + [48309,0.0736], + [48311,0.0431], + [48313,0.0842], + [48315,0.1179], + [48317,0.0601], + [48319,0.0628], + [48321,0.1147], + [48323,0.1516], + [48325,0.0753], + [48327,0.0737], + [48329,0.0585], + [48331,0.1117], + [48333,0.0635], + [48335,0.0821], + [48337,0.08], + [48339,0.0754], + [48341,0.0536], + [48343,0.1376], + [48345,0.0625], + [48347,0.0711], + [48349,0.0833], + [48351,0.127], + [48353,0.075], + [48355,0.0812], + [48357,0.0592], + [48359,0.0458], + [48361,0.1165], + [48363,0.0862], + [48365,0.0904], + [48367,0.0761], + [48369,0.0441], + [48371,0.0734], + [48373,0.0969], + [48375,0.0629], + [48377,0.1846], + [48379,0.0879], + [48381,0.0517], + [48383,0.0554], + [48385,0.0915], + [48387,0.1154], + [48389,0.0886], + [48391,0.0874], + [48393,0.0542], + [48395,0.0921], + [48397,0.0739], + [48399,0.0833], + [48401,0.078], + [48403,0.1631], + [48405,0.1297], + [48407,0.0997], + [48409,0.1048], + [48411,0.0617], + [48413,0.0759], + [48415,0.0679], + [48417,0.0557], + [48419,0.0846], + [48421,0.0457], + [48423,0.0795], + [48425,0.0796], + [48427,0.1729], + [48429,0.0747], + [48431,0.0474], + [48433,0.0576], + [48435,0.096], + [48437,0.0657], + [48439,0.0815], + [48441,0.0677], + [48443,0.0679], + [48445,0.0744], + [48447,0.0604], + [48449,0.0853], + [48451,0.0655], + [48453,0.0677], + [48455,0.0953], + [48457,0.1178], + [48459,0.088], + [48461,0.0612], + [48463,0.0894], + [48465,0.0929], + [48467,0.0839], + [48469,0.0766], + [48471,0.0774], + [48473,0.0865], + [48475,0.0846], + [48477,0.0721], + [48479,0.0824], + [48481,0.0868], + [48483,0.0611], + [48485,0.0776], + [48487,0.0787], + [48489,0.1446], + [48491,0.0724], + [48493,0.0683], + [48495,0.0918], + [48497,0.0867], + [48499,0.0906], + [48501,0.0696], + [48503,0.0768], + [48505,0.104], + [48507,0.1389], + [49001,0.0995], + [49003,0.0848], + [49005,0.0608], + [49007,0.0861], + [49009,0.0727], + [49011,0.0698], + [49013,0.0956], + [49015,0.0726], + [49017,0.1021], + [49019,0.105], + [49021,0.0959], + [49023,0.0913], + [49025,0.0795], + [49027,0.062], + [49029,0.0688], + [49031,0.1014], + [49033,0.0722], + [49035,0.0767], + [49037,0.1089], + [49039,0.0903], + [49041,0.0833], + [49043,0.074], + [49045,0.0834], + [49047,0.0851], + [49049,0.0744], + [49051,0.0841], + [49053,0.1049], + [49055,0.0857], + [49057,0.088], + [50001,0.0582], + [50003,0.0692], + [50005,0.0677], + [50007,0.048], + [50009,0.0997], + [50011,0.057], + [50013,0.0692], + [50015,0.0762], + [50017,0.0587], + [50019,0.089], + [50021,0.074], + [50023,0.0589], + [50025,0.0614], + [50027,0.0611], + [51001,0.0789], + [51003,0.0598], + [51005,0.0864], + [51007,0.0848], + [51009,0.0808], + [51011,0.0861], + [51013,0.0413], + [51015,0.0713], + [51017,0.0753], + [51019,0.0704], + [51021,0.086], + [51023,0.0645], + [51025,0.1129], + [51027,0.0996], + [51029,0.1066], + [51031,0.0772], + [51033,0.0955], + [51035,0.1154], + [51036,0.0959], + [51037,0.1001], + [51041,0.0729], + [51043,0.0668], + [51045,0.0795], + [51047,0.0719], + [51049,0.0845], + [51051,0.105], + [51053,0.0884], + [51057,0.0908], + [51059,0.0508], + [51061,0.0618], + [51063,0.0697], + [51065,0.0631], + [51067,0.0871], + [51069,0.075], + [51071,0.0958], + [51073,0.0682], + [51075,0.0715], + [51077,0.1245], + [51079,0.0671], + [51081,0.096], + [51083,0.122], + [51085,0.0657], + [51087,0.073], + [51089,0.1475], + [51091,0.0623], + [51093,0.0714], + [51095,0.0632], + [51097,0.0807], + [51099,0.0736], + [51101,0.0745], + [51103,0.098], + [51105,0.0792], + [51107,0.051], + [51109,0.0753], + [51111,0.095], + [51113,0.063], + [51115,0.0634], + [51117,0.1134], + [51119,0.0719], + [51121,0.0707], + [51125,0.0713], + [51127,0.0723], + [51131,0.0846], + [51133,0.0867], + [51135,0.076], + [51137,0.0827], + [51139,0.1164], + [51141,0.1269], + [51143,0.109], + [51145,0.0705], + [51147,0.0968], + [51149,0.0805], + [51153,0.0609], + [51155,0.111], + [51157,0.0631], + [51159,0.0705], + [51161,0.0634], + [51163,0.0753], + [51165,0.0673], + [51167,0.1024], + [51169,0.0847], + [51171,0.0823], + [51173,0.1212], + [51175,0.0859], + [51177,0.07], + [51179,0.065], + [51181,0.0896], + [51183,0.1142], + [51185,0.0878], + [51187,0.0807], + [51191,0.0794], + [51193,0.0808], + [51195,0.0834], + [51197,0.1114], + [51199,0.0611], + [51510,0.0492], + [51520,0.0881], + [51530,0.0994], + [51540,0.0609], + [51550,0.0719], + [51570,0.0826], + [51580,0.1064], + [51590,0.1348], + [51595,0.1241], + [51600,0.0544], + [51610,0.0488], + [51620,0.1259], + [51630,0.0901], + [51640,0.1094], + [51650,0.0897], + [51660,0.0827], + [51670,0.1159], + [51678,0.093], + [51680,0.0849], + [51683,0.07], + [51685,0.0624], + [51690,0.1744], + [51700,0.0834], + [51710,0.0875], + [51720,0.0726], + [51730,0.1397], + [51735,0.0607], + [51740,0.0959], + [51750,0.0934], + [51760,0.095], + [51770,0.0871], + [51775,0.0687], + [51790,0.0782], + [51800,0.076], + [51810,0.065], + [51820,0.09], + [51830,0.1013], + [51840,0.0831], + [53001,0.1049], + [53003,0.0941], + [53005,0.0786], + [53007,0.089], + [53009,0.1104], + [53011,0.1292], + [53013,0.0944], + [53015,0.1292], + [53017,0.0972], + [53019,0.1754], + [53021,0.0881], + [53023,0.0829], + [53025,0.1085], + [53027,0.1392], + [53029,0.0931], + [53031,0.1031], + [53033,0.0902], + [53035,0.0859], + [53037,0.0979], + [53039,0.1219], + [53041,0.1313], + [53043,0.0839], + [53045,0.1194], + [53047,0.1073], + [53049,0.1402], + [53051,0.1533], + [53053,0.1043], + [53055,0.0731], + [53057,0.1092], + [53059,0.1284], + [53061,0.1067], + [53063,0.1009], + [53065,0.1309], + [53067,0.0898], + [53069,0.1529], + [53071,0.0801], + [53073,0.0948], + [53075,0.0672], + [53077,0.1062], + [54001,0.1004], + [54003,0.0858], + [54005,0.0882], + [54007,0.1108], + [54009,0.114], + [54011,0.0723], + [54013,0.1401], + [54015,0.1415], + [54017,0.0715], + [54019,0.0996], + [54021,0.089], + [54023,0.0978], + [54025,0.0875], + [54027,0.0909], + [54029,0.1212], + [54031,0.1159], + [54033,0.0762], + [54035,0.1139], + [54037,0.0667], + [54039,0.0738], + [54041,0.0878], + [54043,0.1175], + [54045,0.1011], + [54047,0.1322], + [54049,0.0727], + [54051,0.0967], + [54053,0.1154], + [54055,0.0848], + [54057,0.0934], + [54059,0.0984], + [54061,0.0559], + [54063,0.08], + [54065,0.0914], + [54067,0.1002], + [54069,0.0794], + [54071,0.0861], + [54073,0.1055], + [54075,0.115], + [54077,0.0836], + [54079,0.0758], + [54081,0.0815], + [54083,0.1049], + [54085,0.0971], + [54087,0.1363], + [54089,0.0947], + [54091,0.0771], + [54093,0.1103], + [54095,0.1143], + [54097,0.0926], + [54099,0.0853], + [54101,0.1014], + [54103,0.1173], + [54105,0.1252], + [54107,0.0889], + [54109,0.1039], + [55001,0.1239], + [55003,0.1109], + [55005,0.0927], + [55007,0.1108], + [55009,0.0789], + [55011,0.0775], + [55013,0.111], + [55015,0.069], + [55017,0.0843], + [55019,0.1031], + [55021,0.085], + [55023,0.1049], + [55025,0.0594], + [55027,0.0903], + [55029,0.1125], + [55031,0.0833], + [55033,0.0789], + [55035,0.0695], + [55037,0.1037], + [55039,0.0849], + [55041,0.1171], + [55043,0.0761], + [55045,0.08], + [55047,0.0932], + [55049,0.0825], + [55051,0.1135], + [55053,0.0874], + [55055,0.0873], + [55057,0.0998], + [55059,0.1028], + [55061,0.0819], + [55063,0.0664], + [55065,0.0716], + [55067,0.1099], + [55069,0.1132], + [55071,0.0992], + [55073,0.0929], + [55075,0.1107], + [55077,0.1087], + [55078,0.1748], + [55079,0.0999], + [55081,0.0796], + [55083,0.1074], + [55085,0.1019], + [55087,0.0809], + [55089,0.0708], + [55091,0.0745], + [55093,0.0695], + [55095,0.0995], + [55097,0.0799], + [55099,0.1093], + [55101,0.1016], + [55103,0.09], + [55105,0.1126], + [55107,0.1228], + [55109,0.0765], + [55111,0.0843], + [55113,0.1128], + [55115,0.1023], + [55117,0.0929], + [55119,0.1027], + [55121,0.0755], + [55123,0.0789], + [55125,0.113], + [55127,0.0902], + [55129,0.0971], + [55131,0.0809], + [55133,0.0734], + [55135,0.0945], + [55137,0.1077], + [55139,0.0781], + [55141,0.0928], + [56001,0.0447], + [56003,0.0668], + [56005,0.0604], + [56007,0.0674], + [56009,0.0546], + [56011,0.0499], + [56013,0.0695], + [56015,0.0491], + [56017,0.0522], + [56019,0.0681], + [56021,0.0669], + [56023,0.0839], + [56025,0.0698], + [56027,0.0461], + [56029,0.0614], + [56031,0.0554], + [56033,0.0732], + [56035,0.0585], + [56037,0.066], + [56039,0.0766], + [56041,0.0703], + [56043,0.0591], + [56045,0.0483] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2011.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2011.json new file mode 100644 index 0000000..dc082e6 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2011.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2011", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2011"], + [1001,0.0836], + [1003,0.0897], + [1005,0.1154], + [1007,0.1049], + [1009,0.0869], + [1011,0.1161], + [1013,0.1247], + [1015,0.1035], + [1017,0.1197], + [1019,0.0969], + [1021,0.0914], + [1023,0.1314], + [1025,0.1879], + [1027,0.1184], + [1029,0.0966], + [1031,0.0814], + [1033,0.1017], + [1035,0.1521], + [1037,0.1249], + [1039,0.0979], + [1041,0.0986], + [1043,0.095], + [1045,0.0831], + [1047,0.1512], + [1049,0.1184], + [1051,0.0841], + [1053,0.1084], + [1055,0.1003], + [1057,0.111], + [1059,0.0958], + [1061,0.092], + [1063,0.173], + [1065,0.1382], + [1067,0.0972], + [1069,0.0862], + [1071,0.1027], + [1073,0.093], + [1075,0.0972], + [1077,0.0913], + [1079,0.1089], + [1081,0.0806], + [1083,0.0862], + [1085,0.1769], + [1087,0.1404], + [1089,0.0828], + [1091,0.1258], + [1093,0.1121], + [1095,0.0942], + [1097,0.1077], + [1099,0.1571], + [1101,0.0972], + [1103,0.0945], + [1105,0.1653], + [1107,0.1198], + [1109,0.0886], + [1111,0.1136], + [1113,0.1027], + [1115,0.0876], + [1117,0.0622], + [1119,0.1315], + [1121,0.1162], + [1123,0.1142], + [1125,0.0831], + [1127,0.1129], + [1129,0.1458], + [1131,0.2316], + [1133,0.1351], + [2013,0.0618], + [2016,0.0583], + [2020,0.0595], + [2050,0.1501], + [2060,0.0888], + [2068,0.1365], + [2070,0.1059], + [2090,0.0644], + [2100,0.1003], + [2105,0.151], + [2110,0.0555], + [2122,0.0953], + [2130,0.0864], + [2150,0.074], + [2158,null], + [2164,0.1505], + [2170,0.0917], + [2180,0.1231], + [2185,0.0759], + [2188,0.155], + [2195,0.0835], + [2198,0.1236], + [2220,0.0613], + [2230,0.162], + [2240,0.1243], + [2261,0.099], + [2275,0.0752], + [2282,0.1063], + [2290,0.184], + [4001,0.1845], + [4003,0.0953], + [4005,0.0954], + [4007,0.1155], + [4009,0.0996], + [4011,0.1104], + [4012,0.0984], + [4013,0.0856], + [4015,0.1228], + [4017,0.1483], + [4019,0.0848], + [4021,0.0977], + [4023,0.1547], + [4025,0.0986], + [4027,0.2421], + [5001,0.122], + [5003,0.1119], + [5005,0.0928], + [5007,0.0651], + [5009,0.0797], + [5011,0.1254], + [5013,0.0962], + [5015,0.0723], + [5017,0.1317], + [5019,0.1039], + [5021,0.1212], + [5023,0.0921], + [5025,0.0852], + [5027,0.1], + [5029,0.0988], + [5031,0.0739], + [5033,0.0885], + [5035,0.1091], + [5037,0.0838], + [5039,0.1246], + [5041,0.1117], + [5043,0.1161], + [5045,0.0719], + [5047,0.0767], + [5049,0.0776], + [5051,0.0876], + [5053,0.0738], + [5055,0.0972], + [5057,0.0884], + [5059,0.0831], + [5061,0.075], + [5063,0.0935], + [5065,0.0992], + [5067,0.116], + [5069,0.1112], + [5071,0.0789], + [5073,0.0968], + [5075,0.099], + [5077,0.0957], + [5079,0.0935], + [5081,0.0783], + [5083,0.0883], + [5085,0.0695], + [5087,0.0678], + [5089,0.0944], + [5091,0.0636], + [5093,0.1206], + [5095,0.0953], + [5097,0.093], + [5099,0.0947], + [5101,0.0749], + [5103,0.1054], + [5105,0.0934], + [5107,0.1215], + [5109,0.1006], + [5111,0.0956], + [5113,0.0806], + [5115,0.0784], + [5117,0.0866], + [5119,0.0747], + [5121,0.1129], + [5123,0.1115], + [5125,0.0666], + [5127,0.071], + [5129,0.0917], + [5131,0.0865], + [5133,0.0922], + [5135,0.1072], + [5137,0.0894], + [5139,0.1054], + [5141,0.1104], + [5143,0.063], + [5145,0.0867], + [5147,0.1098], + [5149,0.0749], + [6001,0.1009], + [6003,0.1282], + [6005,0.1361], + [6007,0.1367], + [6009,0.1403], + [6011,0.2125], + [6013,0.103], + [6015,0.133], + [6017,0.1171], + [6019,0.1652], + [6021,0.1552], + [6023,0.1056], + [6025,0.2886], + [6027,0.0972], + [6029,0.1482], + [6031,0.1591], + [6033,0.1453], + [6035,0.1353], + [6037,0.1219], + [6039,0.1616], + [6041,0.0726], + [6043,0.1317], + [6045,0.114], + [6047,0.1764], + [6049,0.1597], + [6051,0.1005], + [6053,0.1266], + [6055,0.0977], + [6057,0.1108], + [6059,0.0905], + [6061,0.1083], + [6063,0.1759], + [6065,0.1317], + [6067,0.121], + [6069,0.145], + [6071,0.1287], + [6073,0.1032], + [6075,0.0806], + [6077,0.1618], + [6079,0.0957], + [6081,0.0751], + [6083,0.0938], + [6085,0.093], + [6087,0.1307], + [6089,0.1594], + [6091,0.1487], + [6093,0.1698], + [6095,0.1217], + [6097,0.1024], + [6099,0.1649], + [6101,0.1816], + [6103,0.1498], + [6105,0.1669], + [6107,0.171], + [6109,0.1446], + [6111,0.1024], + [6113,0.1178], + [6115,0.1697], + [8001,0.0992], + [8003,0.0966], + [8005,0.0826], + [8007,0.1007], + [8009,0.0479], + [8011,0.0824], + [8013,0.0645], + [8014,0.0702], + [8015,0.0722], + [8017,0.0419], + [8019,0.0738], + [8021,0.1046], + [8023,0.1169], + [8025,0.0887], + [8027,0.0635], + [8029,0.1044], + [8031,0.0859], + [8033,0.1278], + [8035,0.064], + [8037,0.0785], + [8039,0.075], + [8041,0.0911], + [8043,0.1201], + [8045,0.0947], + [8047,0.0722], + [8049,0.0805], + [8051,0.0603], + [8053,0.0507], + [8055,0.1358], + [8057,0.0605], + [8059,0.0795], + [8061,0.0502], + [8063,0.0469], + [8065,0.1008], + [8067,0.0702], + [8069,0.0716], + [8071,0.1102], + [8073,0.0634], + [8075,0.0625], + [8077,0.1025], + [8079,0.054], + [8081,0.093], + [8083,0.0875], + [8085,0.1105], + [8087,0.0667], + [8089,0.0996], + [8091,0.1018], + [8093,0.0769], + [8095,0.0534], + [8097,0.0782], + [8099,0.0662], + [8101,0.1052], + [8103,0.0786], + [8105,0.1229], + [8107,0.0824], + [8109,0.1114], + [8111,0.1169], + [8113,0.0805], + [8115,0.0794], + [8117,0.065], + [8119,0.093], + [8121,0.0545], + [8123,0.086], + [8125,0.0526], + [9001,0.0818], + [9003,0.0907], + [9005,0.0814], + [9007,0.0764], + [9009,0.0968], + [9011,0.0883], + [9013,0.0756], + [9015,0.0986], + [10001,0.0819], + [10003,0.0726], + [10005,0.0768], + [11001,0.1015], + [12001,0.0758], + [12003,0.1019], + [12005,0.102], + [12007,0.0908], + [12009,0.1089], + [12011,0.0943], + [12013,0.1038], + [12015,0.1128], + [12017,0.1251], + [12019,0.0911], + [12021,0.1013], + [12023,0.1029], + [12027,0.1035], + [12029,0.1229], + [12031,0.1027], + [12033,0.0969], + [12035,0.1138], + [12037,0.0764], + [12039,0.1158], + [12041,0.103], + [12043,0.0952], + [12045,0.0966], + [12047,0.1039], + [12049,0.1005], + [12051,0.1385], + [12053,0.125], + [12055,0.1148], + [12057,0.0959], + [12059,0.0983], + [12061,0.1266], + [12063,0.0947], + [12065,0.1005], + [12067,0.0624], + [12069,0.106], + [12071,0.1086], + [12073,0.0777], + [12075,0.1089], + [12077,0.0915], + [12079,0.0959], + [12081,0.0998], + [12083,0.1231], + [12085,0.099], + [12086,0.0941], + [12087,0.0699], + [12089,0.0961], + [12091,0.0782], + [12093,0.1193], + [12095,0.098], + [12097,0.1127], + [12099,0.1004], + [12101,0.1082], + [12103,0.0971], + [12105,0.1126], + [12107,0.1279], + [12109,0.0774], + [12111,0.1259], + [12113,0.0864], + [12115,0.1023], + [12117,0.0961], + [12119,0.1215], + [12121,0.0925], + [12123,0.1007], + [12125,0.0819], + [12127,0.1123], + [12129,0.0826], + [12131,0.085], + [12133,0.1002], + [13001,0.1236], + [13003,0.1282], + [13005,0.1049], + [13007,0.116], + [13009,0.1377], + [13011,0.0924], + [13013,0.0995], + [13015,0.1145], + [13017,0.1559], + [13019,0.1248], + [13021,0.115], + [13023,0.1335], + [13025,0.1317], + [13027,0.1001], + [13029,0.0936], + [13031,0.1051], + [13033,0.1269], + [13035,0.1136], + [13037,0.0841], + [13039,0.0955], + [13043,0.0962], + [13045,0.1136], + [13047,0.082], + [13049,0.1063], + [13051,0.1002], + [13053,0.1157], + [13055,0.1103], + [13057,0.0817], + [13059,0.0931], + [13061,0.1229], + [13063,0.1342], + [13065,0.1097], + [13067,0.0883], + [13069,0.1289], + [13071,0.0951], + [13073,0.0735], + [13075,0.1126], + [13077,0.0905], + [13079,0.1078], + [13081,0.1391], + [13083,0.0799], + [13085,0.1014], + [13087,0.1199], + [13089,0.1055], + [13091,0.1228], + [13093,0.1305], + [13095,0.1217], + [13097,0.1087], + [13099,0.1149], + [13101,0.0809], + [13103,0.0931], + [13105,0.1612], + [13107,0.1329], + [13109,0.0913], + [13111,0.1129], + [13113,0.0801], + [13115,0.1207], + [13117,0.0741], + [13119,0.1215], + [13121,0.1019], + [13123,0.1176], + [13125,0.1064], + [13127,0.1043], + [13129,0.1168], + [13131,0.095], + [13133,0.1234], + [13135,0.0871], + [13137,0.105], + [13139,0.0886], + [13141,0.1979], + [13143,0.116], + [13145,0.0741], + [13147,0.112], + [13149,0.1132], + [13151,0.1032], + [13153,0.0854], + [13155,0.1375], + [13157,0.0959], + [13159,0.1102], + [13161,0.1259], + [13163,0.1326], + [13165,0.1435], + [13167,0.1109], + [13169,0.0921], + [13171,0.1373], + [13173,0.105], + [13175,0.1384], + [13177,0.0845], + [13179,0.0933], + [13181,0.1155], + [13183,0.0888], + [13185,0.099], + [13187,0.0978], + [13189,0.1334], + [13191,0.1063], + [13193,0.1384], + [13195,0.1011], + [13197,0.1043], + [13199,0.1336], + [13201,0.0917], + [13205,0.1003], + [13207,0.097], + [13209,0.1319], + [13211,0.1005], + [13213,0.1389], + [13215,0.1002], + [13217,0.1235], + [13219,0.07], + [13221,0.0972], + [13223,0.0955], + [13225,0.1185], + [13227,0.1053], + [13229,0.1066], + [13231,0.1019], + [13233,0.1149], + [13235,0.0961], + [13237,0.1299], + [13239,0.1021], + [13241,0.1238], + [13243,0.1277], + [13245,0.1124], + [13247,0.1122], + [13249,0.1147], + [13251,0.1579], + [13253,0.1259], + [13255,0.1401], + [13257,0.1195], + [13259,0.098], + [13261,0.1256], + [13263,0.1052], + [13265,0.157], + [13267,0.088], + [13269,0.1444], + [13271,0.1323], + [13273,0.12], + [13275,0.1037], + [13277,0.1209], + [13279,0.1341], + [13281,0.1253], + [13283,0.1328], + [13285,0.1101], + [13287,0.1429], + [13289,0.1548], + [13291,0.1016], + [13293,0.1159], + [13295,0.0978], + [13297,0.1041], + [13299,0.1128], + [13301,0.1658], + [13303,0.1274], + [13305,0.1215], + [13307,0.1143], + [13309,0.1469], + [13311,0.0993], + [13313,0.1183], + [13315,0.1279], + [13317,0.1392], + [13319,0.129], + [13321,0.115], + [15001,0.0984], + [15003,0.0587], + [15005,null], + [15007,0.087], + [15009,0.0793], + [16001,0.0735], + [16003,0.1789], + [16005,0.0752], + [16007,0.0609], + [16009,0.133], + [16011,0.0713], + [16013,0.0868], + [16015,0.102], + [16017,0.1235], + [16019,0.0693], + [16021,0.1157], + [16023,0.0816], + [16025,0.1236], + [16027,0.1056], + [16029,0.0747], + [16031,0.0659], + [16033,0.0891], + [16035,0.1369], + [16037,0.0796], + [16039,0.0829], + [16041,0.0543], + [16043,0.0774], + [16045,0.1081], + [16047,0.0676], + [16049,0.1234], + [16051,0.0694], + [16053,0.075], + [16055,0.1015], + [16057,0.063], + [16059,0.1028], + [16061,0.0624], + [16063,0.1194], + [16065,0.0529], + [16067,0.0695], + [16069,0.0636], + [16071,0.058], + [16073,0.0434], + [16075,0.0899], + [16077,0.0879], + [16079,0.145], + [16081,0.0674], + [16083,0.0787], + [16085,0.1412], + [16087,0.0976], + [17001,0.069], + [17003,0.1291], + [17005,0.0931], + [17007,0.1176], + [17009,0.0622], + [17011,0.0989], + [17013,0.0973], + [17015,0.0899], + [17017,0.0818], + [17019,0.0778], + [17021,0.0958], + [17023,0.1036], + [17025,0.1061], + [17027,0.0673], + [17029,0.0938], + [17031,0.1045], + [17033,0.0728], + [17035,0.0864], + [17037,0.093], + [17039,0.085], + [17041,0.0812], + [17043,0.0819], + [17045,0.1048], + [17047,0.0813], + [17049,0.0687], + [17051,0.0924], + [17053,0.0872], + [17055,0.1116], + [17057,0.1048], + [17059,0.0889], + [17061,0.0874], + [17063,0.1274], + [17065,0.0863], + [17067,0.0916], + [17069,0.1081], + [17071,0.0797], + [17073,0.0785], + [17075,0.0919], + [17077,0.0798], + [17079,0.0784], + [17081,0.0932], + [17083,0.0894], + [17085,0.0791], + [17087,0.117], + [17089,0.0975], + [17091,0.1141], + [17093,0.0933], + [17095,0.088], + [17097,0.0883], + [17099,0.1066], + [17101,0.1064], + [17103,0.0906], + [17105,0.0844], + [17107,0.0776], + [17109,0.0791], + [17111,0.0988], + [17113,0.0662], + [17115,0.0999], + [17117,0.097], + [17119,0.0895], + [17121,0.1], + [17123,0.0888], + [17125,0.1063], + [17127,0.0884], + [17129,0.0721], + [17131,0.0835], + [17133,0.0673], + [17135,0.1187], + [17137,0.0803], + [17139,0.0762], + [17141,0.1143], + [17143,0.0922], + [17145,0.1018], + [17147,0.0708], + [17149,0.0802], + [17151,0.0888], + [17153,0.1196], + [17155,0.1026], + [17157,0.0824], + [17159,0.0824], + [17161,0.0852], + [17163,0.0972], + [17165,0.095], + [17167,0.0742], + [17169,0.0801], + [17171,0.0822], + [17173,0.091], + [17175,0.0875], + [17177,0.0977], + [17179,0.0831], + [17181,0.1163], + [17183,0.0993], + [17185,0.0888], + [17187,0.0723], + [17189,0.0659], + [17191,0.0801], + [17193,0.079], + [17195,0.0946], + [17197,0.1063], + [17199,0.0904], + [17201,0.1186], + [17203,0.0645], + [18001,0.0782], + [18003,0.0928], + [18005,0.076], + [18007,0.079], + [18009,0.1229], + [18011,0.0672], + [18013,0.0921], + [18015,0.0833], + [18017,0.0943], + [18019,0.089], + [18021,0.1038], + [18023,0.0862], + [18025,0.1186], + [18027,0.0611], + [18029,0.0963], + [18031,0.0978], + [18033,0.097], + [18035,0.1015], + [18037,0.0607], + [18039,0.1075], + [18041,0.1256], + [18043,0.0798], + [18045,0.0959], + [18047,0.1004], + [18049,0.0924], + [18051,0.0733], + [18053,0.1038], + [18055,0.1037], + [18057,0.0581], + [18059,0.0824], + [18061,0.0894], + [18063,0.0698], + [18065,0.1151], + [18067,0.1044], + [18069,0.0982], + [18071,0.0874], + [18073,0.0907], + [18075,0.0898], + [18077,0.0978], + [18079,0.1152], + [18081,0.0775], + [18083,0.0745], + [18085,0.0893], + [18087,0.0899], + [18089,0.0958], + [18091,0.1038], + [18093,0.1162], + [18095,0.109], + [18097,0.0988], + [18099,0.0947], + [18101,0.075], + [18103,0.1045], + [18105,0.0753], + [18107,0.0887], + [18109,0.0935], + [18111,0.0987], + [18113,0.1008], + [18115,0.095], + [18117,0.1183], + [18119,0.1123], + [18121,0.1045], + [18123,0.091], + [18125,0.0781], + [18127,0.0817], + [18129,0.0688], + [18131,0.0808], + [18133,0.1083], + [18135,0.1037], + [18137,0.0945], + [18139,0.0953], + [18141,0.1012], + [18143,0.1187], + [18145,0.0947], + [18147,0.0767], + [18149,0.1141], + [18151,0.0896], + [18153,0.093], + [18155,0.0816], + [18157,0.0747], + [18159,0.09], + [18161,0.0884], + [18163,0.08], + [18165,0.1174], + [18167,0.103], + [18169,0.0956], + [18171,0.0812], + [18173,0.071], + [18175,0.1061], + [18177,0.1112], + [18179,0.0824], + [18181,0.0865], + [18183,0.0933], + [19001,0.0486], + [19003,0.0444], + [19005,0.0718], + [19007,0.0692], + [19009,0.0574], + [19011,0.058], + [19013,0.0583], + [19015,0.0496], + [19017,0.0436], + [19019,0.0566], + [19021,0.0451], + [19023,0.0503], + [19025,0.057], + [19027,0.0403], + [19029,0.0595], + [19031,0.0516], + [19033,0.0613], + [19035,0.0474], + [19037,0.0626], + [19039,0.0702], + [19041,0.0544], + [19043,0.0618], + [19045,0.0662], + [19047,0.0473], + [19049,0.0427], + [19051,0.0609], + [19053,0.05], + [19055,0.0545], + [19057,0.0674], + [19059,0.063], + [19061,0.0505], + [19063,0.056], + [19065,0.0621], + [19067,0.0648], + [19069,0.0513], + [19071,0.0577], + [19073,0.0559], + [19075,0.0498], + [19077,0.0612], + [19079,0.088], + [19081,0.0559], + [19083,0.0588], + [19085,0.0554], + [19087,0.068], + [19089,0.0534], + [19091,0.0503], + [19093,0.0485], + [19095,0.0501], + [19097,0.065], + [19099,0.067], + [19101,0.0599], + [19103,0.0403], + [19105,0.0581], + [19107,0.0612], + [19109,0.0436], + [19111,0.0814], + [19113,0.0568], + [19115,0.061], + [19117,0.0528], + [19119,0.0311], + [19121,0.0596], + [19123,0.0583], + [19125,0.0544], + [19127,0.0657], + [19129,0.0494], + [19131,0.0474], + [19133,0.0693], + [19135,0.0672], + [19137,0.0586], + [19139,0.0658], + [19141,0.0418], + [19143,0.0445], + [19145,0.057], + [19147,0.0469], + [19149,0.0446], + [19151,0.0439], + [19153,0.0567], + [19155,0.0559], + [19157,0.0557], + [19159,0.0458], + [19161,0.0442], + [19163,0.0616], + [19165,0.0432], + [19167,0.0368], + [19169,0.0394], + [19171,0.061], + [19173,0.0473], + [19175,0.0526], + [19177,0.0631], + [19179,0.0715], + [19181,0.0518], + [19183,0.0469], + [19185,0.0553], + [19187,0.0697], + [19189,0.0602], + [19191,0.0498], + [19193,0.0573], + [19195,0.0639], + [19197,0.0685], + [20001,0.0802], + [20003,0.0762], + [20005,0.0905], + [20007,0.04], + [20009,0.0521], + [20011,0.0897], + [20013,0.0596], + [20015,0.0701], + [20017,0.0546], + [20019,0.0824], + [20021,0.0812], + [20023,0.0431], + [20025,0.038], + [20027,0.0565], + [20029,0.0548], + [20031,0.0783], + [20033,0.0439], + [20035,0.0702], + [20037,0.0791], + [20039,0.0481], + [20041,0.066], + [20043,0.0781], + [20045,0.0566], + [20047,0.0451], + [20049,0.076], + [20051,0.0354], + [20053,0.0407], + [20055,0.0427], + [20057,0.0431], + [20059,0.0838], + [20061,0.0918], + [20063,0.0334], + [20065,0.0417], + [20067,0.0419], + [20069,0.0332], + [20071,0.0309], + [20073,0.0664], + [20075,0.0281], + [20077,0.0566], + [20079,0.0608], + [20081,0.0352], + [20083,0.0379], + [20085,0.0601], + [20087,0.0711], + [20089,0.0471], + [20091,0.0536], + [20093,0.0441], + [20095,0.0638], + [20097,0.0424], + [20099,0.0905], + [20101,0.0459], + [20103,0.0729], + [20105,0.0517], + [20107,0.1115], + [20109,0.0327], + [20111,0.0641], + [20113,0.0456], + [20115,0.0567], + [20117,0.0466], + [20119,0.0371], + [20121,0.072], + [20123,0.036], + [20125,0.0993], + [20127,0.0669], + [20129,0.037], + [20131,0.0386], + [20133,0.0928], + [20135,0.0339], + [20137,0.0351], + [20139,0.083], + [20141,0.0447], + [20143,0.0575], + [20145,0.0457], + [20147,0.0507], + [20149,0.05], + [20151,0.0505], + [20153,0.0349], + [20155,0.0604], + [20157,0.0384], + [20159,0.0518], + [20161,0.0481], + [20163,0.0532], + [20165,0.044], + [20167,0.0468], + [20169,0.0608], + [20171,0.0374], + [20173,0.0797], + [20175,0.0461], + [20177,0.0678], + [20179,0.0321], + [20181,0.0402], + [20183,0.0402], + [20185,0.0514], + [20187,0.0404], + [20189,0.0405], + [20191,0.0766], + [20193,0.0367], + [20195,0.0469], + [20197,0.0625], + [20199,0.0544], + [20201,0.0456], + [20203,0.0384], + [20205,0.1143], + [20207,0.0675], + [20209,0.0954], + [21001,0.1179], + [21003,0.0983], + [21005,0.0833], + [21007,0.0996], + [21009,0.098], + [21011,0.1264], + [21013,0.1191], + [21015,0.0785], + [21017,0.0844], + [21019,0.1028], + [21021,0.1075], + [21023,0.1075], + [21025,0.1277], + [21027,0.1156], + [21029,0.0995], + [21031,0.1073], + [21033,0.0959], + [21035,0.075], + [21037,0.083], + [21039,0.0885], + [21041,0.1219], + [21043,0.1383], + [21045,0.0999], + [21047,0.1079], + [21049,0.0988], + [21051,0.1504], + [21053,0.1138], + [21055,0.0851], + [21057,0.11], + [21059,0.0835], + [21061,0.1169], + [21063,0.1579], + [21065,0.1243], + [21067,0.0687], + [21069,0.1062], + [21071,0.1118], + [21073,0.0791], + [21075,0.1249], + [21077,0.1074], + [21079,0.1004], + [21081,0.1065], + [21083,0.0909], + [21085,0.1227], + [21087,0.0967], + [21089,0.1122], + [21091,0.0838], + [21093,0.092], + [21095,0.1118], + [21097,0.1006], + [21099,0.0987], + [21101,0.0899], + [21103,0.088], + [21105,0.0894], + [21107,0.0847], + [21109,0.1356], + [21111,0.0946], + [21113,0.0778], + [21115,0.1086], + [21117,0.0884], + [21119,0.1183], + [21121,0.133], + [21123,0.1001], + [21125,0.1147], + [21127,0.1172], + [21129,0.1262], + [21131,0.1264], + [21133,0.1023], + [21135,0.1301], + [21137,0.1226], + [21139,0.1096], + [21141,0.0895], + [21143,0.1036], + [21145,0.0864], + [21147,0.1462], + [21149,0.0887], + [21151,0.0787], + [21153,0.1713], + [21155,0.1084], + [21157,0.0925], + [21159,0.0899], + [21161,0.103], + [21163,0.1128], + [21165,0.1408], + [21167,0.1037], + [21169,0.1123], + [21171,0.0902], + [21173,0.112], + [21175,0.1101], + [21177,0.1026], + [21179,0.1063], + [21181,0.0907], + [21183,0.0985], + [21185,0.0695], + [21187,0.0763], + [21189,0.1317], + [21191,0.1083], + [21193,0.1039], + [21195,0.0916], + [21197,0.1292], + [21199,0.1066], + [21201,0.1118], + [21203,0.1146], + [21205,0.0951], + [21207,0.1173], + [21209,0.0796], + [21211,0.0795], + [21213,0.1103], + [21215,0.0905], + [21217,0.1083], + [21219,0.0872], + [21221,0.1136], + [21223,0.1138], + [21225,0.09], + [21227,0.0827], + [21229,0.0927], + [21231,0.1426], + [21233,0.0803], + [21235,0.1204], + [21237,0.1488], + [21239,0.0651], + [22001,0.0668], + [22003,0.0911], + [22005,0.0704], + [22007,0.1207], + [22009,0.084], + [22011,0.0821], + [22013,0.1014], + [22015,0.0587], + [22017,0.0794], + [22019,0.0769], + [22021,0.0999], + [22023,0.0575], + [22025,0.1032], + [22027,0.0832], + [22029,0.096], + [22031,0.0846], + [22033,0.0758], + [22035,0.181], + [22037,0.0849], + [22039,0.0841], + [22041,0.1167], + [22043,0.0841], + [22045,0.079], + [22047,0.1035], + [22049,0.074], + [22051,0.0721], + [22053,0.0721], + [22055,0.0593], + [22057,0.0612], + [22059,0.0573], + [22061,0.0925], + [22063,0.073], + [22065,0.1266], + [22067,0.1443], + [22069,0.0924], + [22071,0.0864], + [22073,0.0834], + [22075,0.0633], + [22077,0.0914], + [22079,0.0765], + [22081,0.0771], + [22083,0.1088], + [22085,0.0714], + [22087,0.085], + [22089,0.0722], + [22091,0.1369], + [22093,0.1212], + [22095,0.1058], + [22097,0.0941], + [22099,0.0737], + [22101,0.089], + [22103,0.0629], + [22105,0.096], + [22107,0.1294], + [22109,0.0622], + [22111,0.0943], + [22113,0.066], + [22115,0.0901], + [22117,0.0949], + [22119,0.1007], + [22121,0.0778], + [22123,0.1589], + [22125,0.066], + [22127,0.0941], + [23001,0.0811], + [23003,0.098], + [23005,0.0633], + [23007,0.0905], + [23009,0.0886], + [23011,0.0749], + [23013,0.0735], + [23015,0.0778], + [23017,0.105], + [23019,0.0829], + [23021,0.1016], + [23023,0.0676], + [23025,0.1087], + [23027,0.0827], + [23029,0.1059], + [23031,0.0734], + [24001,0.0905], + [24003,0.0632], + [24005,0.0769], + [24009,0.065], + [24011,0.0863], + [24013,0.0614], + [24015,0.0888], + [24017,0.0671], + [24019,0.1112], + [24021,0.0643], + [24023,0.0839], + [24025,0.0721], + [24027,0.0519], + [24029,0.0806], + [24031,0.0527], + [24033,0.0747], + [24035,0.0679], + [24037,0.0631], + [24039,0.1168], + [24041,0.0745], + [24043,0.0877], + [24045,0.0981], + [24047,0.137], + [24510,0.1064], + [25001,0.0908], + [25003,0.078], + [25005,0.0944], + [25007,0.0938], + [25009,0.0762], + [25011,0.0655], + [25013,0.0934], + [25015,0.0618], + [25017,0.059], + [25019,0.0863], + [25021,0.0629], + [25023,0.0777], + [25025,0.0664], + [25027,0.0771], + [26001,0.1434], + [26003,0.1266], + [26005,0.0874], + [26007,0.1084], + [26009,0.1326], + [26011,0.1407], + [26013,0.1642], + [26015,0.0817], + [26017,0.0985], + [26019,0.1204], + [26021,0.1017], + [26023,0.1047], + [26025,0.098], + [26027,0.0967], + [26029,0.1217], + [26031,0.1229], + [26033,0.1085], + [26035,0.132], + [26037,0.0696], + [26039,0.1282], + [26041,0.1076], + [26043,0.0959], + [26045,0.0803], + [26047,0.1307], + [26049,0.1143], + [26051,0.1301], + [26053,0.1188], + [26055,0.098], + [26057,0.1003], + [26059,0.1064], + [26061,0.0958], + [26063,0.0973], + [26065,0.0884], + [26067,0.0977], + [26069,0.1283], + [26071,0.1037], + [26073,0.0838], + [26075,0.099], + [26077,0.0843], + [26079,0.1302], + [26081,0.0819], + [26083,0.1377], + [26085,0.1366], + [26087,0.1323], + [26089,0.0916], + [26091,0.1038], + [26093,0.09], + [26095,0.1223], + [26097,0.1312], + [26099,0.1114], + [26101,0.1196], + [26103,0.0889], + [26105,0.11], + [26107,0.113], + [26109,0.0913], + [26111,0.0837], + [26113,0.1087], + [26115,0.0947], + [26117,0.1158], + [26119,0.1805], + [26121,0.1145], + [26123,0.1064], + [26125,0.0953], + [26127,0.1404], + [26129,0.1278], + [26131,0.1624], + [26133,0.1139], + [26135,0.1778], + [26137,0.1217], + [26139,0.0798], + [26141,0.1609], + [26143,0.1479], + [26145,0.102], + [26147,0.1307], + [26149,0.1088], + [26151,0.1223], + [26153,0.133], + [26155,0.1073], + [26157,0.12], + [26159,0.1154], + [26161,0.0682], + [26163,0.1295], + [26165,0.1219], + [27001,0.0958], + [27003,0.0684], + [27005,0.0714], + [27007,0.0819], + [27009,0.0755], + [27011,0.0644], + [27013,0.054], + [27015,0.0588], + [27017,0.0762], + [27019,0.0552], + [27021,0.1003], + [27023,0.0631], + [27025,0.0761], + [27027,0.0555], + [27029,0.1187], + [27031,0.0685], + [27033,0.0614], + [27035,0.0874], + [27037,0.0605], + [27039,0.0602], + [27041,0.0605], + [27043,0.0708], + [27045,0.0664], + [27047,0.0664], + [27049,0.0599], + [27051,0.069], + [27053,0.0606], + [27055,0.0689], + [27057,0.0919], + [27059,0.0833], + [27061,0.0906], + [27063,0.0542], + [27065,0.1005], + [27067,0.0598], + [27069,0.0684], + [27071,0.0835], + [27073,0.0606], + [27075,0.0688], + [27077,0.062], + [27079,0.0759], + [27081,0.0516], + [27083,0.0526], + [27085,0.0764], + [27087,0.0758], + [27089,0.0835], + [27091,0.0664], + [27093,0.0772], + [27095,0.096], + [27097,0.0822], + [27099,0.0565], + [27101,0.0623], + [27103,0.0509], + [27105,0.0527], + [27107,0.0669], + [27109,0.0526], + [27111,0.0639], + [27113,0.0766], + [27115,0.088], + [27117,0.065], + [27119,0.0703], + [27121,0.0589], + [27123,0.0664], + [27125,0.0809], + [27127,0.0605], + [27129,0.0733], + [27131,0.0663], + [27133,0.0422], + [27135,0.0535], + [27137,0.0735], + [27139,0.0577], + [27141,0.0714], + [27143,0.0688], + [27145,0.0625], + [27147,0.0646], + [27149,0.0487], + [27151,0.0714], + [27153,0.0679], + [27155,0.0597], + [27157,0.0617], + [27159,0.09], + [27161,0.0629], + [27163,0.0589], + [27165,0.0632], + [27167,0.0558], + [27169,0.0582], + [27171,0.0683], + [27173,0.0571], + [28001,0.1078], + [28003,0.1085], + [28005,0.1146], + [28007,0.1118], + [28009,0.1237], + [28011,0.1115], + [28013,0.0871], + [28015,0.1217], + [28017,0.1142], + [28019,0.1019], + [28021,0.1593], + [28023,0.118], + [28025,0.1489], + [28027,0.1385], + [28029,0.1154], + [28031,0.0934], + [28033,0.0719], + [28035,0.101], + [28037,0.1081], + [28039,0.1213], + [28041,0.1208], + [28043,0.1024], + [28045,0.0949], + [28047,0.0892], + [28049,0.0952], + [28051,0.179], + [28053,0.185], + [28055,0.2016], + [28057,0.0999], + [28059,0.1041], + [28061,0.1148], + [28063,0.1859], + [28065,0.1391], + [28067,0.0856], + [28069,0.1425], + [28071,0.0859], + [28073,0.0714], + [28075,0.1025], + [28077,0.116], + [28079,0.0974], + [28081,0.0965], + [28083,0.1489], + [28085,0.0975], + [28087,0.1052], + [28089,0.0689], + [28091,0.1068], + [28093,0.117], + [28095,0.1204], + [28097,0.124], + [28099,0.0931], + [28101,0.0923], + [28103,0.1455], + [28105,0.0955], + [28107,0.1319], + [28109,0.0933], + [28111,0.1321], + [28113,0.1157], + [28115,0.0934], + [28117,0.104], + [28119,0.1489], + [28121,0.0637], + [28123,0.0844], + [28125,0.1458], + [28127,0.0913], + [28129,0.0822], + [28131,0.1075], + [28133,0.1509], + [28135,0.1213], + [28137,0.1037], + [28139,0.1183], + [28141,0.1206], + [28143,0.1447], + [28145,0.0989], + [28147,0.1205], + [28149,0.1017], + [28151,0.1551], + [28153,0.1141], + [28155,0.1041], + [28157,0.1299], + [28159,0.1333], + [28161,0.1176], + [28163,0.1202], + [29001,0.0857], + [29003,0.0693], + [29005,0.0819], + [29007,0.082], + [29009,0.0897], + [29011,0.088], + [29013,0.1009], + [29015,0.1092], + [29017,0.09], + [29019,0.0571], + [29021,0.0809], + [29023,0.09], + [29025,0.0867], + [29027,0.0761], + [29029,0.1115], + [29031,0.0674], + [29033,0.1046], + [29035,0.1129], + [29037,0.0848], + [29039,0.087], + [29041,0.0896], + [29043,0.0743], + [29045,0.1001], + [29047,0.0739], + [29049,0.0891], + [29051,0.0628], + [29053,0.0902], + [29055,0.1087], + [29057,0.0929], + [29059,0.1103], + [29061,0.089], + [29063,0.08], + [29065,0.0969], + [29067,0.102], + [29069,0.1212], + [29071,0.094], + [29073,0.0884], + [29075,0.0694], + [29077,0.0733], + [29079,0.0708], + [29081,0.0851], + [29083,0.0965], + [29085,0.1167], + [29087,0.0722], + [29089,0.0824], + [29091,0.0958], + [29093,0.1406], + [29095,0.0951], + [29097,0.0758], + [29099,0.0878], + [29101,0.0912], + [29103,0.0718], + [29105,0.113], + [29107,0.091], + [29109,0.0832], + [29111,0.0696], + [29113,0.1007], + [29115,0.1188], + [29117,0.0757], + [29119,0.0835], + [29121,0.0827], + [29123,0.1041], + [29125,0.0844], + [29127,0.0748], + [29129,0.0669], + [29131,0.1146], + [29133,0.0962], + [29135,0.0766], + [29137,0.0987], + [29139,0.0993], + [29141,0.1265], + [29143,0.0971], + [29145,0.0798], + [29147,0.0687], + [29149,0.098], + [29151,0.0618], + [29153,0.1182], + [29155,0.1165], + [29157,0.0665], + [29159,0.0825], + [29161,0.0843], + [29163,0.0833], + [29165,0.0692], + [29167,0.0933], + [29169,0.0869], + [29171,0.0679], + [29173,0.0749], + [29175,0.1049], + [29177,0.0928], + [29179,0.132], + [29181,0.1196], + [29183,0.069], + [29185,0.1009], + [29186,0.0925], + [29187,0.108], + [29189,0.0784], + [29195,0.08], + [29197,0.0912], + [29199,0.066], + [29201,0.0879], + [29203,0.1315], + [29205,0.0718], + [29207,0.1003], + [29209,0.1257], + [29211,0.0835], + [29213,0.1317], + [29215,0.0973], + [29217,0.0723], + [29219,0.0909], + [29221,0.1221], + [29223,0.1015], + [29225,0.0892], + [29227,0.0572], + [29229,0.0981], + [29510,0.1033], + [30001,0.061], + [30003,0.1201], + [30005,0.0712], + [30007,0.0738], + [30009,0.0574], + [30011,0.0395], + [30013,0.0639], + [30015,0.0456], + [30017,0.0407], + [30019,0.035], + [30021,0.0365], + [30023,0.0619], + [30025,0.0261], + [30027,0.061], + [30029,0.1094], + [30031,0.0601], + [30033,0.0386], + [30035,0.1137], + [30037,0.0512], + [30039,0.0906], + [30041,0.0626], + [30043,0.0626], + [30045,0.062], + [30047,0.0911], + [30049,0.0532], + [30051,0.0403], + [30053,0.1481], + [30055,0.0301], + [30057,0.0732], + [30059,0.0736], + [30061,0.1212], + [30063,0.0674], + [30065,0.0661], + [30067,0.083], + [30069,0.0571], + [30071,0.0691], + [30073,0.0604], + [30075,0.0473], + [30077,0.0766], + [30079,0.0546], + [30081,0.0898], + [30083,0.0309], + [30085,0.0709], + [30087,0.0729], + [30089,0.1335], + [30091,0.0355], + [30093,0.0659], + [30095,0.052], + [30097,0.047], + [30099,0.0568], + [30101,0.0465], + [30103,0.0556], + [30105,0.047], + [30107,0.08], + [30109,0.0418], + [30111,0.0546], + [31001,0.0431], + [31003,0.0364], + [31005,0.0606], + [31007,0.0462], + [31009,0.0536], + [31011,0.0365], + [31013,0.0423], + [31015,0.0383], + [31017,0.0458], + [31019,0.0351], + [31021,0.0574], + [31023,0.0377], + [31025,0.0524], + [31027,0.0329], + [31029,0.0243], + [31031,0.0304], + [31033,0.0304], + [31035,0.0413], + [31037,0.0387], + [31039,0.0341], + [31041,0.0341], + [31043,0.0588], + [31045,0.0387], + [31047,0.05], + [31049,0.0346], + [31051,0.0456], + [31053,0.0492], + [31055,0.049], + [31057,0.029], + [31059,0.0346], + [31061,0.0419], + [31063,0.0356], + [31065,0.0365], + [31067,0.0578], + [31069,0.0357], + [31071,0.034], + [31073,0.0354], + [31075,0.033], + [31077,0.0389], + [31079,0.0447], + [31081,0.0379], + [31083,0.0327], + [31085,0.0309], + [31087,0.0487], + [31089,0.0343], + [31091,0.047], + [31093,0.0406], + [31095,0.0432], + [31097,0.0483], + [31099,0.0323], + [31101,0.0408], + [31103,0.0299], + [31105,0.0362], + [31107,0.0388], + [31109,0.04], + [31111,0.0438], + [31113,0.0354], + [31115,0.0476], + [31117,0.0246], + [31119,0.0407], + [31121,0.0426], + [31123,0.0339], + [31125,0.0368], + [31127,0.0497], + [31129,0.0361], + [31131,0.0507], + [31133,0.0375], + [31135,0.0288], + [31137,0.0365], + [31139,0.0354], + [31141,0.0416], + [31143,0.0343], + [31145,0.0347], + [31147,0.0604], + [31149,0.0267], + [31151,0.0471], + [31153,0.0424], + [31155,0.0459], + [31157,0.0502], + [31159,0.0384], + [31161,0.0357], + [31163,0.0432], + [31165,0.0344], + [31167,0.0372], + [31169,0.0328], + [31171,0.0516], + [31173,0.1019], + [31175,0.04], + [31177,0.0435], + [31179,0.0346], + [31181,0.0461], + [31183,0.0324], + [31185,0.0434], + [32001,0.124], + [32003,0.1323], + [32005,0.1324], + [32007,0.0723], + [32009,0.0793], + [32011,0.069], + [32013,0.0783], + [32015,0.0879], + [32017,0.1116], + [32019,0.1672], + [32021,0.14], + [32023,0.1681], + [32027,0.1081], + [32029,0.157], + [32031,0.1259], + [32033,0.0869], + [32510,0.1322], + [33001,0.055], + [33003,0.0545], + [33005,0.0502], + [33007,0.0729], + [33009,0.0446], + [33011,0.0566], + [33013,0.0492], + [33015,0.056], + [33017,0.053], + [33019,0.0458], + [34001,0.1251], + [34003,0.0771], + [34005,0.087], + [34007,0.1085], + [34009,0.1486], + [34011,0.1296], + [34013,0.1082], + [34015,0.1017], + [34017,0.0916], + [34019,0.0691], + [34021,0.0828], + [34023,0.0872], + [34025,0.0856], + [34027,0.0706], + [34029,0.104], + [34031,0.1101], + [34033,0.1164], + [34035,0.0739], + [34037,0.0925], + [34039,0.0952], + [34041,0.0908], + [35001,0.072], + [35003,0.1111], + [35005,0.0675], + [35006,0.0947], + [35007,0.0812], + [35009,0.0507], + [35011,0.0513], + [35013,0.0755], + [35015,0.0509], + [35017,0.0728], + [35019,0.1057], + [35021,0.064], + [35023,0.0757], + [35025,0.0558], + [35027,0.0677], + [35028,0.0354], + [35029,0.2023], + [35031,0.0993], + [35033,0.1236], + [35035,0.0682], + [35037,0.0961], + [35039,0.0927], + [35041,0.0573], + [35043,0.0803], + [35045,0.0786], + [35047,0.095], + [35049,0.0623], + [35051,0.0985], + [35053,0.0765], + [35055,0.1049], + [35057,0.1146], + [35059,0.0469], + [35061,0.0899], + [36001,0.0692], + [36003,0.0893], + [36005,0.1193], + [36007,0.086], + [36009,0.0933], + [36011,0.0811], + [36013,0.0818], + [36015,0.0784], + [36017,0.0869], + [36019,0.0959], + [36021,0.0711], + [36023,0.0845], + [36025,0.0868], + [36027,0.0751], + [36029,0.0799], + [36031,0.0909], + [36033,0.0912], + [36035,0.1056], + [36037,0.0778], + [36039,0.0938], + [36041,0.0987], + [36043,0.0871], + [36045,0.0977], + [36047,0.0956], + [36049,0.0965], + [36051,0.0765], + [36053,0.0817], + [36055,0.0767], + [36057,0.1023], + [36059,0.0682], + [36061,0.0782], + [36063,0.0914], + [36065,0.0799], + [36067,0.0772], + [36069,0.0709], + [36071,0.0771], + [36073,0.0923], + [36075,0.1076], + [36077,0.0773], + [36079,0.0703], + [36081,0.0809], + [36083,0.076], + [36085,0.0916], + [36087,0.0714], + [36089,0.1038], + [36091,0.0665], + [36093,0.0749], + [36095,0.0896], + [36097,0.0884], + [36099,0.0792], + [36101,0.0911], + [36103,0.0761], + [36105,0.0886], + [36107,0.0769], + [36109,0.0605], + [36111,0.0785], + [36113,0.0892], + [36115,0.0809], + [36117,0.0842], + [36119,0.0707], + [36121,0.0873], + [36123,0.0749], + [37001,0.0966], + [37003,0.1128], + [37005,0.1222], + [37007,0.1229], + [37009,0.1095], + [37011,0.111], + [37013,0.1112], + [37015,0.1207], + [37017,0.134], + [37019,0.1221], + [37021,0.0794], + [37023,0.1144], + [37025,0.104], + [37027,0.1325], + [37029,0.0856], + [37031,0.0971], + [37033,0.1178], + [37035,0.1166], + [37037,0.0811], + [37039,0.1184], + [37041,0.1215], + [37043,0.1153], + [37045,0.1236], + [37047,0.1339], + [37049,0.1055], + [37051,0.1051], + [37053,0.0905], + [37055,0.1302], + [37057,0.1102], + [37059,0.1058], + [37061,0.0946], + [37063,0.0809], + [37065,0.1552], + [37067,0.0983], + [37069,0.1066], + [37071,0.1186], + [37073,0.082], + [37075,0.1805], + [37077,0.0891], + [37079,0.096], + [37081,0.1045], + [37083,0.1459], + [37085,0.1137], + [37087,0.1008], + [37089,0.0849], + [37091,0.1135], + [37093,0.1088], + [37095,0.1339], + [37097,0.1139], + [37099,0.1113], + [37101,0.0949], + [37103,0.1063], + [37105,0.1232], + [37107,0.1089], + [37109,0.1118], + [37111,0.1236], + [37113,0.1133], + [37115,0.1026], + [37117,0.1243], + [37119,0.0992], + [37121,0.1187], + [37123,0.1179], + [37125,0.0954], + [37127,0.1248], + [37129,0.0955], + [37131,0.1224], + [37133,0.0828], + [37135,0.0654], + [37137,0.0972], + [37139,0.1032], + [37141,0.1134], + [37143,0.1097], + [37145,0.1192], + [37147,0.1013], + [37149,0.0932], + [37151,0.1094], + [37153,0.146], + [37155,0.1423], + [37157,0.123], + [37159,0.1245], + [37161,0.1456], + [37163,0.0977], + [37165,0.1803], + [37167,0.1177], + [37169,0.1041], + [37171,0.108], + [37173,0.1564], + [37175,0.0943], + [37177,0.1494], + [37179,0.0912], + [37181,0.149], + [37183,0.0786], + [37185,0.1396], + [37187,0.1688], + [37189,0.0788], + [37191,0.0904], + [37193,0.1177], + [37195,0.1391], + [37197,0.103], + [37199,0.1134], + [38001,0.0283], + [38003,0.0394], + [38005,0.0604], + [38007,0.0386], + [38009,0.0375], + [38011,0.0219], + [38013,0.0235], + [38015,0.0325], + [38017,0.0326], + [38019,0.0302], + [38021,0.029], + [38023,0.0177], + [38025,0.0208], + [38027,0.0495], + [38029,0.0604], + [38031,0.0317], + [38033,0.0245], + [38035,0.0368], + [38037,0.0352], + [38039,0.03], + [38041,0.0289], + [38043,0.0523], + [38045,0.03], + [38047,0.0307], + [38049,0.0463], + [38051,0.0374], + [38053,0.018], + [38055,0.0474], + [38057,0.0541], + [38059,0.0402], + [38061,0.0215], + [38063,0.0433], + [38065,0.0616], + [38067,0.069], + [38069,0.048], + [38071,0.0382], + [38073,0.0354], + [38075,0.0277], + [38077,0.0382], + [38079,0.1094], + [38081,0.0308], + [38083,0.0401], + [38085,0.0541], + [38087,0.0203], + [38089,0.022], + [38091,0.026], + [38093,0.038], + [38095,0.0304], + [38097,0.0365], + [38099,0.0503], + [38101,0.0319], + [38103,0.0437], + [38105,0.0141], + [39001,0.1434], + [39003,0.0952], + [39005,0.0988], + [39007,0.1088], + [39009,0.0991], + [39011,0.0809], + [39013,0.0955], + [39015,0.1185], + [39017,0.0907], + [39019,0.102], + [39021,0.0945], + [39023,0.0949], + [39025,0.0914], + [39027,0.135], + [39029,0.1015], + [39031,0.1147], + [39033,0.1154], + [39035,0.0758], + [39037,0.0926], + [39039,0.0965], + [39041,0.0624], + [39043,0.0951], + [39045,0.0805], + [39047,0.1051], + [39049,0.0775], + [39051,0.0963], + [39053,0.1121], + [39055,0.0603], + [39057,0.0826], + [39059,0.1082], + [39061,0.0886], + [39063,0.0777], + [39065,0.0954], + [39067,0.1066], + [39069,0.1072], + [39071,0.1345], + [39073,0.0995], + [39075,0.0631], + [39077,0.1138], + [39079,0.1184], + [39081,0.1202], + [39083,0.0873], + [39085,0.0682], + [39087,0.0949], + [39089,0.0839], + [39091,0.0976], + [39093,0.0784], + [39095,0.0989], + [39097,0.0791], + [39099,0.0982], + [39101,0.0987], + [39103,0.0637], + [39105,0.1314], + [39107,0.0675], + [39109,0.0913], + [39111,0.0986], + [39113,0.0972], + [39115,0.1137], + [39117,0.1013], + [39119,0.109], + [39121,0.1335], + [39123,0.1107], + [39125,0.0976], + [39127,0.1158], + [39129,0.0919], + [39131,0.1521], + [39133,0.0886], + [39135,0.0957], + [39137,0.0744], + [39139,0.1062], + [39141,0.0996], + [39143,0.0916], + [39145,0.1253], + [39147,0.0964], + [39149,0.0967], + [39151,0.0933], + [39153,0.0908], + [39155,0.1068], + [39157,0.0929], + [39159,0.0717], + [39161,0.093], + [39163,0.1191], + [39165,0.0788], + [39167,0.1005], + [39169,0.0766], + [39171,0.1076], + [39173,0.0831], + [39175,0.0922], + [40001,0.0915], + [40003,0.041], + [40005,0.0854], + [40007,0.0362], + [40009,0.0369], + [40011,0.0533], + [40013,0.0592], + [40015,0.0709], + [40017,0.0438], + [40019,0.0641], + [40021,0.0728], + [40023,0.0899], + [40025,0.0336], + [40027,0.0454], + [40029,0.0842], + [40031,0.0573], + [40033,0.0607], + [40035,0.063], + [40037,0.0704], + [40039,0.0402], + [40041,0.0715], + [40043,0.0389], + [40045,0.0379], + [40047,0.0442], + [40049,0.0581], + [40051,0.053], + [40053,0.0373], + [40055,0.0634], + [40057,0.0538], + [40059,0.0369], + [40061,0.0887], + [40063,0.0935], + [40065,0.0547], + [40067,0.0613], + [40069,0.0851], + [40071,0.0777], + [40073,0.0388], + [40075,0.0515], + [40077,0.0994], + [40079,0.0892], + [40081,0.0546], + [40083,0.0486], + [40085,0.0503], + [40087,0.0472], + [40089,0.1022], + [40091,0.1059], + [40093,0.04], + [40095,0.0601], + [40097,0.0759], + [40099,0.0492], + [40101,0.074], + [40103,0.0513], + [40105,0.0798], + [40107,0.0855], + [40109,0.0529], + [40111,0.0902], + [40113,0.0677], + [40115,0.0754], + [40117,0.0784], + [40119,0.0498], + [40121,0.0734], + [40123,0.0542], + [40125,0.0598], + [40127,0.0866], + [40129,0.0321], + [40131,0.0575], + [40133,0.0832], + [40135,0.0921], + [40137,0.0584], + [40139,0.044], + [40141,0.0584], + [40143,0.0605], + [40145,0.0588], + [40147,0.0573], + [40149,0.0448], + [40151,0.0343], + [40153,0.0466], + [41001,0.1085], + [41003,0.0639], + [41005,0.0885], + [41007,0.0942], + [41009,0.113], + [41011,0.1159], + [41013,0.1428], + [41015,0.1203], + [41017,0.1229], + [41019,0.127], + [41021,0.0966], + [41023,0.1379], + [41025,0.1331], + [41027,0.0791], + [41029,0.1172], + [41031,0.1274], + [41033,0.1263], + [41035,0.12], + [41037,0.1311], + [41039,0.0967], + [41041,0.1044], + [41043,0.1137], + [41045,0.0944], + [41047,0.1049], + [41049,0.0822], + [41051,0.0834], + [41053,0.0927], + [41055,0.1109], + [41057,0.0991], + [41059,0.0952], + [41061,0.0997], + [41063,0.1222], + [41065,0.088], + [41067,0.0772], + [41069,0.0847], + [41071,0.0921], + [42001,0.0668], + [42003,0.071], + [42005,0.0821], + [42007,0.0781], + [42009,0.0909], + [42011,0.0789], + [42013,0.0729], + [42015,0.0648], + [42017,0.073], + [42019,0.0667], + [42021,0.0869], + [42023,0.1068], + [42025,0.1005], + [42027,0.0543], + [42029,0.0577], + [42031,0.0992], + [42033,0.0938], + [42035,0.0837], + [42037,0.0864], + [42039,0.08], + [42041,0.0636], + [42043,0.0757], + [42045,0.0776], + [42047,0.0739], + [42049,0.0815], + [42051,0.1005], + [42053,0.0944], + [42055,0.0732], + [42057,0.1011], + [42059,0.0764], + [42061,0.1009], + [42063,0.0785], + [42065,0.0873], + [42067,0.0736], + [42069,0.0882], + [42071,0.0687], + [42073,0.084], + [42075,0.0692], + [42077,0.0865], + [42079,0.096], + [42081,0.0774], + [42083,0.0873], + [42085,0.0788], + [42087,0.089], + [42089,0.097], + [42091,0.0649], + [42093,0.0625], + [42095,0.0825], + [42097,0.0917], + [42099,0.0739], + [42101,0.1067], + [42103,0.0991], + [42105,0.0915], + [42107,0.0975], + [42109,0.077], + [42111,0.0892], + [42113,0.0727], + [42115,0.0794], + [42117,0.0699], + [42119,0.0676], + [42121,0.0739], + [42123,0.0751], + [42125,0.0735], + [42127,0.0811], + [42129,0.0753], + [42131,0.0879], + [42133,0.075], + [44001,0.0961], + [44003,0.1063], + [44005,0.1005], + [44007,0.1161], + [44009,0.1005], + [45001,0.1246], + [45003,0.0928], + [45005,0.1836], + [45007,0.1032], + [45009,0.1624], + [45011,0.1522], + [45013,0.0869], + [45015,0.0957], + [45017,0.1237], + [45019,0.0832], + [45021,0.1473], + [45023,0.1733], + [45025,0.1286], + [45027,0.1451], + [45029,0.1412], + [45031,0.1292], + [45033,0.1581], + [45035,0.0897], + [45037,0.0993], + [45039,0.1452], + [45041,0.1123], + [45043,0.1358], + [45045,0.0865], + [45047,0.1135], + [45049,0.1295], + [45051,0.1191], + [45053,0.0991], + [45055,0.1103], + [45057,0.1333], + [45059,0.1162], + [45061,0.1621], + [45063,0.0798], + [45065,0.1363], + [45067,0.1772], + [45069,0.1969], + [45071,0.1036], + [45073,0.1003], + [45075,0.1581], + [45077,0.0987], + [45079,0.0922], + [45081,0.0976], + [45083,0.1091], + [45085,0.1207], + [45087,0.1603], + [45089,0.167], + [45091,0.1092], + [46003,0.0318], + [46005,0.0379], + [46007,0.073], + [46009,0.0498], + [46011,0.0443], + [46013,0.0386], + [46015,0.0406], + [46017,0.1034], + [46019,0.049], + [46021,0.0391], + [46023,0.0497], + [46025,0.0478], + [46027,0.0405], + [46029,0.0456], + [46031,0.075], + [46033,0.056], + [46035,0.0395], + [46037,0.0654], + [46039,0.0609], + [46041,0.1622], + [46043,0.0405], + [46045,0.0332], + [46047,0.0599], + [46049,0.0419], + [46051,0.0481], + [46053,0.0459], + [46055,0.037], + [46057,0.0446], + [46059,0.0333], + [46061,0.0484], + [46063,0.0402], + [46065,0.0364], + [46067,0.0384], + [46069,0.037], + [46071,0.0752], + [46073,0.0358], + [46075,0.0328], + [46077,0.0442], + [46079,0.0496], + [46081,0.0483], + [46083,0.036], + [46085,0.064], + [46087,0.0444], + [46089,0.0448], + [46091,0.0561], + [46093,0.0486], + [46095,0.0638], + [46097,0.0448], + [46099,0.0449], + [46101,0.064], + [46102,null], + [46103,0.0484], + [46105,0.0433], + [46107,0.0534], + [46109,0.0672], + [46111,0.042], + [46115,0.0416], + [46117,0.0397], + [46119,0.0378], + [46121,0.0855], + [46123,0.0376], + [46125,0.0411], + [46127,0.0521], + [46129,0.0703], + [46135,0.0446], + [46137,0.0642], + [47001,0.0875], + [47003,0.1126], + [47005,0.114], + [47007,0.1128], + [47009,0.0817], + [47011,0.089], + [47013,0.1172], + [47015,0.1031], + [47017,0.1212], + [47019,0.1003], + [47021,0.0848], + [47023,0.0908], + [47025,0.1105], + [47027,0.106], + [47029,0.1318], + [47031,0.0992], + [47033,0.1054], + [47035,0.1015], + [47037,0.0754], + [47039,0.1163], + [47041,0.1109], + [47043,0.0954], + [47045,0.1242], + [47047,0.0951], + [47049,0.1141], + [47051,0.0936], + [47053,0.1142], + [47055,0.0997], + [47057,0.1167], + [47059,0.114], + [47061,0.1241], + [47063,0.1083], + [47065,0.0777], + [47067,0.1387], + [47069,0.1209], + [47071,0.1125], + [47073,0.099], + [47075,0.1383], + [47077,0.1115], + [47079,0.1083], + [47081,0.1025], + [47083,0.1115], + [47085,0.1046], + [47087,0.1169], + [47089,0.1048], + [47091,0.1154], + [47093,0.0691], + [47095,0.1206], + [47097,0.1242], + [47099,0.1043], + [47101,0.1292], + [47103,0.0665], + [47105,0.0865], + [47107,0.1116], + [47109,0.1131], + [47111,0.1026], + [47113,0.0931], + [47115,0.1045], + [47117,0.1143], + [47119,0.1024], + [47121,0.1196], + [47123,0.1145], + [47125,0.0854], + [47127,0.0688], + [47129,0.108], + [47131,0.1213], + [47133,0.1022], + [47135,0.1168], + [47137,0.113], + [47139,0.1114], + [47141,0.089], + [47143,0.1126], + [47145,0.0906], + [47147,0.0839], + [47149,0.0795], + [47151,0.1755], + [47153,0.1021], + [47155,0.0999], + [47157,0.0952], + [47159,0.1024], + [47161,0.1241], + [47163,0.0831], + [47165,0.0788], + [47167,0.1032], + [47169,0.1042], + [47171,0.1103], + [47173,0.1017], + [47175,0.1171], + [47177,0.1022], + [47179,0.0804], + [47181,0.1075], + [47183,0.114], + [47185,0.0986], + [47187,0.0585], + [47189,0.0756], + [48001,0.0732], + [48003,0.0499], + [48005,0.079], + [48007,0.0877], + [48009,0.0607], + [48011,0.0482], + [48013,0.0798], + [48015,0.0789], + [48017,0.0748], + [48019,0.075], + [48021,0.0794], + [48023,0.0596], + [48025,0.0857], + [48027,0.0802], + [48029,0.072], + [48031,0.0568], + [48033,0.054], + [48035,0.0831], + [48037,0.0828], + [48039,0.0802], + [48041,0.0603], + [48043,0.0555], + [48045,0.0609], + [48047,0.1056], + [48049,0.08], + [48051,0.0728], + [48053,0.0675], + [48055,0.0842], + [48057,0.0853], + [48059,0.0716], + [48061,0.1149], + [48063,0.0895], + [48065,0.0499], + [48067,0.1065], + [48069,0.0501], + [48071,0.0928], + [48073,0.0813], + [48075,0.0516], + [48077,0.0647], + [48079,0.0848], + [48081,0.0573], + [48083,0.0879], + [48085,0.0674], + [48087,0.0581], + [48089,0.0774], + [48091,0.0688], + [48093,0.0742], + [48095,0.0463], + [48097,0.0604], + [48099,0.077], + [48101,0.075], + [48103,0.0662], + [48105,0.0659], + [48107,0.0839], + [48109,0.0688], + [48111,0.0437], + [48113,0.0814], + [48115,0.0749], + [48117,0.0544], + [48119,0.0805], + [48121,0.0656], + [48123,0.0645], + [48125,0.1527], + [48127,0.0773], + [48129,0.0645], + [48131,0.0939], + [48133,0.0767], + [48135,0.0612], + [48137,0.0656], + [48139,0.0776], + [48141,0.0947], + [48143,0.0604], + [48145,0.0827], + [48147,0.0825], + [48149,0.0577], + [48151,0.0665], + [48153,0.0769], + [48155,0.0735], + [48157,0.071], + [48159,0.0816], + [48161,0.0782], + [48163,0.065], + [48165,0.0508], + [48167,0.0883], + [48169,0.0602], + [48171,0.0532], + [48173,0.0428], + [48175,0.0649], + [48177,0.0615], + [48179,0.068], + [48181,0.0788], + [48183,0.0714], + [48185,0.0778], + [48187,0.0648], + [48189,0.0748], + [48191,0.0871], + [48193,0.0634], + [48195,0.0407], + [48197,0.0694], + [48199,0.0947], + [48201,0.0784], + [48203,0.0848], + [48205,0.0395], + [48207,0.0536], + [48209,0.067], + [48211,0.0347], + [48213,0.0852], + [48215,0.1161], + [48217,0.0824], + [48219,0.0633], + [48221,0.0794], + [48223,0.0735], + [48225,0.0779], + [48227,0.0653], + [48229,0.08], + [48231,0.0884], + [48233,0.0789], + [48235,0.0536], + [48237,0.0694], + [48239,0.0623], + [48241,0.1234], + [48243,0.0496], + [48245,0.114], + [48247,0.0863], + [48249,0.079], + [48251,0.0777], + [48253,0.0828], + [48255,0.0776], + [48257,0.0803], + [48259,0.0607], + [48261,0.063], + [48263,0.0469], + [48265,0.0667], + [48267,0.0622], + [48269,0.0382], + [48271,0.1015], + [48273,0.0801], + [48275,0.0577], + [48277,0.0978], + [48279,0.0756], + [48281,0.0756], + [48283,0.067], + [48285,0.0595], + [48287,0.0646], + [48289,0.0868], + [48291,0.1109], + [48293,0.0828], + [48295,0.0459], + [48297,0.0594], + [48299,0.0774], + [48301,0.0606], + [48303,0.06], + [48305,0.0658], + [48307,0.0592], + [48309,0.0743], + [48311,0.0303], + [48313,0.0827], + [48315,0.1042], + [48317,0.0557], + [48319,0.0601], + [48321,0.1159], + [48323,0.1403], + [48325,0.0747], + [48327,0.072], + [48329,0.0476], + [48331,0.1017], + [48333,0.063], + [48335,0.0751], + [48337,0.065], + [48339,0.0707], + [48341,0.0482], + [48343,0.1201], + [48345,0.069], + [48347,0.0699], + [48349,0.081], + [48351,0.1273], + [48353,0.07], + [48355,0.0794], + [48357,0.0482], + [48359,0.0429], + [48361,0.1151], + [48363,0.0791], + [48365,0.0817], + [48367,0.0689], + [48369,0.0444], + [48371,0.06], + [48373,0.0933], + [48375,0.0594], + [48377,0.1518], + [48379,0.082], + [48381,0.0495], + [48383,0.0436], + [48385,0.0986], + [48387,0.1209], + [48389,0.0803], + [48391,0.0758], + [48393,0.05], + [48395,0.0919], + [48397,0.0709], + [48399,0.0732], + [48401,0.0704], + [48403,0.1574], + [48405,0.1414], + [48407,0.0965], + [48409,0.0971], + [48411,0.0607], + [48413,0.0565], + [48415,0.0567], + [48417,0.0473], + [48419,0.0856], + [48421,0.0456], + [48423,0.0778], + [48425,0.0776], + [48427,0.162], + [48429,0.0777], + [48431,0.0484], + [48433,0.055], + [48435,0.0678], + [48437,0.0673], + [48439,0.0755], + [48441,0.0657], + [48443,0.0618], + [48445,0.0711], + [48447,0.0699], + [48449,0.0823], + [48451,0.0625], + [48453,0.0637], + [48455,0.0955], + [48457,0.1204], + [48459,0.0796], + [48461,0.0528], + [48463,0.0888], + [48465,0.0897], + [48467,0.0797], + [48469,0.0674], + [48471,0.0785], + [48473,0.0819], + [48475,0.065], + [48477,0.0661], + [48479,0.0742], + [48481,0.0826], + [48483,0.0494], + [48485,0.0689], + [48487,0.0725], + [48489,0.1646], + [48491,0.0678], + [48493,0.0652], + [48495,0.0711], + [48497,0.0757], + [48499,0.0864], + [48501,0.0521], + [48503,0.0716], + [48505,0.0809], + [48507,0.1407], + [49001,0.0802], + [49003,0.0751], + [49005,0.0525], + [49007,0.0757], + [49009,0.0616], + [49011,0.0603], + [49013,0.0667], + [49015,0.0734], + [49017,0.1067], + [49019,0.0978], + [49021,0.0826], + [49023,0.0818], + [49025,0.0745], + [49027,0.053], + [49029,0.0572], + [49031,0.1], + [49033,0.0723], + [49035,0.0662], + [49037,0.0999], + [49039,0.0788], + [49041,0.0743], + [49043,0.061], + [49045,0.0714], + [49047,0.0601], + [49049,0.0629], + [49051,0.07], + [49053,0.0888], + [49055,0.1007], + [49057,0.0785], + [50001,0.0493], + [50003,0.0638], + [50005,0.063], + [50007,0.0421], + [50009,0.0837], + [50011,0.0516], + [50013,0.0638], + [50015,0.0695], + [50017,0.0534], + [50019,0.0844], + [50021,0.068], + [50023,0.0526], + [50025,0.056], + [50027,0.0546], + [51001,0.084], + [51003,0.0558], + [51005,0.0787], + [51007,0.0749], + [51009,0.0728], + [51011,0.0796], + [51013,0.0376], + [51015,0.0633], + [51017,0.0633], + [51019,0.0647], + [51021,0.0742], + [51023,0.0587], + [51025,0.1056], + [51027,0.0855], + [51029,0.0957], + [51031,0.0716], + [51033,0.0899], + [51035,0.0987], + [51036,0.0899], + [51037,0.0978], + [51041,0.0676], + [51043,0.0572], + [51045,0.0754], + [51047,0.0636], + [51049,0.0765], + [51051,0.0987], + [51053,0.0797], + [51057,0.083], + [51059,0.0476], + [51061,0.0551], + [51063,0.0634], + [51065,0.0582], + [51067,0.0748], + [51069,0.0649], + [51071,0.0799], + [51073,0.0628], + [51075,0.0634], + [51077,0.1085], + [51079,0.0604], + [51081,0.0878], + [51083,0.1098], + [51085,0.0597], + [51087,0.0674], + [51089,0.1258], + [51091,0.0562], + [51093,0.0694], + [51095,0.0609], + [51097,0.0737], + [51099,0.0697], + [51101,0.0688], + [51103,0.0927], + [51105,0.0761], + [51107,0.0467], + [51109,0.0683], + [51111,0.0856], + [51113,0.0525], + [51115,0.0653], + [51117,0.1038], + [51119,0.0648], + [51121,0.0634], + [51125,0.0633], + [51127,0.0641], + [51131,0.0888], + [51133,0.0899], + [51135,0.0715], + [51137,0.0749], + [51139,0.1109], + [51141,0.108], + [51143,0.0911], + [51145,0.0625], + [51147,0.0901], + [51149,0.078], + [51153,0.0566], + [51155,0.0869], + [51157,0.0562], + [51159,0.0668], + [51161,0.0569], + [51163,0.0678], + [51165,0.0603], + [51167,0.0949], + [51169,0.0734], + [51171,0.0705], + [51173,0.1091], + [51175,0.0769], + [51177,0.067], + [51179,0.0617], + [51181,0.0846], + [51183,0.1048], + [51185,0.0795], + [51187,0.0741], + [51191,0.0711], + [51193,0.0752], + [51195,0.0767], + [51197,0.092], + [51199,0.0615], + [51510,0.0446], + [51520,0.083], + [51530,0.0914], + [51540,0.0559], + [51550,0.0692], + [51570,0.0754], + [51580,0.0939], + [51590,0.1164], + [51595,0.1083], + [51600,0.0492], + [51610,0.0424], + [51620,0.1136], + [51630,0.08], + [51640,0.1034], + [51650,0.0894], + [51660,0.078], + [51670,0.113], + [51678,0.0916], + [51680,0.0806], + [51683,0.0609], + [51685,0.0559], + [51690,0.152], + [51700,0.0815], + [51710,0.0833], + [51720,0.0696], + [51730,0.1286], + [51735,0.0572], + [51740,0.0935], + [51750,0.0843], + [51760,0.0848], + [51770,0.0807], + [51775,0.0637], + [51790,0.0709], + [51800,0.0745], + [51810,0.0615], + [51820,0.0807], + [51830,0.09], + [51840,0.0743], + [53001,0.1008], + [53003,0.0888], + [53005,0.0821], + [53007,0.0843], + [53009,0.1094], + [53011,0.1166], + [53013,0.0939], + [53015,0.1193], + [53017,0.0938], + [53019,0.1741], + [53021,0.0905], + [53023,0.0757], + [53025,0.1011], + [53027,0.1359], + [53029,0.0907], + [53031,0.1045], + [53033,0.0792], + [53035,0.084], + [53037,0.0927], + [53039,0.118], + [53041,0.1276], + [53043,0.0812], + [53045,0.1171], + [53047,0.1028], + [53049,0.1345], + [53051,0.1401], + [53053,0.1011], + [53055,0.0724], + [53057,0.1052], + [53059,0.122], + [53061,0.0946], + [53063,0.0966], + [53065,0.1235], + [53067,0.0898], + [53069,0.1435], + [53071,0.08], + [53073,0.0901], + [53075,0.0649], + [53077,0.1075], + [54001,0.0937], + [54003,0.0772], + [54005,0.0806], + [54007,0.1113], + [54009,0.0976], + [54011,0.0714], + [54013,0.1266], + [54015,0.1234], + [54017,0.0713], + [54019,0.0895], + [54021,0.0813], + [54023,0.0898], + [54025,0.0834], + [54027,0.0884], + [54029,0.1061], + [54031,0.105], + [54033,0.0713], + [54035,0.1028], + [54037,0.0624], + [54039,0.071], + [54041,0.0746], + [54043,0.1065], + [54045,0.089], + [54047,0.1193], + [54049,0.0687], + [54051,0.0894], + [54053,0.109], + [54055,0.0859], + [54057,0.0884], + [54059,0.086], + [54061,0.0556], + [54063,0.0794], + [54065,0.083], + [54067,0.0911], + [54069,0.0732], + [54071,0.0721], + [54073,0.0977], + [54075,0.111], + [54077,0.0763], + [54079,0.0732], + [54081,0.072], + [54083,0.0974], + [54085,0.091], + [54087,0.1293], + [54089,0.0927], + [54091,0.0743], + [54093,0.094], + [54095,0.1052], + [54097,0.0867], + [54099,0.0816], + [54101,0.0944], + [54103,0.1059], + [54105,0.1155], + [54107,0.0827], + [54109,0.0881], + [55001,0.118], + [55003,0.1017], + [55005,0.0848], + [55007,0.1078], + [55009,0.072], + [55011,0.069], + [55013,0.1028], + [55015,0.0594], + [55017,0.0775], + [55019,0.084], + [55021,0.0789], + [55023,0.0925], + [55025,0.0531], + [55027,0.0781], + [55029,0.1197], + [55031,0.0753], + [55033,0.0732], + [55035,0.0642], + [55037,0.0995], + [55039,0.0731], + [55041,0.1161], + [55043,0.0679], + [55045,0.069], + [55047,0.0819], + [55049,0.0736], + [55051,0.1074], + [55053,0.0799], + [55055,0.0759], + [55057,0.0921], + [55059,0.0904], + [55061,0.0741], + [55063,0.0598], + [55065,0.0639], + [55067,0.1013], + [55069,0.0984], + [55071,0.0843], + [55073,0.0788], + [55075,0.0969], + [55077,0.0996], + [55078,0.1716], + [55079,0.0928], + [55081,0.0735], + [55083,0.0961], + [55085,0.0942], + [55087,0.0707], + [55089,0.0612], + [55091,0.0637], + [55093,0.0604], + [55095,0.0861], + [55097,0.0753], + [55099,0.0895], + [55101,0.0904], + [55103,0.0745], + [55105,0.0953], + [55107,0.1105], + [55109,0.0641], + [55111,0.0761], + [55113,0.1112], + [55115,0.0912], + [55117,0.0818], + [55119,0.0848], + [55121,0.0664], + [55123,0.0696], + [55125,0.1098], + [55127,0.0799], + [55129,0.089], + [55131,0.0686], + [55133,0.0646], + [55135,0.0834], + [55137,0.0979], + [55139,0.0705], + [55141,0.0834], + [56001,0.042], + [56003,0.061], + [56005,0.049], + [56007,0.0598], + [56009,0.0483], + [56011,0.0486], + [56013,0.0645], + [56015,0.0479], + [56017,0.0508], + [56019,0.0629], + [56021,0.0619], + [56023,0.0785], + [56025,0.0607], + [56027,0.0416], + [56029,0.0578], + [56031,0.0502], + [56033,0.0692], + [56035,0.0457], + [56037,0.0527], + [56039,0.075], + [56041,0.062], + [56043,0.0558], + [56045,0.0456] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2012.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2012.json new file mode 100644 index 0000000..dbd8926 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2012.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2012"], + [1001,0.0691], + [1003,0.0752], + [1005,0.1153], + [1007,0.0854], + [1009,0.0688], + [1011,0.1037], + [1013,0.1154], + [1015,0.0886], + [1017,0.0987], + [1019,0.0803], + [1021,0.0723], + [1023,0.1031], + [1025,0.1502], + [1027,0.0938], + [1029,0.0822], + [1031,0.0705], + [1033,0.0876], + [1035,0.1193], + [1037,0.0936], + [1039,0.0836], + [1041,0.083], + [1043,0.0768], + [1045,0.0744], + [1047,0.1292], + [1049,0.0905], + [1051,0.0694], + [1053,0.0922], + [1055,0.0824], + [1057,0.0861], + [1059,0.0837], + [1061,0.0757], + [1063,0.1357], + [1065,0.1148], + [1067,0.0829], + [1069,0.0755], + [1071,0.0858], + [1073,0.0742], + [1075,0.0753], + [1077,0.0766], + [1079,0.0901], + [1081,0.0678], + [1083,0.0687], + [1085,0.1541], + [1087,0.1073], + [1089,0.0694], + [1091,0.1016], + [1093,0.0892], + [1095,0.0777], + [1097,0.0918], + [1099,0.1255], + [1101,0.0806], + [1103,0.078], + [1105,0.1333], + [1107,0.1015], + [1109,0.0798], + [1111,0.0918], + [1113,0.0878], + [1115,0.0687], + [1117,0.0503], + [1119,0.105], + [1121,0.0937], + [1123,0.0863], + [1125,0.0698], + [1127,0.0917], + [1129,0.1194], + [1131,0.1994], + [1133,0.0999], + [2013,0.0678], + [2016,0.0694], + [2020,0.0536], + [2050,0.1537], + [2060,0.0977], + [2068,0.1375], + [2070,0.099], + [2090,0.0609], + [2100,0.1002], + [2105,0.1434], + [2110,0.051], + [2122,0.0864], + [2130,0.0812], + [2150,0.0668], + [2158,null], + [2164,0.1523], + [2170,0.0866], + [2180,0.1168], + [2185,0.0775], + [2188,0.1574], + [2195,0.0815], + [2198,0.1328], + [2220,0.0566], + [2230,0.1406], + [2240,0.1287], + [2261,0.0971], + [2275,0.0819], + [2282,0.0972], + [2290,0.1738], + [4001,0.1896], + [4003,0.0904], + [4005,0.086], + [4007,0.1021], + [4009,0.085], + [4011,0.0822], + [4012,0.0855], + [4013,0.0728], + [4015,0.1102], + [4017,0.1412], + [4019,0.0737], + [4021,0.0854], + [4023,0.1544], + [4025,0.086], + [4027,0.2385], + [5001,0.0877], + [5003,0.1226], + [5005,0.0842], + [5007,0.0601], + [5009,0.0762], + [5011,0.111], + [5013,0.0912], + [5015,0.0632], + [5017,0.1137], + [5019,0.1008], + [5021,0.1098], + [5023,0.0853], + [5025,0.0736], + [5027,0.09], + [5029,0.0921], + [5031,0.0687], + [5033,0.0796], + [5035,0.0957], + [5037,0.0794], + [5039,0.1153], + [5041,0.099], + [5043,0.1066], + [5045,0.0663], + [5047,0.0709], + [5049,0.0718], + [5051,0.079], + [5053,0.068], + [5055,0.0865], + [5057,0.0729], + [5059,0.0721], + [5061,0.067], + [5063,0.0921], + [5065,0.0879], + [5067,0.1076], + [5069,0.1], + [5071,0.0737], + [5073,0.0949], + [5075,0.0911], + [5077,0.0949], + [5079,0.0874], + [5081,0.0729], + [5083,0.0799], + [5085,0.0635], + [5087,0.0585], + [5089,0.0822], + [5091,0.0595], + [5093,0.1096], + [5095,0.0905], + [5097,0.0848], + [5099,0.0777], + [5101,0.0733], + [5103,0.1051], + [5105,0.0908], + [5107,0.1157], + [5109,0.0909], + [5111,0.0867], + [5113,0.0744], + [5115,0.0728], + [5117,0.0756], + [5119,0.0686], + [5121,0.1082], + [5123,0.1081], + [5125,0.0611], + [5127,0.0671], + [5129,0.082], + [5131,0.0785], + [5133,0.0878], + [5135,0.1014], + [5137,0.0823], + [5139,0.0922], + [5141,0.1013], + [5143,0.0562], + [5145,0.0786], + [5147,0.102], + [5149,0.0673], + [6001,0.0869], + [6003,0.1121], + [6005,0.1226], + [6007,0.1215], + [6009,0.1236], + [6011,0.2073], + [6013,0.0894], + [6015,0.1353], + [6017,0.1021], + [6019,0.1513], + [6021,0.1418], + [6023,0.0958], + [6025,0.2735], + [6027,0.0907], + [6029,0.1315], + [6031,0.1489], + [6033,0.1278], + [6035,0.1246], + [6037,0.1092], + [6039,0.1445], + [6041,0.0628], + [6043,0.1221], + [6045,0.1004], + [6047,0.1633], + [6049,0.144], + [6051,0.1034], + [6053,0.1157], + [6055,0.0844], + [6057,0.0975], + [6059,0.0787], + [6061,0.0936], + [6063,0.1615], + [6065,0.1163], + [6067,0.1051], + [6069,0.1305], + [6071,0.1141], + [6073,0.0912], + [6075,0.0677], + [6077,0.1435], + [6079,0.0824], + [6081,0.0641], + [6083,0.0837], + [6085,0.0786], + [6087,0.1183], + [6089,0.1418], + [6091,0.1436], + [6093,0.1561], + [6095,0.107], + [6097,0.0886], + [6099,0.1489], + [6101,0.1681], + [6103,0.1374], + [6105,0.1463], + [6107,0.1616], + [6109,0.1298], + [6111,0.0909], + [6113,0.1064], + [6115,0.1539], + [8001,0.0942], + [8003,0.1045], + [8005,0.0772], + [8007,0.1004], + [8009,0.0452], + [8011,0.0836], + [8013,0.0622], + [8014,0.0665], + [8015,0.0682], + [8017,0.0455], + [8019,0.0704], + [8021,0.1062], + [8023,0.1142], + [8025,0.0808], + [8027,0.0634], + [8029,0.0969], + [8031,0.0785], + [8033,0.1022], + [8035,0.06], + [8037,0.0716], + [8039,0.0711], + [8041,0.0885], + [8043,0.1166], + [8045,0.085], + [8047,0.0667], + [8049,0.0725], + [8051,0.0598], + [8053,0.0482], + [8055,0.1424], + [8057,0.0521], + [8059,0.0739], + [8061,0.0453], + [8063,0.0445], + [8065,0.0862], + [8067,0.0664], + [8069,0.0671], + [8071,0.1201], + [8073,0.0649], + [8075,0.0598], + [8077,0.0969], + [8079,0.0541], + [8081,0.0825], + [8083,0.0855], + [8085,0.1033], + [8087,0.0677], + [8089,0.1027], + [8091,0.0935], + [8093,0.0688], + [8095,0.0514], + [8097,0.0719], + [8099,0.0699], + [8101,0.107], + [8103,0.0835], + [8105,0.1221], + [8107,0.072], + [8109,0.111], + [8111,0.0991], + [8113,0.0785], + [8115,0.0697], + [8117,0.0604], + [8119,0.0839], + [8121,0.0489], + [8123,0.0778], + [8125,0.0514], + [9001,0.0777], + [9003,0.0856], + [9005,0.076], + [9007,0.0717], + [9009,0.0909], + [9011,0.0863], + [9013,0.0736], + [9015,0.0942], + [10001,0.0793], + [10003,0.07], + [10005,0.0724], + [11001,0.0904], + [12001,0.0664], + [12003,0.0857], + [12005,0.0864], + [12007,0.0758], + [12009,0.094], + [12011,0.0797], + [12013,0.0915], + [12015,0.0951], + [12017,0.1075], + [12019,0.0762], + [12021,0.0843], + [12023,0.0882], + [12027,0.0995], + [12029,0.1023], + [12031,0.087], + [12033,0.0841], + [12035,0.0986], + [12037,0.0647], + [12039,0.1031], + [12041,0.0907], + [12043,0.077], + [12045,0.0809], + [12047,0.0885], + [12049,0.0888], + [12051,0.1279], + [12053,0.1057], + [12055,0.1028], + [12057,0.079], + [12059,0.0882], + [12061,0.1096], + [12063,0.0866], + [12065,0.0925], + [12067,0.0571], + [12069,0.0884], + [12071,0.0883], + [12073,0.0699], + [12075,0.093], + [12077,0.0794], + [12079,0.0858], + [12081,0.0813], + [12083,0.102], + [12085,0.0831], + [12086,0.0827], + [12087,0.0568], + [12089,0.0804], + [12091,0.0672], + [12093,0.0997], + [12095,0.082], + [12097,0.0945], + [12099,0.0849], + [12101,0.0905], + [12103,0.0796], + [12105,0.0961], + [12107,0.1181], + [12109,0.0654], + [12111,0.1094], + [12113,0.0753], + [12115,0.0843], + [12117,0.0808], + [12119,0.1054], + [12121,0.0802], + [12123,0.0897], + [12125,0.0721], + [12127,0.0948], + [12129,0.0729], + [12131,0.0727], + [12133,0.0882], + [13001,0.1121], + [13003,0.1155], + [13005,0.0968], + [13007,0.1101], + [13009,0.1161], + [13011,0.0822], + [13013,0.0864], + [13015,0.0992], + [13017,0.1394], + [13019,0.1024], + [13021,0.1054], + [13023,0.1259], + [13025,0.1202], + [13027,0.0917], + [13029,0.083], + [13031,0.098], + [13033,0.1236], + [13035,0.1026], + [13037,0.0779], + [13039,0.0859], + [13043,0.0868], + [13045,0.1026], + [13047,0.0747], + [13049,0.0934], + [13051,0.0923], + [13053,0.1173], + [13055,0.1024], + [13057,0.0708], + [13059,0.0871], + [13061,0.1249], + [13063,0.1203], + [13065,0.097], + [13067,0.0772], + [13069,0.1141], + [13071,0.0879], + [13073,0.0699], + [13075,0.0946], + [13077,0.0797], + [13079,0.0981], + [13081,0.125], + [13083,0.0762], + [13085,0.0857], + [13087,0.1013], + [13089,0.0941], + [13091,0.1153], + [13093,0.1149], + [13095,0.1129], + [13097,0.0961], + [13099,0.1016], + [13101,0.0736], + [13103,0.0837], + [13105,0.1257], + [13107,0.1235], + [13109,0.0856], + [13111,0.1022], + [13113,0.0755], + [13115,0.1092], + [13117,0.0662], + [13119,0.1129], + [13121,0.091], + [13123,0.1056], + [13125,0.0968], + [13127,0.0948], + [13129,0.0979], + [13131,0.0858], + [13133,0.1109], + [13135,0.0776], + [13137,0.0952], + [13139,0.0778], + [13141,0.1697], + [13143,0.1023], + [13145,0.0721], + [13147,0.1029], + [13149,0.1033], + [13151,0.0939], + [13153,0.0804], + [13155,0.1174], + [13157,0.0822], + [13159,0.098], + [13161,0.1155], + [13163,0.1323], + [13165,0.1373], + [13167,0.0996], + [13169,0.0849], + [13171,0.1209], + [13173,0.0936], + [13175,0.1226], + [13177,0.0766], + [13179,0.0891], + [13181,0.108], + [13183,0.0855], + [13185,0.0912], + [13187,0.0835], + [13189,0.1262], + [13191,0.0976], + [13193,0.133], + [13195,0.0893], + [13197,0.0999], + [13199,0.1201], + [13201,0.0819], + [13205,0.0888], + [13207,0.0865], + [13209,0.1162], + [13211,0.0903], + [13213,0.128], + [13215,0.0979], + [13217,0.1101], + [13219,0.063], + [13221,0.0853], + [13223,0.0831], + [13225,0.1115], + [13227,0.0908], + [13229,0.0945], + [13231,0.0925], + [13233,0.0998], + [13235,0.0897], + [13237,0.1153], + [13239,0.0954], + [13241,0.1146], + [13243,0.1252], + [13245,0.1063], + [13247,0.1019], + [13249,0.1043], + [13251,0.138], + [13253,0.1091], + [13255,0.1255], + [13257,0.105], + [13259,0.0927], + [13261,0.1189], + [13263,0.1006], + [13265,0.1417], + [13267,0.0832], + [13269,0.1338], + [13271,0.1177], + [13273,0.1092], + [13275,0.0969], + [13277,0.1009], + [13279,0.1176], + [13281,0.1128], + [13283,0.1346], + [13285,0.0983], + [13287,0.1171], + [13289,0.1487], + [13291,0.0884], + [13293,0.1068], + [13295,0.0898], + [13297,0.0909], + [13299,0.1014], + [13301,0.1496], + [13303,0.1034], + [13305,0.107], + [13307,0.099], + [13309,0.1333], + [13311,0.0865], + [13313,0.1064], + [13315,0.1165], + [13317,0.1221], + [13319,0.115], + [13321,0.1017], + [15001,0.0833], + [15003,0.0539], + [15005,null], + [15007,0.0734], + [15009,0.0643], + [16001,0.0619], + [16003,0.1493], + [16005,0.0693], + [16007,0.0559], + [16009,0.1218], + [16011,0.0639], + [16013,0.0702], + [16015,0.0954], + [16017,0.1047], + [16019,0.0633], + [16021,0.0943], + [16023,0.0816], + [16025,0.0913], + [16027,0.0911], + [16029,0.061], + [16031,0.058], + [16033,0.0755], + [16035,0.126], + [16037,0.081], + [16039,0.0754], + [16041,0.0461], + [16043,0.0618], + [16045,0.0941], + [16047,0.057], + [16049,0.1095], + [16051,0.0615], + [16053,0.0642], + [16055,0.0877], + [16057,0.0584], + [16059,0.0984], + [16061,0.0539], + [16063,0.0916], + [16065,0.0457], + [16067,0.0609], + [16069,0.0576], + [16071,0.0493], + [16073,0.0414], + [16075,0.0786], + [16077,0.0778], + [16079,0.1313], + [16081,0.0589], + [16083,0.0685], + [16085,0.1122], + [16087,0.0843], + [17001,0.0652], + [17003,0.1192], + [17005,0.0894], + [17007,0.1039], + [17009,0.0593], + [17011,0.0918], + [17013,0.1], + [17015,0.0817], + [17017,0.0843], + [17019,0.073], + [17021,0.0931], + [17023,0.0958], + [17025,0.0962], + [17027,0.0664], + [17029,0.0876], + [17031,0.0963], + [17033,0.0769], + [17035,0.0776], + [17037,0.0844], + [17039,0.0807], + [17041,0.0725], + [17043,0.0749], + [17045,0.0967], + [17047,0.0781], + [17049,0.0653], + [17051,0.0897], + [17053,0.0766], + [17055,0.1062], + [17057,0.099], + [17059,0.0839], + [17061,0.0842], + [17063,0.1149], + [17065,0.0794], + [17067,0.0827], + [17069,0.1054], + [17071,0.0796], + [17073,0.0741], + [17075,0.0851], + [17077,0.0781], + [17079,0.0763], + [17081,0.0919], + [17083,0.09], + [17085,0.0755], + [17087,0.1156], + [17089,0.0889], + [17091,0.1037], + [17093,0.0836], + [17095,0.0831], + [17097,0.0809], + [17099,0.1003], + [17101,0.1018], + [17103,0.0828], + [17105,0.0773], + [17107,0.0748], + [17109,0.0765], + [17111,0.0898], + [17113,0.0638], + [17115,0.0991], + [17117,0.0948], + [17119,0.0879], + [17121,0.0977], + [17123,0.0829], + [17125,0.1002], + [17127,0.0959], + [17129,0.07], + [17131,0.0774], + [17133,0.0673], + [17135,0.1117], + [17137,0.0768], + [17139,0.0713], + [17141,0.1008], + [17143,0.0837], + [17145,0.1059], + [17147,0.0694], + [17149,0.0754], + [17151,0.0856], + [17153,0.1135], + [17155,0.0931], + [17157,0.0836], + [17159,0.0801], + [17161,0.0802], + [17163,0.0954], + [17165,0.0907], + [17167,0.0725], + [17169,0.0785], + [17171,0.0866], + [17173,0.0856], + [17175,0.0812], + [17177,0.0901], + [17179,0.0746], + [17181,0.1091], + [17183,0.0925], + [17185,0.0793], + [17187,0.0709], + [17189,0.0633], + [17191,0.0766], + [17193,0.0755], + [17195,0.0878], + [17197,0.0977], + [17199,0.0863], + [17201,0.1052], + [17203,0.0598], + [18001,0.0704], + [18003,0.0837], + [18005,0.0639], + [18007,0.0745], + [18009,0.1144], + [18011,0.0608], + [18013,0.08], + [18015,0.0735], + [18017,0.0862], + [18019,0.0782], + [18021,0.0986], + [18023,0.0802], + [18025,0.1062], + [18027,0.0602], + [18029,0.089], + [18031,0.0811], + [18033,0.0835], + [18035,0.0937], + [18037,0.057], + [18039,0.0893], + [18041,0.1114], + [18043,0.0712], + [18045,0.084], + [18047,0.0952], + [18049,0.0838], + [18051,0.0685], + [18053,0.0973], + [18055,0.1046], + [18057,0.0531], + [18059,0.0734], + [18061,0.0772], + [18063,0.0633], + [18065,0.1005], + [18067,0.0907], + [18069,0.0881], + [18071,0.0746], + [18073,0.0812], + [18075,0.0792], + [18077,0.0848], + [18079,0.103], + [18081,0.0696], + [18083,0.0714], + [18085,0.077], + [18087,0.0711], + [18089,0.0912], + [18091,0.0975], + [18093,0.1096], + [18095,0.0999], + [18097,0.0923], + [18099,0.0823], + [18101,0.0709], + [18103,0.0972], + [18105,0.0726], + [18107,0.0819], + [18109,0.0842], + [18111,0.0961], + [18113,0.0861], + [18115,0.089], + [18117,0.1077], + [18119,0.1084], + [18121,0.1024], + [18123,0.084], + [18125,0.0736], + [18127,0.0761], + [18129,0.0676], + [18131,0.0738], + [18133,0.099], + [18135,0.0956], + [18137,0.0899], + [18139,0.085], + [18141,0.0945], + [18143,0.1029], + [18145,0.0836], + [18147,0.0722], + [18149,0.1061], + [18151,0.0729], + [18153,0.0933], + [18155,0.0773], + [18157,0.0696], + [18159,0.0777], + [18161,0.0807], + [18163,0.0767], + [18165,0.114], + [18167,0.0992], + [18169,0.0849], + [18171,0.0738], + [18173,0.068], + [18175,0.0944], + [18177,0.0989], + [18179,0.0718], + [18181,0.0779], + [18183,0.0796], + [19001,0.0437], + [19003,0.0399], + [19005,0.0644], + [19007,0.0651], + [19009,0.0479], + [19011,0.0531], + [19013,0.0543], + [19015,0.0433], + [19017,0.0384], + [19019,0.0481], + [19021,0.0416], + [19023,0.0452], + [19025,0.0551], + [19027,0.0375], + [19029,0.052], + [19031,0.0455], + [19033,0.0559], + [19035,0.0433], + [19037,0.0519], + [19039,0.0601], + [19041,0.0504], + [19043,0.0569], + [19045,0.0615], + [19047,0.0446], + [19049,0.0391], + [19051,0.0577], + [19053,0.0443], + [19055,0.0448], + [19057,0.0615], + [19059,0.0564], + [19061,0.0453], + [19063,0.0446], + [19065,0.0544], + [19067,0.0624], + [19069,0.0447], + [19071,0.0511], + [19073,0.0496], + [19075,0.0456], + [19077,0.0562], + [19079,0.069], + [19081,0.0456], + [19083,0.0534], + [19085,0.0504], + [19087,0.0593], + [19089,0.0462], + [19091,0.0423], + [19093,0.0403], + [19095,0.045], + [19097,0.0546], + [19099,0.0595], + [19101,0.0525], + [19103,0.0368], + [19105,0.0526], + [19107,0.0548], + [19109,0.0388], + [19111,0.072], + [19113,0.0522], + [19115,0.0548], + [19117,0.0476], + [19119,0.0296], + [19121,0.0557], + [19123,0.0518], + [19125,0.0481], + [19127,0.0642], + [19129,0.046], + [19131,0.0456], + [19133,0.0639], + [19135,0.0576], + [19137,0.0509], + [19139,0.0573], + [19141,0.0381], + [19143,0.0414], + [19145,0.0538], + [19147,0.0427], + [19149,0.0409], + [19151,0.0404], + [19153,0.0518], + [19155,0.0506], + [19157,0.0486], + [19159,0.0441], + [19161,0.0423], + [19163,0.0576], + [19165,0.0376], + [19167,0.0345], + [19169,0.0357], + [19171,0.06], + [19173,0.0407], + [19175,0.0506], + [19177,0.0579], + [19179,0.0695], + [19181,0.0477], + [19183,0.0421], + [19185,0.0544], + [19187,0.0631], + [19189,0.0534], + [19191,0.0461], + [19193,0.0522], + [19195,0.0545], + [19197,0.0536], + [20001,0.0715], + [20003,0.0651], + [20005,0.0775], + [20007,0.0388], + [20009,0.045], + [20011,0.0768], + [20013,0.0537], + [20015,0.0623], + [20017,0.0528], + [20019,0.0655], + [20021,0.0781], + [20023,0.0361], + [20025,0.035], + [20027,0.0516], + [20029,0.0499], + [20031,0.0699], + [20033,0.039], + [20035,0.0617], + [20037,0.0664], + [20039,0.0443], + [20041,0.0604], + [20043,0.0626], + [20045,0.0514], + [20047,0.0402], + [20049,0.0682], + [20051,0.0342], + [20053,0.035], + [20055,0.0447], + [20057,0.0386], + [20059,0.0728], + [20061,0.0867], + [20063,0.0297], + [20065,0.0339], + [20067,0.0389], + [20069,0.0312], + [20071,0.0305], + [20073,0.056], + [20075,0.0268], + [20077,0.0435], + [20079,0.0543], + [20081,0.0337], + [20083,0.0342], + [20085,0.0562], + [20087,0.0605], + [20089,0.0428], + [20091,0.0459], + [20093,0.0396], + [20095,0.0613], + [20097,0.0377], + [20099,0.0796], + [20101,0.0456], + [20103,0.064], + [20105,0.0487], + [20107,0.0988], + [20109,0.0302], + [20111,0.058], + [20113,0.0411], + [20115,0.0512], + [20117,0.0417], + [20119,0.0336], + [20121,0.0633], + [20123,0.03], + [20125,0.0773], + [20127,0.0609], + [20129,0.0369], + [20131,0.0362], + [20133,0.088], + [20135,0.0326], + [20137,0.0312], + [20139,0.0725], + [20141,0.0428], + [20143,0.054], + [20145,0.0409], + [20147,0.0448], + [20149,0.047], + [20151,0.0449], + [20153,0.0274], + [20155,0.0545], + [20157,0.0383], + [20159,0.0446], + [20161,0.0436], + [20163,0.0463], + [20165,0.0465], + [20167,0.041], + [20169,0.0576], + [20171,0.0306], + [20173,0.0688], + [20175,0.0411], + [20177,0.0619], + [20179,0.0278], + [20181,0.0382], + [20183,0.0393], + [20185,0.0464], + [20187,0.0353], + [20189,0.0353], + [20191,0.0637], + [20193,0.0346], + [20195,0.0431], + [20197,0.0541], + [20199,0.0424], + [20201,0.0416], + [20203,0.0526], + [20205,0.0993], + [20207,0.062], + [20209,0.0844], + [21001,0.0949], + [21003,0.08], + [21005,0.069], + [21007,0.0912], + [21009,0.0787], + [21011,0.1039], + [21013,0.1194], + [21015,0.0684], + [21017,0.0726], + [21019,0.0931], + [21021,0.0898], + [21023,0.0944], + [21025,0.1446], + [21027,0.0966], + [21029,0.0806], + [21031,0.0898], + [21033,0.0831], + [21035,0.0706], + [21037,0.0692], + [21039,0.0799], + [21041,0.1023], + [21043,0.125], + [21045,0.0837], + [21047,0.0932], + [21049,0.0814], + [21051,0.1399], + [21053,0.1087], + [21055,0.0769], + [21057,0.1077], + [21059,0.0699], + [21061,0.0995], + [21063,0.1437], + [21065,0.0998], + [21067,0.0583], + [21069,0.0905], + [21071,0.116], + [21073,0.0668], + [21075,0.1132], + [21077,0.0933], + [21079,0.0844], + [21081,0.0903], + [21083,0.0824], + [21085,0.1027], + [21087,0.0832], + [21089,0.099], + [21091,0.0716], + [21093,0.0818], + [21095,0.1409], + [21097,0.0789], + [21099,0.0828], + [21101,0.0753], + [21103,0.073], + [21105,0.0808], + [21107,0.0771], + [21109,0.1176], + [21111,0.0794], + [21113,0.0669], + [21115,0.1015], + [21117,0.0738], + [21119,0.1379], + [21121,0.1283], + [21123,0.0857], + [21125,0.1018], + [21127,0.1059], + [21129,0.1263], + [21131,0.1427], + [21133,0.1348], + [21135,0.1165], + [21137,0.1029], + [21139,0.0969], + [21141,0.0755], + [21143,0.0919], + [21145,0.0796], + [21147,0.1319], + [21149,0.0763], + [21151,0.0675], + [21153,0.1717], + [21155,0.0885], + [21157,0.0809], + [21159,0.0913], + [21161,0.0942], + [21163,0.0976], + [21165,0.1163], + [21167,0.0825], + [21169,0.0795], + [21171,0.0721], + [21173,0.0883], + [21175,0.1063], + [21177,0.0979], + [21179,0.0827], + [21181,0.0823], + [21183,0.0868], + [21185,0.0588], + [21187,0.0656], + [21189,0.1281], + [21191,0.0883], + [21193,0.1255], + [21195,0.0968], + [21197,0.1091], + [21199,0.0945], + [21201,0.1025], + [21203,0.1019], + [21205,0.0832], + [21207,0.1033], + [21209,0.0653], + [21211,0.0624], + [21213,0.0853], + [21215,0.0704], + [21217,0.0958], + [21219,0.076], + [21221,0.0936], + [21223,0.0903], + [21225,0.078], + [21227,0.0695], + [21229,0.0749], + [21231,0.1297], + [21233,0.071], + [21235,0.1066], + [21237,0.1422], + [21239,0.0537], + [22001,0.0598], + [22003,0.0798], + [22005,0.061], + [22007,0.0967], + [22009,0.0757], + [22011,0.0753], + [22013,0.0902], + [22015,0.0577], + [22017,0.077], + [22019,0.069], + [22021,0.0874], + [22023,0.0524], + [22025,0.0893], + [22027,0.0745], + [22029,0.0882], + [22031,0.09], + [22033,0.0673], + [22035,0.2005], + [22037,0.0753], + [22039,0.0741], + [22041,0.104], + [22043,0.079], + [22045,0.0676], + [22047,0.0938], + [22049,0.0681], + [22051,0.0669], + [22053,0.065], + [22055,0.0502], + [22057,0.0528], + [22059,0.0508], + [22061,0.0862], + [22063,0.064], + [22065,0.1205], + [22067,0.1303], + [22069,0.0895], + [22071,0.0788], + [22073,0.0771], + [22075,0.0594], + [22077,0.0819], + [22079,0.0703], + [22081,0.0732], + [22083,0.0973], + [22085,0.0696], + [22087,0.0796], + [22089,0.0656], + [22091,0.1207], + [22093,0.1011], + [22095,0.0927], + [22097,0.0831], + [22099,0.0622], + [22101,0.0749], + [22103,0.0591], + [22105,0.0853], + [22107,0.108], + [22109,0.0531], + [22111,0.0828], + [22113,0.0574], + [22115,0.0827], + [22117,0.0881], + [22119,0.0962], + [22121,0.0689], + [22123,0.1361], + [22125,0.0606], + [22127,0.0852], + [23001,0.0775], + [23003,0.0931], + [23005,0.0597], + [23007,0.0866], + [23009,0.0865], + [23011,0.0717], + [23013,0.0692], + [23015,0.0732], + [23017,0.097], + [23019,0.0776], + [23021,0.0949], + [23023,0.0661], + [23025,0.1001], + [23027,0.0825], + [23029,0.1033], + [23031,0.069], + [24001,0.0891], + [24003,0.06], + [24005,0.0735], + [24009,0.0627], + [24011,0.0774], + [24013,0.059], + [24015,0.0834], + [24017,0.0667], + [24019,0.1084], + [24021,0.061], + [24023,0.0829], + [24025,0.0695], + [24027,0.0502], + [24029,0.0762], + [24031,0.0518], + [24033,0.0728], + [24035,0.0632], + [24037,0.0622], + [24039,0.1125], + [24041,0.072], + [24043,0.0784], + [24045,0.0939], + [24047,0.1291], + [24510,0.1017], + [25001,0.0847], + [25003,0.0733], + [25005,0.0871], + [25007,0.0884], + [25009,0.0707], + [25011,0.0608], + [25013,0.0857], + [25015,0.0581], + [25017,0.0541], + [25019,0.0781], + [25021,0.0569], + [25023,0.07], + [25025,0.0613], + [25027,0.0719], + [26001,0.1269], + [26003,0.1191], + [26005,0.0736], + [26007,0.0973], + [26009,0.1153], + [26011,0.1278], + [26013,0.1407], + [26015,0.0685], + [26017,0.0874], + [26019,0.1047], + [26021,0.0904], + [26023,0.0885], + [26025,0.0837], + [26027,0.0844], + [26029,0.108], + [26031,0.1185], + [26033,0.1005], + [26035,0.1184], + [26037,0.0611], + [26039,0.1177], + [26041,0.0987], + [26043,0.0845], + [26045,0.0692], + [26047,0.1195], + [26049,0.1001], + [26051,0.1183], + [26053,0.111], + [26055,0.0826], + [26057,0.0899], + [26059,0.0915], + [26061,0.0896], + [26063,0.0805], + [26065,0.0784], + [26067,0.0849], + [26069,0.1121], + [26071,0.0955], + [26073,0.0739], + [26075,0.0854], + [26077,0.0725], + [26079,0.1132], + [26081,0.0681], + [26083,0.127], + [26085,0.1306], + [26087,0.1163], + [26089,0.0803], + [26091,0.0837], + [26093,0.0789], + [26095,0.1095], + [26097,0.1209], + [26099,0.0982], + [26101,0.1082], + [26103,0.0808], + [26105,0.0967], + [26107,0.1013], + [26109,0.0805], + [26111,0.0777], + [26113,0.0967], + [26115,0.0775], + [26117,0.102], + [26119,0.1623], + [26121,0.1005], + [26123,0.0918], + [26125,0.0824], + [26127,0.1265], + [26129,0.1141], + [26131,0.1338], + [26133,0.0996], + [26135,0.1564], + [26137,0.1071], + [26139,0.0659], + [26141,0.1449], + [26143,0.1344], + [26145,0.0923], + [26147,0.1176], + [26149,0.0893], + [26151,0.105], + [26153,0.1256], + [26155,0.0956], + [26157,0.1055], + [26159,0.1054], + [26161,0.0595], + [26163,0.1171], + [26165,0.1101], + [27001,0.081], + [27003,0.0589], + [27005,0.058], + [27007,0.0698], + [27009,0.0638], + [27011,0.0523], + [27013,0.0479], + [27015,0.0564], + [27017,0.0687], + [27019,0.0483], + [27021,0.0887], + [27023,0.0528], + [27025,0.0657], + [27027,0.0482], + [27029,0.1055], + [27031,0.0623], + [27033,0.0649], + [27035,0.0768], + [27037,0.0522], + [27039,0.0504], + [27041,0.0504], + [27043,0.0583], + [27045,0.0553], + [27047,0.0581], + [27049,0.0515], + [27051,0.0611], + [27053,0.0523], + [27055,0.0581], + [27057,0.0804], + [27059,0.0699], + [27061,0.0785], + [27063,0.0454], + [27065,0.0899], + [27067,0.0522], + [27069,0.0581], + [27071,0.0798], + [27073,0.0503], + [27075,0.0601], + [27077,0.0609], + [27079,0.065], + [27081,0.0473], + [27083,0.0441], + [27085,0.0678], + [27087,0.0694], + [27089,0.0766], + [27091,0.0561], + [27093,0.0659], + [27095,0.0834], + [27097,0.0706], + [27099,0.0499], + [27101,0.0521], + [27103,0.0456], + [27105,0.0434], + [27107,0.0591], + [27109,0.0442], + [27111,0.0556], + [27113,0.066], + [27115,0.0753], + [27117,0.0497], + [27119,0.0622], + [27121,0.0466], + [27123,0.0575], + [27125,0.0722], + [27127,0.0552], + [27129,0.0678], + [27131,0.0581], + [27133,0.0364], + [27135,0.0472], + [27137,0.065], + [27139,0.0498], + [27141,0.0619], + [27143,0.0598], + [27145,0.054], + [27147,0.0542], + [27149,0.0423], + [27151,0.0616], + [27153,0.058], + [27155,0.0501], + [27157,0.0518], + [27159,0.078], + [27161,0.0576], + [27163,0.0514], + [27165,0.0562], + [27167,0.0471], + [27169,0.049], + [27171,0.0585], + [27173,0.0502], + [28001,0.0991], + [28003,0.0871], + [28005,0.1004], + [28007,0.0981], + [28009,0.1061], + [28011,0.1062], + [28013,0.0832], + [28015,0.1102], + [28017,0.1024], + [28019,0.0908], + [28021,0.1541], + [28023,0.1076], + [28025,0.1407], + [28027,0.1259], + [28029,0.1104], + [28031,0.0847], + [28033,0.0646], + [28035,0.0902], + [28037,0.0977], + [28039,0.1025], + [28041,0.1123], + [28043,0.0922], + [28045,0.0845], + [28047,0.0817], + [28049,0.0878], + [28051,0.1653], + [28053,0.1905], + [28055,0.1762], + [28057,0.084], + [28059,0.0945], + [28061,0.1016], + [28063,0.1736], + [28065,0.1292], + [28067,0.0757], + [28069,0.1312], + [28071,0.0771], + [28073,0.0646], + [28075,0.0904], + [28077,0.1028], + [28079,0.0923], + [28081,0.0834], + [28083,0.1403], + [28085,0.0863], + [28087,0.0915], + [28089,0.0625], + [28091,0.1024], + [28093,0.1085], + [28095,0.1106], + [28097,0.1166], + [28099,0.0836], + [28101,0.0797], + [28103,0.1311], + [28105,0.0838], + [28107,0.1214], + [28109,0.0823], + [28111,0.1147], + [28113,0.1053], + [28115,0.0782], + [28117,0.0862], + [28119,0.1393], + [28121,0.0574], + [28123,0.0761], + [28125,0.1357], + [28127,0.0824], + [28129,0.0727], + [28131,0.1031], + [28133,0.1436], + [28135,0.1127], + [28137,0.0924], + [28139,0.1008], + [28141,0.1032], + [28143,0.1234], + [28145,0.0803], + [28147,0.1123], + [28149,0.0901], + [28151,0.1453], + [28153,0.1112], + [28155,0.0914], + [28157,0.1229], + [28159,0.1148], + [28161,0.1009], + [28163,0.1123], + [29001,0.0702], + [29003,0.0535], + [29005,0.0636], + [29007,0.0651], + [29009,0.0707], + [29011,0.0741], + [29013,0.0823], + [29015,0.0905], + [29017,0.0702], + [29019,0.0453], + [29021,0.0628], + [29023,0.0819], + [29025,0.07], + [29027,0.0619], + [29029,0.0956], + [29031,0.0553], + [29033,0.0833], + [29035,0.0946], + [29037,0.0667], + [29039,0.0743], + [29041,0.0655], + [29043,0.0582], + [29045,0.0807], + [29047,0.0609], + [29049,0.0701], + [29051,0.0515], + [29053,0.0715], + [29055,0.0881], + [29057,0.0748], + [29059,0.091], + [29061,0.0693], + [29063,0.0593], + [29065,0.0817], + [29067,0.0982], + [29069,0.1039], + [29071,0.0787], + [29073,0.0705], + [29075,0.0532], + [29077,0.0592], + [29079,0.0645], + [29081,0.0725], + [29083,0.0777], + [29085,0.1198], + [29087,0.0524], + [29089,0.0677], + [29091,0.0814], + [29093,0.1139], + [29095,0.0778], + [29097,0.059], + [29099,0.0718], + [29101,0.0766], + [29103,0.0563], + [29105,0.0924], + [29107,0.071], + [29109,0.0651], + [29111,0.0552], + [29113,0.0832], + [29115,0.0925], + [29117,0.062], + [29119,0.0667], + [29121,0.0673], + [29123,0.0825], + [29125,0.0723], + [29127,0.0609], + [29129,0.0518], + [29131,0.0903], + [29133,0.0791], + [29135,0.0661], + [29137,0.0766], + [29139,0.0785], + [29141,0.0994], + [29143,0.0805], + [29145,0.0616], + [29147,0.0557], + [29149,0.0787], + [29151,0.0503], + [29153,0.1015], + [29155,0.0962], + [29157,0.0513], + [29159,0.0706], + [29161,0.0707], + [29163,0.0685], + [29165,0.0549], + [29167,0.077], + [29169,0.0814], + [29171,0.0595], + [29173,0.0639], + [29175,0.087], + [29177,0.0822], + [29179,0.1093], + [29181,0.1045], + [29183,0.0559], + [29185,0.0791], + [29186,0.0729], + [29187,0.0888], + [29189,0.0647], + [29195,0.066], + [29197,0.0735], + [29199,0.0503], + [29201,0.0697], + [29203,0.1101], + [29205,0.0601], + [29207,0.0867], + [29209,0.1115], + [29211,0.0683], + [29213,0.1128], + [29215,0.0819], + [29217,0.0585], + [29219,0.0748], + [29221,0.1059], + [29223,0.0903], + [29225,0.071], + [29227,0.0417], + [29229,0.0841], + [29510,0.0852], + [30001,0.054], + [30003,0.121], + [30005,0.064], + [30007,0.075], + [30009,0.0469], + [30011,0.0321], + [30013,0.0555], + [30015,0.0394], + [30017,0.0358], + [30019,0.0319], + [30021,0.0329], + [30023,0.0555], + [30025,0.0207], + [30027,0.0536], + [30029,0.0903], + [30031,0.0511], + [30033,0.0312], + [30035,0.0988], + [30037,0.0462], + [30039,0.0815], + [30041,0.0582], + [30043,0.0552], + [30045,0.0525], + [30047,0.0769], + [30049,0.0485], + [30051,0.0415], + [30053,0.1253], + [30055,0.0294], + [30057,0.0625], + [30059,0.0548], + [30061,0.1092], + [30063,0.0587], + [30065,0.0538], + [30067,0.0698], + [30069,0.0435], + [30071,0.0597], + [30073,0.049], + [30075,0.0371], + [30077,0.0647], + [30079,0.0435], + [30081,0.0762], + [30083,0.028], + [30085,0.066], + [30087,0.0678], + [30089,0.1149], + [30091,0.0296], + [30093,0.0607], + [30095,0.0448], + [30097,0.0389], + [30099,0.0486], + [30101,0.0424], + [30103,0.0501], + [30105,0.0415], + [30107,0.0632], + [30109,0.0321], + [30111,0.0459], + [31001,0.0382], + [31003,0.0327], + [31005,0.0652], + [31007,0.0457], + [31009,0.0528], + [31011,0.0309], + [31013,0.0402], + [31015,0.0392], + [31017,0.0406], + [31019,0.033], + [31021,0.0473], + [31023,0.0333], + [31025,0.0465], + [31027,0.0291], + [31029,0.024], + [31031,0.0287], + [31033,0.0278], + [31035,0.0373], + [31037,0.0355], + [31039,0.0309], + [31041,0.0286], + [31043,0.0578], + [31045,0.0364], + [31047,0.0438], + [31049,0.0327], + [31051,0.0414], + [31053,0.0452], + [31055,0.0447], + [31057,0.0296], + [31059,0.0325], + [31061,0.0365], + [31063,0.0322], + [31065,0.0353], + [31067,0.0496], + [31069,0.0325], + [31071,0.0303], + [31073,0.0297], + [31075,0.0342], + [31077,0.0362], + [31079,0.0398], + [31081,0.0334], + [31083,0.0325], + [31085,0.0301], + [31087,0.0412], + [31089,0.032], + [31091,0.0457], + [31093,0.0362], + [31095,0.0377], + [31097,0.0433], + [31099,0.0287], + [31101,0.0371], + [31103,0.0313], + [31105,0.0328], + [31107,0.0336], + [31109,0.0361], + [31111,0.0394], + [31113,0.0316], + [31115,0.0383], + [31117,0.036], + [31119,0.0369], + [31121,0.0366], + [31123,0.0318], + [31125,0.0333], + [31127,0.0484], + [31129,0.0347], + [31131,0.0451], + [31133,0.0329], + [31135,0.0268], + [31137,0.0301], + [31139,0.0334], + [31141,0.0366], + [31143,0.0307], + [31145,0.0326], + [31147,0.0513], + [31149,0.025], + [31151,0.0435], + [31153,0.0386], + [31155,0.0424], + [31157,0.0469], + [31159,0.0352], + [31161,0.0356], + [31163,0.0377], + [31165,0.0357], + [31167,0.0348], + [31169,0.0306], + [31171,0.0397], + [31173,0.0871], + [31175,0.0349], + [31177,0.0378], + [31179,0.0321], + [31181,0.0366], + [31183,0.0344], + [31185,0.037], + [32001,0.1103], + [32003,0.1126], + [32005,0.1146], + [32007,0.0633], + [32009,0.0693], + [32011,0.0607], + [32013,0.0662], + [32015,0.0737], + [32017,0.1049], + [32019,0.1478], + [32021,0.1356], + [32023,0.1448], + [32027,0.0967], + [32029,0.133], + [32031,0.1103], + [32033,0.0772], + [32510,0.1174], + [33001,0.0542], + [33003,0.0527], + [33005,0.0508], + [33007,0.074], + [33009,0.0445], + [33011,0.0578], + [33013,0.0495], + [33015,0.0581], + [33017,0.0541], + [33019,0.0449], + [34001,0.1269], + [34003,0.0769], + [34005,0.0866], + [34007,0.1071], + [34009,0.1548], + [34011,0.1313], + [34013,0.1075], + [34015,0.1009], + [34017,0.089], + [34019,0.0685], + [34021,0.0827], + [34023,0.0861], + [34025,0.0871], + [34027,0.0712], + [34029,0.1061], + [34031,0.1107], + [34033,0.1182], + [34035,0.0745], + [34037,0.0902], + [34039,0.0946], + [34041,0.0875], + [35001,0.0679], + [35003,0.0954], + [35005,0.065], + [35006,0.0858], + [35007,0.0783], + [35009,0.0495], + [35011,0.0426], + [35013,0.0732], + [35015,0.0468], + [35017,0.0665], + [35019,0.1002], + [35021,0.0648], + [35023,0.0736], + [35025,0.0472], + [35027,0.0653], + [35028,0.0389], + [35029,0.1998], + [35031,0.096], + [35033,0.1101], + [35035,0.0651], + [35037,0.0808], + [35039,0.0931], + [35041,0.0558], + [35043,0.0778], + [35045,0.071], + [35047,0.089], + [35049,0.0578], + [35051,0.0982], + [35053,0.0698], + [35055,0.1046], + [35057,0.1062], + [35059,0.0438], + [35061,0.0867], + [36001,0.0709], + [36003,0.0842], + [36005,0.1243], + [36007,0.087], + [36009,0.0933], + [36011,0.0826], + [36013,0.0852], + [36015,0.0841], + [36017,0.0863], + [36019,0.0941], + [36021,0.0704], + [36023,0.0862], + [36025,0.0874], + [36027,0.0778], + [36029,0.0831], + [36031,0.0957], + [36033,0.0956], + [36035,0.1102], + [36037,0.0791], + [36039,0.0994], + [36041,0.107], + [36043,0.0877], + [36045,0.0987], + [36047,0.0978], + [36049,0.0999], + [36051,0.0785], + [36053,0.0851], + [36055,0.0788], + [36057,0.104], + [36059,0.0704], + [36061,0.0803], + [36063,0.0932], + [36065,0.0824], + [36067,0.0788], + [36069,0.0727], + [36071,0.0791], + [36073,0.0969], + [36075,0.1097], + [36077,0.0786], + [36079,0.0718], + [36081,0.0829], + [36083,0.0775], + [36085,0.0946], + [36087,0.0731], + [36089,0.1021], + [36091,0.0681], + [36093,0.0768], + [36095,0.0919], + [36097,0.0939], + [36099,0.0798], + [36101,0.0934], + [36103,0.0778], + [36105,0.0911], + [36107,0.0789], + [36109,0.0613], + [36111,0.0828], + [36113,0.0919], + [36115,0.0827], + [36117,0.0858], + [36119,0.0726], + [36121,0.0885], + [36123,0.078], + [37001,0.0853], + [37003,0.0958], + [37005,0.1045], + [37007,0.1092], + [37009,0.1044], + [37011,0.1063], + [37013,0.1058], + [37015,0.1141], + [37017,0.127], + [37019,0.1124], + [37021,0.0724], + [37023,0.0984], + [37025,0.09], + [37027,0.1161], + [37029,0.0785], + [37031,0.0894], + [37033,0.1064], + [37035,0.1014], + [37037,0.0784], + [37039,0.1096], + [37041,0.1089], + [37043,0.1036], + [37045,0.1104], + [37047,0.1226], + [37049,0.0948], + [37051,0.1049], + [37053,0.0855], + [37055,0.1237], + [37057,0.097], + [37059,0.0907], + [37061,0.0912], + [37063,0.074], + [37065,0.1432], + [37067,0.0885], + [37069,0.0969], + [37071,0.1045], + [37073,0.0767], + [37075,0.1767], + [37077,0.08], + [37079,0.086], + [37081,0.0954], + [37083,0.1354], + [37085,0.1061], + [37087,0.0911], + [37089,0.0749], + [37091,0.1077], + [37093,0.1067], + [37095,0.1342], + [37097,0.0992], + [37099,0.1058], + [37101,0.0843], + [37103,0.0992], + [37105,0.1137], + [37107,0.098], + [37109,0.0961], + [37111,0.1083], + [37113,0.1061], + [37115,0.0976], + [37117,0.12], + [37119,0.0875], + [37121,0.1223], + [37123,0.1059], + [37125,0.0879], + [37127,0.1152], + [37129,0.0864], + [37131,0.1147], + [37133,0.0801], + [37135,0.0611], + [37137,0.0901], + [37139,0.1004], + [37141,0.1043], + [37143,0.1043], + [37145,0.1103], + [37147,0.0912], + [37149,0.0849], + [37151,0.0994], + [37153,0.1338], + [37155,0.1325], + [37157,0.1126], + [37159,0.1087], + [37161,0.132], + [37163,0.0931], + [37165,0.1716], + [37167,0.0994], + [37169,0.093], + [37171,0.0963], + [37173,0.1472], + [37175,0.087], + [37177,0.1364], + [37179,0.0785], + [37181,0.1353], + [37183,0.0713], + [37185,0.1244], + [37187,0.1534], + [37189,0.0738], + [37191,0.0847], + [37193,0.1038], + [37195,0.13], + [37197,0.0918], + [37199,0.1068], + [38001,0.0288], + [38003,0.0342], + [38005,0.0699], + [38007,0.0338], + [38009,0.034], + [38011,0.0182], + [38013,0.0196], + [38015,0.0282], + [38017,0.0293], + [38019,0.0317], + [38021,0.0273], + [38023,0.0151], + [38025,0.0158], + [38027,0.0512], + [38029,0.054], + [38031,0.0315], + [38033,0.0245], + [38035,0.0339], + [38037,0.0315], + [38039,0.0269], + [38041,0.0268], + [38043,0.0514], + [38045,0.025], + [38047,0.0308], + [38049,0.0429], + [38051,0.0321], + [38053,0.0153], + [38055,0.044], + [38057,0.0533], + [38059,0.0358], + [38061,0.0163], + [38063,0.0414], + [38065,0.0673], + [38067,0.0642], + [38069,0.0432], + [38071,0.0414], + [38073,0.03], + [38075,0.0228], + [38077,0.0364], + [38079,0.1053], + [38081,0.0265], + [38083,0.0366], + [38085,0.052], + [38087,0.0208], + [38089,0.0182], + [38091,0.0267], + [38093,0.0343], + [38095,0.0333], + [38097,0.0316], + [38099,0.0489], + [38101,0.0265], + [38103,0.0399], + [38105,0.0112], + [39001,0.1257], + [39003,0.0771], + [39005,0.0804], + [39007,0.0941], + [39009,0.0852], + [39011,0.0618], + [39013,0.0825], + [39015,0.1], + [39017,0.0766], + [39019,0.0794], + [39021,0.0738], + [39023,0.0777], + [39025,0.0745], + [39027,0.1075], + [39029,0.0825], + [39031,0.1006], + [39033,0.0906], + [39035,0.0678], + [39037,0.0724], + [39039,0.0766], + [39041,0.0519], + [39043,0.0801], + [39045,0.0664], + [39047,0.0829], + [39049,0.0642], + [39051,0.0773], + [39053,0.0967], + [39055,0.0533], + [39057,0.0689], + [39059,0.0897], + [39061,0.0737], + [39063,0.064], + [39065,0.0746], + [39067,0.0855], + [39069,0.0875], + [39071,0.1042], + [39073,0.0827], + [39075,0.0514], + [39077,0.099], + [39079,0.1033], + [39081,0.1086], + [39083,0.0695], + [39085,0.0595], + [39087,0.0849], + [39089,0.0676], + [39091,0.0715], + [39093,0.0706], + [39095,0.0834], + [39097,0.0638], + [39099,0.083], + [39101,0.0791], + [39103,0.0549], + [39105,0.1156], + [39107,0.0511], + [39109,0.0727], + [39111,0.0839], + [39113,0.082], + [39115,0.099], + [39117,0.0813], + [39119,0.0917], + [39121,0.1101], + [39123,0.0953], + [39125,0.0769], + [39127,0.0978], + [39129,0.0745], + [39131,0.1304], + [39133,0.0729], + [39135,0.0773], + [39137,0.0581], + [39139,0.0872], + [39141,0.0841], + [39143,0.0753], + [39145,0.113], + [39147,0.0796], + [39149,0.0729], + [39151,0.0748], + [39153,0.0746], + [39155,0.0905], + [39157,0.0735], + [39159,0.0575], + [39161,0.0755], + [39163,0.1081], + [39165,0.065], + [39167,0.0865], + [39169,0.0612], + [39171,0.079], + [39173,0.0687], + [39175,0.0684], + [40001,0.0913], + [40003,0.0284], + [40005,0.0677], + [40007,0.03], + [40009,0.0303], + [40011,0.0388], + [40013,0.0536], + [40015,0.0598], + [40017,0.039], + [40019,0.0552], + [40021,0.0703], + [40023,0.0845], + [40025,0.0325], + [40027,0.0414], + [40029,0.0709], + [40031,0.0593], + [40033,0.0565], + [40035,0.0564], + [40037,0.0603], + [40039,0.0356], + [40041,0.0659], + [40043,0.0319], + [40045,0.0285], + [40047,0.0405], + [40049,0.0497], + [40051,0.0476], + [40053,0.0339], + [40055,0.0535], + [40057,0.0466], + [40059,0.0318], + [40061,0.0889], + [40063,0.0803], + [40065,0.0512], + [40067,0.0491], + [40069,0.0778], + [40071,0.071], + [40073,0.0335], + [40075,0.047], + [40077,0.085], + [40079,0.0863], + [40081,0.0497], + [40083,0.0437], + [40085,0.0424], + [40087,0.0418], + [40089,0.095], + [40091,0.1016], + [40093,0.0351], + [40095,0.0582], + [40097,0.0611], + [40099,0.0461], + [40101,0.0672], + [40103,0.0442], + [40105,0.0683], + [40107,0.0763], + [40109,0.0478], + [40111,0.0792], + [40113,0.0584], + [40115,0.0785], + [40117,0.0657], + [40119,0.0469], + [40121,0.0697], + [40123,0.0508], + [40125,0.0531], + [40127,0.0723], + [40129,0.0285], + [40131,0.0498], + [40133,0.0784], + [40135,0.0834], + [40137,0.0491], + [40139,0.0416], + [40141,0.0483], + [40143,0.0515], + [40145,0.0518], + [40147,0.0482], + [40149,0.0398], + [40151,0.0278], + [40153,0.0351], + [41001,0.1056], + [41003,0.06], + [41005,0.0804], + [41007,0.0874], + [41009,0.1072], + [41011,0.1109], + [41013,0.1356], + [41015,0.1178], + [41017,0.1125], + [41019,0.1195], + [41021,0.1014], + [41023,0.14], + [41025,0.1177], + [41027,0.0725], + [41029,0.111], + [41031,0.1181], + [41033,0.1216], + [41035,0.1172], + [41037,0.1296], + [41039,0.0891], + [41041,0.0992], + [41043,0.1074], + [41045,0.0936], + [41047,0.0997], + [41049,0.081], + [41051,0.0761], + [41053,0.089], + [41055,0.1073], + [41057,0.0971], + [41059,0.0905], + [41061,0.0943], + [41063,0.1149], + [41065,0.0842], + [41067,0.0708], + [41069,0.0691], + [41071,0.085], + [42001,0.064], + [42003,0.0695], + [42005,0.0803], + [42007,0.0753], + [42009,0.0863], + [42011,0.0766], + [42013,0.0744], + [42015,0.0688], + [42017,0.0718], + [42019,0.0642], + [42021,0.0878], + [42023,0.1027], + [42025,0.1], + [42027,0.0548], + [42029,0.0562], + [42031,0.0897], + [42033,0.0935], + [42035,0.0884], + [42037,0.0834], + [42039,0.0763], + [42041,0.0619], + [42043,0.0742], + [42045,0.077], + [42047,0.0696], + [42049,0.078], + [42051,0.0993], + [42053,0.0983], + [42055,0.0701], + [42057,0.0922], + [42059,0.0729], + [42061,0.0993], + [42063,0.081], + [42065,0.0832], + [42067,0.0725], + [42069,0.0884], + [42071,0.0651], + [42073,0.079], + [42075,0.0667], + [42077,0.0848], + [42079,0.0979], + [42081,0.0787], + [42083,0.0839], + [42085,0.0756], + [42087,0.0865], + [42089,0.0976], + [42091,0.0636], + [42093,0.0582], + [42095,0.081], + [42097,0.0911], + [42099,0.0725], + [42101,0.1088], + [42103,0.1011], + [42105,0.0912], + [42107,0.0973], + [42109,0.076], + [42111,0.0886], + [42113,0.078], + [42115,0.076], + [42117,0.0762], + [42119,0.0642], + [42121,0.0767], + [42123,0.0684], + [42125,0.0719], + [42127,0.0805], + [42129,0.0737], + [42131,0.0895], + [42133,0.0741], + [44001,0.0898], + [44003,0.0995], + [44005,0.0929], + [44007,0.1094], + [44009,0.0966], + [45001,0.1062], + [45003,0.086], + [45005,0.1692], + [45007,0.0886], + [45009,0.1591], + [45011,0.1387], + [45013,0.0755], + [45015,0.084], + [45017,0.1119], + [45019,0.0715], + [45021,0.1282], + [45023,0.1478], + [45025,0.1137], + [45027,0.1283], + [45029,0.1209], + [45031,0.1106], + [45033,0.1413], + [45035,0.0781], + [45037,0.0944], + [45039,0.1302], + [45041,0.0966], + [45043,0.1197], + [45045,0.0743], + [45047,0.1014], + [45049,0.1117], + [45051,0.1036], + [45053,0.0847], + [45055,0.0952], + [45057,0.1127], + [45059,0.1029], + [45061,0.1406], + [45063,0.07], + [45065,0.1179], + [45067,0.159], + [45069,0.1758], + [45071,0.0883], + [45073,0.0879], + [45075,0.1427], + [45077,0.0897], + [45079,0.0818], + [45081,0.0848], + [45083,0.0943], + [45085,0.1066], + [45087,0.1363], + [45089,0.1579], + [45091,0.0927], + [46003,0.0297], + [46005,0.0348], + [46007,0.0676], + [46009,0.0392], + [46011,0.0391], + [46013,0.0357], + [46015,0.0363], + [46017,0.0965], + [46019,0.0466], + [46021,0.036], + [46023,0.0496], + [46025,0.0432], + [46027,0.0382], + [46029,0.0389], + [46031,0.08], + [46033,0.0535], + [46035,0.0334], + [46037,0.0577], + [46039,0.0593], + [46041,0.1603], + [46043,0.0337], + [46045,0.0299], + [46047,0.057], + [46049,0.0402], + [46051,0.0441], + [46053,0.0437], + [46055,0.0319], + [46057,0.0394], + [46059,0.0306], + [46061,0.0464], + [46063,0.0372], + [46065,0.0331], + [46067,0.0348], + [46069,0.0353], + [46071,0.0701], + [46073,0.0312], + [46075,0.0383], + [46077,0.0357], + [46079,0.0425], + [46081,0.0449], + [46083,0.0324], + [46085,0.0596], + [46087,0.0379], + [46089,0.0463], + [46091,0.048], + [46093,0.0439], + [46095,0.0783], + [46097,0.0365], + [46099,0.0397], + [46101,0.0547], + [46102,null], + [46103,0.0439], + [46105,0.0398], + [46107,0.0405], + [46109,0.0573], + [46111,0.0347], + [46115,0.0409], + [46117,0.0301], + [46119,0.0307], + [46121,0.0969], + [46123,0.0372], + [46125,0.0349], + [46127,0.0475], + [46129,0.0615], + [46135,0.0368], + [46137,0.0692], + [47001,0.0791], + [47003,0.0977], + [47005,0.0981], + [47007,0.1037], + [47009,0.0707], + [47011,0.0736], + [47013,0.1106], + [47015,0.0849], + [47017,0.1094], + [47019,0.0892], + [47021,0.0721], + [47023,0.0783], + [47025,0.0986], + [47027,0.1], + [47029,0.1146], + [47031,0.0822], + [47033,0.0916], + [47035,0.09], + [47037,0.062], + [47039,0.1032], + [47041,0.0959], + [47043,0.0832], + [47045,0.1099], + [47047,0.0847], + [47049,0.0974], + [47051,0.0777], + [47053,0.1029], + [47055,0.0842], + [47057,0.1028], + [47059,0.1016], + [47061,0.1005], + [47063,0.094], + [47065,0.069], + [47067,0.1179], + [47069,0.109], + [47071,0.1006], + [47073,0.0882], + [47075,0.1154], + [47077,0.0966], + [47079,0.0942], + [47081,0.0887], + [47083,0.1117], + [47085,0.095], + [47087,0.1046], + [47089,0.0937], + [47091,0.0945], + [47093,0.0613], + [47095,0.1042], + [47097,0.1091], + [47099,0.0953], + [47101,0.108], + [47103,0.0609], + [47105,0.0756], + [47107,0.0915], + [47109,0.1026], + [47111,0.0828], + [47113,0.0813], + [47115,0.0911], + [47117,0.0938], + [47119,0.0783], + [47121,0.1031], + [47123,0.0995], + [47125,0.0758], + [47127,0.058], + [47129,0.1025], + [47131,0.1343], + [47133,0.0891], + [47135,0.0976], + [47137,0.094], + [47139,0.098], + [47141,0.0803], + [47143,0.1024], + [47145,0.0862], + [47147,0.0703], + [47149,0.0651], + [47151,0.1553], + [47153,0.0839], + [47155,0.0875], + [47157,0.0861], + [47159,0.0815], + [47161,0.1102], + [47163,0.0754], + [47165,0.0651], + [47167,0.0886], + [47169,0.0863], + [47171,0.103], + [47173,0.0944], + [47175,0.1149], + [47177,0.0877], + [47179,0.0708], + [47181,0.0947], + [47183,0.1093], + [47185,0.0977], + [47187,0.0496], + [47189,0.064], + [48001,0.0633], + [48003,0.0399], + [48005,0.069], + [48007,0.0697], + [48009,0.0547], + [48011,0.0448], + [48013,0.0674], + [48015,0.0639], + [48017,0.0691], + [48019,0.0655], + [48021,0.0668], + [48023,0.0509], + [48025,0.0703], + [48027,0.0741], + [48029,0.0634], + [48031,0.0515], + [48033,0.043], + [48035,0.0723], + [48037,0.0744], + [48039,0.0667], + [48041,0.0528], + [48043,0.0508], + [48045,0.0544], + [48047,0.0871], + [48049,0.0678], + [48051,0.0629], + [48053,0.0596], + [48055,0.0717], + [48057,0.0734], + [48059,0.0608], + [48061,0.1031], + [48063,0.0801], + [48065,0.0456], + [48067,0.0918], + [48069,0.0438], + [48071,0.0804], + [48073,0.0724], + [48075,0.0441], + [48077,0.056], + [48079,0.0753], + [48081,0.0509], + [48083,0.0751], + [48085,0.0589], + [48087,0.0497], + [48089,0.0636], + [48091,0.0605], + [48093,0.0637], + [48095,0.0423], + [48097,0.0503], + [48099,0.0736], + [48101,0.0751], + [48103,0.0485], + [48105,0.0502], + [48107,0.0718], + [48109,0.0607], + [48111,0.0368], + [48113,0.0712], + [48115,0.0642], + [48117,0.047], + [48119,0.0674], + [48121,0.0571], + [48123,0.0478], + [48125,0.1068], + [48127,0.0583], + [48129,0.0591], + [48131,0.0702], + [48133,0.0667], + [48135,0.0459], + [48137,0.0637], + [48139,0.0676], + [48141,0.0854], + [48143,0.0556], + [48145,0.0733], + [48147,0.0706], + [48149,0.0484], + [48151,0.054], + [48153,0.0644], + [48155,0.0579], + [48157,0.0595], + [48159,0.0739], + [48161,0.0674], + [48163,0.0504], + [48165,0.0425], + [48167,0.0764], + [48169,0.0496], + [48171,0.047], + [48173,0.0406], + [48175,0.0549], + [48177,0.0508], + [48179,0.0561], + [48181,0.0685], + [48183,0.062], + [48185,0.0643], + [48187,0.0568], + [48189,0.0692], + [48191,0.0774], + [48193,0.0581], + [48195,0.034], + [48197,0.059], + [48199,0.0842], + [48201,0.0664], + [48203,0.0739], + [48205,0.0334], + [48207,0.0533], + [48209,0.0584], + [48211,0.0291], + [48213,0.0757], + [48215,0.1061], + [48217,0.0692], + [48219,0.0528], + [48221,0.0652], + [48223,0.0647], + [48225,0.0709], + [48227,0.0561], + [48229,0.0747], + [48231,0.0828], + [48233,0.0649], + [48235,0.0458], + [48237,0.0576], + [48239,0.0512], + [48241,0.1065], + [48243,0.0486], + [48245,0.1105], + [48247,0.0659], + [48249,0.0617], + [48251,0.0664], + [48253,0.072], + [48255,0.0609], + [48257,0.0695], + [48259,0.0541], + [48261,0.0512], + [48263,0.0398], + [48265,0.0583], + [48267,0.0489], + [48269,0.0445], + [48271,0.0879], + [48273,0.0688], + [48275,0.0523], + [48277,0.0921], + [48279,0.0796], + [48281,0.0712], + [48283,0.0444], + [48285,0.0483], + [48287,0.054], + [48289,0.0738], + [48291,0.0958], + [48293,0.0688], + [48295,0.0387], + [48297,0.0456], + [48299,0.0679], + [48301,0.0597], + [48303,0.0535], + [48305,0.0603], + [48307,0.0538], + [48309,0.0664], + [48311,0.0242], + [48313,0.0707], + [48315,0.0912], + [48317,0.0451], + [48319,0.0523], + [48321,0.1013], + [48323,0.1253], + [48325,0.0655], + [48327,0.0628], + [48329,0.0388], + [48331,0.0858], + [48333,0.0543], + [48335,0.0598], + [48337,0.0541], + [48339,0.0594], + [48341,0.0432], + [48343,0.0975], + [48345,0.0594], + [48347,0.0664], + [48349,0.0726], + [48351,0.1106], + [48353,0.0592], + [48355,0.0657], + [48357,0.0385], + [48359,0.0431], + [48361,0.1045], + [48363,0.0674], + [48365,0.0686], + [48367,0.0593], + [48369,0.0412], + [48371,0.0512], + [48373,0.0802], + [48375,0.0534], + [48377,0.1327], + [48379,0.07], + [48381,0.0442], + [48383,0.0342], + [48385,0.0937], + [48387,0.107], + [48389,0.0675], + [48391,0.0601], + [48393,0.0508], + [48395,0.0804], + [48397,0.0618], + [48399,0.0553], + [48401,0.0628], + [48403,0.1455], + [48405,0.1212], + [48407,0.0824], + [48409,0.0758], + [48411,0.0623], + [48413,0.0399], + [48415,0.0447], + [48417,0.0352], + [48419,0.0726], + [48421,0.0419], + [48423,0.0703], + [48425,0.0661], + [48427,0.1453], + [48429,0.0593], + [48431,0.0347], + [48433,0.0441], + [48435,0.0472], + [48437,0.0593], + [48439,0.0651], + [48441,0.0566], + [48443,0.0474], + [48445,0.0655], + [48447,0.053], + [48449,0.075], + [48451,0.0533], + [48453,0.055], + [48455,0.0818], + [48457,0.1069], + [48459,0.0674], + [48461,0.0402], + [48463,0.0793], + [48465,0.0762], + [48467,0.0693], + [48469,0.0558], + [48471,0.0695], + [48473,0.07], + [48475,0.0482], + [48477,0.0562], + [48479,0.0648], + [48481,0.0676], + [48483,0.0435], + [48485,0.0608], + [48487,0.0601], + [48489,0.1581], + [48491,0.0583], + [48493,0.0554], + [48495,0.0565], + [48497,0.0645], + [48499,0.0786], + [48501,0.0401], + [48503,0.0571], + [48505,0.0634], + [48507,0.1351], + [49001,0.061], + [49003,0.0576], + [49005,0.0448], + [49007,0.0705], + [49009,0.0505], + [49011,0.0488], + [49013,0.047], + [49015,0.0718], + [49017,0.0949], + [49019,0.0841], + [49021,0.0683], + [49023,0.061], + [49025,0.0664], + [49027,0.0466], + [49029,0.0492], + [49031,0.0833], + [49033,0.0529], + [49035,0.0525], + [49037,0.0881], + [49039,0.0641], + [49041,0.0612], + [49043,0.0492], + [49045,0.0598], + [49047,0.0444], + [49049,0.0496], + [49051,0.0575], + [49053,0.0688], + [49055,0.1077], + [49057,0.0635], + [50001,0.0451], + [50003,0.0588], + [50005,0.0624], + [50007,0.0378], + [50009,0.0805], + [50011,0.0448], + [50013,0.054], + [50015,0.0636], + [50017,0.0471], + [50019,0.0773], + [50021,0.0623], + [50023,0.0471], + [50025,0.0517], + [50027,0.0465], + [51001,0.0788], + [51003,0.0523], + [51005,0.0709], + [51007,0.0653], + [51009,0.067], + [51011,0.0744], + [51013,0.0347], + [51015,0.0579], + [51017,0.0584], + [51019,0.0597], + [51021,0.0702], + [51023,0.0548], + [51025,0.101], + [51027,0.091], + [51029,0.0853], + [51031,0.0647], + [51033,0.078], + [51035,0.0853], + [51036,0.0784], + [51037,0.087], + [51041,0.061], + [51043,0.0523], + [51045,0.0702], + [51047,0.0568], + [51049,0.0713], + [51051,0.1066], + [51053,0.0758], + [51057,0.0733], + [51059,0.0451], + [51061,0.0514], + [51063,0.0567], + [51065,0.0525], + [51067,0.0658], + [51069,0.0578], + [51071,0.0727], + [51073,0.0564], + [51075,0.0558], + [51077,0.0957], + [51079,0.0555], + [51081,0.0862], + [51083,0.0949], + [51085,0.0551], + [51087,0.0605], + [51089,0.1056], + [51091,0.0486], + [51093,0.0633], + [51095,0.0572], + [51097,0.0662], + [51099,0.0648], + [51101,0.0632], + [51103,0.0797], + [51105,0.0826], + [51107,0.0445], + [51109,0.0623], + [51111,0.0756], + [51113,0.0481], + [51115,0.057], + [51117,0.0943], + [51119,0.0607], + [51121,0.0595], + [51125,0.0583], + [51127,0.0558], + [51131,0.0926], + [51133,0.0816], + [51135,0.0637], + [51137,0.0668], + [51139,0.102], + [51141,0.0913], + [51143,0.0777], + [51145,0.0564], + [51147,0.085], + [51149,0.0741], + [51153,0.0528], + [51155,0.0744], + [51157,0.0543], + [51159,0.0639], + [51161,0.0523], + [51163,0.0609], + [51165,0.0567], + [51167,0.0866], + [51169,0.0754], + [51171,0.0636], + [51173,0.0958], + [51175,0.0628], + [51177,0.0609], + [51179,0.0579], + [51181,0.078], + [51183,0.0973], + [51185,0.0826], + [51187,0.067], + [51191,0.0673], + [51193,0.0727], + [51195,0.0893], + [51197,0.0775], + [51199,0.0579], + [51510,0.0409], + [51520,0.073], + [51530,0.0791], + [51540,0.0512], + [51550,0.0642], + [51570,0.0695], + [51580,0.0896], + [51590,0.1034], + [51595,0.1056], + [51600,0.0431], + [51610,0.04], + [51620,0.0998], + [51630,0.0705], + [51640,0.0886], + [51650,0.0825], + [51660,0.0737], + [51670,0.1006], + [51678,0.0876], + [51680,0.0747], + [51683,0.056], + [51685,0.0529], + [51690,0.1281], + [51700,0.0749], + [51710,0.0762], + [51720,0.0767], + [51730,0.1195], + [51735,0.0541], + [51740,0.0881], + [51750,0.0794], + [51760,0.0749], + [51770,0.0721], + [51775,0.0594], + [51790,0.0642], + [51800,0.0702], + [51810,0.0574], + [51820,0.0703], + [51830,0.0834], + [51840,0.0668], + [53001,0.0909], + [53003,0.0778], + [53005,0.0932], + [53007,0.08], + [53009,0.1045], + [53011,0.0941], + [53013,0.0829], + [53015,0.1069], + [53017,0.0909], + [53019,0.1567], + [53021,0.097], + [53023,0.0765], + [53025,0.095], + [53027,0.1298], + [53029,0.0814], + [53031,0.0997], + [53033,0.0632], + [53035,0.0789], + [53037,0.0879], + [53039,0.1024], + [53041,0.1198], + [53043,0.0728], + [53045,0.109], + [53047,0.0949], + [53049,0.1205], + [53051,0.1276], + [53053,0.0932], + [53055,0.0643], + [53057,0.0965], + [53059,0.1055], + [53061,0.0745], + [53063,0.0908], + [53065,0.1176], + [53067,0.0844], + [53069,0.1272], + [53071,0.0745], + [53073,0.0815], + [53075,0.0658], + [53077,0.1058], + [54001,0.0832], + [54003,0.0668], + [54005,0.1039], + [54007,0.1081], + [54009,0.0874], + [54011,0.0653], + [54013,0.1112], + [54015,0.1204], + [54017,0.0631], + [54019,0.0866], + [54021,0.078], + [54023,0.0882], + [54025,0.0798], + [54027,0.0794], + [54029,0.0929], + [54031,0.1061], + [54033,0.0652], + [54035,0.0855], + [54037,0.0541], + [54039,0.066], + [54041,0.0705], + [54043,0.1033], + [54045,0.0975], + [54047,0.1208], + [54049,0.0645], + [54051,0.0806], + [54053,0.0987], + [54055,0.0837], + [54057,0.0847], + [54059,0.0971], + [54061,0.0519], + [54063,0.0724], + [54065,0.0733], + [54067,0.0928], + [54069,0.0637], + [54071,0.0679], + [54073,0.0872], + [54075,0.1016], + [54077,0.0706], + [54079,0.0642], + [54081,0.0727], + [54083,0.0873], + [54085,0.0737], + [54087,0.1138], + [54089,0.0886], + [54091,0.0684], + [54093,0.0808], + [54095,0.0918], + [54097,0.0781], + [54099,0.076], + [54101,0.1071], + [54103,0.0936], + [54105,0.1097], + [54107,0.0727], + [54109,0.0918], + [55001,0.1093], + [55003,0.0928], + [55005,0.079], + [55007,0.1079], + [55009,0.0656], + [55011,0.0627], + [55013,0.0903], + [55015,0.0534], + [55017,0.0677], + [55019,0.0742], + [55021,0.0725], + [55023,0.0847], + [55025,0.0487], + [55027,0.0715], + [55029,0.1027], + [55031,0.0685], + [55033,0.0658], + [55035,0.058], + [55037,0.0832], + [55039,0.0649], + [55041,0.1099], + [55043,0.0598], + [55045,0.0625], + [55047,0.0751], + [55049,0.0666], + [55051,0.1046], + [55053,0.073], + [55055,0.0667], + [55057,0.0839], + [55059,0.0816], + [55061,0.0654], + [55063,0.0544], + [55065,0.0561], + [55067,0.0929], + [55069,0.0914], + [55071,0.0777], + [55073,0.0732], + [55075,0.0835], + [55077,0.0883], + [55078,0.163], + [55079,0.0861], + [55081,0.0728], + [55083,0.0839], + [55085,0.087], + [55087,0.0643], + [55089,0.055], + [55091,0.0569], + [55093,0.0552], + [55095,0.0805], + [55097,0.0732], + [55099,0.0752], + [55101,0.0836], + [55103,0.0625], + [55105,0.0833], + [55107,0.0904], + [55109,0.0574], + [55111,0.069], + [55113,0.1076], + [55115,0.0799], + [55117,0.0685], + [55119,0.0719], + [55121,0.0571], + [55123,0.0638], + [55125,0.1003], + [55127,0.0724], + [55129,0.079], + [55131,0.0614], + [55133,0.0575], + [55135,0.0759], + [55137,0.0875], + [55139,0.0666], + [55141,0.0754], + [56001,0.043], + [56003,0.0562], + [56005,0.0464], + [56007,0.0517], + [56009,0.0429], + [56011,0.0488], + [56013,0.0603], + [56015,0.0467], + [56017,0.0473], + [56019,0.0532], + [56021,0.0575], + [56023,0.0712], + [56025,0.0506], + [56027,0.0384], + [56029,0.0555], + [56031,0.0489], + [56033,0.0621], + [56035,0.0488], + [56037,0.0477], + [56039,0.0669], + [56041,0.0559], + [56043,0.0519], + [56045,0.0405] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2013.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2013.json new file mode 100644 index 0000000..76a1940 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2013.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2013", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2013"], + [1001,0.0622], + [1003,0.0663], + [1005,0.1023], + [1007,0.0791], + [1009,0.0628], + [1011,0.0936], + [1013,0.1029], + [1015,0.0876], + [1017,0.0797], + [1019,0.0661], + [1021,0.0656], + [1023,0.0921], + [1025,0.1376], + [1027,0.0834], + [1029,0.0767], + [1031,0.0688], + [1033,0.082], + [1035,0.1073], + [1037,0.0916], + [1039,0.0808], + [1041,0.0765], + [1043,0.0665], + [1045,0.0737], + [1047,0.1223], + [1049,0.0761], + [1051,0.0615], + [1053,0.0859], + [1055,0.0758], + [1057,0.0829], + [1059,0.0804], + [1061,0.0695], + [1063,0.1278], + [1065,0.1163], + [1067,0.0766], + [1069,0.0691], + [1071,0.0787], + [1073,0.0665], + [1075,0.0703], + [1077,0.0711], + [1079,0.0833], + [1081,0.0588], + [1083,0.0625], + [1085,0.1412], + [1087,0.0964], + [1089,0.0631], + [1091,0.0889], + [1093,0.0791], + [1095,0.0683], + [1097,0.0853], + [1099,0.1189], + [1101,0.0728], + [1103,0.0686], + [1105,0.1354], + [1107,0.0934], + [1109,0.0763], + [1111,0.0775], + [1113,0.0723], + [1115,0.0613], + [1117,0.0463], + [1119,0.0904], + [1121,0.0859], + [1123,0.081], + [1125,0.0635], + [1127,0.0845], + [1129,0.1086], + [1131,0.1928], + [1133,0.094], + [2013,0.0604], + [2016,0.0693], + [2020,0.052], + [2050,0.1616], + [2060,0.0876], + [2068,0.1252], + [2070,0.1022], + [2090,0.0586], + [2100,0.1016], + [2105,0.1468], + [2110,0.0504], + [2122,0.0804], + [2130,0.0784], + [2150,0.0623], + [2158,null], + [2164,0.1552], + [2170,0.0836], + [2180,0.1234], + [2185,0.0737], + [2188,0.1643], + [2195,0.0868], + [2198,0.122], + [2220,0.0549], + [2230,0.1247], + [2240,0.1314], + [2261,0.0993], + [2275,0.0803], + [2282,0.0947], + [2290,0.1835], + [4001,0.184], + [4003,0.092], + [4005,0.0814], + [4007,0.0962], + [4009,0.0773], + [4011,0.0587], + [4012,0.0817], + [4013,0.0658], + [4015,0.1035], + [4017,0.1346], + [4019,0.0676], + [4021,0.0806], + [4023,0.1535], + [4025,0.0774], + [4027,0.2551], + [5001,0.0735], + [5003,0.1087], + [5005,0.0804], + [5007,0.0562], + [5009,0.0702], + [5011,0.0981], + [5013,0.0817], + [5015,0.0599], + [5017,0.1161], + [5019,0.09], + [5021,0.0972], + [5023,0.0854], + [5025,0.0756], + [5027,0.0877], + [5029,0.0922], + [5031,0.0655], + [5033,0.0764], + [5035,0.0837], + [5037,0.0757], + [5039,0.1084], + [5041,0.0964], + [5043,0.0978], + [5045,0.0648], + [5047,0.0687], + [5049,0.0689], + [5051,0.0757], + [5053,0.0653], + [5055,0.0788], + [5057,0.0724], + [5059,0.0728], + [5061,0.064], + [5063,0.09], + [5065,0.0864], + [5067,0.1088], + [5069,0.103], + [5071,0.0765], + [5073,0.0962], + [5075,0.0887], + [5077,0.093], + [5079,0.0829], + [5081,0.0759], + [5083,0.0776], + [5085,0.0609], + [5087,0.0578], + [5089,0.0769], + [5091,0.0641], + [5093,0.1131], + [5095,0.0878], + [5097,0.084], + [5099,0.077], + [5101,0.0691], + [5103,0.0968], + [5105,0.0935], + [5107,0.1136], + [5109,0.0883], + [5111,0.0846], + [5113,0.0716], + [5115,0.0732], + [5117,0.0705], + [5119,0.0652], + [5121,0.0952], + [5123,0.1039], + [5125,0.0578], + [5127,0.0627], + [5129,0.0794], + [5131,0.0744], + [5133,0.0835], + [5135,0.0974], + [5137,0.0839], + [5139,0.0859], + [5141,0.0969], + [5143,0.0535], + [5145,0.0779], + [5147,0.0948], + [5149,0.0655], + [6001,0.0723], + [6003,0.097], + [6005,0.1031], + [6007,0.103], + [6009,0.0993], + [6011,0.1892], + [6013,0.075], + [6015,0.1184], + [6017,0.085], + [6019,0.1326], + [6021,0.121], + [6023,0.081], + [6025,0.2504], + [6027,0.0784], + [6029,0.1175], + [6031,0.1342], + [6033,0.1091], + [6035,0.106], + [6037,0.0976], + [6039,0.1258], + [6041,0.0517], + [6043,0.1052], + [6045,0.0836], + [6047,0.145], + [6049,0.1228], + [6051,0.0852], + [6053,0.1031], + [6055,0.0693], + [6057,0.081], + [6059,0.0658], + [6061,0.0772], + [6063,0.1383], + [6065,0.099], + [6067,0.0888], + [6069,0.111], + [6071,0.0977], + [6073,0.0783], + [6075,0.0546], + [6077,0.1231], + [6079,0.0683], + [6081,0.0526], + [6083,0.072], + [6085,0.0646], + [6087,0.1028], + [6089,0.1182], + [6091,0.1274], + [6093,0.1315], + [6095,0.0907], + [6097,0.0711], + [6099,0.1295], + [6101,0.1462], + [6103,0.1162], + [6105,0.1194], + [6107,0.1437], + [6109,0.1077], + [6111,0.0787], + [6113,0.0901], + [6115,0.1316], + [8001,0.0813], + [8003,0.0972], + [8005,0.066], + [8007,0.0876], + [8009,0.0412], + [8011,0.0772], + [8013,0.0549], + [8014,0.0581], + [8015,0.0616], + [8017,0.0423], + [8019,0.0627], + [8021,0.1064], + [8023,0.1122], + [8025,0.0719], + [8027,0.0636], + [8029,0.0892], + [8031,0.0663], + [8033,0.0828], + [8035,0.0531], + [8037,0.0605], + [8039,0.0589], + [8041,0.0788], + [8043,0.1069], + [8045,0.0746], + [8047,0.06], + [8049,0.0584], + [8051,0.0547], + [8053,0.0463], + [8055,0.137], + [8057,0.0479], + [8059,0.0626], + [8061,0.0445], + [8063,0.0392], + [8065,0.0721], + [8067,0.057], + [8069,0.0581], + [8071,0.1115], + [8073,0.0584], + [8075,0.0512], + [8077,0.0875], + [8079,0.0588], + [8081,0.0693], + [8083,0.0773], + [8085,0.0945], + [8087,0.0653], + [8089,0.0985], + [8091,0.0761], + [8093,0.0606], + [8095,0.0461], + [8097,0.0647], + [8099,0.0628], + [8101,0.0985], + [8103,0.0785], + [8105,0.1158], + [8107,0.0595], + [8109,0.1128], + [8111,0.086], + [8113,0.0666], + [8115,0.0624], + [8117,0.0502], + [8119,0.078], + [8121,0.0459], + [8123,0.0656], + [8125,0.0475], + [9001,0.0726], + [9003,0.08], + [9005,0.0712], + [9007,0.0672], + [9009,0.0852], + [9011,0.0811], + [9013,0.0689], + [9015,0.0876], + [10001,0.0734], + [10003,0.0647], + [10005,0.0682], + [11001,0.0849], + [12001,0.0571], + [12003,0.0738], + [12005,0.0728], + [12007,0.063], + [12009,0.0829], + [12011,0.0677], + [12013,0.0785], + [12015,0.0802], + [12017,0.097], + [12019,0.0634], + [12021,0.0706], + [12023,0.0756], + [12027,0.082], + [12029,0.0852], + [12031,0.075], + [12033,0.0723], + [12035,0.0836], + [12037,0.0553], + [12039,0.0916], + [12041,0.0785], + [12043,0.0743], + [12045,0.0675], + [12047,0.0857], + [12049,0.0824], + [12051,0.1195], + [12053,0.0898], + [12055,0.0952], + [12057,0.0659], + [12059,0.0786], + [12061,0.0964], + [12063,0.0754], + [12065,0.0775], + [12067,0.052], + [12069,0.0739], + [12071,0.0729], + [12073,0.0609], + [12075,0.0817], + [12077,0.0668], + [12079,0.0777], + [12081,0.067], + [12083,0.0854], + [12085,0.0721], + [12086,0.0743], + [12087,0.0484], + [12089,0.0672], + [12091,0.0572], + [12093,0.0875], + [12095,0.0678], + [12097,0.0791], + [12099,0.0712], + [12101,0.0768], + [12103,0.0664], + [12105,0.0822], + [12107,0.1041], + [12109,0.0543], + [12111,0.0996], + [12113,0.064], + [12115,0.0698], + [12117,0.0666], + [12119,0.0926], + [12121,0.0692], + [12123,0.0782], + [12125,0.0632], + [12127,0.0819], + [12129,0.0597], + [12131,0.061], + [12133,0.077], + [13001,0.1075], + [13003,0.0935], + [13005,0.0845], + [13007,0.1054], + [13009,0.1014], + [13011,0.0788], + [13013,0.0739], + [13015,0.0866], + [13017,0.1247], + [13019,0.0954], + [13021,0.0927], + [13023,0.1399], + [13025,0.1065], + [13027,0.0834], + [13029,0.0744], + [13031,0.0868], + [13033,0.1198], + [13035,0.0929], + [13037,0.0812], + [13039,0.0776], + [13043,0.0817], + [13045,0.0962], + [13047,0.0673], + [13049,0.0844], + [13051,0.0827], + [13053,0.1097], + [13055,0.09], + [13057,0.0614], + [13059,0.0782], + [13061,0.1141], + [13063,0.1078], + [13065,0.0915], + [13067,0.067], + [13069,0.0992], + [13071,0.0877], + [13073,0.0648], + [13075,0.0854], + [13077,0.0698], + [13079,0.0884], + [13081,0.1116], + [13083,0.0712], + [13085,0.0738], + [13087,0.0949], + [13089,0.0842], + [13091,0.1137], + [13093,0.115], + [13095,0.1033], + [13097,0.0859], + [13099,0.0914], + [13101,0.0635], + [13103,0.0716], + [13105,0.1082], + [13107,0.1252], + [13109,0.0762], + [13111,0.0899], + [13113,0.067], + [13115,0.0949], + [13117,0.0588], + [13119,0.0976], + [13121,0.0808], + [13123,0.0899], + [13125,0.0946], + [13127,0.085], + [13129,0.0885], + [13131,0.0772], + [13133,0.0991], + [13135,0.0687], + [13137,0.0801], + [13139,0.0685], + [13141,0.1469], + [13143,0.0927], + [13145,0.0654], + [13147,0.0919], + [13149,0.094], + [13151,0.0845], + [13153,0.0752], + [13155,0.1062], + [13157,0.069], + [13159,0.0827], + [13161,0.0993], + [13163,0.1397], + [13165,0.1233], + [13167,0.0982], + [13169,0.0728], + [13171,0.1129], + [13173,0.0858], + [13175,0.1077], + [13177,0.0688], + [13179,0.0848], + [13181,0.1003], + [13183,0.0814], + [13185,0.0802], + [13187,0.0737], + [13189,0.113], + [13191,0.0897], + [13193,0.1275], + [13195,0.0758], + [13197,0.0883], + [13199,0.1075], + [13201,0.0727], + [13205,0.0858], + [13207,0.0804], + [13209,0.1141], + [13211,0.0807], + [13213,0.1124], + [13215,0.0933], + [13217,0.097], + [13219,0.056], + [13221,0.0757], + [13223,0.072], + [13225,0.1066], + [13227,0.0796], + [13229,0.0853], + [13231,0.0847], + [13233,0.089], + [13235,0.0884], + [13237,0.1032], + [13239,0.082], + [13241,0.0991], + [13243,0.1032], + [13245,0.0983], + [13247,0.0914], + [13249,0.0924], + [13251,0.1258], + [13253,0.1023], + [13255,0.1148], + [13257,0.0915], + [13259,0.0875], + [13261,0.1126], + [13263,0.0926], + [13265,0.1186], + [13267,0.0795], + [13269,0.1166], + [13271,0.1141], + [13273,0.0977], + [13275,0.0902], + [13277,0.0849], + [13279,0.11], + [13281,0.1058], + [13283,0.1231], + [13285,0.0861], + [13287,0.0998], + [13289,0.1374], + [13291,0.0789], + [13293,0.0982], + [13295,0.0807], + [13297,0.0778], + [13299,0.0936], + [13301,0.1202], + [13303,0.0964], + [13305,0.0977], + [13307,0.0927], + [13309,0.1257], + [13311,0.0737], + [13313,0.0955], + [13315,0.111], + [13317,0.1118], + [13319,0.1033], + [13321,0.0923], + [15001,0.067], + [15003,0.0444], + [15005,null], + [15007,0.0568], + [15009,0.0518], + [16001,0.052], + [16003,0.1365], + [16005,0.0584], + [16007,0.0514], + [16009,0.1008], + [16011,0.0587], + [16013,0.0571], + [16015,0.0815], + [16017,0.0879], + [16019,0.0545], + [16021,0.0797], + [16023,0.0687], + [16025,0.0648], + [16027,0.0754], + [16029,0.0529], + [16031,0.0523], + [16033,0.0637], + [16035,0.113], + [16037,0.0838], + [16039,0.0672], + [16041,0.0415], + [16043,0.0525], + [16045,0.0783], + [16047,0.0491], + [16049,0.0993], + [16051,0.0512], + [16053,0.0529], + [16055,0.073], + [16057,0.0492], + [16059,0.0938], + [16061,0.0503], + [16063,0.076], + [16065,0.0408], + [16067,0.0553], + [16069,0.0498], + [16071,0.043], + [16073,0.0385], + [16075,0.065], + [16077,0.0659], + [16079,0.1212], + [16081,0.0501], + [16083,0.0566], + [16085,0.102], + [16087,0.0737], + [17001,0.0678], + [17003,0.1268], + [17005,0.0866], + [17007,0.1013], + [17009,0.0616], + [17011,0.0918], + [17013,0.0981], + [17015,0.0796], + [17017,0.0909], + [17019,0.0744], + [17021,0.0968], + [17023,0.093], + [17025,0.0991], + [17027,0.0679], + [17029,0.0878], + [17031,0.0963], + [17033,0.0832], + [17035,0.0782], + [17037,0.0819], + [17039,0.0834], + [17041,0.0697], + [17043,0.0736], + [17045,0.0945], + [17047,0.0857], + [17049,0.0692], + [17051,0.0922], + [17053,0.076], + [17055,0.1188], + [17057,0.1092], + [17059,0.0944], + [17061,0.0864], + [17063,0.1161], + [17065,0.0778], + [17067,0.0847], + [17069,0.1136], + [17071,0.0787], + [17073,0.0776], + [17075,0.0845], + [17077,0.0794], + [17079,0.0793], + [17081,0.0952], + [17083,0.0896], + [17085,0.0763], + [17087,0.122], + [17089,0.087], + [17091,0.1035], + [17093,0.0837], + [17095,0.0886], + [17097,0.079], + [17099,0.1033], + [17101,0.1021], + [17103,0.0801], + [17105,0.0808], + [17107,0.0807], + [17109,0.083], + [17111,0.0864], + [17113,0.066], + [17115,0.1134], + [17117,0.0945], + [17119,0.0888], + [17121,0.1006], + [17123,0.0912], + [17125,0.1094], + [17127,0.098], + [17129,0.0704], + [17131,0.0786], + [17133,0.0669], + [17135,0.1091], + [17137,0.0784], + [17139,0.072], + [17141,0.0985], + [17143,0.0963], + [17145,0.1104], + [17147,0.0716], + [17149,0.0751], + [17151,0.0923], + [17153,0.1254], + [17155,0.0992], + [17157,0.0837], + [17159,0.0834], + [17161,0.0832], + [17163,0.0979], + [17165,0.1058], + [17167,0.0736], + [17169,0.0831], + [17171,0.0886], + [17173,0.0873], + [17175,0.0953], + [17177,0.0939], + [17179,0.0864], + [17181,0.1122], + [17183,0.1059], + [17185,0.0752], + [17187,0.0736], + [17189,0.0621], + [17191,0.0778], + [17193,0.0768], + [17195,0.0872], + [17197,0.0978], + [17199,0.0901], + [17201,0.1049], + [17203,0.071], + [18001,0.0608], + [18003,0.0751], + [18005,0.0598], + [18007,0.0706], + [18009,0.0989], + [18011,0.057], + [18013,0.0742], + [18015,0.0704], + [18017,0.0771], + [18019,0.0691], + [18021,0.0893], + [18023,0.0709], + [18025,0.1002], + [18027,0.0566], + [18029,0.0847], + [18031,0.067], + [18033,0.0715], + [18035,0.0862], + [18037,0.0531], + [18039,0.0724], + [18041,0.1033], + [18043,0.0634], + [18045,0.0981], + [18047,0.0867], + [18049,0.0827], + [18051,0.0586], + [18053,0.0903], + [18055,0.1022], + [18057,0.0504], + [18059,0.0663], + [18061,0.0698], + [18063,0.0579], + [18065,0.0884], + [18067,0.0814], + [18069,0.0771], + [18071,0.0649], + [18073,0.0774], + [18075,0.0772], + [18077,0.0788], + [18079,0.0919], + [18081,0.0624], + [18083,0.0673], + [18085,0.0659], + [18087,0.0591], + [18089,0.0906], + [18091,0.0932], + [18093,0.101], + [18095,0.0933], + [18097,0.085], + [18099,0.074], + [18101,0.0632], + [18103,0.0868], + [18105,0.0684], + [18107,0.0718], + [18109,0.0756], + [18111,0.0897], + [18113,0.0733], + [18115,0.0831], + [18117,0.0991], + [18119,0.1006], + [18121,0.0922], + [18123,0.0777], + [18125,0.0679], + [18127,0.0721], + [18129,0.0633], + [18131,0.0703], + [18133,0.0866], + [18135,0.0865], + [18137,0.0858], + [18139,0.074], + [18141,0.087], + [18143,0.0893], + [18145,0.0734], + [18147,0.0666], + [18149,0.0946], + [18151,0.0626], + [18153,0.0905], + [18155,0.0745], + [18157,0.0664], + [18159,0.0672], + [18161,0.0719], + [18163,0.0714], + [18165,0.1075], + [18167,0.0938], + [18169,0.0762], + [18171,0.0879], + [18173,0.0629], + [18175,0.0874], + [18177,0.0867], + [18179,0.0634], + [18181,0.0687], + [18183,0.0698], + [19001,0.0422], + [19003,0.0367], + [19005,0.0634], + [19007,0.0636], + [19009,0.0488], + [19011,0.0509], + [19013,0.051], + [19015,0.0405], + [19017,0.0379], + [19019,0.0474], + [19021,0.0395], + [19023,0.0453], + [19025,0.0518], + [19027,0.0336], + [19029,0.0505], + [19031,0.0431], + [19033,0.054], + [19035,0.043], + [19037,0.0498], + [19039,0.0552], + [19041,0.045], + [19043,0.0564], + [19045,0.0576], + [19047,0.0436], + [19049,0.0361], + [19051,0.0551], + [19053,0.0451], + [19055,0.043], + [19057,0.0603], + [19059,0.0532], + [19061,0.0454], + [19063,0.041], + [19065,0.0528], + [19067,0.0552], + [19069,0.0445], + [19071,0.0422], + [19073,0.0468], + [19075,0.0436], + [19077,0.0515], + [19079,0.0544], + [19081,0.0399], + [19083,0.051], + [19085,0.045], + [19087,0.053], + [19089,0.0463], + [19091,0.0408], + [19093,0.0399], + [19095,0.0414], + [19097,0.0538], + [19099,0.0508], + [19101,0.0496], + [19103,0.0341], + [19105,0.0531], + [19107,0.0507], + [19109,0.0355], + [19111,0.0712], + [19113,0.0501], + [19115,0.0506], + [19117,0.0469], + [19119,0.0289], + [19121,0.0508], + [19123,0.0481], + [19125,0.0446], + [19127,0.0601], + [19129,0.0439], + [19131,0.043], + [19133,0.0573], + [19135,0.0569], + [19137,0.0488], + [19139,0.0522], + [19141,0.0363], + [19143,0.0384], + [19145,0.0528], + [19147,0.0375], + [19149,0.04], + [19151,0.0379], + [19153,0.0481], + [19155,0.0457], + [19157,0.0463], + [19159,0.0429], + [19161,0.0421], + [19163,0.0561], + [19165,0.0376], + [19167,0.0345], + [19169,0.0333], + [19171,0.0556], + [19173,0.0379], + [19175,0.0489], + [19177,0.055], + [19179,0.0632], + [19181,0.0449], + [19183,0.0376], + [19185,0.0519], + [19187,0.0531], + [19189,0.048], + [19191,0.0463], + [19193,0.0479], + [19195,0.0516], + [19197,0.0448], + [20001,0.0608], + [20003,0.058], + [20005,0.0858], + [20007,0.0398], + [20009,0.0405], + [20011,0.0648], + [20013,0.05], + [20015,0.0553], + [20017,0.056], + [20019,0.0617], + [20021,0.0638], + [20023,0.0344], + [20025,0.0311], + [20027,0.0503], + [20029,0.0436], + [20031,0.0591], + [20033,0.0348], + [20035,0.0581], + [20037,0.059], + [20039,0.0397], + [20041,0.0589], + [20043,0.0542], + [20045,0.0481], + [20047,0.0373], + [20049,0.0567], + [20051,0.0314], + [20053,0.0334], + [20055,0.0428], + [20057,0.04], + [20059,0.0614], + [20061,0.0866], + [20063,0.0329], + [20065,0.0415], + [20067,0.0361], + [20069,0.0298], + [20071,0.0242], + [20073,0.0533], + [20075,0.0286], + [20077,0.0403], + [20079,0.0486], + [20081,0.0293], + [20083,0.0385], + [20085,0.0508], + [20087,0.0572], + [20089,0.0366], + [20091,0.0431], + [20093,0.0362], + [20095,0.0544], + [20097,0.0338], + [20099,0.0717], + [20101,0.0351], + [20103,0.0598], + [20105,0.0461], + [20107,0.0865], + [20109,0.0276], + [20111,0.0718], + [20113,0.0387], + [20115,0.0467], + [20117,0.0386], + [20119,0.0315], + [20121,0.0558], + [20123,0.0291], + [20125,0.0675], + [20127,0.0545], + [20129,0.0389], + [20131,0.0345], + [20133,0.0851], + [20135,0.0306], + [20137,0.0279], + [20139,0.0666], + [20141,0.0424], + [20143,0.0451], + [20145,0.0436], + [20147,0.0425], + [20149,0.046], + [20151,0.0397], + [20153,0.0271], + [20155,0.0525], + [20157,0.0336], + [20159,0.0428], + [20161,0.0421], + [20163,0.0417], + [20165,0.0431], + [20167,0.0395], + [20169,0.0498], + [20171,0.0289], + [20173,0.0615], + [20175,0.041], + [20177,0.0577], + [20179,0.0274], + [20181,0.04], + [20183,0.0357], + [20185,0.0438], + [20187,0.0364], + [20189,0.0299], + [20191,0.0564], + [20193,0.0349], + [20195,0.0369], + [20197,0.0504], + [20199,0.0317], + [20201,0.0371], + [20203,0.0349], + [20205,0.0886], + [20207,0.0621], + [20209,0.0794], + [21001,0.1015], + [21003,0.0744], + [21005,0.0644], + [21007,0.0918], + [21009,0.0769], + [21011,0.1031], + [21013,0.1332], + [21015,0.0662], + [21017,0.07], + [21019,0.0943], + [21021,0.0882], + [21023,0.0979], + [21025,0.149], + [21027,0.0917], + [21029,0.0739], + [21031,0.0915], + [21033,0.0819], + [21035,0.0725], + [21037,0.0657], + [21039,0.0716], + [21041,0.0913], + [21043,0.1266], + [21045,0.0863], + [21047,0.0942], + [21049,0.0752], + [21051,0.1429], + [21053,0.1045], + [21055,0.0742], + [21057,0.1066], + [21059,0.0687], + [21061,0.1001], + [21063,0.145], + [21065,0.0974], + [21067,0.058], + [21069,0.0948], + [21071,0.1326], + [21073,0.0657], + [21075,0.1077], + [21077,0.0933], + [21079,0.0819], + [21081,0.083], + [21083,0.0846], + [21085,0.1029], + [21087,0.0827], + [21089,0.1021], + [21091,0.0722], + [21093,0.0766], + [21095,0.1805], + [21097,0.0756], + [21099,0.0791], + [21101,0.0748], + [21103,0.0722], + [21105,0.0713], + [21107,0.0789], + [21109,0.1158], + [21111,0.0747], + [21113,0.0649], + [21115,0.1102], + [21117,0.0701], + [21119,0.1541], + [21121,0.1297], + [21123,0.0818], + [21125,0.0973], + [21127,0.1122], + [21129,0.1248], + [21131,0.176], + [21133,0.167], + [21135,0.1215], + [21137,0.1066], + [21139,0.0988], + [21141,0.0711], + [21143,0.0821], + [21145,0.0789], + [21147,0.1308], + [21149,0.0766], + [21151,0.0657], + [21153,0.1757], + [21155,0.0815], + [21157,0.0812], + [21159,0.0975], + [21161,0.1], + [21163,0.0898], + [21165,0.1205], + [21167,0.0785], + [21169,0.078], + [21171,0.0715], + [21173,0.0847], + [21175,0.1062], + [21177,0.0937], + [21179,0.0755], + [21181,0.0864], + [21183,0.0928], + [21185,0.0569], + [21187,0.0634], + [21189,0.1263], + [21191,0.0838], + [21193,0.1393], + [21195,0.1188], + [21197,0.1076], + [21199,0.0918], + [21201,0.1095], + [21203,0.0926], + [21205,0.0831], + [21207,0.1157], + [21209,0.0608], + [21211,0.0607], + [21213,0.0751], + [21215,0.0643], + [21217,0.0945], + [21219,0.0742], + [21221,0.0903], + [21223,0.0832], + [21225,0.077], + [21227,0.0687], + [21229,0.0689], + [21231,0.1192], + [21233,0.0712], + [21235,0.106], + [21237,0.1417], + [21239,0.053], + [22001,0.0596], + [22003,0.0754], + [22005,0.0559], + [22007,0.0829], + [22009,0.0746], + [22011,0.0737], + [22013,0.0868], + [22015,0.0603], + [22017,0.0788], + [22019,0.0645], + [22021,0.0816], + [22023,0.0534], + [22025,0.0846], + [22027,0.0748], + [22029,0.0849], + [22031,0.0884], + [22033,0.062], + [22035,0.169], + [22037,0.0688], + [22039,0.0678], + [22041,0.1006], + [22043,0.0733], + [22045,0.0645], + [22047,0.0833], + [22049,0.0651], + [22051,0.0628], + [22053,0.0621], + [22055,0.0493], + [22057,0.0491], + [22059,0.0498], + [22061,0.0785], + [22063,0.0585], + [22065,0.1104], + [22067,0.124], + [22069,0.0833], + [22071,0.0734], + [22073,0.0722], + [22075,0.0568], + [22077,0.0759], + [22079,0.0685], + [22081,0.0754], + [22083,0.0964], + [22085,0.0676], + [22087,0.074], + [22089,0.0627], + [22091,0.1132], + [22093,0.0929], + [22095,0.0867], + [22097,0.0781], + [22099,0.0589], + [22101,0.0657], + [22103,0.0575], + [22105,0.0803], + [22107,0.0939], + [22109,0.0503], + [22111,0.078], + [22113,0.0559], + [22115,0.0882], + [22117,0.0836], + [22119,0.0957], + [22121,0.0613], + [22123,0.1271], + [22125,0.0591], + [22127,0.0816], + [23001,0.0668], + [23003,0.086], + [23005,0.053], + [23007,0.077], + [23009,0.0788], + [23011,0.0624], + [23013,0.0594], + [23015,0.068], + [23017,0.0828], + [23019,0.0684], + [23021,0.0883], + [23023,0.0562], + [23025,0.0916], + [23027,0.0717], + [23029,0.0926], + [23031,0.0632], + [24001,0.0848], + [24003,0.0569], + [24005,0.0687], + [24009,0.0592], + [24011,0.0693], + [24013,0.0548], + [24015,0.077], + [24017,0.0646], + [24019,0.0975], + [24021,0.0574], + [24023,0.0805], + [24025,0.065], + [24027,0.0481], + [24029,0.0717], + [24031,0.0495], + [24033,0.0691], + [24035,0.0583], + [24037,0.0596], + [24039,0.1068], + [24041,0.0641], + [24043,0.0731], + [24045,0.0868], + [24047,0.1256], + [24510,0.0967], + [25001,0.0841], + [25003,0.0741], + [25005,0.0871], + [25007,0.0911], + [25009,0.0705], + [25011,0.0617], + [25013,0.0868], + [25015,0.0607], + [25017,0.0548], + [25019,0.073], + [25021,0.0581], + [25023,0.0699], + [25025,0.062], + [25027,0.0719], + [26001,0.1334], + [26003,0.1171], + [26005,0.0667], + [26007,0.0967], + [26009,0.1143], + [26011,0.13], + [26013,0.1446], + [26015,0.0638], + [26017,0.0873], + [26019,0.103], + [26021,0.0868], + [26023,0.0843], + [26025,0.079], + [26027,0.0821], + [26029,0.1072], + [26031,0.1154], + [26033,0.1046], + [26035,0.1172], + [26037,0.0605], + [26039,0.1144], + [26041,0.1026], + [26043,0.0829], + [26045,0.0667], + [26047,0.1184], + [26049,0.0973], + [26051,0.1168], + [26053,0.1084], + [26055,0.0763], + [26057,0.089], + [26059,0.089], + [26061,0.0886], + [26063,0.0836], + [26065,0.0765], + [26067,0.0796], + [26069,0.1144], + [26071,0.1016], + [26073,0.0723], + [26075,0.0826], + [26077,0.0686], + [26079,0.1117], + [26081,0.0624], + [26083,0.1359], + [26085,0.1326], + [26087,0.1143], + [26089,0.0767], + [26091,0.0782], + [26093,0.0742], + [26095,0.1035], + [26097,0.1224], + [26099,0.0947], + [26101,0.1062], + [26103,0.0817], + [26105,0.0918], + [26107,0.1001], + [26109,0.0778], + [26111,0.0772], + [26113,0.0924], + [26115,0.0738], + [26117,0.0959], + [26119,0.1604], + [26121,0.099], + [26123,0.0887], + [26125,0.078], + [26127,0.1238], + [26129,0.1178], + [26131,0.1382], + [26133,0.0997], + [26135,0.1558], + [26137,0.1042], + [26139,0.0609], + [26141,0.1471], + [26143,0.1387], + [26145,0.0904], + [26147,0.1152], + [26149,0.0777], + [26151,0.105], + [26153,0.1282], + [26155,0.0937], + [26157,0.1053], + [26159,0.1008], + [26161,0.0583], + [26163,0.1149], + [26165,0.1109], + [27001,0.0745], + [27003,0.0503], + [27005,0.0548], + [27007,0.0624], + [27009,0.0592], + [27011,0.054], + [27013,0.0415], + [27015,0.052], + [27017,0.0598], + [27019,0.0431], + [27021,0.0821], + [27023,0.0514], + [27025,0.0558], + [27027,0.0429], + [27029,0.1064], + [27031,0.0579], + [27033,0.058], + [27035,0.0693], + [27037,0.0453], + [27039,0.0473], + [27041,0.0444], + [27043,0.0539], + [27045,0.0502], + [27047,0.0498], + [27049,0.0468], + [27051,0.0573], + [27053,0.0458], + [27055,0.0501], + [27057,0.0722], + [27059,0.06], + [27061,0.0766], + [27063,0.0414], + [27065,0.0814], + [27067,0.0475], + [27069,0.0599], + [27071,0.0828], + [27073,0.0559], + [27075,0.062], + [27077,0.0564], + [27079,0.0609], + [27081,0.0462], + [27083,0.0413], + [27085,0.0559], + [27087,0.0576], + [27089,0.0763], + [27091,0.0526], + [27093,0.0553], + [27095,0.075], + [27097,0.0674], + [27099,0.0448], + [27101,0.0533], + [27103,0.0374], + [27105,0.0403], + [27107,0.0574], + [27109,0.04], + [27111,0.0525], + [27113,0.0632], + [27115,0.0692], + [27117,0.0461], + [27119,0.0538], + [27121,0.0426], + [27123,0.0491], + [27125,0.0674], + [27127,0.0548], + [27129,0.0651], + [27131,0.0495], + [27133,0.032], + [27135,0.044], + [27137,0.0605], + [27139,0.0438], + [27141,0.0533], + [27143,0.0549], + [27145,0.049], + [27147,0.0456], + [27149,0.0376], + [27151,0.0582], + [27153,0.0533], + [27155,0.0506], + [27157,0.0461], + [27159,0.0699], + [27161,0.055], + [27163,0.0443], + [27165,0.0528], + [27167,0.0417], + [27169,0.0437], + [27171,0.0505], + [27173,0.0491], + [28001,0.0932], + [28003,0.0777], + [28005,0.0912], + [28007,0.0936], + [28009,0.1046], + [28011,0.1069], + [28013,0.084], + [28015,0.1057], + [28017,0.1067], + [28019,0.0852], + [28021,0.1697], + [28023,0.0997], + [28025,0.1542], + [28027,0.1289], + [28029,0.1051], + [28031,0.0787], + [28033,0.0591], + [28035,0.0843], + [28037,0.0921], + [28039,0.0942], + [28041,0.1017], + [28043,0.0883], + [28045,0.0785], + [28047,0.075], + [28049,0.0847], + [28051,0.1673], + [28053,0.1716], + [28055,0.204], + [28057,0.0802], + [28059,0.0887], + [28061,0.0993], + [28063,0.1923], + [28065,0.1261], + [28067,0.0705], + [28069,0.1287], + [28071,0.0715], + [28073,0.0591], + [28075,0.0835], + [28077,0.0924], + [28079,0.0855], + [28081,0.0799], + [28083,0.1426], + [28085,0.077], + [28087,0.0929], + [28089,0.0585], + [28091,0.0942], + [28093,0.1015], + [28095,0.1176], + [28097,0.1129], + [28099,0.0778], + [28101,0.0746], + [28103,0.1338], + [28105,0.0795], + [28107,0.119], + [28109,0.0741], + [28111,0.104], + [28113,0.0981], + [28115,0.0741], + [28117,0.0844], + [28119,0.1484], + [28121,0.0522], + [28123,0.0661], + [28125,0.1302], + [28127,0.0741], + [28129,0.0671], + [28131,0.0952], + [28133,0.139], + [28135,0.1112], + [28137,0.0891], + [28139,0.098], + [28141,0.0923], + [28143,0.1242], + [28145,0.0709], + [28147,0.1067], + [28149,0.09], + [28151,0.1451], + [28153,0.1069], + [28155,0.0953], + [28157,0.124], + [28159,0.11], + [28161,0.0997], + [28163,0.1099], + [29001,0.0687], + [29003,0.0536], + [29005,0.0583], + [29007,0.0633], + [29009,0.0682], + [29011,0.0718], + [29013,0.0764], + [29015,0.0849], + [29017,0.0709], + [29019,0.045], + [29021,0.0621], + [29023,0.0787], + [29025,0.0669], + [29027,0.0601], + [29029,0.0923], + [29031,0.0575], + [29033,0.0731], + [29035,0.0958], + [29037,0.063], + [29039,0.0704], + [29041,0.0626], + [29043,0.0546], + [29045,0.0794], + [29047,0.0608], + [29049,0.0662], + [29051,0.0524], + [29053,0.0694], + [29055,0.0855], + [29057,0.0681], + [29059,0.0864], + [29061,0.0623], + [29063,0.0601], + [29065,0.0755], + [29067,0.0938], + [29069,0.0992], + [29071,0.072], + [29073,0.0633], + [29075,0.0525], + [29077,0.0551], + [29079,0.0585], + [29081,0.0731], + [29083,0.0715], + [29085,0.0995], + [29087,0.0536], + [29089,0.0645], + [29091,0.0782], + [29093,0.1063], + [29095,0.0764], + [29097,0.0584], + [29099,0.068], + [29101,0.0724], + [29103,0.0549], + [29105,0.0959], + [29107,0.0643], + [29109,0.066], + [29111,0.0555], + [29113,0.0757], + [29115,0.088], + [29117,0.0564], + [29119,0.0643], + [29121,0.0653], + [29123,0.0764], + [29125,0.066], + [29127,0.0601], + [29129,0.0547], + [29131,0.0874], + [29133,0.0781], + [29135,0.0635], + [29137,0.0732], + [29139,0.072], + [29141,0.0945], + [29143,0.0782], + [29145,0.0603], + [29147,0.0654], + [29149,0.0795], + [29151,0.0498], + [29153,0.1033], + [29155,0.1034], + [29157,0.0543], + [29159,0.0657], + [29161,0.0702], + [29163,0.0651], + [29165,0.0567], + [29167,0.0712], + [29169,0.0793], + [29171,0.0592], + [29173,0.058], + [29175,0.0817], + [29177,0.0773], + [29179,0.0944], + [29181,0.0925], + [29183,0.0532], + [29185,0.0776], + [29186,0.0721], + [29187,0.0855], + [29189,0.0624], + [29195,0.0599], + [29197,0.0783], + [29199,0.0535], + [29201,0.0713], + [29203,0.0953], + [29205,0.0558], + [29207,0.0884], + [29209,0.1051], + [29211,0.0648], + [29213,0.1066], + [29215,0.0819], + [29217,0.0591], + [29219,0.0683], + [29221,0.0973], + [29223,0.0825], + [29225,0.0675], + [29227,0.0409], + [29229,0.0838], + [29510,0.0835], + [30001,0.0471], + [30003,0.1405], + [30005,0.0615], + [30007,0.0638], + [30009,0.0447], + [30011,0.0312], + [30013,0.0512], + [30015,0.0367], + [30017,0.0336], + [30019,0.0322], + [30021,0.0316], + [30023,0.0493], + [30025,0.0196], + [30027,0.0491], + [30029,0.077], + [30031,0.0412], + [30033,0.0315], + [30035,0.1009], + [30037,0.0504], + [30039,0.0759], + [30041,0.0658], + [30043,0.049], + [30045,0.0491], + [30047,0.0651], + [30049,0.0435], + [30051,0.0343], + [30053,0.1298], + [30055,0.0237], + [30057,0.055], + [30059,0.0526], + [30061,0.1044], + [30063,0.0519], + [30065,0.0505], + [30067,0.0635], + [30069,0.0476], + [30071,0.0588], + [30073,0.0493], + [30075,0.0329], + [30077,0.0557], + [30079,0.0461], + [30081,0.0674], + [30083,0.0262], + [30085,0.0551], + [30087,0.064], + [30089,0.1047], + [30091,0.0281], + [30093,0.0547], + [30095,0.0403], + [30097,0.0373], + [30099,0.043], + [30101,0.0385], + [30103,0.0451], + [30105,0.0379], + [30107,0.0619], + [30109,0.0341], + [30111,0.0434], + [31001,0.0364], + [31003,0.0321], + [31005,0.0769], + [31007,0.0458], + [31009,0.0515], + [31011,0.0327], + [31013,0.0386], + [31015,0.0354], + [31017,0.039], + [31019,0.0324], + [31021,0.0454], + [31023,0.0338], + [31025,0.0434], + [31027,0.0296], + [31029,0.0237], + [31031,0.0275], + [31033,0.0282], + [31035,0.0343], + [31037,0.0352], + [31039,0.0302], + [31041,0.0278], + [31043,0.047], + [31045,0.0359], + [31047,0.0381], + [31049,0.0335], + [31051,0.0375], + [31053,0.0421], + [31055,0.0415], + [31057,0.0276], + [31059,0.0299], + [31061,0.035], + [31063,0.0338], + [31065,0.0351], + [31067,0.0459], + [31069,0.0283], + [31071,0.0309], + [31073,0.0343], + [31075,0.0333], + [31077,0.0353], + [31079,0.0371], + [31081,0.0319], + [31083,0.0311], + [31085,0.034], + [31087,0.0404], + [31089,0.0314], + [31091,0.0482], + [31093,0.0368], + [31095,0.037], + [31097,0.0435], + [31099,0.0282], + [31101,0.0361], + [31103,0.0327], + [31105,0.0332], + [31107,0.0354], + [31109,0.0346], + [31111,0.0379], + [31113,0.0318], + [31115,0.045], + [31117,0.0376], + [31119,0.0349], + [31121,0.0371], + [31123,0.0323], + [31125,0.0322], + [31127,0.0499], + [31129,0.0321], + [31131,0.0427], + [31133,0.0315], + [31135,0.0258], + [31137,0.0296], + [31139,0.0334], + [31141,0.0347], + [31143,0.034], + [31145,0.0295], + [31147,0.0447], + [31149,0.0316], + [31151,0.0426], + [31153,0.0359], + [31155,0.0403], + [31157,0.042], + [31159,0.0369], + [31161,0.0325], + [31163,0.0333], + [31165,0.0335], + [31167,0.0333], + [31169,0.0278], + [31171,0.0396], + [31173,0.0767], + [31175,0.0331], + [31177,0.0367], + [31179,0.0316], + [31181,0.0389], + [31183,0.0324], + [31185,0.036], + [32001,0.0923], + [32003,0.097], + [32005,0.0963], + [32007,0.0619], + [32009,0.0479], + [32011,0.0604], + [32013,0.0622], + [32015,0.0729], + [32017,0.0953], + [32019,0.1253], + [32021,0.1271], + [32023,0.1202], + [32027,0.0875], + [32029,0.1162], + [32031,0.0948], + [32033,0.0725], + [32510,0.1043], + [33001,0.0501], + [33003,0.0492], + [33005,0.0474], + [33007,0.0608], + [33009,0.0423], + [33011,0.0537], + [33013,0.0462], + [33015,0.0544], + [33017,0.0488], + [33019,0.0412], + [34001,0.1167], + [34003,0.0674], + [34005,0.0765], + [34007,0.0935], + [34009,0.1431], + [34011,0.1175], + [34013,0.097], + [34015,0.0896], + [34017,0.0789], + [34019,0.0586], + [34021,0.0729], + [34023,0.0754], + [34025,0.0752], + [34027,0.0617], + [34029,0.0927], + [34031,0.0999], + [34033,0.1046], + [34035,0.0635], + [34037,0.0795], + [34039,0.0838], + [34041,0.0766], + [35001,0.0647], + [35003,0.0887], + [35005,0.0628], + [35006,0.0851], + [35007,0.071], + [35009,0.0512], + [35011,0.0457], + [35013,0.0748], + [35015,0.0459], + [35017,0.0677], + [35019,0.087], + [35021,0.0528], + [35023,0.0754], + [35025,0.0448], + [35027,0.0644], + [35028,0.0422], + [35029,0.1902], + [35031,0.1011], + [35033,0.1167], + [35035,0.0637], + [35037,0.0726], + [35039,0.0956], + [35041,0.0557], + [35043,0.0745], + [35045,0.0678], + [35047,0.0836], + [35049,0.0558], + [35051,0.0975], + [35053,0.0738], + [35055,0.1033], + [35057,0.1022], + [35059,0.0461], + [35061,0.0835], + [36001,0.0606], + [36003,0.075], + [36005,0.1177], + [36007,0.0778], + [36009,0.0853], + [36011,0.0737], + [36013,0.0802], + [36015,0.079], + [36017,0.0731], + [36019,0.0831], + [36021,0.06], + [36023,0.0774], + [36025,0.0787], + [36027,0.0667], + [36029,0.0741], + [36031,0.0827], + [36033,0.0884], + [36035,0.0947], + [36037,0.0684], + [36039,0.0876], + [36041,0.0955], + [36043,0.0783], + [36045,0.0923], + [36047,0.0935], + [36049,0.0946], + [36051,0.0703], + [36053,0.0761], + [36055,0.0698], + [36057,0.0919], + [36059,0.0591], + [36061,0.0751], + [36063,0.0847], + [36065,0.0743], + [36067,0.0684], + [36069,0.0629], + [36071,0.0683], + [36073,0.0909], + [36075,0.0987], + [36077,0.0681], + [36079,0.0607], + [36081,0.0774], + [36083,0.0667], + [36085,0.0897], + [36087,0.0626], + [36089,0.0913], + [36091,0.0581], + [36093,0.067], + [36095,0.0811], + [36097,0.088], + [36099,0.0694], + [36101,0.0844], + [36103,0.066], + [36105,0.0812], + [36107,0.0712], + [36109,0.0521], + [36111,0.0714], + [36113,0.0818], + [36115,0.0746], + [36117,0.0758], + [36119,0.0625], + [36121,0.0792], + [36123,0.0684], + [37001,0.0726], + [37003,0.0778], + [37005,0.0878], + [37007,0.0946], + [37009,0.0917], + [37011,0.089], + [37013,0.095], + [37015,0.1007], + [37017,0.1154], + [37019,0.0978], + [37021,0.0598], + [37023,0.0828], + [37025,0.076], + [37027,0.0957], + [37029,0.0712], + [37031,0.078], + [37033,0.09], + [37035,0.0849], + [37037,0.0628], + [37039,0.0922], + [37041,0.0984], + [37043,0.0876], + [37045,0.0949], + [37047,0.103], + [37049,0.0868], + [37051,0.0968], + [37053,0.0786], + [37055,0.1104], + [37057,0.082], + [37059,0.075], + [37061,0.0799], + [37063,0.0627], + [37065,0.1298], + [37067,0.0754], + [37069,0.0826], + [37071,0.0896], + [37073,0.0696], + [37075,0.1524], + [37077,0.0684], + [37079,0.0788], + [37081,0.0823], + [37083,0.118], + [37085,0.0924], + [37087,0.0781], + [37089,0.0621], + [37091,0.094], + [37093,0.0988], + [37095,0.1157], + [37097,0.0837], + [37099,0.0878], + [37101,0.0709], + [37103,0.0842], + [37105,0.1015], + [37107,0.087], + [37109,0.0825], + [37111,0.0897], + [37113,0.0913], + [37115,0.0818], + [37117,0.1046], + [37119,0.0752], + [37121,0.1099], + [37123,0.0829], + [37125,0.0777], + [37127,0.1034], + [37129,0.0756], + [37131,0.0999], + [37133,0.0704], + [37135,0.0532], + [37137,0.0839], + [37139,0.0963], + [37141,0.0903], + [37143,0.0959], + [37145,0.1009], + [37147,0.0807], + [37149,0.0664], + [37151,0.0864], + [37153,0.1176], + [37155,0.1186], + [37157,0.0968], + [37159,0.0928], + [37161,0.1117], + [37163,0.0808], + [37165,0.1507], + [37167,0.0817], + [37169,0.0786], + [37171,0.0833], + [37173,0.1237], + [37175,0.074], + [37177,0.1293], + [37179,0.0655], + [37181,0.1149], + [37183,0.06], + [37185,0.1096], + [37187,0.1245], + [37189,0.0639], + [37191,0.0777], + [37193,0.0893], + [37195,0.1175], + [37197,0.0772], + [37199,0.0952], + [38001,0.0252], + [38003,0.032], + [38005,0.0761], + [38007,0.0295], + [38009,0.0387], + [38011,0.02], + [38013,0.0216], + [38015,0.0249], + [38017,0.0276], + [38019,0.0332], + [38021,0.0233], + [38023,0.0141], + [38025,0.0141], + [38027,0.0598], + [38029,0.0534], + [38031,0.0343], + [38033,0.0226], + [38035,0.0304], + [38037,0.029], + [38039,0.0233], + [38041,0.0264], + [38043,0.047], + [38045,0.0228], + [38047,0.0305], + [38049,0.0416], + [38051,0.0304], + [38053,0.0149], + [38055,0.0421], + [38057,0.046], + [38059,0.0331], + [38061,0.0154], + [38063,0.0431], + [38065,0.0606], + [38067,0.0607], + [38069,0.0421], + [38071,0.0377], + [38073,0.0289], + [38075,0.0242], + [38077,0.0337], + [38079,0.1236], + [38081,0.0252], + [38083,0.0404], + [38085,0.0464], + [38087,0.021], + [38089,0.0169], + [38091,0.024], + [38093,0.0313], + [38095,0.0387], + [38097,0.0289], + [38099,0.0496], + [38101,0.0271], + [38103,0.0433], + [38105,0.0123], + [39001,0.1272], + [39003,0.0784], + [39005,0.081], + [39007,0.095], + [39009,0.0902], + [39011,0.0591], + [39013,0.0824], + [39015,0.1017], + [39017,0.0749], + [39019,0.079], + [39021,0.0691], + [39023,0.0751], + [39025,0.0736], + [39027,0.1045], + [39029,0.0823], + [39031,0.0977], + [39033,0.0916], + [39035,0.0696], + [39037,0.0701], + [39039,0.075], + [39041,0.0533], + [39043,0.0812], + [39045,0.0665], + [39047,0.0767], + [39049,0.0644], + [39051,0.0794], + [39053,0.0969], + [39055,0.0569], + [39057,0.0698], + [39059,0.0868], + [39061,0.073], + [39063,0.0622], + [39065,0.0771], + [39067,0.0793], + [39069,0.0883], + [39071,0.1048], + [39073,0.0811], + [39075,0.0522], + [39077,0.1023], + [39079,0.1052], + [39081,0.1089], + [39083,0.0689], + [39085,0.0623], + [39087,0.0879], + [39089,0.0692], + [39091,0.0684], + [39093,0.0733], + [39095,0.0868], + [39097,0.0626], + [39099,0.0854], + [39101,0.079], + [39103,0.0577], + [39105,0.1187], + [39107,0.0512], + [39109,0.0721], + [39111,0.1], + [39113,0.083], + [39115,0.1009], + [39117,0.0803], + [39119,0.0914], + [39121,0.0964], + [39123,0.097], + [39125,0.0764], + [39127,0.0959], + [39129,0.0731], + [39131,0.1223], + [39133,0.077], + [39135,0.0754], + [39137,0.0602], + [39139,0.0861], + [39141,0.087], + [39143,0.0757], + [39145,0.1192], + [39147,0.0776], + [39149,0.067], + [39151,0.0757], + [39153,0.0763], + [39155,0.0935], + [39157,0.0728], + [39159,0.0583], + [39161,0.0696], + [39163,0.1067], + [39165,0.0645], + [39167,0.086], + [39169,0.0623], + [39171,0.0745], + [39173,0.0702], + [39175,0.0633], + [40001,0.098], + [40003,0.0327], + [40005,0.0688], + [40007,0.0337], + [40009,0.0328], + [40011,0.0401], + [40013,0.0545], + [40015,0.0627], + [40017,0.0411], + [40019,0.0531], + [40021,0.0696], + [40023,0.085], + [40025,0.0324], + [40027,0.0427], + [40029,0.0759], + [40031,0.0577], + [40033,0.0563], + [40035,0.0649], + [40037,0.0602], + [40039,0.0368], + [40041,0.069], + [40043,0.0347], + [40045,0.0313], + [40047,0.0411], + [40049,0.0499], + [40051,0.0476], + [40053,0.0334], + [40055,0.0536], + [40057,0.043], + [40059,0.0334], + [40061,0.0918], + [40063,0.08], + [40065,0.0537], + [40067,0.0527], + [40069,0.0814], + [40071,0.069], + [40073,0.0345], + [40075,0.0489], + [40077,0.0888], + [40079,0.0888], + [40081,0.0514], + [40083,0.0454], + [40085,0.0436], + [40087,0.0436], + [40089,0.0938], + [40091,0.0983], + [40093,0.0337], + [40095,0.0576], + [40097,0.0579], + [40099,0.0502], + [40101,0.0647], + [40103,0.0442], + [40105,0.0676], + [40107,0.0708], + [40109,0.0484], + [40111,0.0757], + [40113,0.0582], + [40115,0.0805], + [40117,0.0605], + [40119,0.0442], + [40121,0.073], + [40123,0.0546], + [40125,0.0545], + [40127,0.0888], + [40129,0.0319], + [40131,0.0509], + [40133,0.0817], + [40135,0.0837], + [40137,0.0541], + [40139,0.0438], + [40141,0.054], + [40143,0.051], + [40145,0.0507], + [40147,0.0482], + [40149,0.042], + [40151,0.0325], + [40153,0.0354], + [41001,0.0965], + [41003,0.0571], + [41005,0.0706], + [41007,0.0778], + [41009,0.0963], + [41011,0.1024], + [41013,0.121], + [41015,0.1061], + [41017,0.0952], + [41019,0.1056], + [41021,0.0954], + [41023,0.1236], + [41025,0.1156], + [41027,0.0633], + [41029,0.0974], + [41031,0.1044], + [41033,0.1107], + [41035,0.1077], + [41037,0.1136], + [41039,0.0801], + [41041,0.088], + [41043,0.0966], + [41045,0.0848], + [41047,0.0883], + [41049,0.0769], + [41051,0.0678], + [41053,0.0807], + [41055,0.0926], + [41057,0.0837], + [41059,0.0881], + [41061,0.0843], + [41063,0.1114], + [41065,0.0756], + [41067,0.0629], + [41069,0.0629], + [41071,0.0753], + [42001,0.0586], + [42003,0.0654], + [42005,0.0767], + [42007,0.0723], + [42009,0.0838], + [42011,0.0713], + [42013,0.0697], + [42015,0.0729], + [42017,0.066], + [42019,0.0615], + [42021,0.0872], + [42023,0.0968], + [42025,0.0931], + [42027,0.0527], + [42029,0.0528], + [42031,0.081], + [42033,0.0902], + [42035,0.0904], + [42037,0.0769], + [42039,0.0723], + [42041,0.0571], + [42043,0.0682], + [42045,0.0705], + [42047,0.0683], + [42049,0.0743], + [42051,0.0962], + [42053,0.0992], + [42055,0.0661], + [42057,0.0924], + [42059,0.0722], + [42061,0.0982], + [42063,0.0774], + [42065,0.0822], + [42067,0.0712], + [42069,0.083], + [42071,0.0602], + [42073,0.0752], + [42075,0.0622], + [42077,0.0783], + [42079,0.0938], + [42081,0.0782], + [42083,0.0817], + [42085,0.0723], + [42087,0.0816], + [42089,0.0936], + [42091,0.0586], + [42093,0.0547], + [42095,0.0739], + [42097,0.0875], + [42099,0.0654], + [42101,0.103], + [42103,0.0964], + [42105,0.093], + [42107,0.092], + [42109,0.0687], + [42111,0.0923], + [42113,0.0827], + [42115,0.0713], + [42117,0.0857], + [42119,0.0634], + [42121,0.0777], + [42123,0.0637], + [42125,0.0694], + [42127,0.0786], + [42129,0.0699], + [42131,0.0862], + [42133,0.0673], + [44001,0.0791], + [44003,0.0874], + [44005,0.0849], + [44007,0.0975], + [44009,0.0862], + [45001,0.0951], + [45003,0.0755], + [45005,0.1404], + [45007,0.071], + [45009,0.1349], + [45011,0.1212], + [45013,0.0638], + [45015,0.0699], + [45017,0.0958], + [45019,0.0588], + [45021,0.1048], + [45023,0.1221], + [45025,0.0917], + [45027,0.1031], + [45029,0.0993], + [45031,0.0934], + [45033,0.1183], + [45035,0.0661], + [45037,0.0805], + [45039,0.1075], + [45041,0.0826], + [45043,0.1015], + [45045,0.061], + [45047,0.0862], + [45049,0.0929], + [45051,0.0862], + [45053,0.0691], + [45055,0.0781], + [45057,0.0928], + [45059,0.0856], + [45061,0.1103], + [45063,0.0578], + [45065,0.0981], + [45067,0.1307], + [45069,0.1378], + [45071,0.0726], + [45073,0.0766], + [45075,0.1236], + [45077,0.0739], + [45079,0.0686], + [45081,0.0692], + [45083,0.0773], + [45085,0.0874], + [45087,0.1129], + [45089,0.125], + [45091,0.0769], + [46003,0.0268], + [46005,0.0357], + [46007,0.0636], + [46009,0.0324], + [46011,0.0341], + [46013,0.0325], + [46015,0.0343], + [46017,0.0882], + [46019,0.0388], + [46021,0.0357], + [46023,0.0434], + [46025,0.039], + [46027,0.0368], + [46029,0.0358], + [46031,0.0691], + [46033,0.0508], + [46035,0.0312], + [46037,0.0525], + [46039,0.056], + [46041,0.155], + [46043,0.0318], + [46045,0.0281], + [46047,0.0502], + [46049,0.0328], + [46051,0.0419], + [46053,0.0392], + [46055,0.0288], + [46057,0.0344], + [46059,0.0275], + [46061,0.0417], + [46063,0.0285], + [46065,0.0291], + [46067,0.0326], + [46069,0.0335], + [46071,0.062], + [46073,0.031], + [46075,0.0356], + [46077,0.0324], + [46079,0.0386], + [46081,0.0394], + [46083,0.0271], + [46085,0.048], + [46087,0.0323], + [46089,0.038], + [46091,0.0442], + [46093,0.038], + [46095,0.0758], + [46097,0.0366], + [46099,0.0331], + [46101,0.0459], + [46102,null], + [46103,0.0389], + [46105,0.0372], + [46107,0.0384], + [46109,0.052], + [46111,0.0303], + [46115,0.0358], + [46117,0.0276], + [46119,0.0295], + [46121,0.098], + [46123,0.0347], + [46125,0.0304], + [46127,0.0416], + [46129,0.0545], + [46135,0.0334], + [46137,0.0623], + [47001,0.0793], + [47003,0.0921], + [47005,0.098], + [47007,0.1047], + [47009,0.0696], + [47011,0.0711], + [47013,0.1108], + [47015,0.079], + [47017,0.1188], + [47019,0.0921], + [47021,0.0661], + [47023,0.0813], + [47025,0.1074], + [47027,0.1076], + [47029,0.1091], + [47031,0.0781], + [47033,0.0913], + [47035,0.093], + [47037,0.0592], + [47039,0.1064], + [47041,0.1013], + [47043,0.0769], + [47045,0.1045], + [47047,0.0864], + [47049,0.0977], + [47051,0.0725], + [47053,0.1104], + [47055,0.0818], + [47057,0.1], + [47059,0.0966], + [47061,0.1008], + [47063,0.0912], + [47065,0.0723], + [47067,0.1184], + [47069,0.1112], + [47071,0.1035], + [47073,0.088], + [47075,0.1181], + [47077,0.105], + [47079,0.0947], + [47081,0.0829], + [47083,0.1094], + [47085,0.0882], + [47087,0.1033], + [47089,0.0907], + [47091,0.0902], + [47093,0.0634], + [47095,0.101], + [47097,0.117], + [47099,0.0987], + [47101,0.1062], + [47103,0.0625], + [47105,0.0779], + [47107,0.0905], + [47109,0.1173], + [47111,0.0819], + [47113,0.0808], + [47115,0.0913], + [47117,0.0817], + [47119,0.0711], + [47121,0.1026], + [47123,0.098], + [47125,0.0757], + [47127,0.0602], + [47129,0.1021], + [47131,0.1163], + [47133,0.0902], + [47135,0.0941], + [47137,0.0953], + [47139,0.0922], + [47141,0.0801], + [47143,0.107], + [47145,0.0904], + [47147,0.0676], + [47149,0.0623], + [47151,0.145], + [47153,0.0862], + [47155,0.0846], + [47157,0.0881], + [47159,0.0781], + [47161,0.1096], + [47163,0.076], + [47165,0.0619], + [47167,0.0949], + [47169,0.085], + [47171,0.1055], + [47173,0.0965], + [47175,0.1154], + [47177,0.0854], + [47179,0.0723], + [47181,0.0968], + [47183,0.1039], + [47185,0.0948], + [47187,0.0516], + [47189,0.0631], + [48001,0.058], + [48003,0.0382], + [48005,0.0647], + [48007,0.0656], + [48009,0.0522], + [48011,0.0398], + [48013,0.0623], + [48015,0.0586], + [48017,0.0715], + [48019,0.0602], + [48021,0.0615], + [48023,0.0532], + [48025,0.0657], + [48027,0.0691], + [48029,0.0582], + [48031,0.0469], + [48033,0.0408], + [48035,0.0647], + [48037,0.0762], + [48039,0.0611], + [48041,0.049], + [48043,0.0556], + [48045,0.0557], + [48047,0.0897], + [48049,0.0646], + [48051,0.0617], + [48053,0.0548], + [48055,0.0656], + [48057,0.062], + [48059,0.0573], + [48061,0.0997], + [48063,0.0734], + [48065,0.0444], + [48067,0.092], + [48069,0.047], + [48071,0.0734], + [48073,0.0693], + [48075,0.0426], + [48077,0.0552], + [48079,0.0663], + [48081,0.0507], + [48083,0.0754], + [48085,0.0552], + [48087,0.0509], + [48089,0.0576], + [48091,0.0596], + [48093,0.0585], + [48095,0.0399], + [48097,0.0499], + [48099,0.0718], + [48101,0.0673], + [48103,0.0446], + [48105,0.051], + [48107,0.0593], + [48109,0.05], + [48111,0.0349], + [48113,0.0659], + [48115,0.064], + [48117,0.0446], + [48119,0.0634], + [48121,0.0535], + [48123,0.0473], + [48125,0.0922], + [48127,0.0501], + [48129,0.0508], + [48131,0.0639], + [48133,0.0605], + [48135,0.0433], + [48137,0.0586], + [48139,0.0618], + [48141,0.079], + [48143,0.054], + [48145,0.0708], + [48147,0.0698], + [48149,0.0445], + [48151,0.0541], + [48153,0.0884], + [48155,0.0519], + [48157,0.0549], + [48159,0.0652], + [48161,0.069], + [48163,0.0467], + [48165,0.0417], + [48167,0.0688], + [48169,0.0451], + [48171,0.044], + [48173,0.0363], + [48175,0.052], + [48177,0.0512], + [48179,0.0515], + [48181,0.0626], + [48183,0.0595], + [48185,0.0599], + [48187,0.0549], + [48189,0.1329], + [48191,0.0705], + [48193,0.0596], + [48195,0.0326], + [48197,0.0583], + [48199,0.0805], + [48201,0.0605], + [48203,0.0685], + [48205,0.0314], + [48207,0.0494], + [48209,0.0534], + [48211,0.0303], + [48213,0.0711], + [48215,0.1035], + [48217,0.0642], + [48219,0.0502], + [48221,0.0606], + [48223,0.0576], + [48225,0.0623], + [48227,0.0539], + [48229,0.0696], + [48231,0.0744], + [48233,0.0618], + [48235,0.0423], + [48237,0.0531], + [48239,0.05], + [48241,0.1046], + [48243,0.0413], + [48245,0.1087], + [48247,0.0709], + [48249,0.0613], + [48251,0.0612], + [48253,0.0672], + [48255,0.0535], + [48257,0.0635], + [48259,0.0507], + [48261,0.0404], + [48263,0.0395], + [48265,0.0551], + [48267,0.0486], + [48269,0.046], + [48271,0.0952], + [48273,0.0647], + [48275,0.0536], + [48277,0.0811], + [48279,0.0685], + [48281,0.0715], + [48283,0.0376], + [48285,0.0469], + [48287,0.0511], + [48289,0.0691], + [48291,0.089], + [48293,0.0674], + [48295,0.0395], + [48297,0.0436], + [48299,0.0642], + [48301,0.0533], + [48303,0.0494], + [48305,0.0528], + [48307,0.0527], + [48309,0.0618], + [48311,0.0261], + [48313,0.0647], + [48315,0.0806], + [48317,0.0423], + [48319,0.0546], + [48321,0.0971], + [48323,0.1249], + [48325,0.0608], + [48327,0.0587], + [48329,0.0366], + [48331,0.0784], + [48333,0.0526], + [48335,0.0552], + [48337,0.0492], + [48339,0.0541], + [48341,0.0426], + [48343,0.0959], + [48345,0.0598], + [48347,0.0651], + [48349,0.0653], + [48351,0.1076], + [48353,0.057], + [48355,0.0612], + [48357,0.0376], + [48359,0.0447], + [48361,0.104], + [48363,0.0654], + [48365,0.0618], + [48367,0.0554], + [48369,0.0387], + [48371,0.054], + [48373,0.0772], + [48375,0.0503], + [48377,0.1286], + [48379,0.0614], + [48381,0.0431], + [48383,0.0398], + [48385,0.08], + [48387,0.1005], + [48389,0.0577], + [48391,0.0539], + [48393,0.0443], + [48395,0.0701], + [48397,0.0575], + [48399,0.0526], + [48401,0.0621], + [48403,0.1292], + [48405,0.1161], + [48407,0.0756], + [48409,0.0718], + [48411,0.0572], + [48413,0.0355], + [48415,0.0416], + [48417,0.0331], + [48419,0.0742], + [48421,0.0405], + [48423,0.0654], + [48425,0.0603], + [48427,0.1496], + [48429,0.0516], + [48431,0.0386], + [48433,0.0467], + [48435,0.0455], + [48437,0.0843], + [48439,0.0605], + [48441,0.0527], + [48443,0.0495], + [48445,0.0593], + [48447,0.0503], + [48449,0.0743], + [48451,0.0516], + [48453,0.0504], + [48455,0.0747], + [48457,0.1026], + [48459,0.0639], + [48461,0.0409], + [48463,0.0699], + [48465,0.074], + [48467,0.0652], + [48469,0.0533], + [48471,0.0661], + [48473,0.0646], + [48475,0.0469], + [48477,0.0547], + [48479,0.0613], + [48481,0.0596], + [48483,0.043], + [48485,0.0585], + [48487,0.0578], + [48489,0.1577], + [48491,0.0528], + [48493,0.0526], + [48495,0.0527], + [48497,0.0599], + [48499,0.0728], + [48501,0.0387], + [48503,0.0516], + [48505,0.0623], + [48507,0.1449], + [49001,0.0467], + [49003,0.0474], + [49005,0.0396], + [49007,0.0631], + [49009,0.049], + [49011,0.0425], + [49013,0.043], + [49015,0.0609], + [49017,0.0921], + [49019,0.0774], + [49021,0.0555], + [49023,0.0505], + [49025,0.0535], + [49027,0.041], + [49029,0.0404], + [49031,0.0764], + [49033,0.0457], + [49035,0.0439], + [49037,0.0796], + [49039,0.0562], + [49041,0.0543], + [49043,0.0415], + [49045,0.0543], + [49047,0.0435], + [49049,0.0424], + [49051,0.0467], + [49053,0.0551], + [49055,0.1089], + [49057,0.0542], + [50001,0.0413], + [50003,0.0521], + [50005,0.0531], + [50007,0.0343], + [50009,0.0676], + [50011,0.0418], + [50013,0.0449], + [50015,0.0568], + [50017,0.041], + [50019,0.0682], + [50021,0.0532], + [50023,0.0431], + [50025,0.0467], + [50027,0.0418], + [51001,0.0722], + [51003,0.0485], + [51005,0.066], + [51007,0.0593], + [51009,0.0613], + [51011,0.0645], + [51013,0.0346], + [51015,0.0522], + [51017,0.0528], + [51019,0.057], + [51021,0.0678], + [51023,0.0525], + [51025,0.0937], + [51027,0.1102], + [51029,0.0793], + [51031,0.0596], + [51033,0.0706], + [51035,0.0829], + [51036,0.0678], + [51037,0.0779], + [51041,0.0565], + [51043,0.0475], + [51045,0.0704], + [51047,0.0537], + [51049,0.0665], + [51051,0.1117], + [51053,0.0736], + [51057,0.0665], + [51059,0.0442], + [51061,0.0493], + [51063,0.0541], + [51065,0.0477], + [51067,0.059], + [51069,0.053], + [51071,0.0699], + [51073,0.0521], + [51075,0.0515], + [51077,0.0966], + [51079,0.0482], + [51081,0.0774], + [51083,0.0914], + [51085,0.0506], + [51087,0.0558], + [51089,0.091], + [51091,0.043], + [51093,0.0575], + [51095,0.0534], + [51097,0.061], + [51099,0.058], + [51101,0.0564], + [51103,0.0752], + [51105,0.0878], + [51107,0.0438], + [51109,0.0567], + [51111,0.0706], + [51113,0.0446], + [51115,0.0507], + [51117,0.0933], + [51119,0.0553], + [51121,0.0565], + [51125,0.0552], + [51127,0.0504], + [51131,0.0911], + [51133,0.074], + [51135,0.0604], + [51137,0.0591], + [51139,0.0923], + [51141,0.0831], + [51143,0.0705], + [51145,0.0509], + [51147,0.084], + [51149,0.07], + [51153,0.0521], + [51155,0.0759], + [51157,0.0513], + [51159,0.0619], + [51161,0.0502], + [51163,0.0581], + [51165,0.0508], + [51167,0.0848], + [51169,0.0698], + [51171,0.0562], + [51173,0.0907], + [51175,0.0559], + [51177,0.0581], + [51179,0.0566], + [51181,0.0729], + [51183,0.0927], + [51185,0.0864], + [51187,0.0614], + [51191,0.0637], + [51193,0.0687], + [51195,0.1034], + [51197,0.078], + [51199,0.0538], + [51510,0.0405], + [51520,0.0698], + [51530,0.0679], + [51540,0.0468], + [51550,0.0592], + [51570,0.065], + [51580,0.084], + [51590,0.098], + [51595,0.0982], + [51600,0.0417], + [51610,0.039], + [51620,0.0929], + [51630,0.0647], + [51640,0.0861], + [51650,0.075], + [51660,0.0677], + [51670,0.0976], + [51678,0.0853], + [51680,0.071], + [51683,0.0539], + [51685,0.0509], + [51690,0.1125], + [51700,0.0678], + [51710,0.0697], + [51720,0.0834], + [51730,0.1167], + [51735,0.0496], + [51740,0.0815], + [51750,0.0754], + [51760,0.068], + [51770,0.0667], + [51775,0.0582], + [51790,0.0581], + [51800,0.0633], + [51810,0.0541], + [51820,0.0606], + [51830,0.0768], + [51840,0.0582], + [53001,0.0838], + [53003,0.0663], + [53005,0.0892], + [53007,0.0727], + [53009,0.0961], + [53011,0.0847], + [53013,0.0803], + [53015,0.0981], + [53017,0.0828], + [53019,0.1348], + [53021,0.0944], + [53023,0.074], + [53025,0.0865], + [53027,0.1185], + [53029,0.0744], + [53031,0.0939], + [53033,0.0507], + [53035,0.0722], + [53037,0.0777], + [53039,0.0943], + [53041,0.1054], + [53043,0.0684], + [53045,0.0999], + [53047,0.0859], + [53049,0.1126], + [53051,0.119], + [53053,0.0834], + [53055,0.0597], + [53057,0.0859], + [53059,0.0994], + [53061,0.058], + [53063,0.0817], + [53065,0.108], + [53067,0.0758], + [53069,0.1198], + [53071,0.071], + [53073,0.0743], + [53075,0.0601], + [53077,0.0999], + [54001,0.0713], + [54003,0.0563], + [54005,0.0956], + [54007,0.1028], + [54009,0.0771], + [54011,0.0576], + [54013,0.1014], + [54015,0.1201], + [54017,0.0535], + [54019,0.0861], + [54021,0.0665], + [54023,0.0817], + [54025,0.0744], + [54027,0.0701], + [54029,0.0812], + [54031,0.0948], + [54033,0.0555], + [54035,0.0688], + [54037,0.0479], + [54039,0.0591], + [54041,0.0641], + [54043,0.0961], + [54045,0.0982], + [54047,0.1269], + [54049,0.0594], + [54051,0.0729], + [54053,0.0938], + [54055,0.0765], + [54057,0.0784], + [54059,0.1117], + [54061,0.0452], + [54063,0.0629], + [54065,0.062], + [54067,0.0958], + [54069,0.0567], + [54071,0.0545], + [54073,0.0729], + [54075,0.0857], + [54077,0.0653], + [54079,0.0567], + [54081,0.0728], + [54083,0.0721], + [54085,0.0613], + [54087,0.1036], + [54089,0.0763], + [54091,0.0565], + [54093,0.0682], + [54095,0.0873], + [54097,0.0711], + [54099,0.0692], + [54101,0.103], + [54103,0.0909], + [54105,0.1014], + [54107,0.062], + [54109,0.0924], + [55001,0.1087], + [55003,0.0915], + [55005,0.075], + [55007,0.1099], + [55009,0.0619], + [55011,0.0656], + [55013,0.0849], + [55015,0.0526], + [55017,0.0674], + [55019,0.0706], + [55021,0.0653], + [55023,0.0819], + [55025,0.0468], + [55027,0.0686], + [55029,0.0987], + [55031,0.0663], + [55033,0.0636], + [55035,0.0565], + [55037,0.0829], + [55039,0.0615], + [55041,0.1095], + [55043,0.0589], + [55045,0.0571], + [55047,0.0793], + [55049,0.0647], + [55051,0.107], + [55053,0.0705], + [55055,0.0627], + [55057,0.0812], + [55059,0.0764], + [55061,0.0638], + [55063,0.053], + [55065,0.0539], + [55067,0.0909], + [55069,0.0833], + [55071,0.0737], + [55073,0.067], + [55075,0.0792], + [55077,0.0844], + [55078,0.1583], + [55079,0.0839], + [55081,0.0688], + [55083,0.0771], + [55085,0.0857], + [55087,0.061], + [55089,0.0524], + [55091,0.0566], + [55093,0.0527], + [55095,0.0712], + [55097,0.0691], + [55099,0.0688], + [55101,0.0832], + [55103,0.0607], + [55105,0.0771], + [55107,0.0854], + [55109,0.0538], + [55111,0.0625], + [55113,0.1094], + [55115,0.0746], + [55117,0.0608], + [55119,0.0642], + [55121,0.0559], + [55123,0.0597], + [55125,0.1012], + [55127,0.0684], + [55129,0.0742], + [55131,0.0571], + [55133,0.0551], + [55135,0.0731], + [55137,0.0857], + [55139,0.0638], + [55141,0.0727], + [56001,0.0375], + [56003,0.0519], + [56005,0.0425], + [56007,0.0432], + [56009,0.0366], + [56011,0.0444], + [56013,0.0569], + [56015,0.042], + [56017,0.0473], + [56019,0.0507], + [56021,0.0479], + [56023,0.0573], + [56025,0.0454], + [56027,0.0355], + [56029,0.0509], + [56031,0.0439], + [56033,0.055], + [56035,0.047], + [56037,0.0438], + [56039,0.0559], + [56041,0.0527], + [56043,0.0495], + [56045,0.0359] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2014.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2014.json new file mode 100644 index 0000000..710e07d --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2014.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2014", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2014"], + [1001,0.0584], + [1003,0.0613], + [1005,0.1053], + [1007,0.0721], + [1009,0.0613], + [1011,0.0883], + [1013,0.0854], + [1015,0.0798], + [1017,0.067], + [1019,0.058], + [1021,0.0626], + [1023,0.0901], + [1025,0.1217], + [1027,0.0715], + [1029,0.0659], + [1031,0.0664], + [1033,0.0829], + [1035,0.1032], + [1037,0.0882], + [1039,0.0777], + [1041,0.0694], + [1043,0.0606], + [1045,0.0708], + [1047,0.1124], + [1049,0.0687], + [1051,0.0571], + [1053,0.08], + [1055,0.0704], + [1057,0.0784], + [1059,0.0773], + [1061,0.0668], + [1063,0.1246], + [1065,0.0988], + [1067,0.0749], + [1069,0.0678], + [1071,0.0726], + [1073,0.0629], + [1075,0.0697], + [1077,0.0719], + [1079,0.0822], + [1081,0.0559], + [1083,0.061], + [1085,0.128], + [1087,0.091], + [1089,0.0617], + [1091,0.0797], + [1093,0.079], + [1095,0.0667], + [1097,0.0774], + [1099,0.1105], + [1101,0.0686], + [1103,0.0659], + [1105,0.1212], + [1107,0.0819], + [1109,0.0736], + [1111,0.0673], + [1113,0.0653], + [1115,0.0577], + [1117,0.0448], + [1119,0.0849], + [1121,0.0776], + [1123,0.0751], + [1125,0.059], + [1127,0.0791], + [1129,0.096], + [1131,0.1693], + [1133,0.0859], + [2013,0.0453], + [2016,0.0482], + [2020,0.0521], + [2050,0.1608], + [2060,0.0805], + [2068,0.1034], + [2070,0.1004], + [2090,0.0577], + [2100,0.1069], + [2105,0.1516], + [2110,0.0505], + [2122,0.0786], + [2130,0.0786], + [2150,0.0568], + [2158,null], + [2164,0.1628], + [2170,0.0806], + [2180,0.1231], + [2185,0.0597], + [2188,0.1704], + [2195,0.0947], + [2198,0.1335], + [2220,0.051], + [2230,0.1191], + [2240,0.1324], + [2261,0.0966], + [2275,0.0839], + [2282,0.0989], + [2290,0.1897], + [4001,0.1565], + [4003,0.084], + [4005,0.0708], + [4007,0.083], + [4009,0.0742], + [4011,0.0649], + [4012,0.0757], + [4013,0.0579], + [4015,0.0871], + [4017,0.1105], + [4019,0.0602], + [4021,0.0698], + [4023,0.129], + [4025,0.0634], + [4027,0.2286], + [5001,0.0537], + [5003,0.0925], + [5005,0.0667], + [5007,0.046], + [5009,0.0598], + [5011,0.0836], + [5013,0.0659], + [5015,0.0517], + [5017,0.1044], + [5019,0.0696], + [5021,0.0781], + [5023,0.0826], + [5025,0.068], + [5027,0.0714], + [5029,0.0714], + [5031,0.0543], + [5033,0.0598], + [5035,0.0737], + [5037,0.0635], + [5039,0.0931], + [5041,0.0807], + [5043,0.0842], + [5045,0.0555], + [5047,0.0565], + [5049,0.0577], + [5051,0.0632], + [5053,0.0545], + [5055,0.0632], + [5057,0.0596], + [5059,0.0577], + [5061,0.0579], + [5063,0.0778], + [5065,0.0752], + [5067,0.0921], + [5069,0.0872], + [5071,0.0654], + [5073,0.0781], + [5075,0.0723], + [5077,0.0756], + [5079,0.0707], + [5081,0.0653], + [5083,0.0597], + [5085,0.051], + [5087,0.0482], + [5089,0.0627], + [5091,0.0581], + [5093,0.092], + [5095,0.0672], + [5097,0.0797], + [5099,0.0605], + [5101,0.0583], + [5103,0.0798], + [5105,0.0771], + [5107,0.0959], + [5109,0.0734], + [5111,0.0692], + [5113,0.0626], + [5115,0.0625], + [5117,0.0577], + [5119,0.055], + [5121,0.0789], + [5123,0.0869], + [5125,0.0483], + [5127,0.0502], + [5129,0.0635], + [5131,0.0567], + [5133,0.0699], + [5135,0.0844], + [5137,0.0762], + [5139,0.0738], + [5141,0.0807], + [5143,0.0436], + [5145,0.0702], + [5147,0.0758], + [5149,0.0562], + [6001,0.0582], + [6003,0.082], + [6005,0.083], + [6007,0.0865], + [6009,0.08], + [6011,0.1739], + [6013,0.0617], + [6015,0.1007], + [6017,0.0698], + [6019,0.1158], + [6021,0.1066], + [6023,0.0665], + [6025,0.2403], + [6027,0.0682], + [6029,0.1041], + [6031,0.1192], + [6033,0.0894], + [6035,0.091], + [6037,0.0825], + [6039,0.112], + [6041,0.0427], + [6043,0.0878], + [6045,0.07], + [6047,0.1283], + [6049,0.1025], + [6051,0.0705], + [6053,0.0904], + [6055,0.0567], + [6057,0.0655], + [6059,0.0549], + [6061,0.0626], + [6063,0.1153], + [6065,0.082], + [6067,0.073], + [6069,0.0933], + [6071,0.08], + [6073,0.0643], + [6075,0.0437], + [6077,0.1053], + [6079,0.0558], + [6081,0.0421], + [6083,0.0611], + [6085,0.0515], + [6087,0.0875], + [6089,0.0962], + [6091,0.101], + [6093,0.1108], + [6095,0.0752], + [6097,0.0561], + [6099,0.1117], + [6101,0.1264], + [6103,0.0962], + [6105,0.0944], + [6107,0.1313], + [6109,0.0865], + [6111,0.0665], + [6113,0.0752], + [6115,0.112], + [8001,0.0573], + [8003,0.0721], + [8005,0.049], + [8007,0.06], + [8009,0.0275], + [8011,0.0527], + [8013,0.0409], + [8014,0.0423], + [8015,0.0437], + [8017,0.0288], + [8019,0.0464], + [8021,0.0777], + [8023,0.0908], + [8025,0.0586], + [8027,0.0465], + [8029,0.0704], + [8031,0.048], + [8033,0.0392], + [8035,0.0401], + [8037,0.0418], + [8039,0.0426], + [8041,0.06], + [8043,0.0821], + [8045,0.0527], + [8047,0.0438], + [8049,0.0402], + [8051,0.0404], + [8053,0.0369], + [8055,0.1], + [8057,0.036], + [8059,0.0455], + [8061,0.0333], + [8063,0.0304], + [8065,0.0464], + [8067,0.0421], + [8069,0.0426], + [8071,0.0754], + [8073,0.0408], + [8075,0.038], + [8077,0.0624], + [8079,0.0495], + [8081,0.0577], + [8083,0.0609], + [8085,0.0679], + [8087,0.046], + [8089,0.0764], + [8091,0.0577], + [8093,0.046], + [8095,0.0329], + [8097,0.0487], + [8099,0.0468], + [8101,0.0731], + [8103,0.0592], + [8105,0.092], + [8107,0.0417], + [8109,0.0873], + [8111,0.0526], + [8113,0.0476], + [8115,0.0461], + [8117,0.0337], + [8119,0.0586], + [8121,0.0318], + [8123,0.0446], + [8125,0.0331], + [9001,0.0616], + [9003,0.0678], + [9005,0.0602], + [9007,0.0573], + [9009,0.0723], + [9011,0.0678], + [9013,0.0584], + [9015,0.0731], + [10001,0.0641], + [10003,0.0552], + [10005,0.0577], + [11001,0.0777], + [12001,0.0521], + [12003,0.064], + [12005,0.0634], + [12007,0.0564], + [12009,0.0698], + [12011,0.0593], + [12013,0.0694], + [12015,0.0687], + [12017,0.0855], + [12019,0.0575], + [12021,0.0597], + [12023,0.0664], + [12027,0.0714], + [12029,0.074], + [12031,0.0672], + [12033,0.0642], + [12035,0.0734], + [12037,0.0562], + [12039,0.0823], + [12041,0.0673], + [12043,0.0768], + [12045,0.0607], + [12047,0.076], + [12049,0.0767], + [12051,0.1134], + [12053,0.0791], + [12055,0.0843], + [12057,0.0578], + [12059,0.0698], + [12061,0.079], + [12063,0.067], + [12065,0.066], + [12067,0.0513], + [12069,0.0639], + [12071,0.0603], + [12073,0.0554], + [12075,0.0685], + [12077,0.0665], + [12079,0.0713], + [12081,0.0572], + [12083,0.0729], + [12085,0.0607], + [12086,0.0673], + [12087,0.0412], + [12089,0.0596], + [12091,0.0515], + [12093,0.0736], + [12095,0.0584], + [12097,0.0673], + [12099,0.0586], + [12101,0.0667], + [12103,0.0577], + [12105,0.0719], + [12107,0.0873], + [12109,0.047], + [12111,0.0801], + [12113,0.0547], + [12115,0.0584], + [12117,0.0571], + [12119,0.0834], + [12121,0.063], + [12123,0.0687], + [12125,0.0598], + [12127,0.0682], + [12129,0.0518], + [12131,0.0529], + [12133,0.0673], + [13001,0.088], + [13003,0.0755], + [13005,0.0693], + [13007,0.0898], + [13009,0.0868], + [13011,0.066], + [13013,0.0625], + [13015,0.0714], + [13017,0.0995], + [13019,0.085], + [13021,0.0799], + [13023,0.1119], + [13025,0.0921], + [13027,0.0719], + [13029,0.0643], + [13031,0.073], + [13033,0.0999], + [13035,0.0746], + [13037,0.0692], + [13039,0.0657], + [13043,0.0688], + [13045,0.0815], + [13047,0.0612], + [13049,0.0735], + [13051,0.0728], + [13053,0.0969], + [13055,0.0758], + [13057,0.0546], + [13059,0.0691], + [13061,0.1137], + [13063,0.0926], + [13065,0.0835], + [13067,0.059], + [13069,0.081], + [13071,0.0805], + [13073,0.0578], + [13075,0.0807], + [13077,0.0613], + [13079,0.0745], + [13081,0.088], + [13083,0.0629], + [13085,0.0606], + [13087,0.0811], + [13089,0.0721], + [13091,0.0972], + [13093,0.0956], + [13095,0.0919], + [13097,0.0737], + [13099,0.0893], + [13101,0.0583], + [13103,0.0619], + [13105,0.0858], + [13107,0.1041], + [13109,0.0642], + [13111,0.0755], + [13113,0.0607], + [13115,0.0787], + [13117,0.0523], + [13119,0.0808], + [13121,0.0704], + [13123,0.0723], + [13125,0.0805], + [13127,0.0742], + [13129,0.0725], + [13131,0.073], + [13133,0.0816], + [13135,0.0602], + [13137,0.0693], + [13139,0.0587], + [13141,0.1162], + [13143,0.0789], + [13145,0.0595], + [13147,0.0746], + [13149,0.0789], + [13151,0.0722], + [13153,0.0677], + [13155,0.0946], + [13157,0.0583], + [13159,0.0663], + [13161,0.0813], + [13163,0.112], + [13165,0.0994], + [13167,0.0856], + [13169,0.0629], + [13171,0.095], + [13173,0.0804], + [13175,0.0918], + [13177,0.0621], + [13179,0.076], + [13181,0.0827], + [13183,0.0737], + [13185,0.0723], + [13187,0.0633], + [13189,0.0994], + [13191,0.0786], + [13193,0.1172], + [13195,0.0665], + [13197,0.0767], + [13199,0.0971], + [13201,0.0632], + [13205,0.0782], + [13207,0.0667], + [13209,0.1027], + [13211,0.0654], + [13213,0.0932], + [13215,0.0838], + [13217,0.0816], + [13219,0.0505], + [13221,0.0659], + [13223,0.0612], + [13225,0.0944], + [13227,0.0663], + [13229,0.0743], + [13231,0.0698], + [13233,0.0778], + [13235,0.0778], + [13237,0.09], + [13239,0.0831], + [13241,0.0814], + [13243,0.0964], + [13245,0.0865], + [13247,0.0782], + [13249,0.0759], + [13251,0.0996], + [13253,0.0942], + [13255,0.0941], + [13257,0.0763], + [13259,0.075], + [13261,0.0945], + [13263,0.0781], + [13265,0.1081], + [13267,0.0692], + [13269,0.1019], + [13271,0.0972], + [13273,0.0799], + [13275,0.0871], + [13277,0.0726], + [13279,0.0983], + [13281,0.0916], + [13283,0.1056], + [13285,0.0731], + [13287,0.0792], + [13289,0.1108], + [13291,0.0656], + [13293,0.0886], + [13295,0.0718], + [13297,0.0641], + [13299,0.0787], + [13301,0.0965], + [13303,0.0806], + [13305,0.0872], + [13307,0.0866], + [13309,0.1228], + [13311,0.0619], + [13313,0.0781], + [13315,0.0912], + [13317,0.0926], + [13319,0.0864], + [13321,0.0784], + [15001,0.0552], + [15003,0.0406], + [15005,null], + [15007,0.0483], + [15009,0.0452], + [16001,0.042], + [16003,0.1002], + [16005,0.0459], + [16007,0.0455], + [16009,0.0812], + [16011,0.0455], + [16013,0.045], + [16015,0.0658], + [16017,0.072], + [16019,0.0422], + [16021,0.0607], + [16023,0.0538], + [16025,0.0539], + [16027,0.0598], + [16029,0.0426], + [16031,0.0429], + [16033,0.0475], + [16035,0.0933], + [16037,0.0693], + [16039,0.0528], + [16041,0.034], + [16043,0.0409], + [16045,0.0595], + [16047,0.0404], + [16049,0.0755], + [16051,0.0406], + [16053,0.0403], + [16055,0.0583], + [16057,0.0408], + [16059,0.0786], + [16061,0.0458], + [16063,0.0576], + [16065,0.0323], + [16067,0.046], + [16069,0.0409], + [16071,0.0388], + [16073,0.0371], + [16075,0.0569], + [16077,0.049], + [16079,0.1001], + [16081,0.0404], + [16083,0.0434], + [16085,0.0759], + [16087,0.067], + [17001,0.0533], + [17003,0.1068], + [17005,0.0655], + [17007,0.078], + [17009,0.0417], + [17011,0.0731], + [17013,0.082], + [17015,0.064], + [17017,0.0689], + [17019,0.06], + [17021,0.0758], + [17023,0.0713], + [17025,0.0798], + [17027,0.0542], + [17029,0.0677], + [17031,0.0747], + [17033,0.0648], + [17035,0.0589], + [17037,0.0654], + [17039,0.0662], + [17041,0.0587], + [17043,0.0572], + [17045,0.0717], + [17047,0.0673], + [17049,0.0543], + [17051,0.076], + [17053,0.0606], + [17055,0.0924], + [17057,0.0858], + [17059,0.0711], + [17061,0.0677], + [17063,0.0872], + [17065,0.0593], + [17067,0.0647], + [17069,0.0872], + [17071,0.0634], + [17073,0.0666], + [17075,0.0638], + [17077,0.0641], + [17079,0.0639], + [17081,0.0748], + [17083,0.0717], + [17085,0.0615], + [17087,0.0952], + [17089,0.0688], + [17091,0.0794], + [17093,0.0642], + [17095,0.0693], + [17097,0.0644], + [17099,0.0814], + [17101,0.0777], + [17103,0.0626], + [17105,0.0639], + [17107,0.0639], + [17109,0.0683], + [17111,0.0656], + [17113,0.0548], + [17115,0.0854], + [17117,0.0747], + [17119,0.0704], + [17121,0.0762], + [17123,0.07], + [17125,0.0859], + [17127,0.0798], + [17129,0.0563], + [17131,0.0702], + [17133,0.0537], + [17135,0.0874], + [17137,0.0595], + [17139,0.0542], + [17141,0.074], + [17143,0.0768], + [17145,0.0845], + [17147,0.0567], + [17149,0.0574], + [17151,0.083], + [17153,0.1043], + [17155,0.0765], + [17157,0.0662], + [17159,0.0642], + [17161,0.0708], + [17163,0.0784], + [17165,0.0819], + [17167,0.059], + [17169,0.0674], + [17171,0.0688], + [17173,0.0677], + [17175,0.0753], + [17177,0.0735], + [17179,0.0673], + [17181,0.088], + [17183,0.0845], + [17185,0.0597], + [17187,0.0583], + [17189,0.0474], + [17191,0.0662], + [17193,0.0585], + [17195,0.0692], + [17197,0.0759], + [17199,0.0713], + [17201,0.0828], + [17203,0.0554], + [18001,0.0458], + [18003,0.0572], + [18005,0.0438], + [18007,0.0541], + [18009,0.074], + [18011,0.0439], + [18013,0.0597], + [18015,0.0523], + [18017,0.0576], + [18019,0.0539], + [18021,0.0675], + [18023,0.0511], + [18025,0.0765], + [18027,0.0446], + [18029,0.0657], + [18031,0.0491], + [18033,0.0521], + [18035,0.07], + [18037,0.0406], + [18039,0.0508], + [18041,0.0779], + [18043,0.0507], + [18045,0.0697], + [18047,0.0652], + [18049,0.0626], + [18051,0.0448], + [18053,0.0685], + [18055,0.0794], + [18057,0.0406], + [18059,0.0517], + [18061,0.0559], + [18063,0.0459], + [18065,0.0681], + [18067,0.0626], + [18069,0.0579], + [18071,0.0499], + [18073,0.0667], + [18075,0.058], + [18077,0.0606], + [18079,0.0668], + [18081,0.0497], + [18083,0.0522], + [18085,0.0488], + [18087,0.0446], + [18089,0.0789], + [18091,0.0763], + [18093,0.0807], + [18095,0.0712], + [18097,0.0653], + [18099,0.0547], + [18101,0.0533], + [18103,0.066], + [18105,0.0572], + [18107,0.054], + [18109,0.0581], + [18111,0.0697], + [18113,0.0519], + [18115,0.069], + [18117,0.0772], + [18119,0.0809], + [18121,0.0697], + [18123,0.0584], + [18125,0.0506], + [18127,0.062], + [18129,0.0478], + [18131,0.0539], + [18133,0.0663], + [18135,0.0647], + [18137,0.0659], + [18139,0.0562], + [18141,0.0654], + [18143,0.068], + [18145,0.0568], + [18147,0.0513], + [18149,0.0724], + [18151,0.0483], + [18153,0.0715], + [18155,0.059], + [18157,0.0502], + [18159,0.0518], + [18161,0.0562], + [18163,0.0539], + [18165,0.0858], + [18167,0.076], + [18169,0.0556], + [18171,0.0608], + [18173,0.0491], + [18175,0.0665], + [18177,0.0652], + [18179,0.0479], + [18181,0.0507], + [18183,0.0516], + [19001,0.0402], + [19003,0.0334], + [19005,0.0564], + [19007,0.0572], + [19009,0.0429], + [19011,0.0461], + [19013,0.049], + [19015,0.034], + [19017,0.0367], + [19019,0.0465], + [19021,0.0396], + [19023,0.0422], + [19025,0.0483], + [19027,0.0316], + [19029,0.0433], + [19031,0.0386], + [19033,0.0464], + [19035,0.0509], + [19037,0.0473], + [19039,0.0446], + [19041,0.0418], + [19043,0.0499], + [19045,0.0525], + [19047,0.0407], + [19049,0.0328], + [19051,0.0513], + [19053,0.0378], + [19055,0.0378], + [19057,0.0501], + [19059,0.0468], + [19061,0.0413], + [19063,0.0395], + [19065,0.0501], + [19067,0.0451], + [19069,0.0396], + [19071,0.0386], + [19073,0.0403], + [19075,0.0416], + [19077,0.0438], + [19079,0.0453], + [19081,0.033], + [19083,0.0432], + [19085,0.04], + [19087,0.0438], + [19089,0.0404], + [19091,0.038], + [19093,0.0357], + [19095,0.0418], + [19097,0.0506], + [19099,0.0442], + [19101,0.0435], + [19103,0.0308], + [19105,0.0492], + [19107,0.0442], + [19109,0.032], + [19111,0.0588], + [19113,0.0439], + [19115,0.0449], + [19117,0.0389], + [19119,0.0255], + [19121,0.0453], + [19123,0.0439], + [19125,0.0381], + [19127,0.0539], + [19129,0.0437], + [19131,0.0357], + [19133,0.0498], + [19135,0.0502], + [19137,0.0412], + [19139,0.0453], + [19141,0.0326], + [19143,0.0332], + [19145,0.0443], + [19147,0.036], + [19149,0.0343], + [19151,0.0348], + [19153,0.0423], + [19155,0.0429], + [19157,0.0425], + [19159,0.0387], + [19161,0.0392], + [19163,0.0521], + [19165,0.0313], + [19167,0.0294], + [19169,0.0288], + [19171,0.0527], + [19173,0.0366], + [19175,0.047], + [19177,0.0452], + [19179,0.0548], + [19181,0.0396], + [19183,0.036], + [19185,0.0504], + [19187,0.0483], + [19189,0.042], + [19191,0.0425], + [19193,0.0438], + [19195,0.0454], + [19197,0.0408], + [20001,0.0508], + [20003,0.0516], + [20005,0.065], + [20007,0.0306], + [20009,0.0355], + [20011,0.0526], + [20013,0.0409], + [20015,0.0487], + [20017,0.0406], + [20019,0.0545], + [20021,0.0503], + [20023,0.0312], + [20025,0.0262], + [20027,0.0441], + [20029,0.0422], + [20031,0.057], + [20033,0.0307], + [20035,0.0463], + [20037,0.0535], + [20039,0.0348], + [20041,0.0506], + [20043,0.0449], + [20045,0.0408], + [20047,0.033], + [20049,0.0512], + [20051,0.0275], + [20053,0.0296], + [20055,0.0343], + [20057,0.038], + [20059,0.0511], + [20061,0.0731], + [20063,0.0263], + [20065,0.0328], + [20067,0.034], + [20069,0.0269], + [20071,0.0212], + [20073,0.0451], + [20075,0.0235], + [20077,0.0369], + [20079,0.0425], + [20081,0.0259], + [20083,0.0338], + [20085,0.0413], + [20087,0.0483], + [20089,0.0391], + [20091,0.0378], + [20093,0.0307], + [20095,0.04], + [20097,0.0326], + [20099,0.0583], + [20101,0.0324], + [20103,0.0499], + [20105,0.0412], + [20107,0.0746], + [20109,0.0225], + [20111,0.0512], + [20113,0.0325], + [20115,0.0407], + [20117,0.0323], + [20119,0.0265], + [20121,0.0472], + [20123,0.0326], + [20125,0.0575], + [20127,0.0443], + [20129,0.0397], + [20131,0.0286], + [20133,0.0754], + [20135,0.0273], + [20137,0.0237], + [20139,0.0544], + [20141,0.0374], + [20143,0.041], + [20145,0.0378], + [20147,0.0351], + [20149,0.039], + [20151,0.0324], + [20153,0.0244], + [20155,0.044], + [20157,0.0304], + [20159,0.0353], + [20161,0.0369], + [20163,0.0362], + [20165,0.0354], + [20167,0.0352], + [20169,0.0421], + [20171,0.0274], + [20173,0.0537], + [20175,0.035], + [20177,0.0477], + [20179,0.0261], + [20181,0.032], + [20183,0.0312], + [20185,0.0375], + [20187,0.0331], + [20189,0.03], + [20191,0.0477], + [20193,0.029], + [20195,0.0309], + [20197,0.0412], + [20199,0.0263], + [20201,0.0322], + [20203,0.0284], + [20205,0.0691], + [20207,0.0529], + [20209,0.0685], + [21001,0.0865], + [21003,0.059], + [21005,0.052], + [21007,0.0801], + [21009,0.0628], + [21011,0.0888], + [21013,0.1009], + [21015,0.0517], + [21017,0.0562], + [21019,0.0754], + [21021,0.0693], + [21023,0.0791], + [21025,0.1142], + [21027,0.0721], + [21029,0.058], + [21031,0.0748], + [21033,0.0652], + [21035,0.0576], + [21037,0.0518], + [21039,0.0601], + [21041,0.0711], + [21043,0.1073], + [21045,0.0681], + [21047,0.076], + [21049,0.0611], + [21051,0.1119], + [21053,0.0903], + [21055,0.0618], + [21057,0.076], + [21059,0.0567], + [21061,0.0835], + [21063,0.1134], + [21065,0.0752], + [21067,0.0479], + [21069,0.0773], + [21071,0.1027], + [21073,0.053], + [21075,0.0831], + [21077,0.07], + [21079,0.0653], + [21081,0.0655], + [21083,0.0747], + [21085,0.0839], + [21087,0.0654], + [21089,0.0853], + [21091,0.0603], + [21093,0.0621], + [21095,0.1395], + [21097,0.0599], + [21099,0.0632], + [21101,0.0608], + [21103,0.0575], + [21105,0.0621], + [21107,0.0644], + [21109,0.1147], + [21111,0.0603], + [21113,0.0524], + [21115,0.0921], + [21117,0.0555], + [21119,0.1113], + [21121,0.0994], + [21123,0.066], + [21125,0.0762], + [21127,0.0958], + [21129,0.097], + [21131,0.1286], + [21133,0.1235], + [21135,0.0964], + [21137,0.0883], + [21139,0.0823], + [21141,0.0565], + [21143,0.0698], + [21145,0.0701], + [21147,0.1056], + [21149,0.0638], + [21151,0.0541], + [21153,0.1397], + [21155,0.0638], + [21157,0.0674], + [21159,0.0912], + [21161,0.0791], + [21163,0.0706], + [21165,0.0981], + [21167,0.0618], + [21169,0.0608], + [21171,0.0553], + [21173,0.0747], + [21175,0.0942], + [21177,0.0764], + [21179,0.0611], + [21181,0.0774], + [21183,0.0769], + [21185,0.0474], + [21187,0.0502], + [21189,0.1045], + [21191,0.0666], + [21193,0.1032], + [21195,0.1051], + [21197,0.0848], + [21199,0.0735], + [21201,0.078], + [21203,0.0756], + [21205,0.0697], + [21207,0.1025], + [21209,0.0488], + [21211,0.0495], + [21213,0.059], + [21215,0.0528], + [21217,0.0772], + [21219,0.0543], + [21221,0.0707], + [21223,0.0728], + [21225,0.0641], + [21227,0.0556], + [21229,0.0543], + [21231,0.0968], + [21233,0.0544], + [21235,0.0873], + [21237,0.113], + [21239,0.0446], + [22001,0.0577], + [22003,0.072], + [22005,0.0534], + [22007,0.0771], + [22009,0.0724], + [22011,0.068], + [22013,0.0793], + [22015,0.0575], + [22017,0.0745], + [22019,0.0592], + [22021,0.0774], + [22023,0.0496], + [22025,0.0808], + [22027,0.0744], + [22029,0.0863], + [22031,0.0813], + [22033,0.0576], + [22035,0.1466], + [22037,0.0646], + [22039,0.0676], + [22041,0.0945], + [22043,0.0714], + [22045,0.0633], + [22047,0.0784], + [22049,0.0588], + [22051,0.0601], + [22053,0.0589], + [22055,0.0493], + [22057,0.0481], + [22059,0.0523], + [22061,0.0756], + [22063,0.0551], + [22065,0.1107], + [22067,0.1126], + [22069,0.078], + [22071,0.0695], + [22073,0.0699], + [22075,0.0571], + [22077,0.0706], + [22079,0.0669], + [22081,0.0723], + [22083,0.0873], + [22085,0.0656], + [22087,0.0695], + [22089,0.0609], + [22091,0.1004], + [22093,0.0863], + [22095,0.0801], + [22097,0.0765], + [22099,0.0576], + [22101,0.0629], + [22103,0.0567], + [22105,0.0764], + [22107,0.094], + [22109,0.0486], + [22111,0.0752], + [22113,0.056], + [22115,0.0855], + [22117,0.0787], + [22119,0.0874], + [22121,0.0582], + [22123,0.1306], + [22125,0.057], + [22127,0.0756], + [23001,0.0543], + [23003,0.0761], + [23005,0.0442], + [23007,0.0652], + [23009,0.0681], + [23011,0.0538], + [23013,0.0515], + [23015,0.0591], + [23017,0.0701], + [23019,0.061], + [23021,0.0728], + [23023,0.0454], + [23025,0.0784], + [23027,0.0605], + [23029,0.0816], + [23031,0.0517], + [24001,0.076], + [24003,0.0506], + [24005,0.0609], + [24009,0.0532], + [24011,0.0625], + [24013,0.048], + [24015,0.0658], + [24017,0.0574], + [24019,0.0838], + [24021,0.0505], + [24023,0.0713], + [24025,0.0568], + [24027,0.0432], + [24029,0.0643], + [24031,0.0439], + [24033,0.0606], + [24035,0.0509], + [24037,0.0537], + [24039,0.0944], + [24041,0.0546], + [24043,0.0645], + [24045,0.0776], + [24047,0.1154], + [24510,0.0855], + [25001,0.0714], + [25003,0.0654], + [25005,0.0734], + [25007,0.079], + [25009,0.0597], + [25011,0.053], + [25013,0.0759], + [25015,0.0527], + [25017,0.0466], + [25019,0.0618], + [25021,0.0499], + [25023,0.0601], + [25025,0.0527], + [25027,0.0609], + [26001,0.1063], + [26003,0.1042], + [26005,0.0543], + [26007,0.08], + [26009,0.095], + [26011,0.1106], + [26013,0.1125], + [26015,0.0541], + [26017,0.0721], + [26019,0.0866], + [26021,0.0678], + [26023,0.0665], + [26025,0.0634], + [26027,0.0674], + [26029,0.0814], + [26031,0.107], + [26033,0.095], + [26035,0.0984], + [26037,0.0505], + [26039,0.095], + [26041,0.0846], + [26043,0.0682], + [26045,0.0573], + [26047,0.0954], + [26049,0.0788], + [26051,0.0928], + [26053,0.0889], + [26055,0.0603], + [26057,0.0706], + [26059,0.07], + [26061,0.0767], + [26063,0.0687], + [26065,0.062], + [26067,0.062], + [26069,0.0973], + [26071,0.087], + [26073,0.0593], + [26075,0.0666], + [26077,0.0562], + [26079,0.0943], + [26081,0.0495], + [26083,0.111], + [26085,0.1119], + [26087,0.0959], + [26089,0.0666], + [26091,0.0642], + [26093,0.0636], + [26095,0.0851], + [26097,0.1117], + [26099,0.0792], + [26101,0.085], + [26103,0.0701], + [26105,0.0752], + [26107,0.0793], + [26109,0.0688], + [26111,0.0609], + [26113,0.0776], + [26115,0.061], + [26117,0.0757], + [26119,0.1295], + [26121,0.0769], + [26123,0.0722], + [26125,0.065], + [26127,0.1004], + [26129,0.098], + [26131,0.114], + [26133,0.0853], + [26135,0.1181], + [26137,0.0811], + [26139,0.0479], + [26141,0.1278], + [26143,0.1146], + [26145,0.0748], + [26147,0.0961], + [26149,0.0582], + [26151,0.0851], + [26153,0.1097], + [26155,0.0753], + [26157,0.0858], + [26159,0.0805], + [26161,0.0487], + [26163,0.0966], + [26165,0.0855], + [27001,0.0666], + [27003,0.0415], + [27005,0.0476], + [27007,0.0532], + [27009,0.0505], + [27011,0.0444], + [27013,0.0344], + [27015,0.0457], + [27017,0.0524], + [27019,0.0362], + [27021,0.0713], + [27023,0.0454], + [27025,0.0471], + [27027,0.0341], + [27029,0.1045], + [27031,0.0563], + [27033,0.0523], + [27035,0.0586], + [27037,0.0378], + [27039,0.0417], + [27041,0.0373], + [27043,0.0522], + [27045,0.044], + [27047,0.0433], + [27049,0.0394], + [27051,0.05], + [27053,0.0378], + [27055,0.0443], + [27057,0.0637], + [27059,0.0505], + [27061,0.0661], + [27063,0.0417], + [27065,0.0744], + [27067,0.0424], + [27069,0.049], + [27071,0.0846], + [27073,0.0477], + [27075,0.0458], + [27077,0.0477], + [27079,0.0539], + [27081,0.0433], + [27083,0.0361], + [27085,0.0462], + [27087,0.0563], + [27089,0.0676], + [27091,0.0471], + [27093,0.046], + [27095,0.067], + [27097,0.0625], + [27099,0.0382], + [27101,0.0488], + [27103,0.0306], + [27105,0.0342], + [27107,0.0501], + [27109,0.0345], + [27111,0.0454], + [27113,0.0516], + [27115,0.0613], + [27117,0.0378], + [27119,0.0461], + [27121,0.0365], + [27123,0.0403], + [27125,0.058], + [27127,0.0441], + [27129,0.0549], + [27131,0.0412], + [27133,0.0254], + [27135,0.0368], + [27137,0.0509], + [27139,0.036], + [27141,0.0454], + [27143,0.0462], + [27145,0.0408], + [27147,0.0378], + [27149,0.0325], + [27151,0.0485], + [27153,0.0466], + [27155,0.0461], + [27157,0.0403], + [27159,0.0622], + [27161,0.0482], + [27163,0.0364], + [27165,0.0492], + [27167,0.034], + [27169,0.0373], + [27171,0.0422], + [27173,0.0415], + [28001,0.0833], + [28003,0.0665], + [28005,0.08], + [28007,0.0872], + [28009,0.0933], + [28011,0.0955], + [28013,0.0745], + [28015,0.0947], + [28017,0.097], + [28019,0.0813], + [28021,0.146], + [28023,0.09], + [28025,0.1326], + [28027,0.1176], + [28029,0.0887], + [28031,0.0661], + [28033,0.0534], + [28035,0.0742], + [28037,0.0836], + [28039,0.0824], + [28041,0.0888], + [28043,0.072], + [28045,0.0723], + [28047,0.0672], + [28049,0.0726], + [28051,0.1498], + [28053,0.1585], + [28055,0.1737], + [28057,0.0715], + [28059,0.0798], + [28061,0.085], + [28063,0.1609], + [28065,0.1022], + [28067,0.0618], + [28069,0.1274], + [28071,0.064], + [28073,0.0512], + [28075,0.0751], + [28077,0.0829], + [28079,0.071], + [28081,0.0719], + [28083,0.1261], + [28085,0.066], + [28087,0.0872], + [28089,0.0525], + [28091,0.0821], + [28093,0.0868], + [28095,0.1006], + [28097,0.0923], + [28099,0.0677], + [28101,0.0667], + [28103,0.125], + [28105,0.0718], + [28107,0.1054], + [28109,0.0669], + [28111,0.0915], + [28113,0.0827], + [28115,0.0679], + [28117,0.0748], + [28119,0.1305], + [28121,0.0464], + [28123,0.0549], + [28125,0.1102], + [28127,0.0638], + [28129,0.0578], + [28131,0.0853], + [28133,0.1248], + [28135,0.0926], + [28137,0.0848], + [28139,0.083], + [28141,0.0771], + [28143,0.1177], + [28145,0.0614], + [28147,0.0945], + [28149,0.0764], + [28151,0.1252], + [28153,0.0885], + [28155,0.0858], + [28157,0.1143], + [28159,0.0997], + [28161,0.092], + [28163,0.0994], + [29001,0.0645], + [29003,0.0515], + [29005,0.0539], + [29007,0.0559], + [29009,0.0614], + [29011,0.0629], + [29013,0.0707], + [29015,0.0777], + [29017,0.0676], + [29019,0.0417], + [29021,0.0569], + [29023,0.0704], + [29025,0.0549], + [29027,0.0562], + [29029,0.0814], + [29031,0.0546], + [29033,0.0713], + [29035,0.0895], + [29037,0.0572], + [29039,0.0636], + [29041,0.0579], + [29043,0.0492], + [29045,0.0692], + [29047,0.0542], + [29049,0.0587], + [29051,0.0502], + [29053,0.0597], + [29055,0.0799], + [29057,0.0601], + [29059,0.0759], + [29061,0.0582], + [29063,0.0541], + [29065,0.0676], + [29067,0.0763], + [29069,0.0906], + [29071,0.0646], + [29073,0.0529], + [29075,0.0564], + [29077,0.0486], + [29079,0.0528], + [29081,0.0655], + [29083,0.0649], + [29085,0.0835], + [29087,0.0489], + [29089,0.0539], + [29091,0.0713], + [29093,0.0988], + [29095,0.071], + [29097,0.0529], + [29099,0.0622], + [29101,0.0644], + [29103,0.0461], + [29105,0.0809], + [29107,0.0595], + [29109,0.0588], + [29111,0.0521], + [29113,0.065], + [29115,0.0815], + [29117,0.0502], + [29119,0.0579], + [29121,0.0614], + [29123,0.0694], + [29125,0.0621], + [29127,0.0553], + [29129,0.0508], + [29131,0.0771], + [29133,0.0727], + [29135,0.0598], + [29137,0.064], + [29139,0.0592], + [29141,0.0866], + [29143,0.0741], + [29145,0.0539], + [29147,0.0682], + [29149,0.075], + [29151,0.0466], + [29153,0.0897], + [29155,0.093], + [29157,0.0543], + [29159,0.0613], + [29161,0.0646], + [29163,0.0568], + [29165,0.0511], + [29167,0.0634], + [29169,0.0725], + [29171,0.0505], + [29173,0.0528], + [29175,0.0705], + [29177,0.068], + [29179,0.0832], + [29181,0.082], + [29183,0.0482], + [29185,0.0767], + [29186,0.0662], + [29187,0.0763], + [29189,0.0581], + [29195,0.0561], + [29197,0.074], + [29199,0.048], + [29201,0.0657], + [29203,0.0936], + [29205,0.0601], + [29207,0.078], + [29209,0.0966], + [29211,0.0656], + [29213,0.0977], + [29215,0.0789], + [29217,0.0563], + [29219,0.0615], + [29221,0.0855], + [29223,0.0742], + [29225,0.0604], + [29227,0.0402], + [29229,0.0728], + [29510,0.0757], + [30001,0.0369], + [30003,0.1001], + [30005,0.058], + [30007,0.0537], + [30009,0.039], + [30011,0.0321], + [30013,0.043], + [30015,0.0325], + [30017,0.0322], + [30019,0.0305], + [30021,0.0264], + [30023,0.0436], + [30025,0.0193], + [30027,0.0429], + [30029,0.0646], + [30031,0.0349], + [30033,0.0268], + [30035,0.1056], + [30037,0.046], + [30039,0.0682], + [30041,0.0578], + [30043,0.0461], + [30045,0.0425], + [30047,0.0555], + [30049,0.0372], + [30051,0.0309], + [30053,0.1121], + [30055,0.023], + [30057,0.0462], + [30059,0.043], + [30061,0.0912], + [30063,0.0444], + [30065,0.0407], + [30067,0.056], + [30069,0.0424], + [30071,0.0533], + [30073,0.049], + [30075,0.0308], + [30077,0.0502], + [30079,0.0429], + [30081,0.0605], + [30083,0.0239], + [30085,0.0518], + [30087,0.0566], + [30089,0.0931], + [30091,0.0264], + [30093,0.0493], + [30095,0.0375], + [30097,0.0354], + [30099,0.0376], + [30101,0.0303], + [30103,0.0405], + [30105,0.0303], + [30107,0.0499], + [30109,0.0291], + [30111,0.0372], + [31001,0.0338], + [31003,0.027], + [31005,0.0536], + [31007,0.0367], + [31009,0.0436], + [31011,0.0261], + [31013,0.0314], + [31015,0.0328], + [31017,0.0345], + [31019,0.0276], + [31021,0.0391], + [31023,0.0296], + [31025,0.0373], + [31027,0.0232], + [31029,0.0205], + [31031,0.0246], + [31033,0.0218], + [31035,0.0327], + [31037,0.0297], + [31039,0.0263], + [31041,0.0243], + [31043,0.0373], + [31045,0.0294], + [31047,0.0347], + [31049,0.0275], + [31051,0.0304], + [31053,0.0364], + [31055,0.0362], + [31057,0.0227], + [31059,0.0241], + [31061,0.0317], + [31063,0.0277], + [31065,0.0288], + [31067,0.0413], + [31069,0.0285], + [31071,0.0258], + [31073,0.03], + [31075,0.0234], + [31077,0.0323], + [31079,0.039], + [31081,0.03], + [31083,0.0261], + [31085,0.0287], + [31087,0.0343], + [31089,0.0265], + [31091,0.0426], + [31093,0.0372], + [31095,0.0305], + [31097,0.0383], + [31099,0.0247], + [31101,0.0287], + [31103,0.0275], + [31105,0.0252], + [31107,0.0311], + [31109,0.0298], + [31111,0.0325], + [31113,0.0304], + [31115,0.0368], + [31117,0.0228], + [31119,0.0295], + [31121,0.0379], + [31123,0.0302], + [31125,0.0271], + [31127,0.0384], + [31129,0.0283], + [31131,0.037], + [31133,0.0278], + [31135,0.0211], + [31137,0.0259], + [31139,0.0288], + [31141,0.0298], + [31143,0.0321], + [31145,0.0256], + [31147,0.0365], + [31149,0.026], + [31151,0.0344], + [31153,0.031], + [31155,0.0348], + [31157,0.0362], + [31159,0.0307], + [31161,0.0263], + [31163,0.033], + [31165,0.0248], + [31167,0.028], + [31169,0.0254], + [31171,0.035], + [31173,0.0609], + [31175,0.0302], + [31177,0.0323], + [31179,0.028], + [31181,0.0336], + [31183,0.0286], + [31185,0.0318], + [32001,0.0759], + [32003,0.0799], + [32005,0.0798], + [32007,0.0557], + [32009,0.045], + [32011,0.0589], + [32013,0.0622], + [32015,0.0661], + [32017,0.0747], + [32019,0.102], + [32021,0.1121], + [32023,0.0963], + [32027,0.0718], + [32029,0.0914], + [32031,0.0758], + [32033,0.0603], + [32510,0.0866], + [33001,0.0417], + [33003,0.0421], + [33005,0.0404], + [33007,0.0569], + [33009,0.0345], + [33011,0.0449], + [33013,0.0383], + [33015,0.0461], + [33017,0.04], + [33019,0.0352], + [34001,0.1053], + [34003,0.0544], + [34005,0.0642], + [34007,0.077], + [34009,0.1224], + [34011,0.0991], + [34013,0.0802], + [34015,0.0733], + [34017,0.0637], + [34019,0.0487], + [34021,0.0589], + [34023,0.061], + [34025,0.0606], + [34027,0.0503], + [34029,0.0737], + [34031,0.0825], + [34033,0.0852], + [34035,0.0522], + [34037,0.0643], + [34039,0.0695], + [34041,0.0633], + [35001,0.0621], + [35003,0.0833], + [35005,0.0612], + [35006,0.0856], + [35007,0.0629], + [35009,0.0507], + [35011,0.0476], + [35013,0.073], + [35015,0.0443], + [35017,0.066], + [35019,0.0768], + [35021,0.0503], + [35023,0.0712], + [35025,0.0439], + [35027,0.0602], + [35028,0.0412], + [35029,0.1809], + [35031,0.1013], + [35033,0.1103], + [35035,0.0626], + [35037,0.0657], + [35039,0.0877], + [35041,0.0555], + [35043,0.0716], + [35045,0.0639], + [35047,0.0814], + [35049,0.0544], + [35051,0.0919], + [35053,0.0736], + [35055,0.0991], + [35057,0.098], + [35059,0.0457], + [35061,0.0787], + [36001,0.0489], + [36003,0.0622], + [36005,0.0979], + [36007,0.0664], + [36009,0.07], + [36011,0.0598], + [36013,0.0681], + [36015,0.0625], + [36017,0.0621], + [36019,0.066], + [36021,0.0471], + [36023,0.065], + [36025,0.0656], + [36027,0.0531], + [36029,0.0609], + [36031,0.0688], + [36033,0.0725], + [36035,0.0766], + [36037,0.0553], + [36039,0.0675], + [36041,0.0742], + [36043,0.0678], + [36045,0.0761], + [36047,0.0762], + [36049,0.0785], + [36051,0.0579], + [36053,0.0641], + [36055,0.0579], + [36057,0.0747], + [36059,0.0477], + [36061,0.0612], + [36063,0.0702], + [36065,0.061], + [36067,0.0556], + [36069,0.0522], + [36071,0.0549], + [36073,0.0765], + [36075,0.0807], + [36077,0.057], + [36079,0.049], + [36081,0.0637], + [36083,0.0537], + [36085,0.0744], + [36087,0.0516], + [36089,0.0774], + [36091,0.0466], + [36093,0.0536], + [36095,0.0669], + [36097,0.0701], + [36099,0.0562], + [36101,0.0688], + [36103,0.0538], + [36105,0.0656], + [36107,0.061], + [36109,0.0438], + [36111,0.057], + [36113,0.0658], + [36115,0.0608], + [36117,0.0617], + [36119,0.0513], + [36121,0.0651], + [36123,0.0565], + [37001,0.0568], + [37003,0.0563], + [37005,0.0685], + [37007,0.071], + [37009,0.0686], + [37011,0.0655], + [37013,0.0735], + [37015,0.0791], + [37017,0.0939], + [37019,0.0791], + [37021,0.047], + [37023,0.0623], + [37025,0.0583], + [37027,0.0727], + [37029,0.061], + [37031,0.0623], + [37033,0.0722], + [37035,0.0636], + [37037,0.0489], + [37039,0.071], + [37041,0.079], + [37043,0.0662], + [37045,0.073], + [37047,0.0853], + [37049,0.0692], + [37051,0.0807], + [37053,0.0632], + [37055,0.0844], + [37057,0.0632], + [37059,0.0587], + [37061,0.0639], + [37063,0.0513], + [37065,0.1032], + [37067,0.0601], + [37069,0.0652], + [37071,0.0681], + [37073,0.0594], + [37075,0.1335], + [37077,0.0543], + [37079,0.0625], + [37081,0.0656], + [37083,0.0969], + [37085,0.0739], + [37087,0.0583], + [37089,0.0505], + [37091,0.0742], + [37093,0.0836], + [37095,0.0923], + [37097,0.0631], + [37099,0.0669], + [37101,0.0569], + [37103,0.0664], + [37105,0.0818], + [37107,0.0716], + [37109,0.0616], + [37111,0.0644], + [37113,0.0662], + [37115,0.0625], + [37117,0.0782], + [37119,0.06], + [37121,0.0774], + [37123,0.0639], + [37125,0.0613], + [37127,0.0798], + [37129,0.0595], + [37131,0.0806], + [37133,0.0609], + [37135,0.0465], + [37137,0.0664], + [37139,0.0807], + [37141,0.071], + [37143,0.078], + [37145,0.0777], + [37147,0.0645], + [37149,0.0536], + [37151,0.0655], + [37153,0.0896], + [37155,0.0947], + [37157,0.0749], + [37159,0.0706], + [37161,0.0857], + [37163,0.0648], + [37165,0.1196], + [37167,0.0605], + [37169,0.0607], + [37171,0.0617], + [37173,0.0903], + [37175,0.0585], + [37177,0.0997], + [37179,0.0525], + [37181,0.0935], + [37183,0.0492], + [37185,0.089], + [37187,0.0964], + [37189,0.0519], + [37191,0.0641], + [37193,0.0662], + [37195,0.095], + [37197,0.0568], + [37199,0.0677], + [38001,0.027], + [38003,0.0309], + [38005,0.0648], + [38007,0.0285], + [38009,0.0341], + [38011,0.0179], + [38013,0.0254], + [38015,0.0244], + [38017,0.0242], + [38019,0.0287], + [38021,0.0201], + [38023,0.0149], + [38025,0.0126], + [38027,0.0557], + [38029,0.0557], + [38031,0.0306], + [38033,0.0205], + [38035,0.0277], + [38037,0.0277], + [38039,0.0236], + [38041,0.0208], + [38043,0.0391], + [38045,0.0239], + [38047,0.0291], + [38049,0.0415], + [38051,0.0297], + [38053,0.015], + [38055,0.0397], + [38057,0.0393], + [38059,0.0326], + [38061,0.0127], + [38063,0.0378], + [38065,0.0635], + [38067,0.0558], + [38069,0.0421], + [38071,0.0354], + [38073,0.0282], + [38075,0.0263], + [38077,0.0303], + [38079,0.1137], + [38081,0.0222], + [38083,0.0496], + [38085,0.0469], + [38087,0.0214], + [38089,0.0161], + [38091,0.0224], + [38093,0.0275], + [38095,0.0348], + [38097,0.026], + [38099,0.0461], + [38101,0.0262], + [38103,0.0437], + [38105,0.0119], + [39001,0.092], + [39003,0.058], + [39005,0.0597], + [39007,0.0717], + [39009,0.0687], + [39011,0.0433], + [39013,0.0673], + [39015,0.0747], + [39017,0.0555], + [39019,0.0615], + [39021,0.0507], + [39023,0.0579], + [39025,0.0549], + [39027,0.077], + [39029,0.0647], + [39031,0.0755], + [39033,0.0672], + [39035,0.0623], + [39037,0.0534], + [39039,0.055], + [39041,0.0411], + [39043,0.0643], + [39045,0.052], + [39047,0.06], + [39049,0.0487], + [39051,0.0591], + [39053,0.0772], + [39055,0.0502], + [39057,0.0525], + [39059,0.0674], + [39061,0.0548], + [39063,0.0446], + [39065,0.0572], + [39067,0.0605], + [39069,0.0647], + [39071,0.0777], + [39073,0.0647], + [39075,0.0403], + [39077,0.0801], + [39079,0.0882], + [39081,0.0815], + [39083,0.053], + [39085,0.0552], + [39087,0.0668], + [39089,0.0526], + [39091,0.0503], + [39093,0.0642], + [39095,0.0642], + [39097,0.0475], + [39099,0.0672], + [39101,0.0601], + [39103,0.0503], + [39105,0.0903], + [39107,0.0381], + [39109,0.054], + [39111,0.1103], + [39113,0.0615], + [39115,0.0782], + [39117,0.0597], + [39119,0.0713], + [39121,0.0762], + [39123,0.0766], + [39125,0.055], + [39127,0.0738], + [39129,0.0566], + [39131,0.0909], + [39133,0.0587], + [39135,0.0571], + [39137,0.0455], + [39139,0.0654], + [39141,0.0641], + [39143,0.0574], + [39145,0.0877], + [39147,0.0575], + [39149,0.0511], + [39151,0.0581], + [39153,0.0591], + [39155,0.0726], + [39157,0.0555], + [39159,0.0446], + [39161,0.0489], + [39163,0.0802], + [39165,0.0498], + [39167,0.064], + [39169,0.0465], + [39171,0.0546], + [39173,0.0522], + [39175,0.044], + [40001,0.08], + [40003,0.0246], + [40005,0.0615], + [40007,0.0278], + [40009,0.0282], + [40011,0.0346], + [40013,0.0484], + [40015,0.0542], + [40017,0.0355], + [40019,0.0444], + [40021,0.0603], + [40023,0.0828], + [40025,0.0283], + [40027,0.0368], + [40029,0.0675], + [40031,0.0467], + [40033,0.046], + [40035,0.0552], + [40037,0.0498], + [40039,0.031], + [40041,0.0581], + [40043,0.0313], + [40045,0.03], + [40047,0.0356], + [40049,0.0407], + [40051,0.0401], + [40053,0.0264], + [40055,0.0463], + [40057,0.04], + [40059,0.0274], + [40061,0.0745], + [40063,0.0699], + [40065,0.043], + [40067,0.0461], + [40069,0.07], + [40071,0.057], + [40073,0.0308], + [40075,0.0405], + [40077,0.0741], + [40079,0.0687], + [40081,0.0453], + [40083,0.0401], + [40085,0.0359], + [40087,0.0369], + [40089,0.0808], + [40091,0.092], + [40093,0.0257], + [40095,0.0481], + [40097,0.0487], + [40099,0.0419], + [40101,0.0573], + [40103,0.0367], + [40105,0.0611], + [40107,0.0603], + [40109,0.0419], + [40111,0.0679], + [40113,0.0513], + [40115,0.0676], + [40117,0.0529], + [40119,0.0374], + [40121,0.0614], + [40123,0.0432], + [40125,0.0473], + [40127,0.0746], + [40129,0.0279], + [40131,0.042], + [40133,0.0685], + [40135,0.0684], + [40137,0.0446], + [40139,0.0369], + [40141,0.0465], + [40143,0.0429], + [40145,0.0425], + [40147,0.0425], + [40149,0.0341], + [40151,0.0271], + [40153,0.031], + [41001,0.0834], + [41003,0.0506], + [41005,0.0615], + [41007,0.066], + [41009,0.0842], + [41011,0.0897], + [41013,0.0981], + [41015,0.1012], + [41017,0.0773], + [41019,0.0916], + [41021,0.0802], + [41023,0.105], + [41025,0.0958], + [41027,0.0545], + [41029,0.084], + [41031,0.089], + [41033,0.0938], + [41035,0.0934], + [41037,0.0958], + [41039,0.0691], + [41041,0.0783], + [41043,0.0812], + [41045,0.0793], + [41047,0.0736], + [41049,0.0689], + [41051,0.059], + [41053,0.0683], + [41055,0.075], + [41057,0.0692], + [41059,0.0775], + [41061,0.0725], + [41063,0.0996], + [41065,0.0657], + [41067,0.056], + [41069,0.0618], + [41071,0.0645], + [42001,0.0459], + [42003,0.0536], + [42005,0.0645], + [42007,0.0648], + [42009,0.0661], + [42011,0.0549], + [42013,0.0574], + [42015,0.0544], + [42017,0.0525], + [42019,0.0506], + [42021,0.0698], + [42023,0.0705], + [42025,0.071], + [42027,0.043], + [42029,0.0416], + [42031,0.0627], + [42033,0.0722], + [42035,0.0729], + [42037,0.0622], + [42039,0.058], + [42041,0.0449], + [42043,0.0534], + [42045,0.0552], + [42047,0.0514], + [42049,0.0619], + [42051,0.0787], + [42053,0.0804], + [42055,0.0544], + [42057,0.0708], + [42059,0.0557], + [42061,0.079], + [42063,0.0607], + [42065,0.0641], + [42067,0.0566], + [42069,0.0658], + [42071,0.0461], + [42073,0.0622], + [42075,0.0496], + [42077,0.0607], + [42079,0.0733], + [42081,0.0615], + [42083,0.064], + [42085,0.0586], + [42087,0.0641], + [42089,0.0755], + [42091,0.0466], + [42093,0.0466], + [42095,0.0595], + [42097,0.0672], + [42099,0.0516], + [42101,0.0811], + [42103,0.0758], + [42105,0.0738], + [42107,0.0709], + [42109,0.0516], + [42111,0.073], + [42113,0.0611], + [42115,0.0593], + [42117,0.0693], + [42119,0.0498], + [42121,0.0591], + [42123,0.0527], + [42125,0.0576], + [42127,0.0641], + [42129,0.0575], + [42131,0.0666], + [42133,0.0539], + [44001,0.0672], + [44003,0.0717], + [44005,0.0688], + [44007,0.0815], + [44009,0.0718], + [45001,0.0772], + [45003,0.065], + [45005,0.1217], + [45007,0.0596], + [45009,0.1156], + [45011,0.0968], + [45013,0.0568], + [45015,0.06], + [45017,0.0802], + [45019,0.0516], + [45021,0.083], + [45023,0.0967], + [45025,0.0685], + [45027,0.0837], + [45029,0.0764], + [45031,0.0798], + [45033,0.0963], + [45035,0.0583], + [45037,0.0672], + [45039,0.0867], + [45041,0.0721], + [45043,0.0856], + [45045,0.0533], + [45047,0.069], + [45049,0.0772], + [45051,0.0739], + [45053,0.057], + [45055,0.0645], + [45057,0.0722], + [45059,0.0708], + [45061,0.0907], + [45063,0.0506], + [45065,0.0786], + [45067,0.1054], + [45069,0.106], + [45071,0.0572], + [45073,0.0631], + [45075,0.1134], + [45077,0.0631], + [45079,0.0597], + [45081,0.0569], + [45083,0.0635], + [45085,0.0731], + [45087,0.0861], + [45089,0.0998], + [45091,0.0629], + [46003,0.0262], + [46005,0.0312], + [46007,0.0548], + [46009,0.0281], + [46011,0.0316], + [46013,0.0293], + [46015,0.0328], + [46017,0.0779], + [46019,0.0339], + [46021,0.033], + [46023,0.0382], + [46025,0.0393], + [46027,0.0347], + [46029,0.0332], + [46031,0.0585], + [46033,0.0454], + [46035,0.0283], + [46037,0.0533], + [46039,0.0541], + [46041,0.1455], + [46043,0.0291], + [46045,0.0256], + [46047,0.047], + [46049,0.0316], + [46051,0.0359], + [46053,0.0343], + [46055,0.0267], + [46057,0.0346], + [46059,0.0258], + [46061,0.0349], + [46063,0.0233], + [46065,0.0261], + [46067,0.029], + [46069,0.0282], + [46071,0.0541], + [46073,0.0251], + [46075,0.0364], + [46077,0.0299], + [46079,0.0363], + [46081,0.035], + [46083,0.0243], + [46085,0.0428], + [46087,0.027], + [46089,0.0391], + [46091,0.0413], + [46093,0.0336], + [46095,0.0607], + [46097,0.0323], + [46099,0.0302], + [46101,0.0411], + [46102,null], + [46103,0.0342], + [46105,0.0336], + [46107,0.0334], + [46109,0.0483], + [46111,0.025], + [46115,0.0352], + [46117,0.0259], + [46119,0.0283], + [46121,0.087], + [46123,0.0321], + [46125,0.0292], + [46127,0.0372], + [46129,0.0538], + [46135,0.0302], + [46137,0.0589], + [47001,0.068], + [47003,0.0748], + [47005,0.0876], + [47007,0.0898], + [47009,0.0599], + [47011,0.0606], + [47013,0.0933], + [47015,0.0635], + [47017,0.1004], + [47019,0.0771], + [47021,0.0549], + [47023,0.0678], + [47025,0.0864], + [47027,0.0908], + [47029,0.0903], + [47031,0.0637], + [47033,0.0766], + [47035,0.0794], + [47037,0.0502], + [47039,0.0951], + [47041,0.0817], + [47043,0.0626], + [47045,0.0822], + [47047,0.072], + [47049,0.0848], + [47051,0.0613], + [47053,0.0891], + [47055,0.061], + [47057,0.0817], + [47059,0.0806], + [47061,0.0934], + [47063,0.0737], + [47065,0.0619], + [47067,0.0981], + [47069,0.0929], + [47071,0.0896], + [47073,0.0733], + [47075,0.0982], + [47077,0.0862], + [47079,0.0805], + [47081,0.0658], + [47083,0.0987], + [47085,0.0781], + [47087,0.0877], + [47089,0.074], + [47091,0.0686], + [47093,0.0544], + [47095,0.0922], + [47097,0.098], + [47099,0.0812], + [47101,0.0896], + [47103,0.0535], + [47105,0.0667], + [47107,0.0752], + [47109,0.106], + [47111,0.0653], + [47113,0.0677], + [47115,0.0788], + [47117,0.0626], + [47119,0.0594], + [47121,0.0866], + [47123,0.076], + [47125,0.0665], + [47127,0.0507], + [47129,0.088], + [47131,0.0955], + [47133,0.0789], + [47135,0.0808], + [47137,0.0886], + [47139,0.0788], + [47141,0.0687], + [47143,0.0841], + [47145,0.0767], + [47147,0.0568], + [47149,0.0524], + [47151,0.1165], + [47153,0.0743], + [47155,0.0713], + [47157,0.0761], + [47159,0.0638], + [47161,0.0923], + [47163,0.0664], + [47165,0.0526], + [47167,0.0827], + [47169,0.0704], + [47171,0.0913], + [47173,0.0788], + [47175,0.0958], + [47177,0.0677], + [47179,0.063], + [47181,0.087], + [47183,0.0855], + [47185,0.074], + [47187,0.0453], + [47189,0.0528], + [48001,0.0466], + [48003,0.0299], + [48005,0.0523], + [48007,0.0553], + [48009,0.045], + [48011,0.0319], + [48013,0.0494], + [48015,0.0477], + [48017,0.0504], + [48019,0.0477], + [48021,0.0486], + [48023,0.0424], + [48025,0.058], + [48027,0.0582], + [48029,0.0467], + [48031,0.0365], + [48033,0.0307], + [48035,0.0516], + [48037,0.0628], + [48039,0.0508], + [48041,0.0398], + [48043,0.0462], + [48045,0.0424], + [48047,0.0772], + [48049,0.0517], + [48051,0.0475], + [48053,0.043], + [48055,0.052], + [48057,0.0476], + [48059,0.0444], + [48061,0.0832], + [48063,0.0609], + [48065,0.0333], + [48067,0.0763], + [48069,0.0398], + [48071,0.0576], + [48073,0.058], + [48075,0.0363], + [48077,0.0456], + [48079,0.0508], + [48081,0.0431], + [48083,0.0609], + [48085,0.0455], + [48087,0.0405], + [48089,0.0444], + [48091,0.0453], + [48093,0.0482], + [48095,0.0297], + [48097,0.0385], + [48099,0.0595], + [48101,0.0612], + [48103,0.0399], + [48105,0.0378], + [48107,0.0467], + [48109,0.0415], + [48111,0.0292], + [48113,0.0541], + [48115,0.0486], + [48117,0.0361], + [48119,0.0603], + [48121,0.0443], + [48123,0.0382], + [48125,0.0631], + [48127,0.0377], + [48129,0.0481], + [48131,0.0557], + [48133,0.0482], + [48135,0.0344], + [48137,0.0427], + [48139,0.0492], + [48141,0.064], + [48143,0.0424], + [48145,0.0548], + [48147,0.0531], + [48149,0.0343], + [48151,0.0451], + [48153,0.0712], + [48155,0.0432], + [48157,0.0451], + [48159,0.0515], + [48161,0.0562], + [48163,0.0357], + [48165,0.0326], + [48167,0.0561], + [48169,0.0365], + [48171,0.0352], + [48173,0.0265], + [48175,0.0409], + [48177,0.0385], + [48179,0.0402], + [48181,0.0484], + [48183,0.0485], + [48185,0.0476], + [48187,0.0432], + [48189,0.0938], + [48191,0.0625], + [48193,0.046], + [48195,0.0253], + [48197,0.0492], + [48199,0.0625], + [48201,0.0498], + [48203,0.0549], + [48205,0.0252], + [48207,0.0393], + [48209,0.0427], + [48211,0.024], + [48213,0.0558], + [48215,0.0876], + [48217,0.0527], + [48219,0.0385], + [48221,0.0492], + [48223,0.0468], + [48225,0.0496], + [48227,0.0438], + [48229,0.0631], + [48231,0.0591], + [48233,0.0436], + [48235,0.0372], + [48237,0.0374], + [48239,0.0392], + [48241,0.0814], + [48243,0.0357], + [48245,0.0828], + [48247,0.0605], + [48249,0.0522], + [48251,0.0504], + [48253,0.055], + [48255,0.0365], + [48257,0.0514], + [48259,0.0404], + [48261,0.0296], + [48263,0.0351], + [48265,0.0438], + [48267,0.0388], + [48269,0.04], + [48271,0.0724], + [48273,0.0545], + [48275,0.0426], + [48277,0.0608], + [48279,0.0582], + [48281,0.0561], + [48283,0.0308], + [48285,0.0391], + [48287,0.0398], + [48289,0.0532], + [48291,0.0716], + [48293,0.0584], + [48295,0.0337], + [48297,0.0356], + [48299,0.0517], + [48301,0.0513], + [48303,0.0394], + [48305,0.0437], + [48307,0.0421], + [48309,0.0504], + [48311,0.0198], + [48313,0.0486], + [48315,0.0645], + [48317,0.0339], + [48319,0.0459], + [48321,0.0784], + [48323,0.1095], + [48325,0.0491], + [48327,0.0474], + [48329,0.0287], + [48331,0.062], + [48333,0.0434], + [48335,0.0427], + [48337,0.0397], + [48339,0.0441], + [48341,0.0347], + [48343,0.0782], + [48345,0.0423], + [48347,0.0533], + [48349,0.052], + [48351,0.0827], + [48353,0.0428], + [48355,0.0511], + [48357,0.0298], + [48359,0.0361], + [48361,0.0797], + [48363,0.0514], + [48365,0.0494], + [48367,0.0456], + [48369,0.0304], + [48371,0.0415], + [48373,0.0643], + [48375,0.0395], + [48377,0.1164], + [48379,0.0492], + [48381,0.0345], + [48383,0.0318], + [48385,0.0623], + [48387,0.0776], + [48389,0.0401], + [48391,0.0425], + [48393,0.0356], + [48395,0.0537], + [48397,0.0451], + [48399,0.0424], + [48401,0.0492], + [48403,0.1056], + [48405,0.0955], + [48407,0.0576], + [48409,0.0623], + [48411,0.0417], + [48413,0.0303], + [48415,0.0332], + [48417,0.0274], + [48419,0.0584], + [48421,0.0312], + [48423,0.052], + [48425,0.0513], + [48427,0.1363], + [48429,0.0436], + [48431,0.0296], + [48433,0.0387], + [48435,0.0356], + [48437,0.0611], + [48439,0.0503], + [48441,0.0421], + [48443,0.0458], + [48445,0.0429], + [48447,0.0396], + [48449,0.063], + [48451,0.0403], + [48453,0.0408], + [48455,0.0601], + [48457,0.0797], + [48459,0.0513], + [48461,0.032], + [48463,0.0568], + [48465,0.0574], + [48467,0.0528], + [48469,0.0416], + [48471,0.0543], + [48473,0.0511], + [48475,0.0358], + [48477,0.0459], + [48479,0.0508], + [48481,0.0466], + [48483,0.0357], + [48485,0.0487], + [48487,0.0491], + [48489,0.1238], + [48491,0.0436], + [48493,0.0415], + [48495,0.0438], + [48497,0.0487], + [48499,0.0596], + [48501,0.03], + [48503,0.0407], + [48505,0.0519], + [48507,0.1213], + [49001,0.0404], + [49003,0.0388], + [49005,0.0321], + [49007,0.0514], + [49009,0.0418], + [49011,0.0359], + [49013,0.0364], + [49015,0.0535], + [49017,0.0879], + [49019,0.0639], + [49021,0.0454], + [49023,0.0409], + [49025,0.0477], + [49027,0.0349], + [49029,0.0343], + [49031,0.0717], + [49033,0.0388], + [49035,0.0369], + [49037,0.0775], + [49039,0.0456], + [49041,0.0451], + [49043,0.0343], + [49045,0.0481], + [49047,0.0358], + [49049,0.0349], + [49051,0.0379], + [49053,0.044], + [49055,0.0945], + [49057,0.044], + [50001,0.0371], + [50003,0.0459], + [50005,0.0482], + [50007,0.0303], + [50009,0.0592], + [50011,0.0395], + [50013,0.0447], + [50015,0.0512], + [50017,0.0383], + [50019,0.0626], + [50021,0.0472], + [50023,0.0386], + [50025,0.0408], + [50027,0.0368], + [51001,0.067], + [51003,0.045], + [51005,0.0593], + [51007,0.0528], + [51009,0.0544], + [51011,0.0573], + [51013,0.0328], + [51015,0.047], + [51017,0.0448], + [51019,0.0512], + [51021,0.0604], + [51023,0.0489], + [51025,0.0809], + [51027,0.1049], + [51029,0.0682], + [51031,0.0538], + [51033,0.0619], + [51035,0.0673], + [51036,0.06], + [51037,0.0677], + [51041,0.0514], + [51043,0.044], + [51045,0.0635], + [51047,0.0502], + [51049,0.0615], + [51051,0.102], + [51053,0.0647], + [51057,0.0639], + [51059,0.0419], + [51061,0.046], + [51063,0.0465], + [51065,0.0438], + [51067,0.0537], + [51069,0.0471], + [51071,0.062], + [51073,0.0484], + [51075,0.048], + [51077,0.0777], + [51079,0.0442], + [51081,0.065], + [51083,0.0781], + [51085,0.0457], + [51087,0.0511], + [51089,0.077], + [51091,0.0388], + [51093,0.0526], + [51095,0.0493], + [51097,0.0579], + [51099,0.054], + [51101,0.0518], + [51103,0.0767], + [51105,0.082], + [51107,0.0426], + [51109,0.0509], + [51111,0.0592], + [51113,0.0404], + [51115,0.0465], + [51117,0.0774], + [51119,0.0505], + [51121,0.0512], + [51125,0.0494], + [51127,0.0453], + [51131,0.0758], + [51133,0.0707], + [51135,0.0535], + [51137,0.0531], + [51139,0.0808], + [51141,0.0672], + [51143,0.0637], + [51145,0.0455], + [51147,0.0767], + [51149,0.0633], + [51153,0.0491], + [51155,0.0612], + [51157,0.0479], + [51159,0.0546], + [51161,0.0458], + [51163,0.0534], + [51165,0.0469], + [51167,0.079], + [51169,0.0586], + [51171,0.0501], + [51173,0.0793], + [51175,0.0491], + [51177,0.0542], + [51179,0.0534], + [51181,0.0622], + [51183,0.0781], + [51185,0.0815], + [51187,0.0565], + [51191,0.0578], + [51193,0.0648], + [51195,0.095], + [51197,0.0645], + [51199,0.0502], + [51510,0.0385], + [51520,0.064], + [51530,0.0581], + [51540,0.0434], + [51550,0.0529], + [51570,0.058], + [51580,0.08], + [51590,0.0871], + [51595,0.0821], + [51600,0.0413], + [51610,0.0362], + [51620,0.0786], + [51630,0.0612], + [51640,0.0738], + [51650,0.0677], + [51660,0.0611], + [51670,0.0901], + [51678,0.0779], + [51680,0.064], + [51683,0.0502], + [51685,0.0479], + [51690,0.0994], + [51700,0.0628], + [51710,0.0639], + [51720,0.0775], + [51730,0.1074], + [51735,0.0456], + [51740,0.073], + [51750,0.0675], + [51760,0.0616], + [51770,0.0588], + [51775,0.0518], + [51790,0.0517], + [51800,0.0578], + [51810,0.0495], + [51820,0.0536], + [51830,0.0735], + [51840,0.0514], + [53001,0.0714], + [53003,0.0537], + [53005,0.0748], + [53007,0.0615], + [53009,0.084], + [53011,0.0702], + [53013,0.0713], + [53015,0.0806], + [53017,0.0711], + [53019,0.1138], + [53021,0.0833], + [53023,0.0656], + [53025,0.0743], + [53027,0.1011], + [53029,0.066], + [53031,0.0801], + [53033,0.0468], + [53035,0.0611], + [53037,0.0693], + [53039,0.0774], + [53041,0.0905], + [53043,0.0576], + [53045,0.0835], + [53047,0.0713], + [53049,0.0988], + [53051,0.1], + [53053,0.07], + [53055,0.0499], + [53057,0.0724], + [53059,0.0823], + [53061,0.0522], + [53063,0.0696], + [53065,0.093], + [53067,0.0648], + [53069,0.0964], + [53071,0.0615], + [53073,0.0656], + [53075,0.0521], + [53077,0.0868], + [54001,0.0675], + [54003,0.0549], + [54005,0.093], + [54007,0.0948], + [54009,0.0728], + [54011,0.0551], + [54013,0.0975], + [54015,0.1091], + [54017,0.0501], + [54019,0.0838], + [54021,0.0653], + [54023,0.0771], + [54025,0.0692], + [54027,0.0636], + [54029,0.0804], + [54031,0.0847], + [54033,0.0539], + [54035,0.0668], + [54037,0.0467], + [54039,0.059], + [54041,0.0636], + [54043,0.0962], + [54045,0.1055], + [54047,0.1312], + [54049,0.06], + [54051,0.0766], + [54053,0.0946], + [54055,0.0766], + [54057,0.0795], + [54059,0.1202], + [54061,0.0443], + [54063,0.0586], + [54065,0.0596], + [54067,0.0914], + [54069,0.0558], + [54071,0.0489], + [54073,0.0713], + [54075,0.0868], + [54077,0.0603], + [54079,0.0557], + [54081,0.072], + [54083,0.0725], + [54085,0.0623], + [54087,0.1005], + [54089,0.0717], + [54091,0.0533], + [54093,0.0637], + [54095,0.0913], + [54097,0.0676], + [54099,0.0688], + [54101,0.0861], + [54103,0.1029], + [54105,0.0968], + [54107,0.0596], + [54109,0.0953], + [55001,0.0883], + [55003,0.0749], + [55005,0.0577], + [55007,0.0958], + [55009,0.0484], + [55011,0.0562], + [55013,0.0804], + [55015,0.0419], + [55017,0.0538], + [55019,0.0546], + [55021,0.0527], + [55023,0.0706], + [55025,0.037], + [55027,0.0537], + [55029,0.0817], + [55031,0.0568], + [55033,0.0521], + [55035,0.0449], + [55037,0.0748], + [55039,0.0491], + [55041,0.0867], + [55043,0.0481], + [55045,0.0451], + [55047,0.0643], + [55049,0.0512], + [55051,0.0947], + [55053,0.0586], + [55055,0.0498], + [55057,0.0645], + [55059,0.0606], + [55061,0.0504], + [55063,0.0436], + [55065,0.0422], + [55067,0.0753], + [55069,0.0622], + [55071,0.0604], + [55073,0.0503], + [55075,0.0675], + [55077,0.0716], + [55078,0.1238], + [55079,0.0687], + [55081,0.054], + [55083,0.062], + [55085,0.0674], + [55087,0.0476], + [55089,0.0423], + [55091,0.0476], + [55093,0.0442], + [55095,0.0573], + [55097,0.0557], + [55099,0.054], + [55101,0.0659], + [55103,0.0505], + [55105,0.0612], + [55107,0.0655], + [55109,0.0447], + [55111,0.0499], + [55113,0.0893], + [55115,0.0593], + [55117,0.0454], + [55119,0.0533], + [55121,0.0456], + [55123,0.0483], + [55125,0.0844], + [55127,0.0554], + [55129,0.0623], + [55131,0.0454], + [55133,0.0443], + [55135,0.0566], + [55137,0.0714], + [55139,0.0521], + [55141,0.0667], + [56001,0.0345], + [56003,0.0448], + [56005,0.0334], + [56007,0.0398], + [56009,0.0301], + [56011,0.0388], + [56013,0.0496], + [56015,0.0359], + [56017,0.0414], + [56019,0.0449], + [56021,0.0432], + [56023,0.0514], + [56025,0.0402], + [56027,0.0333], + [56029,0.0445], + [56031,0.0385], + [56033,0.0462], + [56035,0.0427], + [56037,0.0398], + [56039,0.0463], + [56041,0.048], + [56043,0.0433], + [56045,0.0327] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2015.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2015.json new file mode 100644 index 0000000..9b558ba --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2015.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2015", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2015"], + [1001,0.0519], + [1003,0.0554], + [1005,0.0889], + [1007,0.0661], + [1009,0.054], + [1011,0.0793], + [1013,0.076], + [1015,0.0704], + [1017,0.0605], + [1019,0.0546], + [1021,0.0564], + [1023,0.0909], + [1025,0.1174], + [1027,0.0613], + [1029,0.0602], + [1031,0.0595], + [1033,0.0792], + [1035,0.0923], + [1037,0.0669], + [1039,0.0714], + [1041,0.06], + [1043,0.0526], + [1045,0.0636], + [1047,0.0959], + [1049,0.0607], + [1051,0.0502], + [1053,0.0703], + [1055,0.0618], + [1057,0.0702], + [1059,0.0643], + [1061,0.0592], + [1063,0.1108], + [1065,0.0777], + [1067,0.0679], + [1069,0.0625], + [1071,0.0665], + [1073,0.0577], + [1075,0.0632], + [1077,0.0695], + [1079,0.0773], + [1081,0.0525], + [1083,0.0548], + [1085,0.1155], + [1087,0.0805], + [1089,0.0548], + [1091,0.0766], + [1093,0.0695], + [1095,0.0578], + [1097,0.0688], + [1099,0.1007], + [1101,0.061], + [1103,0.0588], + [1105,0.0999], + [1107,0.0677], + [1109,0.0658], + [1111,0.059], + [1113,0.0593], + [1115,0.0523], + [1117,0.0421], + [1119,0.0799], + [1121,0.0657], + [1123,0.0609], + [1125,0.0545], + [1127,0.0722], + [1129,0.0891], + [1131,0.1466], + [1133,0.0753], + [2013,0.0323], + [2016,0.0388], + [2020,0.0505], + [2050,0.1441], + [2060,0.0942], + [2068,0.0877], + [2070,0.0969], + [2090,0.0547], + [2100,0.0983], + [2105,0.1514], + [2110,0.0473], + [2122,0.0785], + [2130,0.069], + [2150,0.0483], + [2158,null], + [2164,0.1252], + [2170,0.077], + [2180,0.1196], + [2185,0.0573], + [2188,0.1605], + [2195,0.0895], + [2198,0.1261], + [2220,0.046], + [2230,0.1155], + [2240,0.1065], + [2261,0.0867], + [2275,0.0794], + [2282,0.0849], + [2290,0.1839], + [4001,0.1327], + [4003,0.0727], + [4005,0.0649], + [4007,0.0788], + [4009,0.0733], + [4011,0.079], + [4012,0.0744], + [4013,0.0511], + [4015,0.0792], + [4017,0.0964], + [4019,0.0546], + [4021,0.0626], + [4023,0.1144], + [4025,0.056], + [4027,0.2165], + [5001,0.0416], + [5003,0.0775], + [5005,0.0548], + [5007,0.0376], + [5009,0.0487], + [5011,0.0607], + [5013,0.0544], + [5015,0.0456], + [5017,0.0907], + [5019,0.0555], + [5021,0.0659], + [5023,0.0692], + [5025,0.0563], + [5027,0.0653], + [5029,0.0609], + [5031,0.0442], + [5033,0.0519], + [5035,0.0617], + [5037,0.0541], + [5039,0.0721], + [5041,0.073], + [5043,0.0696], + [5045,0.0466], + [5047,0.0492], + [5049,0.0521], + [5051,0.0546], + [5053,0.0454], + [5055,0.0517], + [5057,0.0494], + [5059,0.0504], + [5061,0.0421], + [5063,0.0645], + [5065,0.0661], + [5067,0.0751], + [5069,0.0704], + [5071,0.0575], + [5073,0.076], + [5075,0.06], + [5077,0.0667], + [5079,0.0613], + [5081,0.0545], + [5083,0.0574], + [5085,0.0419], + [5087,0.0384], + [5089,0.0517], + [5091,0.0499], + [5093,0.0898], + [5095,0.0605], + [5097,0.0679], + [5099,0.0498], + [5101,0.0483], + [5103,0.0633], + [5105,0.0612], + [5107,0.0756], + [5109,0.059], + [5111,0.0558], + [5113,0.0579], + [5115,0.0528], + [5117,0.0469], + [5119,0.0457], + [5121,0.0715], + [5123,0.0722], + [5125,0.0407], + [5127,0.0479], + [5129,0.0565], + [5131,0.048], + [5133,0.0612], + [5135,0.0688], + [5137,0.0625], + [5139,0.0613], + [5141,0.0671], + [5143,0.0352], + [5145,0.0621], + [5147,0.064], + [5149,0.0509], + [6001,0.0473], + [6003,0.0733], + [6005,0.066], + [6007,0.0717], + [6009,0.0638], + [6011,0.1538], + [6013,0.0502], + [6015,0.0854], + [6017,0.0569], + [6019,0.1019], + [6021,0.0872], + [6023,0.0559], + [6025,0.2407], + [6027,0.0579], + [6029,0.1022], + [6031,0.105], + [6033,0.076], + [6035,0.0722], + [6037,0.0662], + [6039,0.105], + [6041,0.0354], + [6043,0.0714], + [6045,0.0581], + [6047,0.1135], + [6049,0.0856], + [6051,0.0611], + [6053,0.0809], + [6055,0.0462], + [6057,0.0542], + [6059,0.0447], + [6061,0.0505], + [6063,0.1028], + [6065,0.067], + [6067,0.0599], + [6069,0.0769], + [6071,0.0643], + [6073,0.0519], + [6075,0.0362], + [6077,0.0888], + [6079,0.0472], + [6081,0.034], + [6083,0.0529], + [6085,0.0417], + [6087,0.075], + [6089,0.0777], + [6091,0.0878], + [6093,0.0936], + [6095,0.0613], + [6097,0.0448], + [6099,0.0949], + [6101,0.1071], + [6103,0.079], + [6105,0.0778], + [6107,0.1153], + [6109,0.0704], + [6111,0.0565], + [6113,0.0644], + [6115,0.0925], + [8001,0.0435], + [8003,0.0516], + [8005,0.0372], + [8007,0.0404], + [8009,0.0203], + [8011,0.0393], + [8013,0.0317], + [8014,0.033], + [8015,0.0342], + [8017,0.0267], + [8019,0.0366], + [8021,0.057], + [8023,0.0641], + [8025,0.0443], + [8027,0.0352], + [8029,0.0572], + [8031,0.0369], + [8033,0.031], + [8035,0.031], + [8037,0.0314], + [8039,0.0315], + [8041,0.0459], + [8043,0.0617], + [8045,0.0415], + [8047,0.0312], + [8049,0.0323], + [8051,0.0295], + [8053,0.0295], + [8055,0.0772], + [8057,0.0372], + [8059,0.0353], + [8061,0.0265], + [8063,0.0241], + [8065,0.0388], + [8067,0.0345], + [8069,0.0331], + [8071,0.0562], + [8073,0.0341], + [8075,0.0305], + [8077,0.0554], + [8079,0.036], + [8081,0.0455], + [8083,0.0568], + [8085,0.0505], + [8087,0.038], + [8089,0.058], + [8091,0.0432], + [8093,0.0344], + [8095,0.0238], + [8097,0.0387], + [8099,0.0404], + [8101,0.0565], + [8103,0.0524], + [8105,0.0631], + [8107,0.0325], + [8109,0.0614], + [8111,0.0426], + [8113,0.0379], + [8115,0.034], + [8117,0.0253], + [8119,0.0446], + [8121,0.0255], + [8123,0.0385], + [8125,0.0261], + [9001,0.0534], + [9003,0.0588], + [9005,0.0516], + [9007,0.0495], + [9009,0.0622], + [9011,0.0592], + [9013,0.0498], + [9015,0.0633], + [10001,0.0539], + [10003,0.047], + [10005,0.0494], + [11001,0.0689], + [12001,0.0462], + [12003,0.0559], + [12005,0.0548], + [12007,0.0484], + [12009,0.06], + [12011,0.0513], + [12013,0.0613], + [12015,0.0601], + [12017,0.0753], + [12019,0.0505], + [12021,0.0526], + [12023,0.055], + [12027,0.0582], + [12029,0.0623], + [12031,0.0581], + [12033,0.0559], + [12035,0.0629], + [12037,0.0471], + [12039,0.072], + [12041,0.0566], + [12043,0.0715], + [12045,0.0525], + [12047,0.065], + [12049,0.0699], + [12051,0.1065], + [12053,0.0696], + [12055,0.0751], + [12057,0.0506], + [12059,0.0616], + [12061,0.0686], + [12063,0.059], + [12065,0.0597], + [12067,0.0459], + [12069,0.0552], + [12071,0.0517], + [12073,0.0504], + [12075,0.0579], + [12077,0.0588], + [12079,0.0615], + [12081,0.0507], + [12083,0.0651], + [12085,0.0537], + [12086,0.0588], + [12087,0.0349], + [12089,0.0515], + [12091,0.0454], + [12093,0.063], + [12095,0.0503], + [12097,0.0577], + [12099,0.0512], + [12101,0.0588], + [12103,0.0496], + [12105,0.0633], + [12107,0.0764], + [12109,0.0395], + [12111,0.0638], + [12113,0.0484], + [12115,0.0508], + [12117,0.0493], + [12119,0.077], + [12121,0.0546], + [12123,0.0673], + [12125,0.0488], + [12127,0.0586], + [12129,0.0467], + [12131,0.047], + [12133,0.0595], + [13001,0.073], + [13003,0.0574], + [13005,0.0574], + [13007,0.073], + [13009,0.0766], + [13011,0.0557], + [13013,0.0525], + [13015,0.0588], + [13017,0.09], + [13019,0.0717], + [13021,0.0665], + [13023,0.0853], + [13025,0.0744], + [13027,0.0608], + [13029,0.0525], + [13031,0.0606], + [13033,0.0812], + [13035,0.0664], + [13037,0.062], + [13039,0.0555], + [13043,0.0568], + [13045,0.0672], + [13047,0.0522], + [13049,0.064], + [13051,0.0584], + [13053,0.0877], + [13055,0.0617], + [13057,0.0467], + [13059,0.0608], + [13061,0.1176], + [13063,0.0762], + [13065,0.0703], + [13067,0.0507], + [13069,0.0672], + [13071,0.0638], + [13073,0.0501], + [13075,0.0667], + [13077,0.0531], + [13079,0.0629], + [13081,0.0684], + [13083,0.0548], + [13085,0.051], + [13087,0.0679], + [13089,0.0603], + [13091,0.0838], + [13093,0.0754], + [13095,0.0771], + [13097,0.0633], + [13099,0.0693], + [13101,0.0466], + [13103,0.0511], + [13105,0.0742], + [13107,0.0874], + [13109,0.0558], + [13111,0.0619], + [13113,0.0518], + [13115,0.0667], + [13117,0.0453], + [13119,0.0628], + [13121,0.0598], + [13123,0.0603], + [13125,0.0665], + [13127,0.0607], + [13129,0.059], + [13131,0.0601], + [13133,0.0661], + [13135,0.0518], + [13137,0.0571], + [13139,0.0486], + [13141,0.0981], + [13143,0.0654], + [13145,0.0524], + [13147,0.0619], + [13149,0.0643], + [13151,0.0616], + [13153,0.0582], + [13155,0.0836], + [13157,0.0484], + [13159,0.0551], + [13161,0.0665], + [13163,0.0903], + [13165,0.0831], + [13167,0.07], + [13169,0.0551], + [13171,0.0768], + [13173,0.0666], + [13175,0.0755], + [13177,0.0531], + [13179,0.0631], + [13181,0.0675], + [13183,0.0587], + [13185,0.059], + [13187,0.054], + [13189,0.0832], + [13191,0.0649], + [13193,0.0918], + [13195,0.0554], + [13197,0.0842], + [13199,0.0801], + [13201,0.0543], + [13205,0.0672], + [13207,0.0581], + [13209,0.0867], + [13211,0.0549], + [13213,0.0736], + [13215,0.0746], + [13217,0.0675], + [13219,0.0442], + [13221,0.0554], + [13223,0.052], + [13225,0.0792], + [13227,0.0532], + [13229,0.0624], + [13231,0.0572], + [13233,0.0662], + [13235,0.0658], + [13237,0.0807], + [13239,0.0685], + [13241,0.067], + [13243,0.0911], + [13245,0.0739], + [13247,0.0652], + [13249,0.0664], + [13251,0.0831], + [13253,0.0809], + [13255,0.0804], + [13257,0.0653], + [13259,0.0691], + [13261,0.0831], + [13263,0.0772], + [13265,0.0776], + [13267,0.0617], + [13269,0.0916], + [13271,0.087], + [13273,0.0746], + [13275,0.0723], + [13277,0.061], + [13279,0.0872], + [13281,0.0787], + [13283,0.0848], + [13285,0.0607], + [13287,0.0677], + [13289,0.0911], + [13291,0.0534], + [13293,0.0724], + [13295,0.0597], + [13297,0.0541], + [13299,0.065], + [13301,0.078], + [13303,0.0699], + [13305,0.0724], + [13307,0.094], + [13309,0.1086], + [13311,0.0518], + [13313,0.0638], + [13315,0.0784], + [13317,0.0722], + [13319,0.073], + [13321,0.0648], + [15001,0.044], + [15003,0.0334], + [15005,null], + [15007,0.0403], + [15009,0.0371], + [16001,0.0368], + [16003,0.077], + [16005,0.0405], + [16007,0.0453], + [16009,0.0664], + [16011,0.0414], + [16013,0.0359], + [16015,0.0639], + [16017,0.0605], + [16019,0.0353], + [16021,0.0556], + [16023,0.0455], + [16025,0.0355], + [16027,0.0506], + [16029,0.0415], + [16031,0.0339], + [16033,0.038], + [16035,0.0814], + [16037,0.0672], + [16039,0.0477], + [16041,0.0316], + [16043,0.0367], + [16045,0.0534], + [16047,0.035], + [16049,0.063], + [16051,0.0346], + [16053,0.0331], + [16055,0.0513], + [16057,0.035], + [16059,0.0708], + [16061,0.0579], + [16063,0.0459], + [16065,0.0272], + [16067,0.0372], + [16069,0.0376], + [16071,0.0358], + [16073,0.0486], + [16075,0.0502], + [16077,0.0472], + [16079,0.0788], + [16081,0.0349], + [16083,0.0369], + [16085,0.0622], + [16087,0.0589], + [17001,0.0498], + [17003,0.0917], + [17005,0.0531], + [17007,0.0652], + [17009,0.0356], + [17011,0.0643], + [17013,0.0675], + [17015,0.0546], + [17017,0.0565], + [17019,0.0518], + [17021,0.0658], + [17023,0.0621], + [17025,0.0709], + [17027,0.0451], + [17029,0.0605], + [17031,0.0621], + [17033,0.0592], + [17035,0.0527], + [17037,0.0559], + [17039,0.0557], + [17041,0.0492], + [17043,0.0475], + [17045,0.0625], + [17047,0.0595], + [17049,0.048], + [17051,0.0658], + [17053,0.0541], + [17055,0.0808], + [17057,0.0762], + [17059,0.0669], + [17061,0.0614], + [17063,0.0692], + [17065,0.0549], + [17067,0.0618], + [17069,0.0845], + [17071,0.06], + [17073,0.0614], + [17075,0.0565], + [17077,0.0556], + [17079,0.0623], + [17081,0.0676], + [17083,0.0634], + [17085,0.0548], + [17087,0.0854], + [17089,0.0576], + [17091,0.0674], + [17093,0.0518], + [17095,0.0609], + [17097,0.0539], + [17099,0.0697], + [17101,0.071], + [17103,0.0534], + [17105,0.0538], + [17107,0.054], + [17109,0.0609], + [17111,0.0541], + [17113,0.048], + [17115,0.07], + [17117,0.0632], + [17119,0.0601], + [17121,0.0676], + [17123,0.0662], + [17125,0.0713], + [17127,0.0725], + [17129,0.047], + [17131,0.0626], + [17133,0.0438], + [17135,0.0756], + [17137,0.05], + [17139,0.0436], + [17141,0.0617], + [17143,0.0686], + [17145,0.0713], + [17147,0.0503], + [17149,0.0518], + [17151,0.0701], + [17153,0.0886], + [17155,0.0618], + [17157,0.0543], + [17159,0.0586], + [17161,0.064], + [17163,0.0658], + [17165,0.0773], + [17167,0.0519], + [17169,0.0583], + [17171,0.0583], + [17173,0.0589], + [17175,0.0663], + [17177,0.066], + [17179,0.0626], + [17181,0.0768], + [17183,0.0707], + [17185,0.0564], + [17187,0.0522], + [17189,0.0379], + [17191,0.0688], + [17193,0.0573], + [17195,0.0618], + [17197,0.0616], + [17199,0.0618], + [17201,0.07], + [17203,0.0507], + [18001,0.0382], + [18003,0.0461], + [18005,0.0362], + [18007,0.0448], + [18009,0.0603], + [18011,0.0369], + [18013,0.0478], + [18015,0.0434], + [18017,0.0459], + [18019,0.045], + [18021,0.053], + [18023,0.0403], + [18025,0.0604], + [18027,0.0378], + [18029,0.0513], + [18031,0.0407], + [18033,0.0412], + [18035,0.057], + [18037,0.0339], + [18039,0.0389], + [18041,0.0657], + [18043,0.0428], + [18045,0.0593], + [18047,0.0508], + [18049,0.048], + [18051,0.038], + [18053,0.0542], + [18055,0.0688], + [18057,0.0338], + [18059,0.0422], + [18061,0.0458], + [18063,0.0383], + [18065,0.0532], + [18067,0.0499], + [18069,0.0438], + [18071,0.0398], + [18073,0.0582], + [18075,0.05], + [18077,0.0485], + [18079,0.0513], + [18081,0.0408], + [18083,0.0459], + [18085,0.0407], + [18087,0.0366], + [18089,0.0682], + [18091,0.0628], + [18093,0.0655], + [18095,0.0568], + [18097,0.0507], + [18099,0.0418], + [18101,0.0422], + [18103,0.0521], + [18105,0.0492], + [18107,0.04], + [18109,0.0471], + [18111,0.0582], + [18113,0.0427], + [18115,0.0554], + [18117,0.0596], + [18119,0.063], + [18121,0.0566], + [18123,0.0471], + [18125,0.0436], + [18127,0.0537], + [18129,0.0397], + [18131,0.0453], + [18133,0.0512], + [18135,0.0497], + [18137,0.0536], + [18139,0.0432], + [18141,0.0503], + [18143,0.0544], + [18145,0.0445], + [18147,0.0414], + [18149,0.0594], + [18151,0.0391], + [18153,0.0624], + [18155,0.0496], + [18157,0.0424], + [18159,0.0401], + [18161,0.0447], + [18163,0.0427], + [18165,0.0713], + [18167,0.0613], + [18169,0.0479], + [18171,0.0495], + [18173,0.0407], + [18175,0.0519], + [18177,0.0532], + [18179,0.0393], + [18181,0.0406], + [18183,0.0411], + [19001,0.0324], + [19003,0.0284], + [19005,0.0491], + [19007,0.0495], + [19009,0.0398], + [19011,0.0392], + [19013,0.0461], + [19015,0.0304], + [19017,0.0354], + [19019,0.0428], + [19021,0.0368], + [19023,0.0441], + [19025,0.0435], + [19027,0.0263], + [19029,0.0365], + [19031,0.0346], + [19033,0.0397], + [19035,0.0522], + [19037,0.0454], + [19039,0.0413], + [19041,0.0365], + [19043,0.0418], + [19045,0.0503], + [19047,0.042], + [19049,0.0289], + [19051,0.0447], + [19053,0.0329], + [19055,0.034], + [19057,0.0475], + [19059,0.0392], + [19061,0.0369], + [19063,0.0374], + [19065,0.0457], + [19067,0.038], + [19069,0.0337], + [19071,0.0332], + [19073,0.0353], + [19075,0.0382], + [19077,0.0379], + [19079,0.0428], + [19081,0.0273], + [19083,0.0398], + [19085,0.0342], + [19087,0.0394], + [19089,0.0361], + [19091,0.0335], + [19093,0.0313], + [19095,0.0353], + [19097,0.0423], + [19099,0.0391], + [19101,0.0387], + [19103,0.0268], + [19105,0.0421], + [19107,0.0429], + [19109,0.0287], + [19111,0.0541], + [19113,0.0381], + [19115,0.0381], + [19117,0.0356], + [19119,0.0202], + [19121,0.0394], + [19123,0.0399], + [19125,0.033], + [19127,0.051], + [19129,0.041], + [19131,0.0284], + [19133,0.0443], + [19135,0.0446], + [19137,0.0358], + [19139,0.0389], + [19141,0.0284], + [19143,0.0288], + [19145,0.0417], + [19147,0.031], + [19149,0.0284], + [19151,0.0306], + [19153,0.0371], + [19155,0.0369], + [19157,0.0364], + [19159,0.0339], + [19161,0.0335], + [19163,0.0472], + [19165,0.0288], + [19167,0.0247], + [19169,0.0252], + [19171,0.0439], + [19173,0.0318], + [19175,0.0421], + [19177,0.0408], + [19179,0.0519], + [19181,0.0345], + [19183,0.0315], + [19185,0.0396], + [19187,0.0434], + [19189,0.04], + [19191,0.0369], + [19193,0.038], + [19195,0.0402], + [19197,0.0393], + [20001,0.0512], + [20003,0.0484], + [20005,0.0613], + [20007,0.0424], + [20009,0.0421], + [20011,0.0479], + [20013,0.0398], + [20015,0.0426], + [20017,0.0359], + [20019,0.0567], + [20021,0.0444], + [20023,0.0272], + [20025,0.0242], + [20027,0.0427], + [20029,0.038], + [20031,0.0572], + [20033,0.0333], + [20035,0.0457], + [20037,0.0509], + [20039,0.037], + [20041,0.0517], + [20043,0.0433], + [20045,0.0369], + [20047,0.0303], + [20049,0.0477], + [20051,0.0298], + [20053,0.0367], + [20055,0.0352], + [20057,0.0339], + [20059,0.0457], + [20061,0.0619], + [20063,0.0249], + [20065,0.0393], + [20067,0.0359], + [20069,0.023], + [20071,0.0214], + [20073,0.0456], + [20075,0.0194], + [20077,0.0389], + [20079,0.0389], + [20081,0.025], + [20083,0.0312], + [20085,0.037], + [20087,0.0418], + [20089,0.0437], + [20091,0.0338], + [20093,0.0312], + [20095,0.0433], + [20097,0.0297], + [20099,0.0573], + [20101,0.033], + [20103,0.045], + [20105,0.0345], + [20107,0.064], + [20109,0.0245], + [20111,0.0429], + [20113,0.0299], + [20115,0.0378], + [20117,0.0291], + [20119,0.0298], + [20121,0.0433], + [20123,0.0331], + [20125,0.0645], + [20127,0.0428], + [20129,0.0418], + [20131,0.0256], + [20133,0.0743], + [20135,0.0332], + [20137,0.0247], + [20139,0.0498], + [20141,0.0349], + [20143,0.0378], + [20145,0.0372], + [20147,0.0318], + [20149,0.0365], + [20151,0.0403], + [20153,0.0228], + [20155,0.043], + [20157,0.0274], + [20159,0.0378], + [20161,0.0341], + [20163,0.0459], + [20165,0.0351], + [20167,0.0372], + [20169,0.0376], + [20171,0.0274], + [20173,0.0476], + [20175,0.043], + [20177,0.0424], + [20179,0.0223], + [20181,0.0288], + [20183,0.0387], + [20185,0.0399], + [20187,0.0302], + [20189,0.0371], + [20191,0.0444], + [20193,0.0263], + [20195,0.0351], + [20197,0.0383], + [20199,0.0274], + [20201,0.0313], + [20203,0.0295], + [20205,0.0656], + [20207,0.0503], + [20209,0.06], + [21001,0.0744], + [21003,0.049], + [21005,0.0417], + [21007,0.0685], + [21009,0.0519], + [21011,0.0766], + [21013,0.0847], + [21015,0.0409], + [21017,0.0475], + [21019,0.0691], + [21021,0.0556], + [21023,0.0634], + [21025,0.094], + [21027,0.0597], + [21029,0.0456], + [21031,0.0593], + [21033,0.0549], + [21035,0.0468], + [21037,0.0416], + [21039,0.0566], + [21041,0.0557], + [21043,0.0983], + [21045,0.0561], + [21047,0.0639], + [21049,0.0524], + [21051,0.0944], + [21053,0.0822], + [21055,0.0539], + [21057,0.0595], + [21059,0.0462], + [21061,0.0707], + [21063,0.0985], + [21065,0.0607], + [21067,0.0386], + [21069,0.0614], + [21071,0.0918], + [21073,0.043], + [21075,0.0764], + [21077,0.0518], + [21079,0.0509], + [21081,0.0536], + [21083,0.0609], + [21085,0.066], + [21087,0.0526], + [21089,0.0768], + [21091,0.0501], + [21093,0.0494], + [21095,0.1185], + [21097,0.0461], + [21099,0.0507], + [21101,0.0486], + [21103,0.0468], + [21105,0.0579], + [21107,0.0559], + [21109,0.0865], + [21111,0.0481], + [21113,0.0421], + [21115,0.083], + [21117,0.0445], + [21119,0.0998], + [21121,0.0816], + [21123,0.0509], + [21125,0.0621], + [21127,0.0926], + [21129,0.083], + [21131,0.1091], + [21133,0.1118], + [21135,0.0841], + [21137,0.0676], + [21139,0.0719], + [21141,0.0471], + [21143,0.0558], + [21145,0.0572], + [21147,0.0815], + [21149,0.0494], + [21151,0.0437], + [21153,0.1493], + [21155,0.0486], + [21157,0.0558], + [21159,0.0955], + [21161,0.0603], + [21163,0.0555], + [21165,0.0856], + [21167,0.0498], + [21169,0.0521], + [21171,0.0427], + [21173,0.0652], + [21175,0.0816], + [21177,0.0715], + [21179,0.0503], + [21181,0.0595], + [21183,0.0629], + [21185,0.0392], + [21187,0.0404], + [21189,0.0979], + [21191,0.0537], + [21193,0.0888], + [21195,0.0927], + [21197,0.07], + [21199,0.0581], + [21201,0.0641], + [21203,0.0648], + [21205,0.0584], + [21207,0.1171], + [21209,0.0397], + [21211,0.0405], + [21213,0.0478], + [21215,0.0432], + [21217,0.0637], + [21219,0.0466], + [21221,0.0577], + [21223,0.0567], + [21225,0.0669], + [21227,0.0451], + [21229,0.0434], + [21231,0.0788], + [21233,0.0515], + [21235,0.0675], + [21237,0.0993], + [21239,0.0353], + [22001,0.0685], + [22003,0.0696], + [22005,0.0506], + [22007,0.0786], + [22009,0.0752], + [22011,0.0634], + [22013,0.0828], + [22015,0.0565], + [22017,0.0714], + [22019,0.0539], + [22021,0.083], + [22023,0.0466], + [22025,0.0961], + [22027,0.0733], + [22029,0.0866], + [22031,0.0798], + [22033,0.0543], + [22035,0.141], + [22037,0.0596], + [22039,0.0753], + [22041,0.0968], + [22043,0.0733], + [22045,0.0812], + [22047,0.0732], + [22049,0.0599], + [22051,0.0575], + [22053,0.062], + [22055,0.0567], + [22057,0.0541], + [22059,0.0691], + [22061,0.07], + [22063,0.0512], + [22065,0.0931], + [22067,0.11], + [22069,0.0762], + [22071,0.0652], + [22073,0.0665], + [22075,0.056], + [22077,0.0661], + [22079,0.0646], + [22081,0.0693], + [22083,0.0874], + [22085,0.0714], + [22087,0.0661], + [22089,0.0573], + [22091,0.0908], + [22093,0.0848], + [22095,0.0748], + [22097,0.0803], + [22099,0.0688], + [22101,0.0762], + [22103,0.0539], + [22105,0.0723], + [22107,0.0977], + [22109,0.0598], + [22111,0.0716], + [22113,0.0695], + [22115,0.0778], + [22117,0.0763], + [22119,0.0882], + [22121,0.056], + [22123,0.1344], + [22125,0.0528], + [22127,0.0845], + [23001,0.0417], + [23003,0.0591], + [23005,0.0344], + [23007,0.0475], + [23009,0.0558], + [23011,0.0424], + [23013,0.041], + [23015,0.0445], + [23017,0.0545], + [23019,0.0474], + [23021,0.0552], + [23023,0.0352], + [23025,0.0655], + [23027,0.0521], + [23029,0.0639], + [23031,0.0393], + [24001,0.0697], + [24003,0.0439], + [24005,0.0528], + [24009,0.0458], + [24011,0.0544], + [24013,0.0421], + [24015,0.0597], + [24017,0.0497], + [24019,0.0714], + [24021,0.0446], + [24023,0.0629], + [24025,0.0491], + [24027,0.038], + [24029,0.0533], + [24031,0.0389], + [24033,0.0524], + [24035,0.045], + [24037,0.0484], + [24039,0.0825], + [24041,0.049], + [24043,0.056], + [24045,0.0681], + [24047,0.106], + [24510,0.0752], + [25001,0.061], + [25003,0.0539], + [25005,0.0613], + [25007,0.0653], + [25009,0.0499], + [25011,0.0439], + [25013,0.064], + [25015,0.0451], + [25017,0.0392], + [25019,0.0538], + [25021,0.0417], + [25023,0.0506], + [25025,0.0441], + [25027,0.0509], + [26001,0.0803], + [26003,0.085], + [26005,0.0414], + [26007,0.0623], + [26009,0.0747], + [26011,0.0896], + [26013,0.0912], + [26015,0.043], + [26017,0.0577], + [26019,0.0697], + [26021,0.0521], + [26023,0.0512], + [26025,0.051], + [26027,0.0506], + [26029,0.0603], + [26031,0.0911], + [26033,0.0778], + [26035,0.0774], + [26037,0.0392], + [26039,0.0783], + [26041,0.0679], + [26043,0.0566], + [26045,0.0443], + [26047,0.0721], + [26049,0.0609], + [26051,0.0728], + [26053,0.0731], + [26055,0.0466], + [26057,0.0567], + [26059,0.0525], + [26061,0.0635], + [26063,0.0539], + [26065,0.0468], + [26067,0.0458], + [26069,0.0753], + [26071,0.0704], + [26073,0.0481], + [26075,0.0529], + [26077,0.0435], + [26079,0.0767], + [26081,0.0376], + [26083,0.0928], + [26085,0.0858], + [26087,0.0722], + [26089,0.0527], + [26091,0.0501], + [26093,0.0464], + [26095,0.0697], + [26097,0.0972], + [26099,0.0577], + [26101,0.0665], + [26103,0.06], + [26105,0.0611], + [26107,0.0615], + [26109,0.0539], + [26111,0.0487], + [26113,0.0655], + [26115,0.0455], + [26117,0.0572], + [26119,0.0997], + [26121,0.0582], + [26123,0.0548], + [26125,0.0474], + [26127,0.0799], + [26129,0.0786], + [26131,0.0939], + [26133,0.0651], + [26135,0.0867], + [26137,0.0613], + [26139,0.0363], + [26141,0.1019], + [26143,0.0903], + [26145,0.057], + [26147,0.0684], + [26149,0.0452], + [26151,0.0651], + [26153,0.1083], + [26155,0.0565], + [26157,0.067], + [26159,0.0629], + [26161,0.0371], + [26163,0.0693], + [26165,0.0675], + [27001,0.0652], + [27003,0.036], + [27005,0.0436], + [27007,0.0489], + [27009,0.0443], + [27011,0.0444], + [27013,0.0294], + [27015,0.0408], + [27017,0.049], + [27019,0.0316], + [27021,0.0667], + [27023,0.0436], + [27025,0.0416], + [27027,0.0309], + [27029,0.0906], + [27031,0.0438], + [27033,0.0475], + [27035,0.0514], + [27037,0.0329], + [27039,0.0372], + [27041,0.0341], + [27043,0.0436], + [27045,0.0407], + [27047,0.0376], + [27049,0.0351], + [27051,0.0469], + [27053,0.0327], + [27055,0.038], + [27057,0.0609], + [27059,0.0429], + [27061,0.0646], + [27063,0.0402], + [27065,0.0657], + [27067,0.0372], + [27069,0.0461], + [27071,0.0809], + [27073,0.0409], + [27075,0.0478], + [27077,0.0442], + [27079,0.0481], + [27081,0.0351], + [27083,0.0321], + [27085,0.0392], + [27087,0.0574], + [27089,0.0688], + [27091,0.0405], + [27093,0.0418], + [27095,0.0577], + [27097,0.0538], + [27099,0.032], + [27101,0.0442], + [27103,0.0263], + [27105,0.0319], + [27107,0.0465], + [27109,0.0291], + [27111,0.0419], + [27113,0.0511], + [27115,0.0555], + [27117,0.0334], + [27119,0.0421], + [27121,0.0347], + [27123,0.0351], + [27125,0.0584], + [27127,0.0391], + [27129,0.0478], + [27131,0.0353], + [27133,0.0212], + [27135,0.0395], + [27137,0.0495], + [27139,0.0312], + [27141,0.0399], + [27143,0.0414], + [27145,0.036], + [27147,0.0333], + [27149,0.028], + [27151,0.06], + [27153,0.0437], + [27155,0.0414], + [27157,0.0377], + [27159,0.0589], + [27161,0.0412], + [27163,0.0315], + [27165,0.0466], + [27167,0.0331], + [27169,0.033], + [27171,0.0366], + [27173,0.0366], + [28001,0.0798], + [28003,0.0564], + [28005,0.0757], + [28007,0.0762], + [28009,0.0798], + [28011,0.0785], + [28013,0.0616], + [28015,0.0818], + [28017,0.0768], + [28019,0.0625], + [28021,0.1254], + [28023,0.0783], + [28025,0.0958], + [28027,0.1006], + [28029,0.0722], + [28031,0.0585], + [28033,0.048], + [28035,0.0628], + [28037,0.0766], + [28039,0.075], + [28041,0.0753], + [28043,0.0595], + [28045,0.0648], + [28047,0.0594], + [28049,0.0602], + [28051,0.1202], + [28053,0.1265], + [28055,0.1718], + [28057,0.0572], + [28059,0.0704], + [28061,0.0783], + [28063,0.1489], + [28065,0.0872], + [28067,0.06], + [28069,0.1034], + [28071,0.0546], + [28073,0.0481], + [28075,0.0656], + [28077,0.0721], + [28079,0.0615], + [28081,0.0555], + [28083,0.1076], + [28085,0.0606], + [28087,0.0702], + [28089,0.0457], + [28091,0.0729], + [28093,0.0722], + [28095,0.0737], + [28097,0.0774], + [28099,0.0613], + [28101,0.0612], + [28103,0.0979], + [28105,0.0613], + [28107,0.087], + [28109,0.0616], + [28111,0.0793], + [28113,0.0731], + [28115,0.0558], + [28117,0.0604], + [28119,0.1076], + [28121,0.0415], + [28123,0.0481], + [28125,0.0961], + [28127,0.0587], + [28129,0.0536], + [28131,0.0741], + [28133,0.1049], + [28135,0.0756], + [28137,0.0706], + [28139,0.0637], + [28141,0.0635], + [28143,0.0928], + [28145,0.051], + [28147,0.0808], + [28149,0.0665], + [28151,0.1027], + [28153,0.079], + [28155,0.0718], + [28157,0.1058], + [28159,0.0824], + [28161,0.0714], + [28163,0.0817], + [29001,0.0563], + [29003,0.0416], + [29005,0.0448], + [29007,0.0463], + [29009,0.0501], + [29011,0.0542], + [29013,0.0608], + [29015,0.0653], + [29017,0.056], + [29019,0.0352], + [29021,0.0459], + [29023,0.062], + [29025,0.0455], + [29027,0.0471], + [29029,0.0655], + [29031,0.0431], + [29033,0.0604], + [29035,0.0741], + [29037,0.0481], + [29039,0.0528], + [29041,0.0467], + [29043,0.0423], + [29045,0.0713], + [29047,0.0455], + [29049,0.0486], + [29051,0.04], + [29053,0.0578], + [29055,0.0602], + [29057,0.0507], + [29059,0.0623], + [29061,0.0457], + [29063,0.0463], + [29065,0.0582], + [29067,0.0679], + [29069,0.0804], + [29071,0.0507], + [29073,0.0426], + [29075,0.042], + [29077,0.0416], + [29079,0.0413], + [29081,0.0507], + [29083,0.0544], + [29085,0.0663], + [29087,0.0361], + [29089,0.0489], + [29091,0.0643], + [29093,0.0794], + [29095,0.0591], + [29097,0.0428], + [29099,0.0486], + [29101,0.0538], + [29103,0.0387], + [29105,0.0635], + [29107,0.0485], + [29109,0.049], + [29111,0.0491], + [29113,0.0517], + [29115,0.0702], + [29117,0.0426], + [29119,0.0474], + [29121,0.0533], + [29123,0.0589], + [29125,0.0531], + [29127,0.0445], + [29129,0.0445], + [29131,0.0602], + [29133,0.0579], + [29135,0.049], + [29137,0.052], + [29139,0.0497], + [29141,0.0673], + [29143,0.0622], + [29145,0.0457], + [29147,0.0492], + [29149,0.0634], + [29151,0.0376], + [29153,0.0797], + [29155,0.0905], + [29157,0.0421], + [29159,0.0526], + [29161,0.0532], + [29163,0.0457], + [29165,0.042], + [29167,0.0528], + [29169,0.0584], + [29171,0.0396], + [29173,0.0423], + [29175,0.06], + [29177,0.0547], + [29179,0.07], + [29181,0.0796], + [29183,0.0385], + [29185,0.0696], + [29186,0.0534], + [29187,0.0609], + [29189,0.0463], + [29195,0.0483], + [29197,0.0581], + [29199,0.0453], + [29201,0.0524], + [29203,0.0815], + [29205,0.0471], + [29207,0.0662], + [29209,0.0789], + [29211,0.0597], + [29213,0.0808], + [29215,0.0665], + [29217,0.0508], + [29219,0.0478], + [29221,0.0672], + [29223,0.0587], + [29225,0.0508], + [29227,0.0328], + [29229,0.0626], + [29510,0.0607], + [30001,0.0344], + [30003,0.0669], + [30005,0.0501], + [30007,0.0508], + [30009,0.0367], + [30011,0.0322], + [30013,0.0404], + [30015,0.0325], + [30017,0.0329], + [30019,0.0255], + [30021,0.0314], + [30023,0.0398], + [30025,0.0234], + [30027,0.0413], + [30029,0.0572], + [30031,0.0301], + [30033,0.0276], + [30035,0.09], + [30037,0.0422], + [30039,0.0623], + [30041,0.0418], + [30043,0.0407], + [30045,0.0343], + [30047,0.0499], + [30049,0.0336], + [30051,0.0264], + [30053,0.1008], + [30055,0.0217], + [30057,0.0362], + [30059,0.0364], + [30061,0.0835], + [30063,0.0392], + [30065,0.0428], + [30067,0.0479], + [30069,0.0528], + [30071,0.0507], + [30073,0.0447], + [30075,0.0256], + [30077,0.0443], + [30079,0.0417], + [30081,0.0521], + [30083,0.0323], + [30085,0.0525], + [30087,0.0535], + [30089,0.083], + [30091,0.0251], + [30093,0.0429], + [30095,0.0374], + [30097,0.028], + [30099,0.0385], + [30101,0.034], + [30103,0.0504], + [30105,0.0313], + [30107,0.0546], + [30109,0.033], + [30111,0.0331], + [31001,0.0313], + [31003,0.0256], + [31005,0.0446], + [31007,0.0341], + [31009,0.0448], + [31011,0.0246], + [31013,0.03], + [31015,0.0266], + [31017,0.0373], + [31019,0.0244], + [31021,0.0363], + [31023,0.0279], + [31025,0.0332], + [31027,0.0239], + [31029,0.0192], + [31031,0.0232], + [31033,0.0218], + [31035,0.0293], + [31037,0.0261], + [31039,0.0267], + [31041,0.0223], + [31043,0.0354], + [31045,0.0259], + [31047,0.0317], + [31049,0.0251], + [31051,0.0331], + [31053,0.0326], + [31055,0.0331], + [31057,0.0209], + [31059,0.0296], + [31061,0.0238], + [31063,0.0242], + [31065,0.0264], + [31067,0.0362], + [31069,0.0242], + [31071,0.0243], + [31073,0.0251], + [31075,0.023], + [31077,0.0312], + [31079,0.0394], + [31081,0.0289], + [31083,0.0213], + [31085,0.0227], + [31087,0.0326], + [31089,0.0239], + [31091,0.042], + [31093,0.0366], + [31095,0.0271], + [31097,0.033], + [31099,0.0222], + [31101,0.0267], + [31103,0.0212], + [31105,0.0356], + [31107,0.032], + [31109,0.0264], + [31111,0.029], + [31113,0.0285], + [31115,0.0369], + [31117,0.0195], + [31119,0.0274], + [31121,0.0373], + [31123,0.0287], + [31125,0.0247], + [31127,0.0366], + [31129,0.0256], + [31131,0.0331], + [31133,0.0257], + [31135,0.0185], + [31137,0.0238], + [31139,0.0254], + [31141,0.0298], + [31143,0.0254], + [31145,0.0264], + [31147,0.0321], + [31149,0.0268], + [31151,0.0293], + [31153,0.0281], + [31155,0.0308], + [31157,0.0338], + [31159,0.0291], + [31161,0.0271], + [31163,0.0293], + [31165,0.0254], + [31167,0.0254], + [31169,0.0236], + [31171,0.0299], + [31173,0.0532], + [31175,0.0281], + [31177,0.03], + [31179,0.0255], + [31181,0.0354], + [31183,0.0231], + [31185,0.029], + [32001,0.0689], + [32003,0.0684], + [32005,0.0673], + [32007,0.0513], + [32009,0.0434], + [32011,0.0588], + [32013,0.0582], + [32015,0.0664], + [32017,0.0604], + [32019,0.0931], + [32021,0.1027], + [32023,0.0869], + [32027,0.0677], + [32029,0.0742], + [32031,0.0625], + [32033,0.0533], + [32510,0.0722], + [33001,0.0333], + [33003,0.0347], + [33005,0.0316], + [33007,0.0436], + [33009,0.0275], + [33011,0.0357], + [33013,0.0308], + [33015,0.0359], + [33017,0.0312], + [33019,0.0274], + [34001,0.0957], + [34003,0.0471], + [34005,0.0535], + [34007,0.0646], + [34009,0.1111], + [34011,0.0883], + [34013,0.0692], + [34015,0.0606], + [34017,0.0539], + [34019,0.0425], + [34021,0.0501], + [34023,0.0515], + [34025,0.0516], + [34027,0.0438], + [34029,0.0618], + [34031,0.0709], + [34033,0.0736], + [34035,0.0457], + [34037,0.0546], + [34039,0.0605], + [34041,0.0537], + [35001,0.0588], + [35003,0.0834], + [35005,0.0629], + [35006,0.0799], + [35007,0.0599], + [35009,0.0487], + [35011,0.0508], + [35013,0.073], + [35015,0.0491], + [35017,0.0647], + [35019,0.0707], + [35021,0.0845], + [35023,0.0621], + [35025,0.0618], + [35027,0.0575], + [35028,0.0403], + [35029,0.1729], + [35031,0.0976], + [35033,0.0969], + [35035,0.0618], + [35037,0.0709], + [35039,0.0801], + [35041,0.054], + [35043,0.0663], + [35045,0.0688], + [35047,0.0766], + [35049,0.0534], + [35051,0.0908], + [35053,0.0754], + [35055,0.0914], + [35057,0.0902], + [35059,0.0435], + [35061,0.0743], + [36001,0.0434], + [36003,0.065], + [36005,0.0778], + [36007,0.0596], + [36009,0.0628], + [36011,0.0533], + [36013,0.0602], + [36015,0.0586], + [36017,0.0544], + [36019,0.0582], + [36021,0.0398], + [36023,0.0588], + [36025,0.0599], + [36027,0.0449], + [36029,0.0532], + [36031,0.0601], + [36033,0.0649], + [36035,0.0643], + [36037,0.0494], + [36039,0.0562], + [36041,0.0674], + [36043,0.0623], + [36045,0.0658], + [36047,0.059], + [36049,0.0691], + [36051,0.0525], + [36053,0.0567], + [36055,0.0506], + [36057,0.0655], + [36059,0.0422], + [36061,0.0486], + [36063,0.0615], + [36065,0.0533], + [36067,0.0492], + [36069,0.0471], + [36071,0.0465], + [36073,0.0636], + [36075,0.0717], + [36077,0.0539], + [36079,0.0426], + [36081,0.0502], + [36083,0.0464], + [36085,0.0583], + [36087,0.0452], + [36089,0.0729], + [36091,0.0414], + [36093,0.0471], + [36095,0.058], + [36097,0.066], + [36099,0.0514], + [36101,0.0628], + [36103,0.047], + [36105,0.0539], + [36107,0.0553], + [36109,0.0439], + [36111,0.048], + [36113,0.0553], + [36115,0.0501], + [36117,0.0532], + [36119,0.0454], + [36121,0.0563], + [36123,0.0498], + [37001,0.0536], + [37003,0.0493], + [37005,0.0614], + [37007,0.0653], + [37009,0.0602], + [37011,0.0594], + [37013,0.0659], + [37015,0.0723], + [37017,0.0796], + [37019,0.073], + [37021,0.0436], + [37023,0.0562], + [37025,0.0518], + [37027,0.0626], + [37029,0.0572], + [37031,0.0592], + [37033,0.0631], + [37035,0.0551], + [37037,0.0474], + [37039,0.0646], + [37041,0.0715], + [37043,0.0616], + [37045,0.0639], + [37047,0.0753], + [37049,0.0605], + [37051,0.0731], + [37053,0.058], + [37055,0.0746], + [37057,0.0556], + [37059,0.0503], + [37061,0.0573], + [37063,0.0501], + [37065,0.0957], + [37067,0.0551], + [37069,0.0592], + [37071,0.0601], + [37073,0.0548], + [37075,0.1199], + [37077,0.0494], + [37079,0.0554], + [37081,0.0587], + [37083,0.0881], + [37085,0.0671], + [37087,0.0526], + [37089,0.0475], + [37091,0.0706], + [37093,0.0794], + [37095,0.0914], + [37097,0.055], + [37099,0.0609], + [37101,0.0523], + [37103,0.0576], + [37105,0.0721], + [37107,0.0635], + [37109,0.0543], + [37111,0.055], + [37113,0.0616], + [37115,0.057], + [37117,0.0768], + [37119,0.0536], + [37121,0.0685], + [37123,0.0569], + [37125,0.058], + [37127,0.0728], + [37129,0.0536], + [37131,0.0754], + [37133,0.0589], + [37135,0.0463], + [37137,0.0596], + [37139,0.0725], + [37141,0.061], + [37143,0.0714], + [37145,0.0679], + [37147,0.0606], + [37149,0.0509], + [37151,0.0571], + [37153,0.0792], + [37155,0.0847], + [37157,0.0662], + [37159,0.0609], + [37161,0.0777], + [37163,0.0592], + [37165,0.106], + [37167,0.0532], + [37169,0.0543], + [37171,0.0542], + [37173,0.0768], + [37175,0.0544], + [37177,0.095], + [37179,0.0485], + [37181,0.0857], + [37183,0.0471], + [37185,0.0829], + [37187,0.0868], + [37189,0.0484], + [37191,0.0606], + [37193,0.0568], + [37195,0.095], + [37197,0.05], + [37199,0.0589], + [38001,0.0289], + [38003,0.0321], + [38005,0.0459], + [38007,0.0299], + [38009,0.0438], + [38011,0.0188], + [38013,0.033], + [38015,0.0238], + [38017,0.0224], + [38019,0.0276], + [38021,0.0184], + [38023,0.0182], + [38025,0.0197], + [38027,0.048], + [38029,0.0496], + [38031,0.0288], + [38033,0.0225], + [38035,0.0244], + [38037,0.0318], + [38039,0.0234], + [38041,0.0251], + [38043,0.0365], + [38045,0.0246], + [38047,0.0285], + [38049,0.0421], + [38051,0.0313], + [38053,0.0249], + [38055,0.0374], + [38057,0.042], + [38059,0.0308], + [38061,0.0196], + [38063,0.0375], + [38065,0.0589], + [38067,0.0534], + [38069,0.0419], + [38071,0.0339], + [38073,0.0245], + [38075,0.0336], + [38077,0.0273], + [38079,0.1031], + [38081,0.0182], + [38083,0.051], + [38085,0.044], + [38087,0.0258], + [38089,0.027], + [38091,0.0226], + [38093,0.0258], + [38095,0.0266], + [38097,0.0283], + [38099,0.0418], + [38101,0.0319], + [38103,0.04], + [38105,0.0237], + [39001,0.0786], + [39003,0.0485], + [39005,0.0502], + [39007,0.0596], + [39009,0.0622], + [39011,0.0368], + [39013,0.0634], + [39015,0.0623], + [39017,0.0459], + [39019,0.0596], + [39021,0.0437], + [39023,0.0499], + [39025,0.0451], + [39027,0.062], + [39029,0.0586], + [39031,0.0637], + [39033,0.058], + [39035,0.052], + [39037,0.0426], + [39039,0.049], + [39041,0.0353], + [39043,0.0554], + [39045,0.0435], + [39047,0.0494], + [39049,0.0409], + [39051,0.0487], + [39053,0.0649], + [39055,0.042], + [39057,0.0436], + [39059,0.0619], + [39061,0.045], + [39063,0.0366], + [39065,0.0482], + [39067,0.0629], + [39069,0.0559], + [39071,0.0636], + [39073,0.0558], + [39075,0.0342], + [39077,0.0657], + [39079,0.0751], + [39081,0.0742], + [39083,0.0464], + [39085,0.0453], + [39087,0.0586], + [39089,0.0443], + [39091,0.0421], + [39093,0.0559], + [39095,0.053], + [39097,0.0403], + [39099,0.0609], + [39101,0.0511], + [39103,0.0415], + [39105,0.0823], + [39107,0.0327], + [39109,0.0439], + [39111,0.0994], + [39113,0.05], + [39115,0.073], + [39117,0.0503], + [39119,0.062], + [39121,0.0726], + [39123,0.066], + [39125,0.0478], + [39127,0.0653], + [39129,0.0476], + [39131,0.0731], + [39133,0.0486], + [39135,0.0482], + [39137,0.0387], + [39139,0.0558], + [39141,0.0536], + [39143,0.0481], + [39145,0.0765], + [39147,0.0483], + [39149,0.0429], + [39151,0.0526], + [39153,0.0497], + [39155,0.0644], + [39157,0.0537], + [39159,0.0384], + [39161,0.0415], + [39163,0.0654], + [39165,0.0415], + [39167,0.0601], + [39169,0.0394], + [39171,0.0441], + [39173,0.0427], + [39175,0.0365], + [40001,0.0607], + [40003,0.0297], + [40005,0.065], + [40007,0.0271], + [40009,0.051], + [40011,0.0383], + [40013,0.0457], + [40015,0.0515], + [40017,0.0362], + [40019,0.0455], + [40021,0.0517], + [40023,0.0768], + [40025,0.0225], + [40027,0.0354], + [40029,0.0763], + [40031,0.0436], + [40033,0.0416], + [40035,0.0484], + [40037,0.0497], + [40039,0.0406], + [40041,0.0496], + [40043,0.0361], + [40045,0.0406], + [40047,0.0395], + [40049,0.0471], + [40051,0.045], + [40053,0.0292], + [40055,0.0567], + [40057,0.0346], + [40059,0.0302], + [40061,0.0795], + [40063,0.075], + [40065,0.0407], + [40067,0.0575], + [40069,0.0652], + [40071,0.0569], + [40073,0.0314], + [40075,0.0466], + [40077,0.0813], + [40079,0.0693], + [40081,0.0467], + [40083,0.0381], + [40085,0.0356], + [40087,0.0372], + [40089,0.0795], + [40091,0.0865], + [40093,0.0328], + [40095,0.0547], + [40097,0.0433], + [40099,0.0423], + [40101,0.0515], + [40103,0.0356], + [40105,0.0571], + [40107,0.0588], + [40109,0.0395], + [40111,0.0669], + [40113,0.0528], + [40115,0.0513], + [40117,0.0585], + [40119,0.0353], + [40121,0.0571], + [40123,0.0399], + [40125,0.0451], + [40127,0.078], + [40129,0.0424], + [40131,0.0439], + [40133,0.0684], + [40135,0.0636], + [40137,0.06], + [40139,0.0323], + [40141,0.0429], + [40143,0.0415], + [40145,0.0421], + [40147,0.0431], + [40149,0.0557], + [40151,0.0276], + [40153,0.0518], + [41001,0.0674], + [41003,0.0422], + [41005,0.0512], + [41007,0.0545], + [41009,0.0715], + [41011,0.0743], + [41013,0.0835], + [41015,0.0824], + [41017,0.0588], + [41019,0.075], + [41021,0.0643], + [41023,0.0867], + [41025,0.0717], + [41027,0.0471], + [41029,0.0678], + [41031,0.0731], + [41033,0.0772], + [41035,0.0779], + [41037,0.0765], + [41039,0.0582], + [41041,0.0665], + [41043,0.0672], + [41045,0.0637], + [41047,0.06], + [41049,0.0572], + [41051,0.0491], + [41053,0.0563], + [41055,0.0608], + [41057,0.0563], + [41059,0.0636], + [41061,0.0615], + [41063,0.0777], + [41065,0.056], + [41067,0.0469], + [41069,0.052], + [41071,0.0528], + [42001,0.042], + [42003,0.0496], + [42005,0.0664], + [42007,0.0605], + [42009,0.0607], + [42011,0.0493], + [42013,0.0516], + [42015,0.0592], + [42017,0.0467], + [42019,0.0472], + [42021,0.0656], + [42023,0.0716], + [42025,0.0606], + [42027,0.0398], + [42029,0.0381], + [42031,0.0598], + [42033,0.0665], + [42035,0.0689], + [42037,0.0566], + [42039,0.052], + [42041,0.0399], + [42043,0.0465], + [42045,0.0489], + [42047,0.0493], + [42049,0.055], + [42051,0.075], + [42053,0.0785], + [42055,0.0496], + [42057,0.0622], + [42059,0.06], + [42061,0.0702], + [42063,0.0632], + [42065,0.061], + [42067,0.0495], + [42069,0.0583], + [42071,0.0411], + [42073,0.0631], + [42075,0.0453], + [42077,0.0533], + [42079,0.0646], + [42081,0.0606], + [42083,0.0608], + [42085,0.0545], + [42087,0.0577], + [42089,0.0646], + [42091,0.0416], + [42093,0.0432], + [42095,0.0527], + [42097,0.0611], + [42099,0.0447], + [42101,0.0711], + [42103,0.0655], + [42105,0.0704], + [42107,0.0629], + [42109,0.0469], + [42111,0.0683], + [42113,0.0616], + [42115,0.0558], + [42117,0.0651], + [42119,0.0448], + [42121,0.0595], + [42123,0.0499], + [42125,0.0557], + [42127,0.0582], + [42129,0.054], + [42131,0.0611], + [42133,0.0476], + [44001,0.0529], + [44003,0.0552], + [44005,0.0541], + [44007,0.0635], + [44009,0.0561], + [45001,0.0688], + [45003,0.0588], + [45005,0.1128], + [45007,0.054], + [45009,0.1048], + [45011,0.0898], + [45013,0.0546], + [45015,0.055], + [45017,0.0712], + [45019,0.0484], + [45021,0.0711], + [45023,0.0837], + [45025,0.0604], + [45027,0.0768], + [45029,0.0696], + [45031,0.0737], + [45033,0.0861], + [45035,0.0547], + [45037,0.0635], + [45039,0.0804], + [45041,0.0651], + [45043,0.084], + [45045,0.0494], + [45047,0.0631], + [45049,0.0839], + [45051,0.071], + [45053,0.0512], + [45055,0.0597], + [45057,0.0629], + [45059,0.0653], + [45061,0.0842], + [45063,0.0483], + [45065,0.0709], + [45067,0.0997], + [45069,0.1004], + [45071,0.053], + [45073,0.0579], + [45075,0.1086], + [45077,0.0576], + [45079,0.0566], + [45081,0.0523], + [45083,0.057], + [45085,0.0681], + [45087,0.0788], + [45089,0.0921], + [45091,0.0547], + [46003,0.0223], + [46005,0.0264], + [46007,0.0505], + [46009,0.0266], + [46011,0.0294], + [46013,0.0267], + [46015,0.0269], + [46017,0.07], + [46019,0.034], + [46021,0.0295], + [46023,0.0344], + [46025,0.0367], + [46027,0.0307], + [46029,0.0309], + [46031,0.0511], + [46033,0.0425], + [46035,0.0254], + [46037,0.0501], + [46039,0.0499], + [46041,0.1153], + [46043,0.0246], + [46045,0.0248], + [46047,0.0445], + [46049,0.026], + [46051,0.0296], + [46053,0.0317], + [46055,0.0228], + [46057,0.0336], + [46059,0.023], + [46061,0.0334], + [46063,0.0244], + [46065,0.0241], + [46067,0.0248], + [46069,0.0284], + [46071,0.0431], + [46073,0.0223], + [46075,0.0292], + [46077,0.0295], + [46079,0.0363], + [46081,0.0327], + [46083,0.0225], + [46085,0.0469], + [46087,0.024], + [46089,0.0333], + [46091,0.0384], + [46093,0.0317], + [46095,0.0515], + [46097,0.024], + [46099,0.0271], + [46101,0.034], + [46102,null], + [46103,0.0316], + [46105,0.0318], + [46107,0.0322], + [46109,0.0435], + [46111,0.0253], + [46115,0.0308], + [46117,0.024], + [46119,0.0253], + [46121,0.0739], + [46123,0.0267], + [46125,0.0268], + [46127,0.0339], + [46129,0.0543], + [46135,0.0261], + [46137,0.0509], + [47001,0.0583], + [47003,0.0644], + [47005,0.0767], + [47007,0.0794], + [47009,0.0517], + [47011,0.0522], + [47013,0.0792], + [47015,0.0578], + [47017,0.0828], + [47019,0.0644], + [47021,0.0484], + [47023,0.0586], + [47025,0.0721], + [47027,0.0885], + [47029,0.0776], + [47031,0.0553], + [47033,0.0645], + [47035,0.0707], + [47037,0.0437], + [47039,0.0787], + [47041,0.0687], + [47043,0.0543], + [47045,0.0717], + [47047,0.0618], + [47049,0.0728], + [47051,0.0518], + [47053,0.0737], + [47055,0.0498], + [47057,0.0664], + [47059,0.0645], + [47061,0.0773], + [47063,0.062], + [47065,0.0531], + [47067,0.0966], + [47069,0.075], + [47071,0.0718], + [47073,0.0638], + [47075,0.0836], + [47077,0.0797], + [47079,0.0654], + [47081,0.0568], + [47083,0.0862], + [47085,0.0675], + [47087,0.0785], + [47089,0.0639], + [47091,0.0562], + [47093,0.0467], + [47095,0.0854], + [47097,0.0884], + [47099,0.0659], + [47101,0.073], + [47103,0.0481], + [47105,0.0559], + [47107,0.0632], + [47109,0.0849], + [47111,0.053], + [47113,0.0588], + [47115,0.0674], + [47117,0.0559], + [47119,0.0512], + [47121,0.0761], + [47123,0.0627], + [47125,0.0581], + [47127,0.0452], + [47129,0.0746], + [47131,0.0861], + [47133,0.0713], + [47135,0.0671], + [47137,0.076], + [47139,0.0656], + [47141,0.0583], + [47143,0.0738], + [47145,0.0647], + [47147,0.0488], + [47149,0.0448], + [47151,0.0931], + [47153,0.0647], + [47155,0.0601], + [47157,0.0641], + [47159,0.0561], + [47161,0.0768], + [47163,0.0577], + [47165,0.046], + [47167,0.0708], + [47169,0.059], + [47171,0.0796], + [47173,0.068], + [47175,0.08], + [47177,0.056], + [47179,0.0555], + [47181,0.074], + [47183,0.0677], + [47185,0.0606], + [47187,0.04], + [47189,0.0458], + [48001,0.0393], + [48003,0.0348], + [48005,0.0558], + [48007,0.0505], + [48009,0.0442], + [48011,0.0267], + [48013,0.0476], + [48015,0.0459], + [48017,0.0429], + [48019,0.0397], + [48021,0.0388], + [48023,0.0351], + [48025,0.0618], + [48027,0.0464], + [48029,0.0381], + [48031,0.0312], + [48033,0.0291], + [48035,0.0448], + [48037,0.048], + [48039,0.0457], + [48041,0.0331], + [48043,0.0394], + [48045,0.0387], + [48047,0.0992], + [48049,0.0431], + [48051,0.0435], + [48053,0.0364], + [48055,0.0434], + [48057,0.0398], + [48059,0.0426], + [48061,0.0711], + [48063,0.0613], + [48065,0.032], + [48067,0.0678], + [48069,0.0338], + [48071,0.0533], + [48073,0.0516], + [48075,0.0311], + [48077,0.0438], + [48079,0.0509], + [48081,0.0401], + [48083,0.0554], + [48085,0.0363], + [48087,0.037], + [48089,0.0394], + [48091,0.0367], + [48093,0.0424], + [48095,0.0328], + [48097,0.0369], + [48099,0.0476], + [48101,0.0716], + [48103,0.0572], + [48105,0.06], + [48107,0.0431], + [48109,0.0414], + [48111,0.0217], + [48113,0.0427], + [48115,0.0453], + [48117,0.0314], + [48119,0.0455], + [48121,0.0355], + [48123,0.0398], + [48125,0.0456], + [48127,0.0463], + [48129,0.0415], + [48131,0.0808], + [48133,0.0472], + [48135,0.0464], + [48137,0.0463], + [48139,0.0393], + [48141,0.0516], + [48143,0.0392], + [48145,0.0423], + [48147,0.0409], + [48149,0.0331], + [48151,0.0384], + [48153,0.0554], + [48155,0.04], + [48157,0.0426], + [48159,0.0488], + [48161,0.0542], + [48163,0.0383], + [48165,0.0323], + [48167,0.0498], + [48169,0.0366], + [48171,0.0287], + [48173,0.028], + [48175,0.0444], + [48177,0.0366], + [48179,0.0561], + [48181,0.0402], + [48183,0.0494], + [48185,0.0531], + [48187,0.0352], + [48189,0.0634], + [48191,0.0532], + [48193,0.0466], + [48195,0.0296], + [48197,0.0488], + [48199,0.0563], + [48201,0.0464], + [48203,0.0521], + [48205,0.0213], + [48207,0.0349], + [48209,0.0342], + [48211,0.0313], + [48213,0.0485], + [48215,0.0791], + [48217,0.0454], + [48219,0.0415], + [48221,0.0451], + [48223,0.042], + [48225,0.0445], + [48227,0.046], + [48229,0.0562], + [48231,0.0472], + [48233,0.044], + [48235,0.0363], + [48237,0.0422], + [48239,0.0375], + [48241,0.0746], + [48243,0.0324], + [48245,0.0696], + [48247,0.0721], + [48249,0.0789], + [48251,0.0439], + [48253,0.0547], + [48255,0.0422], + [48257,0.0407], + [48259,0.0328], + [48261,0.0319], + [48263,0.0262], + [48265,0.0367], + [48267,0.036], + [48269,0.035], + [48271,0.0633], + [48273,0.059], + [48275,0.0375], + [48277,0.0477], + [48279,0.0892], + [48281,0.0439], + [48283,0.0415], + [48285,0.0378], + [48287,0.0355], + [48289,0.0533], + [48291,0.0689], + [48293,0.05], + [48295,0.0389], + [48297,0.0401], + [48299,0.0424], + [48301,0.0519], + [48303,0.034], + [48305,0.0402], + [48307,0.048], + [48309,0.0406], + [48311,0.0207], + [48313,0.0428], + [48315,0.0649], + [48317,0.0349], + [48319,0.0383], + [48321,0.0674], + [48323,0.1064], + [48325,0.0437], + [48327,0.0514], + [48329,0.0346], + [48331,0.0523], + [48333,0.0367], + [48335,0.0562], + [48337,0.0424], + [48339,0.0424], + [48341,0.0312], + [48343,0.0878], + [48345,0.0346], + [48347,0.0469], + [48349,0.042], + [48351,0.0751], + [48353,0.0404], + [48355,0.0493], + [48357,0.0425], + [48359,0.0296], + [48361,0.0653], + [48363,0.052], + [48365,0.0522], + [48367,0.0415], + [48369,0.0236], + [48371,0.0516], + [48373,0.0605], + [48375,0.0333], + [48377,0.1063], + [48379,0.0455], + [48381,0.0289], + [48383,0.0451], + [48385,0.0508], + [48387,0.0628], + [48389,0.0479], + [48391,0.053], + [48393,0.0396], + [48395,0.0476], + [48397,0.0375], + [48399,0.0371], + [48401,0.0475], + [48403,0.0929], + [48405,0.0905], + [48407,0.056], + [48409,0.0651], + [48411,0.0365], + [48413,0.0527], + [48415,0.0414], + [48417,0.0284], + [48419,0.0525], + [48421,0.0275], + [48423,0.0447], + [48425,0.0502], + [48427,0.1346], + [48429,0.0419], + [48431,0.0335], + [48433,0.0438], + [48435,0.0605], + [48437,0.0476], + [48439,0.0416], + [48441,0.0366], + [48443,0.0484], + [48445,0.0467], + [48447,0.0321], + [48449,0.0577], + [48451,0.041], + [48453,0.0328], + [48455,0.0588], + [48457,0.07], + [48459,0.0524], + [48461,0.0393], + [48463,0.0503], + [48465,0.06], + [48467,0.0449], + [48469,0.0418], + [48471,0.0505], + [48473,0.0479], + [48475,0.0428], + [48477,0.0476], + [48479,0.0473], + [48481,0.0441], + [48483,0.0387], + [48485,0.0428], + [48487,0.0482], + [48489,0.1302], + [48491,0.0345], + [48493,0.0379], + [48495,0.0568], + [48497,0.0463], + [48499,0.0529], + [48501,0.0376], + [48503,0.0425], + [48505,0.0763], + [48507,0.1117], + [49001,0.0378], + [49003,0.037], + [49005,0.0307], + [49007,0.0569], + [49009,0.047], + [49011,0.0338], + [49013,0.0753], + [49015,0.0607], + [49017,0.0894], + [49019,0.0608], + [49021,0.0445], + [49023,0.0396], + [49025,0.0443], + [49027,0.035], + [49029,0.0312], + [49031,0.0644], + [49033,0.0363], + [49035,0.0339], + [49037,0.0789], + [49039,0.0413], + [49041,0.0446], + [49043,0.0331], + [49045,0.0415], + [49047,0.0681], + [49049,0.0326], + [49051,0.0351], + [49053,0.0408], + [49055,0.091], + [49057,0.041], + [50001,0.0347], + [50003,0.0422], + [50005,0.0466], + [50007,0.0272], + [50009,0.0577], + [50011,0.0357], + [50013,0.0399], + [50015,0.0464], + [50017,0.0343], + [50019,0.056], + [50021,0.0426], + [50023,0.0349], + [50025,0.0357], + [50027,0.0322], + [51001,0.0545], + [51003,0.039], + [51005,0.0507], + [51007,0.0447], + [51009,0.0478], + [51011,0.0489], + [51013,0.0282], + [51015,0.041], + [51017,0.0406], + [51019,0.0444], + [51021,0.0568], + [51023,0.0419], + [51025,0.0681], + [51027,0.1086], + [51029,0.0593], + [51031,0.0473], + [51033,0.051], + [51035,0.0535], + [51036,0.0533], + [51037,0.0571], + [51041,0.0431], + [51043,0.0398], + [51045,0.055], + [51047,0.0435], + [51049,0.0516], + [51051,0.101], + [51053,0.0542], + [51057,0.0539], + [51059,0.0357], + [51061,0.0395], + [51063,0.0398], + [51065,0.0377], + [51067,0.0467], + [51069,0.0397], + [51071,0.0519], + [51073,0.0408], + [51075,0.0418], + [51077,0.0592], + [51079,0.0373], + [51081,0.0539], + [51083,0.0636], + [51085,0.0388], + [51087,0.043], + [51089,0.0641], + [51091,0.0351], + [51093,0.0457], + [51095,0.0433], + [51097,0.0482], + [51099,0.0476], + [51101,0.0423], + [51103,0.0661], + [51105,0.0723], + [51107,0.0357], + [51109,0.0424], + [51111,0.0511], + [51113,0.0341], + [51115,0.042], + [51117,0.0612], + [51119,0.0424], + [51121,0.0433], + [51125,0.0407], + [51127,0.0382], + [51131,0.0612], + [51133,0.0611], + [51135,0.0453], + [51137,0.046], + [51139,0.0689], + [51141,0.0542], + [51143,0.0531], + [51145,0.0398], + [51147,0.0625], + [51149,0.0541], + [51153,0.0413], + [51155,0.0506], + [51157,0.0415], + [51159,0.0456], + [51161,0.0393], + [51163,0.0471], + [51165,0.0412], + [51167,0.0657], + [51169,0.0516], + [51171,0.0427], + [51173,0.0652], + [51175,0.0401], + [51177,0.0464], + [51179,0.0446], + [51181,0.0506], + [51183,0.0685], + [51185,0.074], + [51187,0.0477], + [51191,0.048], + [51193,0.0539], + [51195,0.0829], + [51197,0.0543], + [51199,0.0429], + [51510,0.0329], + [51520,0.0536], + [51530,0.0507], + [51540,0.0369], + [51550,0.0454], + [51570,0.0472], + [51580,0.0604], + [51590,0.0723], + [51595,0.0695], + [51600,0.035], + [51610,0.0305], + [51620,0.0671], + [51630,0.0535], + [51640,0.055], + [51650,0.0601], + [51660,0.0531], + [51670,0.0758], + [51678,0.0684], + [51680,0.056], + [51683,0.0415], + [51685,0.0419], + [51690,0.0879], + [51700,0.0544], + [51710,0.0559], + [51720,0.0698], + [51730,0.0918], + [51735,0.0387], + [51740,0.0623], + [51750,0.0566], + [51760,0.0522], + [51770,0.049], + [51775,0.0442], + [51790,0.0435], + [51800,0.0497], + [51810,0.0429], + [51820,0.0479], + [51830,0.0634], + [51840,0.0439], + [53001,0.0696], + [53003,0.0482], + [53005,0.0672], + [53007,0.0561], + [53009,0.0816], + [53011,0.0647], + [53013,0.0661], + [53015,0.0777], + [53017,0.0644], + [53019,0.1025], + [53021,0.0764], + [53023,0.0624], + [53025,0.0733], + [53027,0.0911], + [53029,0.0615], + [53031,0.0717], + [53033,0.0428], + [53035,0.0559], + [53037,0.0625], + [53039,0.0722], + [53041,0.0847], + [53043,0.0588], + [53045,0.0788], + [53047,0.0698], + [53049,0.0905], + [53051,0.0971], + [53053,0.0646], + [53055,0.0486], + [53057,0.0682], + [53059,0.0747], + [53061,0.0467], + [53063,0.0656], + [53065,0.0897], + [53067,0.0601], + [53069,0.0904], + [53071,0.0591], + [53073,0.0599], + [53075,0.0489], + [53077,0.0813], + [54001,0.0741], + [54003,0.0491], + [54005,0.0974], + [54007,0.0894], + [54009,0.0734], + [54011,0.0544], + [54013,0.1248], + [54015,0.1118], + [54017,0.0553], + [54019,0.086], + [54021,0.0782], + [54023,0.076], + [54025,0.0656], + [54027,0.0561], + [54029,0.0781], + [54031,0.0748], + [54033,0.0631], + [54035,0.0722], + [54037,0.0412], + [54039,0.06], + [54041,0.0826], + [54043,0.0976], + [54045,0.1123], + [54047,0.1277], + [54049,0.0687], + [54051,0.0848], + [54053,0.0854], + [54055,0.0726], + [54057,0.0735], + [54059,0.1316], + [54061,0.0471], + [54063,0.0558], + [54065,0.055], + [54067,0.0906], + [54069,0.0562], + [54071,0.0466], + [54073,0.085], + [54075,0.0815], + [54077,0.0625], + [54079,0.0561], + [54081,0.074], + [54083,0.0703], + [54085,0.07], + [54087,0.1152], + [54089,0.0705], + [54091,0.06], + [54093,0.0612], + [54095,0.0938], + [54097,0.0804], + [54099,0.0712], + [54101,0.0757], + [54103,0.1002], + [54105,0.1035], + [54107,0.0631], + [54109,0.0964], + [55001,0.0726], + [55003,0.0624], + [55005,0.0498], + [55007,0.0831], + [55009,0.0407], + [55011,0.0489], + [55013,0.0701], + [55015,0.0357], + [55017,0.0471], + [55019,0.0437], + [55021,0.0437], + [55023,0.0584], + [55025,0.0318], + [55027,0.0441], + [55029,0.0665], + [55031,0.0495], + [55033,0.0449], + [55035,0.0381], + [55037,0.0673], + [55039,0.0407], + [55041,0.0747], + [55043,0.0438], + [55045,0.0381], + [55047,0.0541], + [55049,0.0424], + [55051,0.0877], + [55053,0.0476], + [55055,0.0423], + [55057,0.0513], + [55059,0.051], + [55061,0.0409], + [55063,0.0385], + [55065,0.0367], + [55067,0.0608], + [55069,0.05], + [55071,0.0502], + [55073,0.0402], + [55075,0.058], + [55077,0.0613], + [55078,0.0966], + [55079,0.0575], + [55081,0.0445], + [55083,0.0515], + [55085,0.0576], + [55087,0.0396], + [55089,0.0369], + [55091,0.0418], + [55093,0.0393], + [55095,0.0482], + [55097,0.0458], + [55099,0.0445], + [55101,0.0561], + [55103,0.0419], + [55105,0.0518], + [55107,0.0546], + [55109,0.0383], + [55111,0.041], + [55113,0.0791], + [55115,0.0487], + [55117,0.0377], + [55119,0.044], + [55121,0.0391], + [55123,0.041], + [55125,0.07], + [55127,0.0463], + [55129,0.0536], + [55131,0.0375], + [55133,0.038], + [55135,0.0465], + [55137,0.0629], + [55139,0.0424], + [55141,0.055], + [56001,0.0316], + [56003,0.0445], + [56005,0.0395], + [56007,0.0374], + [56009,0.0367], + [56011,0.035], + [56013,0.0556], + [56015,0.033], + [56017,0.042], + [56019,0.0491], + [56021,0.0398], + [56023,0.0473], + [56025,0.0492], + [56027,0.0301], + [56029,0.0432], + [56031,0.0394], + [56033,0.0425], + [56035,0.0524], + [56037,0.0473], + [56039,0.0389], + [56041,0.0502], + [56043,0.0421], + [56045,0.0343] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2016.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2016.json new file mode 100644 index 0000000..e66a3a7 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2016"], + [1001,0.0511], + [1003,0.0535], + [1005,0.0836], + [1007,0.0647], + [1009,0.054], + [1011,0.0686], + [1013,0.0693], + [1015,0.0655], + [1017,0.0547], + [1019,0.0507], + [1021,0.055], + [1023,0.0853], + [1025,0.1089], + [1027,0.0596], + [1029,0.06], + [1031,0.0588], + [1033,0.0696], + [1035,0.0844], + [1037,0.0598], + [1039,0.0677], + [1041,0.0588], + [1043,0.0498], + [1045,0.058], + [1047,0.0924], + [1049,0.0608], + [1051,0.0477], + [1053,0.0666], + [1055,0.0592], + [1057,0.0675], + [1059,0.0589], + [1061,0.0579], + [1063,0.0996], + [1065,0.0767], + [1067,0.0653], + [1069,0.058], + [1071,0.0632], + [1073,0.0575], + [1075,0.0564], + [1077,0.0638], + [1079,0.0692], + [1081,0.0524], + [1083,0.0526], + [1085,0.1058], + [1087,0.0763], + [1089,0.0514], + [1091,0.0716], + [1093,0.0664], + [1095,0.0534], + [1097,0.0664], + [1099,0.0908], + [1101,0.0568], + [1103,0.0554], + [1105,0.1033], + [1107,0.0688], + [1109,0.0651], + [1111,0.0559], + [1113,0.0556], + [1115,0.052], + [1117,0.0431], + [1119,0.0771], + [1121,0.0661], + [1123,0.0559], + [1125,0.0566], + [1127,0.0745], + [1129,0.0864], + [1131,0.1444], + [1133,0.071], + [2013,0.027], + [2016,0.0334], + [2020,0.0556], + [2050,0.1434], + [2060,0.07], + [2068,0.0912], + [2070,0.097], + [2090,0.0592], + [2100,0.1031], + [2105,0.1193], + [2110,0.0452], + [2122,0.0859], + [2130,0.0658], + [2150,0.0519], + [2158,null], + [2164,0.1263], + [2170,0.0829], + [2180,0.128], + [2185,0.0684], + [2188,0.1611], + [2195,0.0908], + [2198,0.1225], + [2220,0.0466], + [2230,0.1126], + [2240,0.1082], + [2261,0.0865], + [2275,0.0758], + [2282,0.0857], + [2290,0.1798], + [4001,0.1145], + [4003,0.0622], + [4005,0.0601], + [4007,0.0722], + [4009,0.0672], + [4011,0.0757], + [4012,0.0603], + [4013,0.0457], + [4015,0.0661], + [4017,0.0825], + [4019,0.0495], + [4021,0.0553], + [4023,0.1002], + [4025,0.0492], + [4027,0.188], + [5001,0.0338], + [5003,0.0625], + [5005,0.0426], + [5007,0.029], + [5009,0.0365], + [5011,0.0523], + [5013,0.0458], + [5015,0.0353], + [5017,0.0655], + [5019,0.0439], + [5021,0.0561], + [5023,0.059], + [5025,0.0448], + [5027,0.0568], + [5029,0.0569], + [5031,0.0322], + [5033,0.0387], + [5035,0.0449], + [5037,0.0439], + [5039,0.0498], + [5041,0.0541], + [5043,0.0576], + [5045,0.0378], + [5047,0.04], + [5049,0.043], + [5051,0.0427], + [5053,0.0358], + [5055,0.0426], + [5057,0.0376], + [5059,0.0392], + [5061,0.0325], + [5063,0.0492], + [5065,0.0557], + [5067,0.062], + [5069,0.0557], + [5071,0.0472], + [5073,0.0588], + [5075,0.0429], + [5077,0.0468], + [5079,0.0478], + [5081,0.0464], + [5083,0.0456], + [5085,0.0331], + [5087,0.0318], + [5089,0.0396], + [5091,0.0416], + [5093,0.0674], + [5095,0.0478], + [5097,0.0515], + [5099,0.037], + [5101,0.0386], + [5103,0.0503], + [5105,0.0474], + [5107,0.0585], + [5109,0.0426], + [5111,0.0426], + [5113,0.0486], + [5115,0.0458], + [5117,0.038], + [5119,0.0353], + [5121,0.0458], + [5123,0.0517], + [5125,0.031], + [5127,0.037], + [5129,0.0454], + [5131,0.037], + [5133,0.0488], + [5135,0.054], + [5137,0.0512], + [5139,0.0544], + [5141,0.0684], + [5143,0.0273], + [5145,0.0517], + [5147,0.0545], + [5149,0.0444], + [6001,0.0428], + [6003,0.0646], + [6005,0.0596], + [6007,0.0661], + [6009,0.0567], + [6011,0.1558], + [6013,0.0446], + [6015,0.0753], + [6017,0.0514], + [6019,0.0951], + [6021,0.0834], + [6023,0.0493], + [6025,0.2364], + [6027,0.0529], + [6029,0.1041], + [6031,0.0997], + [6033,0.0672], + [6035,0.0693], + [6037,0.0525], + [6039,0.0924], + [6041,0.0328], + [6043,0.0686], + [6045,0.0528], + [6047,0.1059], + [6049,0.0781], + [6051,0.0536], + [6053,0.0766], + [6055,0.0429], + [6057,0.0478], + [6059,0.0404], + [6061,0.0449], + [6063,0.0973], + [6065,0.0613], + [6067,0.0542], + [6069,0.0683], + [6071,0.0578], + [6073,0.0472], + [6075,0.0328], + [6077,0.0813], + [6079,0.0431], + [6081,0.0304], + [6083,0.0506], + [6085,0.038], + [6087,0.0697], + [6089,0.0697], + [6091,0.0762], + [6093,0.085], + [6095,0.0551], + [6097,0.0398], + [6099,0.0862], + [6101,0.0982], + [6103,0.0712], + [6105,0.0709], + [6107,0.1118], + [6109,0.0622], + [6111,0.0522], + [6113,0.059], + [6115,0.0864], + [8001,0.0357], + [8003,0.0404], + [8005,0.0308], + [8007,0.0325], + [8009,0.0167], + [8011,0.0303], + [8013,0.0266], + [8014,0.0288], + [8015,0.0264], + [8017,0.0222], + [8019,0.0317], + [8021,0.0485], + [8023,0.048], + [8025,0.0352], + [8027,0.0312], + [8029,0.049], + [8031,0.0309], + [8033,0.0392], + [8035,0.0265], + [8037,0.0273], + [8039,0.0258], + [8041,0.0374], + [8043,0.0516], + [8045,0.0348], + [8047,0.0238], + [8049,0.0268], + [8051,0.0229], + [8053,0.0246], + [8055,0.0632], + [8057,0.0269], + [8059,0.0294], + [8061,0.0201], + [8063,0.0212], + [8065,0.0284], + [8067,0.0286], + [8069,0.0279], + [8071,0.0504], + [8073,0.0254], + [8075,0.0292], + [8077,0.053], + [8079,0.0216], + [8081,0.0396], + [8083,0.0495], + [8085,0.0412], + [8087,0.0344], + [8089,0.047], + [8091,0.0374], + [8093,0.0278], + [8095,0.0198], + [8097,0.0335], + [8099,0.0322], + [8101,0.0476], + [8103,0.0501], + [8105,0.0493], + [8107,0.026], + [8109,0.0487], + [8111,0.0355], + [8113,0.0324], + [8115,0.0229], + [8117,0.0206], + [8119,0.037], + [8121,0.0212], + [8123,0.034], + [8125,0.0212], + [9001,0.0486], + [9003,0.0538], + [9005,0.0472], + [9007,0.0445], + [9009,0.0551], + [9011,0.0512], + [9013,0.0451], + [9015,0.0556], + [10001,0.0492], + [10003,0.0443], + [10005,0.0451], + [11001,0.061], + [12001,0.0426], + [12003,0.0486], + [12005,0.0475], + [12007,0.0424], + [12009,0.051], + [12011,0.0448], + [12013,0.0573], + [12015,0.0531], + [12017,0.067], + [12019,0.0448], + [12021,0.0465], + [12023,0.0486], + [12027,0.0525], + [12029,0.0543], + [12031,0.0489], + [12033,0.0493], + [12035,0.0547], + [12037,0.0431], + [12039,0.0624], + [12041,0.0499], + [12043,0.0621], + [12045,0.0462], + [12047,0.0564], + [12049,0.0661], + [12051,0.0849], + [12053,0.0602], + [12055,0.0652], + [12057,0.044], + [12059,0.0539], + [12061,0.06], + [12063,0.052], + [12065,0.0523], + [12067,0.0431], + [12069,0.0484], + [12071,0.046], + [12073,0.0452], + [12075,0.0515], + [12077,0.0512], + [12079,0.0524], + [12081,0.0454], + [12083,0.058], + [12085,0.0482], + [12086,0.0531], + [12087,0.0317], + [12089,0.0448], + [12091,0.04], + [12093,0.0511], + [12095,0.0433], + [12097,0.0494], + [12099,0.0468], + [12101,0.0511], + [12103,0.0433], + [12105,0.0551], + [12107,0.0634], + [12109,0.0377], + [12111,0.0576], + [12113,0.045], + [12115,0.0452], + [12117,0.0426], + [12119,0.0714], + [12121,0.0488], + [12123,0.0538], + [12125,0.0431], + [12127,0.0504], + [12129,0.0412], + [12131,0.0428], + [12133,0.0511], + [13001,0.0636], + [13003,0.0522], + [13005,0.0523], + [13007,0.0769], + [13009,0.0683], + [13011,0.0485], + [13013,0.0471], + [13015,0.0511], + [13017,0.0819], + [13019,0.061], + [13021,0.0594], + [13023,0.079], + [13025,0.0671], + [13027,0.0523], + [13029,0.0485], + [13031,0.0571], + [13033,0.077], + [13035,0.0562], + [13037,0.0563], + [13039,0.0575], + [13043,0.0477], + [13045,0.0599], + [13047,0.0482], + [13049,0.0563], + [13051,0.0523], + [13053,0.0825], + [13055,0.0629], + [13057,0.0425], + [13059,0.055], + [13061,0.104], + [13063,0.0659], + [13065,0.0617], + [13067,0.0458], + [13069,0.058], + [13071,0.0524], + [13073,0.0464], + [13075,0.054], + [13077,0.0496], + [13079,0.0588], + [13081,0.0602], + [13083,0.0503], + [13085,0.0466], + [13087,0.0663], + [13089,0.0538], + [13091,0.0725], + [13093,0.0577], + [13095,0.0683], + [13097,0.0554], + [13099,0.0686], + [13101,0.043], + [13103,0.0481], + [13105,0.0646], + [13107,0.0771], + [13109,0.049], + [13111,0.0533], + [13113,0.047], + [13115,0.0599], + [13117,0.0416], + [13119,0.0523], + [13121,0.0537], + [13123,0.0566], + [13125,0.0599], + [13127,0.0529], + [13129,0.0558], + [13131,0.0542], + [13133,0.0602], + [13135,0.0474], + [13137,0.0527], + [13139,0.0449], + [13141,0.0837], + [13143,0.0578], + [13145,0.0487], + [13147,0.0536], + [13149,0.0592], + [13151,0.0549], + [13153,0.0533], + [13155,0.0782], + [13157,0.0425], + [13159,0.0477], + [13161,0.0634], + [13163,0.0736], + [13165,0.0755], + [13167,0.0608], + [13169,0.0479], + [13171,0.0654], + [13173,0.0577], + [13175,0.0663], + [13177,0.0468], + [13179,0.0583], + [13181,0.0589], + [13183,0.0538], + [13185,0.0526], + [13187,0.0477], + [13189,0.0729], + [13191,0.0582], + [13193,0.0824], + [13195,0.0493], + [13197,0.073], + [13199,0.0684], + [13201,0.054], + [13205,0.0655], + [13207,0.0516], + [13209,0.0743], + [13211,0.0504], + [13213,0.0708], + [13215,0.0677], + [13217,0.0597], + [13219,0.0408], + [13221,0.0485], + [13223,0.0461], + [13225,0.0699], + [13227,0.0486], + [13229,0.0528], + [13231,0.0517], + [13233,0.0612], + [13235,0.0584], + [13237,0.0702], + [13239,0.0723], + [13241,0.0589], + [13243,0.084], + [13245,0.0674], + [13247,0.0578], + [13249,0.0628], + [13251,0.0751], + [13253,0.0785], + [13255,0.0685], + [13257,0.0587], + [13259,0.0636], + [13261,0.0755], + [13263,0.0666], + [13265,0.0692], + [13267,0.0534], + [13269,0.0746], + [13271,0.0835], + [13273,0.0648], + [13275,0.0622], + [13277,0.0537], + [13279,0.0779], + [13281,0.0679], + [13283,0.0765], + [13285,0.0508], + [13287,0.0645], + [13289,0.0867], + [13291,0.0472], + [13293,0.0643], + [13295,0.0556], + [13297,0.049], + [13299,0.0539], + [13301,0.0692], + [13303,0.0631], + [13305,0.0684], + [13307,0.0858], + [13309,0.0899], + [13311,0.0462], + [13313,0.061], + [13315,0.072], + [13317,0.066], + [13319,0.0632], + [13321,0.0581], + [15001,0.0366], + [15003,0.0276], + [15005,null], + [15007,0.0321], + [15009,0.0309], + [16001,0.0329], + [16003,0.0695], + [16005,0.0356], + [16007,0.0453], + [16009,0.0589], + [16011,0.0351], + [16013,0.0314], + [16015,0.053], + [16017,0.0539], + [16019,0.0317], + [16021,0.0524], + [16023,0.0411], + [16025,0.0365], + [16027,0.0434], + [16029,0.0356], + [16031,0.0296], + [16033,0.0331], + [16035,0.0729], + [16037,0.051], + [16039,0.0413], + [16041,0.0305], + [16043,0.0334], + [16045,0.0468], + [16047,0.0304], + [16049,0.0566], + [16051,0.0308], + [16053,0.0308], + [16055,0.0465], + [16057,0.0316], + [16059,0.0614], + [16061,0.0629], + [16063,0.0444], + [16065,0.0241], + [16067,0.0318], + [16069,0.0327], + [16071,0.036], + [16073,0.0455], + [16075,0.0462], + [16077,0.0408], + [16079,0.0707], + [16081,0.0322], + [16083,0.0332], + [16085,0.0542], + [16087,0.0551], + [17001,0.0471], + [17003,0.0923], + [17005,0.0507], + [17007,0.0629], + [17009,0.0333], + [17011,0.0598], + [17013,0.0612], + [17015,0.0559], + [17017,0.0549], + [17019,0.0505], + [17021,0.0629], + [17023,0.0576], + [17025,0.0676], + [17027,0.0442], + [17029,0.0583], + [17031,0.0608], + [17033,0.0617], + [17035,0.0514], + [17037,0.053], + [17039,0.0566], + [17041,0.0469], + [17043,0.0474], + [17045,0.0593], + [17047,0.0577], + [17049,0.0468], + [17051,0.0653], + [17053,0.0546], + [17055,0.0802], + [17057,0.0732], + [17059,0.0748], + [17061,0.0575], + [17063,0.0675], + [17065,0.0621], + [17067,0.0646], + [17069,0.096], + [17071,0.0604], + [17073,0.06], + [17075,0.0542], + [17077,0.0533], + [17079,0.0621], + [17081,0.0634], + [17083,0.0578], + [17085,0.0533], + [17087,0.0864], + [17089,0.0549], + [17091,0.0629], + [17093,0.0514], + [17095,0.0609], + [17097,0.0518], + [17099,0.067], + [17101,0.0735], + [17103,0.0508], + [17105,0.0536], + [17107,0.0526], + [17109,0.0621], + [17111,0.0527], + [17113,0.0503], + [17115,0.0656], + [17117,0.059], + [17119,0.0583], + [17121,0.0632], + [17123,0.0657], + [17125,0.0707], + [17127,0.0701], + [17129,0.0453], + [17131,0.0618], + [17133,0.0402], + [17135,0.0702], + [17137,0.0487], + [17139,0.0453], + [17141,0.0585], + [17143,0.0683], + [17145,0.0703], + [17147,0.049], + [17149,0.0506], + [17151,0.0681], + [17153,0.084], + [17155,0.0555], + [17157,0.0496], + [17159,0.0586], + [17161,0.0624], + [17163,0.0601], + [17165,0.0846], + [17167,0.0482], + [17169,0.0558], + [17171,0.0558], + [17173,0.0567], + [17175,0.0723], + [17177,0.058], + [17179,0.0636], + [17181,0.0734], + [17183,0.0714], + [17185,0.062], + [17187,0.0522], + [17189,0.0373], + [17191,0.0843], + [17193,0.0649], + [17195,0.0574], + [17197,0.0599], + [17199,0.0609], + [17201,0.0658], + [17203,0.0543], + [18001,0.0358], + [18003,0.0426], + [18005,0.0339], + [18007,0.0423], + [18009,0.0534], + [18011,0.0337], + [18013,0.0402], + [18015,0.0424], + [18017,0.0464], + [18019,0.0415], + [18021,0.0467], + [18023,0.0388], + [18025,0.0564], + [18027,0.0353], + [18029,0.0471], + [18031,0.0355], + [18033,0.0392], + [18035,0.0512], + [18037,0.0311], + [18039,0.0348], + [18041,0.0575], + [18043,0.0408], + [18045,0.0579], + [18047,0.0434], + [18049,0.0468], + [18051,0.0362], + [18053,0.0492], + [18055,0.0653], + [18057,0.032], + [18059,0.0378], + [18061,0.0419], + [18063,0.0349], + [18065,0.0461], + [18067,0.0466], + [18069,0.0405], + [18071,0.0365], + [18073,0.0531], + [18075,0.0453], + [18077,0.0465], + [18079,0.0474], + [18081,0.0363], + [18083,0.0437], + [18085,0.0374], + [18087,0.0345], + [18089,0.0632], + [18091,0.0588], + [18093,0.0568], + [18095,0.0504], + [18097,0.0447], + [18099,0.0374], + [18101,0.0408], + [18103,0.0472], + [18105,0.0464], + [18107,0.0384], + [18109,0.0425], + [18111,0.0559], + [18113,0.0405], + [18115,0.0493], + [18117,0.0506], + [18119,0.0555], + [18121,0.052], + [18123,0.0456], + [18125,0.0435], + [18127,0.0511], + [18129,0.0394], + [18131,0.0447], + [18133,0.045], + [18135,0.0449], + [18137,0.0457], + [18139,0.0376], + [18141,0.0452], + [18143,0.0484], + [18145,0.0399], + [18147,0.041], + [18149,0.0542], + [18151,0.0366], + [18153,0.0587], + [18155,0.0487], + [18157,0.0405], + [18159,0.0385], + [18161,0.0404], + [18163,0.0411], + [18165,0.0658], + [18167,0.0538], + [18169,0.0426], + [18171,0.0482], + [18173,0.0403], + [18175,0.0456], + [18177,0.0478], + [18179,0.0356], + [18181,0.0397], + [18183,0.0388], + [19001,0.0295], + [19003,0.0261], + [19005,0.0494], + [19007,0.0472], + [19009,0.0329], + [19011,0.036], + [19013,0.0462], + [19015,0.0278], + [19017,0.0356], + [19019,0.041], + [19021,0.0351], + [19023,0.0434], + [19025,0.0376], + [19027,0.0255], + [19029,0.0326], + [19031,0.0331], + [19033,0.0358], + [19035,0.0362], + [19037,0.0441], + [19039,0.0337], + [19041,0.0385], + [19043,0.0424], + [19045,0.0492], + [19047,0.0545], + [19049,0.0263], + [19051,0.0424], + [19053,0.032], + [19055,0.0345], + [19057,0.0492], + [19059,0.0429], + [19061,0.0355], + [19063,0.0425], + [19065,0.0443], + [19067,0.0364], + [19069,0.0346], + [19071,0.0328], + [19073,0.0312], + [19075,0.0345], + [19077,0.0359], + [19079,0.0376], + [19081,0.0269], + [19083,0.0389], + [19085,0.0337], + [19087,0.0354], + [19089,0.0358], + [19091,0.0289], + [19093,0.0256], + [19095,0.031], + [19097,0.0418], + [19099,0.0354], + [19101,0.0365], + [19103,0.0258], + [19105,0.0427], + [19107,0.0428], + [19109,0.0262], + [19111,0.0602], + [19113,0.0366], + [19115,0.0391], + [19117,0.0317], + [19119,0.0203], + [19121,0.0353], + [19123,0.0371], + [19125,0.0301], + [19127,0.0488], + [19129,0.0363], + [19131,0.0262], + [19133,0.0408], + [19135,0.0459], + [19137,0.0352], + [19139,0.038], + [19141,0.0276], + [19143,0.0263], + [19145,0.05], + [19147,0.031], + [19149,0.0255], + [19151,0.0285], + [19153,0.0346], + [19155,0.0339], + [19157,0.0343], + [19159,0.0349], + [19161,0.03], + [19163,0.0453], + [19165,0.0293], + [19167,0.0229], + [19169,0.0234], + [19171,0.0417], + [19173,0.0294], + [19175,0.0379], + [19177,0.0365], + [19179,0.0579], + [19181,0.0319], + [19183,0.0292], + [19185,0.0376], + [19187,0.0398], + [19189,0.0346], + [19191,0.0351], + [19193,0.0355], + [19195,0.0342], + [19197,0.041], + [20001,0.0558], + [20003,0.0431], + [20005,0.062], + [20007,0.0368], + [20009,0.0448], + [20011,0.0485], + [20013,0.0362], + [20015,0.0417], + [20017,0.0348], + [20019,0.0519], + [20021,0.0443], + [20023,0.0283], + [20025,0.0278], + [20027,0.0407], + [20029,0.0411], + [20031,0.0619], + [20033,0.0309], + [20035,0.0442], + [20037,0.0483], + [20039,0.0394], + [20041,0.0443], + [20043,0.0386], + [20045,0.0353], + [20047,0.0302], + [20049,0.0496], + [20051,0.0309], + [20053,0.0385], + [20055,0.0308], + [20057,0.0316], + [20059,0.0419], + [20061,0.0563], + [20063,0.0241], + [20065,0.0441], + [20067,0.0358], + [20069,0.0226], + [20071,0.0208], + [20073,0.0488], + [20075,0.0268], + [20077,0.0358], + [20079,0.0423], + [20081,0.026], + [20083,0.0262], + [20085,0.0346], + [20087,0.0389], + [20089,0.0428], + [20091,0.0326], + [20093,0.0316], + [20095,0.0439], + [20097,0.0275], + [20099,0.0539], + [20101,0.0309], + [20103,0.043], + [20105,0.0345], + [20107,0.0642], + [20109,0.0255], + [20111,0.041], + [20113,0.0315], + [20115,0.0394], + [20117,0.0302], + [20119,0.0269], + [20121,0.0415], + [20123,0.033], + [20125,0.0612], + [20127,0.0383], + [20129,0.0387], + [20131,0.0268], + [20133,0.0717], + [20135,0.0344], + [20137,0.0244], + [20139,0.0441], + [20141,0.034], + [20143,0.0379], + [20145,0.033], + [20147,0.0315], + [20149,0.0348], + [20151,0.0406], + [20153,0.0239], + [20155,0.044], + [20157,0.0275], + [20159,0.0398], + [20161,0.0339], + [20163,0.0472], + [20165,0.0398], + [20167,0.042], + [20169,0.0373], + [20171,0.0246], + [20173,0.0465], + [20175,0.0435], + [20177,0.0401], + [20179,0.0242], + [20181,0.033], + [20183,0.032], + [20185,0.0368], + [20187,0.028], + [20189,0.0395], + [20191,0.0424], + [20193,0.0276], + [20195,0.04], + [20197,0.0356], + [20199,0.0267], + [20201,0.0327], + [20203,0.0232], + [20205,0.06], + [20207,0.0575], + [20209,0.0556], + [21001,0.0689], + [21003,0.0439], + [21005,0.0408], + [21007,0.0894], + [21009,0.0468], + [21011,0.0738], + [21013,0.0913], + [21015,0.0387], + [21017,0.0484], + [21019,0.0823], + [21021,0.0499], + [21023,0.0612], + [21025,0.0945], + [21027,0.0616], + [21029,0.0421], + [21031,0.0554], + [21033,0.0539], + [21035,0.0458], + [21037,0.0389], + [21039,0.0623], + [21041,0.0502], + [21043,0.1036], + [21045,0.047], + [21047,0.0624], + [21049,0.0488], + [21051,0.0977], + [21053,0.0746], + [21055,0.051], + [21057,0.056], + [21059,0.0455], + [21061,0.0631], + [21063,0.1111], + [21065,0.0581], + [21067,0.0362], + [21069,0.061], + [21071,0.1099], + [21073,0.0412], + [21075,0.0691], + [21077,0.0492], + [21079,0.048], + [21081,0.0495], + [21083,0.0612], + [21085,0.0663], + [21087,0.0446], + [21089,0.0879], + [21091,0.0545], + [21093,0.0455], + [21095,0.1229], + [21097,0.047], + [21099,0.0469], + [21101,0.0484], + [21103,0.0417], + [21105,0.0572], + [21107,0.0557], + [21109,0.0768], + [21111,0.0448], + [21113,0.0397], + [21115,0.0973], + [21117,0.0417], + [21119,0.1139], + [21121,0.08], + [21123,0.0469], + [21125,0.0619], + [21127,0.1064], + [21129,0.0938], + [21131,0.1328], + [21133,0.1201], + [21135,0.0938], + [21137,0.0613], + [21139,0.072], + [21141,0.0434], + [21143,0.0575], + [21145,0.0577], + [21147,0.0778], + [21149,0.0488], + [21151,0.0426], + [21153,0.1906], + [21155,0.0418], + [21157,0.0578], + [21159,0.1017], + [21161,0.0626], + [21163,0.0524], + [21165,0.0867], + [21167,0.0481], + [21169,0.0457], + [21171,0.041], + [21173,0.0643], + [21175,0.0789], + [21177,0.0719], + [21179,0.0455], + [21181,0.0552], + [21183,0.0665], + [21185,0.0344], + [21187,0.0421], + [21189,0.0941], + [21191,0.0488], + [21193,0.1065], + [21195,0.1089], + [21197,0.0713], + [21199,0.0536], + [21201,0.0608], + [21203,0.0623], + [21205,0.0585], + [21207,0.0841], + [21209,0.0386], + [21211,0.0362], + [21213,0.0449], + [21215,0.0387], + [21217,0.0526], + [21219,0.0432], + [21221,0.057], + [21223,0.0547], + [21225,0.0675], + [21227,0.0398], + [21229,0.0418], + [21231,0.0745], + [21233,0.0595], + [21235,0.066], + [21237,0.0993], + [21239,0.0326], + [22001,0.0736], + [22003,0.064], + [22005,0.0488], + [22007,0.0838], + [22009,0.0704], + [22011,0.0603], + [22013,0.0757], + [22015,0.053], + [22017,0.0659], + [22019,0.0476], + [22021,0.0762], + [22023,0.0436], + [22025,0.0927], + [22027,0.0666], + [22029,0.0823], + [22031,0.0733], + [22033,0.0514], + [22035,0.1153], + [22037,0.0575], + [22039,0.0739], + [22041,0.0903], + [22043,0.0696], + [22045,0.0936], + [22047,0.0682], + [22049,0.0555], + [22051,0.0526], + [22053,0.06], + [22055,0.0611], + [22057,0.0626], + [22059,0.066], + [22061,0.062], + [22063,0.0505], + [22065,0.0893], + [22067,0.0966], + [22069,0.067], + [22071,0.0584], + [22073,0.0606], + [22075,0.0533], + [22077,0.0646], + [22079,0.0614], + [22081,0.06], + [22083,0.074], + [22085,0.069], + [22087,0.0606], + [22089,0.053], + [22091,0.0764], + [22093,0.0746], + [22095,0.0681], + [22097,0.0804], + [22099,0.0773], + [22101,0.0935], + [22103,0.0495], + [22105,0.0672], + [22107,0.0976], + [22109,0.0694], + [22111,0.0653], + [22113,0.0759], + [22115,0.0721], + [22117,0.07], + [22119,0.085], + [22121,0.0531], + [22123,0.1192], + [22125,0.0515], + [22127,0.0774], + [23001,0.0359], + [23003,0.0543], + [23005,0.0292], + [23007,0.0447], + [23009,0.0452], + [23011,0.0364], + [23013,0.0352], + [23015,0.037], + [23017,0.0463], + [23019,0.0434], + [23021,0.0499], + [23023,0.0297], + [23025,0.0562], + [23027,0.0418], + [23029,0.0555], + [23031,0.0338], + [24001,0.0622], + [24003,0.0381], + [24005,0.0465], + [24009,0.0386], + [24011,0.0477], + [24013,0.0363], + [24015,0.0522], + [24017,0.0424], + [24019,0.0621], + [24021,0.0391], + [24023,0.0566], + [24025,0.0422], + [24027,0.0329], + [24029,0.0486], + [24031,0.0345], + [24033,0.0445], + [24035,0.0391], + [24037,0.0424], + [24039,0.0725], + [24041,0.0419], + [24043,0.0512], + [24045,0.0623], + [24047,0.0929], + [24510,0.0658], + [25001,0.0492], + [25003,0.0451], + [25005,0.0494], + [25007,0.0519], + [25009,0.0399], + [25011,0.0352], + [25013,0.0527], + [25015,0.0364], + [25017,0.0318], + [25019,0.0446], + [25021,0.0339], + [25023,0.0409], + [25025,0.0355], + [25027,0.0412], + [26001,0.0766], + [26003,0.0825], + [26005,0.039], + [26007,0.0594], + [26009,0.0706], + [26011,0.0829], + [26013,0.0823], + [26015,0.0402], + [26017,0.0545], + [26019,0.0658], + [26021,0.0496], + [26023,0.0482], + [26025,0.048], + [26027,0.0469], + [26029,0.055], + [26031,0.0939], + [26033,0.0768], + [26035,0.0732], + [26037,0.037], + [26039,0.0759], + [26041,0.0654], + [26043,0.0519], + [26045,0.0413], + [26047,0.0651], + [26049,0.0564], + [26051,0.0699], + [26053,0.0614], + [26055,0.0429], + [26057,0.0518], + [26059,0.0505], + [26061,0.0613], + [26063,0.0517], + [26065,0.043], + [26067,0.0423], + [26069,0.0728], + [26071,0.0645], + [26073,0.047], + [26075,0.0485], + [26077,0.0406], + [26079,0.0717], + [26081,0.0353], + [26083,0.0861], + [26085,0.0749], + [26087,0.0644], + [26089,0.0486], + [26091,0.046], + [26093,0.041], + [26095,0.0675], + [26097,0.0986], + [26099,0.0521], + [26101,0.0656], + [26103,0.057], + [26105,0.0583], + [26107,0.0562], + [26109,0.0518], + [26111,0.0472], + [26113,0.0595], + [26115,0.0432], + [26117,0.0528], + [26119,0.1017], + [26121,0.0546], + [26123,0.0487], + [26125,0.0416], + [26127,0.0733], + [26129,0.078], + [26131,0.0854], + [26133,0.0571], + [26135,0.0733], + [26137,0.0596], + [26139,0.0338], + [26141,0.0956], + [26143,0.0848], + [26145,0.0533], + [26147,0.061], + [26149,0.0414], + [26151,0.0623], + [26153,0.0913], + [26155,0.0526], + [26157,0.0627], + [26159,0.0576], + [26161,0.0367], + [26163,0.0627], + [26165,0.0586], + [27001,0.07], + [27003,0.0372], + [27005,0.0456], + [27007,0.0521], + [27009,0.0441], + [27011,0.0479], + [27013,0.0321], + [27015,0.0419], + [27017,0.0529], + [27019,0.033], + [27021,0.068], + [27023,0.0451], + [27025,0.0432], + [27027,0.0343], + [27029,0.0957], + [27031,0.0451], + [27033,0.072], + [27035,0.0509], + [27037,0.0339], + [27039,0.0371], + [27041,0.0349], + [27043,0.0438], + [27045,0.0403], + [27047,0.0382], + [27049,0.0372], + [27051,0.0467], + [27053,0.0333], + [27055,0.0391], + [27057,0.0651], + [27059,0.0466], + [27061,0.0855], + [27063,0.0451], + [27065,0.0649], + [27067,0.0379], + [27069,0.0456], + [27071,0.0847], + [27073,0.0427], + [27075,0.0636], + [27077,0.0481], + [27079,0.0487], + [27081,0.0365], + [27083,0.0355], + [27085,0.0441], + [27087,0.0576], + [27089,0.0729], + [27091,0.041], + [27093,0.0449], + [27095,0.0595], + [27097,0.056], + [27099,0.0316], + [27101,0.0472], + [27103,0.0283], + [27105,0.0377], + [27107,0.0478], + [27109,0.0298], + [27111,0.0435], + [27113,0.0574], + [27115,0.0582], + [27117,0.038], + [27119,0.0433], + [27121,0.0354], + [27123,0.036], + [27125,0.0731], + [27127,0.041], + [27129,0.0526], + [27131,0.035], + [27133,0.0231], + [27135,0.0511], + [27137,0.0571], + [27139,0.0321], + [27141,0.0406], + [27143,0.0427], + [27145,0.0376], + [27147,0.0356], + [27149,0.03], + [27151,0.0537], + [27153,0.0471], + [27155,0.0391], + [27157,0.0368], + [27159,0.0592], + [27161,0.0428], + [27163,0.0334], + [27165,0.0486], + [27167,0.0324], + [27169,0.0354], + [27171,0.0385], + [27173,0.0382], + [28001,0.0827], + [28003,0.052], + [28005,0.0735], + [28007,0.0671], + [28009,0.0672], + [28011,0.0724], + [28013,0.0536], + [28015,0.0729], + [28017,0.0658], + [28019,0.0566], + [28021,0.1137], + [28023,0.0676], + [28025,0.0812], + [28027,0.087], + [28029,0.0652], + [28031,0.0545], + [28033,0.0422], + [28035,0.0573], + [28037,0.0718], + [28039,0.074], + [28041,0.0729], + [28043,0.0513], + [28045,0.0609], + [28047,0.0552], + [28049,0.0544], + [28051,0.11], + [28053,0.1141], + [28055,0.1397], + [28057,0.0507], + [28059,0.0658], + [28061,0.0766], + [28063,0.1489], + [28065,0.0824], + [28067,0.0612], + [28069,0.0872], + [28071,0.0488], + [28073,0.0454], + [28075,0.0588], + [28077,0.0712], + [28079,0.0606], + [28081,0.0486], + [28083,0.0908], + [28085,0.0569], + [28087,0.0614], + [28089,0.0431], + [28091,0.0656], + [28093,0.0603], + [28095,0.0631], + [28097,0.0639], + [28099,0.0575], + [28101,0.059], + [28103,0.0826], + [28105,0.0543], + [28107,0.0736], + [28109,0.0598], + [28111,0.0713], + [28113,0.0679], + [28115,0.0473], + [28117,0.0545], + [28119,0.0977], + [28121,0.0396], + [28123,0.046], + [28125,0.088], + [28127,0.0543], + [28129,0.0526], + [28131,0.0674], + [28133,0.093], + [28135,0.0678], + [28137,0.0584], + [28139,0.0556], + [28141,0.0548], + [28143,0.0713], + [28145,0.0442], + [28147,0.0772], + [28149,0.0633], + [28151,0.09], + [28153,0.0732], + [28155,0.0627], + [28157,0.1018], + [28159,0.071], + [28161,0.0628], + [28163,0.0738], + [29001,0.0568], + [29003,0.0372], + [29005,0.0457], + [29007,0.0425], + [29009,0.045], + [29011,0.0524], + [29013,0.0536], + [29015,0.0607], + [29017,0.0523], + [29019,0.033], + [29021,0.0409], + [29023,0.0573], + [29025,0.0471], + [29027,0.041], + [29029,0.058], + [29031,0.0434], + [29033,0.0538], + [29035,0.0711], + [29037,0.0415], + [29039,0.05], + [29041,0.0435], + [29043,0.0393], + [29045,0.0735], + [29047,0.039], + [29049,0.0423], + [29051,0.0357], + [29053,0.0491], + [29055,0.0533], + [29057,0.0446], + [29059,0.055], + [29061,0.0386], + [29063,0.0434], + [29065,0.054], + [29067,0.0609], + [29069,0.0824], + [29071,0.0437], + [29073,0.0431], + [29075,0.0373], + [29077,0.038], + [29079,0.0456], + [29081,0.0423], + [29083,0.05], + [29085,0.0562], + [29087,0.0324], + [29089,0.0443], + [29091,0.0635], + [29093,0.0718], + [29095,0.0513], + [29097,0.0415], + [29099,0.0431], + [29101,0.0491], + [29103,0.0363], + [29105,0.0545], + [29107,0.0432], + [29109,0.0438], + [29111,0.0451], + [29113,0.0449], + [29115,0.0672], + [29117,0.0391], + [29119,0.0435], + [29121,0.0478], + [29123,0.0551], + [29125,0.0503], + [29127,0.0428], + [29129,0.0461], + [29131,0.0518], + [29133,0.0665], + [29135,0.0435], + [29137,0.0485], + [29139,0.0457], + [29141,0.0588], + [29143,0.0928], + [29145,0.0437], + [29147,0.0468], + [29149,0.06], + [29151,0.034], + [29153,0.0726], + [29155,0.0889], + [29157,0.0357], + [29159,0.0494], + [29161,0.0475], + [29163,0.0451], + [29165,0.0362], + [29167,0.0487], + [29169,0.0544], + [29171,0.0456], + [29173,0.0401], + [29175,0.0525], + [29177,0.0492], + [29179,0.0648], + [29181,0.0708], + [29183,0.0351], + [29185,0.0627], + [29186,0.0466], + [29187,0.0552], + [29189,0.0422], + [29195,0.0468], + [29197,0.0639], + [29199,0.0415], + [29201,0.0573], + [29203,0.0736], + [29205,0.042], + [29207,0.0642], + [29209,0.0699], + [29211,0.0577], + [29213,0.074], + [29215,0.0627], + [29217,0.0486], + [29219,0.0418], + [29221,0.0635], + [29223,0.0535], + [29225,0.0492], + [29227,0.0297], + [29229,0.0592], + [29510,0.0546], + [30001,0.0331], + [30003,0.0725], + [30005,0.0456], + [30007,0.049], + [30009,0.0393], + [30011,0.0273], + [30013,0.0397], + [30015,0.0374], + [30017,0.0353], + [30019,0.0257], + [30021,0.0385], + [30023,0.038], + [30025,0.0364], + [30027,0.0392], + [30029,0.0558], + [30031,0.0282], + [30033,0.0288], + [30035,0.0856], + [30037,0.0449], + [30039,0.0589], + [30041,0.0431], + [30043,0.0461], + [30045,0.0343], + [30047,0.0474], + [30049,0.033], + [30051,0.0314], + [30053,0.0901], + [30055,0.0192], + [30057,0.0379], + [30059,0.0404], + [30061,0.0759], + [30063,0.0375], + [30065,0.051], + [30067,0.0428], + [30069,0.0469], + [30071,0.0532], + [30073,0.0419], + [30075,0.0234], + [30077,0.0502], + [30079,0.0323], + [30081,0.0478], + [30083,0.0496], + [30085,0.0532], + [30087,0.0548], + [30089,0.0774], + [30091,0.0327], + [30093,0.0428], + [30095,0.0397], + [30097,0.0306], + [30099,0.0361], + [30101,0.0346], + [30103,0.0425], + [30105,0.0339], + [30107,0.0503], + [30109,0.0391], + [30111,0.036], + [31001,0.0315], + [31003,0.0262], + [31005,0.0573], + [31007,0.0337], + [31009,0.0453], + [31011,0.0263], + [31013,0.0362], + [31015,0.0301], + [31017,0.037], + [31019,0.0251], + [31021,0.037], + [31023,0.0323], + [31025,0.0338], + [31027,0.0256], + [31029,0.0205], + [31031,0.0228], + [31033,0.0283], + [31035,0.0314], + [31037,0.0283], + [31039,0.0289], + [31041,0.0235], + [31043,0.0417], + [31045,0.0296], + [31047,0.0297], + [31049,0.0264], + [31051,0.0333], + [31053,0.0308], + [31055,0.0333], + [31057,0.0218], + [31059,0.0277], + [31061,0.03], + [31063,0.0287], + [31065,0.028], + [31067,0.0331], + [31069,0.0329], + [31071,0.0251], + [31073,0.0256], + [31075,0.0221], + [31077,0.0308], + [31079,0.0368], + [31081,0.028], + [31083,0.0251], + [31085,0.0238], + [31087,0.0361], + [31089,0.0248], + [31091,0.0358], + [31093,0.0331], + [31095,0.024], + [31097,0.0316], + [31099,0.0236], + [31101,0.0291], + [31103,0.021], + [31105,0.0407], + [31107,0.0308], + [31109,0.0278], + [31111,0.0308], + [31113,0.029], + [31115,0.0354], + [31117,0.0238], + [31119,0.0276], + [31121,0.0363], + [31123,0.0318], + [31125,0.0276], + [31127,0.0363], + [31129,0.0292], + [31131,0.0341], + [31133,0.0224], + [31135,0.0215], + [31137,0.0252], + [31139,0.0263], + [31141,0.0349], + [31143,0.0264], + [31145,0.0283], + [31147,0.0324], + [31149,0.0259], + [31151,0.0309], + [31153,0.0292], + [31155,0.0308], + [31157,0.0351], + [31159,0.0287], + [31161,0.0285], + [31163,0.0321], + [31165,0.0269], + [31167,0.0262], + [31169,0.0245], + [31171,0.0335], + [31173,0.0487], + [31175,0.0282], + [31177,0.032], + [31179,0.0267], + [31181,0.0316], + [31183,0.0212], + [31185,0.0272], + [32001,0.054], + [32003,0.0587], + [32005,0.0562], + [32007,0.0447], + [32009,0.0456], + [32011,0.0462], + [32013,0.0531], + [32015,0.062], + [32017,0.052], + [32019,0.0736], + [32021,0.0648], + [32023,0.0731], + [32027,0.0579], + [32029,0.0634], + [32031,0.0504], + [32033,0.0458], + [32510,0.0611], + [33001,0.0284], + [33003,0.0296], + [33005,0.0274], + [33007,0.0377], + [33009,0.0236], + [33011,0.0302], + [33013,0.0255], + [33015,0.0303], + [33017,0.0255], + [33019,0.0233], + [34001,0.074], + [34003,0.0419], + [34005,0.0445], + [34007,0.0549], + [34009,0.0982], + [34011,0.0748], + [34013,0.0601], + [34015,0.0505], + [34017,0.0468], + [34019,0.0377], + [34021,0.0436], + [34023,0.0443], + [34025,0.0445], + [34027,0.0391], + [34029,0.0521], + [34031,0.0618], + [34033,0.0641], + [34035,0.0407], + [34037,0.0472], + [34039,0.0517], + [34041,0.0459], + [35001,0.0582], + [35003,0.0812], + [35005,0.0672], + [35006,0.0821], + [35007,0.0602], + [35009,0.0506], + [35011,0.0473], + [35013,0.0717], + [35015,0.0651], + [35017,0.0645], + [35019,0.0644], + [35021,0.0691], + [35023,0.0554], + [35025,0.0923], + [35027,0.0595], + [35028,0.0424], + [35029,0.1453], + [35031,0.0937], + [35033,0.0871], + [35035,0.0606], + [35037,0.0679], + [35039,0.0748], + [35041,0.057], + [35043,0.0659], + [35045,0.0878], + [35047,0.077], + [35049,0.0529], + [35051,0.0847], + [35053,0.0734], + [35055,0.0843], + [35057,0.0912], + [35059,0.04], + [35061,0.0721], + [36001,0.0405], + [36003,0.0631], + [36005,0.071], + [36007,0.0543], + [36009,0.0597], + [36011,0.0506], + [36013,0.058], + [36015,0.0572], + [36017,0.0506], + [36019,0.0536], + [36021,0.0368], + [36023,0.0569], + [36025,0.0552], + [36027,0.0416], + [36029,0.0492], + [36031,0.0534], + [36033,0.0566], + [36035,0.0572], + [36037,0.0459], + [36039,0.0504], + [36041,0.0647], + [36043,0.0546], + [36045,0.0624], + [36047,0.0531], + [36049,0.0671], + [36051,0.0494], + [36053,0.0526], + [36055,0.0469], + [36057,0.0571], + [36059,0.0391], + [36061,0.0454], + [36063,0.0583], + [36065,0.0484], + [36067,0.0451], + [36069,0.0431], + [36071,0.0432], + [36073,0.0571], + [36075,0.0645], + [36077,0.0491], + [36079,0.0398], + [36081,0.0452], + [36083,0.0428], + [36085,0.0522], + [36087,0.0419], + [36089,0.0659], + [36091,0.0381], + [36093,0.0433], + [36095,0.0542], + [36097,0.0601], + [36099,0.0476], + [36101,0.0582], + [36103,0.0436], + [36105,0.0478], + [36107,0.0513], + [36109,0.0416], + [36111,0.0442], + [36113,0.0525], + [36115,0.0466], + [36117,0.0498], + [36119,0.0428], + [36121,0.0533], + [36123,0.0441], + [37001,0.0474], + [37003,0.0425], + [37005,0.055], + [37007,0.0579], + [37009,0.0479], + [37011,0.0503], + [37013,0.0569], + [37015,0.0661], + [37017,0.0691], + [37019,0.0645], + [37021,0.0386], + [37023,0.0486], + [37025,0.0457], + [37027,0.0519], + [37029,0.0516], + [37031,0.0516], + [37033,0.0544], + [37035,0.0473], + [37037,0.0423], + [37039,0.0568], + [37041,0.064], + [37043,0.0546], + [37045,0.0547], + [37047,0.0641], + [37049,0.0523], + [37051,0.064], + [37053,0.0508], + [37055,0.0676], + [37057,0.0482], + [37059,0.045], + [37061,0.0534], + [37063,0.045], + [37065,0.0867], + [37067,0.0487], + [37069,0.0522], + [37071,0.0533], + [37073,0.0513], + [37075,0.0884], + [37077,0.0432], + [37079,0.0529], + [37081,0.0523], + [37083,0.0792], + [37085,0.0579], + [37087,0.0455], + [37089,0.0426], + [37091,0.0658], + [37093,0.0659], + [37095,0.0949], + [37097,0.048], + [37099,0.0543], + [37101,0.0468], + [37103,0.0528], + [37105,0.0587], + [37107,0.0586], + [37109,0.0471], + [37111,0.048], + [37113,0.0538], + [37115,0.0487], + [37117,0.0675], + [37119,0.0474], + [37121,0.0612], + [37123,0.0518], + [37125,0.0501], + [37127,0.0657], + [37129,0.0472], + [37131,0.0725], + [37133,0.0551], + [37135,0.0424], + [37137,0.0527], + [37139,0.0628], + [37141,0.0529], + [37143,0.0644], + [37145,0.0548], + [37147,0.0557], + [37149,0.0464], + [37151,0.0492], + [37153,0.0692], + [37155,0.0793], + [37157,0.0565], + [37159,0.0556], + [37161,0.0669], + [37163,0.0546], + [37165,0.0913], + [37167,0.0464], + [37169,0.0478], + [37171,0.0478], + [37173,0.061], + [37175,0.0487], + [37177,0.0844], + [37179,0.044], + [37181,0.0715], + [37183,0.0429], + [37185,0.073], + [37187,0.0743], + [37189,0.045], + [37191,0.0583], + [37193,0.0479], + [37195,0.0815], + [37197,0.0438], + [37199,0.0517], + [38001,0.0255], + [38003,0.0317], + [38005,0.0401], + [38007,0.0295], + [38009,0.0463], + [38011,0.0217], + [38013,0.0452], + [38015,0.0256], + [38017,0.0222], + [38019,0.0264], + [38021,0.0192], + [38023,0.026], + [38025,0.0313], + [38027,0.0428], + [38029,0.0434], + [38031,0.0295], + [38033,0.0267], + [38035,0.0234], + [38037,0.0299], + [38039,0.0283], + [38041,0.0298], + [38043,0.0377], + [38045,0.0237], + [38047,0.0342], + [38049,0.0487], + [38051,0.0305], + [38053,0.0373], + [38055,0.0346], + [38057,0.0437], + [38059,0.0324], + [38061,0.0296], + [38063,0.0337], + [38065,0.0543], + [38067,0.0498], + [38069,0.0393], + [38071,0.0282], + [38073,0.0221], + [38075,0.0381], + [38077,0.0272], + [38079,0.1075], + [38081,0.0192], + [38083,0.0555], + [38085,0.0439], + [38087,0.0251], + [38089,0.0388], + [38091,0.0213], + [38093,0.0245], + [38095,0.0217], + [38097,0.0277], + [38099,0.0375], + [38101,0.0409], + [38103,0.0386], + [38105,0.0433], + [39001,0.075], + [39003,0.05], + [39005,0.0505], + [39007,0.0609], + [39009,0.0638], + [39011,0.0372], + [39013,0.0744], + [39015,0.0578], + [39017,0.0449], + [39019,0.0683], + [39021,0.0449], + [39023,0.0523], + [39025,0.0443], + [39027,0.0581], + [39029,0.0667], + [39031,0.0707], + [39033,0.06], + [39035,0.056], + [39037,0.0411], + [39039,0.0492], + [39041,0.036], + [39043,0.0547], + [39045,0.0431], + [39047,0.0441], + [39049,0.0411], + [39051,0.0464], + [39053,0.068], + [39055,0.0452], + [39057,0.0434], + [39059,0.0706], + [39061,0.0441], + [39063,0.0368], + [39065,0.0498], + [39067,0.0762], + [39069,0.0534], + [39071,0.0633], + [39073,0.0557], + [39075,0.036], + [39077,0.0649], + [39079,0.0784], + [39081,0.0834], + [39083,0.0462], + [39085,0.0495], + [39087,0.0649], + [39089,0.0437], + [39091,0.0418], + [39093,0.0606], + [39095,0.0517], + [39097,0.0393], + [39099,0.0637], + [39101,0.0507], + [39103,0.0445], + [39105,0.0851], + [39107,0.0326], + [39109,0.0435], + [39111,0.111], + [39113,0.0492], + [39115,0.0828], + [39117,0.0504], + [39119,0.0601], + [39121,0.0872], + [39123,0.0645], + [39125,0.0459], + [39127,0.0636], + [39129,0.0481], + [39131,0.0749], + [39133,0.0501], + [39135,0.0475], + [39137,0.0366], + [39139,0.0553], + [39141,0.0551], + [39143,0.0471], + [39145,0.0772], + [39147,0.0488], + [39149,0.0414], + [39151,0.0544], + [39153,0.0509], + [39155,0.0675], + [39157,0.0574], + [39159,0.0381], + [39161,0.0403], + [39163,0.0703], + [39165,0.0415], + [39167,0.0697], + [39169,0.0398], + [39171,0.0451], + [39173,0.0417], + [39175,0.037], + [40001,0.0585], + [40003,0.0334], + [40005,0.0658], + [40007,0.0312], + [40009,0.0721], + [40011,0.0369], + [40013,0.0431], + [40015,0.053], + [40017,0.04], + [40019,0.0519], + [40021,0.0551], + [40023,0.0765], + [40025,0.0247], + [40027,0.0383], + [40029,0.0733], + [40031,0.0462], + [40033,0.0478], + [40035,0.0485], + [40037,0.0582], + [40039,0.0456], + [40041,0.049], + [40043,0.0408], + [40045,0.0377], + [40047,0.0438], + [40049,0.0536], + [40051,0.0498], + [40053,0.0323], + [40055,0.074], + [40057,0.038], + [40059,0.0382], + [40061,0.0829], + [40063,0.0728], + [40065,0.0439], + [40067,0.0716], + [40069,0.0588], + [40071,0.0633], + [40073,0.0332], + [40075,0.0533], + [40077,0.0865], + [40079,0.0691], + [40081,0.0533], + [40083,0.0406], + [40085,0.0315], + [40087,0.0412], + [40089,0.0717], + [40091,0.0894], + [40093,0.0413], + [40095,0.0507], + [40097,0.051], + [40099,0.0451], + [40101,0.0546], + [40103,0.0354], + [40105,0.061], + [40107,0.0611], + [40109,0.043], + [40111,0.072], + [40113,0.0576], + [40115,0.0503], + [40117,0.0665], + [40119,0.0372], + [40121,0.0616], + [40123,0.0408], + [40125,0.0464], + [40127,0.073], + [40129,0.0514], + [40131,0.0503], + [40133,0.0693], + [40135,0.0627], + [40137,0.0952], + [40139,0.0339], + [40141,0.0444], + [40143,0.0467], + [40145,0.0478], + [40147,0.0489], + [40149,0.0694], + [40151,0.0322], + [40153,0.0621], + [41001,0.0627], + [41003,0.0391], + [41005,0.0433], + [41007,0.047], + [41009,0.0608], + [41011,0.0636], + [41013,0.0689], + [41015,0.0672], + [41017,0.0484], + [41019,0.0624], + [41021,0.0585], + [41023,0.0756], + [41025,0.0619], + [41027,0.0412], + [41029,0.0572], + [41031,0.0657], + [41033,0.0644], + [41035,0.0673], + [41037,0.0631], + [41039,0.0507], + [41041,0.0558], + [41043,0.0568], + [41045,0.0549], + [41047,0.0504], + [41049,0.0483], + [41051,0.0421], + [41053,0.0503], + [41055,0.0458], + [41057,0.0488], + [41059,0.0531], + [41061,0.0587], + [41063,0.0666], + [41065,0.0478], + [41067,0.0409], + [41069,0.0422], + [41071,0.0458], + [42001,0.0397], + [42003,0.0518], + [42005,0.075], + [42007,0.0619], + [42009,0.0585], + [42011,0.0497], + [42013,0.0528], + [42015,0.0653], + [42017,0.0462], + [42019,0.0506], + [42021,0.0679], + [42023,0.0735], + [42025,0.0596], + [42027,0.0417], + [42029,0.0388], + [42031,0.0615], + [42033,0.0729], + [42035,0.0707], + [42037,0.0554], + [42039,0.0601], + [42041,0.0406], + [42043,0.0476], + [42045,0.0486], + [42047,0.0551], + [42049,0.0651], + [42051,0.081], + [42053,0.0788], + [42055,0.0515], + [42057,0.0633], + [42059,0.0774], + [42061,0.0698], + [42063,0.0727], + [42065,0.0684], + [42067,0.0536], + [42069,0.0565], + [42071,0.0413], + [42073,0.0671], + [42075,0.0448], + [42077,0.0534], + [42079,0.0631], + [42081,0.0663], + [42083,0.0662], + [42085,0.0596], + [42087,0.0571], + [42089,0.0625], + [42091,0.0414], + [42093,0.0426], + [42095,0.0517], + [42097,0.0624], + [42099,0.0462], + [42101,0.0676], + [42103,0.0638], + [42105,0.0784], + [42107,0.0617], + [42109,0.0468], + [42111,0.0718], + [42113,0.0713], + [42115,0.0568], + [42117,0.0713], + [42119,0.0478], + [42121,0.0725], + [42123,0.0547], + [42125,0.0611], + [42127,0.0574], + [42129,0.0585], + [42131,0.062], + [42133,0.0462], + [44001,0.0464], + [44003,0.0474], + [44005,0.0472], + [44007,0.0554], + [44009,0.0476], + [45001,0.0546], + [45003,0.0498], + [45005,0.0853], + [45007,0.0457], + [45009,0.0901], + [45011,0.0735], + [45013,0.0476], + [45015,0.0456], + [45017,0.0616], + [45019,0.0407], + [45021,0.0594], + [45023,0.0717], + [45025,0.0497], + [45027,0.0663], + [45029,0.0558], + [45031,0.062], + [45033,0.0674], + [45035,0.0457], + [45037,0.0565], + [45039,0.0719], + [45041,0.0524], + [45043,0.0676], + [45045,0.0422], + [45047,0.0515], + [45049,0.0583], + [45051,0.0582], + [45053,0.0434], + [45055,0.052], + [45057,0.053], + [45059,0.0518], + [45061,0.0705], + [45063,0.0405], + [45065,0.0554], + [45067,0.0869], + [45069,0.0837], + [45071,0.0443], + [45073,0.0514], + [45075,0.0884], + [45077,0.0496], + [45079,0.0481], + [45081,0.0452], + [45083,0.047], + [45085,0.0585], + [45087,0.0618], + [45089,0.0769], + [45091,0.0459], + [46003,0.0224], + [46005,0.026], + [46007,0.0393], + [46009,0.0272], + [46011,0.0275], + [46013,0.0269], + [46015,0.0255], + [46017,0.0828], + [46019,0.0347], + [46021,0.0295], + [46023,0.0322], + [46025,0.0391], + [46027,0.0301], + [46029,0.031], + [46031,0.0448], + [46033,0.0402], + [46035,0.0241], + [46037,0.0428], + [46039,0.0492], + [46041,0.0903], + [46043,0.0252], + [46045,0.0232], + [46047,0.0441], + [46049,0.027], + [46051,0.0324], + [46053,0.0299], + [46055,0.0245], + [46057,0.0338], + [46059,0.0213], + [46061,0.034], + [46063,0.029], + [46065,0.0238], + [46067,0.0255], + [46069,0.0273], + [46071,0.0422], + [46073,0.0243], + [46075,0.0229], + [46077,0.0263], + [46079,0.0341], + [46081,0.0331], + [46083,0.0217], + [46085,0.0463], + [46087,0.0249], + [46089,0.0341], + [46091,0.0387], + [46093,0.0316], + [46095,0.0417], + [46097,0.0267], + [46099,0.0258], + [46101,0.0368], + [46102,null], + [46103,0.031], + [46105,0.0286], + [46107,0.0269], + [46109,0.0416], + [46111,0.0298], + [46115,0.0311], + [46117,0.0241], + [46119,0.0233], + [46121,0.0648], + [46123,0.0226], + [46125,0.0281], + [46127,0.0314], + [46129,0.0514], + [46135,0.0258], + [46137,0.0452], + [47001,0.0486], + [47003,0.0496], + [47005,0.0711], + [47007,0.0694], + [47009,0.0436], + [47011,0.0444], + [47013,0.069], + [47015,0.0463], + [47017,0.067], + [47019,0.0564], + [47021,0.0397], + [47023,0.0497], + [47025,0.0619], + [47027,0.0654], + [47029,0.063], + [47031,0.0469], + [47033,0.0523], + [47035,0.0591], + [47037,0.0359], + [47039,0.0687], + [47041,0.0555], + [47043,0.0435], + [47045,0.0618], + [47047,0.0503], + [47049,0.0615], + [47051,0.0484], + [47053,0.0584], + [47055,0.0401], + [47057,0.0541], + [47059,0.0544], + [47061,0.0645], + [47063,0.051], + [47065,0.0459], + [47067,0.0792], + [47069,0.0614], + [47071,0.0596], + [47073,0.0537], + [47075,0.0647], + [47077,0.0682], + [47079,0.0587], + [47081,0.0461], + [47083,0.075], + [47085,0.0602], + [47087,0.0697], + [47089,0.0527], + [47091,0.0479], + [47093,0.0398], + [47095,0.0778], + [47097,0.0771], + [47099,0.0574], + [47101,0.0593], + [47103,0.0408], + [47105,0.0465], + [47107,0.0542], + [47109,0.07], + [47111,0.0435], + [47113,0.0485], + [47115,0.0626], + [47117,0.046], + [47119,0.0403], + [47121,0.0682], + [47123,0.0526], + [47125,0.0507], + [47127,0.0375], + [47129,0.0643], + [47131,0.0702], + [47133,0.0534], + [47135,0.0633], + [47137,0.0654], + [47139,0.0571], + [47141,0.0489], + [47143,0.0709], + [47145,0.0555], + [47147,0.0415], + [47149,0.0368], + [47151,0.0739], + [47153,0.0583], + [47155,0.0493], + [47157,0.0533], + [47159,0.0457], + [47161,0.0677], + [47163,0.0516], + [47165,0.0387], + [47167,0.0567], + [47169,0.0481], + [47171,0.0709], + [47173,0.0576], + [47175,0.0614], + [47177,0.0478], + [47179,0.0477], + [47181,0.0657], + [47183,0.0583], + [47185,0.0497], + [47187,0.0341], + [47189,0.0384], + [48001,0.0432], + [48003,0.0472], + [48005,0.059], + [48007,0.0559], + [48009,0.0431], + [48011,0.0279], + [48013,0.0534], + [48015,0.0532], + [48017,0.0438], + [48019,0.041], + [48021,0.0374], + [48023,0.0362], + [48025,0.0753], + [48027,0.045], + [48029,0.0374], + [48031,0.0309], + [48033,0.0356], + [48035,0.0431], + [48037,0.047], + [48039,0.0518], + [48041,0.0346], + [48043,0.0377], + [48045,0.0439], + [48047,0.1179], + [48049,0.0434], + [48051,0.0464], + [48053,0.0346], + [48055,0.0433], + [48057,0.0558], + [48059,0.0426], + [48061,0.0717], + [48063,0.0683], + [48065,0.0327], + [48067,0.0719], + [48069,0.0307], + [48071,0.0608], + [48073,0.0508], + [48075,0.0298], + [48077,0.0437], + [48079,0.0503], + [48081,0.0416], + [48083,0.0582], + [48085,0.0353], + [48087,0.0346], + [48089,0.0471], + [48091,0.0362], + [48093,0.043], + [48095,0.0339], + [48097,0.0397], + [48099,0.0466], + [48101,0.0514], + [48103,0.0857], + [48105,0.075], + [48107,0.0436], + [48109,0.0411], + [48111,0.0223], + [48113,0.0402], + [48115,0.0501], + [48117,0.0312], + [48119,0.038], + [48121,0.0343], + [48123,0.0546], + [48125,0.0493], + [48127,0.0711], + [48129,0.0405], + [48131,0.1091], + [48133,0.0543], + [48135,0.0635], + [48137,0.0462], + [48139,0.0374], + [48141,0.0494], + [48143,0.0406], + [48145,0.044], + [48147,0.0376], + [48149,0.0365], + [48151,0.0427], + [48153,0.0505], + [48155,0.0371], + [48157,0.05], + [48159,0.0491], + [48161,0.0668], + [48163,0.0487], + [48165,0.0372], + [48167,0.0533], + [48169,0.039], + [48171,0.0284], + [48173,0.0388], + [48175,0.058], + [48177,0.0423], + [48179,0.0688], + [48181,0.0385], + [48183,0.0608], + [48185,0.066], + [48187,0.0359], + [48189,0.0561], + [48191,0.067], + [48193,0.049], + [48195,0.0313], + [48197,0.0389], + [48199,0.0608], + [48201,0.0532], + [48203,0.06], + [48205,0.02], + [48207,0.0423], + [48209,0.0333], + [48211,0.0374], + [48213,0.0467], + [48215,0.0781], + [48217,0.044], + [48219,0.0464], + [48221,0.047], + [48223,0.0398], + [48225,0.0461], + [48227,0.0553], + [48229,0.0598], + [48231,0.0428], + [48233,0.0563], + [48235,0.0321], + [48237,0.0494], + [48239,0.0468], + [48241,0.0766], + [48243,0.0289], + [48245,0.07], + [48247,0.0954], + [48249,0.1054], + [48251,0.0435], + [48253,0.0579], + [48255,0.0488], + [48257,0.0378], + [48259,0.0319], + [48261,0.0461], + [48263,0.0299], + [48265,0.0359], + [48267,0.038], + [48269,0.0395], + [48271,0.0581], + [48273,0.0671], + [48275,0.0424], + [48277,0.0462], + [48279,0.0649], + [48281,0.0416], + [48283,0.0516], + [48285,0.0422], + [48287,0.0377], + [48289,0.0646], + [48291,0.0751], + [48293,0.0559], + [48295,0.0443], + [48297,0.0593], + [48299,0.0417], + [48301,0.0465], + [48303,0.0339], + [48305,0.0396], + [48307,0.0448], + [48309,0.0395], + [48311,0.0209], + [48313,0.0508], + [48315,0.0701], + [48317,0.044], + [48319,0.0358], + [48321,0.0731], + [48323,0.1123], + [48325,0.044], + [48327,0.0453], + [48329,0.044], + [48331,0.0516], + [48333,0.0411], + [48335,0.0699], + [48337,0.0495], + [48339,0.049], + [48341,0.0296], + [48343,0.1093], + [48345,0.0355], + [48347,0.0468], + [48349,0.0418], + [48351,0.0792], + [48353,0.048], + [48355,0.0563], + [48357,0.0524], + [48359,0.0298], + [48361,0.067], + [48363,0.0547], + [48365,0.0716], + [48367,0.0406], + [48369,0.0251], + [48371,0.0588], + [48373,0.0632], + [48375,0.0334], + [48377,0.1067], + [48379,0.04], + [48381,0.0295], + [48383,0.0618], + [48385,0.0568], + [48387,0.0575], + [48389,0.0531], + [48391,0.0661], + [48393,0.0454], + [48395,0.0505], + [48397,0.035], + [48399,0.0394], + [48401,0.0583], + [48403,0.0938], + [48405,0.0893], + [48407,0.0627], + [48409,0.0746], + [48411,0.034], + [48413,0.0522], + [48415,0.0588], + [48417,0.0384], + [48419,0.06], + [48421,0.0289], + [48423,0.0452], + [48425,0.048], + [48427,0.1335], + [48429,0.0526], + [48431,0.0389], + [48433,0.0438], + [48435,0.0793], + [48437,0.0424], + [48439,0.0398], + [48441,0.0374], + [48443,0.0395], + [48445,0.0477], + [48447,0.035], + [48449,0.0616], + [48451,0.0447], + [48453,0.0318], + [48455,0.0607], + [48457,0.0729], + [48459,0.064], + [48461,0.0532], + [48463,0.053], + [48465,0.0624], + [48467,0.043], + [48469,0.0542], + [48471,0.0524], + [48473,0.0558], + [48475,0.057], + [48477,0.0508], + [48479,0.0489], + [48481,0.0503], + [48483,0.0472], + [48485,0.0435], + [48487,0.047], + [48489,0.1224], + [48491,0.0335], + [48493,0.0391], + [48495,0.077], + [48497,0.0472], + [48499,0.0525], + [48501,0.0477], + [48503,0.0438], + [48505,0.1076], + [48507,0.1387], + [49001,0.0492], + [49003,0.0348], + [49005,0.0305], + [49007,0.0594], + [49009,0.0516], + [49011,0.0315], + [49013,0.0887], + [49015,0.0626], + [49017,0.0837], + [49019,0.0586], + [49021,0.0435], + [49023,0.0363], + [49025,0.038], + [49027,0.0332], + [49029,0.0296], + [49031,0.0587], + [49033,0.0318], + [49035,0.0317], + [49037,0.0807], + [49039,0.0397], + [49041,0.0437], + [49043,0.0314], + [49045,0.038], + [49047,0.0931], + [49049,0.0309], + [49051,0.0338], + [49053,0.0374], + [49055,0.0775], + [49057,0.0384], + [50001,0.0298], + [50003,0.0377], + [50005,0.0418], + [50007,0.0251], + [50009,0.0504], + [50011,0.0312], + [50013,0.0375], + [50015,0.0423], + [50017,0.0311], + [50019,0.0525], + [50021,0.0379], + [50023,0.032], + [50025,0.0333], + [50027,0.0294], + [51001,0.0492], + [51003,0.0358], + [51005,0.0514], + [51007,0.043], + [51009,0.0442], + [51011,0.0472], + [51013,0.0264], + [51015,0.0369], + [51017,0.0373], + [51019,0.0412], + [51021,0.053], + [51023,0.0367], + [51025,0.06], + [51027,0.108], + [51029,0.0547], + [51031,0.0447], + [51033,0.045], + [51035,0.0518], + [51036,0.046], + [51037,0.0505], + [51041,0.039], + [51043,0.036], + [51045,0.0481], + [51047,0.0392], + [51049,0.0466], + [51051,0.1002], + [51053,0.0492], + [51057,0.0489], + [51059,0.0326], + [51061,0.0352], + [51063,0.0411], + [51065,0.034], + [51067,0.0433], + [51069,0.0353], + [51071,0.0542], + [51073,0.0369], + [51075,0.0381], + [51077,0.0516], + [51079,0.0331], + [51081,0.0512], + [51083,0.0589], + [51085,0.0354], + [51087,0.0394], + [51089,0.0564], + [51091,0.0314], + [51093,0.0435], + [51095,0.0391], + [51097,0.0421], + [51099,0.0432], + [51101,0.0383], + [51103,0.0568], + [51105,0.0685], + [51107,0.0323], + [51109,0.0386], + [51111,0.0465], + [51113,0.0316], + [51115,0.0404], + [51117,0.0567], + [51119,0.0386], + [51121,0.0418], + [51125,0.0364], + [51127,0.0342], + [51131,0.0586], + [51133,0.0551], + [51135,0.0401], + [51137,0.0411], + [51139,0.0561], + [51141,0.049], + [51143,0.048], + [51145,0.0358], + [51147,0.0537], + [51149,0.049], + [51153,0.0368], + [51155,0.0601], + [51157,0.0356], + [51159,0.0374], + [51161,0.0361], + [51163,0.0441], + [51165,0.0355], + [51167,0.0653], + [51169,0.0494], + [51171,0.038], + [51173,0.0586], + [51175,0.0397], + [51177,0.0413], + [51179,0.0395], + [51181,0.0531], + [51183,0.0634], + [51185,0.0757], + [51187,0.0409], + [51191,0.0455], + [51193,0.0463], + [51195,0.0855], + [51197,0.0575], + [51199,0.0392], + [51510,0.0293], + [51520,0.0512], + [51530,0.0514], + [51540,0.0341], + [51550,0.0431], + [51570,0.0453], + [51580,0.0593], + [51590,0.0612], + [51595,0.0651], + [51600,0.0308], + [51610,0.0276], + [51620,0.0612], + [51630,0.0483], + [51640,0.05], + [51650,0.0575], + [51660,0.0488], + [51670,0.0658], + [51678,0.0619], + [51680,0.0525], + [51683,0.0364], + [51685,0.0368], + [51690,0.0714], + [51700,0.0518], + [51710,0.0533], + [51720,0.0693], + [51730,0.0791], + [51735,0.0354], + [51740,0.0621], + [51750,0.0547], + [51760,0.0469], + [51770,0.0434], + [51775,0.0398], + [51790,0.0395], + [51800,0.0473], + [51810,0.04], + [51820,0.0419], + [51830,0.0559], + [51840,0.0404], + [53001,0.0638], + [53003,0.0493], + [53005,0.0623], + [53007,0.0566], + [53009,0.0752], + [53011,0.0601], + [53013,0.0646], + [53015,0.0708], + [53017,0.0682], + [53019,0.102], + [53021,0.0735], + [53023,0.0577], + [53025,0.0706], + [53027,0.0824], + [53029,0.0583], + [53031,0.0699], + [53033,0.0394], + [53035,0.0551], + [53037,0.0589], + [53039,0.0673], + [53041,0.0772], + [53043,0.0552], + [53045,0.0747], + [53047,0.0658], + [53049,0.0796], + [53051,0.0882], + [53053,0.0595], + [53055,0.0461], + [53057,0.0644], + [53059,0.069], + [53061,0.0433], + [53063,0.0601], + [53065,0.0813], + [53067,0.0558], + [53069,0.0854], + [53071,0.0535], + [53073,0.0576], + [53075,0.0495], + [53077,0.0748], + [54001,0.068], + [54003,0.0396], + [54005,0.091], + [54007,0.0877], + [54009,0.0704], + [54011,0.0481], + [54013,0.1283], + [54015,0.1036], + [54017,0.0516], + [54019,0.0792], + [54021,0.0824], + [54023,0.0595], + [54025,0.0539], + [54027,0.0435], + [54029,0.07], + [54031,0.0569], + [54033,0.0584], + [54035,0.0648], + [54037,0.0336], + [54039,0.0546], + [54041,0.085], + [54043,0.0853], + [54045,0.1019], + [54047,0.1215], + [54049,0.0654], + [54051,0.0797], + [54053,0.0712], + [54055,0.0669], + [54057,0.0595], + [54059,0.1255], + [54061,0.0432], + [54063,0.0455], + [54065,0.0438], + [54067,0.0881], + [54069,0.0554], + [54071,0.0386], + [54073,0.0817], + [54075,0.0664], + [54077,0.0574], + [54079,0.0488], + [54081,0.0698], + [54083,0.0598], + [54085,0.0654], + [54087,0.103], + [54089,0.0611], + [54091,0.0563], + [54093,0.0539], + [54095,0.0889], + [54097,0.0754], + [54099,0.066], + [54101,0.0832], + [54103,0.0923], + [54105,0.0879], + [54107,0.0575], + [54109,0.1019], + [55001,0.0599], + [55003,0.054], + [55005,0.0452], + [55007,0.0685], + [55009,0.0361], + [55011,0.0444], + [55013,0.0597], + [55015,0.032], + [55017,0.0423], + [55019,0.0389], + [55021,0.0358], + [55023,0.0485], + [55025,0.0285], + [55027,0.0363], + [55029,0.0493], + [55031,0.0523], + [55033,0.0407], + [55035,0.034], + [55037,0.0586], + [55039,0.0351], + [55041,0.062], + [55043,0.0389], + [55045,0.0331], + [55047,0.0486], + [55049,0.0348], + [55051,0.074], + [55053,0.0436], + [55055,0.0388], + [55057,0.0442], + [55059,0.0465], + [55061,0.0366], + [55063,0.036], + [55065,0.0317], + [55067,0.0517], + [55069,0.0435], + [55071,0.0429], + [55073,0.0355], + [55075,0.0547], + [55077,0.0505], + [55078,0.0759], + [55079,0.0496], + [55081,0.0381], + [55083,0.0442], + [55085,0.0485], + [55087,0.0352], + [55089,0.0333], + [55091,0.038], + [55093,0.0403], + [55095,0.0455], + [55097,0.038], + [55099,0.0428], + [55101,0.0492], + [55103,0.0374], + [55105,0.044], + [55107,0.0509], + [55109,0.0375], + [55111,0.0355], + [55113,0.0622], + [55115,0.0414], + [55117,0.0339], + [55119,0.0411], + [55121,0.0367], + [55123,0.0364], + [55125,0.0564], + [55127,0.0398], + [55129,0.0496], + [55131,0.0334], + [55133,0.0344], + [55135,0.0394], + [55137,0.0501], + [55139,0.0355], + [55141,0.0471], + [56001,0.0317], + [56003,0.049], + [56005,0.0712], + [56007,0.0464], + [56009,0.0616], + [56011,0.0454], + [56013,0.0712], + [56015,0.0344], + [56017,0.0474], + [56019,0.0529], + [56021,0.0411], + [56023,0.0465], + [56025,0.0706], + [56027,0.0321], + [56029,0.0468], + [56031,0.0475], + [56033,0.0467], + [56035,0.0637], + [56037,0.0599], + [56039,0.0342], + [56041,0.0574], + [56043,0.0469], + [56045,0.0494] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2017.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2017.json new file mode 100644 index 0000000..62d4274 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2017"], + [1001,0.0386], + [1003,0.0399], + [1005,0.059], + [1007,0.0439], + [1009,0.0402], + [1011,0.0493], + [1013,0.0549], + [1015,0.0493], + [1017,0.0408], + [1019,0.0405], + [1021,0.0405], + [1023,0.0639], + [1025,0.0848], + [1027,0.0437], + [1029,0.0446], + [1031,0.0439], + [1033,0.0521], + [1035,0.0614], + [1037,0.0462], + [1039,0.0524], + [1041,0.0447], + [1043,0.0371], + [1045,0.0443], + [1047,0.0753], + [1049,0.0449], + [1051,0.0364], + [1053,0.0503], + [1055,0.0457], + [1057,0.0473], + [1059,0.0423], + [1061,0.0427], + [1063,0.0766], + [1065,0.0589], + [1067,0.0487], + [1069,0.0434], + [1071,0.0477], + [1073,0.0424], + [1075,0.0423], + [1077,0.0461], + [1079,0.0488], + [1081,0.0391], + [1083,0.0398], + [1085,0.08], + [1087,0.0578], + [1089,0.0385], + [1091,0.0565], + [1093,0.0479], + [1095,0.038], + [1097,0.0518], + [1099,0.0674], + [1101,0.043], + [1103,0.0411], + [1105,0.0794], + [1107,0.0529], + [1109,0.0488], + [1111,0.044], + [1113,0.043], + [1115,0.0397], + [1117,0.0323], + [1119,0.0654], + [1121,0.0496], + [1123,0.0416], + [1125,0.0414], + [1127,0.0502], + [1129,0.0684], + [1131,0.114], + [1133,0.05], + [2013,0.0252], + [2016,0.0363], + [2020,0.0597], + [2050,0.1379], + [2060,0.0634], + [2068,0.0938], + [2070,0.0929], + [2090,0.0629], + [2100,0.0909], + [2105,0.1263], + [2110,0.0475], + [2122,0.0849], + [2130,0.0631], + [2150,0.051], + [2158,null], + [2164,0.1189], + [2170,0.0866], + [2180,0.1257], + [2185,0.0744], + [2188,0.1682], + [2195,0.0934], + [2198,0.1142], + [2220,0.0468], + [2230,0.1056], + [2240,0.1044], + [2261,0.0796], + [2275,0.0771], + [2282,0.0936], + [2290,0.1826], + [4001,0.1042], + [4003,0.0561], + [4005,0.0555], + [4007,0.0606], + [4009,0.0544], + [4011,0.0511], + [4012,0.0538], + [4013,0.0417], + [4015,0.0586], + [4017,0.0757], + [4019,0.0448], + [4021,0.0502], + [4023,0.0951], + [4025,0.045], + [4027,0.1705], + [5001,0.0326], + [5003,0.0573], + [5005,0.0423], + [5007,0.029], + [5009,0.0343], + [5011,0.0468], + [5013,0.0394], + [5015,0.0329], + [5017,0.0653], + [5019,0.0398], + [5021,0.0455], + [5023,0.049], + [5025,0.0437], + [5027,0.0505], + [5029,0.0473], + [5031,0.0298], + [5033,0.0354], + [5035,0.0429], + [5037,0.0397], + [5039,0.0451], + [5041,0.048], + [5043,0.0516], + [5045,0.0332], + [5047,0.0347], + [5049,0.0421], + [5051,0.0401], + [5053,0.0319], + [5055,0.0365], + [5057,0.0346], + [5059,0.0369], + [5061,0.0304], + [5063,0.0422], + [5065,0.0546], + [5067,0.0585], + [5069,0.0518], + [5071,0.0424], + [5073,0.0508], + [5075,0.0377], + [5077,0.0484], + [5079,0.0419], + [5081,0.0479], + [5083,0.0383], + [5085,0.0325], + [5087,0.028], + [5089,0.0394], + [5091,0.0431], + [5093,0.0594], + [5095,0.0426], + [5097,0.0482], + [5099,0.0354], + [5101,0.0358], + [5103,0.0457], + [5105,0.0416], + [5107,0.0581], + [5109,0.0406], + [5111,0.0412], + [5113,0.0449], + [5115,0.044], + [5117,0.0405], + [5119,0.0338], + [5121,0.0415], + [5123,0.0508], + [5125,0.03], + [5127,0.0341], + [5129,0.0455], + [5131,0.0361], + [5133,0.0451], + [5135,0.0492], + [5137,0.0474], + [5139,0.0529], + [5141,0.0542], + [5143,0.0253], + [5145,0.0453], + [5147,0.0485], + [5149,0.04], + [6001,0.0364], + [6003,0.0613], + [6005,0.049], + [6007,0.0574], + [6009,0.0473], + [6011,0.1434], + [6013,0.038], + [6015,0.0643], + [6017,0.0436], + [6019,0.0847], + [6021,0.0746], + [6023,0.0419], + [6025,0.1907], + [6027,0.0439], + [6029,0.0921], + [6031,0.0887], + [6033,0.0574], + [6035,0.0558], + [6037,0.0469], + [6039,0.0805], + [6041,0.0286], + [6043,0.059], + [6045,0.0448], + [6047,0.093], + [6049,0.0805], + [6051,0.0444], + [6053,0.0718], + [6055,0.0366], + [6057,0.0411], + [6059,0.035], + [6061,0.0384], + [6063,0.0887], + [6065,0.0524], + [6067,0.0464], + [6069,0.0582], + [6071,0.049], + [6073,0.04], + [6075,0.029], + [6077,0.0696], + [6079,0.0358], + [6081,0.0268], + [6083,0.0449], + [6085,0.0321], + [6087,0.0567], + [6089,0.058], + [6091,0.0653], + [6093,0.0724], + [6095,0.0475], + [6097,0.0336], + [6099,0.0747], + [6101,0.086], + [6103,0.0637], + [6105,0.0603], + [6107,0.1042], + [6109,0.0539], + [6111,0.0449], + [6113,0.0501], + [6115,0.0744], + [8001,0.0306], + [8003,0.0343], + [8005,0.0278], + [8007,0.03], + [8009,0.0164], + [8011,0.027], + [8013,0.0243], + [8014,0.0263], + [8015,0.0233], + [8017,0.0175], + [8019,0.0261], + [8021,0.0421], + [8023,0.0355], + [8025,0.0309], + [8027,0.0303], + [8029,0.0389], + [8031,0.0275], + [8033,0.0299], + [8035,0.0239], + [8037,0.0232], + [8039,0.0244], + [8041,0.0327], + [8043,0.0429], + [8045,0.0288], + [8047,0.0203], + [8049,0.0224], + [8051,0.02], + [8053,0.0224], + [8055,0.0574], + [8057,0.0177], + [8059,0.0263], + [8061,0.018], + [8063,0.0182], + [8065,0.0216], + [8067,0.0245], + [8069,0.0243], + [8071,0.0405], + [8073,0.0212], + [8075,0.0235], + [8077,0.0398], + [8079,0.0199], + [8081,0.0332], + [8083,0.04], + [8085,0.033], + [8087,0.0244], + [8089,0.0414], + [8091,0.0288], + [8093,0.024], + [8095,0.0166], + [8097,0.0309], + [8099,0.0262], + [8101,0.0433], + [8103,0.0386], + [8105,0.0433], + [8107,0.0238], + [8109,0.0444], + [8111,0.0223], + [8113,0.0285], + [8115,0.0222], + [8117,0.0186], + [8119,0.0324], + [8121,0.0193], + [8123,0.0267], + [8125,0.0162], + [9001,0.0451], + [9003,0.0484], + [9005,0.0431], + [9007,0.0405], + [9009,0.0503], + [9011,0.0448], + [9013,0.04], + [9015,0.0502], + [10001,0.0497], + [10003,0.045], + [10005,0.0457], + [11001,0.0605], + [12001,0.037], + [12003,0.0405], + [12005,0.0409], + [12007,0.0361], + [12009,0.0424], + [12011,0.0387], + [12013,0.0489], + [12015,0.0461], + [12017,0.0578], + [12019,0.038], + [12021,0.0407], + [12023,0.0428], + [12027,0.044], + [12029,0.0455], + [12031,0.0413], + [12033,0.0414], + [12035,0.0465], + [12037,0.0358], + [12039,0.0531], + [12041,0.0421], + [12043,0.0518], + [12045,0.0385], + [12047,0.0475], + [12049,0.0554], + [12051,0.0725], + [12053,0.0513], + [12055,0.0562], + [12057,0.0383], + [12059,0.0476], + [12061,0.0498], + [12063,0.0445], + [12065,0.0432], + [12067,0.0372], + [12069,0.0407], + [12071,0.0398], + [12073,0.0386], + [12075,0.0434], + [12077,0.0448], + [12079,0.0437], + [12081,0.0388], + [12083,0.0496], + [12085,0.0412], + [12086,0.0482], + [12087,0.0331], + [12089,0.038], + [12091,0.0338], + [12093,0.0418], + [12095,0.0365], + [12097,0.0423], + [12099,0.0407], + [12101,0.0436], + [12103,0.0372], + [12105,0.0465], + [12107,0.0533], + [12109,0.0331], + [12111,0.0507], + [12113,0.0383], + [12115,0.0384], + [12117,0.0361], + [12119,0.0603], + [12121,0.0426], + [12123,0.045], + [12125,0.0359], + [12127,0.0432], + [12129,0.0352], + [12131,0.0358], + [12133,0.0434], + [13001,0.0553], + [13003,0.045], + [13005,0.0454], + [13007,0.0631], + [13009,0.0594], + [13011,0.0396], + [13013,0.0408], + [13015,0.0461], + [13017,0.0786], + [13019,0.0508], + [13021,0.0536], + [13023,0.0694], + [13025,0.058], + [13027,0.0451], + [13029,0.0423], + [13031,0.05], + [13033,0.0708], + [13035,0.0484], + [13037,0.0523], + [13039,0.0518], + [13043,0.0416], + [13045,0.0503], + [13047,0.0415], + [13049,0.0508], + [13051,0.045], + [13053,0.0733], + [13055,0.0474], + [13057,0.0374], + [13059,0.0476], + [13061,0.0891], + [13063,0.0585], + [13065,0.0552], + [13067,0.0408], + [13069,0.0517], + [13071,0.0452], + [13073,0.0418], + [13075,0.0462], + [13077,0.042], + [13079,0.05], + [13081,0.0522], + [13083,0.044], + [13085,0.0391], + [13087,0.0563], + [13089,0.0481], + [13091,0.063], + [13093,0.0513], + [13095,0.0612], + [13097,0.0489], + [13099,0.0549], + [13101,0.0383], + [13103,0.0412], + [13105,0.0532], + [13107,0.067], + [13109,0.0437], + [13111,0.0477], + [13113,0.0408], + [13115,0.0521], + [13117,0.0375], + [13119,0.0477], + [13121,0.0483], + [13123,0.0501], + [13125,0.0507], + [13127,0.0474], + [13129,0.0464], + [13131,0.049], + [13133,0.0515], + [13135,0.0423], + [13137,0.0458], + [13139,0.0391], + [13141,0.0712], + [13143,0.0478], + [13145,0.0426], + [13147,0.0445], + [13149,0.0502], + [13151,0.0487], + [13153,0.0476], + [13155,0.0707], + [13157,0.0364], + [13159,0.0433], + [13161,0.0602], + [13163,0.063], + [13165,0.0683], + [13167,0.0515], + [13169,0.0438], + [13171,0.0567], + [13173,0.0511], + [13175,0.0592], + [13177,0.0423], + [13179,0.0522], + [13181,0.0528], + [13183,0.0496], + [13185,0.047], + [13187,0.0402], + [13189,0.0624], + [13191,0.051], + [13193,0.0699], + [13195,0.0428], + [13197,0.0608], + [13199,0.0588], + [13201,0.0454], + [13205,0.0636], + [13207,0.0452], + [13209,0.0664], + [13211,0.0454], + [13213,0.0621], + [13215,0.0605], + [13217,0.0532], + [13219,0.0354], + [13221,0.043], + [13223,0.0414], + [13225,0.0585], + [13227,0.0429], + [13229,0.0454], + [13231,0.0447], + [13233,0.0528], + [13235,0.0528], + [13237,0.0583], + [13239,0.0593], + [13241,0.0499], + [13243,0.0665], + [13245,0.0595], + [13247,0.0528], + [13249,0.0559], + [13251,0.0637], + [13253,0.0656], + [13255,0.0582], + [13257,0.0528], + [13259,0.0587], + [13261,0.0694], + [13263,0.0615], + [13265,0.0682], + [13267,0.0498], + [13269,0.0876], + [13271,0.0783], + [13273,0.0599], + [13275,0.0589], + [13277,0.0475], + [13279,0.0651], + [13281,0.0654], + [13283,0.0665], + [13285,0.0443], + [13287,0.0572], + [13289,0.076], + [13291,0.0448], + [13293,0.0554], + [13295,0.0456], + [13297,0.0432], + [13299,0.0456], + [13301,0.0594], + [13303,0.0601], + [13305,0.0578], + [13307,0.0759], + [13309,0.0893], + [13311,0.0389], + [13313,0.0547], + [13315,0.0594], + [13317,0.0568], + [13319,0.0572], + [13321,0.0492], + [15001,0.0281], + [15003,0.0224], + [15005,null], + [15007,0.0238], + [15009,0.0254], + [16001,0.0278], + [16003,0.0566], + [16005,0.0301], + [16007,0.0325], + [16009,0.0553], + [16011,0.0295], + [16013,0.0253], + [16015,0.0478], + [16017,0.0449], + [16019,0.0267], + [16021,0.0475], + [16023,0.0304], + [16025,0.0266], + [16027,0.0355], + [16029,0.0317], + [16031,0.0247], + [16033,0.0273], + [16035,0.0688], + [16037,0.0423], + [16039,0.0362], + [16041,0.0228], + [16043,0.0266], + [16045,0.0392], + [16047,0.0245], + [16049,0.0495], + [16051,0.025], + [16053,0.0273], + [16055,0.0384], + [16057,0.0265], + [16059,0.0521], + [16061,0.0586], + [16063,0.0321], + [16065,0.0189], + [16067,0.0266], + [16069,0.0283], + [16071,0.0284], + [16073,0.04], + [16075,0.0392], + [16077,0.0339], + [16079,0.0627], + [16081,0.0273], + [16083,0.0289], + [16085,0.0439], + [16087,0.0466], + [17001,0.0381], + [17003,0.0796], + [17005,0.0434], + [17007,0.0658], + [17009,0.0285], + [17011,0.0479], + [17013,0.0531], + [17015,0.0452], + [17017,0.0447], + [17019,0.0424], + [17021,0.0523], + [17023,0.0478], + [17025,0.0522], + [17027,0.0348], + [17029,0.0459], + [17031,0.0524], + [17033,0.0518], + [17035,0.039], + [17037,0.0452], + [17039,0.0457], + [17041,0.0401], + [17043,0.0408], + [17045,0.048], + [17047,0.0451], + [17049,0.0375], + [17051,0.0543], + [17053,0.047], + [17055,0.0636], + [17057,0.0626], + [17059,0.0566], + [17061,0.0501], + [17063,0.0593], + [17065,0.0442], + [17067,0.0509], + [17069,0.0763], + [17071,0.05], + [17073,0.0502], + [17075,0.0446], + [17077,0.044], + [17079,0.0482], + [17081,0.0539], + [17083,0.0474], + [17085,0.044], + [17087,0.0732], + [17089,0.0472], + [17091,0.0523], + [17093,0.0448], + [17095,0.0509], + [17097,0.0441], + [17099,0.0552], + [17101,0.0597], + [17103,0.0425], + [17105,0.0439], + [17107,0.0453], + [17109,0.0488], + [17111,0.0455], + [17113,0.0406], + [17115,0.0546], + [17117,0.0477], + [17119,0.0464], + [17121,0.0514], + [17123,0.053], + [17125,0.0596], + [17127,0.0633], + [17129,0.0402], + [17131,0.0502], + [17133,0.0329], + [17135,0.0562], + [17137,0.0429], + [17139,0.0384], + [17141,0.0503], + [17143,0.0577], + [17145,0.059], + [17147,0.0399], + [17149,0.0445], + [17151,0.0616], + [17153,0.0782], + [17155,0.0479], + [17157,0.0434], + [17159,0.0468], + [17161,0.0502], + [17163,0.0492], + [17165,0.0636], + [17167,0.0423], + [17169,0.0441], + [17171,0.0513], + [17173,0.0441], + [17175,0.0604], + [17177,0.0461], + [17179,0.0528], + [17181,0.063], + [17183,0.0629], + [17185,0.049], + [17187,0.0413], + [17189,0.0293], + [17191,0.0607], + [17193,0.0479], + [17195,0.0473], + [17197,0.0517], + [17199,0.0508], + [17201,0.0632], + [17203,0.0431], + [18001,0.0262], + [18003,0.0331], + [18005,0.0272], + [18007,0.0339], + [18009,0.0402], + [18011,0.0283], + [18013,0.0338], + [18015,0.0342], + [18017,0.0382], + [18019,0.0347], + [18021,0.0378], + [18023,0.0308], + [18025,0.0443], + [18027,0.0279], + [18029,0.0385], + [18031,0.0291], + [18033,0.0293], + [18035,0.0421], + [18037,0.0259], + [18039,0.0253], + [18041,0.0502], + [18043,0.033], + [18045,0.0402], + [18047,0.0362], + [18049,0.0352], + [18051,0.0295], + [18053,0.039], + [18055,0.0476], + [18057,0.0273], + [18059,0.0302], + [18061,0.0344], + [18063,0.0288], + [18065,0.0366], + [18067,0.0381], + [18069,0.0358], + [18071,0.0297], + [18073,0.0432], + [18075,0.0356], + [18077,0.0373], + [18079,0.0384], + [18081,0.0294], + [18083,0.0343], + [18085,0.0272], + [18087,0.0255], + [18089,0.0509], + [18091,0.0447], + [18093,0.0439], + [18095,0.0394], + [18097,0.0359], + [18099,0.0305], + [18101,0.0301], + [18103,0.0391], + [18105,0.0365], + [18107,0.0303], + [18109,0.0348], + [18111,0.0486], + [18113,0.031], + [18115,0.0361], + [18117,0.0393], + [18119,0.0435], + [18121,0.0402], + [18123,0.0381], + [18125,0.0332], + [18127,0.0406], + [18129,0.0303], + [18131,0.0349], + [18133,0.0363], + [18135,0.0414], + [18137,0.0357], + [18139,0.0305], + [18141,0.0357], + [18143,0.0379], + [18145,0.033], + [18147,0.0336], + [18149,0.0439], + [18151,0.029], + [18153,0.0443], + [18155,0.0399], + [18157,0.0322], + [18159,0.0306], + [18161,0.0312], + [18163,0.0325], + [18165,0.054], + [18167,0.0425], + [18169,0.0351], + [18171,0.0336], + [18173,0.0315], + [18175,0.037], + [18177,0.0376], + [18179,0.0295], + [18181,0.0331], + [18183,0.0292], + [19001,0.028], + [19003,0.0239], + [19005,0.0403], + [19007,0.0381], + [19009,0.0312], + [19011,0.0327], + [19013,0.038], + [19015,0.0247], + [19017,0.0283], + [19019,0.0324], + [19021,0.0268], + [19023,0.0363], + [19025,0.0307], + [19027,0.0231], + [19029,0.036], + [19031,0.0291], + [19033,0.0308], + [19035,0.0255], + [19037,0.0319], + [19039,0.0313], + [19041,0.0375], + [19043,0.0397], + [19045,0.041], + [19047,0.0414], + [19049,0.0214], + [19051,0.0334], + [19053,0.0264], + [19055,0.0269], + [19057,0.0425], + [19059,0.0366], + [19061,0.0301], + [19063,0.0322], + [19065,0.0371], + [19067,0.0325], + [19069,0.0277], + [19071,0.0261], + [19073,0.0279], + [19075,0.0295], + [19077,0.032], + [19079,0.0326], + [19081,0.0261], + [19083,0.0323], + [19085,0.0274], + [19087,0.0299], + [19089,0.0305], + [19091,0.0305], + [19093,0.0236], + [19095,0.0264], + [19097,0.0342], + [19099,0.0314], + [19101,0.0312], + [19103,0.0249], + [19105,0.0367], + [19107,0.036], + [19109,0.0241], + [19111,0.0551], + [19113,0.0337], + [19115,0.033], + [19117,0.0284], + [19119,0.0176], + [19121,0.0361], + [19123,0.0328], + [19125,0.0265], + [19127,0.0461], + [19129,0.0277], + [19131,0.0217], + [19133,0.0369], + [19135,0.0382], + [19137,0.0317], + [19139,0.0331], + [19141,0.0244], + [19143,0.021], + [19145,0.0401], + [19147,0.0269], + [19149,0.0242], + [19151,0.0248], + [19153,0.0307], + [19155,0.0279], + [19157,0.0316], + [19159,0.0308], + [19161,0.0284], + [19163,0.037], + [19165,0.0243], + [19167,0.0202], + [19169,0.02], + [19171,0.0349], + [19173,0.0226], + [19175,0.0314], + [19177,0.0309], + [19179,0.0456], + [19181,0.0275], + [19183,0.0291], + [19185,0.0309], + [19187,0.0377], + [19189,0.0318], + [19191,0.0312], + [19193,0.0321], + [19195,0.0308], + [19197,0.0346], + [20001,0.0487], + [20003,0.0396], + [20005,0.0517], + [20007,0.0287], + [20009,0.0362], + [20011,0.045], + [20013,0.0321], + [20015,0.0376], + [20017,0.0264], + [20019,0.047], + [20021,0.0388], + [20023,0.0259], + [20025,0.0254], + [20027,0.0376], + [20029,0.0436], + [20031,0.0526], + [20033,0.0293], + [20035,0.038], + [20037,0.0418], + [20039,0.0308], + [20041,0.0383], + [20043,0.0346], + [20045,0.0316], + [20047,0.0304], + [20049,0.0427], + [20051,0.0252], + [20053,0.031], + [20055,0.0267], + [20057,0.0279], + [20059,0.0372], + [20061,0.0505], + [20063,0.0233], + [20065,0.0356], + [20067,0.0319], + [20069,0.0199], + [20071,0.0182], + [20073,0.0427], + [20075,0.0236], + [20077,0.0373], + [20079,0.0404], + [20081,0.0225], + [20083,0.0252], + [20085,0.0313], + [20087,0.0356], + [20089,0.0343], + [20091,0.0301], + [20093,0.0248], + [20095,0.0366], + [20097,0.0253], + [20099,0.0453], + [20101,0.0339], + [20103,0.039], + [20105,0.0284], + [20107,0.0586], + [20109,0.0214], + [20111,0.038], + [20113,0.0276], + [20115,0.0362], + [20117,0.0279], + [20119,0.0243], + [20121,0.0373], + [20123,0.0272], + [20125,0.0523], + [20127,0.0312], + [20129,0.0371], + [20131,0.0242], + [20133,0.0524], + [20135,0.0292], + [20137,0.0223], + [20139,0.0396], + [20141,0.0279], + [20143,0.0307], + [20145,0.0333], + [20147,0.0295], + [20149,0.0307], + [20151,0.0329], + [20153,0.0226], + [20155,0.0387], + [20157,0.028], + [20159,0.0322], + [20161,0.03], + [20163,0.0383], + [20165,0.0318], + [20167,0.0334], + [20169,0.032], + [20171,0.0217], + [20173,0.0422], + [20175,0.0351], + [20177,0.0366], + [20179,0.0227], + [20181,0.0295], + [20183,0.0279], + [20185,0.033], + [20187,0.0272], + [20189,0.032], + [20191,0.038], + [20193,0.0258], + [20195,0.0334], + [20197,0.0319], + [20199,0.0248], + [20201,0.03], + [20203,0.024], + [20205,0.047], + [20207,0.0447], + [20209,0.0519], + [21001,0.0633], + [21003,0.0408], + [21005,0.0416], + [21007,0.0764], + [21009,0.0457], + [21011,0.078], + [21013,0.0785], + [21015,0.039], + [21017,0.0462], + [21019,0.0714], + [21021,0.0502], + [21023,0.0583], + [21025,0.0852], + [21027,0.0586], + [21029,0.0425], + [21031,0.0546], + [21033,0.0521], + [21035,0.0444], + [21037,0.038], + [21039,0.0683], + [21041,0.0472], + [21043,0.0957], + [21045,0.0468], + [21047,0.0609], + [21049,0.0465], + [21051,0.0849], + [21053,0.0658], + [21055,0.0532], + [21057,0.0527], + [21059,0.0443], + [21061,0.0598], + [21063,0.1019], + [21065,0.0598], + [21067,0.0365], + [21069,0.0599], + [21071,0.0814], + [21073,0.0414], + [21075,0.0719], + [21077,0.0461], + [21079,0.0479], + [21081,0.0491], + [21083,0.059], + [21085,0.0603], + [21087,0.0461], + [21089,0.0762], + [21091,0.0506], + [21093,0.0462], + [21095,0.0941], + [21097,0.0456], + [21099,0.0437], + [21101,0.0462], + [21103,0.0413], + [21105,0.0715], + [21107,0.0483], + [21109,0.0833], + [21111,0.0443], + [21113,0.0381], + [21115,0.0817], + [21117,0.04], + [21119,0.0848], + [21121,0.0757], + [21123,0.0479], + [21125,0.0589], + [21127,0.0888], + [21129,0.0835], + [21131,0.1008], + [21133,0.0917], + [21135,0.0888], + [21137,0.0568], + [21139,0.0754], + [21141,0.0437], + [21143,0.0563], + [21145,0.0608], + [21147,0.0665], + [21149,0.0525], + [21151,0.043], + [21153,0.1571], + [21155,0.0409], + [21157,0.059], + [21159,0.073], + [21161,0.0609], + [21163,0.0518], + [21165,0.0872], + [21167,0.0486], + [21169,0.0414], + [21171,0.0383], + [21173,0.0657], + [21175,0.0726], + [21177,0.067], + [21179,0.0439], + [21181,0.0535], + [21183,0.0638], + [21185,0.0352], + [21187,0.043], + [21189,0.0808], + [21191,0.0475], + [21193,0.0823], + [21195,0.0789], + [21197,0.066], + [21199,0.0558], + [21201,0.0621], + [21203,0.0579], + [21205,0.0577], + [21207,0.0716], + [21209,0.0374], + [21211,0.0363], + [21213,0.0455], + [21215,0.0384], + [21217,0.0468], + [21219,0.0407], + [21221,0.0576], + [21223,0.0498], + [21225,0.0598], + [21227,0.0405], + [21229,0.0408], + [21231,0.0759], + [21233,0.0526], + [21235,0.0582], + [21237,0.09], + [21239,0.0327], + [22001,0.0591], + [22003,0.0526], + [22005,0.0428], + [22007,0.0738], + [22009,0.0616], + [22011,0.0534], + [22013,0.0604], + [22015,0.045], + [22017,0.0578], + [22019,0.0394], + [22021,0.0574], + [22023,0.0357], + [22025,0.0705], + [22027,0.0538], + [22029,0.0788], + [22031,0.061], + [22033,0.044], + [22035,0.1113], + [22037,0.0478], + [22039,0.0593], + [22041,0.0751], + [22043,0.0631], + [22045,0.0727], + [22047,0.0615], + [22049,0.0454], + [22051,0.0453], + [22053,0.0485], + [22055,0.049], + [22057,0.0524], + [22059,0.0471], + [22061,0.0519], + [22063,0.042], + [22065,0.0811], + [22067,0.0799], + [22069,0.0597], + [22071,0.0513], + [22073,0.0526], + [22075,0.0462], + [22077,0.0559], + [22079,0.0562], + [22081,0.0523], + [22083,0.0611], + [22085,0.055], + [22087,0.0523], + [22089,0.045], + [22091,0.0657], + [22093,0.0658], + [22095,0.0608], + [22097,0.0671], + [22099,0.0608], + [22101,0.0796], + [22103,0.0427], + [22105,0.0566], + [22107,0.084], + [22109,0.0569], + [22111,0.0559], + [22113,0.0597], + [22115,0.0646], + [22117,0.0577], + [22119,0.0687], + [22121,0.0463], + [22123,0.098], + [22125,0.042], + [22127,0.0646], + [23001,0.0312], + [23003,0.0481], + [23005,0.0254], + [23007,0.0402], + [23009,0.0379], + [23011,0.0321], + [23013,0.0314], + [23015,0.0323], + [23017,0.0377], + [23019,0.0371], + [23021,0.0402], + [23023,0.027], + [23025,0.0481], + [23027,0.0359], + [23029,0.0491], + [23031,0.0291], + [24001,0.0576], + [24003,0.0356], + [24005,0.0432], + [24009,0.0361], + [24011,0.0429], + [24013,0.0338], + [24015,0.048], + [24017,0.0399], + [24019,0.0571], + [24021,0.0363], + [24023,0.0521], + [24025,0.0389], + [24027,0.0314], + [24029,0.0448], + [24031,0.0328], + [24033,0.0416], + [24035,0.0368], + [24037,0.0399], + [24039,0.0681], + [24041,0.0399], + [24043,0.0461], + [24045,0.0568], + [24047,0.085], + [24510,0.0613], + [25001,0.0465], + [25003,0.0434], + [25005,0.0474], + [25007,0.0487], + [25009,0.0378], + [25011,0.0334], + [25013,0.0503], + [25015,0.0342], + [25017,0.0305], + [25019,0.0443], + [25021,0.033], + [25023,0.039], + [25025,0.0339], + [25027,0.039], + [26001,0.0734], + [26003,0.0842], + [26005,0.0385], + [26007,0.059], + [26009,0.0669], + [26011,0.0824], + [26013,0.0801], + [26015,0.0404], + [26017,0.0564], + [26019,0.0659], + [26021,0.0497], + [26023,0.0474], + [26025,0.0501], + [26027,0.0469], + [26029,0.057], + [26031,0.1025], + [26033,0.0782], + [26035,0.0705], + [26037,0.0373], + [26039,0.0703], + [26041,0.0644], + [26043,0.0485], + [26045,0.0418], + [26047,0.0664], + [26049,0.0575], + [26051,0.0667], + [26053,0.0614], + [26055,0.0426], + [26057,0.055], + [26059,0.0495], + [26061,0.0606], + [26063,0.0528], + [26065,0.044], + [26067,0.0404], + [26069,0.0754], + [26071,0.0652], + [26073,0.0458], + [26075,0.0473], + [26077,0.0412], + [26079,0.0712], + [26081,0.0353], + [26083,0.0872], + [26085,0.0814], + [26087,0.0537], + [26089,0.049], + [26091,0.048], + [26093,0.0332], + [26095,0.0691], + [26097,0.1024], + [26099,0.0429], + [26101,0.0664], + [26103,0.057], + [26105,0.0581], + [26107,0.058], + [26109,0.0503], + [26111,0.0475], + [26113,0.0597], + [26115,0.0486], + [26117,0.0507], + [26119,0.108], + [26121,0.0541], + [26123,0.0501], + [26125,0.0344], + [26127,0.0715], + [26129,0.0784], + [26131,0.091], + [26133,0.0608], + [26135,0.0748], + [26137,0.0612], + [26139,0.0335], + [26141,0.095], + [26143,0.0891], + [26145,0.0552], + [26147,0.0497], + [26149,0.043], + [26151,0.0601], + [26153,0.0855], + [26155,0.0526], + [26157,0.0639], + [26159,0.0582], + [26161,0.036], + [26163,0.0541], + [26165,0.0568], + [27001,0.0623], + [27003,0.0334], + [27005,0.0415], + [27007,0.0487], + [27009,0.0401], + [27011,0.0439], + [27013,0.0291], + [27015,0.0372], + [27017,0.048], + [27019,0.0292], + [27021,0.0585], + [27023,0.0403], + [27025,0.0395], + [27027,0.0321], + [27029,0.0868], + [27031,0.0373], + [27033,0.0534], + [27035,0.0446], + [27037,0.0302], + [27039,0.034], + [27041,0.0319], + [27043,0.0422], + [27045,0.0349], + [27047,0.0366], + [27049,0.0325], + [27051,0.0411], + [27053,0.0302], + [27055,0.0338], + [27057,0.0556], + [27059,0.0433], + [27061,0.0701], + [27063,0.0365], + [27065,0.0607], + [27067,0.0327], + [27069,0.0378], + [27071,0.0704], + [27073,0.0351], + [27075,0.039], + [27077,0.0469], + [27079,0.0466], + [27081,0.0334], + [27083,0.0321], + [27085,0.0382], + [27087,0.0494], + [27089,0.0704], + [27091,0.0352], + [27093,0.0406], + [27095,0.0552], + [27097,0.0535], + [27099,0.0284], + [27101,0.0433], + [27103,0.0254], + [27105,0.032], + [27107,0.0475], + [27109,0.027], + [27111,0.0396], + [27113,0.0572], + [27115,0.0562], + [27117,0.0342], + [27119,0.0424], + [27121,0.0306], + [27123,0.0322], + [27125,0.0656], + [27127,0.0412], + [27129,0.0449], + [27131,0.0318], + [27133,0.0206], + [27135,0.0489], + [27137,0.0464], + [27139,0.0288], + [27141,0.0373], + [27143,0.0358], + [27145,0.0337], + [27147,0.0338], + [27149,0.0266], + [27151,0.041], + [27153,0.0399], + [27155,0.0352], + [27157,0.0334], + [27159,0.0564], + [27161,0.0391], + [27163,0.0299], + [27165,0.0441], + [27167,0.0313], + [27169,0.0311], + [27171,0.035], + [27173,0.0354], + [28001,0.0729], + [28003,0.044], + [28005,0.0665], + [28007,0.0614], + [28009,0.0553], + [28011,0.0645], + [28013,0.0431], + [28015,0.0581], + [28017,0.0524], + [28019,0.0487], + [28021,0.0979], + [28023,0.0617], + [28025,0.0675], + [28027,0.0733], + [28029,0.0566], + [28031,0.0482], + [28033,0.0379], + [28035,0.048], + [28037,0.0678], + [28039,0.0706], + [28041,0.075], + [28043,0.046], + [28045,0.0542], + [28047,0.0479], + [28049,0.0481], + [28051,0.0954], + [28053,0.091], + [28055,0.1162], + [28057,0.0427], + [28059,0.0584], + [28061,0.0657], + [28063,0.1472], + [28065,0.0688], + [28067,0.0515], + [28069,0.0792], + [28071,0.0424], + [28073,0.0383], + [28075,0.0544], + [28077,0.0655], + [28079,0.0562], + [28081,0.0405], + [28083,0.0736], + [28085,0.0521], + [28087,0.0539], + [28089,0.0385], + [28091,0.0553], + [28093,0.0508], + [28095,0.0519], + [28097,0.0508], + [28099,0.0508], + [28101,0.0537], + [28103,0.0739], + [28105,0.0484], + [28107,0.0676], + [28109,0.0528], + [28111,0.0625], + [28113,0.0598], + [28115,0.039], + [28117,0.0461], + [28119,0.0873], + [28121,0.0357], + [28123,0.0401], + [28125,0.0769], + [28127,0.0483], + [28129,0.0471], + [28131,0.0606], + [28133,0.0823], + [28135,0.0529], + [28137,0.0501], + [28139,0.0448], + [28141,0.05], + [28143,0.0581], + [28145,0.0359], + [28147,0.0681], + [28149,0.0572], + [28151,0.0743], + [28153,0.0628], + [28155,0.0522], + [28157,0.0871], + [28159,0.0596], + [28161,0.0549], + [28163,0.0602], + [29001,0.0436], + [29003,0.0314], + [29005,0.0351], + [29007,0.0354], + [29009,0.0344], + [29011,0.042], + [29013,0.0436], + [29015,0.0518], + [29017,0.0442], + [29019,0.0261], + [29021,0.0347], + [29023,0.0462], + [29025,0.0401], + [29027,0.0347], + [29029,0.0481], + [29031,0.0344], + [29033,0.0416], + [29035,0.0599], + [29037,0.0348], + [29039,0.0411], + [29041,0.0349], + [29043,0.0308], + [29045,0.0566], + [29047,0.0359], + [29049,0.0391], + [29051,0.0293], + [29053,0.0369], + [29055,0.0468], + [29057,0.0341], + [29059,0.0468], + [29061,0.0332], + [29063,0.0382], + [29065,0.0427], + [29067,0.0473], + [29069,0.0665], + [29071,0.0362], + [29073,0.0391], + [29075,0.0286], + [29077,0.0304], + [29079,0.0363], + [29081,0.0355], + [29083,0.0419], + [29085,0.045], + [29087,0.0292], + [29089,0.0385], + [29091,0.049], + [29093,0.0654], + [29095,0.0436], + [29097,0.0334], + [29099,0.0356], + [29101,0.0442], + [29103,0.0327], + [29105,0.0487], + [29107,0.0374], + [29109,0.0361], + [29111,0.035], + [29113,0.0359], + [29115,0.059], + [29117,0.0303], + [29119,0.0358], + [29121,0.0369], + [29123,0.0466], + [29125,0.0438], + [29127,0.0364], + [29129,0.0377], + [29131,0.0452], + [29133,0.0509], + [29135,0.0359], + [29137,0.0437], + [29139,0.0331], + [29141,0.05], + [29143,0.0672], + [29145,0.036], + [29147,0.0366], + [29149,0.0466], + [29151,0.03], + [29153,0.059], + [29155,0.0757], + [29157,0.027], + [29159,0.0424], + [29161,0.0381], + [29163,0.0349], + [29165,0.0318], + [29167,0.0398], + [29169,0.0442], + [29171,0.0387], + [29173,0.0319], + [29175,0.046], + [29177,0.0476], + [29179,0.0406], + [29181,0.0573], + [29183,0.0287], + [29185,0.052], + [29186,0.0366], + [29187,0.0443], + [29189,0.0343], + [29195,0.0366], + [29197,0.0497], + [29199,0.032], + [29201,0.0453], + [29203,0.0616], + [29205,0.0348], + [29207,0.0513], + [29209,0.056], + [29211,0.0413], + [29213,0.0608], + [29215,0.0499], + [29217,0.0387], + [29219,0.032], + [29221,0.0546], + [29223,0.0513], + [29225,0.0385], + [29227,0.0259], + [29229,0.0499], + [29510,0.0441], + [30001,0.0312], + [30003,0.1343], + [30005,0.0409], + [30007,0.0471], + [30009,0.0368], + [30011,0.0258], + [30013,0.0377], + [30015,0.0328], + [30017,0.0318], + [30019,0.023], + [30021,0.0316], + [30023,0.0356], + [30025,0.0268], + [30027,0.0404], + [30029,0.0524], + [30031,0.0276], + [30033,0.0286], + [30035,0.0796], + [30037,0.05], + [30039,0.0586], + [30041,0.038], + [30043,0.043], + [30045,0.0367], + [30047,0.0444], + [30049,0.0347], + [30051,0.0306], + [30053,0.085], + [30055,0.0216], + [30057,0.0395], + [30059,0.0448], + [30061,0.0756], + [30063,0.0362], + [30065,0.0444], + [30067,0.0402], + [30069,0.0469], + [30071,0.0453], + [30073,0.0388], + [30075,0.0256], + [30077,0.0436], + [30079,0.0361], + [30081,0.0466], + [30083,0.0376], + [30085,0.0468], + [30087,0.0518], + [30089,0.0695], + [30091,0.0274], + [30093,0.0422], + [30095,0.0386], + [30097,0.0313], + [30099,0.0396], + [30101,0.0311], + [30103,0.0377], + [30105,0.0327], + [30107,0.0435], + [30109,0.0325], + [30111,0.0351], + [31001,0.0311], + [31003,0.0249], + [31005,0.0538], + [31007,0.0378], + [31009,0.042], + [31011,0.0247], + [31013,0.0327], + [31015,0.0334], + [31017,0.0324], + [31019,0.0243], + [31021,0.0371], + [31023,0.0277], + [31025,0.0316], + [31027,0.0227], + [31029,0.0188], + [31031,0.0234], + [31033,0.0293], + [31035,0.031], + [31037,0.024], + [31039,0.0272], + [31041,0.0216], + [31043,0.0407], + [31045,0.0275], + [31047,0.0285], + [31049,0.0261], + [31051,0.0318], + [31053,0.0281], + [31055,0.0318], + [31057,0.0236], + [31059,0.0253], + [31061,0.0305], + [31063,0.0257], + [31065,0.0244], + [31067,0.0352], + [31069,0.0277], + [31071,0.0252], + [31073,0.026], + [31075,0.0228], + [31077,0.0313], + [31079,0.0345], + [31081,0.0252], + [31083,0.0257], + [31085,0.0246], + [31087,0.0343], + [31089,0.0246], + [31091,0.0376], + [31093,0.0307], + [31095,0.0245], + [31097,0.034], + [31099,0.0222], + [31101,0.0303], + [31103,0.0248], + [31105,0.0286], + [31107,0.0347], + [31109,0.0264], + [31111,0.0303], + [31113,0.0277], + [31115,0.0306], + [31117,0.0224], + [31119,0.0264], + [31121,0.028], + [31123,0.0291], + [31125,0.0249], + [31127,0.0391], + [31129,0.0264], + [31131,0.0335], + [31133,0.0307], + [31135,0.0195], + [31137,0.0234], + [31139,0.027], + [31141,0.0287], + [31143,0.0237], + [31145,0.0253], + [31147,0.0328], + [31149,0.0259], + [31151,0.0308], + [31153,0.0278], + [31155,0.028], + [31157,0.0342], + [31159,0.0266], + [31161,0.0264], + [31163,0.0288], + [31165,0.0301], + [31167,0.0282], + [31169,0.0225], + [31171,0.0317], + [31173,0.0499], + [31175,0.0267], + [31177,0.0309], + [31179,0.0245], + [31181,0.03], + [31183,0.023], + [31185,0.0257], + [32001,0.0441], + [32003,0.0524], + [32005,0.048], + [32007,0.037], + [32009,0.0382], + [32011,0.0305], + [32013,0.0418], + [32015,0.0454], + [32017,0.0468], + [32019,0.0596], + [32021,0.0546], + [32023,0.0638], + [32027,0.045], + [32029,0.0498], + [32031,0.0418], + [32033,0.0402], + [32510,0.0505], + [33001,0.0263], + [33003,0.0263], + [33005,0.0258], + [33007,0.0343], + [33009,0.0218], + [33011,0.0284], + [33013,0.0236], + [33015,0.0289], + [33017,0.0235], + [33019,0.022], + [34001,0.0719], + [34003,0.0389], + [34005,0.041], + [34007,0.051], + [34009,0.0915], + [34011,0.0695], + [34013,0.0567], + [34015,0.0472], + [34017,0.0438], + [34019,0.0353], + [34021,0.0411], + [34023,0.0409], + [34025,0.0412], + [34027,0.0364], + [34029,0.0482], + [34031,0.0569], + [34033,0.0612], + [34035,0.038], + [34037,0.0438], + [34039,0.0477], + [34041,0.0416], + [35001,0.0547], + [35003,0.0693], + [35005,0.0644], + [35006,0.0785], + [35007,0.0604], + [35009,0.0484], + [35011,0.0452], + [35013,0.0687], + [35015,0.0528], + [35017,0.0616], + [35019,0.0642], + [35021,0.0655], + [35023,0.0517], + [35025,0.0657], + [35027,0.0552], + [35028,0.0377], + [35029,0.1411], + [35031,0.0869], + [35033,0.0788], + [35035,0.0611], + [35037,0.0623], + [35039,0.0644], + [35041,0.0528], + [35043,0.0617], + [35045,0.0723], + [35047,0.0744], + [35049,0.051], + [35051,0.0791], + [35053,0.0653], + [35055,0.0794], + [35057,0.0864], + [35059,0.038], + [35061,0.0666], + [36001,0.0426], + [36003,0.067], + [36005,0.062], + [36007,0.0561], + [36009,0.0625], + [36011,0.051], + [36013,0.0608], + [36015,0.0559], + [36017,0.054], + [36019,0.0537], + [36021,0.0384], + [36023,0.0587], + [36025,0.0564], + [36027,0.0433], + [36029,0.0519], + [36031,0.0556], + [36033,0.0607], + [36035,0.0585], + [36037,0.0487], + [36039,0.0526], + [36041,0.0756], + [36043,0.0578], + [36045,0.0655], + [36047,0.0464], + [36049,0.0672], + [36051,0.0508], + [36053,0.0558], + [36055,0.0499], + [36057,0.058], + [36059,0.0415], + [36061,0.0404], + [36063,0.0621], + [36065,0.0509], + [36067,0.0474], + [36069,0.0454], + [36071,0.046], + [36073,0.0595], + [36075,0.0653], + [36077,0.0508], + [36079,0.0425], + [36081,0.0397], + [36083,0.0446], + [36085,0.0459], + [36087,0.0439], + [36089,0.0677], + [36091,0.0402], + [36093,0.0453], + [36095,0.0552], + [36097,0.0587], + [36099,0.046], + [36101,0.058], + [36103,0.0454], + [36105,0.0493], + [36107,0.0518], + [36109,0.0439], + [36111,0.0461], + [36113,0.0532], + [36115,0.0469], + [36117,0.0504], + [36119,0.0456], + [36121,0.0569], + [36123,0.0447], + [37001,0.043], + [37003,0.0367], + [37005,0.0516], + [37007,0.0531], + [37009,0.0418], + [37011,0.0435], + [37013,0.0513], + [37015,0.0608], + [37017,0.0597], + [37019,0.0566], + [37021,0.0349], + [37023,0.0428], + [37025,0.0416], + [37027,0.0452], + [37029,0.0447], + [37031,0.045], + [37033,0.0486], + [37035,0.0421], + [37037,0.0388], + [37039,0.0507], + [37041,0.0547], + [37043,0.0503], + [37045,0.0472], + [37047,0.0558], + [37049,0.0474], + [37051,0.0575], + [37053,0.0446], + [37055,0.0595], + [37057,0.0435], + [37059,0.0404], + [37061,0.0493], + [37063,0.0408], + [37065,0.0779], + [37067,0.0443], + [37069,0.0467], + [37071,0.0462], + [37073,0.0452], + [37075,0.0681], + [37077,0.0387], + [37079,0.0451], + [37081,0.0482], + [37083,0.0738], + [37085,0.0515], + [37087,0.0409], + [37089,0.0386], + [37091,0.0582], + [37093,0.0579], + [37095,0.0853], + [37097,0.0425], + [37099,0.0484], + [37101,0.0417], + [37103,0.0449], + [37105,0.0515], + [37107,0.0456], + [37109,0.0403], + [37111,0.0415], + [37113,0.0472], + [37115,0.0435], + [37117,0.0576], + [37119,0.0431], + [37121,0.0532], + [37123,0.0464], + [37125,0.0452], + [37127,0.0613], + [37129,0.042], + [37131,0.0635], + [37133,0.0508], + [37135,0.0382], + [37137,0.048], + [37139,0.0558], + [37141,0.0473], + [37143,0.0578], + [37145,0.0467], + [37147,0.0493], + [37149,0.0422], + [37151,0.0442], + [37153,0.0613], + [37155,0.0665], + [37157,0.0523], + [37159,0.0471], + [37161,0.0615], + [37163,0.0481], + [37165,0.0785], + [37167,0.0415], + [37169,0.043], + [37171,0.0426], + [37173,0.051], + [37175,0.0436], + [37177,0.0763], + [37179,0.04], + [37181,0.0627], + [37183,0.0392], + [37185,0.0694], + [37187,0.0676], + [37189,0.0411], + [37191,0.0512], + [37193,0.043], + [37195,0.0731], + [37197,0.0402], + [37199,0.046], + [38001,0.0241], + [38003,0.0274], + [38005,0.0354], + [38007,0.0297], + [38009,0.0327], + [38011,0.0173], + [38013,0.0308], + [38015,0.0241], + [38017,0.0208], + [38019,0.0262], + [38021,0.0176], + [38023,0.0166], + [38025,0.0212], + [38027,0.0461], + [38029,0.0399], + [38031,0.0245], + [38033,0.0199], + [38035,0.0218], + [38037,0.0287], + [38039,0.029], + [38041,0.019], + [38043,0.0354], + [38045,0.0187], + [38047,0.0251], + [38049,0.0419], + [38051,0.0256], + [38053,0.0245], + [38055,0.031], + [38057,0.0396], + [38059,0.0304], + [38061,0.0202], + [38063,0.0306], + [38065,0.0417], + [38067,0.0411], + [38069,0.0317], + [38071,0.0267], + [38073,0.0193], + [38075,0.0253], + [38077,0.0235], + [38079,0.1016], + [38081,0.0204], + [38083,0.0453], + [38085,0.036], + [38087,0.0187], + [38089,0.0267], + [38091,0.0166], + [38093,0.0232], + [38095,0.0251], + [38097,0.0241], + [38099,0.0329], + [38101,0.0322], + [38103,0.0321], + [38105,0.0251], + [39001,0.0717], + [39003,0.05], + [39005,0.049], + [39007,0.0592], + [39009,0.0605], + [39011,0.0372], + [39013,0.0632], + [39015,0.0571], + [39017,0.0444], + [39019,0.0586], + [39021,0.0416], + [39023,0.0485], + [39025,0.0438], + [39027,0.0544], + [39029,0.0597], + [39031,0.0682], + [39033,0.0575], + [39035,0.0585], + [39037,0.042], + [39039,0.0488], + [39041,0.0351], + [39043,0.0619], + [39045,0.0426], + [39047,0.0423], + [39049,0.0402], + [39051,0.0489], + [39053,0.0672], + [39055,0.0477], + [39057,0.0427], + [39059,0.0608], + [39061,0.0438], + [39063,0.0362], + [39065,0.0496], + [39067,0.06], + [39069,0.0519], + [39071,0.0599], + [39073,0.0538], + [39075,0.0355], + [39077,0.0647], + [39079,0.0715], + [39081,0.0726], + [39083,0.0451], + [39085,0.0516], + [39087,0.0584], + [39089,0.0418], + [39091,0.0412], + [39093,0.0617], + [39095,0.0589], + [39097,0.0384], + [39099,0.0691], + [39101,0.0509], + [39103,0.0473], + [39105,0.0815], + [39107,0.0308], + [39109,0.0425], + [39111,0.0852], + [39113,0.0488], + [39115,0.0685], + [39117,0.0487], + [39119,0.0573], + [39121,0.072], + [39123,0.0669], + [39125,0.0445], + [39127,0.0599], + [39129,0.0459], + [39131,0.0695], + [39133,0.0504], + [39135,0.045], + [39137,0.0356], + [39139,0.0551], + [39141,0.0514], + [39143,0.0475], + [39145,0.071], + [39147,0.0477], + [39149,0.0412], + [39151,0.0523], + [39153,0.0506], + [39155,0.0722], + [39157,0.0501], + [39159,0.0372], + [39161,0.0398], + [39163,0.0683], + [39165,0.0411], + [39167,0.0621], + [39169,0.0395], + [39171,0.044], + [39173,0.044], + [39175,0.0371], + [40001,0.0502], + [40003,0.0268], + [40005,0.0532], + [40007,0.0259], + [40009,0.0395], + [40011,0.0288], + [40013,0.0383], + [40015,0.0449], + [40017,0.0356], + [40019,0.046], + [40021,0.0546], + [40023,0.0621], + [40025,0.024], + [40027,0.0352], + [40029,0.0541], + [40031,0.0444], + [40033,0.0402], + [40035,0.0447], + [40037,0.0502], + [40039,0.0332], + [40041,0.044], + [40043,0.0297], + [40045,0.0326], + [40047,0.0393], + [40049,0.0419], + [40051,0.0407], + [40053,0.0261], + [40055,0.0533], + [40057,0.038], + [40059,0.0314], + [40061,0.0663], + [40063,0.0565], + [40065,0.0384], + [40067,0.0559], + [40069,0.0405], + [40071,0.0551], + [40073,0.0279], + [40075,0.0537], + [40077,0.0752], + [40079,0.0581], + [40081,0.0437], + [40083,0.0371], + [40085,0.0298], + [40087,0.0358], + [40089,0.0633], + [40091,0.0782], + [40093,0.0322], + [40095,0.047], + [40097,0.0481], + [40099,0.0373], + [40101,0.0517], + [40103,0.0332], + [40105,0.0548], + [40107,0.0608], + [40109,0.0403], + [40111,0.0629], + [40113,0.0513], + [40115,0.0444], + [40117,0.0537], + [40119,0.0363], + [40121,0.0536], + [40123,0.038], + [40125,0.0416], + [40127,0.0618], + [40129,0.0326], + [40131,0.0442], + [40133,0.0586], + [40135,0.0551], + [40137,0.0625], + [40139,0.0314], + [40141,0.0429], + [40143,0.0429], + [40145,0.0441], + [40147,0.046], + [40149,0.0445], + [40151,0.0266], + [40153,0.0421], + [41001,0.0546], + [41003,0.0326], + [41005,0.0374], + [41007,0.0413], + [41009,0.0517], + [41011,0.0552], + [41013,0.0626], + [41015,0.0609], + [41017,0.0421], + [41019,0.0535], + [41021,0.0416], + [41023,0.0683], + [41025,0.0625], + [41027,0.0361], + [41029,0.0477], + [41031,0.0558], + [41033,0.0538], + [41035,0.0589], + [41037,0.057], + [41039,0.0445], + [41041,0.0475], + [41043,0.0476], + [41045,0.0468], + [41047,0.043], + [41049,0.0442], + [41051,0.0363], + [41053,0.0434], + [41055,0.0479], + [41057,0.0425], + [41059,0.0483], + [41061,0.0529], + [41063,0.0557], + [41065,0.0413], + [41067,0.035], + [41069,0.039], + [41071,0.0378], + [42001,0.0367], + [42003,0.0476], + [42005,0.0615], + [42007,0.0554], + [42009,0.0518], + [42011,0.0461], + [42013,0.0485], + [42015,0.0514], + [42017,0.0424], + [42019,0.046], + [42021,0.0607], + [42023,0.0691], + [42025,0.0557], + [42027,0.037], + [42029,0.0359], + [42031,0.0565], + [42033,0.0597], + [42035,0.062], + [42037,0.0522], + [42039,0.055], + [42041,0.0381], + [42043,0.0451], + [42045,0.0453], + [42047,0.0486], + [42049,0.0578], + [42051,0.0693], + [42053,0.0671], + [42055,0.0445], + [42057,0.0515], + [42059,0.0592], + [42061,0.0601], + [42063,0.0592], + [42065,0.0561], + [42067,0.0463], + [42069,0.0513], + [42071,0.0382], + [42073,0.0609], + [42075,0.0413], + [42077,0.0503], + [42079,0.0591], + [42081,0.0565], + [42083,0.0617], + [42085,0.0547], + [42087,0.0535], + [42089,0.0587], + [42091,0.0386], + [42093,0.0387], + [42095,0.049], + [42097,0.0568], + [42099,0.0429], + [42101,0.0625], + [42103,0.0592], + [42105,0.0656], + [42107,0.0586], + [42109,0.0444], + [42111,0.0609], + [42113,0.0579], + [42115,0.0473], + [42117,0.0599], + [42119,0.0438], + [42121,0.0612], + [42123,0.0529], + [42125,0.0525], + [42127,0.0508], + [42129,0.0518], + [42131,0.0526], + [42133,0.0437], + [44001,0.0383], + [44003,0.0409], + [44005,0.0392], + [44007,0.048], + [44009,0.0401], + [45001,0.0458], + [45003,0.0411], + [45005,0.0686], + [45007,0.0392], + [45009,0.0742], + [45011,0.0604], + [45013,0.0404], + [45015,0.0382], + [45017,0.0518], + [45019,0.0348], + [45021,0.0492], + [45023,0.06], + [45025,0.0435], + [45027,0.0597], + [45029,0.048], + [45031,0.0531], + [45033,0.057], + [45035,0.0384], + [45037,0.0457], + [45039,0.0737], + [45041,0.0457], + [45043,0.0552], + [45045,0.0366], + [45047,0.0453], + [45049,0.0447], + [45051,0.0496], + [45053,0.0364], + [45055,0.0453], + [45057,0.0465], + [45059,0.0439], + [45061,0.0603], + [45063,0.0362], + [45065,0.0458], + [45067,0.0742], + [45069,0.0656], + [45071,0.0417], + [45073,0.0437], + [45075,0.0712], + [45077,0.0413], + [45079,0.0426], + [45081,0.0392], + [45083,0.0402], + [45085,0.0525], + [45087,0.0536], + [45089,0.0634], + [45091,0.0397], + [46003,0.0284], + [46005,0.0287], + [46007,0.0446], + [46009,0.0305], + [46011,0.0315], + [46013,0.0301], + [46015,0.0301], + [46017,0.0754], + [46019,0.0369], + [46021,0.0351], + [46023,0.037], + [46025,0.0464], + [46027,0.033], + [46029,0.0336], + [46031,0.0416], + [46033,0.0431], + [46035,0.0291], + [46037,0.0409], + [46039,0.0483], + [46041,0.1021], + [46043,0.0296], + [46045,0.0281], + [46047,0.0416], + [46049,0.0317], + [46051,0.0357], + [46053,0.0356], + [46055,0.0285], + [46057,0.0367], + [46059,0.0252], + [46061,0.0408], + [46063,0.0328], + [46065,0.0279], + [46067,0.0314], + [46069,0.0318], + [46071,0.0583], + [46073,0.0242], + [46075,0.0302], + [46077,0.0319], + [46079,0.0391], + [46081,0.0332], + [46083,0.0249], + [46085,0.0498], + [46087,0.0279], + [46089,0.0354], + [46091,0.0461], + [46093,0.0345], + [46095,0.0501], + [46097,0.0301], + [46099,0.0285], + [46101,0.0374], + [46102,null], + [46103,0.0339], + [46105,0.0297], + [46107,0.0342], + [46109,0.0484], + [46111,0.0352], + [46115,0.0347], + [46117,0.0333], + [46119,0.032], + [46121,0.0663], + [46123,0.0288], + [46125,0.0323], + [46127,0.0368], + [46129,0.0514], + [46135,0.0295], + [46137,0.0521], + [47001,0.039], + [47003,0.0391], + [47005,0.0538], + [47007,0.0586], + [47009,0.0348], + [47011,0.0366], + [47013,0.0512], + [47015,0.0354], + [47017,0.0516], + [47019,0.0454], + [47021,0.0303], + [47023,0.0396], + [47025,0.0473], + [47027,0.0506], + [47029,0.0521], + [47031,0.0365], + [47033,0.0414], + [47035,0.046], + [47037,0.0275], + [47039,0.052], + [47041,0.0468], + [47043,0.033], + [47045,0.0484], + [47047,0.0398], + [47049,0.0449], + [47051,0.0378], + [47053,0.0456], + [47055,0.0341], + [47057,0.042], + [47059,0.0449], + [47061,0.0499], + [47063,0.0402], + [47065,0.0363], + [47067,0.058], + [47069,0.0516], + [47071,0.0471], + [47073,0.0419], + [47075,0.0517], + [47077,0.0513], + [47079,0.0452], + [47081,0.034], + [47083,0.0574], + [47085,0.0428], + [47087,0.0532], + [47089,0.0402], + [47091,0.0393], + [47093,0.0316], + [47095,0.0565], + [47097,0.0591], + [47099,0.0436], + [47101,0.0453], + [47103,0.0328], + [47105,0.0364], + [47107,0.0435], + [47109,0.0561], + [47111,0.0342], + [47113,0.0392], + [47115,0.048], + [47117,0.0333], + [47119,0.0322], + [47121,0.0519], + [47123,0.0397], + [47125,0.0408], + [47127,0.031], + [47129,0.0485], + [47131,0.0548], + [47133,0.0412], + [47135,0.0481], + [47137,0.044], + [47139,0.0456], + [47141,0.0375], + [47143,0.0642], + [47145,0.0436], + [47147,0.0337], + [47149,0.0288], + [47151,0.0508], + [47153,0.0493], + [47155,0.0399], + [47157,0.0432], + [47159,0.0353], + [47161,0.0532], + [47163,0.0402], + [47165,0.0296], + [47167,0.044], + [47169,0.0345], + [47171,0.0535], + [47173,0.0436], + [47175,0.0434], + [47177,0.0392], + [47179,0.0379], + [47181,0.0518], + [47183,0.0486], + [47185,0.0395], + [47187,0.0267], + [47189,0.0292], + [48001,0.0362], + [48003,0.0306], + [48005,0.0507], + [48007,0.0676], + [48009,0.0342], + [48011,0.025], + [48013,0.0418], + [48015,0.0433], + [48017,0.0427], + [48019,0.0359], + [48021,0.0353], + [48023,0.0344], + [48025,0.0645], + [48027,0.042], + [48029,0.0349], + [48031,0.0272], + [48033,0.0346], + [48035,0.0399], + [48037,0.0455], + [48039,0.0526], + [48041,0.0306], + [48043,0.0349], + [48045,0.0432], + [48047,0.0821], + [48049,0.0384], + [48051,0.0412], + [48053,0.0317], + [48055,0.0387], + [48057,0.0581], + [48059,0.0368], + [48061,0.0688], + [48063,0.0563], + [48065,0.0317], + [48067,0.0595], + [48069,0.0328], + [48071,0.0651], + [48073,0.0453], + [48075,0.0296], + [48077,0.0356], + [48079,0.0459], + [48081,0.0365], + [48083,0.0443], + [48085,0.0341], + [48087,0.0362], + [48089,0.0384], + [48091,0.0336], + [48093,0.0369], + [48095,0.0423], + [48097,0.0356], + [48099,0.0428], + [48101,0.0426], + [48103,0.0529], + [48105,0.0409], + [48107,0.0415], + [48109,0.0361], + [48111,0.0212], + [48113,0.0383], + [48115,0.0488], + [48117,0.0306], + [48119,0.0326], + [48121,0.033], + [48123,0.0444], + [48125,0.0469], + [48127,0.0509], + [48129,0.0365], + [48131,0.0766], + [48133,0.0432], + [48135,0.0411], + [48137,0.0321], + [48139,0.0343], + [48141,0.0461], + [48143,0.0341], + [48145,0.042], + [48147,0.0333], + [48149,0.0316], + [48151,0.0354], + [48153,0.0549], + [48155,0.0336], + [48157,0.0463], + [48159,0.0459], + [48161,0.0631], + [48163,0.0385], + [48165,0.0303], + [48167,0.052], + [48169,0.0331], + [48171,0.0258], + [48173,0.0261], + [48175,0.0493], + [48177,0.0348], + [48179,0.0528], + [48181,0.0349], + [48183,0.0513], + [48185,0.0528], + [48187,0.0331], + [48189,0.0513], + [48191,0.062], + [48193,0.0394], + [48195,0.0252], + [48197,0.0387], + [48199,0.0612], + [48201,0.05], + [48203,0.052], + [48205,0.0197], + [48207,0.0473], + [48209,0.0313], + [48211,0.0248], + [48213,0.0415], + [48215,0.0739], + [48217,0.0388], + [48219,0.0372], + [48221,0.0418], + [48223,0.0357], + [48225,0.0423], + [48227,0.043], + [48229,0.0599], + [48231,0.0392], + [48233,0.0602], + [48235,0.0297], + [48237,0.0374], + [48239,0.0399], + [48241,0.0744], + [48243,0.0314], + [48245,0.0732], + [48247,0.0723], + [48249,0.0753], + [48251,0.0377], + [48253,0.0532], + [48255,0.0349], + [48257,0.0352], + [48259,0.0307], + [48261,0.0325], + [48263,0.0261], + [48265,0.0341], + [48267,0.0353], + [48269,0.0368], + [48271,0.0548], + [48273,0.0595], + [48275,0.0395], + [48277,0.042], + [48279,0.0516], + [48281,0.0367], + [48283,0.0369], + [48285,0.0358], + [48287,0.0326], + [48289,0.0633], + [48291,0.0709], + [48293,0.0553], + [48295,0.0325], + [48297,0.0465], + [48299,0.0373], + [48301,0.05], + [48303,0.0317], + [48305,0.0375], + [48307,0.0359], + [48309,0.0385], + [48311,0.0189], + [48313,0.0465], + [48315,0.0566], + [48317,0.0319], + [48319,0.0334], + [48321,0.0725], + [48323,0.0926], + [48325,0.0383], + [48327,0.0483], + [48329,0.0301], + [48331,0.0503], + [48333,0.035], + [48335,0.0549], + [48337,0.0402], + [48339,0.0433], + [48341,0.029], + [48343,0.0864], + [48345,0.0367], + [48347,0.0425], + [48349,0.0393], + [48351,0.0787], + [48353,0.0406], + [48355,0.0539], + [48357,0.0369], + [48359,0.0247], + [48361,0.0686], + [48363,0.0406], + [48365,0.0547], + [48367,0.0345], + [48369,0.0248], + [48371,0.0451], + [48373,0.0602], + [48375,0.0319], + [48377,0.0936], + [48379,0.0353], + [48381,0.0282], + [48383,0.0384], + [48385,0.0572], + [48387,0.0518], + [48389,0.0354], + [48391,0.0578], + [48393,0.0366], + [48395,0.0468], + [48397,0.0331], + [48399,0.0377], + [48401,0.0506], + [48403,0.0856], + [48405,0.0745], + [48407,0.0563], + [48409,0.0761], + [48411,0.0319], + [48413,0.0366], + [48415,0.0437], + [48417,0.0299], + [48419,0.0512], + [48421,0.031], + [48423,0.0406], + [48425,0.045], + [48427,0.1167], + [48429,0.0469], + [48431,0.0379], + [48433,0.0338], + [48435,0.0509], + [48437,0.0406], + [48439,0.0368], + [48441,0.0354], + [48443,0.0486], + [48445,0.05], + [48447,0.0434], + [48449,0.0534], + [48451,0.0368], + [48453,0.0299], + [48455,0.0552], + [48457,0.0731], + [48459,0.0525], + [48461,0.0382], + [48463,0.0466], + [48465,0.0508], + [48467,0.0373], + [48469,0.0482], + [48471,0.0461], + [48473,0.0487], + [48475,0.0406], + [48477,0.0422], + [48479,0.0416], + [48481,0.0446], + [48483,0.0407], + [48485,0.0369], + [48487,0.0469], + [48489,0.1101], + [48491,0.0322], + [48493,0.0346], + [48495,0.0522], + [48497,0.0397], + [48499,0.0468], + [48501,0.0354], + [48503,0.0379], + [48505,0.0735], + [48507,0.1111], + [49001,0.0411], + [49003,0.0327], + [49005,0.0277], + [49007,0.0509], + [49009,0.0497], + [49011,0.0306], + [49013,0.0575], + [49015,0.0517], + [49017,0.075], + [49019,0.0533], + [49021,0.0416], + [49023,0.0337], + [49025,0.0342], + [49027,0.0329], + [49029,0.0287], + [49031,0.049], + [49033,0.032], + [49035,0.0309], + [49037,0.0723], + [49039,0.0393], + [49041,0.0388], + [49043,0.0308], + [49045,0.0363], + [49047,0.0608], + [49049,0.0291], + [49051,0.0325], + [49053,0.0346], + [49055,0.074], + [49057,0.0366], + [50001,0.0281], + [50003,0.0362], + [50005,0.037], + [50007,0.0228], + [50009,0.0466], + [50011,0.0306], + [50013,0.0351], + [50015,0.0396], + [50017,0.0307], + [50019,0.0507], + [50021,0.0353], + [50023,0.0296], + [50025,0.0308], + [50027,0.0256], + [51001,0.0482], + [51003,0.0331], + [51005,0.0487], + [51007,0.04], + [51009,0.0418], + [51011,0.0446], + [51013,0.0249], + [51015,0.0344], + [51017,0.033], + [51019,0.0392], + [51021,0.0443], + [51023,0.0358], + [51025,0.0549], + [51027,0.0761], + [51029,0.054], + [51031,0.042], + [51033,0.0431], + [51035,0.0465], + [51036,0.048], + [51037,0.0474], + [51041,0.0363], + [51043,0.0343], + [51045,0.0437], + [51047,0.0362], + [51049,0.0423], + [51051,0.0733], + [51053,0.045], + [51057,0.0501], + [51059,0.0304], + [51061,0.0328], + [51063,0.0369], + [51065,0.0305], + [51067,0.0397], + [51069,0.0319], + [51071,0.0472], + [51073,0.0336], + [51075,0.0349], + [51077,0.0431], + [51079,0.0305], + [51081,0.0458], + [51083,0.0524], + [51085,0.0334], + [51087,0.0366], + [51089,0.0497], + [51091,0.0346], + [51093,0.039], + [51095,0.036], + [51097,0.0361], + [51099,0.0396], + [51101,0.0348], + [51103,0.0549], + [51105,0.0554], + [51107,0.0304], + [51109,0.0349], + [51111,0.0437], + [51113,0.0295], + [51115,0.0379], + [51117,0.0525], + [51119,0.0341], + [51121,0.0383], + [51125,0.0349], + [51127,0.0322], + [51131,0.0585], + [51133,0.0544], + [51135,0.0397], + [51137,0.0385], + [51139,0.053], + [51141,0.0451], + [51143,0.0454], + [51145,0.0335], + [51147,0.0499], + [51149,0.0444], + [51153,0.034], + [51155,0.0535], + [51157,0.0347], + [51159,0.0378], + [51161,0.0345], + [51163,0.0409], + [51165,0.0327], + [51167,0.0551], + [51169,0.0409], + [51171,0.0354], + [51173,0.0538], + [51175,0.0376], + [51177,0.0373], + [51179,0.0362], + [51181,0.0453], + [51183,0.0595], + [51185,0.0592], + [51187,0.0371], + [51191,0.041], + [51193,0.047], + [51195,0.0678], + [51197,0.0521], + [51199,0.0356], + [51510,0.0287], + [51520,0.0456], + [51530,0.0437], + [51540,0.0309], + [51550,0.0387], + [51570,0.0408], + [51580,0.0626], + [51590,0.0601], + [51595,0.0549], + [51600,0.0292], + [51610,0.0268], + [51620,0.0554], + [51630,0.0435], + [51640,0.0452], + [51650,0.0509], + [51660,0.0447], + [51670,0.0609], + [51678,0.0565], + [51680,0.0496], + [51683,0.034], + [51685,0.0335], + [51690,0.068], + [51700,0.0465], + [51710,0.0465], + [51720,0.0553], + [51730,0.073], + [51735,0.0349], + [51740,0.0543], + [51750,0.0505], + [51760,0.0436], + [51770,0.0422], + [51775,0.0383], + [51790,0.0365], + [51800,0.0416], + [51810,0.036], + [51820,0.0408], + [51830,0.0528], + [51840,0.0362], + [53001,0.0576], + [53003,0.0418], + [53005,0.055], + [53007,0.0487], + [53009,0.0682], + [53011,0.051], + [53013,0.0561], + [53015,0.0606], + [53017,0.0571], + [53019,0.1103], + [53021,0.0631], + [53023,0.0546], + [53025,0.0626], + [53027,0.0707], + [53029,0.0521], + [53031,0.0612], + [53033,0.037], + [53035,0.049], + [53037,0.0531], + [53039,0.0583], + [53041,0.0665], + [53043,0.0494], + [53045,0.0659], + [53047,0.0687], + [53049,0.0704], + [53051,0.0746], + [53053,0.0536], + [53055,0.0393], + [53057,0.055], + [53059,0.0617], + [53061,0.0412], + [53063,0.0541], + [53065,0.0726], + [53067,0.0497], + [53069,0.0712], + [53071,0.0492], + [53073,0.0501], + [53075,0.0443], + [53077,0.0678], + [54001,0.0579], + [54003,0.0369], + [54005,0.0628], + [54007,0.0736], + [54009,0.0607], + [54011,0.0453], + [54013,0.1045], + [54015,0.0857], + [54017,0.0416], + [54019,0.0639], + [54021,0.0715], + [54023,0.0562], + [54025,0.0483], + [54027,0.0393], + [54029,0.0609], + [54031,0.0496], + [54033,0.0485], + [54035,0.0573], + [54037,0.0315], + [54039,0.05], + [54041,0.0661], + [54043,0.0681], + [54045,0.075], + [54047,0.0847], + [54049,0.0522], + [54051,0.0601], + [54053,0.067], + [54055,0.0583], + [54057,0.0539], + [54059,0.0865], + [54061,0.0371], + [54063,0.0426], + [54065,0.0397], + [54067,0.0707], + [54069,0.0478], + [54071,0.0365], + [54073,0.0697], + [54075,0.0596], + [54077,0.0496], + [54079,0.047], + [54081,0.0536], + [54083,0.0538], + [54085,0.0548], + [54087,0.0854], + [54089,0.056], + [54091,0.0486], + [54093,0.0512], + [54095,0.0721], + [54097,0.0602], + [54099,0.0582], + [54101,0.0619], + [54103,0.0718], + [54105,0.0788], + [54107,0.0545], + [54109,0.07], + [55001,0.0509], + [55003,0.0456], + [55005,0.0353], + [55007,0.0526], + [55009,0.0295], + [55011,0.0374], + [55013,0.0487], + [55015,0.0277], + [55017,0.0351], + [55019,0.0306], + [55021,0.0294], + [55023,0.0412], + [55025,0.024], + [55027,0.0292], + [55029,0.0386], + [55031,0.0448], + [55033,0.0328], + [55035,0.0291], + [55037,0.0472], + [55039,0.0283], + [55041,0.0507], + [55043,0.0316], + [55045,0.0272], + [55047,0.0377], + [55049,0.0294], + [55051,0.0621], + [55053,0.0336], + [55055,0.0318], + [55057,0.0334], + [55059,0.0389], + [55061,0.0307], + [55063,0.0292], + [55065,0.0252], + [55067,0.0424], + [55069,0.0358], + [55071,0.0356], + [55073,0.0295], + [55075,0.0444], + [55077,0.0383], + [55078,0.0605], + [55079,0.0405], + [55081,0.0295], + [55083,0.0353], + [55085,0.0388], + [55087,0.03], + [55089,0.0276], + [55091,0.0357], + [55093,0.0335], + [55095,0.0377], + [55097,0.0308], + [55099,0.0376], + [55101,0.0407], + [55103,0.0298], + [55105,0.0372], + [55107,0.0442], + [55109,0.0309], + [55111,0.0291], + [55113,0.0468], + [55115,0.0323], + [55117,0.0278], + [55119,0.0345], + [55121,0.0306], + [55123,0.0307], + [55125,0.0436], + [55127,0.0328], + [55129,0.039], + [55131,0.0278], + [55133,0.029], + [55135,0.032], + [55137,0.0393], + [55139,0.0298], + [55141,0.0376], + [56001,0.0285], + [56003,0.0413], + [56005,0.0493], + [56007,0.0397], + [56009,0.0441], + [56011,0.0348], + [56013,0.0557], + [56015,0.0282], + [56017,0.0386], + [56019,0.0415], + [56021,0.0369], + [56023,0.0372], + [56025,0.0531], + [56027,0.0273], + [56029,0.0423], + [56031,0.0372], + [56033,0.0397], + [56035,0.0437], + [56037,0.0455], + [56039,0.0299], + [56041,0.045], + [56043,0.0408], + [56045,0.0398] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-rate-2019.json b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2019.json new file mode 100644 index 0000000..98fd700 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-rate-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployment Rate", + "description" : "Percent of work age people that are unemployed.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.rate.2019"], + [1001,0.035], + [1003,0.04], + [1005,0.094], + [1007,0.07], + [1009,0.031], + [1011,0.041], + [1013,0.07], + [1015,0.072], + [1017,0.04], + [1019,0.044], + [1021,0.065], + [1023,0.087], + [1025,0.116], + [1027,0.056], + [1029,0.054], + [1031,0.056], + [1033,0.041], + [1035,0.097], + [1037,0.023], + [1039,0.078], + [1041,0.034], + [1043,0.043], + [1045,0.07], + [1047,0.115], + [1049,0.037], + [1051,0.04], + [1053,0.115], + [1055,0.054], + [1057,0.066], + [1059,0.039], + [1061,0.052], + [1063,0.123], + [1065,0.107], + [1067,0.052], + [1069,0.062], + [1071,0.05], + [1073,0.06], + [1075,0.076], + [1077,0.044], + [1079,0.047], + [1081,0.046], + [1083,0.06], + [1085,0.093], + [1087,0.11], + [1089,0.046], + [1091,0.076], + [1093,0.049], + [1095,0.041], + [1097,0.055], + [1099,0.155], + [1101,0.062], + [1103,0.049], + [1105,0.092], + [1107,0.103], + [1109,0.063], + [1111,0.042], + [1113,0.061], + [1115,0.051], + [1117,0.031], + [1119,0.097], + [1121,0.073], + [1123,0.082], + [1125,0.048], + [1127,0.081], + [1129,0.07], + [1131,0.145], + [1133,0.069], + [2013,0.042], + [2016,0.022], + [2020,0.051], + [2050,0.186], + [2060,0.097], + [2068,0.011], + [2070,0.128], + [2090,0.061], + [2100,0.054], + [2105,0.111], + [2110,0.04], + [2122,0.068], + [2130,0.06], + [2150,0.054], + [2158,0.265], + [2164,0.162], + [2170,0.085], + [2180,0.165], + [2185,0.084], + [2188,0.184], + [2195,0.038], + [2198,0.113], + [2220,0.046], + [2230,0.058], + [2240,0.106], + [2261,0.034], + [2275,0.067], + [2282,0.064], + [2290,0.171], + [4001,0.106], + [4003,0.059], + [4005,0.059], + [4007,0.091], + [4009,0.082], + [4011,0.04], + [4012,0.093], + [4013,0.045], + [4015,0.075], + [4017,0.124], + [4019,0.062], + [4021,0.064], + [4023,0.072], + [4025,0.053], + [4027,0.095], + [5001,0.041], + [5003,0.049], + [5005,0.049], + [5007,0.021], + [5009,0.045], + [5011,0.075], + [5013,0.039], + [5015,0.032], + [5017,0.099], + [5019,0.02], + [5021,0.047], + [5023,0.041], + [5025,0.047], + [5027,0.098], + [5029,0.063], + [5031,0.052], + [5033,0.042], + [5035,0.085], + [5037,0.052], + [5039,0.03], + [5041,0.07], + [5043,0.036], + [5045,0.033], + [5047,0.025], + [5049,0.061], + [5051,0.055], + [5053,0.032], + [5055,0.065], + [5057,0.031], + [5059,0.059], + [5061,0.058], + [5063,0.048], + [5065,0.095], + [5067,0.076], + [5069,0.084], + [5071,0.033], + [5073,0.057], + [5075,0.062], + [5077,0.135], + [5079,0.021], + [5081,0.103], + [5083,0.06], + [5085,0.034], + [5087,0.039], + [5089,0.046], + [5091,0.065], + [5093,0.074], + [5095,0.064], + [5097,0.068], + [5099,0.061], + [5101,0.038], + [5103,0.078], + [5105,0.051], + [5107,0.101], + [5109,0.035], + [5111,0.059], + [5113,0.091], + [5115,0.056], + [5117,0.051], + [5119,0.044], + [5121,0.032], + [5123,0.056], + [5125,0.033], + [5127,0.079], + [5129,0.034], + [5131,0.038], + [5133,0.055], + [5135,0.041], + [5137,0.062], + [5139,0.047], + [5141,0.055], + [5143,0.041], + [5145,0.052], + [5147,0.084], + [5149,0.035], + [6001,0.044], + [6003,0.156], + [6005,0.066], + [6007,0.077], + [6009,0.066], + [6011,0.044], + [6013,0.05], + [6015,0.078], + [6017,0.054], + [6019,0.082], + [6021,0.048], + [6023,0.068], + [6025,0.137], + [6027,0.037], + [6029,0.094], + [6031,0.073], + [6033,0.084], + [6035,0.066], + [6037,0.057], + [6039,0.081], + [6041,0.036], + [6043,0.085], + [6045,0.085], + [6047,0.104], + [6049,0.081], + [6051,0.036], + [6053,0.046], + [6055,0.043], + [6057,0.038], + [6059,0.043], + [6061,0.038], + [6063,0.06], + [6065,0.069], + [6067,0.061], + [6069,0.063], + [6071,0.07], + [6073,0.056], + [6075,0.04], + [6077,0.071], + [6079,0.036], + [6081,0.036], + [6083,0.052], + [6085,0.041], + [6087,0.052], + [6089,0.051], + [6091,0.062], + [6093,0.073], + [6095,0.057], + [6097,0.04], + [6099,0.086], + [6101,0.078], + [6103,0.082], + [6105,0.079], + [6107,0.092], + [6109,0.054], + [6111,0.047], + [6113,0.057], + [6115,0.067], + [8001,0.035], + [8003,0.093], + [8005,0.037], + [8007,0.043], + [8009,0.023], + [8011,0.053], + [8013,0.038], + [8014,0.031], + [8015,0.03], + [8017,0.083], + [8019,0.034], + [8021,0.096], + [8023,0.094], + [8025,0.133], + [8027,0.072], + [8029,0.057], + [8031,0.036], + [8033,0.025], + [8035,0.025], + [8037,0.02], + [8039,0.017], + [8041,0.052], + [8043,0.042], + [8045,0.045], + [8047,0.017], + [8049,0.036], + [8051,0.037], + [8053,0.055], + [8055,0.033], + [8057,0.02], + [8059,0.034], + [8061,0.027], + [8063,0.035], + [8065,0.031], + [8067,0.036], + [8069,0.041], + [8071,0.067], + [8073,0.028], + [8075,0.035], + [8077,0.061], + [8079,0.029], + [8081,0.035], + [8083,0.043], + [8085,0.063], + [8087,0.038], + [8089,0.076], + [8091,0.042], + [8093,0.055], + [8095,0.014], + [8097,0.027], + [8099,0.053], + [8101,0.066], + [8103,0.063], + [8105,0.074], + [8107,0.03], + [8109,0.044], + [8111,0], + [8113,0.025], + [8115,0.066], + [8117,0.029], + [8119,0.061], + [8121,0.024], + [8123,0.036], + [8125,0.033], + [9001,0.061], + [9003,0.052], + [9005,0.046], + [9007,0.044], + [9009,0.061], + [9011,0.054], + [9013,0.045], + [9015,0.051], + [10001,0.05], + [10003,0.054], + [10005,0.041], + [11001,0.066], + [12001,0.047], + [12003,0.045], + [12005,0.048], + [12007,0.06], + [12009,0.049], + [12011,0.057], + [12013,0.039], + [12015,0.057], + [12017,0.074], + [12019,0.055], + [12021,0.037], + [12023,0.08], + [12027,0.046], + [12029,0.048], + [12031,0.054], + [12033,0.057], + [12035,0.042], + [12037,0.053], + [12039,0.066], + [12041,0.039], + [12043,0.129], + [12045,0.044], + [12047,0.102], + [12049,0.052], + [12051,0.065], + [12053,0.06], + [12055,0.081], + [12057,0.051], + [12059,0.086], + [12061,0.064], + [12063,0.06], + [12065,0.061], + [12067,0.092], + [12069,0.05], + [12071,0.051], + [12073,0.06], + [12075,0.055], + [12077,0.065], + [12079,0.039], + [12081,0.055], + [12083,0.082], + [12085,0.044], + [12086,0.051], + [12087,0.03], + [12089,0.037], + [12091,0.052], + [12093,0.055], + [12095,0.047], + [12097,0.048], + [12099,0.054], + [12101,0.053], + [12103,0.052], + [12105,0.056], + [12107,0.084], + [12109,0.043], + [12111,0.052], + [12113,0.049], + [12115,0.043], + [12117,0.046], + [12119,0.039], + [12121,0.056], + [12123,0.063], + [12125,0.074], + [12127,0.046], + [12129,0.049], + [12131,0.045], + [12133,0.079], + [13001,0.038], + [13003,0.083], + [13005,0.045], + [13007,0.073], + [13009,0.061], + [13011,0.052], + [13013,0.047], + [13015,0.045], + [13017,0.05], + [13019,0.056], + [13021,0.067], + [13023,0.057], + [13025,0.049], + [13027,0.07], + [13029,0.063], + [13031,0.062], + [13033,0.043], + [13035,0.05], + [13037,0.147], + [13039,0.061], + [13043,0.058], + [13045,0.063], + [13047,0.04], + [13049,0.116], + [13051,0.065], + [13053,0.11], + [13055,0.048], + [13057,0.033], + [13059,0.042], + [13061,0.121], + [13063,0.072], + [13065,0.057], + [13067,0.04], + [13069,0.039], + [13071,0.079], + [13073,0.045], + [13075,0.054], + [13077,0.039], + [13079,0.08], + [13081,0.103], + [13083,0.047], + [13085,0.04], + [13087,0.049], + [13089,0.06], + [13091,0.052], + [13093,0.112], + [13095,0.116], + [13097,0.061], + [13099,0.073], + [13101,0.036], + [13103,0.032], + [13105,0.078], + [13107,0.058], + [13109,0.059], + [13111,0.045], + [13113,0.037], + [13115,0.051], + [13117,0.029], + [13119,0.044], + [13121,0.052], + [13123,0.042], + [13125,0.012], + [13127,0.047], + [13129,0.033], + [13131,0.045], + [13133,0.057], + [13135,0.039], + [13137,0.03], + [13139,0.035], + [13141,0.029], + [13143,0.037], + [13145,0.061], + [13147,0.06], + [13149,0.055], + [13151,0.05], + [13153,0.055], + [13155,0.089], + [13157,0.041], + [13159,0.058], + [13161,0.043], + [13163,0.042], + [13165,0.043], + [13167,0.102], + [13169,0.051], + [13171,0.075], + [13173,0.039], + [13175,0.052], + [13177,0.065], + [13179,0.094], + [13181,0.038], + [13183,0.106], + [13185,0.059], + [13187,0.04], + [13189,0.077], + [13191,0.054], + [13193,0.095], + [13195,0.071], + [13197,0.066], + [13199,0.057], + [13201,0.067], + [13205,0.123], + [13207,0.057], + [13209,0.063], + [13211,0.037], + [13213,0.059], + [13215,0.085], + [13217,0.061], + [13219,0.028], + [13221,0.041], + [13223,0.037], + [13225,0.09], + [13227,0.046], + [13229,0.06], + [13231,0.056], + [13233,0.046], + [13235,0.06], + [13237,0.041], + [13239,0.07], + [13241,0.045], + [13243,0.085], + [13245,0.088], + [13247,0.055], + [13249,0.073], + [13251,0.065], + [13253,0.055], + [13255,0.045], + [13257,0.072], + [13259,0.056], + [13261,0.071], + [13263,0.021], + [13265,0.058], + [13267,0.039], + [13269,0.099], + [13271,0.015], + [13273,0.079], + [13275,0.063], + [13277,0.022], + [13279,0.078], + [13281,0.04], + [13283,0.07], + [13285,0.055], + [13287,0.061], + [13289,0.05], + [13291,0.047], + [13293,0.061], + [13295,0.052], + [13297,0.051], + [13299,0.056], + [13301,0.049], + [13303,0.055], + [13305,0.064], + [13307,0.038], + [13309,0.139], + [13311,0.027], + [13313,0.049], + [13315,0.048], + [13317,0.015], + [13319,0.052], + [13321,0.063], + [15001,0.059], + [15003,0.038], + [15005,0], + [15007,0.035], + [15009,0.039], + [16001,0.034], + [16003,0.09], + [16005,0.052], + [16007,0.028], + [16009,0.085], + [16011,0.042], + [16013,0.016], + [16015,0.038], + [16017,0.033], + [16019,0.028], + [16021,0.034], + [16023,0.046], + [16025,0.007], + [16027,0.045], + [16029,0.041], + [16031,0.026], + [16033,0.039], + [16035,0.065], + [16037,0.039], + [16039,0.068], + [16041,0.005], + [16043,0.046], + [16045,0.032], + [16047,0.04], + [16049,0.053], + [16051,0.043], + [16053,0.029], + [16055,0.036], + [16057,0.029], + [16059,0.049], + [16061,0.057], + [16063,0.04], + [16065,0.06], + [16067,0.034], + [16069,0.033], + [16071,0.013], + [16073,0.029], + [16075,0.045], + [16077,0.063], + [16079,0.083], + [16081,0.032], + [16083,0.028], + [16085,0.007], + [16087,0.043], + [17001,0.041], + [17003,0.073], + [17005,0.027], + [17007,0.054], + [17009,0.031], + [17011,0.044], + [17013,0.032], + [17015,0.053], + [17017,0.061], + [17019,0.046], + [17021,0.029], + [17023,0.041], + [17025,0.045], + [17027,0.022], + [17029,0.051], + [17031,0.066], + [17033,0.047], + [17035,0.027], + [17037,0.055], + [17039,0.043], + [17041,0.035], + [17043,0.038], + [17045,0.045], + [17047,0.046], + [17049,0.024], + [17051,0.055], + [17053,0.044], + [17055,0.062], + [17057,0.059], + [17059,0.045], + [17061,0.023], + [17063,0.038], + [17065,0.033], + [17067,0.048], + [17069,0.124], + [17071,0.059], + [17073,0.042], + [17075,0.046], + [17077,0.083], + [17079,0.044], + [17081,0.071], + [17083,0.023], + [17085,0.037], + [17087,0.037], + [17089,0.045], + [17091,0.045], + [17093,0.035], + [17095,0.049], + [17097,0.048], + [17099,0.053], + [17101,0.061], + [17103,0.032], + [17105,0.049], + [17107,0.05], + [17109,0.077], + [17111,0.036], + [17113,0.029], + [17115,0.073], + [17117,0.056], + [17119,0.057], + [17121,0.093], + [17123,0.052], + [17125,0.061], + [17127,0.04], + [17129,0.041], + [17131,0.042], + [17133,0.029], + [17135,0.045], + [17137,0.055], + [17139,0.034], + [17141,0.052], + [17143,0.069], + [17145,0.053], + [17147,0.045], + [17149,0.053], + [17151,0.173], + [17153,0.09], + [17155,0.023], + [17157,0.046], + [17159,0.06], + [17161,0.053], + [17163,0.061], + [17165,0.069], + [17167,0.054], + [17169,0.061], + [17171,0.057], + [17173,0.036], + [17175,0.024], + [17177,0.066], + [17179,0.042], + [17181,0.062], + [17183,0.064], + [17185,0.026], + [17187,0.076], + [17189,0.043], + [17191,0.026], + [17193,0.067], + [17195,0.039], + [17197,0.043], + [17199,0.052], + [17201,0.075], + [17203,0.036], + [18001,0.028], + [18003,0.045], + [18005,0.04], + [18007,0.031], + [18009,0.054], + [18011,0.02], + [18013,0.049], + [18015,0.021], + [18017,0.046], + [18019,0.048], + [18021,0.043], + [18023,0.034], + [18025,0.038], + [18027,0.029], + [18029,0.03], + [18031,0.032], + [18033,0.029], + [18035,0.054], + [18037,0.019], + [18039,0.039], + [18041,0.042], + [18043,0.036], + [18045,0.036], + [18047,0.025], + [18049,0.045], + [18051,0.026], + [18053,0.065], + [18055,0.045], + [18057,0.024], + [18059,0.018], + [18061,0.045], + [18063,0.034], + [18065,0.049], + [18067,0.048], + [18069,0.022], + [18071,0.042], + [18073,0.032], + [18075,0.032], + [18077,0.036], + [18079,0.023], + [18081,0.032], + [18083,0.035], + [18085,0.031], + [18087,0.013], + [18089,0.065], + [18091,0.06], + [18093,0.038], + [18095,0.053], + [18097,0.057], + [18099,0.046], + [18101,0.019], + [18103,0.045], + [18105,0.046], + [18107,0.033], + [18109,0.045], + [18111,0.08], + [18113,0.029], + [18115,0.019], + [18117,0.036], + [18119,0.048], + [18121,0.054], + [18123,0.028], + [18125,0.04], + [18127,0.04], + [18129,0.039], + [18131,0.07], + [18133,0.03], + [18135,0.051], + [18137,0.044], + [18139,0.044], + [18141,0.042], + [18143,0.048], + [18145,0.034], + [18147,0.021], + [18149,0.047], + [18151,0.026], + [18153,0.043], + [18155,0.055], + [18157,0.038], + [18159,0.032], + [18161,0.013], + [18163,0.046], + [18165,0.055], + [18167,0.063], + [18169,0.047], + [18171,0.04], + [18173,0.029], + [18175,0.05], + [18177,0.048], + [18179,0.029], + [18181,0.035], + [18183,0.037], + [19001,0.028], + [19003,0.043], + [19005,0.031], + [19007,0.068], + [19009,0.017], + [19011,0.028], + [19013,0.037], + [19015,0.024], + [19017,0.022], + [19019,0.017], + [19021,0.051], + [19023,0.026], + [19025,0.023], + [19027,0.021], + [19029,0.021], + [19031,0.03], + [19033,0.039], + [19035,0.034], + [19037,0.015], + [19039,0.021], + [19041,0.045], + [19043,0.019], + [19045,0.044], + [19047,0.059], + [19049,0.021], + [19051,0.035], + [19053,0.038], + [19055,0.015], + [19057,0.047], + [19059,0.016], + [19061,0.032], + [19063,0.027], + [19065,0.025], + [19067,0.025], + [19069,0.035], + [19071,0.035], + [19073,0.045], + [19075,0.018], + [19077,0.03], + [19079,0.024], + [19081,0.017], + [19083,0.017], + [19085,0.016], + [19087,0.048], + [19089,0.018], + [19091,0.038], + [19093,0.018], + [19095,0.016], + [19097,0.031], + [19099,0.031], + [19101,0.069], + [19103,0.03], + [19105,0.029], + [19107,0.047], + [19109,0.029], + [19111,0.062], + [19113,0.035], + [19115,0.036], + [19117,0.029], + [19119,0.014], + [19121,0.028], + [19123,0.035], + [19125,0.021], + [19127,0.042], + [19129,0.035], + [19131,0.017], + [19133,0.032], + [19135,0.036], + [19137,0.039], + [19139,0.027], + [19141,0.015], + [19143,0.028], + [19145,0.044], + [19147,0.016], + [19149,0.014], + [19151,0.025], + [19153,0.037], + [19155,0.033], + [19157,0.042], + [19159,0.041], + [19161,0.027], + [19163,0.034], + [19165,0.018], + [19167,0.026], + [19169,0.035], + [19171,0.033], + [19173,0.034], + [19175,0.04], + [19177,0.047], + [19179,0.056], + [19181,0.025], + [19183,0.031], + [19185,0.016], + [19187,0.035], + [19189,0.027], + [19191,0.017], + [19193,0.041], + [19195,0.045], + [19197,0.031], + [20001,0.046], + [20003,0.032], + [20005,0.027], + [20007,0.025], + [20009,0.03], + [20011,0.026], + [20013,0.034], + [20015,0.034], + [20017,0.029], + [20019,0.063], + [20021,0.041], + [20023,0.022], + [20025,0.016], + [20027,0.031], + [20029,0.033], + [20031,0.037], + [20033,0.031], + [20035,0.041], + [20037,0.049], + [20039,0.018], + [20041,0.04], + [20043,0.014], + [20045,0.037], + [20047,0.025], + [20049,0.068], + [20051,0.016], + [20053,0.034], + [20055,0.039], + [20057,0.047], + [20059,0.034], + [20061,0.041], + [20063,0.014], + [20065,0.022], + [20067,0.062], + [20069,0.02], + [20071,0], + [20073,0.027], + [20075,0.008], + [20077,0.037], + [20079,0.025], + [20081,0.038], + [20083,0.016], + [20085,0.048], + [20087,0.026], + [20089,0.012], + [20091,0.026], + [20093,0.022], + [20095,0.047], + [20097,0.023], + [20099,0.032], + [20101,0.018], + [20103,0.039], + [20105,0.036], + [20107,0.036], + [20109,0.011], + [20111,0.044], + [20113,0.018], + [20115,0.027], + [20117,0.029], + [20119,0.012], + [20121,0.027], + [20123,0.025], + [20125,0.05], + [20127,0.023], + [20129,0.021], + [20131,0.007], + [20133,0.042], + [20135,0.011], + [20137,0.012], + [20139,0.044], + [20141,0.019], + [20143,0.023], + [20145,0.028], + [20147,0.022], + [20149,0.026], + [20151,0.031], + [20153,0.019], + [20155,0.042], + [20157,0.013], + [20159,0.04], + [20161,0.048], + [20163,0.033], + [20165,0.039], + [20167,0.068], + [20169,0.03], + [20171,0.013], + [20173,0.046], + [20175,0.046], + [20177,0.036], + [20179,0.025], + [20181,0.028], + [20183,0.021], + [20185,0.035], + [20187,0.017], + [20189,0.065], + [20191,0.034], + [20193,0.018], + [20195,0.016], + [20197,0.024], + [20199,0.007], + [20201,0.017], + [20203,0.023], + [20205,0.053], + [20207,0.087], + [20209,0.057], + [21001,0.049], + [21003,0.05], + [21005,0.063], + [21007,0.057], + [21009,0.069], + [21011,0.044], + [21013,0.105], + [21015,0.035], + [21017,0.053], + [21019,0.078], + [21021,0.05], + [21023,0.044], + [21025,0.098], + [21027,0.083], + [21029,0.035], + [21031,0.058], + [21033,0.043], + [21035,0.037], + [21037,0.036], + [21039,0.032], + [21041,0.074], + [21043,0.058], + [21045,0.073], + [21047,0.06], + [21049,0.048], + [21051,0.082], + [21053,0.067], + [21055,0.019], + [21057,0.04], + [21059,0.043], + [21061,0.079], + [21063,0.017], + [21065,0.089], + [21067,0.045], + [21069,0.071], + [21071,0.112], + [21073,0.036], + [21075,0.107], + [21077,0.058], + [21079,0.063], + [21081,0.028], + [21083,0.046], + [21085,0.043], + [21087,0.041], + [21089,0.056], + [21091,0.056], + [21093,0.051], + [21095,0.102], + [21097,0.042], + [21099,0.058], + [21101,0.047], + [21103,0.033], + [21105,0.056], + [21107,0.052], + [21109,0.095], + [21111,0.052], + [21113,0.054], + [21115,0.082], + [21117,0.039], + [21119,0.11], + [21121,0.062], + [21123,0.044], + [21125,0.058], + [21127,0.079], + [21129,0.099], + [21131,0.099], + [21133,0.126], + [21135,0.054], + [21137,0.051], + [21139,0.049], + [21141,0.043], + [21143,0.014], + [21145,0.038], + [21147,0.097], + [21149,0.073], + [21151,0.049], + [21153,0.161], + [21155,0.082], + [21157,0.03], + [21159,0.082], + [21161,0.048], + [21163,0.05], + [21165,0.028], + [21167,0.078], + [21169,0.045], + [21171,0.065], + [21173,0.047], + [21175,0.059], + [21177,0.057], + [21179,0.04], + [21181,0.059], + [21183,0.067], + [21185,0.028], + [21187,0.038], + [21189,0.128], + [21191,0.036], + [21193,0.11], + [21195,0.087], + [21197,0.063], + [21199,0.073], + [21201,0.089], + [21203,0.078], + [21205,0.043], + [21207,0.057], + [21209,0.029], + [21211,0.036], + [21213,0.042], + [21215,0.044], + [21217,0.05], + [21219,0.067], + [21221,0.08], + [21223,0.059], + [21225,0.067], + [21227,0.04], + [21229,0.041], + [21231,0.054], + [21233,0.042], + [21235,0.06], + [21237,0.173], + [21239,0.025], + [22001,0.073], + [22003,0.092], + [22005,0.053], + [22007,0.063], + [22009,0.058], + [22011,0.075], + [22013,0.044], + [22015,0.047], + [22017,0.065], + [22019,0.049], + [22021,0.072], + [22023,0.05], + [22025,0.043], + [22027,0.068], + [22029,0.052], + [22031,0.102], + [22033,0.058], + [22035,0.085], + [22037,0.049], + [22039,0.117], + [22041,0.088], + [22043,0.041], + [22045,0.082], + [22047,0.069], + [22049,0.05], + [22051,0.052], + [22053,0.073], + [22055,0.048], + [22057,0.058], + [22059,0.057], + [22061,0.045], + [22063,0.039], + [22065,0.079], + [22067,0.05], + [22069,0.121], + [22071,0.078], + [22073,0.059], + [22075,0.041], + [22077,0.083], + [22079,0.06], + [22081,0.069], + [22083,0.047], + [22085,0.094], + [22087,0.09], + [22089,0.053], + [22091,0.164], + [22093,0.063], + [22095,0.062], + [22097,0.058], + [22099,0.069], + [22101,0.078], + [22103,0.05], + [22105,0.069], + [22107,0.171], + [22109,0.063], + [22111,0.042], + [22113,0.073], + [22115,0.085], + [22117,0.097], + [22119,0.049], + [22121,0.041], + [22123,0.091], + [22125,0.086], + [22127,0.047], + [23001,0.032], + [23003,0.047], + [23005,0.028], + [23007,0.056], + [23009,0.039], + [23011,0.039], + [23013,0.027], + [23015,0.037], + [23017,0.051], + [23019,0.041], + [23021,0.063], + [23023,0.022], + [23025,0.061], + [23027,0.045], + [23029,0.066], + [23031,0.031], + [24001,0.063], + [24003,0.039], + [24005,0.045], + [24009,0.038], + [24011,0.046], + [24013,0.031], + [24015,0.047], + [24017,0.031], + [24019,0.07], + [24021,0.038], + [24023,0.038], + [24025,0.036], + [24027,0.033], + [24029,0.044], + [24031,0.042], + [24033,0.055], + [24035,0.024], + [24037,0.029], + [24039,0.078], + [24041,0.028], + [24043,0.052], + [24045,0.071], + [24047,0.045], + [24510,0.079], + [25001,0.039], + [25003,0.046], + [25005,0.05], + [25007,0.034], + [25009,0.045], + [25011,0.047], + [25013,0.052], + [25015,0.047], + [25017,0.035], + [25019,0.031], + [25021,0.04], + [25023,0.046], + [25025,0.058], + [25027,0.046], + [26001,0.074], + [26003,0.056], + [26005,0.025], + [26007,0.06], + [26009,0.037], + [26011,0.067], + [26013,0.06], + [26015,0.045], + [26017,0.056], + [26019,0.038], + [26021,0.055], + [26023,0.039], + [26025,0.06], + [26027,0.059], + [26029,0.04], + [26031,0.074], + [26033,0.082], + [26035,0.098], + [26037,0.032], + [26039,0.051], + [26041,0.046], + [26043,0.044], + [26045,0.042], + [26047,0.047], + [26049,0.088], + [26051,0.061], + [26053,0.058], + [26055,0.039], + [26057,0.05], + [26059,0.044], + [26061,0.051], + [26063,0.043], + [26065,0.059], + [26067,0.042], + [26069,0.066], + [26071,0.043], + [26073,0.06], + [26075,0.05], + [26077,0.05], + [26079,0.068], + [26081,0.039], + [26083,0.057], + [26085,0.083], + [26087,0.054], + [26089,0.043], + [26091,0.041], + [26093,0.034], + [26095,0.052], + [26097,0.097], + [26099,0.049], + [26101,0.06], + [26103,0.052], + [26105,0.042], + [26107,0.062], + [26109,0.033], + [26111,0.048], + [26113,0.062], + [26115,0.043], + [26117,0.033], + [26119,0.068], + [26121,0.059], + [26123,0.045], + [26125,0.04], + [26127,0.058], + [26129,0.074], + [26131,0.073], + [26133,0.067], + [26135,0.092], + [26137,0.054], + [26139,0.03], + [26141,0.072], + [26143,0.09], + [26145,0.061], + [26147,0.055], + [26149,0.037], + [26151,0.057], + [26153,0.073], + [26155,0.042], + [26157,0.049], + [26159,0.05], + [26161,0.037], + [26163,0.087], + [26165,0.06], + [27001,0.051], + [27003,0.031], + [27005,0.034], + [27007,0.074], + [27009,0.033], + [27011,0.03], + [27013,0.031], + [27015,0.012], + [27017,0.035], + [27019,0.019], + [27021,0.049], + [27023,0.039], + [27025,0.037], + [27027,0.022], + [27029,0.064], + [27031,0.021], + [27033,0.04], + [27035,0.028], + [27037,0.032], + [27039,0.024], + [27041,0.024], + [27043,0.03], + [27045,0.026], + [27047,0.032], + [27049,0.032], + [27051,0.04], + [27053,0.036], + [27055,0.017], + [27057,0.037], + [27059,0.039], + [27061,0.049], + [27063,0.025], + [27065,0.034], + [27067,0.034], + [27069,0.021], + [27071,0.049], + [27073,0.021], + [27075,0.027], + [27077,0.017], + [27079,0.031], + [27081,0.029], + [27083,0.03], + [27085,0.026], + [27087,0.079], + [27089,0.019], + [27091,0.041], + [27093,0.02], + [27095,0.055], + [27097,0.04], + [27099,0.027], + [27101,0.026], + [27103,0.022], + [27105,0.028], + [27107,0.031], + [27109,0.026], + [27111,0.026], + [27113,0.027], + [27115,0.047], + [27117,0.03], + [27119,0.033], + [27121,0.019], + [27123,0.04], + [27125,0.02], + [27127,0.022], + [27129,0.029], + [27131,0.034], + [27133,0.017], + [27135,0.027], + [27137,0.04], + [27139,0.028], + [27141,0.025], + [27143,0.027], + [27145,0.039], + [27147,0.033], + [27149,0.021], + [27151,0.024], + [27153,0.033], + [27155,0.034], + [27157,0.035], + [27159,0.066], + [27161,0.037], + [27163,0.02], + [27165,0.02], + [27167,0.019], + [27169,0.031], + [27171,0.026], + [27173,0.022], + [28001,0.104], + [28003,0.061], + [28005,0.082], + [28007,0.095], + [28009,0.053], + [28011,0.083], + [28013,0.044], + [28015,0.077], + [28017,0.03], + [28019,0.073], + [28021,0.125], + [28023,0.063], + [28025,0.109], + [28027,0.146], + [28029,0.075], + [28031,0.077], + [28033,0.048], + [28035,0.078], + [28037,0.034], + [28039,0.131], + [28041,0.105], + [28043,0.063], + [28045,0.073], + [28047,0.089], + [28049,0.086], + [28051,0.168], + [28053,0.15], + [28055,0.128], + [28057,0.019], + [28059,0.074], + [28061,0.062], + [28063,0.106], + [28065,0.089], + [28067,0.042], + [28069,0.069], + [28071,0.05], + [28073,0.102], + [28075,0.048], + [28077,0.066], + [28079,0.074], + [28081,0.055], + [28083,0.075], + [28085,0.067], + [28087,0.083], + [28089,0.04], + [28091,0.045], + [28093,0.065], + [28095,0.05], + [28097,0.068], + [28099,0.085], + [28101,0.052], + [28103,0.113], + [28105,0.074], + [28107,0.066], + [28109,0.077], + [28111,0.079], + [28113,0.046], + [28115,0.054], + [28117,0.071], + [28119,0.213], + [28121,0.038], + [28123,0.068], + [28125,0.126], + [28127,0.072], + [28129,0.042], + [28131,0.029], + [28133,0.135], + [28135,0.123], + [28137,0.065], + [28139,0.046], + [28141,0.055], + [28143,0.082], + [28145,0.052], + [28147,0.04], + [28149,0.062], + [28151,0.13], + [28153,0.091], + [28155,0.047], + [28157,0.104], + [28159,0.067], + [28161,0.051], + [28163,0.146], + [29001,0.052], + [29003,0.02], + [29005,0.027], + [29007,0.036], + [29009,0.038], + [29011,0.074], + [29013,0.046], + [29015,0.083], + [29017,0.036], + [29019,0.037], + [29021,0.045], + [29023,0.075], + [29025,0.034], + [29027,0.029], + [29029,0.046], + [29031,0.043], + [29033,0.074], + [29035,0.029], + [29037,0.032], + [29039,0.079], + [29041,0.034], + [29043,0.032], + [29045,0.036], + [29047,0.035], + [29049,0.033], + [29051,0.031], + [29053,0.031], + [29055,0.096], + [29057,0.085], + [29059,0.028], + [29061,0.022], + [29063,0.02], + [29065,0.044], + [29067,0.051], + [29069,0.064], + [29071,0.039], + [29073,0.024], + [29075,0.041], + [29077,0.035], + [29079,0.034], + [29081,0.042], + [29083,0.053], + [29085,0.069], + [29087,0.03], + [29089,0.041], + [29091,0.039], + [29093,0.069], + [29095,0.041], + [29097,0.047], + [29099,0.049], + [29101,0.043], + [29103,0.066], + [29105,0.062], + [29107,0.03], + [29109,0.059], + [29111,0.027], + [29113,0.031], + [29115,0.014], + [29117,0.019], + [29119,0.041], + [29121,0.052], + [29123,0.043], + [29125,0.06], + [29127,0.045], + [29129,0.024], + [29131,0.049], + [29133,0.093], + [29135,0.032], + [29137,0.021], + [29139,0.037], + [29141,0.042], + [29143,0.068], + [29145,0.035], + [29147,0.024], + [29149,0.033], + [29151,0.015], + [29153,0.053], + [29155,0.08], + [29157,0.036], + [29159,0.057], + [29161,0.044], + [29163,0.046], + [29165,0.035], + [29167,0.033], + [29169,0.057], + [29171,0.02], + [29173,0.05], + [29175,0.045], + [29177,0.034], + [29179,0.054], + [29181,0.055], + [29183,0.026], + [29185,0.04], + [29186,0.022], + [29187,0.043], + [29189,0.043], + [29195,0.035], + [29197,0.032], + [29199,0.029], + [29201,0.038], + [29203,0.056], + [29205,0.023], + [29207,0.055], + [29209,0.059], + [29211,0.017], + [29213,0.043], + [29215,0.082], + [29217,0.039], + [29219,0.044], + [29221,0.071], + [29223,0.069], + [29225,0.042], + [29227,0.03], + [29229,0.071], + [29510,0.066], + [30001,0.041], + [30003,0.107], + [30005,0.151], + [30007,0.082], + [30009,0.036], + [30011,0.021], + [30013,0.038], + [30015,0.018], + [30017,0.023], + [30019,0.02], + [30021,0.019], + [30023,0.036], + [30025,0.014], + [30027,0.034], + [30029,0.033], + [30031,0.024], + [30033,0], + [30035,0.065], + [30037,0.038], + [30039,0.03], + [30041,0.05], + [30043,0.033], + [30045,0.034], + [30047,0.071], + [30049,0.024], + [30051,0], + [30053,0.093], + [30055,0.01], + [30057,0.026], + [30059,0.004], + [30061,0.073], + [30063,0.041], + [30065,0.039], + [30067,0.021], + [30069,0.043], + [30071,0.075], + [30073,0.065], + [30075,0], + [30077,0.006], + [30079,0.041], + [30081,0.052], + [30083,0.023], + [30085,0.127], + [30087,0.058], + [30089,0.064], + [30091,0.02], + [30093,0.047], + [30095,0.03], + [30097,0.004], + [30099,0.014], + [30101,0.018], + [30103,0], + [30105,0.052], + [30107,0.032], + [30109,0.002], + [30111,0.031], + [31001,0.024], + [31003,0.02], + [31005,0.006], + [31007,0], + [31009,0], + [31011,0.011], + [31013,0.045], + [31015,0.017], + [31017,0.006], + [31019,0.018], + [31021,0.04], + [31023,0.013], + [31025,0.035], + [31027,0.012], + [31029,0.025], + [31031,0.002], + [31033,0.014], + [31035,0.032], + [31037,0.018], + [31039,0.027], + [31041,0.025], + [31043,0.029], + [31045,0.02], + [31047,0.032], + [31049,0.056], + [31051,0.014], + [31053,0.038], + [31055,0.034], + [31057,0.019], + [31059,0.022], + [31061,0.008], + [31063,0.059], + [31065,0.014], + [31067,0.028], + [31069,0.004], + [31071,0], + [31073,0.015], + [31075,0.004], + [31077,0.019], + [31079,0.031], + [31081,0.026], + [31083,0.005], + [31085,0.016], + [31087,0.031], + [31089,0.012], + [31091,0.04], + [31093,0.029], + [31095,0.019], + [31097,0.012], + [31099,0.016], + [31101,0.024], + [31103,0], + [31105,0.058], + [31107,0.03], + [31109,0.028], + [31111,0.03], + [31113,0.005], + [31115,0], + [31117,0], + [31119,0.022], + [31121,0.015], + [31123,0.06], + [31125,0.029], + [31127,0.032], + [31129,0.01], + [31131,0.022], + [31133,0.033], + [31135,0.013], + [31137,0.005], + [31139,0.019], + [31141,0.024], + [31143,0.055], + [31145,0.024], + [31147,0.029], + [31149,0.003], + [31151,0.026], + [31153,0.024], + [31155,0.017], + [31157,0.049], + [31159,0.017], + [31161,0.013], + [31163,0.018], + [31165,0.018], + [31167,0.008], + [31169,0.015], + [31171,0.013], + [31173,0.129], + [31175,0.008], + [31177,0.023], + [31179,0.017], + [31181,0.019], + [31183,0], + [31185,0.027], + [32001,0.057], + [32003,0.06], + [32005,0.041], + [32007,0.042], + [32009,0.019], + [32011,0], + [32013,0.037], + [32015,0.081], + [32017,0.068], + [32019,0.063], + [32021,0.124], + [32023,0.083], + [32027,0.078], + [32029,0.028], + [32031,0.048], + [32033,0.031], + [32510,0.043], + [33001,0.039], + [33003,0.028], + [33005,0.033], + [33007,0.047], + [33009,0.028], + [33011,0.036], + [33013,0.034], + [33015,0.029], + [33017,0.033], + [33019,0.026], + [34001,0.077], + [34003,0.039], + [34005,0.054], + [34007,0.063], + [34009,0.069], + [34011,0.068], + [34013,0.077], + [34015,0.05], + [34017,0.05], + [34019,0.036], + [34021,0.059], + [34023,0.048], + [34025,0.046], + [34027,0.041], + [34029,0.048], + [34031,0.044], + [34033,0.059], + [34035,0.043], + [34037,0.047], + [34039,0.052], + [34041,0.057], + [35001,0.053], + [35003,0.093], + [35005,0.046], + [35006,0.129], + [35007,0.065], + [35009,0.059], + [35011,0.108], + [35013,0.071], + [35015,0.043], + [35017,0.076], + [35019,0.08], + [35021,0.014], + [35023,0.062], + [35025,0.058], + [35027,0.05], + [35028,0.03], + [35029,0.115], + [35031,0.134], + [35033,0.105], + [35035,0.077], + [35037,0.028], + [35039,0.068], + [35041,0.058], + [35043,0.065], + [35045,0.083], + [35047,0.08], + [35049,0.039], + [35051,0.096], + [35053,0.051], + [35055,0.098], + [35057,0.061], + [35059,0.032], + [35061,0.067], + [36001,0.04], + [36003,0.048], + [36005,0.095], + [36007,0.057], + [36009,0.051], + [36011,0.043], + [36013,0.053], + [36015,0.052], + [36017,0.052], + [36019,0.036], + [36021,0.047], + [36023,0.049], + [36025,0.043], + [36027,0.046], + [36029,0.04], + [36031,0.049], + [36033,0.067], + [36035,0.042], + [36037,0.037], + [36039,0.04], + [36041,0.032], + [36043,0.054], + [36045,0.055], + [36047,0.059], + [36049,0.049], + [36051,0.031], + [36053,0.041], + [36055,0.05], + [36057,0.063], + [36059,0.037], + [36061,0.049], + [36063,0.046], + [36065,0.042], + [36067,0.049], + [36069,0.033], + [36071,0.038], + [36073,0.046], + [36075,0.061], + [36077,0.055], + [36079,0.043], + [36081,0.053], + [36083,0.043], + [36085,0.042], + [36087,0.052], + [36089,0.068], + [36091,0.033], + [36093,0.06], + [36095,0.05], + [36097,0.057], + [36099,0.033], + [36101,0.061], + [36103,0.04], + [36105,0.066], + [36107,0.058], + [36109,0.035], + [36111,0.047], + [36113,0.039], + [36115,0.046], + [36117,0.046], + [36119,0.05], + [36121,0.048], + [36123,0.043], + [37001,0.047], + [37003,0.04], + [37005,0.036], + [37007,0.075], + [37009,0.031], + [37011,0.04], + [37013,0.059], + [37015,0.097], + [37017,0.043], + [37019,0.051], + [37021,0.029], + [37023,0.068], + [37025,0.042], + [37027,0.055], + [37029,0.081], + [37031,0.054], + [37033,0.05], + [37035,0.056], + [37037,0.036], + [37039,0.055], + [37041,0.061], + [37043,0.033], + [37045,0.077], + [37047,0.065], + [37049,0.06], + [37051,0.077], + [37053,0.038], + [37055,0.038], + [37057,0.057], + [37059,0.04], + [37061,0.077], + [37063,0.042], + [37065,0.082], + [37067,0.052], + [37069,0.049], + [37071,0.059], + [37073,0.05], + [37075,0.038], + [37077,0.051], + [37079,0.069], + [37081,0.051], + [37083,0.068], + [37085,0.068], + [37087,0.037], + [37089,0.025], + [37091,0.086], + [37093,0.094], + [37095,0.074], + [37097,0.043], + [37099,0.039], + [37101,0.042], + [37103,0.094], + [37105,0.071], + [37107,0.108], + [37109,0.05], + [37111,0.056], + [37113,0.04], + [37115,0.047], + [37117,0.097], + [37119,0.043], + [37121,0.033], + [37123,0.038], + [37125,0.044], + [37127,0.061], + [37129,0.045], + [37131,0.057], + [37133,0.081], + [37135,0.036], + [37137,0.045], + [37139,0.069], + [37141,0.068], + [37143,0.058], + [37145,0.059], + [37147,0.072], + [37149,0.052], + [37151,0.041], + [37153,0.091], + [37155,0.064], + [37157,0.058], + [37159,0.065], + [37161,0.057], + [37163,0.067], + [37165,0.113], + [37167,0.053], + [37169,0.059], + [37171,0.036], + [37173,0.066], + [37175,0.056], + [37177,0.058], + [37179,0.041], + [37181,0.07], + [37183,0.036], + [37185,0.081], + [37187,0.072], + [37189,0.045], + [37191,0.059], + [37193,0.049], + [37195,0.076], + [37197,0.033], + [37199,0.052], + [38001,0.009], + [38003,0.014], + [38005,0.063], + [38007,0.036], + [38009,0.026], + [38011,0.028], + [38013,0.026], + [38015,0.019], + [38017,0.023], + [38019,0.014], + [38021,0.019], + [38023,0.015], + [38025,0.02], + [38027,0.013], + [38029,0.017], + [38031,0.005], + [38033,0.035], + [38035,0.031], + [38037,0.03], + [38039,0.009], + [38041,0.021], + [38043,0.006], + [38045,0.006], + [38047,0.005], + [38049,0.017], + [38051,0.003], + [38053,0.033], + [38055,0.013], + [38057,0.013], + [38059,0.021], + [38061,0.037], + [38063,0.005], + [38065,0.022], + [38067,0.029], + [38069,0.004], + [38071,0.005], + [38073,0.014], + [38075,0.021], + [38077,0.031], + [38079,0.072], + [38081,0.015], + [38083,0.024], + [38085,0.181], + [38087,0.026], + [38089,0.026], + [38091,0.022], + [38093,0.029], + [38095,0.032], + [38097,0.024], + [38099,0.023], + [38101,0.028], + [38103,0.03], + [38105,0.02], + [39001,0.055], + [39003,0.048], + [39005,0.032], + [39007,0.066], + [39009,0.058], + [39011,0.028], + [39013,0.05], + [39015,0.047], + [39017,0.042], + [39019,0.049], + [39021,0.041], + [39023,0.06], + [39025,0.035], + [39027,0.048], + [39029,0.061], + [39031,0.054], + [39033,0.051], + [39035,0.071], + [39037,0.027], + [39039,0.037], + [39041,0.026], + [39043,0.045], + [39045,0.032], + [39047,0.052], + [39049,0.044], + [39051,0.031], + [39053,0.04], + [39055,0.024], + [39057,0.049], + [39059,0.057], + [39061,0.05], + [39063,0.035], + [39065,0.046], + [39067,0.05], + [39069,0.027], + [39071,0.06], + [39073,0.052], + [39075,0.022], + [39077,0.042], + [39079,0.07], + [39081,0.059], + [39083,0.043], + [39085,0.038], + [39087,0.056], + [39089,0.039], + [39091,0.037], + [39093,0.048], + [39095,0.065], + [39097,0.038], + [39099,0.074], + [39101,0.064], + [39103,0.026], + [39105,0.079], + [39107,0.025], + [39109,0.043], + [39111,0.049], + [39113,0.058], + [39115,0.041], + [39117,0.033], + [39119,0.059], + [39121,0.057], + [39123,0.037], + [39125,0.036], + [39127,0.06], + [39129,0.038], + [39131,0.066], + [39133,0.048], + [39135,0.031], + [39137,0.029], + [39139,0.05], + [39141,0.057], + [39143,0.04], + [39145,0.076], + [39147,0.038], + [39149,0.038], + [39151,0.051], + [39153,0.05], + [39155,0.043], + [39157,0.041], + [39159,0.016], + [39161,0.03], + [39163,0.055], + [39165,0.025], + [39167,0.036], + [39169,0.029], + [39171,0.038], + [39173,0.032], + [39175,0.026], + [40001,0.049], + [40003,0.021], + [40005,0.044], + [40007,0.043], + [40009,0.037], + [40011,0.031], + [40013,0.051], + [40015,0.067], + [40017,0.034], + [40019,0.045], + [40021,0.075], + [40023,0.071], + [40025,0.001], + [40027,0.037], + [40029,0.056], + [40031,0.072], + [40033,0.059], + [40035,0.048], + [40037,0.033], + [40039,0.028], + [40041,0.067], + [40043,0.031], + [40045,0.069], + [40047,0.049], + [40049,0.029], + [40051,0.034], + [40053,0.031], + [40055,0.072], + [40057,0.033], + [40059,0.03], + [40061,0.083], + [40063,0.09], + [40065,0.051], + [40067,0.063], + [40069,0.076], + [40071,0.063], + [40073,0.044], + [40075,0.053], + [40077,0.097], + [40079,0.052], + [40081,0.047], + [40083,0.038], + [40085,0.042], + [40087,0.03], + [40089,0.056], + [40091,0.06], + [40093,0.031], + [40095,0.037], + [40097,0.051], + [40099,0.038], + [40101,0.058], + [40103,0.04], + [40105,0.076], + [40107,0.072], + [40109,0.041], + [40111,0.083], + [40113,0.057], + [40115,0.054], + [40117,0.036], + [40119,0.035], + [40121,0.06], + [40123,0.044], + [40125,0.055], + [40127,0.057], + [40129,0.062], + [40131,0.042], + [40133,0.073], + [40135,0.069], + [40137,0.066], + [40139,0.023], + [40141,0.039], + [40143,0.05], + [40145,0.053], + [40147,0.048], + [40149,0.054], + [40151,0.043], + [40153,0.044], + [41001,0.064], + [41003,0.05], + [41005,0.041], + [41007,0.056], + [41009,0.053], + [41011,0.072], + [41013,0.063], + [41015,0.075], + [41017,0.048], + [41019,0.064], + [41021,0.068], + [41023,0.088], + [41025,0.062], + [41027,0.033], + [41029,0.055], + [41031,0.083], + [41033,0.086], + [41035,0.074], + [41037,0.073], + [41039,0.062], + [41041,0.06], + [41043,0.064], + [41045,0.052], + [41047,0.051], + [41049,0.036], + [41051,0.045], + [41053,0.054], + [41055,0.05], + [41057,0.05], + [41059,0.061], + [41061,0.055], + [41063,0.049], + [41065,0.039], + [41067,0.039], + [41069,0.074], + [41071,0.038], + [42001,0.031], + [42003,0.045], + [42005,0.053], + [42007,0.047], + [42009,0.041], + [42011,0.053], + [42013,0.039], + [42015,0.045], + [42017,0.039], + [42019,0.035], + [42021,0.054], + [42023,0.046], + [42025,0.062], + [42027,0.039], + [42029,0.037], + [42031,0.051], + [42033,0.058], + [42035,0.05], + [42037,0.044], + [42039,0.049], + [42041,0.03], + [42043,0.041], + [42045,0.05], + [42047,0.037], + [42049,0.051], + [42051,0.064], + [42053,0.048], + [42055,0.046], + [42057,0.052], + [42059,0.038], + [42061,0.049], + [42063,0.057], + [42065,0.034], + [42067,0.033], + [42069,0.043], + [42071,0.034], + [42073,0.062], + [42075,0.041], + [42077,0.053], + [42079,0.054], + [42081,0.048], + [42083,0.06], + [42085,0.046], + [42087,0.029], + [42089,0.06], + [42091,0.039], + [42093,0.017], + [42095,0.044], + [42097,0.047], + [42099,0.032], + [42101,0.085], + [42103,0.07], + [42105,0.059], + [42107,0.054], + [42109,0.022], + [42111,0.045], + [42113,0.051], + [42115,0.062], + [42117,0.049], + [42119,0.031], + [42121,0.061], + [42123,0.041], + [42125,0.048], + [42127,0.045], + [42129,0.039], + [42131,0.05], + [42133,0.039], + [44001,0.035], + [44003,0.038], + [44005,0.04], + [44007,0.054], + [44009,0.056], + [45001,0.052], + [45003,0.071], + [45005,0.149], + [45007,0.046], + [45009,0.041], + [45011,0.061], + [45013,0.049], + [45015,0.046], + [45017,0.058], + [45019,0.035], + [45021,0.059], + [45023,0.052], + [45025,0.088], + [45027,0.119], + [45029,0.083], + [45031,0.077], + [45033,0.068], + [45035,0.044], + [45037,0.068], + [45039,0.062], + [45041,0.059], + [45043,0.072], + [45045,0.04], + [45047,0.06], + [45049,0.092], + [45051,0.057], + [45053,0.069], + [45055,0.048], + [45057,0.067], + [45059,0.075], + [45061,0.079], + [45063,0.049], + [45065,0.085], + [45067,0.085], + [45069,0.105], + [45071,0.05], + [45073,0.054], + [45075,0.095], + [45077,0.048], + [45079,0.058], + [45081,0.067], + [45083,0.05], + [45085,0.085], + [45087,0.059], + [45089,0.063], + [45091,0.046], + [46003,0.014], + [46005,0.011], + [46007,0.126], + [46009,0.016], + [46011,0.028], + [46013,0.025], + [46015,0.019], + [46017,0.246], + [46019,0.049], + [46021,0.004], + [46023,0.07], + [46025,0.038], + [46027,0.035], + [46029,0.015], + [46031,0.247], + [46033,0.032], + [46035,0.013], + [46037,0.021], + [46039,0.009], + [46041,0.211], + [46043,0.009], + [46045,0.017], + [46047,0.017], + [46049,0.002], + [46051,0.026], + [46053,0.008], + [46055,0.012], + [46057,0.024], + [46059,0], + [46061,0.02], + [46063,0.027], + [46065,0.032], + [46067,0.037], + [46069,0.003], + [46071,0.1], + [46073,0.001], + [46075,0.054], + [46077,0.005], + [46079,0.029], + [46081,0.024], + [46083,0.015], + [46085,0.069], + [46087,0.02], + [46089,0.028], + [46091,0.032], + [46093,0.017], + [46095,0.066], + [46097,0.008], + [46099,0.026], + [46101,0.039], + [46102,0.192], + [46103,0.04], + [46105,0.032], + [46107,0.007], + [46109,0.053], + [46111,0.015], + [46115,0.017], + [46117,0.006], + [46119,0.005], + [46121,0.08], + [46123,0.04], + [46125,0.017], + [46127,0.012], + [46129,0.024], + [46135,0.037], + [46137,0.253], + [47001,0.059], + [47003,0.036], + [47005,0.069], + [47007,0.098], + [47009,0.041], + [47011,0.049], + [47013,0.089], + [47015,0.039], + [47017,0.05], + [47019,0.046], + [47021,0.032], + [47023,0.063], + [47025,0.077], + [47027,0.048], + [47029,0.085], + [47031,0.04], + [47033,0.036], + [47035,0.047], + [47037,0.037], + [47039,0.078], + [47041,0.052], + [47043,0.029], + [47045,0.052], + [47047,0.061], + [47049,0.061], + [47051,0.038], + [47053,0.059], + [47055,0.052], + [47057,0.047], + [47059,0.048], + [47061,0.093], + [47063,0.075], + [47065,0.045], + [47067,0.079], + [47069,0.109], + [47071,0.064], + [47073,0.063], + [47075,0.061], + [47077,0.068], + [47079,0.046], + [47081,0.041], + [47083,0.06], + [47085,0.076], + [47087,0.072], + [47089,0.051], + [47091,0.042], + [47093,0.039], + [47095,0.082], + [47097,0.079], + [47099,0.077], + [47101,0.02], + [47103,0.035], + [47105,0.047], + [47107,0.059], + [47109,0.102], + [47111,0.029], + [47113,0.045], + [47115,0.039], + [47117,0.05], + [47119,0.038], + [47121,0.078], + [47123,0.065], + [47125,0.061], + [47127,0.043], + [47129,0.062], + [47131,0.054], + [47133,0.036], + [47135,0.091], + [47137,0.046], + [47139,0.072], + [47141,0.038], + [47143,0.076], + [47145,0.064], + [47147,0.044], + [47149,0.039], + [47151,0.064], + [47153,0.048], + [47155,0.046], + [47157,0.068], + [47159,0.031], + [47161,0.065], + [47163,0.058], + [47165,0.027], + [47167,0.055], + [47169,0.071], + [47171,0.059], + [47173,0.079], + [47175,0.092], + [47177,0.05], + [47179,0.042], + [47181,0.064], + [47183,0.05], + [47185,0.062], + [47187,0.026], + [47189,0.035], + [48001,0.033], + [48003,0.039], + [48005,0.062], + [48007,0.075], + [48009,0.026], + [48011,0.007], + [48013,0.082], + [48015,0.062], + [48017,0.023], + [48019,0.042], + [48021,0.054], + [48023,0.027], + [48025,0.09], + [48027,0.073], + [48029,0.049], + [48031,0.058], + [48033,0.02], + [48035,0.035], + [48037,0.056], + [48039,0.041], + [48041,0.036], + [48043,0.042], + [48045,0.054], + [48047,0.123], + [48049,0.032], + [48051,0.039], + [48053,0.043], + [48055,0.026], + [48057,0.051], + [48059,0.034], + [48061,0.055], + [48063,0.065], + [48065,0.012], + [48067,0.067], + [48069,0.027], + [48071,0.044], + [48073,0.056], + [48075,0.059], + [48077,0.059], + [48079,0.075], + [48081,0.021], + [48083,0.035], + [48085,0.035], + [48087,0.078], + [48089,0.027], + [48091,0.03], + [48093,0.024], + [48095,0.001], + [48097,0.047], + [48099,0.079], + [48101,0.062], + [48103,0.016], + [48105,0], + [48107,0.05], + [48109,0.106], + [48111,0.016], + [48113,0.044], + [48115,0.063], + [48117,0.03], + [48119,0.033], + [48121,0.034], + [48123,0.063], + [48125,0.087], + [48127,0.126], + [48129,0.029], + [48131,0.101], + [48133,0.038], + [48135,0.056], + [48137,0], + [48139,0.031], + [48141,0.057], + [48143,0.027], + [48145,0.046], + [48147,0.038], + [48149,0.029], + [48151,0.043], + [48153,0.045], + [48155,0.057], + [48157,0.048], + [48159,0.057], + [48161,0.044], + [48163,0.067], + [48165,0.056], + [48167,0.058], + [48169,0.027], + [48171,0.032], + [48173,0], + [48175,0.051], + [48177,0.027], + [48179,0.052], + [48181,0.044], + [48183,0.046], + [48185,0.044], + [48187,0.032], + [48189,0.041], + [48191,0.096], + [48193,0.022], + [48195,0.046], + [48197,0.084], + [48199,0.033], + [48201,0.054], + [48203,0.05], + [48205,0.005], + [48207,0.121], + [48209,0.039], + [48211,0.059], + [48213,0.049], + [48215,0.064], + [48217,0.059], + [48219,0.058], + [48221,0.032], + [48223,0.044], + [48225,0.019], + [48227,0.061], + [48229,0.072], + [48231,0.045], + [48233,0.07], + [48235,0.028], + [48237,0.037], + [48239,0.025], + [48241,0.07], + [48243,0.044], + [48245,0.046], + [48247,0.078], + [48249,0.051], + [48251,0.032], + [48253,0.029], + [48255,0.039], + [48257,0.05], + [48259,0.037], + [48261,0], + [48263,0], + [48265,0.038], + [48267,0.043], + [48269,0.117], + [48271,0.029], + [48273,0.079], + [48275,0.04], + [48277,0.038], + [48279,0.032], + [48281,0.064], + [48283,0.036], + [48285,0.026], + [48287,0.014], + [48289,0.067], + [48291,0.068], + [48293,0.057], + [48295,0.053], + [48297,0.027], + [48299,0.059], + [48301,0], + [48303,0.033], + [48305,0.063], + [48307,0.032], + [48309,0.039], + [48311,0.066], + [48313,0.037], + [48315,0.101], + [48317,0.034], + [48319,0.066], + [48321,0.056], + [48323,0.091], + [48325,0.034], + [48327,0.037], + [48329,0.029], + [48331,0.035], + [48333,0.006], + [48335,0.021], + [48337,0.051], + [48339,0.039], + [48341,0.054], + [48343,0.067], + [48345,0.08], + [48347,0.076], + [48349,0.06], + [48351,0.083], + [48353,0.068], + [48355,0.048], + [48357,0.051], + [48359,0.015], + [48361,0.048], + [48363,0.064], + [48365,0.051], + [48367,0.043], + [48369,0.016], + [48371,0.021], + [48373,0.072], + [48375,0.032], + [48377,0.109], + [48379,0.029], + [48381,0.031], + [48383,0.062], + [48385,0.017], + [48387,0.066], + [48389,0.081], + [48391,0.074], + [48393,0], + [48395,0.068], + [48397,0.034], + [48399,0.021], + [48401,0.066], + [48403,0.088], + [48405,0.074], + [48407,0.064], + [48409,0.048], + [48411,0.018], + [48413,0.116], + [48415,0.031], + [48417,0.054], + [48419,0.079], + [48421,0.01], + [48423,0.052], + [48425,0.046], + [48427,0.131], + [48429,0.064], + [48431,0.022], + [48433,0.03], + [48435,0.081], + [48437,0.064], + [48439,0.043], + [48441,0.027], + [48443,0.01], + [48445,0.055], + [48447,0.058], + [48449,0.036], + [48451,0.034], + [48453,0.035], + [48455,0.079], + [48457,0.127], + [48459,0.05], + [48461,0.057], + [48463,0.049], + [48465,0.039], + [48467,0.044], + [48469,0.056], + [48471,0.03], + [48473,0.041], + [48475,0.05], + [48477,0.049], + [48479,0.041], + [48481,0.05], + [48483,0.048], + [48485,0.042], + [48487,0.041], + [48489,0.124], + [48491,0.042], + [48493,0.047], + [48495,0.034], + [48497,0.04], + [48499,0.054], + [48501,0.046], + [48503,0.038], + [48505,0.098], + [48507,0.072], + [49001,0.033], + [49003,0.038], + [49005,0.019], + [49007,0.067], + [49009,0.012], + [49011,0.023], + [49013,0.05], + [49015,0.038], + [49017,0.026], + [49019,0.034], + [49021,0.037], + [49023,0.025], + [49025,0.038], + [49027,0.023], + [49029,0.023], + [49031,0.049], + [49033,0.01], + [49035,0.031], + [49037,0.087], + [49039,0.054], + [49041,0.04], + [49043,0.014], + [49045,0.036], + [49047,0.076], + [49049,0.031], + [49051,0.009], + [49053,0.03], + [49055,0.026], + [49057,0.033], + [50001,0.034], + [50003,0.034], + [50005,0.032], + [50007,0.032], + [50009,0.039], + [50011,0.036], + [50013,0.041], + [50015,0.035], + [50017,0.033], + [50019,0.037], + [50021,0.026], + [50023,0.03], + [50025,0.042], + [50027,0.034], + [51001,0.04], + [51003,0.023], + [51005,0.042], + [51007,0.028], + [51009,0.057], + [51011,0.029], + [51013,0.026], + [51015,0.032], + [51017,0.083], + [51019,0.036], + [51021,0.054], + [51023,0.027], + [51025,0.102], + [51027,0.069], + [51029,0.057], + [51031,0.032], + [51033,0.035], + [51035,0.026], + [51036,0.03], + [51037,0.067], + [51041,0.041], + [51043,0.049], + [51045,0.02], + [51047,0.049], + [51049,0.05], + [51051,0.049], + [51053,0.056], + [51057,0.06], + [51059,0.035], + [51061,0.03], + [51063,0.024], + [51065,0.02], + [51067,0.045], + [51069,0.033], + [51071,0.051], + [51073,0.028], + [51075,0.035], + [51077,0.055], + [51079,0.048], + [51081,0.048], + [51083,0.031], + [51085,0.026], + [51087,0.041], + [51089,0.079], + [51091,0.045], + [51093,0.055], + [51095,0.04], + [51097,0.034], + [51099,0.028], + [51101,0.044], + [51103,0.031], + [51105,0.092], + [51107,0.031], + [51109,0.048], + [51111,0.041], + [51113,0.046], + [51115,0.027], + [51117,0.039], + [51119,0.055], + [51121,0.037], + [51125,0.042], + [51127,0.034], + [51131,0.042], + [51133,0.046], + [51135,0.038], + [51137,0.044], + [51139,0.067], + [51141,0.046], + [51143,0.058], + [51145,0.021], + [51147,0.051], + [51149,0.045], + [51153,0.041], + [51155,0.052], + [51157,0.045], + [51159,0.025], + [51161,0.029], + [51163,0.046], + [51165,0.026], + [51167,0.059], + [51169,0.05], + [51171,0.036], + [51173,0.051], + [51175,0.039], + [51177,0.046], + [51179,0.033], + [51181,0.057], + [51183,0.048], + [51185,0.061], + [51187,0.053], + [51191,0.048], + [51193,0.065], + [51195,0.087], + [51197,0.052], + [51199,0.055], + [51510,0.029], + [51520,0.062], + [51530,0.019], + [51540,0.039], + [51550,0.042], + [51570,0.077], + [51580,0.03], + [51590,0.085], + [51595,0.207], + [51600,0.036], + [51610,0.033], + [51620,0.135], + [51630,0.039], + [51640,0.073], + [51650,0.056], + [51660,0.039], + [51670,0.067], + [51678,0.034], + [51680,0.054], + [51683,0.035], + [51685,0.042], + [51690,0.06], + [51700,0.058], + [51710,0.072], + [51720,0.108], + [51730,0.111], + [51735,0.022], + [51740,0.07], + [51750,0.034], + [51760,0.059], + [51770,0.058], + [51775,0.041], + [51790,0.037], + [51800,0.052], + [51810,0.042], + [51820,0.049], + [51830,0.049], + [51840,0.028], + [53001,0.058], + [53003,0.063], + [53005,0.044], + [53007,0.033], + [53009,0.077], + [53011,0.043], + [53013,0.053], + [53015,0.065], + [53017,0.035], + [53019,0.076], + [53021,0.056], + [53023,0.027], + [53025,0.064], + [53027,0.064], + [53029,0.052], + [53031,0.055], + [53033,0.04], + [53035,0.044], + [53037,0.043], + [53039,0.066], + [53041,0.065], + [53043,0.039], + [53045,0.07], + [53047,0.055], + [53049,0.055], + [53051,0.067], + [53053,0.048], + [53055,0.024], + [53057,0.048], + [53059,0.042], + [53061,0.037], + [53063,0.051], + [53065,0.05], + [53067,0.058], + [53069,0.069], + [53071,0.04], + [53073,0.051], + [53075,0.056], + [53077,0.058], + [54001,0.073], + [54003,0.053], + [54005,0.105], + [54007,0.129], + [54009,0.034], + [54011,0.053], + [54013,0.147], + [54015,0.081], + [54017,0.038], + [54019,0.066], + [54021,0.084], + [54023,0.067], + [54025,0.056], + [54027,0.055], + [54029,0.062], + [54031,0.034], + [54033,0.058], + [54035,0.038], + [54037,0.054], + [54039,0.058], + [54041,0.069], + [54043,0.058], + [54045,0.14], + [54047,0.121], + [54049,0.057], + [54051,0.039], + [54053,0.037], + [54055,0.067], + [54057,0.051], + [54059,0.138], + [54061,0.057], + [54063,0.09], + [54065,0.057], + [54067,0.067], + [54069,0.055], + [54071,0.042], + [54073,0.106], + [54075,0.047], + [54077,0.081], + [54079,0.037], + [54081,0.079], + [54083,0.051], + [54085,0.052], + [54087,0.088], + [54089,0.112], + [54091,0.095], + [54093,0.05], + [54095,0.06], + [54097,0.062], + [54099,0.05], + [54101,0.095], + [54103,0.057], + [54105,0.05], + [54107,0.046], + [54109,0.141], + [55001,0.064], + [55003,0.049], + [55005,0.025], + [55007,0.047], + [55009,0.026], + [55011,0.016], + [55013,0.039], + [55015,0.021], + [55017,0.028], + [55019,0.024], + [55021,0.025], + [55023,0.021], + [55025,0.023], + [55027,0.035], + [55029,0.032], + [55031,0.035], + [55033,0.029], + [55035,0.032], + [55037,0.059], + [55039,0.031], + [55041,0.063], + [55043,0.022], + [55045,0.02], + [55047,0.03], + [55049,0.027], + [55051,0.069], + [55053,0.048], + [55055,0.03], + [55057,0.028], + [55059,0.057], + [55061,0.021], + [55063,0.033], + [55065,0.02], + [55067,0.063], + [55069,0.037], + [55071,0.026], + [55073,0.025], + [55075,0.041], + [55077,0.049], + [55078,0.078], + [55079,0.05], + [55081,0.027], + [55083,0.025], + [55085,0.02], + [55087,0.023], + [55089,0.023], + [55091,0.015], + [55093,0.02], + [55095,0.033], + [55097,0.031], + [55099,0.022], + [55101,0.041], + [55103,0.02], + [55105,0.047], + [55107,0.036], + [55109,0.018], + [55111,0.029], + [55113,0.057], + [55115,0.03], + [55117,0.03], + [55119,0.034], + [55121,0.026], + [55123,0.022], + [55125,0.068], + [55127,0.032], + [55129,0.036], + [55131,0.025], + [55133,0.026], + [55135,0.023], + [55137,0.041], + [55139,0.027], + [55141,0.035], + [56001,0.038], + [56003,0.075], + [56005,0.032], + [56007,0.029], + [56009,0.053], + [56011,0.014], + [56013,0.056], + [56015,0.077], + [56017,0.024], + [56019,0.038], + [56021,0.047], + [56023,0.047], + [56025,0.038], + [56027,0.055], + [56029,0.027], + [56031,0.024], + [56033,0.029], + [56035,0.027], + [56037,0.057], + [56039,0.007], + [56041,0.055], + [56043,0.041], + [56045,0.04] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2007.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2007.json new file mode 100644 index 0000000..89c7724 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2007.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2007", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2007"], + [1001,806], + [1003,2560], + [1005,650], + [1007,359], + [1009,849], + [1011,345], + [1013,560], + [1015,2152], + [1017,1005], + [1019,500], + [1021,670], + [1023,308], + [1025,628], + [1027,338], + [1029,237], + [1031,802], + [1033,1170], + [1035,319], + [1037,271], + [1039,661], + [1041,282], + [1043,1320], + [1045,800], + [1047,1296], + [1049,1324], + [1051,1185], + [1053,758], + [1055,2028], + [1057,348], + [1059,634], + [1061,398], + [1063,209], + [1065,374], + [1067,405], + [1069,1572], + [1071,1221], + [1073,12136], + [1075,366], + [1077,1868], + [1079,647], + [1081,2377], + [1083,1217], + [1085,358], + [1087,480], + [1089,5068], + [1091,432], + [1093,677], + [1095,1421], + [1097,7394], + [1099,576], + [1101,4358], + [1103,1988], + [1105,299], + [1107,402], + [1109,628], + [1111,482], + [1113,1320], + [1115,1227], + [1117,2604], + [1119,312], + [1121,2024], + [1123,971], + [1125,2928], + [1127,1256], + [1129,416], + [1131,332], + [1133,575], + [2013,87], + [2016,168], + [2020,7715], + [2050,889], + [2060,50], + [2068,100], + [2070,187], + [2090,2527], + [2100,107], + [2105,"NA"], + [2110,833], + [2122,2026], + [2130,465], + [2150,385], + [2158,"NA"], + [2164,64], + [2170,2866], + [2180,422], + [2185,252], + [2188,322], + [2195,"NA"], + [2198,"NA"], + [2220,237], + [2230,"NA"], + [2240,309], + [2261,441], + [2275,"NA"], + [2282,21], + [2290,381], + [4001,1773], + [4003,2337], + [4005,2643], + [4007,910], + [4009,614], + [4011,130], + [4012,393], + [4013,63383], + [4015,4266], + [4017,2461], + [4019,16933], + [4021,5092], + [4023,1269], + [4025,3610], + [4027,11085], + [5001,1046], + [5003,771], + [5005,961], + [5007,3939], + [5009,860], + [5011,353], + [5013,177], + [5015,605], + [5017,412], + [5019,618], + [5021,626], + [5023,710], + [5025,238], + [5027,720], + [5029,490], + [5031,2302], + [5033,1395], + [5035,1461], + [5037,624], + [5039,273], + [5041,610], + [5043,631], + [5045,2419], + [5047,385], + [5049,257], + [5051,2347], + [5053,425], + [5055,1215], + [5057,646], + [5059,823], + [5061,351], + [5063,1072], + [5065,320], + [5067,594], + [5069,2663], + [5071,551], + [5073,235], + [5075,506], + [5077,340], + [5079,395], + [5081,272], + [5083,527], + [5085,1383], + [5087,317], + [5089,381], + [5091,882], + [5093,1572], + [5095,261], + [5097,225], + [5099,248], + [5101,178], + [5103,876], + [5105,234], + [5107,657], + [5109,296], + [5111,791], + [5113,437], + [5115,1439], + [5117,254], + [5119,9045], + [5121,710], + [5123,1015], + [5125,2050], + [5127,225], + [5129,177], + [5131,3209], + [5133,321], + [5135,433], + [5137,273], + [5139,1332], + [5141,418], + [5143,4042], + [5145,2106], + [5147,308], + [5149,456], + [6001,35054], + [6003,39], + [6005,1028], + [6007,6739], + [6009,1331], + [6011,1202], + [6013,24097], + [6015,830], + [6017,4675], + [6019,35790], + [6021,1054], + [6023,3507], + [6025,11915], + [6027,438], + [6029,28228], + [6031,4974], + [6033,2031], + [6035,1014], + [6037,249384], + [6039,4745], + [6041,4821], + [6043,546], + [6045,2371], + [6047,10046], + [6049,314], + [6051,391], + [6053,14679], + [6055,2946], + [6057,2406], + [6059,62474], + [6061,8231], + [6063,849], + [6065,54429], + [6067,36725], + [6069,1736], + [6071,48324], + [6073,69004], + [6075,18365], + [6077,23359], + [6079,5750], + [6081,14088], + [6083,9310], + [6085,39560], + [6087,8555], + [6089,6190], + [6091,128], + [6093,1594], + [6095,10982], + [6097,11173], + [6099,19687], + [6101,3965], + [6103,1798], + [6105,525], + [6107,17713], + [6109,1599], + [6111,20666], + [6113,5590], + [6115,2532], + [8001,9254], + [8003,330], + [8005,11416], + [8007,250], + [8009,60], + [8011,117], + [8013,5694], + [8014,1056], + [8015,293], + [8017,34], + [8019,207], + [8021,202], + [8023,92], + [8025,121], + [8027,79], + [8029,541], + [8031,13031], + [8033,51], + [8035,4827], + [8037,876], + [8039,471], + [8041,12636], + [8043,926], + [8045,857], + [8047,119], + [8049,238], + [8051,268], + [8053,17], + [8055,159], + [8057,28], + [8059,11070], + [8061,24], + [8063,120], + [8065,144], + [8067,864], + [8069,5800], + [8071,314], + [8073,92], + [8075,346], + [8077,2461], + [8079,20], + [8081,261], + [8083,508], + [8085,741], + [8087,475], + [8089,439], + [8091,89], + [8093,346], + [8095,66], + [8097,304], + [8099,234], + [8101,3377], + [8103,110], + [8105,259], + [8107,407], + [8109,165], + [8111,23], + [8113,175], + [8115,40], + [8117,466], + [8119,479], + [8121,77], + [8123,4773], + [8125,143], + [9001,18344], + [9003,22003], + [9005,4402], + [9007,3614], + [9009,21976], + [9011,6159], + [9013,3225], + [9015,3321], + [10001,2521], + [10003,9631], + [10005,3109], + [11001,17811], + [12001,3908], + [12003,436], + [12005,3222], + [12007,424], + [12009,11683], + [12011,35944], + [12013,205], + [12015,3607], + [12017,2844], + [12019,3329], + [12021,6742], + [12023,1132], + [12027,708], + [12029,245], + [12031,18540], + [12033,5596], + [12035,2041], + [12037,159], + [12039,917], + [12041,295], + [12043,230], + [12045,242], + [12047,216], + [12049,545], + [12051,1354], + [12053,3622], + [12055,1965], + [12057,24705], + [12059,314], + [12061,3568], + [12063,859], + [12065,230], + [12067,88], + [12069,5582], + [12071,13816], + [12073,4564], + [12075,721], + [12077,104], + [12079,428], + [12081,6169], + [12083,6396], + [12085,2883], + [12086,37869], + [12087,1225], + [12089,1197], + [12091,2975], + [12093,929], + [12095,22815], + [12097,5738], + [12099,27841], + [12101,9692], + [12103,18712], + [12105,12278], + [12107,1525], + [12109,3045], + [12111,7185], + [12113,2588], + [12115,7825], + [12117,8715], + [12119,1119], + [12121,643], + [12123,383], + [12125,163], + [12127,10595], + [12129,459], + [12131,872], + [12133,393], + [13001,480], + [13003,192], + [13005,227], + [13007,83], + [13009,1155], + [13011,318], + [13013,1416], + [13015,2245], + [13017,543], + [13019,382], + [13021,3836], + [13023,280], + [13025,339], + [13027,360], + [13029,569], + [13031,1399], + [13033,771], + [13035,523], + [13037,143], + [13039,867], + [13043,195], + [13045,2552], + [13047,1276], + [13049,218], + [13051,5286], + [13053,161], + [13055,643], + [13057,3968], + [13059,2487], + [13061,82], + [13063,7762], + [13065,147], + [13067,15247], + [13069,975], + [13071,913], + [13073,2265], + [13075,403], + [13077,2365], + [13079,287], + [13081,614], + [13083,356], + [13085,410], + [13087,707], + [13089,18902], + [13091,473], + [13093,259], + [13095,2347], + [13097,3014], + [13099,297], + [13101,69], + [13103,941], + [13105,559], + [13107,558], + [13109,214], + [13111,412], + [13113,2050], + [13115,2341], + [13117,2782], + [13119,510], + [13121,23482], + [13123,506], + [13125,57], + [13127,1461], + [13129,1260], + [13131,493], + [13133,397], + [13135,16699], + [13137,802], + [13139,3254], + [13141,277], + [13143,602], + [13145,574], + [13147,702], + [13149,244], + [13151,4204], + [13153,2636], + [13155,259], + [13157,1115], + [13159,309], + [13161,357], + [13163,504], + [13165,295], + [13167,218], + [13169,594], + [13171,397], + [13173,150], + [13175,1126], + [13177,642], + [13179,1263], + [13181,221], + [13183,218], + [13185,2064], + [13187,542], + [13189,668], + [13191,220], + [13193,370], + [13195,589], + [13197,156], + [13199,560], + [13201,157], + [13205,534], + [13207,553], + [13209,212], + [13211,412], + [13213,957], + [13215,4454], + [13217,2430], + [13219,535], + [13221,297], + [13223,2679], + [13225,628], + [13227,568], + [13229,337], + [13231,342], + [13233,932], + [13235,184], + [13237,454], + [13239,57], + [13241,425], + [13243,177], + [13245,5545], + [13247,2016], + [13249,108], + [13251,351], + [13253,217], + [13255,1597], + [13257,657], + [13259,143], + [13261,1048], + [13263,202], + [13265,67], + [13267,436], + [13269,196], + [13271,386], + [13273,264], + [13275,942], + [13277,1007], + [13279,655], + [13281,222], + [13283,157], + [13285,1727], + [13287,327], + [13289,262], + [13291,413], + [13293,767], + [13295,1467], + [13297,1877], + [13299,737], + [13301,184], + [13303,470], + [13305,652], + [13307,56], + [13309,152], + [13311,462], + [13313,2141], + [13315,193], + [13317,303], + [13319,247], + [13321,544], + [15001,3012], + [15003,11666], + [15005,"NA"], + [15007,882], + [15009,2300], + [16001,5240], + [16003,115], + [16005,1228], + [16007,73], + [16009,250], + [16011,590], + [16013,321], + [16015,123], + [16017,800], + [16019,1117], + [16021,285], + [16023,34], + [16025,16], + [16027,3084], + [16029,111], + [16031,342], + [16033,13], + [16035,241], + [16037,80], + [16039,440], + [16041,125], + [16043,191], + [16045,272], + [16047,193], + [16049,362], + [16051,274], + [16053,281], + [16055,2327], + [16057,469], + [16059,173], + [16061,45], + [16063,89], + [16065,356], + [16067,392], + [16069,574], + [16071,42], + [16073,86], + [16075,444], + [16077,151], + [16079,312], + [16081,86], + [16083,1047], + [16085,209], + [16087,198], + [17001,1531], + [17003,268], + [17005,451], + [17007,1750], + [17009,95], + [17011,943], + [17013,174], + [17015,438], + [17017,329], + [17019,4393], + [17021,895], + [17023,495], + [17025,385], + [17027,906], + [17029,1215], + [17031,137535], + [17033,531], + [17035,293], + [17037,2544], + [17039,413], + [17041,447], + [17043,20468], + [17045,542], + [17047,168], + [17049,760], + [17051,646], + [17053,362], + [17055,1422], + [17057,942], + [17059,164], + [17061,356], + [17063,1475], + [17065,240], + [17067,536], + [17069,138], + [17071,215], + [17073,1327], + [17075,836], + [17077,1514], + [17079,266], + [17081,1047], + [17083,637], + [17085,553], + [17087,332], + [17089,12089], + [17091,3496], + [17093,2408], + [17095,1280], + [17097,17788], + [17099,3517], + [17101,402], + [17103,937], + [17105,871], + [17107,646], + [17109,729], + [17111,7779], + [17113,3373], + [17115,3053], + [17117,1469], + [17119,7521], + [17121,1198], + [17123,318], + [17125,482], + [17127,428], + [17129,307], + [17131,482], + [17133,782], + [17135,892], + [17137,881], + [17139,295], + [17141,1545], + [17143,4474], + [17145,824], + [17147,342], + [17149,397], + [17151,137], + [17153,208], + [17155,186], + [17157,814], + [17159,365], + [17161,3603], + [17163,7612], + [17165,810], + [17167,4787], + [17169,178], + [17171,142], + [17173,538], + [17175,152], + [17177,1293], + [17179,3097], + [17181,574], + [17183,2318], + [17185,350], + [17187,410], + [17189,388], + [17191,396], + [17193,409], + [17195,1629], + [17197,17292], + [17199,2326], + [17201,8867], + [17203,736], + [18001,682], + [18003,8606], + [18005,1388], + [18007,191], + [18009,378], + [18011,965], + [18013,334], + [18015,403], + [18017,915], + [18019,2392], + [18021,746], + [18023,756], + [18025,318], + [18027,463], + [18029,1315], + [18031,558], + [18033,1134], + [18035,2917], + [18037,680], + [18039,4645], + [18041,756], + [18043,1574], + [18045,363], + [18047,650], + [18049,501], + [18051,765], + [18053,1949], + [18055,810], + [18057,4123], + [18059,1348], + [18061,872], + [18063,2370], + [18065,1300], + [18067,2065], + [18069,949], + [18071,856], + [18073,736], + [18075,504], + [18077,838], + [18079,701], + [18081,2558], + [18083,790], + [18085,1813], + [18087,832], + [18089,11692], + [18091,2662], + [18093,1437], + [18095,3839], + [18097,20828], + [18099,1102], + [18101,200], + [18103,933], + [18105,2560], + [18107,742], + [18109,1537], + [18111,366], + [18113,1258], + [18115,149], + [18117,537], + [18119,551], + [18121,399], + [18123,431], + [18125,258], + [18127,3183], + [18129,568], + [18131,282], + [18133,937], + [18135,714], + [18137,631], + [18139,428], + [18141,6492], + [18143,580], + [18145,1025], + [18147,435], + [18149,618], + [18151,988], + [18153,492], + [18155,221], + [18157,3219], + [18159,359], + [18161,170], + [18163,4261], + [18165,443], + [18167,2654], + [18169,820], + [18171,160], + [18173,1185], + [18175,734], + [18177,1816], + [18179,609], + [18181,542], + [18183,793], + [19001,154], + [19003,87], + [19005,388], + [19007,407], + [19009,128], + [19011,555], + [19013,2708], + [19015,505], + [19017,430], + [19019,460], + [19021,328], + [19023,331], + [19025,170], + [19027,321], + [19029,314], + [19031,352], + [19033,1001], + [19035,239], + [19037,272], + [19039,200], + [19041,303], + [19043,469], + [19045,1021], + [19047,306], + [19049,929], + [19051,184], + [19053,170], + [19055,382], + [19057,930], + [19059,380], + [19061,2066], + [19063,218], + [19065,478], + [19067,389], + [19069,209], + [19071,159], + [19073,176], + [19075,216], + [19077,223], + [19079,276], + [19081,227], + [19083,343], + [19085,325], + [19087,483], + [19089,191], + [19091,160], + [19093,134], + [19095,317], + [19097,520], + [19099,1133], + [19101,343], + [19103,2097], + [19105,432], + [19107,235], + [19109,322], + [19111,991], + [19113,4327], + [19115,235], + [19117,184], + [19119,160], + [19121,341], + [19123,425], + [19125,636], + [19127,825], + [19129,299], + [19131,185], + [19133,251], + [19135,172], + [19137,345], + [19139,809], + [19141,233], + [19143,111], + [19145,384], + [19147,183], + [19149,439], + [19151,131], + [19153,8270], + [19155,2044], + [19157,420], + [19159,102], + [19161,199], + [19163,3317], + [19165,244], + [19167,489], + [19169,1331], + [19171,389], + [19173,136], + [19175,268], + [19177,168], + [19179,816], + [19181,831], + [19183,407], + [19185,145], + [19187,785], + [19189,199], + [19191,452], + [19193,2127], + [19195,169], + [19197,274], + [20001,303], + [20003,195], + [20005,405], + [20007,84], + [20009,518], + [20011,392], + [20013,227], + [20015,1339], + [20017,64], + [20019,84], + [20021,543], + [20023,50], + [20025,37], + [20027,170], + [20029,199], + [20031,230], + [20033,33], + [20035,725], + [20037,986], + [20039,52], + [20041,412], + [20043,218], + [20045,2418], + [20047,56], + [20049,82], + [20051,477], + [20053,124], + [20055,612], + [20057,526], + [20059,702], + [20061,524], + [20063,45], + [20065,46], + [20067,112], + [20069,84], + [20071,23], + [20073,166], + [20075,43], + [20077,103], + [20079,668], + [20081,62], + [20083,36], + [20085,384], + [20087,479], + [20089,55], + [20091,12142], + [20093,69], + [20095,145], + [20097,70], + [20099,561], + [20101,38], + [20103,1771], + [20105,71], + [20107,306], + [20109,50], + [20111,807], + [20113,581], + [20115,245], + [20117,191], + [20119,67], + [20121,772], + [20123,118], + [20125,857], + [20127,144], + [20129,46], + [20131,172], + [20133,382], + [20135,51], + [20137,87], + [20139,466], + [20141,84], + [20143,124], + [20145,124], + [20147,97], + [20149,376], + [20151,177], + [20153,44], + [20155,1372], + [20157,88], + [20159,216], + [20161,1235], + [20163,98], + [20165,61], + [20167,127], + [20169,1075], + [20171,72], + [20173,10602], + [20175,353], + [20177,4236], + [20179,43], + [20181,104], + [20183,69], + [20185,78], + [20187,33], + [20189,74], + [20191,521], + [20193,125], + [20195,56], + [20197,146], + [20199,26], + [20201,113], + [20203,37], + [20205,205], + [20207,86], + [20209,5433], + [21001,519], + [21003,481], + [21005,549], + [21007,233], + [21009,1008], + [21011,379], + [21013,760], + [21015,2712], + [21017,472], + [21019,1178], + [21021,767], + [21023,254], + [21025,394], + [21027,547], + [21029,2197], + [21031,355], + [21033,351], + [21035,955], + [21037,2216], + [21039,137], + [21041,309], + [21043,958], + [21045,404], + [21047,1863], + [21049,837], + [21051,741], + [21053,243], + [21055,231], + [21057,205], + [21059,2279], + [21061,337], + [21063,228], + [21065,394], + [21067,6038], + [21069,417], + [21071,978], + [21073,1131], + [21075,202], + [21077,209], + [21079,432], + [21081,692], + [21083,998], + [21085,911], + [21087,346], + [21089,950], + [21091,215], + [21093,2411], + [21095,910], + [21097,450], + [21099,433], + [21101,1138], + [21103,414], + [21105,138], + [21107,1379], + [21109,591], + [21111,18800], + [21113,1012], + [21115,591], + [21117,4002], + [21119,427], + [21121,846], + [21123,352], + [21125,1408], + [21127,453], + [21129,185], + [21131,310], + [21133,649], + [21135,424], + [21137,691], + [21139,262], + [21141,661], + [21143,209], + [21145,1537], + [21147,526], + [21149,266], + [21151,2012], + [21153,450], + [21155,528], + [21157,851], + [21159,270], + [21161,405], + [21163,699], + [21165,224], + [21167,547], + [21169,246], + [21171,330], + [21173,709], + [21175,432], + [21177,1077], + [21179,1228], + [21181,189], + [21183,628], + [21185,1309], + [21187,265], + [21189,145], + [21191,427], + [21193,797], + [21195,1477], + [21197,374], + [21199,1601], + [21201,51], + [21203,477], + [21205,651], + [21207,499], + [21209,972], + [21211,997], + [21213,472], + [21215,532], + [21217,733], + [21219,327], + [21221,366], + [21223,268], + [21225,393], + [21227,2496], + [21229,301], + [21231,561], + [21233,382], + [21235,954], + [21237,225], + [21239,513], + [22001,988], + [22003,501], + [22005,1941], + [22007,488], + [22009,825], + [22011,701], + [22013,360], + [22015,2171], + [22017,6167], + [22019,3734], + [22021,218], + [22023,130], + [22025,241], + [22027,370], + [22029,444], + [22031,656], + [22033,8837], + [22035,299], + [22037,383], + [22039,626], + [22041,521], + [22043,404], + [22045,1275], + [22047,722], + [22049,282], + [22051,7963], + [22053,506], + [22055,3287], + [22057,1427], + [22059,238], + [22061,934], + [22063,2167], + [22065,300], + [22067,946], + [22069,898], + [22071,5458], + [22073,3612], + [22075,353], + [22077,447], + [22079,2517], + [22081,229], + [22083,548], + [22085,423], + [22087,421], + [22089,998], + [22091,317], + [22093,597], + [22095,1125], + [22097,1729], + [22099,874], + [22101,999], + [22103,3736], + [22105,2411], + [22107,166], + [22109,1651], + [22111,519], + [22113,930], + [22115,979], + [22117,927], + [22119,1030], + [22121,437], + [22123,426], + [22125,267], + [22127,321], + [23001,2671], + [23003,2207], + [23005,5404], + [23007,857], + [23009,1607], + [23011,2875], + [23013,916], + [23015,763], + [23017,1660], + [23019,4025], + [23021,557], + [23023,735], + [23025,1721], + [23027,1025], + [23029,1111], + [23031,4539], + [24001,1778], + [24003,8380], + [24005,15058], + [24009,1336], + [24011,670], + [24013,2749], + [24015,1934], + [24017,2195], + [24019,961], + [24021,3549], + [24023,728], + [24025,4386], + [24027,4017], + [24029,390], + [24031,13368], + [24033,15971], + [24035,806], + [24037,1498], + [24039,595], + [24041,633], + [24043,2954], + [24045,2024], + [24047,1600], + [24510,15165], + [25001,5955], + [25003,3282], + [25005,17238], + [25007,402], + [25009,18242], + [25011,1669], + [25013,12771], + [25015,3421], + [25017,30707], + [25019,204], + [25021,14171], + [25023,12750], + [25025,16752], + [25027,20341], + [26001,442], + [26003,371], + [26005,3576], + [26007,1256], + [26009,959], + [26011,775], + [26013,547], + [26015,1666], + [26017,3774], + [26019,724], + [26021,5537], + [26023,1653], + [26025,4867], + [26027,1554], + [26029,1240], + [26031,1294], + [26033,1555], + [26035,1413], + [26037,2083], + [26039,535], + [26041,1546], + [26043,877], + [26045,3109], + [26047,1797], + [26049,17473], + [26051,1083], + [26053,596], + [26055,3251], + [26057,1732], + [26059,1915], + [26061,1278], + [26063,1337], + [26065,9566], + [26067,2305], + [26069,1093], + [26071,442], + [26073,2038], + [26075,5934], + [26077,7230], + [26079,705], + [26081,19197], + [26083,116], + [26085,428], + [26087,3528], + [26089,624], + [26091,3953], + [26093,5028], + [26095,253], + [26097,651], + [26099,29594], + [26101,1019], + [26103,2258], + [26105,1168], + [26107,1523], + [26109,768], + [26111,2394], + [26113,558], + [26115,5227], + [26117,3144], + [26119,553], + [26121,6515], + [26123,1829], + [26125,36277], + [26127,1215], + [26129,819], + [26131,288], + [26133,797], + [26135,424], + [26137,1145], + [26139,7759], + [26141,775], + [26143,1029], + [26145,7006], + [26147,7072], + [26149,2026], + [26151,1984], + [26153,433], + [26155,2989], + [26157,2433], + [26159,2823], + [26161,9216], + [26163,72949], + [26165,1265], + [27001,525], + [27003,8608], + [27005,963], + [27007,1277], + [27009,1144], + [27011,133], + [27013,1364], + [27015,710], + [27017,976], + [27019,1959], + [27021,1016], + [27023,303], + [27025,1590], + [27027,1079], + [27029,397], + [27031,151], + [27033,252], + [27035,1826], + [27037,9316], + [27039,476], + [27041,885], + [27043,407], + [27045,567], + [27047,806], + [27049,1235], + [27051,178], + [27053,26686], + [27055,556], + [27057,585], + [27059,1292], + [27061,1613], + [27063,252], + [27065,654], + [27067,1004], + [27069,142], + [27071,454], + [27073,168], + [27075,275], + [27077,116], + [27079,872], + [27081,146], + [27083,552], + [27085,1023], + [27087,164], + [27089,413], + [27091,495], + [27093,734], + [27095,939], + [27097,1065], + [27099,823], + [27101,230], + [27103,699], + [27105,386], + [27107,181], + [27109,3020], + [27111,1549], + [27113,589], + [27115,1049], + [27117,198], + [27119,765], + [27121,271], + [27123,11917], + [27125,186], + [27127,390], + [27129,445], + [27131,1593], + [27133,156], + [27135,615], + [27137,5747], + [27139,2956], + [27141,2439], + [27143,438], + [27145,3797], + [27147,878], + [27149,210], + [27151,277], + [27153,663], + [27155,95], + [27157,543], + [27159,466], + [27161,487], + [27163,5106], + [27165,276], + [27167,132], + [27169,1192], + [27171,3340], + [27173,243], + [28001,852], + [28003,1057], + [28005,324], + [28007,554], + [28009,272], + [28011,1250], + [28013,490], + [28015,316], + [28017,739], + [28019,261], + [28021,391], + [28023,518], + [28025,1175], + [28027,928], + [28029,895], + [28031,470], + [28033,2997], + [28035,1840], + [28037,217], + [28039,644], + [28041,372], + [28043,693], + [28045,951], + [28047,4566], + [28049,6480], + [28051,769], + [28053,382], + [28055,54], + [28057,711], + [28059,3246], + [28061,455], + [28063,364], + [28065,367], + [28067,1428], + [28069,319], + [28071,1043], + [28073,1005], + [28075,2111], + [28077,385], + [28079,516], + [28081,2293], + [28083,1098], + [28085,910], + [28087,1946], + [28089,2119], + [28091,646], + [28093,1143], + [28095,1515], + [28097,409], + [28099,704], + [28101,534], + [28103,500], + [28105,1302], + [28107,1186], + [28109,1271], + [28111,346], + [28113,1016], + [28115,850], + [28117,830], + [28119,310], + [28121,2874], + [28123,647], + [28125,210], + [28127,633], + [28129,362], + [28131,432], + [28133,1039], + [28135,463], + [28137,706], + [28139,651], + [28141,632], + [28143,345], + [28145,722], + [28147,368], + [28149,1348], + [28151,1849], + [28153,556], + [28155,276], + [28157,303], + [28159,529], + [28161,408], + [28163,769], + [29001,649], + [29003,402], + [29005,140], + [29007,605], + [29009,865], + [29011,496], + [29013,481], + [29015,497], + [29017,312], + [29019,3250], + [29021,2148], + [29023,1405], + [29025,239], + [29027,1007], + [29029,1075], + [29031,1674], + [29033,264], + [29035,183], + [29037,2490], + [29039,369], + [29041,219], + [29043,1545], + [29045,199], + [29047,5030], + [29049,537], + [29051,1565], + [29053,412], + [29055,856], + [29057,199], + [29059,396], + [29061,181], + [29063,273], + [29065,447], + [29067,347], + [29069,1145], + [29071,2930], + [29073,448], + [29075,139], + [29077,5668], + [29079,232], + [29081,207], + [29083,613], + [29085,256], + [29087,136], + [29089,229], + [29091,923], + [29093,287], + [29095,19712], + [29097,2549], + [29099,6010], + [29101,1217], + [29103,89], + [29105,981], + [29107,849], + [29109,780], + [29111,225], + [29113,1495], + [29115,412], + [29117,315], + [29119,476], + [29121,401], + [29123,345], + [29125,248], + [29127,765], + [29129,74], + [29131,702], + [29133,386], + [29135,346], + [29137,249], + [29139,334], + [29141,576], + [29143,614], + [29145,1315], + [29147,471], + [29149,236], + [29151,348], + [29153,230], + [29155,536], + [29157,410], + [29159,1096], + [29161,1086], + [29163,447], + [29165,1919], + [29167,689], + [29169,969], + [29171,138], + [29173,274], + [29175,704], + [29177,611], + [29179,181], + [29181,443], + [29183,7875], + [29185,276], + [29186,464], + [29187,1713], + [29189,26117], + [29195,591], + [29197,124], + [29199,120], + [29201,1165], + [29203,255], + [29205,166], + [29207,994], + [29209,1052], + [29211,203], + [29213,1858], + [29215,626], + [29217,493], + [29219,872], + [29221,827], + [29223,394], + [29225,816], + [29227,53], + [29229,484], + [29510,11169], + [30001,141], + [30003,338], + [30005,109], + [30007,77], + [30009,153], + [30011,21], + [30013,1378], + [30015,79], + [30017,193], + [30019,21], + [30021,120], + [30023,186], + [30025,35], + [30027,232], + [30029,1807], + [30031,1324], + [30033,19], + [30035,466], + [30037,22], + [30039,61], + [30041,333], + [30043,183], + [30045,39], + [30047,635], + [30049,1011], + [30051,23], + [30053,584], + [30055,22], + [30057,127], + [30059,51], + [30061,93], + [30063,2027], + [30065,109], + [30067,320], + [30069,12], + [30071,86], + [30073,108], + [30075,29], + [30077,141], + [30079,19], + [30081,835], + [30083,131], + [30085,241], + [30087,204], + [30089,309], + [30091,47], + [30093,633], + [30095,142], + [30097,54], + [30099,95], + [30101,62], + [30103,13], + [30105,126], + [30107,35], + [30109,14], + [30111,2203], + [31001,471], + [31003,103], + [31005,9], + [31007,8], + [31009,9], + [31011,77], + [31013,180], + [31015,32], + [31017,48], + [31019,628], + [31021,156], + [31023,122], + [31025,459], + [31027,116], + [31029,49], + [31031,76], + [31033,126], + [31035,86], + [31037,124], + [31039,135], + [31041,128], + [31043,438], + [31045,131], + [31047,376], + [31049,30], + [31051,104], + [31053,632], + [31055,9147], + [31057,26], + [31059,80], + [31061,50], + [31063,38], + [31065,74], + [31067,448], + [31069,25], + [31071,26], + [31073,33], + [31075,10], + [31077,34], + [31079,859], + [31081,125], + [31083,47], + [31085,16], + [31087,39], + [31089,155], + [31091,13], + [31093,102], + [31095,125], + [31097,84], + [31099,84], + [31101,118], + [31103,14], + [31105,55], + [31107,139], + [31109,4396], + [31111,574], + [31113,13], + [31115,14], + [31117,6], + [31119,594], + [31121,120], + [31123,73], + [31125,50], + [31127,134], + [31129,59], + [31131,268], + [31133,47], + [31135,38], + [31137,116], + [31139,118], + [31141,448], + [31143,83], + [31145,149], + [31147,175], + [31149,23], + [31151,221], + [31153,2241], + [31155,339], + [31157,576], + [31159,243], + [31161,83], + [31163,51], + [31165,20], + [31167,105], + [31169,76], + [31171,14], + [31173,195], + [31175,61], + [31177,320], + [31179,135], + [31181,59], + [31183,12], + [31185,208], + [32001,567], + [32003,42756], + [32005,1096], + [32007,865], + [32009,15], + [32011,34], + [32013,284], + [32015,109], + [32017,72], + [32019,1426], + [32021,139], + [32023,1157], + [32027,124], + [32029,118], + [32031,9526], + [32033,173], + [32510,1363], + [33001,1156], + [33003,876], + [33005,1491], + [33007,770], + [33009,1426], + [33011,8085], + [33013,2661], + [33015,6565], + [33017,2226], + [33019,673], + [34001,7927], + [34003,16249], + [34005,9123], + [34007,12692], + [34009,3707], + [34011,4455], + [34013,19326], + [34015,6638], + [34017,14476], + [34019,2053], + [34021,7525], + [34023,16219], + [34025,12393], + [34027,8224], + [34029,11700], + [34031,12653], + [34033,1550], + [34035,5557], + [34037,3305], + [34039,11990], + [34041,2222], + [35001,11153], + [35003,73], + [35005,1045], + [35006,505], + [35007,232], + [35009,596], + [35011,30], + [35013,3616], + [35015,774], + [35017,468], + [35019,105], + [35021,11], + [35023,76], + [35025,687], + [35027,336], + [35028,228], + [35029,1248], + [35031,1242], + [35033,159], + [35035,989], + [35037,174], + [35039,965], + [35041,268], + [35043,2317], + [35045,1879], + [35047,558], + [35049,2346], + [35051,196], + [35053,300], + [35055,868], + [35057,329], + [35059,51], + [35061,1207], + [36001,6145], + [36003,1276], + [36005,34992], + [36007,4309], + [36009,2105], + [36011,1825], + [36013,2991], + [36015,1876], + [36017,1205], + [36019,2228], + [36021,1235], + [36023,1229], + [36025,1001], + [36027,5677], + [36029,21839], + [36031,1051], + [36033,1255], + [36035,1470], + [36037,1493], + [36039,1146], + [36041,151], + [36043,1518], + [36045,2627], + [36047,59125], + [36049,678], + [36051,1579], + [36053,1674], + [36055,16466], + [36057,1431], + [36059,25564], + [36061,39838], + [36063,5942], + [36065,4700], + [36067,9478], + [36069,2355], + [36071,7690], + [36073,1127], + [36075,3329], + [36077,1428], + [36079,1886], + [36081,49391], + [36083,3538], + [36085,10981], + [36087,5927], + [36089,2861], + [36091,4374], + [36093,3133], + [36095,909], + [36097,497], + [36099,756], + [36101,2348], + [36103,30399], + [36105,1836], + [36107,1227], + [36109,1866], + [36111,3930], + [36113,1618], + [36115,1343], + [36117,2247], + [36119,18141], + [36121,1049], + [36123,547], + [37001,3537], + [37003,952], + [37005,253], + [37007,755], + [37009,655], + [37011,387], + [37013,1191], + [37015,493], + [37017,966], + [37019,2174], + [37021,4232], + [37023,2385], + [37025,3651], + [37027,2714], + [37029,184], + [37031,1330], + [37033,713], + [37035,4201], + [37037,1235], + [37039,635], + [37041,436], + [37043,197], + [37045,2940], + [37047,1311], + [37049,1845], + [37051,6851], + [37053,396], + [37055,1102], + [37057,4410], + [37059,999], + [37061,1079], + [37063,5178], + [37065,1813], + [37067,7599], + [37069,1193], + [37071,5537], + [37073,213], + [37075,334], + [37077,1281], + [37079,498], + [37081,11655], + [37083,1562], + [37085,2322], + [37087,1105], + [37089,1695], + [37091,519], + [37093,969], + [37095,153], + [37097,3661], + [37099,804], + [37101,3078], + [37103,214], + [37105,1495], + [37107,1473], + [37109,1955], + [37111,1194], + [37113,680], + [37115,388], + [37117,636], + [37119,20681], + [37121,522], + [37123,751], + [37125,1694], + [37127,2458], + [37129,3927], + [37131,542], + [37133,2680], + [37135,2192], + [37137,239], + [37139,914], + [37141,996], + [37143,277], + [37145,1268], + [37147,4006], + [37149,331], + [37151,3484], + [37153,1539], + [37155,3501], + [37157,2746], + [37159,4237], + [37161,1943], + [37163,1310], + [37165,1449], + [37167,1490], + [37169,1042], + [37171,1869], + [37173,459], + [37175,493], + [37177,125], + [37179,3620], + [37181,1302], + [37183,15415], + [37185,485], + [37187,413], + [37189,838], + [37191,2375], + [37193,1697], + [37195,2551], + [37197,815], + [37199,468], + [38001,32], + [38003,189], + [38005,174], + [38007,13], + [38009,123], + [38011,36], + [38013,26], + [38015,1253], + [38017,2244], + [38019,63], + [38021,79], + [38023,30], + [38025,65], + [38027,71], + [38029,88], + [38031,58], + [38033,24], + [38035,1129], + [38037,43], + [38039,35], + [38041,46], + [38043,59], + [38045,69], + [38047,33], + [38049,136], + [38051,40], + [38053,90], + [38055,218], + [38057,197], + [38059,505], + [38061,171], + [38063,67], + [38065,48], + [38067,225], + [38069,86], + [38071,233], + [38073,96], + [38075,39], + [38077,300], + [38079,467], + [38081,81], + [38083,32], + [38085,82], + [38087,10], + [38089,346], + [38091,26], + [38093,339], + [38095,45], + [38097,141], + [38099,241], + [38101,879], + [38103,98], + [38105,248], + [39001,1041], + [39003,3290], + [39005,1654], + [39007,3470], + [39009,1864], + [39011,1204], + [39013,1840], + [39015,1413], + [39017,9747], + [39019,861], + [39021,1241], + [39023,4442], + [39025,5374], + [39027,1163], + [39029,3324], + [39031,1199], + [39033,1560], + [39035,37154], + [39037,1591], + [39039,1170], + [39041,3604], + [39043,2576], + [39045,3779], + [39047,811], + [39049,29286], + [39051,1468], + [39053,898], + [39055,2345], + [39057,4176], + [39059,1276], + [39061,22155], + [39063,1872], + [39065,943], + [39067,461], + [39069,1002], + [39071,1280], + [39073,908], + [39075,797], + [39077,2412], + [39079,1264], + [39081,2039], + [39083,1677], + [39085,6471], + [39087,1549], + [39089,4426], + [39091,1257], + [39093,9108], + [39095,15163], + [39097,1054], + [39099,7298], + [39101,1805], + [39103,4632], + [39105,828], + [39107,943], + [39109,2998], + [39111,455], + [39113,16775], + [39115,537], + [39117,1050], + [39119,3035], + [39121,431], + [39123,1569], + [39125,547], + [39127,1206], + [39129,1488], + [39131,1035], + [39133,4904], + [39135,1251], + [39137,876], + [39139,4056], + [39141,2414], + [39143,2063], + [39145,2400], + [39147,1785], + [39149,1367], + [39151,11184], + [39153,16049], + [39155,6635], + [39157,2581], + [39159,1102], + [39161,858], + [39163,463], + [39165,4973], + [39167,1717], + [39169,2905], + [39171,1195], + [39173,3709], + [39175,797], + [40001,516], + [40003,102], + [40005,321], + [40007,82], + [40009,281], + [40011,209], + [40013,724], + [40015,593], + [40017,1932], + [40019,873], + [40021,942], + [40023,363], + [40025,48], + [40027,4360], + [40029,155], + [40031,1949], + [40033,106], + [40035,341], + [40037,1358], + [40039,441], + [40041,841], + [40043,75], + [40045,59], + [40047,889], + [40049,475], + [40051,1001], + [40053,82], + [40055,98], + [40057,46], + [40059,53], + [40061,229], + [40063,297], + [40065,427], + [40067,116], + [40069,219], + [40071,964], + [40073,220], + [40075,174], + [40077,210], + [40079,1175], + [40081,585], + [40083,655], + [40085,158], + [40087,562], + [40089,886], + [40091,461], + [40093,110], + [40095,277], + [40097,787], + [40099,232], + [40101,1631], + [40103,200], + [40105,244], + [40107,231], + [40109,14310], + [40111,886], + [40113,843], + [40115,836], + [40117,334], + [40119,1395], + [40121,876], + [40123,719], + [40125,1365], + [40127,257], + [40129,51], + [40131,1518], + [40133,577], + [40135,1040], + [40137,785], + [40139,295], + [40141,161], + [40143,11227], + [40145,1240], + [40147,929], + [40149,180], + [40151,261], + [40153,316], + [41001,422], + [41003,1747], + [41005,8968], + [41007,929], + [41009,1354], + [41011,1855], + [41013,607], + [41015,621], + [41017,4050], + [41019,3614], + [41021,47], + [41023,276], + [41025,242], + [41027,581], + [41029,5723], + [41031,627], + [41033,2457], + [41035,2115], + [41037,264], + [41039,9403], + [41041,1238], + [41043,3386], + [41045,716], + [41047,8182], + [41049,290], + [41051,18475], + [41053,1890], + [41055,45], + [41057,612], + [41059,2123], + [41061,673], + [41063,221], + [41065,650], + [41067,12231], + [41069,34], + [41071,2328], + [42001,1864], + [42003,26233], + [42005,1642], + [42007,4029], + [42009,1330], + [42011,8621], + [42013,2729], + [42015,1459], + [42017,13226], + [42019,3893], + [42021,3633], + [42023,154], + [42025,1668], + [42027,2588], + [42029,8357], + [42031,967], + [42033,2229], + [42035,1004], + [42037,1777], + [42039,2113], + [42041,4020], + [42043,5314], + [42045,11526], + [42047,824], + [42049,6785], + [42051,3742], + [42053,157], + [42055,2738], + [42057,452], + [42059,905], + [42061,1143], + [42063,2127], + [42065,1067], + [42067,526], + [42069,5117], + [42071,9216], + [42073,2299], + [42075,2496], + [42077,7737], + [42079,7937], + [42081,2920], + [42083,1085], + [42085,3074], + [42087,1176], + [42089,4005], + [42091,14930], + [42093,355], + [42095,6700], + [42097,2404], + [42099,995], + [42101,37791], + [42103,1497], + [42105,560], + [42107,3686], + [42109,921], + [42111,2138], + [42113,138], + [42115,940], + [42117,1115], + [42119,930], + [42121,1282], + [42123,976], + [42125,4765], + [42127,1075], + [42129,8508], + [42131,759], + [42133,8568], + [44001,1244], + [44003,4890], + [44005,2061], + [44007,18411], + [44009,3166], + [45001,931], + [45003,4001], + [45005,366], + [45007,4908], + [45009,568], + [45011,822], + [45013,2789], + [45015,3718], + [45017,431], + [45019,7554], + [45021,1714], + [45023,1687], + [45025,1431], + [45027,1061], + [45029,1002], + [45031,2008], + [45033,1181], + [45035,2719], + [45037,694], + [45039,944], + [45041,3799], + [45043,1799], + [45045,10346], + [45047,2137], + [45049,525], + [45051,6528], + [45053,460], + [45055,1588], + [45057,2855], + [45059,2389], + [45061,661], + [45063,5393], + [45065,348], + [45067,1482], + [45069,1406], + [45071,1011], + [45073,2076], + [45075,3271], + [45077,2945], + [45079,9401], + [45081,484], + [45083,7579], + [45085,3134], + [45087,1046], + [45089,1373], + [45091,5644], + [46003,40], + [46005,231], + [46007,56], + [46009,117], + [46011,425], + [46013,490], + [46015,73], + [46017,54], + [46019,143], + [46021,26], + [46023,135], + [46025,66], + [46027,191], + [46029,444], + [46031,76], + [46033,130], + [46035,276], + [46037,137], + [46039,93], + [46041,241], + [46043,42], + [46045,52], + [46047,121], + [46049,35], + [46051,142], + [46053,76], + [46055,29], + [46057,84], + [46059,51], + [46061,59], + [46063,19], + [46065,238], + [46067,114], + [46069,24], + [46071,64], + [46073,33], + [46075,15], + [46077,84], + [46079,199], + [46081,341], + [46083,478], + [46085,85], + [46087,76], + [46089,47], + [46091,87], + [46093,352], + [46095,39], + [46097,42], + [46099,2490], + [46101,151], + [46102,"NA"], + [46103,1462], + [46105,48], + [46107,38], + [46109,196], + [46111,36], + [46115,107], + [46117,44], + [46119,22], + [46121,197], + [46123,87], + [46125,127], + [46127,246], + [46129,106], + [46135,315], + [46137,51], + [47001,1518], + [47003,1104], + [47005,427], + [47007,286], + [47009,2477], + [47011,2164], + [47013,908], + [47015,312], + [47017,872], + [47019,1443], + [47021,787], + [47023,416], + [47025,710], + [47027,280], + [47029,1042], + [47031,1180], + [47033,405], + [47035,1274], + [47037,12432], + [47039,323], + [47041,463], + [47043,972], + [47045,869], + [47047,1092], + [47049,494], + [47051,997], + [47053,1457], + [47055,838], + [47057,537], + [47059,2185], + [47061,355], + [47063,1436], + [47065,6666], + [47067,139], + [47069,760], + [47071,654], + [47073,1209], + [47075,690], + [47077,785], + [47079,878], + [47081,547], + [47083,212], + [47085,507], + [47087,340], + [47089,1250], + [47091,415], + [47093,7839], + [47095,159], + [47097,690], + [47099,1356], + [47101,396], + [47103,623], + [47105,905], + [47107,1376], + [47109,744], + [47111,631], + [47113,2417], + [47115,776], + [47117,983], + [47119,2879], + [47121,307], + [47123,1149], + [47125,3241], + [47127,132], + [47129,491], + [47131,871], + [47133,735], + [47135,241], + [47137,157], + [47139,359], + [47141,1614], + [47143,764], + [47145,1191], + [47147,1441], + [47149,4841], + [47151,615], + [47153,299], + [47155,2395], + [47157,22574], + [47159,489], + [47161,360], + [47163,2941], + [47165,3255], + [47167,1455], + [47169,209], + [47171,441], + [47173,391], + [47175,149], + [47177,1142], + [47179,2485], + [47181,491], + [47183,1023], + [47185,641], + [47187,3229], + [47189,2320], + [48001,1009], + [48003,213], + [48005,1720], + [48007,442], + [48009,161], + [48011,36], + [48013,760], + [48015,478], + [48017,140], + [48019,360], + [48021,1380], + [48023,76], + [48025,655], + [48027,5270], + [48029,30030], + [48031,155], + [48033,15], + [48035,346], + [48037,2011], + [48039,6011], + [48041,3162], + [48043,171], + [48045,30], + [48047,164], + [48049,752], + [48051,296], + [48053,748], + [48055,680], + [48057,408], + [48059,233], + [48061,8378], + [48063,250], + [48065,103], + [48067,693], + [48069,126], + [48071,637], + [48073,965], + [48075,145], + [48077,215], + [48079,73], + [48081,76], + [48083,151], + [48085,15028], + [48087,51], + [48089,372], + [48091,1868], + [48093,243], + [48095,65], + [48097,767], + [48099,1360], + [48101,33], + [48103,66], + [48105,60], + [48107,124], + [48109,47], + [48111,90], + [48113,51767], + [48115,262], + [48117,308], + [48119,108], + [48121,12968], + [48123,350], + [48125,45], + [48127,247], + [48129,78], + [48131,250], + [48133,348], + [48135,2225], + [48137,39], + [48139,2955], + [48141,16853], + [48143,641], + [48145,353], + [48147,684], + [48149,381], + [48151,77], + [48153,161], + [48155,25], + [48157,10116], + [48159,207], + [48161,357], + [48163,315], + [48165,236], + [48167,6287], + [48169,82], + [48171,356], + [48173,21], + [48175,129], + [48177,366], + [48179,374], + [48181,2520], + [48183,2345], + [48185,480], + [48187,2079], + [48189,750], + [48191,74], + [48193,140], + [48195,75], + [48197,83], + [48199,1178], + [48201,80209], + [48203,1411], + [48205,73], + [48207,107], + [48209,2706], + [48211,54], + [48213,1501], + [48215,17641], + [48217,710], + [48219,407], + [48221,968], + [48223,644], + [48225,457], + [48227,562], + [48229,76], + [48231,1717], + [48233,437], + [48235,27], + [48237,150], + [48239,248], + [48241,864], + [48243,39], + [48245,6076], + [48247,102], + [48249,830], + [48251,2948], + [48253,357], + [48255,287], + [48257,2098], + [48259,530], + [48261,7], + [48263,14], + [48265,774], + [48267,74], + [48269,8], + [48271,63], + [48273,653], + [48275,66], + [48277,1110], + [48279,277], + [48281,369], + [48283,133], + [48285,313], + [48287,305], + [48289,310], + [48291,1584], + [48293,431], + [48295,47], + [48297,193], + [48299,322], + [48301,3], + [48303,4838], + [48305,130], + [48307,141], + [48309,4622], + [48311,17], + [48313,229], + [48315,230], + [48317,76], + [48319,65], + [48321,972], + [48323,2250], + [48325,803], + [48327,37], + [48329,2020], + [48331,506], + [48333,83], + [48335,168], + [48337,358], + [48339,7748], + [48341,307], + [48343,314], + [48345,27], + [48347,1243], + [48349,1003], + [48351,368], + [48353,275], + [48355,6687], + [48357,136], + [48359,36], + [48361,2096], + [48363,506], + [48365,467], + [48367,2074], + [48369,136], + [48371,274], + [48373,962], + [48375,2148], + [48377,284], + [48379,215], + [48381,1949], + [48383,49], + [48385,53], + [48387,299], + [48389,211], + [48391,142], + [48393,13], + [48395,344], + [48397,1435], + [48399,192], + [48401,963], + [48403,271], + [48405,188], + [48407,512], + [48409,1408], + [48411,114], + [48413,49], + [48415,274], + [48417,53], + [48419,510], + [48421,46], + [48423,4011], + [48425,171], + [48427,2242], + [48429,156], + [48431,22], + [48433,28], + [48435,65], + [48437,148], + [48439,36823], + [48441,2239], + [48443,18], + [48445,260], + [48447,36], + [48449,530], + [48451,1889], + [48453,18943], + [48455,277], + [48457,437], + [48459,760], + [48461,50], + [48463,571], + [48465,1090], + [48467,977], + [48469,1523], + [48471,1210], + [48473,716], + [48475,178], + [48477,583], + [48479,4166], + [48481,850], + [48483,76], + [48485,2575], + [48487,257], + [48489,607], + [48491,7094], + [48493,734], + [48495,105], + [48497,1129], + [48499,800], + [48501,125], + [48503,305], + [48505,261], + [48507,391], + [49001,80], + [49003,626], + [49005,1244], + [49007,352], + [49009,18], + [49011,3636], + [49013,207], + [49015,172], + [49017,125], + [49019,238], + [49021,608], + [49023,129], + [49025,110], + [49027,155], + [49029,105], + [49031,21], + [49033,29], + [49035,13767], + [49037,258], + [49039,337], + [49041,259], + [49043,542], + [49045,757], + [49047,357], + [49049,5416], + [49051,273], + [49053,1744], + [49055,57], + [49057,3454], + [50001,831], + [50003,827], + [50005,747], + [50007,2975], + [50009,172], + [50011,1123], + [50013,229], + [50015,717], + [50017,615], + [50019,875], + [50021,1560], + [50023,1393], + [50025,1005], + [50027,1103], + [51001,772], + [51003,1149], + [51005,304], + [51007,181], + [51009,540], + [51011,272], + [51013,2527], + [51015,979], + [51017,93], + [51019,1124], + [51021,128], + [51023,459], + [51025,330], + [51027,422], + [51029,242], + [51031,933], + [51033,517], + [51035,785], + [51036,149], + [51037,280], + [51041,4350], + [51043,215], + [51045,95], + [51047,728], + [51049,147], + [51051,303], + [51053,442], + [51057,201], + [51059,12645], + [51061,925], + [51063,248], + [51065,326], + [51067,879], + [51069,1217], + [51071,366], + [51073,510], + [51075,266], + [51077,364], + [51079,222], + [51081,193], + [51083,981], + [51085,1350], + [51087,4494], + [51089,1416], + [51091,38], + [51093,532], + [51095,772], + [51097,116], + [51099,329], + [51101,229], + [51103,232], + [51105,399], + [51107,3439], + [51109,469], + [51111,250], + [51113,196], + [51115,113], + [51117,667], + [51119,151], + [51121,1419], + [51125,212], + [51127,256], + [51131,242], + [51133,258], + [51135,255], + [51137,493], + [51139,573], + [51141,367], + [51143,1770], + [51145,337], + [51147,416], + [51149,474], + [51153,4943], + [51155,976], + [51157,108], + [51159,152], + [51161,1234], + [51163,328], + [51165,1033], + [51167,607], + [51169,454], + [51171,637], + [51173,821], + [51175,276], + [51177,1639], + [51179,1687], + [51181,127], + [51183,200], + [51185,914], + [51187,592], + [51191,1214], + [51193,349], + [51195,687], + [51197,691], + [51199,769], + [51510,1992], + [51520,409], + [51530,121], + [51540,650], + [51550,3444], + [51570,299], + [51580,159], + [51590,1459], + [51595,151], + [51600,352], + [51610,205], + [51620,181], + [51630,557], + [51640,176], + [51650,2440], + [51660,662], + [51670,487], + [51678,109], + [51680,1260], + [51683,576], + [51685,167], + [51690,487], + [51700,3124], + [51710,4086], + [51720,64], + [51730,881], + [51735,144], + [51740,1945], + [51750,314], + [51760,4327], + [51770,1742], + [51775,395], + [51790,358], + [51800,1307], + [51810,6124], + [51820,348], + [51830,287], + [51840,460], + [53001,526], + [53003,531], + [53005,4705], + [53007,2232], + [53009,1966], + [53011,13193], + [53013,114], + [53015,3088], + [53017,1103], + [53019,264], + [53021,2255], + [53023,55], + [53025,2629], + [53027,2485], + [53029,1823], + [53031,728], + [53033,34024], + [53035,6061], + [53037,1095], + [53039,728], + [53041,2450], + [53043,275], + [53045,1646], + [53047,1448], + [53049,702], + [53051,416], + [53053,20617], + [53055,326], + [53057,3064], + [53059,377], + [53061,12791], + [53063,12436], + [53065,1486], + [53067,6276], + [53069,123], + [53071,1569], + [53073,4977], + [53075,865], + [53077,8412], + [54001,367], + [54003,1891], + [54005,446], + [54007,330], + [54009,650], + [54011,1861], + [54013,194], + [54015,245], + [54017,138], + [54019,987], + [54021,126], + [54023,278], + [54025,945], + [54027,350], + [54029,830], + [54031,304], + [54033,1310], + [54035,585], + [54037,812], + [54039,3684], + [54041,377], + [54043,436], + [54045,676], + [54047,515], + [54049,1113], + [54051,786], + [54053,714], + [54055,1043], + [54057,631], + [54059,501], + [54061,1490], + [54063,279], + [54065,334], + [54067,538], + [54069,889], + [54071,141], + [54073,181], + [54075,273], + [54077,641], + [54079,1022], + [54081,1455], + [54083,666], + [54085,237], + [54087,360], + [54089,285], + [54091,338], + [54093,182], + [54095,228], + [54097,477], + [54099,832], + [54101,191], + [54103,433], + [54105,148], + [54107,1922], + [54109,504], + [55001,666], + [55003,544], + [55005,1479], + [55007,539], + [55009,6391], + [55011,360], + [55013,556], + [55015,1215], + [55017,1821], + [55019,1018], + [55021,1572], + [55023,527], + [55025,10136], + [55027,2384], + [55029,921], + [55031,1160], + [55033,1168], + [55035,2402], + [55037,149], + [55039,2689], + [55041,359], + [55043,1357], + [55045,957], + [55047,571], + [55049,636], + [55051,246], + [55053,557], + [55055,2056], + [55057,803], + [55059,4336], + [55061,543], + [55063,2524], + [55065,386], + [55067,658], + [55069,880], + [55071,2437], + [55073,3320], + [55075,1395], + [55077,484], + [55078,172], + [55079,27239], + [55081,1110], + [55083,1267], + [55085,1200], + [55087,4510], + [55089,1832], + [55091,209], + [55093,1039], + [55095,1507], + [55097,1881], + [55099,421], + [55101,5889], + [55103,520], + [55105,4741], + [55107,534], + [55109,2326], + [55111,1655], + [55113,650], + [55115,1166], + [55117,2789], + [55119,600], + [55121,731], + [55123,740], + [55125,741], + [55127,2592], + [55129,541], + [55131,3182], + [55133,8662], + [55135,1500], + [55137,743], + [55139,4269], + [55141,2222], + [56001,448], + [56003,197], + [56005,525], + [56007,238], + [56009,196], + [56011,93], + [56013,672], + [56015,190], + [56017,78], + [56019,129], + [56021,1485], + [56023,224], + [56025,1038], + [56027,36], + [56029,443], + [56031,156], + [56033,443], + [56035,96], + [56037,528], + [56039,317], + [56041,295], + [56043,146], + [56045,100] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2008.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2008.json new file mode 100644 index 0000000..c3b779b --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2008.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2008"], + [1001,1267], + [1003,3851], + [1005,894], + [1007,508], + [1009,1245], + [1011,383], + [1013,773], + [1015,3096], + [1017,2164], + [1019,688], + [1021,992], + [1023,423], + [1025,932], + [1027,454], + [1029,332], + [1031,1014], + [1033,1637], + [1035,457], + [1037,385], + [1039,997], + [1041,359], + [1043,1908], + [1045,1072], + [1047,1715], + [1049,1787], + [1051,1849], + [1053,1091], + [1055,2732], + [1057,514], + [1059,993], + [1061,620], + [1063,279], + [1065,518], + [1067,569], + [1069,2272], + [1071,1656], + [1073,16823], + [1075,455], + [1077,2465], + [1079,1030], + [1081,3394], + [1083,1763], + [1085,529], + [1087,678], + [1089,7014], + [1091,590], + [1093,1014], + [1095,1980], + [1097,10643], + [1099,893], + [1101,6280], + [1103,2983], + [1105,406], + [1107,566], + [1109,771], + [1111,704], + [1113,1734], + [1115,1831], + [1117,3781], + [1119,413], + [1121,2759], + [1123,1304], + [1125,4207], + [1127,1645], + [1129,581], + [1131,486], + [1133,864], + [2013,99], + [2016,178], + [2020,8276], + [2050,963], + [2060,49], + [2068,98], + [2070,193], + [2090,2795], + [2100,120], + [2105,"NA"], + [2110,902], + [2122,2154], + [2130,492], + [2150,438], + [2158,"NA"], + [2164,78], + [2170,3160], + [2180,414], + [2185,218], + [2188,345], + [2195,"NA"], + [2198,"NA"], + [2220,268], + [2230,"NA"], + [2240,314], + [2261,443], + [2275,"NA"], + [2282,24], + [2290,393], + [4001,2472], + [4003,3533], + [4005,4100], + [4007,1444], + [4009,1142], + [4011,234], + [4012,583], + [4013,106127], + [4015,7107], + [4017,3974], + [4019,27669], + [4021,9035], + [4023,1972], + [4025,6065], + [4027,15502], + [5001,1192], + [5003,720], + [5005,1069], + [5007,4427], + [5009,932], + [5011,407], + [5013,162], + [5015,641], + [5017,411], + [5019,656], + [5021,539], + [5023,684], + [5025,243], + [5027,763], + [5029,566], + [5031,2268], + [5033,1394], + [5035,1794], + [5037,585], + [5039,283], + [5041,520], + [5043,672], + [5045,2677], + [5047,382], + [5049,274], + [5051,2415], + [5053,454], + [5055,1257], + [5057,622], + [5059,1004], + [5061,354], + [5063,1199], + [5065,368], + [5067,615], + [5069,2707], + [5071,551], + [5073,217], + [5075,521], + [5077,309], + [5079,405], + [5081,265], + [5083,682], + [5085,1458], + [5087,342], + [5089,437], + [5091,819], + [5093,1696], + [5095,247], + [5097,238], + [5099,291], + [5101,200], + [5103,767], + [5105,271], + [5107,649], + [5109,310], + [5111,693], + [5113,460], + [5115,1496], + [5117,252], + [5119,9122], + [5121,622], + [5123,979], + [5125,2230], + [5127,233], + [5129,197], + [5131,3086], + [5133,310], + [5135,477], + [5137,312], + [5139,1229], + [5141,469], + [5143,4392], + [5145,1988], + [5147,282], + [5149,483], + [6001,46985], + [6003,49], + [6005,1369], + [6007,8700], + [6009,1790], + [6011,1453], + [6013,32573], + [6015,1003], + [6017,6341], + [6019,45353], + [6021,1278], + [6023,4373], + [6025,16337], + [6027,601], + [6029,35333], + [6031,6224], + [6033,2615], + [6035,1228], + [6037,373856], + [6039,6159], + [6041,6231], + [6043,699], + [6045,2983], + [6047,12908], + [6049,382], + [6051,509], + [6053,17943], + [6055,3869], + [6057,3320], + [6059,85827], + [6061,11491], + [6063,1038], + [6065,78198], + [6067,49111], + [6069,2405], + [6071,69268], + [6073,93241], + [6075,24008], + [6077,30577], + [6079,7880], + [6081,18199], + [6083,11951], + [6085,52290], + [6087,10777], + [6089,8320], + [6091,168], + [6093,1962], + [6095,14556], + [6097,14979], + [6099,25695], + [6101,5078], + [6103,2321], + [6105,622], + [6107,21546], + [6109,2064], + [6111,27015], + [6113,7287], + [6115,3304], + [8001,12192], + [8003,437], + [8005,15276], + [8007,330], + [8009,76], + [8011,146], + [8013,7364], + [8014,1393], + [8015,376], + [8017,34], + [8019,259], + [8021,265], + [8023,99], + [8025,134], + [8027,97], + [8029,723], + [8031,17382], + [8033,71], + [8035,6727], + [8037,1131], + [8039,624], + [8041,16992], + [8043,1251], + [8045,1143], + [8047,146], + [8049,338], + [8051,341], + [8053,21], + [8055,220], + [8057,35], + [8059,14423], + [8061,31], + [8063,146], + [8065,188], + [8067,1133], + [8069,7427], + [8071,396], + [8073,107], + [8075,433], + [8077,3182], + [8079,26], + [8081,332], + [8083,674], + [8085,1039], + [8087,598], + [8089,516], + [8091,111], + [8093,461], + [8095,76], + [8097,382], + [8099,293], + [8101,4457], + [8103,133], + [8105,363], + [8107,529], + [8109,219], + [8111,32], + [8113,214], + [8115,49], + [8117,637], + [8119,675], + [8121,86], + [8123,6217], + [8125,174], + [9001,24284], + [9003,27790], + [9005,5603], + [9007,4562], + [9009,28044], + [9011,8130], + [9013,4104], + [9015,4257], + [10001,3703], + [10003,13669], + [10005,4756], + [11001,21352], + [12001,5821], + [12003,714], + [12005,5027], + [12007,619], + [12009,18098], + [12011,55958], + [12013,318], + [12015,5803], + [12017,4727], + [12019,5287], + [12021,10554], + [12023,1797], + [12027,1020], + [12029,416], + [12031,28391], + [12033,8508], + [12035,3166], + [12037,235], + [12039,1323], + [12041,455], + [12043,330], + [12045,411], + [12047,350], + [12049,806], + [12051,1946], + [12053,5585], + [12055,3023], + [12057,39202], + [12059,468], + [12061,5192], + [12063,1182], + [12065,353], + [12067,139], + [12069,9028], + [12071,23878], + [12073,6846], + [12075,1225], + [12077,168], + [12079,504], + [12081,10337], + [12083,11155], + [12085,4550], + [12086,59187], + [12087,1940], + [12089,2015], + [12091,4592], + [12093,1479], + [12095,36433], + [12097,8986], + [12099,42464], + [12101,15146], + [12103,29530], + [12105,18937], + [12107,2439], + [12109,4996], + [12111,11133], + [12113,4070], + [12115,12337], + [12117,13973], + [12119,1789], + [12121,1029], + [12123,614], + [12125,264], + [12127,17266], + [12129,738], + [12131,1445], + [12133,647], + [13001,653], + [13003,282], + [13005,299], + [13007,107], + [13009,1656], + [13011,499], + [13013,2229], + [13015,3344], + [13017,817], + [13019,604], + [13021,4890], + [13023,393], + [13025,491], + [13027,479], + [13029,841], + [13031,2017], + [13033,869], + [13035,782], + [13037,193], + [13039,1195], + [13043,273], + [13045,3621], + [13047,1830], + [13049,309], + [13051,7602], + [13053,312], + [13055,1107], + [13057,5923], + [13059,3367], + [13061,107], + [13063,10368], + [13065,201], + [13067,21361], + [13069,1381], + [13071,1247], + [13073,2897], + [13075,561], + [13077,3507], + [13079,378], + [13081,786], + [13083,479], + [13085,669], + [13087,924], + [13089,25055], + [13091,631], + [13093,323], + [13095,2940], + [13097,4277], + [13099,367], + [13101,95], + [13103,1401], + [13105,841], + [13107,796], + [13109,316], + [13111,684], + [13113,2787], + [13115,3251], + [13117,4239], + [13119,731], + [13121,32008], + [13123,827], + [13125,77], + [13127,2094], + [13129,1973], + [13131,719], + [13133,517], + [13135,23784], + [13137,1190], + [13139,5029], + [13141,437], + [13143,849], + [13145,770], + [13147,940], + [13149,375], + [13151,6067], + [13153,3643], + [13155,420], + [13157,1720], + [13159,547], + [13161,519], + [13163,704], + [13165,449], + [13167,296], + [13169,838], + [13171,588], + [13173,245], + [13175,1592], + [13177,813], + [13179,1518], + [13181,277], + [13183,288], + [13185,2989], + [13187,940], + [13189,845], + [13191,324], + [13193,434], + [13195,848], + [13197,206], + [13199,817], + [13201,178], + [13205,720], + [13207,788], + [13209,333], + [13211,575], + [13213,1507], + [13215,5328], + [13217,3585], + [13219,764], + [13221,414], + [13223,4066], + [13225,859], + [13227,922], + [13229,468], + [13231,543], + [13233,1360], + [13235,245], + [13237,740], + [13239,89], + [13241,443], + [13243,235], + [13245,6597], + [13247,2820], + [13249,125], + [13251,578], + [13253,300], + [13255,2452], + [13257,855], + [13259,181], + [13261,1129], + [13263,210], + [13265,69], + [13267,614], + [13269,257], + [13271,506], + [13273,293], + [13275,1284], + [13277,1356], + [13279,1006], + [13281,346], + [13283,246], + [13285,2492], + [13287,389], + [13289,330], + [13291,652], + [13293,995], + [13295,2204], + [13297,2702], + [13299,1006], + [13301,255], + [13303,647], + [13305,942], + [13307,68], + [13309,207], + [13311,695], + [13313,3508], + [13315,270], + [13317,389], + [13319,327], + [13321,686], + [15001,5090], + [15003,17083], + [15005,"NA"], + [15007,1584], + [15009,3814], + [16001,9586], + [16003,203], + [16005,1878], + [16007,110], + [16009,412], + [16011,901], + [16013,540], + [16015,208], + [16017,1354], + [16019,1800], + [16021,403], + [16023,59], + [16025,28], + [16027,5459], + [16029,144], + [16031,432], + [16033,21], + [16035,353], + [16037,112], + [16039,646], + [16041,192], + [16043,286], + [16045,503], + [16047,302], + [16049,543], + [16051,432], + [16053,425], + [16055,4116], + [16057,727], + [16059,251], + [16061,66], + [16063,145], + [16065,598], + [16067,462], + [16069,854], + [16071,81], + [16073,137], + [16075,624], + [16077,188], + [16079,521], + [16081,155], + [16083,1545], + [16085,431], + [16087,269], + [17001,1849], + [17003,294], + [17005,583], + [17007,2482], + [17009,133], + [17011,1168], + [17013,186], + [17015,552], + [17017,400], + [17019,5847], + [17021,1167], + [17023,676], + [17025,487], + [17027,1179], + [17029,1691], + [17031,168497], + [17033,634], + [17035,403], + [17037,3485], + [17039,510], + [17041,611], + [17043,26309], + [17045,707], + [17047,208], + [17049,1014], + [17051,799], + [17053,436], + [17055,1647], + [17057,1174], + [17059,209], + [17061,415], + [17063,1889], + [17065,288], + [17067,670], + [17069,158], + [17071,280], + [17073,1668], + [17075,1110], + [17077,1823], + [17079,337], + [17081,1285], + [17083,745], + [17085,744], + [17087,408], + [17089,16429], + [17091,4661], + [17093,3435], + [17095,1640], + [17097,23666], + [17099,4563], + [17101,608], + [17103,1243], + [17105,1129], + [17107,881], + [17109,920], + [17111,10431], + [17113,4434], + [17115,3710], + [17117,1815], + [17119,9000], + [17121,1528], + [17123,391], + [17125,577], + [17127,519], + [17129,379], + [17131,595], + [17133,962], + [17135,1148], + [17137,1084], + [17139,405], + [17141,2139], + [17143,5610], + [17145,910], + [17147,439], + [17149,492], + [17151,160], + [17153,266], + [17155,224], + [17157,1003], + [17159,485], + [17161,4330], + [17163,9351], + [17165,1005], + [17167,5989], + [17169,220], + [17171,161], + [17173,721], + [17175,188], + [17177,1712], + [17179,3841], + [17181,710], + [17183,2883], + [17185,441], + [17187,515], + [17189,495], + [17191,523], + [17193,496], + [17195,2035], + [17197,22166], + [17199,2439], + [17201,12439], + [17203,920], + [18001,1187], + [18003,10817], + [18005,1835], + [18007,231], + [18009,495], + [18011,1232], + [18013,430], + [18015,597], + [18017,1180], + [18019,2989], + [18021,911], + [18023,923], + [18025,405], + [18027,582], + [18029,1537], + [18031,795], + [18033,1499], + [18035,3713], + [18037,858], + [18039,8395], + [18041,1145], + [18043,1956], + [18045,461], + [18047,783], + [18049,674], + [18051,874], + [18053,2460], + [18055,987], + [18057,5529], + [18059,1753], + [18061,1157], + [18063,3186], + [18065,1588], + [18067,2891], + [18069,1347], + [18071,1161], + [18073,918], + [18075,681], + [18077,1018], + [18079,987], + [18081,3513], + [18083,1016], + [18085,2752], + [18087,1430], + [18089,14167], + [18091,3283], + [18093,1830], + [18095,4261], + [18097,26077], + [18099,1693], + [18101,250], + [18103,1319], + [18105,3168], + [18107,942], + [18109,2160], + [18111,436], + [18113,1928], + [18115,189], + [18117,663], + [18119,730], + [18121,485], + [18123,502], + [18125,340], + [18127,4036], + [18129,650], + [18131,383], + [18133,1191], + [18135,877], + [18137,837], + [18139,569], + [18141,8727], + [18143,720], + [18145,1395], + [18147,532], + [18149,830], + [18151,1212], + [18153,594], + [18155,287], + [18157,3939], + [18159,550], + [18161,223], + [18163,4749], + [18165,565], + [18167,3239], + [18169,1242], + [18171,197], + [18173,1439], + [18175,937], + [18177,2365], + [18179,831], + [18181,717], + [18183,1136], + [19001,178], + [19003,90], + [19005,510], + [19007,333], + [19009,146], + [19011,607], + [19013,3042], + [19015,566], + [19017,497], + [19019,459], + [19021,384], + [19023,398], + [19025,186], + [19027,355], + [19029,352], + [19031,416], + [19033,1235], + [19035,230], + [19037,341], + [19039,229], + [19041,336], + [19043,549], + [19045,1195], + [19047,313], + [19049,1116], + [19051,205], + [19053,164], + [19055,431], + [19057,1225], + [19059,429], + [19061,2301], + [19063,237], + [19065,586], + [19067,507], + [19069,261], + [19071,177], + [19073,200], + [19075,248], + [19077,254], + [19079,332], + [19081,382], + [19083,398], + [19085,328], + [19087,548], + [19089,247], + [19091,191], + [19093,163], + [19095,366], + [19097,589], + [19099,1366], + [19101,379], + [19103,2396], + [19105,475], + [19107,258], + [19109,360], + [19111,1149], + [19113,4932], + [19115,308], + [19117,193], + [19119,182], + [19121,403], + [19123,540], + [19125,719], + [19127,1060], + [19129,299], + [19131,236], + [19133,250], + [19135,189], + [19137,312], + [19139,1057], + [19141,261], + [19143,131], + [19145,393], + [19147,232], + [19149,482], + [19151,135], + [19153,9803], + [19155,2068], + [19157,481], + [19159,111], + [19161,216], + [19163,3850], + [19165,233], + [19167,559], + [19169,1555], + [19171,479], + [19173,136], + [19175,308], + [19177,193], + [19179,952], + [19181,982], + [19183,492], + [19185,137], + [19187,877], + [19189,382], + [19191,539], + [19193,2162], + [19195,240], + [19197,318], + [20001,339], + [20003,209], + [20005,408], + [20007,90], + [20009,518], + [20011,414], + [20013,242], + [20015,1443], + [20017,61], + [20019,85], + [20021,582], + [20023,47], + [20025,40], + [20027,177], + [20029,205], + [20031,255], + [20033,36], + [20035,809], + [20037,1060], + [20039,55], + [20041,426], + [20043,250], + [20045,2598], + [20047,49], + [20049,83], + [20051,529], + [20053,128], + [20055,679], + [20057,550], + [20059,774], + [20061,635], + [20063,42], + [20065,51], + [20067,115], + [20069,87], + [20071,28], + [20073,192], + [20075,44], + [20077,110], + [20079,710], + [20081,60], + [20083,32], + [20085,396], + [20087,506], + [20089,62], + [20091,13908], + [20093,74], + [20095,150], + [20097,49], + [20099,608], + [20101,41], + [20103,1912], + [20105,72], + [20107,311], + [20109,46], + [20111,1106], + [20113,594], + [20115,250], + [20117,224], + [20119,71], + [20121,840], + [20123,118], + [20125,1005], + [20127,140], + [20129,50], + [20131,181], + [20133,454], + [20135,56], + [20137,91], + [20139,511], + [20141,77], + [20143,124], + [20145,122], + [20147,132], + [20149,387], + [20151,197], + [20153,43], + [20155,1418], + [20157,93], + [20159,222], + [20161,1312], + [20163,124], + [20165,66], + [20167,135], + [20169,1212], + [20171,73], + [20173,11535], + [20175,349], + [20177,4657], + [20179,41], + [20181,117], + [20183,87], + [20185,80], + [20187,37], + [20189,78], + [20191,541], + [20193,131], + [20195,57], + [20197,168], + [20199,41], + [20201,121], + [20203,40], + [20205,310], + [20207,95], + [20209,5753], + [21001,605], + [21003,589], + [21005,695], + [21007,257], + [21009,1191], + [21011,449], + [21013,852], + [21015,3424], + [21017,555], + [21019,1342], + [21021,860], + [21023,307], + [21025,409], + [21027,682], + [21029,2734], + [21031,430], + [21033,436], + [21035,1036], + [21037,2684], + [21039,148], + [21041,413], + [21043,1085], + [21045,451], + [21047,2395], + [21049,1083], + [21051,704], + [21053,305], + [21055,263], + [21057,230], + [21059,2699], + [21061,401], + [21063,262], + [21065,478], + [21067,7270], + [21069,464], + [21071,1022], + [21073,1439], + [21075,207], + [21077,277], + [21079,495], + [21081,890], + [21083,1089], + [21085,1105], + [21087,425], + [21089,1093], + [21091,244], + [21093,2952], + [21095,890], + [21097,582], + [21099,541], + [21101,1393], + [21103,483], + [21105,147], + [21107,1690], + [21109,464], + [21111,22453], + [21113,1267], + [21115,654], + [21117,4977], + [21119,424], + [21121,972], + [21123,452], + [21125,1721], + [21127,502], + [21129,197], + [21131,293], + [21133,598], + [21135,526], + [21137,783], + [21139,287], + [21141,784], + [21143,250], + [21145,1793], + [21147,548], + [21149,323], + [21151,2354], + [21153,456], + [21155,658], + [21157,927], + [21159,267], + [21161,523], + [21163,888], + [21165,255], + [21167,656], + [21169,307], + [21171,392], + [21173,900], + [21175,476], + [21177,1119], + [21179,1570], + [21181,224], + [21183,798], + [21185,1554], + [21187,343], + [21189,123], + [21191,560], + [21193,764], + [21195,1502], + [21197,466], + [21199,1822], + [21201,60], + [21203,529], + [21205,740], + [21207,603], + [21209,1237], + [21211,1230], + [21213,600], + [21215,671], + [21217,820], + [21219,372], + [21221,482], + [21223,315], + [21225,501], + [21227,3101], + [21229,391], + [21231,694], + [21233,406], + [21235,1129], + [21237,226], + [21239,626], + [22001,1136], + [22003,554], + [22005,2234], + [22007,621], + [22009,993], + [22011,800], + [22013,399], + [22015,2460], + [22017,6902], + [22019,4228], + [22021,239], + [22023,158], + [22025,286], + [22027,415], + [22029,568], + [22031,845], + [22033,10264], + [22035,325], + [22037,442], + [22039,678], + [22041,598], + [22043,474], + [22045,1510], + [22047,864], + [22049,328], + [22051,9669], + [22053,603], + [22055,3850], + [22057,1762], + [22059,259], + [22061,1061], + [22063,2554], + [22065,372], + [22067,1070], + [22069,1061], + [22071,8082], + [22073,3723], + [22075,401], + [22077,513], + [22079,2878], + [22081,274], + [22083,583], + [22085,483], + [22087,791], + [22089,1167], + [22091,381], + [22093,685], + [22095,1289], + [22097,2037], + [22099,1022], + [22101,1161], + [22103,4465], + [22105,3016], + [22107,182], + [22109,2122], + [22111,561], + [22113,1082], + [22115,1017], + [22117,1044], + [22119,1271], + [22121,533], + [22123,467], + [22125,278], + [22127,371], + [23001,3219], + [23003,2446], + [23005,6627], + [23007,1009], + [23009,1799], + [23011,3376], + [23013,1105], + [23015,948], + [23017,1958], + [23019,4537], + [23021,620], + [23023,918], + [23025,1961], + [23027,1189], + [23029,1241], + [23031,5511], + [24001,1997], + [24003,10602], + [24005,18871], + [24009,1683], + [24011,878], + [24013,3473], + [24015,2587], + [24017,2791], + [24019,1118], + [24021,4460], + [24023,813], + [24025,5446], + [24027,4938], + [24029,524], + [24031,16282], + [24033,19452], + [24035,1068], + [24037,1877], + [24039,716], + [24041,801], + [24043,3749], + [24045,2719], + [24047,1996], + [24510,18127], + [25001,7334], + [25003,3885], + [25005,21232], + [25007,480], + [25009,22099], + [25011,2018], + [25013,15040], + [25015,4020], + [25017,37346], + [25019,286], + [25021,17492], + [25023,15299], + [25025,20217], + [25027,24290], + [26001,488], + [26003,400], + [26005,4052], + [26007,1307], + [26009,1084], + [26011,818], + [26013,573], + [26015,1915], + [26017,4111], + [26019,788], + [26021,6170], + [26023,1818], + [26025,5067], + [26027,1767], + [26029,1347], + [26031,1349], + [26033,1638], + [26035,1476], + [26037,2197], + [26039,595], + [26041,1625], + [26043,973], + [26045,3595], + [26047,1922], + [26049,20325], + [26051,1110], + [26053,633], + [26055,3555], + [26057,1777], + [26059,2125], + [26061,1338], + [26063,1434], + [26065,10562], + [26067,2478], + [26069,1143], + [26071,481], + [26073,2281], + [26075,6297], + [26077,8169], + [26079,734], + [26081,21275], + [26083,114], + [26085,439], + [26087,4071], + [26089,674], + [26091,4719], + [26093,5847], + [26095,250], + [26097,725], + [26099,33625], + [26101,1019], + [26103,2449], + [26105,1232], + [26107,1664], + [26109,809], + [26111,2626], + [26113,656], + [26115,6453], + [26117,2969], + [26119,549], + [26121,7446], + [26123,2000], + [26125,40300], + [26127,1438], + [26129,871], + [26131,297], + [26133,877], + [26135,487], + [26137,1191], + [26139,9071], + [26141,808], + [26143,1110], + [26145,7817], + [26147,7958], + [26149,2607], + [26151,2295], + [26153,432], + [26155,3408], + [26157,2774], + [26159,3190], + [26161,10481], + [26163,80094], + [26165,1544], + [27001,620], + [27003,10368], + [27005,1136], + [27007,1464], + [27009,1399], + [27011,155], + [27013,1646], + [27015,894], + [27017,1161], + [27019,2473], + [27021,1219], + [27023,371], + [27025,1869], + [27027,1192], + [27029,463], + [27031,174], + [27033,331], + [27035,2271], + [27037,11307], + [27039,574], + [27041,1011], + [27043,483], + [27045,668], + [27047,930], + [27049,1427], + [27051,215], + [27053,32313], + [27055,628], + [27057,723], + [27059,1504], + [27061,1751], + [27063,278], + [27065,822], + [27067,1168], + [27069,140], + [27071,503], + [27073,198], + [27075,326], + [27077,137], + [27079,1056], + [27081,165], + [27083,644], + [27085,1239], + [27087,174], + [27089,406], + [27091,562], + [27093,825], + [27095,1114], + [27097,1337], + [27099,939], + [27101,276], + [27103,863], + [27105,463], + [27107,199], + [27109,3553], + [27111,1806], + [27113,618], + [27115,1211], + [27117,249], + [27119,849], + [27121,324], + [27123,14293], + [27125,187], + [27127,438], + [27129,501], + [27131,1927], + [27133,191], + [27135,473], + [27137,6618], + [27139,3694], + [27141,3061], + [27143,541], + [27145,4639], + [27147,1055], + [27149,262], + [27151,318], + [27153,798], + [27155,96], + [27157,609], + [27159,531], + [27161,566], + [27163,6464], + [27165,357], + [27167,153], + [27169,1382], + [27171,4116], + [27173,297], + [28001,874], + [28003,1158], + [28005,363], + [28007,649], + [28009,318], + [28011,1289], + [28013,528], + [28015,343], + [28017,776], + [28019,270], + [28021,388], + [28023,533], + [28025,939], + [28027,915], + [28029,857], + [28031,520], + [28033,3649], + [28035,2068], + [28037,230], + [28039,705], + [28041,447], + [28043,701], + [28045,1019], + [28047,4697], + [28049,6862], + [28051,920], + [28053,418], + [28055,59], + [28057,806], + [28059,3518], + [28061,524], + [28063,366], + [28065,385], + [28067,1599], + [28069,326], + [28071,1158], + [28073,1116], + [28075,2241], + [28077,410], + [28079,565], + [28081,2594], + [28083,1185], + [28085,1013], + [28087,1957], + [28089,2344], + [28091,723], + [28093,1233], + [28095,1523], + [28097,388], + [28099,748], + [28101,612], + [28103,516], + [28105,1265], + [28107,1223], + [28109,1415], + [28111,411], + [28113,1087], + [28115,1015], + [28117,892], + [28119,317], + [28121,3050], + [28123,669], + [28125,210], + [28127,678], + [28129,416], + [28131,448], + [28133,1085], + [28135,495], + [28137,787], + [28139,873], + [28141,697], + [28143,465], + [28145,830], + [28147,419], + [28149,1419], + [28151,2091], + [28153,637], + [28155,313], + [28157,292], + [28159,596], + [28161,464], + [28163,878], + [29001,716], + [29003,479], + [29005,153], + [29007,773], + [29009,977], + [29011,496], + [29013,562], + [29015,576], + [29017,375], + [29019,3833], + [29021,2539], + [29023,1354], + [29025,290], + [29027,1217], + [29029,1406], + [29031,1986], + [29033,358], + [29035,214], + [29037,2994], + [29039,422], + [29041,245], + [29043,2015], + [29045,218], + [29047,6031], + [29049,614], + [29051,1804], + [29053,530], + [29055,979], + [29057,224], + [29059,563], + [29061,210], + [29063,325], + [29065,522], + [29067,409], + [29069,1133], + [29071,3959], + [29073,602], + [29075,157], + [29077,7095], + [29079,275], + [29081,224], + [29083,730], + [29085,334], + [29087,138], + [29089,305], + [29091,1126], + [29093,325], + [29095,23138], + [29097,2974], + [29099,7972], + [29101,1402], + [29103,110], + [29105,1357], + [29107,1003], + [29109,940], + [29111,267], + [29113,2115], + [29115,454], + [29117,367], + [29119,542], + [29121,469], + [29123,377], + [29125,300], + [29127,830], + [29129,88], + [29131,887], + [29133,423], + [29135,409], + [29137,303], + [29139,439], + [29141,704], + [29143,637], + [29145,1530], + [29147,543], + [29149,268], + [29151,456], + [29153,267], + [29155,613], + [29157,485], + [29159,1318], + [29161,1301], + [29163,528], + [29165,2341], + [29167,857], + [29169,1128], + [29171,136], + [29173,304], + [29175,806], + [29177,721], + [29179,197], + [29181,454], + [29183,10589], + [29185,301], + [29186,594], + [29187,2134], + [29189,31358], + [29195,656], + [29197,139], + [29199,169], + [29201,1305], + [29203,293], + [29205,176], + [29207,1162], + [29209,1290], + [29211,202], + [29213,2179], + [29215,777], + [29217,562], + [29219,1236], + [29221,1034], + [29223,395], + [29225,954], + [29227,63], + [29229,594], + [29510,12285], + [30001,210], + [30003,430], + [30005,136], + [30007,137], + [30009,229], + [30011,25], + [30013,1882], + [30015,96], + [30017,249], + [30019,30], + [30021,163], + [30023,256], + [30025,48], + [30027,284], + [30029,3115], + [30031,2152], + [30033,23], + [30035,536], + [30037,29], + [30039,87], + [30041,417], + [30043,277], + [30045,49], + [30047,881], + [30049,1419], + [30051,33], + [30053,850], + [30055,29], + [30057,193], + [30059,62], + [30061,137], + [30063,2962], + [30065,127], + [30067,477], + [30069,14], + [30071,112], + [30073,145], + [30075,34], + [30077,212], + [30079,25], + [30081,1233], + [30083,178], + [30085,294], + [30087,256], + [30089,489], + [30091,59], + [30093,865], + [30095,205], + [30097,78], + [30099,132], + [30101,86], + [30103,17], + [30105,158], + [30107,45], + [30109,19], + [30111,3128], + [31001,544], + [31003,109], + [31005,9], + [31007,10], + [31009,12], + [31011,85], + [31013,210], + [31015,36], + [31017,49], + [31019,697], + [31021,166], + [31023,142], + [31025,519], + [31027,122], + [31029,53], + [31031,80], + [31033,148], + [31035,100], + [31037,148], + [31039,144], + [31041,146], + [31043,458], + [31045,141], + [31047,501], + [31049,31], + [31051,108], + [31053,700], + [31055,10137], + [31057,30], + [31059,94], + [31061,54], + [31063,45], + [31065,74], + [31067,573], + [31069,28], + [31071,27], + [31073,33], + [31075,11], + [31077,38], + [31079,990], + [31081,143], + [31083,57], + [31085,18], + [31087,50], + [31089,165], + [31091,18], + [31093,115], + [31095,167], + [31097,93], + [31099,101], + [31101,130], + [31103,18], + [31105,65], + [31107,148], + [31109,4892], + [31111,649], + [31113,10], + [31115,13], + [31117,7], + [31119,627], + [31121,131], + [31123,90], + [31125,61], + [31127,158], + [31129,66], + [31131,319], + [31133,53], + [31135,41], + [31137,125], + [31139,118], + [31141,544], + [31143,86], + [31145,174], + [31147,186], + [31149,24], + [31151,287], + [31153,2562], + [31155,395], + [31157,723], + [31159,294], + [31161,84], + [31163,53], + [31165,24], + [31167,97], + [31169,91], + [31171,15], + [31173,202], + [31175,72], + [31177,353], + [31179,150], + [31181,60], + [31183,11], + [31185,261], + [32001,806], + [32003,65091], + [32005,1672], + [32007,1137], + [32009,24], + [32011,44], + [32013,402], + [32015,159], + [32017,102], + [32019,2214], + [32021,179], + [32023,1715], + [32027,176], + [32029,170], + [32031,15234], + [32033,225], + [32510,2037], + [33001,1335], + [33003,931], + [33005,1541], + [33007,854], + [33009,1536], + [33011,8838], + [33013,2956], + [33015,7394], + [33017,2524], + [33019,772], + [34001,9263], + [34003,20982], + [34005,11765], + [34007,15770], + [34009,4469], + [34011,5437], + [34013,23529], + [34015,8316], + [34017,18256], + [34019,2705], + [34021,9568], + [34023,20896], + [34025,15956], + [34027,10771], + [34029,15245], + [34031,15971], + [34033,1935], + [34035,7267], + [34037,4204], + [34039,15248], + [34041,2914], + [35001,13705], + [35003,82], + [35005,1164], + [35006,571], + [35007,291], + [35009,665], + [35011,33], + [35013,4213], + [35015,831], + [35017,613], + [35019,106], + [35021,12], + [35023,113], + [35025,836], + [35027,392], + [35028,300], + [35029,1494], + [35031,1476], + [35033,175], + [35035,1135], + [35037,193], + [35039,1117], + [35041,295], + [35043,2913], + [35045,2248], + [35047,659], + [35049,2935], + [35051,239], + [35053,338], + [35055,966], + [35057,384], + [35059,57], + [35061,1585], + [36001,7796], + [36003,1545], + [36005,39601], + [36007,5470], + [36009,2544], + [36011,2320], + [36013,3732], + [36015,2312], + [36017,1568], + [36019,2618], + [36021,1539], + [36023,1545], + [36025,1368], + [36027,7511], + [36029,27028], + [36031,1242], + [36033,1592], + [36035,1857], + [36037,1884], + [36039,1432], + [36041,192], + [36043,1912], + [36045,3362], + [36047,66645], + [36049,842], + [36051,1935], + [36053,2095], + [36055,20675], + [36057,1755], + [36059,33183], + [36061,45745], + [36063,7651], + [36065,5997], + [36067,12211], + [36069,2940], + [36071,9757], + [36073,1360], + [36075,4211], + [36077,1803], + [36079,2484], + [36081,56312], + [36083,4357], + [36085,12438], + [36087,7429], + [36089,3563], + [36091,5561], + [36093,3918], + [36095,1092], + [36097,589], + [36099,948], + [36101,2790], + [36103,40097], + [36105,2322], + [36107,1394], + [36109,2326], + [36111,4945], + [36113,2065], + [36115,1751], + [36117,2820], + [36119,23743], + [36121,1330], + [36123,648], + [37001,4532], + [37003,1267], + [37005,338], + [37007,903], + [37009,841], + [37011,501], + [37013,1474], + [37015,658], + [37017,1187], + [37019,3155], + [37021,5696], + [37023,3255], + [37025,4826], + [37027,2941], + [37029,244], + [37031,1742], + [37033,859], + [37035,5419], + [37037,1653], + [37039,909], + [37041,576], + [37043,298], + [37045,3992], + [37047,1856], + [37049,2487], + [37051,8133], + [37053,556], + [37055,1396], + [37057,5482], + [37059,1259], + [37061,1384], + [37063,6654], + [37065,2474], + [37067,9930], + [37069,1720], + [37071,7497], + [37073,256], + [37075,464], + [37077,1694], + [37079,606], + [37081,14953], + [37083,2122], + [37085,3143], + [37087,1546], + [37089,2323], + [37091,647], + [37093,1115], + [37095,184], + [37097,5008], + [37099,1048], + [37101,4396], + [37103,300], + [37105,1937], + [37107,1934], + [37109,2830], + [37111,1694], + [37113,960], + [37115,563], + [37117,764], + [37119,27756], + [37121,568], + [37123,920], + [37125,2217], + [37127,3458], + [37129,5426], + [37131,667], + [37133,3549], + [37135,2780], + [37137,321], + [37139,1224], + [37141,1468], + [37143,357], + [37145,1369], + [37147,5201], + [37149,457], + [37151,4738], + [37153,1847], + [37155,4415], + [37157,3307], + [37159,4723], + [37161,2374], + [37163,1725], + [37165,1514], + [37167,1950], + [37169,1397], + [37171,2639], + [37173,540], + [37175,680], + [37177,155], + [37179,5220], + [37181,1718], + [37183,20847], + [37185,649], + [37187,468], + [37189,1082], + [37191,3061], + [37193,2247], + [37195,3064], + [37197,1080], + [37199,587], + [38001,30], + [38003,184], + [38005,170], + [38007,11], + [38009,117], + [38011,36], + [38013,25], + [38015,1317], + [38017,2407], + [38019,63], + [38021,88], + [38023,28], + [38025,56], + [38027,70], + [38029,82], + [38031,53], + [38033,24], + [38035,1168], + [38037,49], + [38039,31], + [38041,39], + [38043,51], + [38045,73], + [38047,33], + [38049,140], + [38051,40], + [38053,75], + [38055,218], + [38057,221], + [38059,524], + [38061,125], + [38063,58], + [38065,52], + [38067,205], + [38069,84], + [38071,220], + [38073,111], + [38075,33], + [38077,348], + [38079,478], + [38081,103], + [38083,27], + [38085,69], + [38087,10], + [38089,337], + [38091,25], + [38093,344], + [38095,36], + [38097,138], + [38099,247], + [38101,877], + [38103,93], + [38105,249], + [39001,1227], + [39003,3812], + [39005,2027], + [39007,3922], + [39009,2054], + [39011,1463], + [39013,2028], + [39015,1659], + [39017,11284], + [39019,1060], + [39021,1425], + [39023,4747], + [39025,6275], + [39027,1414], + [39029,3833], + [39031,1472], + [39033,1899], + [39035,39994], + [39037,1800], + [39039,1547], + [39041,4281], + [39043,3116], + [39045,4325], + [39047,969], + [39049,34516], + [39051,1892], + [39053,927], + [39055,2553], + [39057,5017], + [39059,1685], + [39061,24863], + [39063,2407], + [39065,1082], + [39067,528], + [39069,1249], + [39071,1531], + [39073,1086], + [39075,954], + [39077,2840], + [39079,1296], + [39081,2314], + [39083,1940], + [39085,7074], + [39087,1605], + [39089,5192], + [39091,1526], + [39093,10206], + [39095,18324], + [39097,1255], + [39099,8279], + [39101,2281], + [39103,5091], + [39105,918], + [39107,1216], + [39109,3503], + [39111,488], + [39113,19963], + [39115,595], + [39117,1269], + [39119,3323], + [39121,499], + [39123,1898], + [39125,769], + [39127,1396], + [39129,1766], + [39131,1103], + [39133,5818], + [39135,1484], + [39137,1066], + [39139,4636], + [39141,2754], + [39143,2401], + [39145,2715], + [39147,2153], + [39149,1710], + [39151,12992], + [39153,18337], + [39155,7928], + [39157,2990], + [39159,1353], + [39161,1308], + [39163,526], + [39165,6014], + [39167,1814], + [39169,3388], + [39171,1533], + [39173,4654], + [39175,904], + [40001,534], + [40003,77], + [40005,280], + [40007,67], + [40009,289], + [40011,182], + [40013,702], + [40015,508], + [40017,1770], + [40019,869], + [40021,871], + [40023,353], + [40025,37], + [40027,4082], + [40029,122], + [40031,1750], + [40033,109], + [40035,285], + [40037,1327], + [40039,393], + [40041,792], + [40043,63], + [40045,55], + [40047,811], + [40049,450], + [40051,908], + [40053,65], + [40055,89], + [40057,45], + [40059,46], + [40061,223], + [40063,274], + [40065,394], + [40067,102], + [40069,223], + [40071,839], + [40073,200], + [40075,153], + [40077,203], + [40079,1093], + [40081,551], + [40083,639], + [40085,154], + [40087,543], + [40089,939], + [40091,413], + [40093,101], + [40095,265], + [40097,785], + [40099,227], + [40101,1405], + [40103,188], + [40105,216], + [40107,191], + [40109,12720], + [40111,839], + [40113,836], + [40115,751], + [40117,326], + [40119,1383], + [40121,766], + [40123,642], + [40125,1273], + [40127,253], + [40129,45], + [40131,1412], + [40133,495], + [40135,1047], + [40137,767], + [40139,266], + [40141,144], + [40143,10567], + [40145,1201], + [40147,836], + [40149,166], + [40151,122], + [40153,282], + [41001,532], + [41003,2024], + [41005,11451], + [41007,1071], + [41009,1722], + [41011,2332], + [41013,974], + [41015,772], + [41017,6705], + [41019,4614], + [41021,52], + [41023,358], + [41025,319], + [41027,717], + [41029,8081], + [41031,941], + [41033,3222], + [41035,2832], + [41037,310], + [41039,12403], + [41041,1511], + [41043,4298], + [41045,960], + [41047,10305], + [41049,347], + [41051,22857], + [41053,2242], + [41055,57], + [41057,693], + [41059,2472], + [41061,998], + [41063,279], + [41065,811], + [41067,15366], + [41069,37], + [41071,3108], + [42001,2432], + [42003,30976], + [42005,1973], + [42007,4955], + [42009,1667], + [42011,11038], + [42013,3397], + [42015,1638], + [42017,16644], + [42019,4599], + [42021,4266], + [42023,228], + [42025,2126], + [42027,3245], + [42029,10747], + [42031,1298], + [42033,2737], + [42035,1202], + [42037,2136], + [42039,2446], + [42041,5334], + [42043,6459], + [42045,14311], + [42047,1047], + [42049,7978], + [42051,4356], + [42053,183], + [42055,3557], + [42057,587], + [42059,1076], + [42061,1483], + [42063,2472], + [42065,1292], + [42067,663], + [42069,6295], + [42071,11677], + [42073,2710], + [42075,3045], + [42077,10055], + [42079,10102], + [42081,3567], + [42083,1344], + [42085,3738], + [42087,1493], + [42089,5026], + [42091,18883], + [42093,450], + [42095,8402], + [42097,3133], + [42099,1303], + [42101,44596], + [42103,1707], + [42105,556], + [42107,4630], + [42109,1206], + [42111,2497], + [42113,171], + [42115,1245], + [42117,1249], + [42119,1116], + [42121,1500], + [42123,1133], + [42125,5545], + [42127,1342], + [42129,9984], + [42131,877], + [42133,10771], + [44001,1865], + [44003,7187], + [44005,2993], + [44007,27467], + [44009,4875], + [45001,916], + [45003,4383], + [45005,551], + [45007,5766], + [45009,712], + [45011,961], + [45013,3380], + [45015,4892], + [45017,517], + [45019,9251], + [45021,2315], + [45023,1809], + [45025,1665], + [45027,1221], + [45029,1371], + [45031,2650], + [45033,1338], + [45035,3590], + [45037,735], + [45039,1191], + [45041,4400], + [45043,2254], + [45045,12422], + [45047,2334], + [45049,693], + [45051,9242], + [45053,608], + [45055,1950], + [45057,3401], + [45059,2433], + [45061,757], + [45063,6471], + [45065,371], + [45067,1748], + [45069,1459], + [45071,1293], + [45073,2239], + [45075,4151], + [45077,3518], + [45079,11018], + [45081,534], + [45083,9280], + [45085,3618], + [45087,1264], + [45089,1602], + [45091,7553], + [46003,46], + [46005,243], + [46007,55], + [46009,106], + [46011,475], + [46013,523], + [46015,76], + [46017,49], + [46019,152], + [46021,24], + [46023,143], + [46025,70], + [46027,212], + [46029,502], + [46031,70], + [46033,138], + [46035,295], + [46037,127], + [46039,106], + [46041,231], + [46043,46], + [46045,57], + [46047,128], + [46049,34], + [46051,155], + [46053,81], + [46055,30], + [46057,100], + [46059,50], + [46061,61], + [46063,21], + [46065,245], + [46067,115], + [46069,21], + [46071,71], + [46073,34], + [46075,17], + [46077,98], + [46079,215], + [46081,388], + [46083,550], + [46085,90], + [46087,97], + [46089,47], + [46091,92], + [46093,387], + [46095,39], + [46097,43], + [46099,2862], + [46101,174], + [46102,"NA"], + [46103,1621], + [46105,50], + [46107,40], + [46109,203], + [46111,38], + [46115,111], + [46117,47], + [46119,22], + [46121,219], + [46123,89], + [46125,141], + [46127,290], + [46129,116], + [46135,343], + [46137,50], + [47001,2085], + [47003,1526], + [47005,617], + [47007,414], + [47009,3910], + [47011,3042], + [47013,1319], + [47015,486], + [47017,1260], + [47019,1966], + [47021,1112], + [47023,553], + [47025,1001], + [47027,370], + [47029,1449], + [47031,1622], + [47033,576], + [47035,1819], + [47037,17521], + [47039,480], + [47041,679], + [47043,1630], + [47045,1327], + [47047,1350], + [47049,756], + [47051,1324], + [47053,2008], + [47055,1079], + [47057,815], + [47059,2821], + [47061,497], + [47063,2152], + [47065,9550], + [47067,212], + [47069,996], + [47071,907], + [47073,1809], + [47075,997], + [47077,1237], + [47079,1214], + [47081,853], + [47083,313], + [47085,763], + [47087,429], + [47089,1750], + [47091,630], + [47093,11469], + [47095,205], + [47097,1285], + [47099,1627], + [47101,548], + [47103,848], + [47105,1333], + [47107,2099], + [47109,1045], + [47111,886], + [47113,3278], + [47115,999], + [47117,1163], + [47119,3048], + [47121,441], + [47123,1881], + [47125,4276], + [47127,176], + [47129,651], + [47131,1095], + [47133,908], + [47135,477], + [47137,203], + [47139,567], + [47141,2325], + [47143,1073], + [47145,1603], + [47147,2060], + [47149,7725], + [47151,985], + [47153,476], + [47155,3419], + [47157,30419], + [47159,755], + [47161,506], + [47163,3958], + [47165,4771], + [47167,2263], + [47169,311], + [47171,624], + [47173,552], + [47175,209], + [47177,1484], + [47179,3499], + [47181,668], + [47183,1282], + [47185,889], + [47187,4098], + [47189,3354], + [48001,1127], + [48003,229], + [48005,1849], + [48007,499], + [48009,186], + [48011,38], + [48013,882], + [48015,546], + [48017,136], + [48019,421], + [48021,1640], + [48023,76], + [48025,690], + [48027,5932], + [48029,34795], + [48031,176], + [48033,13], + [48035,373], + [48037,2149], + [48039,7233], + [48041,3537], + [48043,187], + [48045,30], + [48047,172], + [48049,805], + [48051,344], + [48053,858], + [48055,802], + [48057,444], + [48059,255], + [48061,9618], + [48063,269], + [48065,109], + [48067,781], + [48069,128], + [48071,807], + [48073,1185], + [48075,152], + [48077,235], + [48079,71], + [48081,99], + [48083,177], + [48085,18149], + [48087,57], + [48089,426], + [48091,2206], + [48093,245], + [48095,68], + [48097,775], + [48099,1450], + [48101,33], + [48103,69], + [48105,63], + [48107,128], + [48109,51], + [48111,106], + [48113,60580], + [48115,270], + [48117,335], + [48119,122], + [48121,15142], + [48123,370], + [48125,50], + [48127,259], + [48129,80], + [48131,275], + [48133,375], + [48135,2389], + [48137,39], + [48139,3486], + [48141,18162], + [48143,692], + [48145,378], + [48147,774], + [48149,420], + [48151,75], + [48153,151], + [48155,29], + [48157,11611], + [48159,222], + [48161,404], + [48163,366], + [48165,259], + [48167,7939], + [48169,91], + [48171,401], + [48173,24], + [48175,129], + [48177,378], + [48179,392], + [48181,2841], + [48183,2515], + [48185,551], + [48187,2450], + [48189,744], + [48191,79], + [48193,151], + [48195,85], + [48197,82], + [48199,1371], + [48201,90624], + [48203,1487], + [48205,80], + [48207,104], + [48209,3258], + [48211,59], + [48213,1806], + [48215,20104], + [48217,787], + [48219,439], + [48221,1049], + [48223,716], + [48225,509], + [48227,632], + [48229,62], + [48231,1948], + [48233,458], + [48235,31], + [48237,170], + [48239,274], + [48241,969], + [48243,43], + [48245,7460], + [48247,104], + [48249,896], + [48251,3337], + [48253,381], + [48255,307], + [48257,2425], + [48259,608], + [48261,8], + [48263,18], + [48265,909], + [48267,81], + [48269,8], + [48271,72], + [48273,694], + [48275,68], + [48277,1253], + [48279,310], + [48281,416], + [48283,155], + [48285,340], + [48287,348], + [48289,332], + [48291,1813], + [48293,462], + [48295,51], + [48297,215], + [48299,357], + [48301,3], + [48303,5090], + [48305,128], + [48307,155], + [48309,4964], + [48311,18], + [48313,257], + [48315,250], + [48317,78], + [48319,70], + [48321,1136], + [48323,2197], + [48325,985], + [48327,47], + [48329,2142], + [48331,644], + [48333,90], + [48335,178], + [48337,376], + [48339,8911], + [48341,345], + [48343,361], + [48345,30], + [48347,1324], + [48349,1136], + [48351,417], + [48353,295], + [48355,7261], + [48357,153], + [48359,40], + [48361,2617], + [48363,579], + [48365,500], + [48367,2328], + [48369,149], + [48371,313], + [48373,1031], + [48375,2259], + [48377,346], + [48379,255], + [48381,2096], + [48383,52], + [48385,54], + [48387,381], + [48389,239], + [48391,155], + [48393,14], + [48395,342], + [48397,1702], + [48399,211], + [48401,1023], + [48403,302], + [48405,215], + [48407,577], + [48409,1577], + [48411,131], + [48413,49], + [48415,300], + [48417,56], + [48419,587], + [48421,54], + [48423,4756], + [48425,183], + [48427,2515], + [48429,169], + [48431,24], + [48433,28], + [48435,69], + [48437,157], + [48439,42048], + [48441,2465], + [48443,22], + [48445,243], + [48447,32], + [48449,600], + [48451,2108], + [48453,22527], + [48455,314], + [48457,490], + [48459,830], + [48461,55], + [48463,634], + [48465,1174], + [48467,1109], + [48469,1703], + [48471,1362], + [48473,801], + [48475,197], + [48477,645], + [48479,4889], + [48481,906], + [48483,81], + [48485,2950], + [48487,267], + [48489,678], + [48491,9005], + [48493,858], + [48495,129], + [48497,1185], + [48499,906], + [48501,124], + [48503,335], + [48505,283], + [48507,385], + [49001,108], + [49003,955], + [49005,1696], + [49007,434], + [49009,18], + [49011,4925], + [49013,274], + [49015,193], + [49017,172], + [49019,310], + [49021,915], + [49023,217], + [49025,145], + [49027,202], + [49029,135], + [49031,26], + [49033,38], + [49035,18920], + [49037,318], + [49039,470], + [49041,387], + [49043,730], + [49045,1071], + [49047,425], + [49049,7841], + [49051,381], + [49053,2929], + [49055,76], + [49057,4801], + [50001,961], + [50003,987], + [50005,873], + [50007,3552], + [50009,201], + [50011,1281], + [50013,259], + [50015,825], + [50017,721], + [50019,988], + [50021,1961], + [50023,1625], + [50025,1130], + [50027,1243], + [51001,947], + [51003,1567], + [51005,372], + [51007,303], + [51009,660], + [51011,325], + [51013,3356], + [51015,1370], + [51017,114], + [51019,1415], + [51021,166], + [51023,579], + [51025,466], + [51027,448], + [51029,357], + [51031,1108], + [51033,683], + [51035,934], + [51036,194], + [51037,321], + [51041,6215], + [51043,280], + [51045,102], + [51047,1006], + [51049,224], + [51051,347], + [51053,598], + [51057,293], + [51059,16842], + [51061,1263], + [51063,316], + [51065,467], + [51067,1291], + [51069,1734], + [51071,450], + [51073,731], + [51075,379], + [51077,463], + [51079,350], + [51081,242], + [51083,1078], + [51085,1916], + [51087,6031], + [51089,2038], + [51091,58], + [51093,701], + [51095,1028], + [51097,153], + [51099,490], + [51101,327], + [51103,316], + [51105,520], + [51107,4849], + [51109,705], + [51111,326], + [51113,277], + [51115,160], + [51117,881], + [51119,196], + [51121,1870], + [51125,289], + [51127,355], + [51131,332], + [51133,337], + [51135,360], + [51137,717], + [51139,810], + [51141,591], + [51143,2106], + [51145,489], + [51147,531], + [51149,639], + [51153,6786], + [51155,1158], + [51157,149], + [51159,195], + [51161,1587], + [51163,474], + [51165,1413], + [51167,683], + [51169,547], + [51171,944], + [51173,921], + [51175,390], + [51177,2260], + [51179,2277], + [51181,170], + [51183,262], + [51185,913], + [51187,883], + [51191,1353], + [51193,447], + [51195,835], + [51197,863], + [51199,1031], + [51510,2571], + [51520,466], + [51530,176], + [51540,846], + [51550,4489], + [51570,413], + [51580,183], + [51590,1856], + [51595,186], + [51600,462], + [51610,278], + [51620,247], + [51630,782], + [51640,191], + [51650,3281], + [51660,957], + [51670,636], + [51678,156], + [51680,1678], + [51683,845], + [51685,248], + [51690,708], + [51700,4135], + [51710,5313], + [51720,84], + [51730,1042], + [51735,195], + [51740,2396], + [51750,424], + [51760,5856], + [51770,2136], + [51775,498], + [51790,508], + [51800,1670], + [51810,8195], + [51820,511], + [51830,457], + [51840,653], + [53001,534], + [53003,694], + [53005,4801], + [53007,2426], + [53009,2272], + [53011,16166], + [53013,118], + [53015,3848], + [53017,1199], + [53019,282], + [53021,2236], + [53023,50], + [53025,2804], + [53027,2626], + [53029,1928], + [53031,810], + [53033,42371], + [53035,6630], + [53037,1317], + [53039,817], + [53041,2752], + [53043,281], + [53045,1914], + [53047,1474], + [53049,747], + [53051,503], + [53053,23896], + [53055,347], + [53057,3560], + [53059,467], + [53061,17009], + [53063,14275], + [53065,1597], + [53067,7068], + [53069,136], + [53071,1583], + [53073,5771], + [53075,922], + [53077,9037], + [54001,329], + [54003,2203], + [54005,368], + [54007,305], + [54009,637], + [54011,1753], + [54013,191], + [54015,220], + [54017,139], + [54019,840], + [54021,119], + [54023,277], + [54025,834], + [54027,406], + [54029,860], + [54031,314], + [54033,1215], + [54035,606], + [54037,947], + [54039,3264], + [54041,312], + [54043,379], + [54045,548], + [54047,425], + [54049,950], + [54051,757], + [54053,710], + [54055,1015], + [54057,619], + [54059,384], + [54061,1351], + [54063,263], + [54065,369], + [54067,492], + [54069,882], + [54071,160], + [54073,184], + [54075,256], + [54077,595], + [54079,918], + [54081,1304], + [54083,695], + [54085,251], + [54087,357], + [54089,234], + [54091,308], + [54093,188], + [54095,227], + [54097,455], + [54099,828], + [54101,182], + [54103,451], + [54105,149], + [54107,1942], + [54109,378], + [55001,704], + [55003,540], + [55005,1439], + [55007,539], + [55009,6377], + [55011,347], + [55013,565], + [55015,1096], + [55017,1757], + [55019,977], + [55021,1578], + [55023,572], + [55025,10153], + [55027,2395], + [55029,929], + [55031,1230], + [55033,1135], + [55035,2360], + [55037,146], + [55039,2730], + [55041,341], + [55043,1358], + [55045,957], + [55047,581], + [55049,659], + [55051,240], + [55053,559], + [55055,2071], + [55057,799], + [55059,4663], + [55061,514], + [55063,2573], + [55065,384], + [55067,651], + [55069,890], + [55071,2254], + [55073,3439], + [55075,1351], + [55077,498], + [55078,175], + [55079,26582], + [55081,1141], + [55083,1283], + [55085,1179], + [55087,4568], + [55089,1850], + [55091,195], + [55093,1052], + [55095,1425], + [55097,1913], + [55099,422], + [55101,5795], + [55103,484], + [55105,5229], + [55107,509], + [55109,2132], + [55111,1735], + [55113,641], + [55115,1157], + [55117,2955], + [55119,688], + [55121,742], + [55123,719], + [55125,724], + [55127,2692], + [55129,523], + [55131,3245], + [55133,8581], + [55135,1501], + [55137,749], + [55139,4144], + [55141,2285], + [56001,478], + [56003,198], + [56005,535], + [56007,268], + [56009,202], + [56011,101], + [56013,755], + [56015,215], + [56017,79], + [56019,133], + [56021,1661], + [56023,296], + [56025,1142], + [56027,42], + [56029,510], + [56031,160], + [56033,495], + [56035,114], + [56037,576], + [56039,423], + [56041,333], + [56043,152], + [56045,103] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2009.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2009.json new file mode 100644 index 0000000..7e677c9 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2009.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2009", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2009"], + [1001,2402], + [1003,8048], + [1005,1431], + [1007,1161], + [1009,2648], + [1011,583], + [1013,1489], + [1015,5996], + [1017,2873], + [1019,1374], + [1021,2070], + [1023,692], + [1025,1717], + [1027,940], + [1029,663], + [1031,1824], + [1033,2953], + [1035,978], + [1037,737], + [1039,1807], + [1041,671], + [1043,3952], + [1045,1933], + [1047,3352], + [1049,4265], + [1051,3448], + [1053,1992], + [1055,5155], + [1057,978], + [1059,1777], + [1061,1203], + [1063,478], + [1065,979], + [1067,798], + [1069,4265], + [1071,3365], + [1073,33007], + [1075,888], + [1077,4628], + [1079,2153], + [1081,6106], + [1083,3745], + [1085,951], + [1087,1142], + [1089,13577], + [1091,1151], + [1093,2050], + [1095,4139], + [1097,21100], + [1099,1688], + [1101,11028], + [1103,6094], + [1105,749], + [1107,1100], + [1109,1503], + [1111,1401], + [1113,2663], + [1115,4005], + [1117,7758], + [1119,710], + [1121,5439], + [1123,2462], + [1125,9057], + [1127,3280], + [1129,1046], + [1131,950], + [1133,1687], + [2013,112], + [2016,211], + [2020,10028], + [2050,992], + [2060,50], + [2068,117], + [2070,219], + [2090,3259], + [2100,128], + [2105,"NA"], + [2110,1084], + [2122,2642], + [2130,593], + [2150,472], + [2158,"NA"], + [2164,88], + [2170,3776], + [2180,463], + [2185,251], + [2188,356], + [2195,"NA"], + [2198,"NA"], + [2220,289], + [2230,"NA"], + [2240,348], + [2261,453], + [2275,"NA"], + [2282,36], + [2290,405], + [4001,3619], + [4003,5027], + [4005,6376], + [4007,2646], + [4009,2294], + [4011,832], + [4012,761], + [4013,179233], + [4015,10434], + [4017,6306], + [4019,44013], + [4021,15587], + [4023,2939], + [4025,10275], + [4027,20191], + [5001,1928], + [5003,985], + [5005,1613], + [5007,6920], + [5009,1275], + [5011,535], + [5013,218], + [5015,853], + [5017,542], + [5019,872], + [5021,757], + [5023,883], + [5025,328], + [5027,1034], + [5029,774], + [5031,3287], + [5033,2187], + [5035,2403], + [5037,713], + [5039,401], + [5041,633], + [5043,906], + [5045,3919], + [5047,594], + [5049,392], + [5051,3244], + [5053,607], + [5055,1887], + [5057,884], + [5059,1320], + [5061,500], + [5063,1482], + [5065,490], + [5067,836], + [5069,3501], + [5071,831], + [5073,285], + [5075,673], + [5077,325], + [5079,494], + [5081,408], + [5083,934], + [5085,2024], + [5087,500], + [5089,794], + [5091,1127], + [5093,3000], + [5095,302], + [5097,294], + [5099,395], + [5101,275], + [5103,974], + [5105,371], + [5107,840], + [5109,387], + [5111,935], + [5113,672], + [5115,2230], + [5117,338], + [5119,12665], + [5121,708], + [5123,1081], + [5125,3271], + [5127,336], + [5129,275], + [5131,4633], + [5133,444], + [5135,575], + [5137,406], + [5139,1983], + [5141,735], + [5143,6251], + [5145,2790], + [5147,371], + [5149,874], + [6001,78036], + [6003,63], + [6005,2036], + [6007,12739], + [6009,2764], + [6011,2026], + [6013,52218], + [6015,1376], + [6017,9954], + [6019,63723], + [6021,1779], + [6023,6502], + [6025,20680], + [6027,841], + [6029,51007], + [6031,8613], + [6033,3807], + [6035,1671], + [6037,569520], + [6039,8876], + [6041,9920], + [6043,966], + [6045,4351], + [6047,17510], + [6049,489], + [6051,767], + [6053,24778], + [6055,6320], + [6057,5174], + [6059,137572], + [6061,18302], + [6063,1541], + [6065,119974], + [6067,75024], + [6069,3472], + [6071,108554], + [6073,145986], + [6075,39886], + [6077,44496], + [6079,12006], + [6081,30706], + [6083,18118], + [6085,92598], + [6087,16362], + [6089,12041], + [6091,238], + [6093,2796], + [6095,22295], + [6097,24125], + [6099,36360], + [6101,6891], + [6103,3457], + [6105,837], + [6107,30172], + [6109,3130], + [6111,41470], + [6113,10880], + [6115,4774], + [8001,19326], + [8003,563], + [8005,22665], + [8007,472], + [8009,95], + [8011,174], + [8013,10753], + [8014,2123], + [8015,538], + [8017,35], + [8019,390], + [8021,277], + [8023,125], + [8025,171], + [8027,127], + [8029,1213], + [8031,26293], + [8033,137], + [8035,9948], + [8037,2139], + [8039,904], + [8041,23641], + [8043,1702], + [8045,2413], + [8047,222], + [8049,604], + [8051,512], + [8053,21], + [8055,304], + [8057,53], + [8059,21669], + [8061,42], + [8063,190], + [8065,334], + [8067,1685], + [8069,11078], + [8071,701], + [8073,128], + [8075,597], + [8077,6868], + [8079,32], + [8081,564], + [8083,973], + [8085,1710], + [8087,812], + [8089,636], + [8091,163], + [8093,649], + [8095,93], + [8097,670], + [8099,407], + [8101,6110], + [8103,227], + [8105,413], + [8107,992], + [8109,275], + [8111,41], + [8113,309], + [8115,64], + [8117,1010], + [8119,913], + [8121,119], + [8123,9894], + [8125,235], + [9001,35288], + [9003,38778], + [9005,8340], + [9007,6337], + [9009,38642], + [9011,11257], + [9013,5746], + [9015,5722], + [10001,5998], + [10003,22585], + [10005,7605], + [11001,31172], + [12001,9236], + [12003,1224], + [12005,8115], + [12007,1006], + [12009,27772], + [12011,89510], + [12013,504], + [12015,8177], + [12017,6870], + [12019,8792], + [12021,15903], + [12023,2923], + [12027,1509], + [12029,638], + [12031,46456], + [12033,13537], + [12035,4823], + [12037,364], + [12039,2123], + [12041,719], + [12043,449], + [12045,608], + [12047,542], + [12049,1261], + [12051,2448], + [12053,8262], + [12055,4370], + [12057,63185], + [12059,711], + [12061,8038], + [12063,1630], + [12065,536], + [12067,230], + [12069,15125], + [12071,34291], + [12073,10401], + [12075,1918], + [12077,223], + [12079,762], + [12081,16502], + [12083,17275], + [12085,6903], + [12086,125818], + [12087,3106], + [12089,3451], + [12091,6918], + [12093,2159], + [12095,62154], + [12097,15595], + [12099,65829], + [12101,23263], + [12103,47584], + [12105,30826], + [12107,3797], + [12109,8111], + [12111,16567], + [12113,6357], + [12115,18334], + [12117,23177], + [12119,2910], + [12121,1685], + [12123,986], + [12125,406], + [12127,27300], + [12129,1163], + [12131,2338], + [12133,998], + [13001,955], + [13003,492], + [13005,436], + [13007,147], + [13009,2533], + [13011,805], + [13013,3736], + [13015,5633], + [13017,1138], + [13019,1071], + [13021,7256], + [13023,543], + [13025,822], + [13027,688], + [13029,1330], + [13031,3097], + [13033,1180], + [13035,1221], + [13037,263], + [13039,1855], + [13043,403], + [13045,5783], + [13047,2922], + [13049,489], + [13051,11339], + [13053,389], + [13055,1434], + [13057,9775], + [13059,4869], + [13061,121], + [13063,15684], + [13065,307], + [13067,34236], + [13069,2522], + [13071,1865], + [13073,4207], + [13075,890], + [13077,6035], + [13079,610], + [13081,1191], + [13083,852], + [13085,1122], + [13087,1508], + [13089,38209], + [13091,975], + [13093,480], + [13095,4447], + [13097,7055], + [13099,580], + [13101,159], + [13103,2356], + [13105,1229], + [13107,1130], + [13109,434], + [13111,1135], + [13113,4305], + [13115,5224], + [13117,7180], + [13119,1219], + [13121,49237], + [13123,1414], + [13125,129], + [13127,3417], + [13129,3308], + [13131,1142], + [13133,861], + [13135,37547], + [13137,2025], + [13139,8406], + [13141,645], + [13143,1523], + [13145,1191], + [13147,1407], + [13149,638], + [13151,9491], + [13153,5092], + [13155,614], + [13157,3002], + [13159,810], + [13161,738], + [13163,1028], + [13165,531], + [13167,443], + [13169,1227], + [13171,1103], + [13173,375], + [13175,2470], + [13177,1316], + [13179,2207], + [13181,425], + [13183,435], + [13185,4572], + [13187,1562], + [13189,1232], + [13191,535], + [13193,645], + [13195,1376], + [13197,330], + [13199,1301], + [13201,314], + [13205,1041], + [13207,1253], + [13209,402], + [13211,931], + [13213,2559], + [13215,7822], + [13217,5768], + [13219,1156], + [13221,664], + [13223,6874], + [13225,1277], + [13227,1600], + [13229,814], + [13231,885], + [13233,2283], + [13235,340], + [13237,1137], + [13239,115], + [13241,724], + [13243,335], + [13245,9221], + [13247,4473], + [13249,242], + [13251,1034], + [13253,441], + [13255,4096], + [13257,1474], + [13259,246], + [13261,1867], + [13263,295], + [13265,121], + [13267,843], + [13269,422], + [13271,643], + [13273,460], + [13275,1970], + [13277,2068], + [13279,1376], + [13281,499], + [13283,335], + [13285,3986], + [13287,651], + [13289,515], + [13291,1040], + [13293,1541], + [13295,3516], + [13297,4310], + [13299,1618], + [13301,474], + [13303,1086], + [13305,1417], + [13307,119], + [13309,282], + [13311,1210], + [13313,5628], + [13315,390], + [13317,536], + [13319,514], + [13321,1024], + [15001,8549], + [15003,26548], + [15005,"NA"], + [15007,3125], + [15009,6946], + [16001,17491], + [16003,347], + [16005,3087], + [16007,200], + [16009,625], + [16011,1435], + [16013,1116], + [16015,304], + [16017,2328], + [16019,3187], + [16021,598], + [16023,84], + [16025,63], + [16027,9595], + [16029,231], + [16031,609], + [16033,33], + [16035,522], + [16037,163], + [16039,973], + [16041,321], + [16043,494], + [16045,817], + [16047,523], + [16049,817], + [16051,808], + [16053,742], + [16055,7167], + [16057,1211], + [16059,358], + [16061,108], + [16063,309], + [16065,978], + [16067,637], + [16069,1269], + [16071,139], + [16073,193], + [16075,1092], + [16077,281], + [16079,890], + [16081,367], + [16083,2732], + [16085,679], + [16087,488], + [17001,2793], + [17003,368], + [17005,846], + [17007,4032], + [17009,156], + [17011,2029], + [17013,249], + [17015,901], + [17017,533], + [17019,8760], + [17021,1772], + [17023,1059], + [17025,813], + [17027,1580], + [17029,2514], + [17031,274659], + [17033,966], + [17035,547], + [17037,6021], + [17039,751], + [17041,893], + [17043,45075], + [17045,1045], + [17047,284], + [17049,1460], + [17051,1114], + [17053,709], + [17055,2306], + [17057,2103], + [17059,263], + [17061,567], + [17063,3262], + [17065,383], + [17067,1049], + [17069,193], + [17071,363], + [17073,2457], + [17075,1605], + [17077,2345], + [17079,454], + [17081,1968], + [17083,1084], + [17085,1173], + [17087,536], + [17089,28358], + [17091,6877], + [17093,6113], + [17095,2503], + [17097,35727], + [17099,7245], + [17101,820], + [17103,1917], + [17105,1983], + [17107,1238], + [17109,1455], + [17111,17780], + [17113,6622], + [17115,6290], + [17117,2544], + [17119,14177], + [17121,2187], + [17123,747], + [17125,931], + [17127,643], + [17129,511], + [17131,892], + [17133,1436], + [17135,1583], + [17137,1419], + [17139,684], + [17141,3425], + [17143,10768], + [17145,1128], + [17147,711], + [17149,682], + [17151,197], + [17153,316], + [17155,449], + [17157,1405], + [17159,732], + [17161,7172], + [17163,13519], + [17165,1254], + [17167,8040], + [17169,284], + [17171,211], + [17173,1097], + [17175,294], + [17177,2859], + [17179,7709], + [17181,908], + [17183,4284], + [17185,628], + [17187,689], + [17189,653], + [17191,811], + [17193,662], + [17195,3149], + [17197,37910], + [17199,3205], + [17201,21810], + [17203,1751], + [18001,2207], + [18003,18671], + [18005,3683], + [18007,427], + [18009,901], + [18011,2190], + [18013,739], + [18015,1062], + [18017,2248], + [18019,4881], + [18021,1463], + [18023,1824], + [18025,639], + [18027,877], + [18029,2563], + [18031,1566], + [18033,2780], + [18035,5905], + [18037,1646], + [18039,16210], + [18041,1493], + [18043,3244], + [18045,1066], + [18047,1217], + [18049,1273], + [18051,1463], + [18053,3882], + [18055,1361], + [18057,9570], + [18059,3080], + [18061,1794], + [18063,5617], + [18065,2887], + [18067,5260], + [18069,2528], + [18071,2366], + [18073,1596], + [18075,1281], + [18077,1801], + [18079,1853], + [18081,6164], + [18083,1469], + [18085,5116], + [18087,2703], + [18089,24068], + [18091,6237], + [18093,2867], + [18095,6805], + [18097,42671], + [18099,3042], + [18101,380], + [18103,2339], + [18105,4564], + [18107,1907], + [18109,3363], + [18111,764], + [18113,3803], + [18115,333], + [18117,1117], + [18119,1088], + [18121,803], + [18123,981], + [18125,559], + [18127,7868], + [18129,1074], + [18131,704], + [18133,1877], + [18135,1536], + [18137,1490], + [18139,954], + [18141,14838], + [18143,1417], + [18145,2468], + [18147,956], + [18149,1522], + [18151,2371], + [18153,879], + [18155,449], + [18157,7679], + [18159,939], + [18161,361], + [18163,7439], + [18165,965], + [18167,5154], + [18169,2132], + [18171,487], + [18173,2395], + [18175,1677], + [18177,3987], + [18179,1518], + [18181,1374], + [18183,2246], + [19001,245], + [19003,131], + [19005,772], + [19007,541], + [19009,192], + [19011,930], + [19013,4578], + [19015,939], + [19017,752], + [19019,742], + [19021,565], + [19023,558], + [19025,272], + [19027,522], + [19029,518], + [19031,640], + [19033,1771], + [19035,302], + [19037,618], + [19039,376], + [19041,653], + [19043,857], + [19045,2047], + [19047,442], + [19049,1727], + [19051,370], + [19053,283], + [19055,731], + [19057,1703], + [19059,668], + [19061,3494], + [19063,486], + [19065,945], + [19067,750], + [19069,435], + [19071,261], + [19073,301], + [19075,405], + [19077,360], + [19079,630], + [19081,565], + [19083,615], + [19085,382], + [19087,919], + [19089,448], + [19091,306], + [19093,216], + [19095,612], + [19097,940], + [19099,1530], + [19101,713], + [19103,3593], + [19105,771], + [19107,456], + [19109,528], + [19111,1784], + [19113,7464], + [19115,495], + [19117,300], + [19119,296], + [19121,558], + [19123,982], + [19125,1167], + [19127,1510], + [19129,365], + [19131,343], + [19133,342], + [19135,329], + [19137,471], + [19139,2076], + [19141,418], + [19143,205], + [19145,675], + [19147,377], + [19149,675], + [19151,237], + [19153,14956], + [19155,2468], + [19157,702], + [19159,136], + [19161,295], + [19163,6410], + [19165,304], + [19167,859], + [19169,2340], + [19171,648], + [19173,232], + [19175,457], + [19177,339], + [19179,1653], + [19181,1522], + [19183,662], + [19185,205], + [19187,1469], + [19189,544], + [19191,767], + [19193,3185], + [19195,321], + [19197,519], + [20001,589], + [20003,342], + [20005,815], + [20007,130], + [20009,904], + [20011,613], + [20013,333], + [20015,2404], + [20017,82], + [20019,164], + [20021,976], + [20023,54], + [20025,47], + [20027,236], + [20029,257], + [20031,323], + [20033,39], + [20035,1291], + [20037,1728], + [20039,67], + [20041,568], + [20043,482], + [20045,3612], + [20047,76], + [20049,125], + [20051,702], + [20053,162], + [20055,867], + [20057,661], + [20059,1251], + [20061,1040], + [20063,48], + [20065,66], + [20067,162], + [20069,105], + [20071,28], + [20073,238], + [20075,53], + [20077,176], + [20079,1286], + [20081,77], + [20083,38], + [20085,490], + [20087,737], + [20089,84], + [20091,19566], + [20093,96], + [20095,260], + [20097,55], + [20099,1000], + [20101,38], + [20103,2625], + [20105,111], + [20107,507], + [20109,57], + [20111,1143], + [20113,837], + [20115,388], + [20117,344], + [20119,98], + [20121,1324], + [20123,177], + [20125,1842], + [20127,215], + [20129,74], + [20131,242], + [20133,736], + [20135,73], + [20137,127], + [20139,662], + [20141,102], + [20143,190], + [20145,152], + [20147,197], + [20149,631], + [20151,297], + [20153,52], + [20155,2046], + [20157,122], + [20159,303], + [20161,1670], + [20163,188], + [20165,97], + [20167,178], + [20169,1752], + [20171,87], + [20173,21809], + [20175,544], + [20177,6189], + [20179,45], + [20181,151], + [20183,107], + [20185,118], + [20187,39], + [20189,113], + [20191,1013], + [20193,160], + [20195,71], + [20197,273], + [20199,55], + [20201,168], + [20203,43], + [20205,572], + [20207,153], + [20209,7528], + [21001,991], + [21003,1258], + [21005,1153], + [21007,408], + [21009,2382], + [21011,789], + [21013,1172], + [21015,5768], + [21017,893], + [21019,1909], + [21021,1467], + [21023,482], + [21025,578], + [21027,1103], + [21029,4282], + [21031,786], + [21033,689], + [21035,1492], + [21037,4484], + [21039,206], + [21041,710], + [21043,1685], + [21045,757], + [21047,3620], + [21049,1872], + [21051,952], + [21053,457], + [21055,434], + [21057,393], + [21059,4481], + [21061,719], + [21063,439], + [21065,799], + [21067,11852], + [21069,806], + [21071,1703], + [21073,2185], + [21075,341], + [21077,488], + [21079,911], + [21081,1481], + [21083,1626], + [21085,1686], + [21087,670], + [21089,1660], + [21091,508], + [21093,4925], + [21095,1152], + [21097,1068], + [21099,861], + [21101,2480], + [21103,837], + [21105,188], + [21107,2124], + [21109,705], + [21111,36534], + [21113,2068], + [21115,1021], + [21117,8294], + [21119,693], + [21121,1489], + [21123,828], + [21125,2702], + [21127,735], + [21129,326], + [21131,450], + [21133,938], + [21135,849], + [21137,1339], + [21139,472], + [21141,1353], + [21143,413], + [21145,2761], + [21147,821], + [21149,477], + [21151,3931], + [21153,824], + [21155,1343], + [21157,1550], + [21159,432], + [21161,955], + [21163,1479], + [21165,428], + [21167,1184], + [21169,686], + [21171,659], + [21173,1546], + [21175,695], + [21177,1492], + [21179,2735], + [21181,384], + [21183,1230], + [21185,2342], + [21187,541], + [21189,165], + [21191,901], + [21193,1244], + [21195,2535], + [21197,893], + [21199,2877], + [21201,106], + [21203,960], + [21205,1137], + [21207,1009], + [21209,2211], + [21211,2056], + [21213,1192], + [21215,958], + [21217,1437], + [21219,637], + [21221,997], + [21223,510], + [21225,892], + [21227,5804], + [21229,702], + [21231,1174], + [21233,619], + [21235,1766], + [21237,321], + [21239,1068], + [22001,1689], + [22003,852], + [22005,3058], + [22007,839], + [22009,1232], + [22011,1133], + [22013,600], + [22015,3249], + [22017,9153], + [22019,5795], + [22021,439], + [22023,183], + [22025,433], + [22027,622], + [22029,829], + [22031,970], + [22033,13512], + [22035,388], + [22037,584], + [22039,1003], + [22041,838], + [22043,689], + [22045,2356], + [22047,1178], + [22049,499], + [22051,13324], + [22053,852], + [22055,5702], + [22057,2212], + [22059,439], + [22061,1436], + [22063,3596], + [22065,442], + [22067,1673], + [22069,1403], + [22071,11556], + [22073,4943], + [22075,518], + [22077,660], + [22079,3874], + [22081,335], + [22083,868], + [22085,769], + [22087,1126], + [22089,1548], + [22091,459], + [22093,865], + [22095,1764], + [22097,2821], + [22099,1567], + [22101,1744], + [22103,5851], + [22105,4028], + [22107,247], + [22109,2621], + [22111,1096], + [22113,1620], + [22115,1379], + [22117,1381], + [22119,1699], + [22121,713], + [22123,731], + [22125,356], + [22127,545], + [23001,4864], + [23003,3359], + [23005,10095], + [23007,1498], + [23009,2543], + [23011,4778], + [23013,1623], + [23015,1357], + [23017,3004], + [23019,6436], + [23021,902], + [23023,1331], + [23025,2698], + [23027,1687], + [23029,1585], + [23031,8549], + [24001,3081], + [24003,18241], + [24005,32093], + [24009,2863], + [24011,1479], + [24013,6102], + [24015,4630], + [24017,4570], + [24019,1797], + [24021,7797], + [24023,1305], + [24025,9589], + [24027,8490], + [24029,825], + [24031,27856], + [24033,31777], + [24035,1804], + [24037,3003], + [24039,1050], + [24041,1354], + [24043,6614], + [24045,4376], + [24047,3036], + [24510,28721], + [25001,10218], + [25003,5629], + [25005,31175], + [25007,723], + [25009,33016], + [25011,2954], + [25013,21129], + [25015,5637], + [25017,56868], + [25019,527], + [25021,26152], + [25023,22360], + [25025,28950], + [25027,36042], + [26001,776], + [26003,583], + [26005,7008], + [26007,2065], + [26009,1751], + [26011,1318], + [26013,1090], + [26015,2999], + [26017,6554], + [26019,1201], + [26021,9917], + [26023,3055], + [26025,8066], + [26027,2875], + [26029,2031], + [26031,1647], + [26033,2181], + [26035,2152], + [26037,3514], + [26039,863], + [26041,2390], + [26043,1661], + [26045,6036], + [26047,2795], + [26049,29671], + [26051,1723], + [26053,968], + [26055,5733], + [26057,2739], + [26059,3642], + [26061,1913], + [26063,2365], + [26065,17357], + [26067,4121], + [26069,1877], + [26071,698], + [26073,3404], + [26075,10384], + [26077,13594], + [26079,1224], + [26081,34485], + [26083,160], + [26085,680], + [26087,7520], + [26089,1015], + [26091,7536], + [26093,10919], + [26095,361], + [26097,866], + [26099,65921], + [26101,1504], + [26103,3775], + [26105,1969], + [26107,2615], + [26109,1562], + [26111,4168], + [26113,984], + [26115,10875], + [26117,4444], + [26119,830], + [26121,13178], + [26123,3090], + [26125,78817], + [26127,2289], + [26129,1302], + [26131,506], + [26133,1456], + [26135,799], + [26137,1758], + [26139,16334], + [26141,1132], + [26143,1517], + [26145,11843], + [26147,14569], + [26149,4254], + [26151,3682], + [26153,572], + [26155,5266], + [26157,4450], + [26159,5103], + [26161,15991], + [26163,141164], + [26165,2544], + [27001,792], + [27003,15960], + [27005,1479], + [27007,1873], + [27009,1964], + [27011,169], + [27013,2429], + [27015,1099], + [27017,1487], + [27019,3688], + [27021,1500], + [27023,565], + [27025,2720], + [27027,1570], + [27029,619], + [27031,218], + [27033,407], + [27035,3221], + [27037,16517], + [27039,821], + [27041,1380], + [27043,707], + [27045,911], + [27047,1391], + [27049,1960], + [27051,265], + [27053,47652], + [27055,875], + [27057,952], + [27059,2195], + [27061,2463], + [27063,378], + [27065,1059], + [27067,1600], + [27069,181], + [27071,629], + [27073,264], + [27075,561], + [27077,172], + [27079,1528], + [27081,196], + [27083,855], + [27085,1915], + [27087,189], + [27089,523], + [27091,874], + [27093,1197], + [27095,1557], + [27097,2020], + [27099,1311], + [27101,326], + [27103,1247], + [27105,606], + [27107,230], + [27109,4979], + [27111,2406], + [27113,791], + [27115,1624], + [27117,353], + [27119,1008], + [27121,444], + [27123,20602], + [27125,245], + [27127,568], + [27129,688], + [27131,2855], + [27133,268], + [27135,724], + [27137,9649], + [27139,5449], + [27141,4472], + [27143,699], + [27145,6539], + [27147,1788], + [27149,301], + [27151,394], + [27153,1117], + [27155,119], + [27157,932], + [27159,714], + [27161,859], + [27163,9336], + [27165,493], + [27167,190], + [27169,2211], + [27171,6093], + [27173,377], + [28001,1170], + [28003,1764], + [28005,527], + [28007,926], + [28009,395], + [28011,1564], + [28013,650], + [28015,509], + [28017,942], + [28019,406], + [28021,573], + [28023,743], + [28025,1268], + [28027,1200], + [28029,1195], + [28031,707], + [28033,5439], + [28035,2846], + [28037,333], + [28039,941], + [28041,559], + [28043,1098], + [28045,1445], + [28047,6504], + [28049,9358], + [28051,1335], + [28053,523], + [28055,76], + [28057,1106], + [28059,5008], + [28061,755], + [28063,467], + [28065,536], + [28067,2196], + [28069,486], + [28071,1712], + [28073,1572], + [28075,3065], + [28077,571], + [28079,778], + [28081,3865], + [28083,1631], + [28085,1394], + [28087,2647], + [28089,3125], + [28091,1047], + [28093,1735], + [28095,2137], + [28097,627], + [28099,1234], + [28101,831], + [28103,683], + [28105,1741], + [28107,1779], + [28109,1890], + [28111,521], + [28113,1519], + [28115,1297], + [28117,1394], + [28119,425], + [28121,4367], + [28123,940], + [28125,257], + [28127,969], + [28129,574], + [28131,616], + [28133,1307], + [28135,658], + [28137,1226], + [28139,1228], + [28141,945], + [28143,622], + [28145,1197], + [28147,634], + [28149,2100], + [28151,2909], + [28153,878], + [28155,467], + [28157,418], + [28159,1280], + [28161,769], + [28163,1161], + [29001,897], + [29003,782], + [29005,237], + [29007,1135], + [29009,1428], + [29011,559], + [29013,804], + [29015,824], + [29017,575], + [29019,5555], + [29021,4210], + [29023,1734], + [29025,406], + [29027,1846], + [29029,2140], + [29031,2817], + [29033,530], + [29035,303], + [29037,4790], + [29039,576], + [29041,395], + [29043,3339], + [29045,429], + [29047,10151], + [29049,993], + [29051,2761], + [29053,809], + [29055,1344], + [29057,316], + [29059,850], + [29061,345], + [29063,488], + [29065,648], + [29067,597], + [29069,1598], + [29071,6455], + [29073,923], + [29075,227], + [29077,11702], + [29079,377], + [29081,353], + [29083,1046], + [29085,470], + [29087,197], + [29089,430], + [29091,1917], + [29093,510], + [29095,35019], + [29097,4726], + [29099,12408], + [29101,2214], + [29103,141], + [29105,2068], + [29107,1547], + [29109,1588], + [29111,453], + [29113,3245], + [29115,633], + [29117,569], + [29119,830], + [29121,693], + [29123,644], + [29125,389], + [29127,1409], + [29129,128], + [29131,1493], + [29133,536], + [29135,609], + [29137,547], + [29139,721], + [29141,1168], + [29143,790], + [29145,2247], + [29147,812], + [29149,427], + [29151,495], + [29153,366], + [29155,1002], + [29157,747], + [29159,1807], + [29161,1606], + [29163,843], + [29165,3840], + [29167,1413], + [29169,1491], + [29171,182], + [29173,491], + [29175,1403], + [29177,1110], + [29179,368], + [29181,637], + [29183,16695], + [29185,416], + [29186,950], + [29187,3361], + [29189,46207], + [29195,923], + [29197,173], + [29199,198], + [29201,1811], + [29203,456], + [29205,292], + [29207,1448], + [29209,1937], + [29211,245], + [29213,3386], + [29215,1027], + [29217,732], + [29219,1895], + [29221,1435], + [29223,548], + [29225,1623], + [29227,86], + [29229,838], + [29510,18505], + [30001,258], + [30003,496], + [30005,148], + [30007,186], + [30009,300], + [30011,27], + [30013,2201], + [30015,104], + [30017,286], + [30019,32], + [30021,207], + [30023,298], + [30025,60], + [30027,331], + [30029,5276], + [30031,3395], + [30033,24], + [30035,537], + [30037,29], + [30039,130], + [30041,449], + [30043,384], + [30045,57], + [30047,1053], + [30049,1712], + [30051,32], + [30053,1164], + [30055,33], + [30057,267], + [30059,73], + [30061,201], + [30063,3714], + [30065,162], + [30067,687], + [30069,13], + [30071,126], + [30073,161], + [30075,36], + [30077,248], + [30079,24], + [30081,1680], + [30083,260], + [30085,313], + [30087,272], + [30089,706], + [30091,77], + [30093,1085], + [30095,276], + [30097,112], + [30099,150], + [30101,109], + [30103,21], + [30105,188], + [30107,60], + [30109,27], + [30111,4051], + [31001,889], + [31003,139], + [31005,14], + [31007,12], + [31009,14], + [31011,114], + [31013,372], + [31015,44], + [31017,57], + [31019,1001], + [31021,222], + [31023,199], + [31025,716], + [31027,176], + [31029,60], + [31031,91], + [31033,230], + [31035,132], + [31037,215], + [31039,190], + [31041,205], + [31043,674], + [31045,210], + [31047,584], + [31049,42], + [31051,156], + [31053,1002], + [31055,14173], + [31057,42], + [31059,130], + [31061,69], + [31063,52], + [31065,94], + [31067,750], + [31069,41], + [31071,32], + [31073,38], + [31075,13], + [31077,47], + [31079,1363], + [31081,180], + [31083,69], + [31085,20], + [31087,82], + [31089,194], + [31091,21], + [31093,133], + [31095,207], + [31097,127], + [31099,141], + [31101,201], + [31103,19], + [31105,92], + [31107,173], + [31109,6928], + [31111,872], + [31113,14], + [31115,17], + [31117,11], + [31119,822], + [31121,174], + [31123,121], + [31125,71], + [31127,180], + [31129,105], + [31131,445], + [31133,57], + [31135,51], + [31137,185], + [31139,153], + [31141,750], + [31143,114], + [31145,274], + [31147,255], + [31149,26], + [31151,381], + [31153,3699], + [31155,544], + [31157,1013], + [31159,362], + [31161,122], + [31163,64], + [31165,25], + [31167,144], + [31169,119], + [31171,16], + [31173,332], + [31175,85], + [31177,508], + [31179,203], + [31181,70], + [31183,17], + [31185,345], + [32001,1165], + [32003,111177], + [32005,2577], + [32007,1717], + [32009,34], + [32011,59], + [32013,626], + [32015,233], + [32017,149], + [32019,3536], + [32021,203], + [32023,2464], + [32027,253], + [32029,291], + [32031,24523], + [32033,344], + [32510,3190], + [33001,2169], + [33003,1447], + [33005,2408], + [33007,1301], + [33009,2508], + [33011,14851], + [33013,4611], + [33015,11499], + [33017,4321], + [33019,1311], + [34001,16298], + [34003,37464], + [34005,20404], + [34007,26877], + [34009,6497], + [34011,8873], + [34013,37971], + [34015,14774], + [34017,31579], + [34019,4899], + [34021,15595], + [34023,36405], + [34025,28056], + [34027,19467], + [34029,25296], + [34031,26980], + [34033,3375], + [34035,13249], + [34037,7342], + [34039,25469], + [34041,5205], + [35001,23361], + [35003,145], + [35005,1906], + [35006,844], + [35007,503], + [35009,965], + [35011,43], + [35013,6618], + [35015,1644], + [35017,1513], + [35019,140], + [35021,19], + [35023,220], + [35025,2237], + [35027,636], + [35028,322], + [35029,2181], + [35031,2256], + [35033,262], + [35035,1750], + [35037,269], + [35039,1540], + [35041,448], + [35043,4801], + [35045,4446], + [35047,977], + [35049,5022], + [35051,344], + [35053,498], + [35055,1558], + [35057,650], + [35059,107], + [35061,2635], + [36001,10754], + [36003,2082], + [36005,64242], + [36007,7947], + [36009,3589], + [36011,3433], + [36013,5467], + [36015,3652], + [36017,2176], + [36019,3703], + [36021,2311], + [36023,2216], + [36025,1902], + [36027,11098], + [36029,38142], + [36031,1671], + [36033,1958], + [36035,2617], + [36037,2525], + [36039,2003], + [36041,226], + [36043,2479], + [36045,4374], + [36047,111185], + [36049,1119], + [36051,2701], + [36053,2914], + [36055,29451], + [36057,2309], + [36059,47805], + [36061,78641], + [36063,10534], + [36065,8157], + [36067,17839], + [36069,4130], + [36071,14115], + [36073,1805], + [36075,5889], + [36077,2379], + [36079,3682], + [36081,94974], + [36083,6216], + [36085,20204], + [36087,10592], + [36089,4874], + [36091,7741], + [36093,5582], + [36095,1383], + [36097,839], + [36099,1304], + [36101,4440], + [36103,57610], + [36105,3072], + [36107,2120], + [36109,3317], + [36111,6930], + [36113,2878], + [36115,2418], + [36117,3966], + [36119,34545], + [36121,1883], + [36123,892], + [37001,8332], + [37003,2521], + [37005,553], + [37007,1493], + [37009,1505], + [37011,831], + [37013,2363], + [37015,986], + [37017,1870], + [37019,5464], + [37021,10145], + [37023,5610], + [37025,9306], + [37027,5710], + [37029,374], + [37031,2825], + [37033,1358], + [37035,10748], + [37037,2718], + [37039,1527], + [37041,770], + [37043,537], + [37045,7313], + [37047,3146], + [37049,4391], + [37051,12243], + [37053,871], + [37055,2193], + [37057,9912], + [37059,2361], + [37061,2304], + [37063,11149], + [37065,3868], + [37067,16949], + [37069,2837], + [37071,13748], + [37073,357], + [37075,633], + [37077,2690], + [37079,967], + [37081,26550], + [37083,3289], + [37085,5484], + [37087,2659], + [37089,4386], + [37091,970], + [37093,1666], + [37095,229], + [37097,10039], + [37099,1843], + [37101,7784], + [37103,497], + [37105,3692], + [37107,3193], + [37109,5430], + [37111,3120], + [37113,1753], + [37115,932], + [37117,1264], + [37119,49312], + [37121,891], + [37123,1489], + [37125,3676], + [37127,5704], + [37129,9705], + [37131,977], + [37133,5575], + [37135,4518], + [37137,530], + [37139,1768], + [37141,2694], + [37143,548], + [37145,2169], + [37147,8279], + [37149,858], + [37151,8338], + [37153,2792], + [37155,6650], + [37157,5551], + [37159,8977], + [37161,4611], + [37163,2748], + [37165,2320], + [37167,3649], + [37169,2488], + [37171,4195], + [37173,812], + [37175,1229], + [37177,239], + [37179,9538], + [37181,2645], + [37183,37907], + [37185,1039], + [37187,734], + [37189,1830], + [37191,4721], + [37193,3830], + [37195,5013], + [37197,1946], + [37199,939], + [38001,41], + [38003,269], + [38005,158], + [38007,13], + [38009,140], + [38011,52], + [38013,35], + [38015,1687], + [38017,3613], + [38019,68], + [38021,144], + [38023,32], + [38025,75], + [38027,63], + [38029,112], + [38031,62], + [38033,31], + [38035,1500], + [38037,51], + [38039,43], + [38041,44], + [38043,57], + [38045,96], + [38047,34], + [38049,138], + [38051,52], + [38053,95], + [38055,233], + [38057,218], + [38059,648], + [38061,146], + [38063,71], + [38065,51], + [38067,229], + [38069,100], + [38071,239], + [38073,232], + [38075,49], + [38077,446], + [38079,570], + [38081,211], + [38083,34], + [38085,64], + [38087,12], + [38089,459], + [38091,32], + [38093,421], + [38095,33], + [38097,160], + [38099,273], + [38101,1101], + [38103,107], + [38105,370], + [39001,1910], + [39003,5806], + [39005,3405], + [39007,6595], + [39009,2755], + [39011,2828], + [39013,3124], + [39015,2783], + [39017,18280], + [39019,1942], + [39021,2421], + [39023,7457], + [39025,10354], + [39027,3106], + [39029,7112], + [39031,2310], + [39033,3232], + [39035,54497], + [39037,3171], + [39039,2883], + [39041,6483], + [39043,5017], + [39045,6542], + [39047,1879], + [39049,52992], + [39051,3120], + [39053,1349], + [39055,3582], + [39057,7825], + [39059,2373], + [39061,39179], + [39063,4172], + [39065,1849], + [39067,851], + [39069,2130], + [39071,3190], + [39073,1618], + [39075,1519], + [39077,4533], + [39079,1748], + [39081,4041], + [39083,2948], + [39085,10582], + [39087,2416], + [39089,7950], + [39091,2952], + [39093,15129], + [39095,27594], + [39097,1924], + [39099,14517], + [39101,3626], + [39103,7403], + [39105,1399], + [39107,2182], + [39109,6524], + [39111,721], + [39113,30760], + [39115,876], + [39117,2017], + [39119,4892], + [39121,852], + [39123,2970], + [39125,1446], + [39127,2260], + [39129,2750], + [39131,1696], + [39133,9370], + [39135,2639], + [39137,1948], + [39139,7958], + [39141,4254], + [39143,4020], + [39145,4093], + [39147,3887], + [39149,3642], + [39151,21757], + [39153,29333], + [39155,14836], + [39157,5339], + [39159,2224], + [39161,2265], + [39163,758], + [39165,9704], + [39167,3151], + [39169,5842], + [39171,3197], + [39173,7531], + [39175,1572], + [40001,893], + [40003,122], + [40005,515], + [40007,115], + [40009,710], + [40011,280], + [40013,1073], + [40015,797], + [40017,2958], + [40019,1581], + [40021,1327], + [40023,512], + [40025,48], + [40027,6406], + [40029,225], + [40031,2483], + [40033,160], + [40035,422], + [40037,2478], + [40039,709], + [40041,1269], + [40043,119], + [40045,113], + [40047,1398], + [40049,858], + [40051,1654], + [40053,101], + [40055,161], + [40057,74], + [40059,81], + [40061,474], + [40063,585], + [40065,613], + [40067,210], + [40069,391], + [40071,1759], + [40073,343], + [40075,257], + [40077,480], + [40079,2034], + [40081,979], + [40083,1023], + [40085,289], + [40087,862], + [40089,1541], + [40091,707], + [40093,193], + [40095,532], + [40097,1573], + [40099,390], + [40101,2342], + [40103,454], + [40105,455], + [40107,388], + [40109,19909], + [40111,1440], + [40113,1479], + [40115,1159], + [40117,625], + [40119,2146], + [40121,1456], + [40123,1123], + [40125,2126], + [40127,459], + [40129,87], + [40131,2795], + [40133,957], + [40135,1676], + [40137,1645], + [40139,398], + [40141,249], + [40143,19185], + [40145,2173], + [40147,1544], + [40149,353], + [40151,192], + [40153,721], + [41001,792], + [41003,3478], + [41005,21011], + [41007,1894], + [41009,3285], + [41011,3722], + [41013,1735], + [41015,1250], + [41017,12180], + [41019,7394], + [41021,84], + [41023,473], + [41025,578], + [41027,1141], + [41029,13110], + [41031,1405], + [41033,5123], + [41035,4414], + [41037,466], + [41039,22635], + [41041,2467], + [41043,7846], + [41045,1435], + [41047,17604], + [41049,543], + [41051,41505], + [41053,3810], + [41055,96], + [41057,1231], + [41059,3778], + [41061,1468], + [41063,453], + [41065,1283], + [41067,27581], + [41069,60], + [41071,5627], + [42001,4085], + [42003,43482], + [42005,3020], + [42007,7270], + [42009,2643], + [42011,17796], + [42013,4649], + [42015,2619], + [42017,25117], + [42019,6965], + [42021,5896], + [42023,404], + [42025,3173], + [42027,4376], + [42029,16739], + [42031,1956], + [42033,4056], + [42035,1709], + [42037,3118], + [42039,4236], + [42041,8278], + [42043,10225], + [42045,21285], + [42047,2158], + [42049,12461], + [42051,6054], + [42053,260], + [42055,6539], + [42057,1024], + [42059,1422], + [42061,2383], + [42063,3520], + [42065,2145], + [42067,959], + [42069,8796], + [42071,19438], + [42073,4056], + [42075,4878], + [42077,15478], + [42079,14517], + [42081,5286], + [42083,2172], + [42085,6107], + [42087,2230], + [42089,7499], + [42091,28982], + [42093,612], + [42095,12888], + [42097,4575], + [42099,1942], + [42101,63586], + [42103,2575], + [42105,856], + [42107,7303], + [42109,1742], + [42111,3312], + [42113,255], + [42115,1852], + [42117,1979], + [42119,1600], + [42121,2286], + [42123,1712], + [42125,8110], + [42127,1904], + [42129,14713], + [42131,1227], + [42133,18421], + [44001,2726], + [44003,10116], + [44005,4239], + [44007,38735], + [44009,6514], + [45001,1595], + [45003,7058], + [45005,701], + [45007,10222], + [45009,1007], + [45011,1541], + [45013,5486], + [45015,8252], + [45017,824], + [45019,15191], + [45021,4056], + [45023,3098], + [45025,3142], + [45027,1916], + [45029,2243], + [45031,4035], + [45033,2109], + [45035,6243], + [45037,1132], + [45039,1425], + [45041,7090], + [45043,3604], + [45045,21813], + [45047,3870], + [45049,1176], + [45051,15219], + [45053,1041], + [45055,3158], + [45057,5270], + [45059,3759], + [45061,1212], + [45063,10676], + [45065,551], + [45067,2630], + [45069,2297], + [45071,2095], + [45073,4145], + [45075,6344], + [45077,5979], + [45079,16616], + [45081,851], + [45083,16130], + [45085,5510], + [45087,2314], + [45089,2304], + [45091,15148], + [46003,67], + [46005,358], + [46007,77], + [46009,168], + [46011,714], + [46013,769], + [46015,100], + [46017,77], + [46019,276], + [46021,36], + [46023,207], + [46025,104], + [46027,307], + [46029,1007], + [46031,94], + [46033,210], + [46035,544], + [46037,203], + [46039,163], + [46041,294], + [46043,74], + [46045,70], + [46047,229], + [46049,40], + [46051,199], + [46053,97], + [46055,43], + [46057,161], + [46059,60], + [46061,86], + [46063,25], + [46065,336], + [46067,159], + [46069,30], + [46071,88], + [46073,43], + [46075,23], + [46077,159], + [46079,430], + [46081,592], + [46083,966], + [46085,122], + [46087,143], + [46089,62], + [46091,140], + [46093,604], + [46095,62], + [46097,68], + [46099,5069], + [46101,265], + [46102,"NA"], + [46103,2712], + [46105,68], + [46107,49], + [46109,288], + [46111,56], + [46115,145], + [46117,62], + [46119,30], + [46121,255], + [46123,104], + [46125,211], + [46127,512], + [46129,139], + [46135,672], + [46137,63], + [47001,3568], + [47003,2741], + [47005,982], + [47007,692], + [47009,6296], + [47011,4526], + [47013,2238], + [47015,791], + [47017,2199], + [47019,3034], + [47021,1925], + [47023,887], + [47025,1590], + [47027,490], + [47029,2326], + [47031,2749], + [47033,857], + [47035,2621], + [47037,28715], + [47039,763], + [47041,1092], + [47043,2604], + [47045,2453], + [47047,2015], + [47049,1069], + [47051,2143], + [47053,3169], + [47055,2005], + [47057,1421], + [47059,4738], + [47061,849], + [47063,3802], + [47065,14795], + [47067,394], + [47069,1436], + [47071,1483], + [47073,3105], + [47075,1481], + [47077,2180], + [47079,1827], + [47081,1312], + [47083,475], + [47085,1153], + [47087,687], + [47089,3071], + [47091,958], + [47093,18636], + [47095,294], + [47097,1958], + [47099,2601], + [47101,877], + [47103,1228], + [47105,2291], + [47107,3297], + [47109,1551], + [47111,1307], + [47113,5144], + [47115,1563], + [47117,2175], + [47119,5149], + [47121,749], + [47123,3288], + [47125,6166], + [47127,290], + [47129,999], + [47131,1564], + [47133,1353], + [47135,653], + [47137,274], + [47139,893], + [47141,3496], + [47143,1823], + [47145,2508], + [47147,3474], + [47149,13123], + [47151,1563], + [47153,779], + [47155,5300], + [47157,44276], + [47159,1272], + [47161,705], + [47163,6595], + [47165,7922], + [47167,3600], + [47169,450], + [47171,983], + [47173,967], + [47175,365], + [47177,2463], + [47179,5449], + [47181,898], + [47183,1986], + [47185,1514], + [47187,6753], + [47189,5303], + [48001,1812], + [48003,491], + [48005,3280], + [48007,790], + [48009,296], + [48011,48], + [48013,1442], + [48015,968], + [48017,188], + [48019,641], + [48021,2713], + [48023,110], + [48025,1070], + [48027,8446], + [48029,51506], + [48031,263], + [48033,23], + [48035,665], + [48037,2926], + [48039,11823], + [48041,5285], + [48043,261], + [48045,36], + [48047,309], + [48049,1296], + [48051,558], + [48053,1354], + [48055,1312], + [48057,802], + [48059,413], + [48061,14716], + [48063,509], + [48065,190], + [48067,1513], + [48069,177], + [48071,1395], + [48073,1846], + [48075,200], + [48077,417], + [48079,97], + [48081,107], + [48083,302], + [48085,30109], + [48087,81], + [48089,685], + [48091,3521], + [48093,412], + [48095,96], + [48097,1419], + [48099,1993], + [48101,44], + [48103,154], + [48105,195], + [48107,178], + [48109,72], + [48111,156], + [48113,94116], + [48115,426], + [48117,476], + [48119,195], + [48121,25004], + [48123,691], + [48125,74], + [48127,420], + [48129,112], + [48131,574], + [48133,648], + [48135,5799], + [48137,76], + [48139,5641], + [48141,27187], + [48143,1211], + [48145,581], + [48147,1173], + [48149,671], + [48151,121], + [48153,210], + [48155,41], + [48157,19756], + [48159,373], + [48161,640], + [48163,556], + [48165,442], + [48167,11538], + [48169,127], + [48171,609], + [48173,30], + [48175,233], + [48177,558], + [48179,915], + [48181,4514], + [48183,4618], + [48185,989], + [48187,3858], + [48189,1045], + [48191,120], + [48193,244], + [48195,146], + [48197,166], + [48199,2323], + [48201,149175], + [48203,2684], + [48205,100], + [48207,164], + [48209,5199], + [48211,90], + [48213,2833], + [48215,31133], + [48217,1284], + [48219,821], + [48221,1890], + [48223,1082], + [48225,751], + [48227,1045], + [48229,93], + [48231,2980], + [48233,769], + [48235,48], + [48237,329], + [48239,511], + [48241,1611], + [48243,57], + [48245,11017], + [48247,232], + [48249,1958], + [48251,6125], + [48253,595], + [48255,492], + [48257,3865], + [48259,945], + [48261,14], + [48263,24], + [48265,1347], + [48267,112], + [48269,10], + [48271,111], + [48273,1144], + [48275,106], + [48277,1798], + [48279,505], + [48281,609], + [48283,270], + [48285,569], + [48287,608], + [48289,579], + [48291,3191], + [48293,705], + [48295,117], + [48297,364], + [48299,590], + [48301,4], + [48303,7626], + [48305,171], + [48307,312], + [48309,7665], + [48311,25], + [48313,394], + [48315,529], + [48317,108], + [48319,120], + [48321,1778], + [48323,3255], + [48325,1325], + [48327,73], + [48329,4170], + [48331,1247], + [48333,131], + [48335,291], + [48337,761], + [48339,15231], + [48341,534], + [48343,903], + [48345,37], + [48347,2061], + [48349,1673], + [48351,671], + [48353,493], + [48355,11174], + [48357,326], + [48359,52], + [48361,4075], + [48363,1114], + [48365,969], + [48367,4145], + [48369,203], + [48371,723], + [48373,1631], + [48375,3469], + [48377,605], + [48379,409], + [48381,3187], + [48383,133], + [48385,85], + [48387,550], + [48389,536], + [48391,266], + [48393,28], + [48395,565], + [48397,2820], + [48399,341], + [48401,1887], + [48403,530], + [48405,363], + [48407,942], + [48409,2619], + [48411,174], + [48413,141], + [48415,523], + [48417,85], + [48419,917], + [48421,63], + [48423,7591], + [48425,300], + [48427,4013], + [48429,313], + [48431,36], + [48433,36], + [48435,245], + [48437,209], + [48439,68936], + [48441,3803], + [48443,35], + [48445,414], + [48447,50], + [48449,1034], + [48451,3334], + [48453,36599], + [48455,500], + [48457,822], + [48459,1488], + [48461,99], + [48463,917], + [48465,1935], + [48467,1800], + [48469,3137], + [48471,1933], + [48473,1355], + [48475,442], + [48477,1022], + [48479,8028], + [48481,1480], + [48483,182], + [48485,4627], + [48487,370], + [48489,1000], + [48491,15402], + [48493,1228], + [48495,318], + [48497,2454], + [48499,1486], + [48501,312], + [48503,623], + [48505,578], + [48507,568], + [49001,218], + [49003,1870], + [49005,3397], + [49007,826], + [49009,28], + [49011,9530], + [49013,882], + [49015,370], + [49017,300], + [49019,530], + [49021,1840], + [49023,397], + [49025,267], + [49027,361], + [49029,255], + [49031,59], + [49033,74], + [49035,39040], + [49037,625], + [49039,953], + [49041,777], + [49043,1552], + [49045,2227], + [49047,1473], + [49049,15537], + [49051,838], + [49053,5868], + [49055,120], + [49057,9630], + [50001,1341], + [50003,1576], + [50005,1302], + [50007,5064], + [50009,296], + [50011,1741], + [50013,331], + [50015,1187], + [50017,1033], + [50019,1337], + [50021,2829], + [50023,2193], + [50025,1587], + [50027,1925], + [51001,1279], + [51003,2663], + [51005,644], + [51007,515], + [51009,1210], + [51011,564], + [51013,5844], + [51015,2471], + [51017,167], + [51019,2568], + [51021,266], + [51023,1100], + [51025,807], + [51027,788], + [51029,597], + [51031,1962], + [51033,1185], + [51035,1559], + [51036,345], + [51037,511], + [51041,11120], + [51043,511], + [51045,180], + [51047,1686], + [51049,336], + [51051,558], + [51053,1049], + [51057,470], + [51059,27940], + [51061,2048], + [51063,560], + [51065,802], + [51067,2198], + [51069,3084], + [51071,762], + [51073,1252], + [51075,740], + [51077,780], + [51079,622], + [51081,394], + [51083,1863], + [51085,3561], + [51087,11291], + [51089,3500], + [51091,87], + [51093,1169], + [51095,1725], + [51097,261], + [51099,776], + [51101,607], + [51103,524], + [51105,730], + [51107,8178], + [51109,1307], + [51111,521], + [51113,456], + [51115,239], + [51117,1534], + [51119,345], + [51121,3162], + [51125,514], + [51127,687], + [51131,489], + [51133,531], + [51135,532], + [51137,1222], + [51139,1419], + [51141,1028], + [51143,3368], + [51145,891], + [51147,888], + [51149,1043], + [51153,11357], + [51155,1976], + [51157,246], + [51159,316], + [51161,2851], + [51163,753], + [51165,2445], + [51167,1302], + [51169,942], + [51171,1656], + [51173,1681], + [51175,645], + [51177,3649], + [51179,3585], + [51181,278], + [51183,450], + [51185,1619], + [51187,1489], + [51191,2295], + [51193,695], + [51195,1283], + [51197,1716], + [51199,1615], + [51510,4534], + [51520,810], + [51530,294], + [51540,1401], + [51550,7315], + [51570,720], + [51580,276], + [51590,2714], + [51595,307], + [51600,803], + [51610,501], + [51620,399], + [51630,1216], + [51640,313], + [51650,5264], + [51660,1551], + [51670,1099], + [51678,240], + [51680,2804], + [51683,1496], + [51685,415], + [51690,1197], + [51700,7001], + [51710,8433], + [51720,110], + [51730,1927], + [51735,321], + [51740,3842], + [51750,707], + [51760,9680], + [51770,4070], + [51775,848], + [51790,862], + [51800,2721], + [51810,13153], + [51820,913], + [51830,822], + [51840,1151], + [53001,750], + [53003,996], + [53005,6707], + [53007,3403], + [53009,3068], + [53011,29293], + [53013,176], + [53015,6060], + [53017,1776], + [53019,410], + [53021,3081], + [53023,75], + [53025,4207], + [53027,4186], + [53029,2959], + [53031,1176], + [53033,89566], + [53035,9733], + [53037,1910], + [53039,1132], + [53041,4228], + [53043,415], + [53045,2754], + [53047,2133], + [53049,1190], + [53051,811], + [53053,38734], + [53055,569], + [53057,5967], + [53059,669], + [53061,36086], + [53063,22237], + [53065,2475], + [53067,10465], + [53069,235], + [53071,2125], + [53073,9211], + [53075,1248], + [53077,11336], + [54001,599], + [54003,3949], + [54005,728], + [54007,490], + [54009,1225], + [54011,2995], + [54013,364], + [54015,397], + [54017,222], + [54019,1528], + [54021,212], + [54023,506], + [54025,1384], + [54027,758], + [54029,1641], + [54031,603], + [54033,2044], + [54035,1331], + [54037,1628], + [54039,5781], + [54041,564], + [54043,787], + [54045,1080], + [54047,860], + [54049,1566], + [54051,1305], + [54053,1206], + [54055,1656], + [54057,1009], + [54059,794], + [54061,2196], + [54063,422], + [54065,606], + [54067,925], + [54069,1613], + [54071,269], + [54073,328], + [54075,428], + [54077,1085], + [54079,1692], + [54081,2363], + [54083,1126], + [54085,410], + [54087,665], + [54089,366], + [54091,506], + [54093,326], + [54095,380], + [54097,898], + [54099,1365], + [54101,340], + [54103,736], + [54105,295], + [54107,3492], + [54109,819], + [55001,1052], + [55003,911], + [55005,2263], + [55007,733], + [55009,10854], + [55011,574], + [55013,860], + [55015,1951], + [55017,2795], + [55019,1681], + [55021,2581], + [55023,922], + [55025,17278], + [55027,4546], + [55029,1538], + [55031,1926], + [55033,1860], + [55035,3862], + [55037,250], + [55039,5063], + [55041,509], + [55043,2153], + [55045,1805], + [55047,984], + [55049,1081], + [55051,362], + [55053,887], + [55055,3916], + [55057,1355], + [55059,9000], + [55061,906], + [55063,4390], + [55065,670], + [55067,1113], + [55069,1749], + [55071,4603], + [55073,6562], + [55075,2596], + [55077,801], + [55078,228], + [55079,44154], + [55081,1891], + [55083,2323], + [55085,1842], + [55087,8254], + [55089,3556], + [55091,304], + [55093,1784], + [55095,2496], + [55097,3077], + [55099,908], + [55101,10167], + [55103,896], + [55105,10347], + [55107,954], + [55109,3797], + [55111,2955], + [55113,908], + [55115,2106], + [55117,5955], + [55119,1236], + [55121,1234], + [55123,1190], + [55125,1088], + [55127,5087], + [55129,777], + [55131,6498], + [55133,16078], + [55135,2716], + [55137,1273], + [55139,7320], + [55141,3675], + [56001,823], + [56003,441], + [56005,1540], + [56007,574], + [56009,437], + [56011,205], + [56013,1487], + [56015,340], + [56017,150], + [56019,308], + [56021,2838], + [56023,659], + [56025,2710], + [56027,65], + [56029,921], + [56031,250], + [56033,1120], + [56035,323], + [56037,1558], + [56039,965], + [56041,781], + [56043,267], + [56045,206] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2010.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2010.json new file mode 100644 index 0000000..c25910c --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2010"], + [1001,2282], + [1003,8339], + [1005,1262], + [1007,1020], + [1009,2446], + [1011,585], + [1013,1263], + [1015,5860], + [1017,2200], + [1019,1219], + [1021,1998], + [1023,644], + [1025,1808], + [1027,846], + [1029,604], + [1031,1817], + [1033,2775], + [1035,860], + [1037,717], + [1039,1696], + [1041,639], + [1043,3757], + [1045,1948], + [1047,3002], + [1049,3916], + [1051,3321], + [1053,1769], + [1055,4807], + [1057,889], + [1059,1531], + [1061,1197], + [1063,571], + [1065,972], + [1067,790], + [1069,4244], + [1071,2880], + [1073,32893], + [1075,767], + [1077,4403], + [1079,1877], + [1081,6006], + [1083,3696], + [1085,803], + [1087,1319], + [1089,14177], + [1091,1115], + [1093,1792], + [1095,3997], + [1097,21787], + [1099,1581], + [1101,10861], + [1103,6217], + [1105,655], + [1107,1012], + [1109,1479], + [1111,1296], + [1113,2589], + [1115,3883], + [1117,7262], + [1119,771], + [1121,4740], + [1123,2500], + [1125,8642], + [1127,3464], + [1129,1050], + [1131,805], + [1133,1579], + [2013,114], + [2016,200], + [2020,10384], + [2050,1047], + [2060,49], + [2068,120], + [2070,211], + [2090,3202], + [2100,122], + [2105,149], + [2110,1055], + [2122,2691], + [2130,622], + [2150,477], + [2158,"NA"], + [2164,87], + [2170,3995], + [2180,516], + [2185,319], + [2188,397], + [2195,146], + [2198,267], + [2220,287], + [2230,104], + [2240,380], + [2261,456], + [2275,82], + [2282,32], + [2290,442], + [4001,3849], + [4003,5329], + [4005,7196], + [4007,2709], + [4009,1883], + [4011,564], + [4012,805], + [4013,182826], + [4015,10727], + [4017,6453], + [4019,44637], + [4021,16465], + [4023,3184], + [4025,10309], + [4027,23316], + [5001,2108], + [5003,980], + [5005,1560], + [5007,7122], + [5009,1293], + [5011,540], + [5013,236], + [5015,925], + [5017,527], + [5019,875], + [5021,820], + [5023,892], + [5025,326], + [5027,1049], + [5029,873], + [5031,3547], + [5033,2327], + [5035,2386], + [5037,715], + [5039,430], + [5041,655], + [5043,935], + [5045,4246], + [5047,603], + [5049,405], + [5051,3517], + [5053,607], + [5055,1915], + [5057,989], + [5059,1219], + [5061,508], + [5063,1500], + [5065,517], + [5067,798], + [5069,3535], + [5071,905], + [5073,300], + [5075,708], + [5077,317], + [5079,441], + [5081,482], + [5083,841], + [5085,2251], + [5087,514], + [5089,681], + [5091,1196], + [5093,2528], + [5095,315], + [5097,342], + [5099,402], + [5101,262], + [5103,1080], + [5105,406], + [5107,904], + [5109,443], + [5111,1001], + [5113,670], + [5115,2348], + [5117,365], + [5119,13809], + [5121,744], + [5123,1046], + [5125,3558], + [5127,335], + [5129,312], + [5131,4783], + [5133,496], + [5135,619], + [5137,419], + [5139,1942], + [5141,724], + [5143,6703], + [5145,3005], + [5147,379], + [5149,786], + [6001,85410], + [6003,70], + [6005,2181], + [6007,14246], + [6009,3035], + [6011,2401], + [6013,57633], + [6015,1442], + [6017,11127], + [6019,73372], + [6021,2038], + [6023,6977], + [6025,22687], + [6027,947], + [6029,58154], + [6031,9583], + [6033,4504], + [6035,1699], + [6037,615101], + [6039,10241], + [6041,10442], + [6043,1127], + [6045,4829], + [6047,20388], + [6049,581], + [6051,906], + [6053,27449], + [6055,7227], + [6057,5737], + [6059,149749], + [6061,20102], + [6063,1668], + [6065,135159], + [6067,86135], + [6069,4215], + [6071,120388], + [6073,162932], + [6075,43324], + [6077,51442], + [6079,13442], + [6081,32841], + [6083,20587], + [6085,96411], + [6087,18845], + [6089,13169], + [6091,247], + [6093,3303], + [6095,25438], + [6097,26534], + [6099,41092], + [6101,8437], + [6103,3960], + [6105,922], + [6107,34911], + [6109,3444], + [6111,46586], + [6113,12354], + [6115,5162], + [8001,23493], + [8003,692], + [8005,27171], + [8007,616], + [8009,102], + [8011,163], + [8013,11985], + [8014,2340], + [8015,636], + [8017,43], + [8019,456], + [8021,359], + [8023,165], + [8025,139], + [8027,138], + [8029,1549], + [8031,31668], + [8033,177], + [8035,10960], + [8037,2750], + [8039,1028], + [8041,28630], + [8043,1852], + [8045,3242], + [8047,267], + [8049,785], + [8051,648], + [8053,27], + [8055,378], + [8057,81], + [8059,25462], + [8061,50], + [8063,199], + [8065,481], + [8067,2130], + [8069,12976], + [8071,763], + [8073,129], + [8075,710], + [8077,8337], + [8079,29], + [8081,801], + [8083,1190], + [8085,2264], + [8087,1013], + [8089,779], + [8091,211], + [8093,785], + [8095,116], + [8097,879], + [8099,430], + [8101,7729], + [8103,280], + [8105,554], + [8107,1349], + [8109,311], + [8111,63], + [8113,384], + [8115,82], + [8117,1289], + [8119,1156], + [8121,153], + [8123,12114], + [8125,277], + [9001,39825], + [9003,45227], + [9005,9460], + [9007,7352], + [9009,46162], + [9011,12851], + [9013,6742], + [9015,6643], + [10001,6461], + [10003,22427], + [10005,7662], + [11001,32557], + [12001,10298], + [12003,1306], + [12005,9018], + [12007,1143], + [12009,29886], + [12011,95090], + [12013,537], + [12015,8447], + [12017,7253], + [12019,9511], + [12021,16922], + [12023,3119], + [12027,1600], + [12029,741], + [12031,51627], + [12033,14158], + [12035,5130], + [12037,393], + [12039,2366], + [12041,742], + [12043,527], + [12045,641], + [12047,550], + [12049,1354], + [12051,2575], + [12053,9006], + [12055,4660], + [12057,69287], + [12059,745], + [12061,8536], + [12063,1724], + [12065,599], + [12067,248], + [12069,15775], + [12071,35446], + [12073,11898], + [12075,2065], + [12077,257], + [12079,798], + [12081,16822], + [12083,18054], + [12085,7164], + [12086,136171], + [12087,3278], + [12089,3804], + [12091,7499], + [12093,2287], + [12095,68821], + [12097,17119], + [12099,70847], + [12101,24771], + [12103,50322], + [12105,33811], + [12107,4084], + [12109,8664], + [12111,17714], + [12113,6620], + [12115,19397], + [12117,24529], + [12119,3355], + [12121,1886], + [12123,1002], + [12125,466], + [12127,29196], + [12129,1221], + [12131,2437], + [12133,1088], + [13001,1036], + [13003,526], + [13005,483], + [13007,149], + [13009,2949], + [13011,817], + [13013,3731], + [13015,5830], + [13017,1035], + [13019,1039], + [13021,8172], + [13023,682], + [13025,952], + [13027,704], + [13029,1385], + [13031,3330], + [13033,1190], + [13035,1203], + [13037,230], + [13039,2052], + [13043,435], + [13045,6055], + [13047,2686], + [13049,509], + [13051,12546], + [13053,242], + [13055,1246], + [13057,9891], + [13059,5276], + [13061,128], + [13063,16913], + [13065,321], + [13067,35426], + [13069,2718], + [13071,2069], + [13073,4495], + [13075,919], + [13077,6224], + [13079,660], + [13081,1307], + [13083,724], + [13085,1195], + [13087,1549], + [13089,39314], + [13091,1090], + [13093,574], + [13095,5209], + [13097,7467], + [13099,525], + [13101,154], + [13103,2467], + [13105,1329], + [13107,1172], + [13109,433], + [13111,1201], + [13113,4363], + [13115,5337], + [13117,7092], + [13119,1230], + [13121,50687], + [13123,1445], + [13125,146], + [13127,3832], + [13129,3319], + [13131,1090], + [13133,845], + [13135,38574], + [13137,1957], + [13139,8341], + [13141,711], + [13143,1519], + [13145,1266], + [13147,1262], + [13149,634], + [13151,10455], + [13153,5677], + [13155,539], + [13157,2996], + [13159,804], + [13161,815], + [13163,1007], + [13165,491], + [13167,459], + [13169,1332], + [13171,1162], + [13173,408], + [13175,2720], + [13177,1298], + [13179,2434], + [13181,423], + [13183,525], + [13185,4899], + [13187,1527], + [13189,1243], + [13191,664], + [13193,711], + [13195,1390], + [13197,397], + [13199,1282], + [13201,291], + [13205,1044], + [13207,1278], + [13209,465], + [13211,901], + [13213,2369], + [13215,8234], + [13217,6078], + [13219,1202], + [13221,683], + [13223,7383], + [13225,1559], + [13227,1540], + [13229,858], + [13231,906], + [13233,2246], + [13235,418], + [13237,1170], + [13239,101], + [13241,843], + [13243,363], + [13245,9678], + [13247,4750], + [13249,262], + [13251,986], + [13253,424], + [13255,4260], + [13257,1463], + [13259,248], + [13261,1892], + [13263,290], + [13265,114], + [13267,876], + [13269,471], + [13271,772], + [13273,478], + [13275,2010], + [13277,2247], + [13279,1511], + [13281,558], + [13283,356], + [13285,3758], + [13287,586], + [13289,505], + [13291,1046], + [13293,1461], + [13295,3192], + [13297,4370], + [13299,1714], + [13301,457], + [13303,1181], + [13305,1491], + [13307,134], + [13309,293], + [13311,1313], + [13313,5661], + [13315,365], + [13317,531], + [13319,539], + [13321,1184], + [15001,8662], + [15003,26558], + [15005,"NA"], + [15007,3004], + [15009,6743], + [16001,16360], + [16003,345], + [16005,3282], + [16007,214], + [16009,573], + [16011,1647], + [16013,1141], + [16015,322], + [16017,2516], + [16019,3416], + [16021,720], + [16023,98], + [16025,82], + [16027,9540], + [16029,300], + [16031,787], + [16033,50], + [16035,501], + [16037,188], + [16039,984], + [16041,327], + [16043,584], + [16045,878], + [16047,634], + [16049,830], + [16051,890], + [16053,886], + [16055,7514], + [16057,1280], + [16059,385], + [16061,105], + [16063,354], + [16065,939], + [16067,777], + [16069,1344], + [16071,121], + [16073,212], + [16075,1078], + [16077,357], + [16079,873], + [16081,428], + [16083,3147], + [16085,736], + [16087,488], + [17001,2697], + [17003,349], + [17005,857], + [17007,3789], + [17009,180], + [17011,2070], + [17013,251], + [17015,890], + [17017,581], + [17019,8942], + [17021,1742], + [17023,973], + [17025,772], + [17027,1499], + [17029,2519], + [17031,287361], + [17033,888], + [17035,557], + [17037,5929], + [17039,767], + [17041,906], + [17043,44543], + [17045,1060], + [17047,282], + [17049,1472], + [17051,1132], + [17053,689], + [17055,2221], + [17057,2058], + [17059,253], + [17061,633], + [17063,3448], + [17065,378], + [17067,1053], + [17069,194], + [17071,366], + [17073,2437], + [17075,1616], + [17077,2458], + [17079,454], + [17081,1861], + [17083,1063], + [17085,1108], + [17087,556], + [17089,29468], + [17091,7069], + [17093,6325], + [17095,2422], + [17097,36403], + [17099,7428], + [17101,719], + [17103,1928], + [17105,1926], + [17107,1211], + [17109,1335], + [17111,17784], + [17113,6787], + [17115,6162], + [17117,2554], + [17119,13630], + [17121,2099], + [17123,659], + [17125,908], + [17127,671], + [17129,538], + [17131,893], + [17133,1315], + [17135,1708], + [17137,1551], + [17139,656], + [17141,3506], + [17143,10085], + [17145,1059], + [17147,719], + [17149,728], + [17151,192], + [17153,308], + [17155,398], + [17157,1318], + [17159,715], + [17161,7278], + [17163,13683], + [17165,1185], + [17167,8413], + [17169,319], + [17171,251], + [17173,1090], + [17175,295], + [17177,2730], + [17179,7106], + [17181,954], + [17183,4341], + [17185,573], + [17187,722], + [17189,616], + [17191,748], + [17193,644], + [17195,3084], + [17197,39434], + [17199,3158], + [17201,21064], + [17203,1560], + [18001,1654], + [18003,18829], + [18005,3660], + [18007,430], + [18009,840], + [18011,2232], + [18013,785], + [18015,1015], + [18017,2041], + [18019,5274], + [18021,1468], + [18023,1714], + [18025,636], + [18027,957], + [18029,2772], + [18031,1504], + [18033,2457], + [18035,6322], + [18037,1642], + [18039,12599], + [18041,1428], + [18043,3353], + [18045,1015], + [18047,1307], + [18049,1175], + [18051,1354], + [18053,3887], + [18055,1534], + [18057,9703], + [18059,3318], + [18061,1871], + [18063,5866], + [18065,2965], + [18067,4506], + [18069,2265], + [18071,2153], + [18073,1685], + [18075,1133], + [18077,1755], + [18079,1722], + [18081,6315], + [18083,1514], + [18085,4327], + [18087,1996], + [18089,24734], + [18091,6178], + [18093,2628], + [18095,7164], + [18097,47765], + [18099,2653], + [18101,397], + [18103,1991], + [18105,5361], + [18107,1926], + [18109,3632], + [18111,803], + [18113,3027], + [18115,361], + [18117,1162], + [18119,1190], + [18121,802], + [18123,944], + [18125,588], + [18127,7731], + [18129,1054], + [18131,634], + [18133,1942], + [18135,1533], + [18137,1629], + [18139,967], + [18141,15078], + [18143,1395], + [18145,2491], + [18147,966], + [18149,1392], + [18151,2053], + [18153,915], + [18155,467], + [18157,7667], + [18159,825], + [18161,383], + [18163,8233], + [18165,1011], + [18167,5727], + [18169,1822], + [18171,443], + [18173,2472], + [18175,1688], + [18177,4020], + [18179,1380], + [18181,1362], + [18183,2024], + [19001,227], + [19003,108], + [19005,620], + [19007,451], + [19009,194], + [19011,887], + [19013,4388], + [19015,848], + [19017,679], + [19019,679], + [19021,540], + [19023,496], + [19025,280], + [19027,505], + [19029,464], + [19031,592], + [19033,1681], + [19035,319], + [19037,485], + [19039,367], + [19041,548], + [19043,745], + [19045,1858], + [19047,421], + [19049,1700], + [19051,303], + [19053,271], + [19055,627], + [19057,1504], + [19059,631], + [19061,3136], + [19063,412], + [19065,787], + [19067,619], + [19069,376], + [19071,235], + [19073,306], + [19075,384], + [19077,378], + [19079,588], + [19081,403], + [19083,595], + [19085,446], + [19087,826], + [19089,336], + [19091,270], + [19093,196], + [19095,531], + [19097,794], + [19099,1389], + [19101,635], + [19103,3350], + [19105,706], + [19107,362], + [19109,426], + [19111,1574], + [19113,7182], + [19115,433], + [19117,259], + [19119,247], + [19121,543], + [19123,801], + [19125,1043], + [19127,1378], + [19129,399], + [19131,297], + [19133,352], + [19135,296], + [19137,423], + [19139,1741], + [19141,379], + [19143,181], + [19145,483], + [19147,292], + [19149,652], + [19151,207], + [19153,14601], + [19155,2907], + [19157,612], + [19159,123], + [19161,267], + [19163,5779], + [19165,300], + [19167,771], + [19169,2240], + [19171,602], + [19173,177], + [19175,396], + [19177,289], + [19179,1454], + [19181,1486], + [19183,633], + [19185,177], + [19187,1397], + [19189,389], + [19191,679], + [19193,3684], + [19195,315], + [19197,491], + [20001,581], + [20003,352], + [20005,784], + [20007,125], + [20009,901], + [20011,651], + [20013,349], + [20015,2562], + [20017,81], + [20019,157], + [20021,981], + [20023,57], + [20025,54], + [20027,257], + [20029,262], + [20031,368], + [20033,45], + [20035,1353], + [20037,1684], + [20039,73], + [20041,677], + [20043,401], + [20045,3805], + [20047,90], + [20049,118], + [20051,696], + [20053,160], + [20055,919], + [20057,753], + [20059,1293], + [20061,1223], + [20063,51], + [20065,66], + [20067,181], + [20069,113], + [20071,28], + [20073,260], + [20075,57], + [20077,184], + [20079,1277], + [20081,88], + [20083,40], + [20085,463], + [20087,800], + [20089,85], + [20091,18721], + [20093,97], + [20095,268], + [20097,73], + [20099,1074], + [20101,41], + [20103,2607], + [20105,112], + [20107,506], + [20109,61], + [20111,1165], + [20113,850], + [20115,400], + [20117,300], + [20119,109], + [20121,1296], + [20123,185], + [20125,1925], + [20127,226], + [20129,76], + [20131,250], + [20133,759], + [20135,64], + [20137,118], + [20139,712], + [20141,108], + [20143,196], + [20145,169], + [20147,156], + [20149,622], + [20151,296], + [20153,53], + [20155,2094], + [20157,118], + [20159,288], + [20161,1802], + [20163,174], + [20165,96], + [20167,191], + [20169,1907], + [20171,106], + [20173,22216], + [20175,533], + [20177,6537], + [20179,51], + [20181,150], + [20183,101], + [20185,120], + [20187,45], + [20189,121], + [20191,1062], + [20193,180], + [20195,71], + [20197,254], + [20199,53], + [20201,162], + [20203,46], + [20205,538], + [20207,137], + [20209,7561], + [21001,971], + [21003,1070], + [21005,1113], + [21007,394], + [21009,2209], + [21011,715], + [21013,1238], + [21015,5609], + [21017,913], + [21019,2079], + [21021,1489], + [21023,453], + [21025,612], + [21027,1071], + [21029,4132], + [21031,655], + [21033,623], + [21035,1524], + [21037,4429], + [21039,204], + [21041,725], + [21043,1681], + [21045,759], + [21047,3187], + [21049,1913], + [21051,877], + [21053,470], + [21055,404], + [21057,374], + [21059,4358], + [21061,682], + [21063,380], + [21065,771], + [21067,12096], + [21069,773], + [21071,1876], + [21073,2144], + [21075,314], + [21077,503], + [21079,884], + [21081,1376], + [21083,1596], + [21085,1645], + [21087,658], + [21089,1772], + [21091,417], + [21093,4542], + [21095,1214], + [21097,1003], + [21099,846], + [21101,2347], + [21103,774], + [21105,188], + [21107,2054], + [21109,723], + [21111,37916], + [21113,2095], + [21115,1121], + [21117,8187], + [21119,798], + [21121,1439], + [21123,684], + [21125,2847], + [21127,784], + [21129,327], + [21131,466], + [21133,990], + [21135,771], + [21137,1364], + [21139,486], + [21141,1250], + [21143,346], + [21145,2774], + [21147,827], + [21149,462], + [21151,3664], + [21153,879], + [21155,1149], + [21157,1621], + [21159,412], + [21161,888], + [21163,1456], + [21165,397], + [21167,1179], + [21169,623], + [21171,519], + [21173,1474], + [21175,667], + [21177,1425], + [21179,2457], + [21181,367], + [21183,1157], + [21185,2206], + [21187,497], + [21189,181], + [21191,907], + [21193,1299], + [21195,2556], + [21197,822], + [21199,2945], + [21201,101], + [21203,788], + [21205,1105], + [21207,936], + [21209,2213], + [21211,1951], + [21213,1121], + [21215,914], + [21217,1447], + [21219,570], + [21221,909], + [21223,527], + [21225,746], + [21227,5360], + [21229,618], + [21231,1154], + [21233,579], + [21235,1781], + [21237,352], + [21239,1047], + [22001,1897], + [22003,924], + [22005,3978], + [22007,1165], + [22009,1414], + [22011,1156], + [22013,594], + [22015,3424], + [22017,9514], + [22019,7045], + [22021,453], + [22023,207], + [22025,437], + [22027,603], + [22029,782], + [22031,1002], + [22033,16872], + [22035,439], + [22037,676], + [22039,1126], + [22041,924], + [22043,726], + [22045,2776], + [22047,1409], + [22049,517], + [22051,15955], + [22053,989], + [22055,7084], + [22057,2765], + [22059,420], + [22061,1776], + [22063,4606], + [22065,502], + [22067,1712], + [22069,1489], + [22071,14127], + [22073,5841], + [22075,608], + [22077,867], + [22079,4471], + [22081,340], + [22083,968], + [22085,703], + [22087,1330], + [22089,1887], + [22091,619], + [22093,1181], + [22095,2283], + [22097,3293], + [22099,1913], + [22101,2370], + [22103,6849], + [22105,5213], + [22107,293], + [22109,3293], + [22111,1007], + [22113,1867], + [22115,1595], + [22117,1645], + [22119,1748], + [22121,938], + [22123,725], + [22125,352], + [22127,543], + [23001,4793], + [23003,3373], + [23005,10171], + [23007,1431], + [23009,2630], + [23011,4789], + [23013,1508], + [23015,1298], + [23017,2988], + [23019,6696], + [23021,852], + [23023,1279], + [23025,2740], + [23027,1732], + [23029,1613], + [23031,8661], + [24001,3213], + [24003,19711], + [24005,35610], + [24009,3284], + [24011,1610], + [24013,6315], + [24015,4950], + [24017,5407], + [24019,1884], + [24021,8829], + [24023,1402], + [24025,10338], + [24027,9020], + [24029,937], + [24031,29839], + [24033,35971], + [24035,1909], + [24037,3503], + [24039,1182], + [24041,1544], + [24043,7274], + [24045,4917], + [24047,3531], + [24510,33157], + [25001,11030], + [25003,5916], + [25005,30341], + [25007,889], + [25009,34116], + [25011,3046], + [25013,22708], + [25015,5996], + [25017,57202], + [25019,594], + [25021,26678], + [25023,23456], + [25025,30101], + [25027,37195], + [26001,692], + [26003,508], + [26005,6472], + [26007,1876], + [26009,1688], + [26011,1148], + [26013,756], + [26015,3042], + [26017,6319], + [26019,1206], + [26021,9213], + [26023,2535], + [26025,7607], + [26027,2791], + [26029,1874], + [26031,1586], + [26033,2124], + [26035,1950], + [26037,3327], + [26039,799], + [26041,2279], + [26043,1521], + [26045,5504], + [26047,2673], + [26049,26272], + [26051,1544], + [26053,945], + [26055,5538], + [26057,2311], + [26059,2910], + [26061,1929], + [26063,2075], + [26065,15245], + [26067,3568], + [26069,1640], + [26071,635], + [26073,3476], + [26075,9109], + [26077,12975], + [26079,1238], + [26081,32065], + [26083,153], + [26085,632], + [26087,6748], + [26089,1098], + [26091,6493], + [26093,10512], + [26095,335], + [26097,814], + [26099,58423], + [26101,1446], + [26103,3435], + [26105,1834], + [26107,2432], + [26109,1392], + [26111,4023], + [26113,905], + [26115,8869], + [26117,3921], + [26119,716], + [26121,11292], + [26123,2910], + [26125,73177], + [26127,2163], + [26129,1315], + [26131,515], + [26133,1413], + [26135,649], + [26137,1690], + [26139,14473], + [26141,1004], + [26143,1440], + [26145,11097], + [26147,12741], + [26149,3525], + [26151,3083], + [26153,518], + [26155,4473], + [26157,3843], + [26159,5097], + [26161,14832], + [26163,124328], + [26165,2195], + [27001,760], + [27003,15013], + [27005,1392], + [27007,1854], + [27009,1837], + [27011,189], + [27013,2427], + [27015,1038], + [27017,1490], + [27019,3473], + [27021,1519], + [27023,525], + [27025,2607], + [27027,1874], + [27029,601], + [27031,219], + [27033,405], + [27035,3050], + [27037,15845], + [27039,782], + [27041,1346], + [27043,624], + [27045,844], + [27047,1320], + [27049,1881], + [27051,270], + [27053,45597], + [27055,831], + [27057,967], + [27059,1978], + [27061,2285], + [27063,352], + [27065,984], + [27067,1571], + [27069,194], + [27071,602], + [27073,272], + [27075,482], + [27077,148], + [27079,1391], + [27081,190], + [27083,851], + [27085,1820], + [27087,207], + [27089,528], + [27091,842], + [27093,1127], + [27095,1457], + [27097,1768], + [27099,1274], + [27101,344], + [27103,1207], + [27105,646], + [27107,248], + [27109,4829], + [27111,2212], + [27113,759], + [27115,1507], + [27117,339], + [27119,1137], + [27121,419], + [27123,20128], + [27125,232], + [27127,578], + [27129,724], + [27131,2721], + [27133,272], + [27135,555], + [27137,8384], + [27139,5086], + [27141,4123], + [27143,670], + [27145,6180], + [27147,1637], + [27149,309], + [27151,424], + [27153,1048], + [27155,117], + [27157,865], + [27159,661], + [27161,791], + [27163,8858], + [27165,461], + [27167,209], + [27169,2021], + [27171,5634], + [27173,370], + [28001,1446], + [28003,1815], + [28005,594], + [28007,998], + [28009,408], + [28011,1697], + [28013,649], + [28015,504], + [28017,955], + [28019,444], + [28021,598], + [28023,830], + [28025,1425], + [28027,1436], + [28029,1369], + [28031,833], + [28033,5938], + [28035,3327], + [28037,368], + [28039,1006], + [28041,546], + [28043,1091], + [28045,1766], + [28047,7794], + [28049,11187], + [28051,1342], + [28053,600], + [28055,85], + [28057,1167], + [28059,6132], + [28061,859], + [28063,465], + [28065,648], + [28067,2548], + [28069,576], + [28071,2019], + [28073,1986], + [28075,3522], + [28077,613], + [28079,888], + [28081,4068], + [28083,1779], + [28085,1519], + [28087,3098], + [28089,3598], + [28091,1285], + [28093,1871], + [28095,2143], + [28097,644], + [28099,1227], + [28101,927], + [28103,699], + [28105,2219], + [28107,1952], + [28109,2225], + [28111,632], + [28113,1812], + [28115,1392], + [28117,1369], + [28119,476], + [28121,4856], + [28123,1082], + [28125,299], + [28127,1068], + [28129,664], + [28131,726], + [28133,1521], + [28135,719], + [28137,1360], + [28139,1214], + [28141,996], + [28143,688], + [28145,1324], + [28147,753], + [28149,2447], + [28151,3313], + [28153,1042], + [28155,504], + [28157,476], + [28159,1348], + [28161,706], + [28163,1212], + [29001,959], + [29003,820], + [29005,258], + [29007,1068], + [29009,1507], + [29011,593], + [29013,923], + [29015,884], + [29017,588], + [29019,5971], + [29021,4277], + [29023,1796], + [29025,436], + [29027,1853], + [29029,2330], + [29031,3008], + [29033,550], + [29035,307], + [29037,5138], + [29039,583], + [29041,392], + [29043,3441], + [29045,430], + [29047,10469], + [29049,1069], + [29051,2791], + [29053,777], + [29055,1372], + [29057,331], + [29059,916], + [29061,394], + [29063,444], + [29065,674], + [29067,637], + [29069,1657], + [29071,6059], + [29073,809], + [29075,278], + [29077,12069], + [29079,387], + [29081,386], + [29083,1094], + [29085,464], + [29087,214], + [29089,437], + [29091,1846], + [29093,597], + [29095,38529], + [29097,5008], + [29099,12195], + [29101,2334], + [29103,156], + [29105,1976], + [29107,1719], + [29109,1633], + [29111,444], + [29113,3148], + [29115,684], + [29117,583], + [29119,949], + [29121,693], + [29123,664], + [29125,403], + [29127,1343], + [29129,150], + [29131,1527], + [29133,590], + [29135,625], + [29137,505], + [29139,673], + [29141,1160], + [29143,819], + [29145,2584], + [29147,849], + [29149,456], + [29151,516], + [29153,423], + [29155,899], + [29157,713], + [29159,1861], + [29161,1785], + [29163,808], + [29165,3989], + [29167,1481], + [29169,1467], + [29171,192], + [29173,495], + [29175,1245], + [29177,1189], + [29179,360], + [29181,695], + [29183,16830], + [29185,464], + [29186,968], + [29187,3341], + [29189,47758], + [29195,976], + [29197,203], + [29199,186], + [29201,1845], + [29203,481], + [29205,279], + [29207,1421], + [29209,2002], + [29211,259], + [29213,3628], + [29215,1083], + [29217,791], + [29219,1898], + [29221,1469], + [29223,600], + [29225,1723], + [29227,85], + [29229,905], + [29510,18956], + [30001,297], + [30003,605], + [30005,168], + [30007,186], + [30009,342], + [30011,28], + [30013,2451], + [30015,120], + [30017,290], + [30019,33], + [30021,190], + [30023,317], + [30025,58], + [30027,386], + [30029,5274], + [30031,3452], + [30033,27], + [30035,612], + [30037,28], + [30039,135], + [30041,464], + [30043,354], + [30045,65], + [30047,1132], + [30049,1887], + [30051,45], + [30053,1262], + [30055,33], + [30057,315], + [30059,75], + [30061,223], + [30063,4292], + [30065,164], + [30067,691], + [30069,16], + [30071,150], + [30073,173], + [30075,39], + [30077,224], + [30079,29], + [30081,1769], + [30083,218], + [30085,315], + [30087,304], + [30089,655], + [30091,67], + [30093,1106], + [30095,278], + [30097,95], + [30099,181], + [30101,112], + [30103,21], + [30105,191], + [30107,68], + [30109,22], + [30111,4495], + [31001,781], + [31003,126], + [31005,18], + [31007,18], + [31009,13], + [31011,104], + [31013,291], + [31015,43], + [31017,68], + [31019,957], + [31021,216], + [31023,182], + [31025,755], + [31027,165], + [31029,64], + [31031,100], + [31033,202], + [31035,147], + [31037,223], + [31039,178], + [31041,220], + [31043,829], + [31045,218], + [31047,651], + [31049,40], + [31051,149], + [31053,996], + [31055,14294], + [31057,38], + [31059,121], + [31061,71], + [31063,60], + [31065,90], + [31067,656], + [31069,52], + [31071,37], + [31073,41], + [31075,16], + [31077,49], + [31079,1465], + [31081,181], + [31083,61], + [31085,22], + [31087,72], + [31089,211], + [31091,21], + [31093,148], + [31095,201], + [31097,109], + [31099,133], + [31101,195], + [31103,20], + [31105,100], + [31107,197], + [31109,6851], + [31111,877], + [31113,22], + [31115,21], + [31117,10], + [31119,799], + [31121,189], + [31123,108], + [31125,77], + [31127,205], + [31129,100], + [31131,428], + [31133,63], + [31135,59], + [31137,177], + [31139,153], + [31141,745], + [31143,119], + [31145,227], + [31147,270], + [31149,25], + [31151,341], + [31153,3778], + [31155,536], + [31157,1056], + [31159,351], + [31161,100], + [31163,70], + [31165,31], + [31167,146], + [31169,106], + [31171,19], + [31173,292], + [31175,95], + [31177,516], + [31179,215], + [31181,82], + [31183,20], + [31185,344], + [32001,1385], + [32003,135431], + [32005,3177], + [32007,2070], + [32009,38], + [32011,80], + [32013,724], + [32015,293], + [32017,213], + [32019,4022], + [32021,335], + [32023,2889], + [32027,254], + [32029,337], + [32031,28536], + [32033,421], + [32510,3600], + [33001,2055], + [33003,1414], + [33005,2361], + [33007,1220], + [33009,2319], + [33011,13911], + [33013,4352], + [33015,10301], + [33017,3943], + [33019,1246], + [34001,17268], + [34003,38446], + [34005,21303], + [34007,28964], + [34009,7026], + [34011,9431], + [34013,41444], + [34015,15648], + [34017,33752], + [34019,5049], + [34021,16103], + [34023,37961], + [34025,28873], + [34027,19632], + [34029,27146], + [34031,28763], + [34033,3745], + [34035,13178], + [34037,7757], + [34039,26617], + [34041,5771], + [35001,25236], + [35003,146], + [35005,2115], + [35006,896], + [35007,533], + [35009,1158], + [35011,50], + [35013,7260], + [35015,1643], + [35017,1193], + [35019,167], + [35021,18], + [35023,195], + [35025,2078], + [35027,704], + [35028,347], + [35029,2350], + [35031,2511], + [35033,300], + [35035,1814], + [35037,330], + [35039,1647], + [35041,526], + [35043,5108], + [35045,5147], + [35047,1073], + [35049,5044], + [35051,370], + [35053,536], + [35055,1641], + [35057,697], + [35059,121], + [35061,2980], + [36001,11247], + [36003,2218], + [36005,69810], + [36007,8528], + [36009,3773], + [36011,3405], + [36013,5660], + [36015,3489], + [36017,2182], + [36019,3892], + [36021,2348], + [36023,2171], + [36025,1966], + [36027,11517], + [36029,38713], + [36031,1715], + [36033,1996], + [36035,2768], + [36037,2541], + [36039,2004], + [36041,246], + [36043,2711], + [36045,4672], + [36047,115521], + [36049,1164], + [36051,2650], + [36053,2955], + [36055,30405], + [36057,2412], + [36059,49317], + [36061,75649], + [36063,10380], + [36065,8564], + [36067,19024], + [36069,4192], + [36071,14465], + [36073,1835], + [36075,6268], + [36077,2411], + [36079,3787], + [36081,95412], + [36083,6558], + [36085,20460], + [36087,11174], + [36089,5162], + [36091,8138], + [36093,6042], + [36095,1420], + [36097,822], + [36099,1345], + [36101,4523], + [36103,60265], + [36105,3249], + [36107,2120], + [36109,3370], + [36111,7296], + [36113,3072], + [36115,2492], + [36117,4202], + [36119,35200], + [36121,1841], + [36123,903], + [37001,8355], + [37003,2383], + [37005,569], + [37007,1578], + [37009,1622], + [37011,856], + [37013,2479], + [37015,1083], + [37017,2025], + [37019,5828], + [37021,10584], + [37023,5382], + [37025,10276], + [37027,5671], + [37029,385], + [37031,3006], + [37033,1332], + [37035,10172], + [37037,2622], + [37039,1504], + [37041,738], + [37043,531], + [37045,6740], + [37047,3241], + [37049,4536], + [37051,13269], + [37053,1085], + [37055,2386], + [37057,9919], + [37059,2380], + [37061,2394], + [37063,11819], + [37065,4015], + [37067,17549], + [37069,3047], + [37071,13678], + [37073,435], + [37075,650], + [37077,2668], + [37079,954], + [37081,27971], + [37083,3356], + [37085,5523], + [37087,2838], + [37089,4400], + [37091,1043], + [37093,1882], + [37095,248], + [37097,10139], + [37099,2012], + [37101,8110], + [37103,515], + [37105,3462], + [37107,3188], + [37109,5091], + [37111,2746], + [37113,1782], + [37115,974], + [37117,1335], + [37119,53584], + [37121,843], + [37123,1411], + [37125,3675], + [37127,5958], + [37129,10443], + [37131,1013], + [37133,5240], + [37135,4617], + [37137,561], + [37139,1841], + [37141,2796], + [37143,568], + [37145,2318], + [37147,8743], + [37149,869], + [37151,8315], + [37153,2814], + [37155,7375], + [37157,5841], + [37159,9050], + [37161,4515], + [37163,2855], + [37165,2309], + [37167,3832], + [37169,2603], + [37171,4133], + [37173,924], + [37175,1349], + [37177,245], + [37179,10138], + [37181,2686], + [37183,39855], + [37185,1036], + [37187,812], + [37189,2110], + [37191,5021], + [37193,4176], + [37195,5315], + [37197,1995], + [37199,926], + [38001,35], + [38003,276], + [38005,158], + [38007,14], + [38009,135], + [38011,46], + [38013,31], + [38015,1675], + [38017,3144], + [38019,69], + [38021,92], + [38023,29], + [38025,74], + [38027,62], + [38029,126], + [38031,62], + [38033,26], + [38035,1317], + [38037,53], + [38039,39], + [38041,45], + [38043,75], + [38045,88], + [38047,36], + [38049,158], + [38051,59], + [38053,78], + [38055,257], + [38057,227], + [38059,730], + [38061,144], + [38063,68], + [38065,53], + [38067,256], + [38069,106], + [38071,230], + [38073,131], + [38075,41], + [38077,348], + [38079,576], + [38081,88], + [38083,32], + [38085,67], + [38087,11], + [38089,404], + [38091,30], + [38093,467], + [38095,38], + [38097,169], + [38099,317], + [38101,1090], + [38103,93], + [38105,316], + [39001,1895], + [39003,5567], + [39005,3168], + [39007,6268], + [39009,3036], + [39011,2461], + [39013,3780], + [39015,2810], + [39017,19138], + [39019,1869], + [39021,2306], + [39023,7530], + [39025,10852], + [39027,3277], + [39029,6662], + [39031,2212], + [39033,2694], + [39035,53809], + [39037,3042], + [39039,2432], + [39041,6826], + [39043,4531], + [39045,6836], + [39047,1952], + [39049,55633], + [39051,2739], + [39053,1604], + [39055,3366], + [39057,7825], + [39059,2404], + [39061,40756], + [39063,3679], + [39065,1734], + [39067,904], + [39069,1910], + [39071,3316], + [39073,1637], + [39075,1476], + [39077,3998], + [39079,1787], + [39081,4818], + [39083,2989], + [39085,9971], + [39087,2849], + [39089,8418], + [39091,2757], + [39093,13789], + [39095,25094], + [39097,1865], + [39099,13488], + [39101,3317], + [39103,6986], + [39105,1470], + [39107,1889], + [39109,6035], + [39111,817], + [39113,30150], + [39115,916], + [39117,1975], + [39119,5239], + [39121,836], + [39123,2797], + [39125,1219], + [39127,2232], + [39129,2762], + [39131,1718], + [39133,9353], + [39135,2466], + [39137,1801], + [39139,7171], + [39141,4068], + [39143,3577], + [39145,4348], + [39147,3518], + [39149,3105], + [39151,21651], + [39153,29814], + [39155,13210], + [39157,5181], + [39159,2236], + [39161,1807], + [39163,782], + [39165,9927], + [39167,3402], + [39169,5585], + [39171,2571], + [39173,6795], + [39175,1354], + [40001,937], + [40003,122], + [40005,512], + [40007,115], + [40009,596], + [40011,287], + [40013,1142], + [40015,822], + [40017,3098], + [40019,1504], + [40021,1489], + [40023,557], + [40025,51], + [40027,6929], + [40029,209], + [40031,2963], + [40033,201], + [40035,441], + [40037,2731], + [40039,729], + [40041,1371], + [40043,121], + [40045,110], + [40047,1572], + [40049,914], + [40051,1660], + [40053,115], + [40055,168], + [40057,77], + [40059,84], + [40061,468], + [40063,608], + [40065,679], + [40067,202], + [40069,388], + [40071,1931], + [40073,374], + [40075,260], + [40077,459], + [40079,1962], + [40081,1022], + [40083,1121], + [40085,272], + [40087,957], + [40089,1662], + [40091,811], + [40093,198], + [40095,469], + [40097,1594], + [40099,390], + [40101,2461], + [40103,355], + [40105,456], + [40107,426], + [40109,21768], + [40111,1652], + [40113,1649], + [40115,1173], + [40117,700], + [40119,2114], + [40121,1545], + [40123,1096], + [40125,2153], + [40127,489], + [40129,82], + [40131,2975], + [40133,953], + [40135,1737], + [40137,1561], + [40139,419], + [40141,212], + [40143,21551], + [40145,2391], + [40147,1620], + [40149,332], + [40151,182], + [40153,645], + [41001,755], + [41003,3202], + [41005,20374], + [41007,1904], + [41009,3050], + [41011,3525], + [41013,1527], + [41015,1186], + [41017,11243], + [41019,6694], + [41021,86], + [41023,465], + [41025,546], + [41027,1173], + [41029,12576], + [41031,1315], + [41033,4839], + [41035,4035], + [41037,501], + [41039,19648], + [41041,2438], + [41043,7321], + [41045,1302], + [41047,17324], + [41049,535], + [41051,40327], + [41053,3537], + [41055,106], + [41057,1230], + [41059,3773], + [41061,1290], + [41063,452], + [41065,1307], + [41067,25963], + [41069,74], + [41071,5341], + [42001,4215], + [42003,48202], + [42005,3059], + [42007,7348], + [42009,2556], + [42011,18230], + [42013,4948], + [42015,2229], + [42017,25727], + [42019,7056], + [42021,6290], + [42023,322], + [42025,3365], + [42027,4599], + [42029,16841], + [42031,2003], + [42033,3975], + [42035,1762], + [42037,3240], + [42039,3948], + [42041,8508], + [42043,11275], + [42045,22900], + [42047,1611], + [42049,12687], + [42051,6399], + [42053,244], + [42055,6455], + [42057,912], + [42059,1457], + [42061,2265], + [42063,3828], + [42065,2177], + [42067,961], + [42069,9585], + [42071,20089], + [42073,3982], + [42075,5236], + [42077,16284], + [42079,15900], + [42081,5313], + [42083,2017], + [42085,5111], + [42087,2179], + [42089,8049], + [42091,29893], + [42093,610], + [42095,13325], + [42097,4512], + [42099,2023], + [42101,72736], + [42103,2539], + [42105,811], + [42107,7492], + [42109,1688], + [42111,3558], + [42113,237], + [42115,1886], + [42117,1678], + [42119,1481], + [42121,2246], + [42123,1728], + [42125,8515], + [42127,1917], + [42129,15251], + [42131,1257], + [42133,19344], + [44001,2618], + [44003,10467], + [44005,4491], + [44007,38712], + [44009,7200], + [45001,1486], + [45003,6729], + [45005,633], + [45007,9854], + [45009,1049], + [45011,1576], + [45013,5652], + [45015,8288], + [45017,866], + [45019,15736], + [45021,3727], + [45023,2829], + [45025,3060], + [45027,1944], + [45029,2314], + [45031,4035], + [45033,2231], + [45035,6242], + [45037,1093], + [45039,1559], + [45041,7268], + [45043,3774], + [45045,21204], + [45047,3778], + [45049,1126], + [45051,16087], + [45053,1073], + [45055,3238], + [45057,4997], + [45059,3709], + [45061,1127], + [45063,10904], + [45065,509], + [45067,2633], + [45069,2304], + [45071,2004], + [45073,3792], + [45075,6380], + [45077,5925], + [45079,17376], + [45081,871], + [45083,15613], + [45085,5532], + [45087,2190], + [45089,2303], + [45091,14004], + [46003,59], + [46005,394], + [46007,86], + [46009,134], + [46011,834], + [46013,804], + [46015,101], + [46017,78], + [46019,259], + [46021,39], + [46023,203], + [46025,102], + [46027,312], + [46029,781], + [46031,107], + [46033,238], + [46035,484], + [46037,205], + [46039,167], + [46041,350], + [46043,78], + [46045,74], + [46047,203], + [46049,46], + [46051,224], + [46053,95], + [46055,38], + [46057,157], + [46059,62], + [46061,93], + [46063,28], + [46065,349], + [46067,152], + [46069,30], + [46071,95], + [46073,44], + [46075,20], + [46077,155], + [46079,348], + [46081,621], + [46083,1030], + [46085,126], + [46087,160], + [46089,59], + [46091,133], + [46093,691], + [46095,55], + [46097,69], + [46099,4937], + [46101,291], + [46102,"NA"], + [46103,2757], + [46105,67], + [46107,62], + [46109,293], + [46111,56], + [46115,135], + [46117,74], + [46119,32], + [46121,259], + [46123,119], + [46125,221], + [46127,448], + [46129,164], + [46135,559], + [46137,61], + [47001,3251], + [47003,2646], + [47005,886], + [47007,591], + [47009,5582], + [47011,4362], + [47013,2016], + [47015,677], + [47017,2024], + [47019,2867], + [47021,1810], + [47023,834], + [47025,1470], + [47027,400], + [47029,2164], + [47031,2616], + [47033,844], + [47035,2478], + [47037,27935], + [47039,696], + [47041,953], + [47043,2446], + [47045,2152], + [47047,1871], + [47049,918], + [47051,1949], + [47053,2853], + [47055,1718], + [47057,1280], + [47059,3975], + [47061,712], + [47063,3283], + [47065,14080], + [47067,407], + [47069,1368], + [47071,1376], + [47073,2777], + [47075,1399], + [47077,1853], + [47079,1647], + [47081,1223], + [47083,423], + [47085,992], + [47087,604], + [47089,2802], + [47091,955], + [47093,17043], + [47095,241], + [47097,1531], + [47099,2378], + [47101,812], + [47103,1124], + [47105,2072], + [47107,2861], + [47109,1348], + [47111,1150], + [47113,4838], + [47115,1397], + [47117,2018], + [47119,5095], + [47121,651], + [47123,2479], + [47125,6456], + [47127,257], + [47129,955], + [47131,1496], + [47133,1095], + [47135,426], + [47137,268], + [47139,822], + [47141,3192], + [47143,1670], + [47145,2234], + [47147,3114], + [47149,12422], + [47151,1573], + [47153,737], + [47155,5120], + [47157,43782], + [47159,1096], + [47161,703], + [47163,6663], + [47165,7382], + [47167,3293], + [47169,406], + [47171,946], + [47173,836], + [47175,309], + [47177,1935], + [47179,5279], + [47181,791], + [47183,1862], + [47185,1297], + [47187,6210], + [47189,4900], + [48001,1755], + [48003,439], + [48005,3242], + [48007,890], + [48009,306], + [48011,50], + [48013,1601], + [48015,1119], + [48017,257], + [48019,716], + [48021,2907], + [48023,122], + [48025,940], + [48027,10166], + [48029,59203], + [48031,323], + [48033,23], + [48035,744], + [48037,3563], + [48039,13184], + [48041,6294], + [48043,268], + [48045,45], + [48047,310], + [48049,1348], + [48051,619], + [48053,1374], + [48055,1436], + [48057,897], + [48059,436], + [48061,18145], + [48063,516], + [48065,182], + [48067,1493], + [48069,223], + [48071,1608], + [48073,1932], + [48075,178], + [48077,415], + [48079,124], + [48081,96], + [48083,316], + [48085,30655], + [48087,75], + [48089,780], + [48091,3766], + [48093,455], + [48095,90], + [48097,1420], + [48099,1897], + [48101,47], + [48103,138], + [48105,146], + [48107,235], + [48109,73], + [48111,207], + [48113,102522], + [48115,395], + [48117,547], + [48119,205], + [48121,26116], + [48123,705], + [48125,98], + [48127,406], + [48129,125], + [48131,585], + [48133,701], + [48135,5661], + [48137,74], + [48139,6063], + [48141,31212], + [48143,1320], + [48145,616], + [48147,1249], + [48149,734], + [48151,135], + [48153,267], + [48155,44], + [48157,22709], + [48159,414], + [48161,671], + [48163,553], + [48165,471], + [48167,13454], + [48169,126], + [48171,666], + [48173,34], + [48175,248], + [48177,634], + [48179,797], + [48181,4869], + [48183,4795], + [48185,1008], + [48187,4364], + [48189,1198], + [48191,129], + [48193,268], + [48195,131], + [48197,161], + [48199,2557], + [48201,171177], + [48203,2888], + [48205,112], + [48207,163], + [48209,5650], + [48211,84], + [48213,3061], + [48215,37418], + [48217,1336], + [48219,778], + [48221,1989], + [48223,1238], + [48225,808], + [48227,948], + [48229,112], + [48231,3394], + [48233,820], + [48235,46], + [48237,287], + [48239,502], + [48241,1837], + [48243,63], + [48245,12846], + [48247,240], + [48249,1820], + [48251,6237], + [48253,540], + [48255,442], + [48257,4311], + [48259,1021], + [48261,15], + [48263,27], + [48265,1462], + [48267,136], + [48269,12], + [48271,142], + [48273,1256], + [48275,112], + [48277,2165], + [48279,514], + [48281,641], + [48283,243], + [48285,670], + [48287,596], + [48289,643], + [48291,3574], + [48293,783], + [48295,98], + [48297,339], + [48299,644], + [48301,4], + [48303,8967], + [48305,202], + [48307,287], + [48309,8307], + [48311,21], + [48313,400], + [48315,531], + [48317,132], + [48319,125], + [48321,2083], + [48323,3566], + [48325,1508], + [48327,74], + [48329,4176], + [48331,1177], + [48333,139], + [48335,244], + [48337,754], + [48339,16930], + [48341,619], + [48343,794], + [48345,39], + [48347,2189], + [48349,1898], + [48351,754], + [48353,550], + [48355,13190], + [48357,288], + [48359,44], + [48361,4483], + [48363,1143], + [48365,1031], + [48367,4295], + [48369,236], + [48371,527], + [48373,1702], + [48375,3653], + [48377,691], + [48379,454], + [48381,3426], + [48383,106], + [48385,104], + [48387,644], + [48389,509], + [48391,291], + [48393,26], + [48395,696], + [48397,2915], + [48399,427], + [48401,1870], + [48403,596], + [48405,414], + [48407,1120], + [48409,3191], + [48411,158], + [48413,124], + [48415,482], + [48417,106], + [48419,1002], + [48421,71], + [48423,8041], + [48425,322], + [48427,4509], + [48429,317], + [48431,32], + [48433,43], + [48435,191], + [48437,209], + [48439,75375], + [48441,4354], + [48443,34], + [48445,428], + [48447,53], + [48449,1193], + [48451,3446], + [48453,38970], + [48455,551], + [48457,931], + [48459,1608], + [48461,95], + [48463,1057], + [48465,1915], + [48467,1981], + [48469,3301], + [48471,1798], + [48473,1726], + [48475,392], + [48477,1122], + [48479,8652], + [48481,1848], + [48483,167], + [48485,4599], + [48487,483], + [48489,1125], + [48491,16126], + [48493,1450], + [48495,266], + [48497,2399], + [48499,1537], + [48501,257], + [48503,664], + [48505,599], + [48507,633], + [49001,314], + [49003,2004], + [49005,3481], + [49007,853], + [49009,36], + [49011,10261], + [49013,781], + [49015,384], + [49017,314], + [49019,559], + [49021,1957], + [49023,421], + [49025,283], + [49027,398], + [49029,294], + [49031,58], + [49033,75], + [49035,42069], + [49037,663], + [49039,1035], + [49041,810], + [49043,1544], + [49045,2291], + [49047,1293], + [49049,17091], + [49051,955], + [49053,5955], + [49055,135], + [49057,9971], + [50001,1236], + [50003,1407], + [50005,1136], + [50007,4541], + [50009,316], + [50011,1579], + [50013,286], + [50015,1104], + [50017,982], + [50019,1265], + [50021,2485], + [50023,2068], + [50025,1562], + [50027,1947], + [51001,1326], + [51003,3050], + [51005,687], + [51007,528], + [51009,1322], + [51011,632], + [51013,5667], + [51015,2649], + [51017,189], + [51019,2751], + [51021,249], + [51023,1141], + [51025,785], + [51027,829], + [51029,700], + [51031,2142], + [51033,1370], + [51035,1616], + [51036,374], + [51037,536], + [51041,12295], + [51043,514], + [51045,194], + [51047,1672], + [51049,382], + [51051,579], + [51053,1199], + [51057,519], + [51059,31022], + [51061,2211], + [51063,567], + [51065,825], + [51067,2406], + [51069,3149], + [51071,795], + [51073,1334], + [51075,750], + [51077,918], + [51079,648], + [51081,438], + [51083,2035], + [51085,3575], + [51087,12249], + [51089,3540], + [51091,90], + [51093,1342], + [51095,2038], + [51097,290], + [51099,840], + [51101,645], + [51103,546], + [51105,802], + [51107,8952], + [51109,1345], + [51111,527], + [51113,452], + [51115,268], + [51117,1606], + [51119,371], + [51121,3357], + [51125,540], + [51127,744], + [51131,536], + [51133,533], + [51135,521], + [51137,1278], + [51139,1436], + [51141,1056], + [51143,3368], + [51145,953], + [51147,995], + [51149,1124], + [51153,13297], + [51155,1884], + [51157,254], + [51159,308], + [51161,3121], + [51163,839], + [51165,2717], + [51167,1237], + [51169,853], + [51171,1714], + [51173,1661], + [51175,816], + [51177,4435], + [51179,4156], + [51181,331], + [51183,489], + [51185,1615], + [51187,1623], + [51191,2177], + [51193,742], + [51195,1416], + [51197,1590], + [51199,1912], + [51510,4446], + [51520,703], + [51530,323], + [51540,1413], + [51550,8146], + [51570,705], + [51580,286], + [51590,2709], + [51595,319], + [51600,689], + [51610,360], + [51620,467], + [51630,1119], + [51640,347], + [51650,5979], + [51660,1915], + [51670,1143], + [51678,214], + [51680,3043], + [51683,1469], + [51685,503], + [51690,1070], + [51700,7560], + [51710,9843], + [51720,151], + [51730,1938], + [51735,388], + [51740,4359], + [51750,727], + [51760,10109], + [51770,4295], + [51775,879], + [51790,926], + [51800,3172], + [51810,14749], + [51820,915], + [51830,660], + [51840,1137], + [53001,885], + [53003,972], + [53005,7407], + [53007,3749], + [53009,3269], + [53011,27992], + [53013,185], + [53015,5997], + [53017,1931], + [53019,464], + [53021,3370], + [53023,88], + [53025,4690], + [53027,4323], + [53029,3147], + [53031,1314], + [53033,99769], + [53035,10362], + [53037,2085], + [53039,1259], + [53041,4459], + [53043,447], + [53045,2978], + [53047,2397], + [53049,1232], + [53051,789], + [53053,41268], + [53055,618], + [53057,6456], + [53059,665], + [53061,41255], + [53063,24016], + [53065,2501], + [53067,11398], + [53069,225], + [53071,2445], + [53073,9892], + [53075,1512], + [53077,12972], + [54001,690], + [54003,4378], + [54005,777], + [54007,630], + [54009,1245], + [54011,3128], + [54013,407], + [54015,516], + [54017,237], + [54019,1750], + [54021,247], + [54023,599], + [54025,1350], + [54027,888], + [54029,1718], + [54031,662], + [54033,2382], + [54035,1402], + [54037,1792], + [54039,6838], + [54041,614], + [54043,925], + [54045,1283], + [54047,841], + [54049,1938], + [54051,1419], + [54053,1302], + [54055,2041], + [54057,1154], + [54059,902], + [54061,2701], + [54063,461], + [54065,702], + [54067,1096], + [54069,1733], + [54071,315], + [54073,310], + [54075,437], + [54077,1248], + [54079,2001], + [54081,2646], + [54083,1281], + [54085,417], + [54087,751], + [54089,453], + [54091,574], + [54093,364], + [54095,406], + [54097,960], + [54099,1445], + [54101,379], + [54103,823], + [54105,287], + [54107,3498], + [54109,874], + [55001,1132], + [55003,933], + [55005,2205], + [55007,852], + [55009,10816], + [55011,558], + [55013,841], + [55015,1884], + [55017,2797], + [55019,1780], + [55021,2729], + [55023,878], + [55025,17405], + [55027,4277], + [55029,1773], + [55031,1978], + [55033,1834], + [55035,3970], + [55037,233], + [55039,4801], + [55041,498], + [55043,2115], + [55045,1702], + [55047,961], + [55049,1136], + [55051,327], + [55053,885], + [55055,4058], + [55057,1367], + [55059,8824], + [55061,916], + [55063,4356], + [55065,679], + [55067,1119], + [55069,1773], + [55071,4428], + [55073,6829], + [55075,2367], + [55077,836], + [55078,271], + [55079,47615], + [55081,1841], + [55083,2290], + [55085,1943], + [55087,8142], + [55089,3359], + [55091,305], + [55093,1667], + [55095,2393], + [55097,3186], + [55099,827], + [55101,10193], + [55103,867], + [55105,9315], + [55107,877], + [55109,3600], + [55111,3021], + [55113,947], + [55115,2239], + [55117,5782], + [55119,1176], + [55121,1207], + [55123,1196], + [55125,1169], + [55127,5084], + [55129,781], + [55131,6113], + [55133,16013], + [55135,2621], + [55137,1295], + [55139,7224], + [55141,3710], + [56001,956], + [56003,376], + [56005,1587], + [56007,556], + [56009,413], + [56011,195], + [56013,1457], + [56015,368], + [56017,134], + [56019,309], + [56021,3090], + [56023,728], + [56025,2784], + [56027,64], + [56029,973], + [56031,275], + [56033,1181], + [56035,333], + [56037,1526], + [56039,1042], + [56041,742], + [56043,271], + [56045,194] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2011.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2011.json new file mode 100644 index 0000000..5aaba99 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2011.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2011", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2011"], + [1001,2159], + [1003,7627], + [1005,1137], + [1007,937], + [1009,2184], + [1011,561], + [1013,1146], + [1015,5305], + [1017,1820], + [1019,1112], + [1021,1786], + [1023,626], + [1025,1662], + [1027,663], + [1029,574], + [1031,1690], + [1033,2481], + [1035,728], + [1037,559], + [1039,1603], + [1041,634], + [1043,3390], + [1045,1829], + [1047,2648], + [1049,3530], + [1051,3076], + [1053,1623], + [1055,4484], + [1057,736], + [1059,1376], + [1061,1057], + [1063,558], + [1065,870], + [1067,707], + [1069,4031], + [1071,2481], + [1073,29736], + [1075,566], + [1077,4022], + [1079,1611], + [1081,5504], + [1083,3359], + [1085,750], + [1087,1195], + [1089,14214], + [1091,991], + [1093,1407], + [1095,3869], + [1097,20880], + [1099,1308], + [1101,10601], + [1103,5509], + [1105,639], + [1107,907], + [1109,1368], + [1111,1073], + [1113,2527], + [1115,3374], + [1117,6487], + [1119,731], + [1121,4101], + [1123,2097], + [1125,7931], + [1127,3058], + [1129,1036], + [1131,690], + [1133,1327], + [2013,135], + [2016,248], + [2020,9464], + [2050,1084], + [2060,46], + [2068,139], + [2070,223], + [2090,3116], + [2100,117], + [2105,166], + [2110,994], + [2122,2598], + [2130,620], + [2150,502], + [2158,"NA"], + [2164,96], + [2170,3978], + [2180,508], + [2185,303], + [2188,463], + [2195,155], + [2198,318], + [2220,284], + [2230,116], + [2240,398], + [2261,489], + [2275,79], + [2282,32], + [2290,498], + [4001,4252], + [4003,5328], + [4005,6836], + [4007,2446], + [4009,1429], + [4011,370], + [4012,770], + [4013,162123], + [4015,9771], + [4017,6430], + [4019,39573], + [4021,14615], + [4023,3167], + [4025,9179], + [4027,22258], + [5001,1292], + [5003,1106], + [5005,1541], + [5007,7133], + [5009,1330], + [5011,572], + [5013,254], + [5015,932], + [5017,564], + [5019,1074], + [5021,885], + [5023,972], + [5025,331], + [5027,1044], + [5029,893], + [5031,3634], + [5033,2481], + [5035,2485], + [5037,740], + [5039,414], + [5041,687], + [5043,1005], + [5045,4276], + [5047,598], + [5049,398], + [5051,3660], + [5053,632], + [5055,1958], + [5057,975], + [5059,1207], + [5061,506], + [5063,1562], + [5065,519], + [5067,779], + [5069,3749], + [5071,878], + [5073,291], + [5075,740], + [5077,352], + [5079,447], + [5081,481], + [5083,851], + [5085,2325], + [5087,491], + [5089,638], + [5091,1324], + [5093,2530], + [5095,323], + [5097,356], + [5099,396], + [5101,285], + [5103,1166], + [5105,422], + [5107,1026], + [5109,468], + [5111,1034], + [5113,721], + [5115,2392], + [5117,341], + [5119,14199], + [5121,811], + [5123,1095], + [5125,3608], + [5127,343], + [5129,306], + [5131,5158], + [5133,590], + [5135,675], + [5137,483], + [5139,1790], + [5141,746], + [5143,6607], + [5145,3188], + [5147,392], + [5149,719], + [6001,79375], + [6003,76], + [6005,2055], + [6007,13756], + [6009,2899], + [6011,2417], + [6013,54540], + [6015,1449], + [6017,10502], + [6019,73285], + [6021,2043], + [6023,6878], + [6025,22932], + [6027,941], + [6029,56655], + [6031,9405], + [6033,4301], + [6035,1595], + [6037,600541], + [6039,10024], + [6041,9775], + [6043,1141], + [6045,4669], + [6047,20235], + [6049,578], + [6051,888], + [6053,27412], + [6055,6914], + [6057,5431], + [6059,139978], + [6061,18821], + [6063,1564], + [6065,128879], + [6067,82312], + [6069,4102], + [6071,114347], + [6073,157332], + [6075,39899], + [6077,50366], + [6079,12865], + [6081,30032], + [6083,19982], + [6085,87425], + [6087,18470], + [6089,12282], + [6091,238], + [6093,3301], + [6095,24622], + [6097,25213], + [6099,39960], + [6101,8343], + [6103,3830], + [6105,899], + [6107,34787], + [6109,3285], + [6111,44223], + [6113,11988], + [6115,4913], + [8001,23454], + [8003,742], + [8005,26386], + [8007,579], + [8009,99], + [8011,159], + [8013,11098], + [8014,2229], + [8015,599], + [8017,44], + [8019,406], + [8021,390], + [8023,185], + [8025,132], + [8027,128], + [8029,1504], + [8031,30273], + [8033,121], + [8035,10125], + [8037,2523], + [8039,950], + [8041,28021], + [8043,1911], + [8045,2972], + [8047,236], + [8049,708], + [8051,599], + [8053,24], + [8055,361], + [8057,54], + [8059,24049], + [8061,42], + [8063,200], + [8065,441], + [8067,2068], + [8069,12238], + [8071,769], + [8073,139], + [8075,693], + [8077,7737], + [8079,23], + [8081,731], + [8083,1136], + [8085,2212], + [8087,1003], + [8089,844], + [8091,206], + [8093,723], + [8095,115], + [8097,854], + [8099,413], + [8101,7906], + [8103,245], + [8105,633], + [8107,1177], + [8109,336], + [8111,61], + [8113,393], + [8115,87], + [8117,1252], + [8119,1130], + [8121,141], + [8123,11548], + [8125,261], + [9001,39124], + [9003,43402], + [9005,8790], + [9007,7144], + [9009,44781], + [9011,12685], + [9013,6508], + [9015,6373], + [10001,6065], + [10003,20132], + [10005,7063], + [11001,35607], + [12001,9776], + [12003,1173], + [12005,8894], + [12007,1045], + [12009,28877], + [12011,89759], + [12013,544], + [12015,7414], + [12017,6511], + [12019,8758], + [12021,15081], + [12023,2905], + [12027,1437], + [12029,707], + [12031,46885], + [12033,13643], + [12035,4773], + [12037,386], + [12039,2272], + [12041,706], + [12043,504], + [12045,603], + [12047,509], + [12049,1198], + [12051,2489], + [12053,8274], + [12055,4378], + [12057,63421], + [12059,707], + [12061,7843], + [12063,1729], + [12065,595], + [12067,227], + [12069,14188], + [12071,31180], + [12073,11648], + [12075,1849], + [12077,262], + [12079,775], + [12081,14789], + [12083,16126], + [12085,6614], + [12086,118064], + [12087,2990], + [12089,3462], + [12091,7107], + [12093,2127], + [12095,62927], + [12097,15817], + [12099,65524], + [12101,22368], + [12103,45043], + [12105,31180], + [12107,3808], + [12109,7850], + [12111,16197], + [12113,6276], + [12115,17068], + [12117,22174], + [12119,3165], + [12121,1745], + [12123,951], + [12125,424], + [12127,26700], + [12129,1206], + [12131,2235], + [12133,1043], + [13001,1097], + [13003,448], + [13005,473], + [13007,136], + [13009,2563], + [13011,786], + [13013,3444], + [13015,5467], + [13017,975], + [13019,982], + [13021,8188], + [13023,733], + [13025,983], + [13027,707], + [13029,1378], + [13031,3521], + [13033,1263], + [13035,1188], + [13037,212], + [13039,2021], + [13043,484], + [13045,5896], + [13047,2629], + [13049,528], + [13051,12989], + [13053,274], + [13055,1167], + [13057,9301], + [13059,5321], + [13061,131], + [13063,17035], + [13065,317], + [13067,33963], + [13069,2269], + [13071,2019], + [13073,4653], + [13075,856], + [13077,5886], + [13079,626], + [13081,1280], + [13083,668], + [13085,1103], + [13087,1447], + [13089,38667], + [13091,1018], + [13093,625], + [13095,5021], + [13097,7282], + [13099,511], + [13101,152], + [13103,2388], + [13105,1418], + [13107,1218], + [13109,439], + [13111,1160], + [13113,4264], + [13115,5412], + [13117,6747], + [13119,1185], + [13121,50827], + [13123,1455], + [13125,142], + [13127,3989], + [13129,3069], + [13131,1030], + [13133,787], + [13135,37209], + [13137,1926], + [13139,7773], + [13141,586], + [13143,1422], + [13145,1215], + [13147,1248], + [13149,585], + [13151,10602], + [13153,5840], + [13155,487], + [13157,2771], + [13159,749], + [13161,820], + [13163,944], + [13165,460], + [13167,462], + [13169,1273], + [13171,1114], + [13173,415], + [13175,2809], + [13177,1211], + [13179,2573], + [13181,420], + [13183,566], + [13185,5082], + [13187,1455], + [13189,1255], + [13191,658], + [13193,731], + [13195,1337], + [13197,384], + [13199,1235], + [13201,251], + [13205,955], + [13207,1236], + [13209,516], + [13211,868], + [13213,2370], + [13215,8304], + [13217,5975], + [13219,1183], + [13221,680], + [13223,7097], + [13225,1504], + [13227,1481], + [13229,863], + [13231,860], + [13233,2147], + [13235,431], + [13237,1126], + [13239,100], + [13241,871], + [13243,376], + [13245,9951], + [13247,4742], + [13249,248], + [13251,911], + [13253,412], + [13255,4004], + [13257,1403], + [13259,229], + [13261,1750], + [13263,307], + [13265,97], + [13267,869], + [13269,459], + [13271,699], + [13273,462], + [13275,1901], + [13277,2290], + [13279,1667], + [13281,546], + [13283,397], + [13285,3800], + [13287,514], + [13289,504], + [13291,963], + [13293,1392], + [13295,3039], + [13297,4291], + [13299,1724], + [13301,439], + [13303,1034], + [13305,1519], + [13307,122], + [13309,291], + [13311,1308], + [13313,5616], + [13315,375], + [13317,547], + [13319,487], + [13321,1126], + [15001,8723], + [15003,26795], + [15005,"NA"], + [15007,3035], + [15009,6382], + [16001,14705], + [16003,312], + [16005,3085], + [16007,178], + [16009,552], + [16011,1629], + [16013,1030], + [16015,312], + [16017,2352], + [16019,3419], + [16021,623], + [16023,108], + [16025,79], + [16027,9023], + [16029,290], + [16031,738], + [16033,46], + [16035,459], + [16037,183], + [16039,912], + [16041,339], + [16043,519], + [16045,833], + [16047,565], + [16049,825], + [16051,868], + [16053,833], + [16055,7032], + [16057,1212], + [16059,377], + [16061,97], + [16063,320], + [16065,946], + [16067,734], + [16069,1278], + [16071,117], + [16073,212], + [16075,1003], + [16077,345], + [16079,799], + [16081,359], + [16083,2947], + [16085,657], + [16087,462], + [17001,2373], + [17003,373], + [17005,790], + [17007,3196], + [17009,161], + [17011,1853], + [17013,243], + [17015,746], + [17017,565], + [17019,8221], + [17021,1618], + [17023,841], + [17025,710], + [17027,1394], + [17029,2325], + [17031,275500], + [17033,787], + [17035,513], + [17037,5179], + [17039,739], + [17041,822], + [17043,41132], + [17045,978], + [17047,255], + [17049,1282], + [17051,1031], + [17053,609], + [17055,1964], + [17057,1826], + [17059,229], + [17061,586], + [17063,3282], + [17065,338], + [17067,882], + [17069,189], + [17071,307], + [17073,2079], + [17075,1445], + [17077,2364], + [17079,392], + [17081,1694], + [17083,1035], + [17085,960], + [17087,514], + [17089,26069], + [17091,6487], + [17093,5841], + [17095,2186], + [17097,32527], + [17099,6484], + [17101,699], + [17103,1707], + [17105,1588], + [17107,1064], + [17109,1198], + [17111,16474], + [17113,6309], + [17115,5486], + [17117,2402], + [17119,12325], + [17121,1912], + [17123,563], + [17125,762], + [17127,629], + [17129,515], + [17131,738], + [17133,1219], + [17135,1621], + [17137,1456], + [17139,568], + [17141,3135], + [17143,8866], + [17145,963], + [17147,624], + [17149,635], + [17151,175], + [17153,282], + [17155,328], + [17157,1220], + [17159,643], + [17161,6476], + [17163,12913], + [17165,1107], + [17167,8084], + [17169,302], + [17171,234], + [17173,1002], + [17175,260], + [17177,2365], + [17179,5942], + [17181,902], + [17183,3722], + [17185,516], + [17187,660], + [17189,574], + [17191,657], + [17193,586], + [17195,2806], + [17197,37672], + [17199,2921], + [17201,17489], + [17203,1322], + [18001,1263], + [18003,16337], + [18005,3043], + [18007,367], + [18009,691], + [18011,2003], + [18013,684], + [18015,843], + [18017,1714], + [18019,4944], + [18021,1349], + [18023,1444], + [18025,577], + [18027,909], + [18029,2441], + [18031,1273], + [18033,1987], + [18035,5547], + [18037,1332], + [18039,10254], + [18041,1195], + [18043,3014], + [18045,828], + [18047,1127], + [18049,942], + [18051,1267], + [18053,3470], + [18055,1470], + [18057,8609], + [18059,2950], + [18061,1678], + [18063,5305], + [18065,2450], + [18067,3762], + [18069,1880], + [18071,1797], + [18073,1460], + [18075,945], + [18077,1483], + [18079,1537], + [18081,5583], + [18083,1375], + [18085,3482], + [18087,1498], + [18089,21966], + [18091,5238], + [18093,2416], + [18095,6410], + [18097,45053], + [18099,2222], + [18101,401], + [18103,1665], + [18105,5088], + [18107,1659], + [18109,3265], + [18111,690], + [18113,2331], + [18115,305], + [18117,1049], + [18119,1138], + [18121,752], + [18123,825], + [18125,487], + [18127,6722], + [18129,923], + [18131,517], + [18133,1797], + [18135,1351], + [18137,1412], + [18139,818], + [18141,13220], + [18143,1232], + [18145,2132], + [18147,846], + [18149,1179], + [18151,1663], + [18153,827], + [18155,407], + [18157,6533], + [18159,716], + [18161,324], + [18163,7418], + [18165,898], + [18167,5204], + [18169,1502], + [18171,347], + [18173,2208], + [18175,1434], + [18177,3445], + [18179,1157], + [18181,1134], + [18183,1616], + [19001,199], + [19003,98], + [19005,556], + [19007,419], + [19009,193], + [19011,819], + [19013,4135], + [19015,727], + [19017,604], + [19019,632], + [19021,511], + [19023,411], + [19025,257], + [19027,468], + [19029,434], + [19031,561], + [19033,1481], + [19035,329], + [19037,406], + [19039,329], + [19041,503], + [19043,639], + [19045,1710], + [19047,417], + [19049,1631], + [19051,255], + [19053,217], + [19055,559], + [19057,1369], + [19059,583], + [19061,2748], + [19063,324], + [19065,686], + [19067,537], + [19069,306], + [19071,229], + [19073,290], + [19075,334], + [19077,348], + [19079,657], + [19081,332], + [19083,528], + [19085,433], + [19087,668], + [19089,284], + [19091,260], + [19093,184], + [19095,481], + [19097,714], + [19099,1246], + [19101,528], + [19103,3214], + [19105,634], + [19107,335], + [19109,364], + [19111,1420], + [19113,6779], + [19115,360], + [19117,221], + [19119,211], + [19121,493], + [19123,690], + [19125,934], + [19127,1318], + [19129,368], + [19131,268], + [19133,331], + [19135,271], + [19137,295], + [19139,1408], + [19141,339], + [19143,157], + [19145,391], + [19147,224], + [19149,635], + [19151,179], + [19153,13767], + [19155,2768], + [19157,579], + [19159,119], + [19161,248], + [19163,5342], + [19165,290], + [19167,719], + [19169,2096], + [19171,561], + [19173,149], + [19175,366], + [19177,243], + [19179,1296], + [19181,1345], + [19183,577], + [19185,156], + [19187,1378], + [19189,328], + [19191,603], + [19193,3128], + [19195,274], + [19197,465], + [20001,564], + [20003,342], + [20005,717], + [20007,111], + [20009,784], + [20011,617], + [20013,309], + [20015,2274], + [20017,73], + [20019,140], + [20021,877], + [20023,58], + [20025,46], + [20027,248], + [20029,248], + [20031,364], + [20033,43], + [20035,1200], + [20037,1517], + [20039,68], + [20041,667], + [20043,348], + [20045,3606], + [20047,75], + [20049,105], + [20051,632], + [20053,142], + [20055,886], + [20057,788], + [20059,1172], + [20061,1210], + [20063,50], + [20065,59], + [20067,172], + [20069,119], + [20071,26], + [20073,230], + [20075,49], + [20077,164], + [20079,1057], + [20081,85], + [20083,42], + [20085,446], + [20087,743], + [20089,72], + [20091,16529], + [20093,96], + [20095,244], + [20097,57], + [20099,999], + [20101,44], + [20103,2508], + [20105,97], + [20107,502], + [20109,58], + [20111,1111], + [20113,760], + [20115,367], + [20117,279], + [20119,94], + [20121,1218], + [20123,140], + [20125,1814], + [20127,220], + [20129,62], + [20131,228], + [20133,687], + [20135,55], + [20137,110], + [20139,711], + [20141,101], + [20143,188], + [20145,159], + [20147,153], + [20149,578], + [20151,271], + [20153,53], + [20155,1972], + [20157,103], + [20159,279], + [20161,1703], + [20163,145], + [20165,81], + [20167,177], + [20169,1870], + [20171,102], + [20173,19865], + [20175,499], + [20177,6302], + [20179,49], + [20181,129], + [20183,91], + [20185,119], + [20187,43], + [20189,112], + [20191,886], + [20193,169], + [20195,70], + [20197,240], + [20199,48], + [20201,151], + [20203,51], + [20205,488], + [20207,116], + [20209,7114], + [21001,913], + [21003,896], + [21005,964], + [21007,387], + [21009,1950], + [21011,611], + [21013,1214], + [21015,5043], + [21017,848], + [21019,2082], + [21021,1414], + [21023,428], + [21025,563], + [21027,957], + [21029,3875], + [21031,585], + [21033,546], + [21035,1426], + [21037,4053], + [21039,204], + [21041,623], + [21043,1617], + [21045,697], + [21047,2894], + [21049,1733], + [21051,910], + [21053,487], + [21055,355], + [21057,343], + [21059,3988], + [21061,599], + [21063,368], + [21065,697], + [21067,11324], + [21069,687], + [21071,1533], + [21073,1947], + [21075,332], + [21077,430], + [21079,784], + [21081,1238], + [21083,1536], + [21085,1398], + [21087,527], + [21089,1706], + [21091,342], + [21093,4366], + [21095,1121], + [21097,900], + [21099,809], + [21101,2055], + [21103,682], + [21105,204], + [21107,1825], + [21109,718], + [21111,35846], + [21113,1918], + [21115,944], + [21117,7408], + [21119,692], + [21121,1414], + [21123,605], + [21125,2864], + [21127,677], + [21129,317], + [21131,459], + [21133,909], + [21135,718], + [21137,1276], + [21139,441], + [21141,1113], + [21143,319], + [21145,2675], + [21147,832], + [21149,405], + [21151,3469], + [21153,711], + [21155,997], + [21157,1429], + [21159,348], + [21161,789], + [21163,1445], + [21165,358], + [21167,1061], + [21169,518], + [21171,436], + [21173,1353], + [21175,576], + [21177,1328], + [21179,2318], + [21181,325], + [21183,1020], + [21185,2035], + [21187,435], + [21189,183], + [21191,780], + [21193,1145], + [21195,2229], + [21197,666], + [21199,2934], + [21201,96], + [21203,824], + [21205,1069], + [21207,862], + [21209,2032], + [21211,1746], + [21213,950], + [21215,837], + [21217,1291], + [21219,498], + [21221,703], + [21223,457], + [21225,684], + [21227,4874], + [21229,568], + [21231,1125], + [21233,499], + [21235,1673], + [21237,313], + [21239,933], + [22001,1723], + [22003,839], + [22005,3800], + [22007,1204], + [22009,1398], + [22011,1171], + [22013,594], + [22015,3340], + [22017,9184], + [22019,6693], + [22021,410], + [22023,187], + [22025,419], + [22027,571], + [22029,750], + [22031,950], + [22033,16748], + [22035,424], + [22037,683], + [22039,1096], + [22041,929], + [22043,703], + [22045,2519], + [22047,1447], + [22049,514], + [22051,15362], + [22053,931], + [22055,6752], + [22057,2717], + [22059,383], + [22061,1857], + [22063,4488], + [22065,504], + [22067,1596], + [22069,1491], + [22071,14313], + [22073,5823], + [22075,638], + [22077,912], + [22079,4453], + [22081,312], + [22083,957], + [22085,675], + [22087,1432], + [22089,1792], + [22091,635], + [22093,1205], + [22095,2217], + [22097,3166], + [22099,1776], + [22101,2238], + [22103,6788], + [22105,5118], + [22107,256], + [22109,3104], + [22111,881], + [22113,1673], + [22115,1734], + [22117,1576], + [22119,1669], + [22121,928], + [22123,678], + [22125,339], + [22127,532], + [23001,4544], + [23003,3383], + [23005,10011], + [23007,1401], + [23009,2667], + [23011,4739], + [23013,1503], + [23015,1333], + [23017,2925], + [23019,6594], + [23021,807], + [23023,1294], + [23025,2683], + [23027,1686], + [23029,1577], + [23031,8048], + [24001,3086], + [24003,18291], + [24005,33488], + [24009,3101], + [24011,1509], + [24013,5697], + [24015,4627], + [24017,5299], + [24019,1837], + [24021,8272], + [24023,1327], + [24025,9655], + [24027,8512], + [24029,868], + [24031,28283], + [24033,36056], + [24035,1808], + [24037,3423], + [24039,1155], + [24041,1449], + [24043,6710], + [24045,4965], + [24047,3616], + [24510,31445], + [25001,9955], + [25003,5248], + [25005,26872], + [25007,859], + [25009,29930], + [25011,2587], + [25013,20447], + [25015,5245], + [25017,48606], + [25019,536], + [25021,22478], + [25023,20261], + [25025,26299], + [25027,32232], + [26001,546], + [26003,440], + [26005,4968], + [26007,1484], + [26009,1348], + [26011,941], + [26013,601], + [26015,2360], + [26017,5253], + [26019,1047], + [26021,7579], + [26023,2008], + [26025,6196], + [26027,2362], + [26029,1573], + [26031,1332], + [26033,1887], + [26035,1606], + [26037,2712], + [26039,705], + [26041,1917], + [26043,1229], + [26045,4469], + [26047,2359], + [26049,20895], + [26051,1316], + [26053,825], + [26055,4573], + [26057,1913], + [26059,2197], + [26061,1660], + [26063,1597], + [26065,12834], + [26067,2845], + [26069,1300], + [26071,536], + [26073,2925], + [26075,7190], + [26077,10637], + [26079,989], + [26081,25814], + [26083,140], + [26085,527], + [26087,5275], + [26089,946], + [26091,5008], + [26093,8340], + [26095,295], + [26097,694], + [26099,45581], + [26101,1278], + [26103,3016], + [26105,1569], + [26107,2163], + [26109,1079], + [26111,3419], + [26113,765], + [26115,6979], + [26117,3160], + [26119,604], + [26121,8661], + [26123,2389], + [26125,58221], + [26127,1823], + [26129,1123], + [26131,451], + [26133,1158], + [26135,560], + [26137,1394], + [26139,11146], + [26141,896], + [26143,1240], + [26145,9156], + [26147,9699], + [26149,3003], + [26151,2386], + [26153,489], + [26155,3609], + [26157,3020], + [26159,4204], + [26161,12330], + [26163,100266], + [26165,1786], + [27001,681], + [27003,12783], + [27005,1264], + [27007,1841], + [27009,1605], + [27011,187], + [27013,2070], + [27015,885], + [27017,1344], + [27019,2877], + [27021,1419], + [27023,453], + [27025,2206], + [27027,1920], + [27029,543], + [27031,209], + [27033,377], + [27035,2758], + [27037,13801], + [27039,676], + [27041,1196], + [27043,552], + [27045,745], + [27047,1132], + [27049,1613], + [27051,233], + [27053,39732], + [27055,735], + [27057,874], + [27059,1715], + [27061,2041], + [27063,330], + [27065,875], + [27067,1414], + [27069,178], + [27071,569], + [27073,241], + [27075,400], + [27077,145], + [27079,1190], + [27081,178], + [27083,810], + [27085,1555], + [27087,189], + [27089,483], + [27091,744], + [27093,991], + [27095,1241], + [27097,1542], + [27099,1177], + [27101,314], + [27103,1015], + [27105,605], + [27107,244], + [27109,4276], + [27111,1974], + [27113,656], + [27115,1333], + [27117,327], + [27119,1224], + [27121,345], + [27123,18084], + [27125,196], + [27127,507], + [27129,626], + [27131,2307], + [27133,237], + [27135,456], + [27137,7513], + [27139,4318], + [27141,3489], + [27143,585], + [27145,5378], + [27147,1365], + [27149,272], + [27151,371], + [27153,903], + [27155,110], + [27157,737], + [27159,569], + [27161,666], + [27163,7842], + [27165,396], + [27167,213], + [27169,1714], + [27171,4804], + [27173,328], + [28001,1392], + [28003,1757], + [28005,572], + [28007,892], + [28009,419], + [28011,1675], + [28013,620], + [28015,463], + [28017,943], + [28019,388], + [28021,588], + [28023,797], + [28025,1295], + [28027,1480], + [28029,1414], + [28031,797], + [28033,5980], + [28035,3543], + [28037,348], + [28039,1098], + [28041,567], + [28043,994], + [28045,1903], + [28047,8076], + [28049,11260], + [28051,1234], + [28053,633], + [28055,104], + [28057,1056], + [28059,6825], + [28061,825], + [28063,472], + [28065,645], + [28067,2493], + [28069,558], + [28071,1970], + [28073,2035], + [28075,3524], + [28077,589], + [28079,864], + [28081,3963], + [28083,1731], + [28085,1446], + [28087,2875], + [28089,3494], + [28091,1166], + [28093,1846], + [28095,1996], + [28097,580], + [28099,1114], + [28101,867], + [28103,637], + [28105,2175], + [28107,1940], + [28109,2269], + [28111,617], + [28113,1824], + [28115,1309], + [28117,1220], + [28119,465], + [28121,4684], + [28123,1154], + [28125,295], + [28127,1057], + [28129,608], + [28131,757], + [28133,1486], + [28135,737], + [28137,1331], + [28139,1099], + [28141,973], + [28143,744], + [28145,1315], + [28147,702], + [28149,2393], + [28151,3285], + [28153,998], + [28155,458], + [28157,449], + [28159,1067], + [28161,632], + [28163,1219], + [29001,936], + [29003,676], + [29005,237], + [29007,926], + [29009,1369], + [29011,496], + [29013,846], + [29015,789], + [29017,518], + [29019,5372], + [29021,3760], + [29023,1694], + [29025,386], + [29027,1680], + [29029,2135], + [29031,2743], + [29033,496], + [29035,298], + [29037,4499], + [29039,522], + [29041,367], + [29043,3039], + [29045,341], + [29047,9286], + [29049,983], + [29051,2538], + [29053,717], + [29055,1180], + [29057,319], + [29059,797], + [29061,361], + [29063,403], + [29065,622], + [29067,530], + [29069,1497], + [29071,4979], + [29073,675], + [29075,249], + [29077,10592], + [29079,351], + [29081,342], + [29083,958], + [29085,417], + [29087,195], + [29089,401], + [29091,1584], + [29093,502], + [29095,34061], + [29097,4463], + [29099,10265], + [29101,2144], + [29103,142], + [29105,1799], + [29107,1589], + [29109,1447], + [29111,358], + [29113,2688], + [29115,634], + [29117,537], + [29119,855], + [29121,619], + [29123,558], + [29125,355], + [29127,1088], + [29129,123], + [29131,1304], + [29133,584], + [29135,565], + [29137,404], + [29139,591], + [29141,996], + [29143,800], + [29145,2313], + [29147,797], + [29149,398], + [29151,459], + [29153,423], + [29155,838], + [29157,657], + [29159,1664], + [29161,1681], + [29163,684], + [29165,3602], + [29167,1337], + [29169,1449], + [29171,161], + [29173,423], + [29175,1135], + [29177,1062], + [29179,306], + [29181,656], + [29183,14225], + [29185,406], + [29186,862], + [29187,2895], + [29189,41897], + [29195,890], + [29197,174], + [29199,154], + [29201,1729], + [29203,412], + [29205,230], + [29207,1374], + [29209,1782], + [29211,237], + [29213,3444], + [29215,950], + [29217,694], + [29219,1555], + [29221,1238], + [29223,558], + [29225,1444], + [29227,71], + [29229,746], + [29510,16983], + [30001,301], + [30003,677], + [30005,177], + [30007,184], + [30009,304], + [30011,27], + [30013,2451], + [30015,121], + [30017,259], + [30019,33], + [30021,166], + [30023,319], + [30025,51], + [30027,360], + [30029,4770], + [30031,3098], + [30033,30], + [30035,689], + [30037,20], + [30039,132], + [30041,500], + [30043,352], + [30045,60], + [30047,1144], + [30049,1835], + [30051,41], + [30053,1216], + [30055,33], + [30057,306], + [30059,67], + [30061,217], + [30063,3964], + [30065,154], + [30067,654], + [30069,16], + [30071,147], + [30073,177], + [30075,50], + [30077,229], + [30079,29], + [30081,1675], + [30083,190], + [30085,328], + [30087,324], + [30089,649], + [30091,67], + [30093,1118], + [30095,251], + [30097,80], + [30099,167], + [30101,111], + [30103,21], + [30105,185], + [30107,67], + [30109,22], + [30111,4209], + [31001,710], + [31003,131], + [31005,14], + [31007,20], + [31009,15], + [31011,111], + [31013,253], + [31015,44], + [31017,67], + [31019,942], + [31021,209], + [31023,179], + [31025,701], + [31027,155], + [31029,57], + [31031,105], + [31033,173], + [31035,144], + [31037,220], + [31039,168], + [31041,206], + [31043,648], + [31045,212], + [31047,659], + [31049,37], + [31051,144], + [31053,941], + [31055,13807], + [31057,37], + [31059,115], + [31061,70], + [31063,57], + [31065,99], + [31067,647], + [31069,45], + [31071,41], + [31073,40], + [31075,15], + [31077,53], + [31079,1432], + [31081,183], + [31083,62], + [31085,21], + [31087,67], + [31089,204], + [31091,21], + [31093,138], + [31095,189], + [31097,107], + [31099,126], + [31101,190], + [31103,18], + [31105,79], + [31107,185], + [31109,6565], + [31111,851], + [31113,18], + [31115,18], + [31117,9], + [31119,777], + [31121,178], + [31123,90], + [31125,76], + [31127,197], + [31129,90], + [31131,434], + [31133,62], + [31135,52], + [31137,183], + [31139,149], + [31141,742], + [31143,103], + [31145,218], + [31147,266], + [31149,24], + [31151,346], + [31153,3658], + [31155,514], + [31157,964], + [31159,337], + [31161,101], + [31163,76], + [31165,29], + [31167,135], + [31169,96], + [31171,22], + [31173,318], + [31175,86], + [31177,489], + [31179,194], + [31181,80], + [31183,17], + [31185,326], + [32001,1404], + [32003,131621], + [32005,3069], + [32007,2038], + [32009,33], + [32011,74], + [32013,684], + [32015,283], + [32017,231], + [32019,3848], + [32021,312], + [32023,2829], + [32027,267], + [32029,310], + [32031,27901], + [32033,443], + [32510,3505], + [33001,1764], + [33003,1349], + [33005,2136], + [33007,1191], + [33009,2172], + [33011,12739], + [33013,3992], + [33015,9643], + [33017,3687], + [33019,1097], + [34001,17473], + [34003,37125], + [34005,20531], + [34007,28536], + [34009,7351], + [34011,9313], + [34013,41449], + [34015,15467], + [34017,32699], + [34019,4679], + [34021,16018], + [34023,37260], + [34025,28272], + [34027,18757], + [34029,27704], + [34031,27919], + [34033,3772], + [34035,12881], + [34037,7561], + [34039,26709], + [34041,5334], + [35001,23311], + [35003,129], + [35005,1864], + [35006,878], + [35007,513], + [35009,1090], + [35011,42], + [35013,7054], + [35015,1348], + [35017,930], + [35019,175], + [35021,19], + [35023,173], + [35025,1520], + [35027,617], + [35028,328], + [35029,2326], + [35031,2480], + [35033,294], + [35035,1684], + [35037,326], + [35039,1600], + [35041,477], + [35043,4887], + [35045,4327], + [35047,1054], + [35049,4584], + [35051,383], + [35053,523], + [35055,1592], + [35057,673], + [35059,91], + [35061,2758], + [36001,10959], + [36003,2112], + [36005,69718], + [36007,8148], + [36009,3597], + [36011,3169], + [36013,5045], + [36015,3197], + [36017,2070], + [36019,3684], + [36021,2236], + [36023,2057], + [36025,1884], + [36027,10984], + [36029,36646], + [36031,1655], + [36033,1981], + [36035,2698], + [36037,2406], + [36039,2024], + [36041,241], + [36043,2675], + [36045,4780], + [36047,111959], + [36049,1196], + [36051,2447], + [36053,2837], + [36055,28687], + [36057,2398], + [36059,46602], + [36061,68949], + [36063,9651], + [36065,8708], + [36067,17948], + [36069,3951], + [36071,13798], + [36073,1737], + [36075,6242], + [36077,2425], + [36079,3627], + [36081,89671], + [36083,6287], + [36085,19850], + [36087,10628], + [36089,5076], + [36091,7696], + [36093,5775], + [36095,1394], + [36097,796], + [36099,1275], + [36101,4204], + [36103,58603], + [36105,3145], + [36107,1986], + [36109,3280], + [36111,7166], + [36113,3000], + [36115,2403], + [36117,3912], + [36119,33483], + [36121,1649], + [36123,905], + [37001,7462], + [37003,2018], + [37005,566], + [37007,1364], + [37009,1450], + [37011,862], + [37013,2388], + [37015,1095], + [37017,1992], + [37019,5742], + [37021,9900], + [37023,4713], + [37025,9342], + [37027,4947], + [37029,393], + [37031,3006], + [37033,1191], + [37035,8960], + [37037,2525], + [37039,1373], + [37041,724], + [37043,478], + [37045,5672], + [37047,3205], + [37049,4425], + [37051,13934], + [37053,1118], + [37055,2610], + [37057,8747], + [37059,2115], + [37061,2482], + [37063,11758], + [37065,3868], + [37067,17062], + [37069,2978], + [37071,11916], + [37073,445], + [37075,653], + [37077,2482], + [37079,918], + [37081,26454], + [37083,3261], + [37085,5586], + [37087,2774], + [37089,4111], + [37091,1093], + [37093,2116], + [37095,283], + [37097,8942], + [37099,2011], + [37101,7828], + [37103,487], + [37105,3355], + [37107,3005], + [37109,4450], + [37111,2546], + [37113,1754], + [37115,968], + [37117,1322], + [37119,50952], + [37121,800], + [37123,1356], + [37125,3539], + [37127,5855], + [37129,10271], + [37131,1056], + [37133,5193], + [37135,4591], + [37137,533], + [37139,1886], + [37141,2791], + [37143,582], + [37145,2213], + [37147,8689], + [37149,787], + [37151,7517], + [37153,2670], + [37155,7610], + [37157,5357], + [37159,7907], + [37161,3857], + [37163,2900], + [37165,2318], + [37167,3393], + [37169,2344], + [37171,3654], + [37173,1014], + [37175,1263], + [37177,244], + [37179,9335], + [37181,2779], + [37183,38332], + [37185,1067], + [37187,842], + [37189,2127], + [37191,4961], + [37193,3660], + [37195,5323], + [37197,1850], + [37199,893], + [38001,33], + [38003,238], + [38005,177], + [38007,17], + [38009,129], + [38011,41], + [38013,29], + [38015,1520], + [38017,2923], + [38019,68], + [38021,82], + [38023,28], + [38025,61], + [38027,63], + [38029,107], + [38031,56], + [38033,24], + [38035,1389], + [38037,49], + [38039,38], + [38041,43], + [38043,71], + [38045,72], + [38047,30], + [38049,154], + [38051,49], + [38053,83], + [38055,236], + [38057,224], + [38059,636], + [38061,140], + [38063,72], + [38065,57], + [38067,271], + [38069,93], + [38071,232], + [38073,102], + [38075,40], + [38077,339], + [38079,564], + [38081,65], + [38083,32], + [38085,72], + [38087,10], + [38089,353], + [38091,29], + [38093,412], + [38095,41], + [38097,168], + [38099,300], + [38101,1037], + [38103,101], + [38105,284], + [39001,1653], + [39003,4852], + [39005,2584], + [39007,5176], + [39009,2761], + [39011,1953], + [39013,3083], + [39015,2448], + [39017,17137], + [39019,1439], + [39021,1845], + [39023,6407], + [39025,9472], + [39027,2436], + [39029,5264], + [39031,1927], + [39033,2400], + [39035,47228], + [39037,2467], + [39039,1857], + [39041,5941], + [39043,3786], + [39045,5953], + [39047,1510], + [39049,48654], + [39051,2180], + [39053,1461], + [39055,2933], + [39057,6754], + [39059,1999], + [39061,36113], + [39063,3115], + [39065,1441], + [39067,749], + [39069,1543], + [39071,2436], + [39073,1373], + [39075,1237], + [39077,3380], + [39079,1654], + [39081,3847], + [39083,2664], + [39085,8544], + [39087,2570], + [39089,7288], + [39091,2230], + [39093,11744], + [39095,21102], + [39097,1608], + [39099,11094], + [39101,2920], + [39103,5978], + [39105,1290], + [39107,1497], + [39109,4881], + [39111,651], + [39113,25282], + [39115,772], + [39117,1736], + [39119,4503], + [39121,666], + [39123,2488], + [39125,923], + [39127,1903], + [39129,2380], + [39131,1678], + [39133,7918], + [39135,2080], + [39137,1432], + [39139,6175], + [39141,3417], + [39143,2998], + [39145,3990], + [39147,2777], + [39149,2344], + [39151,17652], + [39153,25120], + [39155,10407], + [39157,4216], + [39159,1916], + [39161,1352], + [39163,683], + [39165,8634], + [39167,2918], + [39169,4532], + [39171,2037], + [39173,5679], + [39175,1118], + [40001,810], + [40003,105], + [40005,428], + [40007,107], + [40009,418], + [40011,232], + [40013,1037], + [40015,824], + [40017,2692], + [40019,1388], + [40021,1401], + [40023,542], + [40025,46], + [40027,6052], + [40029,198], + [40031,2906], + [40033,177], + [40035,400], + [40037,2203], + [40039,610], + [40041,1238], + [40043,96], + [40045,80], + [40047,1275], + [40049,709], + [40051,1340], + [40053,95], + [40055,136], + [40057,71], + [40059,69], + [40061,415], + [40063,512], + [40065,621], + [40067,163], + [40069,316], + [40071,1605], + [40073,294], + [40075,220], + [40077,441], + [40079,1796], + [40081,846], + [40083,983], + [40085,247], + [40087,814], + [40089,1508], + [40091,783], + [40093,162], + [40095,402], + [40097,1377], + [40099,319], + [40101,2211], + [40103,274], + [40105,392], + [40107,378], + [40109,18886], + [40111,1492], + [40113,1439], + [40115,1079], + [40117,596], + [40119,1835], + [40121,1398], + [40123,983], + [40125,1877], + [40127,429], + [40129,61], + [40131,2476], + [40133,830], + [40135,1610], + [40137,1191], + [40139,389], + [40141,196], + [40143,18404], + [40145,2065], + [40147,1388], + [40149,247], + [40151,154], + [40153,462], + [41001,794], + [41003,2938], + [41005,18072], + [41007,1793], + [41009,2663], + [41011,3242], + [41013,1350], + [41015,1108], + [41017,9902], + [41019,6032], + [41021,94], + [41023,472], + [41025,496], + [41027,1134], + [41029,11774], + [41031,1223], + [41033,4356], + [41035,3756], + [41037,492], + [41039,17158], + [41041,2291], + [41043,6440], + [41045,1262], + [41047,16214], + [41049,476], + [41051,35423], + [41053,3365], + [41055,102], + [41057,1154], + [41059,3560], + [41061,1242], + [41063,426], + [41065,1224], + [41067,22740], + [41069,65], + [41071,4736], + [42001,3612], + [42003,45655], + [42005,2760], + [42007,6711], + [42009,2269], + [42011,16573], + [42013,4483], + [42015,2073], + [42017,24562], + [42019,6445], + [42021,5754], + [42023,268], + [42025,3203], + [42027,4201], + [42029,15592], + [42031,1896], + [42033,3567], + [42035,1605], + [42037,3007], + [42039,3324], + [42041,7914], + [42043,10631], + [42045,22251], + [42047,1246], + [42049,11187], + [42051,5998], + [42053,192], + [42055,5531], + [42057,743], + [42059,1389], + [42061,2120], + [42063,3454], + [42065,1902], + [42067,884], + [42069,9460], + [42071,18270], + [42073,3616], + [42075,4833], + [42077,15521], + [42079,15343], + [42081,4727], + [42083,1756], + [42085,4206], + [42087,1869], + [42089,7978], + [42091,27952], + [42093,574], + [42095,12587], + [42097,4122], + [42099,1827], + [42101,73718], + [42103,2584], + [42105,717], + [42107,6833], + [42109,1525], + [42111,3296], + [42113,221], + [42115,1742], + [42117,1482], + [42119,1288], + [42121,1950], + [42123,1535], + [42125,7783], + [42127,1888], + [42129,14002], + [42131,1260], + [42133,17293], + [44001,2525], + [44003,9858], + [44005,4468], + [44007,37879], + [44009,7079], + [45001,1343], + [45003,6799], + [45005,602], + [45007,8863], + [45009,1026], + [45011,1401], + [45013,5692], + [45015,8206], + [45017,877], + [45019,15229], + [45021,3482], + [45023,2497], + [45025,2721], + [45027,1979], + [45029,2353], + [45031,3933], + [45033,2159], + [45035,6008], + [45037,1084], + [45039,1531], + [45041,7233], + [45043,3468], + [45045,19380], + [45047,3636], + [45049,1118], + [45051,15766], + [45053,1089], + [45055,3107], + [45057,4552], + [45059,3527], + [45061,1115], + [45063,10723], + [45065,495], + [45067,2510], + [45069,2116], + [45071,1924], + [45073,3337], + [45075,6364], + [45077,5404], + [45079,17199], + [45081,846], + [45083,14543], + [45085,5409], + [45087,1961], + [45089,2242], + [45091,12779], + [46003,53], + [46005,359], + [46007,86], + [46009,155], + [46011,792], + [46013,800], + [46015,110], + [46017,76], + [46019,246], + [46021,34], + [46023,205], + [46025,93], + [46027,303], + [46029,699], + [46031,115], + [46033,228], + [46035,436], + [46037,199], + [46039,153], + [46041,391], + [46043,71], + [46045,78], + [46047,191], + [46049,49], + [46051,222], + [46053,99], + [46055,41], + [46057,138], + [46059,62], + [46061,87], + [46063,33], + [46065,363], + [46067,145], + [46069,29], + [46071,104], + [46073,44], + [46075,22], + [46077,127], + [46079,307], + [46081,618], + [46083,969], + [46085,122], + [46087,141], + [46089,52], + [46091,140], + [46093,635], + [46095,55], + [46097,58], + [46099,4460], + [46101,264], + [46102,"NA"], + [46103,2562], + [46105,68], + [46107,66], + [46109,338], + [46111,56], + [46115,145], + [46117,76], + [46119,33], + [46121,288], + [46123,122], + [46125,198], + [46127,398], + [46129,166], + [46135,509], + [46137,68], + [47001,3078], + [47003,2353], + [47005,813], + [47007,507], + [47009,5043], + [47011,4223], + [47013,1889], + [47015,628], + [47017,1658], + [47019,2636], + [47021,1724], + [47023,775], + [47025,1512], + [47027,362], + [47029,2079], + [47031,2453], + [47033,772], + [47035,2419], + [47037,26380], + [47039,620], + [47041,912], + [47043,2321], + [47045,2198], + [47047,1786], + [47049,856], + [47051,1805], + [47053,2723], + [47055,1427], + [47057,1167], + [47059,3500], + [47061,687], + [47063,3067], + [47065,13335], + [47067,337], + [47069,1230], + [47071,1289], + [47073,2547], + [47075,1176], + [47077,1515], + [47079,1564], + [47081,1117], + [47083,398], + [47085,926], + [47087,555], + [47089,2549], + [47091,869], + [47093,16115], + [47095,265], + [47097,1323], + [47099,2008], + [47101,679], + [47103,1049], + [47105,1953], + [47107,2574], + [47109,1177], + [47111,1061], + [47113,4568], + [47115,1308], + [47117,1650], + [47119,4232], + [47121,596], + [47123,2243], + [47125,6600], + [47127,230], + [47129,915], + [47131,1854], + [47133,1024], + [47135,354], + [47137,275], + [47139,827], + [47141,3060], + [47143,1560], + [47145,2215], + [47147,2864], + [47149,11456], + [47151,1605], + [47153,622], + [47155,4967], + [47157,42964], + [47159,907], + [47161,702], + [47163,6202], + [47165,6691], + [47167,2977], + [47169,392], + [47171,872], + [47173,798], + [47175,269], + [47177,1832], + [47179,4925], + [47181,732], + [47183,1905], + [47185,1231], + [47187,5701], + [47189,4538], + [48001,1624], + [48003,389], + [48005,3011], + [48007,861], + [48009,272], + [48011,50], + [48013,1588], + [48015,1117], + [48017,246], + [48019,688], + [48021,2835], + [48023,111], + [48025,908], + [48027,10702], + [48029,59731], + [48031,308], + [48033,21], + [48035,699], + [48037,3505], + [48039,12724], + [48041,6017], + [48043,270], + [48045,44], + [48047,284], + [48049,1311], + [48051,565], + [48053,1394], + [48055,1420], + [48057,904], + [48059,431], + [48061,19050], + [48063,508], + [48065,171], + [48067,1417], + [48069,205], + [48071,1560], + [48073,1805], + [48075,159], + [48077,357], + [48079,127], + [48081,88], + [48083,299], + [48085,29582], + [48087,76], + [48089,782], + [48091,3760], + [48093,441], + [48095,73], + [48097,1230], + [48099,1976], + [48101,50], + [48103,127], + [48105,113], + [48107,252], + [48109,70], + [48111,177], + [48113,98711], + [48115,391], + [48117,524], + [48119,212], + [48121,24886], + [48123,611], + [48125,139], + [48127,380], + [48129,117], + [48131,489], + [48133,646], + [48135,4453], + [48137,65], + [48139,5962], + [48141,32845], + [48143,1250], + [48145,594], + [48147,1261], + [48149,722], + [48151,129], + [48153,256], + [48155,49], + [48157,21884], + [48159,388], + [48161,632], + [48163,518], + [48165,432], + [48167,13230], + [48169,134], + [48171,662], + [48173,32], + [48175,219], + [48177,583], + [48179,655], + [48181,4740], + [48183,4360], + [48185,904], + [48187,4327], + [48189,1215], + [48191,122], + [48193,246], + [48195,124], + [48197,130], + [48199,2487], + [48201,165562], + [48203,2673], + [48205,111], + [48207,163], + [48209,5587], + [48211,83], + [48213,2985], + [48215,37885], + [48217,1309], + [48219,719], + [48221,1875], + [48223,1239], + [48225,830], + [48227,866], + [48229,111], + [48231,3398], + [48233,782], + [48235,47], + [48237,258], + [48239,458], + [48241,1855], + [48243,62], + [48245,13158], + [48247,201], + [48249,1561], + [48251,5657], + [48253,508], + [48255,379], + [48257,4135], + [48259,1027], + [48261,15], + [48263,26], + [48265,1455], + [48267,139], + [48269,11], + [48271,129], + [48273,1233], + [48275,110], + [48277,2288], + [48279,509], + [48281,691], + [48283,210], + [48285,572], + [48287,573], + [48289,621], + [48291,3413], + [48293,793], + [48295,80], + [48297,311], + [48299,620], + [48301,4], + [48303,8755], + [48305,203], + [48307,258], + [48309,8420], + [48311,20], + [48313,387], + [48315,461], + [48317,131], + [48319,118], + [48321,2062], + [48323,3354], + [48325,1512], + [48327,68], + [48329,3646], + [48331,1059], + [48333,137], + [48335,221], + [48337,624], + [48339,16376], + [48341,567], + [48343,698], + [48345,41], + [48347,2140], + [48349,1870], + [48351,769], + [48353,515], + [48355,13051], + [48357,246], + [48359,42], + [48361,4512], + [48363,1067], + [48365,976], + [48367,3950], + [48369,235], + [48371,432], + [48373,1647], + [48375,3492], + [48377,574], + [48379,424], + [48381,3375], + [48383,88], + [48385,112], + [48387,664], + [48389,445], + [48391,259], + [48393,24], + [48395,693], + [48397,2879], + [48399,374], + [48401,1710], + [48403,545], + [48405,446], + [48407,1097], + [48409,2936], + [48411,153], + [48413,96], + [48415,420], + [48417,95], + [48419,1025], + [48421,72], + [48423,7947], + [48425,317], + [48427,4238], + [48429,345], + [48431,33], + [48433,41], + [48435,132], + [48437,212], + [48439,71788], + [48441,4249], + [48443,32], + [48445,416], + [48447,61], + [48449,1129], + [48451,3331], + [48453,37856], + [48455,546], + [48457,944], + [48459,1482], + [48461,83], + [48463,1078], + [48465,1836], + [48467,1893], + [48469,2950], + [48471,1819], + [48473,1667], + [48475,321], + [48477,1036], + [48479,8007], + [48481,1775], + [48483,141], + [48485,4066], + [48487,438], + [48489,1271], + [48491,15656], + [48493,1405], + [48495,217], + [48497,2130], + [48499,1467], + [48501,217], + [48503,615], + [48505,523], + [48507,646], + [49001,244], + [49003,1742], + [49005,2974], + [49007,723], + [49009,29], + [49011,8842], + [49013,563], + [49015,372], + [49017,316], + [49019,520], + [49021,1641], + [49023,376], + [49025,260], + [49027,327], + [49029,243], + [49031,53], + [49033,71], + [49035,36181], + [49037,595], + [49039,875], + [49041,706], + [49043,1293], + [49045,1949], + [49047,933], + [49049,14545], + [49051,797], + [49053,4971], + [49055,144], + [49057,8824], + [50001,1041], + [50003,1274], + [50005,1046], + [50007,4019], + [50009,256], + [50011,1440], + [50013,266], + [50015,1011], + [50017,886], + [50019,1196], + [50021,2262], + [50023,1835], + [50025,1400], + [50027,1713], + [51001,1393], + [51003,2909], + [51005,622], + [51007,469], + [51009,1178], + [51011,578], + [51013,5334], + [51015,2370], + [51017,163], + [51019,2510], + [51021,212], + [51023,1040], + [51025,720], + [51027,725], + [51029,631], + [51031,1978], + [51033,1302], + [51035,1345], + [51036,354], + [51037,528], + [51041,11599], + [51043,445], + [51045,187], + [51047,1489], + [51049,349], + [51051,539], + [51053,1088], + [51057,473], + [51059,29510], + [51061,1990], + [51063,528], + [51065,772], + [51067,2071], + [51069,2802], + [51071,661], + [51073,1227], + [51075,658], + [51077,782], + [51079,591], + [51081,402], + [51083,1797], + [51085,3282], + [51087,11498], + [51089,2872], + [51091,82], + [51093,1311], + [51095,1987], + [51097,270], + [51099,817], + [51101,599], + [51103,518], + [51105,778], + [51107,8473], + [51109,1226], + [51111,472], + [51113,379], + [51115,277], + [51117,1460], + [51119,333], + [51121,3065], + [51125,481], + [51127,669], + [51131,565], + [51133,542], + [51135,493], + [51137,1182], + [51139,1385], + [51141,869], + [51143,2840], + [51145,847], + [51147,936], + [51149,1134], + [51153,12749], + [51155,1467], + [51157,225], + [51159,285], + [51161,2828], + [51163,747], + [51165,2492], + [51167,1133], + [51169,745], + [51171,1487], + [51173,1500], + [51175,726], + [51177,4306], + [51179,4022], + [51181,318], + [51183,459], + [51185,1446], + [51187,1490], + [51191,1985], + [51193,707], + [51195,1324], + [51197,1323], + [51199,1962], + [51510,4128], + [51520,672], + [51530,296], + [51540,1300], + [51550,7930], + [51570,645], + [51580,250], + [51590,2361], + [51595,277], + [51600,625], + [51610,319], + [51620,417], + [51630,1046], + [51640,321], + [51650,5938], + [51660,1855], + [51670,1120], + [51678,210], + [51680,2884], + [51683,1304], + [51685,483], + [51690,897], + [51700,7392], + [51710,9405], + [51720,147], + [51730,1764], + [51735,364], + [51740,4281], + [51750,681], + [51760,9127], + [51770,3996], + [51775,817], + [51790,851], + [51800,3123], + [51810,14093], + [51820,821], + [51830,607], + [51840,1046], + [53001,832], + [53003,893], + [53005,7628], + [53007,3491], + [53009,3117], + [53011,24666], + [53013,174], + [53015,5340], + [53017,1808], + [53019,440], + [53021,3501], + [53023,78], + [53025,4326], + [53027,4038], + [53029,2962], + [53031,1262], + [53033,87841], + [53035,9854], + [53037,1924], + [53039,1199], + [53041,4152], + [53043,430], + [53045,2787], + [53047,2193], + [53049,1106], + [53051,681], + [53053,39095], + [53055,584], + [53057,6012], + [53059,620], + [53061,36353], + [53063,22287], + [53065,2260], + [53067,11076], + [53069,205], + [53071,2371], + [53073,9260], + [53075,1460], + [53077,12934], + [54001,635], + [54003,3953], + [54005,700], + [54007,612], + [54009,1046], + [54011,3066], + [54013,363], + [54015,441], + [54017,237], + [54019,1588], + [54021,229], + [54023,556], + [54025,1299], + [54027,866], + [54029,1474], + [54031,598], + [54033,2238], + [54035,1235], + [54037,1698], + [54039,6512], + [54041,535], + [54043,818], + [54045,1149], + [54047,796], + [54049,1838], + [54051,1282], + [54053,1205], + [54055,2038], + [54057,1077], + [54059,791], + [54061,2699], + [54063,459], + [54065,630], + [54067,998], + [54069,1561], + [54071,263], + [54073,285], + [54075,409], + [54077,1116], + [54079,1924], + [54081,2376], + [54083,1177], + [54085,392], + [54087,700], + [54089,435], + [54091,552], + [54093,303], + [54095,379], + [54097,888], + [54099,1347], + [54101,343], + [54103,746], + [54105,263], + [54107,3196], + [54109,732], + [55001,1069], + [55003,845], + [55005,2015], + [55007,835], + [55009,9904], + [55011,480], + [55013,780], + [55015,1635], + [55017,2588], + [55019,1455], + [55021,2509], + [55023,782], + [55025,15682], + [55027,3722], + [55029,1869], + [55031,1778], + [55033,1711], + [55035,3709], + [55037,220], + [55039,4109], + [55041,486], + [55043,1897], + [55045,1458], + [55047,851], + [55049,1012], + [55051,296], + [55053,817], + [55055,3526], + [55057,1263], + [55059,7804], + [55061,828], + [55063,3920], + [55065,606], + [55067,1019], + [55069,1509], + [55071,3754], + [55073,5733], + [55075,2087], + [55077,758], + [55078,275], + [55079,44336], + [55081,1704], + [55083,2029], + [55085,1780], + [55087,7092], + [55089,2906], + [55091,261], + [55093,1450], + [55095,2078], + [55097,2937], + [55099,647], + [55101,9091], + [55103,721], + [55105,7738], + [55107,761], + [55109,3047], + [55111,2739], + [55113,910], + [55115,1985], + [55117,4993], + [55119,958], + [55121,1075], + [55123,1057], + [55125,1116], + [55127,4494], + [55129,711], + [55131,5167], + [55133,14059], + [55135,2312], + [55137,1167], + [55139,6512], + [55141,3336], + [56001,917], + [56003,350], + [56005,1267], + [56007,488], + [56009,370], + [56011,189], + [56013,1368], + [56015,366], + [56017,132], + [56019,284], + [56021,2918], + [56023,686], + [56025,2495], + [56027,58], + [56029,930], + [56031,249], + [56033,1111], + [56035,270], + [56037,1258], + [56039,1023], + [56041,630], + [56043,256], + [56045,181] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2012.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2012.json new file mode 100644 index 0000000..2ba7767 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2012.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2012"], + [1001,1779], + [1003,6349], + [1005,1079], + [1007,751], + [1009,1716], + [1011,491], + [1013,1049], + [1015,4397], + [1017,1494], + [1019,905], + [1021,1401], + [1023,494], + [1025,1258], + [1027,508], + [1029,480], + [1031,1453], + [1033,2104], + [1035,553], + [1037,416], + [1039,1367], + [1041,519], + [1043,2733], + [1045,1589], + [1047,2163], + [1049,2609], + [1051,2542], + [1053,1358], + [1055,3643], + [1057,560], + [1059,1170], + [1061,853], + [1063,424], + [1065,713], + [1067,583], + [1069,3476], + [1071,2036], + [1073,23491], + [1075,437], + [1077,3325], + [1079,1297], + [1081,4671], + [1083,2679], + [1085,629], + [1087,889], + [1089,11810], + [1091,777], + [1093,1111], + [1095,3163], + [1097,17314], + [1099,1000], + [1101,8654], + [1103,4479], + [1105,491], + [1107,758], + [1109,1198], + [1111,839], + [1113,2186], + [1115,2645], + [1117,5300], + [1119,569], + [1121,3282], + [1123,1591], + [1125,6657], + [1127,2438], + [1129,821], + [1131,575], + [1133,960], + [2013,145], + [2016,296], + [2020,8483], + [2050,1108], + [2060,47], + [2068,144], + [2070,211], + [2090,2933], + [2100,111], + [2105,159], + [2110,913], + [2122,2364], + [2130,583], + [2150,449], + [2158,"NA"], + [2164,97], + [2170,3789], + [2180,488], + [2185,312], + [2188,477], + [2195,153], + [2198,344], + [2220,263], + [2230,106], + [2240,391], + [2261,475], + [2275,84], + [2282,28], + [2290,482], + [4001,4324], + [4003,4871], + [4005,6110], + [4007,2137], + [4009,1230], + [4011,292], + [4012,696], + [4013,138033], + [4015,8549], + [4017,6067], + [4019,34100], + [4021,12694], + [4023,3107], + [4025,7942], + [4027,22377], + [5001,869], + [5003,1140], + [5005,1379], + [5007,6659], + [5009,1259], + [5011,485], + [5013,229], + [5015,789], + [5017,462], + [5019,1022], + [5021,754], + [5023,886], + [5025,276], + [5027,910], + [5029,802], + [5031,3371], + [5033,2198], + [5035,2116], + [5037,677], + [5039,367], + [5041,587], + [5043,892], + [5045,3957], + [5047,544], + [5049,367], + [5051,3254], + [5053,573], + [5055,1731], + [5057,791], + [5059,1044], + [5061,431], + [5063,1478], + [5065,454], + [5067,696], + [5069,3247], + [5071,796], + [5073,274], + [5075,659], + [5077,334], + [5079,401], + [5081,436], + [5083,769], + [5085,2101], + [5087,408], + [5089,543], + [5091,1205], + [5093,2221], + [5095,296], + [5097,304], + [5099,321], + [5101,266], + [5103,1103], + [5105,401], + [5107,922], + [5109,397], + [5111,901], + [5113,647], + [5115,2184], + [5117,289], + [5119,12932], + [5121,743], + [5123,1027], + [5125,3321], + [5127,312], + [5129,264], + [5131,4633], + [5133,538], + [5135,619], + [5137,416], + [5139,1544], + [5141,669], + [5143,5919], + [5145,2850], + [5147,345], + [5149,624], + [6001,69367], + [6003,61], + [6005,1799], + [6007,12272], + [6009,2496], + [6011,2337], + [6013,47899], + [6015,1420], + [6017,9093], + [6019,66574], + [6021,1865], + [6023,6159], + [6025,21679], + [6027,867], + [6029,51533], + [6031,8758], + [6033,3771], + [6035,1429], + [6037,536871], + [6039,9035], + [6041,8601], + [6043,1023], + [6045,4112], + [6047,18780], + [6049,520], + [6051,869], + [6053,25196], + [6055,6061], + [6057,4714], + [6059,122866], + [6061,16374], + [6063,1370], + [6065,114825], + [6067,71590], + [6069,3741], + [6071,101792], + [6073,140562], + [6075,34511], + [6077,44759], + [6079,11325], + [6081,26395], + [6083,18086], + [6085,75299], + [6087,16806], + [6089,10780], + [6091,211], + [6093,2947], + [6095,21677], + [6097,21819], + [6099,36025], + [6101,7656], + [6103,3468], + [6105,780], + [6107,32523], + [6109,2896], + [6111,39523], + [6113,10921], + [6115,4437], + [8001,22548], + [8003,810], + [8005,24934], + [8007,576], + [8009,91], + [8011,144], + [8013,10842], + [8014,2146], + [8015,571], + [8017,46], + [8019,386], + [8021,394], + [8023,183], + [8025,110], + [8027,126], + [8029,1396], + [8031,28093], + [8033,97], + [8035,9659], + [8037,2317], + [8039,903], + [8041,27176], + [8043,1823], + [8045,2677], + [8047,218], + [8049,634], + [8051,588], + [8053,21], + [8055,375], + [8057,43], + [8059,22489], + [8061,37], + [8063,188], + [8065,390], + [8067,1970], + [8069,11596], + [8071,836], + [8073,140], + [8075,662], + [8077,7265], + [8079,24], + [8081,639], + [8083,1104], + [8085,2049], + [8087,1014], + [8089,863], + [8091,195], + [8093,640], + [8095,110], + [8097,785], + [8099,426], + [8101,7967], + [8103,258], + [8105,623], + [8107,1035], + [8109,339], + [8111,53], + [8113,381], + [8115,78], + [8117,1167], + [8119,1000], + [8121,129], + [8123,10650], + [8125,251], + [9001,36804], + [9003,40330], + [9005,8067], + [9007,6586], + [9009,41536], + [9011,12086], + [9013,6215], + [9015,5957], + [10001,5891], + [10003,19490], + [10005,6733], + [11001,33005], + [12001,8634], + [12003,973], + [12005,7488], + [12007,845], + [12009,24676], + [12011,76783], + [12013,466], + [12015,6265], + [12017,5544], + [12019,7338], + [12021,12879], + [12023,2474], + [12027,1283], + [12029,594], + [12031,39718], + [12033,11753], + [12035,4158], + [12037,327], + [12039,1948], + [12041,609], + [12043,439], + [12045,493], + [12047,458], + [12049,1052], + [12051,2174], + [12053,7008], + [12055,3843], + [12057,52800], + [12059,632], + [12061,6795], + [12063,1565], + [12065,509], + [12067,199], + [12069,11845], + [12071,25819], + [12073,10439], + [12075,1556], + [12077,218], + [12079,686], + [12081,12254], + [12083,13310], + [12085,5579], + [12086,106073], + [12087,2497], + [12089,2891], + [12091,6142], + [12093,1826], + [12095,53635], + [12097,13571], + [12099,56085], + [12101,18888], + [12103,37169], + [12105,26633], + [12107,3417], + [12109,6800], + [12111,14124], + [12113,5473], + [12115,14161], + [12117,18669], + [12119,2832], + [12121,1471], + [12123,844], + [12125,367], + [12127,22506], + [12129,1029], + [12131,1911], + [12133,888], + [13001,1007], + [13003,398], + [13005,441], + [13007,129], + [13009,2192], + [13011,706], + [13013,2985], + [13015,4706], + [13017,862], + [13019,805], + [13021,7561], + [13023,665], + [13025,894], + [13027,624], + [13029,1257], + [13031,3324], + [13033,1201], + [13035,1064], + [13037,185], + [13039,1879], + [13043,450], + [13045,5337], + [13047,2410], + [13049,465], + [13051,12185], + [13053,305], + [13055,1090], + [13057,8151], + [13059,5065], + [13061,126], + [13063,15357], + [13065,283], + [13067,30003], + [13069,1994], + [13071,1847], + [13073,4520], + [13075,713], + [13077,5222], + [13079,572], + [13081,1147], + [13083,639], + [13085,931], + [13087,1240], + [13089,34832], + [13091,940], + [13093,553], + [13095,4617], + [13097,6437], + [13099,456], + [13101,133], + [13103,2172], + [13105,1076], + [13107,1123], + [13109,411], + [13111,1024], + [13113,4040], + [13115,4895], + [13117,6208], + [13119,1077], + [13121,46512], + [13123,1284], + [13125,128], + [13127,3677], + [13129,2629], + [13131,929], + [13133,712], + [13135,33687], + [13137,1754], + [13139,6935], + [13141,468], + [13143,1238], + [13145,1173], + [13147,1114], + [13149,529], + [13151,9694], + [13153,5530], + [13155,416], + [13157,2417], + [13159,653], + [13161,737], + [13163,937], + [13165,462], + [13167,405], + [13169,1179], + [13171,963], + [13173,366], + [13175,2427], + [13177,1097], + [13179,2420], + [13181,382], + [13183,568], + [13185,4783], + [13187,1268], + [13189,1178], + [13191,589], + [13193,688], + [13195,1172], + [13197,361], + [13199,1085], + [13201,221], + [13205,854], + [13207,1109], + [13209,453], + [13211,771], + [13213,2100], + [13215,8185], + [13217,5318], + [13219,1076], + [13221,588], + [13223,6191], + [13225,1399], + [13227,1262], + [13229,788], + [13231,779], + [13233,1876], + [13235,393], + [13237,956], + [13239,90], + [13241,795], + [13243,355], + [13245,9400], + [13247,4294], + [13249,227], + [13251,786], + [13253,355], + [13255,3538], + [13257,1235], + [13259,215], + [13261,1660], + [13263,294], + [13265,86], + [13267,817], + [13269,417], + [13271,629], + [13273,410], + [13275,1791], + [13277,1933], + [13279,1472], + [13281,501], + [13283,391], + [13285,3500], + [13287,405], + [13289,472], + [13291,854], + [13293,1281], + [13295,2778], + [13297,3741], + [13299,1570], + [13301,397], + [13303,836], + [13305,1349], + [13307,105], + [13309,261], + [13311,1174], + [13313,4868], + [13315,334], + [13317,469], + [13319,430], + [13321,979], + [15001,7170], + [15003,24142], + [15005,"NA"], + [15007,2485], + [15009,5087], + [16001,12639], + [16003,260], + [16005,2854], + [16007,161], + [16009,506], + [16011,1455], + [16013,823], + [16015,283], + [16017,1948], + [16019,3105], + [16021,492], + [16023,109], + [16025,61], + [16027,7918], + [16029,242], + [16031,644], + [16033,32], + [16035,412], + [16037,189], + [16039,804], + [16041,291], + [16043,428], + [16045,716], + [16047,462], + [16049,728], + [16051,750], + [16053,705], + [16055,6017], + [16057,1145], + [16059,351], + [16061,86], + [16063,247], + [16065,841], + [16067,632], + [16069,1144], + [16071,103], + [16073,211], + [16075,852], + [16077,318], + [16079,736], + [16081,313], + [16083,2608], + [16085,524], + [16087,403], + [17001,2212], + [17003,329], + [17005,741], + [17007,2795], + [17009,156], + [17011,1673], + [17013,245], + [17015,659], + [17017,559], + [17019,7601], + [17021,1543], + [17023,770], + [17025,640], + [17027,1353], + [17029,2178], + [17031,255534], + [17033,804], + [17035,463], + [17037,4693], + [17039,685], + [17041,720], + [17043,37938], + [17045,883], + [17047,239], + [17049,1211], + [17051,960], + [17053,520], + [17055,1850], + [17057,1679], + [17059,212], + [17061,546], + [17063,2958], + [17065,312], + [17067,768], + [17069,183], + [17071,297], + [17073,1940], + [17075,1305], + [17077,2283], + [17079,377], + [17081,1645], + [17083,1027], + [17085,898], + [17087,498], + [17089,23798], + [17091,5873], + [17093,5307], + [17095,2029], + [17097,29781], + [17099,5976], + [17101,660], + [17103,1511], + [17105,1409], + [17107,1013], + [17109,1149], + [17111,14998], + [17113,6032], + [17115,5385], + [17117,2282], + [17119,11938], + [17121,1826], + [17123,516], + [17125,703], + [17127,631], + [17129,491], + [17131,669], + [17133,1208], + [17135,1475], + [17137,1367], + [17139,527], + [17141,2688], + [17143,8056], + [17145,978], + [17147,595], + [17149,588], + [17151,162], + [17153,270], + [17155,292], + [17157,1223], + [17159,605], + [17161,6050], + [17163,12443], + [17165,1057], + [17167,7785], + [17169,285], + [17171,235], + [17173,924], + [17175,244], + [17177,2120], + [17179,5341], + [17181,828], + [17183,3426], + [17185,458], + [17187,634], + [17189,580], + [17191,616], + [17193,550], + [17195,2593], + [17197,34803], + [17199,2750], + [17201,15384], + [17203,1227], + [18001,1119], + [18003,14553], + [18005,2646], + [18007,339], + [18009,625], + [18011,1839], + [18013,586], + [18015,734], + [18017,1532], + [18019,4334], + [18021,1263], + [18023,1329], + [18025,509], + [18027,890], + [18029,2224], + [18031,1102], + [18033,1717], + [18035,5143], + [18037,1231], + [18039,8653], + [18041,1021], + [18043,2689], + [18045,717], + [18047,1005], + [18049,845], + [18051,1191], + [18053,3147], + [18055,1444], + [18057,8021], + [18059,2622], + [18061,1433], + [18063,4866], + [18065,2125], + [18067,3258], + [18069,1637], + [18071,1529], + [18073,1296], + [18075,799], + [18077,1291], + [18079,1351], + [18081,5052], + [18083,1336], + [18085,2982], + [18087,1209], + [18089,20873], + [18091,4848], + [18093,2253], + [18095,5794], + [18097,42290], + [18099,1889], + [18101,360], + [18103,1520], + [18105,4848], + [18107,1522], + [18109,2919], + [18111,665], + [18113,1947], + [18115,283], + [18117,945], + [18119,1065], + [18121,716], + [18123,745], + [18125,451], + [18127,6266], + [18129,891], + [18131,463], + [18133,1617], + [18135,1220], + [18137,1245], + [18139,712], + [18141,12080], + [18143,1048], + [18145,1865], + [18147,779], + [18149,1072], + [18151,1378], + [18153,821], + [18155,378], + [18157,6154], + [18159,622], + [18161,287], + [18163,7039], + [18165,851], + [18167,4972], + [18169,1332], + [18171,310], + [18173,2096], + [18175,1244], + [18177,3036], + [18179,984], + [18181,1015], + [18183,1346], + [19001,177], + [19003,87], + [19005,489], + [19007,390], + [19009,154], + [19011,731], + [19013,3869], + [19015,631], + [19017,532], + [19019,530], + [19021,467], + [19023,371], + [19025,244], + [19027,425], + [19029,374], + [19031,485], + [19033,1325], + [19035,297], + [19037,327], + [19039,277], + [19041,448], + [19043,578], + [19045,1542], + [19047,391], + [19049,1530], + [19051,236], + [19053,188], + [19055,459], + [19057,1235], + [19059,518], + [19061,2473], + [19063,255], + [19065,587], + [19067,507], + [19069,260], + [19071,205], + [19073,254], + [19075,303], + [19077,312], + [19079,486], + [19081,273], + [19083,468], + [19085,380], + [19087,571], + [19089,240], + [19091,218], + [19093,152], + [19095,432], + [19097,591], + [19099,1103], + [19101,460], + [19103,2955], + [19105,562], + [19107,297], + [19109,325], + [19111,1258], + [19113,6204], + [19115,317], + [19117,199], + [19119,202], + [19121,453], + [19123,603], + [19125,820], + [19127,1271], + [19129,334], + [19131,253], + [19133,290], + [19135,229], + [19137,256], + [19139,1216], + [19141,306], + [19143,140], + [19145,359], + [19147,203], + [19149,581], + [19151,168], + [19153,12649], + [19155,2451], + [19157,494], + [19159,112], + [19161,233], + [19163,5003], + [19165,263], + [19167,669], + [19169,1902], + [19171,545], + [19173,128], + [19175,347], + [19177,220], + [19179,1243], + [19181,1235], + [19183,511], + [19185,152], + [19187,1217], + [19189,273], + [19191,548], + [19193,2836], + [19195,230], + [19197,364], + [20001,491], + [20003,280], + [20005,607], + [20007,106], + [20009,674], + [20011,516], + [20013,281], + [20015,1994], + [20017,70], + [20019,111], + [20021,826], + [20023,48], + [20025,42], + [20027,219], + [20029,228], + [20031,316], + [20033,39], + [20035,1063], + [20037,1280], + [20039,62], + [20041,608], + [20043,275], + [20045,3261], + [20047,66], + [20049,92], + [20051,617], + [20053,122], + [20055,900], + [20057,727], + [20059,1017], + [20061,1110], + [20063,45], + [20065,47], + [20067,155], + [20069,111], + [20071,27], + [20073,192], + [20075,49], + [20077,135], + [20079,937], + [20081,83], + [20083,38], + [20085,413], + [20087,620], + [20089,62], + [20091,14249], + [20093,86], + [20095,231], + [20097,53], + [20099,853], + [20101,41], + [20103,2206], + [20105,90], + [20107,433], + [20109,53], + [20111,1000], + [20113,685], + [20115,325], + [20117,254], + [20119,83], + [20121,1061], + [20123,116], + [20125,1423], + [20127,195], + [20129,61], + [20131,217], + [20133,607], + [20135,53], + [20137,98], + [20139,605], + [20141,93], + [20143,174], + [20145,140], + [20147,135], + [20149,544], + [20151,244], + [20153,43], + [20155,1749], + [20157,100], + [20159,241], + [20161,1580], + [20163,128], + [20165,88], + [20167,156], + [20169,1768], + [20171,85], + [20173,16983], + [20175,445], + [20177,5690], + [20179,43], + [20181,123], + [20183,87], + [20185,103], + [20187,37], + [20189,102], + [20191,720], + [20193,157], + [20195,65], + [20197,205], + [20199,37], + [20201,135], + [20203,70], + [20205,416], + [20207,102], + [20209,6278], + [21001,743], + [21003,722], + [21005,796], + [21007,354], + [21009,1560], + [21011,508], + [21013,1226], + [21015,4474], + [21017,715], + [21019,1870], + [21021,1174], + [21023,373], + [21025,656], + [21027,800], + [21029,3166], + [21031,486], + [21033,472], + [21035,1292], + [21037,3376], + [21039,187], + [21041,518], + [21043,1436], + [21045,574], + [21047,2493], + [21049,1418], + [21051,833], + [21053,462], + [21055,320], + [21057,336], + [21059,3372], + [21061,501], + [21063,331], + [21065,561], + [21067,9688], + [21069,586], + [21071,1594], + [21073,1641], + [21075,281], + [21077,368], + [21079,654], + [21081,1039], + [21083,1374], + [21085,1162], + [21087,454], + [21089,1489], + [21091,297], + [21093,3894], + [21095,1399], + [21097,702], + [21099,674], + [21101,1704], + [21103,562], + [21105,175], + [21107,1664], + [21109,609], + [21111,30368], + [21113,1661], + [21115,873], + [21117,6230], + [21119,804], + [21121,1354], + [21123,510], + [21125,2534], + [21127,597], + [21129,307], + [21131,513], + [21133,1157], + [21135,627], + [21137,1040], + [21139,385], + [21141,921], + [21143,285], + [21145,2461], + [21147,722], + [21149,348], + [21151,3011], + [21153,693], + [21155,812], + [21157,1244], + [21159,344], + [21161,718], + [21163,1233], + [21165,296], + [21167,845], + [21169,352], + [21171,346], + [21173,1089], + [21175,555], + [21177,1215], + [21179,1811], + [21181,291], + [21183,901], + [21185,1752], + [21187,377], + [21189,170], + [21191,624], + [21193,1375], + [21195,2342], + [21197,553], + [21199,2580], + [21201,87], + [21203,733], + [21205,931], + [21207,746], + [21209,1686], + [21211,1389], + [21213,765], + [21215,652], + [21217,1120], + [21219,431], + [21221,565], + [21223,360], + [21225,548], + [21227,4166], + [21229,465], + [21231,1003], + [21233,444], + [21235,1479], + [21237,299], + [21239,758], + [22001,1564], + [22003,726], + [22005,3347], + [22007,962], + [22009,1239], + [22011,1086], + [22013,537], + [22015,3306], + [22017,8746], + [22019,6066], + [22021,350], + [22023,169], + [22025,350], + [22027,523], + [22029,690], + [22031,1007], + [22033,14964], + [22035,439], + [22037,599], + [22039,951], + [22041,800], + [22043,650], + [22045,2180], + [22047,1303], + [22049,465], + [22051,14207], + [22053,844], + [22055,5858], + [22057,2398], + [22059,342], + [22061,1679], + [22063,3980], + [22065,469], + [22067,1465], + [22069,1435], + [22071,13303], + [22073,5450], + [22075,601], + [22077,809], + [22079,4025], + [22081,289], + [22083,843], + [22085,641], + [22087,1405], + [22089,1621], + [22091,555], + [22093,977], + [22095,1902], + [22097,2775], + [22099,1507], + [22101,1903], + [22103,6423], + [22105,4523], + [22107,196], + [22109,2711], + [22111,763], + [22113,1481], + [22115,1561], + [22117,1452], + [22119,1548], + [22121,820], + [22123,566], + [22125,311], + [22127,485], + [23001,4369], + [23003,3184], + [23005,9541], + [23007,1341], + [23009,2593], + [23011,4528], + [23013,1427], + [23015,1263], + [23017,2707], + [23019,6205], + [23021,748], + [23023,1269], + [23025,2466], + [23027,1707], + [23029,1524], + [23031,7646], + [24001,3017], + [24003,17629], + [24005,32365], + [24009,2991], + [24011,1363], + [24013,5507], + [24015,4325], + [24017,5305], + [24019,1753], + [24021,7849], + [24023,1312], + [24025,9415], + [24027,8437], + [24029,810], + [24031,27989], + [24033,35299], + [24035,1690], + [24037,3388], + [24039,1097], + [24041,1398], + [24043,6046], + [24045,4743], + [24047,3375], + [24510,30237], + [25001,9174], + [25003,4857], + [25005,24852], + [25007,825], + [25009,27959], + [25011,2405], + [25013,18773], + [25015,4947], + [25017,45025], + [25019,499], + [25021,20426], + [25023,18232], + [25025,24612], + [25027,30044], + [26001,471], + [26003,409], + [26005,4167], + [26007,1302], + [26009,1153], + [26011,834], + [26013,497], + [26015,1982], + [26017,4621], + [26019,892], + [26021,6625], + [26023,1650], + [26025,5206], + [26027,2004], + [26029,1394], + [26031,1244], + [26033,1719], + [26035,1416], + [26037,2351], + [26039,632], + [26041,1728], + [26043,1067], + [26045,3799], + [26047,2126], + [26049,18135], + [26051,1174], + [26053,753], + [26055,3829], + [26057,1670], + [26059,1872], + [26061,1514], + [26063,1320], + [26065,11221], + [26067,2430], + [26069,1138], + [26071,485], + [26073,2565], + [26075,6109], + [26077,9027], + [26079,841], + [26081,21777], + [26083,125], + [26085,478], + [26087,4619], + [26089,816], + [26091,3976], + [26093,7347], + [26095,259], + [26097,627], + [26099,40433], + [26101,1135], + [26103,2746], + [26105,1386], + [26107,1906], + [26109,946], + [26111,3161], + [26113,668], + [26115,5702], + [26117,2780], + [26119,525], + [26121,7599], + [26123,2020], + [26125,50751], + [26127,1622], + [26129,984], + [26131,345], + [26133,993], + [26135,467], + [26137,1198], + [26139,9329], + [26141,802], + [26143,1089], + [26145,8190], + [26147,8670], + [26149,2449], + [26151,2026], + [26153,444], + [26155,3170], + [26157,2605], + [26159,3712], + [26161,10808], + [26163,90392], + [26165,1593], + [27001,559], + [27003,11034], + [27005,1037], + [27007,1595], + [27009,1353], + [27011,148], + [27013,1837], + [27015,835], + [27017,1200], + [27019,2530], + [27021,1229], + [27023,373], + [27025,1877], + [27027,1689], + [27029,465], + [27031,190], + [27033,386], + [27035,2374], + [27037,11907], + [27039,571], + [27041,998], + [27043,453], + [27045,624], + [27047,968], + [27049,1376], + [27051,204], + [27053,34502], + [27055,614], + [27057,767], + [27059,1422], + [27061,1746], + [27063,282], + [27065,785], + [27067,1227], + [27069,149], + [27071,535], + [27073,194], + [27075,350], + [27077,143], + [27079,1006], + [27081,162], + [27083,672], + [27085,1351], + [27087,172], + [27089,440], + [27091,610], + [27093,839], + [27095,1059], + [27097,1266], + [27099,1031], + [27101,260], + [27103,900], + [27105,490], + [27107,208], + [27109,3649], + [27111,1710], + [27113,567], + [27115,1120], + [27117,244], + [27119,1088], + [27121,277], + [27123,15685], + [27125,169], + [27127,453], + [27129,571], + [27131,2026], + [27133,202], + [27135,403], + [27137,6600], + [27139,3775], + [27141,3009], + [27143,503], + [27145,4655], + [27147,1170], + [27149,237], + [27151,313], + [27153,756], + [27155,89], + [27157,619], + [27159,486], + [27161,588], + [27163,6875], + [27165,353], + [27167,178], + [27169,1460], + [27171,4114], + [27173,285], + [28001,1225], + [28003,1393], + [28005,478], + [28007,744], + [28009,349], + [28011,1529], + [28013,561], + [28015,405], + [28017,818], + [28019,338], + [28021,544], + [28023,724], + [28025,1208], + [28027,1286], + [28029,1311], + [28031,708], + [28033,5370], + [28035,3104], + [28037,300], + [28039,904], + [28041,513], + [28043,886], + [28045,1656], + [28047,7272], + [28049,10161], + [28051,1094], + [28053,604], + [28055,83], + [28057,875], + [28059,5977], + [28061,700], + [28063,437], + [28065,576], + [28067,2175], + [28069,521], + [28071,1801], + [28073,1817], + [28075,3127], + [28077,508], + [28079,776], + [28081,3422], + [28083,1573], + [28085,1244], + [28087,2517], + [28089,3149], + [28091,1058], + [28093,1671], + [28095,1786], + [28097,530], + [28099,974], + [28101,738], + [28103,552], + [28105,1910], + [28107,1737], + [28109,1957], + [28111,509], + [28113,1608], + [28115,1101], + [28117,985], + [28119,414], + [28121,4181], + [28123,997], + [28125,263], + [28127,930], + [28129,516], + [28131,690], + [28133,1362], + [28135,651], + [28137,1149], + [28139,911], + [28141,814], + [28143,605], + [28145,1088], + [28147,626], + [28149,2096], + [28151,2909], + [28153,939], + [28155,387], + [28157,401], + [28159,887], + [28161,548], + [28163,1105], + [29001,755], + [29003,530], + [29005,183], + [29007,739], + [29009,1070], + [29011,411], + [29013,674], + [29015,647], + [29017,402], + [29019,4368], + [29021,2935], + [29023,1531], + [29025,308], + [29027,1352], + [29029,1813], + [29031,2257], + [29033,383], + [29035,241], + [29037,3522], + [29039,431], + [29041,264], + [29043,2375], + [29045,270], + [29047,7710], + [29049,761], + [29051,2055], + [29053,559], + [29055,946], + [29057,252], + [29059,647], + [29061,282], + [29063,300], + [29065,491], + [29067,506], + [29069,1268], + [29071,4094], + [29073,532], + [29075,191], + [29077,8530], + [29079,319], + [29081,288], + [29083,765], + [29085,434], + [29087,141], + [29089,328], + [29091,1348], + [29093,427], + [29095,27673], + [29097,3439], + [29099,8280], + [29101,1768], + [29103,111], + [29105,1460], + [29107,1224], + [29109,1128], + [29111,285], + [29113,2192], + [29115,479], + [29117,448], + [29119,679], + [29121,505], + [29123,444], + [29125,300], + [29127,883], + [29129,95], + [29131,1027], + [29133,487], + [29135,484], + [29137,311], + [29139,456], + [29141,776], + [29143,655], + [29145,1810], + [29147,653], + [29149,319], + [29151,369], + [29153,365], + [29155,684], + [29157,513], + [29159,1411], + [29161,1391], + [29163,557], + [29165,2883], + [29167,1085], + [29169,1293], + [29171,140], + [29173,360], + [29175,929], + [29177,930], + [29179,248], + [29181,576], + [29183,11504], + [29185,310], + [29186,659], + [29187,2310], + [29189,34154], + [29195,728], + [29197,139], + [29199,118], + [29201,1384], + [29203,337], + [29205,188], + [29207,1169], + [29209,1526], + [29211,190], + [29213,2874], + [29215,790], + [29217,563], + [29219,1267], + [29221,1057], + [29223,481], + [29225,1132], + [29227,52], + [29229,638], + [29510,13727], + [30001,265], + [30003,669], + [30005,159], + [30007,186], + [30009,250], + [30011,22], + [30013,2131], + [30015,105], + [30017,234], + [30019,30], + [30021,153], + [30023,288], + [30025,42], + [30027,314], + [30029,3913], + [30031,2683], + [30033,24], + [30035,627], + [30037,18], + [30039,120], + [30041,468], + [30043,309], + [30045,52], + [30047,957], + [30049,1694], + [30051,43], + [30053,1029], + [30055,32], + [30057,257], + [30059,51], + [30061,193], + [30063,3472], + [30065,130], + [30067,560], + [30069,13], + [30071,123], + [30073,144], + [30075,40], + [30077,195], + [30079,23], + [30081,1426], + [30083,188], + [30085,318], + [30087,302], + [30089,551], + [30091,61], + [30093,1045], + [30095,222], + [30097,68], + [30099,143], + [30101,106], + [30103,19], + [30105,167], + [30107,53], + [30109,18], + [30111,3613], + [31001,645], + [31003,117], + [31005,15], + [31007,20], + [31009,15], + [31011,94], + [31013,240], + [31015,45], + [31017,59], + [31019,901], + [31021,174], + [31023,158], + [31025,619], + [31027,138], + [31029,57], + [31031,100], + [31033,161], + [31035,130], + [31037,201], + [31039,152], + [31041,175], + [31043,647], + [31045,197], + [31047,581], + [31049,39], + [31051,130], + [31053,872], + [31055,12763], + [31057,38], + [31059,108], + [31061,60], + [31063,52], + [31065,95], + [31067,555], + [31069,41], + [31071,37], + [31073,34], + [31075,15], + [31077,47], + [31079,1300], + [31081,162], + [31083,61], + [31085,20], + [31087,56], + [31089,191], + [31091,20], + [31093,124], + [31095,163], + [31097,95], + [31099,113], + [31101,173], + [31103,19], + [31105,73], + [31107,161], + [31109,6051], + [31111,759], + [31113,16], + [31115,15], + [31117,13], + [31119,709], + [31121,155], + [31123,86], + [31125,70], + [31127,188], + [31129,86], + [31131,384], + [31133,54], + [31135,49], + [31137,152], + [31139,140], + [31141,660], + [31143,92], + [31145,207], + [31147,226], + [31149,22], + [31151,320], + [31153,3402], + [31155,474], + [31157,902], + [31159,315], + [31161,100], + [31163,66], + [31165,30], + [31167,128], + [31169,92], + [31171,17], + [31173,274], + [31175,75], + [31177,424], + [31179,184], + [31181,64], + [31183,18], + [31185,281], + [32001,1224], + [32003,112500], + [32005,2609], + [32007,1850], + [32009,33], + [32011,67], + [32013,602], + [32015,253], + [32017,220], + [32019,3325], + [32021,259], + [32023,2408], + [32027,252], + [32029,255], + [32031,24388], + [32033,387], + [32510,3041], + [33001,1737], + [33003,1300], + [33005,2165], + [33007,1191], + [33009,2167], + [33011,13123], + [33013,4015], + [33015,10160], + [33017,3790], + [33019,1079], + [34001,17871], + [34003,37237], + [34005,20461], + [34007,28154], + [34009,7709], + [34011,9373], + [34013,41284], + [34015,15357], + [34017,32072], + [34019,4626], + [34021,16049], + [34023,37165], + [34025,28902], + [34027,19033], + [34029,28524], + [34031,28097], + [34033,3803], + [34035,13100], + [34037,7326], + [34039,26774], + [34041,5131], + [35001,21811], + [35003,119], + [35005,1752], + [35006,797], + [35007,480], + [35009,1069], + [35011,35], + [35013,6861], + [35015,1255], + [35017,865], + [35019,165], + [35021,19], + [35023,172], + [35025,1337], + [35027,585], + [35028,350], + [35029,2290], + [35031,2392], + [35033,255], + [35035,1630], + [35037,274], + [35039,1569], + [35041,466], + [35043,4708], + [35045,3925], + [35047,988], + [35049,4257], + [35051,390], + [35053,476], + [35055,1569], + [35057,612], + [35059,82], + [35061,2621], + [36001,11397], + [36003,1994], + [36005,73956], + [36007,8177], + [36009,3575], + [36011,3229], + [36013,5223], + [36015,3411], + [36017,2083], + [36019,3574], + [36021,2230], + [36023,2111], + [36025,1887], + [36027,11395], + [36029,38357], + [36031,1739], + [36033,2084], + [36035,2797], + [36037,2442], + [36039,2141], + [36041,262], + [36043,2677], + [36045,4778], + [36047,116363], + [36049,1226], + [36051,2522], + [36053,2945], + [36055,29652], + [36057,2440], + [36059,48804], + [36061,71861], + [36063,9856], + [36065,8947], + [36067,18349], + [36069,4075], + [36071,14207], + [36073,1828], + [36075,6357], + [36077,2472], + [36079,3704], + [36081,93148], + [36083,6476], + [36085,20654], + [36087,11000], + [36089,4962], + [36091,8005], + [36093,5994], + [36095,1421], + [36097,848], + [36099,1296], + [36101,4279], + [36103,60667], + [36105,3218], + [36107,2009], + [36109,3375], + [36111,7537], + [36113,3101], + [36115,2473], + [36117,3993], + [36119,34654], + [36121,1673], + [36123,943], + [37001,6656], + [37003,1693], + [37005,481], + [37007,1207], + [37009,1376], + [37011,823], + [37013,2227], + [37015,989], + [37017,1835], + [37019,5321], + [37021,9159], + [37023,4005], + [37025,8222], + [37027,4282], + [37029,355], + [37031,2817], + [37033,1060], + [37035,7766], + [37037,2480], + [37039,1252], + [37041,643], + [37043,432], + [37045,5049], + [37047,2842], + [37049,3970], + [37051,13894], + [37053,1065], + [37055,2562], + [37057,7719], + [37059,1813], + [37061,2410], + [37063,11003], + [37065,3487], + [37067,15616], + [37069,2729], + [37071,10555], + [37073,411], + [37075,632], + [37077,2265], + [37079,830], + [37081,24311], + [37083,2970], + [37085,5276], + [37087,2507], + [37089,3640], + [37091,1031], + [37093,2116], + [37095,286], + [37097,7865], + [37099,1912], + [37101,7037], + [37103,455], + [37105,3080], + [37107,2793], + [37109,3838], + [37111,2230], + [37113,1643], + [37115,926], + [37117,1252], + [37119,46165], + [37121,813], + [37123,1223], + [37125,3293], + [37127,5314], + [37129,9402], + [37131,952], + [37133,5094], + [37135,4401], + [37137,484], + [37139,1820], + [37141,2595], + [37143,549], + [37145,2029], + [37147,7996], + [37149,709], + [37151,6803], + [37153,2399], + [37155,6997], + [37157,4847], + [37159,6884], + [37161,3535], + [37163,2765], + [37165,2138], + [37167,2859], + [37169,2082], + [37171,3241], + [37173,960], + [37175,1170], + [37177,216], + [37179,8185], + [37181,2501], + [37183,35831], + [37185,943], + [37187,747], + [37189,1997], + [37191,4688], + [37193,3174], + [37195,4982], + [37197,1649], + [37199,852], + [38001,32], + [38003,197], + [38005,194], + [38007,16], + [38009,116], + [38011,35], + [38013,27], + [38015,1315], + [38017,2630], + [38019,68], + [38021,74], + [38023,27], + [38025,58], + [38027,64], + [38029,89], + [38031,53], + [38033,24], + [38035,1263], + [38037,41], + [38039,33], + [38041,39], + [38043,65], + [38045,57], + [38047,28], + [38049,141], + [38051,40], + [38053,93], + [38055,209], + [38057,215], + [38059,555], + [38061,121], + [38063,64], + [38065,60], + [38067,238], + [38069,81], + [38071,241], + [38073,84], + [38075,33], + [38077,312], + [38079,529], + [38081,57], + [38083,27], + [38085,68], + [38087,11], + [38089,333], + [38091,28], + [38093,358], + [38095,42], + [38097,143], + [38099,277], + [38101,900], + [38103,89], + [38105,303], + [39001,1354], + [39003,3848], + [39005,2075], + [39007,4371], + [39009,2350], + [39011,1480], + [39013,2617], + [39015,2014], + [39017,14285], + [39019,1095], + [39021,1430], + [39023,5117], + [39025,7602], + [39027,1857], + [39029,4198], + [39031,1630], + [39033,1839], + [39035,41990], + [39037,1923], + [39039,1455], + [39041,4981], + [39043,3093], + [39045,4867], + [39047,1170], + [39049,40474], + [39051,1734], + [39053,1223], + [39055,2605], + [39057,5552], + [39059,1635], + [39061,29644], + [39063,2545], + [39065,1111], + [39067,596], + [39069,1235], + [39071,1834], + [39073,1120], + [39075,1015], + [39077,2867], + [39079,1417], + [39081,3395], + [39083,2095], + [39085,7406], + [39087,2250], + [39089,5816], + [39091,1615], + [39093,10533], + [39095,17537], + [39097,1282], + [39099,9191], + [39101,2285], + [39103,5143], + [39105,1098], + [39107,1130], + [39109,3804], + [39111,545], + [39113,20872], + [39115,663], + [39117,1373], + [39119,3701], + [39121,526], + [39123,2095], + [39125,708], + [39127,1574], + [39129,1913], + [39131,1378], + [39133,6408], + [39135,1659], + [39137,1091], + [39139,4871], + [39141,2862], + [39143,2390], + [39145,3513], + [39147,2213], + [39149,1737], + [39151,14047], + [39153,20315], + [39155,8624], + [39157,3307], + [39159,1513], + [39161,1068], + [39163,600], + [39165,7090], + [39167,2458], + [39169,3611], + [39171,1490], + [39173,4717], + [39175,830], + [40001,776], + [40003,83], + [40005,339], + [40007,94], + [40009,380], + [40011,170], + [40013,945], + [40015,701], + [40017,2478], + [40019,1212], + [40021,1335], + [40023,493], + [40025,42], + [40027,5639], + [40029,168], + [40031,3017], + [40033,163], + [40035,359], + [40037,1906], + [40039,559], + [40041,1130], + [40043,76], + [40045,65], + [40047,1197], + [40049,622], + [40051,1218], + [40053,90], + [40055,111], + [40057,66], + [40059,61], + [40061,411], + [40063,464], + [40065,568], + [40067,128], + [40069,284], + [40071,1442], + [40073,258], + [40075,201], + [40077,387], + [40079,1736], + [40081,774], + [40083,901], + [40085,217], + [40087,736], + [40089,1375], + [40091,755], + [40093,143], + [40095,397], + [40097,1131], + [40099,308], + [40101,2025], + [40103,243], + [40105,336], + [40107,337], + [40109,17490], + [40111,1312], + [40113,1246], + [40115,1144], + [40117,493], + [40119,1780], + [40121,1328], + [40123,928], + [40125,1702], + [40127,352], + [40129,60], + [40131,2181], + [40133,784], + [40135,1438], + [40137,1011], + [40139,374], + [40141,165], + [40143,15975], + [40145,1867], + [40147,1186], + [40149,225], + [40151,141], + [40153,372], + [41001,749], + [41003,2699], + [41005,16119], + [41007,1621], + [41009,2456], + [41011,3005], + [41013,1251], + [41015,1054], + [41017,8859], + [41019,5461], + [41021,95], + [41023,463], + [41025,414], + [41027,1018], + [41029,10917], + [41031,1132], + [41033,4056], + [41035,3513], + [41037,470], + [41039,15349], + [41041,2118], + [41043,5940], + [41045,1201], + [41047,15019], + [41049,457], + [41051,31915], + [41053,3134], + [41055,96], + [41057,1084], + [41059,3320], + [41061,1151], + [41063,385], + [41065,1162], + [41067,20618], + [41069,54], + [41071,4296], + [42001,3504], + [42003,45405], + [42005,2722], + [42007,6543], + [42009,2163], + [42011,16233], + [42013,4599], + [42015,2244], + [42017,24317], + [42019,6293], + [42021,5796], + [42023,252], + [42025,3232], + [42027,4254], + [42029,15353], + [42031,1705], + [42033,3575], + [42035,1720], + [42037,2962], + [42039,3202], + [42041,7790], + [42043,10469], + [42045,22290], + [42047,1175], + [42049,10715], + [42051,5984], + [42053,198], + [42055,5353], + [42057,686], + [42059,1391], + [42061,2063], + [42063,3627], + [42065,1810], + [42067,874], + [42069,9519], + [42071,17534], + [42073,3425], + [42075,4731], + [42077,15511], + [42079,15752], + [42081,4937], + [42083,1700], + [42085,4076], + [42087,1828], + [42089,8048], + [42091,27696], + [42093,550], + [42095,12593], + [42097,4106], + [42099,1788], + [42101,76078], + [42103,2633], + [42105,723], + [42107,6906], + [42109,1507], + [42111,3241], + [42113,242], + [42115,1711], + [42117,1656], + [42119,1229], + [42121,2016], + [42123,1409], + [42125,7722], + [42127,1861], + [42129,13822], + [42131,1288], + [42133,17292], + [44001,2352], + [44003,9171], + [44005,4109], + [44007,35649], + [44009,6773], + [45001,1135], + [45003,6274], + [45005,530], + [45007,7579], + [45009,923], + [45011,1243], + [45013,4980], + [45015,7426], + [45017,778], + [45019,13340], + [45021,3046], + [45023,2074], + [45025,2392], + [45027,1704], + [45029,1990], + [45031,3364], + [45033,1865], + [45035,5328], + [45037,1005], + [45039,1353], + [45041,6276], + [45043,2954], + [45045,16864], + [45047,3251], + [45049,941], + [45051,13743], + [45053,929], + [45055,2678], + [45057,3872], + [45059,3090], + [45061,946], + [45063,9566], + [45065,421], + [45067,2148], + [45069,1899], + [45071,1610], + [45073,2936], + [45075,5618], + [45077,4910], + [45079,15491], + [45081,729], + [45083,12707], + [45085,4767], + [45087,1631], + [45089,1964], + [45091,10990], + [46003,50], + [46005,333], + [46007,81], + [46009,119], + [46011,692], + [46013,745], + [46015,96], + [46017,72], + [46019,232], + [46021,31], + [46023,201], + [46025,83], + [46027,284], + [46029,602], + [46031,121], + [46033,215], + [46035,374], + [46037,170], + [46039,147], + [46041,387], + [46043,57], + [46045,69], + [46047,178], + [46049,46], + [46051,199], + [46053,93], + [46055,35], + [46057,123], + [46059,56], + [46061,84], + [46063,30], + [46065,328], + [46067,129], + [46069,27], + [46071,94], + [46073,38], + [46075,24], + [46077,106], + [46079,266], + [46081,567], + [46083,900], + [46085,112], + [46087,120], + [46089,53], + [46091,120], + [46093,578], + [46095,67], + [46097,46], + [46099,4001], + [46101,219], + [46102,"NA"], + [46103,2342], + [46105,61], + [46107,49], + [46109,282], + [46111,45], + [46115,139], + [46117,56], + [46119,27], + [46121,313], + [46123,117], + [46125,165], + [46127,371], + [46129,143], + [46135,426], + [46137,73], + [47001,2731], + [47003,1984], + [47005,683], + [47007,447], + [47009,4271], + [47011,3589], + [47013,1740], + [47015,512], + [47017,1464], + [47019,2275], + [47021,1455], + [47023,656], + [47025,1314], + [47027,332], + [47029,1773], + [47031,2027], + [47033,661], + [47035,2145], + [47037,21926], + [47039,538], + [47041,771], + [47043,2012], + [47045,1922], + [47047,1559], + [47049,728], + [47051,1514], + [47053,2355], + [47055,1182], + [47057,996], + [47059,3055], + [47061,556], + [47063,2596], + [47065,11796], + [47067,266], + [47069,1090], + [47071,1121], + [47073,2213], + [47075,950], + [47077,1276], + [47079,1346], + [47081,945], + [47083,393], + [47085,823], + [47087,480], + [47089,2248], + [47091,695], + [47093,14163], + [47095,230], + [47097,1148], + [47099,1783], + [47101,545], + [47103,950], + [47105,1689], + [47107,2161], + [47109,1002], + [47111,840], + [47113,3946], + [47115,1119], + [47117,1341], + [47119,3186], + [47121,522], + [47123,1938], + [47125,5915], + [47127,197], + [47129,853], + [47131,1927], + [47133,868], + [47135,304], + [47137,230], + [47139,734], + [47141,2645], + [47143,1383], + [47145,2060], + [47147,2373], + [47149,9446], + [47151,1363], + [47153,500], + [47155,4328], + [47157,38403], + [47159,707], + [47161,611], + [47163,5497], + [47165,5538], + [47167,2509], + [47169,318], + [47171,794], + [47173,720], + [47175,258], + [47177,1534], + [47179,4271], + [47181,631], + [47183,1852], + [47185,1193], + [47187,4909], + [47189,3885], + [48001,1417], + [48003,341], + [48005,2613], + [48007,693], + [48009,239], + [48011,46], + [48013,1353], + [48015,901], + [48017,220], + [48019,598], + [48021,2360], + [48023,95], + [48025,763], + [48027,9939], + [48029,53283], + [48031,283], + [48033,18], + [48035,592], + [48037,3091], + [48039,10752], + [48041,5267], + [48043,232], + [48045,35], + [48047,237], + [48049,1090], + [48051,482], + [48053,1217], + [48055,1208], + [48057,765], + [48059,361], + [48061,17143], + [48063,441], + [48065,150], + [48067,1177], + [48069,178], + [48071,1379], + [48073,1591], + [48075,131], + [48077,298], + [48079,109], + [48081,75], + [48083,249], + [48085,26314], + [48087,62], + [48089,648], + [48091,3383], + [48093,369], + [48095,64], + [48097,1040], + [48099,1868], + [48101,50], + [48103,100], + [48105,89], + [48107,209], + [48109,60], + [48111,148], + [48113,87113], + [48115,326], + [48117,438], + [48119,177], + [48121,22190], + [48123,466], + [48125,89], + [48127,336], + [48129,101], + [48131,381], + [48133,551], + [48135,3537], + [48137,59], + [48139,5193], + [48141,29672], + [48143,1115], + [48145,507], + [48147,1064], + [48149,606], + [48151,103], + [48153,206], + [48155,36], + [48157,18995], + [48159,342], + [48161,543], + [48163,437], + [48165,373], + [48167,11697], + [48169,109], + [48171,579], + [48173,31], + [48175,191], + [48177,480], + [48179,544], + [48181,4110], + [48183,3819], + [48185,760], + [48187,3877], + [48189,1097], + [48191,104], + [48193,218], + [48195,104], + [48197,104], + [48199,2180], + [48201,143114], + [48203,2364], + [48205,97], + [48207,148], + [48209,5008], + [48211,74], + [48213,2615], + [48215,34796], + [48217,1094], + [48219,623], + [48221,1550], + [48223,1106], + [48225,715], + [48227,752], + [48229,99], + [48231,3181], + [48233,638], + [48235,39], + [48237,219], + [48239,381], + [48241,1588], + [48243,59], + [48245,12556], + [48247,155], + [48249,1274], + [48251,4861], + [48253,425], + [48255,322], + [48257,3588], + [48259,945], + [48261,13], + [48263,22], + [48265,1266], + [48267,107], + [48269,11], + [48271,111], + [48273,1060], + [48275,95], + [48277,2085], + [48279,515], + [48281,647], + [48283,163], + [48285,458], + [48287,493], + [48289,513], + [48291,2957], + [48293,661], + [48295,68], + [48297,263], + [48299,548], + [48301,4], + [48303,7787], + [48305,178], + [48307,237], + [48309,7462], + [48311,18], + [48313,329], + [48315,397], + [48317,109], + [48319,103], + [48321,1732], + [48323,2928], + [48325,1324], + [48327,61], + [48329,3193], + [48331,882], + [48333,114], + [48335,172], + [48337,533], + [48339,14213], + [48341,501], + [48343,569], + [48345,31], + [48347,1964], + [48349,1689], + [48351,642], + [48353,420], + [48355,10968], + [48357,205], + [48359,41], + [48361,4064], + [48363,904], + [48365,845], + [48367,3437], + [48369,206], + [48371,358], + [48373,1406], + [48375,3117], + [48377,508], + [48379,366], + [48381,3013], + [48383,71], + [48385,100], + [48387,563], + [48389,361], + [48391,211], + [48393,24], + [48395,586], + [48397,2546], + [48399,280], + [48401,1544], + [48403,493], + [48405,367], + [48407,945], + [48409,2306], + [48411,143], + [48413,71], + [48415,363], + [48417,78], + [48419,880], + [48421,63], + [48423,7156], + [48425,274], + [48427,3784], + [48429,260], + [48431,25], + [48433,33], + [48435,95], + [48437,181], + [48439,62944], + [48441,3651], + [48443,26], + [48445,371], + [48447,44], + [48449,995], + [48451,2869], + [48453,33656], + [48455,456], + [48457,810], + [48459,1262], + [48461,64], + [48463,948], + [48465,1524], + [48467,1638], + [48469,2527], + [48471,1608], + [48473,1434], + [48475,258], + [48477,880], + [48479,7073], + [48481,1450], + [48483,126], + [48485,3554], + [48487,356], + [48489,1174], + [48491,13836], + [48493,1204], + [48495,180], + [48497,1823], + [48499,1315], + [48501,174], + [48503,489], + [48505,432], + [48507,593], + [49001,177], + [49003,1322], + [49005,2550], + [49007,653], + [49009,22], + [49011,7258], + [49013,430], + [49015,341], + [49017,271], + [49019,455], + [49021,1330], + [49023,282], + [49025,230], + [49027,277], + [49029,213], + [49031,41], + [49033,50], + [49035,29234], + [49037,502], + [49039,721], + [49041,577], + [49043,1060], + [49045,1659], + [49047,710], + [49049,11853], + [49051,670], + [49053,3935], + [49055,146], + [49057,7194], + [50001,942], + [50003,1157], + [50005,1007], + [50007,3618], + [50009,236], + [50011,1247], + [50013,223], + [50015,893], + [50017,774], + [50019,1092], + [50021,2044], + [50023,1632], + [50025,1275], + [50027,1430], + [51001,1293], + [51003,2753], + [51005,553], + [51007,406], + [51009,1076], + [51011,537], + [51013,5000], + [51015,2144], + [51017,151], + [51019,2288], + [51021,202], + [51023,971], + [51025,680], + [51027,782], + [51029,552], + [51031,1752], + [51033,1131], + [51035,1151], + [51036,302], + [51037,467], + [51041,10557], + [51043,405], + [51045,173], + [51047,1328], + [51049,323], + [51051,556], + [51053,1034], + [51057,421], + [51059,28156], + [51061,1853], + [51063,475], + [51065,692], + [51067,1804], + [51069,2512], + [51071,599], + [51073,1093], + [51075,574], + [51077,670], + [51079,544], + [51081,385], + [51083,1523], + [51085,3041], + [51087,10437], + [51089,2402], + [51091,71], + [51093,1188], + [51095,1887], + [51097,243], + [51099,761], + [51101,549], + [51103,440], + [51105,809], + [51107,8275], + [51109,1120], + [51111,407], + [51113,349], + [51115,238], + [51117,1277], + [51119,312], + [51121,2923], + [51125,435], + [51127,592], + [51131,574], + [51133,481], + [51135,438], + [51137,1061], + [51139,1245], + [51141,729], + [51143,2390], + [51145,765], + [51147,874], + [51149,1087], + [51153,12082], + [51155,1256], + [51157,215], + [51159,251], + [51161,2594], + [51163,656], + [51165,2317], + [51167,1020], + [51169,761], + [51171,1326], + [51173,1295], + [51175,596], + [51177,3909], + [51179,3791], + [51181,288], + [51183,416], + [51185,1485], + [51187,1344], + [51191,1870], + [51193,665], + [51195,1430], + [51197,1094], + [51199,1835], + [51510,3814], + [51520,584], + [51530,258], + [51540,1200], + [51550,7390], + [51570,599], + [51580,237], + [51590,2065], + [51595,261], + [51600,557], + [51610,309], + [51620,372], + [51630,959], + [51640,271], + [51650,5441], + [51660,1777], + [51670,980], + [51678,200], + [51680,2660], + [51683,1227], + [51685,463], + [51690,736], + [51700,6747], + [51710,8597], + [51720,153], + [51730,1628], + [51735,344], + [51740,4026], + [51750,644], + [51760,8188], + [51770,3579], + [51775,767], + [51790,759], + [51800,2934], + [51810,13143], + [51820,706], + [51830,571], + [51840,952], + [53001,748], + [53003,760], + [53005,8574], + [53007,3311], + [53009,2943], + [53011,19700], + [53013,151], + [53015,4762], + [53017,1750], + [53019,383], + [53021,3801], + [53023,78], + [53025,4174], + [53027,3747], + [53029,2649], + [53031,1190], + [53033,70997], + [53035,9165], + [53037,1810], + [53039,1018], + [53041,3861], + [53043,382], + [53045,2568], + [53047,2006], + [53049,987], + [53051,614], + [53053,36061], + [53055,521], + [53057,5513], + [53059,531], + [53061,28739], + [53063,20915], + [53065,2143], + [53067,10394], + [53069,175], + [53071,2203], + [53073,8401], + [53075,1475], + [53077,12815], + [54001,560], + [54003,3489], + [54005,927], + [54007,585], + [54009,931], + [54011,2809], + [54013,316], + [54015,425], + [54017,215], + [54019,1522], + [54021,216], + [54023,544], + [54025,1236], + [54027,773], + [54029,1277], + [54031,591], + [54033,2049], + [54035,1027], + [54037,1488], + [54039,6033], + [54041,520], + [54043,796], + [54045,1258], + [54047,797], + [54049,1730], + [54051,1155], + [54053,1076], + [54055,1961], + [54057,1024], + [54059,873], + [54061,2581], + [54063,415], + [54065,556], + [54067,1005], + [54069,1361], + [54071,247], + [54073,251], + [54075,368], + [54077,1043], + [54079,1694], + [54081,2387], + [54083,1055], + [54085,323], + [54087,606], + [54089,411], + [54091,517], + [54093,258], + [54095,336], + [54097,780], + [54099,1246], + [54101,386], + [54103,680], + [54105,252], + [54107,2804], + [54109,769], + [55001,982], + [55003,764], + [55005,1872], + [55007,841], + [55009,9031], + [55011,416], + [55013,681], + [55015,1459], + [55017,2252], + [55019,1269], + [55021,2270], + [55023,703], + [55025,14497], + [55027,3414], + [55029,1619], + [55031,1606], + [55033,1541], + [55035,3378], + [55037,184], + [55039,3644], + [55041,455], + [55043,1656], + [55045,1301], + [55047,775], + [55049,903], + [55051,291], + [55053,753], + [55055,3084], + [55057,1140], + [55059,7094], + [55061,721], + [55063,3613], + [55065,527], + [55067,927], + [55069,1381], + [55071,3394], + [55073,5246], + [55075,1790], + [55077,669], + [55078,259], + [55079,41046], + [55081,1660], + [55083,1734], + [55085,1665], + [55087,6447], + [55089,2604], + [55091,232], + [55093,1319], + [55095,1931], + [55097,2847], + [55099,530], + [55101,8395], + [55103,607], + [55105,6783], + [55107,613], + [55109,2728], + [55111,2459], + [55113,891], + [55115,1727], + [55117,4131], + [55119,797], + [55121,934], + [55123,959], + [55125,1013], + [55127,4059], + [55129,639], + [55131,4610], + [55133,12519], + [55135,2078], + [55137,1052], + [55139,6161], + [55141,2994], + [56001,891], + [56003,317], + [56005,1212], + [56007,425], + [56009,342], + [56011,186], + [56013,1282], + [56015,351], + [56017,122], + [56019,238], + [56021,2744], + [56023,589], + [56025,2146], + [56027,53], + [56029,902], + [56031,234], + [56033,987], + [56035,272], + [56037,1152], + [56039,924], + [56041,574], + [56043,233], + [56045,161] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2013.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2013.json new file mode 100644 index 0000000..bec4575 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2013.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2013", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2013"], + [1001,1605], + [1003,5654], + [1005,931], + [1007,689], + [1009,1562], + [1011,447], + [1013,941], + [1015,4242], + [1017,1217], + [1019,754], + [1021,1269], + [1023,433], + [1025,1140], + [1027,450], + [1029,447], + [1031,1411], + [1033,1959], + [1035,504], + [1037,408], + [1039,1298], + [1041,483], + [1043,2381], + [1045,1530], + [1047,1992], + [1049,2210], + [1051,2272], + [1053,1227], + [1055,3324], + [1057,531], + [1059,1100], + [1061,768], + [1063,383], + [1065,722], + [1067,533], + [1069,3158], + [1071,1865], + [1073,20979], + [1075,408], + [1077,3067], + [1079,1189], + [1081,4144], + [1083,2466], + [1085,566], + [1087,811], + [1089,10812], + [1091,679], + [1093,988], + [1095,2773], + [1097,15958], + [1099,923], + [1101,7747], + [1103,3911], + [1105,483], + [1107,693], + [1109,1139], + [1111,714], + [1113,1810], + [1115,2380], + [1117,4950], + [1119,494], + [1121,3071], + [1123,1490], + [1125,6076], + [1127,2228], + [1129,729], + [1131,536], + [1133,907], + [2013,134], + [2016,296], + [2020,8232], + [2050,1200], + [2060,43], + [2068,135], + [2070,218], + [2090,2772], + [2100,116], + [2105,165], + [2110,887], + [2122,2239], + [2130,562], + [2150,411], + [2158,"NA"], + [2164,99], + [2170,3672], + [2180,511], + [2185,300], + [2188,504], + [2195,144], + [2198,343], + [2220,254], + [2230,99], + [2240,396], + [2261,490], + [2275,85], + [2282,27], + [2290,502], + [4001,4016], + [4003,4721], + [4005,5767], + [4007,2011], + [4009,1103], + [4011,269], + [4012,656], + [4013,125434], + [4015,7950], + [4017,5642], + [4019,30874], + [4021,11951], + [4023,3088], + [4025,7087], + [4027,24162], + [5001,705], + [5003,970], + [5005,1292], + [5007,6290], + [5009,1126], + [5011,405], + [5013,198], + [5015,736], + [5017,446], + [5019,893], + [5021,635], + [5023,856], + [5025,272], + [5027,849], + [5029,797], + [5031,3229], + [5033,2067], + [5035,1804], + [5037,621], + [5039,318], + [5041,544], + [5043,799], + [5045,3842], + [5047,510], + [5049,339], + [5051,3091], + [5053,540], + [5055,1531], + [5057,731], + [5059,1027], + [5061,399], + [5063,1423], + [5065,432], + [5067,683], + [5069,3197], + [5071,808], + [5073,264], + [5075,634], + [5077,308], + [5079,361], + [5081,433], + [5083,718], + [5085,1997], + [5087,396], + [5089,501], + [5091,1253], + [5093,2148], + [5095,274], + [5097,287], + [5099,291], + [5101,241], + [5103,992], + [5105,408], + [5107,863], + [5109,371], + [5111,858], + [5113,605], + [5115,2171], + [5117,268], + [5119,12166], + [5121,637], + [5123,953], + [5125,3164], + [5127,288], + [5129,248], + [5131,4329], + [5133,495], + [5135,586], + [5137,403], + [5139,1426], + [5141,629], + [5143,5714], + [5145,2735], + [5147,307], + [5149,594], + [6001,58049], + [6003,51], + [6005,1490], + [6007,10485], + [6009,2012], + [6011,2136], + [6013,40341], + [6015,1223], + [6017,7535], + [6019,58058], + [6021,1572], + [6023,5108], + [6025,19601], + [6027,736], + [6029,46227], + [6031,7811], + [6033,3191], + [6035,1167], + [6037,484573], + [6039,7835], + [6041,7151], + [6043,866], + [6045,3412], + [6047,16619], + [6049,430], + [6051,713], + [6053,22305], + [6055,5043], + [6057,3902], + [6059,103064], + [6061,13569], + [6063,1142], + [6065,98689], + [6067,60406], + [6069,3208], + [6071,87616], + [6073,120798], + [6075,28179], + [6077,38539], + [6079,9439], + [6081,21993], + [6083,15651], + [6085,62823], + [6087,14601], + [6089,8900], + [6091,185], + [6093,2405], + [6095,18425], + [6097,17765], + [6099,31206], + [6101,6549], + [6103,2915], + [6105,620], + [6107,28882], + [6109,2343], + [6111,34145], + [6113,9175], + [6115,3719], + [8001,19659], + [8003,735], + [8005,21527], + [8007,499], + [8009,78], + [8011,127], + [8013,9598], + [8014,1905], + [8015,511], + [8017,41], + [8019,341], + [8021,384], + [8023,179], + [8025,95], + [8027,122], + [8029,1235], + [8031,24066], + [8033,84], + [8035,8733], + [8037,1927], + [8039,747], + [8041,24178], + [8043,1597], + [8045,2309], + [8047,199], + [8049,512], + [8051,527], + [8053,20], + [8055,348], + [8057,38], + [8059,19091], + [8061,34], + [8063,160], + [8065,320], + [8067,1686], + [8069,10119], + [8071,751], + [8073,123], + [8075,553], + [8077,6434], + [8079,25], + [8081,522], + [8083,983], + [8085,1823], + [8087,957], + [8089,808], + [8091,162], + [8093,561], + [8095,98], + [8097,698], + [8099,368], + [8101,7221], + [8103,241], + [8105,565], + [8107,862], + [8109,333], + [8111,41], + [8113,318], + [8115,68], + [8117,971], + [8119,914], + [8121,117], + [8123,9127], + [8125,225], + [9001,34023], + [9003,37271], + [9005,7438], + [9007,6100], + [9009,38421], + [9011,11139], + [9013,5732], + [9015,5452], + [10001,5419], + [10003,17902], + [10005,6289], + [11001,31775], + [12001,7397], + [12003,832], + [12005,6294], + [12007,692], + [12009,21457], + [12011,65971], + [12013,386], + [12015,5307], + [12017,4787], + [12019,6149], + [12021,10987], + [12023,2108], + [12027,1077], + [12029,498], + [12031,34332], + [12033,10053], + [12035,3680], + [12037,276], + [12039,1728], + [12041,520], + [12043,406], + [12045,416], + [12047,397], + [12049,911], + [12051,1990], + [12053,5957], + [12055,3440], + [12057,44347], + [12059,551], + [12061,5931], + [12063,1341], + [12065,424], + [12067,182], + [12069,10015], + [12071,21797], + [12073,9033], + [12075,1334], + [12077,190], + [12079,615], + [12081,10408], + [12083,11191], + [12085,4869], + [12086,95962], + [12087,2145], + [12089,2432], + [12091,5271], + [12093,1584], + [12095,44937], + [12097,11702], + [12099,47893], + [12101,16149], + [12103,31235], + [12105,22913], + [12107,2937], + [12109,5833], + [12111,12867], + [12113,4672], + [12115,11925], + [12117,15521], + [12119,2552], + [12121,1251], + [12123,742], + [12125,315], + [12127,19304], + [12129,840], + [12131,1646], + [12133,759], + [13001,932], + [13003,326], + [13005,391], + [13007,119], + [13009,1878], + [13011,630], + [13013,2563], + [13015,4077], + [13017,720], + [13019,707], + [13021,6481], + [13023,670], + [13025,749], + [13027,557], + [13029,1147], + [13031,2968], + [13033,1136], + [13035,947], + [13037,171], + [13039,1675], + [13043,417], + [13045,4988], + [13047,2130], + [13049,415], + [13051,10861], + [13053,270], + [13055,948], + [13057,7107], + [13059,4525], + [13061,109], + [13063,13471], + [13065,259], + [13067,26033], + [13069,1737], + [13071,1783], + [13073,4248], + [13075,635], + [13077,4594], + [13079,503], + [13081,1080], + [13083,579], + [13085,796], + [13087,1099], + [13089,31056], + [13091,885], + [13093,519], + [13095,4104], + [13097,5784], + [13099,400], + [13101,113], + [13103,1874], + [13105,905], + [13107,1107], + [13109,360], + [13111,878], + [13113,3579], + [13115,4155], + [13117,5670], + [13119,911], + [13121,41076], + [13123,1070], + [13125,122], + [13127,3234], + [13129,2319], + [13131,809], + [13133,629], + [13135,30110], + [13137,1548], + [13139,6128], + [13141,388], + [13143,1109], + [13145,1034], + [13147,965], + [13149,471], + [13151,8736], + [13153,5073], + [13155,358], + [13157,2042], + [13159,539], + [13161,634], + [13163,956], + [13165,410], + [13167,393], + [13169,991], + [13171,883], + [13173,330], + [13175,2091], + [13177,983], + [13179,2223], + [13181,346], + [13183,545], + [13185,4100], + [13187,1116], + [13189,1026], + [13191,532], + [13193,633], + [13195,978], + [13197,305], + [13199,948], + [13201,193], + [13205,774], + [13207,1026], + [13209,462], + [13211,674], + [13213,1785], + [13215,7754], + [13217,4663], + [13219,958], + [13221,510], + [13223,5364], + [13225,1268], + [13227,1099], + [13229,696], + [13231,703], + [13233,1647], + [13235,371], + [13237,840], + [13239,74], + [13241,676], + [13243,288], + [13245,8523], + [13247,3857], + [13249,197], + [13251,700], + [13253,321], + [13255,3190], + [13257,1053], + [13259,200], + [13261,1511], + [13263,265], + [13265,70], + [13267,760], + [13269,370], + [13271,604], + [13273,358], + [13275,1605], + [13277,1588], + [13279,1407], + [13281,440], + [13283,348], + [13285,3115], + [13287,333], + [13289,429], + [13291,736], + [13293,1171], + [13295,2433], + [13297,3192], + [13299,1413], + [13301,328], + [13303,741], + [13305,1201], + [13307,96], + [13309,238], + [13311,1016], + [13313,4267], + [13315,313], + [13317,418], + [13319,384], + [13321,853], + [15001,5770], + [15003,20028], + [15005,"NA"], + [15007,1930], + [15009,4138], + [16001,10732], + [16003,233], + [16005,2415], + [16007,148], + [16009,402], + [16011,1307], + [16013,661], + [16015,238], + [16017,1606], + [16019,2666], + [16021,391], + [16023,89], + [16025,41], + [16027,6607], + [16029,206], + [16031,581], + [16033,27], + [16035,360], + [16037,185], + [16039,724], + [16041,260], + [16043,363], + [16045,587], + [16047,395], + [16049,653], + [16051,621], + [16053,579], + [16055,5051], + [16057,954], + [16059,322], + [16061,81], + [16063,201], + [16065,752], + [16067,574], + [16069,1006], + [16071,90], + [16073,197], + [16075,702], + [16077,262], + [16079,665], + [16081,273], + [16083,2181], + [16085,463], + [16087,351], + [17001,2234], + [17003,341], + [17005,696], + [17007,2676], + [17009,161], + [17011,1627], + [17013,237], + [17015,627], + [17017,587], + [17019,7670], + [17021,1554], + [17023,739], + [17025,626], + [17027,1354], + [17029,2144], + [17031,257182], + [17033,829], + [17035,455], + [17037,4485], + [17039,680], + [17041,682], + [17043,37594], + [17045,854], + [17047,246], + [17049,1250], + [17051,934], + [17053,498], + [17055,2010], + [17057,1771], + [17059,234], + [17061,546], + [17063,3008], + [17065,318], + [17067,754], + [17069,197], + [17071,289], + [17073,1973], + [17075,1269], + [17077,2266], + [17079,375], + [17081,1698], + [17083,999], + [17085,884], + [17087,523], + [17089,23035], + [17091,5810], + [17093,5392], + [17095,2097], + [17097,28796], + [17099,6006], + [17101,646], + [17103,1450], + [17105,1429], + [17107,1057], + [17109,1214], + [17111,14425], + [17113,6097], + [17115,5951], + [17117,2219], + [17119,11834], + [17121,1822], + [17123,539], + [17125,737], + [17127,628], + [17129,474], + [17131,660], + [17133,1186], + [17135,1375], + [17137,1365], + [17139,511], + [17141,2540], + [17143,9007], + [17145,996], + [17147,600], + [17149,578], + [17151,169], + [17153,278], + [17155,303], + [17157,1203], + [17159,615], + [17161,6119], + [17163,12513], + [17165,1193], + [17167,7656], + [17169,289], + [17171,231], + [17173,899], + [17175,275], + [17177,2135], + [17179,5972], + [17181,832], + [17183,3806], + [17185,424], + [17187,649], + [17189,554], + [17191,613], + [17193,540], + [17195,2564], + [17197,35061], + [17199,2835], + [17201,15028], + [17203,1416], + [18001,966], + [18003,13082], + [18005,2485], + [18007,315], + [18009,538], + [18011,1771], + [18013,543], + [18015,697], + [18017,1362], + [18019,3887], + [18021,1123], + [18023,1165], + [18025,485], + [18027,841], + [18029,2131], + [18031,928], + [18033,1498], + [18035,4671], + [18037,1149], + [18039,7165], + [18041,932], + [18043,2441], + [18045,816], + [18047,934], + [18049,817], + [18051,1055], + [18053,2931], + [18055,1406], + [18057,7850], + [18059,2392], + [18061,1305], + [18063,4553], + [18065,1884], + [18067,2964], + [18069,1428], + [18071,1354], + [18073,1234], + [18075,776], + [18077,1206], + [18079,1198], + [18081,4596], + [18083,1254], + [18085,2617], + [18087,1040], + [18089,20844], + [18091,4559], + [18093,2086], + [18095,5416], + [18097,39385], + [18099,1710], + [18101,313], + [18103,1355], + [18105,4558], + [18107,1321], + [18109,2633], + [18111,620], + [18113,1657], + [18115,263], + [18117,868], + [18119,970], + [18121,639], + [18123,694], + [18125,425], + [18127,5999], + [18129,820], + [18131,430], + [18133,1399], + [18135,1088], + [18137,1170], + [18139,617], + [18141,11059], + [18143,914], + [18145,1640], + [18147,712], + [18149,966], + [18151,1210], + [18153,788], + [18155,364], + [18157,5955], + [18159,535], + [18161,253], + [18163,6486], + [18165,787], + [18167,4643], + [18169,1178], + [18171,365], + [18173,1932], + [18175,1148], + [18177,2648], + [18179,866], + [18181,888], + [18183,1170], + [19001,172], + [19003,79], + [19005,485], + [19007,377], + [19009,158], + [19011,698], + [19013,3663], + [19015,603], + [19017,530], + [19019,529], + [19021,447], + [19023,374], + [19025,226], + [19027,379], + [19029,368], + [19031,466], + [19033,1261], + [19035,294], + [19037,317], + [19039,253], + [19041,397], + [19043,568], + [19045,1434], + [19047,382], + [19049,1475], + [19051,227], + [19053,194], + [19055,447], + [19057,1237], + [19059,497], + [19061,2501], + [19063,233], + [19065,563], + [19067,457], + [19069,263], + [19071,174], + [19073,240], + [19075,288], + [19077,285], + [19079,383], + [19081,248], + [19083,444], + [19085,338], + [19087,506], + [19089,242], + [19091,213], + [19093,152], + [19095,411], + [19097,584], + [19099,968], + [19101,443], + [19103,2821], + [19105,570], + [19107,278], + [19109,301], + [19111,1220], + [19113,5993], + [19115,296], + [19117,199], + [19119,198], + [19121,411], + [19123,561], + [19125,772], + [19127,1191], + [19129,322], + [19131,237], + [19133,265], + [19135,229], + [19137,250], + [19139,1132], + [19141,292], + [19143,131], + [19145,346], + [19147,179], + [19149,580], + [19151,159], + [19153,12046], + [19155,2222], + [19157,479], + [19159,108], + [19161,232], + [19163,4923], + [19165,261], + [19167,676], + [19169,1824], + [19171,506], + [19173,120], + [19175,337], + [19177,211], + [19179,1147], + [19181,1184], + [19183,462], + [19185,148], + [19187,1049], + [19189,248], + [19191,551], + [19193,2643], + [19195,216], + [19197,307], + [20001,419], + [20003,246], + [20005,667], + [20007,110], + [20009,612], + [20011,445], + [20013,273], + [20015,1761], + [20017,70], + [20019,100], + [20021,670], + [20023,45], + [20025,37], + [20027,211], + [20029,194], + [20031,292], + [20033,36], + [20035,997], + [20037,1138], + [20039,54], + [20041,581], + [20043,235], + [20045,3056], + [20047,60], + [20049,75], + [20051,567], + [20053,115], + [20055,856], + [20057,746], + [20059,858], + [20061,1097], + [20063,49], + [20065,56], + [20067,144], + [20069,104], + [20071,22], + [20073,179], + [20075,49], + [20077,125], + [20079,832], + [20081,70], + [20083,43], + [20085,370], + [20087,583], + [20089,52], + [20091,13540], + [20093,76], + [20095,202], + [20097,48], + [20099,769], + [20101,31], + [20103,2068], + [20105,82], + [20107,375], + [20109,48], + [20111,1179], + [20113,642], + [20115,290], + [20117,233], + [20119,74], + [20121,936], + [20123,113], + [20125,1204], + [20127,169], + [20129,62], + [20131,201], + [20133,573], + [20135,49], + [20137,86], + [20139,551], + [20141,90], + [20143,146], + [20145,149], + [20147,126], + [20149,548], + [20151,216], + [20153,42], + [20155,1658], + [20157,89], + [20159,233], + [20161,1541], + [20163,116], + [20165,78], + [20167,152], + [20169,1548], + [20171,82], + [20173,15132], + [20175,454], + [20177,5314], + [20179,41], + [20181,125], + [20183,77], + [20185,97], + [20187,38], + [20189,99], + [20191,628], + [20193,156], + [20195,55], + [20197,190], + [20199,27], + [20201,116], + [20203,45], + [20205,364], + [20207,101], + [20209,5936], + [21001,767], + [21003,666], + [21005,743], + [21007,351], + [21009,1505], + [21011,498], + [21013,1314], + [21015,4371], + [21017,688], + [21019,1859], + [21021,1130], + [21023,385], + [21025,668], + [21027,756], + [21029,2931], + [21031,492], + [21033,461], + [21035,1316], + [21037,3202], + [21039,170], + [21041,472], + [21043,1397], + [21045,588], + [21047,2507], + [21049,1298], + [21051,822], + [21053,430], + [21055,304], + [21057,324], + [21059,3273], + [21061,500], + [21063,327], + [21065,539], + [21067,9769], + [21069,618], + [21071,1742], + [21073,1615], + [21075,257], + [21077,369], + [21079,634], + [21081,955], + [21083,1394], + [21085,1157], + [21087,440], + [21089,1510], + [21091,296], + [21093,3665], + [21095,1717], + [21097,661], + [21099,637], + [21101,1656], + [21103,560], + [21105,154], + [21107,1697], + [21109,560], + [21111,28793], + [21113,1629], + [21115,922], + [21117,5964], + [21119,861], + [21121,1365], + [21123,482], + [21125,2398], + [21127,626], + [21129,296], + [21131,615], + [21133,1344], + [21135,643], + [21137,1057], + [21139,384], + [21141,863], + [21143,254], + [21145,2390], + [21147,699], + [21149,343], + [21151,3007], + [21153,703], + [21155,758], + [21157,1244], + [21159,355], + [21161,779], + [21163,1125], + [21165,300], + [21167,800], + [21169,338], + [21171,339], + [21173,1028], + [21175,537], + [21177,1215], + [21179,1637], + [21181,305], + [21183,919], + [21185,1726], + [21187,360], + [21189,163], + [21191,588], + [21193,1450], + [21195,2767], + [21197,544], + [21199,2500], + [21201,93], + [21203,656], + [21205,908], + [21207,813], + [21209,1597], + [21211,1373], + [21213,665], + [21215,601], + [21217,1076], + [21219,418], + [21221,546], + [21223,330], + [21225,528], + [21227,4153], + [21229,423], + [21231,889], + [21233,440], + [21235,1468], + [21237,299], + [21239,755], + [22001,1570], + [22003,659], + [22005,3172], + [22007,822], + [22009,1193], + [22011,1064], + [22013,516], + [22015,3426], + [22017,8746], + [22019,5764], + [22021,323], + [22023,177], + [22025,330], + [22027,488], + [22029,663], + [22031,974], + [22033,14015], + [22035,384], + [22037,547], + [22039,872], + [22041,775], + [22043,597], + [22045,2083], + [22047,1170], + [22049,457], + [22051,13409], + [22053,817], + [22055,5863], + [22057,2301], + [22059,347], + [22061,1613], + [22063,3746], + [22065,437], + [22067,1378], + [22069,1402], + [22071,12724], + [22073,5121], + [22075,571], + [22077,752], + [22079,3921], + [22081,291], + [22083,835], + [22085,621], + [22087,1370], + [22089,1563], + [22091,518], + [22093,899], + [22095,1743], + [22097,2634], + [22099,1431], + [22101,1642], + [22103,6385], + [22105,4252], + [22107,166], + [22109,2670], + [22111,715], + [22113,1461], + [22115,1577], + [22117,1373], + [22119,1503], + [22121,754], + [22123,540], + [22125,309], + [22127,439], + [23001,3770], + [23003,2914], + [23005,8530], + [23007,1186], + [23009,2373], + [23011,3985], + [23013,1234], + [23015,1181], + [23017,2299], + [23019,5479], + [23021,697], + [23023,1075], + [23025,2273], + [23027,1507], + [23029,1355], + [23031,7036], + [24001,2852], + [24003,16868], + [24005,30381], + [24009,2825], + [24011,1225], + [24013,5104], + [24015,4021], + [24017,5182], + [24019,1556], + [24021,7371], + [24023,1268], + [24025,8824], + [24027,8249], + [24029,742], + [24031,26860], + [24033,33572], + [24035,1544], + [24037,3232], + [24039,1023], + [24041,1228], + [24043,5646], + [24045,4355], + [24047,3255], + [24510,28672], + [25001,9118], + [25003,4869], + [25005,24939], + [25007,857], + [25009,28142], + [25011,2423], + [25013,19101], + [25015,5178], + [25017,46014], + [25019,481], + [25021,21073], + [25023,18365], + [25025,25223], + [25027,30253], + [26001,506], + [26003,395], + [26005,3867], + [26007,1292], + [26009,1140], + [26011,843], + [26013,512], + [26015,1867], + [26017,4627], + [26019,885], + [26021,6287], + [26023,1603], + [26025,4957], + [26027,1931], + [26029,1392], + [26031,1211], + [26033,1776], + [26035,1391], + [26037,2359], + [26039,615], + [26041,1794], + [26043,1046], + [26045,3689], + [26047,2144], + [26049,17875], + [26051,1169], + [26053,727], + [26055,3589], + [26057,1639], + [26059,1825], + [26061,1491], + [26063,1365], + [26065,11027], + [26067,2291], + [26069,1165], + [26071,515], + [26073,2519], + [26075,5956], + [26077,8566], + [26079,844], + [26081,20395], + [26083,134], + [26085,480], + [26087,4604], + [26089,787], + [26091,3723], + [26093,7038], + [26095,248], + [26097,641], + [26099,39795], + [26101,1113], + [26103,2773], + [26105,1328], + [26107,1873], + [26109,914], + [26111,3147], + [26113,641], + [26115,5491], + [26117,2633], + [26119,513], + [26121,7542], + [26123,1952], + [26125,49021], + [26127,1574], + [26129,1013], + [26131,338], + [26133,998], + [26135,461], + [26137,1168], + [26139,8813], + [26141,803], + [26143,1120], + [26145,8033], + [26147,8593], + [26149,2187], + [26151,2033], + [26153,456], + [26155,3098], + [26157,2635], + [26159,3526], + [26161,10709], + [26163,89260], + [26165,1622], + [27001,507], + [27003,9466], + [27005,984], + [27007,1436], + [27009,1270], + [27011,138], + [27013,1603], + [27015,755], + [27017,1047], + [27019,2298], + [27021,1149], + [27023,357], + [27025,1591], + [27027,1493], + [27029,476], + [27031,177], + [27033,334], + [27035,2177], + [27037,10415], + [27039,536], + [27041,882], + [27043,404], + [27045,558], + [27047,819], + [27049,1256], + [27051,188], + [27053,30533], + [27055,525], + [27057,688], + [27059,1213], + [27061,1678], + [27063,258], + [27065,716], + [27067,1115], + [27069,145], + [27071,557], + [27073,205], + [27075,358], + [27077,134], + [27079,944], + [27081,153], + [27083,631], + [27085,1120], + [27087,138], + [27089,425], + [27091,544], + [27093,705], + [27095,951], + [27097,1191], + [27099,917], + [27101,258], + [27103,737], + [27105,446], + [27107,190], + [27109,3339], + [27111,1621], + [27113,547], + [27115,1026], + [27117,216], + [27119,920], + [27121,254], + [27123,13505], + [27125,152], + [27127,441], + [27129,536], + [27131,1732], + [27133,180], + [27135,379], + [27137,6187], + [27139,3373], + [27141,2602], + [27143,457], + [27145,4244], + [27147,976], + [27149,207], + [27151,285], + [27153,685], + [27155,84], + [27157,545], + [27159,431], + [27161,546], + [27163,5971], + [27165,326], + [27167,151], + [27169,1293], + [27171,3560], + [27173,272], + [28001,1103], + [28003,1195], + [28005,415], + [28007,679], + [28009,328], + [28011,1474], + [28013,538], + [28015,367], + [28017,812], + [28019,319], + [28021,560], + [28023,664], + [28025,1293], + [28027,1265], + [28029,1206], + [28031,626], + [28033,4792], + [28035,2792], + [28037,272], + [28039,807], + [28041,451], + [28043,824], + [28045,1486], + [28047,6496], + [28049,9384], + [28051,1054], + [28053,524], + [28055,91], + [28057,804], + [28059,5407], + [28061,647], + [28063,477], + [28065,532], + [28067,1929], + [28069,509], + [28071,1647], + [28073,1627], + [28075,2889], + [28077,436], + [28079,693], + [28081,3162], + [28083,1531], + [28085,1072], + [28087,2506], + [28089,2911], + [28091,936], + [28093,1502], + [28095,1824], + [28097,494], + [28099,853], + [28101,670], + [28103,547], + [28105,1767], + [28107,1627], + [28109,1692], + [28111,442], + [28113,1436], + [28115,1013], + [28117,924], + [28119,424], + [28121,3721], + [28123,842], + [28125,240], + [28127,811], + [28129,459], + [28131,615], + [28133,1250], + [28135,646], + [28137,1067], + [28139,856], + [28141,710], + [28143,595], + [28145,927], + [28147,565], + [28149,1948], + [28151,2774], + [28153,844], + [28155,388], + [28157,370], + [28159,813], + [28161,501], + [28163,1038], + [29001,740], + [29003,530], + [29005,168], + [29007,711], + [29009,1017], + [29011,394], + [29013,611], + [29015,616], + [29017,408], + [29019,4393], + [29021,2892], + [29023,1472], + [29025,291], + [29027,1301], + [29029,1736], + [29031,2354], + [29033,342], + [29035,244], + [29037,3294], + [29039,414], + [29041,234], + [29043,2240], + [29045,267], + [29047,7712], + [29049,712], + [29051,2084], + [29053,534], + [29055,932], + [29057,235], + [29059,601], + [29061,254], + [29063,303], + [29065,472], + [29067,476], + [29069,1290], + [29071,3717], + [29073,477], + [29075,189], + [29077,7964], + [29079,288], + [29081,290], + [29083,705], + [29085,367], + [29087,147], + [29089,318], + [29091,1284], + [29093,418], + [29095,26961], + [29097,3386], + [29099,7811], + [29101,1661], + [29103,109], + [29105,1496], + [29107,1087], + [29109,1150], + [29111,282], + [29113,1993], + [29115,468], + [29117,410], + [29119,642], + [29121,485], + [29123,425], + [29125,276], + [29127,880], + [29129,99], + [29131,1005], + [29133,492], + [29135,465], + [29137,301], + [29139,412], + [29141,742], + [29143,648], + [29145,1744], + [29147,743], + [29149,329], + [29151,359], + [29153,380], + [29155,734], + [29157,551], + [29159,1319], + [29161,1358], + [29163,527], + [29165,2988], + [29167,991], + [29169,1239], + [29171,145], + [29173,325], + [29175,861], + [29177,860], + [29179,238], + [29181,514], + [29183,11008], + [29185,304], + [29186,650], + [29187,2247], + [29189,32746], + [29195,664], + [29197,149], + [29199,127], + [29201,1413], + [29203,321], + [29205,171], + [29207,1169], + [29209,1429], + [29211,176], + [29213,2754], + [29215,795], + [29217,578], + [29219,1152], + [29221,1019], + [29223,465], + [29225,1074], + [29227,54], + [29229,637], + [29510,13346], + [30001,228], + [30003,801], + [30005,152], + [30007,160], + [30009,241], + [30011,21], + [30013,1964], + [30015,95], + [30017,223], + [30019,30], + [30021,152], + [30023,257], + [30025,40], + [30027,288], + [30029,3374], + [30031,2257], + [30033,24], + [30035,640], + [30037,20], + [30039,114], + [30041,522], + [30043,275], + [30045,48], + [30047,805], + [30049,1527], + [30051,34], + [30053,1054], + [30055,26], + [30057,229], + [30059,49], + [30061,186], + [30063,3084], + [30065,120], + [30067,509], + [30069,14], + [30071,121], + [30073,143], + [30075,37], + [30077,164], + [30079,24], + [30081,1263], + [30083,185], + [30085,271], + [30087,269], + [30089,496], + [30091,61], + [30093,939], + [30095,204], + [30097,66], + [30099,127], + [30101,92], + [30103,16], + [30105,161], + [30107,51], + [30109,19], + [30111,3437], + [31001,617], + [31003,116], + [31005,17], + [31007,20], + [31009,14], + [31011,100], + [31013,231], + [31015,40], + [31017,56], + [31019,888], + [31021,166], + [31023,162], + [31025,578], + [31027,140], + [31029,57], + [31031,96], + [31033,164], + [31035,120], + [31037,198], + [31039,150], + [31041,171], + [31043,527], + [31045,195], + [31047,506], + [31049,38], + [31051,117], + [31053,810], + [31055,11880], + [31057,36], + [31059,99], + [31061,56], + [31063,54], + [31065,96], + [31067,511], + [31069,35], + [31071,38], + [31073,40], + [31075,14], + [31077,46], + [31079,1210], + [31081,155], + [31083,58], + [31085,22], + [31087,55], + [31089,189], + [31091,21], + [31093,126], + [31095,161], + [31097,95], + [31099,110], + [31101,170], + [31103,20], + [31105,73], + [31107,170], + [31109,5843], + [31111,729], + [31113,16], + [31115,17], + [31117,14], + [31119,676], + [31121,156], + [31123,89], + [31125,67], + [31127,191], + [31129,79], + [31131,360], + [31133,53], + [31135,47], + [31137,151], + [31139,141], + [31141,616], + [31143,102], + [31145,190], + [31147,195], + [31149,28], + [31151,315], + [31153,3208], + [31155,451], + [31157,805], + [31159,333], + [31161,91], + [31163,58], + [31165,27], + [31167,123], + [31169,85], + [31171,18], + [31173,238], + [31175,71], + [31177,409], + [31179,180], + [31181,68], + [31183,17], + [31185,270], + [32001,1036], + [32003,97369], + [32005,2190], + [32007,1787], + [32009,26], + [32011,66], + [32013,582], + [32015,259], + [32017,195], + [32019,2856], + [32021,231], + [32023,1987], + [32027,235], + [32029,220], + [32031,20989], + [32033,358], + [32510,2649], + [33001,1603], + [33003,1201], + [33005,1987], + [33007,969], + [33009,2044], + [33011,12237], + [33013,3739], + [33015,9556], + [33017,3422], + [33019,992], + [34001,16079], + [34003,32410], + [34005,17917], + [34007,24260], + [34009,7040], + [34011,8187], + [34013,36839], + [34015,13541], + [34017,28299], + [34019,3896], + [34021,14128], + [34023,32565], + [34025,24729], + [34027,16351], + [34029,24755], + [34031,25024], + [34033,3319], + [34035,11091], + [34037,6307], + [34039,23572], + [34041,4424], + [35001,20673], + [35003,110], + [35005,1673], + [35006,775], + [35007,438], + [35009,1097], + [35011,37], + [35013,7006], + [35015,1269], + [35017,869], + [35019,142], + [35021,15], + [35023,164], + [35025,1312], + [35027,567], + [35028,364], + [35029,2149], + [35031,2458], + [35033,263], + [35035,1609], + [35037,240], + [35039,1591], + [35041,465], + [35043,4510], + [35045,3700], + [35047,927], + [35049,4088], + [35051,389], + [35053,488], + [35055,1554], + [35057,572], + [35059,86], + [35061,2496], + [36001,9746], + [36003,1785], + [36005,71033], + [36007,7155], + [36009,3249], + [36011,2865], + [36013,4831], + [36015,3130], + [36017,1762], + [36019,3091], + [36021,1911], + [36023,1882], + [36025,1656], + [36027,9707], + [36029,34122], + [36031,1498], + [36033,1904], + [36035,2343], + [36037,2087], + [36039,1870], + [36041,232], + [36043,2348], + [36045,4462], + [36047,113363], + [36049,1158], + [36051,2240], + [36053,2618], + [36055,26133], + [36057,2130], + [36059,41191], + [36061,67951], + [36063,8893], + [36065,7970], + [36067,15849], + [36069,3514], + [36071,12228], + [36073,1701], + [36075,5648], + [36077,2121], + [36079,3120], + [36081,88426], + [36083,5569], + [36085,19835], + [36087,9443], + [36089,4429], + [36091,6865], + [36093,5226], + [36095,1241], + [36097,781], + [36099,1105], + [36101,3857], + [36103,51585], + [36105,2810], + [36107,1778], + [36109,2912], + [36111,6451], + [36113,2710], + [36115,2193], + [36117,3482], + [36119,29875], + [36121,1491], + [36123,819], + [37001,5605], + [37003,1359], + [37005,388], + [37007,1033], + [37009,1179], + [37011,684], + [37013,1943], + [37015,852], + [37017,1656], + [37019,4665], + [37021,7632], + [37023,3320], + [37025,7009], + [37027,3482], + [37029,322], + [37031,2432], + [37033,887], + [37035,6449], + [37037,1981], + [37039,1038], + [37041,563], + [37043,355], + [37045,4418], + [37047,2480], + [37049,3601], + [37051,12662], + [37053,990], + [37055,2264], + [37057,6505], + [37059,1497], + [37061,2112], + [37063,9426], + [37065,3110], + [37067,13380], + [37069,2333], + [37071,9030], + [37073,366], + [37075,536], + [37077,1939], + [37079,742], + [37081,20993], + [37083,2567], + [37085,4591], + [37087,2154], + [37089,3047], + [37091,893], + [37093,1953], + [37095,250], + [37097,6644], + [37099,1617], + [37101,5983], + [37103,382], + [37105,2646], + [37107,2479], + [37109,3290], + [37111,1833], + [37113,1388], + [37115,776], + [37117,1057], + [37119,40390], + [37121,733], + [37123,968], + [37125,2943], + [37127,4689], + [37129,8275], + [37131,815], + [37133,4506], + [37135,3863], + [37137,447], + [37139,1703], + [37141,2260], + [37143,501], + [37145,1845], + [37147,7093], + [37149,575], + [37151,5871], + [37153,2050], + [37155,6180], + [37157,4080], + [37159,5829], + [37161,2896], + [37163,2396], + [37165,1846], + [37167,2357], + [37169,1743], + [37171,2773], + [37173,816], + [37175,992], + [37177,202], + [37179,6925], + [37181,2083], + [37183,30695], + [37185,800], + [37187,660], + [37189,1722], + [37191,4257], + [37193,2676], + [37195,4483], + [37197,1380], + [37199,743], + [38001,28], + [38003,183], + [38005,194], + [38007,14], + [38009,126], + [38011,40], + [38013,30], + [38015,1178], + [38017,2521], + [38019,69], + [38021,62], + [38023,25], + [38025,58], + [38027,76], + [38029,85], + [38031,56], + [38033,22], + [38035,1133], + [38037,37], + [38039,28], + [38041,39], + [38043,59], + [38045,51], + [38047,28], + [38049,137], + [38051,38], + [38053,113], + [38055,203], + [38057,192], + [38059,523], + [38061,123], + [38063,67], + [38065,54], + [38067,220], + [38069,77], + [38071,217], + [38073,80], + [38075,34], + [38077,289], + [38079,605], + [38081,54], + [38083,29], + [38085,61], + [38087,11], + [38089,330], + [38091,25], + [38093,329], + [38095,47], + [38097,130], + [38099,279], + [38101,935], + [38103,96], + [38105,361], + [39001,1360], + [39003,3876], + [39005,2067], + [39007,4370], + [39009,2480], + [39011,1416], + [39013,2633], + [39015,2043], + [39017,13959], + [39019,1083], + [39021,1384], + [39023,4954], + [39025,7543], + [39027,1786], + [39029,4164], + [39031,1598], + [39033,1807], + [39035,43295], + [39037,1850], + [39039,1420], + [39041,5233], + [39043,3129], + [39045,4925], + [39047,1103], + [39049,41156], + [39051,1782], + [39053,1213], + [39055,2804], + [39057,5544], + [39059,1609], + [39061,29358], + [39063,2501], + [39065,1152], + [39067,578], + [39069,1239], + [39071,1835], + [39073,1070], + [39075,1046], + [39077,2933], + [39079,1431], + [39081,3333], + [39083,2095], + [39085,7830], + [39087,2296], + [39089,5984], + [39091,1577], + [39093,11073], + [39095,18289], + [39097,1266], + [39099,9352], + [39101,2223], + [39103,5479], + [39105,1117], + [39107,1147], + [39109,3740], + [39111,648], + [39113,20850], + [39115,675], + [39117,1357], + [39119,3651], + [39121,510], + [39123,2132], + [39125,689], + [39127,1541], + [39129,1875], + [39131,1317], + [39133,6758], + [39135,1607], + [39137,1132], + [39139,4729], + [39141,2914], + [39143,2389], + [39145,3619], + [39147,2126], + [39149,1592], + [39151,14305], + [39153,20681], + [39155,8841], + [39157,3281], + [39159,1551], + [39161,989], + [39163,595], + [39165,7085], + [39167,2440], + [39169,3695], + [39171,1390], + [39173,4852], + [39175,782], + [40001,810], + [40003,96], + [40005,338], + [40007,102], + [40009,413], + [40011,173], + [40013,967], + [40015,714], + [40017,2664], + [40019,1171], + [40021,1303], + [40023,508], + [40025,40], + [40027,5858], + [40029,171], + [40031,2891], + [40033,161], + [40035,405], + [40037,1882], + [40039,590], + [40041,1173], + [40043,90], + [40045,73], + [40047,1211], + [40049,621], + [40051,1215], + [40053,89], + [40055,107], + [40057,58], + [40059,64], + [40061,411], + [40063,459], + [40065,582], + [40067,136], + [40069,292], + [40071,1379], + [40073,269], + [40075,203], + [40077,368], + [40079,1756], + [40081,795], + [40083,942], + [40085,229], + [40087,778], + [40089,1344], + [40091,727], + [40093,139], + [40095,401], + [40097,1091], + [40099,325], + [40101,1922], + [40103,242], + [40105,326], + [40107,313], + [40109,17820], + [40111,1230], + [40113,1229], + [40115,1138], + [40117,447], + [40119,1661], + [40121,1313], + [40123,971], + [40125,1751], + [40127,418], + [40129,60], + [40131,2232], + [40133,796], + [40135,1412], + [40137,1114], + [40139,407], + [40141,182], + [40143,15858], + [40145,1821], + [40147,1187], + [40149,234], + [40151,167], + [40153,380], + [41001,656], + [41003,2505], + [41005,13902], + [41007,1389], + [41009,2147], + [41011,2696], + [41013,1078], + [41015,917], + [41017,7445], + [41019,4657], + [41021,81], + [41023,394], + [41025,384], + [41027,869], + [41029,9347], + [41031,962], + [41033,3564], + [41035,3107], + [41037,394], + [41039,13415], + [41041,1813], + [41043,5171], + [41045,1045], + [41047,13011], + [41049,425], + [41051,27920], + [41053,2801], + [41055,80], + [41057,914], + [41059,3102], + [41061,989], + [41063,359], + [41065,1035], + [41067,18067], + [41069,46], + [41071,3717], + [42001,3243], + [42003,42622], + [42005,2578], + [42007,6254], + [42009,2070], + [42011,15072], + [42013,4290], + [42015,2323], + [42017,22238], + [42019,6024], + [42021,5639], + [42023,228], + [42025,3002], + [42027,4110], + [42029,14448], + [42031,1514], + [42033,3410], + [42035,1744], + [42037,2717], + [42039,3020], + [42041,7186], + [42043,9581], + [42045,20485], + [42047,1124], + [42049,10105], + [42051,5745], + [42053,196], + [42055,5061], + [42057,684], + [42059,1354], + [42061,1998], + [42063,3411], + [42065,1734], + [42067,857], + [42069,8935], + [42071,16283], + [42073,3238], + [42075,4397], + [42077,14348], + [42079,15076], + [42081,4841], + [42083,1609], + [42085,3883], + [42087,1746], + [42089,7633], + [42091,25535], + [42093,518], + [42095,11517], + [42097,3912], + [42099,1587], + [42101,71894], + [42103,2495], + [42105,721], + [42107,6460], + [42109,1356], + [42111,3307], + [42113,253], + [42115,1593], + [42117,1823], + [42119,1214], + [42121,1963], + [42123,1301], + [42125,7425], + [42127,1786], + [42129,13027], + [42131,1235], + [42133,15626], + [44001,2078], + [44003,8033], + [44005,3766], + [44007,31661], + [44009,6019], + [45001,1003], + [45003,5487], + [45005,434], + [45007,6091], + [45009,753], + [45011,1056], + [45013,4293], + [45015,6213], + [45017,664], + [45019,11037], + [45021,2486], + [45023,1670], + [45025,1925], + [45027,1338], + [45029,1622], + [45031,2809], + [45033,1509], + [45035,4537], + [45037,847], + [45039,1085], + [45041,5364], + [45043,2473], + [45045,14080], + [45047,2718], + [45049,775], + [45051,11447], + [45053,772], + [45055,2181], + [45057,3184], + [45059,2559], + [45061,724], + [45063,7953], + [45065,344], + [45067,1706], + [45069,1448], + [45071,1302], + [45073,2542], + [45075,4763], + [45077,4036], + [45079,13073], + [45081,593], + [45083,10472], + [45085,3863], + [45087,1324], + [45089,1585], + [45091,9190], + [46003,44], + [46005,337], + [46007,72], + [46009,97], + [46011,604], + [46013,679], + [46015,89], + [46017,65], + [46019,195], + [46021,30], + [46023,173], + [46025,77], + [46027,260], + [46029,551], + [46031,104], + [46033,204], + [46035,349], + [46037,153], + [46039,133], + [46041,374], + [46043,54], + [46045,64], + [46047,152], + [46049,38], + [46051,194], + [46053,82], + [46055,31], + [46057,107], + [46059,50], + [46061,75], + [46063,22], + [46065,287], + [46067,119], + [46069,24], + [46071,81], + [46073,37], + [46075,22], + [46077,93], + [46079,243], + [46081,498], + [46083,773], + [46085,89], + [46087,102], + [46089,43], + [46091,112], + [46093,514], + [46095,63], + [46097,45], + [46099,3391], + [46101,183], + [46102,"NA"], + [46103,2071], + [46105,57], + [46107,46], + [46109,251], + [46111,39], + [46115,119], + [46117,51], + [46119,26], + [46121,311], + [46123,107], + [46125,143], + [46127,327], + [46129,128], + [46135,384], + [46137,64], + [47001,2669], + [47003,1843], + [47005,674], + [47007,454], + [47009,4124], + [47011,3518], + [47013,1689], + [47015,466], + [47017,1557], + [47019,2281], + [47021,1317], + [47023,672], + [47025,1397], + [47027,333], + [47029,1634], + [47031,1909], + [47033,640], + [47035,2180], + [47037,20982], + [47039,541], + [47041,780], + [47043,1830], + [47045,1783], + [47047,1566], + [47049,724], + [47051,1421], + [47053,2435], + [47055,1150], + [47057,941], + [47059,2932], + [47061,536], + [47063,2459], + [47065,12176], + [47067,254], + [47069,1088], + [47071,1136], + [47073,2170], + [47075,956], + [47077,1330], + [47079,1354], + [47081,869], + [47083,368], + [47085,762], + [47087,472], + [47089,2113], + [47091,661], + [47093,14390], + [47095,220], + [47097,1196], + [47099,1787], + [47101,530], + [47103,972], + [47105,1719], + [47107,2067], + [47109,1094], + [47111,824], + [47113,3836], + [47115,1095], + [47117,1169], + [47119,2899], + [47121,516], + [47123,1885], + [47125,5852], + [47127,200], + [47129,822], + [47131,1588], + [47133,856], + [47135,293], + [47137,221], + [47139,694], + [47141,2600], + [47143,1428], + [47145,2096], + [47147,2270], + [47149,9163], + [47151,1244], + [47153,509], + [47155,4142], + [47157,38632], + [47159,665], + [47161,585], + [47163,5438], + [47165,5288], + [47167,2652], + [47169,310], + [47171,781], + [47173,715], + [47175,253], + [47177,1496], + [47179,4247], + [47181,632], + [47183,1716], + [47185,1125], + [47187,5221], + [47189,3877], + [48001,1279], + [48003,350], + [48005,2457], + [48007,661], + [48009,221], + [48011,40], + [48013,1262], + [48015,829], + [48017,218], + [48019,546], + [48021,2210], + [48023,89], + [48025,744], + [48027,9354], + [48029,49714], + [48031,260], + [48033,17], + [48035,523], + [48037,3091], + [48039,10043], + [48041,5042], + [48043,231], + [48045,35], + [48047,248], + [48049,1030], + [48051,475], + [48053,1139], + [48055,1124], + [48057,672], + [48059,339], + [48061,16654], + [48063,405], + [48065,141], + [48067,1159], + [48069,178], + [48071,1283], + [48073,1493], + [48075,125], + [48077,284], + [48079,93], + [48081,74], + [48083,238], + [48085,25295], + [48087,62], + [48089,582], + [48091,3452], + [48093,331], + [48095,58], + [48097,1023], + [48099,1811], + [48101,42], + [48103,93], + [48105,96], + [48107,164], + [48109,51], + [48111,136], + [48113,81364], + [48115,320], + [48117,408], + [48119,167], + [48121,21422], + [48123,459], + [48125,71], + [48127,340], + [48129,101], + [48131,354], + [48133,516], + [48135,3412], + [48137,53], + [48139,4797], + [48141,27442], + [48143,1071], + [48145,480], + [48147,1066], + [48149,563], + [48151,102], + [48153,276], + [48155,30], + [48157,18296], + [48159,306], + [48161,542], + [48163,434], + [48165,372], + [48167,10711], + [48169,101], + [48171,547], + [48173,27], + [48175,184], + [48177,487], + [48179,504], + [48181,3790], + [48183,3662], + [48185,708], + [48187,3845], + [48189,1968], + [48191,91], + [48193,216], + [48195,102], + [48197,99], + [48199,2036], + [48201,133105], + [48203,2214], + [48205,92], + [48207,134], + [48209,4800], + [48211,75], + [48213,2458], + [48215,34268], + [48217,1026], + [48219,599], + [48221,1455], + [48223,995], + [48225,614], + [48227,732], + [48229,90], + [48231,2840], + [48233,604], + [48235,36], + [48237,213], + [48239,372], + [48241,1519], + [48243,48], + [48245,12094], + [48247,165], + [48249,1234], + [48251,4509], + [48253,393], + [48255,301], + [48257,3331], + [48259,925], + [48261,12], + [48263,21], + [48265,1184], + [48267,105], + [48269,11], + [48271,116], + [48273,1000], + [48275,94], + [48277,1809], + [48279,421], + [48281,653], + [48283,157], + [48285,433], + [48287,467], + [48289,481], + [48291,2762], + [48293,639], + [48295,68], + [48297,263], + [48299,521], + [48301,4], + [48303,7287], + [48305,151], + [48307,225], + [48309,6936], + [48311,23], + [48313,312], + [48315,366], + [48317,108], + [48319,107], + [48321,1636], + [48323,2955], + [48325,1235], + [48327,54], + [48329,3150], + [48331,794], + [48333,109], + [48335,159], + [48337,510], + [48339,13324], + [48341,487], + [48343,560], + [48345,30], + [48347,1904], + [48349,1528], + [48351,603], + [48353,397], + [48355,10295], + [48357,204], + [48359,43], + [48361,3950], + [48363,876], + [48365,788], + [48367,3249], + [48369,196], + [48371,362], + [48373,1341], + [48375,2895], + [48377,483], + [48379,328], + [48381,2951], + [48383,78], + [48385,85], + [48387,517], + [48389,325], + [48391,192], + [48393,20], + [48395,511], + [48397,2432], + [48399,262], + [48401,1510], + [48403,460], + [48405,341], + [48407,866], + [48409,2203], + [48411,130], + [48413,64], + [48415,356], + [48417,76], + [48419,863], + [48421,60], + [48423,6649], + [48425,250], + [48427,3942], + [48429,217], + [48431,29], + [48433,33], + [48435,94], + [48437,250], + [48439,59367], + [48441,3410], + [48443,26], + [48445,328], + [48447,40], + [48449,972], + [48451,2798], + [48453,31730], + [48455,416], + [48457,780], + [48459,1185], + [48461,70], + [48463,835], + [48465,1453], + [48467,1556], + [48469,2444], + [48471,1529], + [48473,1347], + [48475,259], + [48477,861], + [48479,6765], + [48481,1283], + [48483,135], + [48485,3355], + [48487,334], + [48489,1173], + [48491,13019], + [48493,1168], + [48495,175], + [48497,1703], + [48499,1218], + [48501,163], + [48503,442], + [48505,440], + [48507,581], + [49001,141], + [49003,1097], + [49005,2290], + [49007,565], + [49009,21], + [49011,6486], + [49013,400], + [49015,287], + [49017,256], + [49019,422], + [49021,1075], + [49023,237], + [49025,186], + [49027,242], + [49029,182], + [49031,37], + [49033,45], + [49035,25003], + [49037,452], + [49039,622], + [49041,503], + [49043,915], + [49045,1547], + [49047,682], + [49049,10549], + [49051,569], + [49053,3272], + [49055,150], + [49057,6206], + [50001,858], + [50003,1004], + [50005,836], + [50007,3260], + [50009,192], + [50011,1150], + [50013,182], + [50015,789], + [50017,664], + [50019,943], + [50021,1718], + [50023,1491], + [50025,1126], + [50027,1268], + [51001,1172], + [51003,2546], + [51005,496], + [51007,366], + [51009,968], + [51011,462], + [51013,5012], + [51015,1927], + [51017,136], + [51019,2180], + [51021,195], + [51023,926], + [51025,624], + [51027,900], + [51029,508], + [51031,1606], + [51033,1030], + [51035,1100], + [51036,257], + [51037,414], + [51041,9876], + [51043,362], + [51045,173], + [51047,1255], + [51049,300], + [51051,597], + [51053,997], + [51057,378], + [51059,27580], + [51061,1772], + [51063,454], + [51065,622], + [51067,1606], + [51069,2338], + [51071,574], + [51073,1006], + [51075,534], + [51077,677], + [51079,467], + [51081,337], + [51083,1450], + [51085,2802], + [51087,9709], + [51089,2131], + [51091,61], + [51093,1084], + [51095,1800], + [51097,222], + [51099,694], + [51101,491], + [51103,406], + [51105,817], + [51107,8368], + [51109,1024], + [51111,376], + [51113,322], + [51115,211], + [51117,1192], + [51119,283], + [51121,2807], + [51125,406], + [51127,544], + [51131,550], + [51133,421], + [51135,427], + [51137,953], + [51139,1103], + [51141,648], + [51143,2145], + [51145,690], + [51147,839], + [51149,1032], + [51153,12047], + [51155,1280], + [51157,201], + [51159,244], + [51161,2499], + [51163,605], + [51165,2062], + [51167,984], + [51169,698], + [51171,1176], + [51173,1216], + [51175,517], + [51177,3729], + [51179,3742], + [51181,265], + [51183,388], + [51185,1527], + [51187,1233], + [51191,1773], + [51193,625], + [51195,1562], + [51197,1092], + [51199,1712], + [51510,3794], + [51520,546], + [51530,225], + [51540,1096], + [51550,6882], + [51570,563], + [51580,215], + [51590,1941], + [51595,234], + [51600,546], + [51610,306], + [51620,343], + [51630,890], + [51640,260], + [51650,4941], + [51660,1626], + [51670,943], + [51678,192], + [51680,2537], + [51683,1199], + [51685,448], + [51690,641], + [51700,6136], + [51710,7857], + [51720,156], + [51730,1608], + [51735,315], + [51740,3706], + [51750,629], + [51760,7513], + [51770,3319], + [51775,760], + [51790,695], + [51800,2658], + [51810,12494], + [51820,608], + [51830,528], + [51840,835], + [53001,702], + [53003,649], + [53005,8055], + [53007,2938], + [53009,2626], + [53011,17650], + [53013,142], + [53015,4250], + [53017,1566], + [53019,335], + [53021,3626], + [53023,73], + [53025,3808], + [53027,3334], + [53029,2363], + [53031,1073], + [53033,57674], + [53035,8203], + [53037,1571], + [53039,917], + [53041,3306], + [53043,348], + [53045,2333], + [53047,1805], + [53049,900], + [53051,557], + [53053,32055], + [53055,465], + [53057,4878], + [53059,497], + [53061,22540], + [53063,18578], + [53065,1915], + [53067,9305], + [53069,155], + [53071,2018], + [53073,7593], + [53075,1335], + [53077,11895], + [54001,478], + [54003,2958], + [54005,827], + [54007,548], + [54009,800], + [54011,2443], + [54013,292], + [54015,418], + [54017,188], + [54019,1462], + [54021,183], + [54023,490], + [54025,1151], + [54027,671], + [54029,1088], + [54031,517], + [54033,1765], + [54035,827], + [54037,1312], + [54039,5279], + [54041,472], + [54043,725], + [54045,1215], + [54047,786], + [54049,1588], + [54051,1043], + [54053,991], + [54055,1770], + [54057,932], + [54059,947], + [54061,2260], + [54063,357], + [54065,461], + [54067,994], + [54069,1210], + [54071,195], + [54073,211], + [54075,308], + [54077,956], + [54079,1473], + [54081,2313], + [54083,860], + [54085,279], + [54087,555], + [54089,347], + [54091,438], + [54093,223], + [54095,317], + [54097,683], + [54099,1110], + [54101,362], + [54103,662], + [54105,235], + [54107,2383], + [54109,766], + [55001,949], + [55003,747], + [55005,1773], + [55007,853], + [55009,8550], + [55011,430], + [55013,636], + [55015,1430], + [55017,2223], + [55019,1209], + [55021,2041], + [55023,665], + [55025,14097], + [55027,3251], + [55029,1554], + [55031,1562], + [55033,1497], + [55035,3274], + [55037,182], + [55039,3509], + [55041,447], + [55043,1630], + [55045,1192], + [55047,810], + [55049,877], + [55051,292], + [55053,716], + [55055,2877], + [55057,1095], + [55059,6654], + [55061,698], + [55063,3537], + [55065,504], + [55067,892], + [55069,1265], + [55071,3148], + [55073,4836], + [55075,1699], + [55077,634], + [55078,249], + [55079,40217], + [55081,1567], + [55083,1578], + [55085,1594], + [55087,6129], + [55089,2489], + [55091,228], + [55093,1264], + [55095,1731], + [55097,2692], + [55099,472], + [55101,8301], + [55103,568], + [55105,6336], + [55107,575], + [55109,2571], + [55111,2213], + [55113,896], + [55115,1602], + [55117,3697], + [55119,706], + [55121,917], + [55123,903], + [55125,1031], + [55127,3887], + [55129,594], + [55131,4301], + [55133,12065], + [55135,2001], + [55137,1014], + [55139,5853], + [55141,2836], + [56001,776], + [56003,290], + [56005,1091], + [56007,362], + [56009,297], + [56011,164], + [56013,1198], + [56015,308], + [56017,121], + [56019,227], + [56021,2329], + [56023,468], + [56025,1955], + [56027,49], + [56029,808], + [56031,211], + [56033,869], + [56035,239], + [56037,1045], + [56039,789], + [56041,525], + [56043,216], + [56045,142] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2014.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2014.json new file mode 100644 index 0000000..683fa8a --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2014.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2014", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2014"], + [1001,1495], + [1003,5300], + [1005,932], + [1007,617], + [1009,1503], + [1011,418], + [1013,792], + [1015,3773], + [1017,1025], + [1019,661], + [1021,1196], + [1023,405], + [1025,993], + [1027,394], + [1029,386], + [1031,1343], + [1033,1993], + [1035,487], + [1037,394], + [1039,1236], + [1041,437], + [1043,2178], + [1045,1438], + [1047,1799], + [1049,1989], + [1051,2088], + [1053,1149], + [1055,3080], + [1057,498], + [1059,1060], + [1061,721], + [1063,372], + [1065,596], + [1067,508], + [1069,3062], + [1071,1702], + [1073,19626], + [1075,392], + [1077,3127], + [1079,1153], + [1081,3987], + [1083,2414], + [1085,496], + [1087,750], + [1089,10494], + [1091,608], + [1093,971], + [1095,2661], + [1097,14355], + [1099,842], + [1101,7204], + [1103,3696], + [1105,423], + [1107,636], + [1109,1101], + [1111,624], + [1113,1618], + [1115,2222], + [1117,4807], + [1119,456], + [1121,2748], + [1123,1383], + [1125,5733], + [1127,2037], + [1129,639], + [1131,485], + [1133,828], + [2013,101], + [2016,216], + [2020,8240], + [2050,1176], + [2060,40], + [2068,111], + [2070,213], + [2090,2704], + [2100,119], + [2105,173], + [2110,883], + [2122,2199], + [2130,559], + [2150,374], + [2158,"NA"], + [2164,105], + [2170,3622], + [2180,508], + [2185,260], + [2188,513], + [2195,150], + [2198,379], + [2220,239], + [2230,96], + [2240,387], + [2261,472], + [2275,89], + [2282,27], + [2290,491], + [4001,3306], + [4003,4264], + [4005,5094], + [4007,1770], + [4009,1067], + [4011,305], + [4012,600], + [4013,113229], + [4015,6796], + [4017,4590], + [4019,27787], + [4021,10693], + [4023,2609], + [4025,5958], + [4027,21264], + [5001,508], + [5003,784], + [5005,1067], + [5007,5305], + [5009,937], + [5011,347], + [5013,156], + [5015,648], + [5017,402], + [5019,663], + [5021,501], + [5023,805], + [5025,235], + [5027,681], + [5029,614], + [5031,2688], + [5033,1603], + [5035,1580], + [5037,514], + [5039,268], + [5041,448], + [5043,672], + [5045,3277], + [5047,412], + [5049,277], + [5051,2550], + [5053,448], + [5055,1240], + [5057,592], + [5059,807], + [5061,359], + [5063,1204], + [5065,370], + [5067,570], + [5069,2574], + [5071,673], + [5073,208], + [5075,512], + [5077,246], + [5079,298], + [5081,362], + [5083,542], + [5085,1670], + [5087,336], + [5089,410], + [5091,1125], + [5093,1755], + [5095,208], + [5097,267], + [5099,223], + [5101,196], + [5103,794], + [5105,326], + [5107,693], + [5109,309], + [5111,699], + [5113,529], + [5115,1851], + [5117,220], + [5119,10148], + [5121,517], + [5123,780], + [5125,2639], + [5127,228], + [5129,190], + [5131,3243], + [5133,405], + [5135,504], + [5137,358], + [5139,1224], + [5141,521], + [5143,4802], + [5145,2421], + [5147,240], + [5149,508], + [6001,47105], + [6003,42], + [6005,1194], + [6007,8775], + [6009,1624], + [6011,1932], + [6013,33370], + [6015,1002], + [6017,6146], + [6019,50865], + [6021,1368], + [6023,4159], + [6025,18847], + [6027,630], + [6029,40955], + [6031,6861], + [6033,2625], + [6035,987], + [6037,413019], + [6039,6940], + [6041,5936], + [6043,712], + [6045,2832], + [6047,14702], + [6049,346], + [6051,582], + [6053,19727], + [6055,4175], + [6057,3141], + [6059,86270], + [6061,11017], + [6063,936], + [6065,83069], + [6067,49703], + [6069,2728], + [6071,72636], + [6073,99228], + [6075,23160], + [6077,32950], + [6079,7838], + [6081,18034], + [6083,13341], + [6085,51124], + [6087,12484], + [6089,7217], + [6091,143], + [6093,2000], + [6095,15294], + [6097,14403], + [6099,26938], + [6101,5613], + [6103,2418], + [6105,489], + [6107,26085], + [6109,1871], + [6111,28652], + [6113,7711], + [6115,3133], + [8001,14023], + [8003,541], + [8005,16219], + [8007,343], + [8009,53], + [8011,87], + [8013,7200], + [8014,1444], + [8015,366], + [8017,28], + [8019,256], + [8021,280], + [8023,146], + [8025,77], + [8027,92], + [8029,957], + [8031,17673], + [8033,52], + [8035,6784], + [8037,1352], + [8039,552], + [8041,18384], + [8043,1192], + [8045,1640], + [8047,151], + [8049,359], + [8051,391], + [8053,16], + [8055,241], + [8057,30], + [8059,13990], + [8061,25], + [8063,131], + [8065,209], + [8067,1260], + [8069,7539], + [8071,484], + [8073,87], + [8075,417], + [8077,4562], + [8079,21], + [8081,421], + [8083,770], + [8085,1307], + [8087,680], + [8089,608], + [8091,123], + [8093,430], + [8095,74], + [8097,537], + [8099,268], + [8101,5281], + [8103,174], + [8105,443], + [8107,599], + [8109,262], + [8111,25], + [8113,234], + [8115,50], + [8117,676], + [8119,678], + [8121,84], + [8123,6479], + [8125,164], + [9001,29495], + [9003,32106], + [9005,6367], + [9007,5285], + [9009,33044], + [9011,9317], + [9013,4947], + [9015,4607], + [10001,4823], + [10003,15633], + [10005,5471], + [11001,29399], + [12001,6752], + [12003,717], + [12005,5550], + [12007,606], + [12009,17998], + [12011,58566], + [12013,343], + [12015,4594], + [12017,4123], + [12019,5623], + [12021,9551], + [12023,1883], + [12027,940], + [12029,411], + [12031,30927], + [12033,8937], + [12035,3173], + [12037,278], + [12039,1548], + [12041,441], + [12043,378], + [12045,372], + [12047,350], + [12049,793], + [12051,1794], + [12053,5241], + [12055,3022], + [12057,39501], + [12059,479], + [12061,4878], + [12063,1171], + [12065,363], + [12067,172], + [12069,8845], + [12071,18714], + [12073,8310], + [12075,1116], + [12077,183], + [12079,552], + [12081,9190], + [12083,9600], + [12085,4166], + [12086,88816], + [12087,1854], + [12089,2161], + [12091,4741], + [12093,1300], + [12095,39519], + [12097,10268], + [12099,40129], + [12101,14210], + [12103,27235], + [12105,20031], + [12107,2440], + [12109,5200], + [12111,10458], + [12113,3999], + [12115,10223], + [12117,13470], + [12119,2359], + [12121,1133], + [12123,643], + [12125,283], + [12127,16225], + [12129,741], + [12131,1448], + [12133,652], + [13001,762], + [13003,273], + [13005,336], + [13007,100], + [13009,1604], + [13011,538], + [13013,2200], + [13015,3330], + [13017,557], + [13019,615], + [13021,5512], + [13023,518], + [13025,634], + [13027,477], + [13029,1000], + [13031,2520], + [13033,916], + [13035,748], + [13037,148], + [13039,1443], + [13043,349], + [13045,4235], + [13047,1898], + [13049,353], + [13051,9587], + [13053,216], + [13055,797], + [13057,6441], + [13059,3884], + [13061,104], + [13063,11544], + [13065,236], + [13067,23205], + [13069,1428], + [13071,1617], + [13073,3841], + [13075,597], + [13077,4075], + [13079,418], + [13081,832], + [13083,496], + [13085,654], + [13087,923], + [13089,26583], + [13091,722], + [13093,443], + [13095,3551], + [13097,4985], + [13099,388], + [13101,104], + [13103,1626], + [13105,692], + [13107,893], + [13109,304], + [13111,744], + [13113,3260], + [13115,3406], + [13117,5245], + [13119,747], + [13121,35842], + [13123,865], + [13125,102], + [13127,2751], + [13129,1890], + [13131,763], + [13133,524], + [13135,26766], + [13137,1314], + [13139,5284], + [13141,293], + [13143,937], + [13145,935], + [13147,775], + [13149,392], + [13151,7478], + [13153,4466], + [13155,297], + [13157,1737], + [13159,421], + [13161,520], + [13163,745], + [13165,324], + [13167,337], + [13169,861], + [13171,740], + [13173,305], + [13175,1747], + [13177,878], + [13179,1949], + [13181,276], + [13183,494], + [13185,3655], + [13187,966], + [13189,874], + [13191,461], + [13193,555], + [13195,845], + [13197,265], + [13199,849], + [13201,169], + [13205,685], + [13207,849], + [13209,396], + [13211,547], + [13213,1478], + [13215,6776], + [13217,3912], + [13219,871], + [13221,439], + [13223,4580], + [13225,1084], + [13227,916], + [13229,601], + [13231,572], + [13233,1427], + [13235,316], + [13237,728], + [13239,74], + [13241,533], + [13243,262], + [13245,7322], + [13247,3287], + [13249,165], + [13251,534], + [13253,294], + [13255,2567], + [13257,855], + [13259,164], + [13261,1269], + [13263,219], + [13265,64], + [13267,659], + [13269,290], + [13271,510], + [13273,289], + [13275,1494], + [13277,1325], + [13279,1202], + [13281,379], + [13283,295], + [13285,2638], + [13287,258], + [13289,332], + [13291,624], + [13293,1001], + [13295,2111], + [13297,2656], + [13299,1162], + [13301,262], + [13303,609], + [13305,1031], + [13307,88], + [13309,229], + [13311,856], + [13313,3491], + [13315,259], + [13317,346], + [13319,321], + [13321,701], + [15001,4844], + [15003,18761], + [15005,"NA"], + [15007,1681], + [15009,3727], + [16001,8893], + [16003,168], + [16005,1906], + [16007,130], + [16009,322], + [16011,1004], + [16013,515], + [16015,192], + [16017,1312], + [16019,2092], + [16021,298], + [16023,70], + [16025,34], + [16027,5327], + [16029,164], + [16031,482], + [16033,21], + [16035,292], + [16037,148], + [16039,581], + [16041,218], + [16043,285], + [16045,447], + [16047,322], + [16049,490], + [16051,497], + [16053,448], + [16055,4105], + [16057,787], + [16059,264], + [16061,73], + [16063,150], + [16065,615], + [16067,479], + [16069,832], + [16071,82], + [16073,186], + [16075,624], + [16077,195], + [16079,521], + [16081,227], + [16083,1658], + [16085,346], + [16087,307], + [17001,1741], + [17003,273], + [17005,517], + [17007,2053], + [17009,114], + [17011,1277], + [17013,194], + [17015,502], + [17017,443], + [17019,6209], + [17021,1197], + [17023,568], + [17025,514], + [17027,1082], + [17029,1643], + [17031,198193], + [17033,631], + [17035,345], + [17037,3595], + [17039,525], + [17041,579], + [17043,29186], + [17045,655], + [17047,192], + [17049,997], + [17051,741], + [17053,391], + [17055,1538], + [17057,1351], + [17059,175], + [17061,418], + [17063,2231], + [17065,257], + [17067,575], + [17069,143], + [17071,237], + [17073,1681], + [17075,957], + [17077,1825], + [17079,297], + [17081,1317], + [17083,794], + [17085,711], + [17087,396], + [17089,18220], + [17091,4433], + [17093,4183], + [17095,1634], + [17097,23529], + [17099,4658], + [17101,493], + [17103,1135], + [17105,1117], + [17107,832], + [17109,976], + [17111,10879], + [17113,4971], + [17115,4338], + [17117,1727], + [17119,9308], + [17121,1374], + [17123,403], + [17125,570], + [17127,504], + [17129,380], + [17131,582], + [17133,960], + [17135,1061], + [17137,1025], + [17139,382], + [17141,1920], + [17143,7032], + [17145,751], + [17147,472], + [17149,445], + [17151,149], + [17153,223], + [17155,232], + [17157,937], + [17159,464], + [17161,5137], + [17163,9908], + [17165,882], + [17167,6154], + [17169,233], + [17171,176], + [17173,687], + [17175,211], + [17177,1634], + [17179,4562], + [17181,642], + [17183,3001], + [17185,332], + [17187,509], + [17189,428], + [17191,508], + [17193,414], + [17195,1979], + [17197,27068], + [17199,2237], + [17201,11765], + [17203,1090], + [18001,751], + [18003,10040], + [18005,1864], + [18007,242], + [18009,389], + [18011,1411], + [18013,439], + [18015,516], + [18017,1020], + [18019,3106], + [18021,839], + [18023,851], + [18025,374], + [18027,677], + [18029,1648], + [18031,696], + [18033,1106], + [18035,3749], + [18037,895], + [18039,5182], + [18041,708], + [18043,1979], + [18045,571], + [18047,709], + [18049,613], + [18051,826], + [18053,2236], + [18055,1099], + [18057,6541], + [18059,1892], + [18061,1063], + [18063,3705], + [18065,1460], + [18067,2312], + [18069,1074], + [18071,1063], + [18073,1075], + [18075,585], + [18077,912], + [18079,874], + [18081,3752], + [18083,982], + [18085,1968], + [18087,812], + [18089,18182], + [18091,3728], + [18093,1644], + [18095,4124], + [18097,30490], + [18099,1297], + [18101,264], + [18103,1034], + [18105,3855], + [18107,1009], + [18109,2030], + [18111,484], + [18113,1200], + [18115,222], + [18117,659], + [18119,767], + [18121,484], + [18123,536], + [18125,321], + [18127,5202], + [18129,628], + [18131,334], + [18133,1078], + [18135,808], + [18137,898], + [18139,479], + [18141,8415], + [18143,692], + [18145,1274], + [18147,551], + [18149,740], + [18151,956], + [18153,618], + [18155,283], + [18157,4585], + [18159,423], + [18161,199], + [18163,4960], + [18165,620], + [18167,3757], + [18169,860], + [18171,249], + [18173,1529], + [18175,885], + [18177,2014], + [18179,659], + [18181,682], + [18183,868], + [19001,167], + [19003,74], + [19005,435], + [19007,352], + [19009,140], + [19011,640], + [19013,3543], + [19015,517], + [19017,521], + [19019,534], + [19021,455], + [19023,354], + [19025,214], + [19027,355], + [19029,320], + [19031,422], + [19033,1080], + [19035,338], + [19037,307], + [19039,209], + [19041,374], + [19043,509], + [19045,1302], + [19047,356], + [19049,1405], + [19051,211], + [19053,168], + [19055,398], + [19057,1045], + [19059,455], + [19061,2297], + [19063,227], + [19065,541], + [19067,380], + [19069,237], + [19071,161], + [19073,213], + [19075,280], + [19077,246], + [19079,322], + [19081,208], + [19083,377], + [19085,302], + [19087,419], + [19089,215], + [19091,200], + [19093,139], + [19095,427], + [19097,558], + [19099,855], + [19101,396], + [19103,2591], + [19105,532], + [19107,244], + [19109,278], + [19111,1045], + [19113,5314], + [19115,267], + [19117,168], + [19119,179], + [19121,373], + [19123,521], + [19125,665], + [19127,1070], + [19129,324], + [19131,195], + [19133,237], + [19135,205], + [19137,213], + [19139,1004], + [19141,269], + [19143,115], + [19145,293], + [19147,175], + [19149,503], + [19151,151], + [19153,10819], + [19155,2112], + [19157,443], + [19159,98], + [19161,218], + [19163,4614], + [19165,221], + [19167,592], + [19169,1636], + [19171,488], + [19173,119], + [19175,321], + [19177,177], + [19179,996], + [19181,1061], + [19183,444], + [19185,145], + [19187,960], + [19189,220], + [19191,513], + [19193,2455], + [19195,191], + [19197,284], + [20001,346], + [20003,216], + [20005,496], + [20007,83], + [20009,549], + [20011,373], + [20013,221], + [20015,1557], + [20017,50], + [20019,86], + [20021,521], + [20023,41], + [20025,30], + [20027,184], + [20029,185], + [20031,279], + [20033,30], + [20035,800], + [20037,1024], + [20039,47], + [20041,492], + [20043,193], + [20045,2639], + [20047,53], + [20049,67], + [20051,493], + [20053,102], + [20055,693], + [20057,691], + [20059,718], + [20061,901], + [20063,39], + [20065,43], + [20067,134], + [20069,94], + [20071,19], + [20073,150], + [20075,39], + [20077,110], + [20079,728], + [20081,61], + [20083,35], + [20085,305], + [20087,493], + [20089,54], + [20091,12117], + [20093,65], + [20095,144], + [20097,44], + [20099,628], + [20101,28], + [20103,1745], + [20105,73], + [20107,322], + [20109,39], + [20111,845], + [20113,546], + [20115,250], + [20117,190], + [20119,63], + [20121,795], + [20123,125], + [20125,997], + [20127,137], + [20129,59], + [20131,167], + [20133,482], + [20135,44], + [20137,72], + [20139,443], + [20141,77], + [20143,133], + [20145,128], + [20147,102], + [20149,469], + [20151,178], + [20153,37], + [20155,1373], + [20157,78], + [20159,192], + [20161,1351], + [20163,103], + [20165,64], + [20167,135], + [20169,1293], + [20171,78], + [20173,13265], + [20175,390], + [20177,4384], + [20179,38], + [20181,99], + [20183,66], + [20185,81], + [20187,34], + [20189,101], + [20191,528], + [20193,127], + [20195,46], + [20197,155], + [20199,23], + [20201,100], + [20203,35], + [20205,288], + [20207,86], + [20209,5176], + [21001,624], + [21003,511], + [21005,594], + [21007,294], + [21009,1174], + [21011,419], + [21013,938], + [21015,3371], + [21017,542], + [21019,1437], + [21021,851], + [21023,300], + [21025,477], + [21027,582], + [21029,2271], + [21031,388], + [21033,355], + [21035,1077], + [21037,2476], + [21039,143], + [21041,346], + [21043,1124], + [21045,450], + [21047,1931], + [21049,1037], + [21051,621], + [21053,361], + [21055,239], + [21057,224], + [21059,2600], + [21061,399], + [21063,244], + [21065,406], + [21067,7983], + [21069,492], + [21071,1272], + [21073,1289], + [21075,185], + [21077,270], + [21079,495], + [21081,733], + [21083,1184], + [21085,911], + [21087,332], + [21089,1218], + [21091,240], + [21093,2892], + [21095,1171], + [21097,504], + [21099,494], + [21101,1314], + [21103,439], + [21105,132], + [21107,1314], + [21109,525], + [21111,22720], + [21113,1305], + [21115,741], + [21117,4607], + [21119,571], + [21121,1005], + [21123,380], + [21125,1838], + [21127,505], + [21129,224], + [21131,408], + [21133,894], + [21135,498], + [21137,823], + [21139,309], + [21141,673], + [21143,208], + [21145,2064], + [21147,532], + [21149,275], + [21151,2451], + [21153,520], + [21155,586], + [21157,1007], + [21159,313], + [21161,612], + [21163,855], + [21165,231], + [21167,611], + [21169,251], + [21171,254], + [21173,877], + [21175,451], + [21177,944], + [21179,1300], + [21181,267], + [21183,731], + [21185,1433], + [21187,277], + [21189,123], + [21191,450], + [21193,983], + [21195,2310], + [21197,421], + [21199,1929], + [21201,63], + [21203,520], + [21205,735], + [21207,674], + [21209,1291], + [21211,1112], + [21213,500], + [21215,483], + [21217,870], + [21219,296], + [21221,404], + [21223,282], + [21225,433], + [21227,3298], + [21229,332], + [21231,702], + [21233,342], + [21235,1169], + [21237,232], + [21239,635], + [22001,1539], + [22003,642], + [22005,3190], + [22007,777], + [22009,1169], + [22011,1008], + [22013,471], + [22015,3346], + [22017,8290], + [22019,5604], + [22021,316], + [22023,171], + [22025,311], + [22027,474], + [22029,670], + [22031,906], + [22033,13388], + [22035,326], + [22037,530], + [22039,889], + [22041,719], + [22043,601], + [22045,2064], + [22047,1128], + [22049,426], + [22051,13116], + [22053,800], + [22055,6042], + [22057,2334], + [22059,347], + [22061,1566], + [22063,3672], + [22065,435], + [22067,1259], + [22069,1320], + [22071,12458], + [22073,5042], + [22075,585], + [22077,714], + [22079,3888], + [22081,289], + [22083,762], + [22085,605], + [22087,1337], + [22089,1555], + [22091,456], + [22093,844], + [22095,1634], + [22097,2621], + [22099,1423], + [22101,1596], + [22103,6525], + [22105,4110], + [22107,168], + [22109,2660], + [22111,706], + [22113,1486], + [22115,1493], + [22117,1337], + [22119,1372], + [22121,751], + [22123,555], + [22125,306], + [22127,410], + [23001,3038], + [23003,2506], + [23005,7032], + [23007,974], + [23009,2029], + [23011,3405], + [23013,1063], + [23015,1017], + [23017,1917], + [23019,4817], + [23021,560], + [23023,864], + [23025,1907], + [23027,1260], + [23029,1173], + [23031,5675], + [24001,2531], + [24003,15069], + [24005,26909], + [24009,2516], + [24011,1090], + [24013,4452], + [24015,3457], + [24017,4606], + [24019,1325], + [24021,6478], + [24023,1110], + [24025,7689], + [24027,7503], + [24029,666], + [24031,23942], + [24033,29522], + [24035,1344], + [24037,2906], + [24039,877], + [24041,1046], + [24043,4937], + [24045,3892], + [24047,2964], + [24510,25160], + [25001,7996], + [25003,4300], + [25005,21180], + [25007,748], + [25009,24182], + [25011,2093], + [25013,16857], + [25015,4579], + [25017,39849], + [25019,430], + [25021,18317], + [25023,16023], + [25025,21889], + [25027,25986], + [26001,406], + [26003,345], + [26005,3236], + [26007,1082], + [26009,955], + [26011,706], + [26013,389], + [26015,1619], + [26017,3823], + [26019,754], + [26021,4968], + [26023,1281], + [26025,4057], + [26027,1603], + [26029,1064], + [26031,1140], + [26033,1601], + [26035,1171], + [26037,1997], + [26039,506], + [26041,1473], + [26043,875], + [26045,3189], + [26047,1708], + [26049,14477], + [26051,930], + [26053,594], + [26055,2887], + [26057,1301], + [26059,1433], + [26061,1297], + [26063,1135], + [26065,9001], + [26067,1810], + [26069,1000], + [26071,452], + [26073,2100], + [26075,4854], + [26077,7181], + [26079,726], + [26081,16611], + [26083,109], + [26085,404], + [26087,3826], + [26089,700], + [26091,3074], + [26093,6069], + [26095,211], + [26097,590], + [26099,33313], + [26101,879], + [26103,2365], + [26105,1103], + [26107,1519], + [26109,806], + [26111,2531], + [26113,547], + [26115,4635], + [26117,2090], + [26119,408], + [26121,5923], + [26123,1630], + [26125,40988], + [26127,1286], + [26129,841], + [26131,271], + [26133,870], + [26135,351], + [26137,908], + [26139,7140], + [26141,695], + [26143,910], + [26145,6653], + [26147,7080], + [26149,1676], + [26151,1669], + [26153,387], + [26155,2501], + [26157,2152], + [26159,2842], + [26161,9102], + [26163,74195], + [26165,1254], + [27001,451], + [27003,7836], + [27005,856], + [27007,1241], + [27009,1097], + [27011,115], + [27013,1325], + [27015,648], + [27017,922], + [27019,1967], + [27021,998], + [27023,313], + [27025,1347], + [27027,1200], + [27029,475], + [27031,172], + [27033,292], + [27035,1846], + [27037,8742], + [27039,469], + [27041,741], + [27043,385], + [27045,485], + [27047,704], + [27049,1053], + [27051,164], + [27053,25431], + [27055,459], + [27057,601], + [27059,1023], + [27061,1451], + [27063,263], + [27065,658], + [27067,1005], + [27069,117], + [27071,544], + [27073,174], + [27075,260], + [27077,114], + [27079,835], + [27081,142], + [27083,552], + [27085,915], + [27087,133], + [27089,378], + [27091,481], + [27093,591], + [27095,850], + [27097,1087], + [27099,775], + [27101,237], + [27103,604], + [27105,384], + [27107,166], + [27109,2866], + [27111,1403], + [27113,456], + [27115,896], + [27117,181], + [27119,788], + [27121,227], + [27123,11178], + [27125,131], + [27127,353], + [27129,450], + [27131,1445], + [27133,144], + [27135,324], + [27137,5205], + [27139,2817], + [27141,2234], + [27143,382], + [27145,3582], + [27147,805], + [27149,181], + [27151,236], + [27153,597], + [27155,79], + [27157,473], + [27159,382], + [27161,466], + [27163,4953], + [27165,303], + [27167,122], + [27169,1095], + [27171,3003], + [27173,228], + [28001,967], + [28003,1006], + [28005,356], + [28007,614], + [28009,278], + [28011,1271], + [28013,465], + [28015,323], + [28017,699], + [28019,291], + [28021,454], + [28023,564], + [28025,1058], + [28027,1124], + [28029,991], + [28031,518], + [28033,4345], + [28035,2395], + [28037,243], + [28039,735], + [28041,390], + [28043,669], + [28045,1335], + [28047,5698], + [28049,7845], + [28051,920], + [28053,406], + [28055,74], + [28057,708], + [28059,4717], + [28061,547], + [28063,387], + [28065,421], + [28067,1647], + [28069,478], + [28071,1489], + [28073,1421], + [28075,2448], + [28077,375], + [28079,556], + [28081,2791], + [28083,1331], + [28085,907], + [28087,2202], + [28089,2615], + [28091,812], + [28093,1246], + [28095,1556], + [28097,387], + [28099,730], + [28101,585], + [28103,501], + [28105,1585], + [28107,1414], + [28109,1495], + [28111,385], + [28113,1202], + [28115,916], + [28117,812], + [28119,359], + [28121,3292], + [28123,696], + [28125,195], + [28127,687], + [28129,389], + [28131,540], + [28133,1081], + [28135,541], + [28137,998], + [28139,724], + [28141,585], + [28143,560], + [28145,789], + [28147,487], + [28149,1599], + [28151,2299], + [28153,685], + [28155,340], + [28157,324], + [28159,713], + [28161,453], + [28163,922], + [29001,684], + [29003,508], + [29005,155], + [29007,628], + [29009,909], + [29011,345], + [29013,573], + [29015,558], + [29017,382], + [29019,4071], + [29021,2636], + [29023,1345], + [29025,238], + [29027,1226], + [29029,1531], + [29031,2221], + [29033,338], + [29035,229], + [29037,3022], + [29039,373], + [29041,223], + [29043,2077], + [29045,238], + [29047,7020], + [29049,628], + [29051,1991], + [29053,457], + [29055,871], + [29057,211], + [29059,529], + [29061,235], + [29063,269], + [29065,424], + [29067,384], + [29069,1191], + [29071,3365], + [29073,403], + [29075,205], + [29077,7162], + [29079,259], + [29081,261], + [29083,657], + [29085,309], + [29087,132], + [29089,269], + [29091,1162], + [29093,388], + [29095,25406], + [29097,3055], + [29099,7240], + [29101,1469], + [29103,91], + [29105,1287], + [29107,1010], + [29109,1029], + [29111,269], + [29113,1730], + [29115,426], + [29117,367], + [29119,596], + [29121,458], + [29123,382], + [29125,247], + [29127,809], + [29129,95], + [29131,898], + [29133,456], + [29135,442], + [29137,268], + [29139,337], + [29141,690], + [29143,628], + [29145,1535], + [29147,758], + [29149,311], + [29151,337], + [29153,329], + [29155,661], + [29157,559], + [29159,1267], + [29161,1257], + [29163,463], + [29165,2760], + [29167,896], + [29169,1104], + [29171,126], + [29173,298], + [29175,745], + [29177,758], + [29179,224], + [29181,457], + [29183,10228], + [29185,306], + [29186,601], + [29187,2008], + [29189,30795], + [29195,631], + [29197,140], + [29199,115], + [29201,1307], + [29203,321], + [29205,184], + [29207,1027], + [29209,1287], + [29211,180], + [29213,2516], + [29215,745], + [29217,554], + [29219,1053], + [29221,895], + [29223,420], + [29225,985], + [29227,52], + [29229,557], + [29510,12128], + [30001,179], + [30003,559], + [30005,141], + [30007,134], + [30009,210], + [30011,22], + [30013,1645], + [30015,84], + [30017,212], + [30019,29], + [30021,128], + [30023,228], + [30025,40], + [30027,246], + [30029,2822], + [30031,1981], + [30033,20], + [30035,628], + [30037,18], + [30039,104], + [30041,452], + [30043,259], + [30045,41], + [30047,692], + [30049,1307], + [30051,30], + [30053,886], + [30055,25], + [30057,195], + [30059,39], + [30061,159], + [30063,2658], + [30065,96], + [30067,451], + [30069,12], + [30071,106], + [30073,139], + [30075,33], + [30077,147], + [30079,22], + [30081,1134], + [30083,175], + [30085,249], + [30087,236], + [30089,431], + [30091,56], + [30093,838], + [30095,187], + [30097,63], + [30099,108], + [30101,71], + [30103,14], + [30105,132], + [30107,39], + [30109,16], + [30111,2949], + [31001,564], + [31003,97], + [31005,12], + [31007,16], + [31009,12], + [31011,79], + [31013,180], + [31015,36], + [31017,49], + [31019,758], + [31021,140], + [31023,143], + [31025,493], + [31027,108], + [31029,48], + [31031,84], + [31033,125], + [31035,113], + [31037,167], + [31039,130], + [31041,149], + [31043,412], + [31045,155], + [31047,462], + [31049,30], + [31051,93], + [31053,699], + [31055,10372], + [31057,29], + [31059,78], + [31061,50], + [31063,43], + [31065,78], + [31067,458], + [31069,34], + [31071,31], + [31073,34], + [31075,10], + [31077,41], + [31079,1263], + [31081,143], + [31083,47], + [31085,18], + [31087,46], + [31089,157], + [31091,18], + [31093,125], + [31095,131], + [31097,83], + [31099,95], + [31101,134], + [31103,17], + [31105,56], + [31107,147], + [31109,5004], + [31111,608], + [31113,15], + [31115,14], + [31117,10], + [31119,574], + [31121,156], + [31123,81], + [31125,56], + [31127,143], + [31129,68], + [31131,305], + [31133,46], + [31135,39], + [31137,131], + [31139,122], + [31141,516], + [31143,95], + [31145,161], + [31147,156], + [31149,23], + [31151,249], + [31153,2780], + [31155,383], + [31157,679], + [31159,271], + [31161,73], + [31163,57], + [31165,20], + [31167,100], + [31169,77], + [31171,15], + [31173,184], + [31175,64], + [31177,356], + [31179,156], + [31181,58], + [31183,16], + [31185,235], + [32001,826], + [32003,81473], + [32005,1786], + [32007,1572], + [32009,24], + [32011,61], + [32013,558], + [32015,223], + [32017,145], + [32019,2334], + [32021,186], + [32023,1572], + [32027,187], + [32029,169], + [32031,16890], + [32033,295], + [32510,2165], + [33001,1316], + [33003,1015], + [33005,1693], + [33007,860], + [33009,1668], + [33011,10258], + [33013,3089], + [33015,8136], + [33017,2817], + [33019,835], + [34001,14020], + [34003,26199], + [34005,14812], + [34007,19553], + [34009,5987], + [34011,6754], + [34013,30208], + [34015,10919], + [34017,22929], + [34019,3213], + [34021,11512], + [34023,26624], + [34025,19922], + [34027,13198], + [34029,19688], + [34031,20537], + [34033,2665], + [34035,9087], + [34037,4993], + [34039,19467], + [34041,3626], + [35001,19901], + [35003,99], + [35005,1659], + [35006,777], + [35007,387], + [35009,1100], + [35011,40], + [35013,6856], + [35015,1288], + [35017,827], + [35019,124], + [35021,16], + [35023,153], + [35025,1350], + [35027,530], + [35028,349], + [35029,2058], + [35031,2427], + [35033,250], + [35035,1550], + [35037,217], + [35039,1449], + [35041,451], + [35043,4382], + [35045,3533], + [35047,896], + [35049,3956], + [35051,363], + [35053,477], + [35055,1490], + [35057,546], + [35059,87], + [35061,2327], + [36001,7717], + [36003,1456], + [36005,59636], + [36007,5864], + [36009,2574], + [36011,2261], + [36013,3949], + [36015,2397], + [36017,1446], + [36019,2387], + [36021,1482], + [36023,1545], + [36025,1320], + [36027,7592], + [36029,27450], + [36031,1212], + [36033,1493], + [36035,1803], + [36037,1668], + [36039,1404], + [36041,181], + [36043,1964], + [36045,3560], + [36047,93356], + [36049,935], + [36051,1799], + [36053,2152], + [36055,21210], + [36057,1670], + [36059,32882], + [36061,55901], + [36063,7157], + [36065,6323], + [36067,12543], + [36069,2873], + [36071,9667], + [36073,1387], + [36075,4465], + [36077,1718], + [36079,2476], + [36081,73793], + [36083,4376], + [36085,16500], + [36087,7739], + [36089,3659], + [36091,5414], + [36093,4096], + [36095,991], + [36097,606], + [36099,876], + [36101,3048], + [36103,41391], + [36105,2194], + [36107,1456], + [36109,2411], + [36111,5036], + [36113,2135], + [36115,1745], + [36117,2753], + [36119,24276], + [36121,1201], + [36123,664], + [37001,4366], + [37003,983], + [37005,301], + [37007,775], + [37009,852], + [37011,501], + [37013,1478], + [37015,674], + [37017,1343], + [37019,3773], + [37021,5999], + [37023,2454], + [37025,5498], + [37027,2581], + [37029,278], + [37031,1936], + [37033,697], + [37035,4750], + [37037,1578], + [37039,789], + [37041,449], + [37043,272], + [37045,3359], + [37047,1964], + [37049,2845], + [37051,10301], + [37053,804], + [37055,1697], + [37057,4953], + [37059,1155], + [37061,1700], + [37063,7845], + [37065,2399], + [37067,10653], + [37069,1846], + [37071,6871], + [37073,309], + [37075,443], + [37077,1528], + [37079,588], + [37081,16614], + [37083,2061], + [37085,3649], + [37087,1589], + [37089,2497], + [37091,696], + [37093,1622], + [37095,203], + [37097,5042], + [37099,1229], + [37101,4888], + [37103,298], + [37105,2047], + [37107,1996], + [37109,2444], + [37111,1341], + [37113,995], + [37115,587], + [37117,773], + [37119,32859], + [37121,506], + [37123,733], + [37125,2339], + [37127,3531], + [37129,6575], + [37131,640], + [37133,3902], + [37135,3380], + [37137,352], + [37139,1395], + [37141,1797], + [37143,398], + [37145,1394], + [37147,5644], + [37149,451], + [37151,4368], + [37153,1518], + [37155,4842], + [37157,3081], + [37159,4412], + [37161,2181], + [37163,1920], + [37165,1435], + [37167,1727], + [37169,1323], + [37171,2037], + [37173,586], + [37175,781], + [37177,155], + [37179,5716], + [37181,1688], + [37183,25772], + [37185,643], + [37187,486], + [37189,1403], + [37191,3453], + [37193,1955], + [37195,3577], + [37197,995], + [37199,507], + [38001,30], + [38003,173], + [38005,163], + [38007,14], + [38009,111], + [38011,34], + [38013,33], + [38015,1158], + [38017,2244], + [38019,59], + [38021,52], + [38023,28], + [38025,54], + [38027,72], + [38029,87], + [38031,50], + [38033,20], + [38035,1024], + [38037,36], + [38039,28], + [38041,32], + [38043,50], + [38045,54], + [38047,27], + [38049,137], + [38051,37], + [38053,138], + [38055,194], + [38057,163], + [38059,521], + [38061,115], + [38063,58], + [38065,56], + [38067,201], + [38069,76], + [38071,201], + [38073,77], + [38075,37], + [38077,258], + [38079,545], + [38081,48], + [38083,36], + [38085,61], + [38087,11], + [38089,344], + [38091,23], + [38093,287], + [38095,43], + [38097,116], + [38099,257], + [38101,906], + [38103,96], + [38105,380], + [39001,967], + [39003,2803], + [39005,1524], + [39007,3223], + [39009,1895], + [39011,1046], + [39013,2140], + [39015,1470], + [39017,10357], + [39019,834], + [39021,1010], + [39023,3764], + [39025,5626], + [39027,1305], + [39029,3241], + [39031,1191], + [39033,1316], + [39035,38427], + [39037,1395], + [39039,1042], + [39041,4130], + [39043,2404], + [39045,3878], + [39047,848], + [39049,31526], + [39051,1321], + [39053,957], + [39055,2462], + [39057,4182], + [39059,1286], + [39061,21980], + [39063,1802], + [39065,864], + [39067,445], + [39069,889], + [39071,1345], + [39073,852], + [39075,801], + [39077,2232], + [39079,1166], + [39081,2426], + [39083,1650], + [39085,6871], + [39087,1726], + [39089,4554], + [39091,1161], + [39093,9661], + [39095,13415], + [39097,971], + [39099,7255], + [39101,1674], + [39103,4782], + [39105,829], + [39107,864], + [39109,2812], + [39111,648], + [39113,15312], + [39115,521], + [39117,1002], + [39119,2803], + [39121,387], + [39123,1645], + [39125,496], + [39127,1167], + [39129,1460], + [39131,954], + [39133,5095], + [39135,1207], + [39137,848], + [39139,3565], + [39141,2157], + [39143,1795], + [39145,2619], + [39147,1561], + [39149,1208], + [39151,10936], + [39153,16082], + [39155,6724], + [39157,2513], + [39159,1196], + [39161,704], + [39163,442], + [39165,5524], + [39167,1807], + [39169,2767], + [39171,1025], + [39173,3607], + [39175,544], + [40001,647], + [40003,76], + [40005,295], + [40007,86], + [40009,359], + [40011,155], + [40013,863], + [40015,603], + [40017,2336], + [40019,976], + [40021,1116], + [40023,481], + [40025,36], + [40027,4983], + [40029,155], + [40031,2298], + [40033,131], + [40035,334], + [40037,1540], + [40039,493], + [40041,993], + [40043,75], + [40045,70], + [40047,1055], + [40049,513], + [40051,1016], + [40053,74], + [40055,94], + [40057,51], + [40059,54], + [40061,323], + [40063,394], + [40065,458], + [40067,119], + [40069,254], + [40071,1098], + [40073,245], + [40075,164], + [40077,293], + [40079,1328], + [40081,700], + [40083,840], + [40085,195], + [40087,667], + [40089,1142], + [40091,647], + [40093,112], + [40095,333], + [40097,914], + [40099,274], + [40101,1675], + [40103,203], + [40105,290], + [40107,268], + [40109,15447], + [40111,1084], + [40113,1074], + [40115,932], + [40117,386], + [40119,1435], + [40121,1052], + [40123,767], + [40125,1517], + [40127,350], + [40129,50], + [40131,1834], + [40133,654], + [40135,1140], + [40137,904], + [40139,344], + [40141,153], + [40143,13360], + [40145,1509], + [40147,1037], + [40149,191], + [40151,143], + [40153,333], + [41001,559], + [41003,2242], + [41005,12338], + [41007,1188], + [41009,1882], + [41011,2334], + [41013,883], + [41015,872], + [41017,6258], + [41019,4029], + [41021,66], + [41023,329], + [41025,314], + [41027,747], + [41029,8111], + [41031,834], + [41033,3069], + [41035,2667], + [41037,334], + [41039,11675], + [41041,1606], + [41043,4384], + [41045,953], + [41047,10975], + [41049,377], + [41051,24740], + [41053,2421], + [41055,66], + [41057,772], + [41059,2731], + [41061,839], + [41063,319], + [41065,890], + [41067,16397], + [41069,45], + [41071,3222], + [42001,2531], + [42003,34661], + [42005,2138], + [42007,5570], + [42009,1604], + [42011,11589], + [42013,3496], + [42015,1719], + [42017,17588], + [42019,4929], + [42021,4400], + [42023,162], + [42025,2242], + [42027,3337], + [42029,11390], + [42031,1156], + [42033,2648], + [42035,1383], + [42037,2128], + [42039,2392], + [42041,5658], + [42043,7444], + [42045,16031], + [42047,840], + [42049,8334], + [42051,4604], + [42053,155], + [42055,4163], + [42057,517], + [42059,1031], + [42061,1569], + [42063,2623], + [42065,1336], + [42067,671], + [42069,7026], + [42071,12576], + [42073,2649], + [42075,3476], + [42077,11109], + [42079,11657], + [42081,3782], + [42083,1237], + [42085,3112], + [42087,1352], + [42089,6025], + [42091,20331], + [42093,431], + [42095,9240], + [42097,2953], + [42099,1240], + [42101,56053], + [42103,1905], + [42105,559], + [42107,4889], + [42109,1025], + [42111,2554], + [42113,187], + [42115,1272], + [42117,1418], + [42119,953], + [42121,1460], + [42123,1064], + [42125,6112], + [42127,1432], + [42129,10530], + [42131,951], + [42133,12438], + [44001,1758], + [44003,6558], + [44005,3034], + [44007,26439], + [44009,5000], + [45001,816], + [45003,4743], + [45005,349], + [45007,5169], + [45009,643], + [45011,837], + [45013,3942], + [45015,5456], + [45017,552], + [45019,9920], + [45021,1963], + [45023,1299], + [45025,1454], + [45027,1087], + [45029,1271], + [45031,2374], + [45033,1213], + [45035,4099], + [45037,709], + [45039,870], + [45041,4675], + [45043,2125], + [45045,12560], + [45047,2184], + [45049,642], + [45051,9913], + [45053,651], + [45055,1833], + [45057,2546], + [45059,2117], + [45061,585], + [45063,7164], + [45065,274], + [45067,1356], + [45069,1057], + [45071,1062], + [45073,2158], + [45075,4292], + [45077,3463], + [45079,11589], + [45081,493], + [45083,8692], + [45085,3245], + [45087,990], + [45089,1263], + [45091,7717], + [46003,42], + [46005,293], + [46007,62], + [46009,84], + [46011,573], + [46013,613], + [46015,84], + [46017,57], + [46019,172], + [46021,28], + [46023,153], + [46025,78], + [46027,245], + [46029,509], + [46031,87], + [46033,180], + [46035,319], + [46037,153], + [46039,126], + [46041,344], + [46043,50], + [46045,57], + [46047,141], + [46049,36], + [46051,168], + [46053,71], + [46055,29], + [46057,108], + [46059,47], + [46061,63], + [46063,18], + [46065,259], + [46067,106], + [46069,20], + [46071,72], + [46073,30], + [46075,22], + [46077,86], + [46079,229], + [46081,441], + [46083,717], + [46085,77], + [46087,85], + [46089,44], + [46091,104], + [46093,446], + [46095,50], + [46097,40], + [46099,3148], + [46101,163], + [46102,"NA"], + [46103,1845], + [46105,52], + [46107,40], + [46109,234], + [46111,31], + [46115,119], + [46117,48], + [46119,25], + [46121,270], + [46123,100], + [46125,136], + [46127,297], + [46129,127], + [46135,343], + [46137,59], + [47001,2240], + [47003,1451], + [47005,586], + [47007,383], + [47009,3507], + [47011,2967], + [47013,1369], + [47015,366], + [47017,1250], + [47019,1829], + [47021,1083], + [47023,550], + [47025,1090], + [47027,271], + [47029,1306], + [47031,1551], + [47033,525], + [47035,1825], + [47037,17799], + [47039,454], + [47041,606], + [47043,1469], + [47045,1358], + [47047,1278], + [47049,594], + [47051,1198], + [47053,1883], + [47055,864], + [47057,750], + [47059,2422], + [47061,474], + [47063,1933], + [47065,10148], + [47067,202], + [47069,885], + [47071,934], + [47073,1742], + [47075,758], + [47077,1048], + [47079,1116], + [47081,676], + [47083,324], + [47085,652], + [47087,390], + [47089,1697], + [47091,487], + [47093,12225], + [47095,193], + [47097,958], + [47099,1426], + [47101,433], + [47103,816], + [47105,1446], + [47107,1676], + [47109,944], + [47111,647], + [47113,3134], + [47115,913], + [47117,900], + [47119,2429], + [47121,420], + [47123,1439], + [47125,5107], + [47127,166], + [47129,682], + [47131,1219], + [47133,716], + [47135,245], + [47137,201], + [47139,580], + [47141,2191], + [47143,1111], + [47145,1722], + [47147,1892], + [47149,7807], + [47151,957], + [47153,424], + [47155,3468], + [47157,32558], + [47159,530], + [47161,480], + [47163,4616], + [47165,4526], + [47167,2252], + [47169,257], + [47171,647], + [47173,567], + [47175,201], + [47177,1173], + [47179,3617], + [47181,559], + [47183,1351], + [47185,842], + [47187,4675], + [47189,3283], + [48001,1015], + [48003,285], + [48005,1975], + [48007,564], + [48009,191], + [48011,32], + [48013,1007], + [48015,674], + [48017,149], + [48019,435], + [48021,1784], + [48023,70], + [48025,623], + [48027,7852], + [48029,40495], + [48031,207], + [48033,13], + [48035,420], + [48037,2492], + [48039,8462], + [48041,4155], + [48043,188], + [48045,27], + [48047,209], + [48049,820], + [48051,361], + [48053,925], + [48055,896], + [48057,528], + [48059,259], + [48061,13848], + [48063,318], + [48065,105], + [48067,937], + [48069,151], + [48071,1027], + [48073,1228], + [48075,104], + [48077,229], + [48079,71], + [48081,62], + [48083,190], + [48085,21552], + [48087,51], + [48089,456], + [48091,2712], + [48093,267], + [48095,42], + [48097,791], + [48099,1472], + [48101,37], + [48103,80], + [48105,73], + [48107,126], + [48109,42], + [48111,114], + [48113,67739], + [48115,238], + [48117,329], + [48119,160], + [48121,18363], + [48123,383], + [48125,47], + [48127,289], + [48129,78], + [48131,308], + [48133,403], + [48135,2835], + [48137,37], + [48139,3888], + [48141,22065], + [48143,853], + [48145,359], + [48147,812], + [48149,448], + [48151,84], + [48153,211], + [48155,25], + [48157,15662], + [48159,240], + [48161,441], + [48163,369], + [48165,305], + [48167,8836], + [48169,82], + [48171,441], + [48173,22], + [48175,146], + [48177,383], + [48179,393], + [48181,2924], + [48183,2964], + [48185,563], + [48187,3094], + [48189,1269], + [48191,79], + [48193,164], + [48195,82], + [48197,81], + [48199,1588], + [48201,110991], + [48203,1769], + [48205,73], + [48207,106], + [48209,4013], + [48211,61], + [48213,1937], + [48215,29070], + [48217,837], + [48219,466], + [48221,1193], + [48223,819], + [48225,486], + [48227,595], + [48229,79], + [48231,2279], + [48233,459], + [48235,31], + [48237,161], + [48239,299], + [48241,1176], + [48243,41], + [48245,9117], + [48247,133], + [48249,1049], + [48251,3745], + [48253,319], + [48255,229], + [48257,2757], + [48259,755], + [48261,10], + [48263,18], + [48265,939], + [48267,82], + [48269,9], + [48271,89], + [48273,831], + [48275,74], + [48277,1347], + [48279,351], + [48281,503], + [48283,141], + [48285,351], + [48287,372], + [48289,384], + [48291,2219], + [48293,537], + [48295,59], + [48297,218], + [48299,418], + [48301,4], + [48303,5818], + [48305,125], + [48307,173], + [48309,5696], + [48311,21], + [48313,244], + [48315,289], + [48317,91], + [48319,87], + [48321,1308], + [48323,2561], + [48325,1001], + [48327,42], + [48329,2610], + [48331,634], + [48333,89], + [48335,124], + [48337,402], + [48339,11201], + [48341,392], + [48343,440], + [48345,21], + [48347,1527], + [48349,1204], + [48351,460], + [48353,302], + [48355,8590], + [48357,166], + [48359,34], + [48361,3020], + [48363,688], + [48365,620], + [48367,2696], + [48369,156], + [48371,285], + [48373,1108], + [48375,2248], + [48377,397], + [48379,266], + [48381,2373], + [48383,66], + [48385,66], + [48387,383], + [48389,231], + [48391,153], + [48393,16], + [48395,384], + [48397,1958], + [48399,211], + [48401,1190], + [48403,374], + [48405,270], + [48407,657], + [48409,1913], + [48411,93], + [48413,54], + [48415,286], + [48417,65], + [48419,678], + [48421,47], + [48423,5321], + [48425,212], + [48427,3542], + [48429,187], + [48431,24], + [48433,27], + [48435,72], + [48437,176], + [48439,49829], + [48441,2712], + [48443,22], + [48445,241], + [48447,33], + [48449,813], + [48451,2203], + [48453,26285], + [48455,332], + [48457,604], + [48459,953], + [48461,60], + [48463,664], + [48465,1113], + [48467,1262], + [48469,1923], + [48471,1257], + [48473,1089], + [48475,212], + [48477,721], + [48479,5647], + [48481,1005], + [48483,110], + [48485,2752], + [48487,260], + [48489,888], + [48491,11124], + [48493,936], + [48495,144], + [48497,1388], + [48499,999], + [48501,129], + [48503,353], + [48505,360], + [48507,473], + [49001,120], + [49003,909], + [49005,1889], + [49007,447], + [49009,18], + [49011,5590], + [49013,349], + [49015,247], + [49017,239], + [49019,353], + [49021,905], + [49023,196], + [49025,170], + [49027,208], + [49029,161], + [49031,33], + [49033,39], + [49035,21231], + [49037,435], + [49039,505], + [49041,418], + [49043,774], + [49045,1390], + [49047,573], + [49049,8921], + [49051,482], + [49053,2706], + [49055,131], + [49057,5058], + [50001,773], + [50003,858], + [50005,736], + [50007,2894], + [50009,164], + [50011,1085], + [50013,182], + [50015,705], + [50017,609], + [50019,853], + [50021,1499], + [50023,1324], + [50025,960], + [50027,1093], + [51001,1076], + [51003,2414], + [51005,427], + [51007,328], + [51009,850], + [51011,408], + [51013,4745], + [51015,1732], + [51017,116], + [51019,1970], + [51021,173], + [51023,865], + [51025,523], + [51027,815], + [51029,430], + [51031,1434], + [51033,914], + [51035,888], + [51036,223], + [51037,359], + [51041,9112], + [51043,332], + [51045,156], + [51047,1171], + [51049,279], + [51051,530], + [51053,871], + [51057,363], + [51059,25955], + [51061,1652], + [51063,386], + [51065,577], + [51067,1458], + [51069,2095], + [51071,500], + [51073,940], + [51075,506], + [51077,549], + [51079,435], + [51081,276], + [51083,1215], + [51085,2550], + [51087,9008], + [51089,1764], + [51091,55], + [51093,998], + [51095,1705], + [51097,211], + [51099,652], + [51101,453], + [51103,410], + [51105,725], + [51107,8347], + [51109,939], + [51111,316], + [51113,293], + [51115,192], + [51117,977], + [51119,254], + [51121,2546], + [51125,365], + [51127,502], + [51131,461], + [51133,399], + [51135,379], + [51137,859], + [51139,956], + [51141,519], + [51143,1928], + [51145,622], + [51147,769], + [51149,935], + [51153,11372], + [51155,1007], + [51157,182], + [51159,217], + [51161,2290], + [51163,550], + [51165,1895], + [51167,891], + [51169,573], + [51171,1063], + [51173,1067], + [51175,448], + [51177,3477], + [51179,3560], + [51181,228], + [51183,321], + [51185,1404], + [51187,1125], + [51191,1595], + [51193,584], + [51195,1372], + [51197,890], + [51199,1597], + [51510,3602], + [51520,494], + [51530,192], + [51540,1050], + [51550,6199], + [51570,505], + [51580,199], + [51590,1707], + [51595,190], + [51600,547], + [51610,282], + [51620,284], + [51630,837], + [51640,221], + [51650,4440], + [51660,1479], + [51670,870], + [51678,177], + [51680,2304], + [51683,1111], + [51685,391], + [51690,551], + [51700,5700], + [51710,7159], + [51720,140], + [51730,1482], + [51735,287], + [51740,3294], + [51750,572], + [51760,6923], + [51770,2944], + [51775,679], + [51790,622], + [51800,2447], + [51810,11461], + [51820,540], + [51830,488], + [51840,742], + [53001,611], + [53003,521], + [53005,6725], + [53007,2532], + [53009,2245], + [53011,14688], + [53013,124], + [53015,3515], + [53017,1374], + [53019,279], + [53021,3170], + [53023,63], + [53025,3332], + [53027,2751], + [53029,2095], + [53031,897], + [53033,54254], + [53035,6945], + [53037,1399], + [53039,742], + [53041,2764], + [53043,290], + [53045,1931], + [53047,1520], + [53049,776], + [53051,458], + [53053,26999], + [53055,384], + [53057,4091], + [53059,407], + [53061,20662], + [53063,15701], + [53065,1619], + [53067,8001], + [53069,123], + [53071,1750], + [53073,6646], + [53075,1155], + [53077,10374], + [54001,460], + [54003,2884], + [54005,783], + [54007,495], + [54009,735], + [54011,2319], + [54013,283], + [54015,362], + [54017,182], + [54019,1390], + [54021,179], + [54023,448], + [54025,1047], + [54027,598], + [54029,1056], + [54031,453], + [54033,1712], + [54035,790], + [54037,1255], + [54039,5225], + [54041,456], + [54043,723], + [54045,1255], + [54047,757], + [54049,1586], + [54051,1091], + [54053,958], + [54055,1701], + [54057,937], + [54059,927], + [54061,2229], + [54063,326], + [54065,441], + [54067,919], + [54069,1171], + [54071,170], + [54073,212], + [54075,307], + [54077,872], + [54079,1441], + [54081,2245], + [54083,856], + [54085,286], + [54087,531], + [54089,321], + [54091,412], + [54093,214], + [54095,329], + [54097,645], + [54099,1090], + [54101,296], + [54103,747], + [54105,219], + [54107,2253], + [54109,757], + [55001,742], + [55003,603], + [55005,1389], + [55007,723], + [55009,6698], + [55011,363], + [55013,593], + [55015,1137], + [55017,1780], + [55019,926], + [55021,1644], + [55023,564], + [55025,11307], + [55027,2552], + [55029,1257], + [55031,1338], + [55033,1233], + [55035,2603], + [55037,165], + [55039,2806], + [55041,349], + [55043,1335], + [55045,939], + [55047,646], + [55049,694], + [55051,254], + [55053,598], + [55055,2283], + [55057,864], + [55059,5264], + [55061,547], + [55063,2906], + [55065,397], + [55067,721], + [55069,956], + [55071,2572], + [55073,3684], + [55075,1424], + [55077,525], + [55078,198], + [55079,32902], + [55081,1217], + [55083,1261], + [55085,1265], + [55087,4821], + [55089,2029], + [55091,192], + [55093,1062], + [55095,1400], + [55097,2188], + [55099,366], + [55101,6584], + [55103,470], + [55105,5041], + [55107,458], + [55109,2159], + [55111,1745], + [55113,711], + [55115,1263], + [55117,2782], + [55119,567], + [55121,753], + [55123,727], + [55125,851], + [55127,3156], + [55129,494], + [55131,3440], + [55133,9766], + [55135,1546], + [55137,830], + [55139,4774], + [55141,2320], + [56001,706], + [56003,250], + [56005,878], + [56007,336], + [56009,251], + [56011,144], + [56013,1020], + [56015,256], + [56017,103], + [56019,201], + [56021,2106], + [56023,423], + [56025,1743], + [56027,45], + [56029,701], + [56031,184], + [56033,735], + [56035,208], + [56037,928], + [56039,668], + [56041,474], + [56043,185], + [56045,130] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2015.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2015.json new file mode 100644 index 0000000..4038995 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2015.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2015", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2015"], + [1001,1330], + [1003,4862], + [1005,765], + [1007,567], + [1009,1321], + [1011,379], + [1013,694], + [1015,3231], + [1017,906], + [1019,609], + [1021,1079], + [1023,398], + [1025,938], + [1027,340], + [1029,342], + [1031,1207], + [1033,1870], + [1035,432], + [1037,296], + [1039,1104], + [1041,381], + [1043,1912], + [1045,1262], + [1047,1495], + [1049,1745], + [1051,1846], + [1053,1026], + [1055,2639], + [1057,451], + [1059,879], + [1061,638], + [1063,319], + [1065,470], + [1067,456], + [1069,2783], + [1071,1561], + [1073,17925], + [1075,355], + [1077,2962], + [1079,1057], + [1081,3719], + [1083,2191], + [1085,442], + [1087,641], + [1089,9373], + [1091,567], + [1093,868], + [1095,2333], + [1097,12853], + [1099,739], + [1101,6408], + [1103,3226], + [1105,348], + [1107,542], + [1109,983], + [1111,557], + [1113,1430], + [1115,2018], + [1117,4555], + [1119,408], + [1121,2310], + [1123,1142], + [1125,5385], + [1127,1846], + [1129,597], + [1131,414], + [1133,706], + [2013,80], + [2016,158], + [2020,7929], + [2050,1063], + [2060,36], + [2068,94], + [2070,198], + [2090,2540], + [2100,107], + [2105,172], + [2110,809], + [2122,2174], + [2130,481], + [2150,320], + [2158,"NA"], + [2164,81], + [2170,3562], + [2180,489], + [2185,247], + [2188,468], + [2195,134], + [2198,349], + [2220,212], + [2230,94], + [2240,321], + [2261,424], + [2275,82], + [2282,22], + [2290,444], + [4001,2722], + [4003,3640], + [4005,4733], + [4007,1663], + [4009,1059], + [4011,318], + [4012,605], + [4013,102954], + [4015,6275], + [4017,3908], + [4019,25313], + [4021,9798], + [4023,2263], + [4025,5360], + [4027,20184], + [5001,395], + [5003,631], + [5005,888], + [5007,4580], + [5009,772], + [5011,266], + [5013,131], + [5015,577], + [5017,338], + [5019,525], + [5021,415], + [5023,665], + [5025,189], + [5027,623], + [5029,526], + [5031,2254], + [5033,1394], + [5035,1322], + [5037,438], + [5039,207], + [5041,405], + [5043,552], + [5045,2792], + [5047,365], + [5049,248], + [5051,2181], + [5053,375], + [5055,1032], + [5057,487], + [5059,713], + [5061,255], + [5063,1011], + [5065,329], + [5067,465], + [5069,2025], + [5071,598], + [5073,199], + [5075,423], + [5077,212], + [5079,253], + [5081,305], + [5083,526], + [5085,1382], + [5087,272], + [5089,337], + [5091,994], + [5093,1650], + [5095,180], + [5097,219], + [5099,181], + [5101,164], + [5103,626], + [5105,257], + [5107,529], + [5109,246], + [5111,562], + [5113,480], + [5115,1566], + [5117,175], + [5119,8494], + [5121,442], + [5123,646], + [5125,2278], + [5127,215], + [5129,171], + [5131,2770], + [5133,343], + [5135,413], + [5137,294], + [5139,1034], + [5141,431], + [5143,4061], + [5145,2145], + [5147,194], + [5149,455], + [6001,38913], + [6003,40], + [6005,947], + [6007,7263], + [6009,1314], + [6011,1703], + [6013,27456], + [6015,843], + [6017,5024], + [6019,44954], + [6021,1132], + [6023,3490], + [6025,18811], + [6027,527], + [6029,39929], + [6031,6076], + [6033,2208], + [6035,779], + [6037,331234], + [6039,6302], + [6041,4940], + [6043,573], + [6045,2321], + [6047,12978], + [6049,283], + [6051,505], + [6053,17701], + [6055,3414], + [6057,2608], + [6059,70944], + [6061,8932], + [6063,812], + [6065,69356], + [6067,41117], + [6069,2255], + [6071,59276], + [6073,80706], + [6075,19765], + [6077,28008], + [6079,6584], + [6081,14864], + [6083,11519], + [6085,42094], + [6087,10751], + [6089,5774], + [6091,119], + [6093,1678], + [6095,12589], + [6097,11589], + [6099,22922], + [6101,4790], + [6103,1982], + [6105,400], + [6107,23542], + [6109,1520], + [6111,24198], + [6113,6743], + [6115,2580], + [8001,10777], + [8003,395], + [8005,12436], + [8007,243], + [8009,40], + [8011,68], + [8013,5605], + [8014,1174], + [8015,290], + [8017,27], + [8019,203], + [8021,205], + [8023,104], + [8025,60], + [8027,70], + [8029,768], + [8031,13851], + [8033,41], + [8035,5331], + [8037,1027], + [8039,417], + [8041,14114], + [8043,895], + [8045,1264], + [8047,106], + [8049,292], + [8051,289], + [8053,13], + [8055,183], + [8057,31], + [8059,10891], + [8061,21], + [8063,104], + [8065,177], + [8067,1029], + [8069,5971], + [8071,344], + [8073,74], + [8075,333], + [8077,3973], + [8079,16], + [8081,323], + [8083,701], + [8085,975], + [8087,557], + [8089,457], + [8091,93], + [8093,322], + [8095,56], + [8097,415], + [8099,235], + [8101,4047], + [8103,147], + [8105,307], + [8107,464], + [8109,189], + [8111,20], + [8113,192], + [8115,39], + [8117,519], + [8119,508], + [8121,71], + [8123,5682], + [8125,134], + [9001,25718], + [9003,27924], + [9005,5450], + [9007,4567], + [9009,28409], + [9011,8112], + [9013,4238], + [9015,3978], + [10001,4125], + [10003,13741], + [10005,4841], + [11001,26733], + [12001,5980], + [12003,625], + [12005,4795], + [12007,520], + [12009,15388], + [12011,50684], + [12013,303], + [12015,4067], + [12017,3599], + [12019,4971], + [12021,8614], + [12023,1595], + [12027,778], + [12029,348], + [12031,26771], + [12033,7727], + [12035,2748], + [12037,225], + [12039,1312], + [12041,368], + [12043,337], + [12045,315], + [12047,294], + [12049,705], + [12051,1608], + [12053,4598], + [12055,2653], + [12057,34871], + [12059,412], + [12061,4200], + [12063,1022], + [12065,321], + [12067,147], + [12069,7770], + [12071,16498], + [12073,7431], + [12075,952], + [12077,155], + [12079,460], + [12081,8367], + [12083,8471], + [12085,3735], + [12086,77427], + [12087,1597], + [12089,1883], + [12091,4162], + [12093,1087], + [12095,34481], + [12097,9080], + [12099,35347], + [12101,12667], + [12103,23348], + [12105,17728], + [12107,2084], + [12109,4476], + [12111,8372], + [12113,3582], + [12115,9025], + [12117,11660], + [12119,2205], + [12121,980], + [12123,604], + [12125,231], + [12127,13975], + [12129,652], + [12131,1310], + [12133,572], + [13001,633], + [13003,222], + [13005,281], + [13007,82], + [13009,1359], + [13011,458], + [13013,1898], + [13015,2755], + [13017,493], + [13019,505], + [13021,4519], + [13023,373], + [13025,514], + [13027,419], + [13029,848], + [13031,2104], + [13033,741], + [13035,672], + [13037,132], + [13039,1237], + [13043,282], + [13045,3478], + [13047,1638], + [13049,305], + [13051,7784], + [13053,185], + [13055,651], + [13057,5624], + [13059,3476], + [13061,101], + [13063,9627], + [13065,195], + [13067,20180], + [13069,1162], + [13071,1280], + [13073,3441], + [13075,486], + [13077,3602], + [13079,351], + [13081,645], + [13083,430], + [13085,558], + [13087,774], + [13089,22495], + [13091,583], + [13093,359], + [13095,2921], + [13097,4326], + [13099,302], + [13101,87], + [13103,1389], + [13105,565], + [13107,727], + [13109,260], + [13111,626], + [13113,2806], + [13115,2867], + [13117,4732], + [13119,583], + [13121,30777], + [13123,707], + [13125,82], + [13127,2287], + [13129,1543], + [13131,626], + [13133,451], + [13135,23425], + [13137,1075], + [13139,4507], + [13141,244], + [13143,776], + [13145,822], + [13147,644], + [13149,316], + [13151,6467], + [13153,3825], + [13155,262], + [13157,1487], + [13159,355], + [13161,422], + [13163,575], + [13165,258], + [13167,271], + [13169,743], + [13171,590], + [13173,252], + [13175,1407], + [13177,751], + [13179,1577], + [13181,227], + [13183,416], + [13185,2974], + [13187,827], + [13189,731], + [13191,378], + [13193,424], + [13195,700], + [13197,290], + [13199,695], + [13201,145], + [13205,586], + [13207,736], + [13209,322], + [13211,462], + [13213,1183], + [13215,5884], + [13217,3271], + [13219,778], + [13221,373], + [13223,3969], + [13225,894], + [13227,738], + [13229,502], + [13231,471], + [13233,1202], + [13235,264], + [13237,630], + [13239,56], + [13241,436], + [13243,221], + [13245,6231], + [13247,2756], + [13249,140], + [13251,419], + [13253,250], + [13255,2180], + [13257,709], + [13259,146], + [13261,1066], + [13263,208], + [13265,46], + [13267,572], + [13269,254], + [13271,420], + [13273,271], + [13275,1215], + [13277,1120], + [13279,1035], + [13281,308], + [13283,229], + [13285,2162], + [13287,216], + [13289,270], + [13291,525], + [13293,806], + [13295,1754], + [13297,2253], + [13299,942], + [13301,206], + [13303,503], + [13305,837], + [13307,91], + [13309,184], + [13311,714], + [13313,2911], + [13315,215], + [13317,281], + [13319,263], + [13321,573], + [15001,3907], + [15003,15614], + [15005,"NA"], + [15007,1415], + [15009,3111], + [16001,7994], + [16003,132], + [16005,1694], + [16007,128], + [16009,268], + [16011,913], + [16013,424], + [16015,195], + [16017,1120], + [16019,1798], + [16021,283], + [16023,58], + [16025,23], + [16027,4597], + [16029,156], + [16031,388], + [16033,15], + [16035,251], + [16037,143], + [16039,512], + [16041,204], + [16043,263], + [16045,402], + [16047,280], + [16049,403], + [16051,431], + [16053,379], + [16055,3670], + [16057,681], + [16059,239], + [16061,92], + [16063,121], + [16065,538], + [16067,397], + [16069,774], + [16071,76], + [16073,253], + [16075,557], + [16077,183], + [16079,404], + [16081,203], + [16083,1460], + [16085,298], + [16087,269], + [17001,1620], + [17003,210], + [17005,413], + [17007,1717], + [17009,99], + [17011,1100], + [17013,158], + [17015,433], + [17017,364], + [17019,5422], + [17021,1017], + [17023,502], + [17025,469], + [17027,905], + [17029,1457], + [17031,164367], + [17033,570], + [17035,311], + [17037,3052], + [17039,442], + [17041,496], + [17043,24311], + [17045,589], + [17047,175], + [17049,883], + [17051,638], + [17053,352], + [17055,1332], + [17057,1203], + [17059,165], + [17061,371], + [17063,1764], + [17065,240], + [17067,551], + [17069,129], + [17071,225], + [17073,1540], + [17075,838], + [17077,1591], + [17079,289], + [17081,1160], + [17083,702], + [17085,627], + [17087,353], + [17089,15416], + [17091,3719], + [17093,3432], + [17095,1412], + [17097,19773], + [17099,4000], + [17101,436], + [17103,952], + [17105,928], + [17107,703], + [17109,856], + [17111,8984], + [17113,4359], + [17115,3538], + [17117,1457], + [17119,7987], + [17121,1223], + [17123,378], + [17125,471], + [17127,443], + [17129,317], + [17131,513], + [17133,792], + [17135,910], + [17137,849], + [17139,321], + [17141,1598], + [17143,6168], + [17145,631], + [17147,420], + [17149,394], + [17151,124], + [17153,185], + [17155,188], + [17157,776], + [17159,437], + [17161,4625], + [17163,8304], + [17165,800], + [17167,5468], + [17169,203], + [17171,149], + [17173,602], + [17175,183], + [17177,1422], + [17179,4185], + [17181,565], + [17183,2506], + [17185,317], + [17187,447], + [17189,354], + [17191,516], + [17193,397], + [17195,1763], + [17197,21995], + [17199,1973], + [17201,9956], + [17203,992], + [18001,646], + [18003,8199], + [18005,1576], + [18007,205], + [18009,316], + [18011,1236], + [18013,356], + [18015,435], + [18017,816], + [18019,2649], + [18021,655], + [18023,681], + [18025,297], + [18027,594], + [18029,1294], + [18031,582], + [18033,897], + [18035,3103], + [18037,769], + [18039,4072], + [18041,591], + [18043,1710], + [18045,477], + [18047,578], + [18049,473], + [18051,717], + [18053,1762], + [18055,946], + [18057,5657], + [18059,1578], + [18061,890], + [18063,3173], + [18065,1153], + [18067,1847], + [18069,816], + [18071,868], + [18073,952], + [18075,497], + [18077,743], + [18079,676], + [18081,3166], + [18083,873], + [18085,1654], + [18087,691], + [18089,15676], + [18091,3045], + [18093,1329], + [18095,3305], + [18097,23963], + [18099,1003], + [18101,213], + [18103,820], + [18105,3313], + [18107,770], + [18109,1666], + [18111,405], + [18113,1009], + [18115,176], + [18117,520], + [18119,585], + [18121,399], + [18123,435], + [18125,270], + [18127,4549], + [18129,528], + [18131,284], + [18133,839], + [18135,630], + [18137,731], + [18139,382], + [18141,6563], + [18143,560], + [18145,1007], + [18147,454], + [18149,627], + [18151,782], + [18153,540], + [18155,241], + [18157,3952], + [18159,336], + [18161,159], + [18163,3936], + [18165,515], + [18167,3005], + [18169,737], + [18171,203], + [18173,1291], + [18175,702], + [18177,1632], + [18179,551], + [18181,553], + [18183,700], + [19001,137], + [19003,65], + [19005,378], + [19007,308], + [19009,129], + [19011,540], + [19013,3251], + [19015,466], + [19017,495], + [19019,485], + [19021,427], + [19023,365], + [19025,194], + [19027,298], + [19029,272], + [19031,380], + [19033,915], + [19035,331], + [19037,293], + [19039,197], + [19041,323], + [19043,430], + [19045,1230], + [19047,368], + [19049,1261], + [19051,187], + [19053,146], + [19055,364], + [19057,976], + [19059,400], + [19061,2056], + [19063,212], + [19065,494], + [19067,331], + [19069,201], + [19071,138], + [19073,197], + [19075,257], + [19077,213], + [19079,310], + [19081,174], + [19083,351], + [19085,258], + [19087,378], + [19089,194], + [19091,179], + [19093,124], + [19095,367], + [19097,473], + [19099,748], + [19101,354], + [19103,2253], + [19105,454], + [19107,233], + [19109,254], + [19111,990], + [19113,4588], + [19115,230], + [19117,157], + [19119,143], + [19121,325], + [19123,472], + [19125,575], + [19127,993], + [19129,305], + [19131,159], + [19133,211], + [19135,180], + [19137,185], + [19139,865], + [19141,240], + [19143,102], + [19145,274], + [19147,151], + [19149,420], + [19151,132], + [19153,9479], + [19155,1808], + [19157,383], + [19159,87], + [19161,189], + [19163,4137], + [19165,202], + [19167,514], + [19169,1446], + [19171,425], + [19173,103], + [19175,277], + [19177,157], + [19179,935], + [19181,922], + [19183,390], + [19185,113], + [19187,885], + [19189,207], + [19191,451], + [19193,2137], + [19195,170], + [19197,272], + [20001,338], + [20003,200], + [20005,458], + [20007,113], + [20009,615], + [20011,341], + [20013,213], + [20015,1364], + [20017,45], + [20019,88], + [20021,462], + [20023,37], + [20025,28], + [20027,176], + [20029,164], + [20031,271], + [20033,33], + [20035,779], + [20037,964], + [20039,50], + [20041,492], + [20043,187], + [20045,2388], + [20047,53], + [20049,61], + [20051,523], + [20053,108], + [20055,709], + [20057,613], + [20059,645], + [20061,750], + [20063,37], + [20065,50], + [20067,140], + [20069,83], + [20071,20], + [20073,150], + [20075,32], + [20077,111], + [20079,670], + [20081,59], + [20083,32], + [20085,268], + [20087,426], + [20089,60], + [20091,10980], + [20093,67], + [20095,158], + [20097,43], + [20099,616], + [20101,29], + [20103,1586], + [20105,62], + [20107,277], + [20109,43], + [20111,713], + [20113,513], + [20115,233], + [20117,167], + [20119,72], + [20121,725], + [20123,125], + [20125,1070], + [20127,133], + [20129,60], + [20131,152], + [20133,466], + [20135,51], + [20137,73], + [20139,401], + [20141,73], + [20143,122], + [20145,123], + [20147,94], + [20149,436], + [20151,213], + [20153,35], + [20155,1327], + [20157,71], + [20159,207], + [20161,1216], + [20163,129], + [20165,63], + [20167,139], + [20169,1160], + [20171,79], + [20173,11755], + [20175,457], + [20177,3865], + [20179,33], + [20181,89], + [20183,81], + [20185,87], + [20187,32], + [20189,118], + [20191,492], + [20193,116], + [20195,53], + [20197,143], + [20199,24], + [20201,98], + [20203,37], + [20205,263], + [20207,81], + [20209,4571], + [21001,517], + [21003,421], + [21005,467], + [21007,247], + [21009,954], + [21011,361], + [21013,747], + [21015,2660], + [21017,459], + [21019,1253], + [21021,667], + [21023,234], + [21025,375], + [21027,472], + [21029,1784], + [21031,299], + [21033,296], + [21035,860], + [21037,1970], + [21039,131], + [21041,276], + [21043,1002], + [21045,375], + [21047,1577], + [21049,876], + [21051,512], + [21053,316], + [21055,206], + [21057,173], + [21059,2088], + [21061,328], + [21063,209], + [21065,321], + [21067,6423], + [21069,383], + [21071,1094], + [21073,1032], + [21075,159], + [21077,197], + [21079,387], + [21081,588], + [21083,937], + [21085,705], + [21087,264], + [21089,1045], + [21091,193], + [21093,2303], + [21095,886], + [21097,387], + [21099,394], + [21101,1031], + [21103,356], + [21105,118], + [21107,1097], + [21109,374], + [21111,18012], + [21113,1055], + [21115,633], + [21117,3667], + [21119,481], + [21121,797], + [21123,298], + [21125,1458], + [21127,475], + [21129,172], + [21131,320], + [21133,767], + [21135,425], + [21137,609], + [21139,265], + [21141,550], + [21143,165], + [21145,1646], + [21147,394], + [21149,208], + [21151,1944], + [21153,524], + [21155,448], + [21157,829], + [21159,309], + [21161,449], + [21163,655], + [21165,203], + [21167,487], + [21169,209], + [21171,197], + [21173,769], + [21175,367], + [21177,834], + [21179,1063], + [21181,198], + [21183,592], + [21185,1202], + [21187,223], + [21189,116], + [21191,355], + [21193,800], + [21195,1937], + [21197,344], + [21199,1500], + [21201,51], + [21203,439], + [21205,611], + [21207,722], + [21209,1060], + [21211,919], + [21213,398], + [21215,397], + [21217,708], + [21219,253], + [21221,327], + [21223,216], + [21225,414], + [21227,2655], + [21229,265], + [21231,573], + [21233,311], + [21235,890], + [21237,194], + [21239,503], + [22001,1770], + [22003,615], + [22005,3123], + [22007,772], + [22009,1202], + [22011,965], + [22013,481], + [22015,3294], + [22017,7885], + [22019,5359], + [22021,335], + [22023,171], + [22025,348], + [22027,454], + [22029,654], + [22031,885], + [22033,12780], + [22035,313], + [22037,490], + [22039,980], + [22041,729], + [22043,622], + [22045,2587], + [22047,1056], + [22049,435], + [22051,12640], + [22053,845], + [22055,6826], + [22057,2529], + [22059,457], + [22061,1477], + [22063,3504], + [22065,364], + [22067,1192], + [22069,1265], + [22071,11880], + [22073,4815], + [22075,579], + [22077,670], + [22079,3764], + [22081,272], + [22083,759], + [22085,678], + [22087,1305], + [22089,1469], + [22091,412], + [22093,833], + [22095,1527], + [22097,2718], + [22099,1660], + [22101,1851], + [22103,6343], + [22105,3926], + [22107,168], + [22109,3173], + [22111,671], + [22113,1798], + [22115,1358], + [22117,1303], + [22119,1377], + [22121,744], + [22123,555], + [22125,286], + [22127,452], + [23001,2286], + [23003,1875], + [23005,5425], + [23007,691], + [23009,1623], + [23011,2613], + [23013,840], + [23015,744], + [23017,1445], + [23019,3641], + [23021,411], + [23023,666], + [23025,1548], + [23027,1074], + [23029,894], + [23031,4263], + [24001,2258], + [24003,13242], + [24005,23585], + [24009,2162], + [24011,953], + [24013,3928], + [24015,3148], + [24017,4012], + [24019,1132], + [24021,5752], + [24023,987], + [24025,6689], + [24027,6740], + [24029,565], + [24031,21348], + [24033,25571], + [24035,1202], + [24037,2651], + [24039,760], + [24041,947], + [24043,4305], + [24045,3415], + [24047,2695], + [24510,22155], + [25001,6804], + [25003,3519], + [25005,17715], + [25007,617], + [25009,20353], + [25011,1731], + [25013,14241], + [25015,3935], + [25017,33838], + [25019,375], + [25021,15388], + [25023,13561], + [25025,18548], + [25027,21741], + [26001,305], + [26003,274], + [26005,2502], + [26007,847], + [26009,745], + [26011,557], + [26013,300], + [26015,1296], + [26017,3006], + [26019,604], + [26021,3820], + [26023,978], + [26025,3269], + [26027,1214], + [26029,786], + [26031,972], + [26033,1297], + [26035,910], + [26037,1556], + [26039,412], + [26041,1168], + [26043,712], + [26045,2468], + [26047,1269], + [26049,11044], + [26051,725], + [26053,474], + [26055,2256], + [26057,1036], + [26059,1101], + [26061,1050], + [26063,881], + [26065,6809], + [26067,1341], + [26069,759], + [26071,366], + [26073,1694], + [26075,3857], + [26077,5607], + [26079,584], + [26081,12862], + [26083,87], + [26085,315], + [26087,2866], + [26089,557], + [26091,2375], + [26093,4469], + [26095,171], + [26097,497], + [26099,24313], + [26101,691], + [26103,1998], + [26105,879], + [26107,1176], + [26109,620], + [26111,2015], + [26113,457], + [26115,3464], + [26117,1581], + [26119,305], + [26121,4493], + [26123,1262], + [26125,29971], + [26127,996], + [26129,660], + [26131,215], + [26133,660], + [26135,252], + [26137,698], + [26139,5530], + [26141,545], + [26143,704], + [26145,5030], + [26147,4977], + [26149,1310], + [26151,1268], + [26153,374], + [26155,1866], + [26157,1641], + [26159,2211], + [26161,6988], + [26163,52609], + [26165,982], + [27001,448], + [27003,6841], + [27005,802], + [27007,1149], + [27009,956], + [27011,119], + [27013,1157], + [27015,596], + [27017,861], + [27019,1743], + [27021,936], + [27023,303], + [27025,1195], + [27027,1100], + [27029,419], + [27031,138], + [27033,275], + [27035,1619], + [27037,7640], + [27039,426], + [27041,686], + [27043,327], + [27045,464], + [27047,615], + [27049,943], + [27051,157], + [27053,22151], + [27055,398], + [27057,582], + [27059,866], + [27061,1441], + [27063,253], + [27065,580], + [27067,896], + [27069,114], + [27071,506], + [27073,154], + [27075,268], + [27077,107], + [27079,747], + [27081,119], + [27083,490], + [27085,792], + [27087,138], + [27089,395], + [27091,423], + [27093,557], + [27095,728], + [27097,958], + [27099,652], + [27101,224], + [27103,534], + [27105,368], + [27107,160], + [27109,2441], + [27111,1303], + [27113,464], + [27115,820], + [27117,166], + [27119,722], + [27121,222], + [27123,9825], + [27125,136], + [27127,323], + [27129,411], + [27131,1250], + [27133,125], + [27135,340], + [27137,5042], + [27139,2467], + [27141,1976], + [27143,352], + [27145,3175], + [27147,705], + [27149,160], + [27151,310], + [27153,568], + [27155,76], + [27157,452], + [27159,373], + [27161,402], + [27163,4321], + [27165,291], + [27167,122], + [27169,974], + [27171,2636], + [27173,204], + [28001,911], + [28003,887], + [28005,342], + [28007,532], + [28009,238], + [28011,1051], + [28013,378], + [28015,283], + [28017,549], + [28019,232], + [28021,391], + [28023,476], + [28025,768], + [28027,951], + [28029,813], + [28031,466], + [28033,4058], + [28035,2064], + [28037,225], + [28039,664], + [28041,326], + [28043,564], + [28045,1210], + [28047,5086], + [28049,6575], + [28051,735], + [28053,312], + [28055,72], + [28057,584], + [28059,4152], + [28061,498], + [28063,339], + [28065,360], + [28067,1592], + [28069,370], + [28071,1335], + [28073,1391], + [28075,2076], + [28077,342], + [28079,485], + [28081,2212], + [28083,1129], + [28085,862], + [28087,1764], + [28089,2361], + [28091,730], + [28093,1043], + [28095,1141], + [28097,325], + [28099,651], + [28101,534], + [28103,387], + [28105,1380], + [28107,1169], + [28109,1408], + [28111,342], + [28113,1074], + [28115,774], + [28117,664], + [28119,289], + [28121,3030], + [28123,624], + [28125,166], + [28127,640], + [28129,362], + [28131,475], + [28133,889], + [28135,439], + [28137,847], + [28139,601], + [28141,509], + [28143,432], + [28145,674], + [28147,416], + [28149,1388], + [28151,1853], + [28153,602], + [28155,283], + [28157,305], + [28159,584], + [28161,352], + [28163,752], + [29001,588], + [29003,413], + [29005,127], + [29007,524], + [29009,747], + [29011,289], + [29013,496], + [29015,470], + [29017,311], + [29019,3479], + [29021,2137], + [29023,1177], + [29025,200], + [29027,1022], + [29029,1229], + [29031,1763], + [29033,291], + [29035,186], + [29037,2592], + [29039,311], + [29041,180], + [29043,1821], + [29045,245], + [29047,6013], + [29049,534], + [29051,1576], + [29053,440], + [29055,657], + [29057,181], + [29059,435], + [29061,187], + [29063,234], + [29065,367], + [29067,342], + [29069,1056], + [29071,2662], + [29073,327], + [29075,152], + [29077,6212], + [29079,203], + [29081,202], + [29083,550], + [29085,247], + [29087,98], + [29089,247], + [29091,1052], + [29093,306], + [29095,21448], + [29097,2488], + [29099,5726], + [29101,1244], + [29103,76], + [29105,1012], + [29107,833], + [29109,877], + [29111,256], + [29113,1394], + [29115,368], + [29117,311], + [29119,494], + [29121,398], + [29123,325], + [29125,209], + [29127,657], + [29129,84], + [29131,702], + [29133,364], + [29135,363], + [29137,219], + [29139,284], + [29141,544], + [29143,534], + [29145,1300], + [29147,542], + [29149,264], + [29151,269], + [29153,291], + [29155,638], + [29157,430], + [29159,1102], + [29161,1041], + [29163,371], + [29165,2330], + [29167,753], + [29169,870], + [29171,99], + [29173,240], + [29175,630], + [29177,611], + [29179,190], + [29181,424], + [29183,8375], + [29185,277], + [29186,484], + [29187,1608], + [29189,24704], + [29195,534], + [29197,111], + [29199,111], + [29201,1050], + [29203,272], + [29205,145], + [29207,876], + [29209,1055], + [29211,166], + [29213,2114], + [29215,626], + [29217,499], + [29219,830], + [29221,708], + [29223,336], + [29225,846], + [29227,40], + [29229,479], + [29510,9697], + [30001,171], + [30003,371], + [30005,120], + [30007,126], + [30009,199], + [30011,22], + [30013,1544], + [30015,82], + [30017,210], + [30019,24], + [30021,151], + [30023,208], + [30025,46], + [30027,235], + [30029,2559], + [30031,1784], + [30033,21], + [30035,526], + [30037,16], + [30039,97], + [30041,325], + [30043,227], + [30045,34], + [30047,633], + [30049,1176], + [30051,26], + [30053,786], + [30055,23], + [30057,155], + [30059,34], + [30061,144], + [30063,2371], + [30065,103], + [30067,397], + [30069,15], + [30071,100], + [30073,128], + [30075,27], + [30077,131], + [30079,22], + [30081,1000], + [30083,222], + [30085,246], + [30087,223], + [30089,390], + [30091,52], + [30093,733], + [30095,184], + [30097,50], + [30099,111], + [30101,78], + [30103,18], + [30105,137], + [30107,43], + [30109,18], + [30111,2672], + [31001,520], + [31003,92], + [31005,10], + [31007,15], + [31009,12], + [31011,74], + [31013,170], + [31015,29], + [31017,52], + [31019,662], + [31021,131], + [31023,132], + [31025,434], + [31027,111], + [31029,45], + [31031,80], + [31033,125], + [31035,99], + [31037,145], + [31039,129], + [31041,140], + [31043,389], + [31045,136], + [31047,414], + [31049,27], + [31051,102], + [31053,622], + [31055,9487], + [31057,25], + [31059,95], + [31061,36], + [31063,37], + [31065,72], + [31067,400], + [31069,29], + [31071,29], + [31073,27], + [31075,10], + [31077,39], + [31079,1245], + [31081,135], + [31083,38], + [31085,14], + [31087,43], + [31089,140], + [31091,17], + [31093,121], + [31095,116], + [31097,70], + [31099,84], + [31101,125], + [31103,14], + [31105,73], + [31107,151], + [31109,4422], + [31111,537], + [31113,14], + [31115,14], + [31117,9], + [31119,526], + [31121,150], + [31123,76], + [31125,51], + [31127,135], + [31129,61], + [31131,271], + [31133,43], + [31135,34], + [31137,119], + [31139,106], + [31141,511], + [31143,74], + [31145,161], + [31147,138], + [31149,23], + [31151,213], + [31153,2547], + [31155,336], + [31157,631], + [31159,253], + [31161,74], + [31163,50], + [31165,20], + [31167,89], + [31169,70], + [31171,13], + [31173,158], + [31175,58], + [31177,328], + [31179,141], + [31181,61], + [31183,13], + [31185,213], + [32001,731], + [32003,71070], + [32005,1514], + [32007,1383], + [32009,23], + [32011,59], + [32013,493], + [32015,218], + [32017,119], + [32019,2038], + [32021,166], + [32023,1407], + [32027,170], + [32029,139], + [32031,14132], + [32033,257], + [32510,1797], + [33001,1048], + [33003,822], + [33005,1309], + [33007,644], + [33009,1330], + [33011,8165], + [33013,2492], + [33015,6395], + [33017,2212], + [33019,647], + [34001,12237], + [34003,22791], + [34005,12434], + [34007,16498], + [34009,5391], + [34011,6017], + [34013,25956], + [34015,9085], + [34017,19532], + [34019,2787], + [34021,9942], + [34023,22680], + [34025,17034], + [34027,11464], + [34029,16586], + [34031,17639], + [34033,2288], + [34035,7967], + [34037,4186], + [34039,16952], + [34041,3071], + [35001,18878], + [35003,99], + [35005,1736], + [35006,737], + [35007,360], + [35009,1063], + [35011,43], + [35013,6858], + [35015,1459], + [35017,803], + [35019,115], + [35021,24], + [35023,132], + [35025,1842], + [35027,498], + [35028,341], + [35029,1901], + [35031,2361], + [35033,219], + [35035,1538], + [35037,231], + [35039,1323], + [35041,432], + [35043,4096], + [35045,3809], + [35047,846], + [35049,3889], + [35051,364], + [35053,491], + [35055,1358], + [35057,491], + [35059,82], + [35061,2194], + [36001,6922], + [36003,1329], + [36005,47678], + [36007,5200], + [36009,2223], + [36011,1988], + [36013,3487], + [36015,2208], + [36017,1264], + [36019,2101], + [36021,1257], + [36023,1375], + [36025,1174], + [36027,6462], + [36029,24001], + [36031,1046], + [36033,1304], + [36035,1516], + [36037,1496], + [36039,1171], + [36041,165], + [36043,1780], + [36045,3080], + [36047,72514], + [36049,818], + [36051,1649], + [36053,1876], + [36055,18597], + [36057,1468], + [36059,29586], + [36061,44786], + [36063,6259], + [36065,5471], + [36067,11015], + [36069,2610], + [36071,8331], + [36073,1143], + [36075,3896], + [36077,1555], + [36079,2168], + [36081,58735], + [36083,3810], + [36085,12962], + [36087,6921], + [36089,3217], + [36091,4872], + [36093,3587], + [36095,856], + [36097,554], + [36099,812], + [36101,2762], + [36103,36708], + [36105,1827], + [36107,1301], + [36109,2228], + [36111,4264], + [36113,1794], + [36115,1445], + [36117,2368], + [36119,21847], + [36121,1040], + [36123,588], + [37001,4142], + [37003,864], + [37005,274], + [37007,707], + [37009,741], + [37011,447], + [37013,1326], + [37015,622], + [37017,1173], + [37019,3543], + [37021,5688], + [37023,2211], + [37025,5056], + [37027,2221], + [37029,264], + [37031,1855], + [37033,607], + [37035,4142], + [37037,1584], + [37039,718], + [37041,403], + [37043,249], + [37045,2945], + [37047,1703], + [37049,2503], + [37051,9224], + [37053,745], + [37055,1514], + [37057,4380], + [37059,999], + [37061,1519], + [37063,7853], + [37065,2185], + [37067,9899], + [37069,1701], + [37071,6177], + [37073,282], + [37075,382], + [37077,1410], + [37079,525], + [37081,15053], + [37083,1831], + [37085,3373], + [37087,1454], + [37089,2408], + [37091,651], + [37093,1574], + [37095,196], + [37097,4517], + [37099,1125], + [37101,4610], + [37103,262], + [37105,1882], + [37107,1761], + [37109,2206], + [37111,1169], + [37113,932], + [37115,540], + [37117,746], + [37119,30299], + [37121,432], + [37123,662], + [37125,2220], + [37127,3195], + [37129,6074], + [37131,593], + [37133,3756], + [37135,3397], + [37137,318], + [37139,1265], + [37141,1586], + [37143,368], + [37145,1214], + [37147,5312], + [37149,441], + [37151,3802], + [37153,1340], + [37155,4324], + [37157,2721], + [37159,3843], + [37161,1946], + [37163,1749], + [37165,1257], + [37167,1533], + [37169,1184], + [37171,1806], + [37173,520], + [37175,737], + [37177,147], + [37179,5443], + [37181,1546], + [37183,25419], + [37185,598], + [37187,431], + [37189,1327], + [37191,3257], + [37193,1684], + [37195,3491], + [37197,874], + [37199,437], + [38001,32], + [38003,181], + [38005,114], + [38007,14], + [38009,142], + [38011,35], + [38013,39], + [38015,1167], + [38017,2140], + [38019,57], + [38021,47], + [38023,33], + [38025,79], + [38027,61], + [38029,77], + [38031,47], + [38033,22], + [38035,915], + [38037,42], + [38039,27], + [38041,39], + [38043,49], + [38045,56], + [38047,27], + [38049,138], + [38051,39], + [38053,229], + [38055,184], + [38057,181], + [38059,501], + [38061,160], + [38063,57], + [38065,52], + [38067,193], + [38069,77], + [38071,193], + [38073,68], + [38075,45], + [38077,235], + [38079,504], + [38081,41], + [38083,37], + [38085,57], + [38087,12], + [38089,549], + [38091,24], + [38093,276], + [38095,33], + [38097,126], + [38099,233], + [38101,1094], + [38103,87], + [38105,682], + [39001,839], + [39003,2319], + [39005,1303], + [39007,2645], + [39009,1736], + [39011,899], + [39013,1974], + [39015,1213], + [39017,8597], + [39019,795], + [39021,869], + [39023,3200], + [39025,4630], + [39027,1035], + [39029,2896], + [39031,1009], + [39033,1106], + [39035,31653], + [39037,1117], + [39039,915], + [39041,3611], + [39043,2068], + [39045,3258], + [39047,692], + [39049,26820], + [39051,1093], + [39053,792], + [39055,2043], + [39057,3506], + [39059,1189], + [39061,18056], + [39063,1491], + [39065,698], + [39067,452], + [39069,757], + [39071,1077], + [39073,726], + [39075,705], + [39077,1815], + [39079,980], + [39081,2179], + [39083,1448], + [39085,5588], + [39087,1459], + [39089,3855], + [39091,972], + [39093,8378], + [39095,11070], + [39097,826], + [39099,6508], + [39101,1420], + [39103,3924], + [39105,748], + [39107,753], + [39109,2302], + [39111,551], + [39113,12459], + [39115,489], + [39117,840], + [39119,2405], + [39121,361], + [39123,1388], + [39125,426], + [39127,1033], + [39129,1224], + [39131,766], + [39133,4223], + [39135,1011], + [39137,723], + [39139,2987], + [39141,1806], + [39143,1509], + [39145,2262], + [39147,1311], + [39149,1034], + [39151,9819], + [39153,13501], + [39155,5890], + [39157,2440], + [39159,1037], + [39161,595], + [39163,357], + [39165,4666], + [39167,1685], + [39169,2361], + [39171,839], + [39173,2971], + [39175,451], + [40001,496], + [40003,94], + [40005,316], + [40007,82], + [40009,623], + [40011,172], + [40013,838], + [40015,610], + [40017,2469], + [40019,1027], + [40021,997], + [40023,454], + [40025,31], + [40027,4888], + [40029,177], + [40031,2164], + [40033,119], + [40035,303], + [40037,1558], + [40039,635], + [40041,866], + [40043,90], + [40045,97], + [40047,1187], + [40049,604], + [40051,1179], + [40053,96], + [40055,123], + [40057,45], + [40059,60], + [40061,356], + [40063,430], + [40065,443], + [40067,154], + [40069,259], + [40071,1093], + [40073,260], + [40075,194], + [40077,314], + [40079,1360], + [40081,742], + [40083,818], + [40085,213], + [40087,698], + [40089,1172], + [40091,613], + [40093,141], + [40095,371], + [40097,840], + [40099,286], + [40101,1523], + [40103,201], + [40105,274], + [40107,267], + [40109,14796], + [40111,1085], + [40113,1120], + [40115,738], + [40117,437], + [40119,1355], + [40121,996], + [40123,728], + [40125,1476], + [40127,383], + [40129,78], + [40131,1959], + [40133,657], + [40135,1067], + [40137,1217], + [40139,313], + [40141,144], + [40143,13188], + [40145,1527], + [40147,1055], + [40149,312], + [40151,148], + [40153,534], + [41001,450], + [41003,1918], + [41005,10506], + [41007,1001], + [41009,1622], + [41011,1927], + [41013,753], + [41015,718], + [41017,4984], + [41019,3326], + [41021,52], + [41023,268], + [41025,237], + [41027,637], + [41029,6644], + [41031,705], + [41033,2569], + [41035,2234], + [41037,263], + [41039,10041], + [41041,1364], + [41043,3710], + [41045,761], + [41047,9159], + [41049,317], + [41051,21079], + [41053,2058], + [41055,54], + [41057,641], + [41059,2241], + [41061,720], + [41063,252], + [41065,729], + [41067,14157], + [41069,36], + [41071,2688], + [42001,2311], + [42003,32085], + [42005,2193], + [42007,5186], + [42009,1465], + [42011,10484], + [42013,3144], + [42015,1857], + [42017,15762], + [42019,4631], + [42021,4089], + [42023,162], + [42025,1905], + [42027,3093], + [42029,10556], + [42031,1092], + [42033,2422], + [42035,1292], + [42037,1908], + [42039,2136], + [42041,5123], + [42043,6562], + [42045,14262], + [42047,805], + [42049,7411], + [42051,4379], + [42053,149], + [42055,3862], + [42057,463], + [42059,1089], + [42061,1381], + [42063,2640], + [42065,1280], + [42067,594], + [42069,6203], + [42071,11355], + [42073,2656], + [42075,3173], + [42077,9909], + [42079,10250], + [42081,3688], + [42083,1154], + [42085,2890], + [42087,1207], + [42089,5216], + [42091,18353], + [42093,395], + [42095,8252], + [42097,2652], + [42099,1077], + [42101,49460], + [42103,1634], + [42105,519], + [42107,4288], + [42109,942], + [42111,2353], + [42113,187], + [42115,1195], + [42117,1324], + [42119,864], + [42121,1456], + [42123,996], + [42125,5938], + [42127,1296], + [42129,9883], + [42131,862], + [42133,11087], + [44001,1384], + [44003,5022], + [44005,2386], + [44007,20552], + [44009,3888], + [45001,712], + [45003,4348], + [45005,310], + [45007,4775], + [45009,572], + [45011,752], + [45013,3913], + [45015,5143], + [45017,491], + [45019,9598], + [45021,1667], + [45023,1126], + [45025,1294], + [45027,1003], + [45029,1164], + [45031,2215], + [45033,1091], + [45035,3980], + [45037,677], + [45039,806], + [45041,4264], + [45043,2119], + [45045,11992], + [45047,1973], + [45049,700], + [45051,9751], + [45053,605], + [45055,1728], + [45057,2308], + [45059,1978], + [45061,544], + [45063,7028], + [45065,244], + [45067,1282], + [45069,969], + [45071,1002], + [45073,1997], + [45075,4013], + [45077,3232], + [45079,11240], + [45081,462], + [45083,7980], + [45085,3023], + [45087,911], + [45089,1181], + [45091,6932], + [46003,35], + [46005,250], + [46007,57], + [46009,80], + [46011,544], + [46013,559], + [46015,68], + [46017,50], + [46019,173], + [46021,25], + [46023,137], + [46025,72], + [46027,215], + [46029,472], + [46031,76], + [46033,168], + [46035,287], + [46037,143], + [46039,115], + [46041,264], + [46043,41], + [46045,55], + [46047,132], + [46049,29], + [46051,139], + [46053,65], + [46055,25], + [46057,105], + [46059,43], + [46061,60], + [46063,19], + [46065,238], + [46067,91], + [46069,20], + [46071,57], + [46073,25], + [46075,17], + [46077,81], + [46079,236], + [46081,416], + [46083,685], + [46085,84], + [46087,75], + [46089,37], + [46091,96], + [46093,422], + [46095,41], + [46097,29], + [46099,2871], + [46101,134], + [46102,"NA"], + [46103,1714], + [46105,50], + [46107,38], + [46109,211], + [46111,31], + [46115,102], + [46117,44], + [46119,22], + [46121,225], + [46123,82], + [46125,124], + [46127,272], + [46129,123], + [46135,302], + [46137,50], + [47001,1936], + [47003,1248], + [47005,518], + [47007,337], + [47009,3073], + [47011,2577], + [47013,1156], + [47015,338], + [47017,1007], + [47019,1514], + [47021,960], + [47023,481], + [47025,908], + [47027,265], + [47029,1116], + [47031,1340], + [47033,439], + [47035,1618], + [47037,15891], + [47039,370], + [47041,505], + [47043,1307], + [47045,1192], + [47047,1102], + [47049,509], + [47051,1014], + [47053,1547], + [47055,724], + [47057,606], + [47059,1971], + [47061,376], + [47063,1638], + [47065,8865], + [47067,199], + [47069,696], + [47071,736], + [47073,1500], + [47075,637], + [47077,977], + [47079,906], + [47081,585], + [47083,275], + [47085,571], + [47087,350], + [47089,1486], + [47091,410], + [47093,10645], + [47095,168], + [47097,847], + [47099,1166], + [47101,350], + [47103,727], + [47105,1225], + [47107,1429], + [47109,742], + [47111,527], + [47113,2731], + [47115,788], + [47117,824], + [47119,2167], + [47121,369], + [47123,1192], + [47125,4558], + [47127,149], + [47129,575], + [47131,1073], + [47133,647], + [47135,209], + [47137,182], + [47139,480], + [47141,1890], + [47143,965], + [47145,1458], + [47147,1646], + [47149,6957], + [47151,751], + [47153,374], + [47155,2993], + [47157,27531], + [47159,475], + [47161,394], + [47163,3986], + [47165,4072], + [47167,1943], + [47169,217], + [47171,559], + [47173,490], + [47175,164], + [47177,996], + [47179,3206], + [47181,457], + [47183,1054], + [47185,690], + [47187,4301], + [47189,2953], + [48001,896], + [48003,323], + [48005,2086], + [48007,508], + [48009,182], + [48011,26], + [48013,976], + [48015,644], + [48017,120], + [48019,364], + [48021,1454], + [48023,57], + [48025,641], + [48027,6323], + [48029,33421], + [48031,180], + [48033,12], + [48035,361], + [48037,1876], + [48039,7626], + [48041,3592], + [48043,154], + [48045,23], + [48047,258], + [48049,685], + [48051,337], + [48053,770], + [48055,755], + [48057,451], + [48059,244], + [48061,11582], + [48063,312], + [48065,98], + [48067,824], + [48069,122], + [48071,948], + [48073,1077], + [48075,89], + [48077,215], + [48079,67], + [48081,56], + [48083,169], + [48085,17705], + [48087,47], + [48089,390], + [48091,2267], + [48093,227], + [48095,45], + [48097,728], + [48099,1166], + [48101,39], + [48103,105], + [48105,114], + [48107,114], + [48109,43], + [48111,87], + [48113,53918], + [48115,216], + [48117,276], + [48119,118], + [48121,15206], + [48123,400], + [48125,32], + [48127,331], + [48129,66], + [48131,423], + [48133,379], + [48135,3697], + [48137,40], + [48139,3181], + [48141,17614], + [48143,790], + [48145,273], + [48147,629], + [48149,423], + [48151,69], + [48153,152], + [48155,22], + [48157,15132], + [48159,222], + [48161,401], + [48163,375], + [48165,304], + [48167,7854], + [48169,78], + [48171,363], + [48173,23], + [48175,153], + [48177,355], + [48179,520], + [48181,2411], + [48183,2928], + [48185,611], + [48187,2569], + [48189,816], + [48191,64], + [48193,162], + [48195,92], + [48197,79], + [48199,1406], + [48201,103503], + [48203,1625], + [48205,64], + [48207,90], + [48209,3368], + [48211,72], + [48213,1666], + [48215,26154], + [48217,709], + [48219,486], + [48221,1105], + [48223,714], + [48225,442], + [48227,614], + [48229,72], + [48231,1833], + [48233,431], + [48235,29], + [48237,172], + [48239,276], + [48241,1035], + [48243,35], + [48245,7506], + [48247,146], + [48249,1515], + [48251,3255], + [48253,310], + [48255,271], + [48257,2237], + [48259,627], + [48261,9], + [48263,13], + [48265,777], + [48267,72], + [48269,7], + [48271,75], + [48273,848], + [48275,63], + [48277,1057], + [48279,491], + [48281,397], + [48283,177], + [48285,333], + [48287,330], + [48289,369], + [48291,2131], + [48293,429], + [48295,67], + [48297,236], + [48299,345], + [48301,4], + [48303,5080], + [48305,111], + [48307,188], + [48309,4568], + [48311,20], + [48313,219], + [48315,286], + [48317,90], + [48319,69], + [48321,1156], + [48323,2513], + [48325,891], + [48327,44], + [48329,3053], + [48331,529], + [48333,73], + [48335,154], + [48337,411], + [48339,10939], + [48341,346], + [48343,466], + [48345,17], + [48347,1318], + [48349,960], + [48351,403], + [48353,279], + [48355,8171], + [48357,224], + [48359,27], + [48361,2425], + [48363,684], + [48365,603], + [48367,2469], + [48369,117], + [48371,354], + [48373,1030], + [48375,1870], + [48377,331], + [48379,246], + [48381,1996], + [48383,87], + [48385,54], + [48387,308], + [48389,272], + [48391,175], + [48393,18], + [48395,345], + [48397,1681], + [48399,173], + [48401,1085], + [48403,325], + [48405,253], + [48407,632], + [48409,1966], + [48411,82], + [48413,79], + [48415,338], + [48417,59], + [48419,597], + [48421,39], + [48423,4630], + [48425,206], + [48427,3479], + [48429,172], + [48431,25], + [48433,29], + [48435,104], + [48437,130], + [48439,41169], + [48441,2319], + [48443,21], + [48445,252], + [48447,25], + [48449,735], + [48451,2233], + [48453,21463], + [48455,322], + [48457,515], + [48459,942], + [48461,70], + [48463,587], + [48465,1173], + [48467,1086], + [48469,1895], + [48471,1160], + [48473,1037], + [48475,253], + [48477,730], + [48479,5281], + [48481,935], + [48483,109], + [48485,2366], + [48487,246], + [48489,878], + [48491,9097], + [48493,870], + [48495,176], + [48497,1327], + [48499,886], + [48501,152], + [48503,360], + [48505,472], + [48507,425], + [49001,118], + [49003,888], + [49005,1845], + [49007,497], + [49009,22], + [49011,5425], + [49013,665], + [49015,268], + [49017,247], + [49019,342], + [49021,906], + [49023,196], + [49025,161], + [49027,215], + [49029,154], + [49031,30], + [49033,38], + [49035,19863], + [49037,452], + [49039,473], + [49041,425], + [49043,765], + [49045,1227], + [49047,1044], + [49049,8694], + [49051,467], + [49053,2603], + [49055,129], + [49057,4819], + [50001,718], + [50003,783], + [50005,703], + [50007,2581], + [50009,159], + [50011,973], + [50013,157], + [50015,639], + [50017,545], + [50019,761], + [50021,1330], + [50023,1188], + [50025,836], + [50027,948], + [51001,865], + [51003,2105], + [51005,357], + [51007,277], + [51009,730], + [51011,344], + [51013,4065], + [51015,1503], + [51017,103], + [51019,1697], + [51021,158], + [51023,729], + [51025,431], + [51027,790], + [51029,373], + [51031,1241], + [51033,751], + [51035,698], + [51036,198], + [51037,300], + [51041,7667], + [51043,296], + [51045,131], + [51047,1005], + [51049,235], + [51051,496], + [51053,722], + [51057,297], + [51059,21916], + [51061,1411], + [51063,330], + [51065,496], + [51067,1235], + [51069,1771], + [51071,412], + [51073,778], + [51075,444], + [51077,417], + [51079,367], + [51081,225], + [51083,967], + [51085,2181], + [51087,7604], + [51089,1433], + [51091,47], + [51093,860], + [51095,1486], + [51097,175], + [51099,574], + [51101,368], + [51103,339], + [51105,620], + [51107,7136], + [51109,797], + [51111,270], + [51113,246], + [51115,171], + [51117,766], + [51119,211], + [51121,2151], + [51125,296], + [51127,428], + [51131,373], + [51133,334], + [51135,323], + [51137,738], + [51139,802], + [51141,414], + [51143,1597], + [51145,533], + [51147,629], + [51149,804], + [51153,9564], + [51155,826], + [51157,155], + [51159,178], + [51161,1928], + [51163,486], + [51165,1651], + [51167,750], + [51169,490], + [51171,899], + [51173,878], + [51175,369], + [51177,2960], + [51179,2975], + [51181,188], + [51183,279], + [51185,1230], + [51187,935], + [51191,1295], + [51193,481], + [51195,1142], + [51197,741], + [51199,1373], + [51510,3099], + [51520,403], + [51530,167], + [51540,910], + [51550,5284], + [51570,409], + [51580,146], + [51590,1382], + [51595,156], + [51600,448], + [51610,239], + [51620,242], + [51630,715], + [51640,162], + [51650,3864], + [51660,1268], + [51670,729], + [51678,154], + [51680,1994], + [51683,897], + [51685,349], + [51690,471], + [51700,4835], + [51710,6174], + [51720,121], + [51730,1240], + [51735,240], + [51740,2759], + [51750,469], + [51760,5884], + [51770,2394], + [51775,564], + [51790,514], + [51800,2100], + [51810,9817], + [51820,479], + [51830,422], + [51840,623], + [53001,600], + [53003,467], + [53005,6169], + [53007,2390], + [53009,2188], + [53011,13868], + [53013,112], + [53015,3427], + [53017,1273], + [53019,254], + [53021,2979], + [53023,58], + [53025,3279], + [53027,2454], + [53029,1953], + [53031,803], + [53033,50460], + [53035,6445], + [53037,1303], + [53039,683], + [53041,2644], + [53043,287], + [53045,1813], + [53047,1483], + [53049,733], + [53051,447], + [53053,25349], + [53055,375], + [53057,3870], + [53059,370], + [53061,18760], + [53063,14952], + [53065,1565], + [53067,7560], + [53069,117], + [53071,1659], + [53073,6249], + [53075,1113], + [53077,9900], + [54001,510], + [54003,2641], + [54005,795], + [54007,487], + [54009,739], + [54011,2242], + [54013,344], + [54015,365], + [54017,201], + [54019,1396], + [54021,211], + [54023,437], + [54025,1006], + [54027,539], + [54029,1012], + [54031,408], + [54033,2006], + [54035,858], + [54037,1140], + [54039,5163], + [54041,575], + [54043,716], + [54045,1288], + [54047,681], + [54049,1784], + [54051,1189], + [54053,849], + [54055,1592], + [54057,852], + [54059,951], + [54061,2373], + [54063,320], + [54065,410], + [54067,898], + [54069,1158], + [54071,166], + [54073,253], + [54075,292], + [54077,912], + [54079,1428], + [54081,2240], + [54083,834], + [54085,314], + [54087,600], + [54089,318], + [54091,463], + [54093,209], + [54095,342], + [54097,775], + [54099,1106], + [54101,262], + [54103,716], + [54105,233], + [54107,2333], + [54109,745], + [55001,605], + [55003,495], + [55005,1220], + [55007,626], + [55009,5672], + [55011,320], + [55013,510], + [55015,980], + [55017,1562], + [55019,762], + [55021,1370], + [55023,462], + [55025,9905], + [55027,2097], + [55029,1030], + [55031,1158], + [55033,1069], + [55035,2215], + [55037,149], + [55039,2325], + [55041,299], + [55043,1234], + [55045,804], + [55047,541], + [55049,581], + [55051,230], + [55053,493], + [55055,1933], + [55057,694], + [55059,4463], + [55061,446], + [55063,2570], + [55065,358], + [55067,577], + [55069,763], + [55071,2106], + [55073,2956], + [55075,1204], + [55077,460], + [55078,155], + [55079,27436], + [55081,1017], + [55083,1049], + [55085,1075], + [55087,4041], + [55089,1780], + [55091,172], + [55093,948], + [55095,1188], + [55097,1815], + [55099,305], + [55101,5581], + [55103,390], + [55105,4323], + [55107,382], + [55109,1869], + [55111,1449], + [55113,619], + [55115,1037], + [55117,2311], + [55119,471], + [55121,650], + [55123,636], + [55125,701], + [55127,2642], + [55129,427], + [55131,2852], + [55133,8412], + [55135,1258], + [55137,723], + [55139,3877], + [55141,1896], + [56001,654], + [56003,248], + [56005,1023], + [56007,316], + [56009,306], + [56011,130], + [56013,1129], + [56015,234], + [56017,101], + [56019,207], + [56021,1939], + [56023,399], + [56025,2113], + [56027,40], + [56029,682], + [56031,194], + [56033,679], + [56035,240], + [56037,1078], + [56039,573], + [56041,487], + [56043,180], + [56045,136] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2016.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2016.json new file mode 100644 index 0000000..5c9be37 --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2016"], + [1001,1325], + [1003,4844], + [1005,702], + [1007,557], + [1009,1328], + [1011,331], + [1013,637], + [1015,3003], + [1017,820], + [1019,575], + [1021,1055], + [1023,369], + [1025,866], + [1027,335], + [1029,347], + [1031,1211], + [1033,1633], + [1035,384], + [1037,262], + [1039,1049], + [1041,379], + [1043,1888], + [1045,1157], + [1047,1424], + [1049,1776], + [1051,1775], + [1053,969], + [1055,2560], + [1057,445], + [1059,817], + [1061,626], + [1063,286], + [1065,459], + [1067,439], + [1069,2584], + [1071,1491], + [1073,17877], + [1075,321], + [1077,2711], + [1079,949], + [1081,3792], + [1083,2140], + [1085,402], + [1087,600], + [1089,8915], + [1091,549], + [1093,829], + [1095,2222], + [1097,12470], + [1099,664], + [1101,6004], + [1103,3040], + [1105,358], + [1107,534], + [1109,973], + [1111,527], + [1113,1307], + [1115,2030], + [1117,4720], + [1119,394], + [1121,2300], + [1123,1038], + [1125,5613], + [1127,1905], + [1129,582], + [1131,407], + [1133,677], + [2013,70], + [2016,133], + [2020,8656], + [2050,1042], + [2060,29], + [2068,100], + [2070,202], + [2090,2758], + [2100,111], + [2105,144], + [2110,785], + [2122,2338], + [2130,463], + [2150,334], + [2158,"NA"], + [2164,83], + [2170,3940], + [2180,524], + [2185,271], + [2188,479], + [2195,132], + [2198,340], + [2220,204], + [2230,91], + [2240,325], + [2261,417], + [2275,80], + [2282,21], + [2290,437], + [4001,2316], + [4003,3072], + [4005,4436], + [4007,1509], + [4009,962], + [4011,294], + [4012,508], + [4013,94571], + [4015,5295], + [4017,3392], + [4019,23142], + [4021,9029], + [4023,1914], + [4025,4872], + [4027,17605], + [5001,314], + [5003,484], + [5005,687], + [5007,3711], + [5009,583], + [5011,225], + [5013,109], + [5015,455], + [5017,235], + [5019,413], + [5021,339], + [5023,560], + [5025,150], + [5027,527], + [5029,481], + [5031,1686], + [5033,1045], + [5035,973], + [5037,347], + [5039,144], + [5041,295], + [5043,451], + [5045,2291], + [5047,295], + [5049,201], + [5051,1716], + [5053,297], + [5055,845], + [5057,374], + [5059,552], + [5061,194], + [5063,789], + [5065,277], + [5067,376], + [5069,1579], + [5071,498], + [5073,150], + [5075,297], + [5077,145], + [5079,196], + [5081,260], + [5083,417], + [5085,1107], + [5087,232], + [5089,259], + [5091,829], + [5093,1219], + [5095,138], + [5097,160], + [5099,134], + [5101,132], + [5103,495], + [5105,198], + [5107,390], + [5109,178], + [5111,431], + [5113,397], + [5115,1340], + [5117,139], + [5119,6612], + [5121,299], + [5123,457], + [5125,1766], + [5127,164], + [5129,136], + [5131,2135], + [5133,275], + [5135,327], + [5137,243], + [5139,889], + [5141,418], + [5143,3244], + [5145,1762], + [5147,162], + [5149,386], + [6001,35809], + [6003,36], + [6005,868], + [6007,6741], + [6009,1184], + [6011,1705], + [6013,24842], + [6015,737], + [6017,4576], + [6019,42409], + [6021,1083], + [6023,3087], + [6025,18204], + [6027,470], + [6029,40449], + [6031,5720], + [6033,1960], + [6035,721], + [6037,265433], + [6039,5663], + [6041,4596], + [6043,521], + [6045,2097], + [6047,12138], + [6049,258], + [6051,450], + [6053,16811], + [6055,3143], + [6057,2311], + [6059,64775], + [6061,8086], + [6063,766], + [6065,64477], + [6067,37651], + [6069,2037], + [6071,53869], + [6073,74114], + [6075,18358], + [6077,25970], + [6079,6043], + [6081,13522], + [6083,10936], + [6085,38902], + [6087,10043], + [6089,5192], + [6091,102], + [6093,1527], + [6095,11449], + [6097,10348], + [6099,20985], + [6101,4375], + [6103,1792], + [6105,355], + [6107,22810], + [6109,1347], + [6111,22278], + [6113,6271], + [6115,2433], + [8001,9056], + [8003,322], + [8005,10494], + [8007,207], + [8009,35], + [8011,56], + [8013,4802], + [8014,1058], + [8015,233], + [8017,24], + [8019,180], + [8021,183], + [8023,83], + [8025,50], + [8027,63], + [8029,684], + [8031,11904], + [8033,42], + [8035,4711], + [8037,922], + [8039,356], + [8041,11758], + [8043,758], + [8045,1078], + [8047,83], + [8049,246], + [8051,232], + [8053,11], + [8055,158], + [8057,24], + [8059,9275], + [8061,17], + [8063,96], + [8065,131], + [8067,886], + [8069,5232], + [8071,312], + [8073,58], + [8075,322], + [8077,3824], + [8079,10], + [8081,284], + [8083,630], + [8085,827], + [8087,517], + [8089,381], + [8091,81], + [8093,273], + [8095,49], + [8097,360], + [8099,193], + [8101,3481], + [8103,137], + [8105,254], + [8107,388], + [8109,157], + [8111,17], + [8113,168], + [8115,27], + [8117,435], + [8119,434], + [8121,62], + [8123,5098], + [8125,115], + [9001,23546], + [9003,25602], + [9005,4981], + [9007,4130], + [9009,25312], + [9011,7030], + [9013,3861], + [9015,3519], + [10001,3814], + [10003,13066], + [10005,4567], + [11001,24065], + [12001,5658], + [12003,555], + [12005,4180], + [12007,461], + [12009,13393], + [12011,44973], + [12013,286], + [12015,3679], + [12017,3208], + [12019,4527], + [12021,7877], + [12023,1446], + [12027,708], + [12029,307], + [12031,22896], + [12033,6959], + [12035,2483], + [12037,204], + [12039,1137], + [12041,333], + [12043,293], + [12045,276], + [12047,263], + [12049,612], + [12051,1308], + [12053,4089], + [12055,2329], + [12057,31164], + [12059,362], + [12061,3731], + [12063,902], + [12065,282], + [12067,128], + [12069,7072], + [12071,15164], + [12073,6786], + [12075,858], + [12077,135], + [12079,384], + [12081,7742], + [12083,7657], + [12085,3422], + [12086,70803], + [12087,1474], + [12089,1694], + [12091,3735], + [12093,927], + [12095,30576], + [12097,8116], + [12099,33219], + [12101,11375], + [12103,20708], + [12105,15804], + [12107,1711], + [12109,4474], + [12111,7789], + [12113,3424], + [12115,8192], + [12117,10313], + [12119,2098], + [12121,888], + [12123,476], + [12125,207], + [12127,12388], + [12129,589], + [12131,1239], + [12133,496], + [13001,585], + [13003,208], + [13005,261], + [13007,91], + [13009,1206], + [13011,428], + [13013,1776], + [13015,2466], + [13017,455], + [13019,441], + [13021,4082], + [13023,356], + [13025,477], + [13027,367], + [13029,822], + [13031,2057], + [13033,712], + [13035,584], + [13037,122], + [13039,1171], + [13043,242], + [13045,3211], + [13047,1553], + [13049,267], + [13051,7125], + [13053,170], + [13055,657], + [13057,5354], + [13059,3236], + [13061,92], + [13063,8622], + [13065,171], + [13067,18812], + [13069,1051], + [13071,1107], + [13073,3298], + [13075,407], + [13077,3496], + [13079,334], + [13081,554], + [13083,404], + [13085,529], + [13087,762], + [13089,20602], + [13091,509], + [13093,286], + [13095,2608], + [13097,3896], + [13099,302], + [13101,81], + [13103,1368], + [13105,500], + [13107,652], + [13109,235], + [13111,578], + [13113,2621], + [13115,2609], + [13117,4621], + [13119,512], + [13121,28548], + [13123,671], + [13125,76], + [13127,2076], + [13129,1414], + [13131,556], + [13133,398], + [13135,22207], + [13137,1018], + [13139,4328], + [13141,212], + [13143,704], + [13145,783], + [13147,591], + [13149,296], + [13151,5983], + [13153,3613], + [13155,252], + [13157,1417], + [13159,314], + [13161,395], + [13163,486], + [13165,239], + [13167,239], + [13169,662], + [13171,517], + [13173,221], + [13175,1266], + [13177,682], + [13179,1462], + [13181,205], + [13183,400], + [13185,2703], + [13187,763], + [13189,642], + [13191,350], + [13193,386], + [13195,646], + [13197,247], + [13199,600], + [13201,149], + [13205,562], + [13207,672], + [13209,277], + [13211,439], + [13213,1108], + [13215,5318], + [13217,2990], + [13219,755], + [13221,336], + [13223,3677], + [13225,800], + [13227,701], + [13229,452], + [13231,435], + [13233,1108], + [13235,236], + [13237,559], + [13239,59], + [13241,395], + [13243,208], + [13245,5721], + [13247,2503], + [13249,133], + [13251,394], + [13253,243], + [13255,1907], + [13257,648], + [13259,136], + [13261,971], + [13263,183], + [13265,38], + [13267,499], + [13269,248], + [13271,402], + [13273,237], + [13275,1092], + [13277,997], + [13279,919], + [13281,279], + [13283,210], + [13285,1874], + [13287,209], + [13289,256], + [13291,494], + [13293,717], + [13295,1666], + [13297,2129], + [13299,835], + [13301,187], + [13303,454], + [13305,773], + [13307,83], + [13309,156], + [13311,670], + [13313,2732], + [13315,196], + [13317,245], + [13319,231], + [13321,531], + [15001,3351], + [15003,12982], + [15005,"NA"], + [15007,1152], + [15009,2651], + [16001,7392], + [16003,121], + [16005,1458], + [16007,127], + [16009,236], + [16011,799], + [16013,371], + [16015,164], + [16017,1017], + [16019,1657], + [16021,267], + [16023,53], + [16025,24], + [16027,4052], + [16029,135], + [16031,343], + [16033,13], + [16035,222], + [16037,109], + [16039,452], + [16041,202], + [16043,246], + [16045,361], + [16047,244], + [16049,358], + [16051,394], + [16053,355], + [16055,3424], + [16057,627], + [16059,209], + [16061,102], + [16063,117], + [16065,494], + [16067,345], + [16069,681], + [16071,79], + [16073,240], + [16075,519], + [16077,160], + [16079,361], + [16081,192], + [16083,1339], + [16085,269], + [16087,253], + [17001,1528], + [17003,203], + [17005,399], + [17007,1655], + [17009,95], + [17011,1037], + [17013,145], + [17015,439], + [17017,342], + [17019,5315], + [17021,964], + [17023,469], + [17025,452], + [17027,902], + [17029,1428], + [17031,162335], + [17033,556], + [17035,307], + [17037,2913], + [17039,447], + [17041,479], + [17043,24520], + [17045,574], + [17047,171], + [17049,873], + [17051,636], + [17053,357], + [17055,1335], + [17057,1154], + [17059,189], + [17061,348], + [17063,1742], + [17065,264], + [17067,569], + [17069,134], + [17071,224], + [17073,1503], + [17075,805], + [17077,1527], + [17079,288], + [17081,1112], + [17083,638], + [17085,605], + [17087,363], + [17089,14789], + [17091,3496], + [17093,3497], + [17095,1395], + [17097,19253], + [17099,3817], + [17101,453], + [17103,913], + [17105,910], + [17107,687], + [17109,870], + [17111,8856], + [17113,4524], + [17115,3294], + [17117,1375], + [17119,7863], + [17121,1137], + [17123,369], + [17125,454], + [17127,422], + [17129,312], + [17131,505], + [17133,742], + [17135,850], + [17137,827], + [17139,336], + [17141,1506], + [17143,5998], + [17145,611], + [17147,418], + [17149,379], + [17151,120], + [17153,184], + [17155,172], + [17157,720], + [17159,441], + [17161,4466], + [17163,7630], + [17165,848], + [17167,5112], + [17169,187], + [17171,141], + [17173,588], + [17175,199], + [17177,1239], + [17179,4175], + [17181,551], + [17183,2499], + [17185,356], + [17187,453], + [17189,359], + [17191,614], + [17193,446], + [17195,1645], + [17197,21774], + [17199,1964], + [17201,9301], + [17203,1049], + [18001,610], + [18003,7700], + [18005,1504], + [18007,193], + [18009,285], + [18011,1175], + [18013,302], + [18015,428], + [18017,837], + [18019,2518], + [18021,578], + [18023,666], + [18025,282], + [18027,564], + [18029,1205], + [18031,517], + [18033,870], + [18035,2821], + [18037,727], + [18039,3773], + [18041,537], + [18043,1675], + [18045,462], + [18047,498], + [18049,463], + [18051,695], + [18053,1580], + [18055,897], + [18057,5582], + [18059,1463], + [18061,838], + [18063,2992], + [18065,1020], + [18067,1772], + [18069,756], + [18071,816], + [18073,880], + [18075,450], + [18077,711], + [18079,629], + [18081,2912], + [18083,832], + [18085,1551], + [18087,669], + [18089,14671], + [18091,2857], + [18093,1169], + [18095,2969], + [18097,21513], + [18099,910], + [18101,210], + [18103,759], + [18105,3154], + [18107,736], + [18109,1530], + [18111,393], + [18113,945], + [18115,159], + [18117,449], + [18119,514], + [18121,378], + [18123,431], + [18125,275], + [18127,4410], + [18129,530], + [18131,285], + [18133,747], + [18135,569], + [18137,643], + [18139,337], + [18141,6063], + [18143,508], + [18145,915], + [18147,450], + [18149,588], + [18151,734], + [18153,510], + [18155,243], + [18157,3825], + [18159,328], + [18161,147], + [18163,3827], + [18165,478], + [18167,2657], + [18169,659], + [18171,198], + [18173,1310], + [18175,625], + [18177,1480], + [18179,504], + [18181,542], + [18183,669], + [19001,125], + [19003,58], + [19005,379], + [19007,291], + [19009,108], + [19011,490], + [19013,3205], + [19015,421], + [19017,496], + [19019,460], + [19021,405], + [19023,349], + [19025,170], + [19027,288], + [19029,237], + [19031,360], + [19033,829], + [19035,229], + [19037,284], + [19039,163], + [19041,336], + [19043,437], + [19045,1173], + [19047,460], + [19049,1205], + [19051,182], + [19053,141], + [19055,371], + [19057,988], + [19059,442], + [19061,1944], + [19063,238], + [19065,475], + [19067,317], + [19069,206], + [19071,131], + [19073,177], + [19075,229], + [19077,202], + [19079,269], + [19081,172], + [19083,334], + [19085,251], + [19087,339], + [19089,191], + [19091,156], + [19093,103], + [19095,328], + [19097,463], + [19099,683], + [19101,336], + [19103,2182], + [19105,457], + [19107,228], + [19109,233], + [19111,1053], + [19113,4354], + [19115,239], + [19117,139], + [19119,144], + [19121,292], + [19123,438], + [19125,525], + [19127,935], + [19129,269], + [19131,154], + [19133,193], + [19135,182], + [19137,180], + [19139,853], + [19141,231], + [19143,96], + [19145,324], + [19147,154], + [19149,383], + [19151,123], + [19153,8912], + [19155,1636], + [19157,358], + [19159,91], + [19161,165], + [19163,3920], + [19165,200], + [19167,474], + [19169,1332], + [19171,408], + [19173,95], + [19175,247], + [19177,141], + [19179,1038], + [19181,865], + [19183,361], + [19185,107], + [19187,815], + [19189,180], + [19191,424], + [19193,1982], + [19195,146], + [19197,275], + [20001,359], + [20003,180], + [20005,437], + [20007,93], + [20009,628], + [20011,346], + [20013,187], + [20015,1343], + [20017,49], + [20019,80], + [20021,456], + [20023,38], + [20025,31], + [20027,164], + [20029,175], + [20031,265], + [20033,30], + [20035,747], + [20037,914], + [20039,51], + [20041,406], + [20043,165], + [20045,2307], + [20047,50], + [20049,59], + [20051,525], + [20053,109], + [20055,621], + [20057,565], + [20059,596], + [20061,679], + [20063,35], + [20065,54], + [20067,135], + [20069,77], + [20071,19], + [20073,162], + [20075,44], + [20077,103], + [20079,727], + [20081,60], + [20083,27], + [20085,251], + [20087,397], + [20089,57], + [20091,10690], + [20093,65], + [20095,155], + [20097,39], + [20099,578], + [20101,25], + [20103,1540], + [20105,60], + [20107,279], + [20109,44], + [20111,690], + [20113,515], + [20115,241], + [20117,168], + [20119,64], + [20121,707], + [20123,122], + [20125,979], + [20127,117], + [20129,52], + [20131,158], + [20133,434], + [20135,49], + [20137,70], + [20139,355], + [20141,70], + [20143,120], + [20145,106], + [20147,90], + [20149,423], + [20151,207], + [20153,37], + [20155,1325], + [20157,70], + [20159,211], + [20161,1182], + [20163,126], + [20165,69], + [20167,150], + [20169,1122], + [20171,71], + [20173,11493], + [20175,445], + [20177,3677], + [20179,35], + [20181,97], + [20183,65], + [20185,77], + [20187,30], + [20189,115], + [20191,463], + [20193,120], + [20195,59], + [20197,132], + [20199,23], + [20201,101], + [20203,28], + [20205,247], + [20207,93], + [20209,4253], + [21001,471], + [21003,384], + [21005,464], + [21007,327], + [21009,893], + [21011,353], + [21013,800], + [21015,2573], + [21017,474], + [21019,1511], + [21021,614], + [21023,232], + [21025,371], + [21027,489], + [21029,1693], + [21031,283], + [21033,295], + [21035,851], + [21037,1873], + [21039,167], + [21041,258], + [21043,1055], + [21045,324], + [21047,1537], + [21049,823], + [21051,556], + [21053,283], + [21055,212], + [21057,164], + [21059,2099], + [21061,300], + [21063,243], + [21065,311], + [21067,6153], + [21069,371], + [21071,1302], + [21073,999], + [21075,144], + [21077,190], + [21079,367], + [21081,556], + [21083,956], + [21085,724], + [21087,226], + [21089,1209], + [21091,218], + [21093,2152], + [21095,893], + [21097,403], + [21099,376], + [21101,1034], + [21103,328], + [21105,116], + [21107,1129], + [21109,331], + [21111,17197], + [21113,1008], + [21115,727], + [21117,3498], + [21119,531], + [21121,796], + [21123,274], + [21125,1489], + [21127,554], + [21129,187], + [21131,379], + [21133,802], + [21135,470], + [21137,560], + [21139,267], + [21141,518], + [21143,176], + [21145,1683], + [21147,374], + [21149,209], + [21151,1895], + [21153,626], + [21155,398], + [21157,868], + [21159,320], + [21161,458], + [21163,627], + [21165,209], + [21167,481], + [21169,190], + [21171,195], + [21173,768], + [21175,362], + [21177,837], + [21179,994], + [21181,186], + [21183,641], + [21185,1090], + [21187,237], + [21189,110], + [21191,331], + [21193,932], + [21195,2214], + [21197,357], + [21199,1387], + [21201,50], + [21203,411], + [21205,631], + [21207,519], + [21209,1069], + [21211,855], + [21213,377], + [21215,370], + [21217,610], + [21219,238], + [21221,328], + [21223,210], + [21225,421], + [21227,2437], + [21229,261], + [21231,562], + [21233,352], + [21235,886], + [21237,196], + [21239,477], + [22001,1809], + [22003,571], + [22005,3030], + [22007,773], + [22009,1107], + [22011,910], + [22013,430], + [22015,3059], + [22017,7070], + [22019,4910], + [22021,304], + [22023,167], + [22025,318], + [22027,397], + [22029,598], + [22031,800], + [22033,11948], + [22035,247], + [22037,467], + [22039,938], + [22041,659], + [22043,581], + [22045,2825], + [22047,965], + [22049,394], + [22051,11414], + [22053,816], + [22055,7007], + [22057,2718], + [22059,415], + [22061,1334], + [22063,3474], + [22065,343], + [22067,1028], + [22069,1123], + [22071,10542], + [22073,4347], + [22075,544], + [22077,645], + [22079,3525], + [22081,229], + [22083,626], + [22085,632], + [22087,1188], + [22089,1344], + [22091,336], + [22093,718], + [22095,1369], + [22097,2645], + [22099,1778], + [22101,2056], + [22103,5831], + [22105,3648], + [22107,159], + [22109,3406], + [22111,605], + [22113,1878], + [22115,1224], + [22117,1188], + [22119,1294], + [22121,704], + [22123,490], + [22125,275], + [22127,402], + [23001,1986], + [23003,1708], + [23005,4724], + [23007,646], + [23009,1318], + [23011,2269], + [23013,728], + [23015,629], + [23017,1229], + [23019,3340], + [23021,373], + [23023,570], + [23025,1321], + [23027,873], + [23029,777], + [23031,3753], + [24001,2030], + [24003,11622], + [24005,20838], + [24009,1894], + [24011,847], + [24013,3401], + [24015,2764], + [24017,3579], + [24019,992], + [24021,5055], + [24023,883], + [24025,5783], + [24027,5941], + [24029,501], + [24031,18910], + [24033,22382], + [24035,1045], + [24037,2339], + [24039,673], + [24041,824], + [24043,3887], + [24045,3158], + [24047,2353], + [24510,19184], + [25001,5488], + [25003,2900], + [25005,14303], + [25007,485], + [25009,16363], + [25011,1388], + [25013,11678], + [25015,3198], + [25017,27706], + [25019,314], + [25021,12601], + [25023,11053], + [25025,15145], + [25027,17682], + [26001,293], + [26003,269], + [26005,2388], + [26007,810], + [26009,710], + [26011,507], + [26013,265], + [26015,1234], + [26017,2824], + [26019,581], + [26021,3654], + [26023,921], + [26025,3092], + [26027,1142], + [26029,718], + [26031,1015], + [26033,1257], + [26035,874], + [26037,1497], + [26039,407], + [26041,1119], + [26043,649], + [26045,2347], + [26047,1145], + [26049,10294], + [26051,691], + [26053,389], + [26055,2119], + [26057,940], + [26059,1069], + [26061,1014], + [26063,827], + [26065,6399], + [26067,1254], + [26069,736], + [26071,336], + [26073,1662], + [26075,3606], + [26077,5354], + [26079,553], + [26081,12345], + [26083,81], + [26085,281], + [26087,2617], + [26089,514], + [26091,2175], + [26093,4096], + [26095,162], + [26097,511], + [26099,22692], + [26101,690], + [26103,1899], + [26105,831], + [26107,1073], + [26109,582], + [26111,1935], + [26113,418], + [26115,3301], + [26117,1472], + [26119,311], + [26121,4223], + [26123,1136], + [26125,27097], + [26127,903], + [26129,642], + [26131,188], + [26133,595], + [26135,213], + [26137,696], + [26139,5241], + [26141,505], + [26143,667], + [26145,4716], + [26147,4551], + [26149,1204], + [26151,1209], + [26153,309], + [26155,1761], + [26157,1518], + [26159,2041], + [26161,7017], + [26163,48780], + [26165,861], + [27001,494], + [27003,7171], + [27005,850], + [27007,1239], + [27009,963], + [27011,130], + [27013,1275], + [27015,610], + [27017,941], + [27019,1863], + [27021,966], + [27023,315], + [27025,1263], + [27027,1227], + [27029,453], + [27031,140], + [27033,400], + [27035,1625], + [27037,7997], + [27039,430], + [27041,709], + [27043,322], + [27045,465], + [27047,624], + [27049,1002], + [27051,154], + [27053,22913], + [27055,416], + [27057,640], + [27059,967], + [27061,1890], + [27063,276], + [27065,586], + [27067,921], + [27069,110], + [27071,524], + [27073,155], + [27075,346], + [27077,115], + [27079,761], + [27081,124], + [27083,541], + [27085,875], + [27087,138], + [27089,411], + [27091,431], + [27093,597], + [27095,760], + [27097,1004], + [27099,651], + [27101,235], + [27103,578], + [27105,433], + [27107,165], + [27109,2545], + [27111,1366], + [27113,521], + [27115,867], + [27117,187], + [27119,746], + [27121,224], + [27123,10209], + [27125,168], + [27127,342], + [27129,444], + [27131,1270], + [27133,137], + [27135,423], + [27137,5884], + [27139,2602], + [27141,2068], + [27143,364], + [27145,3360], + [27147,757], + [27149,170], + [27151,272], + [27153,610], + [27155,67], + [27157,444], + [27159,371], + [27161,407], + [27163,4648], + [27165,321], + [27167,121], + [27169,1040], + [27171,2827], + [27173,210], + [28001,932], + [28003,823], + [28005,332], + [28007,471], + [28009,205], + [28011,971], + [28013,332], + [28015,260], + [28017,467], + [28019,211], + [28021,352], + [28023,411], + [28025,652], + [28027,803], + [28029,736], + [28031,445], + [28033,3686], + [28035,1915], + [28037,205], + [28039,653], + [28041,313], + [28043,493], + [28045,1151], + [28047,4794], + [28049,5989], + [28051,658], + [28053,271], + [28055,56], + [28057,528], + [28059,3895], + [28061,475], + [28063,332], + [28065,345], + [28067,1580], + [28069,310], + [28071,1270], + [28073,1347], + [28075,1871], + [28077,333], + [28079,470], + [28081,1987], + [28083,940], + [28085,821], + [28087,1569], + [28089,2302], + [28091,674], + [28093,878], + [28095,987], + [28097,271], + [28099,616], + [28101,510], + [28103,328], + [28105,1254], + [28107,972], + [28109,1389], + [28111,311], + [28113,998], + [28115,683], + [28117,603], + [28119,256], + [28121,2972], + [28123,611], + [28125,151], + [28127,594], + [28129,355], + [28131,438], + [28133,776], + [28135,389], + [28137,706], + [28139,523], + [28141,453], + [28143,329], + [28145,605], + [28147,389], + [28149,1319], + [28151,1600], + [28153,552], + [28155,245], + [28157,289], + [28159,505], + [28161,307], + [28163,683], + [29001,590], + [29003,374], + [29005,130], + [29007,474], + [29009,684], + [29011,279], + [29013,438], + [29015,441], + [29017,286], + [29019,3239], + [29021,1912], + [29023,1078], + [29025,211], + [29027,895], + [29029,1086], + [29031,1772], + [29033,257], + [29035,181], + [29037,2267], + [29039,290], + [29041,168], + [29043,1705], + [29045,248], + [29047,5238], + [29049,466], + [29051,1408], + [29053,368], + [29055,578], + [29057,160], + [29059,383], + [29061,159], + [29063,221], + [29065,335], + [29067,310], + [29069,1059], + [29071,2303], + [29073,332], + [29075,134], + [29077,5650], + [29079,224], + [29081,168], + [29083,495], + [29085,208], + [29087,87], + [29089,223], + [29091,1024], + [29093,267], + [29095,18693], + [29097,2401], + [29099,5072], + [29101,1140], + [29103,72], + [29105,882], + [29107,743], + [29109,779], + [29111,232], + [29113,1224], + [29115,355], + [29117,288], + [29119,456], + [29121,364], + [29123,302], + [29125,197], + [29127,625], + [29129,89], + [29131,616], + [29133,414], + [29135,325], + [29137,202], + [29139,263], + [29141,469], + [29143,766], + [29145,1235], + [29147,508], + [29149,247], + [29151,246], + [29153,264], + [29155,626], + [29157,360], + [29159,1020], + [29161,928], + [29163,364], + [29165,2055], + [29167,693], + [29169,788], + [29171,112], + [29173,226], + [29175,552], + [29177,549], + [29179,174], + [29181,378], + [29183,7777], + [29185,246], + [29186,419], + [29187,1449], + [29189,22442], + [29195,503], + [29197,122], + [29199,102], + [29201,1146], + [29203,245], + [29205,129], + [29207,855], + [29209,940], + [29211,160], + [29213,1949], + [29215,585], + [29217,467], + [29219,733], + [29221,657], + [29223,303], + [29225,833], + [29227,36], + [29229,451], + [29510,8602], + [30001,168], + [30003,401], + [30005,108], + [30007,125], + [30009,213], + [30011,19], + [30013,1500], + [30015,94], + [30017,220], + [30019,24], + [30021,177], + [30023,201], + [30025,66], + [30027,226], + [30029,2565], + [30031,1748], + [30033,22], + [30035,498], + [30037,17], + [30039,96], + [30041,336], + [30043,261], + [30045,32], + [30047,619], + [30049,1161], + [30051,31], + [30053,714], + [30055,20], + [30057,167], + [30059,37], + [30061,128], + [30063,2298], + [30065,117], + [30067,360], + [30069,13], + [30071,103], + [30073,120], + [30075,25], + [30077,144], + [30079,17], + [30081,935], + [30083,308], + [30085,249], + [30087,225], + [30089,368], + [30091,64], + [30093,735], + [30095,191], + [30097,55], + [30099,102], + [30101,77], + [30103,15], + [30105,149], + [30107,40], + [30109,20], + [30111,2918], + [31001,523], + [31003,94], + [31005,13], + [31007,14], + [31009,12], + [31011,79], + [31013,204], + [31015,33], + [31017,51], + [31019,683], + [31021,131], + [31023,149], + [31025,443], + [31027,117], + [31029,47], + [31031,79], + [31033,154], + [31035,104], + [31037,157], + [31039,136], + [31041,149], + [31043,454], + [31045,154], + [31047,385], + [31049,28], + [31051,102], + [31053,588], + [31055,9570], + [31057,26], + [31059,88], + [31061,45], + [31063,45], + [31065,76], + [31067,365], + [31069,39], + [31071,29], + [31073,27], + [31075,10], + [31077,38], + [31079,1154], + [31081,130], + [31083,44], + [31085,14], + [31087,47], + [31089,145], + [31091,14], + [31093,109], + [31095,101], + [31097,66], + [31099,88], + [31101,134], + [31103,13], + [31105,80], + [31107,145], + [31109,4697], + [31111,576], + [31113,14], + [31115,14], + [31117,11], + [31119,528], + [31121,146], + [31123,84], + [31125,55], + [31127,131], + [31129,69], + [31131,281], + [31133,37], + [31135,39], + [31137,124], + [31139,109], + [31141,591], + [31143,76], + [31145,169], + [31147,137], + [31149,23], + [31151,227], + [31153,2684], + [31155,334], + [31157,660], + [31159,251], + [31161,78], + [31163,55], + [31165,21], + [31167,90], + [31169,71], + [31171,15], + [31173,145], + [31175,59], + [31177,355], + [31179,150], + [31181,54], + [31183,12], + [31185,199], + [32001,581], + [32003,61676], + [32005,1262], + [32007,1214], + [32009,24], + [32011,46], + [32013,445], + [32015,197], + [32017,106], + [32019,1610], + [32021,129], + [32023,1186], + [32027,147], + [32029,121], + [32031,11609], + [32033,210], + [32510,1516], + [33001,885], + [33003,695], + [33005,1128], + [33007,549], + [33009,1145], + [33011,6970], + [33013,2079], + [33015,5464], + [33017,1835], + [33019,546], + [34001,9203], + [34003,20289], + [34005,10386], + [34007,14058], + [34009,4638], + [34011,5022], + [34013,22389], + [34015,7625], + [34017,17011], + [34019,2451], + [34021,8692], + [34023,19568], + [34025,14713], + [34027,10218], + [34029,14153], + [34031,15226], + [34033,1942], + [34035,7090], + [34037,3576], + [34039,14405], + [34041,2614], + [35001,18843], + [35003,97], + [35005,1867], + [35006,757], + [35007,348], + [35009,1102], + [35011,39], + [35013,6801], + [35015,1851], + [35017,797], + [35019,108], + [35021,19], + [35023,121], + [35025,2538], + [35027,510], + [35028,370], + [35029,1553], + [35031,2265], + [35033,193], + [35035,1530], + [35037,216], + [35039,1243], + [35041,456], + [35043,4190], + [35045,4722], + [35047,846], + [35049,3856], + [35051,341], + [35053,486], + [35055,1249], + [35057,498], + [35059,75], + [35061,2139], + [36001,6465], + [36003,1274], + [36005,43950], + [36007,4691], + [36009,2093], + [36011,1868], + [36013,3278], + [36015,2085], + [36017,1164], + [36019,1932], + [36021,1166], + [36023,1317], + [36025,1068], + [36027,5995], + [36029,22050], + [36031,926], + [36033,1128], + [36035,1337], + [36037,1373], + [36039,1043], + [36041,154], + [36043,1548], + [36045,2870], + [36047,65792], + [36049,793], + [36051,1542], + [36053,1732], + [36055,17168], + [36057,1283], + [36059,27522], + [36061,42355], + [36063,5881], + [36065,4950], + [36067,10035], + [36069,2389], + [36071,7778], + [36073,1021], + [36075,3462], + [36077,1394], + [36079,2030], + [36081,53430], + [36083,3517], + [36085,11747], + [36087,6428], + [36089,2874], + [36091,4509], + [36093,3304], + [36095,803], + [36097,501], + [36099,742], + [36101,2527], + [36103,33961], + [36105,1637], + [36107,1188], + [36109,2107], + [36111,3922], + [36113,1690], + [36115,1329], + [36117,2205], + [36119,20609], + [36121,971], + [36123,520], + [37001,3738], + [37003,757], + [37005,243], + [37007,617], + [37009,599], + [37011,381], + [37013,1154], + [37015,557], + [37017,1005], + [37019,3204], + [37021,5183], + [37023,1936], + [37025,4618], + [37027,1861], + [37029,240], + [37031,1627], + [37033,527], + [37035,3634], + [37037,1460], + [37039,632], + [37041,358], + [37043,221], + [37045,2556], + [37047,1447], + [37049,2182], + [37051,8135], + [37053,667], + [37055,1350], + [37057,3827], + [37059,906], + [37061,1413], + [37063,7294], + [37065,1943], + [37067,8877], + [37069,1531], + [37071,5624], + [37073,266], + [37075,274], + [37077,1264], + [37079,503], + [37081,13510], + [37083,1637], + [37085,2976], + [37087,1294], + [37089,2227], + [37091,612], + [37093,1311], + [37095,200], + [37097,4058], + [37099,1022], + [37101,4281], + [37103,238], + [37105,1539], + [37107,1619], + [37109,1935], + [37111,1008], + [37113,818], + [37115,472], + [37117,662], + [37119,27610], + [37121,378], + [37123,605], + [37125,1979], + [37127,2885], + [37129,5472], + [37131,566], + [37133,3504], + [37135,3173], + [37137,285], + [37139,1092], + [37141,1418], + [37143,328], + [37145,987], + [37147,4909], + [37149,409], + [37151,3286], + [37153,1160], + [37155,4005], + [37157,2305], + [37159,3569], + [37161,1657], + [37163,1609], + [37165,1061], + [37167,1357], + [37169,1044], + [37171,1600], + [37173,434], + [37175,679], + [37177,129], + [37179,5092], + [37181,1286], + [37183,23878], + [37185,521], + [37187,361], + [37189,1256], + [37191,3117], + [37193,1445], + [37195,2969], + [37197,771], + [37199,386], + [38001,29], + [38003,179], + [38005,98], + [38007,13], + [38009,150], + [38011,40], + [38013,52], + [38015,1304], + [38017,2236], + [38019,56], + [38021,49], + [38023,44], + [38025,102], + [38027,55], + [38029,69], + [38031,50], + [38033,26], + [38035,913], + [38037,39], + [38039,33], + [38041,46], + [38043,52], + [38045,55], + [38047,33], + [38049,165], + [38051,38], + [38053,298], + [38055,176], + [38057,204], + [38059,546], + [38061,212], + [38063,52], + [38065,49], + [38067,183], + [38069,75], + [38071,174], + [38073,63], + [38075,50], + [38077,243], + [38079,538], + [38081,45], + [38083,41], + [38085,59], + [38087,11], + [38089,705], + [38091,23], + [38093,273], + [38095,29], + [38097,128], + [38099,213], + [38101,1378], + [38103,85], + [38105,984], + [39001,822], + [39003,2418], + [39005,1328], + [39007,2695], + [39009,1791], + [39011,917], + [39013,2311], + [39015,1128], + [39017,8522], + [39019,919], + [39021,894], + [39023,3327], + [39025,4609], + [39027,999], + [39029,3230], + [39031,1062], + [39033,1152], + [39035,34205], + [39037,1085], + [39039,906], + [39041,3783], + [39043,2049], + [39045,3277], + [39047,640], + [39049,27435], + [39051,1053], + [39053,826], + [39055,2208], + [39057,3521], + [39059,1336], + [39061,17901], + [39063,1527], + [39065,717], + [39067,532], + [39069,727], + [39071,1073], + [39073,726], + [39075,756], + [39077,1828], + [39079,1005], + [39081,2413], + [39083,1444], + [39085,6146], + [39087,1609], + [39089,3865], + [39091,976], + [39093,9196], + [39095,10891], + [39097,800], + [39099,6760], + [39101,1408], + [39103,4254], + [39105,763], + [39107,765], + [39109,2308], + [39111,591], + [39113,12326], + [39115,560], + [39117,846], + [39119,2391], + [39121,427], + [39123,1358], + [39125,408], + [39127,1012], + [39129,1263], + [39131,811], + [39133,4373], + [39135,999], + [39137,692], + [39139,2958], + [39141,1866], + [39143,1463], + [39145,2310], + [39147,1328], + [39149,998], + [39151,10158], + [39153,13874], + [39155,6115], + [39157,2586], + [39159,1061], + [39161,578], + [39163,384], + [39165,4761], + [39167,1938], + [39169,2437], + [39171,859], + [39173,2948], + [39175,470], + [40001,477], + [40003,99], + [40005,333], + [40007,90], + [40009,795], + [40011,162], + [40013,841], + [40015,632], + [40017,2773], + [40019,1178], + [40021,1062], + [40023,440], + [40025,35], + [40027,5324], + [40029,170], + [40031,2283], + [40033,138], + [40035,303], + [40037,1834], + [40039,693], + [40041,881], + [40043,109], + [40045,85], + [40047,1269], + [40049,681], + [40051,1298], + [40053,97], + [40055,162], + [40057,49], + [40059,73], + [40061,373], + [40063,401], + [40065,483], + [40067,194], + [40069,257], + [40071,1198], + [40073,280], + [40075,219], + [40077,322], + [40079,1364], + [40081,846], + [40083,875], + [40085,207], + [40087,781], + [40089,1061], + [40091,631], + [40093,165], + [40095,335], + [40097,992], + [40099,286], + [40101,1618], + [40103,204], + [40105,286], + [40107,278], + [40109,16113], + [40111,1162], + [40113,1213], + [40115,728], + [40117,498], + [40119,1448], + [40121,1085], + [40123,753], + [40125,1532], + [40127,356], + [40129,93], + [40131,2255], + [40133,654], + [40135,1056], + [40137,1810], + [40139,319], + [40141,147], + [40143,14847], + [40145,1748], + [40147,1171], + [40149,369], + [40151,168], + [40153,591], + [41001,436], + [41003,1830], + [41005,9218], + [41007,894], + [41009,1436], + [41011,1683], + [41013,644], + [41015,608], + [41017,4353], + [41019,2856], + [41021,49], + [41023,235], + [41025,212], + [41027,573], + [41029,5802], + [41031,648], + [41033,2210], + [41035,1968], + [41037,218], + [41039,9048], + [41041,1167], + [41043,3228], + [41045,686], + [41047,7947], + [41049,279], + [41051,18721], + [41053,1928], + [41055,41], + [41057,569], + [41059,1914], + [41061,703], + [41063,221], + [41065,655], + [41067,12819], + [41069,29], + [41071,2437], + [42001,2199], + [42003,33548], + [42005,2482], + [42007,5282], + [42009,1408], + [42011,10599], + [42013,3212], + [42015,1972], + [42017,15743], + [42019,4992], + [42021,4167], + [42023,164], + [42025,1881], + [42027,3295], + [42029,10867], + [42031,1109], + [42033,2646], + [42035,1313], + [42037,1877], + [42039,2433], + [42041,5284], + [42043,6768], + [42045,14309], + [42047,900], + [42049,8699], + [42051,4736], + [42053,149], + [42055,3992], + [42057,462], + [42059,1340], + [42061,1374], + [42063,2925], + [42065,1417], + [42067,654], + [42069,6037], + [42071,11557], + [42073,2785], + [42075,3164], + [42077,10105], + [42079,10016], + [42081,3894], + [42083,1224], + [42085,3132], + [42087,1189], + [42089,5121], + [42091,18538], + [42093,389], + [42095,8214], + [42097,2743], + [42099,1121], + [42101,47569], + [42103,1590], + [42105,579], + [42107,4170], + [42109,960], + [42111,2456], + [42113,204], + [42115,1185], + [42117,1416], + [42119,946], + [42121,1720], + [42123,1083], + [42125,6559], + [42127,1292], + [42129,10702], + [42131,874], + [42133,10857], + [44001,1214], + [44003,4306], + [44005,2088], + [44007,17918], + [44009,3284], + [45001,562], + [45003,3691], + [45005,227], + [45007,4065], + [45009,479], + [45011,593], + [45013,3454], + [45015,4422], + [45017,425], + [45019,8215], + [45021,1398], + [45023,960], + [45025,1075], + [45027,844], + [45029,935], + [45031,1855], + [45033,855], + [45035,3345], + [45037,596], + [45039,719], + [45041,3429], + [45043,1689], + [45045,10353], + [45047,1615], + [45049,480], + [45051,8157], + [45053,521], + [45055,1521], + [45057,2033], + [45059,1556], + [45061,454], + [45063,6006], + [45065,188], + [45067,1102], + [45069,780], + [45071,850], + [45073,1758], + [45075,3149], + [45077,2794], + [45079,9634], + [45081,402], + [45083,6700], + [45085,2589], + [45087,709], + [45089,960], + [45091,6005], + [46003,34], + [46005,244], + [46007,44], + [46009,80], + [46011,519], + [46013,566], + [46015,63], + [46017,60], + [46019,175], + [46021,25], + [46023,125], + [46025,75], + [46027,210], + [46029,471], + [46031,65], + [46033,160], + [46035,270], + [46037,122], + [46039,110], + [46041,203], + [46043,42], + [46045,50], + [46047,133], + [46049,30], + [46051,144], + [46053,62], + [46055,27], + [46057,107], + [46059,39], + [46061,60], + [46063,22], + [46065,239], + [46067,93], + [46069,19], + [46071,55], + [46073,26], + [46075,13], + [46077,72], + [46079,220], + [46081,431], + [46083,680], + [46085,82], + [46087,78], + [46089,37], + [46091,95], + [46093,431], + [46095,32], + [46097,32], + [46099,2773], + [46101,145], + [46102,"NA"], + [46103,1690], + [46105,45], + [46107,31], + [46109,201], + [46111,36], + [46115,102], + [46117,45], + [46119,20], + [46121,198], + [46123,69], + [46125,131], + [46127,252], + [46129,115], + [46135,298], + [46137,44], + [47001,1637], + [47003,983], + [47005,479], + [47007,300], + [47009,2653], + [47011,2227], + [47013,1017], + [47015,279], + [47017,806], + [47019,1335], + [47021,804], + [47023,420], + [47025,788], + [47027,199], + [47029,911], + [47031,1148], + [47033,360], + [47035,1393], + [47037,13421], + [47039,320], + [47041,419], + [47043,1077], + [47045,1012], + [47047,919], + [47049,437], + [47051,961], + [47053,1241], + [47055,613], + [47057,502], + [47059,1680], + [47061,309], + [47063,1369], + [47065,7895], + [47067,161], + [47069,565], + [47071,608], + [47073,1274], + [47075,497], + [47077,818], + [47079,817], + [47081,481], + [47083,240], + [47085,520], + [47087,313], + [47089,1244], + [47091,361], + [47093,9302], + [47095,149], + [47097,727], + [47099,1022], + [47101,290], + [47103,652], + [47105,1037], + [47107,1233], + [47109,614], + [47111,445], + [47113,2317], + [47115,746], + [47117,694], + [47119,1779], + [47121,334], + [47123,1021], + [47125,4054], + [47127,127], + [47129,502], + [47131,883], + [47133,492], + [47135,202], + [47137,152], + [47139,422], + [47141,1627], + [47143,955], + [47145,1269], + [47147,1441], + [47149,6023], + [47151,593], + [47153,345], + [47155,2526], + [47157,23135], + [47159,397], + [47161,350], + [47163,3599], + [47165,3573], + [47167,1560], + [47169,185], + [47171,497], + [47173,419], + [47175,125], + [47177,845], + [47179,2800], + [47181,400], + [47183,925], + [47185,585], + [47187,3870], + [47189,2604], + [48001,1014], + [48003,409], + [48005,2183], + [48007,571], + [48009,176], + [48011,26], + [48013,1120], + [48015,745], + [48017,119], + [48019,389], + [48021,1456], + [48023,58], + [48025,775], + [48027,6264], + [48029,33836], + [48031,183], + [48033,13], + [48035,352], + [48037,1860], + [48039,8787], + [48041,3840], + [48043,149], + [48045,24], + [48047,287], + [48049,701], + [48051,365], + [48053,759], + [48055,775], + [48057,600], + [48059,247], + [48061,11885], + [48063,345], + [48065,101], + [48067,880], + [48069,107], + [48071,1106], + [48073,1074], + [48075,88], + [48077,209], + [48079,59], + [48081,59], + [48083,178], + [48085,18100], + [48087,42], + [48089,460], + [48091,2364], + [48093,230], + [48095,45], + [48097,749], + [48099,1137], + [48101,27], + [48103,146], + [48105,130], + [48107,114], + [48109,41], + [48111,89], + [48113,52065], + [48115,232], + [48117,268], + [48119,99], + [48121,15461], + [48123,518], + [48125,34], + [48127,443], + [48129,63], + [48131,532], + [48133,402], + [48135,4834], + [48137,40], + [48139,3175], + [48141,17251], + [48143,819], + [48145,290], + [48147,592], + [48149,455], + [48151,75], + [48153,138], + [48155,20], + [48157,18296], + [48159,221], + [48161,458], + [48163,427], + [48165,341], + [48167,8514], + [48169,83], + [48171,368], + [48173,29], + [48175,192], + [48177,404], + [48179,583], + [48181,2351], + [48183,3540], + [48185,728], + [48187,2721], + [48189,705], + [48191,78], + [48193,176], + [48195,92], + [48197,63], + [48199,1527], + [48201,119597], + [48203,1795], + [48205,59], + [48207,106], + [48209,3489], + [48211,79], + [48213,1651], + [48215,26265], + [48217,695], + [48219,517], + [48221,1186], + [48223,689], + [48225,463], + [48227,729], + [48229,92], + [48231,1730], + [48233,541], + [48235,25], + [48237,190], + [48239,340], + [48241,1030], + [48243,31], + [48245,7509], + [48247,185], + [48249,1837], + [48251,3304], + [48253,325], + [48255,306], + [48257,2188], + [48259,648], + [48261,10], + [48263,14], + [48265,766], + [48267,74], + [48269,7], + [48271,67], + [48273,945], + [48275,66], + [48277,1072], + [48279,340], + [48281,380], + [48283,200], + [48285,368], + [48287,349], + [48289,420], + [48291,2365], + [48293,465], + [48295,73], + [48297,308], + [48299,345], + [48301,4], + [48303,5191], + [48305,108], + [48307,166], + [48309,4580], + [48311,18], + [48313,242], + [48315,304], + [48317,109], + [48319,64], + [48321,1231], + [48323,2716], + [48325,922], + [48327,37], + [48329,3737], + [48331,529], + [48333,79], + [48335,182], + [48337,446], + [48339,12997], + [48341,331], + [48343,534], + [48345,18], + [48347,1341], + [48349,950], + [48351,423], + [48353,329], + [48355,9425], + [48357,244], + [48359,27], + [48361,2498], + [48363,723], + [48365,731], + [48367,2485], + [48369,124], + [48371,381], + [48373,1096], + [48375,1875], + [48377,328], + [48379,222], + [48381,2080], + [48383,105], + [48385,59], + [48387,289], + [48389,320], + [48391,207], + [48393,20], + [48395,366], + [48397,1655], + [48399,183], + [48401,1302], + [48403,326], + [48405,250], + [48407,715], + [48409,2279], + [48411,83], + [48413,74], + [48415,435], + [48417,72], + [48419,656], + [48421,39], + [48423,4757], + [48425,198], + [48427,3510], + [48429,211], + [48431,26], + [48433,28], + [48435,126], + [48437,115], + [48439,40130], + [48441,2362], + [48443,16], + [48445,255], + [48447,26], + [48449,792], + [48451,2423], + [48453,21507], + [48455,332], + [48457,525], + [48459,1144], + [48461,84], + [48463,625], + [48465,1255], + [48467,1068], + [48469,2365], + [48471,1244], + [48473,1235], + [48475,307], + [48477,764], + [48479,5556], + [48481,1057], + [48483,117], + [48485,2407], + [48487,237], + [48489,794], + [48491,9327], + [48493,926], + [48495,236], + [48497,1387], + [48499,904], + [48501,179], + [48503,363], + [48505,559], + [48507,538], + [49001,152], + [49003,863], + [49005,1873], + [49007,497], + [49009,24], + [49011,5196], + [49013,722], + [49015,268], + [49017,235], + [49019,337], + [49021,937], + [49023,190], + [49025,141], + [49027,207], + [49029,153], + [49031,27], + [49033,35], + [49035,19139], + [49037,465], + [49039,470], + [49041,421], + [49043,752], + [49045,1175], + [49047,1320], + [49049,8638], + [49051,471], + [49053,2522], + [49055,111], + [49057,4628], + [50001,622], + [50003,696], + [50005,622], + [50007,2390], + [50009,136], + [50011,852], + [50013,149], + [50015,589], + [50017,495], + [50019,711], + [50021,1192], + [50023,1083], + [50025,773], + [50027,862], + [51001,777], + [51003,1948], + [51005,356], + [51007,266], + [51009,661], + [51011,330], + [51013,3858], + [51015,1359], + [51017,93], + [51019,1563], + [51021,145], + [51023,635], + [51025,372], + [51027,740], + [51029,342], + [51031,1159], + [51033,667], + [51035,671], + [51036,171], + [51037,265], + [51041,7032], + [51043,267], + [51045,113], + [51047,917], + [51049,214], + [51051,458], + [51053,661], + [51057,270], + [51059,20055], + [51061,1261], + [51063,336], + [51065,447], + [51067,1140], + [51069,1599], + [51071,430], + [51073,704], + [51075,412], + [51077,362], + [51079,328], + [51081,215], + [51083,874], + [51085,2021], + [51087,7028], + [51089,1247], + [51091,41], + [51093,823], + [51095,1361], + [51097,154], + [51099,531], + [51101,335], + [51103,290], + [51105,578], + [51107,6676], + [51109,716], + [51111,244], + [51113,226], + [51115,163], + [51117,706], + [51119,194], + [51121,2074], + [51125,263], + [51127,399], + [51131,344], + [51133,300], + [51135,282], + [51137,671], + [51139,650], + [51141,389], + [51143,1423], + [51145,487], + [51147,545], + [51149,731], + [51153,8630], + [51155,977], + [51157,132], + [51159,146], + [51161,1771], + [51163,461], + [51165,1437], + [51167,733], + [51169,465], + [51171,790], + [51173,800], + [51175,358], + [51177,2676], + [51179,2697], + [51181,194], + [51183,250], + [51185,1206], + [51187,804], + [51191,1221], + [51193,415], + [51195,1128], + [51197,785], + [51199,1258], + [51510,2823], + [51520,381], + [51530,168], + [51540,847], + [51550,5081], + [51570,394], + [51580,141], + [51590,1168], + [51595,146], + [51600,399], + [51610,220], + [51620,216], + [51630,654], + [51640,145], + [51650,3676], + [51660,1180], + [51670,643], + [51678,140], + [51680,1862], + [51683,786], + [51685,312], + [51690,368], + [51700,4592], + [51710,5878], + [51720,115], + [51730,1044], + [51735,218], + [51740,2731], + [51750,451], + [51760,5373], + [51770,2123], + [51775,513], + [51790,465], + [51800,2028], + [51810,9156], + [51820,426], + [51830,375], + [51840,578], + [53001,556], + [53003,491], + [53005,5879], + [53007,2449], + [53009,2054], + [53011,13276], + [53013,111], + [53015,3176], + [53017,1400], + [53019,254], + [53021,2928], + [53023,53], + [53025,3145], + [53027,2245], + [53029,1910], + [53031,804], + [53033,47421], + [53035,6510], + [53037,1268], + [53039,649], + [53041,2463], + [53043,270], + [53045,1755], + [53047,1409], + [53049,660], + [53051,411], + [53053,24085], + [53055,363], + [53057,3734], + [53059,350], + [53061,17833], + [53063,14088], + [53065,1454], + [53067,7240], + [53069,110], + [53071,1537], + [53073,6173], + [53075,1145], + [53077,9415], + [54001,473], + [54003,2137], + [54005,726], + [54007,481], + [54009,702], + [54011,1978], + [54013,336], + [54015,337], + [54017,195], + [54019,1264], + [54021,209], + [54023,354], + [54025,845], + [54027,430], + [54029,899], + [54031,325], + [54033,1886], + [54035,777], + [54037,959], + [54039,4648], + [54041,580], + [54043,621], + [54045,1136], + [54047,617], + [54049,1677], + [54051,1119], + [54053,713], + [54055,1448], + [54057,708], + [54059,846], + [54061,2214], + [54063,272], + [54065,335], + [54067,843], + [54069,1142], + [54071,141], + [54073,241], + [54075,247], + [54077,851], + [54079,1257], + [54081,2088], + [54083,729], + [54085,298], + [54087,535], + [54089,279], + [54091,440], + [54093,187], + [54095,315], + [54097,738], + [54099,1023], + [54101,290], + [54103,664], + [54105,196], + [54107,2114], + [54109,755], + [55001,498], + [55003,431], + [55005,1105], + [55007,518], + [55009,5109], + [55011,293], + [55013,430], + [55015,890], + [55017,1416], + [55019,684], + [55021,1136], + [55023,386], + [55025,9080], + [55027,1746], + [55029,767], + [55031,1236], + [55033,993], + [55035,2011], + [55037,131], + [55039,2004], + [55041,249], + [55043,1102], + [55045,705], + [55047,476], + [55049,479], + [55051,196], + [55053,452], + [55055,1779], + [55057,601], + [55059,4133], + [55061,405], + [55063,2439], + [55065,313], + [55067,497], + [55069,666], + [55071,1804], + [55073,2622], + [55075,1110], + [55077,383], + [55078,120], + [55079,23735], + [55081,881], + [55083,907], + [55085,905], + [55087,3671], + [55089,1639], + [55091,159], + [55093,999], + [55095,1137], + [55097,1506], + [55099,296], + [55101,4924], + [55103,348], + [55105,3719], + [55107,358], + [55109,1871], + [55111,1257], + [55113,494], + [55115,884], + [55117,2098], + [55119,457], + [55121,614], + [55123,575], + [55125,565], + [55127,2304], + [55129,397], + [55131,2586], + [55133,7769], + [55135,1068], + [55137,577], + [55139,3319], + [55141,1637], + [56001,666], + [56003,272], + [56005,1739], + [56007,389], + [56009,486], + [56011,170], + [56013,1428], + [56015,242], + [56017,115], + [56019,223], + [56021,2008], + [56023,406], + [56025,2899], + [56027,43], + [56029,746], + [56031,227], + [56033,754], + [56035,270], + [56037,1327], + [56039,522], + [56041,542], + [56043,198], + [56045,196] + ] +} diff --git a/data/regional/united-states/economics/unemployment/us-unemployment-total-2017.json b/data/regional/united-states/economics/unemployment/us-unemployment-total-2017.json new file mode 100644 index 0000000..0a3024e --- /dev/null +++ b/data/regional/united-states/economics/unemployment/us-unemployment-total-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Unemployed People", + "description" : "Total number of work aged people unemployed.", + "units" : "people", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "economics", + "tags" : ["regional","us","counties","economics","employment","labour force","unemployment"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.unemployment.total.2017"], + [1001,1001], + [1003,3652], + [1005,486], + [1007,373], + [1009,985], + [1011,237], + [1013,491], + [1015,2249], + [1017,619], + [1019,453], + [1021,774], + [1023,277], + [1025,655], + [1027,250], + [1029,256], + [1031,907], + [1033,1203], + [1035,273], + [1037,201], + [1039,820], + [1041,287], + [1043,1398], + [1045,881], + [1047,1124], + [1049,1304], + [1051,1356], + [1053,722], + [1055,1962], + [1057,309], + [1059,591], + [1061,462], + [1063,217], + [1065,354], + [1067,326], + [1069,1927], + [1071,1100], + [1073,13106], + [1075,241], + [1077,1931], + [1079,666], + [1081,2877], + [1083,1635], + [1085,300], + [1087,456], + [1089,6741], + [1091,431], + [1093,599], + [1095,1602], + [1097,9652], + [1099,483], + [1101,4541], + [1103,2252], + [1105,270], + [1107,412], + [1109,743], + [1111,412], + [1113,1008], + [1115,1546], + [1117,3527], + [1119,328], + [1121,1712], + [1123,760], + [1125,4110], + [1127,1262], + [1129,455], + [1131,320], + [1133,482], + [2013,65], + [2016,140], + [2020,9287], + [2050,1027], + [2060,27], + [2068,106], + [2070,191], + [2090,2940], + [2100,99], + [2105,144], + [2110,828], + [2122,2300], + [2130,448], + [2150,329], + [2158,"NA"], + [2164,86], + [2170,4105], + [2180,514], + [2185,273], + [2188,498], + [2195,132], + [2198,324], + [2220,208], + [2230,87], + [2240,310], + [2261,390], + [2275,81], + [2282,22], + [2290,454], + [4001,2127], + [4003,2771], + [4005,4186], + [4007,1295], + [4009,785], + [4011,204], + [4012,467], + [4013,89102], + [4015,4828], + [4017,3131], + [4019,21330], + [4021,8473], + [4023,1807], + [4025,4583], + [4027,16225], + [5001,294], + [5003,441], + [5005,694], + [5007,3849], + [5009,543], + [5011,205], + [5013,93], + [5015,431], + [5017,229], + [5019,377], + [5021,269], + [5023,458], + [5025,145], + [5027,460], + [5029,392], + [5031,1601], + [5033,945], + [5035,936], + [5037,307], + [5039,130], + [5041,262], + [5043,405], + [5045,2035], + [5047,258], + [5049,199], + [5051,1619], + [5053,267], + [5055,723], + [5057,342], + [5059,523], + [5061,181], + [5063,685], + [5065,268], + [5067,346], + [5069,1454], + [5071,451], + [5073,128], + [5075,261], + [5077,144], + [5079,169], + [5081,268], + [5083,343], + [5085,1102], + [5087,209], + [5089,256], + [5091,856], + [5093,1063], + [5095,120], + [5097,148], + [5099,128], + [5101,121], + [5103,448], + [5105,175], + [5107,382], + [5109,174], + [5111,426], + [5113,361], + [5115,1292], + [5117,151], + [5119,6417], + [5121,288], + [5123,427], + [5125,1731], + [5127,151], + [5129,134], + [5131,2064], + [5133,255], + [5135,298], + [5137,229], + [5139,853], + [5141,330], + [5143,3097], + [5145,1530], + [5147,143], + [5149,346], + [6001,30902], + [6003,33], + [6005,724], + [6007,5916], + [6009,1001], + [6011,1543], + [6013,21418], + [6015,629], + [6017,3920], + [6019,38070], + [6021,963], + [6023,2639], + [6025,14105], + [6027,381], + [6029,35442], + [6031,5119], + [6033,1706], + [6035,558], + [6037,240293], + [6039,4949], + [6041,4038], + [6043,451], + [6045,1793], + [6047,10801], + [6049,260], + [6051,380], + [6053,15811], + [6055,2701], + [6057,1998], + [6059,56627], + [6061,7004], + [6063,692], + [6065,56252], + [6067,32580], + [6069,1765], + [6071,46582], + [6073,63465], + [6075,16499], + [6077,22612], + [6079,5089], + [6081,12121], + [6083,9741], + [6085,33415], + [6087,8154], + [6089,4321], + [6091,85], + [6093,1301], + [6095,9942], + [6097,8835], + [6099,18165], + [6101,3935], + [6103,1630], + [6105,301], + [6107,21401], + [6109,1158], + [6111,19140], + [6113,5402], + [6115,2125], + [8001,7984], + [8003,282], + [8005,9770], + [8007,198], + [8009,35], + [8011,52], + [8013,4536], + [8014,997], + [8015,217], + [8017,20], + [8019,153], + [8021,165], + [8023,65], + [8025,45], + [8027,61], + [8029,559], + [8031,10941], + [8033,34], + [8035,4381], + [8037,812], + [8039,349], + [8041,10666], + [8043,647], + [8045,915], + [8047,73], + [8049,215], + [8051,214], + [8053,11], + [8055,148], + [8057,17], + [8059,8551], + [8061,17], + [8063,84], + [8065,102], + [8067,777], + [8069,4747], + [8071,254], + [8073,51], + [8075,263], + [8077,2940], + [8079,9], + [8081,245], + [8083,520], + [8085,691], + [8087,384], + [8089,346], + [8091,66], + [8093,244], + [8095,43], + [8097,341], + [8099,163], + [8101,3227], + [8103,109], + [8105,236], + [8107,371], + [8109,151], + [8111,12], + [8113,154], + [8115,27], + [8117,410], + [8119,394], + [8121,59], + [8123,4194], + [8125,93], + [9001,21873], + [9003,23305], + [9005,4556], + [9007,3797], + [9009,23252], + [9011,6253], + [9013,3463], + [9015,3220], + [10001,3886], + [10003,13330], + [10005,4706], + [11001,24261], + [12001,5033], + [12003,478], + [12005,3639], + [12007,408], + [12009,11392], + [12011,39744], + [12013,241], + [12015,3241], + [12017,2767], + [12019,3971], + [12021,7005], + [12023,1259], + [12027,608], + [12029,264], + [12031,19993], + [12033,5987], + [12035,2157], + [12037,171], + [12039,982], + [12041,288], + [12043,261], + [12045,232], + [12047,211], + [12049,520], + [12051,1134], + [12053,3557], + [12055,2019], + [12057,27695], + [12059,324], + [12061,3153], + [12063,770], + [12065,235], + [12067,110], + [12069,6151], + [12071,13362], + [12073,5893], + [12075,737], + [12077,118], + [12079,324], + [12081,6784], + [12083,6619], + [12085,2979], + [12086,66731], + [12087,1501], + [12089,1484], + [12091,3237], + [12093,782], + [12095,26683], + [12097,7181], + [12099,29486], + [12101,9933], + [12103,18206], + [12105,13643], + [12107,1445], + [12109,4075], + [12111,7000], + [12113,3000], + [12115,7143], + [12117,9055], + [12119,1828], + [12121,770], + [12123,395], + [12125,175], + [12127,10873], + [12129,514], + [12131,1063], + [12133,427], + [13001,512], + [13003,187], + [13005,231], + [13007,77], + [13009,1059], + [13011,366], + [13013,1586], + [13015,2295], + [13017,433], + [13019,377], + [13021,3731], + [13023,318], + [13025,420], + [13027,323], + [13029,732], + [13031,1858], + [13033,671], + [13035,517], + [13037,117], + [13039,1083], + [13043,219], + [13045,2767], + [13047,1376], + [13049,246], + [13051,6259], + [13053,153], + [13055,504], + [13057,4856], + [13059,2902], + [13061,78], + [13063,7868], + [13065,156], + [13067,17289], + [13069,954], + [13071,1003], + [13073,3047], + [13075,357], + [13077,3043], + [13079,288], + [13081,494], + [13083,364], + [13085,457], + [13087,657], + [13089,18976], + [13091,449], + [13093,262], + [13095,2391], + [13097,3542], + [13099,250], + [13101,74], + [13103,1196], + [13105,419], + [13107,582], + [13109,215], + [13111,525], + [13113,2345], + [13115,2310], + [13117,4307], + [13119,478], + [13121,26474], + [13123,601], + [13125,66], + [13127,1887], + [13129,1242], + [13131,527], + [13133,351], + [13135,20440], + [13137,887], + [13139,3925], + [13141,183], + [13143,597], + [13145,697], + [13147,501], + [13149,258], + [13151,5462], + [13153,3295], + [13155,232], + [13157,1275], + [13159,295], + [13161,371], + [13163,426], + [13165,219], + [13167,206], + [13169,615], + [13171,461], + [13173,198], + [13175,1151], + [13177,632], + [13179,1348], + [13181,189], + [13183,382], + [13185,2435], + [13187,673], + [13189,559], + [13191,312], + [13193,333], + [13195,582], + [13197,208], + [13199,530], + [13201,129], + [13205,543], + [13207,598], + [13209,253], + [13211,409], + [13213,982], + [13215,4815], + [13217,2741], + [13219,681], + [13221,310], + [13223,3408], + [13225,683], + [13227,637], + [13229,401], + [13231,387], + [13233,976], + [13235,219], + [13237,475], + [13239,49], + [13241,345], + [13243,167], + [13245,5151], + [13247,2357], + [13249,119], + [13251,336], + [13253,205], + [13255,1659], + [13257,582], + [13259,133], + [13261,898], + [13263,172], + [13265,39], + [13267,479], + [13269,249], + [13271,376], + [13273,225], + [13275,1018], + [13277,914], + [13279,782], + [13281,251], + [13283,183], + [13285,1669], + [13287,189], + [13289,226], + [13291,456], + [13293,626], + [13295,1402], + [13297,1934], + [13299,729], + [13301,162], + [13303,443], + [13305,657], + [13307,75], + [13309,157], + [13311,612], + [13313,2476], + [13315,163], + [13317,218], + [13319,220], + [13321,460], + [15001,2565], + [15003,10554], + [15005,"NA"], + [15007,859], + [15009,2199], + [16001,6469], + [16003,99], + [16005,1258], + [16007,91], + [16009,221], + [16011,678], + [16013,311], + [16015,153], + [16017,859], + [16019,1430], + [16021,244], + [16023,40], + [16025,18], + [16027,3422], + [16029,121], + [16031,289], + [16033,11], + [16035,209], + [16037,91], + [16039,403], + [16041,153], + [16043,202], + [16045,311], + [16047,197], + [16049,309], + [16051,327], + [16053,321], + [16055,2900], + [16057,534], + [16059,181], + [16061,94], + [16063,87], + [16065,403], + [16067,293], + [16069,602], + [16071,64], + [16073,207], + [16075,451], + [16077,134], + [16079,316], + [16081,166], + [16083,1195], + [16085,225], + [16087,215], + [17001,1229], + [17003,172], + [17005,339], + [17007,1709], + [17009,81], + [17011,829], + [17013,125], + [17015,344], + [17017,275], + [17019,4427], + [17021,768], + [17023,375], + [17025,346], + [17027,704], + [17029,1121], + [17031,139040], + [17033,455], + [17035,238], + [17037,2471], + [17039,354], + [17041,406], + [17043,21039], + [17045,452], + [17047,128], + [17049,704], + [17051,520], + [17053,305], + [17055,1045], + [17057,966], + [17059,139], + [17061,299], + [17063,1522], + [17065,195], + [17067,432], + [17069,102], + [17071,182], + [17073,1245], + [17075,654], + [17077,1231], + [17079,218], + [17081,935], + [17083,518], + [17085,484], + [17087,299], + [17089,12638], + [17091,2919], + [17093,3042], + [17095,1144], + [17097,16350], + [17099,3073], + [17101,361], + [17103,756], + [17105,729], + [17107,581], + [17109,658], + [17111,7609], + [17113,3586], + [17115,2688], + [17117,1100], + [17119,6186], + [17121,907], + [17123,290], + [17125,380], + [17127,372], + [17129,270], + [17131,405], + [17133,604], + [17135,668], + [17137,705], + [17139,279], + [17141,1267], + [17143,4948], + [17145,491], + [17147,337], + [17149,320], + [17151,108], + [17153,164], + [17155,143], + [17157,613], + [17159,353], + [17161,3551], + [17163,6192], + [17165,617], + [17167,4380], + [17169,145], + [17171,126], + [17173,451], + [17175,162], + [17177,993], + [17179,3378], + [17181,463], + [17183,2142], + [17185,274], + [17187,357], + [17189,280], + [17191,417], + [17193,318], + [17195,1327], + [17197,18697], + [17199,1601], + [17201,8759], + [17203,812], + [18001,451], + [18003,5990], + [18005,1209], + [18007,153], + [18009,216], + [18011,992], + [18013,255], + [18015,343], + [18017,681], + [18019,2111], + [18021,461], + [18023,521], + [18025,218], + [18027,442], + [18029,986], + [18031,427], + [18033,650], + [18035,2316], + [18037,600], + [18039,2825], + [18041,454], + [18043,1358], + [18045,317], + [18047,404], + [18049,341], + [18051,562], + [18053,1241], + [18055,642], + [18057,4799], + [18059,1169], + [18061,690], + [18063,2482], + [18065,810], + [18067,1449], + [18069,659], + [18071,665], + [18073,707], + [18075,346], + [18077,561], + [18079,505], + [18081,2371], + [18083,639], + [18085,1128], + [18087,506], + [18089,11688], + [18091,2129], + [18093,912], + [18095,2322], + [18097,17338], + [18099,724], + [18101,154], + [18103,618], + [18105,2465], + [18107,574], + [18109,1255], + [18111,338], + [18113,714], + [18115,116], + [18117,344], + [18119,399], + [18121,288], + [18123,352], + [18125,215], + [18127,3470], + [18129,405], + [18131,222], + [18133,602], + [18135,489], + [18137,501], + [18139,272], + [18141,4779], + [18143,397], + [18145,760], + [18147,367], + [18149,459], + [18151,577], + [18153,377], + [18155,198], + [18157,3032], + [18159,261], + [18161,113], + [18163,3025], + [18165,385], + [18167,2066], + [18169,530], + [18171,136], + [18173,1021], + [18175,505], + [18177,1160], + [18179,417], + [18181,436], + [18183,503], + [19001,116], + [19003,51], + [19005,303], + [19007,231], + [19009,99], + [19011,440], + [19013,2592], + [19015,366], + [19017,387], + [19019,357], + [19021,306], + [19023,285], + [19025,132], + [19027,255], + [19029,257], + [19031,314], + [19033,716], + [19035,155], + [19037,204], + [19039,149], + [19041,323], + [19043,404], + [19045,949], + [19047,340], + [19049,988], + [19051,142], + [19053,115], + [19055,283], + [19057,836], + [19059,372], + [19061,1638], + [19063,175], + [19065,387], + [19067,285], + [19069,160], + [19071,100], + [19073,151], + [19075,192], + [19077,179], + [19079,230], + [19081,161], + [19083,274], + [19085,202], + [19087,289], + [19089,156], + [19091,161], + [19093,95], + [19095,277], + [19097,372], + [19099,606], + [19101,281], + [19103,2112], + [19105,386], + [19107,187], + [19109,210], + [19111,891], + [19113,3985], + [19115,200], + [19117,124], + [19119,123], + [19121,300], + [19123,376], + [19125,460], + [19127,842], + [19129,203], + [19131,125], + [19133,167], + [19135,149], + [19137,158], + [19139,723], + [19141,196], + [19143,75], + [19145,252], + [19147,132], + [19149,353], + [19151,102], + [19153,7964], + [19155,1340], + [19157,330], + [19159,79], + [19161,152], + [19163,3186], + [19165,162], + [19167,412], + [19169,1144], + [19171,336], + [19173,73], + [19175,202], + [19177,115], + [19179,804], + [19181,751], + [19183,360], + [19185,86], + [19187,730], + [19189,165], + [19191,369], + [19193,1738], + [19195,130], + [19197,227], + [20001,307], + [20003,164], + [20005,365], + [20007,71], + [20009,511], + [20011,309], + [20013,171], + [20015,1197], + [20017,37], + [20019,68], + [20021,394], + [20023,34], + [20025,28], + [20027,144], + [20029,170], + [20031,217], + [20033,27], + [20035,645], + [20037,800], + [20039,39], + [20041,355], + [20043,147], + [20045,2061], + [20047,47], + [20049,51], + [20051,427], + [20053,84], + [20055,544], + [20057,496], + [20059,526], + [20061,584], + [20063,33], + [20065,40], + [20067,111], + [20069,68], + [20071,16], + [20073,137], + [20075,38], + [20077,99], + [20079,688], + [20081,50], + [20083,25], + [20085,225], + [20087,360], + [20089,45], + [20091,10000], + [20093,51], + [20095,126], + [20097,34], + [20099,469], + [20101,27], + [20103,1409], + [20105,48], + [20107,255], + [20109,36], + [20111,638], + [20113,449], + [20115,227], + [20117,153], + [20119,55], + [20121,641], + [20123,94], + [20125,784], + [20127,94], + [20129,45], + [20131,135], + [20133,317], + [20135,40], + [20137,63], + [20139,315], + [20141,56], + [20143,94], + [20145,101], + [20147,83], + [20149,373], + [20151,162], + [20153,33], + [20155,1161], + [20157,69], + [20159,174], + [20161,1049], + [20163,96], + [20165,52], + [20167,117], + [20169,981], + [20171,62], + [20173,10335], + [20175,347], + [20177,3330], + [20179,31], + [20181,85], + [20183,55], + [20185,66], + [20187,27], + [20189,85], + [20191,409], + [20193,110], + [20195,48], + [20197,116], + [20199,21], + [20201,89], + [20203,28], + [20205,188], + [20207,71], + [20209,4010], + [21001,434], + [21003,365], + [21005,481], + [21007,279], + [21009,880], + [21011,371], + [21013,690], + [21015,2670], + [21017,458], + [21019,1320], + [21021,637], + [21023,226], + [21025,336], + [21027,481], + [21029,1756], + [21031,287], + [21033,285], + [21035,826], + [21037,1882], + [21039,166], + [21041,232], + [21043,979], + [21045,325], + [21047,1528], + [21049,803], + [21051,479], + [21053,255], + [21055,220], + [21057,156], + [21059,2097], + [21061,292], + [21063,227], + [21065,322], + [21067,6360], + [21069,369], + [21071,959], + [21073,1021], + [21075,150], + [21077,182], + [21079,371], + [21081,566], + [21083,947], + [21085,663], + [21087,237], + [21089,1054], + [21091,207], + [21093,2236], + [21095,654], + [21097,401], + [21099,361], + [21101,1010], + [21103,332], + [21105,138], + [21107,975], + [21109,350], + [21111,17464], + [21113,993], + [21115,604], + [21117,3443], + [21119,388], + [21121,773], + [21123,286], + [21125,1454], + [21127,455], + [21129,163], + [21131,281], + [21133,600], + [21135,438], + [21137,533], + [21139,284], + [21141,532], + [21143,175], + [21145,1801], + [21147,325], + [21149,231], + [21151,1954], + [21153,490], + [21155,392], + [21157,895], + [21159,242], + [21161,449], + [21163,632], + [21165,208], + [21167,492], + [21169,173], + [21171,186], + [21173,777], + [21175,337], + [21177,783], + [21179,987], + [21181,185], + [21183,626], + [21185,1146], + [21187,240], + [21189,92], + [21191,330], + [21193,712], + [21195,1614], + [21197,338], + [21199,1424], + [21201,52], + [21203,388], + [21205,618], + [21207,449], + [21209,1062], + [21211,879], + [21213,397], + [21215,378], + [21217,570], + [21219,224], + [21221,338], + [21223,195], + [21225,370], + [21227,2565], + [21229,260], + [21231,577], + [21233,307], + [21235,799], + [21237,177], + [21239,486], + [22001,1427], + [22003,475], + [22005,2663], + [22007,661], + [22009,964], + [22011,789], + [22013,340], + [22015,2561], + [22017,6115], + [22019,4290], + [22021,222], + [22023,144], + [22025,243], + [22027,316], + [22029,564], + [22031,653], + [22033,10245], + [22035,231], + [22037,388], + [22039,746], + [22041,548], + [22043,517], + [22045,2144], + [22047,870], + [22049,318], + [22051,9771], + [22053,664], + [22055,5546], + [22057,2191], + [22059,291], + [22061,1125], + [22063,2890], + [22065,310], + [22067,833], + [22069,982], + [22071,9201], + [22073,3731], + [22075,469], + [22077,558], + [22079,3166], + [22081,202], + [22083,511], + [22085,484], + [22087,1018], + [22089,1134], + [22091,288], + [22093,628], + [22095,1215], + [22097,2156], + [22099,1372], + [22101,1625], + [22103,5009], + [22105,3117], + [22107,131], + [22109,2682], + [22111,511], + [22113,1454], + [22115,1058], + [22117,979], + [22119,1021], + [22121,615], + [22123,394], + [22125,224], + [22127,327], + [23001,1739], + [23003,1522], + [23005,4206], + [23007,585], + [23009,1114], + [23011,2018], + [23013,650], + [23015,551], + [23017,1016], + [23019,2860], + [23021,303], + [23023,523], + [23025,1122], + [23027,757], + [23029,691], + [23031,3300], + [24001,1874], + [24003,11019], + [24005,19596], + [24009,1802], + [24011,769], + [24013,3211], + [24015,2549], + [24017,3419], + [24019,899], + [24021,4761], + [24023,814], + [24025,5402], + [24027,5742], + [24029,462], + [24031,18280], + [24033,21315], + [24035,999], + [24037,2206], + [24039,643], + [24041,789], + [24043,3512], + [24045,2922], + [24047,2185], + [24510,18042], + [25001,5235], + [25003,2826], + [25005,13870], + [25007,461], + [25009,15663], + [25011,1332], + [25013,11228], + [25015,3029], + [25017,26967], + [25019,316], + [25021,12465], + [25023,10694], + [25025,14694], + [25027,16912], + [26001,283], + [26003,281], + [26005,2362], + [26007,801], + [26009,680], + [26011,502], + [26013,254], + [26015,1259], + [26017,2875], + [26019,588], + [26021,3668], + [26023,905], + [26025,3192], + [26027,1147], + [26029,745], + [26031,1113], + [26033,1287], + [26035,853], + [26037,1524], + [26039,383], + [26041,1098], + [26043,609], + [26045,2405], + [26047,1174], + [26049,10532], + [26051,661], + [26053,386], + [26055,2124], + [26057,993], + [26059,1044], + [26061,1003], + [26063,831], + [26065,6630], + [26067,1209], + [26069,767], + [26071,340], + [26073,1625], + [26075,3515], + [26077,5456], + [26079,555], + [26081,12543], + [26083,82], + [26085,307], + [26087,2208], + [26089,522], + [26091,2274], + [26093,3362], + [26095,168], + [26097,541], + [26099,18931], + [26101,694], + [26103,1868], + [26105,823], + [26107,1097], + [26109,554], + [26111,1924], + [26113,420], + [26115,3713], + [26117,1430], + [26119,328], + [26121,4232], + [26123,1174], + [26125,22784], + [26127,887], + [26129,646], + [26131,197], + [26133,646], + [26135,220], + [26137,714], + [26139,5263], + [26141,493], + [26143,709], + [26145,4842], + [26147,3748], + [26149,1240], + [26151,1170], + [26153,288], + [26155,1763], + [26157,1535], + [26159,2064], + [26161,6968], + [26163,42673], + [26165,840], + [27001,448], + [27003,6520], + [27005,772], + [27007,1155], + [27009,886], + [27011,114], + [27013,1169], + [27015,538], + [27017,857], + [27019,1672], + [27021,852], + [27023,281], + [27025,1171], + [27027,1152], + [27029,402], + [27031,119], + [27033,301], + [27035,1450], + [27037,7228], + [27039,396], + [27041,658], + [27043,305], + [27045,402], + [27047,593], + [27049,874], + [27051,135], + [27053,21118], + [27055,359], + [27057,552], + [27059,910], + [27061,1527], + [27063,211], + [27065,548], + [27067,811], + [27069,90], + [27071,424], + [27073,124], + [27075,218], + [27077,112], + [27079,737], + [27081,111], + [27083,481], + [27085,747], + [27087,117], + [27089,387], + [27091,367], + [27093,540], + [27095,713], + [27097,948], + [27099,584], + [27101,212], + [27103,524], + [27105,363], + [27107,162], + [27109,2335], + [27111,1259], + [27113,505], + [27115,846], + [27117,168], + [27119,722], + [27121,195], + [27123,9262], + [27125,148], + [27127,317], + [27129,400], + [27131,1163], + [27133,122], + [27135,399], + [27137,4761], + [27139,2370], + [27141,1926], + [27143,305], + [27145,3041], + [27147,694], + [27149,147], + [27151,207], + [27153,538], + [27155,63], + [27157,404], + [27159,329], + [27161,367], + [27163,4230], + [27165,286], + [27167,112], + [27169,905], + [27171,2606], + [27173,189], + [28001,817], + [28003,708], + [28005,300], + [28007,426], + [28009,169], + [28011,838], + [28013,264], + [28015,209], + [28017,371], + [28019,179], + [28021,297], + [28023,372], + [28025,530], + [28027,654], + [28029,640], + [28031,398], + [28033,3344], + [28035,1630], + [28037,192], + [28039,629], + [28041,328], + [28043,444], + [28045,1025], + [28047,4153], + [28049,5333], + [28051,552], + [28053,210], + [28055,46], + [28057,443], + [28059,3451], + [28061,401], + [28063,308], + [28065,290], + [28067,1311], + [28069,278], + [28071,1135], + [28073,1156], + [28075,1721], + [28077,304], + [28079,432], + [28081,1653], + [28083,766], + [28085,760], + [28087,1368], + [28089,2074], + [28091,566], + [28093,743], + [28095,801], + [28097,212], + [28099,537], + [28101,457], + [28103,290], + [28105,1107], + [28107,882], + [28109,1227], + [28111,277], + [28113,878], + [28115,562], + [28117,512], + [28119,217], + [28121,2698], + [28123,537], + [28125,131], + [28127,531], + [28129,318], + [28131,398], + [28133,666], + [28135,298], + [28137,608], + [28139,425], + [28141,415], + [28143,267], + [28145,502], + [28147,341], + [28149,1182], + [28151,1281], + [28153,471], + [28155,204], + [28157,247], + [28159,432], + [28161,275], + [28163,555], + [29001,445], + [29003,311], + [29005,99], + [29007,387], + [29009,519], + [29011,215], + [29013,354], + [29015,369], + [29017,238], + [29019,2543], + [29021,1601], + [29023,835], + [29025,179], + [29027,746], + [29029,889], + [29031,1382], + [29033,196], + [29035,148], + [29037,1897], + [29039,233], + [29041,132], + [29043,1329], + [29045,179], + [29047,4827], + [29049,432], + [29051,1140], + [29053,271], + [29055,498], + [29057,121], + [29059,324], + [29061,134], + [29063,192], + [29065,258], + [29067,235], + [29069,813], + [29071,1891], + [29073,300], + [29075,102], + [29077,4502], + [29079,172], + [29081,137], + [29083,405], + [29085,166], + [29087,78], + [29089,192], + [29091,758], + [29093,228], + [29095,15851], + [29097,1896], + [29099,4160], + [29101,1024], + [29103,64], + [29105,788], + [29107,643], + [29109,634], + [29111,177], + [29113,970], + [29115,305], + [29117,221], + [29119,378], + [29121,273], + [29123,250], + [29125,169], + [29127,521], + [29129,73], + [29131,534], + [29133,304], + [29135,264], + [29137,174], + [29139,185], + [29141,390], + [29143,530], + [29145,999], + [29147,384], + [29149,185], + [29151,214], + [29153,208], + [29155,490], + [29157,268], + [29159,864], + [29161,735], + [29163,273], + [29165,1806], + [29167,562], + [29169,635], + [29171,93], + [29173,176], + [29175,464], + [29177,533], + [29179,124], + [29181,294], + [29183,6304], + [29185,197], + [29186,327], + [29187,1163], + [29189,18078], + [29195,382], + [29197,93], + [29199,77], + [29201,896], + [29203,197], + [29205,106], + [29207,667], + [29209,755], + [29211,112], + [29213,1611], + [29215,462], + [29217,368], + [29219,555], + [29221,554], + [29223,279], + [29225,646], + [29227,30], + [29229,376], + [29510,6871], + [30001,158], + [30003,743], + [30005,96], + [30007,121], + [30009,199], + [30011,18], + [30013,1429], + [30015,82], + [30017,197], + [30019,21], + [30021,148], + [30023,183], + [30025,47], + [30027,234], + [30029,2452], + [30031,1775], + [30033,22], + [30035,457], + [30037,19], + [30039,95], + [30041,298], + [30043,243], + [30045,34], + [30047,586], + [30049,1221], + [30051,30], + [30053,669], + [30055,22], + [30057,171], + [30059,41], + [30061,127], + [30063,2253], + [30065,102], + [30067,347], + [30069,13], + [30071,86], + [30073,107], + [30075,26], + [30077,126], + [30079,18], + [30081,922], + [30083,228], + [30085,215], + [30087,209], + [30089,334], + [30091,52], + [30093,723], + [30095,187], + [30097,56], + [30099,110], + [30101,67], + [30103,13], + [30105,137], + [30107,34], + [30109,16], + [30111,2858], + [31001,514], + [31003,88], + [31005,12], + [31007,15], + [31009,11], + [31011,72], + [31013,182], + [31015,36], + [31017,45], + [31019,658], + [31021,129], + [31023,126], + [31025,415], + [31027,101], + [31029,43], + [31031,79], + [31033,150], + [31035,101], + [31037,133], + [31039,128], + [31041,137], + [31043,433], + [31045,142], + [31047,367], + [31049,27], + [31051,95], + [31053,542], + [31055,9171], + [31057,28], + [31059,79], + [31061,45], + [31063,40], + [31065,65], + [31067,383], + [31069,33], + [31071,29], + [31073,27], + [31075,10], + [31077,38], + [31079,1084], + [31081,117], + [31083,45], + [31085,14], + [31087,42], + [31089,141], + [31091,15], + [31093,101], + [31095,102], + [31097,70], + [31099,83], + [31101,138], + [31103,15], + [31105,56], + [31107,163], + [31109,4461], + [31111,561], + [31113,13], + [31115,12], + [31117,10], + [31119,504], + [31121,112], + [31123,76], + [31125,50], + [31127,140], + [31129,62], + [31131,272], + [31133,46], + [31135,35], + [31137,115], + [31139,111], + [31141,493], + [31143,68], + [31145,147], + [31147,138], + [31149,23], + [31151,226], + [31153,2565], + [31155,304], + [31157,628], + [31159,232], + [31161,71], + [31163,48], + [31165,23], + [31167,97], + [31169,64], + [31171,14], + [31173,149], + [31175,56], + [31177,343], + [31179,138], + [31181,50], + [31183,13], + [31185,187], + [32001,476], + [32003,56197], + [32005,1093], + [32007,1009], + [32009,20], + [32011,32], + [32013,347], + [32015,144], + [32017,96], + [32019,1316], + [32021,109], + [32023,1047], + [32027,119], + [32029,98], + [32031,10001], + [32033,184], + [32510,1294], + [33001,813], + [33003,615], + [33005,1045], + [33007,493], + [33009,1058], + [33011,6555], + [33013,1913], + [33015,5241], + [33017,1703], + [33019,507], + [34001,8703], + [34003,18797], + [34005,9597], + [34007,13094], + [34009,4308], + [34011,4617], + [34013,21014], + [34015,7156], + [34017,15869], + [34019,2285], + [34021,8163], + [34023,18112], + [34025,13613], + [34027,9464], + [34029,13066], + [34031,13972], + [34033,1830], + [34035,6595], + [34037,3296], + [34039,13220], + [34041,2356], + [35001,17866], + [35003,80], + [35005,1757], + [35006,713], + [35007,342], + [35009,1066], + [35011,38], + [35013,6445], + [35015,1523], + [35017,749], + [35019,105], + [35021,18], + [35023,109], + [35025,1810], + [35027,478], + [35028,341], + [35029,1475], + [35031,2107], + [35033,172], + [35035,1513], + [35037,200], + [35039,1076], + [35041,419], + [35043,3946], + [35045,3845], + [35047,807], + [35049,3718], + [35051,324], + [35053,424], + [35055,1189], + [35057,474], + [35059,71], + [35061,1989], + [36001,6816], + [36003,1331], + [36005,38533], + [36007,4819], + [36009,2166], + [36011,1843], + [36013,3394], + [36015,2007], + [36017,1221], + [36019,1946], + [36021,1208], + [36023,1357], + [36025,1078], + [36027,6267], + [36029,23283], + [36031,962], + [36033,1213], + [36035,1363], + [36037,1448], + [36039,1092], + [36041,176], + [36043,1634], + [36045,2978], + [36047,57829], + [36049,788], + [36051,1579], + [36053,1830], + [36055,18193], + [36057,1313], + [36059,29365], + [36061,37956], + [36063,6284], + [36065,5194], + [36067,10500], + [36069,2507], + [36071,8344], + [36073,1058], + [36075,3484], + [36077,1435], + [36079,2183], + [36081,47267], + [36083,3669], + [36085,10416], + [36087,6788], + [36089,2951], + [36091,4762], + [36093,3467], + [36095,818], + [36097,487], + [36099,748], + [36101,2501], + [36103,35544], + [36105,1705], + [36107,1190], + [36109,2211], + [36111,4097], + [36113,1712], + [36115,1338], + [36117,2221], + [36119,22053], + [36121,1029], + [36123,523], + [37001,3433], + [37003,667], + [37005,223], + [37007,560], + [37009,531], + [37011,335], + [37013,1032], + [37015,497], + [37017,863], + [37019,2901], + [37021,4778], + [37023,1736], + [37025,4339], + [37027,1651], + [37029,209], + [37031,1441], + [37033,473], + [37035,3302], + [37037,1365], + [37039,566], + [37041,307], + [37043,199], + [37045,2242], + [37047,1245], + [37049,1984], + [37051,7339], + [37053,593], + [37055,1200], + [37057,3484], + [37059,822], + [37061,1261], + [37063,6746], + [37065,1723], + [37067,8159], + [37069,1406], + [37071,5021], + [37073,237], + [37075,216], + [37077,1162], + [37079,432], + [37081,12546], + [37083,1524], + [37085,2705], + [37087,1187], + [37089,2056], + [37091,540], + [37093,1152], + [37095,181], + [37097,3706], + [37099,919], + [37101,3922], + [37103,202], + [37105,1372], + [37107,1282], + [37109,1703], + [37111,870], + [37113,718], + [37115,429], + [37117,555], + [37119,25930], + [37121,325], + [37123,544], + [37125,1804], + [37127,2672], + [37129,4975], + [37131,493], + [37133,3259], + [37135,2921], + [37137,260], + [37139,976], + [37141,1293], + [37143,296], + [37145,855], + [37147,4405], + [37149,377], + [37151,2974], + [37153,1026], + [37155,3343], + [37157,2150], + [37159,3103], + [37161,1514], + [37163,1414], + [37165,904], + [37167,1239], + [37169,947], + [37171,1434], + [37173,354], + [37175,620], + [37177,117], + [37179,4777], + [37181,1122], + [37183,22450], + [37185,477], + [37187,325], + [37189,1173], + [37191,2736], + [37193,1342], + [37195,2637], + [37197,713], + [37199,343], + [38001,27], + [38003,151], + [38005,85], + [38007,13], + [38009,103], + [38011,31], + [38013,34], + [38015,1224], + [38017,2130], + [38019,55], + [38021,45], + [38023,27], + [38025,68], + [38027,60], + [38029,63], + [38031,41], + [38033,19], + [38035,856], + [38037,37], + [38039,33], + [38041,29], + [38043,48], + [38045,43], + [38047,24], + [38049,140], + [38051,32], + [38053,201], + [38055,158], + [38057,179], + [38059,511], + [38061,143], + [38063,46], + [38065,37], + [38067,147], + [38069,61], + [38071,157], + [38073,55], + [38075,33], + [38077,209], + [38079,496], + [38081,49], + [38083,33], + [38085,48], + [38087,8], + [38089,489], + [38091,18], + [38093,257], + [38095,31], + [38097,112], + [38099,186], + [38101,1062], + [38103,70], + [38105,577], + [39001,788], + [39003,2444], + [39005,1293], + [39007,2625], + [39009,1731], + [39011,921], + [39013,1941], + [39015,1126], + [39017,8534], + [39019,784], + [39021,827], + [39023,3092], + [39025,4615], + [39027,957], + [39029,2867], + [39031,1007], + [39033,1093], + [39035,35755], + [39037,1112], + [39039,902], + [39041,3758], + [39043,2349], + [39045,3300], + [39047,613], + [39049,27375], + [39051,1107], + [39053,818], + [39055,2326], + [39057,3506], + [39059,1149], + [39061,18001], + [39063,1515], + [39065,713], + [39067,427], + [39069,709], + [39071,1028], + [39073,713], + [39075,739], + [39077,1816], + [39079,926], + [39081,2060], + [39083,1409], + [39085,6409], + [39087,1444], + [39089,3758], + [39091,969], + [39093,9361], + [39095,12468], + [39097,794], + [39099,7264], + [39101,1427], + [39103,4526], + [39105,731], + [39107,729], + [39109,2280], + [39111,439], + [39113,12365], + [39115,457], + [39117,831], + [39119,2273], + [39121,346], + [39123,1428], + [39125,394], + [39127,966], + [39129,1223], + [39131,756], + [39133,4421], + [39135,951], + [39137,677], + [39139,2931], + [39141,1753], + [39143,1488], + [39145,2109], + [39147,1303], + [39149,995], + [39151,9809], + [39153,13884], + [39155,6479], + [39157,2290], + [39159,1051], + [39161,574], + [39163,373], + [39165,4782], + [39167,1716], + [39169,2435], + [39171,839], + [39173,3112], + [39175,472], + [40001,415], + [40003,79], + [40005,277], + [40007,79], + [40009,449], + [40011,132], + [40013,784], + [40015,555], + [40017,2489], + [40019,1035], + [40021,1042], + [40023,356], + [40025,34], + [40027,4940], + [40029,124], + [40031,2185], + [40033,115], + [40035,272], + [40037,1582], + [40039,510], + [40041,814], + [40043,74], + [40045,73], + [40047,1098], + [40049,529], + [40051,1063], + [40053,76], + [40055,111], + [40057,49], + [40059,58], + [40061,290], + [40063,307], + [40065,418], + [40067,140], + [40069,202], + [40071,1059], + [40073,242], + [40075,212], + [40077,257], + [40079,1126], + [40081,694], + [40083,806], + [40085,197], + [40087,682], + [40089,938], + [40091,542], + [40093,129], + [40095,308], + [40097,920], + [40099,240], + [40101,1527], + [40103,192], + [40105,253], + [40107,272], + [40109,15219], + [40111,1016], + [40113,1084], + [40115,642], + [40117,400], + [40119,1401], + [40121,946], + [40123,711], + [40125,1377], + [40127,295], + [40129,61], + [40131,1990], + [40133,547], + [40135,913], + [40137,1141], + [40139,295], + [40141,140], + [40143,13728], + [40145,1623], + [40147,1064], + [40149,242], + [40151,131], + [40153,396], + [41001,386], + [41003,1570], + [41005,8191], + [41007,795], + [41009,1253], + [41011,1471], + [41013,599], + [41015,551], + [41017,3937], + [41019,2492], + [41021,36], + [41023,216], + [41025,215], + [41027,518], + [41029,4959], + [41031,560], + [41033,1905], + [41035,1760], + [41037,202], + [41039,8118], + [41041,1006], + [41043,2763], + [41045,590], + [41047,6991], + [41049,259], + [41051,16606], + [41053,1716], + [41055,43], + [41057,501], + [41059,1785], + [41061,638], + [41063,187], + [41065,577], + [41067,11304], + [41069,29], + [41071,2060], + [42001,2038], + [42003,30713], + [42005,2009], + [42007,4708], + [42009,1230], + [42011,9773], + [42013,2919], + [42015,1509], + [42017,14473], + [42019,4525], + [42021,3627], + [42023,152], + [42025,1753], + [42027,2907], + [42029,10083], + [42031,1001], + [42033,2140], + [42035,1135], + [42037,1765], + [42039,2167], + [42041,4954], + [42043,6404], + [42045,13338], + [42047,778], + [42049,7563], + [42051,4005], + [42053,123], + [42055,3414], + [42057,370], + [42059,997], + [42061,1187], + [42063,2323], + [42065,1154], + [42067,574], + [42069,5453], + [42071,10703], + [42073,2471], + [42075,2915], + [42077,9487], + [42079,9352], + [42081,3254], + [42083,1119], + [42085,2790], + [42087,1103], + [42089,4814], + [42091,17320], + [42093,352], + [42095,7779], + [42097,2482], + [42099,1041], + [42101,43980], + [42103,1471], + [42105,474], + [42107,3886], + [42109,911], + [42111,2046], + [42113,161], + [42115,977], + [42117,1151], + [42119,868], + [42121,1411], + [42123,1022], + [42125,5588], + [42127,1144], + [42129,9422], + [42131,734], + [42133,10248], + [44001,1003], + [44003,3723], + [44005,1738], + [44007,15552], + [44009,2775], + [45001,463], + [45003,3056], + [45005,188], + [45007,3514], + [45009,388], + [45011,488], + [45013,2991], + [45015,3761], + [45017,355], + [45019,7135], + [45021,1185], + [45023,816], + [45025,941], + [45027,742], + [45029,808], + [45031,1583], + [45033,717], + [45035,2850], + [45037,482], + [45039,740], + [45041,2989], + [45043,1396], + [45045,9061], + [45047,1398], + [45049,367], + [45051,7106], + [45053,445], + [45055,1320], + [45057,1819], + [45059,1325], + [45061,387], + [45063,5354], + [45065,155], + [45067,930], + [45069,607], + [45071,771], + [45073,1498], + [45075,2505], + [45077,2338], + [45079,8525], + [45081,347], + [45083,5876], + [45085,2318], + [45087,630], + [45089,786], + [45091,5301], + [46003,43], + [46005,268], + [46007,50], + [46009,89], + [46011,593], + [46013,631], + [46015,74], + [46017,54], + [46019,185], + [46021,29], + [46023,143], + [46025,88], + [46027,236], + [46029,510], + [46031,59], + [46033,173], + [46035,323], + [46037,116], + [46039,106], + [46041,228], + [46043,48], + [46045,60], + [46047,124], + [46049,35], + [46051,160], + [46053,72], + [46055,31], + [46057,116], + [46059,46], + [46061,71], + [46063,24], + [46065,280], + [46067,113], + [46069,22], + [46071,77], + [46073,27], + [46075,17], + [46077,87], + [46079,253], + [46081,432], + [46083,795], + [46085,87], + [46087,88], + [46089,37], + [46091,110], + [46093,480], + [46095,38], + [46097,36], + [46099,3116], + [46101,149], + [46102,"NA"], + [46103,1892], + [46105,48], + [46107,39], + [46109,233], + [46111,41], + [46115,112], + [46117,62], + [46119,27], + [46121,210], + [46123,87], + [46125,152], + [46127,292], + [46129,115], + [46135,341], + [46137,50], + [47001,1333], + [47003,804], + [47005,364], + [47007,253], + [47009,2152], + [47011,1836], + [47013,759], + [47015,221], + [47017,619], + [47019,1086], + [47021,636], + [47023,338], + [47025,602], + [47027,156], + [47029,762], + [47031,913], + [47033,288], + [47035,1084], + [47037,10658], + [47039,242], + [47041,362], + [47043,847], + [47045,780], + [47047,737], + [47049,320], + [47051,753], + [47053,976], + [47055,532], + [47057,395], + [47059,1383], + [47061,242], + [47063,1097], + [47065,6404], + [47067,119], + [47069,478], + [47071,491], + [47073,1000], + [47075,407], + [47077,611], + [47079,635], + [47081,367], + [47083,184], + [47085,378], + [47087,244], + [47089,963], + [47091,300], + [47093,7500], + [47095,105], + [47097,559], + [47099,775], + [47101,224], + [47103,535], + [47105,823], + [47107,992], + [47109,482], + [47111,363], + [47113,1894], + [47115,585], + [47117,517], + [47119,1472], + [47121,260], + [47123,784], + [47125,3302], + [47127,108], + [47129,382], + [47131,673], + [47133,395], + [47135,156], + [47137,108], + [47139,336], + [47141,1277], + [47143,852], + [47145,1010], + [47147,1216], + [47149,4896], + [47151,415], + [47153,300], + [47155,2086], + [47157,18976], + [47159,318], + [47161,277], + [47163,2823], + [47165,2830], + [47167,1221], + [47169,137], + [47171,377], + [47173,321], + [47175,91], + [47177,674], + [47179,2250], + [47181,319], + [47183,772], + [47185,473], + [47187,3150], + [47189,2058], + [48001,843], + [48003,276], + [48005,1857], + [48007,701], + [48009,140], + [48011,23], + [48013,886], + [48015,606], + [48017,114], + [48019,346], + [48021,1415], + [48023,55], + [48025,641], + [48027,5928], + [48029,32313], + [48031,169], + [48033,11], + [48035,326], + [48037,1789], + [48039,9053], + [48041,3476], + [48043,137], + [48045,24], + [48047,199], + [48049,621], + [48051,329], + [48053,702], + [48055,712], + [48057,606], + [48059,215], + [48061,11431], + [48063,284], + [48065,97], + [48067,726], + [48069,110], + [48071,1205], + [48073,936], + [48075,86], + [48077,171], + [48079,52], + [48081,51], + [48083,136], + [48085,17970], + [48087,42], + [48089,387], + [48091,2246], + [48093,195], + [48095,51], + [48097,671], + [48099,1057], + [48101,22], + [48103,84], + [48105,69], + [48107,108], + [48109,33], + [48111,86], + [48113,51148], + [48115,227], + [48117,255], + [48119,85], + [48121,15318], + [48123,426], + [48125,32], + [48127,330], + [48129,55], + [48131,368], + [48133,339], + [48135,3212], + [48137,29], + [48139,2991], + [48141,16275], + [48143,703], + [48145,280], + [48147,530], + [48149,399], + [48151,61], + [48153,148], + [48155,20], + [48157,17129], + [48159,208], + [48161,425], + [48163,358], + [48165,280], + [48167,8412], + [48169,70], + [48171,340], + [48173,18], + [48175,160], + [48177,326], + [48179,434], + [48181,2163], + [48183,2954], + [48185,572], + [48187,2564], + [48189,637], + [48191,70], + [48193,142], + [48195,72], + [48197,64], + [48199,1534], + [48201,113459], + [48203,1530], + [48205,58], + [48207,115], + [48209,3378], + [48211,58], + [48213,1476], + [48215,25255], + [48217,626], + [48219,419], + [48221,1075], + [48223,612], + [48225,447], + [48227,568], + [48229,92], + [48231,1627], + [48233,565], + [48235,23], + [48237,147], + [48239,294], + [48241,996], + [48243,33], + [48245,7854], + [48247,137], + [48249,1259], + [48251,2915], + [48253,300], + [48255,224], + [48257,2091], + [48259,635], + [48261,8], + [48263,12], + [48265,726], + [48267,67], + [48269,6], + [48271,63], + [48273,795], + [48275,59], + [48277,995], + [48279,268], + [48281,339], + [48283,155], + [48285,312], + [48287,314], + [48289,390], + [48291,2247], + [48293,460], + [48295,53], + [48297,250], + [48299,310], + [48301,5], + [48303,4938], + [48305,102], + [48307,133], + [48309,4543], + [48311,14], + [48313,217], + [48315,246], + [48317,82], + [48319,60], + [48321,1227], + [48323,2209], + [48325,814], + [48327,39], + [48329,2686], + [48331,506], + [48333,67], + [48335,139], + [48337,365], + [48339,11577], + [48341,319], + [48343,402], + [48345,18], + [48347,1213], + [48349,895], + [48351,418], + [48353,275], + [48355,9028], + [48357,166], + [48359,22], + [48361,2554], + [48363,544], + [48365,564], + [48367,2150], + [48369,122], + [48371,294], + [48373,1049], + [48375,1786], + [48377,283], + [48379,200], + [48381,1980], + [48383,68], + [48385,60], + [48387,270], + [48389,245], + [48391,180], + [48393,16], + [48395,344], + [48397,1610], + [48399,172], + [48401,1118], + [48403,303], + [48405,214], + [48407,644], + [48409,2333], + [48411,77], + [48413,49], + [48415,305], + [48417,56], + [48419,552], + [48421,40], + [48423,4297], + [48425,190], + [48427,3040], + [48429,189], + [48431,23], + [48433,21], + [48435,77], + [48437,109], + [48439,37978], + [48441,2267], + [48443,19], + [48445,262], + [48447,30], + [48449,692], + [48451,1987], + [48453,20925], + [48455,296], + [48457,516], + [48459,924], + [48461,59], + [48463,546], + [48465,1016], + [48467,943], + [48469,2070], + [48471,1089], + [48473,1081], + [48475,225], + [48477,627], + [48479,4774], + [48481,940], + [48483,96], + [48485,2067], + [48487,232], + [48489,694], + [48491,9259], + [48493,835], + [48495,169], + [48497,1185], + [48499,811], + [48501,135], + [48503,306], + [48505,400], + [48507,413], + [49001,127], + [49003,836], + [49005,1749], + [49007,426], + [49009,22], + [49011,5219], + [49013,466], + [49015,220], + [49017,220], + [49019,318], + [49021,931], + [49023,184], + [49025,129], + [49027,214], + [49029,153], + [49031,24], + [49033,37], + [49035,19218], + [49037,421], + [49039,474], + [49041,384], + [49043,758], + [49045,1154], + [49047,847], + [49049,8524], + [49051,476], + [49053,2450], + [49055,109], + [49057,4550], + [50001,586], + [50003,668], + [50005,544], + [50007,2182], + [50009,125], + [50011,840], + [50013,140], + [50015,559], + [50017,489], + [50019,695], + [50021,1092], + [50023,1009], + [50025,707], + [50027,750], + [51001,769], + [51003,1843], + [51005,333], + [51007,250], + [51009,630], + [51011,313], + [51013,3723], + [51015,1266], + [51017,81], + [51019,1498], + [51021,121], + [51023,620], + [51025,330], + [51027,510], + [51029,346], + [51031,1098], + [51033,651], + [51035,605], + [51036,181], + [51037,249], + [51041,6676], + [51043,258], + [51045,102], + [51047,860], + [51049,196], + [51051,323], + [51053,612], + [51057,274], + [51059,19167], + [51061,1192], + [51063,299], + [51065,413], + [51067,1039], + [51069,1478], + [51071,373], + [51073,649], + [51075,383], + [51077,311], + [51079,310], + [51081,196], + [51083,780], + [51085,1942], + [51087,6661], + [51089,1121], + [51091,43], + [51093,746], + [51095,1272], + [51097,136], + [51099,490], + [51101,308], + [51103,283], + [51105,457], + [51107,6438], + [51109,667], + [51111,227], + [51113,215], + [51115,155], + [51117,638], + [51119,177], + [51121,1911], + [51125,257], + [51127,382], + [51131,316], + [51133,292], + [51135,277], + [51137,636], + [51139,617], + [51141,335], + [51143,1341], + [51145,464], + [51147,514], + [51149,672], + [51153,8166], + [51155,870], + [51157,130], + [51159,147], + [51161,1695], + [51163,433], + [51165,1336], + [51167,609], + [51169,384], + [51171,745], + [51173,706], + [51175,333], + [51177,2466], + [51179,2524], + [51181,168], + [51183,233], + [51185,939], + [51187,743], + [51191,1104], + [51193,423], + [51195,880], + [51197,711], + [51199,1161], + [51510,2829], + [51520,341], + [51530,145], + [51540,791], + [51550,4624], + [51570,361], + [51580,149], + [51590,1151], + [51595,125], + [51600,387], + [51610,219], + [51620,193], + [51630,601], + [51640,130], + [51650,3292], + [51660,1097], + [51670,605], + [51678,128], + [51680,1777], + [51683,749], + [51685,290], + [51690,356], + [51700,4191], + [51710,5197], + [51720,90], + [51730,978], + [51735,218], + [51740,2418], + [51750,418], + [51760,5089], + [51770,2066], + [51775,494], + [51790,433], + [51800,1808], + [51810,8373], + [51820,419], + [51830,360], + [51840,527], + [53001,514], + [53003,429], + [53005,5360], + [53007,2169], + [53009,1904], + [53011,11600], + [53013,99], + [53015,2786], + [53017,1200], + [53019,280], + [53021,2579], + [53023,50], + [53025,2835], + [53027,1978], + [53029,1784], + [53031,736], + [53033,45500], + [53035,5938], + [53037,1180], + [53039,586], + [53041,2203], + [53043,245], + [53045,1571], + [53047,1438], + [53049,592], + [53051,353], + [53053,22377], + [53055,324], + [53057,3269], + [53059,322], + [53061,17380], + [53063,12995], + [53065,1328], + [53067,6697], + [53069,93], + [53071,1443], + [53073,5514], + [53075,1039], + [53077,8602], + [54001,401], + [54003,2009], + [54005,483], + [54007,395], + [54009,598], + [54011,1880], + [54013,259], + [54015,272], + [54017,162], + [54019,1007], + [54021,174], + [54023,330], + [54025,760], + [54027,399], + [54029,773], + [54031,289], + [54033,1594], + [54035,683], + [54037,902], + [54039,4216], + [54041,430], + [54043,491], + [54045,807], + [54047,423], + [54049,1333], + [54051,832], + [54053,669], + [54055,1246], + [54057,642], + [54059,584], + [54061,1934], + [54063,257], + [54065,306], + [54067,661], + [54069,983], + [54071,134], + [54073,199], + [54075,223], + [54077,748], + [54079,1223], + [54081,1584], + [54083,651], + [54085,242], + [54087,437], + [54089,254], + [54091,381], + [54093,174], + [54095,248], + [54097,573], + [54099,905], + [54101,208], + [54103,507], + [54105,173], + [54107,1977], + [54109,490], + [55001,423], + [55003,366], + [55005,875], + [55007,397], + [55009,4223], + [55011,248], + [55013,359], + [55015,778], + [55017,1182], + [55019,552], + [55021,942], + [55023,330], + [55025,7729], + [55027,1419], + [55029,605], + [55031,1064], + [55033,807], + [55035,1731], + [55037,109], + [55039,1629], + [55041,206], + [55043,898], + [55045,587], + [55047,367], + [55049,410], + [55051,163], + [55053,352], + [55055,1461], + [55057,457], + [55059,3495], + [55061,346], + [55063,1991], + [55065,257], + [55067,412], + [55069,559], + [55071,1494], + [55073,2193], + [55075,889], + [55077,293], + [55078,96], + [55079,19351], + [55081,698], + [55083,735], + [55085,715], + [55087,3142], + [55089,1367], + [55091,152], + [55093,845], + [55095,945], + [55097,1225], + [55099,257], + [55101,4077], + [55103,280], + [55105,3191], + [55107,311], + [55109,1567], + [55111,1042], + [55113,377], + [55115,699], + [55117,1753], + [55119,389], + [55121,509], + [55123,492], + [55125,444], + [55127,1909], + [55129,312], + [55131,2167], + [55133,6580], + [55135,856], + [55137,454], + [55139,2807], + [55141,1328], + [56001,583], + [56003,223], + [56005,1138], + [56007,316], + [56009,330], + [56011,128], + [56013,1080], + [56015,197], + [56017,90], + [56019,174], + [56021,1779], + [56023,325], + [56025,2102], + [56027,36], + [56029,664], + [56031,178], + [56033,627], + [56035,186], + [56037,982], + [56039,462], + [56041,411], + [56043,168], + [56045,150] + ] +} diff --git a/data/regional/united-states/education/us-education-bachelor-2010.json b/data/regional/united-states/education/us-education-bachelor-2010.json new file mode 100644 index 0000000..95848be --- /dev/null +++ b/data/regional/united-states/education/us-education-bachelor-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Bachelor Degree Holders", + "description" : "Percent of the population that earned a bachelor's degree.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","university","degree"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.bachelors.2010"], + [1001,0.217], + [1003,0.268], + [1005,0.135], + [1007,0.1], + [1009,0.125], + [1011,0.12], + [1013,0.11], + [1015,0.161], + [1017,0.108], + [1019,0.105], + [1021,0.122], + [1023,0.109], + [1025,0.135], + [1027,0.095], + [1029,0.084], + [1031,0.221], + [1033,0.164], + [1035,0.097], + [1037,0.106], + [1039,0.131], + [1041,0.101], + [1043,0.138], + [1045,0.175], + [1047,0.143], + [1049,0.109], + [1051,0.202], + [1053,0.109], + [1055,0.158], + [1057,0.095], + [1059,0.118], + [1061,0.08], + [1063,0.099], + [1065,0.1], + [1067,0.15], + [1069,0.19], + [1071,0.12], + [1073,0.288], + [1075,0.092], + [1077,0.215], + [1079,0.107], + [1081,0.309], + [1083,0.208], + [1085,0.127], + [1087,0.209], + [1089,0.374], + [1091,0.179], + [1093,0.088], + [1095,0.145], + [1097,0.198], + [1099,0.112], + [1101,0.305], + [1103,0.191], + [1105,0.133], + [1107,0.115], + [1109,0.237], + [1111,0.122], + [1113,0.119], + [1115,0.145], + [1117,0.396], + [1119,0.128], + [1121,0.119], + [1123,0.157], + [1125,0.262], + [1127,0.097], + [1129,0.093], + [1131,0.132], + [1133,0.111], + [2013,0.096], + [2016,0.09], + [2020,0.33], + [2050,0.139], + [2060,0.159], + [2068,0.275], + [2070,0.202], + [2090,0.271], + [2100,0.331], + [2105,0.279], + [2110,0.347], + [2122,0.224], + [2130,0.242], + [2150,0.218], + [2158,0.077], + [2164,0.135], + [2170,0.208], + [2180,0.149], + [2185,0.135], + [2188,0.125], + [2195,0.274], + [2198,0.178], + [2220,0.292], + [2230,0.323], + [2240,0.2], + [2261,0.237], + [2275,0.162], + [2282,0.179], + [2290,0.115], + [4001,0.103], + [4003,0.214], + [4005,0.311], + [4007,0.15], + [4009,0.134], + [4011,0.134], + [4012,0.09], + [4013,0.29], + [4015,0.12], + [4017,0.144], + [4019,0.296], + [4021,0.179], + [4023,0.173], + [4025,0.237], + [4027,0.133], + [5001,0.143], + [5003,0.137], + [5005,0.145], + [5007,0.259], + [5009,0.145], + [5011,0.127], + [5013,0.066], + [5015,0.174], + [5017,0.126], + [5019,0.217], + [5021,0.088], + [5023,0.138], + [5025,0.14], + [5027,0.208], + [5029,0.138], + [5031,0.231], + [5033,0.13], + [5035,0.142], + [5037,0.126], + [5039,0.124], + [5041,0.136], + [5043,0.194], + [5045,0.264], + [5047,0.116], + [5049,0.097], + [5051,0.202], + [5053,0.147], + [5055,0.12], + [5057,0.147], + [5059,0.125], + [5061,0.124], + [5063,0.147], + [5065,0.123], + [5067,0.07], + [5069,0.165], + [5071,0.148], + [5073,0.133], + [5075,0.092], + [5077,0.085], + [5079,0.086], + [5081,0.119], + [5083,0.117], + [5085,0.166], + [5087,0.134], + [5089,0.148], + [5091,0.127], + [5093,0.11], + [5095,0.123], + [5097,0.101], + [5099,0.107], + [5101,0.122], + [5103,0.132], + [5105,0.105], + [5107,0.121], + [5109,0.124], + [5111,0.088], + [5113,0.1], + [5115,0.201], + [5117,0.115], + [5119,0.307], + [5121,0.111], + [5123,0.105], + [5125,0.226], + [5127,0.09], + [5129,0.092], + [5131,0.179], + [5133,0.093], + [5135,0.125], + [5137,0.104], + [5139,0.161], + [5141,0.132], + [5143,0.274], + [5145,0.173], + [5147,0.09], + [5149,0.103], + [6001,0.403], + [6003,0.297], + [6005,0.19], + [6007,0.241], + [6009,0.196], + [6011,0.117], + [6013,0.382], + [6015,0.143], + [6017,0.311], + [6019,0.197], + [6021,0.162], + [6023,0.263], + [6025,0.122], + [6027,0.209], + [6029,0.147], + [6031,0.118], + [6033,0.164], + [6035,0.124], + [6037,0.29], + [6039,0.135], + [6041,0.541], + [6043,0.204], + [6045,0.227], + [6047,0.125], + [6049,0.156], + [6051,0.299], + [6053,0.234], + [6055,0.3], + [6057,0.319], + [6059,0.36], + [6061,0.341], + [6063,0.198], + [6065,0.205], + [6067,0.278], + [6069,0.183], + [6071,0.184], + [6073,0.341], + [6075,0.512], + [6077,0.175], + [6079,0.306], + [6081,0.44], + [6083,0.31], + [6085,0.453], + [6087,0.373], + [6089,0.2], + [6091,0.23], + [6093,0.226], + [6095,0.24], + [6097,0.315], + [6099,0.163], + [6101,0.187], + [6103,0.126], + [6105,0.195], + [6107,0.13], + [6109,0.173], + [6111,0.308], + [6113,0.378], + [6115,0.125], + [8001,0.203], + [8003,0.266], + [8005,0.379], + [8007,0.39], + [8009,0.19], + [8011,0.132], + [8013,0.57], + [8014,0.444], + [8015,0.333], + [8017,0.185], + [8019,0.416], + [8021,0.187], + [8023,0.143], + [8025,0.122], + [8027,0.292], + [8029,0.183], + [8031,0.401], + [8033,0.149], + [8035,0.544], + [8037,0.459], + [8039,0.292], + [8041,0.349], + [8043,0.162], + [8045,0.244], + [8047,0.337], + [8049,0.288], + [8051,0.458], + [8053,0.42], + [8055,0.272], + [8057,0.217], + [8059,0.393], + [8061,0.201], + [8063,0.149], + [8065,0.207], + [8067,0.406], + [8069,0.425], + [8071,0.193], + [8073,0.153], + [8075,0.18], + [8077,0.254], + [8079,0.391], + [8081,0.149], + [8083,0.265], + [8085,0.223], + [8087,0.146], + [8089,0.154], + [8091,0.413], + [8093,0.326], + [8095,0.16], + [8097,0.597], + [8099,0.183], + [8101,0.209], + [8103,0.227], + [8105,0.192], + [8107,0.456], + [8109,0.194], + [8111,0.308], + [8113,0.488], + [8115,0.127], + [8117,0.499], + [8119,0.31], + [8121,0.183], + [8123,0.254], + [8125,0.178], + [9001,0.436], + [9003,0.333], + [9005,0.323], + [9007,0.37], + [9009,0.317], + [9011,0.306], + [9013,0.368], + [9015,0.213], + [10001,0.2], + [10003,0.324], + [10005,0.212], + [11001,0.492], + [12001,0.409], + [12003,0.062], + [12005,0.204], + [12007,0.086], + [12009,0.262], + [12011,0.296], + [12013,0.116], + [12015,0.213], + [12017,0.165], + [12019,0.238], + [12021,0.308], + [12023,0.149], + [12027,0.116], + [12029,0.062], + [12031,0.249], + [12033,0.234], + [12035,0.22], + [12037,0.188], + [12039,0.123], + [12041,0.086], + [12043,0.113], + [12045,0.136], + [12047,0.078], + [12049,0.075], + [12051,0.082], + [12053,0.162], + [12055,0.146], + [12057,0.288], + [12059,0.111], + [12061,0.267], + [12063,0.128], + [12065,0.147], + [12067,0.09], + [12069,0.203], + [12071,0.246], + [12073,0.413], + [12075,0.122], + [12077,0.151], + [12079,0.106], + [12081,0.256], + [12083,0.171], + [12085,0.294], + [12086,0.262], + [12087,0.287], + [12089,0.219], + [12091,0.268], + [12093,0.114], + [12095,0.303], + [12097,0.183], + [12099,0.318], + [12101,0.2], + [12103,0.271], + [12105,0.18], + [12107,0.122], + [12109,0.387], + [12111,0.178], + [12113,0.247], + [12115,0.291], + [12117,0.336], + [12119,0.19], + [12121,0.102], + [12123,0.12], + [12125,0.093], + [12127,0.21], + [12129,0.173], + [12131,0.25], + [12133,0.128], + [13001,0.083], + [13003,0.08], + [13005,0.074], + [13007,0.122], + [13009,0.184], + [13011,0.105], + [13013,0.149], + [13015,0.165], + [13017,0.123], + [13019,0.108], + [13021,0.231], + [13023,0.101], + [13025,0.049], + [13027,0.158], + [13029,0.276], + [13031,0.252], + [13033,0.091], + [13035,0.091], + [13037,0.087], + [13039,0.204], + [13043,0.132], + [13045,0.183], + [13047,0.173], + [13049,0.072], + [13051,0.29], + [13053,0.315], + [13055,0.08], + [13057,0.336], + [13059,0.412], + [13061,0.085], + [13063,0.179], + [13065,0.171], + [13067,0.438], + [13069,0.11], + [13071,0.112], + [13073,0.338], + [13075,0.104], + [13077,0.257], + [13079,0.136], + [13081,0.117], + [13083,0.168], + [13085,0.188], + [13087,0.125], + [13089,0.387], + [13091,0.138], + [13093,0.096], + [13095,0.196], + [13097,0.237], + [13099,0.135], + [13101,0.061], + [13103,0.155], + [13105,0.096], + [13107,0.097], + [13109,0.134], + [13111,0.162], + [13113,0.415], + [13115,0.179], + [13117,0.436], + [13119,0.136], + [13121,0.476], + [13123,0.134], + [13125,0.105], + [13127,0.264], + [13129,0.127], + [13131,0.101], + [13133,0.189], + [13135,0.349], + [13137,0.187], + [13139,0.21], + [13141,0.103], + [13143,0.11], + [13145,0.274], + [13147,0.152], + [13149,0.073], + [13151,0.244], + [13153,0.244], + [13155,0.092], + [13157,0.177], + [13159,0.133], + [13161,0.115], + [13163,0.087], + [13165,0.128], + [13167,0.089], + [13169,0.172], + [13171,0.097], + [13173,0.094], + [13175,0.159], + [13177,0.192], + [13179,0.163], + [13181,0.097], + [13183,0.091], + [13185,0.223], + [13187,0.195], + [13189,0.115], + [13191,0.15], + [13193,0.107], + [13195,0.129], + [13197,0.068], + [13199,0.097], + [13201,0.094], + [13205,0.096], + [13207,0.19], + [13209,0.155], + [13211,0.238], + [13213,0.067], + [13215,0.216], + [13217,0.194], + [13219,0.449], + [13221,0.117], + [13223,0.208], + [13225,0.18], + [13227,0.22], + [13229,0.088], + [13231,0.157], + [13233,0.114], + [13235,0.056], + [13237,0.188], + [13239,0.074], + [13241,0.247], + [13243,0.131], + [13245,0.203], + [13247,0.236], + [13249,0.087], + [13251,0.114], + [13253,0.103], + [13255,0.136], + [13257,0.133], + [13259,0.11], + [13261,0.189], + [13263,0.109], + [13265,0.068], + [13267,0.119], + [13269,0.074], + [13271,0.081], + [13273,0.099], + [13275,0.196], + [13277,0.163], + [13279,0.143], + [13281,0.208], + [13283,0.099], + [13285,0.194], + [13287,0.132], + [13289,0.067], + [13291,0.216], + [13293,0.113], + [13295,0.128], + [13297,0.173], + [13299,0.122], + [13301,0.047], + [13303,0.107], + [13305,0.109], + [13307,0.079], + [13309,0.086], + [13311,0.196], + [13313,0.151], + [13315,0.088], + [13317,0.155], + [13319,0.121], + [13321,0.094], + [15001,0.266], + [15003,0.311], + [15005,0.243], + [15007,0.227], + [15009,0.257], + [16001,0.35], + [16003,0.213], + [16005,0.273], + [16007,0.167], + [16009,0.121], + [16011,0.159], + [16013,0.432], + [16015,0.239], + [16017,0.225], + [16019,0.262], + [16021,0.129], + [16023,0.175], + [16025,0.226], + [16027,0.167], + [16029,0.162], + [16031,0.157], + [16033,0.053], + [16035,0.144], + [16037,0.245], + [16039,0.146], + [16041,0.185], + [16043,0.198], + [16045,0.126], + [16047,0.115], + [16049,0.123], + [16051,0.178], + [16053,0.121], + [16055,0.232], + [16057,0.418], + [16059,0.223], + [16061,0.155], + [16063,0.114], + [16065,0.3], + [16067,0.094], + [16069,0.182], + [16071,0.156], + [16073,0.103], + [16075,0.138], + [16077,0.189], + [16079,0.119], + [16081,0.316], + [16083,0.168], + [16085,0.361], + [16087,0.174], + [17001,0.211], + [17003,0.095], + [17005,0.247], + [17007,0.208], + [17009,0.109], + [17011,0.161], + [17013,0.125], + [17015,0.159], + [17017,0.123], + [17019,0.412], + [17021,0.121], + [17023,0.164], + [17025,0.138], + [17027,0.189], + [17029,0.233], + [17031,0.332], + [17033,0.135], + [17035,0.13], + [17037,0.28], + [17039,0.157], + [17041,0.149], + [17043,0.453], + [17045,0.168], + [17047,0.131], + [17049,0.2], + [17051,0.143], + [17053,0.178], + [17055,0.124], + [17057,0.134], + [17059,0.101], + [17061,0.135], + [17063,0.183], + [17065,0.127], + [17067,0.191], + [17069,0.11], + [17071,0.149], + [17073,0.206], + [17075,0.137], + [17077,0.354], + [17079,0.13], + [17081,0.141], + [17083,0.16], + [17085,0.23], + [17087,0.128], + [17089,0.318], + [17091,0.174], + [17093,0.323], + [17095,0.152], + [17097,0.413], + [17099,0.158], + [17101,0.111], + [17103,0.15], + [17105,0.135], + [17107,0.17], + [17109,0.326], + [17111,0.321], + [17113,0.404], + [17115,0.205], + [17117,0.15], + [17119,0.23], + [17121,0.136], + [17123,0.171], + [17125,0.165], + [17127,0.141], + [17129,0.242], + [17131,0.145], + [17133,0.247], + [17135,0.133], + [17137,0.202], + [17139,0.138], + [17141,0.178], + [17143,0.281], + [17145,0.135], + [17147,0.229], + [17149,0.127], + [17151,0.083], + [17153,0.119], + [17155,0.15], + [17157,0.12], + [17159,0.181], + [17161,0.211], + [17163,0.239], + [17165,0.143], + [17167,0.31], + [17169,0.177], + [17171,0.18], + [17173,0.147], + [17175,0.152], + [17177,0.172], + [17179,0.231], + [17181,0.178], + [17183,0.137], + [17185,0.153], + [17187,0.199], + [17189,0.171], + [17191,0.121], + [17193,0.122], + [17195,0.161], + [17197,0.307], + [17199,0.217], + [17201,0.211], + [17203,0.26], + [18001,0.122], + [18003,0.261], + [18005,0.267], + [18007,0.137], + [18009,0.122], + [18011,0.38], + [18013,0.212], + [18015,0.149], + [18017,0.141], + [18019,0.178], + [18021,0.138], + [18023,0.131], + [18025,0.115], + [18027,0.122], + [18029,0.169], + [18031,0.148], + [18033,0.157], + [18035,0.224], + [18037,0.202], + [18039,0.181], + [18041,0.088], + [18043,0.221], + [18045,0.108], + [18047,0.165], + [18049,0.14], + [18051,0.143], + [18053,0.154], + [18055,0.111], + [18057,0.538], + [18059,0.242], + [18061,0.144], + [18063,0.312], + [18065,0.138], + [18067,0.197], + [18069,0.148], + [18071,0.138], + [18073,0.142], + [18075,0.107], + [18077,0.182], + [18079,0.075], + [18081,0.262], + [18083,0.149], + [18085,0.202], + [18087,0.104], + [18089,0.189], + [18091,0.167], + [18093,0.125], + [18095,0.166], + [18097,0.273], + [18099,0.171], + [18101,0.085], + [18103,0.102], + [18105,0.427], + [18107,0.175], + [18109,0.139], + [18111,0.095], + [18113,0.13], + [18115,0.121], + [18117,0.125], + [18119,0.083], + [18121,0.127], + [18123,0.083], + [18125,0.083], + [18127,0.252], + [18129,0.185], + [18131,0.136], + [18133,0.176], + [18135,0.104], + [18137,0.148], + [18139,0.132], + [18141,0.256], + [18143,0.099], + [18145,0.152], + [18147,0.159], + [18149,0.112], + [18151,0.189], + [18153,0.141], + [18155,0.114], + [18157,0.357], + [18159,0.135], + [18161,0.152], + [18163,0.218], + [18165,0.123], + [18167,0.213], + [18169,0.163], + [18171,0.131], + [18173,0.256], + [18175,0.105], + [18177,0.158], + [18179,0.14], + [18181,0.145], + [18183,0.166], + [19001,0.136], + [19003,0.156], + [19005,0.135], + [19007,0.166], + [19009,0.15], + [19011,0.178], + [19013,0.246], + [19015,0.196], + [19017,0.265], + [19019,0.185], + [19021,0.226], + [19023,0.149], + [19025,0.18], + [19027,0.2], + [19029,0.145], + [19031,0.186], + [19033,0.212], + [19035,0.192], + [19037,0.135], + [19039,0.129], + [19041,0.185], + [19043,0.149], + [19045,0.17], + [19047,0.15], + [19049,0.402], + [19051,0.17], + [19053,0.178], + [19055,0.146], + [19057,0.176], + [19059,0.272], + [19061,0.253], + [19063,0.181], + [19065,0.165], + [19067,0.149], + [19069,0.144], + [19071,0.174], + [19073,0.175], + [19075,0.216], + [19077,0.189], + [19079,0.164], + [19081,0.154], + [19083,0.202], + [19085,0.155], + [19087,0.199], + [19089,0.115], + [19091,0.159], + [19093,0.183], + [19095,0.192], + [19097,0.15], + [19099,0.166], + [19101,0.301], + [19103,0.508], + [19105,0.159], + [19107,0.138], + [19109,0.167], + [19111,0.148], + [19113,0.296], + [19115,0.131], + [19117,0.105], + [19119,0.159], + [19121,0.182], + [19123,0.179], + [19125,0.24], + [19127,0.187], + [19129,0.226], + [19131,0.166], + [19133,0.147], + [19135,0.151], + [19137,0.176], + [19139,0.198], + [19141,0.193], + [19143,0.163], + [19145,0.167], + [19147,0.161], + [19149,0.198], + [19151,0.164], + [19153,0.328], + [19155,0.173], + [19157,0.217], + [19159,0.208], + [19161,0.182], + [19163,0.297], + [19165,0.161], + [19167,0.224], + [19169,0.472], + [19171,0.165], + [19173,0.123], + [19175,0.156], + [19177,0.135], + [19179,0.149], + [19181,0.267], + [19183,0.194], + [19185,0.108], + [19187,0.18], + [19189,0.193], + [19191,0.263], + [19193,0.208], + [19195,0.16], + [19197,0.157], + [20001,0.177], + [20003,0.159], + [20005,0.223], + [20007,0.187], + [20009,0.205], + [20011,0.204], + [20013,0.163], + [20015,0.248], + [20017,0.188], + [20019,0.17], + [20021,0.145], + [20023,0.164], + [20025,0.197], + [20027,0.189], + [20029,0.152], + [20031,0.2], + [20033,0.164], + [20035,0.195], + [20037,0.263], + [20039,0.176], + [20041,0.199], + [20043,0.163], + [20045,0.483], + [20047,0.211], + [20049,0.171], + [20051,0.336], + [20053,0.198], + [20055,0.173], + [20057,0.172], + [20059,0.185], + [20061,0.194], + [20063,0.169], + [20065,0.242], + [20067,0.159], + [20069,0.198], + [20071,0.207], + [20073,0.146], + [20075,0.149], + [20077,0.163], + [20079,0.255], + [20081,0.148], + [20083,0.229], + [20085,0.177], + [20087,0.222], + [20089,0.189], + [20091,0.511], + [20093,0.123], + [20095,0.202], + [20097,0.209], + [20099,0.178], + [20101,0.222], + [20103,0.288], + [20105,0.171], + [20107,0.135], + [20109,0.18], + [20111,0.235], + [20113,0.251], + [20115,0.195], + [20117,0.127], + [20119,0.209], + [20121,0.23], + [20123,0.208], + [20125,0.186], + [20127,0.166], + [20129,0.191], + [20131,0.171], + [20133,0.162], + [20135,0.189], + [20137,0.173], + [20139,0.194], + [20141,0.18], + [20143,0.196], + [20145,0.169], + [20147,0.171], + [20149,0.284], + [20151,0.227], + [20153,0.198], + [20155,0.188], + [20157,0.186], + [20159,0.209], + [20161,0.423], + [20163,0.204], + [20165,0.162], + [20167,0.204], + [20169,0.236], + [20171,0.203], + [20173,0.275], + [20175,0.135], + [20177,0.289], + [20179,0.218], + [20181,0.191], + [20183,0.149], + [20185,0.207], + [20187,0.142], + [20189,0.139], + [20191,0.187], + [20193,0.234], + [20195,0.222], + [20197,0.218], + [20199,0.234], + [20201,0.182], + [20203,0.159], + [20205,0.107], + [20207,0.128], + [20209,0.152], + [21001,0.144], + [21003,0.106], + [21005,0.173], + [21007,0.107], + [21009,0.15], + [21011,0.132], + [21013,0.113], + [21015,0.282], + [21017,0.174], + [21019,0.158], + [21021,0.233], + [21023,0.116], + [21025,0.104], + [21027,0.078], + [21029,0.111], + [21031,0.078], + [21033,0.14], + [21035,0.282], + [21037,0.263], + [21039,0.106], + [21041,0.093], + [21043,0.102], + [21045,0.095], + [21047,0.137], + [21049,0.177], + [21051,0.075], + [21053,0.037], + [21055,0.093], + [21057,0.079], + [21059,0.182], + [21061,0.072], + [21063,0.071], + [21065,0.066], + [21067,0.391], + [21069,0.127], + [21071,0.117], + [21073,0.272], + [21075,0.109], + [21077,0.09], + [21079,0.138], + [21081,0.108], + [21083,0.144], + [21085,0.075], + [21087,0.114], + [21089,0.149], + [21091,0.108], + [21093,0.185], + [21095,0.111], + [21097,0.138], + [21099,0.092], + [21101,0.161], + [21103,0.141], + [21105,0.165], + [21107,0.132], + [21109,0.062], + [21111,0.285], + [21113,0.274], + [21115,0.105], + [21117,0.275], + [21119,0.124], + [21121,0.085], + [21123,0.121], + [21125,0.136], + [21127,0.082], + [21129,0.078], + [21131,0.081], + [21133,0.117], + [21135,0.116], + [21137,0.104], + [21139,0.107], + [21141,0.103], + [21143,0.108], + [21145,0.21], + [21147,0.08], + [21149,0.097], + [21151,0.274], + [21153,0.105], + [21155,0.114], + [21157,0.148], + [21159,0.089], + [21161,0.143], + [21163,0.115], + [21165,0.103], + [21167,0.17], + [21169,0.072], + [21171,0.116], + [21173,0.151], + [21175,0.118], + [21177,0.102], + [21179,0.154], + [21181,0.094], + [21183,0.094], + [21185,0.37], + [21187,0.186], + [21189,0.059], + [21191,0.105], + [21193,0.119], + [21195,0.12], + [21197,0.104], + [21199,0.145], + [21201,0.074], + [21203,0.116], + [21205,0.247], + [21207,0.127], + [21209,0.263], + [21211,0.232], + [21213,0.156], + [21215,0.166], + [21217,0.149], + [21219,0.1], + [21221,0.158], + [21223,0.131], + [21225,0.124], + [21227,0.275], + [21229,0.128], + [21231,0.09], + [21233,0.085], + [21235,0.119], + [21237,0.076], + [21239,0.331], + [22001,0.109], + [22003,0.091], + [22005,0.219], + [22007,0.085], + [22009,0.102], + [22011,0.148], + [22013,0.128], + [22015,0.216], + [22017,0.22], + [22019,0.192], + [22021,0.117], + [22023,0.117], + [22025,0.105], + [22027,0.113], + [22029,0.11], + [22031,0.136], + [22033,0.329], + [22035,0.083], + [22037,0.124], + [22039,0.107], + [22041,0.113], + [22043,0.118], + [22045,0.134], + [22047,0.11], + [22049,0.135], + [22051,0.232], + [22053,0.116], + [22055,0.276], + [22057,0.143], + [22059,0.131], + [22061,0.318], + [22063,0.164], + [22065,0.109], + [22067,0.111], + [22069,0.212], + [22071,0.316], + [22073,0.235], + [22075,0.174], + [22077,0.153], + [22079,0.194], + [22081,0.125], + [22083,0.122], + [22085,0.116], + [22087,0.099], + [22089,0.197], + [22091,0.111], + [22093,0.124], + [22095,0.158], + [22097,0.125], + [22099,0.116], + [22101,0.104], + [22103,0.301], + [22105,0.197], + [22107,0.129], + [22109,0.138], + [22111,0.138], + [22113,0.117], + [22115,0.156], + [22117,0.118], + [22119,0.135], + [22121,0.165], + [22123,0.098], + [22125,0.128], + [22127,0.112], + [23001,0.184], + [23003,0.162], + [23005,0.395], + [23007,0.245], + [23009,0.301], + [23011,0.241], + [23013,0.269], + [23015,0.316], + [23017,0.185], + [23019,0.233], + [23021,0.15], + [23023,0.296], + [23025,0.153], + [23027,0.231], + [23029,0.19], + [23031,0.267], + [24001,0.159], + [24003,0.357], + [24005,0.352], + [24009,0.29], + [24011,0.152], + [24013,0.311], + [24015,0.209], + [24017,0.261], + [24019,0.165], + [24021,0.358], + [24023,0.175], + [24025,0.305], + [24027,0.583], + [24029,0.302], + [24031,0.567], + [24033,0.296], + [24035,0.296], + [24037,0.274], + [24039,0.143], + [24041,0.327], + [24043,0.187], + [24045,0.247], + [24047,0.261], + [24510,0.252], + [25001,0.405], + [25003,0.296], + [25005,0.247], + [25007,0.4], + [25009,0.361], + [25011,0.325], + [25013,0.238], + [25015,0.413], + [25017,0.493], + [25019,0.402], + [25021,0.474], + [25023,0.325], + [25025,0.389], + [25027,0.329], + [26001,0.124], + [26003,0.169], + [26005,0.194], + [26007,0.155], + [26009,0.233], + [26011,0.106], + [26013,0.114], + [26015,0.166], + [26017,0.18], + [26019,0.252], + [26021,0.233], + [26023,0.141], + [26025,0.188], + [26027,0.158], + [26029,0.245], + [26031,0.178], + [26033,0.18], + [26035,0.103], + [26037,0.272], + [26039,0.141], + [26041,0.187], + [26043,0.179], + [26045,0.243], + [26047,0.295], + [26049,0.19], + [26051,0.111], + [26053,0.186], + [26055,0.289], + [26057,0.135], + [26059,0.142], + [26061,0.269], + [26063,0.138], + [26065,0.355], + [26067,0.131], + [26069,0.136], + [26071,0.151], + [26073,0.258], + [26075,0.175], + [26077,0.334], + [26079,0.116], + [26081,0.299], + [26083,0.22], + [26085,0.085], + [26087,0.17], + [26089,0.394], + [26091,0.192], + [26093,0.312], + [26095,0.135], + [26097,0.201], + [26099,0.218], + [26101,0.168], + [26103,0.297], + [26105,0.194], + [26107,0.201], + [26109,0.134], + [26111,0.322], + [26113,0.129], + [26115,0.17], + [26117,0.127], + [26119,0.106], + [26121,0.165], + [26123,0.132], + [26125,0.422], + [26127,0.143], + [26129,0.107], + [26131,0.165], + [26133,0.119], + [26135,0.089], + [26137,0.194], + [26139,0.288], + [26141,0.143], + [26143,0.136], + [26145,0.18], + [26147,0.15], + [26149,0.14], + [26151,0.11], + [26153,0.132], + [26155,0.149], + [26157,0.124], + [26159,0.183], + [26161,0.508], + [26163,0.202], + [26165,0.164], + [27001,0.144], + [27003,0.257], + [27005,0.213], + [27007,0.291], + [27009,0.196], + [27011,0.16], + [27013,0.301], + [27015,0.185], + [27017,0.214], + [27019,0.427], + [27021,0.202], + [27023,0.158], + [27025,0.17], + [27027,0.315], + [27029,0.145], + [27031,0.329], + [27033,0.157], + [27035,0.22], + [27037,0.381], + [27039,0.219], + [27041,0.214], + [27043,0.153], + [27045,0.193], + [27047,0.138], + [27049,0.227], + [27051,0.181], + [27053,0.44], + [27055,0.22], + [27057,0.233], + [27059,0.16], + [27061,0.208], + [27063,0.162], + [27065,0.139], + [27067,0.21], + [27069,0.191], + [27071,0.163], + [27073,0.162], + [27075,0.201], + [27077,0.186], + [27079,0.212], + [27081,0.178], + [27083,0.257], + [27085,0.183], + [27087,0.135], + [27089,0.16], + [27091,0.175], + [27093,0.157], + [27095,0.148], + [27097,0.145], + [27099,0.159], + [27101,0.15], + [27103,0.336], + [27105,0.16], + [27107,0.149], + [27109,0.391], + [27111,0.197], + [27113,0.154], + [27115,0.129], + [27117,0.154], + [27119,0.206], + [27121,0.184], + [27123,0.389], + [27125,0.13], + [27127,0.164], + [27129,0.16], + [27131,0.271], + [27133,0.168], + [27135,0.164], + [27137,0.256], + [27139,0.36], + [27141,0.242], + [27143,0.134], + [27145,0.236], + [27147,0.22], + [27149,0.235], + [27151,0.152], + [27153,0.122], + [27155,0.147], + [27157,0.179], + [27159,0.148], + [27161,0.183], + [27163,0.4], + [27165,0.15], + [27167,0.184], + [27169,0.251], + [27171,0.238], + [27173,0.184], + [28001,0.193], + [28003,0.16], + [28005,0.092], + [28007,0.171], + [28009,0.096], + [28011,0.204], + [28013,0.101], + [28015,0.164], + [28017,0.112], + [28019,0.109], + [28021,0.175], + [28023,0.083], + [28025,0.181], + [28027,0.143], + [28029,0.141], + [28031,0.158], + [28033,0.211], + [28035,0.259], + [28037,0.132], + [28039,0.11], + [28041,0.083], + [28043,0.186], + [28045,0.217], + [28047,0.2], + [28049,0.272], + [28051,0.112], + [28053,0.115], + [28055,0.043], + [28057,0.124], + [28059,0.184], + [28061,0.116], + [28063,0.205], + [28065,0.119], + [28067,0.158], + [28069,0.089], + [28071,0.393], + [28073,0.318], + [28075,0.188], + [28077,0.118], + [28079,0.096], + [28081,0.209], + [28083,0.166], + [28085,0.172], + [28087,0.201], + [28089,0.426], + [28091,0.125], + [28093,0.102], + [28095,0.132], + [28097,0.163], + [28099,0.124], + [28101,0.127], + [28103,0.131], + [28105,0.399], + [28107,0.125], + [28109,0.146], + [28111,0.1], + [28113,0.157], + [28115,0.114], + [28117,0.118], + [28119,0.11], + [28121,0.28], + [28123,0.103], + [28125,0.178], + [28127,0.143], + [28129,0.148], + [28131,0.135], + [28133,0.13], + [28135,0.09], + [28137,0.141], + [28139,0.104], + [28141,0.107], + [28143,0.146], + [28145,0.145], + [28147,0.14], + [28149,0.244], + [28151,0.176], + [28153,0.113], + [28155,0.172], + [28157,0.09], + [28159,0.147], + [28161,0.123], + [28163,0.119], + [29001,0.255], + [29003,0.205], + [29005,0.21], + [29007,0.14], + [29009,0.124], + [29011,0.132], + [29013,0.117], + [29015,0.125], + [29017,0.101], + [29019,0.452], + [29021,0.194], + [29023,0.141], + [29025,0.118], + [29027,0.204], + [29029,0.21], + [29031,0.269], + [29033,0.179], + [29035,0.111], + [29037,0.214], + [29039,0.119], + [29041,0.142], + [29043,0.269], + [29045,0.129], + [29047,0.302], + [29049,0.176], + [29051,0.305], + [29053,0.157], + [29055,0.108], + [29057,0.091], + [29059,0.107], + [29061,0.144], + [29063,0.12], + [29065,0.112], + [29067,0.102], + [29069,0.101], + [29071,0.165], + [29073,0.141], + [29075,0.12], + [29077,0.275], + [29079,0.128], + [29081,0.076], + [29083,0.151], + [29085,0.081], + [29087,0.163], + [29089,0.216], + [29091,0.141], + [29093,0.091], + [29095,0.269], + [29097,0.186], + [29099,0.161], + [29101,0.241], + [29103,0.139], + [29105,0.13], + [29107,0.159], + [29109,0.133], + [29111,0.13], + [29113,0.119], + [29115,0.143], + [29117,0.19], + [29119,0.089], + [29121,0.15], + [29123,0.107], + [29125,0.142], + [29127,0.169], + [29129,0.142], + [29131,0.119], + [29133,0.105], + [29135,0.171], + [29137,0.119], + [29139,0.122], + [29141,0.118], + [29143,0.122], + [29145,0.183], + [29147,0.237], + [29149,0.102], + [29151,0.132], + [29153,0.111], + [29155,0.098], + [29157,0.122], + [29159,0.158], + [29161,0.253], + [29163,0.126], + [29165,0.369], + [29167,0.166], + [29169,0.184], + [29171,0.156], + [29173,0.161], + [29175,0.117], + [29177,0.135], + [29179,0.067], + [29181,0.122], + [29183,0.334], + [29185,0.141], + [29186,0.116], + [29187,0.148], + [29189,0.391], + [29195,0.177], + [29197,0.096], + [29199,0.178], + [29201,0.137], + [29203,0.137], + [29205,0.134], + [29207,0.117], + [29209,0.168], + [29211,0.099], + [29213,0.2], + [29215,0.118], + [29217,0.143], + [29219,0.169], + [29221,0.077], + [29223,0.087], + [29225,0.147], + [29227,0.128], + [29229,0.113], + [29510,0.269], + [30001,0.304], + [30003,0.126], + [30005,0.172], + [30007,0.152], + [30009,0.285], + [30011,0.152], + [30013,0.239], + [30015,0.225], + [30017,0.192], + [30019,0.197], + [30021,0.184], + [30023,0.188], + [30025,0.157], + [30027,0.23], + [30029,0.267], + [30031,0.45], + [30033,0.141], + [30035,0.156], + [30037,0.237], + [30039,0.239], + [30041,0.204], + [30043,0.32], + [30045,0.285], + [30047,0.252], + [30049,0.347], + [30051,0.17], + [30053,0.164], + [30055,0.186], + [30057,0.338], + [30059,0.158], + [30061,0.136], + [30063,0.384], + [30065,0.134], + [30067,0.314], + [30069,0.138], + [30071,0.158], + [30073,0.193], + [30075,0.161], + [30077,0.187], + [30079,0.134], + [30081,0.25], + [30083,0.166], + [30085,0.173], + [30087,0.176], + [30089,0.156], + [30091,0.157], + [30093,0.229], + [30095,0.223], + [30097,0.288], + [30099,0.229], + [30101,0.174], + [30103,0.209], + [30105,0.169], + [30107,0.164], + [30109,0.159], + [30111,0.29], + [31001,0.215], + [31003,0.165], + [31005,0.179], + [31007,0.251], + [31009,0.198], + [31011,0.158], + [31013,0.195], + [31015,0.132], + [31017,0.168], + [31019,0.32], + [31021,0.183], + [31023,0.157], + [31025,0.235], + [31027,0.151], + [31029,0.146], + [31031,0.226], + [31033,0.271], + [31035,0.164], + [31037,0.127], + [31039,0.157], + [31041,0.18], + [31043,0.108], + [31045,0.365], + [31047,0.147], + [31049,0.182], + [31051,0.13], + [31053,0.173], + [31055,0.358], + [31057,0.259], + [31059,0.176], + [31061,0.163], + [31063,0.198], + [31065,0.163], + [31067,0.191], + [31069,0.202], + [31071,0.138], + [31073,0.164], + [31075,0.173], + [31077,0.125], + [31079,0.163], + [31081,0.218], + [31083,0.169], + [31085,0.166], + [31087,0.137], + [31089,0.161], + [31091,0.221], + [31093,0.139], + [31095,0.147], + [31097,0.118], + [31099,0.25], + [31101,0.195], + [31103,0.14], + [31105,0.198], + [31107,0.175], + [31109,0.353], + [31111,0.19], + [31113,0.188], + [31115,0.1], + [31117,0.243], + [31119,0.2], + [31121,0.135], + [31123,0.21], + [31125,0.116], + [31127,0.23], + [31129,0.124], + [31131,0.215], + [31133,0.148], + [31135,0.184], + [31137,0.227], + [31139,0.143], + [31141,0.189], + [31143,0.161], + [31145,0.216], + [31147,0.152], + [31149,0.233], + [31151,0.153], + [31153,0.361], + [31155,0.237], + [31157,0.195], + [31159,0.273], + [31161,0.226], + [31163,0.157], + [31165,0.26], + [31167,0.12], + [31169,0.161], + [31171,0.162], + [31173,0.132], + [31175,0.171], + [31177,0.291], + [31179,0.28], + [31181,0.127], + [31183,0.235], + [31185,0.215], + [32001,0.182], + [32003,0.217], + [32005,0.259], + [32007,0.158], + [32009,0.211], + [32011,0.178], + [32013,0.134], + [32015,0.129], + [32017,0.158], + [32019,0.127], + [32021,0.082], + [32023,0.105], + [32027,0.124], + [32029,0.139], + [32031,0.267], + [32033,0.134], + [32510,0.216], + [33001,0.269], + [33003,0.303], + [33005,0.298], + [33007,0.161], + [33009,0.353], + [33011,0.345], + [33013,0.327], + [33015,0.366], + [33017,0.3], + [33019,0.259], + [34001,0.236], + [34003,0.445], + [34005,0.335], + [34007,0.279], + [34009,0.264], + [34011,0.133], + [34013,0.316], + [34015,0.269], + [34017,0.346], + [34019,0.475], + [34021,0.382], + [34023,0.384], + [34025,0.392], + [34027,0.484], + [34029,0.243], + [34031,0.252], + [34033,0.183], + [34035,0.498], + [34037,0.314], + [34039,0.312], + [34041,0.286], + [35001,0.315], + [35003,0.213], + [35005,0.157], + [35006,0.115], + [35007,0.199], + [35009,0.182], + [35011,0.197], + [35013,0.254], + [35015,0.151], + [35017,0.241], + [35019,0.074], + [35021,0.182], + [35023,0.156], + [35025,0.129], + [35027,0.239], + [35028,0.64], + [35029,0.135], + [35031,0.109], + [35033,0.154], + [35035,0.177], + [35037,0.148], + [35039,0.161], + [35041,0.212], + [35043,0.284], + [35045,0.15], + [35047,0.233], + [35049,0.4], + [35051,0.168], + [35053,0.223], + [35055,0.301], + [35057,0.14], + [35059,0.178], + [35061,0.168], + [36001,0.376], + [36003,0.186], + [36005,0.176], + [36007,0.251], + [36009,0.181], + [36011,0.184], + [36013,0.203], + [36015,0.209], + [36017,0.17], + [36019,0.217], + [36021,0.282], + [36023,0.243], + [36025,0.191], + [36027,0.32], + [36029,0.291], + [36031,0.255], + [36033,0.173], + [36035,0.143], + [36037,0.202], + [36039,0.192], + [36041,0.259], + [36043,0.182], + [36045,0.202], + [36047,0.288], + [36049,0.144], + [36051,0.234], + [36053,0.237], + [36055,0.348], + [36057,0.159], + [36059,0.409], + [36061,0.57], + [36063,0.196], + [36065,0.215], + [36067,0.32], + [36069,0.31], + [36071,0.277], + [36073,0.151], + [36075,0.157], + [36077,0.255], + [36079,0.38], + [36081,0.295], + [36083,0.267], + [36085,0.285], + [36087,0.407], + [36089,0.187], + [36091,0.346], + [36093,0.287], + [36095,0.21], + [36097,0.174], + [36099,0.181], + [36101,0.199], + [36103,0.319], + [36105,0.203], + [36107,0.227], + [36109,0.497], + [36111,0.295], + [36113,0.273], + [36115,0.168], + [36117,0.215], + [36119,0.445], + [36121,0.148], + [36123,0.221], + [37001,0.214], + [37003,0.118], + [37005,0.161], + [37007,0.084], + [37009,0.172], + [37011,0.203], + [37013,0.19], + [37015,0.101], + [37017,0.098], + [37019,0.234], + [37021,0.312], + [37023,0.151], + [37025,0.235], + [37027,0.123], + [37029,0.19], + [37031,0.238], + [37033,0.111], + [37035,0.194], + [37037,0.351], + [37039,0.159], + [37041,0.157], + [37043,0.186], + [37045,0.157], + [37047,0.12], + [37049,0.213], + [37051,0.218], + [37053,0.172], + [37055,0.321], + [37057,0.163], + [37059,0.236], + [37061,0.101], + [37063,0.441], + [37065,0.101], + [37067,0.312], + [37069,0.152], + [37071,0.181], + [37073,0.105], + [37075,0.13], + [37077,0.138], + [37079,0.092], + [37081,0.324], + [37083,0.114], + [37085,0.16], + [37087,0.206], + [37089,0.273], + [37091,0.157], + [37093,0.151], + [37095,0.117], + [37097,0.216], + [37099,0.27], + [37101,0.193], + [37103,0.107], + [37105,0.18], + [37107,0.145], + [37109,0.178], + [37111,0.14], + [37113,0.195], + [37115,0.192], + [37117,0.122], + [37119,0.4], + [37121,0.144], + [37123,0.148], + [37125,0.298], + [37127,0.191], + [37129,0.361], + [37131,0.12], + [37133,0.177], + [37135,0.544], + [37137,0.175], + [37139,0.187], + [37141,0.178], + [37143,0.181], + [37145,0.138], + [37147,0.282], + [37149,0.272], + [37151,0.13], + [37153,0.1], + [37155,0.121], + [37157,0.125], + [37159,0.17], + [37161,0.146], + [37163,0.124], + [37165,0.14], + [37167,0.153], + [37169,0.109], + [37171,0.149], + [37173,0.186], + [37175,0.27], + [37177,0.084], + [37179,0.291], + [37181,0.107], + [37183,0.474], + [37185,0.139], + [37187,0.118], + [37189,0.371], + [37191,0.162], + [37193,0.123], + [37195,0.175], + [37197,0.112], + [37199,0.152], + [38001,0.184], + [38003,0.258], + [38005,0.098], + [38007,0.168], + [38009,0.216], + [38011,0.197], + [38013,0.176], + [38015,0.323], + [38017,0.364], + [38019,0.178], + [38021,0.191], + [38023,0.192], + [38025,0.151], + [38027,0.178], + [38029,0.137], + [38031,0.182], + [38033,0.195], + [38035,0.333], + [38037,0.164], + [38039,0.19], + [38041,0.197], + [38043,0.16], + [38045,0.2], + [38047,0.125], + [38049,0.143], + [38051,0.161], + [38053,0.212], + [38055,0.174], + [38057,0.167], + [38059,0.223], + [38061,0.199], + [38063,0.214], + [38065,0.194], + [38067,0.167], + [38069,0.111], + [38071,0.209], + [38073,0.177], + [38075,0.203], + [38077,0.224], + [38079,0.165], + [38081,0.15], + [38083,0.147], + [38085,0.123], + [38087,0.281], + [38089,0.231], + [38091,0.184], + [38093,0.227], + [38095,0.202], + [38097,0.263], + [38099,0.158], + [38101,0.258], + [38103,0.196], + [38105,0.193], + [39001,0.107], + [39003,0.158], + [39005,0.175], + [39007,0.129], + [39009,0.273], + [39011,0.155], + [39013,0.141], + [39015,0.098], + [39017,0.259], + [39019,0.12], + [39021,0.153], + [39023,0.162], + [39025,0.248], + [39027,0.147], + [39029,0.124], + [39031,0.116], + [39033,0.105], + [39035,0.282], + [39037,0.113], + [39039,0.163], + [39041,0.495], + [39043,0.201], + [39045,0.244], + [39047,0.131], + [39049,0.35], + [39051,0.149], + [39053,0.143], + [39055,0.34], + [39057,0.345], + [39059,0.112], + [39061,0.325], + [39063,0.244], + [39065,0.151], + [39067,0.09], + [39069,0.131], + [39071,0.097], + [39073,0.102], + [39075,0.094], + [39077,0.121], + [39079,0.12], + [39081,0.141], + [39083,0.19], + [39085,0.242], + [39087,0.129], + [39089,0.221], + [39091,0.143], + [39093,0.206], + [39095,0.23], + [39097,0.156], + [39099,0.204], + [39101,0.12], + [39103,0.295], + [39105,0.103], + [39107,0.154], + [39109,0.2], + [39111,0.092], + [39113,0.243], + [39115,0.087], + [39117,0.136], + [39119,0.142], + [39121,0.091], + [39123,0.189], + [39125,0.107], + [39127,0.089], + [39129,0.135], + [39131,0.126], + [39133,0.249], + [39135,0.12], + [39137,0.181], + [39139,0.149], + [39141,0.131], + [39143,0.131], + [39145,0.127], + [39147,0.161], + [39149,0.14], + [39151,0.204], + [39153,0.292], + [39155,0.163], + [39157,0.143], + [39159,0.273], + [39161,0.141], + [39163,0.092], + [39165,0.359], + [39167,0.16], + [39169,0.191], + [39171,0.129], + [39173,0.293], + [39175,0.134], + [40001,0.106], + [40003,0.179], + [40005,0.145], + [40007,0.179], + [40009,0.147], + [40011,0.159], + [40013,0.203], + [40015,0.137], + [40017,0.253], + [40019,0.164], + [40021,0.238], + [40023,0.115], + [40025,0.169], + [40027,0.312], + [40029,0.091], + [40031,0.198], + [40033,0.186], + [40035,0.135], + [40037,0.149], + [40039,0.25], + [40041,0.143], + [40043,0.192], + [40045,0.233], + [40047,0.218], + [40049,0.154], + [40051,0.168], + [40053,0.208], + [40055,0.13], + [40057,0.155], + [40059,0.171], + [40061,0.134], + [40063,0.118], + [40065,0.212], + [40067,0.112], + [40069,0.19], + [40071,0.199], + [40073,0.171], + [40075,0.164], + [40077,0.138], + [40079,0.114], + [40081,0.137], + [40083,0.232], + [40085,0.139], + [40087,0.179], + [40089,0.123], + [40091,0.111], + [40093,0.164], + [40095,0.159], + [40097,0.119], + [40099,0.133], + [40101,0.175], + [40103,0.175], + [40105,0.126], + [40107,0.109], + [40109,0.282], + [40111,0.135], + [40113,0.178], + [40115,0.131], + [40117,0.161], + [40119,0.34], + [40121,0.151], + [40123,0.262], + [40125,0.166], + [40127,0.116], + [40129,0.201], + [40131,0.212], + [40133,0.133], + [40135,0.122], + [40137,0.165], + [40139,0.203], + [40141,0.146], + [40143,0.288], + [40145,0.208], + [40147,0.261], + [40149,0.164], + [40151,0.285], + [40153,0.174], + [41001,0.205], + [41003,0.479], + [41005,0.314], + [41007,0.216], + [41009,0.168], + [41011,0.183], + [41013,0.154], + [41015,0.185], + [41017,0.291], + [41019,0.155], + [41021,0.188], + [41023,0.172], + [41025,0.162], + [41027,0.259], + [41029,0.244], + [41031,0.159], + [41033,0.165], + [41035,0.181], + [41037,0.164], + [41039,0.277], + [41041,0.238], + [41043,0.163], + [41045,0.138], + [41047,0.209], + [41049,0.115], + [41051,0.375], + [41053,0.281], + [41055,0.154], + [41057,0.2], + [41059,0.146], + [41061,0.203], + [41063,0.211], + [41065,0.215], + [41067,0.389], + [41069,0.182], + [41071,0.23], + [42001,0.185], + [42003,0.341], + [42005,0.139], + [42007,0.192], + [42009,0.125], + [42011,0.217], + [42013,0.173], + [42015,0.157], + [42017,0.345], + [42019,0.288], + [42021,0.175], + [42023,0.149], + [42025,0.146], + [42027,0.4], + [42029,0.478], + [42031,0.172], + [42033,0.123], + [42035,0.167], + [42037,0.183], + [42039,0.183], + [42041,0.323], + [42043,0.271], + [42045,0.347], + [42047,0.162], + [42049,0.233], + [42051,0.139], + [42053,0.096], + [42055,0.183], + [42057,0.099], + [42059,0.146], + [42061,0.138], + [42063,0.192], + [42065,0.12], + [42067,0.108], + [42069,0.237], + [42071,0.233], + [42073,0.186], + [42075,0.183], + [42077,0.27], + [42079,0.202], + [42081,0.188], + [42083,0.156], + [42085,0.19], + [42087,0.111], + [42089,0.238], + [42091,0.442], + [42093,0.25], + [42095,0.263], + [42097,0.135], + [42099,0.14], + [42101,0.222], + [42103,0.233], + [42105,0.124], + [42107,0.136], + [42109,0.153], + [42111,0.143], + [42113,0.114], + [42115,0.154], + [42117,0.177], + [42119,0.222], + [42121,0.141], + [42123,0.169], + [42125,0.242], + [42127,0.179], + [42129,0.24], + [42131,0.168], + [42133,0.215], + [44001,0.411], + [44003,0.292], + [44005,0.434], + [44007,0.256], + [44009,0.417], + [45001,0.153], + [45003,0.235], + [45005,0.132], + [45007,0.18], + [45009,0.174], + [45011,0.115], + [45013,0.374], + [45015,0.183], + [45017,0.203], + [45019,0.375], + [45021,0.117], + [45023,0.112], + [45025,0.111], + [45027,0.132], + [45029,0.136], + [45031,0.159], + [45033,0.092], + [45035,0.241], + [45037,0.163], + [45039,0.159], + [45041,0.208], + [45043,0.218], + [45045,0.3], + [45047,0.22], + [45049,0.11], + [45051,0.218], + [45053,0.094], + [45055,0.185], + [45057,0.154], + [45059,0.145], + [45061,0.085], + [45063,0.276], + [45065,0.16], + [45067,0.129], + [45069,0.086], + [45071,0.193], + [45073,0.214], + [45075,0.167], + [45077,0.235], + [45079,0.365], + [45081,0.126], + [45083,0.199], + [45085,0.174], + [45087,0.129], + [45089,0.113], + [45091,0.269], + [46003,0.122], + [46005,0.197], + [46007,0.157], + [46009,0.154], + [46011,0.377], + [46013,0.241], + [46015,0.252], + [46017,0.083], + [46019,0.192], + [46021,0.169], + [46023,0.155], + [46025,0.125], + [46027,0.404], + [46029,0.227], + [46031,0.143], + [46033,0.286], + [46035,0.215], + [46037,0.177], + [46039,0.178], + [46041,0.126], + [46043,0.16], + [46045,0.205], + [46047,0.202], + [46049,0.155], + [46051,0.155], + [46053,0.147], + [46055,0.2], + [46057,0.167], + [46059,0.171], + [46061,0.189], + [46063,0.343], + [46065,0.333], + [46067,0.217], + [46069,0.168], + [46071,0.194], + [46073,0.11], + [46075,0.156], + [46077,0.203], + [46079,0.221], + [46081,0.318], + [46083,0.369], + [46085,0.198], + [46087,0.204], + [46089,0.148], + [46091,0.167], + [46093,0.21], + [46095,0.149], + [46097,0.175], + [46099,0.289], + [46101,0.217], + [46102,0.161], + [46103,0.278], + [46105,0.178], + [46107,0.199], + [46109,0.15], + [46111,0.153], + [46115,0.159], + [46117,0.277], + [46119,0.251], + [46121,0.181], + [46123,0.16], + [46125,0.215], + [46127,0.291], + [46129,0.213], + [46135,0.268], + [46137,0.12], + [47001,0.221], + [47003,0.128], + [47005,0.126], + [47007,0.088], + [47009,0.206], + [47011,0.192], + [47013,0.092], + [47015,0.111], + [47017,0.155], + [47019,0.149], + [47021,0.179], + [47023,0.138], + [47025,0.111], + [47027,0.11], + [47029,0.078], + [47031,0.19], + [47033,0.122], + [47035,0.156], + [47037,0.34], + [47039,0.104], + [47041,0.117], + [47043,0.149], + [47045,0.145], + [47047,0.189], + [47049,0.101], + [47051,0.165], + [47053,0.148], + [47055,0.121], + [47057,0.073], + [47059,0.14], + [47061,0.08], + [47063,0.156], + [47065,0.27], + [47067,0.074], + [47069,0.107], + [47071,0.094], + [47073,0.124], + [47075,0.129], + [47077,0.118], + [47079,0.148], + [47081,0.106], + [47083,0.075], + [47085,0.132], + [47087,0.094], + [47089,0.135], + [47091,0.101], + [47093,0.338], + [47095,0.052], + [47097,0.099], + [47099,0.11], + [47101,0.112], + [47103,0.158], + [47105,0.226], + [47107,0.139], + [47109,0.109], + [47111,0.076], + [47113,0.245], + [47115,0.133], + [47117,0.115], + [47119,0.161], + [47121,0.09], + [47123,0.104], + [47125,0.223], + [47127,0.126], + [47129,0.063], + [47131,0.119], + [47133,0.105], + [47135,0.106], + [47137,0.12], + [47139,0.101], + [47141,0.217], + [47143,0.112], + [47145,0.167], + [47147,0.142], + [47149,0.263], + [47151,0.099], + [47153,0.133], + [47155,0.152], + [47157,0.278], + [47159,0.128], + [47161,0.115], + [47163,0.2], + [47165,0.23], + [47167,0.138], + [47169,0.1], + [47171,0.122], + [47173,0.063], + [47175,0.09], + [47177,0.109], + [47179,0.279], + [47181,0.087], + [47183,0.184], + [47185,0.11], + [47187,0.518], + [47189,0.24], + [48001,0.113], + [48003,0.124], + [48005,0.159], + [48007,0.239], + [48009,0.188], + [48011,0.259], + [48013,0.11], + [48015,0.179], + [48017,0.185], + [48019,0.24], + [48021,0.179], + [48023,0.245], + [48025,0.092], + [48027,0.212], + [48029,0.253], + [48031,0.254], + [48033,0.191], + [48035,0.148], + [48037,0.181], + [48039,0.261], + [48041,0.393], + [48043,0.304], + [48045,0.15], + [48047,0.125], + [48049,0.15], + [48051,0.105], + [48053,0.214], + [48055,0.143], + [48057,0.147], + [48059,0.171], + [48061,0.145], + [48063,0.149], + [48065,0.236], + [48067,0.129], + [48069,0.149], + [48071,0.162], + [48073,0.118], + [48075,0.157], + [48077,0.193], + [48079,0.117], + [48081,0.118], + [48083,0.137], + [48085,0.483], + [48087,0.183], + [48089,0.153], + [48091,0.326], + [48093,0.181], + [48095,0.105], + [48097,0.195], + [48099,0.154], + [48101,0.159], + [48103,0.131], + [48105,0.091], + [48107,0.133], + [48109,0.138], + [48111,0.084], + [48113,0.28], + [48115,0.087], + [48117,0.132], + [48119,0.15], + [48121,0.395], + [48123,0.121], + [48125,0.127], + [48127,0.126], + [48129,0.166], + [48131,0.085], + [48133,0.155], + [48135,0.131], + [48137,0.221], + [48139,0.21], + [48141,0.193], + [48143,0.24], + [48145,0.098], + [48147,0.147], + [48149,0.176], + [48151,0.152], + [48153,0.171], + [48155,0.156], + [48157,0.404], + [48159,0.236], + [48161,0.14], + [48163,0.081], + [48165,0.129], + [48167,0.263], + [48169,0.086], + [48171,0.268], + [48173,0.164], + [48175,0.18], + [48177,0.139], + [48179,0.122], + [48181,0.192], + [48183,0.203], + [48185,0.113], + [48187,0.24], + [48189,0.141], + [48191,0.152], + [48193,0.234], + [48195,0.202], + [48197,0.147], + [48199,0.154], + [48201,0.277], + [48203,0.162], + [48205,0.198], + [48207,0.117], + [48209,0.35], + [48211,0.163], + [48213,0.142], + [48215,0.151], + [48217,0.153], + [48219,0.18], + [48221,0.239], + [48223,0.167], + [48225,0.134], + [48227,0.101], + [48229,0.105], + [48231,0.17], + [48233,0.13], + [48235,0.123], + [48237,0.105], + [48239,0.169], + [48241,0.14], + [48243,0.343], + [48245,0.178], + [48247,0.124], + [48249,0.106], + [48251,0.161], + [48253,0.093], + [48255,0.084], + [48257,0.172], + [48259,0.355], + [48261,0.179], + [48263,0.194], + [48265,0.27], + [48267,0.203], + [48269,0.368], + [48271,0.145], + [48273,0.204], + [48275,0.129], + [48277,0.174], + [48279,0.138], + [48281,0.173], + [48283,0.081], + [48285,0.14], + [48287,0.145], + [48289,0.126], + [48291,0.088], + [48293,0.12], + [48295,0.225], + [48297,0.14], + [48299,0.26], + [48301,0.179], + [48303,0.275], + [48305,0.159], + [48307,0.204], + [48309,0.206], + [48311,0.105], + [48313,0.115], + [48315,0.112], + [48317,0.126], + [48319,0.289], + [48321,0.141], + [48323,0.137], + [48325,0.193], + [48327,0.139], + [48329,0.239], + [48331,0.135], + [48333,0.187], + [48335,0.094], + [48337,0.167], + [48339,0.297], + [48341,0.137], + [48343,0.173], + [48345,0.185], + [48347,0.24], + [48349,0.157], + [48351,0.086], + [48353,0.171], + [48355,0.199], + [48357,0.179], + [48359,0.298], + [48361,0.125], + [48363,0.137], + [48365,0.114], + [48367,0.224], + [48369,0.157], + [48371,0.113], + [48373,0.106], + [48375,0.15], + [48377,0.178], + [48379,0.121], + [48381,0.301], + [48383,0.1], + [48385,0.194], + [48387,0.086], + [48389,0.076], + [48391,0.112], + [48393,0.341], + [48395,0.158], + [48397,0.356], + [48399,0.164], + [48401,0.148], + [48403,0.122], + [48405,0.119], + [48407,0.096], + [48409,0.151], + [48411,0.181], + [48413,0.174], + [48415,0.163], + [48417,0.276], + [48419,0.135], + [48421,0.191], + [48423,0.245], + [48425,0.284], + [48427,0.098], + [48429,0.122], + [48431,0.227], + [48433,0.224], + [48435,0.118], + [48437,0.146], + [48439,0.287], + [48441,0.242], + [48443,0.207], + [48445,0.143], + [48447,0.167], + [48449,0.137], + [48451,0.216], + [48453,0.435], + [48455,0.112], + [48457,0.122], + [48459,0.151], + [48461,0.127], + [48463,0.161], + [48465,0.158], + [48467,0.121], + [48469,0.169], + [48471,0.171], + [48473,0.196], + [48475,0.1], + [48477,0.258], + [48479,0.167], + [48481,0.154], + [48483,0.151], + [48485,0.2], + [48487,0.159], + [48489,0.086], + [48491,0.373], + [48493,0.182], + [48495,0.098], + [48497,0.156], + [48499,0.165], + [48501,0.15], + [48503,0.136], + [48505,0.096], + [48507,0.077], + [49001,0.104], + [49003,0.227], + [49005,0.351], + [49007,0.142], + [49009,0.188], + [49011,0.338], + [49013,0.16], + [49015,0.132], + [49017,0.196], + [49019,0.243], + [49021,0.282], + [49023,0.131], + [49025,0.237], + [49027,0.193], + [49029,0.271], + [49031,0.162], + [49033,0.222], + [49035,0.301], + [49037,0.172], + [49039,0.187], + [49041,0.169], + [49043,0.508], + [49045,0.186], + [49047,0.147], + [49049,0.355], + [49051,0.311], + [49053,0.24], + [49055,0.227], + [49057,0.225], + [50001,0.326], + [50003,0.311], + [50005,0.275], + [50007,0.448], + [50009,0.159], + [50011,0.212], + [50013,0.286], + [50015,0.346], + [50017,0.292], + [50019,0.199], + [50021,0.263], + [50023,0.374], + [50025,0.338], + [50027,0.328], + [51001,0.18], + [51003,0.516], + [51005,0.149], + [51007,0.131], + [51009,0.156], + [51011,0.118], + [51013,0.701], + [51015,0.191], + [51017,0.115], + [51019,0.242], + [51021,0.12], + [51023,0.229], + [51025,0.119], + [51027,0.089], + [51029,0.124], + [51031,0.163], + [51033,0.155], + [51035,0.117], + [51036,0.109], + [51037,0.151], + [51041,0.357], + [51043,0.292], + [51045,0.136], + [51047,0.216], + [51049,0.125], + [51051,0.086], + [51053,0.131], + [51057,0.166], + [51059,0.58], + [51061,0.308], + [51063,0.193], + [51065,0.258], + [51067,0.152], + [51069,0.231], + [51071,0.161], + [51073,0.192], + [51075,0.307], + [51077,0.103], + [51079,0.2], + [51081,0.055], + [51083,0.132], + [51085,0.33], + [51087,0.389], + [51089,0.109], + [51091,0.214], + [51093,0.251], + [51095,0.45], + [51097,0.099], + [51099,0.305], + [51101,0.198], + [51103,0.277], + [51105,0.12], + [51107,0.572], + [51109,0.179], + [51111,0.1], + [51113,0.207], + [51115,0.206], + [51117,0.134], + [51119,0.275], + [51121,0.394], + [51125,0.229], + [51127,0.226], + [51131,0.188], + [51133,0.223], + [51135,0.116], + [51137,0.215], + [51139,0.111], + [51141,0.095], + [51143,0.128], + [51145,0.219], + [51147,0.185], + [51149,0.172], + [51153,0.375], + [51155,0.139], + [51157,0.374], + [51159,0.098], + [51161,0.326], + [51163,0.218], + [51165,0.219], + [51167,0.107], + [51169,0.103], + [51171,0.175], + [51173,0.146], + [51175,0.126], + [51177,0.299], + [51179,0.354], + [51181,0.136], + [51183,0.1], + [51185,0.143], + [51187,0.214], + [51191,0.205], + [51193,0.159], + [51195,0.113], + [51197,0.14], + [51199,0.415], + [51510,0.604], + [51520,0.197], + [51530,0.165], + [51540,0.467], + [51550,0.279], + [51570,0.2], + [51580,0.104], + [51590,0.162], + [51595,0.154], + [51600,0.532], + [51610,0.71], + [51620,0.19], + [51630,0.319], + [51640,0.127], + [51650,0.218], + [51660,0.333], + [51670,0.109], + [51678,0.444], + [51680,0.283], + [51683,0.283], + [51685,0.219], + [51690,0.204], + [51700,0.235], + [51710,0.237], + [51720,0.206], + [51730,0.152], + [51735,0.36], + [51740,0.187], + [51750,0.351], + [51760,0.326], + [51770,0.219], + [51775,0.291], + [51790,0.285], + [51800,0.251], + [51810,0.319], + [51820,0.218], + [51830,0.433], + [51840,0.297], + [53001,0.134], + [53003,0.182], + [53005,0.276], + [53007,0.232], + [53009,0.233], + [53011,0.257], + [53013,0.2], + [53015,0.147], + [53017,0.173], + [53019,0.167], + [53021,0.146], + [53023,0.177], + [53025,0.144], + [53027,0.145], + [53029,0.298], + [53031,0.348], + [53033,0.452], + [53035,0.28], + [53037,0.319], + [53039,0.179], + [53041,0.15], + [53043,0.203], + [53045,0.179], + [53047,0.177], + [53049,0.168], + [53051,0.179], + [53053,0.234], + [53055,0.449], + [53057,0.232], + [53059,0.197], + [53061,0.282], + [53063,0.279], + [53065,0.192], + [53067,0.316], + [53069,0.153], + [53071,0.242], + [53073,0.317], + [53075,0.474], + [53077,0.156], + [54001,0.133], + [54003,0.197], + [54005,0.082], + [54007,0.095], + [54009,0.156], + [54011,0.23], + [54013,0.08], + [54015,0.083], + [54017,0.08], + [54019,0.107], + [54021,0.122], + [54023,0.115], + [54025,0.172], + [54027,0.094], + [54029,0.153], + [54031,0.095], + [54033,0.176], + [54035,0.145], + [54037,0.277], + [54039,0.234], + [54041,0.12], + [54043,0.077], + [54045,0.089], + [54047,0.063], + [54049,0.192], + [54051,0.122], + [54053,0.103], + [54055,0.164], + [54057,0.13], + [54059,0.09], + [54061,0.358], + [54063,0.133], + [54065,0.127], + [54067,0.13], + [54069,0.259], + [54071,0.131], + [54073,0.104], + [54075,0.135], + [54077,0.116], + [54079,0.238], + [54081,0.154], + [54083,0.176], + [54085,0.103], + [54087,0.091], + [54089,0.112], + [54091,0.145], + [54093,0.137], + [54095,0.083], + [54097,0.152], + [54099,0.127], + [54101,0.08], + [54103,0.126], + [54105,0.11], + [54107,0.191], + [54109,0.093], + [55001,0.108], + [55003,0.207], + [55005,0.176], + [55007,0.268], + [55009,0.256], + [55011,0.155], + [55013,0.16], + [55015,0.253], + [55017,0.175], + [55019,0.113], + [55021,0.199], + [55023,0.159], + [55025,0.454], + [55027,0.152], + [55029,0.275], + [55031,0.22], + [55033,0.249], + [55035,0.302], + [55037,0.121], + [55039,0.18], + [55041,0.12], + [55043,0.192], + [55045,0.188], + [55047,0.165], + [55049,0.223], + [55051,0.179], + [55053,0.148], + [55055,0.227], + [55057,0.121], + [55059,0.225], + [55061,0.136], + [55063,0.288], + [55065,0.159], + [55067,0.129], + [55069,0.147], + [55071,0.175], + [55073,0.208], + [55075,0.142], + [55077,0.128], + [55078,0.105], + [55079,0.267], + [55081,0.164], + [55083,0.132], + [55085,0.224], + [55087,0.258], + [55089,0.431], + [55091,0.172], + [55093,0.254], + [55095,0.184], + [55097,0.271], + [55099,0.153], + [55101,0.231], + [55103,0.144], + [55105,0.198], + [55107,0.148], + [55109,0.325], + [55111,0.2], + [55113,0.205], + [55115,0.144], + [55117,0.205], + [55119,0.136], + [55121,0.171], + [55123,0.188], + [55125,0.25], + [55127,0.251], + [55129,0.187], + [55131,0.26], + [55133,0.392], + [55135,0.161], + [55137,0.133], + [55139,0.237], + [55141,0.192], + [56001,0.474], + [56003,0.203], + [56005,0.176], + [56007,0.179], + [56009,0.176], + [56011,0.228], + [56013,0.228], + [56015,0.196], + [56017,0.193], + [56019,0.253], + [56021,0.229], + [56023,0.193], + [56025,0.209], + [56027,0.197], + [56029,0.277], + [56031,0.173], + [56033,0.231], + [56035,0.228], + [56037,0.171], + [56039,0.497], + [56041,0.174], + [56043,0.245], + [56045,0.179] + ] +} diff --git a/data/regional/united-states/education/us-education-bachelor-2016.json b/data/regional/united-states/education/us-education-bachelor-2016.json new file mode 100644 index 0000000..ca4a068 --- /dev/null +++ b/data/regional/united-states/education/us-education-bachelor-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Bachelor Degree Holders", + "description" : "Percent of the population that earned a bachelor's degree.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","university","degree"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.bachelors.2016"], + [1001,0.246], + [1003,0.295], + [1005,0.129], + [1007,0.12], + [1009,0.131], + [1011,0.103], + [1013,0.161], + [1015,0.177], + [1017,0.125], + [1019,0.14], + [1021,0.149], + [1023,0.12], + [1025,0.121], + [1027,0.111], + [1029,0.115], + [1031,0.237], + [1033,0.185], + [1035,0.087], + [1037,0.099], + [1039,0.149], + [1041,0.146], + [1043,0.15], + [1045,0.161], + [1047,0.138], + [1049,0.114], + [1051,0.222], + [1053,0.116], + [1055,0.165], + [1057,0.141], + [1059,0.124], + [1061,0.117], + [1063,0.1], + [1065,0.14], + [1067,0.161], + [1069,0.21], + [1071,0.126], + [1073,0.314], + [1075,0.131], + [1077,0.217], + [1079,0.103], + [1081,0.344], + [1083,0.233], + [1085,0.123], + [1087,0.2], + [1089,0.407], + [1091,0.148], + [1093,0.125], + [1095,0.166], + [1097,0.225], + [1099,0.124], + [1101,0.315], + [1103,0.214], + [1105,0.145], + [1107,0.111], + [1109,0.24], + [1111,0.154], + [1113,0.17], + [1115,0.161], + [1117,0.414], + [1119,0.181], + [1121,0.131], + [1123,0.173], + [1125,0.294], + [1127,0.105], + [1129,0.096], + [1131,0.113], + [1133,0.131], + [2013,0.119], + [2016,0.157], + [2020,0.343], + [2050,0.114], + [2060,0.191], + [2068,0.385], + [2070,0.176], + [2090,0.334], + [2100,0.404], + [2105,0.243], + [2110,0.394], + [2122,0.237], + [2130,0.238], + [2150,0.249], + [2158,null], + [2164,0.125], + [2170,0.206], + [2180,0.139], + [2185,0.142], + [2188,0.108], + [2195,0.25], + [2198,0.158], + [2220,0.324], + [2230,0.337], + [2240,0.192], + [2261,0.301], + [2275,0.203], + [2282,0.197], + [2290,0.123], + [4001,0.111], + [4003,0.232], + [4005,0.342], + [4007,0.177], + [4009,0.133], + [4011,0.122], + [4012,0.104], + [4013,0.31], + [4015,0.119], + [4017,0.145], + [4019,0.308], + [4021,0.185], + [4023,0.225], + [4025,0.255], + [4027,0.144], + [5001,0.144], + [5003,0.136], + [5005,0.177], + [5007,0.307], + [5009,0.15], + [5011,0.142], + [5013,0.12], + [5015,0.177], + [5017,0.131], + [5019,0.247], + [5021,0.113], + [5023,0.154], + [5025,0.157], + [5027,0.219], + [5029,0.169], + [5031,0.254], + [5033,0.136], + [5035,0.174], + [5037,0.147], + [5039,0.127], + [5041,0.132], + [5043,0.198], + [5045,0.291], + [5047,0.13], + [5049,0.11], + [5051,0.206], + [5053,0.198], + [5055,0.164], + [5057,0.126], + [5059,0.135], + [5061,0.157], + [5063,0.176], + [5065,0.124], + [5067,0.086], + [5069,0.17], + [5071,0.159], + [5073,0.137], + [5075,0.134], + [5077,0.082], + [5079,0.078], + [5081,0.097], + [5083,0.13], + [5085,0.195], + [5087,0.113], + [5089,0.153], + [5091,0.145], + [5093,0.126], + [5095,0.091], + [5097,0.125], + [5099,0.151], + [5101,0.148], + [5103,0.166], + [5105,0.106], + [5107,0.117], + [5109,0.148], + [5111,0.096], + [5113,0.123], + [5115,0.213], + [5117,0.13], + [5119,0.329], + [5121,0.137], + [5123,0.104], + [5125,0.245], + [5127,0.106], + [5129,0.144], + [5131,0.188], + [5133,0.094], + [5135,0.101], + [5137,0.144], + [5139,0.192], + [5141,0.136], + [5143,0.312], + [5145,0.193], + [5147,0.102], + [5149,0.144], + [6001,0.439], + [6003,0.297], + [6005,0.215], + [6007,0.261], + [6009,0.202], + [6011,0.144], + [6013,0.403], + [6015,0.149], + [6017,0.33], + [6019,0.197], + [6021,0.127], + [6023,0.282], + [6025,0.14], + [6027,0.245], + [6029,0.157], + [6031,0.128], + [6033,0.162], + [6035,0.125], + [6037,0.308], + [6039,0.131], + [6041,0.571], + [6043,0.226], + [6045,0.241], + [6047,0.137], + [6049,0.183], + [6051,0.306], + [6053,0.236], + [6055,0.33], + [6057,0.344], + [6059,0.384], + [6061,0.369], + [6063,0.219], + [6065,0.212], + [6067,0.293], + [6069,0.19], + [6071,0.193], + [6073,0.365], + [6075,0.548], + [6077,0.182], + [6079,0.341], + [6081,0.471], + [6083,0.322], + [6085,0.491], + [6087,0.39], + [6089,0.201], + [6091,0.198], + [6093,0.222], + [6095,0.251], + [6097,0.331], + [6099,0.165], + [6101,0.179], + [6103,0.138], + [6105,0.201], + [6107,0.14], + [6109,0.197], + [6111,0.322], + [6113,0.4], + [6115,0.155], + [8001,0.224], + [8003,0.258], + [8005,0.407], + [8007,0.349], + [8009,0.218], + [8011,0.095], + [8013,0.593], + [8014,0.525], + [8015,0.344], + [8017,0.233], + [8019,0.446], + [8021,0.183], + [8023,0.2], + [8025,0.102], + [8027,0.294], + [8029,0.196], + [8031,0.457], + [8033,0.203], + [8035,0.575], + [8037,0.45], + [8039,0.328], + [8041,0.366], + [8043,0.164], + [8045,0.291], + [8047,0.344], + [8049,0.372], + [8051,0.526], + [8053,0.409], + [8055,0.26], + [8057,0.191], + [8059,0.422], + [8061,0.202], + [8063,0.138], + [8065,0.309], + [8067,0.43], + [8069,0.453], + [8071,0.189], + [8073,0.137], + [8075,0.167], + [8077,0.261], + [8079,0.425], + [8081,0.189], + [8083,0.27], + [8085,0.238], + [8087,0.161], + [8089,0.171], + [8091,0.545], + [8093,0.305], + [8095,0.204], + [8097,0.604], + [8099,0.154], + [8101,0.212], + [8103,0.218], + [8105,0.226], + [8107,0.494], + [8109,0.255], + [8111,0.284], + [8113,0.551], + [8115,0.198], + [8117,0.499], + [8119,0.326], + [8121,0.16], + [8123,0.268], + [8125,0.214], + [9001,0.464], + [9003,0.369], + [9005,0.34], + [9007,0.409], + [9009,0.343], + [9011,0.324], + [9013,0.389], + [9015,0.239], + [10001,0.231], + [10003,0.354], + [10005,0.239], + [11001,0.554], + [12001,0.415], + [12003,0.128], + [12005,0.225], + [12007,0.118], + [12009,0.277], + [12011,0.31], + [12013,0.105], + [12015,0.216], + [12017,0.178], + [12019,0.239], + [12021,0.339], + [12023,0.159], + [12027,0.1], + [12029,0.064], + [12031,0.281], + [12033,0.249], + [12035,0.233], + [12037,0.167], + [12039,0.175], + [12041,0.123], + [12043,0.089], + [12045,0.167], + [12047,0.102], + [12049,0.096], + [12051,0.091], + [12053,0.164], + [12055,0.165], + [12057,0.314], + [12059,0.123], + [12061,0.272], + [12063,0.137], + [12065,0.19], + [12067,0.136], + [12069,0.217], + [12071,0.267], + [12073,0.452], + [12075,0.112], + [12077,0.125], + [12079,0.123], + [12081,0.279], + [12083,0.184], + [12085,0.315], + [12086,0.273], + [12087,0.311], + [12089,0.245], + [12091,0.294], + [12093,0.107], + [12095,0.319], + [12097,0.187], + [12099,0.342], + [12101,0.225], + [12103,0.295], + [12105,0.195], + [12107,0.127], + [12109,0.425], + [12111,0.198], + [12113,0.269], + [12115,0.331], + [12117,0.358], + [12119,0.298], + [12121,0.12], + [12123,0.098], + [12125,0.076], + [12127,0.224], + [12129,0.166], + [12131,0.263], + [12133,0.11], + [13001,0.119], + [13003,0.067], + [13005,0.132], + [13007,0.11], + [13009,0.184], + [13011,0.11], + [13013,0.168], + [13015,0.185], + [13017,0.106], + [13019,0.123], + [13021,0.246], + [13023,0.177], + [13025,0.095], + [13027,0.124], + [13029,0.333], + [13031,0.282], + [13033,0.104], + [13035,0.102], + [13037,0.103], + [13039,0.226], + [13043,0.142], + [13045,0.182], + [13047,0.197], + [13049,0.09], + [13051,0.329], + [13053,0.301], + [13055,0.089], + [13057,0.355], + [13059,0.408], + [13061,0.074], + [13063,0.19], + [13065,0.144], + [13067,0.45], + [13069,0.131], + [13071,0.129], + [13073,0.351], + [13075,0.138], + [13077,0.281], + [13079,0.131], + [13081,0.151], + [13083,0.138], + [13085,0.298], + [13087,0.169], + [13089,0.417], + [13091,0.135], + [13093,0.113], + [13095,0.198], + [13097,0.261], + [13099,0.141], + [13101,0.079], + [13103,0.183], + [13105,0.117], + [13107,0.117], + [13109,0.151], + [13111,0.177], + [13113,0.458], + [13115,0.198], + [13117,0.483], + [13119,0.126], + [13121,0.498], + [13123,0.178], + [13125,0.082], + [13127,0.282], + [13129,0.129], + [13131,0.128], + [13133,0.247], + [13135,0.349], + [13137,0.175], + [13139,0.225], + [13141,0.109], + [13143,0.138], + [13145,0.266], + [13147,0.137], + [13149,0.105], + [13151,0.275], + [13153,0.24], + [13155,0.111], + [13157,0.191], + [13159,0.104], + [13161,0.107], + [13163,0.104], + [13165,0.13], + [13167,0.087], + [13169,0.202], + [13171,0.172], + [13173,0.154], + [13175,0.152], + [13177,0.242], + [13179,0.189], + [13181,0.132], + [13183,0.152], + [13185,0.239], + [13187,0.27], + [13189,0.142], + [13191,0.138], + [13193,0.085], + [13195,0.155], + [13197,0.111], + [13199,0.101], + [13201,0.114], + [13205,0.12], + [13207,0.222], + [13209,0.156], + [13211,0.208], + [13213,0.109], + [13215,0.25], + [13217,0.198], + [13219,0.466], + [13221,0.166], + [13223,0.246], + [13225,0.202], + [13227,0.248], + [13229,0.129], + [13231,0.153], + [13233,0.13], + [13235,0.118], + [13237,0.183], + [13239,0.086], + [13241,0.263], + [13243,0.134], + [13245,0.21], + [13247,0.26], + [13249,0.149], + [13251,0.144], + [13253,0.149], + [13255,0.154], + [13257,0.176], + [13259,0.104], + [13261,0.199], + [13263,0.126], + [13265,0.088], + [13267,0.114], + [13269,0.113], + [13271,0.091], + [13273,0.121], + [13275,0.195], + [13277,0.175], + [13279,0.17], + [13281,0.251], + [13283,0.165], + [13285,0.188], + [13287,0.123], + [13289,0.116], + [13291,0.224], + [13293,0.134], + [13295,0.15], + [13297,0.186], + [13299,0.128], + [13301,0.121], + [13303,0.123], + [13305,0.133], + [13307,0.094], + [13309,0.049], + [13311,0.208], + [13313,0.136], + [13315,0.095], + [13317,0.138], + [13319,0.086], + [13321,0.102], + [15001,0.276], + [15003,0.334], + [15005,0.298], + [15007,0.278], + [15009,0.257], + [16001,0.37], + [16003,0.227], + [16005,0.275], + [16007,0.195], + [16009,0.136], + [16011,0.181], + [16013,0.419], + [16015,0.27], + [16017,0.221], + [16019,0.278], + [16021,0.175], + [16023,0.149], + [16025,0.205], + [16027,0.184], + [16029,0.181], + [16031,0.186], + [16033,0.152], + [16035,0.168], + [16037,0.262], + [16039,0.166], + [16041,0.196], + [16043,0.209], + [16045,0.153], + [16047,0.143], + [16049,0.169], + [16051,0.208], + [16053,0.143], + [16055,0.24], + [16057,0.459], + [16059,0.21], + [16061,0.16], + [16063,0.118], + [16065,0.368], + [16067,0.149], + [16069,0.222], + [16071,0.163], + [16073,0.097], + [16075,0.158], + [16077,0.153], + [16079,0.128], + [16081,0.4], + [16083,0.181], + [16085,0.31], + [16087,0.154], + [17001,0.226], + [17003,0.09], + [17005,0.183], + [17007,0.215], + [17009,0.143], + [17011,0.188], + [17013,0.15], + [17015,0.164], + [17017,0.138], + [17019,0.439], + [17021,0.151], + [17023,0.165], + [17025,0.148], + [17027,0.212], + [17029,0.253], + [17031,0.365], + [17033,0.172], + [17035,0.148], + [17037,0.308], + [17039,0.204], + [17041,0.191], + [17043,0.473], + [17045,0.18], + [17047,0.12], + [17049,0.225], + [17051,0.136], + [17053,0.174], + [17055,0.153], + [17057,0.164], + [17059,0.115], + [17061,0.112], + [17063,0.218], + [17065,0.157], + [17067,0.196], + [17069,0.113], + [17071,0.133], + [17073,0.213], + [17075,0.146], + [17077,0.359], + [17079,0.183], + [17081,0.164], + [17083,0.184], + [17085,0.241], + [17087,0.167], + [17089,0.321], + [17091,0.19], + [17093,0.343], + [17095,0.181], + [17097,0.437], + [17099,0.17], + [17101,0.101], + [17103,0.177], + [17105,0.152], + [17107,0.184], + [17109,0.335], + [17111,0.332], + [17113,0.445], + [17115,0.228], + [17117,0.182], + [17119,0.257], + [17121,0.15], + [17123,0.161], + [17125,0.143], + [17127,0.133], + [17129,0.239], + [17131,0.175], + [17133,0.298], + [17135,0.139], + [17137,0.206], + [17139,0.171], + [17141,0.198], + [17143,0.298], + [17145,0.134], + [17147,0.299], + [17149,0.153], + [17151,0.137], + [17153,0.11], + [17155,0.144], + [17157,0.13], + [17159,0.206], + [17161,0.22], + [17163,0.261], + [17165,0.16], + [17167,0.343], + [17169,0.189], + [17171,0.121], + [17173,0.152], + [17175,0.167], + [17177,0.179], + [17179,0.25], + [17181,0.213], + [17183,0.14], + [17185,0.172], + [17187,0.219], + [17189,0.209], + [17191,0.14], + [17193,0.137], + [17195,0.173], + [17197,0.335], + [17199,0.221], + [17201,0.224], + [17203,0.304], + [18001,0.156], + [18003,0.274], + [18005,0.297], + [18007,0.171], + [18009,0.11], + [18011,0.445], + [18013,0.235], + [18015,0.174], + [18017,0.14], + [18019,0.202], + [18021,0.169], + [18023,0.149], + [18025,0.098], + [18027,0.14], + [18029,0.2], + [18031,0.182], + [18033,0.174], + [18035,0.233], + [18037,0.197], + [18039,0.183], + [18041,0.107], + [18043,0.269], + [18045,0.145], + [18047,0.191], + [18049,0.137], + [18051,0.156], + [18053,0.167], + [18055,0.143], + [18057,0.563], + [18059,0.29], + [18061,0.169], + [18063,0.347], + [18065,0.157], + [18067,0.195], + [18069,0.189], + [18071,0.162], + [18073,0.165], + [18075,0.109], + [18077,0.17], + [18079,0.096], + [18081,0.295], + [18083,0.152], + [18085,0.212], + [18087,0.112], + [18089,0.209], + [18091,0.176], + [18093,0.143], + [18095,0.174], + [18097,0.29], + [18099,0.185], + [18101,0.114], + [18103,0.119], + [18105,0.451], + [18107,0.168], + [18109,0.155], + [18111,0.105], + [18113,0.141], + [18115,0.138], + [18117,0.119], + [18119,0.12], + [18121,0.118], + [18123,0.134], + [18125,0.126], + [18127,0.261], + [18129,0.206], + [18131,0.107], + [18133,0.15], + [18135,0.131], + [18137,0.174], + [18139,0.14], + [18141,0.282], + [18143,0.13], + [18145,0.166], + [18147,0.153], + [18149,0.116], + [18151,0.199], + [18153,0.127], + [18155,0.083], + [18157,0.353], + [18159,0.211], + [18161,0.186], + [18163,0.249], + [18165,0.13], + [18167,0.232], + [18169,0.183], + [18171,0.196], + [18173,0.28], + [18175,0.127], + [18177,0.171], + [18179,0.174], + [18181,0.157], + [18183,0.183], + [19001,0.166], + [19003,0.167], + [19005,0.17], + [19007,0.181], + [19009,0.131], + [19011,0.218], + [19013,0.27], + [19015,0.224], + [19017,0.279], + [19019,0.18], + [19021,0.187], + [19023,0.157], + [19025,0.184], + [19027,0.214], + [19029,0.198], + [19031,0.22], + [19033,0.219], + [19035,0.192], + [19037,0.145], + [19039,0.154], + [19041,0.209], + [19043,0.153], + [19045,0.194], + [19047,0.117], + [19049,0.474], + [19051,0.166], + [19053,0.201], + [19055,0.151], + [19057,0.196], + [19059,0.29], + [19061,0.292], + [19063,0.175], + [19065,0.196], + [19067,0.197], + [19069,0.167], + [19071,0.214], + [19073,0.18], + [19075,0.251], + [19077,0.205], + [19079,0.22], + [19081,0.199], + [19083,0.204], + [19085,0.174], + [19087,0.188], + [19089,0.132], + [19091,0.199], + [19093,0.19], + [19095,0.186], + [19097,0.165], + [19099,0.179], + [19101,0.331], + [19103,0.524], + [19105,0.167], + [19107,0.17], + [19109,0.195], + [19111,0.146], + [19113,0.322], + [19115,0.133], + [19117,0.165], + [19119,0.213], + [19121,0.225], + [19123,0.239], + [19125,0.254], + [19127,0.195], + [19129,0.239], + [19131,0.157], + [19133,0.166], + [19135,0.154], + [19137,0.155], + [19139,0.205], + [19141,0.2], + [19143,0.166], + [19145,0.219], + [19147,0.221], + [19149,0.195], + [19151,0.169], + [19153,0.356], + [19155,0.207], + [19157,0.229], + [19159,0.193], + [19161,0.193], + [19163,0.319], + [19165,0.211], + [19167,0.269], + [19169,0.503], + [19171,0.163], + [19173,0.136], + [19175,0.164], + [19177,0.127], + [19179,0.176], + [19181,0.288], + [19183,0.209], + [19185,0.131], + [19187,0.206], + [19189,0.216], + [19191,0.276], + [19193,0.217], + [19195,0.153], + [19197,0.17], + [20001,0.183], + [20003,0.192], + [20005,0.199], + [20007,0.187], + [20009,0.167], + [20011,0.217], + [20013,0.201], + [20015,0.286], + [20017,0.243], + [20019,0.183], + [20021,0.185], + [20023,0.246], + [20025,0.288], + [20027,0.25], + [20029,0.202], + [20031,0.211], + [20033,0.201], + [20035,0.194], + [20037,0.284], + [20039,0.262], + [20041,0.195], + [20043,0.169], + [20045,0.497], + [20047,0.182], + [20049,0.168], + [20051,0.341], + [20053,0.197], + [20055,0.185], + [20057,0.178], + [20059,0.199], + [20061,0.204], + [20063,0.224], + [20065,0.255], + [20067,0.152], + [20069,0.192], + [20071,0.296], + [20073,0.177], + [20075,0.163], + [20077,0.197], + [20079,0.277], + [20081,0.177], + [20083,0.257], + [20085,0.204], + [20087,0.206], + [20089,0.153], + [20091,0.536], + [20093,0.143], + [20095,0.235], + [20097,0.273], + [20099,0.18], + [20101,0.213], + [20103,0.301], + [20105,0.192], + [20107,0.16], + [20109,0.183], + [20111,0.267], + [20113,0.283], + [20115,0.228], + [20117,0.179], + [20119,0.22], + [20121,0.247], + [20123,0.257], + [20125,0.176], + [20127,0.168], + [20129,0.143], + [20131,0.218], + [20133,0.189], + [20135,0.201], + [20137,0.138], + [20139,0.199], + [20141,0.21], + [20143,0.215], + [20145,0.224], + [20147,0.223], + [20149,0.32], + [20151,0.255], + [20153,0.239], + [20155,0.192], + [20157,0.21], + [20159,0.224], + [20161,0.46], + [20163,0.243], + [20165,0.237], + [20167,0.242], + [20169,0.238], + [20171,0.263], + [20173,0.3], + [20175,0.116], + [20177,0.293], + [20179,0.229], + [20181,0.19], + [20183,0.22], + [20185,0.217], + [20187,0.248], + [20189,0.165], + [20191,0.194], + [20193,0.284], + [20195,0.258], + [20197,0.237], + [20199,0.249], + [20201,0.184], + [20203,0.183], + [20205,0.153], + [20207,0.137], + [20209,0.163], + [21001,0.165], + [21003,0.136], + [21005,0.189], + [21007,0.153], + [21009,0.155], + [21011,0.121], + [21013,0.095], + [21015,0.311], + [21017,0.178], + [21019,0.191], + [21021,0.23], + [21023,0.146], + [21025,0.122], + [21027,0.105], + [21029,0.142], + [21031,0.104], + [21033,0.152], + [21035,0.286], + [21037,0.306], + [21039,0.157], + [21041,0.125], + [21043,0.131], + [21045,0.124], + [21047,0.167], + [21049,0.205], + [21051,0.106], + [21053,0.11], + [21055,0.128], + [21057,0.142], + [21059,0.212], + [21061,0.119], + [21063,0.088], + [21065,0.092], + [21067,0.414], + [21069,0.127], + [21071,0.118], + [21073,0.283], + [21075,0.134], + [21077,0.1], + [21079,0.155], + [21081,0.124], + [21083,0.168], + [21085,0.102], + [21087,0.103], + [21089,0.168], + [21091,0.118], + [21093,0.236], + [21095,0.121], + [21097,0.154], + [21099,0.114], + [21101,0.174], + [21103,0.113], + [21105,0.088], + [21107,0.151], + [21109,0.112], + [21111,0.318], + [21113,0.287], + [21115,0.117], + [21117,0.291], + [21119,0.129], + [21121,0.109], + [21123,0.107], + [21125,0.125], + [21127,0.115], + [21129,0.076], + [21131,0.097], + [21133,0.112], + [21135,0.116], + [21137,0.099], + [21139,0.1], + [21141,0.134], + [21143,0.175], + [21145,0.229], + [21147,0.077], + [21149,0.092], + [21151,0.291], + [21153,0.101], + [21155,0.13], + [21157,0.159], + [21159,0.063], + [21161,0.158], + [21163,0.153], + [21165,0.123], + [21167,0.185], + [21169,0.114], + [21171,0.154], + [21173,0.166], + [21175,0.119], + [21177,0.121], + [21179,0.172], + [21181,0.105], + [21183,0.099], + [21185,0.398], + [21187,0.113], + [21189,0.174], + [21191,0.103], + [21193,0.14], + [21195,0.129], + [21197,0.141], + [21199,0.147], + [21201,0.17], + [21203,0.097], + [21205,0.266], + [21207,0.127], + [21209,0.284], + [21211,0.238], + [21213,0.142], + [21215,0.187], + [21217,0.173], + [21219,0.117], + [21221,0.18], + [21223,0.116], + [21225,0.122], + [21227,0.291], + [21229,0.148], + [21231,0.093], + [21233,0.089], + [21235,0.179], + [21237,0.118], + [21239,0.319], + [22001,0.111], + [22003,0.119], + [22005,0.266], + [22007,0.114], + [22009,0.101], + [22011,0.163], + [22013,0.13], + [22015,0.26], + [22017,0.238], + [22019,0.206], + [22021,0.118], + [22023,0.169], + [22025,0.131], + [22027,0.13], + [22029,0.113], + [22031,0.135], + [22033,0.342], + [22035,0.113], + [22037,0.129], + [22039,0.119], + [22041,0.119], + [22043,0.093], + [22045,0.137], + [22047,0.134], + [22049,0.136], + [22051,0.248], + [22053,0.145], + [22055,0.309], + [22057,0.162], + [22059,0.11], + [22061,0.354], + [22063,0.174], + [22065,0.12], + [22067,0.137], + [22069,0.187], + [22071,0.362], + [22073,0.242], + [22075,0.158], + [22077,0.139], + [22079,0.199], + [22081,0.135], + [22083,0.137], + [22085,0.139], + [22087,0.132], + [22089,0.207], + [22091,0.106], + [22093,0.144], + [22095,0.169], + [22097,0.132], + [22099,0.138], + [22101,0.11], + [22103,0.313], + [22105,0.198], + [22107,0.091], + [22109,0.143], + [22111,0.121], + [22113,0.123], + [22115,0.178], + [22117,0.119], + [22119,0.139], + [22121,0.197], + [22123,0.124], + [22125,0.225], + [22127,0.126], + [23001,0.207], + [23003,0.181], + [23005,0.441], + [23007,0.258], + [23009,0.325], + [23011,0.253], + [23013,0.302], + [23015,0.324], + [23017,0.182], + [23019,0.247], + [23021,0.163], + [23023,0.335], + [23025,0.158], + [23027,0.292], + [23029,0.201], + [23031,0.301], + [24001,0.18], + [24003,0.394], + [24005,0.372], + [24009,0.293], + [24011,0.153], + [24013,0.337], + [24015,0.225], + [24017,0.274], + [24019,0.208], + [24021,0.397], + [24023,0.192], + [24025,0.345], + [24027,0.61], + [24029,0.305], + [24031,0.581], + [24033,0.315], + [24035,0.35], + [24037,0.299], + [24039,0.14], + [24041,0.358], + [24043,0.201], + [24045,0.274], + [24047,0.299], + [24510,0.297], + [25001,0.411], + [25003,0.326], + [25005,0.265], + [25007,0.398], + [25009,0.38], + [25011,0.359], + [25013,0.262], + [25015,0.447], + [25017,0.53], + [25019,0.42], + [25021,0.512], + [25023,0.35], + [25025,0.427], + [25027,0.348], + [26001,0.145], + [26003,0.181], + [26005,0.214], + [26007,0.168], + [26009,0.267], + [26011,0.114], + [26013,0.156], + [26015,0.189], + [26017,0.181], + [26019,0.256], + [26021,0.268], + [26023,0.136], + [26025,0.208], + [26027,0.174], + [26029,0.285], + [26031,0.183], + [26033,0.197], + [26035,0.114], + [26037,0.307], + [26039,0.167], + [26041,0.206], + [26043,0.234], + [26045,0.252], + [26047,0.329], + [26049,0.199], + [26051,0.134], + [26053,0.175], + [26055,0.317], + [26057,0.143], + [26059,0.167], + [26061,0.31], + [26063,0.149], + [26065,0.377], + [26067,0.156], + [26069,0.163], + [26071,0.181], + [26073,0.282], + [26075,0.206], + [26077,0.361], + [26079,0.136], + [26081,0.337], + [26083,0.249], + [26085,0.09], + [26087,0.178], + [26089,0.411], + [26091,0.199], + [26093,0.34], + [26095,0.138], + [26097,0.191], + [26099,0.238], + [26101,0.199], + [26103,0.301], + [26105,0.208], + [26107,0.212], + [26109,0.159], + [26111,0.329], + [26113,0.134], + [26115,0.188], + [26117,0.126], + [26119,0.118], + [26121,0.18], + [26123,0.143], + [26125,0.45], + [26127,0.171], + [26129,0.114], + [26131,0.174], + [26133,0.13], + [26135,0.102], + [26137,0.205], + [26139,0.316], + [26141,0.167], + [26143,0.139], + [26145,0.207], + [26147,0.176], + [26149,0.153], + [26151,0.131], + [26153,0.157], + [26155,0.158], + [26157,0.139], + [26159,0.203], + [26161,0.532], + [26163,0.223], + [26165,0.167], + [27001,0.16], + [27003,0.282], + [27005,0.237], + [27007,0.268], + [27009,0.222], + [27011,0.166], + [27013,0.317], + [27015,0.209], + [27017,0.22], + [27019,0.46], + [27021,0.209], + [27023,0.165], + [27025,0.22], + [27027,0.33], + [27029,0.146], + [27031,0.396], + [27033,0.199], + [27035,0.242], + [27037,0.407], + [27039,0.238], + [27041,0.251], + [27043,0.17], + [27045,0.204], + [27047,0.168], + [27049,0.243], + [27051,0.196], + [27053,0.476], + [27055,0.226], + [27057,0.254], + [27059,0.177], + [27061,0.223], + [27063,0.212], + [27065,0.138], + [27067,0.225], + [27069,0.207], + [27071,0.184], + [27073,0.183], + [27075,0.272], + [27077,0.17], + [27079,0.214], + [27081,0.189], + [27083,0.268], + [27085,0.173], + [27087,0.126], + [27089,0.2], + [27091,0.185], + [27093,0.189], + [27095,0.156], + [27097,0.162], + [27099,0.2], + [27101,0.178], + [27103,0.323], + [27105,0.135], + [27107,0.157], + [27109,0.42], + [27111,0.241], + [27113,0.174], + [27115,0.138], + [27117,0.199], + [27119,0.239], + [27121,0.225], + [27123,0.41], + [27125,0.15], + [27127,0.178], + [27129,0.148], + [27131,0.272], + [27133,0.206], + [27135,0.187], + [27137,0.278], + [27139,0.388], + [27141,0.267], + [27143,0.167], + [27145,0.259], + [27147,0.248], + [27149,0.282], + [27151,0.173], + [27153,0.154], + [27155,0.181], + [27157,0.212], + [27159,0.13], + [27161,0.199], + [27163,0.423], + [27165,0.163], + [27167,0.213], + [27169,0.293], + [27171,0.268], + [27173,0.162], + [28001,0.181], + [28003,0.166], + [28005,0.122], + [28007,0.148], + [28009,0.114], + [28011,0.215], + [28013,0.109], + [28015,0.161], + [28017,0.11], + [28019,0.154], + [28021,0.192], + [28023,0.141], + [28025,0.189], + [28027,0.172], + [28029,0.129], + [28031,0.144], + [28033,0.232], + [28035,0.257], + [28037,0.167], + [28039,0.131], + [28041,0.078], + [28043,0.168], + [28045,0.209], + [28047,0.215], + [28049,0.28], + [28051,0.116], + [28053,0.139], + [28055,0.09], + [28057,0.131], + [28059,0.205], + [28061,0.137], + [28063,0.178], + [28065,0.146], + [28067,0.187], + [28069,0.114], + [28071,0.397], + [28073,0.368], + [28075,0.192], + [28077,0.136], + [28079,0.123], + [28081,0.231], + [28083,0.188], + [28085,0.148], + [28087,0.224], + [28089,0.457], + [28091,0.127], + [28093,0.13], + [28095,0.156], + [28097,0.183], + [28099,0.144], + [28101,0.158], + [28103,0.145], + [28105,0.42], + [28107,0.156], + [28109,0.142], + [28111,0.09], + [28113,0.157], + [28115,0.147], + [28117,0.12], + [28119,0.129], + [28121,0.296], + [28123,0.118], + [28125,0.19], + [28127,0.128], + [28129,0.119], + [28131,0.14], + [28133,0.141], + [28135,0.089], + [28137,0.162], + [28139,0.137], + [28141,0.109], + [28143,0.19], + [28145,0.155], + [28147,0.097], + [28149,0.236], + [28151,0.185], + [28153,0.116], + [28155,0.185], + [28157,0.13], + [28159,0.173], + [28161,0.136], + [28163,0.129], + [29001,0.305], + [29003,0.24], + [29005,0.223], + [29007,0.126], + [29009,0.128], + [29011,0.152], + [29013,0.138], + [29015,0.106], + [29017,0.094], + [29019,0.468], + [29021,0.205], + [29023,0.156], + [29025,0.179], + [29027,0.205], + [29029,0.213], + [29031,0.299], + [29033,0.173], + [29035,0.122], + [29037,0.253], + [29039,0.149], + [29041,0.158], + [29043,0.265], + [29045,0.123], + [29047,0.319], + [29049,0.186], + [29051,0.317], + [29053,0.205], + [29055,0.125], + [29057,0.149], + [29059,0.132], + [29061,0.168], + [29063,0.136], + [29065,0.126], + [29067,0.094], + [29069,0.114], + [29071,0.197], + [29073,0.164], + [29075,0.194], + [29077,0.299], + [29079,0.187], + [29081,0.139], + [29083,0.155], + [29085,0.098], + [29087,0.201], + [29089,0.253], + [29091,0.144], + [29093,0.114], + [29095,0.294], + [29097,0.221], + [29099,0.184], + [29101,0.278], + [29103,0.155], + [29105,0.137], + [29107,0.183], + [29109,0.162], + [29111,0.139], + [29113,0.152], + [29115,0.146], + [29117,0.198], + [29119,0.133], + [29121,0.158], + [29123,0.123], + [29125,0.14], + [29127,0.205], + [29129,0.169], + [29131,0.157], + [29133,0.114], + [29135,0.183], + [29137,0.14], + [29139,0.135], + [29141,0.117], + [29143,0.111], + [29145,0.184], + [29147,0.25], + [29149,0.126], + [29151,0.191], + [29153,0.115], + [29155,0.117], + [29157,0.161], + [29159,0.172], + [29161,0.279], + [29163,0.133], + [29165,0.407], + [29167,0.196], + [29169,0.239], + [29171,0.184], + [29173,0.127], + [29175,0.144], + [29177,0.139], + [29179,0.091], + [29181,0.113], + [29183,0.361], + [29185,0.114], + [29186,0.139], + [29187,0.138], + [29189,0.424], + [29195,0.188], + [29197,0.125], + [29199,0.14], + [29201,0.139], + [29203,0.15], + [29205,0.14], + [29207,0.136], + [29209,0.169], + [29211,0.116], + [29213,0.184], + [29215,0.135], + [29217,0.162], + [29219,0.182], + [29221,0.08], + [29223,0.119], + [29225,0.162], + [29227,0.173], + [29229,0.112], + [29510,0.33], + [30001,0.309], + [30003,0.157], + [30005,0.196], + [30007,0.273], + [30009,0.292], + [30011,0.171], + [30013,0.259], + [30015,0.247], + [30017,0.199], + [30019,0.237], + [30021,0.189], + [30023,0.159], + [30025,0.148], + [30027,0.286], + [30029,0.289], + [30031,0.48], + [30033,0.146], + [30035,0.183], + [30037,0.236], + [30039,0.25], + [30041,0.235], + [30043,0.331], + [30045,0.313], + [30047,0.249], + [30049,0.375], + [30051,0.184], + [30053,0.19], + [30055,0.164], + [30057,0.266], + [30059,0.212], + [30061,0.127], + [30063,0.418], + [30065,0.146], + [30067,0.352], + [30069,0.213], + [30071,0.174], + [30073,0.227], + [30075,0.254], + [30077,0.18], + [30079,0.192], + [30081,0.258], + [30083,0.184], + [30085,0.142], + [30087,0.198], + [30089,0.164], + [30091,0.201], + [30093,0.259], + [30095,0.254], + [30097,0.247], + [30099,0.223], + [30101,0.147], + [30103,0.198], + [30105,0.215], + [30107,0.191], + [30109,0.201], + [30111,0.292], + [31001,0.226], + [31003,0.186], + [31005,0.268], + [31007,0.17], + [31009,0.251], + [31011,0.177], + [31013,0.157], + [31015,0.196], + [31017,0.187], + [31019,0.335], + [31021,0.178], + [31023,0.174], + [31025,0.249], + [31027,0.176], + [31029,0.185], + [31031,0.191], + [31033,0.244], + [31035,0.186], + [31037,0.139], + [31039,0.2], + [31041,0.214], + [31043,0.13], + [31045,0.347], + [31047,0.152], + [31049,0.178], + [31051,0.19], + [31053,0.189], + [31055,0.376], + [31057,0.195], + [31059,0.195], + [31061,0.188], + [31063,0.187], + [31065,0.168], + [31067,0.201], + [31069,0.219], + [31071,0.185], + [31073,0.209], + [31075,0.22], + [31077,0.166], + [31079,0.19], + [31081,0.253], + [31083,0.165], + [31085,0.206], + [31087,0.147], + [31089,0.212], + [31091,0.237], + [31093,0.203], + [31095,0.149], + [31097,0.16], + [31099,0.239], + [31101,0.216], + [31103,0.188], + [31105,0.156], + [31107,0.202], + [31109,0.373], + [31111,0.217], + [31113,0.208], + [31115,0.219], + [31117,0.245], + [31119,0.197], + [31121,0.16], + [31123,0.19], + [31125,0.173], + [31127,0.288], + [31129,0.166], + [31131,0.207], + [31133,0.162], + [31135,0.231], + [31137,0.233], + [31139,0.214], + [31141,0.214], + [31143,0.215], + [31145,0.182], + [31147,0.191], + [31149,0.175], + [31151,0.146], + [31153,0.384], + [31155,0.261], + [31157,0.214], + [31159,0.272], + [31161,0.251], + [31163,0.159], + [31165,0.291], + [31167,0.192], + [31169,0.196], + [31171,0.238], + [31173,0.159], + [31175,0.206], + [31177,0.306], + [31179,0.363], + [31181,0.208], + [31183,0.166], + [31185,0.283], + [32001,0.166], + [32003,0.228], + [32005,0.263], + [32007,0.181], + [32009,0.168], + [32011,0.166], + [32013,0.14], + [32015,0.141], + [32017,0.227], + [32019,0.145], + [32021,0.118], + [32023,0.121], + [32027,0.11], + [32029,0.231], + [32031,0.29], + [32033,0.14], + [32510,0.21], + [33001,0.305], + [33003,0.336], + [33005,0.314], + [33007,0.178], + [33009,0.389], + [33011,0.363], + [33013,0.349], + [33015,0.396], + [33017,0.348], + [33019,0.268], + [34001,0.259], + [34003,0.476], + [34005,0.364], + [34007,0.306], + [34009,0.305], + [34011,0.143], + [34013,0.333], + [34015,0.299], + [34017,0.386], + [34019,0.496], + [34021,0.404], + [34023,0.415], + [34025,0.433], + [34027,0.519], + [34029,0.275], + [34031,0.267], + [34033,0.203], + [34035,0.53], + [34037,0.337], + [34039,0.334], + [34041,0.304], + [35001,0.328], + [35003,0.248], + [35005,0.193], + [35006,0.124], + [35007,0.221], + [35009,0.197], + [35011,0.095], + [35013,0.275], + [35015,0.17], + [35017,0.274], + [35019,0.139], + [35021,0.258], + [35023,0.154], + [35025,0.131], + [35027,0.286], + [35028,0.646], + [35029,0.125], + [35031,0.11], + [35033,0.132], + [35035,0.176], + [35037,0.152], + [35039,0.181], + [35041,0.227], + [35043,0.298], + [35045,0.155], + [35047,0.193], + [35049,0.41], + [35051,0.177], + [35053,0.196], + [35055,0.28], + [35057,0.177], + [35059,0.159], + [35061,0.171], + [36001,0.397], + [36003,0.205], + [36005,0.191], + [36007,0.278], + [36009,0.181], + [36011,0.216], + [36013,0.208], + [36015,0.244], + [36017,0.174], + [36019,0.222], + [36021,0.295], + [36023,0.248], + [36025,0.213], + [36027,0.34], + [36029,0.322], + [36031,0.246], + [36033,0.184], + [36035,0.17], + [36037,0.212], + [36039,0.203], + [36041,0.216], + [36043,0.215], + [36045,0.208], + [36047,0.341], + [36049,0.155], + [36051,0.245], + [36053,0.267], + [36055,0.367], + [36057,0.16], + [36059,0.435], + [36061,0.604], + [36063,0.235], + [36065,0.238], + [36067,0.343], + [36069,0.321], + [36071,0.287], + [36073,0.159], + [36075,0.18], + [36077,0.285], + [36079,0.389], + [36081,0.306], + [36083,0.293], + [36085,0.314], + [36087,0.404], + [36089,0.228], + [36091,0.397], + [36093,0.306], + [36095,0.205], + [36097,0.208], + [36099,0.2], + [36101,0.223], + [36103,0.344], + [36105,0.224], + [36107,0.25], + [36109,0.516], + [36111,0.31], + [36113,0.284], + [36115,0.202], + [36117,0.212], + [36119,0.473], + [36121,0.15], + [36123,0.232], + [37001,0.221], + [37003,0.133], + [37005,0.186], + [37007,0.095], + [37009,0.195], + [37011,0.198], + [37013,0.186], + [37015,0.115], + [37017,0.148], + [37019,0.27], + [37021,0.366], + [37023,0.169], + [37025,0.286], + [37027,0.138], + [37029,0.204], + [37031,0.259], + [37033,0.132], + [37035,0.216], + [37037,0.388], + [37039,0.192], + [37041,0.201], + [37043,0.21], + [37045,0.163], + [37047,0.12], + [37049,0.225], + [37051,0.241], + [37053,0.219], + [37055,0.29], + [37057,0.182], + [37059,0.236], + [37061,0.103], + [37063,0.469], + [37065,0.104], + [37067,0.336], + [37069,0.204], + [37071,0.198], + [37073,0.145], + [37075,0.14], + [37077,0.194], + [37079,0.092], + [37081,0.345], + [37083,0.134], + [37085,0.193], + [37087,0.238], + [37089,0.297], + [37091,0.15], + [37093,0.178], + [37095,0.087], + [37097,0.257], + [37099,0.294], + [37101,0.212], + [37103,0.14], + [37105,0.208], + [37107,0.137], + [37109,0.197], + [37111,0.146], + [37113,0.228], + [37115,0.247], + [37117,0.158], + [37119,0.431], + [37121,0.175], + [37123,0.145], + [37125,0.342], + [37127,0.196], + [37129,0.379], + [37131,0.113], + [37133,0.195], + [37135,0.577], + [37137,0.192], + [37139,0.189], + [37141,0.231], + [37143,0.174], + [37145,0.149], + [37147,0.295], + [37149,0.318], + [37151,0.151], + [37153,0.138], + [37155,0.126], + [37157,0.138], + [37159,0.176], + [37161,0.167], + [37163,0.119], + [37165,0.147], + [37167,0.161], + [37169,0.143], + [37171,0.153], + [37173,0.153], + [37175,0.297], + [37177,0.082], + [37179,0.336], + [37181,0.115], + [37183,0.501], + [37185,0.146], + [37187,0.097], + [37189,0.389], + [37191,0.187], + [37193,0.138], + [37195,0.186], + [37197,0.121], + [37199,0.201], + [38001,0.275], + [38003,0.237], + [38005,0.15], + [38007,0.249], + [38009,0.213], + [38011,0.219], + [38013,0.209], + [38015,0.342], + [38017,0.374], + [38019,0.187], + [38021,0.28], + [38023,0.231], + [38025,0.205], + [38027,0.222], + [38029,0.153], + [38031,0.216], + [38033,0.223], + [38035,0.331], + [38037,0.181], + [38039,0.203], + [38041,0.138], + [38043,0.197], + [38045,0.225], + [38047,0.138], + [38049,0.208], + [38051,0.183], + [38053,0.246], + [38055,0.183], + [38057,0.207], + [38059,0.253], + [38061,0.236], + [38063,0.194], + [38065,0.174], + [38067,0.202], + [38069,0.14], + [38071,0.219], + [38073,0.172], + [38075,0.172], + [38077,0.219], + [38079,0.225], + [38081,0.19], + [38083,0.154], + [38085,0.166], + [38087,0.293], + [38089,0.247], + [38091,0.232], + [38093,0.245], + [38095,0.186], + [38097,0.272], + [38099,0.167], + [38101,0.264], + [38103,0.213], + [38105,0.225], + [39001,0.109], + [39003,0.174], + [39005,0.196], + [39007,0.131], + [39009,0.291], + [39011,0.178], + [39013,0.164], + [39015,0.124], + [39017,0.291], + [39019,0.114], + [39021,0.165], + [39023,0.18], + [39025,0.276], + [39027,0.165], + [39029,0.139], + [39031,0.121], + [39033,0.127], + [39035,0.309], + [39037,0.131], + [39039,0.158], + [39041,0.525], + [39043,0.216], + [39045,0.264], + [39047,0.145], + [39049,0.384], + [39051,0.17], + [39053,0.154], + [39055,0.373], + [39057,0.376], + [39059,0.137], + [39061,0.356], + [39063,0.258], + [39065,0.144], + [39067,0.097], + [39069,0.16], + [39071,0.12], + [39073,0.141], + [39075,0.077], + [39077,0.135], + [39079,0.169], + [39081,0.154], + [39083,0.219], + [39085,0.27], + [39087,0.141], + [39089,0.233], + [39091,0.156], + [39093,0.235], + [39095,0.251], + [39097,0.164], + [39099,0.228], + [39101,0.123], + [39103,0.315], + [39105,0.134], + [39107,0.168], + [39109,0.211], + [39111,0.107], + [39113,0.261], + [39115,0.122], + [39117,0.135], + [39119,0.151], + [39121,0.095], + [39123,0.213], + [39125,0.13], + [39127,0.12], + [39129,0.173], + [39131,0.123], + [39133,0.273], + [39135,0.135], + [39137,0.194], + [39139,0.164], + [39141,0.153], + [39143,0.148], + [39145,0.15], + [39147,0.147], + [39149,0.171], + [39151,0.226], + [39153,0.307], + [39155,0.18], + [39157,0.15], + [39159,0.291], + [39161,0.172], + [39163,0.096], + [39165,0.41], + [39167,0.184], + [39169,0.215], + [39171,0.142], + [39173,0.317], + [39175,0.146], + [40001,0.134], + [40003,0.209], + [40005,0.147], + [40007,0.215], + [40009,0.183], + [40011,0.17], + [40013,0.221], + [40015,0.161], + [40017,0.258], + [40019,0.195], + [40021,0.241], + [40023,0.13], + [40025,0.198], + [40027,0.318], + [40029,0.17], + [40031,0.207], + [40033,0.164], + [40035,0.143], + [40037,0.156], + [40039,0.278], + [40041,0.167], + [40043,0.22], + [40045,0.219], + [40047,0.214], + [40049,0.154], + [40051,0.178], + [40053,0.243], + [40055,0.144], + [40057,0.215], + [40059,0.241], + [40061,0.121], + [40063,0.109], + [40065,0.206], + [40067,0.133], + [40069,0.158], + [40071,0.195], + [40073,0.22], + [40075,0.176], + [40077,0.159], + [40079,0.145], + [40081,0.143], + [40083,0.266], + [40085,0.134], + [40087,0.229], + [40089,0.138], + [40091,0.138], + [40093,0.169], + [40095,0.136], + [40097,0.153], + [40099,0.202], + [40101,0.192], + [40103,0.227], + [40105,0.126], + [40107,0.121], + [40109,0.308], + [40111,0.156], + [40113,0.169], + [40115,0.139], + [40117,0.165], + [40119,0.371], + [40121,0.161], + [40123,0.27], + [40125,0.177], + [40127,0.144], + [40129,0.212], + [40131,0.232], + [40133,0.139], + [40135,0.141], + [40137,0.18], + [40139,0.201], + [40141,0.161], + [40143,0.307], + [40145,0.218], + [40147,0.263], + [40149,0.214], + [40151,0.267], + [40153,0.209], + [41001,0.23], + [41003,0.537], + [41005,0.341], + [41007,0.241], + [41009,0.192], + [41011,0.184], + [41013,0.161], + [41015,0.236], + [41017,0.333], + [41019,0.163], + [41021,0.171], + [41023,0.217], + [41025,0.173], + [41027,0.301], + [41029,0.261], + [41031,0.161], + [41033,0.173], + [41035,0.189], + [41037,0.173], + [41039,0.287], + [41041,0.23], + [41043,0.181], + [41045,0.133], + [41047,0.224], + [41049,0.1], + [41051,0.427], + [41053,0.298], + [41055,0.17], + [41057,0.209], + [41059,0.156], + [41061,0.233], + [41063,0.252], + [41065,0.186], + [41067,0.412], + [41069,0.17], + [41071,0.245], + [42001,0.219], + [42003,0.391], + [42005,0.155], + [42007,0.234], + [42009,0.138], + [42011,0.236], + [42013,0.195], + [42015,0.177], + [42017,0.384], + [42019,0.333], + [42021,0.202], + [42023,0.156], + [42025,0.16], + [42027,0.424], + [42029,0.502], + [42031,0.209], + [42033,0.132], + [42035,0.175], + [42037,0.214], + [42039,0.206], + [42041,0.336], + [42043,0.293], + [42045,0.368], + [42047,0.178], + [42049,0.27], + [42051,0.147], + [42053,0.083], + [42055,0.201], + [42057,0.134], + [42059,0.173], + [42061,0.147], + [42063,0.222], + [42065,0.148], + [42067,0.133], + [42069,0.261], + [42071,0.257], + [42073,0.203], + [42075,0.199], + [42077,0.289], + [42079,0.221], + [42081,0.206], + [42083,0.17], + [42085,0.216], + [42087,0.121], + [42089,0.236], + [42091,0.475], + [42093,0.285], + [42095,0.279], + [42097,0.15], + [42099,0.163], + [42101,0.264], + [42103,0.253], + [42105,0.15], + [42107,0.153], + [42109,0.167], + [42111,0.155], + [42113,0.155], + [42115,0.167], + [42117,0.205], + [42119,0.221], + [42121,0.165], + [42123,0.184], + [42125,0.281], + [42127,0.205], + [42129,0.269], + [42131,0.186], + [42133,0.231], + [44001,0.464], + [44003,0.318], + [44005,0.455], + [44007,0.273], + [44009,0.446], + [45001,0.137], + [45003,0.253], + [45005,0.098], + [45007,0.2], + [45009,0.191], + [45011,0.132], + [45013,0.396], + [45015,0.23], + [45017,0.17], + [45019,0.411], + [45021,0.16], + [45023,0.144], + [45025,0.115], + [45027,0.15], + [45029,0.153], + [45031,0.171], + [45033,0.096], + [45035,0.264], + [45037,0.186], + [45039,0.174], + [45041,0.224], + [45043,0.261], + [45045,0.329], + [45047,0.235], + [45049,0.111], + [45051,0.226], + [45053,0.145], + [45055,0.206], + [45057,0.233], + [45059,0.142], + [45061,0.105], + [45063,0.299], + [45065,0.187], + [45067,0.163], + [45069,0.084], + [45071,0.163], + [45073,0.235], + [45075,0.2], + [45077,0.236], + [45079,0.375], + [45081,0.166], + [45083,0.228], + [45085,0.19], + [45087,0.124], + [45089,0.125], + [45091,0.295], + [46003,0.206], + [46005,0.203], + [46007,0.178], + [46009,0.183], + [46011,0.41], + [46013,0.279], + [46015,0.256], + [46017,0.081], + [46019,0.197], + [46021,0.238], + [46023,0.181], + [46025,0.167], + [46027,0.478], + [46029,0.209], + [46031,0.164], + [46033,0.245], + [46035,0.266], + [46037,0.171], + [46039,0.198], + [46041,0.141], + [46043,0.206], + [46045,0.229], + [46047,0.239], + [46049,0.261], + [46051,0.146], + [46053,0.193], + [46055,0.199], + [46057,0.205], + [46059,0.231], + [46061,0.214], + [46063,0.297], + [46065,0.33], + [46067,0.216], + [46069,0.204], + [46071,0.186], + [46073,0.178], + [46075,0.144], + [46077,0.227], + [46079,0.332], + [46081,0.316], + [46083,0.412], + [46085,0.183], + [46087,0.225], + [46089,0.151], + [46091,0.226], + [46093,0.238], + [46095,0.14], + [46097,0.216], + [46099,0.303], + [46101,0.268], + [46102,null], + [46103,0.289], + [46105,0.192], + [46107,0.2], + [46109,0.16], + [46111,0.193], + [46115,0.211], + [46117,0.27], + [46119,0.253], + [46121,0.157], + [46123,0.214], + [46125,0.214], + [46127,0.301], + [46129,0.206], + [46135,0.273], + [46137,0.155], + [47001,0.24], + [47003,0.143], + [47005,0.122], + [47007,0.113], + [47009,0.231], + [47011,0.209], + [47013,0.106], + [47015,0.13], + [47017,0.15], + [47019,0.161], + [47021,0.194], + [47023,0.158], + [47025,0.132], + [47027,0.137], + [47029,0.102], + [47031,0.185], + [47033,0.136], + [47035,0.188], + [47037,0.382], + [47039,0.113], + [47041,0.142], + [47043,0.141], + [47045,0.184], + [47047,0.221], + [47049,0.125], + [47051,0.19], + [47053,0.173], + [47055,0.14], + [47057,0.116], + [47059,0.147], + [47061,0.11], + [47063,0.16], + [47065,0.296], + [47067,0.113], + [47069,0.108], + [47071,0.127], + [47073,0.13], + [47075,0.119], + [47077,0.134], + [47079,0.147], + [47081,0.114], + [47083,0.107], + [47085,0.129], + [47087,0.08], + [47089,0.156], + [47091,0.101], + [47093,0.357], + [47095,0.091], + [47097,0.086], + [47099,0.117], + [47101,0.123], + [47103,0.175], + [47105,0.254], + [47107,0.137], + [47109,0.11], + [47111,0.092], + [47113,0.255], + [47115,0.123], + [47117,0.14], + [47119,0.196], + [47121,0.088], + [47123,0.122], + [47125,0.253], + [47127,0.172], + [47129,0.075], + [47131,0.166], + [47133,0.138], + [47135,0.098], + [47137,0.092], + [47139,0.097], + [47141,0.244], + [47143,0.132], + [47145,0.188], + [47147,0.181], + [47149,0.302], + [47151,0.089], + [47153,0.132], + [47155,0.175], + [47157,0.302], + [47159,0.107], + [47161,0.13], + [47163,0.214], + [47165,0.256], + [47167,0.156], + [47169,0.148], + [47171,0.126], + [47173,0.1], + [47175,0.117], + [47177,0.132], + [47179,0.309], + [47181,0.106], + [47183,0.211], + [47185,0.118], + [47187,0.566], + [47189,0.289], + [48001,0.118], + [48003,0.106], + [48005,0.157], + [48007,0.202], + [48009,0.218], + [48011,0.231], + [48013,0.143], + [48015,0.21], + [48017,0.107], + [48019,0.24], + [48021,0.184], + [48023,0.266], + [48025,0.089], + [48027,0.232], + [48029,0.269], + [48031,0.288], + [48033,0.365], + [48035,0.177], + [48037,0.188], + [48039,0.287], + [48041,0.398], + [48043,0.36], + [48045,0.23], + [48047,0.146], + [48049,0.185], + [48051,0.148], + [48053,0.23], + [48055,0.147], + [48057,0.154], + [48059,0.147], + [48061,0.168], + [48063,0.15], + [48065,0.264], + [48067,0.144], + [48069,0.131], + [48071,0.211], + [48073,0.174], + [48075,0.156], + [48077,0.163], + [48079,0.095], + [48081,0.205], + [48083,0.142], + [48085,0.502], + [48087,0.17], + [48089,0.184], + [48091,0.345], + [48093,0.17], + [48095,0.115], + [48097,0.216], + [48099,0.151], + [48101,0.162], + [48103,0.129], + [48105,0.11], + [48107,0.121], + [48109,0.077], + [48111,0.118], + [48113,0.297], + [48115,0.126], + [48117,0.142], + [48119,0.186], + [48121,0.422], + [48123,0.146], + [48125,0.143], + [48127,0.105], + [48129,0.165], + [48131,0.089], + [48133,0.146], + [48135,0.152], + [48137,0.24], + [48139,0.219], + [48141,0.217], + [48143,0.282], + [48145,0.119], + [48147,0.156], + [48149,0.171], + [48151,0.184], + [48153,0.164], + [48155,0.16], + [48157,0.446], + [48159,0.19], + [48161,0.115], + [48163,0.073], + [48165,0.105], + [48167,0.289], + [48169,0.088], + [48171,0.341], + [48173,0.252], + [48175,0.16], + [48177,0.137], + [48179,0.136], + [48181,0.202], + [48183,0.207], + [48185,0.132], + [48187,0.265], + [48189,0.158], + [48191,0.125], + [48193,0.215], + [48195,0.208], + [48197,0.135], + [48199,0.161], + [48201,0.301], + [48203,0.177], + [48205,0.201], + [48207,0.135], + [48209,0.363], + [48211,0.232], + [48213,0.175], + [48215,0.174], + [48217,0.16], + [48219,0.147], + [48221,0.258], + [48223,0.171], + [48225,0.145], + [48227,0.126], + [48229,0.075], + [48231,0.173], + [48233,0.153], + [48235,0.157], + [48237,0.108], + [48239,0.173], + [48241,0.106], + [48243,0.384], + [48245,0.188], + [48247,0.111], + [48249,0.107], + [48251,0.177], + [48253,0.11], + [48255,0.123], + [48257,0.195], + [48259,0.393], + [48261,0.115], + [48263,0.239], + [48265,0.262], + [48267,0.17], + [48269,0.232], + [48271,0.132], + [48273,0.253], + [48275,0.183], + [48277,0.167], + [48279,0.174], + [48281,0.205], + [48283,0.146], + [48285,0.162], + [48287,0.17], + [48289,0.167], + [48291,0.1], + [48293,0.149], + [48295,0.177], + [48297,0.111], + [48299,0.266], + [48301,0.03], + [48303,0.28], + [48305,0.172], + [48307,0.161], + [48309,0.222], + [48311,0.162], + [48313,0.123], + [48315,0.127], + [48317,0.193], + [48319,0.237], + [48321,0.152], + [48323,0.117], + [48325,0.194], + [48327,0.151], + [48329,0.262], + [48331,0.157], + [48333,0.228], + [48335,0.111], + [48337,0.148], + [48339,0.33], + [48341,0.135], + [48343,0.165], + [48345,0.174], + [48347,0.252], + [48349,0.157], + [48351,0.075], + [48353,0.127], + [48355,0.205], + [48357,0.164], + [48359,0.259], + [48361,0.152], + [48363,0.158], + [48365,0.142], + [48367,0.27], + [48369,0.16], + [48371,0.096], + [48373,0.12], + [48375,0.146], + [48377,0.25], + [48379,0.095], + [48381,0.304], + [48383,0.115], + [48385,0.232], + [48387,0.134], + [48389,0.112], + [48391,0.108], + [48393,0.315], + [48395,0.174], + [48397,0.38], + [48399,0.181], + [48401,0.147], + [48403,0.129], + [48405,0.115], + [48407,0.1], + [48409,0.145], + [48411,0.145], + [48413,0.191], + [48415,0.154], + [48417,0.252], + [48419,0.153], + [48421,0.216], + [48423,0.247], + [48425,0.192], + [48427,0.093], + [48429,0.169], + [48431,0.237], + [48433,0.135], + [48435,0.168], + [48437,0.148], + [48439,0.307], + [48441,0.241], + [48443,0.17], + [48445,0.121], + [48447,0.199], + [48449,0.152], + [48451,0.224], + [48453,0.464], + [48455,0.122], + [48457,0.113], + [48459,0.158], + [48461,0.099], + [48463,0.149], + [48465,0.175], + [48467,0.163], + [48469,0.188], + [48471,0.195], + [48473,0.187], + [48475,0.141], + [48477,0.22], + [48479,0.175], + [48481,0.145], + [48483,0.141], + [48485,0.222], + [48487,0.155], + [48489,0.086], + [48491,0.394], + [48493,0.193], + [48495,0.103], + [48497,0.169], + [48499,0.171], + [48501,0.178], + [48503,0.186], + [48505,0.083], + [48507,0.091], + [49001,0.214], + [49003,0.214], + [49005,0.363], + [49007,0.155], + [49009,0.145], + [49011,0.354], + [49013,0.141], + [49015,0.135], + [49017,0.201], + [49019,0.271], + [49021,0.283], + [49023,0.169], + [49025,0.253], + [49027,0.198], + [49029,0.38], + [49031,0.207], + [49033,0.204], + [49035,0.328], + [49037,0.175], + [49039,0.195], + [49041,0.165], + [49043,0.521], + [49045,0.208], + [49047,0.149], + [49049,0.381], + [49051,0.369], + [49053,0.276], + [49055,0.291], + [49057,0.233], + [50001,0.358], + [50003,0.336], + [50005,0.277], + [50007,0.494], + [50009,0.159], + [50011,0.235], + [50013,0.349], + [50015,0.364], + [50017,0.302], + [50019,0.221], + [50021,0.292], + [50023,0.405], + [50025,0.353], + [50027,0.352], + [51001,0.183], + [51003,0.515], + [51005,0.163], + [51007,0.141], + [51009,0.189], + [51011,0.196], + [51013,0.737], + [51015,0.233], + [51017,0.154], + [51019,0.278], + [51021,0.162], + [51023,0.273], + [51025,0.124], + [51027,0.099], + [51029,0.119], + [51031,0.204], + [51033,0.188], + [51035,0.128], + [51036,0.127], + [51037,0.13], + [51041,0.377], + [51043,0.3], + [51045,0.13], + [51047,0.223], + [51049,0.151], + [51051,0.107], + [51053,0.169], + [51057,0.167], + [51059,0.603], + [51061,0.335], + [51063,0.177], + [51065,0.31], + [51067,0.207], + [51069,0.288], + [51071,0.159], + [51073,0.226], + [51075,0.361], + [51077,0.107], + [51079,0.244], + [51081,0.085], + [51083,0.158], + [51085,0.367], + [51087,0.408], + [51089,0.116], + [51091,0.224], + [51093,0.274], + [51095,0.478], + [51097,0.192], + [51099,0.345], + [51101,0.186], + [51103,0.297], + [51105,0.116], + [51107,0.588], + [51109,0.219], + [51111,0.118], + [51113,0.256], + [51115,0.266], + [51117,0.171], + [51119,0.234], + [51121,0.46], + [51125,0.301], + [51127,0.26], + [51131,0.215], + [51133,0.271], + [51135,0.152], + [51137,0.259], + [51139,0.129], + [51141,0.136], + [51143,0.146], + [51145,0.285], + [51147,0.232], + [51149,0.221], + [51153,0.395], + [51155,0.182], + [51157,0.324], + [51159,0.134], + [51161,0.341], + [51163,0.251], + [51165,0.246], + [51167,0.131], + [51169,0.126], + [51171,0.194], + [51173,0.148], + [51175,0.161], + [51177,0.296], + [51179,0.373], + [51181,0.228], + [51183,0.113], + [51185,0.146], + [51187,0.2], + [51191,0.248], + [51193,0.212], + [51195,0.144], + [51197,0.166], + [51199,0.432], + [51510,0.621], + [51520,0.234], + [51530,0.162], + [51540,0.5], + [51550,0.304], + [51570,0.219], + [51580,0.113], + [51590,0.182], + [51595,0.153], + [51600,0.547], + [51610,0.802], + [51620,0.224], + [51630,0.423], + [51640,0.096], + [51650,0.24], + [51660,0.362], + [51670,0.144], + [51678,0.449], + [51680,0.333], + [51683,0.301], + [51685,0.304], + [51690,0.183], + [51700,0.247], + [51710,0.266], + [51720,0.173], + [51730,0.166], + [51735,0.398], + [51740,0.211], + [51750,0.341], + [51760,0.367], + [51770,0.229], + [51775,0.269], + [51790,0.337], + [51800,0.266], + [51810,0.342], + [51820,0.226], + [51830,0.567], + [51840,0.313], + [53001,0.138], + [53003,0.21], + [53005,0.294], + [53007,0.253], + [53009,0.243], + [53011,0.279], + [53013,0.254], + [53015,0.159], + [53017,0.177], + [53019,0.181], + [53021,0.158], + [53023,0.242], + [53025,0.156], + [53027,0.153], + [53029,0.317], + [53031,0.388], + [53033,0.491], + [53035,0.312], + [53037,0.347], + [53039,0.244], + [53041,0.155], + [53043,0.22], + [53045,0.186], + [53047,0.184], + [53049,0.17], + [53051,0.187], + [53053,0.254], + [53055,0.47], + [53057,0.247], + [53059,0.227], + [53061,0.306], + [53063,0.287], + [53065,0.18], + [53067,0.333], + [53069,0.151], + [53071,0.286], + [53073,0.326], + [53075,0.498], + [53077,0.153], + [54001,0.128], + [54003,0.203], + [54005,0.087], + [54007,0.122], + [54009,0.198], + [54011,0.261], + [54013,0.119], + [54015,0.101], + [54017,0.148], + [54019,0.132], + [54021,0.16], + [54023,0.14], + [54025,0.196], + [54027,0.114], + [54029,0.182], + [54031,0.147], + [54033,0.216], + [54035,0.177], + [54037,0.299], + [54039,0.252], + [54041,0.14], + [54043,0.09], + [54045,0.089], + [54047,0.052], + [54049,0.218], + [54051,0.161], + [54053,0.114], + [54055,0.195], + [54057,0.124], + [54059,0.099], + [54061,0.392], + [54063,0.134], + [54065,0.177], + [54067,0.153], + [54069,0.301], + [54071,0.146], + [54073,0.135], + [54075,0.162], + [54077,0.146], + [54079,0.25], + [54081,0.182], + [54083,0.183], + [54085,0.104], + [54087,0.117], + [54089,0.148], + [54091,0.185], + [54093,0.142], + [54095,0.137], + [54097,0.186], + [54099,0.129], + [54101,0.092], + [54103,0.107], + [54105,0.097], + [54107,0.203], + [54109,0.082], + [55001,0.127], + [55003,0.222], + [55005,0.182], + [55007,0.292], + [55009,0.282], + [55011,0.182], + [55013,0.185], + [55015,0.287], + [55017,0.193], + [55019,0.115], + [55021,0.227], + [55023,0.157], + [55025,0.49], + [55027,0.163], + [55029,0.313], + [55031,0.228], + [55033,0.266], + [55035,0.308], + [55037,0.175], + [55039,0.219], + [55041,0.141], + [55043,0.213], + [55045,0.227], + [55047,0.177], + [55049,0.23], + [55051,0.197], + [55053,0.139], + [55055,0.235], + [55057,0.129], + [55059,0.246], + [55061,0.169], + [55063,0.325], + [55065,0.177], + [55067,0.161], + [55069,0.16], + [55071,0.197], + [55073,0.239], + [55075,0.145], + [55077,0.138], + [55078,0.165], + [55079,0.297], + [55081,0.182], + [55083,0.162], + [55085,0.262], + [55087,0.278], + [55089,0.467], + [55091,0.183], + [55093,0.278], + [55095,0.196], + [55097,0.303], + [55099,0.162], + [55101,0.24], + [55103,0.178], + [55105,0.208], + [55107,0.148], + [55109,0.334], + [55111,0.223], + [55113,0.221], + [55115,0.156], + [55117,0.236], + [55119,0.135], + [55121,0.193], + [55123,0.212], + [55125,0.268], + [55127,0.278], + [55129,0.216], + [55131,0.294], + [55133,0.416], + [55135,0.177], + [55137,0.151], + [55139,0.269], + [55141,0.204], + [56001,0.479], + [56003,0.193], + [56005,0.191], + [56007,0.203], + [56009,0.155], + [56011,0.214], + [56013,0.224], + [56015,0.23], + [56017,0.223], + [56019,0.255], + [56021,0.277], + [56023,0.204], + [56025,0.222], + [56027,0.19], + [56029,0.32], + [56031,0.197], + [56033,0.301], + [56035,0.244], + [56037,0.214], + [56039,0.538], + [56041,0.182], + [56043,0.211], + [56045,0.188] + ] +} diff --git a/data/regional/united-states/education/us-education-bachelor-2017.json b/data/regional/united-states/education/us-education-bachelor-2017.json new file mode 100644 index 0000000..6c19a60 --- /dev/null +++ b/data/regional/united-states/education/us-education-bachelor-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Bachelor Degree Holders", + "description" : "Percent of the population that earned a bachelor's degree.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","university","degree"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.bachelors.2017"], + [1001,0.25], + [1003,0.307], + [1005,0.12], + [1007,0.132], + [1009,0.131], + [1011,0.134], + [1013,0.161], + [1015,0.179], + [1017,0.133], + [1019,0.125], + [1021,0.151], + [1023,0.116], + [1025,0.13], + [1027,0.103], + [1029,0.124], + [1031,0.227], + [1033,0.188], + [1035,0.088], + [1037,0.11], + [1039,0.155], + [1041,0.163], + [1043,0.149], + [1045,0.168], + [1047,0.142], + [1049,0.13], + [1051,0.228], + [1053,0.121], + [1055,0.169], + [1057,0.146], + [1059,0.134], + [1061,0.111], + [1063,0.114], + [1065,0.144], + [1067,0.171], + [1069,0.209], + [1071,0.134], + [1073,0.319], + [1075,0.133], + [1077,0.225], + [1079,0.102], + [1081,0.349], + [1083,0.246], + [1085,0.137], + [1087,0.201], + [1089,0.406], + [1091,0.154], + [1093,0.134], + [1095,0.177], + [1097,0.23], + [1099,0.125], + [1101,0.323], + [1103,0.209], + [1105,0.169], + [1107,0.118], + [1109,0.247], + [1111,0.146], + [1113,0.169], + [1115,0.16], + [1117,0.422], + [1119,0.182], + [1121,0.136], + [1123,0.182], + [1125,0.302], + [1127,0.111], + [1129,0.107], + [1131,0.12], + [1133,0.129], + [2013,0.115], + [2016,0.162], + [2020,0.346], + [2050,0.126], + [2060,0.203], + [2068,0.445], + [2070,0.174], + [2090,0.331], + [2100,0.347], + [2105,0.219], + [2110,0.403], + [2122,0.241], + [2130,0.241], + [2150,0.241], + [2158,null], + [2164,0.16], + [2170,0.206], + [2180,0.14], + [2185,0.153], + [2188,0.108], + [2195,0.265], + [2198,0.168], + [2220,0.329], + [2230,0.322], + [2240,0.195], + [2261,0.327], + [2275,0.194], + [2282,0.196], + [2290,0.124], + [4001,0.115], + [4003,0.236], + [4005,0.354], + [4007,0.19], + [4009,0.141], + [4011,0.121], + [4012,0.112], + [4013,0.314], + [4015,0.123], + [4017,0.155], + [4019,0.316], + [4021,0.186], + [4023,0.221], + [4025,0.25], + [4027,0.143], + [5001,0.141], + [5003,0.134], + [5005,0.184], + [5007,0.317], + [5009,0.162], + [5011,0.144], + [5013,0.123], + [5015,0.193], + [5017,0.132], + [5019,0.264], + [5021,0.107], + [5023,0.159], + [5025,0.17], + [5027,0.215], + [5029,0.158], + [5031,0.265], + [5033,0.145], + [5035,0.169], + [5037,0.138], + [5039,0.141], + [5041,0.126], + [5043,0.185], + [5045,0.297], + [5047,0.113], + [5049,0.121], + [5051,0.201], + [5053,0.19], + [5055,0.161], + [5057,0.131], + [5059,0.138], + [5061,0.153], + [5063,0.18], + [5065,0.129], + [5067,0.092], + [5069,0.168], + [5071,0.157], + [5073,0.15], + [5075,0.155], + [5077,0.084], + [5079,0.079], + [5081,0.103], + [5083,0.12], + [5085,0.201], + [5087,0.116], + [5089,0.16], + [5091,0.158], + [5093,0.122], + [5095,0.093], + [5097,0.123], + [5099,0.17], + [5101,0.157], + [5103,0.153], + [5105,0.129], + [5107,0.113], + [5109,0.149], + [5111,0.098], + [5113,0.125], + [5115,0.222], + [5117,0.138], + [5119,0.337], + [5121,0.145], + [5123,0.095], + [5125,0.255], + [5127,0.102], + [5129,0.131], + [5131,0.19], + [5133,0.106], + [5135,0.105], + [5137,0.134], + [5139,0.201], + [5141,0.129], + [5143,0.319], + [5145,0.208], + [5147,0.114], + [5149,0.137], + [6001,0.447], + [6003,0.256], + [6005,0.221], + [6007,0.266], + [6009,0.193], + [6011,0.157], + [6013,0.407], + [6015,0.144], + [6017,0.333], + [6019,0.201], + [6021,0.13], + [6023,0.294], + [6025,0.143], + [6027,0.253], + [6029,0.158], + [6031,0.13], + [6033,0.153], + [6035,0.124], + [6037,0.312], + [6039,0.138], + [6041,0.575], + [6043,0.244], + [6045,0.248], + [6047,0.138], + [6049,0.166], + [6051,0.315], + [6053,0.239], + [6055,0.346], + [6057,0.358], + [6059,0.391], + [6061,0.375], + [6063,0.226], + [6065,0.215], + [6067,0.299], + [6069,0.192], + [6071,0.198], + [6073,0.374], + [6075,0.558], + [6077,0.181], + [6079,0.34], + [6081,0.485], + [6083,0.333], + [6085,0.5], + [6087,0.398], + [6089,0.214], + [6091,0.214], + [6093,0.227], + [6095,0.256], + [6097,0.338], + [6099,0.167], + [6101,0.175], + [6103,0.144], + [6105,0.195], + [6107,0.138], + [6109,0.206], + [6111,0.326], + [6113,0.406], + [6115,0.164], + [8001,0.231], + [8003,0.262], + [8005,0.416], + [8007,0.37], + [8009,0.214], + [8011,0.103], + [8013,0.604], + [8014,0.534], + [8015,0.324], + [8017,0.219], + [8019,0.464], + [8021,0.192], + [8023,0.209], + [8025,0.081], + [8027,0.333], + [8029,0.194], + [8031,0.465], + [8033,0.198], + [8035,0.58], + [8037,0.451], + [8039,0.35], + [8041,0.373], + [8043,0.171], + [8045,0.302], + [8047,0.366], + [8049,0.384], + [8051,0.537], + [8053,0.408], + [8055,0.236], + [8057,0.165], + [8059,0.431], + [8061,0.21], + [8063,0.158], + [8065,0.312], + [8067,0.431], + [8069,0.459], + [8071,0.202], + [8073,0.132], + [8075,0.19], + [8077,0.272], + [8079,0.393], + [8081,0.172], + [8083,0.28], + [8085,0.234], + [8087,0.172], + [8089,0.177], + [8091,0.494], + [8093,0.285], + [8095,0.216], + [8097,0.612], + [8099,0.16], + [8101,0.217], + [8103,0.209], + [8105,0.237], + [8107,0.516], + [8109,0.26], + [8111,0.298], + [8113,0.541], + [8115,0.208], + [8117,0.478], + [8119,0.341], + [8121,0.166], + [8123,0.27], + [8125,0.21], + [9001,0.465], + [9003,0.374], + [9005,0.35], + [9007,0.408], + [9009,0.346], + [9011,0.329], + [9013,0.397], + [9015,0.244], + [10001,0.235], + [10003,0.357], + [10005,0.251], + [11001,0.566], + [12001,0.414], + [12003,0.131], + [12005,0.224], + [12007,0.104], + [12009,0.284], + [12011,0.315], + [12013,0.096], + [12015,0.224], + [12017,0.178], + [12019,0.237], + [12021,0.349], + [12023,0.164], + [12027,0.115], + [12029,0.091], + [12031,0.287], + [12033,0.26], + [12035,0.236], + [12037,0.184], + [12039,0.163], + [12041,0.124], + [12043,0.109], + [12045,0.185], + [12047,0.102], + [12049,0.105], + [12051,0.084], + [12053,0.171], + [12055,0.171], + [12057,0.32], + [12059,0.115], + [12061,0.278], + [12063,0.14], + [12065,0.212], + [12067,0.14], + [12069,0.224], + [12071,0.272], + [12073,0.455], + [12075,0.119], + [12077,0.111], + [12079,0.125], + [12081,0.291], + [12083,0.194], + [12085,0.323], + [12086,0.278], + [12087,0.318], + [12089,0.272], + [12091,0.298], + [12093,0.11], + [12095,0.327], + [12097,0.19], + [12099,0.348], + [12101,0.227], + [12103,0.301], + [12105,0.195], + [12107,0.125], + [12109,0.43], + [12111,0.196], + [12113,0.271], + [12115,0.339], + [12117,0.376], + [12119,0.309], + [12121,0.137], + [12123,0.086], + [12125,0.083], + [12127,0.227], + [12129,0.178], + [12131,0.267], + [12133,0.113], + [13001,0.115], + [13003,0.082], + [13005,0.118], + [13007,0.11], + [13009,0.194], + [13011,0.119], + [13013,0.173], + [13015,0.194], + [13017,0.102], + [13019,0.117], + [13021,0.254], + [13023,0.172], + [13025,0.078], + [13027,0.136], + [13029,0.324], + [13031,0.279], + [13033,0.117], + [13035,0.105], + [13037,0.094], + [13039,0.236], + [13043,0.144], + [13045,0.196], + [13047,0.203], + [13049,0.086], + [13051,0.332], + [13053,0.33], + [13055,0.101], + [13057,0.357], + [13059,0.413], + [13061,0.089], + [13063,0.191], + [13065,0.123], + [13067,0.455], + [13069,0.141], + [13071,0.125], + [13073,0.344], + [13075,0.148], + [13077,0.29], + [13079,0.132], + [13081,0.136], + [13083,0.139], + [13085,0.311], + [13087,0.149], + [13089,0.421], + [13091,0.146], + [13093,0.099], + [13095,0.207], + [13097,0.267], + [13099,0.17], + [13101,0.069], + [13103,0.192], + [13105,0.111], + [13107,0.125], + [13109,0.155], + [13111,0.19], + [13113,0.467], + [13115,0.205], + [13117,0.502], + [13119,0.128], + [13121,0.502], + [13123,0.186], + [13125,0.094], + [13127,0.29], + [13129,0.137], + [13131,0.137], + [13133,0.256], + [13135,0.353], + [13137,0.184], + [13139,0.235], + [13141,0.087], + [13143,0.141], + [13145,0.274], + [13147,0.138], + [13149,0.108], + [13151,0.28], + [13153,0.254], + [13155,0.131], + [13157,0.197], + [13159,0.105], + [13161,0.103], + [13163,0.106], + [13165,0.083], + [13167,0.096], + [13169,0.207], + [13171,0.184], + [13173,0.158], + [13175,0.154], + [13177,0.257], + [13179,0.194], + [13181,0.121], + [13183,0.156], + [13185,0.252], + [13187,0.267], + [13189,0.153], + [13191,0.14], + [13193,0.086], + [13195,0.167], + [13197,0.125], + [13199,0.107], + [13201,0.114], + [13205,0.123], + [13207,0.227], + [13209,0.155], + [13211,0.221], + [13213,0.096], + [13215,0.26], + [13217,0.199], + [13219,0.482], + [13221,0.155], + [13223,0.244], + [13225,0.203], + [13227,0.249], + [13229,0.127], + [13231,0.165], + [13233,0.127], + [13235,0.126], + [13237,0.214], + [13239,0.083], + [13241,0.253], + [13243,0.121], + [13245,0.21], + [13247,0.258], + [13249,0.137], + [13251,0.147], + [13253,0.151], + [13255,0.162], + [13257,0.196], + [13259,0.124], + [13261,0.168], + [13263,0.125], + [13265,0.068], + [13267,0.123], + [13269,0.114], + [13271,0.081], + [13273,0.108], + [13275,0.222], + [13277,0.168], + [13279,0.159], + [13281,0.256], + [13283,0.155], + [13285,0.185], + [13287,0.135], + [13289,0.092], + [13291,0.22], + [13293,0.129], + [13295,0.155], + [13297,0.19], + [13299,0.135], + [13301,0.137], + [13303,0.131], + [13305,0.127], + [13307,0.113], + [13309,0.081], + [13311,0.202], + [13313,0.146], + [13315,0.105], + [13317,0.143], + [13319,0.09], + [13321,0.11], + [15001,0.286], + [15003,0.34], + [15005,0.228], + [15007,0.282], + [15009,0.263], + [16001,0.376], + [16003,0.203], + [16005,0.281], + [16007,0.203], + [16009,0.141], + [16011,0.193], + [16013,0.404], + [16015,0.292], + [16017,0.224], + [16019,0.293], + [16021,0.182], + [16023,0.155], + [16025,0.206], + [16027,0.181], + [16029,0.201], + [16031,0.181], + [16033,0.17], + [16035,0.174], + [16037,0.226], + [16039,0.176], + [16041,0.202], + [16043,0.211], + [16045,0.169], + [16047,0.147], + [16049,0.191], + [16051,0.212], + [16053,0.13], + [16055,0.245], + [16057,0.464], + [16059,0.223], + [16061,0.163], + [16063,0.091], + [16065,0.375], + [16067,0.142], + [16069,0.227], + [16071,0.151], + [16073,0.097], + [16075,0.142], + [16077,0.158], + [16079,0.124], + [16081,0.425], + [16083,0.191], + [16085,0.308], + [16087,0.164], + [17001,0.234], + [17003,0.107], + [17005,0.193], + [17007,0.217], + [17009,0.132], + [17011,0.189], + [17013,0.137], + [17015,0.174], + [17017,0.134], + [17019,0.439], + [17021,0.164], + [17023,0.171], + [17025,0.149], + [17027,0.221], + [17029,0.26], + [17031,0.372], + [17033,0.169], + [17035,0.15], + [17037,0.306], + [17039,0.203], + [17041,0.189], + [17043,0.48], + [17045,0.176], + [17047,0.125], + [17049,0.226], + [17051,0.119], + [17053,0.192], + [17055,0.152], + [17057,0.177], + [17059,0.128], + [17061,0.12], + [17063,0.226], + [17065,0.169], + [17067,0.197], + [17069,0.111], + [17071,0.142], + [17073,0.221], + [17075,0.143], + [17077,0.362], + [17079,0.174], + [17081,0.161], + [17083,0.197], + [17085,0.235], + [17087,0.162], + [17089,0.324], + [17091,0.198], + [17093,0.348], + [17095,0.179], + [17097,0.442], + [17099,0.178], + [17101,0.116], + [17103,0.178], + [17105,0.151], + [17107,0.198], + [17109,0.326], + [17111,0.332], + [17113,0.447], + [17115,0.227], + [17117,0.185], + [17119,0.262], + [17121,0.152], + [17123,0.174], + [17125,0.154], + [17127,0.121], + [17129,0.246], + [17131,0.187], + [17133,0.306], + [17135,0.144], + [17137,0.212], + [17139,0.181], + [17141,0.197], + [17143,0.302], + [17145,0.125], + [17147,0.285], + [17149,0.161], + [17151,0.131], + [17153,0.112], + [17155,0.149], + [17157,0.131], + [17159,0.215], + [17161,0.227], + [17163,0.266], + [17165,0.164], + [17167,0.342], + [17169,0.179], + [17171,0.139], + [17173,0.16], + [17175,0.188], + [17177,0.187], + [17179,0.26], + [17181,0.223], + [17183,0.146], + [17185,0.187], + [17187,0.243], + [17189,0.202], + [17191,0.132], + [17193,0.156], + [17195,0.181], + [17197,0.336], + [17199,0.225], + [17201,0.224], + [17203,0.311], + [18001,0.149], + [18003,0.275], + [18005,0.312], + [18007,0.168], + [18009,0.111], + [18011,0.472], + [18013,0.255], + [18015,0.162], + [18017,0.134], + [18019,0.2], + [18021,0.166], + [18023,0.157], + [18025,0.104], + [18027,0.142], + [18029,0.217], + [18031,0.197], + [18033,0.178], + [18035,0.239], + [18037,0.214], + [18039,0.187], + [18041,0.111], + [18043,0.284], + [18045,0.144], + [18047,0.197], + [18049,0.128], + [18051,0.168], + [18053,0.171], + [18055,0.145], + [18057,0.575], + [18059,0.301], + [18061,0.166], + [18063,0.353], + [18065,0.165], + [18067,0.204], + [18069,0.181], + [18071,0.159], + [18073,0.149], + [18075,0.105], + [18077,0.174], + [18079,0.107], + [18081,0.309], + [18083,0.161], + [18085,0.223], + [18087,0.099], + [18089,0.214], + [18091,0.178], + [18093,0.161], + [18095,0.175], + [18097,0.297], + [18099,0.198], + [18101,0.11], + [18103,0.126], + [18105,0.458], + [18107,0.181], + [18109,0.161], + [18111,0.11], + [18113,0.14], + [18115,0.142], + [18117,0.118], + [18119,0.127], + [18121,0.126], + [18123,0.143], + [18125,0.131], + [18127,0.275], + [18129,0.207], + [18131,0.118], + [18133,0.154], + [18135,0.137], + [18137,0.182], + [18139,0.148], + [18141,0.284], + [18143,0.129], + [18145,0.18], + [18147,0.159], + [18149,0.114], + [18151,0.203], + [18153,0.125], + [18155,0.087], + [18157,0.369], + [18159,0.213], + [18161,0.176], + [18163,0.262], + [18165,0.13], + [18167,0.235], + [18169,0.187], + [18171,0.194], + [18173,0.292], + [18175,0.121], + [18177,0.182], + [18179,0.186], + [18181,0.166], + [18183,0.195], + [19001,0.157], + [19003,0.173], + [19005,0.175], + [19007,0.182], + [19009,0.137], + [19011,0.22], + [19013,0.275], + [19015,0.242], + [19017,0.29], + [19019,0.19], + [19021,0.201], + [19023,0.169], + [19025,0.19], + [19027,0.225], + [19029,0.196], + [19031,0.224], + [19033,0.222], + [19035,0.195], + [19037,0.155], + [19039,0.172], + [19041,0.217], + [19043,0.157], + [19045,0.192], + [19047,0.13], + [19049,0.491], + [19051,0.178], + [19053,0.215], + [19055,0.169], + [19057,0.198], + [19059,0.295], + [19061,0.3], + [19063,0.206], + [19065,0.198], + [19067,0.209], + [19069,0.161], + [19071,0.208], + [19073,0.206], + [19075,0.263], + [19077,0.211], + [19079,0.235], + [19081,0.207], + [19083,0.207], + [19085,0.178], + [19087,0.199], + [19089,0.146], + [19091,0.202], + [19093,0.197], + [19095,0.202], + [19097,0.186], + [19099,0.181], + [19101,0.334], + [19103,0.527], + [19105,0.172], + [19107,0.181], + [19109,0.197], + [19111,0.157], + [19113,0.323], + [19115,0.149], + [19117,0.169], + [19119,0.217], + [19121,0.235], + [19123,0.238], + [19125,0.261], + [19127,0.196], + [19129,0.228], + [19131,0.171], + [19133,0.162], + [19135,0.158], + [19137,0.161], + [19139,0.211], + [19141,0.198], + [19143,0.177], + [19145,0.206], + [19147,0.256], + [19149,0.207], + [19151,0.157], + [19153,0.353], + [19155,0.212], + [19157,0.227], + [19159,0.201], + [19161,0.198], + [19163,0.319], + [19165,0.212], + [19167,0.275], + [19169,0.506], + [19171,0.165], + [19173,0.143], + [19175,0.161], + [19177,0.138], + [19179,0.184], + [19181,0.304], + [19183,0.211], + [19185,0.138], + [19187,0.204], + [19189,0.208], + [19191,0.288], + [19193,0.224], + [19195,0.152], + [19197,0.175], + [20001,0.192], + [20003,0.186], + [20005,0.207], + [20007,0.199], + [20009,0.169], + [20011,0.191], + [20013,0.212], + [20015,0.293], + [20017,0.251], + [20019,0.166], + [20021,0.19], + [20023,0.258], + [20025,0.331], + [20027,0.239], + [20029,0.212], + [20031,0.209], + [20033,0.185], + [20035,0.203], + [20037,0.289], + [20039,0.219], + [20041,0.208], + [20043,0.17], + [20045,0.5], + [20047,0.188], + [20049,0.158], + [20051,0.356], + [20053,0.203], + [20055,0.173], + [20057,0.183], + [20059,0.203], + [20061,0.214], + [20063,0.231], + [20065,0.274], + [20067,0.162], + [20069,0.21], + [20071,0.303], + [20073,0.189], + [20075,0.178], + [20077,0.175], + [20079,0.3], + [20081,0.176], + [20083,0.244], + [20085,0.199], + [20087,0.212], + [20089,0.159], + [20091,0.546], + [20093,0.134], + [20095,0.233], + [20097,0.276], + [20099,0.176], + [20101,0.239], + [20103,0.31], + [20105,0.199], + [20107,0.141], + [20109,0.191], + [20111,0.271], + [20113,0.286], + [20115,0.239], + [20117,0.186], + [20119,0.207], + [20121,0.259], + [20123,0.241], + [20125,0.187], + [20127,0.181], + [20129,0.131], + [20131,0.237], + [20133,0.194], + [20135,0.19], + [20137,0.161], + [20139,0.207], + [20141,0.223], + [20143,0.222], + [20145,0.182], + [20147,0.215], + [20149,0.335], + [20151,0.264], + [20153,0.267], + [20155,0.2], + [20157,0.233], + [20159,0.225], + [20161,0.455], + [20163,0.257], + [20165,0.231], + [20167,0.242], + [20169,0.25], + [20171,0.267], + [20173,0.307], + [20175,0.121], + [20177,0.304], + [20179,0.246], + [20181,0.182], + [20183,0.201], + [20185,0.226], + [20187,0.226], + [20189,0.162], + [20191,0.209], + [20193,0.265], + [20195,0.233], + [20197,0.227], + [20199,0.264], + [20201,0.191], + [20203,0.203], + [20205,0.155], + [20207,0.137], + [20209,0.167], + [21001,0.158], + [21003,0.144], + [21005,0.2], + [21007,0.141], + [21009,0.162], + [21011,0.117], + [21013,0.093], + [21015,0.315], + [21017,0.19], + [21019,0.194], + [21021,0.23], + [21023,0.14], + [21025,0.126], + [21027,0.099], + [21029,0.139], + [21031,0.117], + [21033,0.165], + [21035,0.288], + [21037,0.319], + [21039,0.155], + [21041,0.118], + [21043,0.14], + [21045,0.124], + [21047,0.168], + [21049,0.217], + [21051,0.095], + [21053,0.101], + [21055,0.133], + [21057,0.132], + [21059,0.216], + [21061,0.111], + [21063,0.075], + [21065,0.099], + [21067,0.418], + [21069,0.134], + [21071,0.126], + [21073,0.284], + [21075,0.149], + [21077,0.119], + [21079,0.157], + [21081,0.124], + [21083,0.162], + [21085,0.099], + [21087,0.11], + [21089,0.172], + [21091,0.111], + [21093,0.235], + [21095,0.114], + [21097,0.154], + [21099,0.126], + [21101,0.168], + [21103,0.109], + [21105,0.093], + [21107,0.157], + [21109,0.105], + [21111,0.323], + [21113,0.3], + [21115,0.151], + [21117,0.297], + [21119,0.129], + [21121,0.1], + [21123,0.122], + [21125,0.13], + [21127,0.116], + [21129,0.089], + [21131,0.089], + [21133,0.117], + [21135,0.121], + [21137,0.108], + [21139,0.089], + [21141,0.148], + [21143,0.14], + [21145,0.242], + [21147,0.076], + [21149,0.108], + [21151,0.303], + [21153,0.101], + [21155,0.13], + [21157,0.175], + [21159,0.082], + [21161,0.185], + [21163,0.174], + [21165,0.114], + [21167,0.17], + [21169,0.121], + [21171,0.148], + [21173,0.17], + [21175,0.122], + [21177,0.113], + [21179,0.175], + [21181,0.104], + [21183,0.11], + [21185,0.404], + [21187,0.096], + [21189,0.157], + [21191,0.124], + [21193,0.126], + [21195,0.13], + [21197,0.134], + [21199,0.152], + [21201,0.172], + [21203,0.119], + [21205,0.267], + [21207,0.134], + [21209,0.281], + [21211,0.243], + [21213,0.151], + [21215,0.198], + [21217,0.188], + [21219,0.126], + [21221,0.169], + [21223,0.118], + [21225,0.113], + [21227,0.304], + [21229,0.177], + [21231,0.114], + [21233,0.09], + [21235,0.199], + [21237,0.078], + [21239,0.328], + [22001,0.122], + [22003,0.131], + [22005,0.276], + [22007,0.103], + [22009,0.113], + [22011,0.163], + [22013,0.124], + [22015,0.257], + [22017,0.24], + [22019,0.217], + [22021,0.124], + [22023,0.12], + [22025,0.139], + [22027,0.14], + [22029,0.114], + [22031,0.135], + [22033,0.345], + [22035,0.098], + [22037,0.121], + [22039,0.129], + [22041,0.114], + [22043,0.085], + [22045,0.127], + [22047,0.15], + [22049,0.13], + [22051,0.252], + [22053,0.158], + [22055,0.318], + [22057,0.163], + [22059,0.122], + [22061,0.362], + [22063,0.174], + [22065,0.134], + [22067,0.139], + [22069,0.194], + [22071,0.365], + [22073,0.243], + [22075,0.193], + [22077,0.158], + [22079,0.201], + [22081,0.156], + [22083,0.154], + [22085,0.142], + [22087,0.121], + [22089,0.223], + [22091,0.112], + [22093,0.14], + [22095,0.164], + [22097,0.135], + [22099,0.142], + [22101,0.106], + [22103,0.325], + [22105,0.199], + [22107,0.097], + [22109,0.144], + [22111,0.128], + [22113,0.121], + [22115,0.177], + [22117,0.122], + [22119,0.155], + [22121,0.201], + [22123,0.12], + [22125,0.23], + [22127,0.131], + [23001,0.221], + [23003,0.185], + [23005,0.45], + [23007,0.261], + [23009,0.324], + [23011,0.267], + [23013,0.305], + [23015,0.331], + [23017,0.188], + [23019,0.262], + [23021,0.178], + [23023,0.345], + [23025,0.166], + [23027,0.303], + [23029,0.209], + [23031,0.309], + [24001,0.182], + [24003,0.401], + [24005,0.378], + [24009,0.301], + [24011,0.166], + [24013,0.346], + [24015,0.23], + [24017,0.285], + [24019,0.201], + [24021,0.405], + [24023,0.196], + [24025,0.352], + [24027,0.612], + [24029,0.332], + [24031,0.583], + [24033,0.319], + [24035,0.353], + [24037,0.304], + [24039,0.144], + [24041,0.374], + [24043,0.215], + [24045,0.278], + [24047,0.301], + [24510,0.304], + [25001,0.417], + [25003,0.332], + [25005,0.273], + [25007,0.463], + [25009,0.388], + [25011,0.368], + [25013,0.265], + [25015,0.456], + [25017,0.541], + [25019,0.451], + [25021,0.525], + [25023,0.357], + [25025,0.436], + [25027,0.353], + [26001,0.152], + [26003,0.178], + [26005,0.223], + [26007,0.173], + [26009,0.269], + [26011,0.116], + [26013,0.155], + [26015,0.195], + [26017,0.19], + [26019,0.286], + [26021,0.267], + [26023,0.14], + [26025,0.21], + [26027,0.181], + [26029,0.303], + [26031,0.195], + [26033,0.207], + [26035,0.121], + [26037,0.315], + [26039,0.176], + [26041,0.207], + [26043,0.255], + [26045,0.261], + [26047,0.329], + [26049,0.204], + [26051,0.136], + [26053,0.184], + [26055,0.342], + [26057,0.147], + [26059,0.168], + [26061,0.329], + [26063,0.155], + [26065,0.384], + [26067,0.162], + [26069,0.166], + [26071,0.185], + [26073,0.294], + [26075,0.211], + [26077,0.372], + [26079,0.125], + [26081,0.347], + [26083,0.251], + [26085,0.114], + [26087,0.184], + [26089,0.408], + [26091,0.205], + [26093,0.347], + [26095,0.151], + [26097,0.191], + [26099,0.242], + [26101,0.205], + [26103,0.308], + [26105,0.222], + [26107,0.217], + [26109,0.158], + [26111,0.341], + [26113,0.134], + [26115,0.186], + [26117,0.128], + [26119,0.12], + [26121,0.186], + [26123,0.15], + [26125,0.457], + [26127,0.181], + [26129,0.118], + [26131,0.174], + [26133,0.124], + [26135,0.109], + [26137,0.22], + [26139,0.325], + [26141,0.162], + [26143,0.142], + [26145,0.211], + [26147,0.18], + [26149,0.154], + [26151,0.139], + [26153,0.152], + [26155,0.162], + [26157,0.138], + [26159,0.206], + [26161,0.543], + [26163,0.228], + [26165,0.176], + [27001,0.167], + [27003,0.287], + [27005,0.24], + [27007,0.27], + [27009,0.221], + [27011,0.168], + [27013,0.322], + [27015,0.198], + [27017,0.215], + [27019,0.475], + [27021,0.216], + [27023,0.178], + [27025,0.212], + [27027,0.332], + [27029,0.153], + [27031,0.404], + [27033,0.204], + [27035,0.246], + [27037,0.411], + [27039,0.246], + [27041,0.252], + [27043,0.173], + [27045,0.207], + [27047,0.168], + [27049,0.247], + [27051,0.186], + [27053,0.482], + [27055,0.232], + [27057,0.266], + [27059,0.173], + [27061,0.227], + [27063,0.202], + [27065,0.148], + [27067,0.226], + [27069,0.232], + [27071,0.187], + [27073,0.19], + [27075,0.29], + [27077,0.17], + [27079,0.219], + [27081,0.197], + [27083,0.265], + [27085,0.18], + [27087,0.121], + [27089,0.201], + [27091,0.2], + [27093,0.191], + [27095,0.155], + [27097,0.164], + [27099,0.207], + [27101,0.181], + [27103,0.322], + [27105,0.145], + [27107,0.175], + [27109,0.431], + [27111,0.247], + [27113,0.187], + [27115,0.139], + [27117,0.205], + [27119,0.245], + [27121,0.222], + [27123,0.415], + [27125,0.166], + [27127,0.184], + [27129,0.145], + [27131,0.268], + [27133,0.218], + [27135,0.192], + [27137,0.284], + [27139,0.389], + [27141,0.274], + [27143,0.166], + [27145,0.272], + [27147,0.246], + [27149,0.288], + [27151,0.17], + [27153,0.145], + [27155,0.176], + [27157,0.216], + [27159,0.129], + [27161,0.202], + [27163,0.423], + [27165,0.152], + [27167,0.208], + [27169,0.296], + [27171,0.274], + [27173,0.158], + [28001,0.174], + [28003,0.159], + [28005,0.132], + [28007,0.123], + [28009,0.103], + [28011,0.229], + [28013,0.112], + [28015,0.164], + [28017,0.118], + [28019,0.173], + [28021,0.188], + [28023,0.133], + [28025,0.193], + [28027,0.169], + [28029,0.133], + [28031,0.161], + [28033,0.235], + [28035,0.267], + [28037,0.162], + [28039,0.119], + [28041,0.087], + [28043,0.181], + [28045,0.209], + [28047,0.222], + [28049,0.286], + [28051,0.107], + [28053,0.136], + [28055,0.061], + [28057,0.13], + [28059,0.207], + [28061,0.139], + [28063,0.127], + [28065,0.15], + [28067,0.184], + [28069,0.131], + [28071,0.419], + [28073,0.359], + [28075,0.201], + [28077,0.138], + [28079,0.121], + [28081,0.235], + [28083,0.179], + [28085,0.15], + [28087,0.236], + [28089,0.465], + [28091,0.129], + [28093,0.131], + [28095,0.165], + [28097,0.21], + [28099,0.141], + [28101,0.163], + [28103,0.129], + [28105,0.426], + [28107,0.144], + [28109,0.15], + [28111,0.106], + [28113,0.159], + [28115,0.149], + [28117,0.123], + [28119,0.118], + [28121,0.292], + [28123,0.127], + [28125,0.215], + [28127,0.133], + [28129,0.11], + [28131,0.15], + [28133,0.145], + [28135,0.101], + [28137,0.161], + [28139,0.145], + [28141,0.115], + [28143,0.171], + [28145,0.147], + [28147,0.103], + [28149,0.229], + [28151,0.19], + [28153,0.126], + [28155,0.181], + [28157,0.149], + [28159,0.159], + [28161,0.14], + [28163,0.143], + [29001,0.31], + [29003,0.251], + [29005,0.233], + [29007,0.137], + [29009,0.128], + [29011,0.174], + [29013,0.15], + [29015,0.116], + [29017,0.094], + [29019,0.459], + [29021,0.199], + [29023,0.159], + [29025,0.174], + [29027,0.216], + [29029,0.22], + [29031,0.298], + [29033,0.171], + [29035,0.123], + [29037,0.258], + [29039,0.138], + [29041,0.164], + [29043,0.279], + [29045,0.132], + [29047,0.319], + [29049,0.185], + [29051,0.314], + [29053,0.207], + [29055,0.112], + [29057,0.151], + [29059,0.121], + [29061,0.173], + [29063,0.145], + [29065,0.129], + [29067,0.094], + [29069,0.129], + [29071,0.204], + [29073,0.171], + [29075,0.2], + [29077,0.305], + [29079,0.179], + [29081,0.145], + [29083,0.159], + [29085,0.098], + [29087,0.217], + [29089,0.255], + [29091,0.154], + [29093,0.117], + [29095,0.302], + [29097,0.227], + [29099,0.198], + [29101,0.284], + [29103,0.159], + [29105,0.137], + [29107,0.183], + [29109,0.159], + [29111,0.144], + [29113,0.157], + [29115,0.148], + [29117,0.188], + [29119,0.127], + [29121,0.153], + [29123,0.125], + [29125,0.136], + [29127,0.209], + [29129,0.176], + [29131,0.16], + [29133,0.114], + [29135,0.175], + [29137,0.144], + [29139,0.129], + [29141,0.126], + [29143,0.126], + [29145,0.194], + [29147,0.268], + [29149,0.128], + [29151,0.188], + [29153,0.136], + [29155,0.12], + [29157,0.163], + [29159,0.177], + [29161,0.287], + [29163,0.155], + [29165,0.415], + [29167,0.203], + [29169,0.258], + [29171,0.181], + [29173,0.132], + [29175,0.146], + [29177,0.144], + [29179,0.098], + [29181,0.119], + [29183,0.371], + [29185,0.136], + [29186,0.156], + [29187,0.133], + [29189,0.428], + [29195,0.187], + [29197,0.14], + [29199,0.126], + [29201,0.136], + [29203,0.142], + [29205,0.157], + [29207,0.141], + [29209,0.184], + [29211,0.107], + [29213,0.178], + [29215,0.138], + [29217,0.173], + [29219,0.187], + [29221,0.089], + [29223,0.121], + [29225,0.157], + [29227,0.191], + [29229,0.118], + [29510,0.341], + [30001,0.33], + [30003,0.176], + [30005,0.207], + [30007,0.286], + [30009,0.311], + [30011,0.166], + [30013,0.273], + [30015,0.256], + [30017,0.224], + [30019,0.23], + [30021,0.198], + [30023,0.171], + [30025,0.159], + [30027,0.295], + [30029,0.291], + [30031,0.488], + [30033,0.175], + [30035,0.184], + [30037,0.206], + [30039,0.25], + [30041,0.237], + [30043,0.329], + [30045,0.283], + [30047,0.26], + [30049,0.375], + [30051,0.163], + [30053,0.204], + [30055,0.174], + [30057,0.303], + [30059,0.196], + [30061,0.152], + [30063,0.426], + [30065,0.15], + [30067,0.341], + [30069,0.253], + [30071,0.181], + [30073,0.221], + [30075,0.256], + [30077,0.182], + [30079,0.205], + [30081,0.265], + [30083,0.197], + [30085,0.155], + [30087,0.188], + [30089,0.173], + [30091,0.208], + [30093,0.259], + [30095,0.25], + [30097,0.254], + [30099,0.237], + [30101,0.148], + [30103,0.231], + [30105,0.211], + [30107,0.178], + [30109,0.227], + [30111,0.302], + [31001,0.235], + [31003,0.186], + [31005,0.299], + [31007,0.174], + [31009,0.242], + [31011,0.198], + [31013,0.174], + [31015,0.202], + [31017,0.182], + [31019,0.336], + [31021,0.191], + [31023,0.187], + [31025,0.268], + [31027,0.184], + [31029,0.194], + [31031,0.201], + [31033,0.263], + [31035,0.178], + [31037,0.144], + [31039,0.212], + [31041,0.217], + [31043,0.126], + [31045,0.37], + [31047,0.158], + [31049,0.181], + [31051,0.188], + [31053,0.19], + [31055,0.379], + [31057,0.211], + [31059,0.192], + [31061,0.2], + [31063,0.195], + [31065,0.182], + [31067,0.203], + [31069,0.242], + [31071,0.195], + [31073,0.241], + [31075,0.23], + [31077,0.173], + [31079,0.198], + [31081,0.257], + [31083,0.187], + [31085,0.172], + [31087,0.174], + [31089,0.21], + [31091,0.256], + [31093,0.201], + [31095,0.147], + [31097,0.173], + [31099,0.223], + [31101,0.22], + [31103,0.206], + [31105,0.175], + [31107,0.208], + [31109,0.379], + [31111,0.222], + [31113,0.227], + [31115,0.229], + [31117,0.252], + [31119,0.204], + [31121,0.176], + [31123,0.189], + [31125,0.183], + [31127,0.28], + [31129,0.191], + [31131,0.214], + [31133,0.159], + [31135,0.229], + [31137,0.26], + [31139,0.225], + [31141,0.215], + [31143,0.209], + [31145,0.187], + [31147,0.194], + [31149,0.189], + [31151,0.134], + [31153,0.395], + [31155,0.265], + [31157,0.221], + [31159,0.281], + [31161,0.258], + [31163,0.183], + [31165,0.266], + [31167,0.176], + [31169,0.207], + [31171,0.29], + [31173,0.16], + [31175,0.203], + [31177,0.308], + [31179,0.324], + [31181,0.228], + [31183,0.191], + [31185,0.281], + [32001,0.183], + [32003,0.233], + [32005,0.272], + [32007,0.177], + [32009,0.167], + [32011,0.135], + [32013,0.152], + [32015,0.133], + [32017,0.217], + [32019,0.147], + [32021,0.14], + [32023,0.115], + [32027,0.137], + [32029,0.229], + [32031,0.298], + [32033,0.146], + [32510,0.216], + [33001,0.315], + [33003,0.34], + [33005,0.326], + [33007,0.183], + [33009,0.393], + [33011,0.365], + [33013,0.352], + [33015,0.406], + [33017,0.357], + [33019,0.259], + [34001,0.266], + [34003,0.479], + [34005,0.368], + [34007,0.311], + [34009,0.313], + [34011,0.144], + [34013,0.34], + [34015,0.31], + [34017,0.393], + [34019,0.507], + [34021,0.415], + [34023,0.42], + [34025,0.44], + [34027,0.526], + [34029,0.284], + [34031,0.27], + [34033,0.21], + [34035,0.531], + [34037,0.344], + [34039,0.341], + [34041,0.317], + [35001,0.334], + [35003,0.258], + [35005,0.19], + [35006,0.124], + [35007,0.205], + [35009,0.199], + [35011,0.104], + [35013,0.274], + [35015,0.162], + [35017,0.27], + [35019,0.131], + [35021,0.24], + [35023,0.144], + [35025,0.131], + [35027,0.296], + [35028,0.655], + [35029,0.141], + [35031,0.108], + [35033,0.127], + [35035,0.183], + [35037,0.154], + [35039,0.185], + [35041,0.245], + [35043,0.301], + [35045,0.146], + [35047,0.196], + [35049,0.414], + [35051,0.192], + [35053,0.195], + [35055,0.277], + [35057,0.177], + [35059,0.159], + [35061,0.163], + [36001,0.405], + [36003,0.198], + [36005,0.194], + [36007,0.28], + [36009,0.189], + [36011,0.224], + [36013,0.212], + [36015,0.251], + [36017,0.186], + [36019,0.219], + [36021,0.301], + [36023,0.26], + [36025,0.216], + [36027,0.346], + [36029,0.329], + [36031,0.267], + [36033,0.187], + [36035,0.177], + [36037,0.214], + [36039,0.22], + [36041,0.2], + [36043,0.207], + [36045,0.214], + [36047,0.352], + [36049,0.163], + [36051,0.237], + [36053,0.27], + [36055,0.371], + [36057,0.17], + [36059,0.444], + [36061,0.607], + [36063,0.235], + [36065,0.239], + [36067,0.35], + [36069,0.337], + [36071,0.295], + [36073,0.159], + [36075,0.183], + [36077,0.296], + [36079,0.385], + [36081,0.308], + [36083,0.298], + [36085,0.321], + [36087,0.404], + [36089,0.231], + [36091,0.404], + [36093,0.308], + [36095,0.216], + [36097,0.221], + [36099,0.205], + [36101,0.226], + [36103,0.35], + [36105,0.234], + [36107,0.247], + [36109,0.526], + [36111,0.314], + [36113,0.293], + [36115,0.198], + [36117,0.217], + [36119,0.477], + [36121,0.154], + [36123,0.239], + [37001,0.229], + [37003,0.139], + [37005,0.187], + [37007,0.092], + [37009,0.195], + [37011,0.202], + [37013,0.196], + [37015,0.123], + [37017,0.145], + [37019,0.28], + [37021,0.385], + [37023,0.167], + [37025,0.3], + [37027,0.148], + [37029,0.181], + [37031,0.267], + [37033,0.137], + [37035,0.215], + [37037,0.401], + [37039,0.192], + [37041,0.19], + [37043,0.231], + [37045,0.165], + [37047,0.125], + [37049,0.243], + [37051,0.243], + [37053,0.229], + [37055,0.298], + [37057,0.181], + [37059,0.23], + [37061,0.108], + [37063,0.473], + [37065,0.116], + [37067,0.338], + [37069,0.21], + [37071,0.205], + [37073,0.157], + [37075,0.142], + [37077,0.21], + [37079,0.098], + [37081,0.349], + [37083,0.14], + [37085,0.203], + [37087,0.243], + [37089,0.312], + [37091,0.153], + [37093,0.183], + [37095,0.072], + [37097,0.269], + [37099,0.305], + [37101,0.217], + [37103,0.142], + [37105,0.212], + [37107,0.135], + [37109,0.202], + [37111,0.159], + [37113,0.222], + [37115,0.259], + [37117,0.158], + [37119,0.441], + [37121,0.181], + [37123,0.14], + [37125,0.36], + [37127,0.203], + [37129,0.389], + [37131,0.128], + [37133,0.202], + [37135,0.576], + [37137,0.194], + [37139,0.204], + [37141,0.256], + [37143,0.197], + [37145,0.153], + [37147,0.309], + [37149,0.319], + [37151,0.153], + [37153,0.143], + [37155,0.128], + [37157,0.147], + [37159,0.184], + [37161,0.173], + [37163,0.125], + [37165,0.159], + [37167,0.165], + [37169,0.139], + [37171,0.165], + [37173,0.15], + [37175,0.299], + [37177,0.076], + [37179,0.34], + [37181,0.121], + [37183,0.51], + [37185,0.158], + [37187,0.091], + [37189,0.417], + [37191,0.197], + [37193,0.154], + [37195,0.188], + [37197,0.12], + [37199,0.197], + [38001,0.274], + [38003,0.258], + [38005,0.154], + [38007,0.231], + [38009,0.219], + [38011,0.245], + [38013,0.201], + [38015,0.351], + [38017,0.383], + [38019,0.188], + [38021,0.276], + [38023,0.194], + [38025,0.23], + [38027,0.233], + [38029,0.155], + [38031,0.237], + [38033,0.22], + [38035,0.34], + [38037,0.182], + [38039,0.226], + [38041,0.145], + [38043,0.192], + [38045,0.232], + [38047,0.137], + [38049,0.196], + [38051,0.172], + [38053,0.253], + [38055,0.187], + [38057,0.227], + [38059,0.261], + [38061,0.217], + [38063,0.205], + [38065,0.196], + [38067,0.202], + [38069,0.158], + [38071,0.247], + [38073,0.191], + [38075,0.162], + [38077,0.222], + [38079,0.207], + [38081,0.186], + [38083,0.141], + [38085,0.173], + [38087,0.268], + [38089,0.238], + [38091,0.256], + [38093,0.24], + [38095,0.181], + [38097,0.261], + [38099,0.168], + [38101,0.279], + [38103,0.229], + [38105,0.226], + [39001,0.121], + [39003,0.177], + [39005,0.202], + [39007,0.134], + [39009,0.296], + [39011,0.185], + [39013,0.161], + [39015,0.128], + [39017,0.296], + [39019,0.123], + [39021,0.161], + [39023,0.186], + [39025,0.283], + [39027,0.175], + [39029,0.139], + [39031,0.126], + [39033,0.147], + [39035,0.315], + [39037,0.142], + [39039,0.162], + [39041,0.538], + [39043,0.224], + [39045,0.266], + [39047,0.158], + [39049,0.387], + [39051,0.173], + [39053,0.162], + [39055,0.38], + [39057,0.388], + [39059,0.139], + [39061,0.363], + [39063,0.271], + [39065,0.155], + [39067,0.109], + [39069,0.174], + [39071,0.123], + [39073,0.141], + [39075,0.085], + [39077,0.137], + [39079,0.158], + [39081,0.149], + [39083,0.227], + [39085,0.272], + [39087,0.145], + [39089,0.246], + [39091,0.151], + [39093,0.237], + [39095,0.256], + [39097,0.167], + [39099,0.232], + [39101,0.135], + [39103,0.321], + [39105,0.13], + [39107,0.166], + [39109,0.21], + [39111,0.114], + [39113,0.268], + [39115,0.13], + [39117,0.136], + [39119,0.157], + [39121,0.106], + [39123,0.223], + [39125,0.14], + [39127,0.117], + [39129,0.173], + [39131,0.133], + [39133,0.275], + [39135,0.144], + [39137,0.19], + [39139,0.172], + [39141,0.16], + [39143,0.152], + [39145,0.152], + [39147,0.153], + [39149,0.171], + [39151,0.228], + [39153,0.316], + [39155,0.187], + [39157,0.151], + [39159,0.308], + [39161,0.164], + [39163,0.103], + [39165,0.419], + [39167,0.187], + [39169,0.21], + [39171,0.146], + [39173,0.322], + [39175,0.15], + [40001,0.136], + [40003,0.209], + [40005,0.146], + [40007,0.199], + [40009,0.167], + [40011,0.17], + [40013,0.225], + [40015,0.17], + [40017,0.262], + [40019,0.204], + [40021,0.24], + [40023,0.125], + [40025,0.212], + [40027,0.321], + [40029,0.166], + [40031,0.219], + [40033,0.158], + [40035,0.147], + [40037,0.156], + [40039,0.265], + [40041,0.165], + [40043,0.218], + [40045,0.216], + [40047,0.225], + [40049,0.155], + [40051,0.189], + [40053,0.259], + [40055,0.143], + [40057,0.225], + [40059,0.238], + [40061,0.129], + [40063,0.124], + [40065,0.211], + [40067,0.125], + [40069,0.166], + [40071,0.201], + [40073,0.237], + [40075,0.171], + [40077,0.163], + [40079,0.149], + [40081,0.143], + [40083,0.28], + [40085,0.148], + [40087,0.241], + [40089,0.135], + [40091,0.136], + [40093,0.167], + [40095,0.146], + [40097,0.154], + [40099,0.198], + [40101,0.189], + [40103,0.239], + [40105,0.115], + [40107,0.121], + [40109,0.312], + [40111,0.146], + [40113,0.18], + [40115,0.14], + [40117,0.157], + [40119,0.368], + [40121,0.163], + [40123,0.281], + [40125,0.18], + [40127,0.152], + [40129,0.208], + [40131,0.235], + [40133,0.139], + [40135,0.138], + [40137,0.174], + [40139,0.208], + [40141,0.152], + [40143,0.309], + [40145,0.227], + [40147,0.27], + [40149,0.215], + [40151,0.312], + [40153,0.199], + [41001,0.226], + [41003,0.538], + [41005,0.354], + [41007,0.245], + [41009,0.186], + [41011,0.186], + [41013,0.179], + [41015,0.235], + [41017,0.337], + [41019,0.17], + [41021,0.192], + [41023,0.205], + [41025,0.192], + [41027,0.302], + [41029,0.268], + [41031,0.169], + [41033,0.176], + [41035,0.189], + [41037,0.148], + [41039,0.296], + [41041,0.241], + [41043,0.186], + [41045,0.132], + [41047,0.226], + [41049,0.098], + [41051,0.438], + [41053,0.306], + [41055,0.176], + [41057,0.207], + [41059,0.159], + [41061,0.24], + [41063,0.258], + [41065,0.198], + [41067,0.424], + [41069,0.158], + [41071,0.254], + [42001,0.221], + [42003,0.4], + [42005,0.152], + [42007,0.24], + [42009,0.138], + [42011,0.239], + [42013,0.203], + [42015,0.18], + [42017,0.394], + [42019,0.346], + [42021,0.209], + [42023,0.159], + [42025,0.16], + [42027,0.437], + [42029,0.51], + [42031,0.218], + [42033,0.141], + [42035,0.18], + [42037,0.216], + [42039,0.204], + [42041,0.347], + [42043,0.298], + [42045,0.377], + [42047,0.185], + [42049,0.274], + [42051,0.154], + [42053,0.07], + [42055,0.206], + [42057,0.135], + [42059,0.18], + [42061,0.153], + [42063,0.227], + [42065,0.158], + [42067,0.14], + [42069,0.27], + [42071,0.265], + [42073,0.208], + [42075,0.204], + [42077,0.291], + [42079,0.228], + [42081,0.221], + [42083,0.174], + [42085,0.223], + [42087,0.122], + [42089,0.24], + [42091,0.482], + [42093,0.305], + [42095,0.288], + [42097,0.154], + [42099,0.166], + [42101,0.271], + [42103,0.265], + [42105,0.15], + [42107,0.16], + [42109,0.175], + [42111,0.157], + [42113,0.165], + [42115,0.175], + [42117,0.202], + [42119,0.238], + [42121,0.172], + [42123,0.189], + [42125,0.29], + [42127,0.204], + [42129,0.28], + [42131,0.188], + [42133,0.237], + [44001,0.468], + [44003,0.321], + [44005,0.465], + [44007,0.278], + [44009,0.45], + [45001,0.147], + [45003,0.258], + [45005,0.094], + [45007,0.208], + [45009,0.191], + [45011,0.117], + [45013,0.398], + [45015,0.233], + [45017,0.182], + [45019,0.419], + [45021,0.15], + [45023,0.143], + [45025,0.113], + [45027,0.149], + [45029,0.154], + [45031,0.178], + [45033,0.112], + [45035,0.274], + [45037,0.195], + [45039,0.176], + [45041,0.225], + [45043,0.271], + [45045,0.333], + [45047,0.233], + [45049,0.117], + [45051,0.23], + [45053,0.148], + [45055,0.204], + [45057,0.251], + [45059,0.146], + [45061,0.116], + [45063,0.301], + [45065,0.193], + [45067,0.164], + [45069,0.089], + [45071,0.171], + [45073,0.242], + [45075,0.201], + [45077,0.236], + [45079,0.377], + [45081,0.163], + [45083,0.238], + [45085,0.195], + [45087,0.125], + [45089,0.126], + [45091,0.311], + [46003,0.202], + [46005,0.196], + [46007,0.173], + [46009,0.19], + [46011,0.404], + [46013,0.288], + [46015,0.254], + [46017,0.089], + [46019,0.208], + [46021,0.236], + [46023,0.172], + [46025,0.18], + [46027,0.493], + [46029,0.216], + [46031,0.177], + [46033,0.245], + [46035,0.24], + [46037,0.186], + [46039,0.201], + [46041,0.146], + [46043,0.189], + [46045,0.25], + [46047,0.23], + [46049,0.267], + [46051,0.149], + [46053,0.211], + [46055,0.178], + [46057,0.216], + [46059,0.246], + [46061,0.218], + [46063,0.308], + [46065,0.344], + [46067,0.237], + [46069,0.196], + [46071,0.218], + [46073,0.193], + [46075,0.159], + [46077,0.222], + [46079,0.317], + [46081,0.309], + [46083,0.41], + [46085,0.179], + [46087,0.215], + [46089,0.153], + [46091,0.236], + [46093,0.247], + [46095,0.152], + [46097,0.201], + [46099,0.309], + [46101,0.239], + [46102,null], + [46103,0.296], + [46105,0.194], + [46107,0.222], + [46109,0.175], + [46111,0.185], + [46115,0.219], + [46117,0.279], + [46119,0.249], + [46121,0.162], + [46123,0.221], + [46125,0.226], + [46127,0.306], + [46129,0.223], + [46135,0.275], + [46137,0.149], + [47001,0.238], + [47003,0.157], + [47005,0.128], + [47007,0.124], + [47009,0.234], + [47011,0.218], + [47013,0.118], + [47015,0.122], + [47017,0.158], + [47019,0.155], + [47021,0.194], + [47023,0.165], + [47025,0.13], + [47027,0.128], + [47029,0.114], + [47031,0.189], + [47033,0.13], + [47035,0.186], + [47037,0.391], + [47039,0.115], + [47041,0.136], + [47043,0.147], + [47045,0.181], + [47047,0.224], + [47049,0.117], + [47051,0.206], + [47053,0.178], + [47055,0.148], + [47057,0.111], + [47059,0.15], + [47061,0.11], + [47063,0.164], + [47065,0.305], + [47067,0.102], + [47069,0.109], + [47071,0.129], + [47073,0.132], + [47075,0.124], + [47077,0.144], + [47079,0.159], + [47081,0.11], + [47083,0.107], + [47085,0.125], + [47087,0.081], + [47089,0.162], + [47091,0.109], + [47093,0.365], + [47095,0.094], + [47097,0.086], + [47099,0.122], + [47101,0.12], + [47103,0.183], + [47105,0.262], + [47107,0.154], + [47109,0.122], + [47111,0.096], + [47113,0.261], + [47115,0.13], + [47117,0.134], + [47119,0.207], + [47121,0.098], + [47123,0.117], + [47125,0.262], + [47127,0.195], + [47129,0.077], + [47131,0.156], + [47133,0.13], + [47135,0.108], + [47137,0.07], + [47139,0.108], + [47141,0.248], + [47143,0.142], + [47145,0.193], + [47147,0.181], + [47149,0.318], + [47151,0.083], + [47153,0.145], + [47155,0.18], + [47157,0.306], + [47159,0.112], + [47161,0.151], + [47163,0.22], + [47165,0.265], + [47167,0.153], + [47169,0.152], + [47171,0.149], + [47173,0.088], + [47175,0.099], + [47177,0.144], + [47179,0.319], + [47181,0.111], + [47183,0.208], + [47185,0.123], + [47187,0.581], + [47189,0.297], + [48001,0.124], + [48003,0.098], + [48005,0.167], + [48007,0.195], + [48009,0.236], + [48011,0.236], + [48013,0.143], + [48015,0.223], + [48017,0.144], + [48019,0.238], + [48021,0.203], + [48023,0.248], + [48025,0.092], + [48027,0.242], + [48029,0.273], + [48031,0.285], + [48033,0.388], + [48035,0.184], + [48037,0.192], + [48039,0.297], + [48041,0.396], + [48043,0.357], + [48045,0.219], + [48047,0.147], + [48049,0.178], + [48051,0.148], + [48053,0.241], + [48055,0.143], + [48057,0.162], + [48059,0.16], + [48061,0.172], + [48063,0.167], + [48065,0.292], + [48067,0.153], + [48069,0.134], + [48071,0.205], + [48073,0.181], + [48075,0.185], + [48077,0.179], + [48079,0.105], + [48081,0.206], + [48083,0.144], + [48085,0.509], + [48087,0.156], + [48089,0.189], + [48091,0.36], + [48093,0.186], + [48095,0.113], + [48097,0.227], + [48099,0.154], + [48101,0.167], + [48103,0.117], + [48105,0.089], + [48107,0.13], + [48109,0.09], + [48111,0.124], + [48113,0.301], + [48115,0.127], + [48117,0.142], + [48119,0.174], + [48121,0.434], + [48123,0.136], + [48125,0.152], + [48127,0.101], + [48129,0.189], + [48131,0.087], + [48133,0.127], + [48135,0.15], + [48137,0.206], + [48139,0.221], + [48141,0.222], + [48143,0.278], + [48145,0.121], + [48147,0.162], + [48149,0.181], + [48151,0.18], + [48153,0.174], + [48155,0.167], + [48157,0.457], + [48159,0.198], + [48161,0.117], + [48163,0.072], + [48165,0.112], + [48167,0.295], + [48169,0.102], + [48171,0.334], + [48173,0.253], + [48175,0.176], + [48177,0.132], + [48179,0.128], + [48181,0.202], + [48183,0.204], + [48185,0.137], + [48187,0.268], + [48189,0.161], + [48191,0.127], + [48193,0.228], + [48195,0.159], + [48197,0.144], + [48199,0.168], + [48201,0.305], + [48203,0.188], + [48205,0.17], + [48207,0.123], + [48209,0.366], + [48211,0.227], + [48213,0.181], + [48215,0.178], + [48217,0.164], + [48219,0.136], + [48221,0.263], + [48223,0.173], + [48225,0.145], + [48227,0.129], + [48229,0.076], + [48231,0.191], + [48233,0.137], + [48235,0.148], + [48237,0.114], + [48239,0.183], + [48241,0.116], + [48243,0.363], + [48245,0.189], + [48247,0.113], + [48249,0.113], + [48251,0.185], + [48253,0.109], + [48255,0.137], + [48257,0.207], + [48259,0.39], + [48261,0.065], + [48263,0.238], + [48265,0.259], + [48267,0.193], + [48269,0.198], + [48271,0.115], + [48273,0.241], + [48275,0.205], + [48277,0.171], + [48279,0.164], + [48281,0.201], + [48283,0.151], + [48285,0.174], + [48287,0.176], + [48289,0.159], + [48291,0.093], + [48293,0.138], + [48295,0.188], + [48297,0.113], + [48299,0.266], + [48301,0.047], + [48303,0.287], + [48305,0.17], + [48307,0.16], + [48309,0.229], + [48311,0.207], + [48313,0.13], + [48315,0.141], + [48317,0.206], + [48319,0.203], + [48321,0.147], + [48323,0.118], + [48325,0.2], + [48327,0.158], + [48329,0.268], + [48331,0.15], + [48333,0.23], + [48335,0.118], + [48337,0.162], + [48339,0.337], + [48341,0.134], + [48343,0.16], + [48345,0.156], + [48347,0.252], + [48349,0.156], + [48351,0.088], + [48353,0.133], + [48355,0.209], + [48357,0.183], + [48359,0.265], + [48361,0.157], + [48363,0.166], + [48365,0.147], + [48367,0.269], + [48369,0.161], + [48371,0.096], + [48373,0.123], + [48375,0.148], + [48377,0.202], + [48379,0.108], + [48381,0.309], + [48383,0.11], + [48385,0.219], + [48387,0.138], + [48389,0.095], + [48391,0.121], + [48393,0.312], + [48395,0.15], + [48397,0.4], + [48399,0.191], + [48401,0.155], + [48403,0.144], + [48405,0.121], + [48407,0.101], + [48409,0.143], + [48411,0.151], + [48413,0.203], + [48415,0.166], + [48417,0.274], + [48419,0.153], + [48421,0.214], + [48423,0.252], + [48425,0.2], + [48427,0.097], + [48429,0.168], + [48431,0.214], + [48433,0.125], + [48435,0.198], + [48437,0.13], + [48439,0.311], + [48441,0.241], + [48443,0.173], + [48445,0.128], + [48447,0.2], + [48449,0.158], + [48451,0.238], + [48453,0.475], + [48455,0.117], + [48457,0.121], + [48459,0.169], + [48461,0.111], + [48463,0.151], + [48465,0.181], + [48467,0.166], + [48469,0.195], + [48471,0.203], + [48473,0.192], + [48475,0.135], + [48477,0.239], + [48479,0.174], + [48481,0.15], + [48483,0.146], + [48485,0.224], + [48487,0.152], + [48489,0.09], + [48491,0.402], + [48493,0.195], + [48495,0.107], + [48497,0.172], + [48499,0.16], + [48501,0.151], + [48503,0.196], + [48505,0.114], + [48507,0.076], + [49001,0.185], + [49003,0.227], + [49005,0.369], + [49007,0.157], + [49009,0.093], + [49011,0.362], + [49013,0.145], + [49015,0.15], + [49017,0.211], + [49019,0.278], + [49021,0.287], + [49023,0.168], + [49025,0.27], + [49027,0.214], + [49029,0.4], + [49031,0.227], + [49033,0.228], + [49035,0.336], + [49037,0.173], + [49039,0.192], + [49041,0.168], + [49043,0.535], + [49045,0.226], + [49047,0.143], + [49049,0.394], + [49051,0.387], + [49053,0.281], + [49055,0.26], + [49057,0.24], + [50001,0.367], + [50003,0.343], + [50005,0.279], + [50007,0.496], + [50009,0.147], + [50011,0.247], + [50013,0.383], + [50015,0.376], + [50017,0.3], + [50019,0.22], + [50021,0.3], + [50023,0.405], + [50025,0.37], + [50027,0.36], + [51001,0.196], + [51003,0.523], + [51005,0.158], + [51007,0.145], + [51009,0.199], + [51011,0.206], + [51013,0.741], + [51015,0.234], + [51017,0.159], + [51019,0.283], + [51021,0.142], + [51023,0.283], + [51025,0.131], + [51027,0.108], + [51029,0.114], + [51031,0.215], + [51033,0.192], + [51035,0.145], + [51036,0.128], + [51037,0.119], + [51041,0.384], + [51043,0.315], + [51045,0.192], + [51047,0.234], + [51049,0.167], + [51051,0.093], + [51053,0.166], + [51057,0.189], + [51059,0.607], + [51061,0.353], + [51063,0.194], + [51065,0.323], + [51067,0.207], + [51069,0.277], + [51071,0.17], + [51073,0.228], + [51075,0.389], + [51077,0.128], + [51079,0.267], + [51081,0.075], + [51083,0.159], + [51085,0.379], + [51087,0.421], + [51089,0.128], + [51091,0.25], + [51093,0.269], + [51095,0.479], + [51097,0.189], + [51099,0.342], + [51101,0.19], + [51103,0.319], + [51105,0.111], + [51107,0.598], + [51109,0.232], + [51111,0.106], + [51113,0.269], + [51115,0.269], + [51117,0.182], + [51119,0.221], + [51121,0.463], + [51125,0.308], + [51127,0.269], + [51131,0.232], + [51133,0.264], + [51135,0.137], + [51137,0.256], + [51139,0.132], + [51141,0.143], + [51143,0.141], + [51145,0.284], + [51147,0.249], + [51149,0.23], + [51153,0.398], + [51155,0.185], + [51157,0.336], + [51159,0.134], + [51161,0.347], + [51163,0.258], + [51165,0.248], + [51167,0.136], + [51169,0.133], + [51171,0.192], + [51173,0.145], + [51175,0.19], + [51177,0.304], + [51179,0.387], + [51181,0.191], + [51183,0.117], + [51185,0.152], + [51187,0.209], + [51191,0.234], + [51193,0.211], + [51195,0.139], + [51197,0.183], + [51199,0.436], + [51510,0.618], + [51520,0.23], + [51530,0.163], + [51540,0.514], + [51550,0.315], + [51570,0.236], + [51580,0.146], + [51590,0.189], + [51595,0.153], + [51600,0.569], + [51610,0.781], + [51620,0.253], + [51630,0.429], + [51640,0.103], + [51650,0.256], + [51660,0.349], + [51670,0.151], + [51678,0.385], + [51680,0.336], + [51683,0.297], + [51685,0.314], + [51690,0.209], + [51700,0.248], + [51710,0.273], + [51720,0.17], + [51730,0.175], + [51735,0.415], + [51740,0.219], + [51750,0.344], + [51760,0.375], + [51770,0.232], + [51775,0.277], + [51790,0.338], + [51800,0.272], + [51810,0.348], + [51820,0.223], + [51830,0.552], + [51840,0.325], + [53001,0.136], + [53003,0.214], + [53005,0.3], + [53007,0.263], + [53009,0.25], + [53011,0.29], + [53013,0.265], + [53015,0.161], + [53017,0.183], + [53019,0.175], + [53021,0.163], + [53023,0.23], + [53025,0.167], + [53027,0.152], + [53029,0.324], + [53031,0.399], + [53033,0.503], + [53035,0.318], + [53037,0.35], + [53039,0.258], + [53041,0.154], + [53043,0.229], + [53045,0.178], + [53047,0.183], + [53049,0.17], + [53051,0.201], + [53053,0.26], + [53055,0.483], + [53057,0.256], + [53059,0.232], + [53061,0.313], + [53063,0.294], + [53065,0.186], + [53067,0.344], + [53069,0.171], + [53071,0.291], + [53073,0.338], + [53075,0.484], + [53077,0.159], + [54001,0.153], + [54003,0.207], + [54005,0.079], + [54007,0.157], + [54009,0.199], + [54011,0.257], + [54013,0.106], + [54015,0.09], + [54017,0.149], + [54019,0.147], + [54021,0.16], + [54023,0.145], + [54025,0.203], + [54027,0.126], + [54029,0.179], + [54031,0.144], + [54033,0.226], + [54035,0.162], + [54037,0.305], + [54039,0.253], + [54041,0.134], + [54043,0.089], + [54045,0.087], + [54047,0.049], + [54049,0.22], + [54051,0.171], + [54053,0.11], + [54055,0.198], + [54057,0.127], + [54059,0.092], + [54061,0.398], + [54063,0.145], + [54065,0.18], + [54067,0.147], + [54069,0.308], + [54071,0.139], + [54073,0.138], + [54075,0.178], + [54077,0.15], + [54079,0.249], + [54081,0.186], + [54083,0.177], + [54085,0.093], + [54087,0.114], + [54089,0.145], + [54091,0.186], + [54093,0.148], + [54095,0.136], + [54097,0.181], + [54099,0.13], + [54101,0.105], + [54103,0.118], + [54105,0.075], + [54107,0.215], + [54109,0.093], + [55001,0.125], + [55003,0.217], + [55005,0.195], + [55007,0.31], + [55009,0.295], + [55011,0.179], + [55013,0.185], + [55015,0.286], + [55017,0.202], + [55019,0.114], + [55021,0.226], + [55023,0.168], + [55025,0.5], + [55027,0.161], + [55029,0.327], + [55031,0.239], + [55033,0.277], + [55035,0.303], + [55037,0.161], + [55039,0.229], + [55041,0.145], + [55043,0.215], + [55045,0.232], + [55047,0.185], + [55049,0.245], + [55051,0.193], + [55053,0.138], + [55055,0.239], + [55057,0.133], + [55059,0.251], + [55061,0.182], + [55063,0.33], + [55065,0.179], + [55067,0.166], + [55069,0.173], + [55071,0.197], + [55073,0.245], + [55075,0.148], + [55077,0.136], + [55078,0.159], + [55079,0.301], + [55081,0.195], + [55083,0.168], + [55085,0.275], + [55087,0.283], + [55089,0.477], + [55091,0.191], + [55093,0.277], + [55095,0.198], + [55097,0.315], + [55099,0.17], + [55101,0.244], + [55103,0.188], + [55105,0.214], + [55107,0.148], + [55109,0.34], + [55111,0.234], + [55113,0.22], + [55115,0.158], + [55117,0.238], + [55119,0.144], + [55121,0.197], + [55123,0.216], + [55125,0.271], + [55127,0.285], + [55129,0.22], + [55131,0.297], + [55133,0.429], + [55135,0.185], + [55137,0.152], + [55139,0.273], + [55141,0.211], + [56001,0.498], + [56003,0.192], + [56005,0.185], + [56007,0.209], + [56009,0.182], + [56011,0.207], + [56013,0.233], + [56015,0.244], + [56017,0.216], + [56019,0.268], + [56021,0.287], + [56023,0.205], + [56025,0.228], + [56027,0.183], + [56029,0.322], + [56031,0.226], + [56033,0.313], + [56035,0.254], + [56037,0.222], + [56039,0.541], + [56041,0.174], + [56043,0.21], + [56045,0.198] + ] +} diff --git a/data/regional/united-states/education/us-education-bachelor-2019.json b/data/regional/united-states/education/us-education-bachelor-2019.json new file mode 100644 index 0000000..239044a --- /dev/null +++ b/data/regional/united-states/education/us-education-bachelor-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Bachelor Degree Holders", + "description" : "Percent of the population that earned a bachelor's degree.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","university","degree"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.bachelor.2019"], + [1001,0.266], + [1003,0.319], + [1005,0.116], + [1007,0.104], + [1009,0.131], + [1011,0.121], + [1013,0.161], + [1015,0.185], + [1017,0.133], + [1019,0.128], + [1021,0.127], + [1023,0.119], + [1025,0.122], + [1027,0.106], + [1029,0.154], + [1031,0.228], + [1033,0.181], + [1035,0.128], + [1037,0.128], + [1039,0.153], + [1041,0.174], + [1043,0.139], + [1045,0.181], + [1047,0.147], + [1049,0.13], + [1051,0.251], + [1053,0.125], + [1055,0.178], + [1057,0.124], + [1059,0.14], + [1061,0.125], + [1063,0.101], + [1065,0.142], + [1067,0.171], + [1069,0.217], + [1071,0.14], + [1073,0.334], + [1075,0.119], + [1077,0.235], + [1079,0.126], + [1081,0.353], + [1083,0.257], + [1085,0.147], + [1087,0.204], + [1089,0.428], + [1091,0.161], + [1093,0.128], + [1095,0.194], + [1097,0.232], + [1099,0.135], + [1101,0.334], + [1103,0.224], + [1105,0.228], + [1107,0.141], + [1109,0.237], + [1111,0.165], + [1113,0.178], + [1115,0.161], + [1117,0.429], + [1119,0.216], + [1121,0.15], + [1123,0.184], + [1125,0.307], + [1127,0.113], + [1129,0.127], + [1131,0.125], + [1133,0.128], + [2013,0.115], + [2016,0.17], + [2020,0.361], + [2050,0.119], + [2060,0.225], + [2068,0.411], + [2070,0.221], + [2090,0.314], + [2100,0.338], + [2105,0.213], + [2110,0.384], + [2122,0.246], + [2130,0.253], + [2150,0.28], + [2158,0.039], + [2164,0.161], + [2170,0.216], + [2180,0.161], + [2185,0.165], + [2188,0.132], + [2195,0.284], + [2198,0.183], + [2220,0.334], + [2230,0.296], + [2240,0.197], + [2261,0.308], + [2275,0.194], + [2282,0.226], + [2290,0.136], + [4001,0.123], + [4003,0.231], + [4005,0.362], + [4007,0.187], + [4009,0.152], + [4011,0.135], + [4012,0.12], + [4013,0.327], + [4015,0.129], + [4017,0.153], + [4019,0.324], + [4021,0.195], + [4023,0.204], + [4025,0.259], + [4027,0.15], + [5001,0.158], + [5003,0.123], + [5005,0.179], + [5007,0.334], + [5009,0.161], + [5011,0.143], + [5013,0.114], + [5015,0.212], + [5017,0.159], + [5019,0.266], + [5021,0.126], + [5023,0.155], + [5025,0.162], + [5027,0.196], + [5029,0.156], + [5031,0.262], + [5033,0.16], + [5035,0.174], + [5037,0.144], + [5039,0.119], + [5041,0.141], + [5043,0.228], + [5045,0.306], + [5047,0.121], + [5049,0.122], + [5051,0.216], + [5053,0.187], + [5055,0.162], + [5057,0.151], + [5059,0.133], + [5061,0.136], + [5063,0.175], + [5065,0.131], + [5067,0.101], + [5069,0.18], + [5071,0.154], + [5073,0.158], + [5075,0.154], + [5077,0.107], + [5079,0.097], + [5081,0.125], + [5083,0.133], + [5085,0.206], + [5087,0.142], + [5089,0.171], + [5091,0.168], + [5093,0.138], + [5095,0.127], + [5097,0.135], + [5099,0.146], + [5101,0.205], + [5103,0.145], + [5105,0.127], + [5107,0.138], + [5109,0.173], + [5111,0.111], + [5113,0.141], + [5115,0.228], + [5117,0.154], + [5119,0.343], + [5121,0.138], + [5123,0.104], + [5125,0.267], + [5127,0.093], + [5129,0.119], + [5131,0.213], + [5133,0.128], + [5135,0.102], + [5137,0.139], + [5139,0.211], + [5141,0.145], + [5143,0.333], + [5145,0.209], + [5147,0.14], + [5149,0.128], + [6001,0.474], + [6003,0.345], + [6005,0.193], + [6007,0.272], + [6009,0.183], + [6011,0.15], + [6013,0.424], + [6015,0.148], + [6017,0.343], + [6019,0.212], + [6021,0.142], + [6023,0.304], + [6025,0.152], + [6027,0.272], + [6029,0.164], + [6031,0.147], + [6033,0.155], + [6035,0.129], + [6037,0.325], + [6039,0.146], + [6041,0.595], + [6043,0.246], + [6045,0.244], + [6047,0.138], + [6049,0.152], + [6051,0.288], + [6053,0.247], + [6055,0.357], + [6057,0.372], + [6059,0.406], + [6061,0.397], + [6063,0.237], + [6065,0.223], + [6067,0.309], + [6069,0.197], + [6071,0.21], + [6073,0.388], + [6075,0.581], + [6077,0.188], + [6079,0.354], + [6081,0.51], + [6083,0.342], + [6085,0.524], + [6087,0.408], + [6089,0.222], + [6091,0.179], + [6093,0.232], + [6095,0.269], + [6097,0.355], + [6099,0.171], + [6101,0.182], + [6103,0.157], + [6105,0.195], + [6107,0.146], + [6109,0.205], + [6111,0.338], + [6113,0.414], + [6115,0.171], + [8001,0.243], + [8003,0.25], + [8005,0.428], + [8007,0.372], + [8009,0.214], + [8011,0.114], + [8013,0.621], + [8014,0.557], + [8015,0.338], + [8017,0.192], + [8019,0.481], + [8021,0.21], + [8023,0.193], + [8025,0.09], + [8027,0.325], + [8029,0.217], + [8031,0.494], + [8033,0.241], + [8035,0.58], + [8037,0.472], + [8039,0.358], + [8041,0.385], + [8043,0.185], + [8045,0.31], + [8047,0.396], + [8049,0.38], + [8051,0.562], + [8053,0.457], + [8055,0.211], + [8057,0.2], + [8059,0.452], + [8061,0.214], + [8063,0.187], + [8065,0.323], + [8067,0.442], + [8069,0.473], + [8071,0.195], + [8073,0.126], + [8075,0.202], + [8077,0.282], + [8079,0.465], + [8081,0.176], + [8083,0.296], + [8085,0.252], + [8087,0.175], + [8089,0.186], + [8091,0.478], + [8093,0.298], + [8095,0.238], + [8097,0.608], + [8099,0.183], + [8101,0.218], + [8103,0.227], + [8105,0.245], + [8107,0.498], + [8109,0.221], + [8111,0.357], + [8113,0.594], + [8115,0.195], + [8117,0.524], + [8119,0.377], + [8121,0.154], + [8123,0.275], + [8125,0.218], + [9001,0.479], + [9003,0.381], + [9005,0.354], + [9007,0.422], + [9009,0.35], + [9011,0.333], + [9013,0.418], + [9015,0.243], + [10001,0.237], + [10003,0.362], + [10005,0.283], + [11001,0.585], + [12001,0.433], + [12003,0.132], + [12005,0.237], + [12007,0.099], + [12009,0.302], + [12011,0.324], + [12013,0.095], + [12015,0.234], + [12017,0.183], + [12019,0.249], + [12021,0.364], + [12023,0.149], + [12027,0.115], + [12029,0.104], + [12031,0.3], + [12033,0.265], + [12035,0.251], + [12037,0.188], + [12039,0.162], + [12041,0.134], + [12043,0.112], + [12045,0.192], + [12047,0.079], + [12049,0.102], + [12051,0.083], + [12053,0.184], + [12055,0.172], + [12057,0.335], + [12059,0.107], + [12061,0.291], + [12063,0.126], + [12065,0.223], + [12067,0.118], + [12069,0.24], + [12071,0.282], + [12073,0.462], + [12075,0.122], + [12077,0.144], + [12079,0.14], + [12081,0.298], + [12083,0.201], + [12085,0.341], + [12086,0.298], + [12087,0.344], + [12089,0.296], + [12091,0.311], + [12093,0.113], + [12095,0.346], + [12097,0.218], + [12099,0.367], + [12101,0.24], + [12103,0.317], + [12105,0.202], + [12107,0.123], + [12109,0.447], + [12111,0.216], + [12113,0.277], + [12115,0.354], + [12117,0.396], + [12119,0.318], + [12121,0.155], + [12123,0.083], + [12125,0.092], + [12127,0.237], + [12129,0.183], + [12131,0.285], + [12133,0.125], + [13001,0.098], + [13003,0.122], + [13005,0.105], + [13007,0.129], + [13009,0.233], + [13011,0.134], + [13013,0.19], + [13015,0.186], + [13017,0.112], + [13019,0.114], + [13021,0.254], + [13023,0.187], + [13025,0.089], + [13027,0.178], + [13029,0.331], + [13031,0.27], + [13033,0.132], + [13035,0.122], + [13037,0.091], + [13039,0.239], + [13043,0.13], + [13045,0.211], + [13047,0.214], + [13049,0.088], + [13051,0.336], + [13053,0.295], + [13055,0.089], + [13057,0.382], + [13059,0.44], + [13061,0.125], + [13063,0.195], + [13065,0.1], + [13067,0.474], + [13069,0.13], + [13071,0.128], + [13073,0.364], + [13075,0.135], + [13077,0.303], + [13079,0.105], + [13081,0.141], + [13083,0.152], + [13085,0.306], + [13087,0.138], + [13089,0.442], + [13091,0.143], + [13093,0.121], + [13095,0.214], + [13097,0.282], + [13099,0.151], + [13101,0.097], + [13103,0.2], + [13105,0.116], + [13107,0.13], + [13109,0.158], + [13111,0.218], + [13113,0.462], + [13115,0.209], + [13117,0.531], + [13119,0.159], + [13121,0.529], + [13123,0.204], + [13125,0.116], + [13127,0.299], + [13129,0.147], + [13131,0.139], + [13133,0.269], + [13135,0.369], + [13137,0.193], + [13139,0.245], + [13141,0.086], + [13143,0.148], + [13145,0.314], + [13147,0.157], + [13149,0.087], + [13151,0.285], + [13153,0.283], + [13155,0.151], + [13157,0.227], + [13159,0.142], + [13161,0.103], + [13163,0.099], + [13165,0.079], + [13167,0.091], + [13169,0.196], + [13171,0.158], + [13173,0.165], + [13175,0.162], + [13177,0.254], + [13179,0.183], + [13181,0.159], + [13183,0.174], + [13185,0.253], + [13187,0.264], + [13189,0.14], + [13191,0.176], + [13193,0.088], + [13195,0.185], + [13197,0.134], + [13199,0.104], + [13201,0.14], + [13205,0.097], + [13207,0.268], + [13209,0.16], + [13211,0.207], + [13213,0.101], + [13215,0.258], + [13217,0.198], + [13219,0.523], + [13221,0.171], + [13223,0.226], + [13225,0.205], + [13227,0.231], + [13229,0.126], + [13231,0.171], + [13233,0.137], + [13235,0.132], + [13237,0.234], + [13239,0.071], + [13241,0.242], + [13243,0.103], + [13245,0.214], + [13247,0.263], + [13249,0.133], + [13251,0.154], + [13253,0.162], + [13255,0.178], + [13257,0.21], + [13259,0.122], + [13261,0.183], + [13263,0.121], + [13265,0.081], + [13267,0.132], + [13269,0.126], + [13271,0.086], + [13273,0.112], + [13275,0.247], + [13277,0.181], + [13279,0.162], + [13281,0.301], + [13283,0.124], + [13285,0.19], + [13287,0.117], + [13289,0.118], + [13291,0.225], + [13293,0.134], + [13295,0.166], + [13297,0.217], + [13299,0.152], + [13301,0.123], + [13303,0.123], + [13305,0.13], + [13307,0.147], + [13309,0.136], + [13311,0.227], + [13313,0.157], + [13315,0.122], + [13317,0.138], + [13319,0.109], + [13321,0.11], + [15001,0.294], + [15003,0.35], + [15005,0.242], + [15007,0.292], + [15009,0.272], + [16001,0.385], + [16003,0.212], + [16005,0.278], + [16007,0.189], + [16009,0.152], + [16011,0.212], + [16013,0.354], + [16015,0.271], + [16017,0.238], + [16019,0.313], + [16021,0.198], + [16023,0.162], + [16025,0.163], + [16027,0.187], + [16029,0.19], + [16031,0.186], + [16033,0.122], + [16035,0.179], + [16037,0.244], + [16039,0.187], + [16041,0.177], + [16043,0.217], + [16045,0.175], + [16047,0.172], + [16049,0.198], + [16051,0.247], + [16053,0.161], + [16055,0.252], + [16057,0.454], + [16059,0.229], + [16061,0.179], + [16063,0.103], + [16065,0.364], + [16067,0.141], + [16069,0.229], + [16071,0.171], + [16073,0.12], + [16075,0.157], + [16077,0.151], + [16079,0.115], + [16081,0.41], + [16083,0.206], + [16085,0.304], + [16087,0.163], + [17001,0.25], + [17003,0.129], + [17005,0.229], + [17007,0.235], + [17009,0.141], + [17011,0.206], + [17013,0.142], + [17015,0.195], + [17017,0.151], + [17019,0.45], + [17021,0.171], + [17023,0.199], + [17025,0.15], + [17027,0.223], + [17029,0.26], + [17031,0.388], + [17033,0.171], + [17035,0.154], + [17037,0.323], + [17039,0.213], + [17041,0.189], + [17043,0.494], + [17045,0.172], + [17047,0.139], + [17049,0.227], + [17051,0.113], + [17053,0.214], + [17055,0.167], + [17057,0.176], + [17059,0.109], + [17061,0.128], + [17063,0.229], + [17065,0.17], + [17067,0.21], + [17069,0.108], + [17071,0.183], + [17073,0.233], + [17075,0.159], + [17077,0.341], + [17079,0.166], + [17081,0.179], + [17083,0.203], + [17085,0.25], + [17087,0.16], + [17089,0.331], + [17091,0.208], + [17093,0.362], + [17095,0.189], + [17097,0.453], + [17099,0.178], + [17101,0.149], + [17103,0.182], + [17105,0.148], + [17107,0.199], + [17109,0.322], + [17111,0.344], + [17113,0.448], + [17115,0.221], + [17117,0.184], + [17119,0.268], + [17121,0.152], + [17123,0.189], + [17125,0.16], + [17127,0.139], + [17129,0.24], + [17131,0.174], + [17133,0.35], + [17135,0.167], + [17137,0.193], + [17139,0.186], + [17141,0.214], + [17143,0.306], + [17145,0.125], + [17147,0.286], + [17149,0.178], + [17151,0.131], + [17153,0.125], + [17155,0.166], + [17157,0.133], + [17159,0.21], + [17161,0.235], + [17163,0.28], + [17165,0.192], + [17167,0.345], + [17169,0.204], + [17171,0.158], + [17173,0.168], + [17175,0.17], + [17177,0.196], + [17179,0.263], + [17181,0.217], + [17183,0.147], + [17185,0.182], + [17187,0.228], + [17189,0.209], + [17191,0.154], + [17193,0.155], + [17195,0.182], + [17197,0.343], + [17199,0.243], + [17201,0.229], + [17203,0.332], + [18001,0.155], + [18003,0.285], + [18005,0.335], + [18007,0.161], + [18009,0.135], + [18011,0.493], + [18013,0.289], + [18015,0.167], + [18017,0.133], + [18019,0.212], + [18021,0.17], + [18023,0.163], + [18025,0.103], + [18027,0.132], + [18029,0.229], + [18031,0.206], + [18033,0.18], + [18035,0.237], + [18037,0.237], + [18039,0.198], + [18041,0.133], + [18043,0.296], + [18045,0.149], + [18047,0.211], + [18049,0.158], + [18051,0.18], + [18053,0.179], + [18055,0.149], + [18057,0.593], + [18059,0.308], + [18061,0.187], + [18063,0.37], + [18065,0.164], + [18067,0.216], + [18069,0.201], + [18071,0.167], + [18073,0.143], + [18075,0.114], + [18077,0.179], + [18079,0.12], + [18081,0.327], + [18083,0.169], + [18085,0.233], + [18087,0.105], + [18089,0.226], + [18091,0.18], + [18093,0.158], + [18095,0.184], + [18097,0.309], + [18099,0.197], + [18101,0.137], + [18103,0.13], + [18105,0.457], + [18107,0.182], + [18109,0.173], + [18111,0.119], + [18113,0.137], + [18115,0.147], + [18117,0.109], + [18119,0.131], + [18121,0.12], + [18123,0.161], + [18125,0.141], + [18127,0.284], + [18129,0.219], + [18131,0.128], + [18133,0.168], + [18135,0.143], + [18137,0.18], + [18139,0.139], + [18141,0.296], + [18143,0.12], + [18145,0.187], + [18147,0.152], + [18149,0.119], + [18151,0.218], + [18153,0.121], + [18155,0.109], + [18157,0.387], + [18159,0.247], + [18161,0.185], + [18163,0.27], + [18165,0.142], + [18167,0.251], + [18169,0.181], + [18171,0.194], + [18173,0.303], + [18175,0.134], + [18177,0.182], + [18179,0.182], + [18181,0.164], + [18183,0.207], + [19001,0.185], + [19003,0.156], + [19005,0.178], + [19007,0.163], + [19009,0.171], + [19011,0.221], + [19013,0.291], + [19015,0.253], + [19017,0.307], + [19019,0.215], + [19021,0.197], + [19023,0.173], + [19025,0.187], + [19027,0.224], + [19029,0.201], + [19031,0.222], + [19033,0.236], + [19035,0.222], + [19037,0.172], + [19039,0.16], + [19041,0.227], + [19043,0.177], + [19045,0.179], + [19047,0.143], + [19049,0.504], + [19051,0.195], + [19053,0.25], + [19055,0.166], + [19057,0.201], + [19059,0.336], + [19061,0.308], + [19063,0.188], + [19065,0.183], + [19067,0.198], + [19069,0.18], + [19071,0.189], + [19073,0.187], + [19075,0.279], + [19077,0.198], + [19079,0.243], + [19081,0.238], + [19083,0.208], + [19085,0.195], + [19087,0.196], + [19089,0.158], + [19091,0.212], + [19093,0.186], + [19095,0.188], + [19097,0.192], + [19099,0.188], + [19101,0.315], + [19103,0.528], + [19105,0.195], + [19107,0.183], + [19109,0.175], + [19111,0.164], + [19113,0.331], + [19115,0.149], + [19117,0.17], + [19119,0.207], + [19121,0.245], + [19123,0.22], + [19125,0.288], + [19127,0.188], + [19129,0.241], + [19131,0.19], + [19133,0.153], + [19135,0.174], + [19137,0.185], + [19139,0.215], + [19141,0.188], + [19143,0.179], + [19145,0.202], + [19147,0.255], + [19149,0.232], + [19151,0.15], + [19153,0.367], + [19155,0.215], + [19157,0.261], + [19159,0.214], + [19161,0.2], + [19163,0.318], + [19165,0.222], + [19167,0.291], + [19169,0.516], + [19171,0.158], + [19173,0.145], + [19175,0.18], + [19177,0.144], + [19179,0.188], + [19181,0.319], + [19183,0.218], + [19185,0.127], + [19187,0.199], + [19189,0.218], + [19191,0.306], + [19193,0.231], + [19195,0.175], + [19197,0.172], + [20001,0.203], + [20003,0.181], + [20005,0.22], + [20007,0.207], + [20009,0.209], + [20011,0.217], + [20013,0.212], + [20015,0.298], + [20017,0.255], + [20019,0.159], + [20021,0.196], + [20023,0.289], + [20025,0.261], + [20027,0.267], + [20029,0.24], + [20031,0.245], + [20033,0.16], + [20035,0.218], + [20037,0.299], + [20039,0.225], + [20041,0.229], + [20043,0.211], + [20045,0.496], + [20047,0.181], + [20049,0.156], + [20051,0.363], + [20053,0.195], + [20055,0.171], + [20057,0.177], + [20059,0.204], + [20061,0.232], + [20063,0.197], + [20065,0.247], + [20067,0.149], + [20069,0.202], + [20071,0.272], + [20073,0.199], + [20075,0.187], + [20077,0.162], + [20079,0.332], + [20081,0.171], + [20083,0.308], + [20085,0.202], + [20087,0.232], + [20089,0.193], + [20091,0.56], + [20093,0.147], + [20095,0.244], + [20097,0.281], + [20099,0.187], + [20101,0.231], + [20103,0.315], + [20105,0.228], + [20107,0.162], + [20109,0.166], + [20111,0.275], + [20113,0.28], + [20115,0.25], + [20117,0.189], + [20119,0.203], + [20121,0.298], + [20123,0.261], + [20125,0.195], + [20127,0.214], + [20129,0.173], + [20131,0.254], + [20133,0.181], + [20135,0.194], + [20137,0.188], + [20139,0.192], + [20141,0.236], + [20143,0.245], + [20145,0.196], + [20147,0.218], + [20149,0.338], + [20151,0.303], + [20153,0.241], + [20155,0.209], + [20157,0.255], + [20159,0.228], + [20161,0.456], + [20163,0.231], + [20165,0.237], + [20167,0.231], + [20169,0.273], + [20171,0.251], + [20173,0.309], + [20175,0.11], + [20177,0.309], + [20179,0.22], + [20181,0.218], + [20183,0.223], + [20185,0.252], + [20187,0.19], + [20189,0.137], + [20191,0.233], + [20193,0.226], + [20195,0.248], + [20197,0.242], + [20199,0.324], + [20201,0.203], + [20203,0.206], + [20205,0.165], + [20207,0.172], + [20209,0.181], + [21001,0.157], + [21003,0.161], + [21005,0.202], + [21007,0.159], + [21009,0.163], + [21011,0.145], + [21013,0.092], + [21015,0.321], + [21017,0.194], + [21019,0.194], + [21021,0.252], + [21023,0.132], + [21025,0.152], + [21027,0.119], + [21029,0.147], + [21031,0.139], + [21033,0.153], + [21035,0.285], + [21037,0.363], + [21039,0.149], + [21041,0.082], + [21043,0.126], + [21045,0.128], + [21047,0.181], + [21049,0.201], + [21051,0.098], + [21053,0.103], + [21055,0.131], + [21057,0.133], + [21059,0.229], + [21061,0.103], + [21063,0.097], + [21065,0.099], + [21067,0.436], + [21069,0.129], + [21071,0.113], + [21073,0.299], + [21075,0.134], + [21077,0.116], + [21079,0.176], + [21081,0.129], + [21083,0.174], + [21085,0.105], + [21087,0.132], + [21089,0.171], + [21091,0.114], + [21093,0.22], + [21095,0.108], + [21097,0.146], + [21099,0.114], + [21101,0.182], + [21103,0.131], + [21105,0.158], + [21107,0.165], + [21109,0.138], + [21111,0.334], + [21113,0.295], + [21115,0.163], + [21117,0.317], + [21119,0.149], + [21121,0.142], + [21123,0.124], + [21125,0.144], + [21127,0.098], + [21129,0.083], + [21131,0.087], + [21133,0.121], + [21135,0.091], + [21137,0.13], + [21139,0.118], + [21141,0.164], + [21143,0.169], + [21145,0.242], + [21147,0.072], + [21149,0.135], + [21151,0.308], + [21153,0.095], + [21155,0.126], + [21157,0.192], + [21159,0.117], + [21161,0.195], + [21163,0.194], + [21165,0.112], + [21167,0.185], + [21169,0.13], + [21171,0.144], + [21173,0.157], + [21175,0.125], + [21177,0.126], + [21179,0.18], + [21181,0.089], + [21183,0.136], + [21185,0.424], + [21187,0.109], + [21189,0.162], + [21191,0.132], + [21193,0.144], + [21195,0.13], + [21197,0.159], + [21199,0.165], + [21201,0.163], + [21203,0.114], + [21205,0.251], + [21207,0.147], + [21209,0.284], + [21211,0.249], + [21213,0.142], + [21215,0.203], + [21217,0.196], + [21219,0.132], + [21221,0.166], + [21223,0.141], + [21225,0.111], + [21227,0.322], + [21229,0.188], + [21231,0.123], + [21233,0.1], + [21235,0.204], + [21237,0.087], + [21239,0.338], + [22001,0.133], + [22003,0.113], + [22005,0.264], + [22007,0.096], + [22009,0.123], + [22011,0.178], + [22013,0.128], + [22015,0.252], + [22017,0.235], + [22019,0.223], + [22021,0.138], + [22023,0.127], + [22025,0.138], + [22027,0.128], + [22029,0.141], + [22031,0.148], + [22033,0.349], + [22035,0.089], + [22037,0.127], + [22039,0.116], + [22041,0.12], + [22043,0.085], + [22045,0.136], + [22047,0.139], + [22049,0.14], + [22051,0.268], + [22053,0.169], + [22055,0.33], + [22057,0.169], + [22059,0.136], + [22061,0.356], + [22063,0.197], + [22065,0.128], + [22067,0.13], + [22069,0.19], + [22071,0.376], + [22073,0.242], + [22075,0.191], + [22077,0.149], + [22079,0.209], + [22081,0.139], + [22083,0.132], + [22085,0.133], + [22087,0.116], + [22089,0.253], + [22091,0.167], + [22093,0.163], + [22095,0.159], + [22097,0.148], + [22099,0.145], + [22101,0.102], + [22103,0.338], + [22105,0.2], + [22107,0.114], + [22109,0.156], + [22111,0.172], + [22113,0.142], + [22115,0.175], + [22117,0.116], + [22119,0.154], + [22121,0.22], + [22123,0.117], + [22125,0.242], + [22127,0.139], + [23001,0.228], + [23003,0.192], + [23005,0.476], + [23007,0.248], + [23009,0.341], + [23011,0.281], + [23013,0.335], + [23015,0.335], + [23017,0.192], + [23019,0.277], + [23021,0.184], + [23023,0.364], + [23025,0.165], + [23027,0.314], + [23029,0.22], + [23031,0.325], + [24001,0.189], + [24003,0.417], + [24005,0.394], + [24009,0.324], + [24011,0.184], + [24013,0.364], + [24015,0.239], + [24017,0.289], + [24019,0.212], + [24021,0.414], + [24023,0.209], + [24025,0.367], + [24027,0.626], + [24029,0.351], + [24031,0.589], + [24033,0.331], + [24035,0.365], + [24037,0.319], + [24039,0.144], + [24041,0.406], + [24043,0.219], + [24045,0.272], + [24047,0.29], + [24510,0.319], + [25001,0.434], + [25003,0.336], + [25005,0.287], + [25007,0.449], + [25009,0.399], + [25011,0.373], + [25013,0.271], + [25015,0.483], + [25017,0.563], + [25019,0.528], + [25021,0.536], + [25023,0.376], + [25025,0.461], + [25027,0.364], + [26001,0.169], + [26003,0.174], + [26005,0.226], + [26007,0.18], + [26009,0.288], + [26011,0.126], + [26013,0.158], + [26015,0.211], + [26017,0.193], + [26019,0.303], + [26021,0.278], + [26023,0.144], + [26025,0.21], + [26027,0.192], + [26029,0.311], + [26031,0.207], + [26033,0.212], + [26035,0.126], + [26037,0.321], + [26039,0.194], + [26041,0.21], + [26043,0.257], + [26045,0.278], + [26047,0.334], + [26049,0.212], + [26051,0.135], + [26053,0.194], + [26055,0.36], + [26057,0.154], + [26059,0.173], + [26061,0.326], + [26063,0.16], + [26065,0.389], + [26067,0.164], + [26069,0.159], + [26071,0.185], + [26073,0.291], + [26075,0.222], + [26077,0.388], + [26079,0.119], + [26081,0.357], + [26083,0.32], + [26085,0.119], + [26087,0.183], + [26089,0.447], + [26091,0.21], + [26093,0.354], + [26095,0.184], + [26097,0.233], + [26099,0.249], + [26101,0.203], + [26103,0.329], + [26105,0.231], + [26107,0.227], + [26109,0.163], + [26111,0.352], + [26113,0.14], + [26115,0.205], + [26117,0.133], + [26119,0.137], + [26121,0.197], + [26123,0.166], + [26125,0.472], + [26127,0.195], + [26129,0.122], + [26131,0.165], + [26133,0.142], + [26135,0.106], + [26137,0.236], + [26139,0.341], + [26141,0.179], + [26143,0.155], + [26145,0.208], + [26147,0.186], + [26149,0.162], + [26151,0.142], + [26153,0.156], + [26155,0.17], + [26157,0.135], + [26159,0.217], + [26161,0.559], + [26163,0.239], + [26165,0.182], + [27001,0.181], + [27003,0.305], + [27005,0.25], + [27007,0.292], + [27009,0.236], + [27011,0.154], + [27013,0.348], + [27015,0.222], + [27017,0.221], + [27019,0.489], + [27021,0.232], + [27023,0.19], + [27025,0.215], + [27027,0.342], + [27029,0.171], + [27031,0.404], + [27033,0.2], + [27035,0.247], + [27037,0.422], + [27039,0.257], + [27041,0.26], + [27043,0.186], + [27045,0.222], + [27047,0.171], + [27049,0.26], + [27051,0.188], + [27053,0.501], + [27055,0.248], + [27057,0.274], + [27059,0.185], + [27061,0.231], + [27063,0.226], + [27065,0.147], + [27067,0.233], + [27069,0.259], + [27071,0.155], + [27073,0.188], + [27075,0.288], + [27077,0.167], + [27079,0.23], + [27081,0.193], + [27083,0.261], + [27085,0.176], + [27087,0.132], + [27089,0.191], + [27091,0.205], + [27093,0.195], + [27095,0.147], + [27097,0.173], + [27099,0.222], + [27101,0.207], + [27103,0.338], + [27105,0.153], + [27107,0.191], + [27109,0.449], + [27111,0.249], + [27113,0.193], + [27115,0.149], + [27117,0.213], + [27119,0.253], + [27121,0.229], + [27123,0.423], + [27125,0.162], + [27127,0.191], + [27129,0.152], + [27131,0.283], + [27133,0.238], + [27135,0.203], + [27137,0.293], + [27139,0.399], + [27141,0.266], + [27143,0.164], + [27145,0.275], + [27147,0.26], + [27149,0.305], + [27151,0.196], + [27153,0.151], + [27155,0.175], + [27157,0.237], + [27159,0.138], + [27161,0.214], + [27163,0.443], + [27165,0.155], + [27167,0.238], + [27169,0.301], + [27171,0.296], + [27173,0.172], + [28001,0.174], + [28003,0.171], + [28005,0.126], + [28007,0.139], + [28009,0.115], + [28011,0.236], + [28013,0.118], + [28015,0.122], + [28017,0.124], + [28019,0.191], + [28021,0.24], + [28023,0.125], + [28025,0.204], + [28027,0.165], + [28029,0.145], + [28031,0.147], + [28033,0.25], + [28035,0.278], + [28037,0.12], + [28039,0.138], + [28041,0.097], + [28043,0.213], + [28045,0.22], + [28047,0.231], + [28049,0.29], + [28051,0.102], + [28053,0.128], + [28055,0.032], + [28057,0.132], + [28059,0.211], + [28061,0.151], + [28063,0.159], + [28065,0.141], + [28067,0.208], + [28069,0.147], + [28071,0.456], + [28073,0.341], + [28075,0.197], + [28077,0.176], + [28079,0.143], + [28081,0.244], + [28083,0.185], + [28085,0.162], + [28087,0.234], + [28089,0.484], + [28091,0.123], + [28093,0.138], + [28095,0.167], + [28097,0.193], + [28099,0.116], + [28101,0.164], + [28103,0.156], + [28105,0.426], + [28107,0.149], + [28109,0.167], + [28111,0.107], + [28113,0.166], + [28115,0.181], + [28117,0.124], + [28119,0.103], + [28121,0.29], + [28123,0.114], + [28125,0.195], + [28127,0.162], + [28129,0.122], + [28131,0.158], + [28133,0.154], + [28135,0.103], + [28137,0.158], + [28139,0.152], + [28141,0.114], + [28143,0.169], + [28145,0.134], + [28147,0.144], + [28149,0.224], + [28151,0.179], + [28153,0.153], + [28155,0.185], + [28157,0.137], + [28159,0.147], + [28161,0.138], + [28163,0.134], + [29001,0.31], + [29003,0.249], + [29005,0.231], + [29007,0.147], + [29009,0.146], + [29011,0.199], + [29013,0.161], + [29015,0.13], + [29017,0.089], + [29019,0.461], + [29021,0.211], + [29023,0.133], + [29025,0.181], + [29027,0.231], + [29029,0.211], + [29031,0.315], + [29033,0.167], + [29035,0.155], + [29037,0.263], + [29039,0.136], + [29041,0.172], + [29043,0.286], + [29045,0.128], + [29047,0.332], + [29049,0.216], + [29051,0.333], + [29053,0.221], + [29055,0.115], + [29057,0.127], + [29059,0.129], + [29061,0.185], + [29063,0.138], + [29065,0.153], + [29067,0.108], + [29069,0.138], + [29071,0.209], + [29073,0.192], + [29075,0.191], + [29077,0.305], + [29079,0.171], + [29081,0.165], + [29083,0.159], + [29085,0.09], + [29087,0.197], + [29089,0.252], + [29091,0.18], + [29093,0.108], + [29095,0.316], + [29097,0.236], + [29099,0.204], + [29101,0.289], + [29103,0.172], + [29105,0.146], + [29107,0.203], + [29109,0.16], + [29111,0.136], + [29113,0.168], + [29115,0.169], + [29117,0.188], + [29119,0.115], + [29121,0.163], + [29123,0.156], + [29125,0.158], + [29127,0.224], + [29129,0.189], + [29131,0.194], + [29133,0.115], + [29135,0.205], + [29137,0.124], + [29139,0.14], + [29141,0.133], + [29143,0.121], + [29145,0.2], + [29147,0.286], + [29149,0.146], + [29151,0.189], + [29153,0.11], + [29155,0.127], + [29157,0.177], + [29159,0.18], + [29161,0.291], + [29163,0.156], + [29165,0.431], + [29167,0.199], + [29169,0.283], + [29171,0.193], + [29173,0.149], + [29175,0.151], + [29177,0.146], + [29179,0.137], + [29181,0.102], + [29183,0.389], + [29185,0.139], + [29186,0.197], + [29187,0.143], + [29189,0.436], + [29195,0.194], + [29197,0.126], + [29199,0.142], + [29201,0.163], + [29203,0.149], + [29205,0.181], + [29207,0.133], + [29209,0.186], + [29211,0.117], + [29213,0.199], + [29215,0.135], + [29217,0.189], + [29219,0.191], + [29221,0.099], + [29223,0.096], + [29225,0.168], + [29227,0.2], + [29229,0.102], + [29510,0.363], + [30001,0.354], + [30003,0.181], + [30005,0.229], + [30007,0.271], + [30009,0.304], + [30011,0.202], + [30013,0.257], + [30015,0.283], + [30017,0.246], + [30019,0.24], + [30021,0.222], + [30023,0.204], + [30025,0.19], + [30027,0.291], + [30029,0.31], + [30031,0.501], + [30033,0.143], + [30035,0.214], + [30037,0.227], + [30039,0.289], + [30041,0.254], + [30043,0.35], + [30045,0.266], + [30047,0.296], + [30049,0.401], + [30051,0.152], + [30053,0.196], + [30055,0.172], + [30057,0.312], + [30059,0.293], + [30061,0.161], + [30063,0.43], + [30065,0.163], + [30067,0.315], + [30069,0.326], + [30071,0.172], + [30073,0.24], + [30075,0.244], + [30077,0.204], + [30079,0.222], + [30081,0.278], + [30083,0.189], + [30085,0.174], + [30087,0.178], + [30089,0.179], + [30091,0.239], + [30093,0.272], + [30095,0.25], + [30097,0.254], + [30099,0.249], + [30101,0.152], + [30103,0.254], + [30105,0.215], + [30107,0.196], + [30109,0.234], + [30111,0.321], + [31001,0.243], + [31003,0.184], + [31005,0.262], + [31007,0.233], + [31009,0.23], + [31011,0.211], + [31013,0.171], + [31015,0.167], + [31017,0.207], + [31019,0.346], + [31021,0.213], + [31023,0.214], + [31025,0.277], + [31027,0.21], + [31029,0.21], + [31031,0.229], + [31033,0.254], + [31035,0.199], + [31037,0.154], + [31039,0.238], + [31041,0.24], + [31043,0.13], + [31045,0.369], + [31047,0.158], + [31049,0.159], + [31051,0.212], + [31053,0.19], + [31055,0.397], + [31057,0.233], + [31059,0.214], + [31061,0.173], + [31063,0.215], + [31065,0.174], + [31067,0.208], + [31069,0.225], + [31071,0.255], + [31073,0.295], + [31075,0.268], + [31077,0.163], + [31079,0.215], + [31081,0.25], + [31083,0.224], + [31085,0.183], + [31087,0.176], + [31089,0.224], + [31091,0.264], + [31093,0.211], + [31095,0.178], + [31097,0.175], + [31099,0.267], + [31101,0.205], + [31103,0.25], + [31105,0.161], + [31107,0.216], + [31109,0.395], + [31111,0.232], + [31113,0.196], + [31115,0.253], + [31117,0.22], + [31119,0.23], + [31121,0.178], + [31123,0.195], + [31125,0.183], + [31127,0.278], + [31129,0.209], + [31131,0.234], + [31133,0.171], + [31135,0.281], + [31137,0.235], + [31139,0.232], + [31141,0.218], + [31143,0.218], + [31145,0.191], + [31147,0.19], + [31149,0.232], + [31151,0.178], + [31153,0.398], + [31155,0.254], + [31157,0.229], + [31159,0.289], + [31161,0.228], + [31163,0.202], + [31165,0.306], + [31167,0.178], + [31169,0.188], + [31171,0.247], + [31173,0.164], + [31175,0.242], + [31177,0.299], + [31179,0.324], + [31181,0.23], + [31183,0.194], + [31185,0.284], + [32001,0.188], + [32003,0.245], + [32005,0.294], + [32007,0.166], + [32009,0.161], + [32011,0.088], + [32013,0.168], + [32015,0.124], + [32017,0.196], + [32019,0.144], + [32021,0.149], + [32023,0.107], + [32027,0.111], + [32029,0.314], + [32031,0.308], + [32033,0.132], + [32510,0.222], + [33001,0.326], + [33003,0.343], + [33005,0.331], + [33007,0.182], + [33009,0.406], + [33011,0.381], + [33013,0.356], + [33015,0.414], + [33017,0.358], + [33019,0.281], + [34001,0.281], + [34003,0.493], + [34005,0.38], + [34007,0.325], + [34009,0.328], + [34011,0.156], + [34013,0.355], + [34015,0.33], + [34017,0.423], + [34019,0.527], + [34021,0.426], + [34023,0.436], + [34025,0.46], + [34027,0.541], + [34029,0.3], + [34031,0.282], + [34033,0.21], + [34035,0.547], + [34037,0.361], + [34039,0.36], + [34041,0.33], + [35001,0.344], + [35003,0.157], + [35005,0.18], + [35006,0.142], + [35007,0.217], + [35009,0.192], + [35011,0.13], + [35013,0.271], + [35015,0.162], + [35017,0.288], + [35019,0.076], + [35021,0.217], + [35023,0.146], + [35025,0.136], + [35027,0.258], + [35028,0.674], + [35029,0.125], + [35031,0.114], + [35033,0.11], + [35035,0.175], + [35037,0.171], + [35039,0.193], + [35041,0.239], + [35043,0.305], + [35045,0.149], + [35047,0.214], + [35049,0.41], + [35051,0.211], + [35053,0.22], + [35055,0.287], + [35057,0.148], + [35059,0.117], + [35061,0.185], + [36001,0.418], + [36003,0.209], + [36005,0.201], + [36007,0.284], + [36009,0.191], + [36011,0.226], + [36013,0.222], + [36015,0.233], + [36017,0.187], + [36019,0.229], + [36021,0.327], + [36023,0.28], + [36025,0.226], + [36027,0.35], + [36029,0.344], + [36031,0.268], + [36033,0.191], + [36035,0.182], + [36037,0.223], + [36039,0.221], + [36041,0.168], + [36043,0.215], + [36045,0.222], + [36047,0.375], + [36049,0.184], + [36051,0.265], + [36053,0.262], + [36055,0.386], + [36057,0.178], + [36059,0.46], + [36061,0.613], + [36063,0.246], + [36065,0.257], + [36067,0.359], + [36069,0.363], + [36071,0.303], + [36073,0.162], + [36075,0.19], + [36077,0.311], + [36079,0.396], + [36081,0.322], + [36083,0.32], + [36085,0.339], + [36087,0.411], + [36089,0.238], + [36091,0.414], + [36093,0.321], + [36095,0.224], + [36097,0.235], + [36099,0.211], + [36101,0.236], + [36103,0.363], + [36105,0.248], + [36107,0.26], + [36109,0.535], + [36111,0.325], + [36113,0.313], + [36115,0.205], + [36117,0.226], + [36119,0.489], + [36121,0.177], + [36123,0.252], + [37001,0.248], + [37003,0.142], + [37005,0.173], + [37007,0.113], + [37009,0.197], + [37011,0.207], + [37013,0.206], + [37015,0.136], + [37017,0.158], + [37019,0.299], + [37021,0.401], + [37023,0.164], + [37025,0.323], + [37027,0.157], + [37029,0.171], + [37031,0.291], + [37033,0.159], + [37035,0.226], + [37037,0.424], + [37039,0.19], + [37041,0.217], + [37043,0.237], + [37045,0.176], + [37047,0.138], + [37049,0.253], + [37051,0.255], + [37053,0.235], + [37055,0.347], + [37057,0.185], + [37059,0.24], + [37061,0.121], + [37063,0.482], + [37065,0.136], + [37067,0.34], + [37069,0.22], + [37071,0.212], + [37073,0.143], + [37075,0.129], + [37077,0.225], + [37079,0.11], + [37081,0.36], + [37083,0.144], + [37085,0.219], + [37087,0.26], + [37089,0.318], + [37091,0.149], + [37093,0.177], + [37095,0.092], + [37097,0.284], + [37099,0.304], + [37101,0.229], + [37103,0.122], + [37105,0.215], + [37107,0.149], + [37109,0.23], + [37111,0.174], + [37113,0.238], + [37115,0.285], + [37117,0.164], + [37119,0.454], + [37121,0.205], + [37123,0.157], + [37125,0.374], + [37127,0.208], + [37129,0.406], + [37131,0.138], + [37133,0.229], + [37135,0.597], + [37137,0.185], + [37139,0.221], + [37141,0.279], + [37143,0.202], + [37145,0.156], + [37147,0.327], + [37149,0.291], + [37151,0.157], + [37153,0.157], + [37155,0.137], + [37157,0.151], + [37159,0.185], + [37161,0.178], + [37163,0.137], + [37165,0.155], + [37167,0.173], + [37169,0.141], + [37171,0.18], + [37173,0.182], + [37175,0.326], + [37177,0.106], + [37179,0.354], + [37181,0.148], + [37183,0.528], + [37185,0.158], + [37187,0.115], + [37189,0.422], + [37191,0.19], + [37193,0.158], + [37195,0.196], + [37197,0.116], + [37199,0.203], + [38001,0.256], + [38003,0.294], + [38005,0.162], + [38007,0.263], + [38009,0.24], + [38011,0.242], + [38013,0.228], + [38015,0.358], + [38017,0.402], + [38019,0.195], + [38021,0.288], + [38023,0.185], + [38025,0.213], + [38027,0.262], + [38029,0.182], + [38031,0.267], + [38033,0.269], + [38035,0.356], + [38037,0.181], + [38039,0.258], + [38041,0.13], + [38043,0.177], + [38045,0.246], + [38047,0.196], + [38049,0.214], + [38051,0.156], + [38053,0.258], + [38055,0.208], + [38057,0.217], + [38059,0.269], + [38061,0.204], + [38063,0.25], + [38065,0.211], + [38067,0.206], + [38069,0.21], + [38071,0.264], + [38073,0.191], + [38075,0.201], + [38077,0.213], + [38079,0.196], + [38081,0.185], + [38083,0.146], + [38085,0.15], + [38087,0.259], + [38089,0.224], + [38091,0.309], + [38093,0.237], + [38095,0.17], + [38097,0.289], + [38099,0.172], + [38101,0.293], + [38103,0.222], + [38105,0.236], + [39001,0.132], + [39003,0.189], + [39005,0.209], + [39007,0.143], + [39009,0.302], + [39011,0.189], + [39013,0.167], + [39015,0.149], + [39017,0.302], + [39019,0.133], + [39021,0.161], + [39023,0.187], + [39025,0.286], + [39027,0.189], + [39029,0.149], + [39031,0.132], + [39033,0.144], + [39035,0.325], + [39037,0.158], + [39039,0.18], + [39041,0.543], + [39043,0.232], + [39045,0.276], + [39047,0.163], + [39049,0.4], + [39051,0.176], + [39053,0.159], + [39055,0.38], + [39057,0.392], + [39059,0.146], + [39061,0.379], + [39063,0.271], + [39065,0.162], + [39067,0.116], + [39069,0.172], + [39071,0.134], + [39073,0.144], + [39075,0.097], + [39077,0.144], + [39079,0.145], + [39081,0.158], + [39083,0.23], + [39085,0.274], + [39087,0.149], + [39089,0.261], + [39091,0.165], + [39093,0.249], + [39095,0.263], + [39097,0.175], + [39099,0.242], + [39101,0.125], + [39103,0.339], + [39105,0.131], + [39107,0.183], + [39109,0.233], + [39111,0.125], + [39113,0.279], + [39115,0.102], + [39117,0.138], + [39119,0.161], + [39121,0.099], + [39123,0.231], + [39125,0.156], + [39127,0.122], + [39129,0.184], + [39131,0.126], + [39133,0.29], + [39135,0.163], + [39137,0.209], + [39139,0.183], + [39141,0.158], + [39143,0.161], + [39145,0.157], + [39147,0.168], + [39149,0.187], + [39151,0.228], + [39153,0.325], + [39155,0.187], + [39157,0.174], + [39159,0.355], + [39161,0.166], + [39163,0.128], + [39165,0.43], + [39167,0.188], + [39169,0.222], + [39171,0.152], + [39173,0.335], + [39175,0.172], + [40001,0.116], + [40003,0.218], + [40005,0.15], + [40007,0.199], + [40009,0.168], + [40011,0.165], + [40013,0.219], + [40015,0.154], + [40017,0.274], + [40019,0.205], + [40021,0.263], + [40023,0.134], + [40025,0.228], + [40027,0.334], + [40029,0.173], + [40031,0.222], + [40033,0.137], + [40035,0.147], + [40037,0.17], + [40039,0.248], + [40041,0.181], + [40043,0.24], + [40045,0.201], + [40047,0.229], + [40049,0.147], + [40051,0.199], + [40053,0.246], + [40055,0.123], + [40057,0.207], + [40059,0.193], + [40061,0.162], + [40063,0.129], + [40065,0.233], + [40067,0.147], + [40069,0.201], + [40071,0.189], + [40073,0.224], + [40075,0.172], + [40077,0.172], + [40079,0.146], + [40081,0.155], + [40083,0.277], + [40085,0.135], + [40087,0.25], + [40089,0.134], + [40091,0.139], + [40093,0.2], + [40095,0.148], + [40097,0.143], + [40099,0.174], + [40101,0.204], + [40103,0.232], + [40105,0.115], + [40107,0.116], + [40109,0.32], + [40111,0.141], + [40113,0.18], + [40115,0.145], + [40117,0.166], + [40119,0.374], + [40121,0.161], + [40123,0.282], + [40125,0.183], + [40127,0.143], + [40129,0.162], + [40131,0.249], + [40133,0.143], + [40135,0.144], + [40137,0.169], + [40139,0.221], + [40141,0.173], + [40143,0.318], + [40145,0.232], + [40147,0.285], + [40149,0.208], + [40151,0.303], + [40153,0.194], + [41001,0.237], + [41003,0.541], + [41005,0.374], + [41007,0.244], + [41009,0.185], + [41011,0.178], + [41013,0.198], + [41015,0.246], + [41017,0.354], + [41019,0.173], + [41021,0.174], + [41023,0.189], + [41025,0.184], + [41027,0.32], + [41029,0.278], + [41031,0.194], + [41033,0.175], + [41035,0.2], + [41037,0.164], + [41039,0.305], + [41041,0.249], + [41043,0.193], + [41045,0.137], + [41047,0.235], + [41049,0.09], + [41051,0.459], + [41053,0.31], + [41055,0.173], + [41057,0.218], + [41059,0.172], + [41061,0.245], + [41063,0.264], + [41065,0.196], + [41067,0.444], + [41069,0.149], + [41071,0.269], + [42001,0.223], + [42003,0.416], + [42005,0.167], + [42007,0.247], + [42009,0.147], + [42011,0.249], + [42013,0.213], + [42015,0.187], + [42017,0.413], + [42019,0.36], + [42021,0.211], + [42023,0.137], + [42025,0.179], + [42027,0.455], + [42029,0.53], + [42031,0.221], + [42033,0.151], + [42035,0.195], + [42037,0.229], + [42039,0.211], + [42041,0.366], + [42043,0.308], + [42045,0.39], + [42047,0.196], + [42049,0.279], + [42051,0.173], + [42053,0.081], + [42055,0.216], + [42057,0.136], + [42059,0.176], + [42061,0.174], + [42063,0.23], + [42065,0.159], + [42067,0.145], + [42069,0.283], + [42071,0.273], + [42073,0.221], + [42075,0.207], + [42077,0.299], + [42079,0.229], + [42081,0.234], + [42083,0.189], + [42085,0.228], + [42087,0.119], + [42089,0.247], + [42091,0.493], + [42093,0.316], + [42095,0.303], + [42097,0.166], + [42099,0.167], + [42101,0.297], + [42103,0.268], + [42105,0.154], + [42107,0.166], + [42109,0.198], + [42111,0.159], + [42113,0.172], + [42115,0.186], + [42117,0.191], + [42119,0.26], + [42121,0.187], + [42123,0.195], + [42125,0.3], + [42127,0.204], + [42129,0.291], + [42131,0.196], + [42133,0.249], + [44001,0.49], + [44003,0.333], + [44005,0.481], + [44007,0.29], + [44009,0.461], + [45001,0.156], + [45003,0.264], + [45005,0.092], + [45007,0.222], + [45009,0.188], + [45011,0.125], + [45013,0.412], + [45015,0.25], + [45017,0.199], + [45019,0.436], + [45021,0.142], + [45023,0.134], + [45025,0.104], + [45027,0.151], + [45029,0.146], + [45031,0.184], + [45033,0.111], + [45035,0.282], + [45037,0.167], + [45039,0.169], + [45041,0.236], + [45043,0.273], + [45045,0.351], + [45047,0.246], + [45049,0.119], + [45051,0.236], + [45053,0.178], + [45055,0.203], + [45057,0.269], + [45059,0.162], + [45061,0.159], + [45063,0.304], + [45065,0.205], + [45067,0.135], + [45069,0.089], + [45071,0.179], + [45073,0.258], + [45075,0.199], + [45077,0.26], + [45079,0.391], + [45081,0.168], + [45083,0.245], + [45085,0.193], + [45087,0.113], + [45089,0.123], + [45091,0.333], + [46003,0.215], + [46005,0.205], + [46007,0.157], + [46009,0.183], + [46011,0.403], + [46013,0.294], + [46015,0.271], + [46017,0.085], + [46019,0.192], + [46021,0.28], + [46023,0.186], + [46025,0.191], + [46027,0.499], + [46029,0.215], + [46031,0.178], + [46033,0.235], + [46035,0.265], + [46037,0.216], + [46039,0.222], + [46041,0.166], + [46043,0.155], + [46045,0.263], + [46047,0.211], + [46049,0.269], + [46051,0.219], + [46053,0.202], + [46055,0.156], + [46057,0.21], + [46059,0.221], + [46061,0.185], + [46063,0.26], + [46065,0.347], + [46067,0.252], + [46069,0.245], + [46071,0.178], + [46073,0.225], + [46075,0.257], + [46077,0.215], + [46079,0.331], + [46081,0.35], + [46083,0.376], + [46085,0.203], + [46087,0.241], + [46089,0.177], + [46091,0.241], + [46093,0.272], + [46095,0.12], + [46097,0.185], + [46099,0.331], + [46101,0.213], + [46102,0.104], + [46103,0.315], + [46105,0.203], + [46107,0.223], + [46109,0.173], + [46111,0.216], + [46115,0.218], + [46117,0.321], + [46119,0.25], + [46121,0.156], + [46123,0.223], + [46125,0.237], + [46127,0.306], + [46129,0.249], + [46135,0.257], + [46137,0.164], + [47001,0.233], + [47003,0.166], + [47005,0.123], + [47007,0.12], + [47009,0.242], + [47011,0.223], + [47013,0.124], + [47015,0.158], + [47017,0.18], + [47019,0.175], + [47021,0.21], + [47023,0.16], + [47025,0.161], + [47027,0.139], + [47029,0.116], + [47031,0.205], + [47033,0.138], + [47035,0.185], + [47037,0.417], + [47039,0.145], + [47041,0.167], + [47043,0.162], + [47045,0.161], + [47047,0.222], + [47049,0.16], + [47051,0.208], + [47053,0.184], + [47055,0.165], + [47057,0.107], + [47059,0.167], + [47061,0.132], + [47063,0.168], + [47065,0.322], + [47067,0.112], + [47069,0.112], + [47071,0.15], + [47073,0.137], + [47075,0.11], + [47077,0.144], + [47079,0.165], + [47081,0.109], + [47083,0.13], + [47085,0.143], + [47087,0.11], + [47089,0.168], + [47091,0.116], + [47093,0.376], + [47095,0.094], + [47097,0.083], + [47099,0.143], + [47101,0.104], + [47103,0.184], + [47105,0.264], + [47107,0.162], + [47109,0.126], + [47111,0.103], + [47113,0.256], + [47115,0.128], + [47117,0.147], + [47119,0.23], + [47121,0.098], + [47123,0.134], + [47125,0.285], + [47127,0.227], + [47129,0.094], + [47131,0.153], + [47133,0.128], + [47135,0.115], + [47137,0.094], + [47139,0.119], + [47141,0.264], + [47143,0.169], + [47145,0.198], + [47147,0.196], + [47149,0.322], + [47151,0.092], + [47153,0.151], + [47155,0.174], + [47157,0.316], + [47159,0.144], + [47161,0.156], + [47163,0.236], + [47165,0.281], + [47167,0.173], + [47169,0.138], + [47171,0.148], + [47173,0.099], + [47175,0.078], + [47177,0.145], + [47179,0.318], + [47181,0.097], + [47183,0.216], + [47185,0.123], + [47187,0.598], + [47189,0.324], + [48001,0.106], + [48003,0.122], + [48005,0.169], + [48007,0.219], + [48009,0.239], + [48011,0.228], + [48013,0.144], + [48015,0.239], + [48017,0.172], + [48019,0.228], + [48021,0.207], + [48023,0.228], + [48025,0.089], + [48027,0.252], + [48029,0.28], + [48031,0.265], + [48033,0.395], + [48035,0.198], + [48037,0.206], + [48039,0.3], + [48041,0.417], + [48043,0.4], + [48045,0.198], + [48047,0.157], + [48049,0.191], + [48051,0.173], + [48053,0.254], + [48055,0.146], + [48057,0.142], + [48059,0.21], + [48061,0.173], + [48063,0.194], + [48065,0.284], + [48067,0.164], + [48069,0.156], + [48071,0.227], + [48073,0.172], + [48075,0.183], + [48077,0.214], + [48079,0.08], + [48081,0.178], + [48083,0.158], + [48085,0.523], + [48087,0.202], + [48089,0.21], + [48091,0.368], + [48093,0.203], + [48095,0.13], + [48097,0.209], + [48099,0.161], + [48101,0.168], + [48103,0.147], + [48105,0.14], + [48107,0.132], + [48109,0.102], + [48111,0.158], + [48113,0.315], + [48115,0.142], + [48117,0.12], + [48119,0.251], + [48121,0.451], + [48123,0.126], + [48125,0.185], + [48127,0.136], + [48129,0.179], + [48131,0.09], + [48133,0.16], + [48135,0.154], + [48137,0.182], + [48139,0.243], + [48141,0.233], + [48143,0.315], + [48145,0.124], + [48147,0.174], + [48149,0.197], + [48151,0.186], + [48153,0.159], + [48155,0.162], + [48157,0.462], + [48159,0.266], + [48161,0.153], + [48163,0.073], + [48165,0.114], + [48167,0.311], + [48169,0.139], + [48171,0.322], + [48173,0.272], + [48175,0.173], + [48177,0.131], + [48179,0.139], + [48181,0.204], + [48183,0.213], + [48185,0.157], + [48187,0.282], + [48189,0.171], + [48191,0.159], + [48193,0.224], + [48195,0.151], + [48197,0.137], + [48199,0.168], + [48201,0.315], + [48203,0.191], + [48205,0.178], + [48207,0.119], + [48209,0.372], + [48211,0.212], + [48213,0.173], + [48215,0.187], + [48217,0.174], + [48219,0.158], + [48221,0.264], + [48223,0.201], + [48225,0.152], + [48227,0.126], + [48229,0.107], + [48231,0.199], + [48233,0.14], + [48235,0.15], + [48237,0.135], + [48239,0.165], + [48241,0.129], + [48243,0.305], + [48245,0.197], + [48247,0.134], + [48249,0.122], + [48251,0.187], + [48253,0.117], + [48255,0.153], + [48257,0.205], + [48259,0.421], + [48261,0.01], + [48263,0.254], + [48265,0.274], + [48267,0.225], + [48269,0.209], + [48271,0.121], + [48273,0.246], + [48275,0.201], + [48277,0.187], + [48279,0.144], + [48281,0.199], + [48283,0.075], + [48285,0.167], + [48287,0.146], + [48289,0.14], + [48291,0.097], + [48293,0.148], + [48295,0.197], + [48297,0.122], + [48299,0.253], + [48301,0], + [48303,0.301], + [48305,0.173], + [48307,0.173], + [48309,0.242], + [48311,0.288], + [48313,0.147], + [48315,0.147], + [48317,0.183], + [48319,0.276], + [48321,0.174], + [48323,0.127], + [48325,0.198], + [48327,0.18], + [48329,0.274], + [48331,0.141], + [48333,0.183], + [48335,0.113], + [48337,0.169], + [48339,0.345], + [48341,0.143], + [48343,0.143], + [48345,0.168], + [48347,0.245], + [48349,0.159], + [48351,0.097], + [48353,0.152], + [48355,0.218], + [48357,0.156], + [48359,0.22], + [48361,0.155], + [48363,0.166], + [48365,0.161], + [48367,0.264], + [48369,0.179], + [48371,0.098], + [48373,0.131], + [48375,0.149], + [48377,0.212], + [48379,0.137], + [48381,0.324], + [48383,0.105], + [48385,0.174], + [48387,0.125], + [48389,0.123], + [48391,0.115], + [48393,0.25], + [48395,0.161], + [48397,0.407], + [48399,0.181], + [48401,0.155], + [48403,0.176], + [48405,0.14], + [48407,0.112], + [48409,0.156], + [48411,0.141], + [48413,0.166], + [48415,0.162], + [48417,0.305], + [48419,0.138], + [48421,0.15], + [48423,0.264], + [48425,0.264], + [48427,0.099], + [48429,0.162], + [48431,0.095], + [48433,0.148], + [48435,0.171], + [48437,0.153], + [48439,0.323], + [48441,0.252], + [48443,0.184], + [48445,0.114], + [48447,0.217], + [48449,0.163], + [48451,0.245], + [48453,0.5], + [48455,0.129], + [48457,0.134], + [48459,0.171], + [48461,0.096], + [48463,0.179], + [48465,0.184], + [48467,0.158], + [48469,0.2], + [48471,0.208], + [48473,0.211], + [48475,0.125], + [48477,0.268], + [48479,0.189], + [48481,0.18], + [48483,0.168], + [48485,0.231], + [48487,0.152], + [48489,0.089], + [48491,0.413], + [48493,0.218], + [48495,0.082], + [48497,0.18], + [48499,0.166], + [48501,0.127], + [48503,0.193], + [48505,0.116], + [48507,0.109], + [49001,0.211], + [49003,0.239], + [49005,0.383], + [49007,0.171], + [49009,0.134], + [49011,0.378], + [49013,0.147], + [49015,0.163], + [49017,0.259], + [49019,0.286], + [49021,0.298], + [49023,0.16], + [49025,0.299], + [49027,0.206], + [49029,0.394], + [49031,0.202], + [49033,0.23], + [49035,0.356], + [49037,0.183], + [49039,0.209], + [49041,0.185], + [49043,0.55], + [49045,0.242], + [49047,0.158], + [49049,0.408], + [49051,0.399], + [49053,0.281], + [49055,0.234], + [49057,0.245], + [50001,0.396], + [50003,0.362], + [50005,0.29], + [50007,0.513], + [50009,0.162], + [50011,0.241], + [50013,0.398], + [50015,0.382], + [50017,0.291], + [50019,0.215], + [50021,0.308], + [50023,0.418], + [50025,0.381], + [50027,0.382], + [51001,0.195], + [51003,0.551], + [51005,0.15], + [51007,0.171], + [51009,0.191], + [51011,0.209], + [51013,0.753], + [51015,0.227], + [51017,0.159], + [51019,0.292], + [51021,0.142], + [51023,0.283], + [51025,0.136], + [51027,0.118], + [51029,0.125], + [51031,0.225], + [51033,0.199], + [51035,0.15], + [51036,0.147], + [51037,0.109], + [51041,0.405], + [51043,0.322], + [51045,0.236], + [51047,0.257], + [51049,0.149], + [51051,0.107], + [51053,0.186], + [51057,0.174], + [51059,0.616], + [51061,0.364], + [51063,0.221], + [51065,0.339], + [51067,0.219], + [51069,0.283], + [51071,0.181], + [51073,0.233], + [51075,0.418], + [51077,0.137], + [51079,0.29], + [51081,0.092], + [51083,0.154], + [51085,0.398], + [51087,0.437], + [51089,0.139], + [51091,0.225], + [51093,0.27], + [51095,0.504], + [51097,0.236], + [51099,0.36], + [51101,0.21], + [51103,0.315], + [51105,0.112], + [51107,0.613], + [51109,0.241], + [51111,0.113], + [51113,0.234], + [51115,0.279], + [51117,0.202], + [51119,0.215], + [51121,0.455], + [51125,0.304], + [51127,0.269], + [51131,0.226], + [51133,0.289], + [51135,0.148], + [51137,0.251], + [51139,0.137], + [51141,0.152], + [51143,0.145], + [51145,0.292], + [51147,0.268], + [51149,0.236], + [51153,0.411], + [51155,0.2], + [51157,0.358], + [51159,0.177], + [51161,0.356], + [51163,0.267], + [51165,0.263], + [51167,0.122], + [51169,0.133], + [51171,0.205], + [51173,0.146], + [51175,0.184], + [51177,0.317], + [51179,0.399], + [51181,0.206], + [51183,0.127], + [51185,0.149], + [51187,0.217], + [51191,0.228], + [51193,0.192], + [51195,0.15], + [51197,0.19], + [51199,0.471], + [51510,0.631], + [51520,0.254], + [51530,0.159], + [51540,0.549], + [51550,0.332], + [51570,0.255], + [51580,0.156], + [51590,0.176], + [51595,0.138], + [51600,0.608], + [51610,0.776], + [51620,0.191], + [51630,0.409], + [51640,0.148], + [51650,0.269], + [51660,0.363], + [51670,0.148], + [51678,0.467], + [51680,0.356], + [51683,0.296], + [51685,0.279], + [51690,0.21], + [51700,0.263], + [51710,0.288], + [51720,0.228], + [51730,0.198], + [51735,0.422], + [51740,0.219], + [51750,0.38], + [51760,0.396], + [51770,0.234], + [51775,0.279], + [51790,0.334], + [51800,0.295], + [51810,0.36], + [51820,0.271], + [51830,0.568], + [51840,0.351], + [53001,0.143], + [53003,0.214], + [53005,0.309], + [53007,0.258], + [53009,0.274], + [53011,0.306], + [53013,0.256], + [53015,0.17], + [53017,0.205], + [53019,0.188], + [53021,0.177], + [53023,0.245], + [53025,0.177], + [53027,0.165], + [53029,0.336], + [53031,0.443], + [53033,0.525], + [53035,0.332], + [53037,0.323], + [53039,0.315], + [53041,0.177], + [53043,0.251], + [53045,0.176], + [53047,0.2], + [53049,0.189], + [53051,0.208], + [53053,0.272], + [53055,0.498], + [53057,0.262], + [53059,0.245], + [53061,0.328], + [53063,0.308], + [53065,0.187], + [53067,0.357], + [53069,0.194], + [53071,0.298], + [53073,0.343], + [53075,0.498], + [53077,0.167], + [54001,0.156], + [54003,0.212], + [54005,0.097], + [54007,0.149], + [54009,0.19], + [54011,0.26], + [54013,0.122], + [54015,0.092], + [54017,0.171], + [54019,0.148], + [54021,0.17], + [54023,0.138], + [54025,0.199], + [54027,0.124], + [54029,0.174], + [54031,0.145], + [54033,0.233], + [54035,0.174], + [54037,0.318], + [54039,0.255], + [54041,0.145], + [54043,0.09], + [54045,0.1], + [54047,0.054], + [54049,0.226], + [54051,0.18], + [54053,0.144], + [54055,0.194], + [54057,0.155], + [54059,0.099], + [54061,0.428], + [54063,0.153], + [54065,0.17], + [54067,0.156], + [54069,0.32], + [54071,0.141], + [54073,0.116], + [54075,0.148], + [54077,0.169], + [54079,0.261], + [54081,0.184], + [54083,0.173], + [54085,0.113], + [54087,0.131], + [54089,0.145], + [54091,0.173], + [54093,0.194], + [54095,0.141], + [54097,0.169], + [54099,0.151], + [54101,0.114], + [54103,0.12], + [54105,0.112], + [54107,0.219], + [54109,0.093], + [55001,0.139], + [55003,0.198], + [55005,0.206], + [55007,0.311], + [55009,0.303], + [55011,0.193], + [55013,0.208], + [55015,0.294], + [55017,0.21], + [55019,0.126], + [55021,0.233], + [55023,0.184], + [55025,0.514], + [55027,0.17], + [55029,0.337], + [55031,0.241], + [55033,0.279], + [55035,0.323], + [55037,0.199], + [55039,0.231], + [55041,0.147], + [55043,0.238], + [55045,0.236], + [55047,0.202], + [55049,0.246], + [55051,0.2], + [55053,0.146], + [55055,0.254], + [55057,0.137], + [55059,0.261], + [55061,0.194], + [55063,0.349], + [55065,0.188], + [55067,0.167], + [55069,0.184], + [55071,0.202], + [55073,0.254], + [55075,0.159], + [55077,0.151], + [55078,0.179], + [55079,0.31], + [55081,0.206], + [55083,0.168], + [55085,0.272], + [55087,0.297], + [55089,0.49], + [55091,0.206], + [55093,0.292], + [55095,0.209], + [55097,0.329], + [55099,0.165], + [55101,0.252], + [55103,0.19], + [55105,0.221], + [55107,0.166], + [55109,0.354], + [55111,0.241], + [55113,0.242], + [55115,0.157], + [55117,0.251], + [55119,0.151], + [55121,0.193], + [55123,0.224], + [55125,0.291], + [55127,0.288], + [55129,0.23], + [55131,0.315], + [55133,0.445], + [55135,0.199], + [55137,0.163], + [55139,0.283], + [55141,0.216], + [56001,0.518], + [56003,0.19], + [56005,0.189], + [56007,0.206], + [56009,0.173], + [56011,0.223], + [56013,0.243], + [56015,0.259], + [56017,0.237], + [56019,0.317], + [56021,0.285], + [56023,0.237], + [56025,0.228], + [56027,0.18], + [56029,0.34], + [56031,0.207], + [56033,0.31], + [56035,0.228], + [56037,0.225], + [56039,0.57], + [56041,0.16], + [56043,0.234], + [56045,0.2] + ] +} diff --git a/data/regional/united-states/education/us-education-highschoolgrad-2010.json b/data/regional/united-states/education/us-education-highschoolgrad-2010.json new file mode 100644 index 0000000..b401da0 --- /dev/null +++ b/data/regional/united-states/education/us-education-highschoolgrad-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Highschool Graduates", + "description" : "Percent of the population that graduated highschool.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","highschool"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.highschoolgrad.2010"], + [1001,0.853], + [1003,0.876], + [1005,0.719], + [1007,0.745], + [1009,0.747], + [1011,0.747], + [1013,0.748], + [1015,0.785], + [1017,0.718], + [1019,0.734], + [1021,0.759], + [1023,0.711], + [1025,0.761], + [1027,0.714], + [1029,0.703], + [1031,0.793], + [1033,0.801], + [1035,0.713], + [1037,0.731], + [1039,0.765], + [1041,0.737], + [1043,0.769], + [1045,0.822], + [1047,0.768], + [1049,0.681], + [1051,0.838], + [1053,0.73], + [1055,0.812], + [1057,0.747], + [1059,0.696], + [1061,0.723], + [1063,0.726], + [1065,0.699], + [1067,0.761], + [1069,0.819], + [1071,0.74], + [1073,0.866], + [1075,0.753], + [1077,0.829], + [1079,0.752], + [1081,0.852], + [1083,0.804], + [1085,0.734], + [1087,0.788], + [1089,0.878], + [1091,0.797], + [1093,0.71], + [1095,0.737], + [1097,0.823], + [1099,0.754], + [1101,0.847], + [1103,0.808], + [1105,0.715], + [1107,0.787], + [1109,0.794], + [1111,0.716], + [1113,0.769], + [1115,0.793], + [1117,0.915], + [1119,0.754], + [1121,0.757], + [1123,0.761], + [1125,0.847], + [1127,0.755], + [1129,0.78], + [1131,0.685], + [1133,0.693], + [2013,0.641], + [2016,0.704], + [2020,0.919], + [2050,0.784], + [2060,0.906], + [2068,0.957], + [2070,0.826], + [2090,0.929], + [2100,0.94], + [2105,0.876], + [2110,0.953], + [2122,0.921], + [2130,0.925], + [2150,0.877], + [2158,0.736], + [2164,0.78], + [2170,0.918], + [2180,0.838], + [2185,0.738], + [2188,0.796], + [2195,0.955], + [2198,0.884], + [2220,0.923], + [2230,0.953], + [2240,0.911], + [2261,0.926], + [2275,0.896], + [2282,0.905], + [2290,0.795], + [4001,0.721], + [4003,0.848], + [4005,0.87], + [4007,0.834], + [4009,0.818], + [4011,0.898], + [4012,0.769], + [4013,0.856], + [4015,0.83], + [4017,0.805], + [4019,0.868], + [4021,0.837], + [4023,0.709], + [4025,0.894], + [4027,0.716], + [5001,0.794], + [5003,0.811], + [5005,0.837], + [5007,0.842], + [5009,0.838], + [5011,0.694], + [5013,0.778], + [5015,0.79], + [5017,0.693], + [5019,0.831], + [5021,0.731], + [5023,0.791], + [5025,0.859], + [5027,0.837], + [5029,0.827], + [5031,0.833], + [5033,0.774], + [5035,0.763], + [5037,0.761], + [5039,0.803], + [5041,0.725], + [5043,0.806], + [5045,0.874], + [5047,0.826], + [5049,0.794], + [5051,0.85], + [5053,0.848], + [5055,0.809], + [5057,0.807], + [5059,0.813], + [5061,0.781], + [5063,0.824], + [5065,0.816], + [5067,0.723], + [5069,0.816], + [5071,0.764], + [5073,0.779], + [5075,0.748], + [5077,0.693], + [5079,0.732], + [5081,0.812], + [5083,0.767], + [5085,0.858], + [5087,0.758], + [5089,0.851], + [5091,0.83], + [5093,0.756], + [5095,0.686], + [5097,0.822], + [5099,0.783], + [5101,0.78], + [5103,0.818], + [5105,0.816], + [5107,0.709], + [5109,0.772], + [5111,0.728], + [5113,0.804], + [5115,0.819], + [5117,0.78], + [5119,0.882], + [5121,0.778], + [5123,0.733], + [5125,0.876], + [5127,0.737], + [5129,0.727], + [5131,0.81], + [5133,0.688], + [5135,0.804], + [5137,0.758], + [5139,0.813], + [5141,0.81], + [5143,0.817], + [5145,0.818], + [5147,0.731], + [5149,0.702], + [6001,0.859], + [6003,0.921], + [6005,0.874], + [6007,0.857], + [6009,0.907], + [6011,0.705], + [6013,0.884], + [6015,0.813], + [6017,0.927], + [6019,0.731], + [6021,0.739], + [6023,0.904], + [6025,0.623], + [6027,0.886], + [6029,0.711], + [6031,0.699], + [6033,0.863], + [6035,0.798], + [6037,0.759], + [6039,0.679], + [6041,0.918], + [6043,0.9], + [6045,0.832], + [6047,0.67], + [6049,0.843], + [6051,0.874], + [6053,0.707], + [6055,0.822], + [6057,0.941], + [6059,0.833], + [6061,0.93], + [6063,0.922], + [6065,0.792], + [6067,0.851], + [6069,0.738], + [6071,0.775], + [6073,0.853], + [6075,0.857], + [6077,0.767], + [6079,0.882], + [6081,0.885], + [6083,0.801], + [6085,0.863], + [6087,0.841], + [6089,0.881], + [6091,0.883], + [6093,0.884], + [6095,0.858], + [6097,0.862], + [6099,0.753], + [6101,0.784], + [6103,0.803], + [6105,0.901], + [6107,0.673], + [6109,0.873], + [6111,0.823], + [6113,0.843], + [6115,0.769], + [8001,0.81], + [8003,0.864], + [8005,0.904], + [8007,0.932], + [8009,0.85], + [8011,0.804], + [8013,0.937], + [8014,0.953], + [8015,0.908], + [8017,0.879], + [8019,0.969], + [8021,0.814], + [8023,0.739], + [8025,0.724], + [8027,0.937], + [8029,0.86], + [8031,0.84], + [8033,0.86], + [8035,0.976], + [8037,0.872], + [8039,0.961], + [8041,0.925], + [8043,0.792], + [8045,0.856], + [8047,0.948], + [8049,0.948], + [8051,0.931], + [8053,0.908], + [8055,0.851], + [8057,0.914], + [8059,0.929], + [8061,0.91], + [8063,0.845], + [8065,0.794], + [8067,0.936], + [8069,0.937], + [8071,0.838], + [8073,0.845], + [8075,0.867], + [8077,0.891], + [8079,0.974], + [8081,0.884], + [8083,0.884], + [8085,0.854], + [8087,0.777], + [8089,0.798], + [8091,0.952], + [8093,0.935], + [8095,0.853], + [8097,0.961], + [8099,0.805], + [8101,0.857], + [8103,0.918], + [8105,0.839], + [8107,0.968], + [8109,0.761], + [8111,0.934], + [8113,0.947], + [8115,0.826], + [8117,0.946], + [8119,0.941], + [8121,0.854], + [8123,0.847], + [8125,0.836], + [9001,0.883], + [9003,0.871], + [9005,0.912], + [9007,0.92], + [9009,0.877], + [9011,0.898], + [9013,0.922], + [9015,0.845], + [10001,0.849], + [10003,0.884], + [10005,0.852], + [11001,0.865], + [12001,0.897], + [12003,0.784], + [12005,0.863], + [12007,0.764], + [12009,0.906], + [12011,0.871], + [12013,0.741], + [12015,0.883], + [12017,0.85], + [12019,0.903], + [12021,0.848], + [12023,0.82], + [12027,0.675], + [12029,0.726], + [12031,0.872], + [12033,0.867], + [12035,0.902], + [12037,0.783], + [12039,0.757], + [12041,0.811], + [12043,0.713], + [12045,0.777], + [12047,0.739], + [12049,0.599], + [12051,0.62], + [12053,0.856], + [12055,0.788], + [12057,0.858], + [12059,0.741], + [12061,0.863], + [12063,0.774], + [12065,0.799], + [12067,0.813], + [12069,0.869], + [12071,0.867], + [12073,0.906], + [12075,0.803], + [12077,0.749], + [12079,0.748], + [12081,0.869], + [12083,0.845], + [12085,0.886], + [12086,0.77], + [12087,0.898], + [12089,0.865], + [12091,0.907], + [12093,0.716], + [12095,0.869], + [12097,0.844], + [12099,0.868], + [12101,0.861], + [12103,0.881], + [12105,0.819], + [12107,0.78], + [12109,0.928], + [12111,0.834], + [12113,0.884], + [12115,0.906], + [12117,0.907], + [12119,0.845], + [12121,0.799], + [12123,0.787], + [12125,0.771], + [12127,0.873], + [12129,0.845], + [12131,0.843], + [12133,0.787], + [13001,0.751], + [13003,0.667], + [13005,0.726], + [13007,0.751], + [13009,0.78], + [13011,0.73], + [13013,0.789], + [13015,0.783], + [13017,0.699], + [13019,0.689], + [13021,0.812], + [13023,0.732], + [13025,0.757], + [13027,0.782], + [13029,0.884], + [13031,0.852], + [13033,0.751], + [13035,0.765], + [13037,0.683], + [13039,0.891], + [13043,0.775], + [13045,0.788], + [13047,0.821], + [13049,0.726], + [13051,0.874], + [13053,0.932], + [13055,0.684], + [13057,0.889], + [13059,0.843], + [13061,0.781], + [13063,0.826], + [13065,0.729], + [13067,0.902], + [13069,0.739], + [13071,0.718], + [13073,0.899], + [13075,0.722], + [13077,0.872], + [13079,0.787], + [13081,0.734], + [13083,0.791], + [13085,0.846], + [13087,0.756], + [13089,0.879], + [13091,0.769], + [13093,0.697], + [13095,0.807], + [13097,0.864], + [13099,0.771], + [13101,0.678], + [13103,0.843], + [13105,0.73], + [13107,0.724], + [13109,0.733], + [13111,0.779], + [13113,0.936], + [13115,0.759], + [13117,0.906], + [13119,0.743], + [13121,0.896], + [13123,0.754], + [13125,0.725], + [13127,0.861], + [13129,0.733], + [13131,0.741], + [13133,0.753], + [13135,0.873], + [13137,0.75], + [13139,0.765], + [13141,0.661], + [13143,0.696], + [13145,0.885], + [13147,0.753], + [13149,0.718], + [13151,0.892], + [13153,0.873], + [13155,0.703], + [13157,0.789], + [13159,0.783], + [13161,0.752], + [13163,0.726], + [13165,0.706], + [13167,0.655], + [13169,0.854], + [13171,0.762], + [13173,0.768], + [13175,0.796], + [13177,0.834], + [13179,0.887], + [13181,0.774], + [13183,0.787], + [13185,0.829], + [13187,0.809], + [13189,0.701], + [13191,0.751], + [13193,0.675], + [13195,0.729], + [13197,0.802], + [13199,0.728], + [13201,0.734], + [13205,0.66], + [13207,0.807], + [13209,0.813], + [13211,0.789], + [13213,0.662], + [13215,0.838], + [13217,0.834], + [13219,0.887], + [13221,0.757], + [13223,0.859], + [13225,0.801], + [13227,0.793], + [13229,0.774], + [13231,0.83], + [13233,0.716], + [13235,0.772], + [13237,0.804], + [13239,0.665], + [13241,0.805], + [13243,0.704], + [13245,0.823], + [13247,0.848], + [13249,0.714], + [13251,0.747], + [13253,0.77], + [13255,0.748], + [13257,0.748], + [13259,0.704], + [13261,0.754], + [13263,0.787], + [13265,0.584], + [13267,0.74], + [13269,0.635], + [13271,0.689], + [13273,0.658], + [13275,0.814], + [13277,0.759], + [13279,0.801], + [13281,0.865], + [13283,0.73], + [13285,0.793], + [13287,0.685], + [13289,0.614], + [13291,0.829], + [13293,0.761], + [13295,0.762], + [13297,0.804], + [13299,0.796], + [13301,0.696], + [13303,0.748], + [13305,0.779], + [13307,0.781], + [13309,0.697], + [13311,0.833], + [13313,0.674], + [13315,0.73], + [13317,0.718], + [13319,0.792], + [13321,0.736], + [15001,0.905], + [15003,0.899], + [15005,0.797], + [15007,0.883], + [15009,0.887], + [16001,0.929], + [16003,0.884], + [16005,0.905], + [16007,0.904], + [16009,0.872], + [16011,0.846], + [16013,0.92], + [16015,0.872], + [16017,0.91], + [16019,0.906], + [16021,0.829], + [16023,0.886], + [16025,0.819], + [16027,0.82], + [16029,0.88], + [16031,0.788], + [16033,0.689], + [16035,0.847], + [16037,0.929], + [16039,0.845], + [16041,0.917], + [16043,0.85], + [16045,0.835], + [16047,0.762], + [16049,0.857], + [16051,0.858], + [16053,0.716], + [16055,0.914], + [16057,0.935], + [16059,0.919], + [16061,0.902], + [16063,0.766], + [16065,0.952], + [16067,0.749], + [16069,0.897], + [16071,0.923], + [16073,0.751], + [16075,0.837], + [16077,0.821], + [16079,0.821], + [16081,0.89], + [16083,0.833], + [16085,0.933], + [16087,0.8], + [17001,0.892], + [17003,0.76], + [17005,0.88], + [17007,0.854], + [17009,0.756], + [17011,0.892], + [17013,0.843], + [17015,0.869], + [17017,0.806], + [17019,0.923], + [17021,0.858], + [17023,0.88], + [17025,0.862], + [17027,0.858], + [17029,0.893], + [17031,0.832], + [17033,0.865], + [17035,0.881], + [17037,0.907], + [17039,0.903], + [17041,0.817], + [17043,0.92], + [17045,0.884], + [17047,0.89], + [17049,0.894], + [17051,0.829], + [17053,0.873], + [17055,0.838], + [17057,0.836], + [17059,0.777], + [17061,0.852], + [17063,0.907], + [17065,0.808], + [17067,0.901], + [17069,0.77], + [17071,0.872], + [17073,0.879], + [17075,0.872], + [17077,0.895], + [17079,0.882], + [17081,0.837], + [17083,0.871], + [17085,0.891], + [17087,0.78], + [17089,0.832], + [17091,0.852], + [17093,0.92], + [17095,0.852], + [17097,0.885], + [17099,0.878], + [17101,0.811], + [17103,0.857], + [17105,0.841], + [17107,0.854], + [17109,0.912], + [17111,0.917], + [17113,0.934], + [17115,0.869], + [17117,0.868], + [17119,0.894], + [17121,0.841], + [17123,0.902], + [17125,0.833], + [17127,0.85], + [17129,0.903], + [17131,0.887], + [17133,0.91], + [17135,0.835], + [17137,0.865], + [17139,0.838], + [17141,0.874], + [17143,0.887], + [17145,0.815], + [17147,0.898], + [17149,0.86], + [17151,0.851], + [17153,0.789], + [17155,0.887], + [17157,0.785], + [17159,0.891], + [17161,0.867], + [17163,0.874], + [17165,0.821], + [17167,0.91], + [17169,0.892], + [17171,0.883], + [17173,0.877], + [17175,0.88], + [17177,0.885], + [17179,0.902], + [17181,0.791], + [17183,0.849], + [17185,0.864], + [17187,0.855], + [17189,0.862], + [17191,0.843], + [17193,0.845], + [17195,0.855], + [17197,0.9], + [17199,0.882], + [17201,0.844], + [17203,0.924], + [18001,0.828], + [18003,0.885], + [18005,0.892], + [18007,0.897], + [18009,0.847], + [18011,0.928], + [18013,0.875], + [18015,0.886], + [18017,0.82], + [18019,0.854], + [18021,0.879], + [18023,0.814], + [18025,0.823], + [18027,0.745], + [18029,0.885], + [18031,0.846], + [18033,0.882], + [18035,0.845], + [18037,0.846], + [18039,0.8], + [18041,0.769], + [18043,0.873], + [18045,0.832], + [18047,0.854], + [18049,0.857], + [18051,0.886], + [18053,0.833], + [18055,0.832], + [18057,0.961], + [18059,0.907], + [18061,0.884], + [18063,0.934], + [18065,0.835], + [18067,0.863], + [18069,0.878], + [18071,0.842], + [18073,0.876], + [18075,0.843], + [18077,0.838], + [18079,0.813], + [18081,0.903], + [18083,0.853], + [18085,0.847], + [18087,0.597], + [18089,0.861], + [18091,0.854], + [18093,0.81], + [18095,0.864], + [18097,0.84], + [18099,0.833], + [18101,0.812], + [18103,0.819], + [18105,0.911], + [18107,0.868], + [18109,0.85], + [18111,0.858], + [18113,0.812], + [18115,0.812], + [18117,0.787], + [18119,0.819], + [18121,0.809], + [18123,0.825], + [18125,0.839], + [18127,0.913], + [18129,0.89], + [18131,0.859], + [18133,0.851], + [18135,0.847], + [18137,0.848], + [18139,0.848], + [18141,0.864], + [18143,0.743], + [18145,0.859], + [18147,0.857], + [18149,0.791], + [18151,0.894], + [18153,0.861], + [18155,0.781], + [18157,0.905], + [18159,0.875], + [18161,0.848], + [18163,0.871], + [18165,0.854], + [18167,0.848], + [18169,0.854], + [18171,0.832], + [18173,0.913], + [18175,0.796], + [18177,0.826], + [18179,0.894], + [18181,0.868], + [18183,0.902], + [19001,0.914], + [19003,0.89], + [19005,0.869], + [19007,0.871], + [19009,0.866], + [19011,0.926], + [19013,0.888], + [19015,0.921], + [19017,0.936], + [19019,0.905], + [19021,0.795], + [19023,0.88], + [19025,0.907], + [19027,0.896], + [19029,0.911], + [19031,0.92], + [19033,0.919], + [19035,0.926], + [19037,0.882], + [19039,0.848], + [19041,0.913], + [19043,0.902], + [19045,0.893], + [19047,0.79], + [19049,0.927], + [19051,0.818], + [19053,0.83], + [19055,0.913], + [19057,0.897], + [19059,0.933], + [19061,0.894], + [19063,0.869], + [19065,0.882], + [19067,0.916], + [19069,0.843], + [19071,0.911], + [19073,0.884], + [19075,0.912], + [19077,0.912], + [19079,0.903], + [19081,0.895], + [19083,0.905], + [19085,0.904], + [19087,0.892], + [19089,0.868], + [19091,0.888], + [19093,0.901], + [19095,0.919], + [19097,0.874], + [19099,0.9], + [19101,0.915], + [19103,0.95], + [19105,0.894], + [19107,0.897], + [19109,0.9], + [19111,0.863], + [19113,0.932], + [19115,0.815], + [19117,0.874], + [19119,0.859], + [19121,0.93], + [19123,0.88], + [19125,0.914], + [19127,0.857], + [19129,0.867], + [19131,0.896], + [19133,0.876], + [19135,0.883], + [19137,0.877], + [19139,0.843], + [19141,0.888], + [19143,0.865], + [19145,0.875], + [19147,0.872], + [19149,0.912], + [19151,0.917], + [19153,0.909], + [19155,0.885], + [19157,0.921], + [19159,0.903], + [19161,0.893], + [19163,0.905], + [19165,0.906], + [19167,0.865], + [19169,0.953], + [19171,0.881], + [19173,0.873], + [19175,0.894], + [19177,0.861], + [19179,0.837], + [19181,0.946], + [19183,0.891], + [19185,0.844], + [19187,0.883], + [19189,0.899], + [19191,0.912], + [19193,0.854], + [19195,0.898], + [19197,0.887], + [20001,0.893], + [20003,0.873], + [20005,0.878], + [20007,0.918], + [20009,0.856], + [20011,0.865], + [20013,0.883], + [20015,0.919], + [20017,0.904], + [20019,0.87], + [20021,0.866], + [20023,0.865], + [20025,0.917], + [20027,0.912], + [20029,0.891], + [20031,0.915], + [20033,0.927], + [20035,0.865], + [20037,0.882], + [20039,0.911], + [20041,0.902], + [20043,0.869], + [20045,0.951], + [20047,0.829], + [20049,0.878], + [20051,0.917], + [20053,0.906], + [20055,0.698], + [20057,0.695], + [20059,0.901], + [20061,0.911], + [20063,0.91], + [20065,0.916], + [20067,0.776], + [20069,0.747], + [20071,0.9], + [20073,0.905], + [20075,0.809], + [20077,0.86], + [20079,0.904], + [20081,0.772], + [20083,0.911], + [20085,0.922], + [20087,0.918], + [20089,0.907], + [20091,0.956], + [20093,0.759], + [20095,0.887], + [20097,0.897], + [20099,0.862], + [20101,0.878], + [20103,0.914], + [20105,0.885], + [20107,0.868], + [20109,0.914], + [20111,0.836], + [20113,0.881], + [20115,0.898], + [20117,0.887], + [20119,0.859], + [20121,0.924], + [20123,0.919], + [20125,0.864], + [20127,0.901], + [20129,0.89], + [20131,0.89], + [20133,0.871], + [20135,0.908], + [20137,0.896], + [20139,0.911], + [20141,0.873], + [20143,0.907], + [20145,0.88], + [20147,0.897], + [20149,0.927], + [20151,0.895], + [20153,0.917], + [20155,0.877], + [20157,0.95], + [20159,0.88], + [20161,0.942], + [20163,0.904], + [20165,0.873], + [20167,0.901], + [20169,0.883], + [20171,0.894], + [20173,0.877], + [20175,0.676], + [20177,0.9], + [20179,0.926], + [20181,0.901], + [20183,0.88], + [20185,0.877], + [20187,0.705], + [20189,0.79], + [20191,0.907], + [20193,0.868], + [20195,0.887], + [20197,0.942], + [20199,0.87], + [20201,0.87], + [20203,0.807], + [20205,0.823], + [20207,0.903], + [20209,0.786], + [21001,0.687], + [21003,0.736], + [21005,0.872], + [21007,0.812], + [21009,0.77], + [21011,0.722], + [21013,0.66], + [21015,0.905], + [21017,0.819], + [21019,0.839], + [21021,0.826], + [21023,0.74], + [21025,0.626], + [21027,0.761], + [21029,0.832], + [21031,0.726], + [21033,0.824], + [21035,0.854], + [21037,0.869], + [21039,0.789], + [21041,0.75], + [21043,0.725], + [21045,0.664], + [21047,0.84], + [21049,0.814], + [21051,0.589], + [21053,0.575], + [21055,0.753], + [21057,0.705], + [21059,0.867], + [21061,0.763], + [21063,0.696], + [21065,0.67], + [21067,0.883], + [21069,0.747], + [21071,0.689], + [21073,0.855], + [21075,0.776], + [21077,0.713], + [21079,0.788], + [21081,0.794], + [21083,0.793], + [21085,0.722], + [21087,0.734], + [21089,0.801], + [21091,0.841], + [21093,0.874], + [21095,0.684], + [21097,0.792], + [21099,0.677], + [21101,0.835], + [21103,0.8], + [21105,0.758], + [21107,0.778], + [21109,0.618], + [21111,0.869], + [21113,0.852], + [21115,0.678], + [21117,0.87], + [21119,0.671], + [21121,0.628], + [21123,0.768], + [21125,0.742], + [21127,0.7], + [21129,0.653], + [21131,0.568], + [21133,0.71], + [21135,0.662], + [21137,0.725], + [21139,0.791], + [21141,0.742], + [21143,0.812], + [21145,0.852], + [21147,0.647], + [21149,0.773], + [21151,0.838], + [21153,0.655], + [21155,0.784], + [21157,0.832], + [21159,0.646], + [21161,0.779], + [21163,0.85], + [21165,0.688], + [21167,0.823], + [21169,0.676], + [21171,0.746], + [21173,0.757], + [21175,0.688], + [21177,0.765], + [21179,0.838], + [21181,0.757], + [21183,0.738], + [21185,0.896], + [21187,0.813], + [21189,0.577], + [21191,0.779], + [21193,0.687], + [21195,0.712], + [21197,0.708], + [21199,0.761], + [21201,0.696], + [21203,0.685], + [21205,0.765], + [21207,0.723], + [21209,0.865], + [21211,0.831], + [21213,0.811], + [21215,0.837], + [21217,0.737], + [21219,0.728], + [21221,0.826], + [21223,0.79], + [21225,0.825], + [21227,0.847], + [21229,0.806], + [21231,0.672], + [21233,0.744], + [21235,0.702], + [21237,0.572], + [21239,0.884], + [22001,0.695], + [22003,0.718], + [22005,0.866], + [22007,0.692], + [22009,0.681], + [22011,0.835], + [22013,0.792], + [22015,0.867], + [22017,0.843], + [22019,0.816], + [22021,0.762], + [22023,0.816], + [22025,0.679], + [22027,0.747], + [22029,0.699], + [22031,0.792], + [22033,0.873], + [22035,0.622], + [22037,0.783], + [22039,0.662], + [22041,0.695], + [22043,0.798], + [22045,0.748], + [22047,0.727], + [22049,0.823], + [22051,0.824], + [22053,0.755], + [22055,0.842], + [22057,0.721], + [22059,0.77], + [22061,0.845], + [22063,0.835], + [22065,0.728], + [22067,0.732], + [22069,0.787], + [22071,0.834], + [22073,0.841], + [22075,0.803], + [22077,0.756], + [22079,0.821], + [22081,0.745], + [22083,0.738], + [22085,0.796], + [22087,0.793], + [22089,0.845], + [22091,0.766], + [22093,0.822], + [22095,0.815], + [22097,0.73], + [22099,0.741], + [22101,0.699], + [22103,0.88], + [22105,0.791], + [22107,0.714], + [22109,0.73], + [22111,0.803], + [22113,0.76], + [22115,0.845], + [22117,0.775], + [22119,0.755], + [22121,0.809], + [22123,0.707], + [22125,0.651], + [22127,0.726], + [23001,0.864], + [23003,0.839], + [23005,0.933], + [23007,0.877], + [23009,0.91], + [23011,0.903], + [23013,0.897], + [23015,0.924], + [23017,0.875], + [23019,0.895], + [23021,0.883], + [23023,0.918], + [23025,0.866], + [23027,0.9], + [23029,0.852], + [23031,0.901], + [24001,0.851], + [24003,0.9], + [24005,0.888], + [24009,0.919], + [24011,0.816], + [24013,0.895], + [24015,0.867], + [24017,0.904], + [24019,0.81], + [24021,0.914], + [24023,0.843], + [24025,0.91], + [24027,0.946], + [24029,0.86], + [24031,0.91], + [24033,0.858], + [24035,0.897], + [24037,0.89], + [24039,0.809], + [24041,0.88], + [24043,0.834], + [24045,0.843], + [24047,0.884], + [24510,0.774], + [25001,0.947], + [25003,0.902], + [25005,0.801], + [25007,0.935], + [25009,0.882], + [25011,0.911], + [25013,0.832], + [25015,0.924], + [25017,0.916], + [25019,0.934], + [25021,0.931], + [25023,0.918], + [25025,0.831], + [25027,0.886], + [26001,0.843], + [26003,0.862], + [26005,0.889], + [26007,0.876], + [26009,0.895], + [26011,0.814], + [26013,0.822], + [26015,0.905], + [26017,0.874], + [26019,0.899], + [26021,0.866], + [26023,0.866], + [26025,0.871], + [26027,0.852], + [26029,0.911], + [26031,0.882], + [26033,0.88], + [26035,0.826], + [26037,0.93], + [26039,0.843], + [26041,0.906], + [26043,0.922], + [26045,0.924], + [26047,0.928], + [26049,0.881], + [26051,0.842], + [26053,0.902], + [26055,0.928], + [26057,0.87], + [26059,0.866], + [26061,0.899], + [26063,0.846], + [26065,0.907], + [26067,0.867], + [26069,0.844], + [26071,0.883], + [26073,0.892], + [26075,0.88], + [26077,0.917], + [26079,0.848], + [26081,0.883], + [26083,0.908], + [26085,0.797], + [26087,0.891], + [26089,0.927], + [26091,0.879], + [26093,0.936], + [26095,0.826], + [26097,0.891], + [26099,0.876], + [26101,0.869], + [26103,0.917], + [26105,0.881], + [26107,0.877], + [26109,0.893], + [26111,0.914], + [26113,0.856], + [26115,0.877], + [26117,0.85], + [26119,0.839], + [26121,0.877], + [26123,0.852], + [26125,0.922], + [26127,0.827], + [26129,0.813], + [26131,0.903], + [26133,0.852], + [26135,0.806], + [26137,0.892], + [26139,0.905], + [26141,0.853], + [26143,0.837], + [26145,0.866], + [26147,0.878], + [26149,0.842], + [26151,0.852], + [26153,0.865], + [26155,0.893], + [26157,0.848], + [26159,0.848], + [26161,0.936], + [26163,0.832], + [26165,0.874], + [27001,0.881], + [27003,0.928], + [27005,0.9], + [27007,0.89], + [27009,0.902], + [27011,0.882], + [27013,0.93], + [27015,0.884], + [27017,0.903], + [27019,0.948], + [27021,0.896], + [27023,0.871], + [27025,0.91], + [27027,0.924], + [27029,0.844], + [27031,0.93], + [27033,0.849], + [27035,0.913], + [27037,0.944], + [27039,0.9], + [27041,0.912], + [27043,0.89], + [27045,0.867], + [27047,0.858], + [27049,0.902], + [27051,0.858], + [27053,0.921], + [27055,0.911], + [27057,0.911], + [27059,0.908], + [27061,0.923], + [27063,0.905], + [27065,0.871], + [27067,0.881], + [27069,0.886], + [27071,0.89], + [27073,0.884], + [27075,0.935], + [27077,0.896], + [27079,0.89], + [27081,0.898], + [27083,0.882], + [27085,0.894], + [27087,0.836], + [27089,0.854], + [27091,0.869], + [27093,0.887], + [27095,0.877], + [27097,0.866], + [27099,0.848], + [27101,0.878], + [27103,0.921], + [27105,0.785], + [27107,0.876], + [27109,0.943], + [27111,0.882], + [27113,0.875], + [27115,0.859], + [27117,0.857], + [27119,0.868], + [27121,0.898], + [27123,0.899], + [27125,0.867], + [27127,0.866], + [27129,0.859], + [27131,0.902], + [27133,0.89], + [27135,0.875], + [27137,0.921], + [27139,0.939], + [27141,0.93], + [27143,0.865], + [27145,0.899], + [27147,0.894], + [27149,0.897], + [27151,0.87], + [27153,0.858], + [27155,0.881], + [27157,0.902], + [27159,0.877], + [27161,0.905], + [27163,0.957], + [27165,0.796], + [27167,0.88], + [27169,0.888], + [27171,0.93], + [27173,0.901], + [28001,0.796], + [28003,0.771], + [28005,0.74], + [28007,0.719], + [28009,0.691], + [28011,0.715], + [28013,0.674], + [28015,0.763], + [28017,0.718], + [28019,0.807], + [28021,0.836], + [28023,0.751], + [28025,0.784], + [28027,0.742], + [28029,0.765], + [28031,0.788], + [28033,0.874], + [28035,0.842], + [28037,0.784], + [28039,0.836], + [28041,0.733], + [28043,0.739], + [28045,0.832], + [28047,0.835], + [28049,0.836], + [28051,0.673], + [28053,0.629], + [28055,0.597], + [28057,0.714], + [28059,0.846], + [28061,0.769], + [28063,0.766], + [28065,0.733], + [28067,0.771], + [28069,0.675], + [28071,0.854], + [28073,0.869], + [28075,0.816], + [28077,0.795], + [28079,0.739], + [28081,0.81], + [28083,0.688], + [28085,0.815], + [28087,0.805], + [28089,0.879], + [28091,0.743], + [28093,0.693], + [28095,0.752], + [28097,0.746], + [28099,0.738], + [28101,0.813], + [28103,0.66], + [28105,0.845], + [28107,0.724], + [28109,0.804], + [28111,0.792], + [28113,0.775], + [28115,0.76], + [28117,0.732], + [28119,0.636], + [28121,0.874], + [28123,0.708], + [28125,0.706], + [28127,0.76], + [28129,0.773], + [28131,0.79], + [28133,0.698], + [28135,0.655], + [28137,0.797], + [28139,0.726], + [28141,0.757], + [28143,0.724], + [28145,0.747], + [28147,0.733], + [28149,0.829], + [28151,0.725], + [28153,0.728], + [28155,0.764], + [28157,0.689], + [28159,0.783], + [28161,0.754], + [28163,0.736], + [29001,0.881], + [29003,0.896], + [29005,0.859], + [29007,0.812], + [29009,0.797], + [29011,0.848], + [29013,0.831], + [29015,0.805], + [29017,0.751], + [29019,0.919], + [29021,0.862], + [29023,0.762], + [29025,0.858], + [29027,0.851], + [29029,0.902], + [29031,0.858], + [29033,0.841], + [29035,0.757], + [29037,0.916], + [29039,0.831], + [29041,0.847], + [29043,0.917], + [29045,0.843], + [29047,0.914], + [29049,0.902], + [29051,0.889], + [29053,0.827], + [29055,0.777], + [29057,0.82], + [29059,0.795], + [29061,0.84], + [29063,0.826], + [29065,0.76], + [29067,0.793], + [29069,0.675], + [29071,0.85], + [29073,0.819], + [29075,0.825], + [29077,0.886], + [29079,0.837], + [29081,0.846], + [29083,0.837], + [29085,0.789], + [29087,0.887], + [29089,0.856], + [29091,0.824], + [29093,0.752], + [29095,0.873], + [29097,0.813], + [29099,0.855], + [29101,0.907], + [29103,0.863], + [29105,0.811], + [29107,0.85], + [29109,0.805], + [29111,0.844], + [29113,0.831], + [29115,0.879], + [29117,0.851], + [29119,0.766], + [29121,0.821], + [29123,0.756], + [29125,0.796], + [29127,0.839], + [29129,0.873], + [29131,0.826], + [29133,0.662], + [29135,0.804], + [29137,0.846], + [29139,0.783], + [29141,0.787], + [29143,0.732], + [29145,0.849], + [29147,0.884], + [29149,0.768], + [29151,0.86], + [29153,0.787], + [29155,0.701], + [29157,0.805], + [29159,0.813], + [29161,0.859], + [29163,0.795], + [29165,0.941], + [29167,0.795], + [29169,0.881], + [29171,0.858], + [29173,0.845], + [29175,0.822], + [29177,0.861], + [29179,0.728], + [29181,0.706], + [29183,0.922], + [29185,0.829], + [29186,0.811], + [29187,0.792], + [29189,0.907], + [29195,0.798], + [29197,0.87], + [29199,0.815], + [29201,0.758], + [29203,0.764], + [29205,0.886], + [29207,0.75], + [29209,0.834], + [29211,0.809], + [29213,0.866], + [29215,0.794], + [29217,0.841], + [29219,0.83], + [29221,0.703], + [29223,0.729], + [29225,0.822], + [29227,0.855], + [29229,0.763], + [29510,0.806], + [30001,0.918], + [30003,0.836], + [30005,0.854], + [30007,0.898], + [30009,0.913], + [30011,0.911], + [30013,0.908], + [30015,0.902], + [30017,0.912], + [30019,0.946], + [30021,0.896], + [30023,0.851], + [30025,0.881], + [30027,0.891], + [30029,0.921], + [30031,0.96], + [30033,0.911], + [30035,0.788], + [30037,0.867], + [30039,0.908], + [30041,0.914], + [30043,0.922], + [30045,0.913], + [30047,0.893], + [30049,0.944], + [30051,0.73], + [30053,0.857], + [30055,0.91], + [30057,0.946], + [30059,0.823], + [30061,0.83], + [30063,0.926], + [30065,0.863], + [30067,0.894], + [30069,0.922], + [30071,0.882], + [30073,0.866], + [30075,0.919], + [30077,0.89], + [30079,0.853], + [30081,0.907], + [30083,0.849], + [30085,0.891], + [30087,0.885], + [30089,0.866], + [30091,0.853], + [30093,0.912], + [30095,0.92], + [30097,0.928], + [30099,0.856], + [30101,0.874], + [30103,0.872], + [30105,0.873], + [30107,0.818], + [30109,0.751], + [30111,0.914], + [31001,0.891], + [31003,0.898], + [31005,0.93], + [31007,0.941], + [31009,0.957], + [31011,0.918], + [31013,0.891], + [31015,0.897], + [31017,0.883], + [31019,0.921], + [31021,0.904], + [31023,0.912], + [31025,0.938], + [31027,0.895], + [31029,0.892], + [31031,0.895], + [31033,0.935], + [31035,0.897], + [31037,0.732], + [31039,0.864], + [31041,0.907], + [31043,0.743], + [31045,0.914], + [31047,0.755], + [31049,0.904], + [31051,0.858], + [31053,0.848], + [31055,0.9], + [31057,0.917], + [31059,0.918], + [31061,0.882], + [31063,0.935], + [31065,0.865], + [31067,0.901], + [31069,0.888], + [31071,0.893], + [31073,0.944], + [31075,0.951], + [31077,0.903], + [31079,0.826], + [31081,0.943], + [31083,0.906], + [31085,0.865], + [31087,0.88], + [31089,0.882], + [31091,0.949], + [31093,0.909], + [31095,0.897], + [31097,0.823], + [31099,0.927], + [31101,0.88], + [31103,0.91], + [31105,0.876], + [31107,0.882], + [31109,0.931], + [31111,0.92], + [31113,0.97], + [31115,0.926], + [31117,0.867], + [31119,0.861], + [31121,0.903], + [31123,0.861], + [31125,0.852], + [31127,0.896], + [31129,0.905], + [31131,0.878], + [31133,0.88], + [31135,0.919], + [31137,0.923], + [31139,0.898], + [31141,0.897], + [31143,0.929], + [31145,0.917], + [31147,0.863], + [31149,0.921], + [31151,0.827], + [31153,0.946], + [31155,0.928], + [31157,0.861], + [31159,0.932], + [31161,0.903], + [31163,0.877], + [31165,0.943], + [31167,0.916], + [31169,0.88], + [31171,0.933], + [31173,0.846], + [31175,0.912], + [31177,0.936], + [31179,0.916], + [31181,0.869], + [31183,0.976], + [31185,0.906], + [32001,0.877], + [32003,0.835], + [32005,0.912], + [32007,0.845], + [32009,0.841], + [32011,0.882], + [32013,0.809], + [32015,0.75], + [32017,0.83], + [32019,0.858], + [32021,0.863], + [32023,0.817], + [32027,0.794], + [32029,0.918], + [32031,0.864], + [32033,0.838], + [32510,0.88], + [33001,0.895], + [33003,0.906], + [33005,0.898], + [33007,0.848], + [33009,0.909], + [33011,0.905], + [33013,0.913], + [33015,0.935], + [33017,0.895], + [33019,0.899], + [34001,0.847], + [34003,0.909], + [34005,0.909], + [34007,0.854], + [34009,0.882], + [34011,0.758], + [34013,0.82], + [34015,0.895], + [34017,0.803], + [34019,0.94], + [34021,0.865], + [34023,0.88], + [34025,0.912], + [34027,0.931], + [34029,0.891], + [34031,0.815], + [34033,0.856], + [34035,0.927], + [34037,0.93], + [34039,0.843], + [34041,0.893], + [35001,0.862], + [35003,0.86], + [35005,0.763], + [35006,0.764], + [35007,0.86], + [35009,0.815], + [35011,0.79], + [35013,0.755], + [35015,0.802], + [35017,0.853], + [35019,0.8], + [35021,0.898], + [35023,0.777], + [35025,0.727], + [35027,0.865], + [35028,0.993], + [35029,0.695], + [35031,0.696], + [35033,0.851], + [35035,0.85], + [35037,0.773], + [35039,0.786], + [35041,0.778], + [35043,0.903], + [35045,0.809], + [35047,0.819], + [35049,0.863], + [35051,0.839], + [35053,0.797], + [35055,0.883], + [35057,0.772], + [35059,0.841], + [35061,0.801], + [36001,0.907], + [36003,0.883], + [36005,0.688], + [36007,0.883], + [36009,0.874], + [36011,0.848], + [36013,0.862], + [36015,0.876], + [36017,0.85], + [36019,0.842], + [36021,0.87], + [36023,0.891], + [36025,0.87], + [36027,0.891], + [36029,0.884], + [36031,0.887], + [36033,0.833], + [36035,0.832], + [36037,0.904], + [36039,0.857], + [36041,0.886], + [36043,0.864], + [36045,0.878], + [36047,0.778], + [36049,0.86], + [36051,0.887], + [36053,0.885], + [36055,0.884], + [36057,0.827], + [36059,0.897], + [36061,0.846], + [36063,0.884], + [36065,0.86], + [36067,0.893], + [36069,0.915], + [36071,0.867], + [36073,0.842], + [36075,0.863], + [36077,0.883], + [36079,0.937], + [36081,0.8], + [36083,0.892], + [36085,0.875], + [36087,0.879], + [36089,0.858], + [36091,0.918], + [36093,0.9], + [36095,0.865], + [36097,0.874], + [36099,0.837], + [36101,0.875], + [36103,0.894], + [36105,0.839], + [36107,0.891], + [36109,0.924], + [36111,0.875], + [36113,0.896], + [36115,0.859], + [36117,0.867], + [36119,0.874], + [36121,0.855], + [36123,0.839], + [37001,0.814], + [37003,0.757], + [37005,0.714], + [37007,0.776], + [37009,0.768], + [37011,0.813], + [37013,0.815], + [37015,0.723], + [37017,0.74], + [37019,0.847], + [37021,0.872], + [37023,0.749], + [37025,0.85], + [37027,0.746], + [37029,0.884], + [37031,0.876], + [37033,0.75], + [37035,0.814], + [37037,0.838], + [37039,0.815], + [37041,0.774], + [37043,0.83], + [37045,0.795], + [37047,0.775], + [37049,0.875], + [37051,0.883], + [37053,0.847], + [37055,0.918], + [37057,0.791], + [37059,0.844], + [37061,0.697], + [37063,0.863], + [37065,0.767], + [37067,0.869], + [37069,0.801], + [37071,0.789], + [37073,0.826], + [37075,0.794], + [37077,0.799], + [37079,0.738], + [37081,0.869], + [37083,0.733], + [37085,0.81], + [37087,0.841], + [37089,0.872], + [37091,0.735], + [37093,0.799], + [37095,0.767], + [37097,0.845], + [37099,0.814], + [37101,0.812], + [37103,0.782], + [37105,0.807], + [37107,0.762], + [37109,0.795], + [37111,0.79], + [37113,0.83], + [37115,0.773], + [37117,0.786], + [37119,0.883], + [37121,0.765], + [37123,0.721], + [37125,0.884], + [37127,0.818], + [37129,0.895], + [37131,0.691], + [37133,0.881], + [37135,0.899], + [37137,0.827], + [37139,0.819], + [37141,0.838], + [37143,0.853], + [37145,0.819], + [37147,0.851], + [37149,0.861], + [37151,0.756], + [37153,0.749], + [37155,0.687], + [37157,0.766], + [37159,0.8], + [37161,0.796], + [37163,0.752], + [37165,0.752], + [37167,0.805], + [37169,0.792], + [37171,0.745], + [37173,0.794], + [37175,0.861], + [37177,0.739], + [37179,0.864], + [37181,0.726], + [37183,0.916], + [37185,0.731], + [37187,0.76], + [37189,0.869], + [37191,0.812], + [37193,0.726], + [37195,0.773], + [37197,0.769], + [37199,0.779], + [38001,0.853], + [38003,0.885], + [38005,0.802], + [38007,0.891], + [38009,0.859], + [38011,0.884], + [38013,0.89], + [38015,0.92], + [38017,0.94], + [38019,0.874], + [38021,0.864], + [38023,0.909], + [38025,0.84], + [38027,0.823], + [38029,0.791], + [38031,0.877], + [38033,0.917], + [38035,0.924], + [38037,0.871], + [38039,0.86], + [38041,0.863], + [38043,0.785], + [38045,0.864], + [38047,0.697], + [38049,0.855], + [38051,0.711], + [38053,0.884], + [38055,0.858], + [38057,0.85], + [38059,0.878], + [38061,0.885], + [38063,0.888], + [38065,0.863], + [38067,0.859], + [38069,0.819], + [38071,0.864], + [38073,0.873], + [38075,0.881], + [38077,0.871], + [38079,0.821], + [38081,0.884], + [38083,0.801], + [38085,0.802], + [38087,0.914], + [38089,0.873], + [38091,0.887], + [38093,0.857], + [38095,0.886], + [38097,0.88], + [38099,0.814], + [38101,0.923], + [38103,0.831], + [38105,0.879], + [39001,0.747], + [39003,0.872], + [39005,0.856], + [39007,0.842], + [39009,0.868], + [39011,0.903], + [39013,0.868], + [39015,0.8], + [39017,0.868], + [39019,0.833], + [39021,0.884], + [39023,0.848], + [39025,0.872], + [39027,0.863], + [39029,0.853], + [39031,0.85], + [39033,0.858], + [39035,0.864], + [39037,0.856], + [39039,0.878], + [39041,0.956], + [39043,0.889], + [39045,0.916], + [39047,0.822], + [39049,0.889], + [39051,0.883], + [39053,0.808], + [39055,0.898], + [39057,0.917], + [39059,0.843], + [39061,0.877], + [39063,0.907], + [39065,0.862], + [39067,0.836], + [39069,0.876], + [39071,0.8], + [39073,0.84], + [39075,0.563], + [39077,0.864], + [39079,0.794], + [39081,0.873], + [39083,0.875], + [39085,0.907], + [39087,0.82], + [39089,0.882], + [39091,0.859], + [39093,0.885], + [39095,0.871], + [39097,0.844], + [39099,0.873], + [39101,0.83], + [39103,0.925], + [39105,0.822], + [39107,0.883], + [39109,0.875], + [39111,0.855], + [39113,0.877], + [39115,0.83], + [39117,0.863], + [39119,0.865], + [39121,0.803], + [39123,0.897], + [39125,0.861], + [39127,0.842], + [39129,0.829], + [39131,0.774], + [39133,0.904], + [39135,0.856], + [39137,0.909], + [39139,0.843], + [39141,0.823], + [39143,0.874], + [39145,0.812], + [39147,0.875], + [39149,0.855], + [39151,0.878], + [39153,0.895], + [39155,0.865], + [39157,0.845], + [39159,0.903], + [39161,0.899], + [39163,0.763], + [39165,0.908], + [39167,0.88], + [39169,0.847], + [39171,0.887], + [39173,0.922], + [39175,0.876], + [40001,0.765], + [40003,0.817], + [40005,0.773], + [40007,0.836], + [40009,0.803], + [40011,0.811], + [40013,0.841], + [40015,0.81], + [40017,0.908], + [40019,0.832], + [40021,0.839], + [40023,0.765], + [40025,0.793], + [40027,0.904], + [40029,0.785], + [40031,0.885], + [40033,0.825], + [40035,0.805], + [40037,0.834], + [40039,0.844], + [40041,0.821], + [40043,0.848], + [40045,0.878], + [40047,0.856], + [40049,0.805], + [40051,0.853], + [40053,0.9], + [40055,0.772], + [40057,0.716], + [40059,0.841], + [40061,0.759], + [40063,0.758], + [40065,0.82], + [40067,0.758], + [40069,0.812], + [40071,0.856], + [40073,0.832], + [40075,0.844], + [40077,0.813], + [40079,0.791], + [40081,0.853], + [40083,0.872], + [40085,0.783], + [40087,0.878], + [40089,0.789], + [40091,0.771], + [40093,0.859], + [40095,0.796], + [40097,0.834], + [40099,0.798], + [40101,0.829], + [40103,0.885], + [40105,0.835], + [40107,0.788], + [40109,0.854], + [40111,0.824], + [40113,0.873], + [40115,0.825], + [40117,0.863], + [40119,0.892], + [40121,0.818], + [40123,0.844], + [40125,0.834], + [40127,0.804], + [40129,0.886], + [40131,0.891], + [40133,0.796], + [40135,0.8], + [40137,0.851], + [40139,0.731], + [40141,0.743], + [40143,0.88], + [40145,0.879], + [40147,0.881], + [40149,0.842], + [40151,0.882], + [40153,0.833], + [41001,0.887], + [41003,0.942], + [41005,0.915], + [41007,0.911], + [41009,0.885], + [41011,0.858], + [41013,0.857], + [41015,0.916], + [41017,0.929], + [41019,0.864], + [41021,0.848], + [41023,0.901], + [41025,0.902], + [41027,0.837], + [41029,0.889], + [41031,0.826], + [41033,0.862], + [41035,0.865], + [41037,0.882], + [41039,0.899], + [41041,0.9], + [41043,0.869], + [41045,0.79], + [41047,0.822], + [41049,0.785], + [41051,0.89], + [41053,0.888], + [41055,0.9], + [41057,0.89], + [41059,0.812], + [41061,0.885], + [41063,0.928], + [41065,0.843], + [41067,0.904], + [41069,0.882], + [41071,0.868], + [42001,0.847], + [42003,0.916], + [42005,0.877], + [42007,0.896], + [42009,0.839], + [42011,0.831], + [42013,0.897], + [42015,0.854], + [42017,0.919], + [42019,0.919], + [42021,0.876], + [42023,0.852], + [42025,0.867], + [42027,0.926], + [42029,0.925], + [42031,0.872], + [42033,0.86], + [42035,0.856], + [42037,0.867], + [42039,0.858], + [42041,0.904], + [42043,0.885], + [42045,0.905], + [42047,0.898], + [42049,0.89], + [42051,0.829], + [42053,0.807], + [42055,0.838], + [42057,0.834], + [42059,0.839], + [42061,0.855], + [42063,0.867], + [42065,0.869], + [42067,0.801], + [42069,0.875], + [42071,0.823], + [42073,0.865], + [42075,0.844], + [42077,0.859], + [42079,0.87], + [42081,0.859], + [42083,0.883], + [42085,0.871], + [42087,0.808], + [42089,0.887], + [42091,0.926], + [42093,0.875], + [42095,0.87], + [42097,0.842], + [42099,0.854], + [42101,0.794], + [42103,0.915], + [42105,0.855], + [42107,0.836], + [42109,0.816], + [42111,0.829], + [42113,0.861], + [42115,0.868], + [42117,0.871], + [42119,0.831], + [42121,0.873], + [42123,0.889], + [42125,0.89], + [42127,0.867], + [42129,0.914], + [42131,0.891], + [42133,0.868], + [44001,0.862], + [44003,0.895], + [44005,0.911], + [44007,0.79], + [44009,0.919], + [45001,0.768], + [45003,0.837], + [45005,0.732], + [45007,0.806], + [45009,0.764], + [45011,0.782], + [45013,0.906], + [45015,0.863], + [45017,0.816], + [45019,0.874], + [45021,0.742], + [45023,0.743], + [45025,0.734], + [45027,0.754], + [45029,0.753], + [45031,0.769], + [45033,0.658], + [45035,0.889], + [45037,0.783], + [45039,0.785], + [45041,0.808], + [45043,0.834], + [45045,0.84], + [45047,0.795], + [45049,0.759], + [45051,0.869], + [45053,0.749], + [45055,0.826], + [45057,0.778], + [45059,0.747], + [45061,0.677], + [45063,0.881], + [45065,0.781], + [45067,0.787], + [45069,0.675], + [45071,0.751], + [45073,0.812], + [45075,0.772], + [45077,0.814], + [45079,0.884], + [45081,0.751], + [45083,0.799], + [45085,0.817], + [45087,0.756], + [45089,0.783], + [45091,0.859], + [46003,0.853], + [46005,0.823], + [46007,0.731], + [46009,0.877], + [46011,0.92], + [46013,0.898], + [46015,0.877], + [46017,0.765], + [46019,0.875], + [46021,0.86], + [46023,0.807], + [46025,0.852], + [46027,0.906], + [46029,0.885], + [46031,0.836], + [46033,0.92], + [46035,0.878], + [46037,0.886], + [46039,0.869], + [46041,0.797], + [46043,0.741], + [46045,0.837], + [46047,0.868], + [46049,0.821], + [46051,0.84], + [46053,0.857], + [46055,0.88], + [46057,0.873], + [46059,0.884], + [46061,0.84], + [46063,0.903], + [46065,0.933], + [46067,0.805], + [46069,0.86], + [46071,0.884], + [46073,0.826], + [46075,0.924], + [46077,0.871], + [46079,0.913], + [46081,0.926], + [46083,0.956], + [46085,0.855], + [46087,0.902], + [46089,0.679], + [46091,0.853], + [46093,0.926], + [46095,0.856], + [46097,0.856], + [46099,0.909], + [46101,0.906], + [46102,0.812], + [46103,0.914], + [46105,0.827], + [46107,0.87], + [46109,0.86], + [46111,0.846], + [46115,0.835], + [46117,0.911], + [46119,0.92], + [46121,0.83], + [46123,0.882], + [46125,0.901], + [46127,0.923], + [46129,0.829], + [46135,0.885], + [46137,0.769], + [47001,0.837], + [47003,0.742], + [47005,0.766], + [47007,0.715], + [47009,0.855], + [47011,0.8], + [47013,0.69], + [47015,0.777], + [47017,0.774], + [47019,0.769], + [47021,0.816], + [47023,0.77], + [47025,0.692], + [47027,0.718], + [47029,0.714], + [47031,0.814], + [47033,0.768], + [47035,0.8], + [47037,0.851], + [47039,0.719], + [47041,0.689], + [47043,0.806], + [47045,0.786], + [47047,0.828], + [47049,0.716], + [47051,0.797], + [47053,0.797], + [47055,0.78], + [47057,0.679], + [47059,0.766], + [47061,0.643], + [47063,0.784], + [47065,0.854], + [47067,0.683], + [47069,0.703], + [47071,0.727], + [47073,0.781], + [47075,0.748], + [47077,0.788], + [47079,0.812], + [47081,0.745], + [47083,0.796], + [47085,0.819], + [47087,0.691], + [47089,0.778], + [47091,0.691], + [47093,0.883], + [47095,0.661], + [47097,0.732], + [47099,0.752], + [47101,0.779], + [47103,0.794], + [47105,0.843], + [47107,0.783], + [47109,0.751], + [47111,0.726], + [47113,0.847], + [47115,0.737], + [47117,0.79], + [47119,0.834], + [47121,0.73], + [47123,0.727], + [47125,0.9], + [47127,0.8], + [47129,0.756], + [47131,0.799], + [47133,0.714], + [47135,0.766], + [47137,0.741], + [47139,0.708], + [47141,0.808], + [47143,0.743], + [47145,0.813], + [47147,0.811], + [47149,0.879], + [47151,0.735], + [47153,0.741], + [47155,0.809], + [47157,0.849], + [47159,0.783], + [47161,0.809], + [47163,0.821], + [47165,0.854], + [47167,0.832], + [47169,0.752], + [47171,0.747], + [47173,0.661], + [47175,0.747], + [47177,0.753], + [47179,0.844], + [47181,0.75], + [47183,0.82], + [47185,0.743], + [47187,0.948], + [47189,0.877], + [48001,0.748], + [48003,0.727], + [48005,0.78], + [48007,0.852], + [48009,0.84], + [48011,0.915], + [48013,0.738], + [48015,0.812], + [48017,0.734], + [48019,0.89], + [48021,0.806], + [48023,0.847], + [48025,0.695], + [48027,0.886], + [48029,0.814], + [48031,0.883], + [48033,0.851], + [48035,0.801], + [48037,0.835], + [48039,0.843], + [48041,0.845], + [48043,0.802], + [48045,0.81], + [48047,0.537], + [48049,0.817], + [48051,0.768], + [48053,0.835], + [48055,0.756], + [48057,0.782], + [48059,0.863], + [48061,0.623], + [48063,0.747], + [48065,0.879], + [48067,0.823], + [48069,0.681], + [48071,0.848], + [48073,0.742], + [48075,0.821], + [48077,0.892], + [48079,0.665], + [48081,0.863], + [48083,0.778], + [48085,0.928], + [48087,0.742], + [48089,0.796], + [48091,0.886], + [48093,0.747], + [48095,0.717], + [48097,0.818], + [48099,0.876], + [48101,0.791], + [48103,0.722], + [48105,0.619], + [48107,0.752], + [48109,0.618], + [48111,0.718], + [48113,0.765], + [48115,0.67], + [48117,0.663], + [48119,0.842], + [48121,0.912], + [48123,0.755], + [48125,0.729], + [48127,0.61], + [48129,0.822], + [48131,0.649], + [48133,0.777], + [48135,0.729], + [48137,0.677], + [48139,0.829], + [48141,0.71], + [48143,0.795], + [48145,0.735], + [48147,0.824], + [48149,0.79], + [48151,0.81], + [48153,0.746], + [48155,0.758], + [48157,0.886], + [48159,0.827], + [48161,0.787], + [48163,0.643], + [48165,0.582], + [48167,0.859], + [48169,0.629], + [48171,0.864], + [48173,0.78], + [48175,0.838], + [48177,0.676], + [48179,0.793], + [48181,0.852], + [48183,0.824], + [48185,0.772], + [48187,0.851], + [48189,0.7], + [48191,0.722], + [48193,0.826], + [48195,0.76], + [48197,0.794], + [48199,0.851], + [48201,0.776], + [48203,0.837], + [48205,0.784], + [48207,0.779], + [48209,0.881], + [48211,0.807], + [48213,0.79], + [48215,0.602], + [48217,0.781], + [48219,0.741], + [48221,0.862], + [48223,0.787], + [48225,0.785], + [48227,0.708], + [48229,0.505], + [48231,0.8], + [48233,0.835], + [48235,0.816], + [48237,0.789], + [48239,0.772], + [48241,0.816], + [48243,0.839], + [48245,0.814], + [48247,0.689], + [48249,0.706], + [48251,0.817], + [48253,0.696], + [48255,0.656], + [48257,0.827], + [48259,0.911], + [48261,0.598], + [48263,0.906], + [48265,0.862], + [48267,0.765], + [48269,0.908], + [48271,0.754], + [48273,0.761], + [48275,0.755], + [48277,0.824], + [48279,0.719], + [48281,0.826], + [48283,0.599], + [48285,0.763], + [48287,0.791], + [48289,0.787], + [48291,0.732], + [48293,0.745], + [48295,0.815], + [48297,0.771], + [48299,0.88], + [48301,0.923], + [48303,0.834], + [48305,0.742], + [48307,0.748], + [48309,0.803], + [48311,0.787], + [48313,0.782], + [48315,0.769], + [48317,0.709], + [48319,0.799], + [48321,0.766], + [48323,0.552], + [48325,0.783], + [48327,0.801], + [48329,0.812], + [48331,0.815], + [48333,0.772], + [48335,0.734], + [48337,0.812], + [48339,0.859], + [48341,0.695], + [48343,0.823], + [48345,0.847], + [48347,0.805], + [48349,0.765], + [48351,0.777], + [48353,0.774], + [48355,0.782], + [48357,0.707], + [48359,0.823], + [48361,0.858], + [48363,0.768], + [48365,0.815], + [48367,0.854], + [48369,0.65], + [48371,0.651], + [48373,0.749], + [48375,0.754], + [48377,0.537], + [48379,0.808], + [48381,0.913], + [48383,0.685], + [48385,0.776], + [48387,0.725], + [48389,0.528], + [48391,0.727], + [48393,0.919], + [48395,0.766], + [48397,0.913], + [48399,0.771], + [48401,0.794], + [48403,0.775], + [48405,0.714], + [48407,0.77], + [48409,0.763], + [48411,0.814], + [48413,0.785], + [48415,0.742], + [48417,0.868], + [48419,0.754], + [48421,0.744], + [48423,0.842], + [48425,0.874], + [48427,0.479], + [48429,0.822], + [48431,0.775], + [48433,0.855], + [48435,0.694], + [48437,0.759], + [48439,0.838], + [48441,0.841], + [48443,0.804], + [48445,0.681], + [48447,0.784], + [48449,0.729], + [48451,0.812], + [48453,0.863], + [48455,0.809], + [48457,0.829], + [48459,0.834], + [48461,0.755], + [48463,0.699], + [48465,0.64], + [48467,0.788], + [48469,0.801], + [48471,0.803], + [48473,0.795], + [48475,0.704], + [48477,0.792], + [48479,0.627], + [48481,0.751], + [48483,0.794], + [48485,0.828], + [48487,0.736], + [48489,0.574], + [48491,0.916], + [48493,0.845], + [48495,0.629], + [48497,0.815], + [48499,0.808], + [48501,0.714], + [48503,0.765], + [48505,0.567], + [48507,0.577], + [49001,0.903], + [49003,0.914], + [49005,0.924], + [49007,0.857], + [49009,0.845], + [49011,0.95], + [49013,0.849], + [49015,0.904], + [49017,0.919], + [49019,0.839], + [49021,0.91], + [49023,0.915], + [49025,0.895], + [49027,0.864], + [49029,0.969], + [49031,0.887], + [49033,0.949], + [49035,0.889], + [49037,0.818], + [49039,0.882], + [49041,0.9], + [49043,0.937], + [49045,0.918], + [49047,0.845], + [49049,0.933], + [49051,0.91], + [49053,0.907], + [49055,0.9], + [49057,0.891], + [50001,0.898], + [50003,0.898], + [50005,0.885], + [50007,0.927], + [50009,0.828], + [50011,0.878], + [50013,0.921], + [50015,0.922], + [50017,0.903], + [50019,0.85], + [50021,0.891], + [50023,0.924], + [50025,0.913], + [50027,0.916], + [51001,0.789], + [51003,0.909], + [51005,0.818], + [51007,0.78], + [51009,0.783], + [51011,0.798], + [51013,0.925], + [51015,0.837], + [51017,0.792], + [51019,0.85], + [51021,0.83], + [51023,0.892], + [51025,0.672], + [51027,0.637], + [51029,0.616], + [51031,0.826], + [51033,0.818], + [51035,0.724], + [51036,0.748], + [51037,0.716], + [51041,0.894], + [51043,0.875], + [51045,0.834], + [51047,0.826], + [51049,0.725], + [51051,0.642], + [51053,0.771], + [51057,0.801], + [51059,0.919], + [51061,0.897], + [51063,0.795], + [51065,0.855], + [51067,0.799], + [51069,0.83], + [51071,0.803], + [51073,0.853], + [51075,0.793], + [51077,0.734], + [51079,0.795], + [51081,0.697], + [51083,0.729], + [51085,0.912], + [51087,0.891], + [51089,0.723], + [51091,0.737], + [51093,0.862], + [51095,0.933], + [51097,0.758], + [51099,0.902], + [51101,0.87], + [51103,0.823], + [51105,0.715], + [51107,0.935], + [51109,0.806], + [51111,0.715], + [51113,0.804], + [51115,0.845], + [51117,0.752], + [51119,0.876], + [51121,0.881], + [51125,0.777], + [51127,0.863], + [51131,0.78], + [51133,0.841], + [51135,0.728], + [51137,0.835], + [51139,0.725], + [51141,0.741], + [51143,0.76], + [51145,0.793], + [51147,0.812], + [51149,0.861], + [51153,0.884], + [51155,0.791], + [51157,0.798], + [51159,0.746], + [51161,0.897], + [51163,0.796], + [51165,0.779], + [51167,0.714], + [51169,0.736], + [51171,0.827], + [51173,0.757], + [51175,0.734], + [51177,0.885], + [51179,0.915], + [51181,0.788], + [51183,0.678], + [51185,0.756], + [51187,0.833], + [51191,0.804], + [51193,0.765], + [51195,0.703], + [51197,0.77], + [51199,0.945], + [51510,0.909], + [51520,0.798], + [51530,0.728], + [51540,0.852], + [51550,0.893], + [51570,0.881], + [51580,0.809], + [51590,0.758], + [51595,0.716], + [51600,0.931], + [51610,0.957], + [51620,0.761], + [51630,0.866], + [51640,0.735], + [51650,0.886], + [51660,0.775], + [51670,0.761], + [51678,0.813], + [51680,0.831], + [51683,0.806], + [51685,0.785], + [51690,0.783], + [51700,0.889], + [51710,0.839], + [51720,0.776], + [51730,0.72], + [51735,0.939], + [51740,0.817], + [51750,0.889], + [51760,0.802], + [51770,0.809], + [51775,0.875], + [51790,0.827], + [51800,0.847], + [51810,0.925], + [51820,0.812], + [51830,0.935], + [51840,0.797], + [53001,0.675], + [53003,0.889], + [53005,0.88], + [53007,0.831], + [53009,0.911], + [53011,0.908], + [53013,0.894], + [53015,0.861], + [53017,0.793], + [53019,0.886], + [53021,0.676], + [53023,0.917], + [53025,0.75], + [53027,0.844], + [53029,0.948], + [53031,0.942], + [53033,0.919], + [53035,0.927], + [53037,0.898], + [53039,0.872], + [53041,0.849], + [53043,0.913], + [53045,0.866], + [53047,0.838], + [53049,0.861], + [53051,0.877], + [53053,0.898], + [53055,0.943], + [53057,0.877], + [53059,0.902], + [53061,0.907], + [53063,0.92], + [53065,0.902], + [53067,0.926], + [53069,0.924], + [53071,0.866], + [53073,0.907], + [53075,0.957], + [53077,0.708], + [54001,0.804], + [54003,0.849], + [54005,0.715], + [54007,0.739], + [54009,0.879], + [54011,0.857], + [54013,0.717], + [54015,0.73], + [54017,0.739], + [54019,0.766], + [54021,0.749], + [54023,0.794], + [54025,0.778], + [54027,0.784], + [54029,0.875], + [54031,0.809], + [54033,0.841], + [54035,0.822], + [54037,0.852], + [54039,0.859], + [54041,0.794], + [54043,0.664], + [54045,0.749], + [54047,0.596], + [54049,0.864], + [54051,0.852], + [54053,0.79], + [54055,0.791], + [54057,0.864], + [54059,0.695], + [54061,0.872], + [54063,0.757], + [54065,0.841], + [54067,0.799], + [54069,0.891], + [54071,0.799], + [54073,0.871], + [54075,0.79], + [54077,0.825], + [54079,0.889], + [54081,0.784], + [54083,0.811], + [54085,0.795], + [54087,0.766], + [54089,0.757], + [54091,0.834], + [54093,0.815], + [54095,0.828], + [54097,0.796], + [54099,0.781], + [54101,0.691], + [54103,0.825], + [54105,0.84], + [54107,0.866], + [54109,0.727], + [55001,0.84], + [55003,0.895], + [55005,0.861], + [55007,0.918], + [55009,0.9], + [55011,0.877], + [55013,0.88], + [55015,0.92], + [55017,0.884], + [55019,0.807], + [55021,0.906], + [55023,0.887], + [55025,0.943], + [55027,0.861], + [55029,0.925], + [55031,0.905], + [55033,0.907], + [55035,0.918], + [55037,0.874], + [55039,0.885], + [55041,0.856], + [55043,0.888], + [55045,0.901], + [55047,0.87], + [55049,0.919], + [55051,0.888], + [55053,0.86], + [55055,0.891], + [55057,0.847], + [55059,0.877], + [55061,0.898], + [55063,0.929], + [55065,0.881], + [55067,0.873], + [55069,0.873], + [55071,0.897], + [55073,0.884], + [55075,0.876], + [55077,0.856], + [55078,0.82], + [55079,0.849], + [55081,0.877], + [55083,0.872], + [55085,0.919], + [55087,0.923], + [55089,0.951], + [55091,0.885], + [55093,0.923], + [55095,0.914], + [55097,0.904], + [55099,0.894], + [55101,0.873], + [55103,0.866], + [55105,0.874], + [55107,0.853], + [55109,0.946], + [55111,0.888], + [55113,0.877], + [55115,0.865], + [55117,0.895], + [55119,0.846], + [55121,0.857], + [55123,0.855], + [55125,0.917], + [55127,0.892], + [55129,0.897], + [55131,0.922], + [55133,0.95], + [55135,0.882], + [55137,0.844], + [55139,0.898], + [55141,0.892], + [56001,0.933], + [56003,0.894], + [56005,0.91], + [56007,0.909], + [56009,0.92], + [56011,0.919], + [56013,0.888], + [56015,0.9], + [56017,0.881], + [56019,0.946], + [56021,0.916], + [56023,0.911], + [56025,0.919], + [56027,0.911], + [56029,0.926], + [56031,0.89], + [56033,0.927], + [56035,0.924], + [56037,0.899], + [56039,0.951], + [56041,0.883], + [56043,0.896], + [56045,0.911] + ] +} diff --git a/data/regional/united-states/education/us-education-highschoolgrad-2016.json b/data/regional/united-states/education/us-education-highschoolgrad-2016.json new file mode 100644 index 0000000..4186db9 --- /dev/null +++ b/data/regional/united-states/education/us-education-highschoolgrad-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Highschool Graduates", + "description" : "Percent of the population that graduated highschool.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","highschool"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.highschoolgrad.2016"], + [1001,0.876], + [1003,0.9], + [1005,0.738], + [1007,0.807], + [1009,0.8], + [1011,0.666], + [1013,0.811], + [1015,0.824], + [1017,0.803], + [1019,0.814], + [1021,0.802], + [1023,0.789], + [1025,0.81], + [1027,0.747], + [1029,0.742], + [1031,0.851], + [1033,0.834], + [1035,0.795], + [1037,0.729], + [1039,0.809], + [1041,0.782], + [1043,0.822], + [1045,0.859], + [1047,0.791], + [1049,0.727], + [1051,0.867], + [1053,0.804], + [1055,0.824], + [1057,0.791], + [1059,0.757], + [1061,0.778], + [1063,0.77], + [1065,0.814], + [1067,0.806], + [1069,0.849], + [1071,0.795], + [1073,0.89], + [1075,0.775], + [1077,0.849], + [1079,0.776], + [1081,0.887], + [1083,0.832], + [1085,0.749], + [1087,0.804], + [1089,0.908], + [1091,0.838], + [1093,0.8], + [1095,0.786], + [1097,0.858], + [1099,0.821], + [1101,0.856], + [1103,0.825], + [1105,0.764], + [1107,0.811], + [1109,0.8], + [1111,0.773], + [1113,0.826], + [1115,0.835], + [1117,0.915], + [1119,0.8], + [1121,0.798], + [1123,0.796], + [1125,0.881], + [1127,0.785], + [1129,0.797], + [1131,0.798], + [1133,0.76], + [2013,0.843], + [2016,0.875], + [2020,0.933], + [2050,0.809], + [2060,0.926], + [2068,0.962], + [2070,0.869], + [2090,0.944], + [2100,0.954], + [2105,0.906], + [2110,0.956], + [2122,0.928], + [2130,0.92], + [2150,0.907], + [2158,null], + [2164,0.864], + [2170,0.924], + [2180,0.849], + [2185,0.883], + [2188,0.792], + [2195,0.924], + [2198,0.905], + [2220,0.927], + [2230,0.965], + [2240,0.907], + [2261,0.928], + [2275,0.882], + [2282,0.944], + [2290,0.829], + [4001,0.783], + [4003,0.866], + [4005,0.889], + [4007,0.843], + [4009,0.854], + [4011,0.879], + [4012,0.751], + [4013,0.869], + [4015,0.839], + [4017,0.815], + [4019,0.878], + [4021,0.849], + [4023,0.748], + [4025,0.901], + [4027,0.718], + [5001,0.825], + [5003,0.839], + [5005,0.872], + [5007,0.872], + [5009,0.85], + [5011,0.799], + [5013,0.832], + [5015,0.838], + [5017,0.8], + [5019,0.865], + [5021,0.791], + [5023,0.833], + [5025,0.861], + [5027,0.851], + [5029,0.85], + [5031,0.879], + [5033,0.854], + [5035,0.818], + [5037,0.806], + [5039,0.835], + [5041,0.762], + [5043,0.816], + [5045,0.911], + [5047,0.811], + [5049,0.839], + [5051,0.883], + [5053,0.9], + [5055,0.852], + [5057,0.787], + [5059,0.859], + [5061,0.794], + [5063,0.844], + [5065,0.839], + [5067,0.766], + [5069,0.842], + [5071,0.79], + [5073,0.802], + [5075,0.818], + [5077,0.694], + [5079,0.79], + [5081,0.86], + [5083,0.828], + [5085,0.881], + [5087,0.803], + [5089,0.859], + [5091,0.855], + [5093,0.803], + [5095,0.782], + [5097,0.797], + [5099,0.832], + [5101,0.804], + [5103,0.861], + [5105,0.822], + [5107,0.764], + [5109,0.814], + [5111,0.788], + [5113,0.843], + [5115,0.835], + [5117,0.824], + [5119,0.901], + [5121,0.833], + [5123,0.779], + [5125,0.892], + [5127,0.765], + [5129,0.846], + [5131,0.825], + [5133,0.697], + [5135,0.833], + [5137,0.765], + [5139,0.838], + [5141,0.843], + [5143,0.842], + [5145,0.84], + [5147,0.755], + [5149,0.779], + [6001,0.873], + [6003,0.911], + [6005,0.884], + [6007,0.882], + [6009,0.904], + [6011,0.68], + [6013,0.891], + [6015,0.821], + [6017,0.927], + [6019,0.737], + [6021,0.726], + [6023,0.903], + [6025,0.671], + [6027,0.885], + [6029,0.736], + [6031,0.729], + [6033,0.837], + [6035,0.814], + [6037,0.778], + [6039,0.717], + [6041,0.932], + [6043,0.895], + [6045,0.866], + [6047,0.686], + [6049,0.865], + [6051,0.84], + [6053,0.709], + [6055,0.839], + [6057,0.933], + [6059,0.844], + [6061,0.942], + [6063,0.919], + [6065,0.805], + [6067,0.868], + [6069,0.783], + [6071,0.788], + [6073,0.864], + [6075,0.875], + [6077,0.78], + [6079,0.902], + [6081,0.886], + [6083,0.8], + [6085,0.871], + [6087,0.864], + [6089,0.9], + [6091,0.89], + [6093,0.886], + [6095,0.875], + [6097,0.872], + [6099,0.776], + [6101,0.792], + [6103,0.829], + [6105,0.907], + [6107,0.682], + [6109,0.897], + [6111,0.835], + [6113,0.856], + [6115,0.821], + [8001,0.822], + [8003,0.838], + [8005,0.923], + [8007,0.913], + [8009,0.863], + [8011,0.843], + [8013,0.945], + [8014,0.96], + [8015,0.917], + [8017,0.906], + [8019,0.969], + [8021,0.84], + [8023,0.77], + [8025,0.828], + [8027,0.917], + [8029,0.88], + [8031,0.863], + [8033,0.909], + [8035,0.979], + [8037,0.888], + [8039,0.964], + [8041,0.94], + [8043,0.887], + [8045,0.869], + [8047,0.98], + [8049,0.957], + [8051,0.953], + [8053,0.948], + [8055,0.913], + [8057,0.878], + [8059,0.941], + [8061,0.929], + [8063,0.836], + [8065,0.928], + [8067,0.948], + [8069,0.957], + [8071,0.857], + [8073,0.852], + [8075,0.893], + [8077,0.899], + [8079,0.966], + [8081,0.911], + [8083,0.901], + [8085,0.888], + [8087,0.81], + [8089,0.857], + [8091,0.978], + [8093,0.963], + [8095,0.891], + [8097,0.954], + [8099,0.827], + [8101,0.882], + [8103,0.918], + [8105,0.834], + [8107,0.965], + [8109,0.809], + [8111,0.954], + [8113,0.932], + [8115,0.912], + [8117,0.946], + [8119,0.944], + [8121,0.913], + [8123,0.871], + [8125,0.871], + [9001,0.9], + [9003,0.893], + [9005,0.917], + [9007,0.938], + [9009,0.895], + [9011,0.915], + [9013,0.939], + [9015,0.881], + [10001,0.869], + [10003,0.904], + [10005,0.862], + [11001,0.9], + [12001,0.925], + [12003,0.821], + [12005,0.887], + [12007,0.768], + [12009,0.912], + [12011,0.883], + [12013,0.769], + [12015,0.894], + [12017,0.866], + [12019,0.908], + [12021,0.857], + [12023,0.862], + [12027,0.705], + [12029,0.777], + [12031,0.889], + [12033,0.9], + [12035,0.91], + [12037,0.796], + [12039,0.788], + [12041,0.826], + [12043,0.744], + [12045,0.825], + [12047,0.75], + [12049,0.689], + [12051,0.629], + [12053,0.87], + [12055,0.833], + [12057,0.878], + [12059,0.782], + [12061,0.877], + [12063,0.784], + [12065,0.798], + [12067,0.747], + [12069,0.878], + [12071,0.869], + [12073,0.926], + [12075,0.819], + [12077,0.792], + [12079,0.827], + [12081,0.885], + [12083,0.865], + [12085,0.9], + [12086,0.807], + [12087,0.91], + [12089,0.909], + [12091,0.912], + [12093,0.718], + [12095,0.876], + [12097,0.857], + [12099,0.879], + [12101,0.882], + [12103,0.904], + [12105,0.84], + [12107,0.784], + [12109,0.946], + [12111,0.858], + [12113,0.902], + [12115,0.926], + [12117,0.933], + [12119,0.906], + [12121,0.791], + [12123,0.787], + [12125,0.743], + [12127,0.893], + [12129,0.877], + [12131,0.849], + [12133,0.798], + [13001,0.764], + [13003,0.68], + [13005,0.801], + [13007,0.787], + [13009,0.816], + [13011,0.754], + [13013,0.821], + [13015,0.816], + [13017,0.812], + [13019,0.803], + [13021,0.843], + [13023,0.851], + [13025,0.802], + [13027,0.79], + [13029,0.904], + [13031,0.866], + [13033,0.773], + [13035,0.772], + [13037,0.76], + [13039,0.91], + [13043,0.752], + [13045,0.812], + [13047,0.857], + [13049,0.809], + [13051,0.893], + [13053,0.902], + [13055,0.726], + [13057,0.898], + [13059,0.863], + [13061,0.823], + [13063,0.835], + [13065,0.764], + [13067,0.912], + [13069,0.787], + [13071,0.725], + [13073,0.919], + [13075,0.763], + [13077,0.886], + [13079,0.806], + [13081,0.796], + [13083,0.801], + [13085,0.864], + [13087,0.795], + [13089,0.886], + [13091,0.815], + [13093,0.746], + [13095,0.822], + [13097,0.882], + [13099,0.798], + [13101,0.67], + [13103,0.862], + [13105,0.785], + [13107,0.778], + [13109,0.771], + [13111,0.83], + [13113,0.946], + [13115,0.797], + [13117,0.922], + [13119,0.765], + [13121,0.913], + [13123,0.803], + [13125,0.785], + [13127,0.876], + [13129,0.754], + [13131,0.771], + [13133,0.823], + [13135,0.875], + [13137,0.782], + [13139,0.773], + [13141,0.729], + [13143,0.783], + [13145,0.898], + [13147,0.809], + [13149,0.789], + [13151,0.894], + [13153,0.898], + [13155,0.847], + [13157,0.818], + [13159,0.772], + [13161,0.783], + [13163,0.745], + [13165,0.778], + [13167,0.743], + [13169,0.875], + [13171,0.84], + [13173,0.782], + [13175,0.828], + [13177,0.885], + [13179,0.897], + [13181,0.835], + [13183,0.872], + [13185,0.845], + [13187,0.842], + [13189,0.799], + [13191,0.824], + [13193,0.721], + [13195,0.828], + [13197,0.784], + [13199,0.77], + [13201,0.79], + [13205,0.765], + [13207,0.842], + [13209,0.821], + [13211,0.834], + [13213,0.688], + [13215,0.866], + [13217,0.844], + [13219,0.934], + [13221,0.796], + [13223,0.896], + [13225,0.851], + [13227,0.833], + [13229,0.82], + [13231,0.879], + [13233,0.757], + [13235,0.804], + [13237,0.84], + [13239,0.769], + [13241,0.855], + [13243,0.708], + [13245,0.835], + [13247,0.872], + [13249,0.809], + [13251,0.811], + [13253,0.821], + [13255,0.794], + [13257,0.811], + [13259,0.621], + [13261,0.777], + [13263,0.785], + [13265,0.672], + [13267,0.742], + [13269,0.761], + [13271,0.727], + [13273,0.733], + [13275,0.819], + [13277,0.812], + [13279,0.795], + [13281,0.893], + [13283,0.772], + [13285,0.837], + [13287,0.755], + [13289,0.691], + [13291,0.888], + [13293,0.791], + [13295,0.797], + [13297,0.867], + [13299,0.817], + [13301,0.737], + [13303,0.786], + [13305,0.821], + [13307,0.779], + [13309,0.766], + [13311,0.847], + [13313,0.689], + [13315,0.774], + [13317,0.78], + [13319,0.826], + [13321,0.775], + [15001,0.916], + [15003,0.911], + [15005,0.905], + [15007,0.919], + [15009,0.919], + [16001,0.945], + [16003,0.897], + [16005,0.919], + [16007,0.935], + [16009,0.866], + [16011,0.859], + [16013,0.901], + [16015,0.938], + [16017,0.904], + [16019,0.911], + [16021,0.894], + [16023,0.904], + [16025,0.878], + [16027,0.842], + [16029,0.922], + [16031,0.819], + [16033,0.695], + [16035,0.878], + [16037,0.926], + [16039,0.863], + [16041,0.899], + [16043,0.874], + [16045,0.873], + [16047,0.764], + [16049,0.885], + [16051,0.875], + [16053,0.75], + [16055,0.924], + [16057,0.959], + [16059,0.915], + [16061,0.894], + [16063,0.784], + [16065,0.962], + [16067,0.78], + [16069,0.916], + [16071,0.935], + [16073,0.75], + [16075,0.87], + [16077,0.793], + [16079,0.857], + [16081,0.912], + [16083,0.868], + [16085,0.956], + [16087,0.838], + [17001,0.916], + [17003,0.75], + [17005,0.88], + [17007,0.861], + [17009,0.859], + [17011,0.907], + [17013,0.917], + [17015,0.908], + [17017,0.856], + [17019,0.947], + [17021,0.88], + [17023,0.898], + [17025,0.884], + [17027,0.894], + [17029,0.902], + [17031,0.859], + [17033,0.891], + [17035,0.889], + [17037,0.926], + [17039,0.918], + [17041,0.84], + [17043,0.924], + [17045,0.877], + [17047,0.89], + [17049,0.912], + [17051,0.825], + [17053,0.889], + [17055,0.878], + [17057,0.875], + [17059,0.862], + [17061,0.861], + [17063,0.93], + [17065,0.898], + [17067,0.925], + [17069,0.831], + [17071,0.889], + [17073,0.89], + [17075,0.887], + [17077,0.923], + [17079,0.902], + [17081,0.858], + [17083,0.912], + [17085,0.92], + [17087,0.834], + [17089,0.831], + [17091,0.874], + [17093,0.932], + [17095,0.88], + [17097,0.898], + [17099,0.885], + [17101,0.78], + [17103,0.882], + [17105,0.883], + [17107,0.874], + [17109,0.928], + [17111,0.926], + [17113,0.956], + [17115,0.896], + [17117,0.899], + [17119,0.926], + [17121,0.885], + [17123,0.918], + [17125,0.873], + [17127,0.85], + [17129,0.919], + [17131,0.919], + [17133,0.954], + [17135,0.861], + [17137,0.908], + [17139,0.841], + [17141,0.882], + [17143,0.902], + [17145,0.849], + [17147,0.953], + [17149,0.878], + [17151,0.872], + [17153,0.827], + [17155,0.916], + [17157,0.845], + [17159,0.873], + [17161,0.886], + [17163,0.905], + [17165,0.861], + [17167,0.922], + [17169,0.888], + [17171,0.923], + [17173,0.923], + [17175,0.876], + [17177,0.908], + [17179,0.928], + [17181,0.857], + [17183,0.872], + [17185,0.895], + [17187,0.871], + [17189,0.907], + [17191,0.873], + [17193,0.877], + [17195,0.888], + [17197,0.909], + [17199,0.902], + [17201,0.874], + [17203,0.94], + [18001,0.842], + [18003,0.892], + [18005,0.903], + [18007,0.897], + [18009,0.87], + [18011,0.932], + [18013,0.896], + [18015,0.879], + [18017,0.829], + [18019,0.879], + [18021,0.897], + [18023,0.861], + [18025,0.827], + [18027,0.747], + [18029,0.907], + [18031,0.89], + [18033,0.898], + [18035,0.895], + [18037,0.879], + [18039,0.805], + [18041,0.813], + [18043,0.893], + [18045,0.88], + [18047,0.874], + [18049,0.849], + [18051,0.902], + [18053,0.865], + [18055,0.856], + [18057,0.959], + [18059,0.942], + [18061,0.886], + [18063,0.935], + [18065,0.878], + [18067,0.885], + [18069,0.902], + [18071,0.871], + [18073,0.87], + [18075,0.841], + [18077,0.868], + [18079,0.845], + [18081,0.915], + [18083,0.885], + [18085,0.848], + [18087,0.643], + [18089,0.876], + [18091,0.875], + [18093,0.884], + [18095,0.875], + [18097,0.856], + [18099,0.845], + [18101,0.844], + [18103,0.85], + [18105,0.922], + [18107,0.886], + [18109,0.884], + [18111,0.858], + [18113,0.847], + [18115,0.886], + [18117,0.834], + [18119,0.843], + [18121,0.854], + [18123,0.869], + [18125,0.863], + [18127,0.917], + [18129,0.943], + [18131,0.871], + [18133,0.884], + [18135,0.865], + [18137,0.867], + [18139,0.846], + [18141,0.877], + [18143,0.846], + [18145,0.877], + [18147,0.894], + [18149,0.828], + [18151,0.884], + [18153,0.864], + [18155,0.827], + [18157,0.908], + [18159,0.883], + [18161,0.883], + [18163,0.898], + [18165,0.89], + [18167,0.877], + [18169,0.879], + [18171,0.91], + [18173,0.928], + [18175,0.855], + [18177,0.847], + [18179,0.912], + [18181,0.896], + [18183,0.902], + [19001,0.934], + [19003,0.925], + [19005,0.881], + [19007,0.899], + [19009,0.896], + [19011,0.928], + [19013,0.908], + [19015,0.944], + [19017,0.954], + [19019,0.923], + [19021,0.782], + [19023,0.919], + [19025,0.923], + [19027,0.93], + [19029,0.903], + [19031,0.933], + [19033,0.933], + [19035,0.907], + [19037,0.903], + [19039,0.907], + [19041,0.933], + [19043,0.91], + [19045,0.916], + [19047,0.786], + [19049,0.955], + [19051,0.867], + [19053,0.87], + [19055,0.907], + [19057,0.922], + [19059,0.956], + [19061,0.924], + [19063,0.896], + [19065,0.898], + [19067,0.891], + [19069,0.886], + [19071,0.92], + [19073,0.928], + [19075,0.953], + [19077,0.92], + [19079,0.922], + [19081,0.927], + [19083,0.917], + [19085,0.91], + [19087,0.919], + [19089,0.889], + [19091,0.932], + [19093,0.933], + [19095,0.92], + [19097,0.912], + [19099,0.925], + [19101,0.95], + [19103,0.947], + [19105,0.92], + [19107,0.913], + [19109,0.943], + [19111,0.918], + [19113,0.946], + [19115,0.827], + [19117,0.918], + [19119,0.907], + [19121,0.944], + [19123,0.911], + [19125,0.928], + [19127,0.847], + [19129,0.932], + [19131,0.913], + [19133,0.905], + [19135,0.882], + [19137,0.891], + [19139,0.868], + [19141,0.921], + [19143,0.876], + [19145,0.884], + [19147,0.936], + [19149,0.921], + [19151,0.931], + [19153,0.918], + [19155,0.9], + [19157,0.935], + [19159,0.907], + [19161,0.917], + [19163,0.93], + [19165,0.913], + [19167,0.899], + [19169,0.964], + [19171,0.906], + [19173,0.909], + [19175,0.919], + [19177,0.883], + [19179,0.862], + [19181,0.955], + [19183,0.909], + [19185,0.893], + [19187,0.906], + [19189,0.911], + [19191,0.945], + [19193,0.857], + [19195,0.923], + [19197,0.9], + [20001,0.904], + [20003,0.908], + [20005,0.926], + [20007,0.924], + [20009,0.868], + [20011,0.904], + [20013,0.93], + [20015,0.928], + [20017,0.905], + [20019,0.88], + [20021,0.872], + [20023,0.946], + [20025,0.905], + [20027,0.938], + [20029,0.92], + [20031,0.927], + [20033,0.934], + [20035,0.891], + [20037,0.902], + [20039,0.919], + [20041,0.892], + [20043,0.907], + [20045,0.951], + [20047,0.832], + [20049,0.904], + [20051,0.933], + [20053,0.908], + [20055,0.721], + [20057,0.712], + [20059,0.919], + [20061,0.913], + [20063,0.919], + [20065,0.938], + [20067,0.704], + [20069,0.758], + [20071,0.883], + [20073,0.902], + [20075,0.811], + [20077,0.894], + [20079,0.907], + [20081,0.71], + [20083,0.934], + [20085,0.946], + [20087,0.923], + [20089,0.945], + [20091,0.958], + [20093,0.776], + [20095,0.917], + [20097,0.917], + [20099,0.875], + [20101,0.931], + [20103,0.915], + [20105,0.945], + [20107,0.89], + [20109,0.931], + [20111,0.89], + [20113,0.91], + [20115,0.901], + [20117,0.94], + [20119,0.856], + [20121,0.947], + [20123,0.954], + [20125,0.89], + [20127,0.878], + [20129,0.875], + [20131,0.915], + [20133,0.914], + [20135,0.914], + [20137,0.866], + [20139,0.91], + [20141,0.913], + [20143,0.942], + [20145,0.893], + [20147,0.936], + [20149,0.954], + [20151,0.906], + [20153,0.938], + [20155,0.876], + [20157,0.941], + [20159,0.887], + [20161,0.955], + [20163,0.914], + [20165,0.913], + [20167,0.902], + [20169,0.899], + [20171,0.863], + [20173,0.889], + [20175,0.654], + [20177,0.912], + [20179,0.915], + [20181,0.914], + [20183,0.916], + [20185,0.879], + [20187,0.81], + [20189,0.833], + [20191,0.912], + [20193,0.953], + [20195,0.942], + [20197,0.943], + [20199,0.899], + [20201,0.912], + [20203,0.809], + [20205,0.87], + [20207,0.898], + [20209,0.781], + [21001,0.76], + [21003,0.764], + [21005,0.886], + [21007,0.863], + [21009,0.817], + [21011,0.756], + [21013,0.68], + [21015,0.924], + [21017,0.84], + [21019,0.892], + [21021,0.861], + [21023,0.832], + [21025,0.714], + [21027,0.798], + [21029,0.868], + [21031,0.775], + [21033,0.881], + [21035,0.885], + [21037,0.901], + [21039,0.818], + [21041,0.764], + [21043,0.794], + [21045,0.733], + [21047,0.859], + [21049,0.846], + [21051,0.637], + [21053,0.712], + [21055,0.803], + [21057,0.781], + [21059,0.883], + [21061,0.769], + [21063,0.759], + [21065,0.757], + [21067,0.899], + [21069,0.769], + [21071,0.758], + [21073,0.876], + [21075,0.773], + [21077,0.803], + [21079,0.8], + [21081,0.825], + [21083,0.817], + [21085,0.792], + [21087,0.77], + [21089,0.868], + [21091,0.883], + [21093,0.896], + [21095,0.714], + [21097,0.822], + [21099,0.745], + [21101,0.863], + [21103,0.826], + [21105,0.752], + [21107,0.855], + [21109,0.76], + [21111,0.893], + [21113,0.849], + [21115,0.777], + [21117,0.893], + [21119,0.717], + [21121,0.7], + [21123,0.84], + [21125,0.777], + [21127,0.778], + [21129,0.679], + [21131,0.637], + [21133,0.75], + [21135,0.748], + [21137,0.776], + [21139,0.825], + [21141,0.787], + [21143,0.877], + [21145,0.878], + [21147,0.722], + [21149,0.837], + [21151,0.857], + [21153,0.693], + [21155,0.807], + [21157,0.858], + [21159,0.726], + [21161,0.827], + [21163,0.865], + [21165,0.771], + [21167,0.847], + [21169,0.76], + [21171,0.752], + [21173,0.817], + [21175,0.734], + [21177,0.795], + [21179,0.89], + [21181,0.793], + [21183,0.792], + [21185,0.928], + [21187,0.834], + [21189,0.702], + [21191,0.847], + [21193,0.749], + [21195,0.75], + [21197,0.772], + [21199,0.808], + [21201,0.75], + [21203,0.767], + [21205,0.81], + [21207,0.737], + [21209,0.899], + [21211,0.858], + [21213,0.84], + [21215,0.896], + [21217,0.841], + [21219,0.769], + [21221,0.842], + [21223,0.832], + [21225,0.85], + [21227,0.878], + [21229,0.822], + [21231,0.708], + [21233,0.785], + [21235,0.774], + [21237,0.695], + [21239,0.881], + [22001,0.755], + [22003,0.792], + [22005,0.882], + [22007,0.727], + [22009,0.732], + [22011,0.844], + [22013,0.83], + [22015,0.882], + [22017,0.861], + [22019,0.855], + [22021,0.759], + [22023,0.834], + [22025,0.77], + [22027,0.776], + [22029,0.771], + [22031,0.813], + [22033,0.902], + [22035,0.705], + [22037,0.823], + [22039,0.713], + [22041,0.741], + [22043,0.809], + [22045,0.778], + [22047,0.774], + [22049,0.8], + [22051,0.846], + [22053,0.79], + [22055,0.863], + [22057,0.754], + [22059,0.757], + [22061,0.875], + [22063,0.839], + [22065,0.745], + [22067,0.803], + [22069,0.834], + [22071,0.857], + [22073,0.851], + [22075,0.804], + [22077,0.799], + [22079,0.847], + [22081,0.807], + [22083,0.794], + [22085,0.825], + [22087,0.818], + [22089,0.872], + [22091,0.79], + [22093,0.855], + [22095,0.83], + [22097,0.761], + [22099,0.791], + [22101,0.783], + [22103,0.888], + [22105,0.813], + [22107,0.766], + [22109,0.778], + [22111,0.852], + [22113,0.76], + [22115,0.876], + [22117,0.764], + [22119,0.81], + [22121,0.838], + [22123,0.756], + [22125,0.793], + [22127,0.796], + [23001,0.895], + [23003,0.875], + [23005,0.946], + [23007,0.924], + [23009,0.938], + [23011,0.914], + [23013,0.93], + [23015,0.932], + [23017,0.916], + [23019,0.912], + [23021,0.897], + [23023,0.945], + [23025,0.879], + [23027,0.92], + [23029,0.88], + [23031,0.925], + [24001,0.891], + [24003,0.919], + [24005,0.91], + [24009,0.934], + [24011,0.833], + [24013,0.921], + [24015,0.881], + [24017,0.928], + [24019,0.85], + [24021,0.925], + [24023,0.885], + [24025,0.928], + [24027,0.952], + [24029,0.872], + [24031,0.911], + [24033,0.859], + [24035,0.916], + [24037,0.898], + [24039,0.792], + [24041,0.891], + [24043,0.869], + [24045,0.886], + [24047,0.896], + [24510,0.834], + [25001,0.954], + [25003,0.906], + [25005,0.837], + [25007,0.929], + [25009,0.892], + [25011,0.928], + [25013,0.854], + [25015,0.942], + [25017,0.927], + [25019,0.946], + [25021,0.938], + [25023,0.925], + [25025,0.847], + [25027,0.9], + [26001,0.886], + [26003,0.894], + [26005,0.901], + [26007,0.905], + [26009,0.907], + [26011,0.864], + [26013,0.832], + [26015,0.917], + [26017,0.894], + [26019,0.914], + [26021,0.891], + [26023,0.88], + [26025,0.906], + [26027,0.878], + [26029,0.927], + [26031,0.889], + [26033,0.895], + [26035,0.841], + [26037,0.937], + [26039,0.88], + [26041,0.926], + [26043,0.936], + [26045,0.936], + [26047,0.939], + [26049,0.896], + [26051,0.851], + [26053,0.927], + [26055,0.945], + [26057,0.896], + [26059,0.871], + [26061,0.92], + [26063,0.887], + [26065,0.923], + [26067,0.894], + [26069,0.884], + [26071,0.917], + [26073,0.915], + [26075,0.898], + [26077,0.936], + [26079,0.866], + [26081,0.896], + [26083,0.944], + [26085,0.821], + [26087,0.903], + [26089,0.948], + [26091,0.905], + [26093,0.951], + [26095,0.888], + [26097,0.891], + [26099,0.891], + [26101,0.903], + [26103,0.945], + [26105,0.916], + [26107,0.893], + [26109,0.915], + [26111,0.941], + [26113,0.877], + [26115,0.904], + [26117,0.876], + [26119,0.871], + [26121,0.892], + [26123,0.858], + [26125,0.934], + [26127,0.857], + [26129,0.851], + [26131,0.918], + [26133,0.874], + [26135,0.831], + [26137,0.915], + [26139,0.918], + [26141,0.885], + [26143,0.883], + [26145,0.885], + [26147,0.896], + [26149,0.859], + [26151,0.879], + [26153,0.892], + [26155,0.916], + [26157,0.893], + [26159,0.864], + [26161,0.947], + [26163,0.851], + [26165,0.886], + [27001,0.913], + [27003,0.934], + [27005,0.924], + [27007,0.902], + [27009,0.923], + [27011,0.896], + [27013,0.943], + [27015,0.911], + [27017,0.943], + [27019,0.957], + [27021,0.914], + [27023,0.901], + [27025,0.938], + [27027,0.944], + [27029,0.864], + [27031,0.956], + [27033,0.899], + [27035,0.935], + [27037,0.946], + [27039,0.942], + [27041,0.949], + [27043,0.902], + [27045,0.908], + [27047,0.89], + [27049,0.932], + [27051,0.928], + [27053,0.928], + [27055,0.936], + [27057,0.92], + [27059,0.912], + [27061,0.934], + [27063,0.922], + [27065,0.885], + [27067,0.882], + [27069,0.919], + [27071,0.911], + [27073,0.928], + [27075,0.953], + [27077,0.897], + [27079,0.908], + [27081,0.917], + [27083,0.925], + [27085,0.911], + [27087,0.871], + [27089,0.891], + [27091,0.902], + [27093,0.92], + [27095,0.899], + [27097,0.894], + [27099,0.869], + [27101,0.9], + [27103,0.936], + [27105,0.772], + [27107,0.903], + [27109,0.943], + [27111,0.918], + [27113,0.915], + [27115,0.891], + [27117,0.862], + [27119,0.912], + [27121,0.935], + [27123,0.903], + [27125,0.92], + [27127,0.885], + [27129,0.885], + [27131,0.901], + [27133,0.901], + [27135,0.913], + [27137,0.936], + [27139,0.948], + [27141,0.945], + [27143,0.897], + [27145,0.92], + [27147,0.924], + [27149,0.917], + [27151,0.886], + [27153,0.878], + [27155,0.907], + [27157,0.931], + [27159,0.893], + [27161,0.92], + [27163,0.96], + [27165,0.848], + [27167,0.923], + [27169,0.926], + [27171,0.943], + [27173,0.905], + [28001,0.808], + [28003,0.814], + [28005,0.766], + [28007,0.77], + [28009,0.761], + [28011,0.749], + [28013,0.745], + [28015,0.808], + [28017,0.729], + [28019,0.815], + [28021,0.775], + [28023,0.802], + [28025,0.788], + [28027,0.775], + [28029,0.779], + [28031,0.794], + [28033,0.891], + [28035,0.862], + [28037,0.842], + [28039,0.803], + [28041,0.752], + [28043,0.773], + [28045,0.843], + [28047,0.864], + [28049,0.862], + [28051,0.745], + [28053,0.653], + [28055,0.665], + [28057,0.757], + [28059,0.878], + [28061,0.833], + [28063,0.785], + [28065,0.798], + [28067,0.805], + [28069,0.778], + [28071,0.894], + [28073,0.921], + [28075,0.861], + [28077,0.792], + [28079,0.767], + [28081,0.834], + [28083,0.775], + [28085,0.859], + [28087,0.842], + [28089,0.903], + [28091,0.777], + [28093,0.784], + [28095,0.786], + [28097,0.749], + [28099,0.786], + [28101,0.835], + [28103,0.689], + [28105,0.868], + [28107,0.797], + [28109,0.836], + [28111,0.808], + [28113,0.793], + [28115,0.767], + [28117,0.765], + [28119,0.676], + [28121,0.9], + [28123,0.728], + [28125,0.747], + [28127,0.804], + [28129,0.813], + [28131,0.828], + [28133,0.726], + [28135,0.672], + [28137,0.799], + [28139,0.772], + [28141,0.786], + [28143,0.781], + [28145,0.763], + [28147,0.773], + [28149,0.866], + [28151,0.769], + [28153,0.756], + [28155,0.852], + [28157,0.694], + [28159,0.781], + [28161,0.784], + [28163,0.767], + [29001,0.899], + [29003,0.906], + [29005,0.9], + [29007,0.845], + [29009,0.82], + [29011,0.864], + [29013,0.853], + [29015,0.852], + [29017,0.787], + [29019,0.937], + [29021,0.872], + [29023,0.832], + [29025,0.901], + [29027,0.857], + [29029,0.882], + [29031,0.902], + [29033,0.859], + [29035,0.799], + [29037,0.925], + [29039,0.845], + [29041,0.877], + [29043,0.912], + [29045,0.865], + [29047,0.927], + [29049,0.925], + [29051,0.912], + [29053,0.89], + [29055,0.782], + [29057,0.864], + [29059,0.814], + [29061,0.841], + [29063,0.86], + [29065,0.79], + [29067,0.801], + [29069,0.739], + [29071,0.872], + [29073,0.86], + [29075,0.892], + [29077,0.912], + [29079,0.872], + [29081,0.853], + [29083,0.87], + [29085,0.818], + [29087,0.904], + [29089,0.882], + [29091,0.848], + [29093,0.808], + [29095,0.898], + [29097,0.871], + [29099,0.875], + [29101,0.914], + [29103,0.861], + [29105,0.818], + [29107,0.889], + [29109,0.841], + [29111,0.878], + [29113,0.872], + [29115,0.882], + [29117,0.86], + [29119,0.782], + [29121,0.874], + [29123,0.8], + [29125,0.826], + [29127,0.871], + [29129,0.889], + [29131,0.849], + [29133,0.728], + [29135,0.836], + [29137,0.897], + [29139,0.838], + [29141,0.778], + [29143,0.759], + [29145,0.856], + [29147,0.926], + [29149,0.836], + [29151,0.904], + [29153,0.838], + [29155,0.748], + [29157,0.875], + [29159,0.831], + [29161,0.87], + [29163,0.803], + [29165,0.953], + [29167,0.866], + [29169,0.899], + [29171,0.885], + [29173,0.879], + [29175,0.865], + [29177,0.88], + [29179,0.76], + [29181,0.782], + [29183,0.943], + [29185,0.81], + [29186,0.874], + [29187,0.823], + [29189,0.929], + [29195,0.845], + [29197,0.866], + [29199,0.828], + [29201,0.831], + [29203,0.817], + [29205,0.906], + [29207,0.805], + [29209,0.868], + [29211,0.839], + [29213,0.882], + [29215,0.821], + [29217,0.873], + [29219,0.858], + [29221,0.77], + [29223,0.753], + [29225,0.86], + [29227,0.891], + [29229,0.794], + [29510,0.846], + [30001,0.937], + [30003,0.863], + [30005,0.895], + [30007,0.936], + [30009,0.939], + [30011,0.92], + [30013,0.916], + [30015,0.929], + [30017,0.915], + [30019,0.948], + [30021,0.925], + [30023,0.894], + [30025,0.962], + [30027,0.931], + [30029,0.945], + [30031,0.968], + [30033,0.936], + [30035,0.898], + [30037,0.934], + [30039,0.895], + [30041,0.905], + [30043,0.949], + [30045,0.948], + [30047,0.906], + [30049,0.949], + [30051,0.792], + [30053,0.882], + [30055,0.93], + [30057,0.946], + [30059,0.925], + [30061,0.874], + [30063,0.95], + [30065,0.902], + [30067,0.954], + [30069,0.978], + [30071,0.912], + [30073,0.892], + [30075,0.95], + [30077,0.886], + [30079,0.931], + [30081,0.911], + [30083,0.922], + [30085,0.849], + [30087,0.883], + [30089,0.881], + [30091,0.913], + [30093,0.907], + [30095,0.95], + [30097,0.94], + [30099,0.929], + [30101,0.841], + [30103,0.921], + [30105,0.935], + [30107,0.76], + [30109,0.878], + [30111,0.93], + [31001,0.91], + [31003,0.91], + [31005,0.95], + [31007,0.959], + [31009,0.988], + [31011,0.936], + [31013,0.915], + [31015,0.948], + [31017,0.925], + [31019,0.936], + [31021,0.899], + [31023,0.911], + [31025,0.947], + [31027,0.927], + [31029,0.889], + [31031,0.913], + [31033,0.936], + [31035,0.896], + [31037,0.715], + [31039,0.878], + [31041,0.923], + [31043,0.743], + [31045,0.944], + [31047,0.759], + [31049,0.909], + [31051,0.885], + [31053,0.876], + [31055,0.894], + [31057,0.901], + [31059,0.917], + [31061,0.913], + [31063,0.953], + [31065,0.882], + [31067,0.894], + [31069,0.943], + [31071,0.942], + [31073,0.931], + [31075,0.974], + [31077,0.932], + [31079,0.832], + [31081,0.935], + [31083,0.915], + [31085,0.908], + [31087,0.917], + [31089,0.923], + [31091,0.941], + [31093,0.924], + [31095,0.894], + [31097,0.884], + [31099,0.934], + [31101,0.918], + [31103,0.933], + [31105,0.884], + [31107,0.916], + [31109,0.934], + [31111,0.919], + [31113,0.906], + [31115,0.973], + [31117,0.934], + [31119,0.883], + [31121,0.925], + [31123,0.868], + [31125,0.907], + [31127,0.944], + [31129,0.933], + [31131,0.911], + [31133,0.907], + [31135,0.891], + [31137,0.932], + [31139,0.948], + [31141,0.89], + [31143,0.941], + [31145,0.935], + [31147,0.911], + [31149,0.925], + [31151,0.836], + [31153,0.954], + [31155,0.93], + [31157,0.871], + [31159,0.928], + [31161,0.899], + [31163,0.925], + [31165,0.941], + [31167,0.919], + [31169,0.918], + [31171,0.934], + [31173,0.867], + [31175,0.926], + [31177,0.957], + [31179,0.949], + [31181,0.919], + [31183,0.95], + [31185,0.942], + [32001,0.894], + [32003,0.849], + [32005,0.93], + [32007,0.834], + [32009,0.891], + [32011,0.915], + [32013,0.824], + [32015,0.83], + [32017,0.886], + [32019,0.85], + [32021,0.865], + [32023,0.847], + [32027,0.783], + [32029,0.939], + [32031,0.87], + [32033,0.838], + [32510,0.873], + [33001,0.917], + [33003,0.933], + [33005,0.926], + [33007,0.879], + [33009,0.922], + [33011,0.916], + [33013,0.93], + [33015,0.948], + [33017,0.922], + [33019,0.904], + [34001,0.857], + [34003,0.921], + [34005,0.929], + [34007,0.882], + [34009,0.9], + [34011,0.774], + [34013,0.847], + [34015,0.919], + [34017,0.835], + [34019,0.946], + [34021,0.876], + [34023,0.89], + [34025,0.927], + [34027,0.94], + [34029,0.91], + [34031,0.825], + [34033,0.866], + [34035,0.942], + [34037,0.939], + [34039,0.858], + [34041,0.904], + [35001,0.881], + [35003,0.923], + [35005,0.781], + [35006,0.801], + [35007,0.886], + [35009,0.831], + [35011,0.859], + [35013,0.789], + [35015,0.846], + [35017,0.86], + [35019,0.76], + [35021,0.89], + [35023,0.769], + [35025,0.718], + [35027,0.895], + [35028,0.972], + [35029,0.693], + [35031,0.738], + [35033,0.878], + [35035,0.837], + [35037,0.835], + [35039,0.842], + [35041,0.799], + [35043,0.909], + [35045,0.836], + [35047,0.818], + [35049,0.883], + [35051,0.829], + [35053,0.797], + [35055,0.877], + [35057,0.822], + [35059,0.783], + [35061,0.816], + [36001,0.927], + [36003,0.891], + [36005,0.711], + [36007,0.903], + [36009,0.882], + [36011,0.876], + [36013,0.882], + [36015,0.902], + [36017,0.869], + [36019,0.863], + [36021,0.889], + [36023,0.904], + [36025,0.877], + [36027,0.902], + [36029,0.908], + [36031,0.895], + [36033,0.854], + [36035,0.867], + [36037,0.909], + [36039,0.859], + [36041,0.862], + [36043,0.901], + [36045,0.902], + [36047,0.8], + [36049,0.891], + [36051,0.89], + [36053,0.904], + [36055,0.904], + [36057,0.845], + [36059,0.908], + [36061,0.87], + [36063,0.909], + [36065,0.881], + [36067,0.905], + [36069,0.927], + [36071,0.894], + [36073,0.864], + [36075,0.865], + [36077,0.905], + [36079,0.927], + [36081,0.807], + [36083,0.913], + [36085,0.889], + [36087,0.872], + [36089,0.881], + [36091,0.941], + [36093,0.903], + [36095,0.885], + [36097,0.9], + [36099,0.855], + [36101,0.896], + [36103,0.901], + [36105,0.863], + [36107,0.903], + [36109,0.945], + [36111,0.901], + [36113,0.911], + [36115,0.885], + [36117,0.9], + [36119,0.876], + [36121,0.881], + [36123,0.852], + [37001,0.848], + [37003,0.805], + [37005,0.81], + [37007,0.804], + [37009,0.833], + [37011,0.79], + [37013,0.847], + [37015,0.748], + [37017,0.784], + [37019,0.88], + [37021,0.9], + [37023,0.796], + [37025,0.89], + [37027,0.775], + [37029,0.833], + [37031,0.899], + [37033,0.752], + [37035,0.834], + [37037,0.868], + [37039,0.842], + [37041,0.842], + [37043,0.88], + [37045,0.835], + [37047,0.807], + [37049,0.874], + [37051,0.902], + [37053,0.872], + [37055,0.925], + [37057,0.824], + [37059,0.855], + [37061,0.721], + [37063,0.874], + [37065,0.774], + [37067,0.879], + [37069,0.832], + [37071,0.832], + [37073,0.854], + [37075,0.791], + [37077,0.816], + [37079,0.75], + [37081,0.884], + [37083,0.768], + [37085,0.858], + [37087,0.87], + [37089,0.887], + [37091,0.804], + [37093,0.847], + [37095,0.806], + [37097,0.879], + [37099,0.868], + [37101,0.849], + [37103,0.815], + [37105,0.809], + [37107,0.803], + [37109,0.839], + [37111,0.824], + [37113,0.877], + [37115,0.825], + [37117,0.837], + [37119,0.896], + [37121,0.817], + [37123,0.764], + [37125,0.896], + [37127,0.841], + [37129,0.923], + [37131,0.783], + [37133,0.91], + [37135,0.924], + [37137,0.867], + [37139,0.854], + [37141,0.855], + [37143,0.849], + [37145,0.847], + [37147,0.888], + [37149,0.878], + [37151,0.799], + [37153,0.802], + [37155,0.763], + [37157,0.81], + [37159,0.839], + [37161,0.81], + [37163,0.757], + [37165,0.785], + [37167,0.847], + [37169,0.822], + [37171,0.776], + [37173,0.802], + [37175,0.883], + [37177,0.729], + [37179,0.891], + [37181,0.764], + [37183,0.924], + [37185,0.791], + [37187,0.793], + [37189,0.88], + [37191,0.83], + [37193,0.769], + [37195,0.802], + [37197,0.781], + [37199,0.833], + [38001,0.959], + [38003,0.909], + [38005,0.85], + [38007,0.901], + [38009,0.909], + [38011,0.897], + [38013,0.89], + [38015,0.934], + [38017,0.945], + [38019,0.91], + [38021,0.878], + [38023,0.883], + [38025,0.911], + [38027,0.892], + [38029,0.849], + [38031,0.887], + [38033,0.924], + [38035,0.937], + [38037,0.887], + [38039,0.877], + [38041,0.879], + [38043,0.909], + [38045,0.862], + [38047,0.844], + [38049,0.9], + [38051,0.816], + [38053,0.924], + [38055,0.915], + [38057,0.906], + [38059,0.921], + [38061,0.918], + [38063,0.916], + [38065,0.879], + [38067,0.889], + [38069,0.883], + [38071,0.909], + [38073,0.9], + [38075,0.922], + [38077,0.915], + [38079,0.84], + [38081,0.918], + [38083,0.868], + [38085,0.857], + [38087,0.886], + [38089,0.907], + [38091,0.941], + [38093,0.898], + [38095,0.923], + [38097,0.922], + [38099,0.869], + [38101,0.934], + [38103,0.848], + [38105,0.923], + [39001,0.783], + [39003,0.893], + [39005,0.874], + [39007,0.854], + [39009,0.897], + [39011,0.928], + [39013,0.899], + [39015,0.852], + [39017,0.896], + [39019,0.87], + [39021,0.892], + [39023,0.872], + [39025,0.896], + [39027,0.885], + [39029,0.876], + [39031,0.858], + [39033,0.885], + [39035,0.885], + [39037,0.889], + [39039,0.899], + [39041,0.967], + [39043,0.906], + [39045,0.917], + [39047,0.874], + [39049,0.904], + [39051,0.904], + [39053,0.805], + [39055,0.911], + [39057,0.926], + [39059,0.845], + [39061,0.901], + [39063,0.925], + [39065,0.895], + [39067,0.859], + [39069,0.912], + [39071,0.839], + [39073,0.884], + [39075,0.584], + [39077,0.877], + [39079,0.842], + [39081,0.898], + [39083,0.896], + [39085,0.92], + [39087,0.856], + [39089,0.904], + [39091,0.897], + [39093,0.892], + [39095,0.888], + [39097,0.868], + [39099,0.901], + [39101,0.866], + [39103,0.937], + [39105,0.839], + [39107,0.917], + [39109,0.891], + [39111,0.875], + [39113,0.896], + [39115,0.878], + [39117,0.861], + [39119,0.865], + [39121,0.841], + [39123,0.923], + [39125,0.902], + [39127,0.84], + [39129,0.871], + [39131,0.782], + [39133,0.919], + [39135,0.888], + [39137,0.928], + [39139,0.872], + [39141,0.857], + [39143,0.893], + [39145,0.841], + [39147,0.908], + [39149,0.907], + [39151,0.904], + [39153,0.909], + [39155,0.889], + [39157,0.859], + [39159,0.92], + [39161,0.916], + [39163,0.809], + [39165,0.929], + [39167,0.902], + [39169,0.854], + [39171,0.886], + [39173,0.941], + [39175,0.903], + [40001,0.794], + [40003,0.886], + [40005,0.818], + [40007,0.842], + [40009,0.845], + [40011,0.851], + [40013,0.861], + [40015,0.858], + [40017,0.918], + [40019,0.866], + [40021,0.857], + [40023,0.806], + [40025,0.845], + [40027,0.913], + [40029,0.829], + [40031,0.896], + [40033,0.877], + [40035,0.857], + [40037,0.863], + [40039,0.879], + [40041,0.845], + [40043,0.905], + [40045,0.879], + [40047,0.873], + [40049,0.846], + [40051,0.877], + [40053,0.911], + [40055,0.858], + [40057,0.77], + [40059,0.82], + [40061,0.805], + [40063,0.797], + [40065,0.825], + [40067,0.838], + [40069,0.81], + [40071,0.87], + [40073,0.883], + [40075,0.847], + [40077,0.842], + [40079,0.818], + [40081,0.851], + [40083,0.903], + [40085,0.831], + [40087,0.88], + [40089,0.817], + [40091,0.843], + [40093,0.88], + [40095,0.803], + [40097,0.862], + [40099,0.829], + [40101,0.856], + [40103,0.885], + [40105,0.857], + [40107,0.79], + [40109,0.864], + [40111,0.873], + [40113,0.881], + [40115,0.839], + [40117,0.876], + [40119,0.912], + [40121,0.861], + [40123,0.885], + [40125,0.865], + [40127,0.821], + [40129,0.92], + [40131,0.913], + [40133,0.838], + [40135,0.816], + [40137,0.869], + [40139,0.717], + [40141,0.777], + [40143,0.888], + [40145,0.896], + [40147,0.908], + [40149,0.88], + [40151,0.879], + [40153,0.874], + [41001,0.904], + [41003,0.95], + [41005,0.933], + [41007,0.92], + [41009,0.903], + [41011,0.889], + [41013,0.876], + [41015,0.897], + [41017,0.93], + [41019,0.891], + [41021,0.9], + [41023,0.896], + [41025,0.895], + [41027,0.803], + [41029,0.89], + [41031,0.836], + [41033,0.888], + [41035,0.876], + [41037,0.839], + [41039,0.911], + [41041,0.892], + [41043,0.896], + [41045,0.802], + [41047,0.851], + [41049,0.752], + [41051,0.906], + [41053,0.91], + [41055,0.934], + [41057,0.898], + [41059,0.827], + [41061,0.927], + [41063,0.933], + [41065,0.859], + [41067,0.908], + [41069,0.916], + [41071,0.879], + [42001,0.879], + [42003,0.939], + [42005,0.891], + [42007,0.919], + [42009,0.867], + [42011,0.855], + [42013,0.906], + [42015,0.889], + [42017,0.936], + [42019,0.935], + [42021,0.904], + [42023,0.872], + [42025,0.892], + [42027,0.933], + [42029,0.929], + [42031,0.885], + [42033,0.871], + [42035,0.876], + [42037,0.89], + [42039,0.883], + [42041,0.913], + [42043,0.891], + [42045,0.924], + [42047,0.916], + [42049,0.911], + [42051,0.873], + [42053,0.807], + [42055,0.866], + [42057,0.87], + [42059,0.867], + [42061,0.886], + [42063,0.89], + [42065,0.891], + [42067,0.824], + [42069,0.9], + [42071,0.847], + [42073,0.895], + [42075,0.861], + [42077,0.88], + [42079,0.892], + [42081,0.888], + [42083,0.896], + [42085,0.895], + [42087,0.831], + [42089,0.896], + [42091,0.94], + [42093,0.899], + [42095,0.904], + [42097,0.858], + [42099,0.882], + [42101,0.827], + [42103,0.907], + [42105,0.875], + [42107,0.879], + [42109,0.829], + [42111,0.872], + [42113,0.89], + [42115,0.889], + [42117,0.891], + [42119,0.851], + [42121,0.889], + [42123,0.912], + [42125,0.917], + [42127,0.899], + [42129,0.93], + [42131,0.917], + [42133,0.885], + [44001,0.904], + [44003,0.914], + [44005,0.931], + [44007,0.832], + [44009,0.935], + [45001,0.783], + [45003,0.855], + [45005,0.746], + [45007,0.839], + [45009,0.776], + [45011,0.795], + [45013,0.924], + [45015,0.882], + [45017,0.839], + [45019,0.902], + [45021,0.782], + [45023,0.796], + [45025,0.765], + [45027,0.796], + [45029,0.835], + [45031,0.809], + [45033,0.728], + [45035,0.899], + [45037,0.803], + [45039,0.822], + [45041,0.847], + [45043,0.86], + [45045,0.869], + [45047,0.825], + [45049,0.8], + [45051,0.885], + [45053,0.783], + [45055,0.859], + [45057,0.842], + [45059,0.795], + [45061,0.776], + [45063,0.893], + [45065,0.809], + [45067,0.799], + [45069,0.744], + [45071,0.781], + [45073,0.837], + [45075,0.843], + [45077,0.842], + [45079,0.906], + [45081,0.781], + [45083,0.836], + [45085,0.827], + [45087,0.798], + [45089,0.793], + [45091,0.885], + [46003,0.885], + [46005,0.833], + [46007,0.789], + [46009,0.889], + [46011,0.958], + [46013,0.923], + [46015,0.862], + [46017,0.776], + [46019,0.91], + [46021,0.905], + [46023,0.883], + [46025,0.896], + [46027,0.948], + [46029,0.918], + [46031,0.817], + [46033,0.934], + [46035,0.905], + [46037,0.889], + [46039,0.916], + [46041,0.85], + [46043,0.857], + [46045,0.889], + [46047,0.931], + [46049,0.922], + [46051,0.902], + [46053,0.883], + [46055,0.907], + [46057,0.928], + [46059,0.918], + [46061,0.922], + [46063,0.93], + [46065,0.913], + [46067,0.869], + [46069,0.93], + [46071,0.873], + [46073,0.888], + [46075,0.917], + [46077,0.906], + [46079,0.94], + [46081,0.94], + [46083,0.951], + [46085,0.881], + [46087,0.893], + [46089,0.788], + [46091,0.89], + [46093,0.934], + [46095,0.835], + [46097,0.902], + [46099,0.915], + [46101,0.91], + [46102,null], + [46103,0.927], + [46105,0.892], + [46107,0.912], + [46109,0.87], + [46111,0.898], + [46115,0.922], + [46117,0.908], + [46119,0.916], + [46121,0.793], + [46123,0.875], + [46125,0.921], + [46127,0.912], + [46129,0.878], + [46135,0.918], + [46137,0.853], + [47001,0.856], + [47003,0.805], + [47005,0.817], + [47007,0.746], + [47009,0.881], + [47011,0.834], + [47013,0.744], + [47015,0.832], + [47017,0.79], + [47019,0.813], + [47021,0.855], + [47023,0.84], + [47025,0.772], + [47027,0.763], + [47029,0.787], + [47031,0.855], + [47033,0.765], + [47035,0.836], + [47037,0.875], + [47039,0.823], + [47041,0.78], + [47043,0.836], + [47045,0.832], + [47047,0.862], + [47049,0.773], + [47051,0.853], + [47053,0.847], + [47055,0.833], + [47057,0.804], + [47059,0.819], + [47061,0.741], + [47063,0.815], + [47065,0.877], + [47067,0.757], + [47069,0.771], + [47071,0.796], + [47073,0.82], + [47075,0.808], + [47077,0.803], + [47079,0.843], + [47081,0.771], + [47083,0.769], + [47085,0.832], + [47087,0.765], + [47089,0.837], + [47091,0.763], + [47093,0.906], + [47095,0.73], + [47097,0.755], + [47099,0.799], + [47101,0.825], + [47103,0.833], + [47105,0.853], + [47107,0.832], + [47109,0.807], + [47111,0.757], + [47113,0.885], + [47115,0.782], + [47117,0.84], + [47119,0.882], + [47121,0.788], + [47123,0.792], + [47125,0.922], + [47127,0.861], + [47129,0.798], + [47131,0.829], + [47133,0.784], + [47135,0.752], + [47137,0.773], + [47139,0.79], + [47141,0.852], + [47143,0.759], + [47145,0.858], + [47147,0.865], + [47149,0.907], + [47151,0.773], + [47153,0.818], + [47155,0.835], + [47157,0.871], + [47159,0.827], + [47161,0.862], + [47163,0.858], + [47165,0.893], + [47167,0.857], + [47169,0.793], + [47171,0.809], + [47173,0.77], + [47175,0.805], + [47177,0.787], + [47179,0.885], + [47181,0.785], + [47183,0.848], + [47185,0.821], + [47187,0.956], + [47189,0.898], + [48001,0.803], + [48003,0.737], + [48005,0.799], + [48007,0.832], + [48009,0.901], + [48011,0.898], + [48013,0.753], + [48015,0.824], + [48017,0.676], + [48019,0.868], + [48021,0.806], + [48023,0.869], + [48025,0.714], + [48027,0.902], + [48029,0.834], + [48031,0.9], + [48033,0.933], + [48035,0.823], + [48037,0.875], + [48039,0.867], + [48041,0.856], + [48043,0.863], + [48045,0.775], + [48047,0.705], + [48049,0.851], + [48051,0.805], + [48053,0.862], + [48055,0.791], + [48057,0.805], + [48059,0.88], + [48061,0.656], + [48063,0.812], + [48065,0.923], + [48067,0.858], + [48069,0.704], + [48071,0.838], + [48073,0.796], + [48075,0.854], + [48077,0.893], + [48079,0.701], + [48081,0.853], + [48083,0.825], + [48085,0.935], + [48087,0.77], + [48089,0.819], + [48091,0.915], + [48093,0.799], + [48095,0.615], + [48097,0.861], + [48099,0.875], + [48101,0.722], + [48103,0.729], + [48105,0.736], + [48107,0.723], + [48109,0.649], + [48111,0.727], + [48113,0.78], + [48115,0.741], + [48117,0.718], + [48119,0.863], + [48121,0.921], + [48123,0.799], + [48125,0.785], + [48127,0.666], + [48129,0.873], + [48131,0.671], + [48133,0.828], + [48135,0.751], + [48137,0.751], + [48139,0.845], + [48141,0.764], + [48143,0.84], + [48145,0.758], + [48147,0.83], + [48149,0.817], + [48151,0.828], + [48153,0.732], + [48155,0.808], + [48157,0.891], + [48159,0.855], + [48161,0.811], + [48163,0.628], + [48165,0.604], + [48167,0.875], + [48169,0.57], + [48171,0.893], + [48173,0.751], + [48175,0.888], + [48177,0.725], + [48179,0.803], + [48181,0.876], + [48183,0.837], + [48185,0.778], + [48187,0.881], + [48189,0.754], + [48191,0.721], + [48193,0.822], + [48195,0.74], + [48197,0.757], + [48199,0.869], + [48201,0.802], + [48203,0.828], + [48205,0.821], + [48207,0.685], + [48209,0.889], + [48211,0.787], + [48213,0.83], + [48215,0.633], + [48217,0.803], + [48219,0.781], + [48221,0.883], + [48223,0.825], + [48225,0.824], + [48227,0.795], + [48229,0.522], + [48231,0.827], + [48233,0.849], + [48235,0.917], + [48237,0.789], + [48239,0.841], + [48241,0.868], + [48243,0.806], + [48245,0.833], + [48247,0.749], + [48249,0.734], + [48251,0.838], + [48253,0.772], + [48255,0.766], + [48257,0.846], + [48259,0.93], + [48261,0.577], + [48263,0.783], + [48265,0.866], + [48267,0.831], + [48269,0.805], + [48271,0.672], + [48273,0.775], + [48275,0.801], + [48277,0.845], + [48279,0.741], + [48281,0.886], + [48283,0.637], + [48285,0.83], + [48287,0.823], + [48289,0.845], + [48291,0.762], + [48293,0.788], + [48295,0.801], + [48297,0.791], + [48299,0.865], + [48301,0.746], + [48303,0.852], + [48305,0.779], + [48307,0.775], + [48309,0.838], + [48311,0.814], + [48313,0.776], + [48315,0.802], + [48317,0.773], + [48319,0.892], + [48321,0.777], + [48323,0.587], + [48325,0.825], + [48327,0.789], + [48329,0.834], + [48331,0.803], + [48333,0.832], + [48335,0.748], + [48337,0.822], + [48339,0.868], + [48341,0.639], + [48343,0.869], + [48345,0.884], + [48347,0.812], + [48349,0.767], + [48351,0.867], + [48353,0.801], + [48355,0.814], + [48357,0.759], + [48359,0.848], + [48361,0.892], + [48363,0.826], + [48365,0.843], + [48367,0.892], + [48369,0.686], + [48371,0.688], + [48373,0.805], + [48375,0.765], + [48377,0.567], + [48379,0.819], + [48381,0.911], + [48383,0.716], + [48385,0.804], + [48387,0.804], + [48389,0.61], + [48391,0.798], + [48393,0.939], + [48395,0.826], + [48397,0.92], + [48399,0.788], + [48401,0.793], + [48403,0.853], + [48405,0.805], + [48407,0.828], + [48409,0.782], + [48411,0.744], + [48413,0.763], + [48415,0.807], + [48417,0.845], + [48419,0.753], + [48421,0.743], + [48423,0.847], + [48425,0.828], + [48427,0.486], + [48429,0.772], + [48431,0.857], + [48433,0.794], + [48435,0.766], + [48437,0.805], + [48439,0.852], + [48441,0.868], + [48443,0.764], + [48445,0.692], + [48447,0.806], + [48449,0.722], + [48451,0.832], + [48453,0.881], + [48455,0.837], + [48457,0.844], + [48459,0.834], + [48461,0.753], + [48463,0.693], + [48465,0.67], + [48467,0.823], + [48469,0.836], + [48471,0.826], + [48473,0.783], + [48475,0.77], + [48477,0.825], + [48479,0.657], + [48481,0.78], + [48483,0.803], + [48485,0.86], + [48487,0.779], + [48489,0.631], + [48491,0.929], + [48493,0.849], + [48495,0.68], + [48497,0.846], + [48499,0.851], + [48501,0.714], + [48503,0.817], + [48505,0.503], + [48507,0.591], + [49001,0.914], + [49003,0.93], + [49005,0.93], + [49007,0.879], + [49009,0.951], + [49011,0.955], + [49013,0.873], + [49015,0.92], + [49017,0.908], + [49019,0.914], + [49021,0.921], + [49023,0.922], + [49025,0.95], + [49027,0.896], + [49029,0.978], + [49031,0.83], + [49033,0.961], + [49035,0.898], + [49037,0.842], + [49039,0.892], + [49041,0.894], + [49043,0.941], + [49045,0.916], + [49047,0.868], + [49049,0.936], + [49051,0.922], + [49053,0.928], + [49055,0.92], + [49057,0.901], + [50001,0.926], + [50003,0.906], + [50005,0.907], + [50007,0.939], + [50009,0.843], + [50011,0.898], + [50013,0.937], + [50015,0.918], + [50017,0.917], + [50019,0.87], + [50021,0.909], + [50023,0.936], + [50025,0.915], + [50027,0.925], + [51001,0.805], + [51003,0.913], + [51005,0.845], + [51007,0.813], + [51009,0.828], + [51011,0.836], + [51013,0.938], + [51015,0.865], + [51017,0.873], + [51019,0.889], + [51021,0.892], + [51023,0.915], + [51025,0.773], + [51027,0.7], + [51029,0.775], + [51031,0.855], + [51033,0.834], + [51035,0.804], + [51036,0.772], + [51037,0.799], + [51041,0.915], + [51043,0.874], + [51045,0.872], + [51047,0.836], + [51049,0.794], + [51051,0.739], + [51053,0.811], + [51057,0.821], + [51059,0.917], + [51061,0.914], + [51063,0.835], + [51065,0.893], + [51067,0.854], + [51069,0.881], + [51071,0.852], + [51073,0.899], + [51075,0.906], + [51077,0.793], + [51079,0.834], + [51081,0.766], + [51083,0.79], + [51085,0.926], + [51087,0.909], + [51089,0.792], + [51091,0.841], + [51093,0.867], + [51095,0.939], + [51097,0.854], + [51099,0.929], + [51101,0.883], + [51103,0.893], + [51105,0.754], + [51107,0.934], + [51109,0.836], + [51111,0.758], + [51113,0.858], + [51115,0.915], + [51117,0.799], + [51119,0.886], + [51121,0.914], + [51125,0.864], + [51127,0.918], + [51131,0.793], + [51133,0.897], + [51135,0.748], + [51137,0.893], + [51139,0.792], + [51141,0.797], + [51143,0.822], + [51145,0.906], + [51147,0.831], + [51149,0.886], + [51153,0.891], + [51155,0.841], + [51157,0.872], + [51159,0.805], + [51161,0.917], + [51163,0.862], + [51165,0.821], + [51167,0.782], + [51169,0.793], + [51171,0.857], + [51173,0.825], + [51175,0.826], + [51177,0.896], + [51179,0.935], + [51181,0.836], + [51183,0.723], + [51185,0.788], + [51187,0.858], + [51191,0.842], + [51193,0.85], + [51195,0.752], + [51197,0.823], + [51199,0.938], + [51510,0.914], + [51520,0.835], + [51530,0.812], + [51540,0.903], + [51550,0.914], + [51570,0.891], + [51580,0.849], + [51590,0.797], + [51595,0.769], + [51600,0.918], + [51610,0.98], + [51620,0.812], + [51630,0.913], + [51640,0.766], + [51650,0.902], + [51660,0.851], + [51670,0.809], + [51678,0.85], + [51680,0.882], + [51683,0.816], + [51685,0.825], + [51690,0.791], + [51700,0.892], + [51710,0.875], + [51720,0.828], + [51730,0.787], + [51735,0.948], + [51740,0.85], + [51750,0.896], + [51760,0.84], + [51770,0.852], + [51775,0.895], + [51790,0.882], + [51800,0.881], + [51810,0.932], + [51820,0.863], + [51830,0.946], + [51840,0.835], + [53001,0.661], + [53003,0.9], + [53005,0.896], + [53007,0.826], + [53009,0.92], + [53011,0.917], + [53013,0.899], + [53015,0.88], + [53017,0.811], + [53019,0.875], + [53021,0.735], + [53023,0.964], + [53025,0.751], + [53027,0.882], + [53029,0.947], + [53031,0.945], + [53033,0.925], + [53035,0.943], + [53037,0.906], + [53039,0.865], + [53041,0.871], + [53043,0.913], + [53045,0.874], + [53047,0.822], + [53049,0.884], + [53051,0.893], + [53053,0.91], + [53055,0.953], + [53057,0.889], + [53059,0.905], + [53061,0.918], + [53063,0.93], + [53065,0.898], + [53067,0.936], + [53069,0.931], + [53071,0.886], + [53073,0.912], + [53075,0.959], + [53077,0.725], + [54001,0.811], + [54003,0.873], + [54005,0.792], + [54007,0.81], + [54009,0.901], + [54011,0.87], + [54013,0.769], + [54015,0.72], + [54017,0.783], + [54019,0.818], + [54021,0.806], + [54023,0.817], + [54025,0.839], + [54027,0.8], + [54029,0.872], + [54031,0.804], + [54033,0.877], + [54035,0.866], + [54037,0.888], + [54039,0.881], + [54041,0.872], + [54043,0.79], + [54045,0.777], + [54047,0.649], + [54049,0.89], + [54051,0.891], + [54053,0.848], + [54055,0.831], + [54057,0.888], + [54059,0.739], + [54061,0.917], + [54063,0.814], + [54065,0.829], + [54067,0.837], + [54069,0.919], + [54071,0.81], + [54073,0.876], + [54075,0.848], + [54077,0.835], + [54079,0.92], + [54081,0.844], + [54083,0.828], + [54085,0.819], + [54087,0.782], + [54089,0.829], + [54091,0.859], + [54093,0.873], + [54095,0.876], + [54097,0.84], + [54099,0.794], + [54101,0.739], + [54103,0.83], + [54105,0.834], + [54107,0.896], + [54109,0.773], + [55001,0.873], + [55003,0.917], + [55005,0.899], + [55007,0.945], + [55009,0.914], + [55011,0.915], + [55013,0.92], + [55015,0.927], + [55017,0.921], + [55019,0.816], + [55021,0.928], + [55023,0.9], + [55025,0.953], + [55027,0.891], + [55029,0.936], + [55031,0.936], + [55033,0.929], + [55035,0.931], + [55037,0.929], + [55039,0.915], + [55041,0.865], + [55043,0.913], + [55045,0.922], + [55047,0.886], + [55049,0.934], + [55051,0.934], + [55053,0.883], + [55055,0.912], + [55057,0.861], + [55059,0.899], + [55061,0.921], + [55063,0.946], + [55065,0.899], + [55067,0.9], + [55069,0.903], + [55071,0.909], + [55073,0.911], + [55075,0.914], + [55077,0.885], + [55078,0.894], + [55079,0.868], + [55081,0.902], + [55083,0.904], + [55085,0.92], + [55087,0.936], + [55089,0.964], + [55091,0.909], + [55093,0.947], + [55095,0.928], + [55097,0.932], + [55099,0.903], + [55101,0.888], + [55103,0.894], + [55105,0.895], + [55107,0.875], + [55109,0.957], + [55111,0.909], + [55113,0.911], + [55115,0.906], + [55117,0.916], + [55119,0.876], + [55121,0.894], + [55123,0.881], + [55125,0.925], + [55127,0.909], + [55129,0.918], + [55131,0.939], + [55133,0.959], + [55135,0.909], + [55137,0.863], + [55139,0.921], + [55141,0.924], + [56001,0.959], + [56003,0.896], + [56005,0.917], + [56007,0.904], + [56009,0.902], + [56011,0.94], + [56013,0.915], + [56015,0.917], + [56017,0.915], + [56019,0.949], + [56021,0.933], + [56023,0.931], + [56025,0.916], + [56027,0.889], + [56029,0.943], + [56031,0.903], + [56033,0.938], + [56035,0.953], + [56037,0.907], + [56039,0.954], + [56041,0.896], + [56043,0.875], + [56045,0.914] + ] +} diff --git a/data/regional/united-states/education/us-education-highschoolgrad-2017.json b/data/regional/united-states/education/us-education-highschoolgrad-2017.json new file mode 100644 index 0000000..5cb2acf --- /dev/null +++ b/data/regional/united-states/education/us-education-highschoolgrad-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Highschool Graduates", + "description" : "Percent of the population that graduated highschool.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","highschool"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.highschoolgrad.2017"], + [1001,0.877], + [1003,0.902], + [1005,0.731], + [1007,0.821], + [1009,0.798], + [1011,0.714], + [1013,0.811], + [1015,0.832], + [1017,0.809], + [1019,0.795], + [1021,0.818], + [1023,0.801], + [1025,0.815], + [1027,0.733], + [1029,0.758], + [1031,0.854], + [1033,0.839], + [1035,0.79], + [1037,0.768], + [1039,0.82], + [1041,0.793], + [1043,0.821], + [1045,0.86], + [1047,0.813], + [1049,0.736], + [1051,0.864], + [1053,0.81], + [1055,0.831], + [1057,0.796], + [1059,0.764], + [1061,0.79], + [1063,0.766], + [1065,0.811], + [1067,0.806], + [1069,0.853], + [1071,0.814], + [1073,0.894], + [1075,0.795], + [1077,0.859], + [1079,0.78], + [1081,0.899], + [1083,0.837], + [1085,0.76], + [1087,0.816], + [1089,0.908], + [1091,0.832], + [1093,0.807], + [1095,0.8], + [1097,0.863], + [1099,0.83], + [1101,0.857], + [1103,0.825], + [1105,0.8], + [1107,0.798], + [1109,0.811], + [1111,0.786], + [1113,0.829], + [1115,0.842], + [1117,0.921], + [1119,0.827], + [1121,0.805], + [1123,0.808], + [1125,0.882], + [1127,0.8], + [1129,0.824], + [1131,0.791], + [1133,0.772], + [2013,0.858], + [2016,0.883], + [2020,0.934], + [2050,0.802], + [2060,0.926], + [2068,0.987], + [2070,0.864], + [2090,0.946], + [2100,0.966], + [2105,0.903], + [2110,0.96], + [2122,0.926], + [2130,0.919], + [2150,0.885], + [2158,null], + [2164,0.877], + [2170,0.921], + [2180,0.849], + [2185,0.884], + [2188,0.807], + [2195,0.895], + [2198,0.9], + [2220,0.935], + [2230,0.924], + [2240,0.915], + [2261,0.959], + [2275,0.89], + [2282,0.919], + [2290,0.847], + [4001,0.786], + [4003,0.871], + [4005,0.897], + [4007,0.85], + [4009,0.858], + [4011,0.897], + [4012,0.772], + [4013,0.871], + [4015,0.847], + [4017,0.826], + [4019,0.882], + [4021,0.852], + [4023,0.754], + [4025,0.902], + [4027,0.716], + [5001,0.826], + [5003,0.83], + [5005,0.873], + [5007,0.875], + [5009,0.852], + [5011,0.814], + [5013,0.842], + [5015,0.857], + [5017,0.802], + [5019,0.882], + [5021,0.785], + [5023,0.844], + [5025,0.873], + [5027,0.848], + [5029,0.852], + [5031,0.883], + [5033,0.859], + [5035,0.814], + [5037,0.804], + [5039,0.831], + [5041,0.774], + [5043,0.832], + [5045,0.912], + [5047,0.809], + [5049,0.845], + [5051,0.882], + [5053,0.901], + [5055,0.866], + [5057,0.801], + [5059,0.856], + [5061,0.813], + [5063,0.851], + [5065,0.829], + [5067,0.774], + [5069,0.853], + [5071,0.795], + [5073,0.807], + [5075,0.84], + [5077,0.7], + [5079,0.803], + [5081,0.851], + [5083,0.838], + [5085,0.885], + [5087,0.796], + [5089,0.862], + [5091,0.851], + [5093,0.823], + [5095,0.777], + [5097,0.788], + [5099,0.858], + [5101,0.811], + [5103,0.852], + [5105,0.834], + [5107,0.758], + [5109,0.833], + [5111,0.795], + [5113,0.852], + [5115,0.84], + [5117,0.828], + [5119,0.904], + [5121,0.825], + [5123,0.787], + [5125,0.901], + [5127,0.78], + [5129,0.835], + [5131,0.826], + [5133,0.718], + [5135,0.828], + [5137,0.768], + [5139,0.839], + [5141,0.848], + [5143,0.842], + [5145,0.846], + [5147,0.771], + [5149,0.789], + [6001,0.875], + [6003,0.898], + [6005,0.897], + [6007,0.888], + [6009,0.9], + [6011,0.694], + [6013,0.891], + [6015,0.816], + [6017,0.929], + [6019,0.747], + [6021,0.725], + [6023,0.905], + [6025,0.684], + [6027,0.886], + [6029,0.738], + [6031,0.729], + [6033,0.847], + [6035,0.823], + [6037,0.782], + [6039,0.716], + [6041,0.932], + [6043,0.901], + [6045,0.869], + [6047,0.689], + [6049,0.855], + [6051,0.847], + [6053,0.712], + [6055,0.847], + [6057,0.935], + [6059,0.847], + [6061,0.945], + [6063,0.936], + [6065,0.811], + [6067,0.87], + [6069,0.791], + [6071,0.792], + [6073,0.867], + [6075,0.879], + [6077,0.784], + [6079,0.905], + [6081,0.889], + [6083,0.804], + [6085,0.876], + [6087,0.864], + [6089,0.907], + [6091,0.929], + [6093,0.893], + [6095,0.876], + [6097,0.877], + [6099,0.778], + [6101,0.787], + [6103,0.84], + [6105,0.898], + [6107,0.686], + [6109,0.907], + [6111,0.84], + [6113,0.861], + [6115,0.821], + [8001,0.826], + [8003,0.831], + [8005,0.923], + [8007,0.905], + [8009,0.855], + [8011,0.849], + [8013,0.946], + [8014,0.958], + [8015,0.916], + [8017,0.903], + [8019,0.979], + [8021,0.85], + [8023,0.778], + [8025,0.849], + [8027,0.937], + [8029,0.889], + [8031,0.867], + [8033,0.909], + [8035,0.979], + [8037,0.899], + [8039,0.963], + [8041,0.937], + [8043,0.898], + [8045,0.875], + [8047,0.98], + [8049,0.954], + [8051,0.957], + [8053,0.928], + [8055,0.905], + [8057,0.851], + [8059,0.943], + [8061,0.954], + [8063,0.868], + [8065,0.868], + [8067,0.952], + [8069,0.958], + [8071,0.873], + [8073,0.878], + [8075,0.88], + [8077,0.902], + [8079,0.964], + [8081,0.901], + [8083,0.9], + [8085,0.893], + [8087,0.805], + [8089,0.853], + [8091,0.98], + [8093,0.964], + [8095,0.893], + [8097,0.953], + [8099,0.813], + [8101,0.888], + [8103,0.922], + [8105,0.833], + [8107,0.961], + [8109,0.805], + [8111,0.965], + [8113,0.936], + [8115,0.908], + [8117,0.934], + [8119,0.951], + [8121,0.93], + [8123,0.877], + [8125,0.854], + [9001,0.894], + [9003,0.894], + [9005,0.92], + [9007,0.94], + [9009,0.899], + [9011,0.919], + [9013,0.941], + [9015,0.884], + [10001,0.874], + [10003,0.91], + [10005,0.868], + [11001,0.903], + [12001,0.921], + [12003,0.842], + [12005,0.891], + [12007,0.782], + [12009,0.917], + [12011,0.886], + [12013,0.774], + [12015,0.9], + [12017,0.874], + [12019,0.911], + [12021,0.865], + [12023,0.87], + [12027,0.705], + [12029,0.791], + [12031,0.894], + [12033,0.906], + [12035,0.919], + [12037,0.814], + [12039,0.797], + [12041,0.845], + [12043,0.737], + [12045,0.843], + [12047,0.754], + [12049,0.72], + [12051,0.651], + [12053,0.878], + [12055,0.84], + [12057,0.882], + [12059,0.761], + [12061,0.884], + [12063,0.797], + [12065,0.809], + [12067,0.739], + [12069,0.886], + [12071,0.873], + [12073,0.932], + [12075,0.835], + [12077,0.798], + [12079,0.822], + [12081,0.889], + [12083,0.868], + [12085,0.903], + [12086,0.81], + [12087,0.912], + [12089,0.914], + [12091,0.916], + [12093,0.739], + [12095,0.882], + [12097,0.86], + [12099,0.881], + [12101,0.887], + [12103,0.907], + [12105,0.843], + [12107,0.796], + [12109,0.944], + [12111,0.862], + [12113,0.907], + [12115,0.925], + [12117,0.941], + [12119,0.916], + [12121,0.802], + [12123,0.795], + [12125,0.759], + [12127,0.896], + [12129,0.875], + [12131,0.859], + [12133,0.805], + [13001,0.751], + [13003,0.699], + [13005,0.825], + [13007,0.776], + [13009,0.82], + [13011,0.77], + [13013,0.832], + [13015,0.827], + [13017,0.814], + [13019,0.801], + [13021,0.851], + [13023,0.849], + [13025,0.817], + [13027,0.805], + [13029,0.915], + [13031,0.867], + [13033,0.8], + [13035,0.773], + [13037,0.743], + [13039,0.915], + [13043,0.757], + [13045,0.826], + [13047,0.866], + [13049,0.772], + [13051,0.893], + [13053,0.927], + [13055,0.73], + [13057,0.908], + [13059,0.867], + [13061,0.827], + [13063,0.841], + [13065,0.736], + [13067,0.912], + [13069,0.783], + [13071,0.731], + [13073,0.923], + [13075,0.787], + [13077,0.89], + [13079,0.844], + [13081,0.809], + [13083,0.791], + [13085,0.868], + [13087,0.806], + [13089,0.887], + [13091,0.83], + [13093,0.73], + [13095,0.827], + [13097,0.882], + [13099,0.804], + [13101,0.693], + [13103,0.87], + [13105,0.786], + [13107,0.799], + [13109,0.763], + [13111,0.858], + [13113,0.949], + [13115,0.806], + [13117,0.925], + [13119,0.773], + [13121,0.917], + [13123,0.811], + [13125,0.776], + [13127,0.881], + [13129,0.769], + [13131,0.777], + [13133,0.824], + [13135,0.875], + [13137,0.78], + [13139,0.782], + [13141,0.698], + [13143,0.79], + [13145,0.891], + [13147,0.812], + [13149,0.803], + [13151,0.901], + [13153,0.907], + [13155,0.821], + [13157,0.828], + [13159,0.761], + [13161,0.77], + [13163,0.745], + [13165,0.787], + [13167,0.756], + [13169,0.883], + [13171,0.855], + [13173,0.799], + [13175,0.839], + [13177,0.889], + [13179,0.909], + [13181,0.83], + [13183,0.865], + [13185,0.844], + [13187,0.833], + [13189,0.812], + [13191,0.828], + [13193,0.728], + [13195,0.823], + [13197,0.771], + [13199,0.772], + [13201,0.821], + [13205,0.766], + [13207,0.842], + [13209,0.813], + [13211,0.866], + [13213,0.676], + [13215,0.874], + [13217,0.852], + [13219,0.943], + [13221,0.779], + [13223,0.901], + [13225,0.858], + [13227,0.837], + [13229,0.819], + [13231,0.89], + [13233,0.767], + [13235,0.801], + [13237,0.859], + [13239,0.703], + [13241,0.838], + [13243,0.737], + [13245,0.83], + [13247,0.869], + [13249,0.813], + [13251,0.82], + [13253,0.84], + [13255,0.806], + [13257,0.816], + [13259,0.657], + [13261,0.787], + [13263,0.792], + [13265,0.691], + [13267,0.744], + [13269,0.768], + [13271,0.704], + [13273,0.758], + [13275,0.825], + [13277,0.822], + [13279,0.806], + [13281,0.891], + [13283,0.763], + [13285,0.836], + [13287,0.765], + [13289,0.686], + [13291,0.887], + [13293,0.792], + [13295,0.813], + [13297,0.868], + [13299,0.824], + [13301,0.751], + [13303,0.787], + [13305,0.813], + [13307,0.809], + [13309,0.769], + [13311,0.852], + [13313,0.689], + [13315,0.807], + [13317,0.786], + [13319,0.826], + [13321,0.781], + [15001,0.923], + [15003,0.914], + [15005,0.873], + [15007,0.918], + [15009,0.921], + [16001,0.947], + [16003,0.891], + [16005,0.92], + [16007,0.938], + [16009,0.863], + [16011,0.868], + [16013,0.887], + [16015,0.935], + [16017,0.911], + [16019,0.915], + [16021,0.897], + [16023,0.921], + [16025,0.905], + [16027,0.846], + [16029,0.92], + [16031,0.81], + [16033,0.707], + [16035,0.894], + [16037,0.897], + [16039,0.878], + [16041,0.907], + [16043,0.879], + [16045,0.877], + [16047,0.779], + [16049,0.899], + [16051,0.878], + [16053,0.759], + [16055,0.929], + [16057,0.962], + [16059,0.9], + [16061,0.897], + [16063,0.781], + [16065,0.954], + [16067,0.774], + [16069,0.92], + [16071,0.91], + [16073,0.751], + [16075,0.869], + [16077,0.766], + [16079,0.852], + [16081,0.927], + [16083,0.877], + [16085,0.944], + [16087,0.839], + [17001,0.917], + [17003,0.785], + [17005,0.891], + [17007,0.868], + [17009,0.838], + [17011,0.911], + [17013,0.913], + [17015,0.915], + [17017,0.845], + [17019,0.951], + [17021,0.889], + [17023,0.915], + [17025,0.89], + [17027,0.891], + [17029,0.908], + [17031,0.862], + [17033,0.868], + [17035,0.886], + [17037,0.927], + [17039,0.916], + [17041,0.826], + [17043,0.924], + [17045,0.886], + [17047,0.896], + [17049,0.921], + [17051,0.826], + [17053,0.896], + [17055,0.872], + [17057,0.876], + [17059,0.874], + [17061,0.867], + [17063,0.933], + [17065,0.902], + [17067,0.926], + [17069,0.816], + [17071,0.896], + [17073,0.892], + [17075,0.895], + [17077,0.921], + [17079,0.887], + [17081,0.853], + [17083,0.914], + [17085,0.92], + [17087,0.831], + [17089,0.834], + [17091,0.879], + [17093,0.92], + [17095,0.88], + [17097,0.903], + [17099,0.887], + [17101,0.828], + [17103,0.889], + [17105,0.893], + [17107,0.892], + [17109,0.929], + [17111,0.928], + [17113,0.958], + [17115,0.9], + [17117,0.906], + [17119,0.923], + [17121,0.889], + [17123,0.929], + [17125,0.888], + [17127,0.854], + [17129,0.926], + [17131,0.922], + [17133,0.952], + [17135,0.867], + [17137,0.915], + [17139,0.853], + [17141,0.89], + [17143,0.9], + [17145,0.85], + [17147,0.946], + [17149,0.882], + [17151,0.866], + [17153,0.858], + [17155,0.925], + [17157,0.84], + [17159,0.877], + [17161,0.888], + [17163,0.907], + [17165,0.868], + [17167,0.924], + [17169,0.884], + [17171,0.927], + [17173,0.921], + [17175,0.904], + [17177,0.914], + [17179,0.928], + [17181,0.875], + [17183,0.872], + [17185,0.896], + [17187,0.879], + [17189,0.921], + [17191,0.87], + [17193,0.897], + [17195,0.896], + [17197,0.908], + [17199,0.909], + [17201,0.874], + [17203,0.946], + [18001,0.836], + [18003,0.894], + [18005,0.902], + [18007,0.895], + [18009,0.877], + [18011,0.937], + [18013,0.9], + [18015,0.886], + [18017,0.831], + [18019,0.885], + [18021,0.907], + [18023,0.862], + [18025,0.819], + [18027,0.741], + [18029,0.908], + [18031,0.896], + [18033,0.897], + [18035,0.895], + [18037,0.885], + [18039,0.808], + [18041,0.82], + [18043,0.894], + [18045,0.885], + [18047,0.876], + [18049,0.86], + [18051,0.908], + [18053,0.87], + [18055,0.87], + [18057,0.962], + [18059,0.939], + [18061,0.892], + [18063,0.936], + [18065,0.887], + [18067,0.889], + [18069,0.905], + [18071,0.869], + [18073,0.877], + [18075,0.828], + [18077,0.89], + [18079,0.854], + [18081,0.917], + [18083,0.882], + [18085,0.848], + [18087,0.633], + [18089,0.881], + [18091,0.879], + [18093,0.89], + [18095,0.877], + [18097,0.856], + [18099,0.851], + [18101,0.835], + [18103,0.853], + [18105,0.919], + [18107,0.897], + [18109,0.879], + [18111,0.861], + [18113,0.85], + [18115,0.883], + [18117,0.833], + [18119,0.853], + [18121,0.855], + [18123,0.879], + [18125,0.86], + [18127,0.923], + [18129,0.936], + [18131,0.887], + [18133,0.882], + [18135,0.858], + [18137,0.88], + [18139,0.848], + [18141,0.879], + [18143,0.849], + [18145,0.881], + [18147,0.898], + [18149,0.831], + [18151,0.893], + [18153,0.865], + [18155,0.826], + [18157,0.913], + [18159,0.89], + [18161,0.884], + [18163,0.895], + [18165,0.905], + [18167,0.878], + [18169,0.887], + [18171,0.91], + [18173,0.93], + [18175,0.851], + [18177,0.855], + [18179,0.913], + [18181,0.891], + [18183,0.911], + [19001,0.94], + [19003,0.938], + [19005,0.869], + [19007,0.896], + [19009,0.905], + [19011,0.928], + [19013,0.911], + [19015,0.938], + [19017,0.959], + [19019,0.93], + [19021,0.794], + [19023,0.924], + [19025,0.93], + [19027,0.926], + [19029,0.894], + [19031,0.942], + [19033,0.935], + [19035,0.907], + [19037,0.908], + [19039,0.906], + [19041,0.934], + [19043,0.912], + [19045,0.917], + [19047,0.787], + [19049,0.954], + [19051,0.853], + [19053,0.86], + [19055,0.914], + [19057,0.92], + [19059,0.956], + [19061,0.923], + [19063,0.897], + [19065,0.91], + [19067,0.899], + [19069,0.892], + [19071,0.928], + [19073,0.923], + [19075,0.952], + [19077,0.924], + [19079,0.926], + [19081,0.934], + [19083,0.918], + [19085,0.92], + [19087,0.921], + [19089,0.896], + [19091,0.918], + [19093,0.936], + [19095,0.925], + [19097,0.915], + [19099,0.931], + [19101,0.948], + [19103,0.951], + [19105,0.923], + [19107,0.923], + [19109,0.949], + [19111,0.923], + [19113,0.947], + [19115,0.815], + [19117,0.927], + [19119,0.906], + [19121,0.944], + [19123,0.919], + [19125,0.932], + [19127,0.851], + [19129,0.926], + [19131,0.905], + [19133,0.911], + [19135,0.902], + [19137,0.911], + [19139,0.87], + [19141,0.924], + [19143,0.874], + [19145,0.898], + [19147,0.944], + [19149,0.926], + [19151,0.921], + [19153,0.914], + [19155,0.897], + [19157,0.927], + [19159,0.92], + [19161,0.921], + [19163,0.924], + [19165,0.911], + [19167,0.9], + [19169,0.968], + [19171,0.911], + [19173,0.91], + [19175,0.913], + [19177,0.876], + [19179,0.874], + [19181,0.957], + [19183,0.914], + [19185,0.893], + [19187,0.914], + [19189,0.916], + [19191,0.947], + [19193,0.858], + [19195,0.923], + [19197,0.905], + [20001,0.924], + [20003,0.908], + [20005,0.924], + [20007,0.926], + [20009,0.876], + [20011,0.904], + [20013,0.933], + [20015,0.923], + [20017,0.92], + [20019,0.876], + [20021,0.877], + [20023,0.926], + [20025,0.934], + [20027,0.922], + [20029,0.913], + [20031,0.926], + [20033,0.925], + [20035,0.9], + [20037,0.903], + [20039,0.913], + [20041,0.902], + [20043,0.901], + [20045,0.953], + [20047,0.825], + [20049,0.899], + [20051,0.932], + [20053,0.908], + [20055,0.713], + [20057,0.708], + [20059,0.92], + [20061,0.928], + [20063,0.919], + [20065,0.933], + [20067,0.728], + [20069,0.764], + [20071,0.886], + [20073,0.899], + [20075,0.825], + [20077,0.889], + [20079,0.912], + [20081,0.694], + [20083,0.926], + [20085,0.95], + [20087,0.926], + [20089,0.948], + [20091,0.957], + [20093,0.781], + [20095,0.931], + [20097,0.901], + [20099,0.872], + [20101,0.935], + [20103,0.916], + [20105,0.942], + [20107,0.893], + [20109,0.916], + [20111,0.891], + [20113,0.914], + [20115,0.898], + [20117,0.927], + [20119,0.821], + [20121,0.949], + [20123,0.953], + [20125,0.892], + [20127,0.882], + [20129,0.856], + [20131,0.925], + [20133,0.919], + [20135,0.912], + [20137,0.903], + [20139,0.909], + [20141,0.92], + [20143,0.948], + [20145,0.904], + [20147,0.932], + [20149,0.947], + [20151,0.918], + [20153,0.946], + [20155,0.877], + [20157,0.951], + [20159,0.891], + [20161,0.959], + [20163,0.912], + [20165,0.908], + [20167,0.911], + [20169,0.901], + [20171,0.853], + [20173,0.891], + [20175,0.672], + [20177,0.916], + [20179,0.934], + [20181,0.948], + [20183,0.932], + [20185,0.885], + [20187,0.779], + [20189,0.813], + [20191,0.921], + [20193,0.952], + [20195,0.932], + [20197,0.933], + [20199,0.915], + [20201,0.919], + [20203,0.844], + [20205,0.878], + [20207,0.884], + [20209,0.788], + [21001,0.769], + [21003,0.795], + [21005,0.882], + [21007,0.853], + [21009,0.822], + [21011,0.76], + [21013,0.672], + [21015,0.927], + [21017,0.845], + [21019,0.888], + [21021,0.868], + [21023,0.844], + [21025,0.728], + [21027,0.804], + [21029,0.873], + [21031,0.778], + [21033,0.889], + [21035,0.884], + [21037,0.905], + [21039,0.835], + [21041,0.765], + [21043,0.789], + [21045,0.743], + [21047,0.856], + [21049,0.859], + [21051,0.63], + [21053,0.717], + [21055,0.819], + [21057,0.815], + [21059,0.891], + [21061,0.792], + [21063,0.765], + [21065,0.76], + [21067,0.905], + [21069,0.774], + [21071,0.749], + [21073,0.873], + [21075,0.79], + [21077,0.811], + [21079,0.803], + [21081,0.826], + [21083,0.835], + [21085,0.804], + [21087,0.757], + [21089,0.869], + [21091,0.861], + [21093,0.902], + [21095,0.714], + [21097,0.824], + [21099,0.749], + [21101,0.863], + [21103,0.836], + [21105,0.775], + [21107,0.856], + [21109,0.743], + [21111,0.897], + [21113,0.864], + [21115,0.797], + [21117,0.896], + [21119,0.734], + [21121,0.68], + [21123,0.833], + [21125,0.789], + [21127,0.767], + [21129,0.703], + [21131,0.682], + [21133,0.75], + [21135,0.74], + [21137,0.787], + [21139,0.831], + [21141,0.823], + [21143,0.862], + [21145,0.883], + [21147,0.734], + [21149,0.845], + [21151,0.868], + [21153,0.706], + [21155,0.81], + [21157,0.866], + [21159,0.726], + [21161,0.859], + [21163,0.878], + [21165,0.779], + [21167,0.846], + [21169,0.772], + [21171,0.766], + [21173,0.836], + [21175,0.748], + [21177,0.799], + [21179,0.894], + [21181,0.794], + [21183,0.799], + [21185,0.935], + [21187,0.828], + [21189,0.701], + [21191,0.828], + [21193,0.766], + [21195,0.756], + [21197,0.789], + [21199,0.814], + [21201,0.747], + [21203,0.777], + [21205,0.823], + [21207,0.76], + [21209,0.899], + [21211,0.862], + [21213,0.848], + [21215,0.888], + [21217,0.842], + [21219,0.777], + [21221,0.845], + [21223,0.826], + [21225,0.864], + [21227,0.882], + [21229,0.829], + [21231,0.73], + [21233,0.794], + [21235,0.791], + [21237,0.693], + [21239,0.889], + [22001,0.776], + [22003,0.796], + [22005,0.884], + [22007,0.736], + [22009,0.739], + [22011,0.847], + [22013,0.845], + [22015,0.888], + [22017,0.865], + [22019,0.861], + [22021,0.769], + [22023,0.802], + [22025,0.774], + [22027,0.794], + [22029,0.764], + [22031,0.826], + [22033,0.902], + [22035,0.705], + [22037,0.809], + [22039,0.74], + [22041,0.752], + [22043,0.818], + [22045,0.785], + [22047,0.775], + [22049,0.791], + [22051,0.849], + [22053,0.79], + [22055,0.87], + [22057,0.761], + [22059,0.754], + [22061,0.882], + [22063,0.853], + [22065,0.753], + [22067,0.803], + [22069,0.85], + [22071,0.859], + [22073,0.856], + [22075,0.822], + [22077,0.788], + [22079,0.847], + [22081,0.815], + [22083,0.794], + [22085,0.835], + [22087,0.817], + [22089,0.882], + [22091,0.759], + [22093,0.842], + [22095,0.842], + [22097,0.765], + [22099,0.8], + [22101,0.798], + [22103,0.895], + [22105,0.82], + [22107,0.762], + [22109,0.783], + [22111,0.858], + [22113,0.758], + [22115,0.875], + [22117,0.766], + [22119,0.813], + [22121,0.829], + [22123,0.77], + [22125,0.815], + [22127,0.799], + [23001,0.898], + [23003,0.876], + [23005,0.947], + [23007,0.925], + [23009,0.942], + [23011,0.913], + [23013,0.937], + [23015,0.93], + [23017,0.911], + [23019,0.914], + [23021,0.904], + [23023,0.949], + [23025,0.877], + [23027,0.929], + [23029,0.878], + [23031,0.927], + [24001,0.895], + [24003,0.92], + [24005,0.911], + [24009,0.938], + [24011,0.833], + [24013,0.922], + [24015,0.888], + [24017,0.927], + [24019,0.853], + [24021,0.926], + [24023,0.891], + [24025,0.929], + [24027,0.953], + [24029,0.873], + [24031,0.911], + [24033,0.861], + [24035,0.919], + [24037,0.897], + [24039,0.818], + [24041,0.895], + [24043,0.87], + [24045,0.886], + [24047,0.901], + [24510,0.842], + [25001,0.956], + [25003,0.908], + [25005,0.843], + [25007,0.966], + [25009,0.894], + [25011,0.928], + [25013,0.854], + [25015,0.945], + [25017,0.928], + [25019,0.941], + [25021,0.939], + [25023,0.927], + [25025,0.852], + [25027,0.903], + [26001,0.884], + [26003,0.893], + [26005,0.907], + [26007,0.91], + [26009,0.91], + [26011,0.867], + [26013,0.863], + [26015,0.92], + [26017,0.897], + [26019,0.925], + [26021,0.895], + [26023,0.889], + [26025,0.91], + [26027,0.88], + [26029,0.936], + [26031,0.906], + [26033,0.899], + [26035,0.847], + [26037,0.942], + [26039,0.884], + [26041,0.936], + [26043,0.938], + [26045,0.936], + [26047,0.94], + [26049,0.9], + [26051,0.858], + [26053,0.923], + [26055,0.947], + [26057,0.899], + [26059,0.878], + [26061,0.92], + [26063,0.887], + [26065,0.924], + [26067,0.901], + [26069,0.879], + [26071,0.919], + [26073,0.92], + [26075,0.904], + [26077,0.938], + [26079,0.866], + [26081,0.898], + [26083,0.947], + [26085,0.826], + [26087,0.907], + [26089,0.952], + [26091,0.908], + [26093,0.954], + [26095,0.885], + [26097,0.889], + [26099,0.893], + [26101,0.906], + [26103,0.946], + [26105,0.919], + [26107,0.897], + [26109,0.922], + [26111,0.937], + [26113,0.881], + [26115,0.905], + [26117,0.881], + [26119,0.876], + [26121,0.899], + [26123,0.866], + [26125,0.937], + [26127,0.864], + [26129,0.85], + [26131,0.927], + [26133,0.875], + [26135,0.828], + [26137,0.916], + [26139,0.922], + [26141,0.885], + [26143,0.887], + [26145,0.888], + [26147,0.901], + [26149,0.864], + [26151,0.878], + [26153,0.897], + [26155,0.922], + [26157,0.893], + [26159,0.873], + [26161,0.951], + [26163,0.856], + [26165,0.893], + [27001,0.913], + [27003,0.937], + [27005,0.926], + [27007,0.91], + [27009,0.922], + [27011,0.889], + [27013,0.944], + [27015,0.917], + [27017,0.939], + [27019,0.961], + [27021,0.914], + [27023,0.903], + [27025,0.94], + [27027,0.947], + [27029,0.858], + [27031,0.959], + [27033,0.903], + [27035,0.934], + [27037,0.947], + [27039,0.947], + [27041,0.948], + [27043,0.908], + [27045,0.912], + [27047,0.897], + [27049,0.938], + [27051,0.928], + [27053,0.93], + [27055,0.942], + [27057,0.927], + [27059,0.917], + [27061,0.934], + [27063,0.924], + [27065,0.894], + [27067,0.885], + [27069,0.928], + [27071,0.926], + [27073,0.933], + [27075,0.958], + [27077,0.9], + [27079,0.916], + [27081,0.915], + [27083,0.924], + [27085,0.921], + [27087,0.86], + [27089,0.886], + [27091,0.925], + [27093,0.923], + [27095,0.898], + [27097,0.896], + [27099,0.866], + [27101,0.896], + [27103,0.935], + [27105,0.763], + [27107,0.908], + [27109,0.945], + [27111,0.913], + [27113,0.925], + [27115,0.894], + [27117,0.868], + [27119,0.913], + [27121,0.937], + [27123,0.901], + [27125,0.933], + [27127,0.897], + [27129,0.888], + [27131,0.904], + [27133,0.905], + [27135,0.922], + [27137,0.936], + [27139,0.949], + [27141,0.945], + [27143,0.904], + [27145,0.92], + [27147,0.925], + [27149,0.924], + [27151,0.891], + [27153,0.87], + [27155,0.91], + [27157,0.924], + [27159,0.894], + [27161,0.928], + [27163,0.961], + [27165,0.835], + [27167,0.928], + [27169,0.928], + [27171,0.944], + [27173,0.907], + [28001,0.795], + [28003,0.808], + [28005,0.789], + [28007,0.774], + [28009,0.731], + [28011,0.761], + [28013,0.754], + [28015,0.821], + [28017,0.745], + [28019,0.814], + [28021,0.76], + [28023,0.789], + [28025,0.8], + [28027,0.784], + [28029,0.785], + [28031,0.817], + [28033,0.894], + [28035,0.867], + [28037,0.845], + [28039,0.794], + [28041,0.759], + [28043,0.788], + [28045,0.847], + [28047,0.87], + [28049,0.863], + [28051,0.753], + [28053,0.683], + [28055,0.656], + [28057,0.777], + [28059,0.878], + [28061,0.841], + [28063,0.742], + [28065,0.757], + [28067,0.822], + [28069,0.8], + [28071,0.895], + [28073,0.906], + [28075,0.862], + [28077,0.814], + [28079,0.783], + [28081,0.832], + [28083,0.782], + [28085,0.866], + [28087,0.847], + [28089,0.909], + [28091,0.779], + [28093,0.794], + [28095,0.799], + [28097,0.802], + [28099,0.782], + [28101,0.833], + [28103,0.682], + [28105,0.881], + [28107,0.778], + [28109,0.842], + [28111,0.807], + [28113,0.807], + [28115,0.76], + [28117,0.782], + [28119,0.692], + [28121,0.897], + [28123,0.742], + [28125,0.753], + [28127,0.793], + [28129,0.802], + [28131,0.826], + [28133,0.722], + [28135,0.709], + [28137,0.805], + [28139,0.776], + [28141,0.791], + [28143,0.787], + [28145,0.783], + [28147,0.802], + [28149,0.872], + [28151,0.788], + [28153,0.751], + [28155,0.852], + [28157,0.698], + [28159,0.791], + [28161,0.81], + [28163,0.764], + [29001,0.905], + [29003,0.913], + [29005,0.896], + [29007,0.847], + [29009,0.816], + [29011,0.873], + [29013,0.858], + [29015,0.845], + [29017,0.798], + [29019,0.935], + [29021,0.883], + [29023,0.835], + [29025,0.897], + [29027,0.86], + [29029,0.888], + [29031,0.903], + [29033,0.858], + [29035,0.794], + [29037,0.924], + [29039,0.838], + [29041,0.885], + [29043,0.917], + [29045,0.854], + [29047,0.929], + [29049,0.927], + [29051,0.914], + [29053,0.888], + [29055,0.767], + [29057,0.876], + [29059,0.812], + [29061,0.843], + [29063,0.871], + [29065,0.796], + [29067,0.804], + [29069,0.743], + [29071,0.877], + [29073,0.876], + [29075,0.89], + [29077,0.915], + [29079,0.868], + [29081,0.845], + [29083,0.879], + [29085,0.836], + [29087,0.912], + [29089,0.883], + [29091,0.857], + [29093,0.807], + [29095,0.899], + [29097,0.871], + [29099,0.882], + [29101,0.92], + [29103,0.863], + [29105,0.835], + [29107,0.888], + [29109,0.83], + [29111,0.884], + [29113,0.879], + [29115,0.881], + [29117,0.87], + [29119,0.785], + [29121,0.878], + [29123,0.811], + [29125,0.839], + [29127,0.883], + [29129,0.879], + [29131,0.864], + [29133,0.743], + [29135,0.838], + [29137,0.908], + [29139,0.842], + [29141,0.774], + [29143,0.759], + [29145,0.871], + [29147,0.926], + [29149,0.839], + [29151,0.898], + [29153,0.846], + [29155,0.744], + [29157,0.884], + [29159,0.838], + [29161,0.864], + [29163,0.836], + [29165,0.952], + [29167,0.876], + [29169,0.905], + [29171,0.899], + [29173,0.892], + [29175,0.859], + [29177,0.882], + [29179,0.768], + [29181,0.787], + [29183,0.945], + [29185,0.811], + [29186,0.873], + [29187,0.832], + [29189,0.932], + [29195,0.841], + [29197,0.882], + [29199,0.794], + [29201,0.835], + [29203,0.819], + [29205,0.91], + [29207,0.814], + [29209,0.868], + [29211,0.833], + [29213,0.889], + [29215,0.823], + [29217,0.889], + [29219,0.879], + [29221,0.77], + [29223,0.754], + [29225,0.867], + [29227,0.877], + [29229,0.804], + [29510,0.857], + [30001,0.946], + [30003,0.881], + [30005,0.886], + [30007,0.945], + [30009,0.939], + [30011,0.912], + [30013,0.919], + [30015,0.935], + [30017,0.921], + [30019,0.942], + [30021,0.926], + [30023,0.894], + [30025,0.958], + [30027,0.938], + [30029,0.943], + [30031,0.968], + [30033,0.94], + [30035,0.888], + [30037,0.932], + [30039,0.897], + [30041,0.901], + [30043,0.948], + [30045,0.963], + [30047,0.909], + [30049,0.952], + [30051,0.747], + [30053,0.879], + [30055,0.939], + [30057,0.939], + [30059,0.922], + [30061,0.864], + [30063,0.951], + [30065,0.905], + [30067,0.957], + [30069,0.981], + [30071,0.899], + [30073,0.902], + [30075,0.951], + [30077,0.89], + [30079,0.957], + [30081,0.91], + [30083,0.929], + [30085,0.833], + [30087,0.876], + [30089,0.891], + [30091,0.918], + [30093,0.914], + [30095,0.953], + [30097,0.94], + [30099,0.93], + [30101,0.844], + [30103,0.936], + [30105,0.941], + [30107,0.751], + [30109,0.842], + [30111,0.929], + [31001,0.9], + [31003,0.908], + [31005,0.951], + [31007,0.957], + [31009,0.989], + [31011,0.938], + [31013,0.917], + [31015,0.942], + [31017,0.923], + [31019,0.938], + [31021,0.909], + [31023,0.92], + [31025,0.952], + [31027,0.934], + [31029,0.891], + [31031,0.922], + [31033,0.949], + [31035,0.901], + [31037,0.712], + [31039,0.871], + [31041,0.925], + [31043,0.735], + [31045,0.952], + [31047,0.764], + [31049,0.901], + [31051,0.884], + [31053,0.892], + [31055,0.897], + [31057,0.857], + [31059,0.921], + [31061,0.921], + [31063,0.961], + [31065,0.89], + [31067,0.899], + [31069,0.948], + [31071,0.961], + [31073,0.943], + [31075,0.971], + [31077,0.931], + [31079,0.839], + [31081,0.936], + [31083,0.91], + [31085,0.884], + [31087,0.928], + [31089,0.921], + [31091,0.946], + [31093,0.922], + [31095,0.903], + [31097,0.877], + [31099,0.94], + [31101,0.916], + [31103,0.929], + [31105,0.897], + [31107,0.916], + [31109,0.933], + [31111,0.931], + [31113,0.925], + [31115,0.983], + [31117,0.901], + [31119,0.886], + [31121,0.93], + [31123,0.87], + [31125,0.907], + [31127,0.939], + [31129,0.931], + [31131,0.912], + [31133,0.901], + [31135,0.891], + [31137,0.934], + [31139,0.943], + [31141,0.888], + [31143,0.934], + [31145,0.941], + [31147,0.915], + [31149,0.937], + [31151,0.844], + [31153,0.952], + [31155,0.931], + [31157,0.872], + [31159,0.93], + [31161,0.907], + [31163,0.926], + [31165,0.926], + [31167,0.92], + [31169,0.92], + [31171,0.939], + [31173,0.864], + [31175,0.927], + [31177,0.961], + [31179,0.951], + [31181,0.919], + [31183,0.948], + [31185,0.94], + [32001,0.894], + [32003,0.853], + [32005,0.935], + [32007,0.838], + [32009,0.903], + [32011,0.912], + [32013,0.833], + [32015,0.833], + [32017,0.882], + [32019,0.855], + [32021,0.863], + [32023,0.852], + [32027,0.809], + [32029,0.947], + [32031,0.876], + [32033,0.849], + [32510,0.87], + [33001,0.924], + [33003,0.934], + [33005,0.929], + [33007,0.883], + [33009,0.925], + [33011,0.918], + [33013,0.933], + [33015,0.95], + [33017,0.924], + [33019,0.907], + [34001,0.863], + [34003,0.92], + [34005,0.934], + [34007,0.884], + [34009,0.908], + [34011,0.779], + [34013,0.853], + [34015,0.925], + [34017,0.837], + [34019,0.949], + [34021,0.879], + [34023,0.893], + [34025,0.928], + [34027,0.94], + [34029,0.912], + [34031,0.83], + [34033,0.871], + [34035,0.943], + [34037,0.944], + [34039,0.86], + [34041,0.908], + [35001,0.885], + [35003,0.952], + [35005,0.783], + [35006,0.807], + [35007,0.886], + [35009,0.831], + [35011,0.872], + [35013,0.792], + [35015,0.848], + [35017,0.872], + [35019,0.777], + [35021,0.897], + [35023,0.789], + [35025,0.729], + [35027,0.914], + [35028,0.98], + [35029,0.671], + [35031,0.748], + [35033,0.892], + [35035,0.845], + [35037,0.844], + [35039,0.853], + [35041,0.795], + [35043,0.904], + [35045,0.837], + [35047,0.805], + [35049,0.889], + [35051,0.841], + [35053,0.768], + [35055,0.875], + [35057,0.839], + [35059,0.783], + [35061,0.822], + [36001,0.926], + [36003,0.894], + [36005,0.715], + [36007,0.904], + [36009,0.884], + [36011,0.876], + [36013,0.885], + [36015,0.904], + [36017,0.878], + [36019,0.868], + [36021,0.894], + [36023,0.906], + [36025,0.877], + [36027,0.905], + [36029,0.911], + [36031,0.909], + [36033,0.862], + [36035,0.87], + [36037,0.911], + [36039,0.859], + [36041,0.878], + [36043,0.898], + [36045,0.903], + [36047,0.807], + [36049,0.899], + [36051,0.891], + [36053,0.911], + [36055,0.903], + [36057,0.852], + [36059,0.91], + [36061,0.868], + [36063,0.91], + [36065,0.881], + [36067,0.908], + [36069,0.932], + [36071,0.898], + [36073,0.869], + [36075,0.869], + [36077,0.91], + [36079,0.928], + [36081,0.811], + [36083,0.918], + [36085,0.887], + [36087,0.873], + [36089,0.881], + [36091,0.939], + [36093,0.902], + [36095,0.887], + [36097,0.897], + [36099,0.859], + [36101,0.899], + [36103,0.901], + [36105,0.864], + [36107,0.9], + [36109,0.945], + [36111,0.907], + [36113,0.917], + [36115,0.884], + [36117,0.896], + [36119,0.876], + [36121,0.883], + [36123,0.861], + [37001,0.849], + [37003,0.819], + [37005,0.789], + [37007,0.801], + [37009,0.849], + [37011,0.805], + [37013,0.859], + [37015,0.761], + [37017,0.792], + [37019,0.891], + [37021,0.908], + [37023,0.805], + [37025,0.891], + [37027,0.787], + [37029,0.853], + [37031,0.908], + [37033,0.776], + [37035,0.84], + [37037,0.873], + [37039,0.849], + [37041,0.839], + [37043,0.892], + [37045,0.84], + [37047,0.806], + [37049,0.877], + [37051,0.905], + [37053,0.876], + [37055,0.932], + [37057,0.834], + [37059,0.873], + [37061,0.733], + [37063,0.877], + [37065,0.785], + [37067,0.885], + [37069,0.842], + [37071,0.841], + [37073,0.86], + [37075,0.818], + [37077,0.836], + [37079,0.752], + [37081,0.889], + [37083,0.769], + [37085,0.862], + [37087,0.878], + [37089,0.895], + [37091,0.8], + [37093,0.854], + [37095,0.794], + [37097,0.887], + [37099,0.88], + [37101,0.856], + [37103,0.818], + [37105,0.82], + [37107,0.801], + [37109,0.844], + [37111,0.825], + [37113,0.875], + [37115,0.846], + [37117,0.834], + [37119,0.899], + [37121,0.827], + [37123,0.779], + [37125,0.902], + [37127,0.851], + [37129,0.923], + [37131,0.781], + [37133,0.914], + [37135,0.926], + [37137,0.86], + [37139,0.862], + [37141,0.868], + [37143,0.864], + [37145,0.853], + [37147,0.893], + [37149,0.896], + [37151,0.806], + [37153,0.802], + [37155,0.771], + [37157,0.812], + [37159,0.845], + [37161,0.814], + [37163,0.773], + [37165,0.784], + [37167,0.852], + [37169,0.831], + [37171,0.783], + [37173,0.804], + [37175,0.875], + [37177,0.744], + [37179,0.898], + [37181,0.782], + [37183,0.925], + [37185,0.801], + [37187,0.774], + [37189,0.886], + [37191,0.835], + [37193,0.783], + [37195,0.807], + [37197,0.793], + [37199,0.832], + [38001,0.956], + [38003,0.899], + [38005,0.847], + [38007,0.898], + [38009,0.915], + [38011,0.917], + [38013,0.914], + [38015,0.937], + [38017,0.943], + [38019,0.92], + [38021,0.889], + [38023,0.884], + [38025,0.901], + [38027,0.885], + [38029,0.858], + [38031,0.888], + [38033,0.906], + [38035,0.943], + [38037,0.902], + [38039,0.898], + [38041,0.89], + [38043,0.903], + [38045,0.86], + [38047,0.845], + [38049,0.905], + [38051,0.802], + [38053,0.924], + [38055,0.912], + [38057,0.91], + [38059,0.917], + [38061,0.916], + [38063,0.917], + [38065,0.887], + [38067,0.88], + [38069,0.904], + [38071,0.913], + [38073,0.901], + [38075,0.935], + [38077,0.91], + [38079,0.857], + [38081,0.923], + [38083,0.854], + [38085,0.862], + [38087,0.883], + [38089,0.911], + [38091,0.962], + [38093,0.91], + [38095,0.934], + [38097,0.925], + [38099,0.873], + [38101,0.935], + [38103,0.865], + [38105,0.926], + [39001,0.79], + [39003,0.89], + [39005,0.884], + [39007,0.857], + [39009,0.896], + [39011,0.935], + [39013,0.904], + [39015,0.862], + [39017,0.901], + [39019,0.882], + [39021,0.897], + [39023,0.872], + [39025,0.899], + [39027,0.887], + [39029,0.875], + [39031,0.855], + [39033,0.896], + [39035,0.891], + [39037,0.895], + [39039,0.907], + [39041,0.967], + [39043,0.916], + [39045,0.919], + [39047,0.871], + [39049,0.906], + [39051,0.911], + [39053,0.81], + [39055,0.903], + [39057,0.928], + [39059,0.843], + [39061,0.905], + [39063,0.925], + [39065,0.89], + [39067,0.864], + [39069,0.924], + [39071,0.839], + [39073,0.893], + [39075,0.582], + [39077,0.875], + [39079,0.838], + [39081,0.903], + [39083,0.909], + [39085,0.921], + [39087,0.859], + [39089,0.903], + [39091,0.903], + [39093,0.895], + [39095,0.886], + [39097,0.866], + [39099,0.905], + [39101,0.871], + [39103,0.94], + [39105,0.844], + [39107,0.927], + [39109,0.896], + [39111,0.879], + [39113,0.899], + [39115,0.867], + [39117,0.879], + [39119,0.872], + [39121,0.862], + [39123,0.922], + [39125,0.9], + [39127,0.846], + [39129,0.874], + [39131,0.804], + [39133,0.919], + [39135,0.894], + [39137,0.927], + [39139,0.869], + [39141,0.867], + [39143,0.895], + [39145,0.84], + [39147,0.908], + [39149,0.906], + [39151,0.906], + [39153,0.913], + [39155,0.89], + [39157,0.863], + [39159,0.921], + [39161,0.921], + [39163,0.799], + [39165,0.932], + [39167,0.901], + [39169,0.858], + [39171,0.897], + [39173,0.942], + [39175,0.905], + [40001,0.794], + [40003,0.872], + [40005,0.828], + [40007,0.843], + [40009,0.85], + [40011,0.849], + [40013,0.862], + [40015,0.861], + [40017,0.92], + [40019,0.868], + [40021,0.854], + [40023,0.809], + [40025,0.856], + [40027,0.914], + [40029,0.836], + [40031,0.899], + [40033,0.861], + [40035,0.86], + [40037,0.867], + [40039,0.871], + [40041,0.846], + [40043,0.911], + [40045,0.877], + [40047,0.88], + [40049,0.853], + [40051,0.884], + [40053,0.917], + [40055,0.851], + [40057,0.8], + [40059,0.809], + [40061,0.819], + [40063,0.806], + [40065,0.831], + [40067,0.822], + [40069,0.837], + [40071,0.868], + [40073,0.881], + [40075,0.847], + [40077,0.859], + [40079,0.822], + [40081,0.855], + [40083,0.905], + [40085,0.831], + [40087,0.885], + [40089,0.819], + [40091,0.854], + [40093,0.871], + [40095,0.814], + [40097,0.861], + [40099,0.827], + [40101,0.852], + [40103,0.894], + [40105,0.87], + [40107,0.788], + [40109,0.868], + [40111,0.868], + [40113,0.882], + [40115,0.843], + [40117,0.882], + [40119,0.913], + [40121,0.865], + [40123,0.887], + [40125,0.868], + [40127,0.829], + [40129,0.91], + [40131,0.917], + [40133,0.841], + [40135,0.815], + [40137,0.866], + [40139,0.712], + [40141,0.762], + [40143,0.89], + [40145,0.898], + [40147,0.906], + [40149,0.889], + [40151,0.887], + [40153,0.879], + [41001,0.901], + [41003,0.954], + [41005,0.932], + [41007,0.915], + [41009,0.905], + [41011,0.895], + [41013,0.879], + [41015,0.899], + [41017,0.935], + [41019,0.894], + [41021,0.889], + [41023,0.898], + [41025,0.897], + [41027,0.796], + [41029,0.893], + [41031,0.857], + [41033,0.891], + [41035,0.874], + [41037,0.847], + [41039,0.915], + [41041,0.894], + [41043,0.902], + [41045,0.811], + [41047,0.849], + [41049,0.753], + [41051,0.91], + [41053,0.907], + [41055,0.929], + [41057,0.899], + [41059,0.82], + [41061,0.927], + [41063,0.929], + [41065,0.862], + [41067,0.913], + [41069,0.929], + [41071,0.883], + [42001,0.886], + [42003,0.941], + [42005,0.893], + [42007,0.927], + [42009,0.87], + [42011,0.86], + [42013,0.907], + [42015,0.891], + [42017,0.937], + [42019,0.941], + [42021,0.908], + [42023,0.885], + [42025,0.896], + [42027,0.935], + [42029,0.929], + [42031,0.89], + [42033,0.868], + [42035,0.877], + [42037,0.897], + [42039,0.883], + [42041,0.919], + [42043,0.898], + [42045,0.927], + [42047,0.92], + [42049,0.909], + [42051,0.879], + [42053,0.799], + [42055,0.871], + [42057,0.871], + [42059,0.868], + [42061,0.888], + [42063,0.896], + [42065,0.892], + [42067,0.825], + [42069,0.906], + [42071,0.848], + [42073,0.899], + [42075,0.869], + [42077,0.882], + [42079,0.892], + [42081,0.895], + [42083,0.902], + [42085,0.901], + [42087,0.843], + [42089,0.892], + [42091,0.941], + [42093,0.908], + [42095,0.906], + [42097,0.862], + [42099,0.877], + [42101,0.833], + [42103,0.916], + [42105,0.88], + [42107,0.883], + [42109,0.837], + [42111,0.878], + [42113,0.887], + [42115,0.887], + [42117,0.898], + [42119,0.859], + [42121,0.896], + [42123,0.921], + [42125,0.923], + [42127,0.895], + [42129,0.936], + [42131,0.921], + [42133,0.891], + [44001,0.904], + [44003,0.915], + [44005,0.933], + [44007,0.838], + [44009,0.94], + [45001,0.785], + [45003,0.862], + [45005,0.742], + [45007,0.844], + [45009,0.789], + [45011,0.798], + [45013,0.927], + [45015,0.883], + [45017,0.857], + [45019,0.91], + [45021,0.783], + [45023,0.801], + [45025,0.765], + [45027,0.797], + [45029,0.858], + [45031,0.814], + [45033,0.734], + [45035,0.9], + [45037,0.815], + [45039,0.825], + [45041,0.841], + [45043,0.865], + [45045,0.873], + [45047,0.834], + [45049,0.815], + [45051,0.893], + [45053,0.788], + [45055,0.861], + [45057,0.856], + [45059,0.802], + [45061,0.777], + [45063,0.892], + [45065,0.799], + [45067,0.787], + [45069,0.742], + [45071,0.805], + [45073,0.841], + [45075,0.841], + [45077,0.847], + [45079,0.906], + [45081,0.78], + [45083,0.849], + [45085,0.832], + [45087,0.811], + [45089,0.801], + [45091,0.891], + [46003,0.876], + [46005,0.832], + [46007,0.795], + [46009,0.888], + [46011,0.961], + [46013,0.921], + [46015,0.866], + [46017,0.784], + [46019,0.903], + [46021,0.908], + [46023,0.873], + [46025,0.906], + [46027,0.95], + [46029,0.917], + [46031,0.819], + [46033,0.938], + [46035,0.909], + [46037,0.908], + [46039,0.903], + [46041,0.846], + [46043,0.867], + [46045,0.907], + [46047,0.935], + [46049,0.921], + [46051,0.904], + [46053,0.875], + [46055,0.904], + [46057,0.926], + [46059,0.924], + [46061,0.924], + [46063,0.939], + [46065,0.908], + [46067,0.871], + [46069,0.927], + [46071,0.847], + [46073,0.897], + [46075,0.923], + [46077,0.907], + [46079,0.932], + [46081,0.938], + [46083,0.95], + [46085,0.896], + [46087,0.883], + [46089,0.816], + [46091,0.913], + [46093,0.947], + [46095,0.817], + [46097,0.895], + [46099,0.919], + [46101,0.899], + [46102,null], + [46103,0.935], + [46105,0.917], + [46107,0.924], + [46109,0.882], + [46111,0.91], + [46115,0.92], + [46117,0.931], + [46119,0.95], + [46121,0.78], + [46123,0.894], + [46125,0.929], + [46127,0.914], + [46129,0.886], + [46135,0.911], + [46137,0.834], + [47001,0.859], + [47003,0.813], + [47005,0.828], + [47007,0.732], + [47009,0.887], + [47011,0.842], + [47013,0.753], + [47015,0.845], + [47017,0.81], + [47019,0.825], + [47021,0.861], + [47023,0.848], + [47025,0.786], + [47027,0.768], + [47029,0.79], + [47031,0.866], + [47033,0.792], + [47035,0.846], + [47037,0.88], + [47039,0.833], + [47041,0.791], + [47043,0.829], + [47045,0.835], + [47047,0.87], + [47049,0.776], + [47051,0.856], + [47053,0.846], + [47055,0.846], + [47057,0.808], + [47059,0.828], + [47061,0.732], + [47063,0.82], + [47065,0.887], + [47067,0.771], + [47069,0.784], + [47071,0.802], + [47073,0.83], + [47075,0.808], + [47077,0.81], + [47079,0.85], + [47081,0.787], + [47083,0.772], + [47085,0.831], + [47087,0.778], + [47089,0.834], + [47091,0.772], + [47093,0.909], + [47095,0.735], + [47097,0.752], + [47099,0.808], + [47101,0.832], + [47103,0.828], + [47105,0.854], + [47107,0.84], + [47109,0.802], + [47111,0.789], + [47113,0.888], + [47115,0.813], + [47117,0.853], + [47119,0.894], + [47121,0.824], + [47123,0.782], + [47125,0.918], + [47127,0.873], + [47129,0.814], + [47131,0.831], + [47133,0.796], + [47135,0.743], + [47137,0.739], + [47139,0.805], + [47141,0.853], + [47143,0.773], + [47145,0.867], + [47147,0.867], + [47149,0.908], + [47151,0.781], + [47153,0.831], + [47155,0.835], + [47157,0.876], + [47159,0.838], + [47161,0.874], + [47163,0.857], + [47165,0.896], + [47167,0.864], + [47169,0.798], + [47171,0.829], + [47173,0.772], + [47175,0.808], + [47177,0.793], + [47179,0.891], + [47181,0.79], + [47183,0.84], + [47185,0.827], + [47187,0.955], + [47189,0.907], + [48001,0.802], + [48003,0.746], + [48005,0.811], + [48007,0.836], + [48009,0.912], + [48011,0.899], + [48013,0.758], + [48015,0.822], + [48017,0.703], + [48019,0.87], + [48021,0.807], + [48023,0.878], + [48025,0.727], + [48027,0.907], + [48029,0.837], + [48031,0.899], + [48033,0.945], + [48035,0.842], + [48037,0.874], + [48039,0.875], + [48041,0.859], + [48043,0.851], + [48045,0.806], + [48047,0.681], + [48049,0.856], + [48051,0.814], + [48053,0.873], + [48055,0.793], + [48057,0.805], + [48059,0.871], + [48061,0.662], + [48063,0.833], + [48065,0.931], + [48067,0.86], + [48069,0.723], + [48071,0.858], + [48073,0.792], + [48075,0.83], + [48077,0.894], + [48079,0.664], + [48081,0.849], + [48083,0.819], + [48085,0.936], + [48087,0.774], + [48089,0.821], + [48091,0.922], + [48093,0.816], + [48095,0.61], + [48097,0.864], + [48099,0.882], + [48101,0.754], + [48103,0.74], + [48105,0.754], + [48107,0.75], + [48109,0.634], + [48111,0.682], + [48113,0.783], + [48115,0.726], + [48117,0.73], + [48119,0.851], + [48121,0.92], + [48123,0.808], + [48125,0.803], + [48127,0.643], + [48129,0.888], + [48131,0.677], + [48133,0.83], + [48135,0.75], + [48137,0.75], + [48139,0.848], + [48141,0.769], + [48143,0.851], + [48145,0.77], + [48147,0.852], + [48149,0.83], + [48151,0.832], + [48153,0.739], + [48155,0.775], + [48157,0.897], + [48159,0.87], + [48161,0.818], + [48163,0.65], + [48165,0.617], + [48167,0.88], + [48169,0.58], + [48171,0.899], + [48173,0.749], + [48175,0.896], + [48177,0.732], + [48179,0.804], + [48181,0.882], + [48183,0.845], + [48185,0.79], + [48187,0.882], + [48189,0.754], + [48191,0.751], + [48193,0.832], + [48195,0.709], + [48197,0.775], + [48199,0.876], + [48201,0.805], + [48203,0.84], + [48205,0.808], + [48207,0.696], + [48209,0.89], + [48211,0.759], + [48213,0.833], + [48215,0.637], + [48217,0.811], + [48219,0.773], + [48221,0.889], + [48223,0.83], + [48225,0.816], + [48227,0.798], + [48229,0.51], + [48231,0.845], + [48233,0.855], + [48235,0.938], + [48237,0.803], + [48239,0.847], + [48241,0.859], + [48243,0.796], + [48245,0.838], + [48247,0.716], + [48249,0.73], + [48251,0.841], + [48253,0.776], + [48255,0.756], + [48257,0.86], + [48259,0.931], + [48261,0.413], + [48263,0.772], + [48265,0.881], + [48267,0.832], + [48269,0.802], + [48271,0.743], + [48273,0.779], + [48275,0.823], + [48277,0.846], + [48279,0.737], + [48281,0.887], + [48283,0.683], + [48285,0.846], + [48287,0.827], + [48289,0.828], + [48291,0.771], + [48293,0.804], + [48295,0.814], + [48297,0.785], + [48299,0.865], + [48301,0.797], + [48303,0.855], + [48305,0.769], + [48307,0.789], + [48309,0.84], + [48311,0.845], + [48313,0.783], + [48315,0.821], + [48317,0.777], + [48319,0.888], + [48321,0.775], + [48323,0.592], + [48325,0.827], + [48327,0.791], + [48329,0.837], + [48331,0.817], + [48333,0.829], + [48335,0.754], + [48337,0.827], + [48339,0.876], + [48341,0.654], + [48343,0.882], + [48345,0.898], + [48347,0.828], + [48349,0.772], + [48351,0.876], + [48353,0.804], + [48355,0.822], + [48357,0.756], + [48359,0.879], + [48361,0.891], + [48363,0.834], + [48365,0.849], + [48367,0.894], + [48369,0.713], + [48371,0.696], + [48373,0.781], + [48375,0.766], + [48377,0.525], + [48379,0.821], + [48381,0.917], + [48383,0.704], + [48385,0.798], + [48387,0.833], + [48389,0.623], + [48391,0.798], + [48393,0.928], + [48395,0.823], + [48397,0.917], + [48399,0.785], + [48401,0.796], + [48403,0.86], + [48405,0.8], + [48407,0.829], + [48409,0.782], + [48411,0.736], + [48413,0.743], + [48415,0.78], + [48417,0.851], + [48419,0.755], + [48421,0.732], + [48423,0.849], + [48425,0.851], + [48427,0.488], + [48429,0.772], + [48431,0.859], + [48433,0.839], + [48435,0.77], + [48437,0.771], + [48439,0.854], + [48441,0.873], + [48443,0.809], + [48445,0.69], + [48447,0.82], + [48449,0.74], + [48451,0.843], + [48453,0.888], + [48455,0.835], + [48457,0.846], + [48459,0.835], + [48461,0.782], + [48463,0.712], + [48465,0.674], + [48467,0.838], + [48469,0.83], + [48471,0.836], + [48473,0.783], + [48475,0.786], + [48477,0.846], + [48479,0.667], + [48481,0.789], + [48483,0.79], + [48485,0.862], + [48487,0.792], + [48489,0.654], + [48491,0.93], + [48493,0.848], + [48495,0.696], + [48497,0.85], + [48499,0.855], + [48501,0.702], + [48503,0.826], + [48505,0.554], + [48507,0.603], + [49001,0.908], + [49003,0.935], + [49005,0.933], + [49007,0.897], + [49009,0.951], + [49011,0.956], + [49013,0.874], + [49015,0.933], + [49017,0.912], + [49019,0.911], + [49021,0.925], + [49023,0.924], + [49025,0.938], + [49027,0.896], + [49029,0.972], + [49031,0.841], + [49033,0.981], + [49035,0.902], + [49037,0.837], + [49039,0.891], + [49041,0.9], + [49043,0.937], + [49045,0.919], + [49047,0.859], + [49049,0.94], + [49051,0.93], + [49053,0.924], + [49055,0.886], + [49057,0.901], + [50001,0.928], + [50003,0.911], + [50005,0.906], + [50007,0.939], + [50009,0.848], + [50011,0.907], + [50013,0.938], + [50015,0.924], + [50017,0.921], + [50019,0.876], + [50021,0.918], + [50023,0.937], + [50025,0.924], + [50027,0.925], + [51001,0.822], + [51003,0.914], + [51005,0.865], + [51007,0.808], + [51009,0.841], + [51011,0.849], + [51013,0.939], + [51015,0.869], + [51017,0.875], + [51019,0.896], + [51021,0.882], + [51023,0.925], + [51025,0.787], + [51027,0.716], + [51029,0.769], + [51031,0.855], + [51033,0.835], + [51035,0.809], + [51036,0.781], + [51037,0.814], + [51041,0.919], + [51043,0.869], + [51045,0.906], + [51047,0.849], + [51049,0.815], + [51051,0.745], + [51053,0.826], + [51057,0.826], + [51059,0.92], + [51061,0.914], + [51063,0.843], + [51065,0.917], + [51067,0.862], + [51069,0.882], + [51071,0.87], + [51073,0.898], + [51075,0.913], + [51077,0.811], + [51079,0.846], + [51081,0.753], + [51083,0.797], + [51085,0.929], + [51087,0.912], + [51089,0.798], + [51091,0.845], + [51093,0.876], + [51095,0.943], + [51097,0.855], + [51099,0.938], + [51101,0.896], + [51103,0.901], + [51105,0.746], + [51107,0.935], + [51109,0.846], + [51111,0.763], + [51113,0.87], + [51115,0.914], + [51117,0.816], + [51119,0.881], + [51121,0.92], + [51125,0.857], + [51127,0.926], + [51131,0.811], + [51133,0.907], + [51135,0.766], + [51137,0.886], + [51139,0.81], + [51141,0.787], + [51143,0.824], + [51145,0.908], + [51147,0.826], + [51149,0.896], + [51153,0.888], + [51155,0.854], + [51157,0.886], + [51159,0.805], + [51161,0.921], + [51163,0.857], + [51165,0.825], + [51167,0.788], + [51169,0.799], + [51171,0.86], + [51173,0.83], + [51175,0.83], + [51177,0.899], + [51179,0.937], + [51181,0.839], + [51183,0.733], + [51185,0.797], + [51187,0.861], + [51191,0.846], + [51193,0.864], + [51195,0.756], + [51197,0.834], + [51199,0.941], + [51510,0.914], + [51520,0.844], + [51530,0.831], + [51540,0.905], + [51550,0.92], + [51570,0.905], + [51580,0.834], + [51590,0.805], + [51595,0.765], + [51600,0.922], + [51610,0.982], + [51620,0.819], + [51630,0.913], + [51640,0.765], + [51650,0.907], + [51660,0.839], + [51670,0.811], + [51678,0.835], + [51680,0.88], + [51683,0.813], + [51685,0.823], + [51690,0.809], + [51700,0.893], + [51710,0.875], + [51720,0.833], + [51730,0.806], + [51735,0.959], + [51740,0.86], + [51750,0.882], + [51760,0.845], + [51770,0.85], + [51775,0.9], + [51790,0.896], + [51800,0.886], + [51810,0.934], + [51820,0.858], + [51830,0.942], + [51840,0.836], + [53001,0.652], + [53003,0.899], + [53005,0.897], + [53007,0.829], + [53009,0.92], + [53011,0.92], + [53013,0.905], + [53015,0.885], + [53017,0.817], + [53019,0.87], + [53021,0.742], + [53023,0.965], + [53025,0.753], + [53027,0.887], + [53029,0.949], + [53031,0.945], + [53033,0.927], + [53035,0.943], + [53037,0.911], + [53039,0.875], + [53041,0.875], + [53043,0.911], + [53045,0.878], + [53047,0.823], + [53049,0.875], + [53051,0.899], + [53053,0.912], + [53055,0.961], + [53057,0.893], + [53059,0.904], + [53061,0.919], + [53063,0.934], + [53065,0.894], + [53067,0.938], + [53069,0.915], + [53071,0.885], + [53073,0.923], + [53075,0.954], + [53077,0.732], + [54001,0.843], + [54003,0.882], + [54005,0.791], + [54007,0.806], + [54009,0.907], + [54011,0.876], + [54013,0.753], + [54015,0.745], + [54017,0.802], + [54019,0.822], + [54021,0.814], + [54023,0.808], + [54025,0.844], + [54027,0.805], + [54029,0.883], + [54031,0.806], + [54033,0.882], + [54035,0.859], + [54037,0.888], + [54039,0.883], + [54041,0.879], + [54043,0.792], + [54045,0.786], + [54047,0.653], + [54049,0.891], + [54051,0.903], + [54053,0.853], + [54055,0.835], + [54057,0.902], + [54059,0.744], + [54061,0.917], + [54063,0.831], + [54065,0.85], + [54067,0.849], + [54069,0.921], + [54071,0.816], + [54073,0.894], + [54075,0.849], + [54077,0.846], + [54079,0.919], + [54081,0.857], + [54083,0.837], + [54085,0.814], + [54087,0.798], + [54089,0.832], + [54091,0.879], + [54093,0.869], + [54095,0.888], + [54097,0.838], + [54099,0.786], + [54101,0.772], + [54103,0.834], + [54105,0.848], + [54107,0.901], + [54109,0.784], + [55001,0.872], + [55003,0.918], + [55005,0.906], + [55007,0.944], + [55009,0.914], + [55011,0.917], + [55013,0.926], + [55015,0.936], + [55017,0.925], + [55019,0.82], + [55021,0.928], + [55023,0.903], + [55025,0.956], + [55027,0.899], + [55029,0.938], + [55031,0.936], + [55033,0.933], + [55035,0.932], + [55037,0.926], + [55039,0.918], + [55041,0.876], + [55043,0.917], + [55045,0.925], + [55047,0.885], + [55049,0.939], + [55051,0.937], + [55053,0.885], + [55055,0.914], + [55057,0.871], + [55059,0.904], + [55061,0.924], + [55063,0.942], + [55065,0.899], + [55067,0.907], + [55069,0.91], + [55071,0.914], + [55073,0.918], + [55075,0.912], + [55077,0.887], + [55078,0.913], + [55079,0.874], + [55081,0.908], + [55083,0.905], + [55085,0.923], + [55087,0.938], + [55089,0.962], + [55091,0.917], + [55093,0.945], + [55095,0.931], + [55097,0.935], + [55099,0.904], + [55101,0.896], + [55103,0.901], + [55105,0.902], + [55107,0.87], + [55109,0.961], + [55111,0.91], + [55113,0.914], + [55115,0.91], + [55117,0.924], + [55119,0.885], + [55121,0.896], + [55123,0.887], + [55125,0.926], + [55127,0.91], + [55129,0.921], + [55131,0.944], + [55133,0.96], + [55135,0.912], + [55137,0.862], + [55139,0.924], + [55141,0.926], + [56001,0.962], + [56003,0.905], + [56005,0.913], + [56007,0.909], + [56009,0.903], + [56011,0.926], + [56013,0.911], + [56015,0.914], + [56017,0.925], + [56019,0.954], + [56021,0.932], + [56023,0.929], + [56025,0.922], + [56027,0.895], + [56029,0.951], + [56031,0.924], + [56033,0.953], + [56035,0.962], + [56037,0.913], + [56039,0.951], + [56041,0.918], + [56043,0.885], + [56045,0.919] + ] +} diff --git a/data/regional/united-states/education/us-education-highschoolgrad-2019.json b/data/regional/united-states/education/us-education-highschoolgrad-2019.json new file mode 100644 index 0000000..7eadc9c --- /dev/null +++ b/data/regional/united-states/education/us-education-highschoolgrad-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Highschool Graduates", + "description" : "Percent of the population that graduated highschool.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","highschool"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.highschoolgrad.2019"], + [1001,0.885], + [1003,0.908], + [1005,0.732], + [1007,0.791], + [1009,0.805], + [1011,0.747], + [1013,0.85], + [1015,0.844], + [1017,0.816], + [1019,0.816], + [1021,0.818], + [1023,0.814], + [1025,0.806], + [1027,0.767], + [1029,0.79], + [1031,0.859], + [1033,0.852], + [1035,0.843], + [1037,0.8], + [1039,0.834], + [1041,0.792], + [1043,0.816], + [1045,0.861], + [1047,0.818], + [1049,0.748], + [1051,0.866], + [1053,0.811], + [1055,0.846], + [1057,0.826], + [1059,0.772], + [1061,0.803], + [1063,0.792], + [1065,0.84], + [1067,0.794], + [1069,0.86], + [1071,0.832], + [1073,0.901], + [1075,0.823], + [1077,0.874], + [1079,0.793], + [1081,0.909], + [1083,0.847], + [1085,0.783], + [1087,0.818], + [1089,0.917], + [1091,0.838], + [1093,0.796], + [1095,0.816], + [1097,0.865], + [1099,0.856], + [1101,0.867], + [1103,0.841], + [1105,0.828], + [1107,0.815], + [1109,0.85], + [1111,0.796], + [1113,0.838], + [1115,0.846], + [1117,0.927], + [1119,0.867], + [1121,0.803], + [1123,0.807], + [1125,0.883], + [1127,0.818], + [1129,0.826], + [1131,0.765], + [1133,0.788], + [2013,0.855], + [2016,0.895], + [2020,0.939], + [2050,0.809], + [2060,0.94], + [2068,0.985], + [2070,0.863], + [2090,0.945], + [2100,0.975], + [2105,0.937], + [2110,0.964], + [2122,0.927], + [2130,0.928], + [2150,0.898], + [2158,0.789], + [2164,0.88], + [2170,0.929], + [2180,0.846], + [2185,0.897], + [2188,0.825], + [2195,0.897], + [2198,0.908], + [2220,0.947], + [2230,0.947], + [2240,0.899], + [2261,0.954], + [2275,0.865], + [2282,0.912], + [2290,0.86], + [4001,0.804], + [4003,0.874], + [4005,0.905], + [4007,0.863], + [4009,0.853], + [4011,0.881], + [4012,0.769], + [4013,0.877], + [4015,0.861], + [4017,0.834], + [4019,0.884], + [4021,0.858], + [4023,0.766], + [4025,0.91], + [4027,0.733], + [5001,0.839], + [5003,0.833], + [5005,0.887], + [5007,0.886], + [5009,0.874], + [5011,0.81], + [5013,0.842], + [5015,0.863], + [5017,0.808], + [5019,0.9], + [5021,0.825], + [5023,0.859], + [5025,0.896], + [5027,0.859], + [5029,0.87], + [5031,0.893], + [5033,0.85], + [5035,0.826], + [5037,0.836], + [5039,0.839], + [5041,0.811], + [5043,0.869], + [5045,0.918], + [5047,0.837], + [5049,0.856], + [5051,0.891], + [5053,0.908], + [5055,0.882], + [5057,0.826], + [5059,0.858], + [5061,0.852], + [5063,0.86], + [5065,0.838], + [5067,0.802], + [5069,0.861], + [5071,0.789], + [5073,0.797], + [5075,0.841], + [5077,0.758], + [5079,0.811], + [5081,0.89], + [5083,0.862], + [5085,0.891], + [5087,0.806], + [5089,0.865], + [5091,0.865], + [5093,0.811], + [5095,0.789], + [5097,0.798], + [5099,0.904], + [5101,0.865], + [5103,0.86], + [5105,0.848], + [5107,0.803], + [5109,0.874], + [5111,0.803], + [5113,0.849], + [5115,0.845], + [5117,0.832], + [5119,0.904], + [5121,0.829], + [5123,0.819], + [5125,0.906], + [5127,0.791], + [5129,0.818], + [5131,0.841], + [5133,0.765], + [5135,0.835], + [5137,0.812], + [5139,0.849], + [5141,0.851], + [5143,0.85], + [5145,0.844], + [5147,0.817], + [5149,0.782], + [6001,0.884], + [6003,0.912], + [6005,0.9], + [6007,0.892], + [6009,0.902], + [6011,0.713], + [6013,0.895], + [6015,0.801], + [6017,0.934], + [6019,0.76], + [6021,0.748], + [6023,0.905], + [6025,0.697], + [6027,0.886], + [6029,0.741], + [6031,0.734], + [6033,0.858], + [6035,0.832], + [6037,0.791], + [6039,0.719], + [6041,0.933], + [6043,0.906], + [6045,0.865], + [6047,0.691], + [6049,0.848], + [6051,0.886], + [6053,0.715], + [6055,0.855], + [6057,0.944], + [6059,0.855], + [6061,0.945], + [6063,0.951], + [6065,0.82], + [6067,0.877], + [6069,0.805], + [6071,0.8], + [6073,0.874], + [6075,0.885], + [6077,0.793], + [6079,0.913], + [6081,0.896], + [6083,0.809], + [6085,0.884], + [6087,0.863], + [6089,0.911], + [6091,0.924], + [6093,0.902], + [6095,0.884], + [6097,0.888], + [6099,0.789], + [6101,0.782], + [6103,0.845], + [6105,0.924], + [6107,0.708], + [6109,0.907], + [6111,0.85], + [6113,0.865], + [6115,0.823], + [8001,0.838], + [8003,0.869], + [8005,0.926], + [8007,0.923], + [8009,0.862], + [8011,0.848], + [8013,0.95], + [8014,0.969], + [8015,0.935], + [8017,0.916], + [8019,0.986], + [8021,0.88], + [8023,0.81], + [8025,0.861], + [8027,0.936], + [8029,0.907], + [8031,0.88], + [8033,0.938], + [8035,0.981], + [8037,0.883], + [8039,0.967], + [8041,0.942], + [8043,0.901], + [8045,0.881], + [8047,0.985], + [8049,0.946], + [8051,0.974], + [8053,0.937], + [8055,0.924], + [8057,0.874], + [8059,0.945], + [8061,0.957], + [8063,0.895], + [8065,0.837], + [8067,0.955], + [8069,0.959], + [8071,0.879], + [8073,0.909], + [8075,0.896], + [8077,0.905], + [8079,0.974], + [8081,0.887], + [8083,0.9], + [8085,0.89], + [8087,0.789], + [8089,0.872], + [8091,0.978], + [8093,0.977], + [8095,0.885], + [8097,0.969], + [8099,0.805], + [8101,0.897], + [8103,0.919], + [8105,0.87], + [8107,0.968], + [8109,0.831], + [8111,0.938], + [8113,0.968], + [8115,0.87], + [8117,0.929], + [8119,0.972], + [8121,0.919], + [8123,0.881], + [8125,0.886], + [9001,0.9], + [9003,0.897], + [9005,0.93], + [9007,0.942], + [9009,0.901], + [9011,0.923], + [9013,0.95], + [9015,0.884], + [10001,0.874], + [10003,0.916], + [10005,0.881], + [11001,0.909], + [12001,0.926], + [12003,0.857], + [12005,0.907], + [12007,0.796], + [12009,0.922], + [12011,0.89], + [12013,0.769], + [12015,0.906], + [12017,0.884], + [12019,0.918], + [12021,0.871], + [12023,0.861], + [12027,0.735], + [12029,0.784], + [12031,0.898], + [12033,0.905], + [12035,0.922], + [12037,0.807], + [12039,0.798], + [12041,0.854], + [12043,0.745], + [12045,0.855], + [12047,0.73], + [12049,0.772], + [12051,0.663], + [12053,0.879], + [12055,0.857], + [12057,0.887], + [12059,0.787], + [12061,0.894], + [12063,0.805], + [12065,0.82], + [12067,0.753], + [12069,0.895], + [12071,0.884], + [12073,0.935], + [12075,0.849], + [12077,0.814], + [12079,0.81], + [12081,0.897], + [12083,0.876], + [12085,0.91], + [12086,0.814], + [12087,0.914], + [12089,0.913], + [12091,0.924], + [12093,0.772], + [12095,0.885], + [12097,0.867], + [12099,0.885], + [12101,0.895], + [12103,0.913], + [12105,0.85], + [12107,0.818], + [12109,0.948], + [12111,0.863], + [12113,0.913], + [12115,0.931], + [12117,0.943], + [12119,0.921], + [12121,0.823], + [12123,0.788], + [12125,0.765], + [12127,0.905], + [12129,0.877], + [12131,0.891], + [12133,0.813], + [13001,0.749], + [13003,0.672], + [13005,0.821], + [13007,0.806], + [13009,0.858], + [13011,0.759], + [13013,0.845], + [13015,0.836], + [13017,0.835], + [13019,0.79], + [13021,0.86], + [13023,0.886], + [13025,0.789], + [13027,0.851], + [13029,0.916], + [13031,0.873], + [13033,0.801], + [13035,0.806], + [13037,0.729], + [13039,0.913], + [13043,0.773], + [13045,0.846], + [13047,0.875], + [13049,0.741], + [13051,0.899], + [13053,0.943], + [13055,0.738], + [13057,0.921], + [13059,0.88], + [13061,0.8], + [13063,0.848], + [13065,0.692], + [13067,0.921], + [13069,0.757], + [13071,0.747], + [13073,0.927], + [13075,0.791], + [13077,0.892], + [13079,0.831], + [13081,0.828], + [13083,0.807], + [13085,0.872], + [13087,0.825], + [13089,0.893], + [13091,0.856], + [13093,0.777], + [13095,0.834], + [13097,0.878], + [13099,0.804], + [13101,0.742], + [13103,0.883], + [13105,0.784], + [13107,0.786], + [13109,0.762], + [13111,0.866], + [13113,0.953], + [13115,0.824], + [13117,0.93], + [13119,0.823], + [13121,0.926], + [13123,0.817], + [13125,0.782], + [13127,0.881], + [13129,0.779], + [13131,0.801], + [13133,0.853], + [13135,0.877], + [13137,0.796], + [13139,0.791], + [13141,0.742], + [13143,0.812], + [13145,0.922], + [13147,0.815], + [13149,0.797], + [13151,0.912], + [13153,0.916], + [13155,0.815], + [13157,0.841], + [13159,0.828], + [13161,0.793], + [13163,0.764], + [13165,0.793], + [13167,0.751], + [13169,0.891], + [13171,0.87], + [13173,0.8], + [13175,0.859], + [13177,0.909], + [13179,0.907], + [13181,0.821], + [13183,0.877], + [13185,0.866], + [13187,0.848], + [13189,0.834], + [13191,0.852], + [13193,0.736], + [13195,0.832], + [13197,0.778], + [13199,0.797], + [13201,0.826], + [13205,0.772], + [13207,0.857], + [13209,0.817], + [13211,0.877], + [13213,0.707], + [13215,0.88], + [13217,0.866], + [13219,0.945], + [13221,0.797], + [13223,0.894], + [13225,0.83], + [13227,0.853], + [13229,0.834], + [13231,0.882], + [13233,0.788], + [13235,0.811], + [13237,0.876], + [13239,0.647], + [13241,0.848], + [13243,0.745], + [13245,0.841], + [13247,0.888], + [13249,0.876], + [13251,0.835], + [13253,0.86], + [13255,0.819], + [13257,0.821], + [13259,0.681], + [13261,0.814], + [13263,0.823], + [13265,0.71], + [13267,0.758], + [13269,0.785], + [13271,0.703], + [13273,0.775], + [13275,0.849], + [13277,0.819], + [13279,0.801], + [13281,0.899], + [13283,0.737], + [13285,0.834], + [13287,0.812], + [13289,0.742], + [13291,0.89], + [13293,0.823], + [13295,0.82], + [13297,0.869], + [13299,0.814], + [13301,0.732], + [13303,0.813], + [13305,0.834], + [13307,0.793], + [13309,0.808], + [13311,0.852], + [13313,0.695], + [13315,0.821], + [13317,0.837], + [13319,0.844], + [13321,0.829], + [15001,0.923], + [15003,0.919], + [15005,0.903], + [15007,0.925], + [15009,0.92], + [16001,0.952], + [16003,0.902], + [16005,0.925], + [16007,0.935], + [16009,0.876], + [16011,0.892], + [16013,0.887], + [16015,0.943], + [16017,0.908], + [16019,0.92], + [16021,0.918], + [16023,0.928], + [16025,0.933], + [16027,0.851], + [16029,0.912], + [16031,0.836], + [16033,0.598], + [16035,0.904], + [16037,0.894], + [16039,0.899], + [16041,0.903], + [16043,0.866], + [16045,0.878], + [16047,0.791], + [16049,0.905], + [16051,0.902], + [16053,0.772], + [16055,0.932], + [16057,0.958], + [16059,0.921], + [16061,0.885], + [16063,0.766], + [16065,0.959], + [16067,0.792], + [16069,0.92], + [16071,0.902], + [16073,0.761], + [16075,0.857], + [16077,0.792], + [16079,0.862], + [16081,0.938], + [16083,0.871], + [16085,0.946], + [16087,0.85], + [17001,0.925], + [17003,0.865], + [17005,0.892], + [17007,0.862], + [17009,0.83], + [17011,0.908], + [17013,0.916], + [17015,0.912], + [17017,0.84], + [17019,0.95], + [17021,0.897], + [17023,0.928], + [17025,0.88], + [17027,0.901], + [17029,0.914], + [17031,0.871], + [17033,0.85], + [17035,0.906], + [17037,0.923], + [17039,0.915], + [17041,0.832], + [17043,0.93], + [17045,0.901], + [17047,0.92], + [17049,0.931], + [17051,0.838], + [17053,0.904], + [17055,0.889], + [17057,0.886], + [17059,0.869], + [17061,0.906], + [17063,0.932], + [17065,0.871], + [17067,0.934], + [17069,0.796], + [17071,0.912], + [17073,0.912], + [17075,0.895], + [17077,0.919], + [17079,0.898], + [17081,0.874], + [17083,0.923], + [17085,0.923], + [17087,0.822], + [17089,0.846], + [17091,0.882], + [17093,0.924], + [17095,0.891], + [17097,0.906], + [17099,0.886], + [17101,0.849], + [17103,0.888], + [17105,0.899], + [17107,0.887], + [17109,0.936], + [17111,0.931], + [17113,0.959], + [17115,0.904], + [17117,0.913], + [17119,0.925], + [17121,0.89], + [17123,0.929], + [17125,0.892], + [17127,0.868], + [17129,0.941], + [17131,0.919], + [17133,0.96], + [17135,0.877], + [17137,0.909], + [17139,0.847], + [17141,0.902], + [17143,0.909], + [17145,0.833], + [17147,0.939], + [17149,0.887], + [17151,0.86], + [17153,0.888], + [17155,0.927], + [17157,0.843], + [17159,0.891], + [17161,0.886], + [17163,0.911], + [17165,0.867], + [17167,0.925], + [17169,0.894], + [17171,0.935], + [17173,0.923], + [17175,0.913], + [17177,0.925], + [17179,0.927], + [17181,0.884], + [17183,0.885], + [17185,0.906], + [17187,0.867], + [17189,0.922], + [17191,0.879], + [17193,0.899], + [17195,0.906], + [17197,0.91], + [17199,0.923], + [17201,0.877], + [17203,0.948], + [18001,0.847], + [18003,0.894], + [18005,0.906], + [18007,0.899], + [18009,0.894], + [18011,0.937], + [18013,0.921], + [18015,0.884], + [18017,0.854], + [18019,0.894], + [18021,0.914], + [18023,0.857], + [18025,0.804], + [18027,0.738], + [18029,0.896], + [18031,0.909], + [18033,0.902], + [18035,0.897], + [18037,0.893], + [18039,0.808], + [18041,0.821], + [18043,0.908], + [18045,0.89], + [18047,0.873], + [18049,0.878], + [18051,0.919], + [18053,0.872], + [18055,0.879], + [18057,0.968], + [18059,0.929], + [18061,0.884], + [18063,0.94], + [18065,0.893], + [18067,0.895], + [18069,0.918], + [18071,0.873], + [18073,0.882], + [18075,0.88], + [18077,0.897], + [18079,0.878], + [18081,0.921], + [18083,0.887], + [18085,0.857], + [18087,0.618], + [18089,0.887], + [18091,0.885], + [18093,0.883], + [18095,0.884], + [18097,0.861], + [18099,0.849], + [18101,0.881], + [18103,0.861], + [18105,0.927], + [18107,0.898], + [18109,0.881], + [18111,0.857], + [18113,0.836], + [18115,0.876], + [18117,0.832], + [18119,0.854], + [18121,0.862], + [18123,0.903], + [18125,0.868], + [18127,0.936], + [18129,0.934], + [18131,0.885], + [18133,0.889], + [18135,0.875], + [18137,0.893], + [18139,0.874], + [18141,0.885], + [18143,0.832], + [18145,0.873], + [18147,0.905], + [18149,0.849], + [18151,0.911], + [18153,0.887], + [18155,0.839], + [18157,0.916], + [18159,0.893], + [18161,0.874], + [18163,0.901], + [18165,0.91], + [18167,0.884], + [18169,0.888], + [18171,0.92], + [18173,0.932], + [18175,0.85], + [18177,0.865], + [18179,0.922], + [18181,0.888], + [18183,0.918], + [19001,0.942], + [19003,0.938], + [19005,0.883], + [19007,0.902], + [19009,0.895], + [19011,0.941], + [19013,0.914], + [19015,0.939], + [19017,0.964], + [19019,0.941], + [19021,0.784], + [19023,0.925], + [19025,0.938], + [19027,0.935], + [19029,0.88], + [19031,0.956], + [19033,0.927], + [19035,0.931], + [19037,0.928], + [19039,0.878], + [19041,0.936], + [19043,0.899], + [19045,0.909], + [19047,0.802], + [19049,0.956], + [19051,0.831], + [19053,0.891], + [19055,0.917], + [19057,0.92], + [19059,0.96], + [19061,0.927], + [19063,0.907], + [19065,0.917], + [19067,0.901], + [19069,0.911], + [19071,0.921], + [19073,0.934], + [19075,0.946], + [19077,0.931], + [19079,0.933], + [19081,0.933], + [19083,0.924], + [19085,0.915], + [19087,0.926], + [19089,0.909], + [19091,0.928], + [19093,0.932], + [19095,0.938], + [19097,0.926], + [19099,0.939], + [19101,0.932], + [19103,0.949], + [19105,0.923], + [19107,0.929], + [19109,0.939], + [19111,0.93], + [19113,0.945], + [19115,0.841], + [19117,0.921], + [19119,0.906], + [19121,0.942], + [19123,0.922], + [19125,0.933], + [19127,0.838], + [19129,0.928], + [19131,0.918], + [19133,0.923], + [19135,0.877], + [19137,0.904], + [19139,0.89], + [19141,0.921], + [19143,0.884], + [19145,0.915], + [19147,0.927], + [19149,0.931], + [19151,0.922], + [19153,0.915], + [19155,0.895], + [19157,0.939], + [19159,0.927], + [19161,0.928], + [19163,0.928], + [19165,0.924], + [19167,0.902], + [19169,0.972], + [19171,0.913], + [19173,0.902], + [19175,0.903], + [19177,0.892], + [19179,0.881], + [19181,0.954], + [19183,0.914], + [19185,0.879], + [19187,0.905], + [19189,0.924], + [19191,0.952], + [19193,0.871], + [19195,0.933], + [19197,0.924], + [20001,0.919], + [20003,0.91], + [20005,0.927], + [20007,0.911], + [20009,0.895], + [20011,0.913], + [20013,0.932], + [20015,0.925], + [20017,0.918], + [20019,0.866], + [20021,0.899], + [20023,0.936], + [20025,0.948], + [20027,0.929], + [20029,0.93], + [20031,0.927], + [20033,0.939], + [20035,0.907], + [20037,0.921], + [20039,0.94], + [20041,0.915], + [20043,0.903], + [20045,0.954], + [20047,0.854], + [20049,0.885], + [20051,0.933], + [20053,0.916], + [20055,0.71], + [20057,0.736], + [20059,0.922], + [20061,0.938], + [20063,0.921], + [20065,0.926], + [20067,0.77], + [20069,0.774], + [20071,0.87], + [20073,0.924], + [20075,0.808], + [20077,0.896], + [20079,0.905], + [20081,0.724], + [20083,0.911], + [20085,0.946], + [20087,0.935], + [20089,0.931], + [20091,0.96], + [20093,0.759], + [20095,0.936], + [20097,0.882], + [20099,0.898], + [20101,0.943], + [20103,0.922], + [20105,0.933], + [20107,0.897], + [20109,0.91], + [20111,0.883], + [20113,0.913], + [20115,0.916], + [20117,0.922], + [20119,0.807], + [20121,0.96], + [20123,0.948], + [20125,0.888], + [20127,0.912], + [20129,0.84], + [20131,0.942], + [20133,0.908], + [20135,0.909], + [20137,0.891], + [20139,0.908], + [20141,0.939], + [20143,0.949], + [20145,0.906], + [20147,0.924], + [20149,0.942], + [20151,0.921], + [20153,0.958], + [20155,0.885], + [20157,0.959], + [20159,0.916], + [20161,0.958], + [20163,0.887], + [20165,0.921], + [20167,0.881], + [20169,0.915], + [20171,0.844], + [20173,0.896], + [20175,0.663], + [20177,0.922], + [20179,0.961], + [20181,0.923], + [20183,0.93], + [20185,0.907], + [20187,0.785], + [20189,0.782], + [20191,0.923], + [20193,0.933], + [20195,0.932], + [20197,0.954], + [20199,0.947], + [20201,0.916], + [20203,0.866], + [20205,0.885], + [20207,0.907], + [20209,0.789], + [21001,0.796], + [21003,0.821], + [21005,0.899], + [21007,0.872], + [21009,0.83], + [21011,0.769], + [21013,0.696], + [21015,0.931], + [21017,0.84], + [21019,0.882], + [21021,0.871], + [21023,0.857], + [21025,0.756], + [21027,0.841], + [21029,0.885], + [21031,0.796], + [21033,0.87], + [21035,0.895], + [21037,0.908], + [21039,0.833], + [21041,0.783], + [21043,0.792], + [21045,0.76], + [21047,0.856], + [21049,0.862], + [21051,0.647], + [21053,0.732], + [21055,0.838], + [21057,0.818], + [21059,0.9], + [21061,0.781], + [21063,0.75], + [21065,0.756], + [21067,0.912], + [21069,0.796], + [21071,0.752], + [21073,0.89], + [21075,0.791], + [21077,0.812], + [21079,0.81], + [21081,0.866], + [21083,0.874], + [21085,0.815], + [21087,0.755], + [21089,0.89], + [21091,0.854], + [21093,0.905], + [21095,0.728], + [21097,0.821], + [21099,0.762], + [21101,0.869], + [21103,0.851], + [21105,0.801], + [21107,0.867], + [21109,0.746], + [21111,0.906], + [21113,0.873], + [21115,0.806], + [21117,0.899], + [21119,0.751], + [21121,0.735], + [21123,0.84], + [21125,0.811], + [21127,0.751], + [21129,0.681], + [21131,0.713], + [21133,0.757], + [21135,0.758], + [21137,0.799], + [21139,0.838], + [21141,0.849], + [21143,0.878], + [21145,0.905], + [21147,0.766], + [21149,0.873], + [21151,0.875], + [21153,0.697], + [21155,0.815], + [21157,0.887], + [21159,0.744], + [21161,0.863], + [21163,0.887], + [21165,0.774], + [21167,0.844], + [21169,0.756], + [21171,0.748], + [21173,0.848], + [21175,0.763], + [21177,0.821], + [21179,0.898], + [21181,0.758], + [21183,0.833], + [21185,0.938], + [21187,0.793], + [21189,0.688], + [21191,0.838], + [21193,0.769], + [21195,0.77], + [21197,0.803], + [21199,0.828], + [21201,0.847], + [21203,0.784], + [21205,0.842], + [21207,0.785], + [21209,0.91], + [21211,0.865], + [21213,0.87], + [21215,0.904], + [21217,0.871], + [21219,0.775], + [21221,0.88], + [21223,0.828], + [21225,0.9], + [21227,0.881], + [21229,0.84], + [21231,0.746], + [21233,0.825], + [21235,0.814], + [21237,0.718], + [21239,0.911], + [22001,0.79], + [22003,0.797], + [22005,0.886], + [22007,0.744], + [22009,0.768], + [22011,0.853], + [22013,0.841], + [22015,0.897], + [22017,0.87], + [22019,0.868], + [22021,0.767], + [22023,0.847], + [22025,0.743], + [22027,0.795], + [22029,0.802], + [22031,0.826], + [22033,0.905], + [22035,0.705], + [22037,0.8], + [22039,0.757], + [22041,0.75], + [22043,0.825], + [22045,0.799], + [22047,0.796], + [22049,0.806], + [22051,0.857], + [22053,0.813], + [22055,0.886], + [22057,0.782], + [22059,0.776], + [22061,0.885], + [22063,0.852], + [22065,0.739], + [22067,0.795], + [22069,0.884], + [22071,0.865], + [22073,0.865], + [22075,0.837], + [22077,0.798], + [22079,0.855], + [22081,0.808], + [22083,0.783], + [22085,0.857], + [22087,0.802], + [22089,0.9], + [22091,0.775], + [22093,0.854], + [22095,0.861], + [22097,0.767], + [22099,0.819], + [22101,0.828], + [22103,0.905], + [22105,0.836], + [22107,0.775], + [22109,0.79], + [22111,0.857], + [22113,0.779], + [22115,0.868], + [22117,0.795], + [22119,0.839], + [22121,0.872], + [22123,0.788], + [22125,0.821], + [22127,0.818], + [23001,0.902], + [23003,0.886], + [23005,0.951], + [23007,0.926], + [23009,0.941], + [23011,0.925], + [23013,0.936], + [23015,0.931], + [23017,0.919], + [23019,0.92], + [23021,0.903], + [23023,0.94], + [23025,0.884], + [23027,0.922], + [23029,0.893], + [23031,0.932], + [24001,0.902], + [24003,0.924], + [24005,0.915], + [24009,0.947], + [24011,0.843], + [24013,0.927], + [24015,0.895], + [24017,0.932], + [24019,0.879], + [24021,0.925], + [24023,0.898], + [24025,0.927], + [24027,0.955], + [24029,0.886], + [24031,0.91], + [24033,0.867], + [24035,0.932], + [24037,0.898], + [24039,0.813], + [24041,0.912], + [24043,0.872], + [24045,0.872], + [24047,0.913], + [24510,0.852], + [25001,0.955], + [25003,0.913], + [25005,0.857], + [25007,0.948], + [25009,0.893], + [25011,0.933], + [25013,0.858], + [25015,0.947], + [25017,0.934], + [25019,0.956], + [25021,0.939], + [25023,0.929], + [25025,0.863], + [25027,0.907], + [26001,0.893], + [26003,0.899], + [26005,0.909], + [26007,0.919], + [26009,0.917], + [26011,0.885], + [26013,0.892], + [26015,0.927], + [26017,0.905], + [26019,0.933], + [26021,0.897], + [26023,0.891], + [26025,0.91], + [26027,0.877], + [26029,0.94], + [26031,0.901], + [26033,0.9], + [26035,0.845], + [26037,0.945], + [26039,0.899], + [26041,0.941], + [26043,0.95], + [26045,0.943], + [26047,0.939], + [26049,0.906], + [26051,0.87], + [26053,0.937], + [26055,0.952], + [26057,0.911], + [26059,0.882], + [26061,0.928], + [26063,0.891], + [26065,0.929], + [26067,0.905], + [26069,0.889], + [26071,0.911], + [26073,0.915], + [26075,0.908], + [26077,0.936], + [26079,0.873], + [26081,0.907], + [26083,0.964], + [26085,0.824], + [26087,0.909], + [26089,0.957], + [26091,0.909], + [26093,0.952], + [26095,0.884], + [26097,0.907], + [26099,0.899], + [26101,0.899], + [26103,0.95], + [26105,0.921], + [26107,0.902], + [26109,0.925], + [26111,0.942], + [26113,0.895], + [26115,0.914], + [26117,0.887], + [26119,0.869], + [26121,0.913], + [26123,0.881], + [26125,0.941], + [26127,0.872], + [26129,0.859], + [26131,0.925], + [26133,0.887], + [26135,0.834], + [26137,0.92], + [26139,0.93], + [26141,0.896], + [26143,0.899], + [26145,0.894], + [26147,0.908], + [26149,0.87], + [26151,0.884], + [26153,0.906], + [26155,0.922], + [26157,0.893], + [26159,0.871], + [26161,0.953], + [26163,0.865], + [26165,0.896], + [27001,0.912], + [27003,0.94], + [27005,0.931], + [27007,0.921], + [27009,0.917], + [27011,0.926], + [27013,0.945], + [27015,0.935], + [27017,0.94], + [27019,0.961], + [27021,0.922], + [27023,0.894], + [27025,0.946], + [27027,0.949], + [27029,0.861], + [27031,0.971], + [27033,0.894], + [27035,0.941], + [27037,0.951], + [27039,0.949], + [27041,0.951], + [27043,0.926], + [27045,0.91], + [27047,0.888], + [27049,0.944], + [27051,0.929], + [27053,0.933], + [27055,0.951], + [27057,0.93], + [27059,0.925], + [27061,0.94], + [27063,0.927], + [27065,0.902], + [27067,0.89], + [27069,0.945], + [27071,0.919], + [27073,0.933], + [27075,0.947], + [27077,0.93], + [27079,0.939], + [27081,0.919], + [27083,0.92], + [27085,0.931], + [27087,0.869], + [27089,0.9], + [27091,0.932], + [27093,0.926], + [27095,0.898], + [27097,0.907], + [27099,0.876], + [27101,0.902], + [27103,0.94], + [27105,0.763], + [27107,0.919], + [27109,0.946], + [27111,0.921], + [27113,0.932], + [27115,0.904], + [27117,0.896], + [27119,0.919], + [27121,0.94], + [27123,0.903], + [27125,0.926], + [27127,0.909], + [27129,0.905], + [27131,0.911], + [27133,0.933], + [27135,0.929], + [27137,0.945], + [27139,0.947], + [27141,0.946], + [27143,0.907], + [27145,0.917], + [27147,0.925], + [27149,0.94], + [27151,0.906], + [27153,0.87], + [27155,0.933], + [27157,0.934], + [27159,0.906], + [27161,0.93], + [27163,0.961], + [27165,0.845], + [27167,0.949], + [27169,0.935], + [27171,0.949], + [27173,0.913], + [28001,0.779], + [28003,0.813], + [28005,0.819], + [28007,0.776], + [28009,0.726], + [28011,0.778], + [28013,0.775], + [28015,0.802], + [28017,0.754], + [28019,0.805], + [28021,0.803], + [28023,0.829], + [28025,0.817], + [28027,0.795], + [28029,0.802], + [28031,0.832], + [28033,0.904], + [28035,0.874], + [28037,0.846], + [28039,0.843], + [28041,0.762], + [28043,0.808], + [28045,0.875], + [28047,0.883], + [28049,0.875], + [28051,0.768], + [28053,0.699], + [28055,0.605], + [28057,0.791], + [28059,0.887], + [28061,0.842], + [28063,0.78], + [28065,0.824], + [28067,0.841], + [28069,0.821], + [28071,0.904], + [28073,0.894], + [28075,0.845], + [28077,0.817], + [28079,0.786], + [28081,0.836], + [28083,0.816], + [28085,0.863], + [28087,0.86], + [28089,0.917], + [28091,0.815], + [28093,0.821], + [28095,0.81], + [28097,0.779], + [28099,0.803], + [28101,0.852], + [28103,0.709], + [28105,0.907], + [28107,0.806], + [28109,0.838], + [28111,0.83], + [28113,0.832], + [28115,0.765], + [28117,0.801], + [28119,0.713], + [28121,0.895], + [28123,0.74], + [28125,0.775], + [28127,0.797], + [28129,0.792], + [28131,0.822], + [28133,0.749], + [28135,0.695], + [28137,0.83], + [28139,0.799], + [28141,0.804], + [28143,0.835], + [28145,0.781], + [28147,0.817], + [28149,0.871], + [28151,0.788], + [28153,0.793], + [28155,0.849], + [28157,0.748], + [28159,0.817], + [28161,0.833], + [28163,0.789], + [29001,0.901], + [29003,0.917], + [29005,0.915], + [29007,0.862], + [29009,0.836], + [29011,0.872], + [29013,0.874], + [29015,0.845], + [29017,0.798], + [29019,0.945], + [29021,0.883], + [29023,0.83], + [29025,0.898], + [29027,0.862], + [29029,0.904], + [29031,0.91], + [29033,0.858], + [29035,0.848], + [29037,0.924], + [29039,0.877], + [29041,0.907], + [29043,0.92], + [29045,0.863], + [29047,0.933], + [29049,0.92], + [29051,0.923], + [29053,0.887], + [29055,0.779], + [29057,0.872], + [29059,0.834], + [29061,0.85], + [29063,0.873], + [29065,0.832], + [29067,0.821], + [29069,0.763], + [29071,0.884], + [29073,0.878], + [29075,0.892], + [29077,0.918], + [29079,0.865], + [29081,0.882], + [29083,0.878], + [29085,0.843], + [29087,0.911], + [29089,0.879], + [29091,0.87], + [29093,0.815], + [29095,0.906], + [29097,0.867], + [29099,0.891], + [29101,0.925], + [29103,0.869], + [29105,0.852], + [29107,0.906], + [29109,0.847], + [29111,0.885], + [29113,0.895], + [29115,0.894], + [29117,0.867], + [29119,0.776], + [29121,0.882], + [29123,0.844], + [29125,0.865], + [29127,0.88], + [29129,0.884], + [29131,0.873], + [29133,0.757], + [29135,0.854], + [29137,0.893], + [29139,0.852], + [29141,0.781], + [29143,0.787], + [29145,0.871], + [29147,0.923], + [29149,0.831], + [29151,0.899], + [29153,0.823], + [29155,0.778], + [29157,0.877], + [29159,0.865], + [29161,0.883], + [29163,0.842], + [29165,0.958], + [29167,0.884], + [29169,0.928], + [29171,0.905], + [29173,0.897], + [29175,0.869], + [29177,0.881], + [29179,0.798], + [29181,0.799], + [29183,0.948], + [29185,0.845], + [29186,0.894], + [29187,0.848], + [29189,0.935], + [29195,0.84], + [29197,0.876], + [29199,0.799], + [29201,0.85], + [29203,0.8], + [29205,0.907], + [29207,0.809], + [29209,0.872], + [29211,0.843], + [29213,0.889], + [29215,0.836], + [29217,0.883], + [29219,0.887], + [29221,0.769], + [29223,0.762], + [29225,0.861], + [29227,0.898], + [29229,0.804], + [29510,0.878], + [30001,0.951], + [30003,0.895], + [30005,0.899], + [30007,0.932], + [30009,0.942], + [30011,0.925], + [30013,0.918], + [30015,0.926], + [30017,0.92], + [30019,0.953], + [30021,0.93], + [30023,0.911], + [30025,0.946], + [30027,0.927], + [30029,0.947], + [30031,0.968], + [30033,0.973], + [30035,0.896], + [30037,0.92], + [30039,0.922], + [30041,0.907], + [30043,0.943], + [30045,0.944], + [30047,0.918], + [30049,0.956], + [30051,0.702], + [30053,0.896], + [30055,0.925], + [30057,0.954], + [30059,0.952], + [30061,0.889], + [30063,0.956], + [30065,0.915], + [30067,0.945], + [30069,0.989], + [30071,0.909], + [30073,0.93], + [30075,0.941], + [30077,0.894], + [30079,0.88], + [30081,0.916], + [30083,0.923], + [30085,0.875], + [30087,0.9], + [30089,0.888], + [30091,0.919], + [30093,0.925], + [30095,0.94], + [30097,0.946], + [30099,0.92], + [30101,0.888], + [30103,0.898], + [30105,0.939], + [30107,0.818], + [30109,0.887], + [30111,0.941], + [31001,0.9], + [31003,0.93], + [31005,0.937], + [31007,0.97], + [31009,0.95], + [31011,0.949], + [31013,0.907], + [31015,0.96], + [31017,0.951], + [31019,0.931], + [31021,0.913], + [31023,0.93], + [31025,0.944], + [31027,0.925], + [31029,0.881], + [31031,0.95], + [31033,0.936], + [31035,0.915], + [31037,0.693], + [31039,0.884], + [31041,0.934], + [31043,0.765], + [31045,0.961], + [31047,0.78], + [31049,0.892], + [31051,0.879], + [31053,0.889], + [31055,0.906], + [31057,0.831], + [31059,0.921], + [31061,0.925], + [31063,0.959], + [31065,0.888], + [31067,0.9], + [31069,0.941], + [31071,0.963], + [31073,0.93], + [31075,0.97], + [31077,0.939], + [31079,0.846], + [31081,0.951], + [31083,0.93], + [31085,0.902], + [31087,0.921], + [31089,0.935], + [31091,0.935], + [31093,0.949], + [31095,0.911], + [31097,0.863], + [31099,0.964], + [31101,0.915], + [31103,0.951], + [31105,0.887], + [31107,0.921], + [31109,0.937], + [31111,0.935], + [31113,0.94], + [31115,0.981], + [31117,0.892], + [31119,0.904], + [31121,0.942], + [31123,0.875], + [31125,0.932], + [31127,0.918], + [31129,0.919], + [31131,0.928], + [31133,0.876], + [31135,0.88], + [31137,0.933], + [31139,0.954], + [31141,0.889], + [31143,0.914], + [31145,0.925], + [31147,0.922], + [31149,0.967], + [31151,0.835], + [31153,0.955], + [31155,0.932], + [31157,0.88], + [31159,0.94], + [31161,0.906], + [31163,0.93], + [31165,0.932], + [31167,0.937], + [31169,0.924], + [31171,0.939], + [31173,0.891], + [31175,0.923], + [31177,0.956], + [31179,0.96], + [31181,0.938], + [31183,0.956], + [31185,0.936], + [32001,0.916], + [32003,0.861], + [32005,0.932], + [32007,0.863], + [32009,0.883], + [32011,0.946], + [32013,0.824], + [32015,0.883], + [32017,0.862], + [32019,0.869], + [32021,0.89], + [32023,0.861], + [32027,0.809], + [32029,0.936], + [32031,0.886], + [32033,0.881], + [32510,0.87], + [33001,0.932], + [33003,0.942], + [33005,0.934], + [33007,0.878], + [33009,0.928], + [33011,0.921], + [33013,0.932], + [33015,0.951], + [33017,0.928], + [33019,0.912], + [34001,0.87], + [34003,0.925], + [34005,0.937], + [34007,0.887], + [34009,0.925], + [34011,0.794], + [34013,0.861], + [34015,0.929], + [34017,0.848], + [34019,0.95], + [34021,0.885], + [34023,0.898], + [34025,0.934], + [34027,0.945], + [34029,0.92], + [34031,0.837], + [34033,0.888], + [34035,0.945], + [34037,0.949], + [34039,0.864], + [34041,0.915], + [35001,0.889], + [35003,0.941], + [35005,0.782], + [35006,0.83], + [35007,0.882], + [35009,0.819], + [35011,0.843], + [35013,0.794], + [35015,0.844], + [35017,0.875], + [35019,0.827], + [35021,0.854], + [35023,0.823], + [35025,0.743], + [35027,0.895], + [35028,0.976], + [35029,0.698], + [35031,0.772], + [35033,0.892], + [35035,0.834], + [35037,0.819], + [35039,0.864], + [35041,0.8], + [35043,0.899], + [35045,0.849], + [35047,0.833], + [35049,0.893], + [35051,0.84], + [35053,0.818], + [35055,0.901], + [35057,0.846], + [35059,0.819], + [35061,0.845], + [36001,0.921], + [36003,0.908], + [36005,0.728], + [36007,0.907], + [36009,0.888], + [36011,0.878], + [36013,0.888], + [36015,0.903], + [36017,0.881], + [36019,0.876], + [36021,0.903], + [36023,0.907], + [36025,0.889], + [36027,0.911], + [36029,0.918], + [36031,0.915], + [36033,0.874], + [36035,0.873], + [36037,0.922], + [36039,0.867], + [36041,0.775], + [36043,0.898], + [36045,0.91], + [36047,0.824], + [36049,0.901], + [36051,0.906], + [36053,0.92], + [36055,0.904], + [36057,0.868], + [36059,0.914], + [36061,0.873], + [36063,0.912], + [36065,0.885], + [36067,0.91], + [36069,0.939], + [36071,0.897], + [36073,0.877], + [36075,0.882], + [36077,0.917], + [36079,0.93], + [36081,0.82], + [36083,0.919], + [36085,0.887], + [36087,0.882], + [36089,0.887], + [36091,0.94], + [36093,0.907], + [36095,0.897], + [36097,0.904], + [36099,0.848], + [36101,0.905], + [36103,0.906], + [36105,0.867], + [36107,0.912], + [36109,0.944], + [36111,0.907], + [36113,0.919], + [36115,0.879], + [36117,0.892], + [36119,0.881], + [36121,0.899], + [36123,0.864], + [37001,0.863], + [37003,0.824], + [37005,0.775], + [37007,0.807], + [37009,0.851], + [37011,0.836], + [37013,0.877], + [37015,0.784], + [37017,0.813], + [37019,0.913], + [37021,0.911], + [37023,0.816], + [37025,0.899], + [37027,0.8], + [37029,0.865], + [37031,0.916], + [37033,0.804], + [37035,0.859], + [37037,0.889], + [37039,0.872], + [37041,0.868], + [37043,0.882], + [37045,0.842], + [37047,0.83], + [37049,0.888], + [37051,0.91], + [37053,0.905], + [37055,0.942], + [37057,0.839], + [37059,0.878], + [37061,0.76], + [37063,0.884], + [37065,0.811], + [37067,0.892], + [37069,0.862], + [37071,0.848], + [37073,0.891], + [37075,0.819], + [37077,0.843], + [37079,0.75], + [37081,0.891], + [37083,0.786], + [37085,0.875], + [37087,0.88], + [37089,0.899], + [37091,0.808], + [37093,0.871], + [37095,0.808], + [37097,0.893], + [37099,0.894], + [37101,0.869], + [37103,0.811], + [37105,0.835], + [37107,0.797], + [37109,0.879], + [37111,0.839], + [37113,0.893], + [37115,0.87], + [37117,0.834], + [37119,0.903], + [37121,0.852], + [37123,0.795], + [37125,0.907], + [37127,0.856], + [37129,0.932], + [37131,0.804], + [37133,0.915], + [37135,0.927], + [37137,0.88], + [37139,0.87], + [37141,0.878], + [37143,0.869], + [37145,0.865], + [37147,0.893], + [37149,0.908], + [37151,0.815], + [37153,0.809], + [37155,0.773], + [37157,0.827], + [37159,0.856], + [37161,0.838], + [37163,0.793], + [37165,0.802], + [37167,0.853], + [37169,0.838], + [37171,0.795], + [37173,0.798], + [37175,0.89], + [37177,0.74], + [37179,0.896], + [37181,0.804], + [37183,0.93], + [37185,0.816], + [37187,0.837], + [37189,0.908], + [37191,0.845], + [37193,0.801], + [37195,0.803], + [37197,0.823], + [37199,0.845], + [38001,0.945], + [38003,0.923], + [38005,0.863], + [38007,0.895], + [38009,0.917], + [38011,0.891], + [38013,0.926], + [38015,0.943], + [38017,0.948], + [38019,0.919], + [38021,0.913], + [38023,0.933], + [38025,0.911], + [38027,0.894], + [38029,0.873], + [38031,0.903], + [38033,0.929], + [38035,0.951], + [38037,0.901], + [38039,0.893], + [38041,0.871], + [38043,0.908], + [38045,0.862], + [38047,0.88], + [38049,0.908], + [38051,0.818], + [38053,0.907], + [38055,0.924], + [38057,0.914], + [38059,0.919], + [38061,0.924], + [38063,0.918], + [38065,0.913], + [38067,0.896], + [38069,0.933], + [38071,0.919], + [38073,0.91], + [38075,0.953], + [38077,0.907], + [38079,0.875], + [38081,0.919], + [38083,0.875], + [38085,0.837], + [38087,0.901], + [38089,0.905], + [38091,0.963], + [38093,0.909], + [38095,0.914], + [38097,0.934], + [38099,0.854], + [38101,0.937], + [38103,0.87], + [38105,0.905], + [39001,0.802], + [39003,0.903], + [39005,0.885], + [39007,0.86], + [39009,0.9], + [39011,0.927], + [39013,0.902], + [39015,0.879], + [39017,0.906], + [39019,0.895], + [39021,0.912], + [39023,0.887], + [39025,0.902], + [39027,0.883], + [39029,0.885], + [39031,0.855], + [39033,0.902], + [39035,0.898], + [39037,0.908], + [39039,0.912], + [39041,0.964], + [39043,0.918], + [39045,0.926], + [39047,0.857], + [39049,0.912], + [39051,0.913], + [39053,0.84], + [39055,0.902], + [39057,0.938], + [39059,0.855], + [39061,0.914], + [39063,0.925], + [39065,0.895], + [39067,0.868], + [39069,0.935], + [39071,0.851], + [39073,0.891], + [39075,0.569], + [39077,0.885], + [39079,0.835], + [39081,0.91], + [39083,0.913], + [39085,0.923], + [39087,0.875], + [39089,0.915], + [39091,0.926], + [39093,0.897], + [39095,0.893], + [39097,0.87], + [39099,0.909], + [39101,0.879], + [39103,0.951], + [39105,0.836], + [39107,0.921], + [39109,0.912], + [39111,0.891], + [39113,0.901], + [39115,0.853], + [39117,0.877], + [39119,0.878], + [39121,0.847], + [39123,0.917], + [39125,0.905], + [39127,0.873], + [39129,0.872], + [39131,0.802], + [39133,0.924], + [39135,0.904], + [39137,0.928], + [39139,0.869], + [39141,0.876], + [39143,0.904], + [39145,0.849], + [39147,0.917], + [39149,0.902], + [39151,0.916], + [39153,0.917], + [39155,0.894], + [39157,0.86], + [39159,0.934], + [39161,0.913], + [39163,0.807], + [39165,0.938], + [39167,0.906], + [39169,0.865], + [39171,0.905], + [39173,0.943], + [39175,0.919], + [40001,0.808], + [40003,0.852], + [40005,0.832], + [40007,0.838], + [40009,0.855], + [40011,0.827], + [40013,0.864], + [40015,0.855], + [40017,0.914], + [40019,0.88], + [40021,0.865], + [40023,0.822], + [40025,0.831], + [40027,0.918], + [40029,0.827], + [40031,0.9], + [40033,0.845], + [40035,0.868], + [40037,0.874], + [40039,0.877], + [40041,0.849], + [40043,0.938], + [40045,0.858], + [40047,0.879], + [40049,0.863], + [40051,0.901], + [40053,0.907], + [40055,0.839], + [40057,0.797], + [40059,0.818], + [40061,0.847], + [40063,0.822], + [40065,0.851], + [40067,0.832], + [40069,0.86], + [40071,0.868], + [40073,0.883], + [40075,0.847], + [40077,0.878], + [40079,0.835], + [40081,0.872], + [40083,0.901], + [40085,0.824], + [40087,0.901], + [40089,0.829], + [40091,0.858], + [40093,0.886], + [40095,0.791], + [40097,0.865], + [40099,0.842], + [40101,0.853], + [40103,0.905], + [40105,0.889], + [40107,0.795], + [40109,0.874], + [40111,0.863], + [40113,0.883], + [40115,0.853], + [40117,0.888], + [40119,0.922], + [40121,0.87], + [40123,0.892], + [40125,0.88], + [40127,0.832], + [40129,0.884], + [40131,0.92], + [40133,0.843], + [40135,0.813], + [40137,0.873], + [40139,0.723], + [40141,0.775], + [40143,0.894], + [40145,0.906], + [40147,0.904], + [40149,0.901], + [40151,0.898], + [40153,0.877], + [41001,0.91], + [41003,0.959], + [41005,0.934], + [41007,0.921], + [41009,0.913], + [41011,0.888], + [41013,0.9], + [41015,0.903], + [41017,0.937], + [41019,0.896], + [41021,0.9], + [41023,0.888], + [41025,0.916], + [41027,0.813], + [41029,0.901], + [41031,0.87], + [41033,0.904], + [41035,0.881], + [41037,0.865], + [41039,0.919], + [41041,0.915], + [41043,0.895], + [41045,0.811], + [41047,0.852], + [41049,0.758], + [41051,0.915], + [41053,0.909], + [41055,0.893], + [41057,0.896], + [41059,0.824], + [41061,0.927], + [41063,0.931], + [41065,0.864], + [41067,0.922], + [41069,0.916], + [41071,0.889], + [42001,0.888], + [42003,0.946], + [42005,0.903], + [42007,0.931], + [42009,0.879], + [42011,0.867], + [42013,0.914], + [42015,0.901], + [42017,0.939], + [42019,0.949], + [42021,0.92], + [42023,0.907], + [42025,0.894], + [42027,0.943], + [42029,0.936], + [42031,0.901], + [42033,0.872], + [42035,0.893], + [42037,0.903], + [42039,0.89], + [42041,0.923], + [42043,0.898], + [42045,0.931], + [42047,0.923], + [42049,0.913], + [42051,0.884], + [42053,0.83], + [42055,0.883], + [42057,0.878], + [42059,0.875], + [42061,0.895], + [42063,0.9], + [42065,0.893], + [42067,0.833], + [42069,0.91], + [42071,0.85], + [42073,0.908], + [42075,0.872], + [42077,0.89], + [42079,0.898], + [42081,0.901], + [42083,0.918], + [42085,0.899], + [42087,0.85], + [42089,0.896], + [42091,0.944], + [42093,0.906], + [42095,0.909], + [42097,0.88], + [42099,0.874], + [42101,0.847], + [42103,0.93], + [42105,0.88], + [42107,0.893], + [42109,0.866], + [42111,0.882], + [42113,0.896], + [42115,0.898], + [42117,0.904], + [42119,0.868], + [42121,0.902], + [42123,0.929], + [42125,0.931], + [42127,0.896], + [42129,0.944], + [42131,0.922], + [42133,0.899], + [44001,0.909], + [44003,0.922], + [44005,0.94], + [44007,0.858], + [44009,0.949], + [45001,0.817], + [45003,0.88], + [45005,0.798], + [45007,0.853], + [45009,0.803], + [45011,0.798], + [45013,0.928], + [45015,0.894], + [45017,0.862], + [45019,0.917], + [45021,0.803], + [45023,0.821], + [45025,0.767], + [45027,0.785], + [45029,0.866], + [45031,0.824], + [45033,0.753], + [45035,0.897], + [45037,0.829], + [45039,0.862], + [45041,0.85], + [45043,0.872], + [45045,0.88], + [45047,0.852], + [45049,0.81], + [45051,0.896], + [45053,0.818], + [45055,0.878], + [45057,0.859], + [45059,0.809], + [45061,0.815], + [45063,0.896], + [45065,0.834], + [45067,0.789], + [45069,0.772], + [45071,0.82], + [45073,0.849], + [45075,0.859], + [45077,0.853], + [45079,0.915], + [45081,0.782], + [45083,0.857], + [45085,0.855], + [45087,0.812], + [45089,0.801], + [45091,0.908], + [46003,0.87], + [46005,0.843], + [46007,0.804], + [46009,0.874], + [46011,0.95], + [46013,0.93], + [46015,0.889], + [46017,0.781], + [46019,0.91], + [46021,0.9], + [46023,0.885], + [46025,0.912], + [46027,0.95], + [46029,0.915], + [46031,0.838], + [46033,0.936], + [46035,0.921], + [46037,0.895], + [46039,0.911], + [46041,0.854], + [46043,0.885], + [46045,0.931], + [46047,0.944], + [46049,0.933], + [46051,0.907], + [46053,0.894], + [46055,0.939], + [46057,0.918], + [46059,0.939], + [46061,0.922], + [46063,0.907], + [46065,0.922], + [46067,0.877], + [46069,0.926], + [46071,0.824], + [46073,0.894], + [46075,0.953], + [46077,0.907], + [46079,0.909], + [46081,0.935], + [46083,0.948], + [46085,0.897], + [46087,0.887], + [46089,0.824], + [46091,0.921], + [46093,0.944], + [46095,0.816], + [46097,0.898], + [46099,0.925], + [46101,0.904], + [46102,0.739], + [46103,0.935], + [46105,0.924], + [46107,0.928], + [46109,0.896], + [46111,0.934], + [46115,0.911], + [46117,0.949], + [46119,0.956], + [46121,0.799], + [46123,0.909], + [46125,0.92], + [46127,0.926], + [46129,0.9], + [46135,0.909], + [46137,0.841], + [47001,0.87], + [47003,0.821], + [47005,0.824], + [47007,0.756], + [47009,0.891], + [47011,0.853], + [47013,0.773], + [47015,0.845], + [47017,0.841], + [47019,0.835], + [47021,0.87], + [47023,0.852], + [47025,0.801], + [47027,0.803], + [47029,0.801], + [47031,0.854], + [47033,0.812], + [47035,0.858], + [47037,0.891], + [47039,0.859], + [47041,0.801], + [47043,0.837], + [47045,0.839], + [47047,0.862], + [47049,0.83], + [47051,0.875], + [47053,0.853], + [47055,0.858], + [47057,0.786], + [47059,0.847], + [47061,0.744], + [47063,0.813], + [47065,0.895], + [47067,0.771], + [47069,0.796], + [47071,0.815], + [47073,0.844], + [47075,0.82], + [47077,0.827], + [47079,0.859], + [47081,0.786], + [47083,0.772], + [47085,0.849], + [47087,0.782], + [47089,0.853], + [47091,0.798], + [47093,0.917], + [47095,0.729], + [47097,0.771], + [47099,0.834], + [47101,0.843], + [47103,0.835], + [47105,0.862], + [47107,0.845], + [47109,0.826], + [47111,0.803], + [47113,0.889], + [47115,0.815], + [47117,0.854], + [47119,0.902], + [47121,0.838], + [47123,0.824], + [47125,0.929], + [47127,0.859], + [47129,0.803], + [47131,0.835], + [47133,0.806], + [47135,0.749], + [47137,0.744], + [47139,0.824], + [47141,0.866], + [47143,0.808], + [47145,0.889], + [47147,0.872], + [47149,0.918], + [47151,0.798], + [47153,0.816], + [47155,0.85], + [47157,0.884], + [47159,0.853], + [47161,0.872], + [47163,0.872], + [47165,0.897], + [47167,0.878], + [47169,0.844], + [47171,0.85], + [47173,0.771], + [47175,0.79], + [47177,0.795], + [47179,0.888], + [47181,0.802], + [47183,0.851], + [47185,0.832], + [47187,0.953], + [47189,0.916], + [48001,0.813], + [48003,0.723], + [48005,0.819], + [48007,0.845], + [48009,0.903], + [48011,0.869], + [48013,0.771], + [48015,0.84], + [48017,0.769], + [48019,0.893], + [48021,0.819], + [48023,0.855], + [48025,0.754], + [48027,0.91], + [48029,0.842], + [48031,0.901], + [48033,0.947], + [48035,0.865], + [48037,0.888], + [48039,0.879], + [48041,0.872], + [48043,0.857], + [48045,0.861], + [48047,0.688], + [48049,0.872], + [48051,0.825], + [48053,0.883], + [48055,0.782], + [48057,0.793], + [48059,0.882], + [48061,0.679], + [48063,0.872], + [48065,0.933], + [48067,0.859], + [48069,0.741], + [48071,0.885], + [48073,0.79], + [48075,0.82], + [48077,0.905], + [48079,0.677], + [48081,0.837], + [48083,0.865], + [48085,0.938], + [48087,0.739], + [48089,0.831], + [48091,0.926], + [48093,0.845], + [48095,0.679], + [48097,0.861], + [48099,0.88], + [48101,0.762], + [48103,0.795], + [48105,0.77], + [48107,0.76], + [48109,0.663], + [48111,0.704], + [48113,0.793], + [48115,0.699], + [48117,0.738], + [48119,0.878], + [48121,0.925], + [48123,0.808], + [48125,0.844], + [48127,0.664], + [48129,0.887], + [48131,0.686], + [48133,0.844], + [48135,0.76], + [48137,0.721], + [48139,0.862], + [48141,0.785], + [48143,0.883], + [48145,0.769], + [48147,0.855], + [48149,0.861], + [48151,0.861], + [48153,0.742], + [48155,0.819], + [48157,0.906], + [48159,0.913], + [48161,0.826], + [48163,0.662], + [48165,0.618], + [48167,0.89], + [48169,0.616], + [48171,0.89], + [48173,0.694], + [48175,0.83], + [48177,0.767], + [48179,0.802], + [48181,0.887], + [48183,0.841], + [48185,0.806], + [48187,0.887], + [48189,0.766], + [48191,0.796], + [48193,0.84], + [48195,0.678], + [48197,0.789], + [48199,0.88], + [48201,0.814], + [48203,0.853], + [48205,0.826], + [48207,0.703], + [48209,0.901], + [48211,0.821], + [48213,0.835], + [48215,0.657], + [48217,0.835], + [48219,0.762], + [48221,0.894], + [48223,0.849], + [48225,0.812], + [48227,0.8], + [48229,0.555], + [48231,0.845], + [48233,0.86], + [48235,0.932], + [48237,0.82], + [48239,0.824], + [48241,0.85], + [48243,0.789], + [48245,0.842], + [48247,0.745], + [48249,0.749], + [48251,0.857], + [48253,0.784], + [48255,0.757], + [48257,0.858], + [48259,0.928], + [48261,0.264], + [48263,0.858], + [48265,0.886], + [48267,0.851], + [48269,0.797], + [48271,0.785], + [48273,0.784], + [48275,0.819], + [48277,0.843], + [48279,0.749], + [48281,0.91], + [48283,0.636], + [48285,0.856], + [48287,0.846], + [48289,0.818], + [48291,0.773], + [48293,0.811], + [48295,0.821], + [48297,0.769], + [48299,0.858], + [48301,0.803], + [48303,0.862], + [48305,0.754], + [48307,0.768], + [48309,0.849], + [48311,0.927], + [48313,0.808], + [48315,0.852], + [48317,0.774], + [48319,0.877], + [48321,0.806], + [48323,0.595], + [48325,0.832], + [48327,0.779], + [48329,0.845], + [48331,0.814], + [48333,0.83], + [48335,0.787], + [48337,0.857], + [48339,0.877], + [48341,0.673], + [48343,0.886], + [48345,0.875], + [48347,0.829], + [48349,0.784], + [48351,0.834], + [48353,0.823], + [48355,0.828], + [48357,0.744], + [48359,0.903], + [48361,0.879], + [48363,0.842], + [48365,0.829], + [48367,0.886], + [48369,0.708], + [48371,0.691], + [48373,0.816], + [48375,0.77], + [48377,0.534], + [48379,0.854], + [48381,0.923], + [48383,0.822], + [48385,0.833], + [48387,0.854], + [48389,0.697], + [48391,0.803], + [48393,0.927], + [48395,0.845], + [48397,0.927], + [48399,0.792], + [48401,0.806], + [48403,0.847], + [48405,0.823], + [48407,0.845], + [48409,0.799], + [48411,0.748], + [48413,0.796], + [48415,0.787], + [48417,0.864], + [48419,0.764], + [48421,0.79], + [48423,0.858], + [48425,0.896], + [48427,0.533], + [48429,0.785], + [48431,0.894], + [48433,0.813], + [48435,0.739], + [48437,0.733], + [48439,0.861], + [48441,0.893], + [48443,0.865], + [48445,0.684], + [48447,0.866], + [48449,0.767], + [48451,0.863], + [48453,0.893], + [48455,0.831], + [48457,0.82], + [48459,0.858], + [48461,0.756], + [48463,0.758], + [48465,0.682], + [48467,0.846], + [48469,0.838], + [48471,0.86], + [48473,0.825], + [48475,0.786], + [48477,0.867], + [48479,0.676], + [48481,0.783], + [48483,0.802], + [48485,0.866], + [48487,0.772], + [48489,0.657], + [48491,0.932], + [48493,0.876], + [48495,0.692], + [48497,0.853], + [48499,0.847], + [48501,0.635], + [48503,0.83], + [48505,0.619], + [48507,0.669], + [49001,0.889], + [49003,0.931], + [49005,0.931], + [49007,0.916], + [49009,0.94], + [49011,0.956], + [49013,0.888], + [49015,0.938], + [49017,0.927], + [49019,0.933], + [49021,0.929], + [49023,0.911], + [49025,0.925], + [49027,0.881], + [49029,0.981], + [49031,0.91], + [49033,0.957], + [49035,0.908], + [49037,0.849], + [49039,0.902], + [49041,0.906], + [49043,0.949], + [49045,0.913], + [49047,0.857], + [49049,0.946], + [49051,0.946], + [49053,0.929], + [49055,0.884], + [49057,0.906], + [50001,0.935], + [50003,0.912], + [50005,0.913], + [50007,0.944], + [50009,0.868], + [50011,0.907], + [50013,0.929], + [50015,0.928], + [50017,0.918], + [50019,0.883], + [50021,0.926], + [50023,0.937], + [50025,0.924], + [50027,0.934], + [51001,0.815], + [51003,0.921], + [51005,0.86], + [51007,0.839], + [51009,0.856], + [51011,0.859], + [51013,0.943], + [51015,0.874], + [51017,0.903], + [51019,0.9], + [51021,0.886], + [51023,0.928], + [51025,0.785], + [51027,0.701], + [51029,0.798], + [51031,0.872], + [51033,0.851], + [51035,0.808], + [51036,0.797], + [51037,0.832], + [51041,0.923], + [51043,0.891], + [51045,0.908], + [51047,0.861], + [51049,0.835], + [51051,0.774], + [51053,0.832], + [51057,0.823], + [51059,0.925], + [51061,0.925], + [51063,0.87], + [51065,0.911], + [51067,0.881], + [51069,0.892], + [51071,0.889], + [51073,0.896], + [51075,0.914], + [51077,0.813], + [51079,0.861], + [51081,0.778], + [51083,0.815], + [51085,0.931], + [51087,0.917], + [51089,0.801], + [51091,0.885], + [51093,0.879], + [51095,0.951], + [51097,0.881], + [51099,0.933], + [51101,0.921], + [51103,0.904], + [51105,0.767], + [51107,0.939], + [51109,0.852], + [51111,0.778], + [51113,0.861], + [51115,0.905], + [51117,0.819], + [51119,0.871], + [51121,0.932], + [51125,0.857], + [51127,0.927], + [51131,0.825], + [51133,0.91], + [51135,0.797], + [51137,0.887], + [51139,0.826], + [51141,0.802], + [51143,0.827], + [51145,0.899], + [51147,0.86], + [51149,0.906], + [51153,0.885], + [51155,0.874], + [51157,0.884], + [51159,0.806], + [51161,0.923], + [51163,0.868], + [51165,0.84], + [51167,0.803], + [51169,0.814], + [51171,0.87], + [51173,0.833], + [51175,0.848], + [51177,0.912], + [51179,0.932], + [51181,0.85], + [51183,0.803], + [51185,0.817], + [51187,0.869], + [51191,0.857], + [51193,0.845], + [51195,0.759], + [51197,0.862], + [51199,0.947], + [51510,0.93], + [51520,0.847], + [51530,0.811], + [51540,0.911], + [51550,0.921], + [51570,0.915], + [51580,0.873], + [51590,0.818], + [51595,0.794], + [51600,0.94], + [51610,0.989], + [51620,0.863], + [51630,0.902], + [51640,0.757], + [51650,0.914], + [51660,0.839], + [51670,0.813], + [51678,0.914], + [51680,0.887], + [51683,0.827], + [51685,0.827], + [51690,0.828], + [51700,0.91], + [51710,0.88], + [51720,0.84], + [51730,0.828], + [51735,0.949], + [51740,0.883], + [51750,0.912], + [51760,0.854], + [51770,0.862], + [51775,0.892], + [51790,0.897], + [51800,0.899], + [51810,0.935], + [51820,0.861], + [51830,0.947], + [51840,0.841], + [53001,0.669], + [53003,0.914], + [53005,0.902], + [53007,0.826], + [53009,0.925], + [53011,0.927], + [53013,0.912], + [53015,0.893], + [53017,0.821], + [53019,0.87], + [53021,0.75], + [53023,0.944], + [53025,0.767], + [53027,0.897], + [53029,0.953], + [53031,0.951], + [53033,0.931], + [53035,0.948], + [53037,0.914], + [53039,0.88], + [53041,0.875], + [53043,0.927], + [53045,0.886], + [53047,0.839], + [53049,0.883], + [53051,0.911], + [53053,0.915], + [53055,0.959], + [53057,0.902], + [53059,0.916], + [53061,0.923], + [53063,0.938], + [53065,0.906], + [53067,0.937], + [53069,0.921], + [53071,0.883], + [53073,0.928], + [53075,0.955], + [53077,0.737], + [54001,0.853], + [54003,0.89], + [54005,0.797], + [54007,0.804], + [54009,0.906], + [54011,0.88], + [54013,0.805], + [54015,0.773], + [54017,0.82], + [54019,0.828], + [54021,0.85], + [54023,0.821], + [54025,0.86], + [54027,0.843], + [54029,0.904], + [54031,0.803], + [54033,0.888], + [54035,0.883], + [54037,0.898], + [54039,0.887], + [54041,0.884], + [54043,0.809], + [54045,0.798], + [54047,0.686], + [54049,0.894], + [54051,0.923], + [54053,0.86], + [54055,0.835], + [54057,0.922], + [54059,0.755], + [54061,0.924], + [54063,0.845], + [54065,0.859], + [54067,0.869], + [54069,0.935], + [54071,0.814], + [54073,0.891], + [54075,0.826], + [54077,0.868], + [54079,0.917], + [54081,0.865], + [54083,0.855], + [54085,0.846], + [54087,0.791], + [54089,0.85], + [54091,0.893], + [54093,0.878], + [54095,0.892], + [54097,0.854], + [54099,0.797], + [54101,0.793], + [54103,0.862], + [54105,0.829], + [54107,0.899], + [54109,0.802], + [55001,0.875], + [55003,0.922], + [55005,0.902], + [55007,0.951], + [55009,0.921], + [55011,0.909], + [55013,0.932], + [55015,0.942], + [55017,0.928], + [55019,0.823], + [55021,0.927], + [55023,0.913], + [55025,0.958], + [55027,0.908], + [55029,0.944], + [55031,0.937], + [55033,0.937], + [55035,0.941], + [55037,0.931], + [55039,0.918], + [55041,0.888], + [55043,0.923], + [55045,0.924], + [55047,0.898], + [55049,0.952], + [55051,0.945], + [55053,0.899], + [55055,0.918], + [55057,0.884], + [55059,0.901], + [55061,0.931], + [55063,0.95], + [55065,0.908], + [55067,0.903], + [55069,0.92], + [55071,0.92], + [55073,0.918], + [55075,0.911], + [55077,0.891], + [55078,0.919], + [55079,0.883], + [55081,0.909], + [55083,0.904], + [55085,0.931], + [55087,0.941], + [55089,0.968], + [55091,0.91], + [55093,0.951], + [55095,0.938], + [55097,0.939], + [55099,0.918], + [55101,0.905], + [55103,0.901], + [55105,0.908], + [55107,0.88], + [55109,0.962], + [55111,0.909], + [55113,0.923], + [55115,0.914], + [55117,0.932], + [55119,0.884], + [55121,0.907], + [55123,0.894], + [55125,0.937], + [55127,0.908], + [55129,0.922], + [55131,0.949], + [55133,0.962], + [55135,0.918], + [55137,0.868], + [55139,0.929], + [55141,0.927], + [56001,0.959], + [56003,0.897], + [56005,0.929], + [56007,0.91], + [56009,0.908], + [56011,0.927], + [56013,0.921], + [56015,0.921], + [56017,0.947], + [56019,0.96], + [56021,0.93], + [56023,0.928], + [56025,0.925], + [56027,0.871], + [56029,0.955], + [56031,0.911], + [56033,0.953], + [56035,0.96], + [56037,0.928], + [56039,0.952], + [56041,0.927], + [56043,0.898], + [56045,0.937] + ] +} diff --git a/data/regional/united-states/education/us-education-somecollege-2016.json b/data/regional/united-states/education/us-education-somecollege-2016.json new file mode 100644 index 0000000..3dbe30e --- /dev/null +++ b/data/regional/united-states/education/us-education-somecollege-2016.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Some College Education", + "description" : "Percent of the population with some college education.", + "units" : "%", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","college"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","eu.education.somecollege.2016"], + [1001,0.287], + [1003,0.318], + [1005,0.26], + [1007,0.269], + [1009,0.34], + [1011,0.222], + [1013,0.251], + [1015,0.326], + [1017,0.284], + [1019,0.314], + [1021,0.24], + [1023,0.296], + [1025,0.238], + [1027,0.29], + [1029,0.247], + [1031,0.321], + [1033,0.301], + [1035,0.246], + [1037,0.267], + [1039,0.316], + [1041,0.251], + [1043,0.321], + [1045,0.367], + [1047,0.288], + [1049,0.27], + [1051,0.291], + [1053,0.254], + [1055,0.334], + [1057,0.26], + [1059,0.266], + [1061,0.301], + [1063,0.26], + [1065,0.246], + [1067,0.284], + [1069,0.318], + [1071,0.258], + [1073,0.311], + [1075,0.29], + [1077,0.286], + [1079,0.274], + [1081,0.298], + [1083,0.279], + [1085,0.249], + [1087,0.292], + [1089,0.292], + [1091,0.288], + [1093,0.325], + [1095,0.301], + [1097,0.307], + [1099,0.246], + [1101,0.287], + [1103,0.31], + [1105,0.224], + [1107,0.301], + [1109,0.233], + [1111,0.255], + [1113,0.344], + [1115,0.313], + [1117,0.291], + [1119,0.203], + [1121,0.31], + [1123,0.27], + [1125,0.284], + [1127,0.314], + [1129,0.243], + [1131,0.236], + [1133,0.286], + [2013,0.304], + [2016,0.315], + [2020,0.35], + [2050,0.241], + [2060,0.387], + [2068,0.343], + [2070,0.324], + [2090,0.388], + [2100,0.293], + [2105,0.324], + [2110,0.35], + [2122,0.369], + [2130,0.365], + [2150,0.385], + [2158,null], + [2164,0.314], + [2170,0.4], + [2180,0.279], + [2185,0.363], + [2188,0.234], + [2195,0.337], + [2198,0.356], + [2220,0.346], + [2230,0.379], + [2240,0.381], + [2261,0.354], + [2275,0.336], + [2282,0.339], + [2290,0.307], + [4001,0.337], + [4003,0.402], + [4005,0.331], + [4007,0.379], + [4009,0.392], + [4011,0.389], + [4012,0.283], + [4013,0.33], + [4015,0.36], + [4017,0.367], + [4019,0.344], + [4021,0.372], + [4023,0.261], + [4025,0.388], + [4027,0.318], + [5001,0.275], + [5003,0.306], + [5005,0.351], + [5007,0.26], + [5009,0.354], + [5011,0.242], + [5013,0.216], + [5015,0.312], + [5017,0.249], + [5019,0.309], + [5021,0.254], + [5023,0.297], + [5025,0.265], + [5027,0.24], + [5029,0.258], + [5031,0.283], + [5033,0.318], + [5035,0.288], + [5037,0.219], + [5039,0.219], + [5041,0.233], + [5043,0.249], + [5045,0.313], + [5047,0.273], + [5049,0.322], + [5051,0.364], + [5053,0.286], + [5055,0.258], + [5057,0.281], + [5059,0.308], + [5061,0.299], + [5063,0.293], + [5065,0.308], + [5067,0.259], + [5069,0.288], + [5071,0.2], + [5073,0.238], + [5075,0.272], + [5077,0.226], + [5079,0.21], + [5081,0.357], + [5083,0.259], + [5085,0.347], + [5087,0.219], + [5089,0.312], + [5091,0.318], + [5093,0.309], + [5095,0.274], + [5097,0.318], + [5099,0.231], + [5101,0.249], + [5103,0.269], + [5105,0.286], + [5107,0.333], + [5109,0.31], + [5111,0.267], + [5113,0.351], + [5115,0.284], + [5117,0.26], + [5119,0.301], + [5121,0.313], + [5123,0.288], + [5125,0.313], + [5127,0.274], + [5129,0.281], + [5131,0.318], + [5133,0.257], + [5135,0.3], + [5137,0.27], + [5139,0.286], + [5141,0.255], + [5143,0.255], + [5145,0.265], + [5147,0.199], + [5149,0.226], + [6001,0.254], + [6003,0.289], + [6005,0.401], + [6007,0.394], + [6009,0.43], + [6011,0.318], + [6013,0.306], + [6015,0.365], + [6017,0.379], + [6019,0.313], + [6021,0.32], + [6023,0.374], + [6025,0.306], + [6027,0.328], + [6029,0.307], + [6031,0.337], + [6033,0.397], + [6035,0.38], + [6037,0.263], + [6039,0.327], + [6041,0.248], + [6043,0.385], + [6045,0.363], + [6047,0.297], + [6049,0.411], + [6051,0.354], + [6053,0.269], + [6055,0.321], + [6057,0.393], + [6059,0.286], + [6061,0.381], + [6063,0.461], + [6065,0.334], + [6067,0.351], + [6069,0.347], + [6071,0.333], + [6073,0.311], + [6075,0.202], + [6077,0.332], + [6079,0.367], + [6081,0.256], + [6083,0.299], + [6085,0.232], + [6087,0.319], + [6089,0.444], + [6091,0.427], + [6093,0.41], + [6095,0.389], + [6097,0.347], + [6099,0.33], + [6101,0.369], + [6103,0.38], + [6105,0.382], + [6107,0.288], + [6109,0.414], + [6111,0.325], + [6113,0.264], + [6115,0.423], + [8001,0.313], + [8003,0.336], + [8005,0.31], + [8007,0.308], + [8009,0.349], + [8011,0.293], + [8013,0.223], + [8014,0.285], + [8015,0.311], + [8017,0.333], + [8019,0.32], + [8021,0.34], + [8023,0.306], + [8025,0.322], + [8027,0.405], + [8029,0.315], + [8031,0.23], + [8033,0.319], + [8035,0.281], + [8037,0.259], + [8039,0.375], + [8041,0.368], + [8043,0.331], + [8045,0.291], + [8047,0.393], + [8049,0.328], + [8051,0.246], + [8053,0.311], + [8055,0.379], + [8057,0.315], + [8059,0.31], + [8061,0.375], + [8063,0.317], + [8065,0.283], + [8067,0.325], + [8069,0.31], + [8071,0.372], + [8073,0.218], + [8075,0.384], + [8077,0.345], + [8079,0.331], + [8081,0.323], + [8083,0.336], + [8085,0.329], + [8087,0.331], + [8089,0.402], + [8091,0.251], + [8093,0.398], + [8095,0.363], + [8097,0.212], + [8099,0.397], + [8101,0.377], + [8103,0.364], + [8105,0.334], + [8107,0.255], + [8109,0.291], + [8111,0.344], + [8113,0.233], + [8115,0.376], + [8117,0.277], + [8119,0.364], + [8121,0.412], + [8123,0.333], + [8125,0.326], + [9001,0.212], + [9003,0.252], + [9005,0.282], + [9007,0.257], + [9009,0.249], + [9011,0.283], + [9013,0.279], + [9015,0.309], + [10001,0.302], + [10003,0.261], + [10005,0.276], + [11001,0.166], + [12001,0.291], + [12003,0.278], + [12005,0.356], + [12007,0.302], + [12009,0.346], + [12011,0.3], + [12013,0.265], + [12015,0.336], + [12017,0.313], + [12019,0.362], + [12021,0.256], + [12023,0.342], + [12027,0.198], + [12029,0.281], + [12031,0.328], + [12033,0.369], + [12035,0.343], + [12037,0.271], + [12039,0.257], + [12041,0.31], + [12043,0.215], + [12045,0.301], + [12047,0.263], + [12049,0.189], + [12051,0.221], + [12053,0.34], + [12055,0.299], + [12057,0.292], + [12059,0.283], + [12061,0.303], + [12063,0.292], + [12065,0.282], + [12067,0.238], + [12069,0.326], + [12071,0.295], + [12073,0.288], + [12075,0.294], + [12077,0.202], + [12079,0.318], + [12081,0.297], + [12083,0.309], + [12085,0.324], + [12086,0.25], + [12087,0.311], + [12089,0.315], + [12091,0.363], + [12093,0.232], + [12095,0.3], + [12097,0.334], + [12099,0.286], + [12101,0.325], + [12103,0.318], + [12105,0.286], + [12107,0.275], + [12109,0.309], + [12111,0.328], + [12113,0.359], + [12115,0.297], + [12117,0.341], + [12119,0.304], + [12121,0.271], + [12123,0.278], + [12125,0.271], + [12127,0.334], + [12129,0.337], + [12131,0.321], + [12133,0.27], + [13001,0.237], + [13003,0.212], + [13005,0.259], + [13007,0.262], + [13009,0.262], + [13011,0.215], + [13013,0.316], + [13015,0.287], + [13017,0.275], + [13019,0.292], + [13021,0.275], + [13023,0.251], + [13025,0.251], + [13027,0.281], + [13029,0.313], + [13031,0.308], + [13033,0.287], + [13035,0.225], + [13037,0.255], + [13039,0.359], + [13043,0.251], + [13045,0.278], + [13047,0.342], + [13049,0.256], + [13051,0.314], + [13053,0.334], + [13055,0.245], + [13057,0.302], + [13059,0.241], + [13061,0.289], + [13063,0.327], + [13065,0.234], + [13067,0.272], + [13069,0.261], + [13071,0.226], + [13073,0.323], + [13075,0.235], + [13077,0.293], + [13079,0.299], + [13081,0.267], + [13083,0.302], + [13085,0.276], + [13087,0.287], + [13089,0.26], + [13091,0.256], + [13093,0.232], + [13095,0.34], + [13097,0.307], + [13099,0.251], + [13101,0.238], + [13103,0.31], + [13105,0.215], + [13107,0.259], + [13109,0.223], + [13111,0.265], + [13113,0.281], + [13115,0.289], + [13117,0.263], + [13119,0.239], + [13121,0.234], + [13123,0.266], + [13125,0.27], + [13127,0.318], + [13129,0.272], + [13131,0.271], + [13133,0.241], + [13135,0.293], + [13137,0.265], + [13139,0.271], + [13141,0.217], + [13143,0.278], + [13145,0.362], + [13147,0.295], + [13149,0.248], + [13151,0.32], + [13153,0.365], + [13155,0.301], + [13157,0.294], + [13159,0.256], + [13161,0.291], + [13163,0.227], + [13165,0.251], + [13167,0.28], + [13169,0.292], + [13171,0.281], + [13173,0.341], + [13175,0.236], + [13177,0.355], + [13179,0.393], + [13181,0.278], + [13183,0.374], + [13185,0.314], + [13187,0.282], + [13189,0.26], + [13191,0.335], + [13193,0.289], + [13195,0.276], + [13197,0.288], + [13199,0.28], + [13201,0.289], + [13205,0.237], + [13207,0.266], + [13209,0.279], + [13211,0.276], + [13213,0.221], + [13215,0.348], + [13217,0.332], + [13219,0.259], + [13221,0.26], + [13223,0.315], + [13225,0.34], + [13227,0.288], + [13229,0.287], + [13231,0.31], + [13233,0.255], + [13235,0.257], + [13237,0.275], + [13239,0.257], + [13241,0.262], + [13243,0.259], + [13245,0.317], + [13247,0.29], + [13249,0.321], + [13251,0.262], + [13253,0.279], + [13255,0.26], + [13257,0.262], + [13259,0.164], + [13261,0.265], + [13263,0.21], + [13265,0.13], + [13267,0.242], + [13269,0.29], + [13271,0.156], + [13273,0.317], + [13275,0.296], + [13277,0.292], + [13279,0.232], + [13281,0.323], + [13283,0.212], + [13285,0.294], + [13287,0.267], + [13289,0.216], + [13291,0.313], + [13293,0.294], + [13295,0.28], + [13297,0.315], + [13299,0.28], + [13301,0.171], + [13303,0.256], + [13305,0.283], + [13307,0.237], + [13309,0.183], + [13311,0.324], + [13313,0.268], + [13315,0.189], + [13317,0.222], + [13319,0.239], + [13321,0.266], + [15001,0.323], + [15003,0.315], + [15005,0.238], + [15007,0.33], + [15009,0.347], + [16001,0.357], + [16003,0.293], + [16005,0.379], + [16007,0.35], + [16009,0.343], + [16011,0.373], + [16013,0.287], + [16015,0.391], + [16017,0.378], + [16019,0.364], + [16021,0.342], + [16023,0.404], + [16025,0.379], + [16027,0.335], + [16029,0.382], + [16031,0.349], + [16033,0.226], + [16035,0.342], + [16037,0.354], + [16039,0.419], + [16041,0.378], + [16043,0.326], + [16045,0.322], + [16047,0.287], + [16049,0.345], + [16051,0.372], + [16053,0.309], + [16055,0.404], + [16057,0.299], + [16059,0.371], + [16061,0.39], + [16063,0.308], + [16065,0.443], + [16067,0.34], + [16069,0.378], + [16071,0.394], + [16073,0.282], + [16075,0.373], + [16077,0.272], + [16079,0.359], + [16081,0.319], + [16083,0.394], + [16085,0.38], + [16087,0.344], + [17001,0.336], + [17003,0.318], + [17005,0.29], + [17007,0.292], + [17009,0.324], + [17011,0.329], + [17013,0.32], + [17015,0.329], + [17017,0.254], + [17019,0.286], + [17021,0.296], + [17023,0.343], + [17025,0.353], + [17027,0.366], + [17029,0.338], + [17031,0.257], + [17033,0.378], + [17035,0.355], + [17037,0.357], + [17039,0.342], + [17041,0.296], + [17043,0.264], + [17045,0.33], + [17047,0.405], + [17049,0.321], + [17051,0.286], + [17053,0.338], + [17055,0.392], + [17057,0.365], + [17059,0.345], + [17061,0.326], + [17063,0.348], + [17065,0.377], + [17067,0.344], + [17069,0.369], + [17071,0.304], + [17073,0.34], + [17075,0.33], + [17077,0.316], + [17079,0.344], + [17081,0.374], + [17083,0.361], + [17085,0.308], + [17087,0.358], + [17089,0.278], + [17091,0.344], + [17093,0.347], + [17095,0.332], + [17097,0.252], + [17099,0.349], + [17101,0.336], + [17103,0.342], + [17105,0.316], + [17107,0.344], + [17109,0.304], + [17111,0.325], + [17113,0.256], + [17115,0.321], + [17117,0.334], + [17119,0.352], + [17121,0.377], + [17123,0.353], + [17125,0.303], + [17127,0.377], + [17129,0.331], + [17131,0.329], + [17133,0.333], + [17135,0.318], + [17137,0.283], + [17139,0.321], + [17141,0.346], + [17143,0.328], + [17145,0.332], + [17147,0.308], + [17149,0.311], + [17151,0.412], + [17153,0.37], + [17155,0.376], + [17157,0.305], + [17159,0.334], + [17161,0.354], + [17163,0.36], + [17165,0.387], + [17167,0.301], + [17169,0.331], + [17171,0.3], + [17173,0.301], + [17175,0.336], + [17177,0.377], + [17179,0.349], + [17181,0.318], + [17183,0.326], + [17185,0.399], + [17187,0.307], + [17189,0.372], + [17191,0.382], + [17193,0.377], + [17195,0.353], + [17197,0.305], + [17199,0.376], + [17201,0.327], + [17203,0.308], + [18001,0.27], + [18003,0.327], + [18005,0.257], + [18007,0.275], + [18009,0.278], + [18011,0.233], + [18013,0.3], + [18015,0.297], + [18017,0.294], + [18019,0.336], + [18021,0.28], + [18023,0.259], + [18025,0.252], + [18027,0.244], + [18029,0.305], + [18031,0.273], + [18033,0.305], + [18035,0.306], + [18037,0.279], + [18039,0.255], + [18041,0.275], + [18043,0.306], + [18045,0.293], + [18047,0.262], + [18049,0.302], + [18051,0.349], + [18053,0.288], + [18055,0.31], + [18057,0.239], + [18059,0.32], + [18061,0.298], + [18063,0.303], + [18065,0.287], + [18067,0.325], + [18069,0.279], + [18071,0.25], + [18073,0.292], + [18075,0.255], + [18077,0.302], + [18079,0.277], + [18081,0.293], + [18083,0.367], + [18085,0.266], + [18087,0.211], + [18089,0.314], + [18091,0.31], + [18093,0.316], + [18095,0.309], + [18097,0.285], + [18099,0.254], + [18101,0.302], + [18103,0.305], + [18105,0.244], + [18107,0.283], + [18109,0.308], + [18111,0.288], + [18113,0.295], + [18115,0.28], + [18117,0.264], + [18119,0.291], + [18121,0.313], + [18123,0.224], + [18125,0.278], + [18127,0.307], + [18129,0.349], + [18131,0.304], + [18133,0.318], + [18135,0.297], + [18137,0.261], + [18139,0.227], + [18141,0.286], + [18143,0.29], + [18145,0.281], + [18147,0.301], + [18149,0.298], + [18151,0.305], + [18153,0.31], + [18155,0.261], + [18157,0.289], + [18159,0.278], + [18161,0.25], + [18163,0.311], + [18165,0.307], + [18167,0.315], + [18169,0.276], + [18171,0.282], + [18173,0.319], + [18175,0.272], + [18177,0.284], + [18179,0.334], + [18181,0.307], + [18183,0.305], + [19001,0.336], + [19003,0.357], + [19005,0.307], + [19007,0.361], + [19009,0.341], + [19011,0.353], + [19013,0.311], + [19015,0.376], + [19017,0.33], + [19019,0.337], + [19021,0.29], + [19023,0.359], + [19025,0.375], + [19027,0.321], + [19029,0.277], + [19031,0.351], + [19033,0.4], + [19035,0.367], + [19037,0.317], + [19039,0.31], + [19041,0.378], + [19043,0.31], + [19045,0.357], + [19047,0.292], + [19049,0.287], + [19051,0.319], + [19053,0.297], + [19055,0.321], + [19057,0.376], + [19059,0.373], + [19061,0.285], + [19063,0.38], + [19065,0.317], + [19067,0.341], + [19069,0.336], + [19071,0.35], + [19073,0.374], + [19075,0.359], + [19077,0.324], + [19079,0.387], + [19081,0.361], + [19083,0.375], + [19085,0.354], + [19087,0.357], + [19089,0.322], + [19091,0.364], + [19093,0.34], + [19095,0.326], + [19097,0.315], + [19099,0.338], + [19101,0.328], + [19103,0.258], + [19105,0.358], + [19107,0.314], + [19109,0.369], + [19111,0.36], + [19113,0.352], + [19115,0.321], + [19117,0.302], + [19119,0.321], + [19121,0.345], + [19123,0.3], + [19125,0.316], + [19127,0.325], + [19129,0.34], + [19131,0.317], + [19133,0.341], + [19135,0.27], + [19137,0.374], + [19139,0.324], + [19141,0.357], + [19143,0.314], + [19145,0.326], + [19147,0.413], + [19149,0.38], + [19151,0.37], + [19153,0.312], + [19155,0.346], + [19157,0.313], + [19159,0.341], + [19161,0.338], + [19163,0.317], + [19165,0.324], + [19167,0.321], + [19169,0.276], + [19171,0.336], + [19173,0.355], + [19175,0.366], + [19177,0.334], + [19179,0.32], + [19181,0.346], + [19183,0.325], + [19185,0.305], + [19187,0.375], + [19189,0.366], + [19191,0.332], + [19193,0.3], + [19195,0.417], + [19197,0.373], + [20001,0.395], + [20003,0.346], + [20005,0.312], + [20007,0.372], + [20009,0.379], + [20011,0.391], + [20013,0.335], + [20015,0.376], + [20017,0.366], + [20019,0.313], + [20021,0.345], + [20023,0.382], + [20025,0.354], + [20027,0.378], + [20029,0.394], + [20031,0.343], + [20033,0.392], + [20035,0.393], + [20037,0.33], + [20039,0.3], + [20041,0.337], + [20043,0.346], + [20045,0.26], + [20047,0.359], + [20049,0.372], + [20051,0.328], + [20053,0.379], + [20055,0.305], + [20057,0.293], + [20059,0.359], + [20061,0.42], + [20063,0.33], + [20065,0.328], + [20067,0.25], + [20069,0.307], + [20071,0.275], + [20073,0.362], + [20075,0.28], + [20077,0.327], + [20079,0.352], + [20081,0.343], + [20083,0.417], + [20085,0.346], + [20087,0.32], + [20089,0.36], + [20091,0.273], + [20093,0.36], + [20095,0.346], + [20097,0.366], + [20099,0.369], + [20101,0.414], + [20103,0.319], + [20105,0.426], + [20107,0.353], + [20109,0.43], + [20111,0.293], + [20113,0.338], + [20115,0.317], + [20117,0.336], + [20119,0.33], + [20121,0.378], + [20123,0.388], + [20125,0.41], + [20127,0.345], + [20129,0.361], + [20131,0.273], + [20133,0.411], + [20135,0.37], + [20137,0.399], + [20139,0.317], + [20141,0.35], + [20143,0.372], + [20145,0.395], + [20147,0.356], + [20149,0.333], + [20151,0.381], + [20153,0.39], + [20155,0.385], + [20157,0.4], + [20159,0.372], + [20161,0.324], + [20163,0.338], + [20165,0.377], + [20167,0.348], + [20169,0.327], + [20171,0.277], + [20173,0.323], + [20175,0.285], + [20177,0.31], + [20179,0.369], + [20181,0.419], + [20183,0.352], + [20185,0.373], + [20187,0.302], + [20189,0.342], + [20191,0.37], + [20193,0.375], + [20195,0.36], + [20197,0.343], + [20199,0.334], + [20201,0.368], + [20203,0.353], + [20205,0.354], + [20207,0.378], + [20209,0.29], + [21001,0.231], + [21003,0.27], + [21005,0.301], + [21007,0.342], + [21009,0.257], + [21011,0.235], + [21013,0.22], + [21015,0.343], + [21017,0.288], + [21019,0.349], + [21021,0.277], + [21023,0.248], + [21025,0.248], + [21027,0.253], + [21029,0.315], + [21031,0.239], + [21033,0.264], + [21035,0.284], + [21037,0.287], + [21039,0.322], + [21041,0.242], + [21043,0.257], + [21045,0.246], + [21047,0.357], + [21049,0.28], + [21051,0.189], + [21053,0.221], + [21055,0.285], + [21057,0.294], + [21059,0.309], + [21061,0.248], + [21063,0.248], + [21065,0.186], + [21067,0.279], + [21069,0.258], + [21071,0.278], + [21073,0.286], + [21075,0.288], + [21077,0.259], + [21079,0.264], + [21081,0.243], + [21083,0.277], + [21085,0.262], + [21087,0.232], + [21089,0.327], + [21091,0.312], + [21093,0.346], + [21095,0.241], + [21097,0.243], + [21099,0.215], + [21101,0.333], + [21103,0.264], + [21105,0.254], + [21107,0.294], + [21109,0.202], + [21111,0.304], + [21113,0.271], + [21115,0.297], + [21117,0.312], + [21119,0.239], + [21121,0.21], + [21123,0.316], + [21125,0.26], + [21127,0.235], + [21129,0.19], + [21131,0.194], + [21133,0.256], + [21135,0.222], + [21137,0.234], + [21139,0.263], + [21141,0.258], + [21143,0.301], + [21145,0.344], + [21147,0.242], + [21149,0.333], + [21151,0.273], + [21153,0.224], + [21155,0.249], + [21157,0.299], + [21159,0.277], + [21161,0.28], + [21163,0.338], + [21165,0.25], + [21167,0.287], + [21169,0.264], + [21171,0.186], + [21173,0.274], + [21175,0.246], + [21177,0.246], + [21179,0.311], + [21181,0.258], + [21183,0.255], + [21185,0.3], + [21187,0.244], + [21189,0.15], + [21191,0.28], + [21193,0.272], + [21195,0.242], + [21197,0.213], + [21199,0.268], + [21201,0.234], + [21203,0.215], + [21205,0.246], + [21207,0.259], + [21209,0.298], + [21211,0.299], + [21213,0.266], + [21215,0.358], + [21217,0.265], + [21219,0.239], + [21221,0.354], + [21223,0.255], + [21225,0.329], + [21227,0.287], + [21229,0.249], + [21231,0.223], + [21233,0.264], + [21235,0.233], + [21237,0.184], + [21239,0.282], + [22001,0.24], + [22003,0.244], + [22005,0.268], + [22007,0.198], + [22009,0.215], + [22011,0.268], + [22013,0.284], + [22015,0.336], + [22017,0.295], + [22019,0.303], + [22021,0.209], + [22023,0.298], + [22025,0.218], + [22027,0.249], + [22029,0.246], + [22031,0.276], + [22033,0.286], + [22035,0.226], + [22037,0.252], + [22039,0.228], + [22041,0.219], + [22043,0.287], + [22045,0.228], + [22047,0.243], + [22049,0.231], + [22051,0.287], + [22053,0.232], + [22055,0.272], + [22057,0.199], + [22059,0.219], + [22061,0.246], + [22063,0.263], + [22065,0.221], + [22067,0.224], + [22069,0.318], + [22071,0.266], + [22073,0.274], + [22075,0.266], + [22077,0.248], + [22079,0.273], + [22081,0.222], + [22083,0.245], + [22085,0.256], + [22087,0.291], + [22089,0.308], + [22091,0.226], + [22093,0.266], + [22095,0.296], + [22097,0.194], + [22099,0.242], + [22101,0.2], + [22103,0.309], + [22105,0.258], + [22107,0.214], + [22109,0.237], + [22111,0.27], + [22113,0.224], + [22115,0.326], + [22117,0.227], + [22119,0.261], + [22121,0.259], + [22123,0.206], + [22125,0.251], + [22127,0.254], + [23001,0.313], + [23003,0.312], + [23005,0.268], + [23007,0.297], + [23009,0.281], + [23011,0.31], + [23013,0.279], + [23015,0.278], + [23017,0.283], + [23019,0.31], + [23021,0.325], + [23023,0.302], + [23025,0.303], + [23027,0.287], + [23029,0.294], + [23031,0.304], + [24001,0.292], + [24003,0.28], + [24005,0.266], + [24009,0.332], + [24011,0.262], + [24013,0.278], + [24015,0.281], + [24017,0.331], + [24019,0.257], + [24021,0.276], + [24023,0.269], + [24025,0.305], + [24027,0.202], + [24029,0.238], + [24031,0.19], + [24033,0.285], + [24035,0.268], + [24037,0.297], + [24039,0.235], + [24041,0.271], + [24043,0.288], + [24045,0.277], + [24047,0.274], + [24510,0.241], + [25001,0.292], + [25003,0.273], + [25005,0.272], + [25007,0.285], + [25009,0.255], + [25011,0.293], + [25013,0.288], + [25015,0.252], + [25017,0.191], + [25019,0.276], + [25021,0.217], + [25023,0.285], + [25025,0.187], + [25027,0.263], + [26001,0.339], + [26003,0.27], + [26005,0.308], + [26007,0.401], + [26009,0.309], + [26011,0.32], + [26013,0.253], + [26015,0.354], + [26017,0.355], + [26019,0.323], + [26021,0.327], + [26023,0.339], + [26025,0.341], + [26027,0.357], + [26029,0.323], + [26031,0.323], + [26033,0.32], + [26035,0.335], + [26037,0.35], + [26039,0.354], + [26041,0.382], + [26043,0.312], + [26045,0.39], + [26047,0.352], + [26049,0.374], + [26051,0.311], + [26053,0.363], + [26055,0.366], + [26057,0.34], + [26059,0.315], + [26061,0.266], + [26063,0.306], + [26065,0.33], + [26067,0.347], + [26069,0.325], + [26071,0.289], + [26073,0.321], + [26075,0.356], + [26077,0.346], + [26079,0.327], + [26081,0.309], + [26083,0.352], + [26085,0.305], + [26087,0.356], + [26089,0.315], + [26091,0.337], + [26093,0.353], + [26095,0.309], + [26097,0.347], + [26099,0.349], + [26101,0.335], + [26103,0.327], + [26105,0.367], + [26107,0.329], + [26109,0.325], + [26111,0.316], + [26113,0.328], + [26115,0.355], + [26117,0.362], + [26119,0.331], + [26121,0.364], + [26123,0.308], + [26125,0.289], + [26127,0.33], + [26129,0.342], + [26131,0.328], + [26133,0.295], + [26135,0.339], + [26137,0.334], + [26139,0.31], + [26141,0.314], + [26143,0.344], + [26145,0.338], + [26147,0.37], + [26149,0.317], + [26151,0.315], + [26153,0.277], + [26155,0.391], + [26157,0.331], + [26159,0.327], + [26161,0.259], + [26163,0.326], + [26165,0.337], + [27001,0.363], + [27003,0.371], + [27005,0.359], + [27007,0.362], + [27009,0.378], + [27011,0.303], + [27013,0.341], + [27015,0.324], + [27017,0.355], + [27019,0.292], + [27021,0.363], + [27023,0.375], + [27025,0.377], + [27027,0.349], + [27029,0.338], + [27031,0.317], + [27033,0.353], + [27035,0.389], + [27037,0.329], + [27039,0.362], + [27041,0.4], + [27043,0.327], + [27045,0.361], + [27047,0.361], + [27049,0.358], + [27051,0.397], + [27053,0.277], + [27055,0.372], + [27057,0.347], + [27059,0.367], + [27061,0.401], + [27063,0.38], + [27065,0.34], + [27067,0.392], + [27069,0.35], + [27071,0.356], + [27073,0.357], + [27075,0.346], + [27077,0.307], + [27079,0.334], + [27081,0.323], + [27083,0.322], + [27085,0.373], + [27087,0.385], + [27089,0.324], + [27091,0.329], + [27093,0.358], + [27095,0.364], + [27097,0.353], + [27099,0.353], + [27101,0.347], + [27103,0.342], + [27105,0.305], + [27107,0.337], + [27109,0.318], + [27111,0.37], + [27113,0.381], + [27115,0.34], + [27117,0.315], + [27119,0.363], + [27121,0.373], + [27123,0.274], + [27125,0.361], + [27127,0.331], + [27129,0.378], + [27131,0.317], + [27133,0.315], + [27135,0.366], + [27137,0.366], + [27139,0.33], + [27141,0.406], + [27143,0.328], + [27145,0.363], + [27147,0.32], + [27149,0.367], + [27151,0.358], + [27153,0.357], + [27155,0.366], + [27157,0.348], + [27159,0.381], + [27161,0.359], + [27163,0.321], + [27165,0.278], + [27167,0.416], + [27169,0.341], + [27171,0.387], + [27173,0.375], + [28001,0.282], + [28003,0.299], + [28005,0.263], + [28007,0.324], + [28009,0.28], + [28011,0.282], + [28013,0.294], + [28015,0.288], + [28017,0.25], + [28019,0.3], + [28021,0.295], + [28023,0.303], + [28025,0.278], + [28027,0.339], + [28029,0.335], + [28031,0.269], + [28033,0.368], + [28035,0.32], + [28037,0.295], + [28039,0.272], + [28041,0.307], + [28043,0.313], + [28045,0.35], + [28047,0.354], + [28049,0.332], + [28051,0.223], + [28053,0.238], + [28055,0.231], + [28057,0.327], + [28059,0.36], + [28061,0.319], + [28063,0.247], + [28065,0.273], + [28067,0.325], + [28069,0.356], + [28071,0.288], + [28073,0.311], + [28075,0.357], + [28077,0.297], + [28079,0.275], + [28081,0.335], + [28083,0.249], + [28085,0.336], + [28087,0.315], + [28089,0.283], + [28091,0.278], + [28093,0.267], + [28095,0.281], + [28097,0.23], + [28099,0.31], + [28101,0.379], + [28103,0.224], + [28105,0.242], + [28107,0.274], + [28109,0.391], + [28111,0.33], + [28113,0.306], + [28115,0.284], + [28117,0.327], + [28119,0.235], + [28121,0.33], + [28123,0.263], + [28125,0.274], + [28127,0.297], + [28129,0.264], + [28131,0.329], + [28133,0.288], + [28135,0.251], + [28137,0.353], + [28139,0.295], + [28141,0.277], + [28143,0.284], + [28145,0.291], + [28147,0.243], + [28149,0.309], + [28151,0.281], + [28153,0.264], + [28155,0.312], + [28157,0.172], + [28159,0.274], + [28161,0.278], + [28163,0.253], + [29001,0.245], + [29003,0.282], + [29005,0.265], + [29007,0.255], + [29009,0.27], + [29011,0.29], + [29013,0.271], + [29015,0.302], + [29017,0.233], + [29019,0.265], + [29021,0.303], + [29023,0.309], + [29025,0.282], + [29027,0.278], + [29029,0.306], + [29031,0.285], + [29033,0.23], + [29035,0.346], + [29037,0.327], + [29039,0.289], + [29041,0.226], + [29043,0.335], + [29045,0.308], + [29047,0.318], + [29049,0.355], + [29051,0.281], + [29053,0.284], + [29055,0.258], + [29057,0.281], + [29059,0.262], + [29061,0.252], + [29063,0.248], + [29065,0.269], + [29067,0.271], + [29069,0.247], + [29071,0.338], + [29073,0.273], + [29075,0.263], + [29077,0.329], + [29079,0.288], + [29081,0.231], + [29083,0.293], + [29085,0.294], + [29087,0.264], + [29089,0.249], + [29091,0.311], + [29093,0.287], + [29095,0.31], + [29097,0.292], + [29099,0.36], + [29101,0.32], + [29103,0.269], + [29105,0.292], + [29107,0.279], + [29109,0.292], + [29111,0.269], + [29113,0.296], + [29115,0.248], + [29117,0.249], + [29119,0.294], + [29121,0.272], + [29123,0.311], + [29125,0.267], + [29127,0.282], + [29129,0.243], + [29131,0.262], + [29133,0.223], + [29135,0.216], + [29137,0.277], + [29139,0.274], + [29141,0.252], + [29143,0.236], + [29145,0.329], + [29147,0.264], + [29149,0.292], + [29151,0.263], + [29153,0.258], + [29155,0.251], + [29157,0.253], + [29159,0.335], + [29161,0.259], + [29163,0.222], + [29165,0.324], + [29167,0.297], + [29169,0.35], + [29171,0.299], + [29173,0.258], + [29175,0.35], + [29177,0.279], + [29179,0.248], + [29181,0.268], + [29183,0.326], + [29185,0.26], + [29186,0.306], + [29187,0.324], + [29189,0.29], + [29195,0.267], + [29197,0.324], + [29199,0.268], + [29201,0.27], + [29203,0.254], + [29205,0.296], + [29207,0.274], + [29209,0.31], + [29211,0.238], + [29213,0.352], + [29215,0.252], + [29217,0.301], + [29219,0.317], + [29221,0.278], + [29223,0.264], + [29225,0.313], + [29227,0.277], + [29229,0.251], + [29510,0.287], + [30001,0.307], + [30003,0.366], + [30005,0.407], + [30007,0.287], + [30009,0.351], + [30011,0.389], + [30013,0.343], + [30015,0.354], + [30017,0.411], + [30019,0.38], + [30021,0.378], + [30023,0.352], + [30025,0.416], + [30027,0.314], + [30029,0.363], + [30031,0.293], + [30033,0.339], + [30035,0.327], + [30037,0.255], + [30039,0.286], + [30041,0.384], + [30043,0.342], + [30045,0.285], + [30047,0.36], + [30049,0.329], + [30051,0.362], + [30053,0.345], + [30055,0.326], + [30057,0.339], + [30059,0.294], + [30061,0.321], + [30063,0.311], + [30065,0.328], + [30067,0.273], + [30069,0.241], + [30071,0.334], + [30073,0.308], + [30075,0.388], + [30077,0.34], + [30079,0.322], + [30081,0.333], + [30083,0.353], + [30085,0.319], + [30087,0.362], + [30089,0.282], + [30091,0.402], + [30093,0.312], + [30095,0.338], + [30097,0.325], + [30099,0.366], + [30101,0.344], + [30103,0.373], + [30105,0.364], + [30107,0.238], + [30109,0.302], + [30111,0.327], + [31001,0.366], + [31003,0.39], + [31005,0.407], + [31007,0.471], + [31009,0.379], + [31011,0.375], + [31013,0.43], + [31015,0.347], + [31017,0.34], + [31019,0.35], + [31021,0.342], + [31023,0.349], + [31025,0.369], + [31027,0.374], + [31029,0.41], + [31031,0.393], + [31033,0.428], + [31035,0.36], + [31037,0.261], + [31039,0.296], + [31041,0.383], + [31043,0.254], + [31045,0.328], + [31047,0.292], + [31049,0.406], + [31051,0.326], + [31053,0.329], + [31055,0.301], + [31057,0.382], + [31059,0.34], + [31061,0.351], + [31063,0.43], + [31065,0.387], + [31067,0.34], + [31069,0.42], + [31071,0.388], + [31073,0.376], + [31075,0.35], + [31077,0.377], + [31079,0.333], + [31081,0.363], + [31083,0.389], + [31085,0.43], + [31087,0.397], + [31089,0.356], + [31091,0.364], + [31093,0.32], + [31095,0.354], + [31097,0.314], + [31099,0.35], + [31101,0.358], + [31103,0.364], + [31105,0.38], + [31107,0.354], + [31109,0.338], + [31111,0.402], + [31113,0.41], + [31115,0.378], + [31117,0.416], + [31119,0.387], + [31121,0.418], + [31123,0.36], + [31125,0.36], + [31127,0.328], + [31129,0.331], + [31131,0.326], + [31133,0.307], + [31135,0.35], + [31137,0.372], + [31139,0.384], + [31141,0.364], + [31143,0.405], + [31145,0.4], + [31147,0.337], + [31149,0.314], + [31151,0.35], + [31153,0.351], + [31155,0.354], + [31157,0.362], + [31159,0.362], + [31161,0.34], + [31163,0.341], + [31165,0.321], + [31167,0.391], + [31169,0.36], + [31171,0.405], + [31173,0.375], + [31175,0.308], + [31177,0.348], + [31179,0.362], + [31181,0.348], + [31183,0.377], + [31185,0.36], + [32001,0.395], + [32003,0.332], + [32005,0.429], + [32007,0.376], + [32009,0.298], + [32011,0.334], + [32013,0.341], + [32015,0.326], + [32017,0.328], + [32019,0.383], + [32021,0.414], + [32023,0.361], + [32027,0.322], + [32029,0.425], + [32031,0.342], + [32033,0.335], + [32510,0.378], + [33001,0.311], + [33003,0.295], + [33005,0.279], + [33007,0.309], + [33009,0.25], + [33011,0.282], + [33013,0.302], + [33015,0.29], + [33017,0.297], + [33019,0.277], + [34001,0.267], + [34003,0.205], + [34005,0.274], + [34007,0.265], + [34009,0.257], + [34011,0.237], + [34013,0.229], + [34015,0.277], + [34017,0.187], + [34019,0.226], + [34021,0.22], + [34023,0.214], + [34025,0.243], + [34027,0.204], + [34029,0.282], + [34031,0.216], + [34033,0.278], + [34035,0.2], + [34037,0.29], + [34039,0.229], + [34041,0.271], + [35001,0.317], + [35003,0.3], + [35005,0.321], + [35006,0.341], + [35007,0.324], + [35009,0.369], + [35011,0.378], + [35013,0.291], + [35015,0.317], + [35017,0.324], + [35019,0.224], + [35021,0.244], + [35023,0.318], + [35025,0.284], + [35027,0.341], + [35028,0.214], + [35029,0.24], + [35031,0.293], + [35033,0.346], + [35035,0.375], + [35037,0.305], + [35039,0.331], + [35041,0.306], + [35043,0.359], + [35045,0.367], + [35047,0.331], + [35049,0.253], + [35051,0.33], + [35053,0.272], + [35055,0.336], + [35057,0.326], + [35059,0.259], + [35061,0.318], + [36001,0.273], + [36003,0.308], + [36005,0.246], + [36007,0.306], + [36009,0.298], + [36011,0.328], + [36013,0.316], + [36015,0.309], + [36017,0.308], + [36019,0.286], + [36021,0.283], + [36023,0.319], + [36025,0.283], + [36027,0.296], + [36029,0.304], + [36031,0.301], + [36033,0.309], + [36035,0.331], + [36037,0.338], + [36039,0.29], + [36041,0.339], + [36043,0.332], + [36045,0.354], + [36047,0.201], + [36049,0.288], + [36051,0.307], + [36053,0.299], + [36055,0.292], + [36057,0.316], + [36059,0.236], + [36061,0.14], + [36063,0.325], + [36065,0.308], + [36067,0.303], + [36069,0.322], + [36071,0.309], + [36073,0.31], + [36075,0.296], + [36077,0.288], + [36079,0.268], + [36081,0.228], + [36083,0.334], + [36085,0.261], + [36087,0.244], + [36089,0.293], + [36091,0.29], + [36093,0.3], + [36095,0.3], + [36097,0.293], + [36099,0.299], + [36101,0.3], + [36103,0.268], + [36105,0.305], + [36107,0.3], + [36109,0.23], + [36111,0.286], + [36113,0.293], + [36115,0.287], + [36117,0.327], + [36119,0.206], + [36121,0.319], + [36123,0.279], + [37001,0.345], + [37003,0.276], + [37005,0.301], + [37007,0.298], + [37009,0.323], + [37011,0.294], + [37013,0.332], + [37015,0.252], + [37017,0.317], + [37019,0.335], + [37021,0.289], + [37023,0.327], + [37025,0.341], + [37027,0.319], + [37029,0.395], + [37031,0.374], + [37033,0.285], + [37035,0.313], + [37037,0.263], + [37039,0.312], + [37041,0.298], + [37043,0.344], + [37045,0.325], + [37047,0.36], + [37049,0.38], + [37051,0.404], + [37053,0.363], + [37055,0.389], + [37057,0.307], + [37059,0.309], + [37061,0.308], + [37063,0.234], + [37065,0.306], + [37067,0.29], + [37069,0.326], + [37071,0.334], + [37073,0.336], + [37075,0.296], + [37077,0.309], + [37079,0.342], + [37081,0.294], + [37083,0.273], + [37085,0.352], + [37087,0.346], + [37089,0.328], + [37091,0.324], + [37093,0.382], + [37095,0.309], + [37097,0.33], + [37099,0.306], + [37101,0.335], + [37103,0.382], + [37105,0.341], + [37107,0.351], + [37109,0.328], + [37111,0.326], + [37113,0.343], + [37115,0.272], + [37117,0.318], + [37119,0.281], + [37121,0.316], + [37123,0.298], + [37125,0.312], + [37127,0.308], + [37129,0.322], + [37131,0.288], + [37133,0.425], + [37135,0.197], + [37137,0.364], + [37139,0.345], + [37141,0.324], + [37143,0.321], + [37145,0.324], + [37147,0.344], + [37149,0.308], + [37151,0.303], + [37153,0.314], + [37155,0.293], + [37157,0.311], + [37159,0.331], + [37161,0.324], + [37163,0.303], + [37165,0.295], + [37167,0.347], + [37169,0.286], + [37171,0.315], + [37173,0.321], + [37175,0.302], + [37177,0.254], + [37179,0.305], + [37181,0.286], + [37183,0.261], + [37185,0.292], + [37187,0.319], + [37189,0.282], + [37191,0.349], + [37193,0.302], + [37195,0.281], + [37197,0.315], + [37199,0.288], + [38001,0.344], + [38003,0.345], + [38005,0.376], + [38007,0.323], + [38009,0.375], + [38011,0.352], + [38013,0.395], + [38015,0.355], + [38017,0.364], + [38019,0.44], + [38021,0.325], + [38023,0.313], + [38025,0.381], + [38027,0.363], + [38029,0.33], + [38031,0.385], + [38033,0.454], + [38035,0.355], + [38037,0.335], + [38039,0.346], + [38041,0.38], + [38043,0.355], + [38045,0.333], + [38047,0.29], + [38049,0.345], + [38051,0.319], + [38053,0.367], + [38055,0.378], + [38057,0.407], + [38059,0.356], + [38061,0.387], + [38063,0.398], + [38065,0.38], + [38067,0.335], + [38069,0.389], + [38071,0.377], + [38073,0.362], + [38075,0.44], + [38077,0.405], + [38079,0.392], + [38081,0.415], + [38083,0.349], + [38085,0.369], + [38087,0.315], + [38089,0.352], + [38091,0.411], + [38093,0.309], + [38095,0.404], + [38097,0.388], + [38099,0.335], + [38101,0.371], + [38103,0.305], + [38105,0.414], + [39001,0.217], + [39003,0.33], + [39005,0.247], + [39007,0.28], + [39009,0.277], + [39011,0.304], + [39013,0.311], + [39015,0.251], + [39017,0.272], + [39019,0.278], + [39021,0.273], + [39023,0.321], + [39025,0.285], + [39027,0.298], + [39029,0.283], + [39031,0.244], + [39033,0.3], + [39035,0.293], + [39037,0.273], + [39039,0.295], + [39041,0.237], + [39043,0.307], + [39045,0.315], + [39047,0.235], + [39049,0.27], + [39051,0.314], + [39053,0.247], + [39055,0.268], + [39057,0.298], + [39059,0.285], + [39061,0.275], + [39063,0.303], + [39065,0.262], + [39067,0.29], + [39069,0.309], + [39071,0.287], + [39073,0.29], + [39075,0.144], + [39077,0.272], + [39079,0.246], + [39081,0.322], + [39083,0.266], + [39085,0.315], + [39087,0.299], + [39089,0.307], + [39091,0.249], + [39093,0.335], + [39095,0.333], + [39097,0.284], + [39099,0.294], + [39101,0.312], + [39103,0.303], + [39105,0.273], + [39107,0.271], + [39109,0.32], + [39111,0.257], + [39113,0.351], + [39115,0.289], + [39117,0.271], + [39119,0.3], + [39121,0.248], + [39123,0.333], + [39125,0.275], + [39127,0.277], + [39129,0.265], + [39131,0.252], + [39133,0.274], + [39135,0.305], + [39137,0.311], + [39139,0.299], + [39141,0.268], + [39143,0.322], + [39145,0.285], + [39147,0.306], + [39149,0.302], + [39151,0.299], + [39153,0.281], + [39155,0.257], + [39157,0.245], + [39159,0.272], + [39161,0.268], + [39163,0.25], + [39165,0.258], + [39167,0.305], + [39169,0.234], + [39171,0.294], + [39173,0.31], + [39175,0.277], + [40001,0.231], + [40003,0.276], + [40005,0.265], + [40007,0.249], + [40009,0.264], + [40011,0.3], + [40013,0.298], + [40015,0.284], + [40017,0.365], + [40019,0.291], + [40021,0.296], + [40023,0.279], + [40025,0.269], + [40027,0.341], + [40029,0.26], + [40031,0.353], + [40033,0.307], + [40035,0.31], + [40037,0.297], + [40039,0.257], + [40041,0.309], + [40043,0.244], + [40045,0.299], + [40047,0.295], + [40049,0.259], + [40051,0.307], + [40053,0.317], + [40055,0.339], + [40057,0.288], + [40059,0.222], + [40061,0.292], + [40063,0.287], + [40065,0.353], + [40067,0.284], + [40069,0.285], + [40071,0.342], + [40073,0.305], + [40075,0.297], + [40077,0.335], + [40079,0.265], + [40081,0.32], + [40083,0.306], + [40085,0.263], + [40087,0.306], + [40089,0.261], + [40091,0.303], + [40093,0.298], + [40095,0.319], + [40097,0.326], + [40099,0.247], + [40101,0.305], + [40103,0.306], + [40105,0.297], + [40107,0.293], + [40109,0.303], + [40111,0.351], + [40113,0.296], + [40115,0.338], + [40117,0.281], + [40119,0.277], + [40121,0.335], + [40123,0.276], + [40125,0.333], + [40127,0.286], + [40129,0.323], + [40131,0.352], + [40133,0.341], + [40135,0.291], + [40137,0.289], + [40139,0.221], + [40141,0.253], + [40143,0.323], + [40145,0.33], + [40147,0.294], + [40149,0.257], + [40151,0.278], + [40153,0.283], + [41001,0.358], + [41003,0.27], + [41005,0.368], + [41007,0.423], + [41009,0.386], + [41011,0.381], + [41013,0.351], + [41015,0.385], + [41017,0.361], + [41019,0.404], + [41021,0.351], + [41023,0.361], + [41025,0.368], + [41027,0.253], + [41029,0.358], + [41031,0.382], + [41033,0.392], + [41035,0.38], + [41037,0.332], + [41039,0.377], + [41041,0.364], + [41043,0.411], + [41045,0.368], + [41047,0.356], + [41049,0.306], + [41051,0.303], + [41053,0.354], + [41055,0.405], + [41057,0.353], + [41059,0.381], + [41061,0.358], + [41063,0.356], + [41065,0.373], + [41067,0.31], + [41069,0.366], + [41071,0.354], + [42001,0.241], + [42003,0.259], + [42005,0.248], + [42007,0.294], + [42009,0.221], + [42011,0.238], + [42013,0.23], + [42015,0.229], + [42017,0.25], + [42019,0.26], + [42021,0.247], + [42023,0.257], + [42025,0.265], + [42027,0.198], + [42029,0.202], + [42031,0.215], + [42033,0.231], + [42035,0.241], + [42037,0.23], + [42039,0.228], + [42041,0.238], + [42043,0.258], + [42045,0.24], + [42047,0.25], + [42049,0.243], + [42051,0.222], + [42053,0.178], + [42055,0.234], + [42057,0.212], + [42059,0.217], + [42061,0.227], + [42063,0.227], + [42065,0.23], + [42067,0.177], + [42069,0.263], + [42071,0.216], + [42073,0.249], + [42075,0.229], + [42077,0.258], + [42079,0.279], + [42081,0.28], + [42083,0.247], + [42085,0.238], + [42087,0.199], + [42089,0.295], + [42091,0.219], + [42093,0.199], + [42095,0.274], + [42097,0.206], + [42099,0.257], + [42101,0.228], + [42103,0.305], + [42105,0.246], + [42107,0.249], + [42109,0.207], + [42111,0.225], + [42113,0.243], + [42115,0.256], + [42117,0.245], + [42119,0.221], + [42121,0.231], + [42123,0.262], + [42125,0.248], + [42127,0.263], + [42129,0.276], + [42131,0.252], + [42133,0.248], + [44001,0.231], + [44003,0.311], + [44005,0.247], + [44007,0.263], + [44009,0.26], + [45001,0.294], + [45003,0.292], + [45005,0.241], + [45007,0.32], + [45009,0.299], + [45011,0.31], + [45013,0.301], + [45015,0.347], + [45017,0.283], + [45019,0.274], + [45021,0.258], + [45023,0.281], + [45025,0.24], + [45027,0.281], + [45029,0.305], + [45031,0.279], + [45033,0.27], + [45035,0.355], + [45037,0.262], + [45039,0.261], + [45041,0.291], + [45043,0.304], + [45045,0.287], + [45047,0.296], + [45049,0.267], + [45051,0.341], + [45053,0.278], + [45055,0.294], + [45057,0.276], + [45059,0.306], + [45061,0.247], + [45063,0.307], + [45065,0.317], + [45067,0.269], + [45069,0.253], + [45071,0.262], + [45073,0.288], + [45075,0.303], + [45077,0.292], + [45079,0.307], + [45081,0.247], + [45083,0.31], + [45085,0.341], + [45087,0.282], + [45089,0.264], + [45091,0.316], + [46003,0.319], + [46005,0.305], + [46007,0.304], + [46009,0.32], + [46011,0.283], + [46013,0.316], + [46015,0.313], + [46017,0.281], + [46019,0.332], + [46021,0.262], + [46023,0.322], + [46025,0.33], + [46027,0.232], + [46029,0.332], + [46031,0.304], + [46033,0.39], + [46035,0.368], + [46037,0.326], + [46039,0.304], + [46041,0.339], + [46043,0.281], + [46045,0.33], + [46047,0.363], + [46049,0.323], + [46051,0.32], + [46053,0.317], + [46055,0.331], + [46057,0.281], + [46059,0.353], + [46061,0.344], + [46063,0.333], + [46065,0.304], + [46067,0.284], + [46069,0.284], + [46071,0.355], + [46073,0.294], + [46075,0.33], + [46077,0.303], + [46079,0.287], + [46081,0.312], + [46083,0.326], + [46085,0.307], + [46087,0.344], + [46089,0.349], + [46091,0.343], + [46093,0.378], + [46095,0.287], + [46097,0.302], + [46099,0.328], + [46101,0.319], + [46102,null], + [46103,0.36], + [46105,0.305], + [46107,0.296], + [46109,0.341], + [46111,0.337], + [46115,0.33], + [46117,0.287], + [46119,0.334], + [46121,0.386], + [46123,0.288], + [46125,0.354], + [46127,0.318], + [46129,0.307], + [46135,0.312], + [46137,0.308], + [47001,0.284], + [47003,0.248], + [47005,0.228], + [47007,0.219], + [47009,0.305], + [47011,0.298], + [47013,0.218], + [47015,0.25], + [47017,0.228], + [47019,0.258], + [47021,0.288], + [47023,0.296], + [47025,0.234], + [47027,0.159], + [47029,0.22], + [47031,0.295], + [47033,0.234], + [47035,0.27], + [47037,0.26], + [47039,0.247], + [47041,0.198], + [47043,0.254], + [47045,0.256], + [47047,0.288], + [47049,0.196], + [47051,0.27], + [47053,0.29], + [47055,0.251], + [47057,0.24], + [47059,0.238], + [47061,0.191], + [47063,0.239], + [47065,0.31], + [47067,0.244], + [47069,0.204], + [47071,0.243], + [47073,0.255], + [47075,0.244], + [47077,0.272], + [47079,0.223], + [47081,0.238], + [47083,0.21], + [47085,0.278], + [47087,0.189], + [47089,0.289], + [47091,0.246], + [47093,0.29], + [47095,0.183], + [47097,0.219], + [47099,0.253], + [47101,0.273], + [47103,0.246], + [47105,0.272], + [47107,0.257], + [47109,0.25], + [47111,0.213], + [47113,0.294], + [47115,0.289], + [47117,0.279], + [47119,0.326], + [47121,0.258], + [47123,0.24], + [47125,0.364], + [47127,0.284], + [47129,0.239], + [47131,0.244], + [47133,0.202], + [47135,0.241], + [47137,0.26], + [47139,0.275], + [47141,0.226], + [47143,0.258], + [47145,0.296], + [47147,0.293], + [47149,0.303], + [47151,0.217], + [47153,0.295], + [47155,0.289], + [47157,0.301], + [47159,0.252], + [47161,0.316], + [47163,0.29], + [47165,0.315], + [47167,0.304], + [47169,0.251], + [47171,0.275], + [47173,0.223], + [47175,0.207], + [47177,0.223], + [47179,0.27], + [47181,0.245], + [47183,0.235], + [47185,0.241], + [47187,0.234], + [47189,0.305], + [48001,0.319], + [48003,0.275], + [48005,0.327], + [48007,0.346], + [48009,0.337], + [48011,0.398], + [48013,0.249], + [48015,0.322], + [48017,0.283], + [48019,0.319], + [48021,0.325], + [48023,0.294], + [48025,0.286], + [48027,0.397], + [48029,0.312], + [48031,0.293], + [48033,0.335], + [48035,0.297], + [48037,0.331], + [48039,0.318], + [48041,0.262], + [48043,0.272], + [48045,0.279], + [48047,0.256], + [48049,0.3], + [48051,0.264], + [48053,0.318], + [48055,0.283], + [48057,0.316], + [48059,0.326], + [48061,0.238], + [48063,0.281], + [48065,0.378], + [48067,0.264], + [48069,0.255], + [48071,0.335], + [48073,0.285], + [48075,0.292], + [48077,0.311], + [48079,0.287], + [48081,0.3], + [48083,0.282], + [48085,0.28], + [48087,0.318], + [48089,0.26], + [48091,0.314], + [48093,0.263], + [48095,0.224], + [48097,0.348], + [48099,0.442], + [48101,0.257], + [48103,0.29], + [48105,0.283], + [48107,0.268], + [48109,0.223], + [48111,0.313], + [48113,0.258], + [48115,0.252], + [48117,0.265], + [48119,0.319], + [48121,0.309], + [48123,0.269], + [48125,0.33], + [48127,0.247], + [48129,0.369], + [48131,0.251], + [48133,0.344], + [48135,0.309], + [48137,0.222], + [48139,0.341], + [48141,0.304], + [48143,0.316], + [48145,0.275], + [48147,0.327], + [48149,0.274], + [48151,0.323], + [48153,0.284], + [48155,0.308], + [48157,0.27], + [48159,0.359], + [48161,0.356], + [48163,0.212], + [48165,0.211], + [48167,0.338], + [48169,0.213], + [48171,0.272], + [48173,0.268], + [48175,0.352], + [48177,0.249], + [48179,0.344], + [48181,0.365], + [48183,0.345], + [48185,0.295], + [48187,0.317], + [48189,0.258], + [48191,0.321], + [48193,0.269], + [48195,0.241], + [48197,0.293], + [48199,0.328], + [48201,0.268], + [48203,0.309], + [48205,0.251], + [48207,0.225], + [48209,0.307], + [48211,0.294], + [48213,0.317], + [48215,0.226], + [48217,0.308], + [48219,0.348], + [48221,0.326], + [48223,0.286], + [48225,0.309], + [48227,0.337], + [48229,0.194], + [48231,0.311], + [48233,0.391], + [48235,0.38], + [48237,0.262], + [48239,0.33], + [48241,0.297], + [48243,0.249], + [48245,0.314], + [48247,0.295], + [48249,0.265], + [48251,0.331], + [48253,0.266], + [48255,0.268], + [48257,0.322], + [48259,0.295], + [48261,0.178], + [48263,0.247], + [48265,0.325], + [48267,0.321], + [48269,0.199], + [48271,0.26], + [48273,0.305], + [48275,0.283], + [48277,0.34], + [48279,0.257], + [48281,0.418], + [48283,0.136], + [48285,0.251], + [48287,0.283], + [48289,0.298], + [48291,0.271], + [48293,0.302], + [48295,0.288], + [48297,0.328], + [48299,0.331], + [48301,0.403], + [48303,0.317], + [48305,0.276], + [48307,0.293], + [48309,0.331], + [48311,0.306], + [48313,0.284], + [48315,0.28], + [48317,0.274], + [48319,0.318], + [48321,0.291], + [48323,0.26], + [48325,0.314], + [48327,0.278], + [48329,0.327], + [48331,0.279], + [48333,0.333], + [48335,0.298], + [48337,0.318], + [48339,0.297], + [48341,0.252], + [48343,0.325], + [48345,0.362], + [48347,0.279], + [48349,0.308], + [48351,0.293], + [48353,0.337], + [48355,0.325], + [48357,0.294], + [48359,0.335], + [48361,0.347], + [48363,0.314], + [48365,0.379], + [48367,0.347], + [48369,0.216], + [48371,0.248], + [48373,0.3], + [48375,0.33], + [48377,0.13], + [48379,0.314], + [48381,0.385], + [48383,0.244], + [48385,0.31], + [48387,0.282], + [48389,0.234], + [48391,0.324], + [48393,0.333], + [48395,0.299], + [48397,0.318], + [48399,0.244], + [48401,0.325], + [48403,0.276], + [48405,0.256], + [48407,0.272], + [48409,0.321], + [48411,0.282], + [48413,0.326], + [48415,0.324], + [48417,0.301], + [48419,0.244], + [48421,0.264], + [48423,0.348], + [48425,0.332], + [48427,0.154], + [48429,0.265], + [48431,0.251], + [48433,0.257], + [48435,0.316], + [48437,0.285], + [48439,0.308], + [48441,0.328], + [48443,0.276], + [48445,0.26], + [48447,0.293], + [48449,0.279], + [48451,0.313], + [48453,0.247], + [48455,0.313], + [48457,0.303], + [48459,0.348], + [48461,0.278], + [48463,0.322], + [48465,0.24], + [48467,0.309], + [48469,0.331], + [48471,0.265], + [48473,0.291], + [48475,0.283], + [48477,0.291], + [48479,0.226], + [48481,0.297], + [48483,0.349], + [48485,0.319], + [48487,0.309], + [48489,0.197], + [48491,0.329], + [48493,0.305], + [48495,0.29], + [48497,0.322], + [48499,0.342], + [48501,0.244], + [48503,0.288], + [48505,0.194], + [48507,0.222], + [49001,0.328], + [49003,0.395], + [49005,0.35], + [49007,0.452], + [49009,0.406], + [49011,0.389], + [49013,0.372], + [49015,0.458], + [49017,0.362], + [49019,0.37], + [49021,0.395], + [49023,0.387], + [49025,0.397], + [49027,0.387], + [49029,0.382], + [49031,0.252], + [49033,0.392], + [49035,0.343], + [49037,0.349], + [49039,0.425], + [49041,0.419], + [49043,0.265], + [49045,0.388], + [49047,0.372], + [49049,0.389], + [49051,0.368], + [49053,0.412], + [49055,0.39], + [49057,0.375], + [50001,0.248], + [50003,0.267], + [50005,0.266], + [50007,0.242], + [50009,0.243], + [50011,0.285], + [50013,0.304], + [50015,0.288], + [50017,0.262], + [50019,0.262], + [50021,0.271], + [50023,0.245], + [50025,0.256], + [50027,0.258], + [51001,0.217], + [51003,0.22], + [51005,0.302], + [51007,0.304], + [51009,0.29], + [51011,0.286], + [51013,0.119], + [51015,0.246], + [51017,0.307], + [51019,0.305], + [51021,0.353], + [51023,0.304], + [51025,0.271], + [51027,0.249], + [51029,0.236], + [51031,0.311], + [51033,0.271], + [51035,0.327], + [51036,0.239], + [51037,0.258], + [51041,0.3], + [51043,0.285], + [51045,0.28], + [51047,0.29], + [51049,0.286], + [51051,0.292], + [51053,0.277], + [51057,0.28], + [51059,0.187], + [51061,0.298], + [51063,0.304], + [51065,0.318], + [51067,0.313], + [51069,0.281], + [51071,0.3], + [51073,0.342], + [51075,0.267], + [51077,0.284], + [51079,0.266], + [51081,0.262], + [51083,0.28], + [51085,0.292], + [51087,0.274], + [51089,0.342], + [51091,0.219], + [51093,0.32], + [51095,0.266], + [51097,0.251], + [51099,0.314], + [51101,0.316], + [51103,0.288], + [51105,0.291], + [51107,0.214], + [51109,0.258], + [51111,0.285], + [51113,0.243], + [51115,0.312], + [51117,0.3], + [51119,0.328], + [51121,0.233], + [51125,0.223], + [51127,0.328], + [51131,0.257], + [51133,0.314], + [51135,0.231], + [51137,0.296], + [51139,0.222], + [51141,0.308], + [51143,0.315], + [51145,0.321], + [51147,0.253], + [51149,0.335], + [51153,0.283], + [51155,0.32], + [51157,0.283], + [51159,0.262], + [51161,0.318], + [51163,0.237], + [51165,0.225], + [51167,0.296], + [51169,0.286], + [51171,0.266], + [51173,0.294], + [51175,0.319], + [51177,0.286], + [51179,0.331], + [51181,0.307], + [51183,0.217], + [51185,0.296], + [51187,0.281], + [51191,0.272], + [51193,0.288], + [51195,0.281], + [51197,0.285], + [51199,0.311], + [51510,0.174], + [51520,0.262], + [51530,0.244], + [51540,0.187], + [51550,0.35], + [51570,0.324], + [51580,0.321], + [51590,0.334], + [51595,0.252], + [51600,0.21], + [51610,0.113], + [51620,0.31], + [51630,0.24], + [51640,0.293], + [51650,0.386], + [51660,0.227], + [51670,0.298], + [51678,0.223], + [51680,0.294], + [51683,0.259], + [51685,0.247], + [51690,0.316], + [51700,0.367], + [51710,0.344], + [51720,0.423], + [51730,0.291], + [51735,0.3], + [51740,0.344], + [51750,0.319], + [51760,0.245], + [51770,0.305], + [51775,0.324], + [51790,0.257], + [51800,0.334], + [51810,0.367], + [51820,0.288], + [51830,0.234], + [51840,0.243], + [53001,0.258], + [53003,0.399], + [53005,0.356], + [53007,0.287], + [53009,0.408], + [53011,0.386], + [53013,0.386], + [53015,0.411], + [53017,0.346], + [53019,0.379], + [53021,0.318], + [53023,0.405], + [53025,0.331], + [53027,0.395], + [53029,0.402], + [53031,0.336], + [53033,0.274], + [53035,0.405], + [53037,0.31], + [53039,0.344], + [53041,0.407], + [53043,0.381], + [53045,0.371], + [53047,0.337], + [53049,0.389], + [53051,0.4], + [53053,0.374], + [53055,0.311], + [53057,0.376], + [53059,0.392], + [53061,0.37], + [53063,0.392], + [53065,0.385], + [53067,0.377], + [53069,0.474], + [53071,0.376], + [53073,0.348], + [53075,0.294], + [53077,0.289], + [54001,0.244], + [54003,0.293], + [54005,0.2], + [54007,0.177], + [54009,0.303], + [54011,0.29], + [54013,0.192], + [54015,0.15], + [54017,0.216], + [54019,0.242], + [54021,0.262], + [54023,0.208], + [54025,0.234], + [54027,0.19], + [54029,0.264], + [54031,0.186], + [54033,0.282], + [54035,0.28], + [54037,0.267], + [54039,0.256], + [54041,0.229], + [54043,0.259], + [54045,0.274], + [54047,0.148], + [54049,0.271], + [54051,0.269], + [54053,0.258], + [54055,0.249], + [54057,0.275], + [54059,0.228], + [54061,0.221], + [54063,0.181], + [54065,0.243], + [54067,0.225], + [54069,0.269], + [54071,0.179], + [54073,0.245], + [54075,0.202], + [54077,0.205], + [54079,0.287], + [54081,0.261], + [54083,0.183], + [54085,0.232], + [54087,0.21], + [54089,0.271], + [54091,0.251], + [54093,0.23], + [54095,0.268], + [54097,0.186], + [54099,0.255], + [54101,0.187], + [54103,0.244], + [54105,0.249], + [54107,0.321], + [54109,0.215], + [55001,0.317], + [55003,0.346], + [55005,0.33], + [55007,0.353], + [55009,0.319], + [55011,0.313], + [55013,0.342], + [55015,0.317], + [55017,0.35], + [55019,0.276], + [55021,0.351], + [55023,0.325], + [55025,0.279], + [55027,0.321], + [55029,0.298], + [55031,0.379], + [55033,0.316], + [55035,0.362], + [55037,0.371], + [55039,0.317], + [55041,0.324], + [55043,0.314], + [55045,0.316], + [55047,0.288], + [55049,0.343], + [55051,0.39], + [55053,0.321], + [55055,0.32], + [55057,0.314], + [55059,0.33], + [55061,0.328], + [55063,0.357], + [55065,0.317], + [55067,0.317], + [55069,0.347], + [55071,0.307], + [55073,0.31], + [55075,0.338], + [55077,0.319], + [55078,0.309], + [55079,0.292], + [55081,0.332], + [55083,0.302], + [55085,0.325], + [55087,0.321], + [55089,0.278], + [55091,0.303], + [55093,0.332], + [55095,0.341], + [55097,0.302], + [55099,0.33], + [55101,0.334], + [55103,0.302], + [55105,0.322], + [55107,0.299], + [55109,0.355], + [55111,0.32], + [55113,0.342], + [55115,0.3], + [55117,0.311], + [55119,0.28], + [55121,0.308], + [55123,0.289], + [55125,0.345], + [55127,0.315], + [55129,0.323], + [55131,0.341], + [55133,0.301], + [55135,0.301], + [55137,0.294], + [55139,0.312], + [55141,0.331], + [56001,0.312], + [56003,0.404], + [56005,0.377], + [56007,0.353], + [56009,0.368], + [56011,0.4], + [56013,0.366], + [56015,0.39], + [56017,0.416], + [56019,0.362], + [56021,0.391], + [56023,0.414], + [56025,0.403], + [56027,0.422], + [56029,0.368], + [56031,0.383], + [56033,0.388], + [56035,0.334], + [56037,0.352], + [56039,0.258], + [56041,0.348], + [56043,0.356], + [56045,0.399] + ] +} diff --git a/data/regional/united-states/education/us-education-somecollege-2017.json b/data/regional/united-states/education/us-education-somecollege-2017.json new file mode 100644 index 0000000..8c4b980 --- /dev/null +++ b/data/regional/united-states/education/us-education-somecollege-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Some College Education", + "description" : "Percent of the population with some college education.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "education", + "tags" : ["regional","us","counties","education","college"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.education.somecollege.2017"], + [1001,0.291], + [1003,0.316], + [1005,0.255], + [1007,0.25], + [1009,0.344], + [1011,0.213], + [1013,0.245], + [1015,0.332], + [1017,0.291], + [1019,0.289], + [1021,0.233], + [1023,0.286], + [1025,0.242], + [1027,0.293], + [1029,0.261], + [1031,0.333], + [1033,0.314], + [1035,0.223], + [1037,0.273], + [1039,0.31], + [1041,0.253], + [1043,0.314], + [1045,0.366], + [1047,0.305], + [1049,0.266], + [1051,0.294], + [1053,0.25], + [1055,0.337], + [1057,0.271], + [1059,0.255], + [1061,0.322], + [1063,0.282], + [1065,0.239], + [1067,0.296], + [1069,0.326], + [1071,0.273], + [1073,0.307], + [1075,0.287], + [1077,0.281], + [1079,0.27], + [1081,0.305], + [1083,0.285], + [1085,0.262], + [1087,0.292], + [1089,0.292], + [1091,0.281], + [1093,0.319], + [1095,0.309], + [1097,0.306], + [1099,0.238], + [1101,0.279], + [1103,0.318], + [1105,0.212], + [1107,0.303], + [1109,0.233], + [1111,0.273], + [1113,0.337], + [1115,0.32], + [1117,0.289], + [1119,0.247], + [1121,0.318], + [1123,0.286], + [1125,0.285], + [1127,0.316], + [1129,0.27], + [1131,0.239], + [1133,0.281], + [2013,0.327], + [2016,0.33], + [2020,0.35], + [2050,0.229], + [2060,0.374], + [2068,0.257], + [2070,0.304], + [2090,0.398], + [2100,0.334], + [2105,0.312], + [2110,0.353], + [2122,0.372], + [2130,0.374], + [2150,0.355], + [2158,null], + [2164,0.266], + [2170,0.394], + [2180,0.274], + [2185,0.33], + [2188,0.235], + [2195,0.332], + [2198,0.354], + [2220,0.341], + [2230,0.368], + [2240,0.389], + [2261,0.352], + [2275,0.329], + [2282,0.316], + [2290,0.306], + [4001,0.341], + [4003,0.405], + [4005,0.33], + [4007,0.385], + [4009,0.404], + [4011,0.406], + [4012,0.291], + [4013,0.329], + [4015,0.368], + [4017,0.371], + [4019,0.341], + [4021,0.368], + [4023,0.268], + [4025,0.393], + [4027,0.314], + [5001,0.296], + [5003,0.281], + [5005,0.337], + [5007,0.261], + [5009,0.366], + [5011,0.248], + [5013,0.242], + [5015,0.305], + [5017,0.262], + [5019,0.301], + [5021,0.266], + [5023,0.293], + [5025,0.252], + [5027,0.229], + [5029,0.256], + [5031,0.285], + [5033,0.322], + [5035,0.287], + [5037,0.23], + [5039,0.266], + [5041,0.237], + [5043,0.266], + [5045,0.311], + [5047,0.296], + [5049,0.329], + [5051,0.372], + [5053,0.286], + [5055,0.28], + [5057,0.281], + [5059,0.303], + [5061,0.311], + [5063,0.295], + [5065,0.321], + [5067,0.25], + [5069,0.303], + [5071,0.204], + [5073,0.24], + [5075,0.289], + [5077,0.223], + [5079,0.201], + [5081,0.345], + [5083,0.274], + [5085,0.341], + [5087,0.222], + [5089,0.326], + [5091,0.325], + [5093,0.31], + [5095,0.256], + [5097,0.295], + [5099,0.24], + [5101,0.247], + [5103,0.278], + [5105,0.301], + [5107,0.333], + [5109,0.32], + [5111,0.267], + [5113,0.33], + [5115,0.276], + [5117,0.266], + [5119,0.302], + [5121,0.317], + [5123,0.298], + [5125,0.325], + [5127,0.27], + [5129,0.268], + [5131,0.317], + [5133,0.263], + [5135,0.302], + [5137,0.298], + [5139,0.275], + [5141,0.264], + [5143,0.257], + [5145,0.254], + [5147,0.234], + [5149,0.224], + [6001,0.249], + [6003,0.3], + [6005,0.406], + [6007,0.395], + [6009,0.432], + [6011,0.305], + [6013,0.305], + [6015,0.351], + [6017,0.381], + [6019,0.317], + [6021,0.323], + [6023,0.371], + [6025,0.306], + [6027,0.33], + [6029,0.303], + [6031,0.343], + [6033,0.391], + [6035,0.376], + [6037,0.262], + [6039,0.33], + [6041,0.245], + [6043,0.375], + [6045,0.359], + [6047,0.3], + [6049,0.385], + [6051,0.343], + [6053,0.266], + [6055,0.32], + [6057,0.393], + [6059,0.283], + [6061,0.379], + [6063,0.455], + [6065,0.332], + [6067,0.346], + [6069,0.352], + [6071,0.332], + [6073,0.307], + [6075,0.198], + [6077,0.33], + [6079,0.367], + [6081,0.249], + [6083,0.297], + [6085,0.227], + [6087,0.311], + [6089,0.436], + [6091,0.46], + [6093,0.415], + [6095,0.387], + [6097,0.347], + [6099,0.328], + [6101,0.363], + [6103,0.372], + [6105,0.384], + [6107,0.29], + [6109,0.41], + [6111,0.325], + [6113,0.267], + [6115,0.412], + [8001,0.313], + [8003,0.318], + [8005,0.3], + [8007,0.302], + [8009,0.374], + [8011,0.285], + [8013,0.218], + [8014,0.278], + [8015,0.323], + [8017,0.357], + [8019,0.31], + [8021,0.355], + [8023,0.318], + [8025,0.331], + [8027,0.404], + [8029,0.32], + [8031,0.226], + [8033,0.333], + [8035,0.278], + [8037,0.276], + [8039,0.362], + [8041,0.363], + [8043,0.337], + [8045,0.288], + [8047,0.388], + [8049,0.296], + [8051,0.246], + [8053,0.313], + [8055,0.402], + [8057,0.34], + [8059,0.304], + [8061,0.335], + [8063,0.316], + [8065,0.222], + [8067,0.324], + [8069,0.303], + [8071,0.383], + [8073,0.213], + [8075,0.372], + [8077,0.347], + [8079,0.387], + [8081,0.329], + [8083,0.326], + [8085,0.324], + [8087,0.321], + [8089,0.394], + [8091,0.313], + [8093,0.387], + [8095,0.362], + [8097,0.197], + [8099,0.395], + [8101,0.38], + [8103,0.386], + [8105,0.314], + [8107,0.238], + [8109,0.263], + [8111,0.293], + [8113,0.255], + [8115,0.4], + [8117,0.256], + [8119,0.355], + [8121,0.422], + [8123,0.334], + [8125,0.32], + [9001,0.21], + [9003,0.249], + [9005,0.28], + [9007,0.26], + [9009,0.247], + [9011,0.288], + [9013,0.273], + [9015,0.312], + [10001,0.308], + [10003,0.256], + [10005,0.283], + [11001,0.161], + [12001,0.287], + [12003,0.295], + [12005,0.359], + [12007,0.297], + [12009,0.349], + [12011,0.299], + [12013,0.275], + [12015,0.334], + [12017,0.317], + [12019,0.362], + [12021,0.252], + [12023,0.345], + [12027,0.186], + [12029,0.261], + [12031,0.328], + [12033,0.373], + [12035,0.348], + [12037,0.262], + [12039,0.272], + [12041,0.322], + [12043,0.232], + [12045,0.292], + [12047,0.241], + [12049,0.175], + [12051,0.237], + [12053,0.339], + [12055,0.302], + [12057,0.29], + [12059,0.256], + [12061,0.298], + [12063,0.3], + [12065,0.268], + [12067,0.214], + [12069,0.33], + [12071,0.293], + [12073,0.291], + [12075,0.302], + [12077,0.198], + [12079,0.312], + [12081,0.292], + [12083,0.305], + [12085,0.319], + [12086,0.25], + [12087,0.316], + [12089,0.312], + [12091,0.366], + [12093,0.245], + [12095,0.303], + [12097,0.348], + [12099,0.284], + [12101,0.329], + [12103,0.322], + [12105,0.293], + [12107,0.269], + [12109,0.302], + [12111,0.326], + [12113,0.364], + [12115,0.291], + [12117,0.346], + [12119,0.306], + [12121,0.268], + [12123,0.284], + [12125,0.3], + [12127,0.338], + [12129,0.336], + [12131,0.326], + [12133,0.281], + [13001,0.235], + [13003,0.216], + [13005,0.293], + [13007,0.293], + [13009,0.262], + [13011,0.232], + [13013,0.318], + [13015,0.289], + [13017,0.276], + [13019,0.271], + [13021,0.275], + [13023,0.254], + [13025,0.256], + [13027,0.293], + [13029,0.325], + [13031,0.316], + [13033,0.312], + [13035,0.238], + [13037,0.247], + [13039,0.368], + [13043,0.261], + [13045,0.284], + [13047,0.342], + [13049,0.262], + [13051,0.32], + [13053,0.334], + [13055,0.241], + [13057,0.312], + [13059,0.243], + [13061,0.291], + [13063,0.319], + [13065,0.272], + [13067,0.268], + [13069,0.261], + [13071,0.223], + [13073,0.332], + [13075,0.267], + [13077,0.3], + [13079,0.343], + [13081,0.268], + [13083,0.31], + [13085,0.271], + [13087,0.299], + [13089,0.255], + [13091,0.264], + [13093,0.246], + [13095,0.329], + [13097,0.301], + [13099,0.271], + [13101,0.276], + [13103,0.303], + [13105,0.224], + [13107,0.242], + [13109,0.214], + [13111,0.292], + [13113,0.279], + [13115,0.281], + [13117,0.255], + [13119,0.253], + [13121,0.232], + [13123,0.275], + [13125,0.259], + [13127,0.314], + [13129,0.286], + [13131,0.278], + [13133,0.241], + [13135,0.29], + [13137,0.258], + [13139,0.271], + [13141,0.193], + [13143,0.28], + [13145,0.372], + [13147,0.282], + [13149,0.246], + [13151,0.319], + [13153,0.365], + [13155,0.283], + [13157,0.301], + [13159,0.276], + [13161,0.303], + [13163,0.224], + [13165,0.28], + [13167,0.228], + [13169,0.291], + [13171,0.295], + [13173,0.308], + [13175,0.242], + [13177,0.342], + [13179,0.401], + [13181,0.27], + [13183,0.401], + [13185,0.298], + [13187,0.277], + [13189,0.263], + [13191,0.328], + [13193,0.304], + [13195,0.278], + [13197,0.276], + [13199,0.273], + [13201,0.317], + [13205,0.258], + [13207,0.256], + [13209,0.275], + [13211,0.298], + [13213,0.209], + [13215,0.337], + [13217,0.327], + [13219,0.252], + [13221,0.263], + [13223,0.327], + [13225,0.347], + [13227,0.3], + [13229,0.29], + [13231,0.314], + [13233,0.259], + [13235,0.274], + [13237,0.276], + [13239,0.233], + [13241,0.251], + [13243,0.265], + [13245,0.312], + [13247,0.289], + [13249,0.331], + [13251,0.264], + [13253,0.28], + [13255,0.262], + [13257,0.259], + [13259,0.15], + [13261,0.282], + [13263,0.237], + [13265,0.148], + [13267,0.232], + [13269,0.294], + [13271,0.149], + [13273,0.336], + [13275,0.29], + [13277,0.306], + [13279,0.259], + [13281,0.331], + [13283,0.25], + [13285,0.296], + [13287,0.253], + [13289,0.212], + [13291,0.321], + [13293,0.293], + [13295,0.288], + [13297,0.296], + [13299,0.276], + [13301,0.175], + [13303,0.239], + [13305,0.288], + [13307,0.207], + [13309,0.191], + [13311,0.332], + [13313,0.254], + [13315,0.204], + [13317,0.228], + [13319,0.215], + [13321,0.279], + [15001,0.326], + [15003,0.313], + [15005,0.393], + [15007,0.323], + [15009,0.344], + [16001,0.347], + [16003,0.317], + [16005,0.379], + [16007,0.35], + [16009,0.331], + [16011,0.367], + [16013,0.268], + [16015,0.361], + [16017,0.384], + [16019,0.359], + [16021,0.343], + [16023,0.402], + [16025,0.373], + [16027,0.344], + [16029,0.368], + [16031,0.336], + [16033,0.253], + [16035,0.369], + [16037,0.356], + [16039,0.423], + [16041,0.375], + [16043,0.345], + [16045,0.317], + [16047,0.286], + [16049,0.357], + [16051,0.383], + [16053,0.304], + [16055,0.411], + [16057,0.308], + [16059,0.355], + [16061,0.404], + [16063,0.332], + [16065,0.429], + [16067,0.339], + [16069,0.379], + [16071,0.394], + [16073,0.305], + [16075,0.38], + [16077,0.278], + [16079,0.355], + [16081,0.329], + [16083,0.4], + [16085,0.402], + [16087,0.344], + [17001,0.335], + [17003,0.33], + [17005,0.305], + [17007,0.294], + [17009,0.327], + [17011,0.336], + [17013,0.325], + [17015,0.317], + [17017,0.253], + [17019,0.292], + [17021,0.3], + [17023,0.36], + [17025,0.375], + [17027,0.353], + [17029,0.342], + [17031,0.255], + [17033,0.389], + [17035,0.355], + [17037,0.361], + [17039,0.341], + [17041,0.301], + [17043,0.259], + [17045,0.325], + [17047,0.413], + [17049,0.328], + [17051,0.294], + [17053,0.324], + [17055,0.402], + [17057,0.363], + [17059,0.345], + [17061,0.325], + [17063,0.364], + [17065,0.362], + [17067,0.342], + [17069,0.359], + [17071,0.296], + [17073,0.331], + [17075,0.333], + [17077,0.314], + [17079,0.321], + [17081,0.376], + [17083,0.358], + [17085,0.312], + [17087,0.35], + [17089,0.281], + [17091,0.342], + [17093,0.349], + [17095,0.344], + [17097,0.249], + [17099,0.348], + [17101,0.343], + [17103,0.359], + [17105,0.307], + [17107,0.335], + [17109,0.296], + [17111,0.331], + [17113,0.259], + [17115,0.33], + [17117,0.334], + [17119,0.352], + [17121,0.383], + [17123,0.341], + [17125,0.298], + [17127,0.391], + [17129,0.332], + [17131,0.324], + [17133,0.335], + [17135,0.323], + [17137,0.288], + [17139,0.326], + [17141,0.357], + [17143,0.328], + [17145,0.332], + [17147,0.316], + [17149,0.312], + [17151,0.413], + [17153,0.386], + [17155,0.376], + [17157,0.302], + [17159,0.35], + [17161,0.353], + [17163,0.352], + [17165,0.402], + [17167,0.305], + [17169,0.344], + [17171,0.301], + [17173,0.304], + [17175,0.333], + [17177,0.371], + [17179,0.346], + [17181,0.326], + [17183,0.319], + [17185,0.404], + [17187,0.3], + [17189,0.38], + [17191,0.369], + [17193,0.364], + [17195,0.35], + [17197,0.304], + [17199,0.384], + [17201,0.328], + [17203,0.303], + [18001,0.281], + [18003,0.328], + [18005,0.254], + [18007,0.283], + [18009,0.267], + [18011,0.231], + [18013,0.299], + [18015,0.308], + [18017,0.304], + [18019,0.338], + [18021,0.295], + [18023,0.259], + [18025,0.24], + [18027,0.256], + [18029,0.291], + [18031,0.26], + [18033,0.312], + [18035,0.306], + [18037,0.285], + [18039,0.262], + [18041,0.274], + [18043,0.302], + [18045,0.311], + [18047,0.25], + [18049,0.319], + [18051,0.334], + [18053,0.291], + [18055,0.318], + [18057,0.235], + [18059,0.313], + [18061,0.303], + [18063,0.306], + [18065,0.285], + [18067,0.318], + [18069,0.289], + [18071,0.272], + [18073,0.307], + [18075,0.246], + [18077,0.314], + [18079,0.287], + [18081,0.294], + [18083,0.368], + [18085,0.272], + [18087,0.2], + [18089,0.318], + [18091,0.312], + [18093,0.309], + [18095,0.312], + [18097,0.28], + [18099,0.257], + [18101,0.298], + [18103,0.315], + [18105,0.243], + [18107,0.293], + [18109,0.304], + [18111,0.296], + [18113,0.293], + [18115,0.3], + [18117,0.259], + [18119,0.297], + [18121,0.302], + [18123,0.25], + [18125,0.303], + [18127,0.305], + [18129,0.353], + [18131,0.305], + [18133,0.297], + [18135,0.29], + [18137,0.266], + [18139,0.241], + [18141,0.288], + [18143,0.299], + [18145,0.27], + [18147,0.296], + [18149,0.317], + [18151,0.315], + [18153,0.304], + [18155,0.252], + [18157,0.289], + [18159,0.257], + [18161,0.235], + [18163,0.306], + [18165,0.313], + [18167,0.32], + [18169,0.28], + [18171,0.274], + [18173,0.318], + [18175,0.277], + [18177,0.296], + [18179,0.337], + [18181,0.313], + [18183,0.308], + [19001,0.334], + [19003,0.372], + [19005,0.297], + [19007,0.351], + [19009,0.356], + [19011,0.354], + [19013,0.32], + [19015,0.358], + [19017,0.34], + [19019,0.332], + [19021,0.296], + [19023,0.358], + [19025,0.374], + [19027,0.325], + [19029,0.291], + [19031,0.358], + [19033,0.397], + [19035,0.355], + [19037,0.325], + [19039,0.299], + [19041,0.365], + [19043,0.312], + [19045,0.353], + [19047,0.29], + [19049,0.278], + [19051,0.314], + [19053,0.276], + [19055,0.317], + [19057,0.396], + [19059,0.375], + [19061,0.29], + [19063,0.359], + [19065,0.325], + [19067,0.356], + [19069,0.364], + [19071,0.361], + [19073,0.349], + [19075,0.369], + [19077,0.324], + [19079,0.384], + [19081,0.345], + [19083,0.378], + [19085,0.362], + [19087,0.353], + [19089,0.327], + [19091,0.345], + [19093,0.349], + [19095,0.332], + [19097,0.305], + [19099,0.33], + [19101,0.33], + [19103,0.261], + [19105,0.339], + [19107,0.322], + [19109,0.373], + [19111,0.363], + [19113,0.351], + [19115,0.308], + [19117,0.332], + [19119,0.322], + [19121,0.35], + [19123,0.292], + [19125,0.313], + [19127,0.322], + [19129,0.347], + [19131,0.317], + [19133,0.359], + [19135,0.285], + [19137,0.361], + [19139,0.316], + [19141,0.362], + [19143,0.315], + [19145,0.345], + [19147,0.398], + [19149,0.376], + [19151,0.369], + [19153,0.31], + [19155,0.345], + [19157,0.314], + [19159,0.346], + [19161,0.348], + [19163,0.309], + [19165,0.326], + [19167,0.31], + [19169,0.274], + [19171,0.343], + [19173,0.366], + [19175,0.392], + [19177,0.35], + [19179,0.335], + [19181,0.343], + [19183,0.317], + [19185,0.301], + [19187,0.377], + [19189,0.364], + [19191,0.329], + [19193,0.305], + [19195,0.407], + [19197,0.377], + [20001,0.399], + [20003,0.336], + [20005,0.322], + [20007,0.373], + [20009,0.38], + [20011,0.401], + [20013,0.328], + [20015,0.368], + [20017,0.394], + [20019,0.34], + [20021,0.339], + [20023,0.359], + [20025,0.334], + [20027,0.386], + [20029,0.391], + [20031,0.351], + [20033,0.411], + [20035,0.382], + [20037,0.333], + [20039,0.373], + [20041,0.349], + [20043,0.35], + [20045,0.27], + [20047,0.367], + [20049,0.352], + [20051,0.334], + [20053,0.371], + [20055,0.31], + [20057,0.276], + [20059,0.344], + [20061,0.457], + [20063,0.338], + [20065,0.32], + [20067,0.262], + [20069,0.327], + [20071,0.234], + [20073,0.351], + [20075,0.265], + [20077,0.319], + [20079,0.349], + [20081,0.333], + [20083,0.425], + [20085,0.344], + [20087,0.32], + [20089,0.355], + [20091,0.266], + [20093,0.372], + [20095,0.381], + [20097,0.356], + [20099,0.374], + [20101,0.385], + [20103,0.321], + [20105,0.413], + [20107,0.352], + [20109,0.423], + [20111,0.298], + [20113,0.345], + [20115,0.331], + [20117,0.32], + [20119,0.317], + [20121,0.365], + [20123,0.388], + [20125,0.419], + [20127,0.336], + [20129,0.358], + [20131,0.272], + [20133,0.412], + [20135,0.375], + [20137,0.373], + [20139,0.326], + [20141,0.33], + [20143,0.36], + [20145,0.416], + [20147,0.354], + [20149,0.319], + [20151,0.396], + [20153,0.383], + [20155,0.387], + [20157,0.389], + [20159,0.373], + [20161,0.329], + [20163,0.345], + [20165,0.375], + [20167,0.356], + [20169,0.321], + [20171,0.284], + [20173,0.322], + [20175,0.284], + [20177,0.304], + [20179,0.375], + [20181,0.412], + [20183,0.373], + [20185,0.383], + [20187,0.291], + [20189,0.347], + [20191,0.366], + [20193,0.383], + [20195,0.392], + [20197,0.355], + [20199,0.348], + [20201,0.35], + [20203,0.34], + [20205,0.362], + [20207,0.402], + [20209,0.289], + [21001,0.236], + [21003,0.262], + [21005,0.308], + [21007,0.347], + [21009,0.254], + [21011,0.241], + [21013,0.22], + [21015,0.343], + [21017,0.29], + [21019,0.355], + [21021,0.282], + [21023,0.264], + [21025,0.249], + [21027,0.258], + [21029,0.321], + [21031,0.242], + [21033,0.261], + [21035,0.282], + [21037,0.273], + [21039,0.332], + [21041,0.233], + [21043,0.253], + [21045,0.244], + [21047,0.356], + [21049,0.294], + [21051,0.203], + [21053,0.22], + [21055,0.294], + [21057,0.311], + [21059,0.32], + [21061,0.263], + [21063,0.239], + [21065,0.195], + [21067,0.282], + [21069,0.272], + [21071,0.272], + [21073,0.283], + [21075,0.302], + [21077,0.234], + [21079,0.264], + [21081,0.255], + [21083,0.283], + [21085,0.27], + [21087,0.235], + [21089,0.334], + [21091,0.313], + [21093,0.364], + [21095,0.252], + [21097,0.257], + [21099,0.224], + [21101,0.338], + [21103,0.279], + [21105,0.258], + [21107,0.293], + [21109,0.196], + [21111,0.303], + [21113,0.271], + [21115,0.3], + [21117,0.308], + [21119,0.256], + [21121,0.206], + [21123,0.308], + [21125,0.265], + [21127,0.235], + [21129,0.215], + [21131,0.215], + [21133,0.25], + [21135,0.214], + [21137,0.251], + [21139,0.277], + [21141,0.269], + [21143,0.32], + [21145,0.337], + [21147,0.238], + [21149,0.332], + [21151,0.282], + [21153,0.257], + [21155,0.245], + [21157,0.313], + [21159,0.257], + [21161,0.294], + [21163,0.347], + [21165,0.246], + [21167,0.296], + [21169,0.257], + [21171,0.21], + [21173,0.282], + [21175,0.255], + [21177,0.259], + [21179,0.331], + [21181,0.252], + [21183,0.257], + [21185,0.305], + [21187,0.248], + [21189,0.168], + [21191,0.274], + [21193,0.285], + [21195,0.245], + [21197,0.22], + [21199,0.275], + [21201,0.24], + [21203,0.221], + [21205,0.271], + [21207,0.257], + [21209,0.307], + [21211,0.306], + [21213,0.278], + [21215,0.337], + [21217,0.264], + [21219,0.253], + [21221,0.371], + [21223,0.241], + [21225,0.31], + [21227,0.284], + [21229,0.249], + [21231,0.231], + [21233,0.266], + [21235,0.233], + [21237,0.222], + [21239,0.285], + [22001,0.247], + [22003,0.239], + [22005,0.269], + [22007,0.208], + [22009,0.233], + [22011,0.281], + [22013,0.297], + [22015,0.345], + [22017,0.293], + [22019,0.305], + [22021,0.218], + [22023,0.301], + [22025,0.219], + [22027,0.241], + [22029,0.245], + [22031,0.267], + [22033,0.286], + [22035,0.214], + [22037,0.259], + [22039,0.227], + [22041,0.215], + [22043,0.311], + [22045,0.223], + [22047,0.238], + [22049,0.238], + [22051,0.283], + [22053,0.225], + [22055,0.262], + [22057,0.202], + [22059,0.215], + [22061,0.252], + [22063,0.275], + [22065,0.225], + [22067,0.222], + [22069,0.326], + [22071,0.264], + [22073,0.272], + [22075,0.266], + [22077,0.251], + [22079,0.275], + [22081,0.231], + [22083,0.25], + [22085,0.247], + [22087,0.305], + [22089,0.305], + [22091,0.214], + [22093,0.257], + [22095,0.304], + [22097,0.205], + [22099,0.252], + [22101,0.202], + [22103,0.311], + [22105,0.26], + [22107,0.206], + [22109,0.242], + [22111,0.264], + [22113,0.22], + [22115,0.333], + [22117,0.233], + [22119,0.265], + [22121,0.254], + [22123,0.202], + [22125,0.246], + [22127,0.231], + [23001,0.306], + [23003,0.311], + [23005,0.267], + [23007,0.299], + [23009,0.288], + [23011,0.313], + [23013,0.28], + [23015,0.274], + [23017,0.29], + [23019,0.31], + [23021,0.313], + [23023,0.294], + [23025,0.309], + [23027,0.298], + [23029,0.288], + [23031,0.308], + [24001,0.295], + [24003,0.277], + [24005,0.266], + [24009,0.33], + [24011,0.259], + [24013,0.276], + [24015,0.289], + [24017,0.322], + [24019,0.269], + [24021,0.276], + [24023,0.259], + [24025,0.306], + [24027,0.2], + [24029,0.244], + [24031,0.19], + [24033,0.284], + [24035,0.272], + [24037,0.294], + [24039,0.254], + [24041,0.265], + [24043,0.288], + [24045,0.275], + [24047,0.281], + [24510,0.24], + [25001,0.288], + [25003,0.277], + [25005,0.271], + [25007,0.283], + [25009,0.252], + [25011,0.281], + [25013,0.288], + [25015,0.244], + [25017,0.186], + [25019,0.267], + [25021,0.213], + [25023,0.288], + [25025,0.184], + [25027,0.263], + [26001,0.342], + [26003,0.279], + [26005,0.304], + [26007,0.399], + [26009,0.309], + [26011,0.322], + [26013,0.277], + [26015,0.349], + [26017,0.358], + [26019,0.317], + [26021,0.333], + [26023,0.338], + [26025,0.339], + [26027,0.355], + [26029,0.329], + [26031,0.317], + [26033,0.322], + [26035,0.337], + [26037,0.352], + [26039,0.354], + [26041,0.392], + [26043,0.327], + [26045,0.388], + [26047,0.362], + [26049,0.378], + [26051,0.318], + [26053,0.351], + [26055,0.359], + [26057,0.341], + [26059,0.321], + [26061,0.261], + [26063,0.309], + [26065,0.327], + [26067,0.349], + [26069,0.328], + [26071,0.283], + [26073,0.319], + [26075,0.363], + [26077,0.343], + [26079,0.325], + [26081,0.306], + [26083,0.332], + [26085,0.294], + [26087,0.356], + [26089,0.313], + [26091,0.334], + [26093,0.35], + [26095,0.329], + [26097,0.338], + [26099,0.352], + [26101,0.34], + [26103,0.328], + [26105,0.364], + [26107,0.323], + [26109,0.331], + [26111,0.308], + [26113,0.336], + [26115,0.359], + [26117,0.362], + [26119,0.311], + [26121,0.365], + [26123,0.308], + [26125,0.289], + [26127,0.329], + [26129,0.346], + [26131,0.338], + [26133,0.3], + [26135,0.326], + [26137,0.338], + [26139,0.312], + [26141,0.325], + [26143,0.339], + [26145,0.341], + [26147,0.375], + [26149,0.33], + [26151,0.315], + [26153,0.298], + [26155,0.387], + [26157,0.338], + [26159,0.34], + [26161,0.254], + [26163,0.326], + [26165,0.34], + [27001,0.359], + [27003,0.365], + [27005,0.364], + [27007,0.355], + [27009,0.386], + [27011,0.303], + [27013,0.345], + [27015,0.342], + [27017,0.367], + [27019,0.291], + [27021,0.358], + [27023,0.37], + [27025,0.394], + [27027,0.357], + [27029,0.336], + [27031,0.34], + [27033,0.342], + [27035,0.384], + [27037,0.325], + [27039,0.364], + [27041,0.401], + [27043,0.341], + [27045,0.365], + [27047,0.361], + [27049,0.364], + [27051,0.401], + [27053,0.276], + [27055,0.376], + [27057,0.345], + [27059,0.386], + [27061,0.394], + [27063,0.376], + [27065,0.341], + [27067,0.391], + [27069,0.337], + [27071,0.354], + [27073,0.367], + [27075,0.353], + [27077,0.314], + [27079,0.354], + [27081,0.334], + [27083,0.326], + [27085,0.371], + [27087,0.38], + [27089,0.322], + [27091,0.343], + [27093,0.369], + [27095,0.359], + [27097,0.35], + [27099,0.345], + [27101,0.347], + [27103,0.341], + [27105,0.296], + [27107,0.334], + [27109,0.31], + [27111,0.365], + [27113,0.365], + [27115,0.347], + [27117,0.321], + [27119,0.354], + [27121,0.393], + [27123,0.273], + [27125,0.362], + [27127,0.33], + [27129,0.379], + [27131,0.325], + [27133,0.34], + [27135,0.381], + [27137,0.368], + [27139,0.331], + [27141,0.395], + [27143,0.339], + [27145,0.361], + [27147,0.328], + [27149,0.366], + [27151,0.365], + [27153,0.354], + [27155,0.366], + [27157,0.348], + [27159,0.396], + [27161,0.372], + [27163,0.321], + [27165,0.269], + [27167,0.429], + [27169,0.361], + [27171,0.383], + [27173,0.389], + [28001,0.274], + [28003,0.314], + [28005,0.268], + [28007,0.341], + [28009,0.273], + [28011,0.288], + [28013,0.282], + [28015,0.312], + [28017,0.262], + [28019,0.285], + [28021,0.283], + [28023,0.308], + [28025,0.287], + [28027,0.346], + [28029,0.345], + [28031,0.289], + [28033,0.364], + [28035,0.323], + [28037,0.306], + [28039,0.304], + [28041,0.304], + [28043,0.317], + [28045,0.363], + [28047,0.356], + [28049,0.325], + [28051,0.236], + [28053,0.236], + [28055,0.213], + [28057,0.347], + [28059,0.355], + [28061,0.329], + [28063,0.237], + [28065,0.25], + [28067,0.326], + [28069,0.339], + [28071,0.288], + [28073,0.31], + [28075,0.354], + [28077,0.301], + [28079,0.279], + [28081,0.339], + [28083,0.249], + [28085,0.35], + [28087,0.304], + [28089,0.281], + [28091,0.276], + [28093,0.249], + [28095,0.279], + [28097,0.256], + [28099,0.315], + [28101,0.371], + [28103,0.253], + [28105,0.244], + [28107,0.252], + [28109,0.392], + [28111,0.316], + [28113,0.301], + [28115,0.303], + [28117,0.327], + [28119,0.264], + [28121,0.343], + [28123,0.251], + [28125,0.286], + [28127,0.308], + [28129,0.268], + [28131,0.327], + [28133,0.283], + [28135,0.262], + [28137,0.329], + [28139,0.293], + [28141,0.267], + [28143,0.32], + [28145,0.305], + [28147,0.248], + [28149,0.322], + [28151,0.292], + [28153,0.25], + [28155,0.31], + [28157,0.184], + [28159,0.297], + [28161,0.3], + [28163,0.261], + [29001,0.239], + [29003,0.285], + [29005,0.27], + [29007,0.239], + [29009,0.272], + [29011,0.284], + [29013,0.251], + [29015,0.298], + [29017,0.241], + [29019,0.266], + [29021,0.307], + [29023,0.313], + [29025,0.288], + [29027,0.264], + [29029,0.304], + [29031,0.287], + [29033,0.228], + [29035,0.311], + [29037,0.328], + [29039,0.286], + [29041,0.229], + [29043,0.322], + [29045,0.282], + [29047,0.318], + [29049,0.35], + [29051,0.283], + [29053,0.286], + [29055,0.248], + [29057,0.286], + [29059,0.277], + [29061,0.263], + [29063,0.253], + [29065,0.256], + [29067,0.258], + [29069,0.25], + [29071,0.341], + [29073,0.281], + [29075,0.26], + [29077,0.328], + [29079,0.286], + [29081,0.238], + [29083,0.293], + [29085,0.307], + [29087,0.267], + [29089,0.253], + [29091,0.319], + [29093,0.269], + [29095,0.309], + [29097,0.298], + [29099,0.364], + [29101,0.33], + [29103,0.253], + [29105,0.299], + [29107,0.281], + [29109,0.307], + [29111,0.281], + [29113,0.296], + [29115,0.26], + [29117,0.262], + [29119,0.276], + [29121,0.275], + [29123,0.326], + [29125,0.286], + [29127,0.285], + [29129,0.23], + [29131,0.271], + [29133,0.232], + [29135,0.234], + [29137,0.288], + [29139,0.264], + [29141,0.255], + [29143,0.21], + [29145,0.333], + [29147,0.256], + [29149,0.291], + [29151,0.269], + [29153,0.249], + [29155,0.243], + [29157,0.266], + [29159,0.33], + [29161,0.265], + [29163,0.222], + [29165,0.318], + [29167,0.293], + [29169,0.356], + [29171,0.298], + [29173,0.272], + [29175,0.354], + [29177,0.271], + [29179,0.264], + [29181,0.27], + [29183,0.32], + [29185,0.264], + [29186,0.299], + [29187,0.326], + [29189,0.291], + [29195,0.255], + [29197,0.309], + [29199,0.261], + [29201,0.272], + [29203,0.234], + [29205,0.305], + [29207,0.27], + [29209,0.326], + [29211,0.23], + [29213,0.354], + [29215,0.274], + [29217,0.297], + [29219,0.328], + [29221,0.279], + [29223,0.27], + [29225,0.31], + [29227,0.254], + [29229,0.248], + [29510,0.283], + [30001,0.301], + [30003,0.354], + [30005,0.392], + [30007,0.288], + [30009,0.348], + [30011,0.374], + [30013,0.334], + [30015,0.354], + [30017,0.415], + [30019,0.324], + [30021,0.368], + [30023,0.352], + [30025,0.433], + [30027,0.315], + [30029,0.361], + [30031,0.291], + [30033,0.352], + [30035,0.3], + [30037,0.272], + [30039,0.32], + [30041,0.361], + [30043,0.337], + [30045,0.314], + [30047,0.357], + [30049,0.33], + [30051,0.343], + [30053,0.324], + [30055,0.344], + [30057,0.328], + [30059,0.305], + [30061,0.327], + [30063,0.311], + [30065,0.33], + [30067,0.299], + [30069,0.25], + [30071,0.368], + [30073,0.337], + [30075,0.39], + [30077,0.324], + [30079,0.323], + [30081,0.33], + [30083,0.353], + [30085,0.328], + [30087,0.359], + [30089,0.295], + [30091,0.386], + [30093,0.321], + [30095,0.329], + [30097,0.318], + [30099,0.368], + [30101,0.333], + [30103,0.349], + [30105,0.343], + [30107,0.246], + [30109,0.309], + [30111,0.323], + [31001,0.368], + [31003,0.395], + [31005,0.352], + [31007,0.457], + [31009,0.374], + [31011,0.382], + [31013,0.397], + [31015,0.353], + [31017,0.336], + [31019,0.349], + [31021,0.347], + [31023,0.346], + [31025,0.373], + [31027,0.375], + [31029,0.442], + [31031,0.385], + [31033,0.413], + [31035,0.38], + [31037,0.254], + [31039,0.304], + [31041,0.386], + [31043,0.258], + [31045,0.318], + [31047,0.28], + [31049,0.39], + [31051,0.32], + [31053,0.344], + [31055,0.302], + [31057,0.391], + [31059,0.351], + [31061,0.38], + [31063,0.434], + [31065,0.366], + [31067,0.356], + [31069,0.408], + [31071,0.422], + [31073,0.362], + [31075,0.365], + [31077,0.395], + [31079,0.329], + [31081,0.364], + [31083,0.395], + [31085,0.467], + [31087,0.372], + [31089,0.367], + [31091,0.368], + [31093,0.327], + [31095,0.345], + [31097,0.289], + [31099,0.372], + [31101,0.356], + [31103,0.364], + [31105,0.363], + [31107,0.363], + [31109,0.333], + [31111,0.421], + [31113,0.422], + [31115,0.354], + [31117,0.429], + [31119,0.38], + [31121,0.41], + [31123,0.356], + [31125,0.357], + [31127,0.325], + [31129,0.325], + [31131,0.315], + [31133,0.309], + [31135,0.381], + [31137,0.354], + [31139,0.357], + [31141,0.356], + [31143,0.4], + [31145,0.415], + [31147,0.35], + [31149,0.353], + [31151,0.365], + [31153,0.344], + [31155,0.362], + [31157,0.366], + [31159,0.373], + [31161,0.329], + [31163,0.363], + [31165,0.337], + [31167,0.407], + [31169,0.348], + [31171,0.388], + [31173,0.38], + [31175,0.337], + [31177,0.361], + [31179,0.368], + [31181,0.332], + [31183,0.347], + [31185,0.364], + [32001,0.398], + [32003,0.332], + [32005,0.416], + [32007,0.377], + [32009,0.29], + [32011,0.348], + [32013,0.335], + [32015,0.308], + [32017,0.334], + [32019,0.393], + [32021,0.376], + [32023,0.371], + [32027,0.319], + [32029,0.403], + [32031,0.341], + [32033,0.342], + [32510,0.366], + [33001,0.314], + [33003,0.295], + [33005,0.287], + [33007,0.299], + [33009,0.253], + [33011,0.285], + [33013,0.302], + [33015,0.291], + [33017,0.292], + [33019,0.273], + [34001,0.267], + [34003,0.203], + [34005,0.278], + [34007,0.267], + [34009,0.264], + [34011,0.244], + [34013,0.228], + [34015,0.277], + [34017,0.183], + [34019,0.225], + [34021,0.217], + [34023,0.214], + [34025,0.241], + [34027,0.203], + [34029,0.284], + [34031,0.213], + [34033,0.28], + [34035,0.201], + [34037,0.287], + [34039,0.227], + [34041,0.276], + [35001,0.318], + [35003,0.306], + [35005,0.321], + [35006,0.353], + [35007,0.353], + [35009,0.364], + [35011,0.408], + [35013,0.296], + [35015,0.319], + [35017,0.344], + [35019,0.259], + [35021,0.306], + [35023,0.311], + [35025,0.285], + [35027,0.327], + [35028,0.225], + [35029,0.223], + [35031,0.295], + [35033,0.386], + [35035,0.374], + [35037,0.288], + [35039,0.341], + [35041,0.281], + [35043,0.35], + [35045,0.375], + [35047,0.327], + [35049,0.252], + [35051,0.337], + [35053,0.233], + [35055,0.332], + [35057,0.333], + [35059,0.225], + [35061,0.327], + [36001,0.273], + [36003,0.317], + [36005,0.245], + [36007,0.311], + [36009,0.299], + [36011,0.325], + [36013,0.316], + [36015,0.3], + [36017,0.303], + [36019,0.278], + [36021,0.285], + [36023,0.304], + [36025,0.284], + [36027,0.296], + [36029,0.303], + [36031,0.309], + [36033,0.304], + [36035,0.336], + [36037,0.338], + [36039,0.274], + [36041,0.357], + [36043,0.326], + [36045,0.353], + [36047,0.198], + [36049,0.276], + [36051,0.32], + [36053,0.296], + [36055,0.29], + [36057,0.329], + [36059,0.234], + [36061,0.136], + [36063,0.328], + [36065,0.308], + [36067,0.303], + [36069,0.315], + [36071,0.307], + [36073,0.316], + [36075,0.303], + [36077,0.288], + [36079,0.265], + [36081,0.226], + [36083,0.331], + [36085,0.252], + [36087,0.247], + [36089,0.288], + [36091,0.287], + [36093,0.299], + [36095,0.3], + [36097,0.292], + [36099,0.301], + [36101,0.302], + [36103,0.268], + [36105,0.298], + [36107,0.297], + [36109,0.22], + [36111,0.289], + [36113,0.296], + [36115,0.294], + [36117,0.325], + [36119,0.203], + [36121,0.316], + [36123,0.278], + [37001,0.341], + [37003,0.282], + [37005,0.293], + [37007,0.296], + [37009,0.34], + [37011,0.302], + [37013,0.328], + [37015,0.268], + [37017,0.318], + [37019,0.338], + [37021,0.283], + [37023,0.336], + [37025,0.339], + [37027,0.317], + [37029,0.41], + [37031,0.384], + [37033,0.308], + [37035,0.322], + [37037,0.259], + [37039,0.321], + [37041,0.298], + [37043,0.327], + [37045,0.323], + [37047,0.35], + [37049,0.375], + [37051,0.403], + [37053,0.363], + [37055,0.378], + [37057,0.317], + [37059,0.328], + [37061,0.299], + [37063,0.235], + [37065,0.299], + [37067,0.294], + [37069,0.331], + [37071,0.329], + [37073,0.345], + [37075,0.303], + [37077,0.312], + [37079,0.342], + [37081,0.298], + [37083,0.258], + [37085,0.355], + [37087,0.353], + [37089,0.337], + [37091,0.324], + [37093,0.384], + [37095,0.333], + [37097,0.332], + [37099,0.311], + [37101,0.345], + [37103,0.388], + [37105,0.35], + [37107,0.347], + [37109,0.333], + [37111,0.335], + [37113,0.341], + [37115,0.267], + [37117,0.315], + [37119,0.279], + [37121,0.317], + [37123,0.308], + [37125,0.313], + [37127,0.311], + [37129,0.315], + [37131,0.282], + [37133,0.419], + [37135,0.199], + [37137,0.364], + [37139,0.335], + [37141,0.323], + [37143,0.349], + [37145,0.333], + [37147,0.347], + [37149,0.322], + [37151,0.31], + [37153,0.297], + [37155,0.294], + [37157,0.32], + [37159,0.33], + [37161,0.316], + [37163,0.31], + [37165,0.295], + [37167,0.347], + [37169,0.288], + [37171,0.319], + [37173,0.328], + [37175,0.305], + [37177,0.25], + [37179,0.306], + [37181,0.288], + [37183,0.256], + [37185,0.297], + [37187,0.323], + [37189,0.271], + [37191,0.339], + [37193,0.31], + [37195,0.29], + [37197,0.327], + [37199,0.3], + [38001,0.345], + [38003,0.351], + [38005,0.384], + [38007,0.329], + [38009,0.393], + [38011,0.348], + [38013,0.416], + [38015,0.352], + [38017,0.359], + [38019,0.433], + [38021,0.335], + [38023,0.304], + [38025,0.359], + [38027,0.346], + [38029,0.338], + [38031,0.375], + [38033,0.404], + [38035,0.368], + [38037,0.343], + [38039,0.363], + [38041,0.371], + [38043,0.352], + [38045,0.329], + [38047,0.319], + [38049,0.359], + [38051,0.321], + [38053,0.351], + [38055,0.373], + [38057,0.415], + [38059,0.356], + [38061,0.392], + [38063,0.4], + [38065,0.411], + [38067,0.347], + [38069,0.41], + [38071,0.372], + [38073,0.332], + [38075,0.434], + [38077,0.4], + [38079,0.418], + [38081,0.394], + [38083,0.373], + [38085,0.369], + [38087,0.354], + [38089,0.35], + [38091,0.399], + [38093,0.316], + [38095,0.406], + [38097,0.396], + [38099,0.355], + [38101,0.349], + [38103,0.306], + [38105,0.406], + [39001,0.213], + [39003,0.334], + [39005,0.257], + [39007,0.276], + [39009,0.26], + [39011,0.31], + [39013,0.321], + [39015,0.258], + [39017,0.276], + [39019,0.274], + [39021,0.266], + [39023,0.318], + [39025,0.29], + [39027,0.302], + [39029,0.284], + [39031,0.24], + [39033,0.298], + [39035,0.294], + [39037,0.274], + [39039,0.299], + [39041,0.236], + [39043,0.312], + [39045,0.316], + [39047,0.235], + [39049,0.269], + [39051,0.328], + [39053,0.248], + [39055,0.268], + [39057,0.293], + [39059,0.277], + [39061,0.275], + [39063,0.297], + [39065,0.259], + [39067,0.269], + [39069,0.319], + [39071,0.268], + [39073,0.305], + [39075,0.146], + [39077,0.273], + [39079,0.261], + [39081,0.326], + [39083,0.267], + [39085,0.319], + [39087,0.291], + [39089,0.301], + [39091,0.258], + [39093,0.336], + [39095,0.33], + [39097,0.288], + [39099,0.291], + [39101,0.311], + [39103,0.302], + [39105,0.275], + [39107,0.277], + [39109,0.312], + [39111,0.246], + [39113,0.35], + [39115,0.288], + [39117,0.285], + [39119,0.298], + [39121,0.243], + [39123,0.338], + [39125,0.255], + [39127,0.278], + [39129,0.267], + [39131,0.259], + [39133,0.273], + [39135,0.302], + [39137,0.302], + [39139,0.294], + [39141,0.273], + [39143,0.321], + [39145,0.278], + [39147,0.3], + [39149,0.31], + [39151,0.302], + [39153,0.283], + [39155,0.255], + [39157,0.247], + [39159,0.262], + [39161,0.284], + [39163,0.232], + [39165,0.254], + [39167,0.312], + [39169,0.243], + [39171,0.305], + [39173,0.309], + [39175,0.291], + [40001,0.227], + [40003,0.275], + [40005,0.271], + [40007,0.276], + [40009,0.287], + [40011,0.319], + [40013,0.307], + [40015,0.284], + [40017,0.364], + [40019,0.29], + [40021,0.292], + [40023,0.288], + [40025,0.268], + [40027,0.34], + [40029,0.261], + [40031,0.353], + [40033,0.291], + [40035,0.321], + [40037,0.296], + [40039,0.272], + [40041,0.309], + [40043,0.271], + [40045,0.289], + [40047,0.295], + [40049,0.259], + [40051,0.292], + [40053,0.306], + [40055,0.341], + [40057,0.324], + [40059,0.225], + [40061,0.291], + [40063,0.296], + [40065,0.352], + [40067,0.281], + [40069,0.309], + [40071,0.343], + [40073,0.285], + [40075,0.301], + [40077,0.335], + [40079,0.261], + [40081,0.319], + [40083,0.301], + [40085,0.255], + [40087,0.309], + [40089,0.263], + [40091,0.295], + [40093,0.292], + [40095,0.318], + [40097,0.32], + [40099,0.243], + [40101,0.3], + [40103,0.298], + [40105,0.307], + [40107,0.286], + [40109,0.303], + [40111,0.368], + [40113,0.308], + [40115,0.336], + [40117,0.286], + [40119,0.277], + [40121,0.332], + [40123,0.27], + [40125,0.332], + [40127,0.291], + [40129,0.336], + [40131,0.347], + [40133,0.35], + [40135,0.294], + [40137,0.287], + [40139,0.224], + [40141,0.258], + [40143,0.325], + [40145,0.338], + [40147,0.279], + [40149,0.259], + [40151,0.265], + [40153,0.297], + [41001,0.347], + [41003,0.278], + [41005,0.36], + [41007,0.422], + [41009,0.389], + [41011,0.398], + [41013,0.359], + [41015,0.373], + [41017,0.359], + [41019,0.401], + [41021,0.338], + [41023,0.384], + [41025,0.378], + [41027,0.269], + [41029,0.361], + [41031,0.381], + [41033,0.396], + [41035,0.378], + [41037,0.348], + [41039,0.38], + [41041,0.367], + [41043,0.414], + [41045,0.373], + [41047,0.348], + [41049,0.317], + [41051,0.297], + [41053,0.357], + [41055,0.395], + [41057,0.366], + [41059,0.377], + [41061,0.352], + [41063,0.366], + [41065,0.377], + [41067,0.308], + [41069,0.386], + [41071,0.364], + [42001,0.249], + [42003,0.257], + [42005,0.255], + [42007,0.299], + [42009,0.216], + [42011,0.244], + [42013,0.242], + [42015,0.237], + [42017,0.25], + [42019,0.261], + [42021,0.249], + [42023,0.26], + [42025,0.273], + [42027,0.193], + [42029,0.199], + [42031,0.213], + [42033,0.23], + [42035,0.235], + [42037,0.235], + [42039,0.223], + [42041,0.24], + [42043,0.257], + [42045,0.24], + [42047,0.252], + [42049,0.239], + [42051,0.228], + [42053,0.18], + [42055,0.241], + [42057,0.215], + [42059,0.228], + [42061,0.232], + [42063,0.232], + [42065,0.233], + [42067,0.181], + [42069,0.261], + [42071,0.217], + [42073,0.25], + [42075,0.231], + [42077,0.261], + [42079,0.276], + [42081,0.281], + [42083,0.25], + [42085,0.236], + [42087,0.207], + [42089,0.291], + [42091,0.219], + [42093,0.184], + [42095,0.269], + [42097,0.206], + [42099,0.253], + [42101,0.223], + [42103,0.31], + [42105,0.252], + [42107,0.251], + [42109,0.21], + [42111,0.221], + [42113,0.234], + [42115,0.251], + [42117,0.25], + [42119,0.225], + [42121,0.234], + [42123,0.267], + [42125,0.248], + [42127,0.257], + [42129,0.277], + [42131,0.255], + [42133,0.251], + [44001,0.227], + [44003,0.315], + [44005,0.242], + [44007,0.258], + [44009,0.261], + [45001,0.295], + [45003,0.286], + [45005,0.247], + [45007,0.321], + [45009,0.28], + [45011,0.332], + [45013,0.305], + [45015,0.35], + [45017,0.285], + [45019,0.266], + [45021,0.267], + [45023,0.271], + [45025,0.244], + [45027,0.277], + [45029,0.296], + [45031,0.28], + [45033,0.254], + [45035,0.347], + [45037,0.26], + [45039,0.262], + [45041,0.287], + [45043,0.306], + [45045,0.291], + [45047,0.293], + [45049,0.264], + [45051,0.335], + [45053,0.291], + [45055,0.291], + [45057,0.277], + [45059,0.307], + [45061,0.236], + [45063,0.304], + [45065,0.292], + [45067,0.265], + [45069,0.239], + [45071,0.259], + [45073,0.291], + [45075,0.318], + [45077,0.308], + [45079,0.306], + [45081,0.262], + [45083,0.32], + [45085,0.328], + [45087,0.291], + [45089,0.265], + [45091,0.315], + [46003,0.333], + [46005,0.314], + [46007,0.306], + [46009,0.33], + [46011,0.282], + [46013,0.326], + [46015,0.332], + [46017,0.296], + [46019,0.284], + [46021,0.263], + [46023,0.324], + [46025,0.321], + [46027,0.233], + [46029,0.332], + [46031,0.299], + [46033,0.378], + [46035,0.384], + [46037,0.325], + [46039,0.286], + [46041,0.338], + [46043,0.335], + [46045,0.297], + [46047,0.392], + [46049,0.311], + [46051,0.336], + [46053,0.313], + [46055,0.331], + [46057,0.285], + [46059,0.363], + [46061,0.343], + [46063,0.321], + [46065,0.29], + [46067,0.289], + [46069,0.265], + [46071,0.317], + [46073,0.273], + [46075,0.326], + [46077,0.315], + [46079,0.286], + [46081,0.315], + [46083,0.334], + [46085,0.336], + [46087,0.332], + [46089,0.345], + [46091,0.348], + [46093,0.371], + [46095,0.286], + [46097,0.315], + [46099,0.334], + [46101,0.334], + [46102,null], + [46103,0.363], + [46105,0.336], + [46107,0.305], + [46109,0.335], + [46111,0.349], + [46115,0.327], + [46117,0.288], + [46119,0.368], + [46121,0.335], + [46123,0.282], + [46125,0.355], + [46127,0.314], + [46129,0.275], + [46135,0.316], + [46137,0.293], + [47001,0.287], + [47003,0.249], + [47005,0.222], + [47007,0.205], + [47009,0.302], + [47011,0.301], + [47013,0.224], + [47015,0.247], + [47017,0.237], + [47019,0.265], + [47021,0.284], + [47023,0.271], + [47025,0.251], + [47027,0.189], + [47029,0.227], + [47031,0.297], + [47033,0.248], + [47035,0.28], + [47037,0.259], + [47039,0.275], + [47041,0.221], + [47043,0.252], + [47045,0.265], + [47047,0.303], + [47049,0.215], + [47051,0.265], + [47053,0.285], + [47055,0.252], + [47057,0.247], + [47059,0.25], + [47061,0.214], + [47063,0.246], + [47065,0.303], + [47067,0.244], + [47069,0.2], + [47071,0.244], + [47073,0.268], + [47075,0.233], + [47077,0.264], + [47079,0.224], + [47081,0.242], + [47083,0.201], + [47085,0.262], + [47087,0.23], + [47089,0.289], + [47091,0.251], + [47093,0.285], + [47095,0.179], + [47097,0.22], + [47099,0.251], + [47101,0.283], + [47103,0.234], + [47105,0.255], + [47107,0.252], + [47109,0.238], + [47111,0.219], + [47113,0.284], + [47115,0.299], + [47117,0.284], + [47119,0.325], + [47121,0.266], + [47123,0.252], + [47125,0.361], + [47127,0.266], + [47129,0.232], + [47131,0.251], + [47133,0.207], + [47135,0.258], + [47137,0.26], + [47139,0.291], + [47141,0.229], + [47143,0.264], + [47145,0.297], + [47147,0.291], + [47149,0.305], + [47151,0.245], + [47153,0.277], + [47155,0.29], + [47157,0.299], + [47159,0.247], + [47161,0.297], + [47163,0.283], + [47165,0.317], + [47167,0.31], + [47169,0.247], + [47171,0.273], + [47173,0.217], + [47175,0.229], + [47177,0.224], + [47179,0.272], + [47181,0.232], + [47183,0.24], + [47185,0.255], + [47187,0.23], + [47189,0.313], + [48001,0.321], + [48003,0.275], + [48005,0.332], + [48007,0.356], + [48009,0.343], + [48011,0.417], + [48013,0.241], + [48015,0.302], + [48017,0.283], + [48019,0.321], + [48021,0.315], + [48023,0.308], + [48025,0.284], + [48027,0.397], + [48029,0.31], + [48031,0.314], + [48033,0.288], + [48035,0.3], + [48037,0.326], + [48039,0.323], + [48041,0.263], + [48043,0.268], + [48045,0.282], + [48047,0.252], + [48049,0.299], + [48051,0.259], + [48053,0.324], + [48055,0.272], + [48057,0.316], + [48059,0.311], + [48061,0.239], + [48063,0.287], + [48065,0.354], + [48067,0.25], + [48069,0.272], + [48071,0.352], + [48073,0.299], + [48075,0.278], + [48077,0.31], + [48079,0.263], + [48081,0.29], + [48083,0.303], + [48085,0.276], + [48087,0.295], + [48089,0.266], + [48091,0.309], + [48093,0.259], + [48095,0.215], + [48097,0.342], + [48099,0.443], + [48101,0.258], + [48103,0.337], + [48105,0.316], + [48107,0.261], + [48109,0.206], + [48111,0.267], + [48113,0.256], + [48115,0.238], + [48117,0.268], + [48119,0.328], + [48121,0.303], + [48123,0.261], + [48125,0.34], + [48127,0.235], + [48129,0.38], + [48131,0.259], + [48133,0.354], + [48135,0.305], + [48137,0.248], + [48139,0.34], + [48141,0.306], + [48143,0.328], + [48145,0.274], + [48147,0.342], + [48149,0.266], + [48151,0.341], + [48153,0.307], + [48155,0.286], + [48157,0.268], + [48159,0.351], + [48161,0.349], + [48163,0.23], + [48165,0.204], + [48167,0.333], + [48169,0.202], + [48171,0.266], + [48173,0.26], + [48175,0.369], + [48177,0.242], + [48179,0.349], + [48181,0.365], + [48183,0.352], + [48185,0.298], + [48187,0.313], + [48189,0.256], + [48191,0.331], + [48193,0.269], + [48195,0.276], + [48197,0.291], + [48199,0.328], + [48201,0.267], + [48203,0.314], + [48205,0.248], + [48207,0.244], + [48209,0.304], + [48211,0.279], + [48213,0.313], + [48215,0.227], + [48217,0.31], + [48219,0.351], + [48221,0.331], + [48223,0.292], + [48225,0.3], + [48227,0.323], + [48229,0.166], + [48231,0.309], + [48233,0.391], + [48235,0.384], + [48237,0.263], + [48239,0.336], + [48241,0.294], + [48243,0.286], + [48245,0.319], + [48247,0.273], + [48249,0.254], + [48251,0.326], + [48253,0.268], + [48255,0.255], + [48257,0.32], + [48259,0.318], + [48261,0.088], + [48263,0.29], + [48265,0.346], + [48267,0.299], + [48269,0.271], + [48271,0.288], + [48273,0.308], + [48275,0.267], + [48277,0.334], + [48279,0.251], + [48281,0.415], + [48283,0.139], + [48285,0.253], + [48287,0.281], + [48289,0.272], + [48291,0.279], + [48293,0.325], + [48295,0.286], + [48297,0.325], + [48299,0.334], + [48301,0.422], + [48303,0.31], + [48305,0.275], + [48307,0.31], + [48309,0.332], + [48311,0.239], + [48313,0.269], + [48315,0.292], + [48317,0.248], + [48319,0.341], + [48321,0.299], + [48323,0.264], + [48325,0.306], + [48327,0.272], + [48329,0.313], + [48331,0.292], + [48333,0.319], + [48335,0.27], + [48337,0.302], + [48339,0.298], + [48341,0.277], + [48343,0.331], + [48345,0.414], + [48347,0.289], + [48349,0.322], + [48351,0.307], + [48353,0.33], + [48355,0.32], + [48357,0.274], + [48359,0.323], + [48361,0.348], + [48363,0.319], + [48365,0.375], + [48367,0.348], + [48369,0.215], + [48371,0.233], + [48373,0.286], + [48375,0.314], + [48377,0.141], + [48379,0.31], + [48381,0.385], + [48383,0.272], + [48385,0.323], + [48387,0.305], + [48389,0.251], + [48391,0.336], + [48393,0.323], + [48395,0.313], + [48397,0.315], + [48399,0.234], + [48401,0.333], + [48403,0.288], + [48405,0.287], + [48407,0.244], + [48409,0.315], + [48411,0.287], + [48413,0.329], + [48415,0.293], + [48417,0.325], + [48419,0.262], + [48421,0.267], + [48423,0.351], + [48425,0.348], + [48427,0.154], + [48429,0.277], + [48431,0.194], + [48433,0.284], + [48435,0.279], + [48437,0.297], + [48439,0.305], + [48441,0.334], + [48443,0.351], + [48445,0.255], + [48447,0.317], + [48449,0.281], + [48451,0.315], + [48453,0.243], + [48455,0.338], + [48457,0.307], + [48459,0.328], + [48461,0.295], + [48463,0.316], + [48465,0.237], + [48467,0.33], + [48469,0.325], + [48471,0.258], + [48473,0.282], + [48475,0.289], + [48477,0.31], + [48479,0.224], + [48481,0.314], + [48483,0.338], + [48485,0.32], + [48487,0.335], + [48489,0.196], + [48491,0.322], + [48493,0.301], + [48495,0.304], + [48497,0.332], + [48499,0.347], + [48501,0.272], + [48503,0.285], + [48505,0.189], + [48507,0.228], + [49001,0.336], + [49003,0.393], + [49005,0.35], + [49007,0.463], + [49009,0.425], + [49011,0.383], + [49013,0.369], + [49015,0.457], + [49017,0.367], + [49019,0.362], + [49021,0.39], + [49023,0.385], + [49025,0.409], + [49027,0.362], + [49029,0.396], + [49031,0.248], + [49033,0.44], + [49035,0.339], + [49037,0.352], + [49039,0.427], + [49041,0.412], + [49043,0.257], + [49045,0.391], + [49047,0.365], + [49049,0.387], + [49051,0.355], + [49053,0.409], + [49055,0.388], + [49057,0.37], + [50001,0.248], + [50003,0.265], + [50005,0.254], + [50007,0.243], + [50009,0.243], + [50011,0.287], + [50013,0.287], + [50015,0.285], + [50017,0.268], + [50019,0.272], + [50021,0.271], + [50023,0.247], + [50025,0.257], + [50027,0.259], + [51001,0.236], + [51003,0.214], + [51005,0.313], + [51007,0.306], + [51009,0.297], + [51011,0.283], + [51013,0.118], + [51015,0.252], + [51017,0.298], + [51019,0.307], + [51021,0.336], + [51023,0.313], + [51025,0.273], + [51027,0.244], + [51029,0.24], + [51031,0.312], + [51033,0.275], + [51035,0.322], + [51036,0.252], + [51037,0.276], + [51041,0.297], + [51043,0.27], + [51045,0.301], + [51047,0.297], + [51049,0.272], + [51051,0.278], + [51053,0.277], + [51057,0.283], + [51059,0.186], + [51061,0.287], + [51063,0.316], + [51065,0.334], + [51067,0.325], + [51069,0.28], + [51071,0.319], + [51073,0.343], + [51075,0.271], + [51077,0.295], + [51079,0.273], + [51081,0.245], + [51083,0.278], + [51085,0.287], + [51087,0.271], + [51089,0.331], + [51091,0.239], + [51093,0.328], + [51095,0.27], + [51097,0.247], + [51099,0.324], + [51101,0.335], + [51103,0.275], + [51105,0.3], + [51107,0.208], + [51109,0.263], + [51111,0.288], + [51113,0.241], + [51115,0.312], + [51117,0.3], + [51119,0.33], + [51121,0.23], + [51125,0.228], + [51127,0.316], + [51131,0.245], + [51133,0.321], + [51135,0.253], + [51137,0.285], + [51139,0.23], + [51141,0.301], + [51143,0.327], + [51145,0.318], + [51147,0.248], + [51149,0.336], + [51153,0.281], + [51155,0.338], + [51157,0.279], + [51159,0.282], + [51161,0.315], + [51163,0.249], + [51165,0.227], + [51167,0.295], + [51169,0.292], + [51171,0.283], + [51173,0.306], + [51175,0.321], + [51177,0.29], + [51179,0.327], + [51181,0.333], + [51183,0.21], + [51185,0.287], + [51187,0.291], + [51191,0.287], + [51193,0.314], + [51195,0.294], + [51197,0.268], + [51199,0.314], + [51510,0.177], + [51520,0.278], + [51530,0.243], + [51540,0.195], + [51550,0.349], + [51570,0.341], + [51580,0.269], + [51590,0.333], + [51595,0.259], + [51600,0.214], + [51610,0.128], + [51620,0.291], + [51630,0.254], + [51640,0.299], + [51650,0.375], + [51660,0.229], + [51670,0.311], + [51678,0.225], + [51680,0.296], + [51683,0.265], + [51685,0.261], + [51690,0.301], + [51700,0.366], + [51710,0.342], + [51720,0.42], + [51730,0.297], + [51735,0.299], + [51740,0.349], + [51750,0.307], + [51760,0.241], + [51770,0.301], + [51775,0.308], + [51790,0.268], + [51800,0.334], + [51810,0.366], + [51820,0.308], + [51830,0.195], + [51840,0.239], + [53001,0.257], + [53003,0.399], + [53005,0.353], + [53007,0.291], + [53009,0.397], + [53011,0.385], + [53013,0.384], + [53015,0.416], + [53017,0.338], + [53019,0.368], + [53021,0.314], + [53023,0.412], + [53025,0.321], + [53027,0.402], + [53029,0.4], + [53031,0.337], + [53033,0.267], + [53035,0.401], + [53037,0.321], + [53039,0.338], + [53041,0.413], + [53043,0.383], + [53045,0.385], + [53047,0.33], + [53049,0.397], + [53051,0.391], + [53053,0.376], + [53055,0.311], + [53057,0.372], + [53059,0.381], + [53061,0.369], + [53063,0.393], + [53065,0.374], + [53067,0.373], + [53069,0.411], + [53071,0.381], + [53073,0.354], + [53075,0.298], + [53077,0.289], + [54001,0.245], + [54003,0.294], + [54005,0.212], + [54007,0.183], + [54009,0.31], + [54011,0.292], + [54013,0.211], + [54015,0.135], + [54017,0.222], + [54019,0.239], + [54021,0.253], + [54023,0.206], + [54025,0.246], + [54027,0.222], + [54029,0.277], + [54031,0.19], + [54033,0.279], + [54035,0.275], + [54037,0.262], + [54039,0.254], + [54041,0.251], + [54043,0.248], + [54045,0.267], + [54047,0.159], + [54049,0.266], + [54051,0.275], + [54053,0.255], + [54055,0.246], + [54057,0.279], + [54059,0.225], + [54061,0.227], + [54063,0.178], + [54065,0.259], + [54067,0.22], + [54069,0.267], + [54071,0.165], + [54073,0.248], + [54075,0.195], + [54077,0.21], + [54079,0.29], + [54081,0.269], + [54083,0.188], + [54085,0.229], + [54087,0.225], + [54089,0.263], + [54091,0.244], + [54093,0.22], + [54095,0.263], + [54097,0.185], + [54099,0.254], + [54101,0.195], + [54103,0.221], + [54105,0.289], + [54107,0.327], + [54109,0.206], + [55001,0.319], + [55003,0.347], + [55005,0.329], + [55007,0.354], + [55009,0.317], + [55011,0.324], + [55013,0.349], + [55015,0.332], + [55017,0.357], + [55019,0.279], + [55021,0.354], + [55023,0.332], + [55025,0.276], + [55027,0.328], + [55029,0.296], + [55031,0.379], + [55033,0.317], + [55035,0.37], + [55037,0.394], + [55039,0.318], + [55041,0.352], + [55043,0.324], + [55045,0.32], + [55047,0.29], + [55049,0.349], + [55051,0.39], + [55053,0.329], + [55055,0.333], + [55057,0.319], + [55059,0.326], + [55061,0.325], + [55063,0.356], + [55065,0.331], + [55067,0.318], + [55069,0.349], + [55071,0.329], + [55073,0.317], + [55075,0.34], + [55077,0.331], + [55078,0.322], + [55079,0.291], + [55081,0.336], + [55083,0.305], + [55085,0.322], + [55087,0.325], + [55089,0.275], + [55091,0.318], + [55093,0.325], + [55095,0.352], + [55097,0.305], + [55099,0.322], + [55101,0.332], + [55103,0.305], + [55105,0.319], + [55107,0.297], + [55109,0.358], + [55111,0.321], + [55113,0.346], + [55115,0.315], + [55117,0.318], + [55119,0.287], + [55121,0.312], + [55123,0.292], + [55125,0.345], + [55127,0.311], + [55129,0.333], + [55131,0.345], + [55133,0.295], + [55135,0.303], + [55137,0.296], + [55139,0.307], + [55141,0.334], + [56001,0.303], + [56003,0.424], + [56005,0.371], + [56007,0.361], + [56009,0.358], + [56011,0.412], + [56013,0.361], + [56015,0.384], + [56017,0.446], + [56019,0.352], + [56021,0.393], + [56023,0.411], + [56025,0.4], + [56027,0.427], + [56029,0.353], + [56031,0.373], + [56033,0.403], + [56035,0.336], + [56037,0.355], + [56039,0.28], + [56041,0.37], + [56043,0.386], + [56045,0.377] + ] +} diff --git a/data/regional/united-states/geography/us-area-land-2013.json b/data/regional/united-states/geography/us-area-land-2013.json new file mode 100644 index 0000000..9d7469a --- /dev/null +++ b/data/regional/united-states/geography/us-area-land-2013.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Land Area", + "description" : "Land area in square kilometres.", + "units" : "km²", + "year" : "2013", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "uncategorised", + "tags" : ["regional","us","counties","geography","land","area"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.area.land.2013"], + [1001,1539.60113960114], + [1003,4117.53431753432], + [1005,2291.84149184149], + [1007,1612.48381248381], + [1009,1669.98186998187], + [1011,1613.07951307951], + [1013,2011.99171199171], + [1015,1569.20486920487], + [1017,1545.01424501425], + [1019,1434.08443408443], + [1021,1794.48329448329], + [1023,2365.96736596737], + [1025,3207.64050764051], + [1027,1564.25796425796], + [1029,1450.66045066045], + [1031,1758.53405853406], + [1033,1534.88733488733], + [1035,2201.9166019166], + [1037,1685.91038591039], + [1039,2668.89406889407], + [1041,1576.89717689718], + [1043,1903.2375032375], + [1045,1453.37995337995], + [1047,2534.83553483554], + [1049,2012.66511266511], + [1051,1601.8907018907], + [1053,2447.75964775965], + [1055,1385.62548562549], + [1057,1625.64102564103], + [1059,1641.59544159544], + [1061,1487.72338772339], + [1063,1676.01657601658], + [1065,1667.80626780627], + [1067,1454.93395493396], + [1069,1501.7353017353], + [1071,2791.68609168609], + [1073,2878.21807821808], + [1075,1566.56306656307], + [1077,1729.34472934473], + [1079,1788.86298886299], + [1081,1573.53017353017], + [1083,1450.24605024605], + [1085,1854.20875420875], + [1087,1577.02667702668], + [1089,2076.12017612018], + [1091,2530.12173012173], + [1093,1922.53302253302], + [1095,1465.52706552707], + [1097,3184.25278425278], + [1099,2656.51385651386], + [1101,2031.20953120953], + [1103,1500.4921004921], + [1105,1863.92126392126], + [1107,2282.85418285418], + [1109,1740.71484071484], + [1111,1503.626003626], + [1113,1660.55426055426], + [1115,1636.62263662264], + [1117,2032.97073297073], + [1119,2341.07744107744], + [1121,1908.26210826211], + [1123,1855.78865578866], + [1125,3423.36182336182], + [1127,2049.18414918415], + [1129,2797.7466977467], + [1131,2301.2173012173], + [1133,1587.61978761979], + [2013,18083.2426832427], + [2016,11370.8365708366], + [2020,4415.12561512562], + [2050,105076.405076405], + [2060,1304.9469049469], + [2068,33026.1849261849], + [2070,48093.1882931883], + [2090,19005.9829059829], + [2100,6005.18000518001], + [2105,19489.5622895623], + [2110,6998.0056980057], + [2122,41635.1463351463], + [2130,12583.2944832945], + [2150,16963.4291634292], + [2158,44240.9479409479], + [2164,61258.7671587672], + [2170,63734.5247345247], + [2180,59471.0178710179], + [2185,229721.341621342], + [2188,92133.0743330743], + [2195,8500.3367003367], + [2198,10160.2434602435], + [2220,7434.18803418803], + [2230,1171.53587153587], + [2240,64151.2820512821], + [2261,88681.3778813779], + [2275,6582.43978243978], + [2282,19812.1212121212], + [2290,376857.782957783], + [4001,29001.6058016058], + [4003,15969.1530691531], + [4005,48222.9733229733], + [4007,12323.051023051], + [4009,11972.545972546], + [4011,4773.71147371147], + [4012,11654.0533540534], + [4013,23828.3864283864], + [4015,34475.7316757317], + [4017,25771.6135716136], + [4019,23794.4573944574], + [4021,13896.9437969438], + [4023,3203.626003626], + [4025,21039.886039886], + [4027,14281.2483812484], + [5001,2560.91686091686], + [5003,2396.6588966589], + [5005,1435.58663558664], + [5007,2194.6645946646], + [5009,1528.69722869723], + [5011,1681.50738150738], + [5013,1628.02382802383], + [5015,1631.93473193473], + [5017,1668.73866873867], + [5019,2243.12354312354], + [5021,1656.22895622896], + [5023,1434.05853405853], + [5025,1548.25174825175], + [5027,1984.07148407148], + [5029,1430.32893032893], + [5031,1831.67573167573], + [5033,1536.10463610464], + [5035,1579.27997927998], + [5037,1596.4257964258], + [5039,1728.54182854183], + [5041,1989.51048951049], + [5043,2145.45454545455], + [5045,1678.01087801088], + [5047,1576.94897694898], + [5049,1601.1137011137], + [5051,1755.45195545196], + [5053,1636.38953638954], + [5055,1496.2444962445], + [5057,1884.27868427868], + [5059,1593.36959336959], + [5061,1524.34602434602], + [5063,1978.63247863248], + [5065,1503.7037037037], + [5067,1641.90624190624], + [5069,2255.24475524476], + [5071,1708.88370888371], + [5073,1368.22066822067], + [5075,1521.91142191142], + [5077,1560.78736078736], + [5079,1454.33825433825], + [5081,1378.52887852888], + [5083,1834.05853405853], + [5085,1996.1926961927], + [5087,2160.73556073556], + [5089,1546.25744625745], + [5091,1620.25382025382], + [5093,2332.47863247863], + [5095,1572.44237244237], + [5097,2019.89121989122], + [5099,1600.2072002072], + [5101,2126.13312613313], + [5103,1897.9020979021], + [5105,1428.12742812743], + [5107,1801.7612017612], + [5109,1555.60735560736], + [5111,1964.23206423206], + [5113,2221.39342139342], + [5115,2104.5066045066], + [5117,1678.21807821808], + [5119,1967.78036778037], + [5121,1689.17378917379], + [5123,1644.05594405594], + [5125,1874.12587412587], + [5127,2311.11111111111], + [5129,1725.20072520073], + [5131,1377.64827764828], + [5133,1463.68816368816], + [5135,1565.50116550117], + [5137,1570.60347060347], + [5139,2691.55659155659], + [5141,1834.08443408443], + [5143,2439.70473970474], + [5145,2680.85988085988], + [5147,1519.78761978762], + [5149,2408.65060865061], + [6001,1914.06371406371], + [6003,1912.27661227661], + [6005,1539.96373996374], + [6007,4238.43563843564], + [6009,2641.82854182854], + [6011,2980.39368039368], + [6013,1854.28645428645], + [6015,2606.50090650091], + [6017,4423.41362341362], + [6019,15431.2095312095], + [6021,3403.1339031339], + [6023,9241.10334110334], + [6025,10817.4048174048], + [6027,26368.5055685056], + [6029,21061.6938616939], + [6031,3598.6013986014], + [6033,3254.23465423465], + [6035,11761.667961668], + [6037,10509.9197099197], + [6039,5535.01683501684], + [6041,1347.60424760425], + [6043,3752.44755244755], + [6045,9081.42968142968], + [6047,5011.57731157731], + [6049,10147.0344470344], + [6051,7896.8660968661], + [6053,8496.7624967625], + [6055,1938.25433825434], + [6057,2480.62678062678], + [6059,2047.57834757835], + [6061,3644.15954415954], + [6063,6612.38021238021], + [6065,18664.8018648019], + [6067,2498.4200984201], + [6069,3596.7624967625], + [6071,51947.5265475266], + [6073,10895.1825951826], + [6075,121.393421393421], + [6077,3603.5224035224], + [6079,8543.30484330484], + [6081,1161.38306138306], + [6083,7083.89018389019], + [6085,3341.36234136234], + [6087,1152.99145299145], + [6089,9778.29577829578], + [6091,2468.81636881637], + [6093,16259.7513597514], + [6095,2128.38642838643], + [6097,4081.45558145558], + [6099,3871.61357161357], + [6101,1560.24346024346], + [6103,7639.75653975654], + [6105,8234.26573426574], + [6107,12494.7422947423], + [6109,5752.08495208495], + [6111,4773.71147371147], + [6113,2628.04972804973], + [6115,1636.46723646724], + [8001,3024.21652421652], + [8003,1871.63947163947], + [8005,2067.08106708107], + [8007,3496.9696969697], + [8009,6617.37891737892], + [8011,3918.31131831132], + [8013,1881.09298109298], + [8014,85.5477855477856], + [8015,2624.70862470862], + [8017,4605.74980574981], + [8019,1023.64672364672], + [8021,3334.34343434343], + [8023,3177.80367780368], + [8025,2039.41983941984], + [8027,1913.05361305361], + [8029,2957.91245791246], + [8031,396.270396270396], + [8033,2763.66226366226], + [8035,2176.24967624968], + [8037,4362.93706293706], + [8039,4793.70629370629], + [8041,5508.41750841751], + [8043,3970.65527065527], + [8045,7634.18803418803], + [8047,388.241388241388], + [8049,4781.99948199948], + [8051,8389.27738927739], + [8053,2893.68039368039], + [8055,4120.69412069412], + [8057,4179.53897953898], + [8059,1979.30587930588], + [8061,4578.52887852888], + [8063,5596.5293965294], + [8065,976.197876197876], + [8067,4382.49158249158], + [8069,6723.64672364672], + [8071,12361.2276612277], + [8073,6676.06837606838], + [8075,4761.84926184926], + [8077,8622.04092204092], + [8079,2267.98756798757], + [8081,12285.1333851334], + [8083,5256.48795648796], + [8085,5803.4188034188], + [8087,3316.31701631702], + [8089,3268.47966847967], + [8091,1402.7195027195], + [8093,5682.07718207718], + [8095,1781.74048174048], + [8097,2514.11551411551], + [8099,4243.46024346024], + [8101,6180.00518000518], + [8103,8342.21704221704], + [8105,2361.97876197876], + [8107,6117.66381766382], + [8109,8206.50090650091], + [8111,1003.6001036001], + [8113,3332.32323232323], + [8115,1419.42501942502], + [8117,1575.65397565398], + [8119,1442.78684278684], + [8121,6521.70422170422], + [8123,10326.9619269619], + [8125,6123.82802382802], + [9001,1618.46671846672], + [9003,1903.9109039109], + [9005,2384.25278425278], + [9007,956.487956487957], + [9009,1565.68246568247], + [9011,1722.04092204092], + [9013,1062.44496244496], + [9015,1328.43822843823], + [10001,1518.20771820772], + [10003,1104.0922040922], + [10005,2424.44962444962], + [11001,158.119658119658], + [12001,2266.30406630407], + [12003,1515.74721574722], + [12005,1964.41336441336], + [12007,761.357161357161], + [12009,2630.56203056203], + [12011,3133.35923335923], + [12013,1469.38616938617], + [12015,1761.92696192696], + [12017,1506.60450660451], + [12019,1565.29396529397], + [12021,5175.65397565398], + [12023,2065.70836570837], + [12027,1649.98704998705], + [12029,1826.08132608133], + [12031,1974.07407407407], + [12033,1700.2331002331], + [12035,1257.34265734266], + [12037,1384.95208495209], + [12039,1337.29603729604], + [12041,905.672105672106], + [12043,2087.56798756799], + [12045,1460.78736078736], + [12047,1330.71743071743], + [12049,1651.85185185185], + [12051,2985.62548562549], + [12053,1223.87982387982], + [12055,2633.04843304843], + [12057,2642.34654234654], + [12059,1240.04144004144], + [12061,1302.4346024346], + [12063,2377.00077700078], + [12065,1549.08054908055], + [12067,1407.43330743331], + [12069,2430.40663040663], + [12071,2031.88293188293], + [12073,1727.14322714323], + [12075,2896.1667961668], + [12077,2164.10256410256], + [12079,1802.5123025123], + [12081,1924.19062419062], + [12083,4103.9886039886], + [12085,1407.56280756281], + [12086,4915.09971509972], + [12087,2546.69774669775], + [12089,1679.97927997928], + [12091,2409.34990934991], + [12093,1991.47889147889], + [12095,2339.88603988604], + [12097,3438.09893809894], + [12099,5101.6835016835], + [12101,1934.44703444703], + [12103,709.142709142709], + [12105,4656.41025641026], + [12107,1884.53768453768], + [12109,1555.71095571096], + [12111,1481.30018130018], + [12113,2620.07252007252], + [12115,1439.70473970474], + [12117,800.880600880601], + [12119,1416.55011655012], + [12121,1783.34628334628], + [12123,2702.1756021756], + [12125,630.821030821031], + [12127,2851.67055167055], + [12129,1570.62937062937], + [12131,2687.46438746439], + [12133,1509.45350945351], + [13001,1313.33851333851], + [13003,878.995078995079], + [13005,669.72286972287], + [13007,885.625485625486], + [13009,667.806267806268], + [13011,601.113701113701], + [13013,415.203315203315], + [13015,1190.20979020979], + [13017,647.811447811448], + [13019,1170.42217042217], + [13021,646.879046879047], + [13023,559.103859103859], + [13025,1145.71354571355], + [13027,1277.00077700078], + [13029,1129.16342916343], + [13031,1742.57964257964], + [13033,2141.85444185444], + [13035,477.570577570578], + [13037,726.159026159026], + [13039,1587.74928774929], + [13043,629.474229474229], + [13045,1292.61849261849], + [13047,419.99481999482], + [13049,2003.5742035742], + [13051,1104.4807044807], + [13053,644.237244237244], + [13055,811.551411551411], + [13057,1092.12639212639], + [13059,308.728308728309], + [13061,506.034706034706], + [13063,366.666666666667], + [13065,2072.57187257187], + [13067,879.435379435379], + [13069,1489.51048951049], + [13071,1409.34990934991], + [13073,751.333851333851], + [13075,588.344988344988], + [13077,1141.90624190624], + [13079,841.465941465942], + [13081,705.982905982906], + [13083,450.608650608651], + [13085,546.050246050246], + [13087,1546.59414659415], + [13089,693.032893032893], + [13091,1284.35638435638], + [13093,1015.12561512562], + [13095,851.307951307951], + [13097,518.181818181818], + [13099,1327.60942760943], + [13101,1074.56617456617], + [13103,1237.24423724424], + [13105,909.246309246309], + [13107,1762.75576275576], + [13109,473.581973581974], + [13111,1001.6058016058], + [13113,503.341103341103], + [13115,1320.66822066822], + [13117,580.21238021238], + [13119,677.285677285677], + [13121,1363.99896399896], + [13123,1104.7397047397], + [13125,372.286972286972], + [13127,1087.15358715359], + [13129,921.548821548822], + [13131,1177.23387723388], + [13133,1003.4706034706], + [13135,1114.68531468531], + [13137,716.757316757317], + [13139,1017.30121730122], + [13141,1222.06682206682], + [13143,730.821030821031], + [13145,1201.4245014245], + [13147,601.890701890702], + [13149,766.718466718467], + [13151,834.317534317534], + [13153,972.649572649573], + [13155,917.741517741518], + [13157,879.72027972028], + [13159,953.561253561254], + [13161,856.617456617457], + [13163,1363.61046361046], + [13165,899.456099456099], + [13167,784.796684796685], + [13169,1020.27972027972], + [13171,475.265475265475], + [13173,479.82387982388], + [13175,2090.90909090909], + [13177,921.471121471121], + [13179,1268.58326858327], + [13181,544.884744884745], + [13183,1036.75213675214], + [13185,1284.82258482258], + [13187,732.789432789433], + [13189,666.822066822067], + [13191,1098.9380989381], + [13193,1037.65863765864], + [13195,731.183631183631], + [13197,947.940947940948], + [13199,1298.1610981611], + [13201,731.468531468532], + [13205,1326.31442631443], + [13207,1024.76042476043], + [13209,620.35742035742], + [13211,899.6373996374], + [13213,892.178192178192], + [13215,560.45066045066], + [13217,704.895104895105], + [13219,477.311577311577], + [13221,1137.03703703704], + [13223,808.650608650609], + [13225,389.199689199689], + [13227,601.036001036001], + [13229,819.70991970992], + [13231,559.67365967366], + [13233,803.755503755504], + [13235,644.988344988345], + [13237,892.618492618493], + [13239,391.711991711992], + [13241,958.275058275058], + [13243,1109.14270914271], + [13245,840.01554001554], + [13247,336.156436156436], + [13249,432.297332297332], + [13251,1670.81067081067], + [13253,609.246309246309], + [13255,508.857808857809], + [13257,463.947163947164], + [13259,1188.11188811189], + [13261,1250.19425019425], + [13263,1013.70111370111], + [13265,504.040404040404], + [13267,1241.64724164724], + [13269,975.628075628076], + [13271,1132.60813260813], + [13273,868.790468790469], + [13275,1410.51541051541], + [13277,670.603470603471], + [13279,942.786842786843], + [13281,431.390831390831], + [13283,516.550116550117], + [13285,1072.23517223517], + [13287,739.160839160839], + [13289,928.256928256928], + [13291,833.799533799534], + [13293,837.710437710438], + [13295,1156.12535612536], + [13297,843.512043512044], + [13299,2311.47371147371], + [13301,736.337736337736], + [13303,1757.18725718726], + [13305,1662.21186221186], + [13307,541.621341621342], + [13309,765.293965293965], + [13311,623.387723387723], + [13313,752.292152292152], + [13315,978.269878269878], + [13317,1215.98031598032], + [13319,1158.53405853406], + [13321,1478.11447811448], + [15001,10433.6182336182], + [15003,1555.91815591816], + [15005,31.0541310541311], + [15007,1605.69800569801], + [15009,3008.33980833981], + [16001,2726.18492618493], + [16003,3530.32893032893], + [16005,2880.05698005698], + [16007,2524.70862470862], + [16009,2011.44781144781], + [16011,5423.41362341362], + [16013,6846.90494690495], + [16015,4919.03651903652], + [16017,4492.54079254079], + [16019,4833.15203315203], + [16021,3285.57368557369], + [16023,5780.03108003108], + [16025,2782.93188293188], + [16027,1521.28982128982], + [16029,4569.15306915307], + [16031,6643.56384356384], + [16033,4569.25666925667], + [16035,6364.33566433567], + [16037,12745.2473452473], + [16039,7963.58456358456], + [16041,1718.85521885522], + [16043,4826.54752654753], + [16045,1452.73245273245], + [16047,1888.03418803419], + [16049,21956.3584563585], + [16051,2832.16783216783], + [16053,1546.72364672365], + [16055,3222.29992229992], + [16057,2786.84278684279], + [16059,11819.1919191919], + [16061,1240.09324009324], + [16063,3111.65501165501], + [16065,1215.25511525512], + [16067,1962.16006216006], + [16069,2196.5552965553], + [16071,3108.15850815851], + [16073,19853.6907536908], + [16075,1053.79435379435], + [16077,3636.98523698524], + [16079,6810.85211085211], + [16081,1164.10256410256], + [16083,4975.93887593888], + [16085,9491.11629111629], + [16087,3763.22196322196], + [17001,2214.97021497022], + [17003,609.97150997151], + [17005,984.926184926185], + [17007,727.065527065527], + [17009,791.530691530692], + [17011,2250.78995078995], + [17013,657.420357420358], + [17015,1152.05905205905], + [17017,973.374773374773], + [17019,2580.34188034188], + [17021,1837.29603729604], + [17023,1298.6790986791], + [17025,1212.95001295001], + [17027,1227.89432789433], + [17029,1316.47241647242], + [17031,2448.40714840715], + [17033,1149.00284900285], + [17035,896.192696192696], + [17037,1635.09453509453], + [17039,1029.55192955193], + [17041,1079.17637917638], + [17043,848.225848225848], + [17045,1614.52991452991], + [17047,576.068376068376], + [17049,1240.04144004144], + [17051,1855.68505568506], + [17053,1257.75705775706], + [17055,1059.02615902616], + [17057,2241.90624190624], + [17059,836.752136752137], + [17061,1406.42320642321], + [17063,1082.72468272468], + [17065,1125.79642579643], + [17067,2055.76275576276], + [17069,459.80315980316], + [17071,981.274281274281], + [17073,2131.54623154623], + [17075,2893.86169386169], + [17077,1512.76871276871], + [17079,1280.78218078218], + [17081,1479.33177933178], + [17083,956.410256410256], + [17085,1556.82465682466], + [17087,890.753690753691], + [17089,1346.95674695675], + [17091,1752.29215229215], + [17093,829.68142968143], + [17095,1855.47785547786], + [17097,1149.10644910645], + [17099,2939.96373996374], + [17101,963.947163947164], + [17103,1877.49287749288], + [17105,2704.7138047138], + [17107,1600.777000777], + [17109,1526.57342657343], + [17111,1562.21186221186], + [17113,3064.95726495727], + [17115,1503.9886039886], + [17117,2234.93913493914], + [17119,1853.35405335405], + [17121,1482.41388241388], + [17123,1001.7871017871], + [17125,1396.632996633], + [17127,614.400414400414], + [17129,814.400414400414], + [17131,1453.50945350945], + [17133,997.176897176897], + [17135,1822.55892255892], + [17137,1473.16757316757], + [17139,870.08547008547], + [17141,1964.69826469827], + [17143,1603.7555037555], + [17145,1144.15954415954], + [17147,1137.52913752914], + [17149,2153.27635327635], + [17151,955.115255115255], + [17153,515.902615902616], + [17155,414.814814814815], + [17157,1490.54649054649], + [17159,932.375032375032], + [17161,1107.58870758871], + [17163,1703.6001036001], + [17165,983.734783734784], + [17167,2248.89924889925], + [17169,1132.53043253043], + [17171,649.85754985755], + [17173,1964.56876456876], + [17175,746.127946127946], + [17177,1462.10826210826], + [17179,1680.83398083398], + [17181,1070.86247086247], + [17183,2326.78062678063], + [17185,578.218078218078], + [17187,1404.8433048433], + [17189,1457.05775705776], + [17191,1848.76974876975], + [17193,1281.45558145558], + [17195,1772.20927220927], + [17197,2167.59906759907], + [17199,1088.18958818959], + [17201,1329.60372960373], + [17203,1367.00336700337], + [18001,878.088578088578], + [18003,1702.4346024346], + [18005,1053.89795389795], + [18007,1052.62885262885], + [18009,427.557627557628], + [18011,1095.337995338], + [18013,808.029008029008], + [18015,964.050764050764], + [18017,1067.49546749547], + [18019,965.708365708366], + [18021,926.029526029526], + [18023,1049.13234913235], + [18025,791.608391608392], + [18027,1112.38021238021], + [18029,790.02849002849], + [18031,964.957264957265], + [18033,939.70473970474], + [18035,1015.59181559182], + [18037,1106.63040663041], + [18039,1199.6114996115], + [18041,556.876456876457], + [18043,383.164983164983], + [18045,1024.76042476043], + [18047,995.674695674696], + [18049,954.131054131054], + [18051,1262.60036260036], + [18053,1072.44237244237], + [18055,1405.07640507641], + [18057,1021.16032116032], + [18059,792.592592592593], + [18061,1254.90805490806], + [18063,1053.89795389795], + [18065,1014.97021497022], + [18067,759.026159026159], + [18069,991.064491064491], + [18071,1319.11421911422], + [18073,1449.44314944315], + [18075,994.327894327894], + [18077,934.032634032634], + [18079,975.343175343175], + [18081,829.91452991453], + [18083,1336.51903651904], + [18085,1376.27557627558], + [18087,983.216783216783], + [18089,1292.30769230769], + [18091,1549.59854959855], + [18093,1163.35146335146], + [18095,1170.47397047397], + [18097,1026.41802641803], + [18099,1149.00284900285], + [18101,869.56746956747], + [18103,968.246568246568], + [18105,1021.78192178192], + [18107,1306.94120694121], + [18109,1046.28334628335], + [18111,1040.55944055944], + [18113,1064.07666407666], + [18115,223.102823102823], + [18117,1031.83113183113], + [18119,997.902097902098], + [18121,1151.67055167055], + [18123,988.681688681689], + [18125,865.682465682466], + [18127,1083.00958300958], + [18129,1060.78736078736], + [18131,1123.15462315462], + [18133,1244.57394457394], + [18135,1171.66537166537], + [18137,1156.25485625486], + [18139,1057.03185703186], + [18141,1185.83268583269], + [18143,493.136493136493], + [18145,1064.87956487957], + [18147,1027.55762755763], + [18149,800.647500647501], + [18151,800.1554001554], + [18153,1158.09375809376], + [18155,571.432271432272], + [18157,1294.50919450919], + [18159,674.799274799275], + [18161,417.560217560218], + [18163,604.713804713805], + [18165,665.319865319865], + [18167,1044.57394457394], + [18169,1068.19476819477], + [18171,944.522144522145], + [18173,996.684796684797], + [18175,1330.56203056203], + [18177,1040.50764050764], + [18179,953.354053354053], + [18181,1308.28800828801], + [18183,869.127169127169], + [19001,1474.41077441077], + [19003,1096.7106967107], + [19005,1655.21885521886], + [19007,1287.98238798239], + [19009,1147.26754726755], + [19011,1855.14115514116], + [19013,1465.34576534577], + [19015,1480.36778036778], + [19017,1127.89432789433], + [19019,1478.94327894328], + [19021,1489.04428904429], + [19023,1502.5382025382], + [19025,1476.22377622378], + [19027,1474.85107485108], + [19029,1461.46076146076], + [19031,1500.7511007511], + [19033,1471.92437192437], + [19035,1494.19839419839], + [19037,1306.34550634551], + [19039,1116.73141673142], + [19041,1469.15306915307], + [19043,2016.42061642062], + [19045,1799.8445998446], + [19047,1849.75394975395], + [19049,1524.08702408702], + [19051,1300.6734006734], + [19053,1377.57057757058], + [19055,1496.3998963999], + [19057,1077.75187775188], + [19059,985.780885780886], + [19061,1575.52447552448], + [19063,1025.33022533023], + [19065,1892.79979279979], + [19067,1296.632996633], + [19069,1507.30380730381], + [19071,1323.87982387982], + [19073,1475.18777518778], + [19075,1299.8186998187], + [19077,1529.70732970733], + [19079,1493.78399378399], + [19081,1478.91737891738], + [19083,1474.51437451437], + [19085,1804.8433048433], + [19087,1124.91582491583], + [19089,1225.71872571873], + [19091,1124.96762496763], + [19093,1117.61201761202], + [19095,1518.93291893292], + [19097,1647.34524734525], + [19099,1891.78969178969], + [19101,1127.97202797203], + [19103,1590.36519036519], + [19105,1490.85729085729], + [19107,1500.0777000777], + [19109,2519.34731934732], + [19111,1340.37814037814], + [19113,1856.72105672106], + [19115,1040.58534058534], + [19117,1115.22921522922], + [19119,1522.01502201502], + [19121,1453.01735301735], + [19123,1478.52887852888], + [19125,1436.23413623414], + [19127,1482.77648277648], + [19129,1132.97073297073], + [19131,1215.04791504792], + [19133,1797.6430976431], + [19135,1123.33592333592], + [19137,1098.4200984201], + [19139,1133.04843304843], + [19141,1484.17508417508], + [19143,1032.58223258223], + [19145,1385.49598549599], + [19147,1460.34706034706], + [19149,2234.88733488734], + [19151,1495.0530950531], + [19153,1486.14348614349], + [19155,2461.22766122766], + [19157,1514.97021497021], + [19159,1386.94638694639], + [19161,1489.27738927739], + [19163,1186.45428645429], + [19165,1530.12173012173], + [19167,1989.97668997669], + [19169,1483.60528360528], + [19171,1867.41776741777], + [19173,1377.62237762238], + [19175,1097.2545972546], + [19177,1255.60735560736], + [19179,1118.44081844082], + [19181,1475.86117586118], + [19183,1473.29707329707], + [19185,1360.89096089096], + [19187,1853.45765345765], + [19189,1037.27013727014], + [19191,1786.76508676509], + [19193,2260.63196063196], + [19195,1036.31183631184], + [19197,1503.2893032893], + [20001,1295.7782957783], + [20003,1501.295001295], + [20005,1116.73141673142], + [20007,2937.24423724424], + [20009,2319.08831908832], + [20011,1645.86894586895], + [20013,1478.55477855478], + [20015,3703.3411033411], + [20017,2002.2274022274], + [20019,1654.70085470085], + [20021,1521.80782180782], + [20023,2641.51774151774], + [20025,2524.29422429422], + [20027,1671.32867132867], + [20029,1852.73245273245], + [20031,1623.80212380212], + [20033,2041.69904169904], + [20035,2915.69541569542], + [20037,1527.47992747993], + [20039,2314.21911421911], + [20041,2193.91349391349], + [20043,1018.93291893292], + [20045,1180.70448070448], + [20047,1610.69671069671], + [20049,1668.66096866097], + [20051,2330.76923076923], + [20053,1854.05335405335], + [20055,3372.10567210567], + [20057,2844.52214452214], + [20059,1480.85988085988], + [20061,996.166796166796], + [20063,2775.62807562808], + [20065,2327.16912716913], + [20067,1488.73348873349], + [20069,2250.37555037555], + [20071,2016.18751618752], + [20073,2961.14996114996], + [20075,2580.96348096348], + [20077,2075.29137529138], + [20079,1397.9538979539], + [20081,1495.7782957783], + [20083,2227.37632737633], + [20085,1699.6114996115], + [20087,1379.35767935768], + [20089,2356.33255633256], + [20091,1226.05542605543], + [20093,2254.70085470085], + [20095,2236.10463610464], + [20097,1871.63947163947], + [20099,1671.32867132867], + [20101,1858.22325822326], + [20103,1198.7308987309], + [20105,1863.24786324786], + [20107,1538.61693861694], + [20109,2779.04687904688], + [20111,2194.9494949495], + [20113,2326.52162652163], + [20115,2445.71354571355], + [20117,2331.46853146853], + [20119,2533.25563325563], + [20121,1490.96089096089], + [20123,1817.63791763792], + [20125,1666.74436674437], + [20127,1800.777000777], + [20129,1890.00259000259], + [20131,1858.14555814556], + [20133,1480.10878010878], + [20135,2783.60528360528], + [20137,2274.35897435897], + [20139,1827.29862729863], + [20141,2311.57731157731], + [20143,1866.69256669257], + [20145,1953.53535353535], + [20147,2294.43149443149], + [20149,2178.24397824398], + [20151,1903.7814037814], + [20153,2769.80056980057], + [20155,3251.35975135975], + [20157,1857.99015799016], + [20159,1880.96348096348], + [20161,1579.30587930588], + [20163,2306.47500647501], + [20165,1859.00025900026], + [20167,2295.4156954157], + [20169,1865.39756539757], + [20171,1858.43045843046], + [20173,2583.55348355348], + [20175,1656.30665630666], + [20177,1409.01320901321], + [20179,2320.53872053872], + [20181,2735.22403522404], + [20183,2319.26961926962], + [20185,2051.41155141155], + [20187,1762.10826210826], + [20189,1883.68298368298], + [20191,3061.22766122766], + [20193,2783.44988344988], + [20195,2303.7555037555], + [20197,2057.23905723906], + [20199,2366.35586635587], + [20201,2317.43071743072], + [20203,1861.09816109816], + [20205,1477.38927738928], + [20207,1289.35508935509], + [20209,392.644392644393], + [21001,1049.67624967625], + [21003,891.841491841492], + [21005,522.740222740223], + [21007,638.850038850039], + [21009,1262.72986272986], + [21011,722.066822066822], + [21013,929.81092981093], + [21015,638.073038073038], + [21017,750.375550375551], + [21019,414.037814037814], + [21021,466.640766640767], + [21023,532.530432530433], + [21025,1275.34317534318], + [21027,1468.97176897177], + [21029,769.282569282569], + [21031,1103.5742035742], + [21033,893.006993006993], + [21035,997.202797202797], + [21037,391.893291893292], + [21039,490.624190624191], + [21041,332.996632996633], + [21043,1060.60606060606], + [21045,1150.55685055685], + [21047,1858.32685832686], + [21049,653.872053872054], + [21051,1215.35871535872], + [21053,510.878010878011], + [21055,932.271432271432], + [21057,790.41699041699], + [21059,1187.12768712769], + [21061,784.459984459984], + [21063,606.889406889407], + [21065,655.477855477856], + [21067,734.654234654235], + [21069,902.719502719503], + [21071,1018.77751877752], + [21073,538.073038073038], + [21075,532.245532245532], + [21077,262.185962185962], + [21079,595.907795907796], + [21081,668.142968142968], + [21083,1429.00802900803], + [21085,1286.45428645429], + [21087,740.818440818441], + [21089,891.996891996892], + [21091,486.013986013986], + [21093,1614.29681429681], + [21095,1206.50090650091], + [21097,793.473193473194], + [21099,1067.31416731417], + [21101,1130.97643097643], + [21103,741.465941465941], + [21105,627.479927479928], + [21107,1403.7814037814], + [21109,894.068894068894], + [21111,985.288785288785], + [21113,445.791245791246], + [21115,678.451178451178], + [21117,415.047915047915], + [21119,910.43771043771], + [21121,1000.518000518], + [21123,677.337477337477], + [21125,1123.93162393162], + [21127,1076.40507640508], + [21129,540.947940947941], + [21131,1038.17663817664], + [21133,875.187775187775], + [21135,1250.55685055685], + [21137,865.319865319865], + [21139,811.007511007511], + [21141,1430.01813001813], + [21143,553.846153846154], + [21145,644.237244237244], + [21147,1105.41310541311], + [21149,653.897953897954], + [21151,1132.58223258223], + [21153,798.860398860399], + [21155,888.396788396788], + [21157,780.23828023828], + [21159,594.690494690495], + [21161,621.937321937322], + [21163,791.038591038591], + [21165,527.298627298627], + [21167,644.392644392645], + [21169,750.19425019425], + [21171,853.069153069153], + [21173,511.188811188811], + [21175,987.127687127687], + [21177,1209.73840973841], + [21179,1081.35198135198], + [21181,505.490805490806], + [21183,1521.03082103082], + [21185,484.900284900285], + [21187,909.34990934991], + [21189,511.292411292411], + [21191,717.845117845118], + [21193,879.74617974618], + [21195,2037.89173789174], + [21197,463.558663558664], + [21199,1705.28360528361], + [21201,258.767158767159], + [21203,819.86531986532], + [21205,724.682724682725], + [21207,656.980056980057], + [21209,729.78502978503], + [21211,983.268583268583], + [21213,606.578606578607], + [21215,483.501683501684], + [21217,689.79538979539], + [21219,969.95596995597], + [21221,1143.30484330484], + [21223,392.773892773893], + [21225,887.982387982388], + [21227,1402.7454027454], + [21229,769.93006993007], + [21231,1186.66148666149], + [21233,859.72545972546], + [21235,1133.98083398083], + [21237,575.420875420875], + [21239,488.940688940689], + [22001,1696.7624967625], + [22003,1973.19347319347], + [22005,751.048951048951], + [22007,877.130277130277], + [22009,2155.99585599586], + [22011,2997.5135975136], + [22013,2101.1914011914], + [22015,2175.75757575758], + [22017,2275.42087542088], + [22019,2754.88215488216], + [22021,1371.22507122507], + [22023,3327.86842786843], + [22025,1833.79953379953], + [22027,1955.14115514116], + [22029,1805.0246050246], + [22031,2267.75446775447], + [22033,1179.40947940948], + [22035,1089.61408961409], + [22037,1174.33307433307], + [22039,1715.56591556592], + [22041,1617.68971768972], + [22043,1665.44936544937], + [22045,1486.94638694639], + [22047,1602.2533022533], + [22049,1474.17767417767], + [22051,765.682465682466], + [22053,1686.94638694639], + [22055,695.985495985496], + [22057,2766.66666666667], + [22059,1617.92281792282], + [22061,1221.80782180782], + [22063,1678.76197876198], + [22065,1617.30121730122], + [22067,2058.87075887076], + [22069,3243.33074333074], + [22071,438.798238798239], + [22073,1580.96348096348], + [22075,2019.96891996892], + [22077,1443.53794353794], + [22079,3413.51981351981], + [22081,1007.74410774411], + [22083,1447.91504791505], + [22085,2244.65164465165], + [22087,977.777777777778], + [22089,722.817922817923], + [22091,1057.75705775706], + [22093,625.589225589226], + [22095,551.851851851852], + [22097,2392.85159285159], + [22099,1910.51541051541], + [22101,1438.43563843564], + [22103,2189.97668997669], + [22105,2049.41724941725], + [22107,1561.20176120176], + [22109,3190.41699041699], + [22111,2271.40637140637], + [22113,3038.59103859104], + [22115,3439.29033929034], + [22117,1734.08443408443], + [22119,1535.94923594924], + [22121,498.290598290598], + [22123,931.494431494431], + [22125,1044.31494431494], + [22127,2460.73556073556], + [23001,1211.93991193991], + [23003,17278.761978762], + [23005,2163.27376327376], + [23007,4394.22429422429], + [23009,4110.04921004921], + [23011,2246.87904687905], + [23013,945.687645687646], + [23015,1180.57498057498], + [23017,5379.02097902098], + [23019,8799.1711991712], + [23021,10258.6376586377], + [23023,657.083657083657], + [23025,10164.2061642062], + [23027,1890.49469049469], + [23029,6637.29603729604], + [23031,2565.94146594147], + [24001,1098.5754985755], + [24003,1074.59207459207], + [24005,1549.59854959855], + [24009,552.059052059052], + [24011,827.298627298627], + [24013,1159.28515928516], + [24015,896.840196840197], + [24017,1185.57368557369], + [24019,1400.5957005957], + [24021,1709.97150997151], + [24023,1675.99067599068], + [24025,1132.06423206423], + [24027,649.417249417249], + [24029,717.508417508417], + [24031,1272.33877233877], + [24033,1250.16835016835], + [24035,963.247863247863], + [24037,925.097125097125], + [24039,828.075628075628], + [24041,695.519295519296], + [24043,1185.65138565139], + [24045,969.80056980057], + [24047,1212.84641284641], + [24510,209.63480963481], + [25001,1019.73581973582], + [25003,2400.4921004921], + [25005,1432.53043253043], + [25007,267.417767417767], + [25009,1275.73167573168], + [25011,1811.24061124061], + [25013,1598.3941983942], + [25015,1365.60476560477], + [25017,2118.15591815592], + [25019,116.472416472416], + [25021,1025.92592592593], + [25023,1707.01890701891], + [25025,150.608650608651], + [25027,3912.89821289821], + [26001,1747.18984718985], + [26003,2370.03367003367], + [26005,2137.34783734784], + [26007,1481.11888111888], + [26009,1232.06423206423], + [26011,940.663040663041], + [26013,2326.49572649573], + [26015,1432.50453250453], + [26017,1145.55814555815], + [26019,828.023828023828], + [26021,1470.47397047397], + [26023,1311.49961149961], + [26025,1829.13752913753], + [26027,1269.25666925667], + [26029,1078.32167832168], + [26031,1852.52525252525], + [26033,4036.31183631184], + [26035,1461.59026159026], + [26037,1467.00336700337], + [26039,1440.76664076664], + [26041,3033.15203315203], + [26043,1972.02797202797], + [26045,1489.71768971769], + [26047,1210.80031080031], + [26049,1649.77984977985], + [26051,1299.6114996115], + [26053,2853.79435379435], + [26055,1202.6159026159], + [26057,1472.31287231287], + [26059,1549.15824915825], + [26061,2613.57161357161], + [26063,2164.49106449106], + [26065,1440.35224035224], + [26067,1479.66847966848], + [26069,1422.17042217042], + [26071,3020.33152033152], + [26073,1483.24268324268], + [26075,1817.32711732712], + [26077,1454.70085470085], + [26079,1450.06475006475], + [26081,2193.60269360269], + [26083,1398.8862988863], + [26085,1469.48976948977], + [26087,1665.39756539757], + [26089,899.171199171199], + [26091,1941.36234136234], + [26093,1463.99896399896], + [26095,2328.61952861953], + [26097,2645.86894586895], + [26099,1241.18104118104], + [26101,1404.1699041699], + [26103,4683.76068376068], + [26105,1282.23258223258], + [26107,1437.63273763274], + [26109,2704.1699041699], + [26111,1337.08883708884], + [26113,1462.65216265216], + [26115,1422.92152292152], + [26117,1826.98782698783], + [26119,1415.85081585082], + [26121,1293.05879305879], + [26123,2106.19010619011], + [26125,2247.24164724165], + [26127,1326.26262626263], + [26129,1459.44055944056], + [26131,3396.0890960891], + [26133,1466.95156695157], + [26135,1465.24216524217], + [26137,1333.77363377363], + [26139,1459.38875938876], + [26141,1706.08650608651], + [26143,1345.86894586895], + [26145,2072.28697228697], + [26147,1867.83216783217], + [26149,1296.5293965294], + [26151,2493.05879305879], + [26153,3033.82543382543], + [26155,1374.43667443667], + [26157,2080.10878010878], + [26159,1573.34887334887], + [26161,1828.46412846413], + [26163,1585.28878528879], + [26165,1463.35146335146], + [27001,4718.10411810412], + [27003,1095.596995597], + [27005,3406.37140637141], + [27007,6487.80108780109], + [27009,1057.49805749806], + [27011,1292.46309246309], + [27013,1936.90753690754], + [27015,1582.72468272468], + [27017,2230.97643097643], + [27019,917.715617715618], + [27021,5235.79383579384], + [27023,1505.10230510231], + [27025,1074.48847448847], + [27027,2707.51100751101], + [27029,2587.25718725719], + [27031,3761.40896140896], + [27033,1654.00155400155], + [27035,2587.67158767159], + [27037,1456.02175602176], + [27039,1137.73633773634], + [27041,1650.60865060865], + [27043,1845.32504532505], + [27045,2230.76923076923], + [27047,1831.36493136493], + [27049,1960.21756021756], + [27051,1419.73581973582], + [27053,1433.79953379953], + [27055,1429.83682983683], + [27057,2397.5135975136], + [27059,1128.69722869723], + [27061,6909.40170940171], + [27063,1820.72002072002], + [27065,1350.91945091945], + [27067,2063.68816368816], + [27069,2845.89484589485], + [27071,8039.54933954934], + [27073,1981.40378140378], + [27075,5463.06656306656], + [27077,3361.48666148666], + [27079,1162.28956228956], + [27081,1390.20979020979], + [27083,1850.71225071225], + [27085,1272.90857290857], + [27087,1444.91064491064], + [27089,4597.4358974359], + [27091,1844.98834498835], + [27093,1575.18777518778], + [27095,1482.28438228438], + [27097,2913.90831390831], + [27099,1842.34654234654], + [27101,1825.17482517483], + [27103,1161.59026159026], + [27105,1852.13675213675], + [27107,2260.52836052836], + [27109,1692.17819217819], + [27111,5107.66640766641], + [27113,1596.9178969179], + [27115,3655.24475524476], + [27117,1204.5066045066], + [27119,5105.23180523181], + [27121,1734.55063455063], + [27123,394.224294224294], + [27125,1119.94301994302], + [27127,2275.49857549858], + [27129,2545.73944573945], + [27131,1283.81248381248], + [27133,1249.57264957265], + [27135,4329.44832944833], + [27137,16180.7821807822], + [27139,923.284123284123], + [27141,1121.26392126392], + [27143,1524.94172494173], + [27145,3478.71017871018], + [27147,1112.79461279461], + [27149,1459.72545972546], + [27151,1921.98912198912], + [27153,2447.50064750065], + [27155,1486.40248640249], + [27157,1354.51955451955], + [27159,1388.94068894069], + [27161,1096.5034965035], + [27163,995.286195286195], + [27165,1126.52162652163], + [27167,1944.98834498835], + [27169,1621.88552188552], + [27171,1713.18311318311], + [27173,1966.07096607097], + [28001,1197.6430976431], + [28003,1036.10463610464], + [28005,1890.96089096089], + [28007,1903.6001036001], + [28009,1053.14685314685], + [28011,2270.31857031857], + [28013,1519.21781921782], + [28015,1627.14322714323], + [28017,1299.6114996115], + [28019,1083.08728308728], + [28021,1262.39316239316], + [28023,1791.11629111629], + [28025,1062.10826210826], + [28027,1430.82103082103], + [28029,2013.05361305361], + [28031,1071.71717171717], + [28033,1233.22973322973], + [28035,1207.74410774411], + [28037,1460.19166019166], + [28039,1239.86013986014], + [28041,1846.05024605025], + [28043,1093.26599326599], + [28045,1227.01372701373], + [28047,1486.63558663559], + [28049,2252.62885262885], + [28051,1959.85495985496], + [28053,1083.89018389018], + [28055,1069.80056980057], + [28057,1379.92747992748], + [28059,1871.92437192437], + [28061,1751.46335146335], + [28063,1346.62004662005], + [28065,1057.86065786066], + [28067,1799.5337995338], + [28069,1984.40818440818], + [28071,1636.13053613054], + [28073,1287.38668738669], + [28075,1822.40352240352], + [28077,1115.43641543642], + [28079,1509.97150997151], + [28081,1165.37166537167], + [28083,1534.68013468013], + [28085,1518.05231805232], + [28087,1309.27220927221], + [28089,1850.58275058275], + [28091,1404.7656047656], + [28093,1829.03392903393], + [28095,1981.58508158508], + [28097,1054.07925407925], + [28099,1476.66407666408], + [28101,1497.2804972805], + [28103,1800.4144004144], + [28105,1186.73918673919], + [28107,1774.51437451437], + [28109,2100.1295001295], + [28111,1676.37917637918], + [28113,1059.36285936286], + [28115,1289.01838901839], + [28117,1074.79927479927], + [28119,1048.97694897695], + [28121,2008.52110852111], + [28123,1577.80367780368], + [28125,1118.15591815592], + [28127,1525.92592592593], + [28129,1647.88914788915], + [28131,1153.82025382025], + [28133,1807.17430717431], + [28135,1671.30277130277], + [28137,1048.32944832945], + [28139,1185.75498575499], + [28141,1098.8085988086], + [28143,1177.59647759648], + [28145,1076.40507640508], + [28147,1046.20564620565], + [28149,1524.21652421652], + [28151,1877.07847707848], + [28153,2099.8445998446], + [28155,1090.23569023569], + [28157,1756.30665630666], + [28159,1572.77907277907], + [28161,1209.86790986791], + [28163,2390.44289044289], + [29001,1469.36026936027], + [29003,1120.69412069412], + [29005,1417.50841750842], + [29007,1792.90339290339], + [29009,2015.66951566952], + [29011,1533.07433307433], + [29013,2167.02926702927], + [29015,1823.51722351722], + [29017,1600.3885003885], + [29019,1775.21367521368], + [29021,1056.79875679876], + [29023,1799.1970991971], + [29025,1104.3512043512], + [29027,2161.56436156436], + [29029,1698.8344988345], + [29031,1498.4200984201], + [29033,1799.0675990676], + [29035,1314.06371406371], + [29037,1804.8174048174], + [29039,1228.90442890443], + [29041,1945.55814555815], + [29043,1457.26495726496], + [29045,1307.14840714841], + [29047,1029.00802900803], + [29049,1085.10748510749], + [29051,1019.81351981352], + [29053,1462.75576275576], + [29055,1923.12872312872], + [29057,1269.12716912717], + [29059,1400.5957005957], + [29061,1458.79305879306], + [29063,1091.32349132349], + [29065,1949.72804972805], + [29067,2107.30380730381], + [29069,1401.3727013727], + [29071,2389.74358974359], + [29073,1341.10334110334], + [29075,1272.77907277907], + [29077,1749.02874902875], + [29079,1127.37632737633], + [29081,1871.27687127687], + [29083,1805.10230510231], + [29085,1033.64413364413], + [29087,1198.3682983683], + [29089,1201.3727013727], + [29091,2401.5799015799], + [29093,1425.17482517483], + [29095,1565.55296555297], + [29097,1653.69075369075], + [29099,1700.6734006734], + [29101,2147.83734783735], + [29103,1305.38720538721], + [29105,1980.62678062678], + [29107,1627.63532763533], + [29109,1584.40818440818], + [29111,1308.05490805491], + [29113,1622.79202279202], + [29115,1594.30199430199], + [29117,1378.73607873608], + [29119,1397.2545972546], + [29121,2075.18777518778], + [29123,1280.47138047138], + [29125,1364.87956487957], + [29127,1131.62393162393], + [29129,1175.44677544678], + [29131,1534.83553483553], + [29133,1065.99326599327], + [29135,1074.92877492877], + [29137,1677.41517741518], + [29139,1388.88888888889], + [29141,1547.86324786325], + [29143,1747.83734783735], + [29145,1618.15591815592], + [29147,2271.32867132867], + [29149,2045.58404558405], + [29151,1565.26806526807], + [29153,1929.47422947423], + [29155,1275.67987567988], + [29157,1228.56772856773], + [29159,1766.95156695157], + [29161,1739.91193991194], + [29163,1736.44133644134], + [29165,1088.29318829319], + [29167,1645.99844599845], + [29169,1416.99041699042], + [29171,1339.86013986014], + [29173,1216.73141673142], + [29175,1250.14245014245], + [29177,1473.21937321937], + [29179,2093.96529396529], + [29181,1630.51023051023], + [29183,1451.54105154105], + [29185,1735.24993524994], + [29186,1292.79979279979], + [29187,1170.39627039627], + [29189,1315.20331520332], + [29195,1956.74695674696], + [29197,795.907795907796], + [29199,1130.97643097643], + [29201,1087.77518777519], + [29203,2599.8963998964], + [29205,1297.2286972287], + [29207,2132.14193214193], + [29209,1201.8389018389], + [29211,1678.26987826988], + [29213,1638.02123802124], + [29215,3049.13234913235], + [29217,2140.37814037814], + [29219,1110.07511007511], + [29221,1968.16886816887], + [29223,1966.27816627817], + [29225,1534.73193473193], + [29227,690.520590520591], + [29229,1765.78606578607], + [29510,160.34706034706], + [30001,14352.8101528102], + [30003,12938.2543382543], + [30005,10949.3654493655], + [30007,3088.68168868169], + [30009,5306.37140637141], + [30011,8652.55115255115], + [30013,6988.24138824139], + [30015,10288.7593887594], + [30017,9798.9121989122], + [30019,3693.62859362859], + [30021,6143.14944314944], + [30023,1907.61460761461], + [30025,4197.7984977985], + [30027,11240.0932400932], + [30029,13177.0525770526], + [30031,6740.97384097384], + [30033,12109.1945091945], + [30035,7759.49235949236], + [30037,3044.13364413364], + [30039,4474.02227402227], + [30041,7508.31390831391], + [30043,4289.71768971769], + [30045,4842.83864283864], + [30047,3859.49235949236], + [30049,8958.37865837866], + [30051,3703.8332038332], + [30053,9357.47215747216], + [30055,6845.81714581715], + [30057,9291.58249158249], + [30059,6195.0530950531], + [30061,3158.35275835276], + [30063,6716.96451696452], + [30065,4838.53923853924], + [30067,7259.93265993266], + [30069,4286.11758611759], + [30071,13312.7169127169], + [30073,4203.2116032116], + [30075,8540.01554001554], + [30077,6025.35612535613], + [30079,4498.1610981611], + [30081,6192.22999222999], + [30083,5397.927997928], + [30085,6098.9121989122], + [30087,12976.948976949], + [30089,7149.75394975395], + [30091,4343.64154364154], + [30093,1860.86506086506], + [30095,4649.96114996115], + [30097,4804.99870499871], + [30099,5885.47008547009], + [30101,4961.53846153846], + [30103,2531.46853146853], + [30105,12757.8865578866], + [30107,3686.09168609169], + [30109,2303.2116032116], + [30111,6820.22792022792], + [31001,1458.87075887076], + [31003,2220.20202020202], + [31005,1852.78425278425], + [31007,1932.42683242683], + [31009,1841.15514115514], + [31011,1778.16627816628], + [31013,2785.00388500389], + [31015,1398.445998446], + [31017,3163.24786324786], + [31019,2507.40740740741], + [31021,1273.19347319347], + [31023,1514.91841491841], + [31025,1443.79694379694], + [31027,1917.40481740482], + [31029,2316.55011655012], + [31031,15437.5032375032], + [31033,3098.3941983942], + [31035,1482.23258223258], + [31037,1066.20046620047], + [31039,1477.90727790728], + [31041,6670.60347060347], + [31043,684.434084434084], + [31045,3616.83501683502], + [31047,2623.93162393162], + [31049,1139.21263921264], + [31051,1233.43693343693], + [31053,1369.36026936027], + [31055,850.712250712251], + [31057,2381.97358197358], + [31059,1490.20979020979], + [31061,1491.37529137529], + [31063,2524.19062419062], + [31065,1862.54856254856], + [31067,2205.36130536131], + [31069,4414.08961408961], + [31071,1475.75757575758], + [31073,1186.63558663559], + [31075,2010.41181041181], + [31077,1475.80937580938], + [31079,1414.89251489251], + [31081,1406.06060606061], + [31083,1433.48873348873], + [31085,1846.82724682725], + [31087,1838.74643874644], + [31089,6248.12224812225], + [31091,1867.70266770267], + [31093,1474.59207459207], + [31095,1476.79357679358], + [31097,973.970473970474], + [31099,1337.06293706294], + [31101,2749.54674954675], + [31103,2002.2533022533], + [31105,2465.29396529397], + [31107,2870.62937062937], + [31109,2169.25666925667], + [31111,6640.94794094794], + [31113,1478.01087801088], + [31115,1471.87257187257], + [31117,2224.76042476043], + [31119,1483.39808339808], + [31121,1255.84045584046], + [31123,3687.74928774929], + [31125,1143.82284382284], + [31127,1055.11525511526], + [31129,1489.66588966589], + [31131,1594.48329448329], + [31133,1116.49831649832], + [31135,2287.85288785289], + [31137,1398.0574980575], + [31139,1484.71898471898], + [31141,1745.81714581715], + [31143,1135.32763532764], + [31145,1857.00595700596], + [31147,1429.26702926703], + [31149,2611.55141155141], + [31151,1486.71328671329], + [31153,618.984718984719], + [31155,1943.09764309764], + [31157,1915.04791504792], + [31159,1480.00518000518], + [31161,6321.83372183372], + [31163,1465.50116550117], + [31165,5352.86195286195], + [31167,1108.39160839161], + [31169,1486.16938616939], + [31171,1847.29344729345], + [31173,1019.37321937322], + [31175,1471.25097125097], + [31177,1009.99740999741], + [31179,1147.16394716395], + [31181,1489.01838901839], + [31183,1489.71768971769], + [31185,1482.80238280238], + [32001,12769.9041699042], + [32003,20438.8241388241], + [32005,1838.17663817664], + [32007,44469.9041699042], + [32009,9277.07847707848], + [32011,10815.022015022], + [32013,24969.5933695934], + [32015,14219.3991193991], + [32017,27540.0155400155], + [32019,5183.08728308728], + [32021,9719.86531986532], + [32023,47091.2198912199], + [32027,15634.706034706], + [32029,680.963480963481], + [32031,16323.1546231546], + [32033,22987.9564879565], + [32510,374.669774669775], + [33001,1036.59673659674], + [33003,2411.44781144781], + [33005,1830.25123025123], + [33007,4648.25174825175], + [33009,4425.66692566693], + [33011,2269.20486920487], + [33013,2419.37321937322], + [33015,1799.3265993266], + [33017,955.659155659156], + [33019,1391.63429163429], + [34001,1439.26443926444], + [34003,603.496503496504], + [34005,2068.32426832427], + [34007,573.063973063973], + [34009,651.204351204351], + [34011,1252.78425278425], + [34013,326.884226884227], + [34015,834.006734006734], + [34017,119.63221963222], + [34019,1108.05490805491], + [34021,581.610981610982], + [34023,800.0777000777], + [34025,1214.16731416731], + [34027,1191.86739186739], + [34029,1628.54182854183], + [34031,478.088578088578], + [34033,859.62185962186], + [34035,781.688681688682], + [34037,1344.23724423724], + [34039,266.407666407666], + [34041,924.423724423725], + [35001,3006.55270655271], + [35003,17932.375032375], + [35005,15709.0909090909], + [35006,11757.264957265], + [35007,9733.38513338513], + [35009,3638.43563843564], + [35011,6015.59181559182], + [35013,9861.46076146076], + [35015,10815.1515151515], + [35017,10260.631960632], + [35019,7848.95104895105], + [35021,5504.89510489511], + [35023,8901.4763014763], + [35025,11372.5200725201], + [35027,12512.5356125356], + [35028,282.750582750583], + [35029,7679.84977984978], + [35031,14115.022015022], + [35033,5001.9943019943], + [35035,17128.231028231], + [35037,7444.57394457395], + [35039,15179.5907795908], + [35041,6338.85003885004], + [35043,9610.59311059311], + [35045,14278.8655788656], + [35047,12213.986013986], + [35049,4945.37684537685], + [35051,10823.5172235172], + [35053,17214.9184149184], + [35055,5706.06060606061], + [35057,8663.17016317016], + [35059,9903.4965034965], + [35061,2761.40896140896], + [36001,1354.05335405335], + [36003,2665.91556591557], + [36005,109.039109039109], + [36007,1827.94612794613], + [36009,3388.62988862989], + [36011,1791.19399119399], + [36013,2745.99844599845], + [36015,1055.03755503756], + [36017,2314.29681429681], + [36019,2688.03418803419], + [36021,1643.90054390054], + [36023,1291.78969178969], + [36025,3735.92333592334], + [36027,2060.68376068376], + [36029,2700.5698005698], + [36031,4647.06034706035], + [36033,4219.42501942502], + [36035,1283.26858326858], + [36037,1276.71587671588], + [36039,1676.14607614608], + [36041,4447.99274799275], + [36043,3655.71095571096], + [36045,3285.65138565139], + [36047,183.423983423983], + [36049,3301.4245014245], + [36051,1636.26003626004], + [36053,1696.0372960373], + [36055,1702.1756021756], + [36057,1043.87464387464], + [36059,737.425537425538], + [36061,59.1297591297591], + [36063,1352.91375291375], + [36065,3140.19684019684], + [36067,2016.03211603212], + [36069,1668.14296814297], + [36071,2102.2792022792], + [36073,1013.36441336441], + [36075,2464.77596477597], + [36077,2594.40559440559], + [36079,596.503496503497], + [36081,281.092981092981], + [36083,1689.79538979539], + [36085,151.178451178451], + [36087,449.49494949495], + [36089,6942.19114219114], + [36091,2097.8502978503], + [36093,529.70732970733], + [36095,1610.51541051541], + [36097,850.37555037555], + [36099,838.409738409738], + [36101,3601.554001554], + [36103,2362.21186221186], + [36105,2507.45920745921], + [36107,1343.17534317534], + [36109,1229.34472934473], + [36111,2911.78451178451], + [36113,2245.40274540275], + [36115,2152.75835275835], + [36117,1563.92126392126], + [36119,1114.99611499612], + [36121,1535.22403522404], + [36123,875.783475783476], + [37001,1098.0056980057], + [37003,673.374773374773], + [37005,608.806008806009], + [37007,1376.45687645688], + [37009,1103.7037037037], + [37011,639.96373996374], + [37013,2142.42424242424], + [37015,1811.11111111111], + [37017,2264.51696451696], + [37019,2193.65449365449], + [37021,1700.777000777], + [37023,1313.39031339031], + [37025,936.933436933437], + [37027,1221.36752136752], + [37029,623.051023051023], + [37031,1311.18881118881], + [37033,1100.5439005439], + [37035,1032.68583268583], + [37037,1766.87386687387], + [37039,1179.56487956488], + [37041,446.697746697747], + [37043,556.203056203056], + [37045,1202.4087024087], + [37047,2427.58352758353], + [37049,1836.20823620824], + [37051,1689.51048951049], + [37053,678.192178192178], + [37055,993.058793058793], + [37057,1431.44263144263], + [37059,684.045584045584], + [37061,2114.01191401191], + [37063,740.688940688941], + [37065,1308.83190883191], + [37067,1057.10955710956], + [37069,1273.45247345247], + [37071,922.118622118622], + [37073,881.766381766382], + [37075,756.487956487957], + [37077,1376.76767676768], + [37079,688.759388759389], + [37081,1672.36467236467], + [37083,1875.39497539498], + [37085,1541.02564102564], + [37087,1434.05853405853], + [37089,966.252266252266], + [37091,914.426314426314], + [37093,1012.01761201761], + [37095,1586.89458689459], + [37097,1486.22118622119], + [37099,1271.06967106967], + [37101,2049.46904946905], + [37103,1219.14011914012], + [37105,660.34706034706], + [37107,1037.52913752914], + [37109,771.665371665372], + [37111,1141.18104118104], + [37113,1335.30173530174], + [37115,1164.38746438746], + [37117,1194.56099456099], + [37119,1356.74695674696], + [37121,573.504273504274], + [37123,1273.65967365967], + [37125,1807.40740740741], + [37127,1399.6632996633], + [37129,496.063196063196], + [37131,1389.76948976949], + [37133,1975.49857549858], + [37135,1030.71743071743], + [37137,871.639471639472], + [37139,587.619787619788], + [37141,2252.78425278425], + [37143,639.96373996374], + [37145,1016.10981610982], + [37147,1688.62988862989], + [37149,615.876715876716], + [37151,2026.72882672883], + [37153,1227.19502719503], + [37155,2458.48225848226], + [37157,1464.77596477596], + [37159,1324.44962444962], + [37161,1461.14996114996], + [37163,2446.87904687905], + [37165,825.822325822326], + [37167,1023.28412328412], + [37169,1162.54856254856], + [37171,1378.32167832168], + [37173,1367.52136752137], + [37175,980.39368039368], + [37177,1007.61460761461], + [37179,1635.63843563844], + [37181,656.617456617457], + [37183,2163.22196322196], + [37185,1109.71250971251], + [37187,901.683501683502], + [37189,809.53120953121], + [37191,1432.50453250453], + [37193,1953.58715358715], + [37195,953.561253561254], + [37197,867.210567210567], + [37199,809.63480963481], + [38001,2557.93835793836], + [38003,3863.11836311836], + [38005,3596.7624967625], + [38007,2975.52447552448], + [38009,4321.21212121212], + [38011,3009.09090909091], + [38013,2858.24915824916], + [38015,4228.56772856773], + [38017,4571.19917119917], + [38019,3855.86635586636], + [38021,2930.51023051023], + [38023,3265.44936544937], + [38025,5201.9166019166], + [38027,1632.14193214193], + [38029,3912.04351204351], + [38031,1645.81714581715], + [38033,2592.04869204869], + [38035,3720.22792022792], + [38037,4297.1768971769], + [38039,1835.84563584564], + [38041,2932.45273245273], + [38043,3499.5855995856], + [38045,2967.98756798757], + [38047,2571.40637140637], + [38049,4853.53535353535], + [38051,2524.55322455322], + [38053,7149.23594923595], + [38055,5467.18466718467], + [38057,2701.2691012691], + [38059,4989.04428904429], + [38061,4727.53172753173], + [38063,2542.81274281274], + [38065,1871.30277130277], + [38067,2897.40999741], + [38069,2638.17663817664], + [38071,3073.94457394457], + [38073,2233.51463351463], + [38075,2271.56177156177], + [38077,3718.67391867392], + [38079,2338.97953897954], + [38081,2223.54312354312], + [38083,2518.46671846672], + [38085,2833.69593369593], + [38087,3146.64594664595], + [38089,3456.98005698006], + [38091,1844.65164465164], + [38093,5754.26055426055], + [38095,2653.61305361305], + [38097,2232.45273245273], + [38099,3320.20202020202], + [38101,5214.40041440042], + [38103,3292.02279202279], + [38105,5380.47138047138], + [39001,1512.22481222481], + [39003,1042.47604247604], + [39005,1095.4415954416], + [39007,1818.00051800052], + [39009,1304.3253043253], + [39011,1039.60113960114], + [39013,1378.21807821808], + [39015,1269.15306915307], + [39017,1209.68660968661], + [39019,1022.04092204092], + [39021,1110.25641025641], + [39023,1029.44832944833], + [39025,1170.94017094017], + [39027,1058.48225848226], + [39029,1377.59647759648], + [39031,1460.52836052836], + [39033,1040.63714063714], + [39035,1184.12328412328], + [39037,1549.08054908055], + [39039,1065.68246568247], + [39041,1147.63014763015], + [39043,651.541051541052], + [39045,1306.42320642321], + [39047,1052.47345247345], + [39049,1378.37347837348], + [39051,1050.09065009065], + [39053,1208.31390831391], + [39055,1036.41543641544], + [39057,1071.56177156177], + [39059,1352.62885262885], + [39061,1051.30795130795], + [39063,1376.22377622378], + [39065,1218.36311836312], + [39067,1042.06164206164], + [39069,1077.46697746698], + [39071,1432.47863247863], + [39073,1091.21989121989], + [39075,1094.35379435379], + [39077,1272.98627298627], + [39079,1088.57808857809], + [39081,1057.57575757576], + [39083,1361.02046102046], + [39085,589.199689199689], + [39087,1174.22947422947], + [39089,1767.67676767677], + [39091,1187.33488733489], + [39093,1271.95027195027], + [39095,882.828282828283], + [39097,1206.63040663041], + [39099,1066.09686609687], + [39101,1045.73944573945], + [39103,1091.32349132349], + [39105,1113.96011396011], + [39107,1197.7466977467], + [39109,1053.04325304325], + [39111,1180.31598031598], + [39113,1195.4156954157], + [39115,1078.52887852888], + [39117,1051.74825174825], + [39119,1721.26392126392], + [39121,1030.84693084693], + [39123,660.24346024346], + [39125,1078.58067858068], + [39127,1056.64335664336], + [39129,1298.4200984201], + [39131,1140.32634032634], + [39133,1262.31546231546], + [39135,1098.4718984719], + [39137,1249.72804972805], + [39139,1282.75058275058], + [39141,1785.00388500389], + [39143,1057.88655788656], + [39145,1580.44548044548], + [39147,1427.14322714323], + [39149,1055.89225589226], + [39151,1489.95078995079], + [39153,1069.02356902357], + [39155,1601.3986013986], + [39157,1470.18907018907], + [39159,1118.18181818182], + [39161,1059.72545972546], + [39163,1068.01346801347], + [39165,1039.39393939394], + [39167,1636.80393680394], + [39169,1437.27013727014], + [39171,1090.31339031339], + [39173,1598.5754985755], + [39175,1053.79435379435], + [40001,1485.31468531469], + [40003,2244.13364413364], + [40005,2526.59932659933], + [40007,4700], + [40009,2335.69023569024], + [40011,2404.6102046102], + [40013,2342.57964257964], + [40015,3310.77441077441], + [40017,2322.27402227402], + [40019,2129.44832944833], + [40021,1940.97384097384], + [40023,1995.2343952344], + [40025,4751.98135198135], + [40027,1395.4156954157], + [40029,1338.20253820254], + [40031,2769.46386946387], + [40033,1638.56513856514], + [40035,1971.89847189847], + [40037,2460.86506086506], + [40039,2561.04636104636], + [40041,1911.88811188811], + [40043,2588.65578865579], + [40045,3189.63998963999], + [40047,2741.44004144004], + [40049,2077.49287749288], + [40051,2850.29785029785], + [40053,2592.25589225589], + [40055,1655.84045584046], + [40057,1391.32349132349], + [40059,2691.06449106449], + [40061,1493.18829318829], + [40063,2084.04558404558], + [40065,2078.86557886558], + [40067,1965.37166537167], + [40069,1665.21626521627], + [40071,2382.10308210308], + [40073,2326.23672623673], + [40075,2629.44832944833], + [40077,1870.18907018907], + [40079,4116.05801605802], + [40081,2466.48536648537], + [40083,1926.52162652163], + [40085,1331.26133126133], + [40087,1478.11447811448], + [40089,4791.53069153069], + [40091,1601.9166019166], + [40093,2473.42657342657], + [40095,961.098161098161], + [40097,1697.4617974618], + [40099,1078.63247863248], + [40101,2099.0675990676], + [40103,1895.6228956229], + [40105,1465.37166537167], + [40107,1602.0979020979], + [40109,1835.84563584564], + [40111,1806.13830613831], + [40113,5818.07821807822], + [40115,1219.42501942502], + [40117,1471.01787101787], + [40119,1773.37477337477], + [40121,3381.14478114478], + [40123,1865.94146594147], + [40125,2040.06734006734], + [40127,3615.22921522922], + [40129,2955.55555555556], + [40131,1749.88344988345], + [40133,1639.05723905724], + [40135,1743.77104377104], + [40137,2253.92385392385], + [40139,5286.86868686869], + [40141,2256.22895622896], + [40143,1476.94897694898], + [40145,1454.44185444185], + [40147,1076.01657601658], + [40149,2598.2128982129], + [40151,3331.90883190883], + [40153,3217.81921781922], + [41001,7947.06034706035], + [41003,1750.68635068635], + [41005,4844.13364413364], + [41007,2147.24164724165], + [41009,1702.5641025641], + [41011,4134.08443408443], + [41013,7715.85081585082], + [41015,4215.12561512562], + [41017,7817.11991711992], + [41019,13043.4602434602], + [41021,3120.46102046102], + [41023,11728.9303289303], + [41025,26244.9365449365], + [41027,1351.85185185185], + [41029,7209.40170940171], + [41031,4612.25071225071], + [41033,4246.74954674955], + [41035,15387.3348873349], + [41037,21079.9792799793], + [41039,11792.5925925926], + [41041,2537.60683760684], + [41043,5931.44263144263], + [41045,25608.7283087283], + [41047,3062.23776223776], + [41049,5261.87516187516], + [41051,1117.06811706812], + [41053,1918.64801864802], + [41055,2133.35923335923], + [41057,2855.68505568506], + [41059,8328.17922817923], + [41061,5274.82517482517], + [41063,8148.64024864025], + [41065,6168.14296814297], + [41067,1875.75757575758], + [41069,4441.20694120694], + [41071,1854.07925407925], + [42001,1343.35664335664], + [42003,1890.90909090909], + [42005,1691.78969178969], + [42007,1125.90002590003], + [42009,2621.85962185962], + [42011,2218.36311836312], + [42013,1361.82336182336], + [42015,2971.76897176897], + [42017,1565.16446516447], + [42019,2042.47604247604], + [42021,1782.82828282828], + [42023,1026.23672623673], + [42025,987.982387982388], + [42027,2874.69567469568], + [42029,1943.82284382284], + [42031,1556.15125615126], + [42033,2964.82776482777], + [42035,2299.8704998705], + [42037,1251.25615125615], + [42039,2621.85962185962], + [42041,1412.74281274281], + [42043,1359.88085988086], + [42045,476.146076146076], + [42047,2142.86454286454], + [42049,2069.80056980057], + [42051,2046.98264698265], + [42053,1106.42320642321], + [42055,2000.0518000518], + [42057,1133.25563325563], + [42059,1491.71199171199], + [42061,2265.31986531987], + [42063,2142.00984200984], + [42065,1689.79538979539], + [42067,1013.59751359751], + [42069,1189.01838901839], + [42071,2444.47034447034], + [42073,927.687127687128], + [42075,937.140637140637], + [42077,893.991193991194], + [42079,2305.95700595701], + [42081,3182.05128205128], + [42083,2536.13053613054], + [42085,1741.98394198394], + [42087,1064.56876456876], + [42089,1575.47267547268], + [42091,1251.07485107485], + [42093,337.321937321937], + [42095,957.446257446258], + [42097,1187.17948717949], + [42099,1428.25692825693], + [42101,347.319347319347], + [42103,1411.44781144781], + [42105,2800.6216006216], + [42107,2016.65371665372], + [42109,851.359751359751], + [42111,2782.62108262108], + [42113,1165.34576534577], + [42115,2132.71173271173], + [42117,2936.51903651904], + [42119,818.389018389019], + [42121,1746.38694638695], + [42123,2289.92488992489], + [42125,2219.60631960632], + [42127,1879.30587930588], + [42129,2661.35716135716], + [42131,1029.05982905983], + [42133,2341.82854182854], + [44001,62.5744625744626], + [44003,436.493136493137], + [44005,265.190365190365], + [44007,1060.60606060606], + [44009,852.732452732453], + [45001,1270.34447034447], + [45003,2773.97047397047], + [45005,1056.95415695416], + [45007,1852.96555296555], + [45009,1018.82931882932], + [45011,1420.33152033152], + [45013,1492.56669256669], + [45015,2846.05024605025], + [45017,987.179487179487], + [45019,2372.67547267547], + [45021,1016.99041699042], + [45023,1503.9109039109], + [45025,2069.61926961927], + [45027,1571.97617197617], + [45029,2736.31183631184], + [45031,1453.37995337995], + [45033,1048.61434861435], + [45035,1484.66718466718], + [45037,1296.0631960632], + [45039,1777.46697746698], + [45041,2071.89847189847], + [45043,2107.09660709661], + [45045,2033.46283346283], + [45047,1177.75187775188], + [45049,1450.14245014245], + [45051,2936.80393680394], + [45053,1697.2804972805], + [45055,1881.79228179228], + [45057,1422.32582232582], + [45059,1848.74384874385], + [45061,1062.36726236726], + [45063,1810.17871017871], + [45065,930.14763014763], + [45067,1267.10696710697], + [45069,1242.34654234654], + [45071,1631.80523180523], + [45073,1622.19632219632], + [45075,2864.80186480186], + [45077,1285.70318570319], + [45079,1960.81326081326], + [45081,1172.70137270137], + [45083,2092.54079254079], + [45085,1722.53302253302], + [45087,1331.70163170163], + [45089,2419.47681947682], + [45091,1762.75576275576], + [46003,1834.83553483553], + [46005,3260.06216006216], + [46007,3068.40196840197], + [46009,1459.98445998446], + [46011,2051.82595182595], + [46013,4436.62263662264], + [46015,2116.65371665372], + [46017,1220.87542087542], + [46019,5827.24682724683], + [46021,1900.2331002331], + [46023,2842.50194250194], + [46025,2480.18648018648], + [46027,1067.57316757317], + [46029,1783.21678321678], + [46031,6396.5034965035], + [46033,4032.63403263403], + [46035,1128.10152810153], + [46037,2662.18596218596], + [46039,1612.76871276871], + [46041,5963.45506345506], + [46043,1118.36311836312], + [46045,2916.23931623932], + [46047,4506.39730639731], + [46049,2542.73504273504], + [46051,1764.98316498317], + [46053,2628.74902874903], + [46055,4689.27738927739], + [46057,1313.72701372701], + [46059,3720.82362082362], + [46061,1125.38202538203], + [46063,6918.88111888112], + [46065,1920.64232064232], + [46067,2105.41310541311], + [46069,2228.74902874903], + [46071,4827.53172753173], + [46073,1362.93706293706], + [46075,2511.47371147371], + [46077,2155.50375550376], + [46079,1458.89665889666], + [46081,2072.10567210567], + [46083,1495.1566951567], + [46085,4252.62885262885], + [46087,1487.17948717949], + [46089,2943.90054390054], + [46091,2170.60347060347], + [46093,8989.84718984719], + [46095,3385.93628593629], + [46097,1477.10437710438], + [46099,2090.52059052059], + [46101,1345.22144522145], + [46102,5423.20642320642], + [46103,7191.27169127169], + [46105,7434.55063455064], + [46107,2230.35483035483], + [46109,2851.69645169645], + [46111,1474.54027454027], + [46115,3895.1825951826], + [46117,3741.07744107744], + [46119,2607.66640766641], + [46121,3596.373996374], + [46123,4176.24967624968], + [46125,1598.186998187], + [46127,1192.79979279979], + [46129,1835.35353535354], + [46135,1349.80574980575], + [46137,5079.69437969438], + [47001,873.245273245273], + [47003,1226.72882672883], + [47005,1020.82362082362], + [47007,1052.65475265475], + [47009,1447.06034706035], + [47011,851.489251489252], + [47013,1243.69334369334], + [47015,688.008288008288], + [47017,1552.05905205905], + [47019,883.708883708884], + [47021,783.320383320383], + [47023,740.06734006734], + [47025,1125.56332556333], + [47027,612.639212639213], + [47029,1125.53742553743], + [47031,1111.00751100751], + [47033,687.749287749288], + [47035,1763.86946386946], + [47037,1305.43900543901], + [47039,864.672364672365], + [47041,788.267288267288], + [47043,1268.84226884227], + [47045,1326.93602693603], + [47047,1825.40792540793], + [47049,1291.40119140119], + [47051,1436.26003626004], + [47053,1561.09816109816], + [47055,1582.31028231028], + [47057,726.754726754727], + [47059,1611.42191142191], + [47061,933.773633773634], + [47063,417.456617456618], + [47065,1404.8951048951], + [47067,575.861175861176], + [47069,1729.52602952603], + [47071,1495.2602952603], + [47073,1261.27946127946], + [47075,1380.75628075628], + [47077,1346.98264698265], + [47079,1455.84045584046], + [47081,1586.37658637659], + [47083,518.751618751619], + [47085,1375.23957523958], + [47087,798.549598549599], + [47089,709.86790986791], + [47091,773.063973063973], + [47093,1316.29111629112], + [47095,429.370629370629], + [47097,1222.45532245532], + [47099,1598.3682983683], + [47101,730.613830613831], + [47103,1477.18207718208], + [47105,593.680393680394], + [47107,1114.03781403781], + [47109,1457.80885780886], + [47111,795.493395493396], + [47113,1442.94224294224], + [47115,1290.23569023569], + [47117,972.442372442372], + [47119,1588.03418803419], + [47121,505.361305361305], + [47123,1646.12794612795], + [47125,1396.4775964776], + [47127,334.680134680135], + [47129,1352.44755244755], + [47131,1410.85211085211], + [47133,1122.71432271432], + [47135,1074.15177415177], + [47137,422.118622118622], + [47139,1125.82232582233], + [47141,1038.85003885004], + [47143,816.835016835017], + [47145,934.239834239834], + [47147,1233.59233359233], + [47149,1604.144004144], + [47151,1378.65837865838], + [47153,688.578088578089], + [47155,1534.57653457653], + [47157,1976.61227661228], + [47159,814.011914011914], + [47161,1189.66588966589], + [47163,1070.60347060347], + [47165,1371.27687127687], + [47167,1187.17948717949], + [47169,295.752395752396], + [47171,482.180782180782], + [47173,578.995078995079], + [47175,708.158508158508], + [47177,1120.64232064232], + [47179,845.558145558146], + [47181,1901.3209013209], + [47183,1503.1339031339], + [47185,975.576275576276], + [47187,1508.93550893551], + [47189,1478.45117845118], + [48001,2752.13675213675], + [48003,3886.84278684279], + [48005,2066.25226625227], + [48007,652.861952861953], + [48009,2339.05723905724], + [48011,2354.59725459725], + [48013,3158.61175861176], + [48015,1674.46257446257], + [48017,2141.41414141414], + [48019,2048.58844858845], + [48021,2300.3108003108], + [48023,2246.77544677545], + [48025,2279.82387982388], + [48027,2722.14452214452], + [48029,3211.13701113701], + [48031,1836.95933695934], + [48033,2324.37192437192], + [48035,2545.92074592075], + [48037,2292.17819217819], + [48039,3516.44651644652], + [48041,1516.31701631702], + [48043,16015.8767158767], + [48045,2331.00233100233], + [48047,2443.30484330484], + [48049,2446.07614607615], + [48051,1706.88940688941], + [48053,2575.13597513598], + [48055,1412.22481222481], + [48057,1312.71691271691], + [48059,2329.37062937063], + [48061,2307.48510748511], + [48063,507.200207200207], + [48065,2383.37218337218], + [48067,2426.72882672883], + [48069,2316.57601657602], + [48071,1546.59414659415], + [48073,2727.03962703963], + [48075,1803.7037037037], + [48077,2819.78761978762], + [48079,2007.64050764051], + [48081,2360.70966070966], + [48083,3268.45376845377], + [48085,2178.78787878788], + [48087,2378.76197876198], + [48089,2487.10178710179], + [48091,1449.05464905465], + [48093,2428.77492877493], + [48095,2548.04454804455], + [48097,2265.63066563067], + [48099,2724.86402486402], + [48101,2332.45273245273], + [48103,2033.33333333333], + [48105,7270.99197099197], + [48107,2331.52033152033], + [48109,9875.16187516188], + [48111,3893.44729344729], + [48113,2256.61745661746], + [48115,2331.80523180523], + [48117,3876.89717689718], + [48119,665.190365190365], + [48121,2275.13597513598], + [48123,2354.26055426055], + [48125,2335.45713545714], + [48127,3441.80264180264], + [48129,2400.6475006475], + [48131,4645.11784511785], + [48133,2399.6114996115], + [48135,2325.01942501943], + [48137,5485.26288526289], + [48139,2422.92152292152], + [48141,2622.86972286972], + [48143,2805.15410515411], + [48145,1982.59518259518], + [48147,2307.27790727791], + [48149,2460.52836052836], + [48151,2328.25692825693], + [48153,2569.64516964517], + [48155,1824.39782439782], + [48157,2231.23543123543], + [48159,736.570836570837], + [48161,2273.34887334887], + [48163,2935.76793576794], + [48165,3891.16809116809], + [48167,979.95337995338], + [48169,2313.93421393421], + [48171,2740.76664076664], + [48173,2331.57213157213], + [48175,2206.70810670811], + [48177,2762.72986272986], + [48179,2398.2646982647], + [48181,2415.95441595442], + [48183,707.847707847708], + [48185,2039.52343952344], + [48187,1842.26884226884], + [48189,2602.1238021238], + [48191,2288.24138824139], + [48193,2165.00906500907], + [48195,2382.31028231028], + [48197,1800.3367003367], + [48199,2306.57860657861], + [48201,4412.01761201761], + [48203,2330.87283087283], + [48205,3786.66148666149], + [48207,2339.10903910904], + [48209,1755.96995596996], + [48211,2347.29344729345], + [48213,2263.01476301476], + [48215,4068.55736855737], + [48217,2483.44988344988], + [48219,2352.73245273245], + [48221,1089.45868945869], + [48223,1986.97228697229], + [48225,3188.06008806009], + [48227,2333.04843304843], + [48229,11838.85003885], + [48231,2176.43097643098], + [48233,2298.4200984201], + [48235,2723.54312354312], + [48237,2358.61175861176], + [48239,2148.25174825175], + [48241,2431.62393162393], + [48243,5865.21626521627], + [48245,2269.61926961927], + [48247,2942.60554260554], + [48249,2240.27454027454], + [48251,1876.94897694898], + [48253,2404.94690494691], + [48255,1936.18233618234], + [48257,2022.01502201502], + [48259,1715.74721574722], + [48261,3777.07847707848], + [48263,2337.50323750324], + [48265,2857.60165760166], + [48267,3240.06734006734], + [48269,2359.15565915566], + [48271,3522.55892255892], + [48273,2282.59518259518], + [48275,2203.108003108], + [48277,2349.62444962445], + [48279,2631.90883190883], + [48281,1846.25744625745], + [48283,3850.53095053095], + [48285,2511.55141155141], + [48287,1629.16342916343], + [48289,2779.46127946128], + [48291,3000.3108003108], + [48293,2344.70344470345], + [48295,2414.34861434861], + [48297,2692.82569282569], + [48299,2419.14011914012], + [48301,1732.53043253043], + [48303,2319.60631960632], + [48305,2309.94560994561], + [48307,2759.90675990676], + [48309,2686.09168609169], + [48311,2951.12665112665], + [48313,1207.12250712251], + [48315,986.480186480187], + [48317,2369.69696969697], + [48319,2405.59440559441], + [48321,2849.72804972805], + [48323,3313.28671328671], + [48325,3432.68583268583], + [48327,2336.26003626004], + [48329,2331.77933177933], + [48331,2633.85133385133], + [48333,1937.99533799534], + [48335,2359.72545972546], + [48337,2411.05931105931], + [48339,2698.1092981093], + [48341,2330.19943019943], + [48343,652.654752654753], + [48345,2562.96296296296], + [48347,2451.54105154105], + [48349,2614.94431494432], + [48351,2418.23361823362], + [48353,2362.08236208236], + [48355,2171.66537166537], + [48357,2376.66407666408], + [48359,3886.37658637659], + [48361,864.206164206164], + [48363,2465.13856513857], + [48365,2076.53457653458], + [48367,2340.01554001554], + [48369,2281.22248122248], + [48371,12338.3838383838], + [48373,2737.86583786584], + [48375,2352.68065268065], + [48377,9985.08158508159], + [48379,594.276094276094], + [48381,2360.89096089096], + [48383,3044.03004403004], + [48385,1810.92981092981], + [48387,2684.74488474488], + [48389,6825.64102564103], + [48391,1995.4415954416], + [48393,2393.31779331779], + [48395,2216.21341621342], + [48397,329.033929033929], + [48399,2721.96322196322], + [48401,2393.24009324009], + [48403,1272.70137270137], + [48405,1374.41077441077], + [48407,1474.33307433307], + [48409,1796.0372960373], + [48411,2940.42994042994], + [48413,3394.53509453509], + [48415,2345.09194509195], + [48417,2368.01346801347], + [48419,2060.55426055426], + [48421,2390.67599067599], + [48423,2386.55788655789], + [48425,482.931882931883], + [48427,3168.03936803937], + [48429,2322.50712250712], + [48431,2391.73789173789], + [48433,2373.24527324527], + [48435,3765.68246568247], + [48437,2305.51670551671], + [48439,2236.75213675214], + [48441,2371.27687127687], + [48443,6107.30380730381], + [48445,2302.0979020979], + [48447,2363.50686350686], + [48449,1051.67055167055], + [48451,3941.90624190624], + [48453,2564.62056462057], + [48455,1796.4516964517], + [48457,2394.45739445739], + [48459,1509.84200984201], + [48461,3215.02201502202], + [48463,4019.55451955452], + [48465,8144.91064491065], + [48467,2182.23258223258], + [48469,2284.74488474488], + [48471,2031.00233100233], + [48473,1329.78502978503], + [48475,2164.20616420616], + [48477,1564.23206423206], + [48479,8706.24190624191], + [48481,2813.13131313131], + [48483,2368.60916860917], + [48485,1625.95182595183], + [48487,2514.47811447811], + [48489,1529.52602952603], + [48491,2896.3998963999], + [48493,2081.66278166278], + [48495,2178.47707847708], + [48497,2342.45014245014], + [48499,1671.14737114737], + [48501,2071.25097125097], + [48503,2368.47966847967], + [48505,2585.88448588449], + [48507,3360.29526029526], + [49001,6707.79590779591], + [49003,14880.9893809894], + [49005,3016.86091686092], + [49007,3829.29292929293], + [49009,1805.18000518001], + [49011,773.840973840974], + [49013,8394.06889406889], + [49015,11557.3944573945], + [49017,13403.5742035742], + [49019,9509.29810929811], + [49021,8538.40973840974], + [49023,8786.01398601399], + [49025,10334.706034706], + [49027,17022.6107226107], + [49029,1577.82957782958], + [49031,1962.67806267806], + [49033,2664.54286454286], + [49035,1922.50712250712], + [49037,20253.7943537944], + [49039,4118.49261849262], + [49041,4948.40714840715], + [49043,4847.73374773375], + [49045,17978.1144781145], + [49047,11602.4087024087], + [49049,5188.94068894069], + [49051,3044.54804454804], + [49053,6284.27868427868], + [49055,6373.16757316757], + [49057,1492.04869204869], + [50001,1984.79668479669], + [50003,1748.19994819995], + [50005,1680.54908054908], + [50007,1389.74358974359], + [50009,1718.72571872572], + [50011,1641.31054131054], + [50013,211.888111888112], + [50015,1188.29318829319], + [50017,1779.40947940948], + [50019,1795.5710955711], + [50021,2408.23620823621], + [50023,1779.92747992748], + [50025,2033.95493395493], + [50027,2510.59311059311], + [51001,1164.20616420616], + [51003,1866.61486661487], + [51005,1153.74255374255], + [51007,920.15022015022], + [51009,1227.47992747993], + [51011,863.739963739964], + [51013,67.2623672623673], + [51015,2504.5325045325], + [51017,1370.52577052577], + [51019,1950.32375032375], + [51021,926.521626521627], + [51023,1401.7094017094], + [51025,1466.38176638177], + [51027,1302.1497021497], + [51029,1501.3209013209], + [51031,1305.02460502461], + [51033,1366.25226625227], + [51035,1229.44832944833], + [51036,473.504273504274], + [51037,1230.95053095053], + [51041,1096.3480963481], + [51043,456.306656306656], + [51045,853.483553483554], + [51047,982.206682206682], + [51049,770.42217042217], + [51051,856.073556073556], + [51053,1304.6361046361], + [51057,665.941465941466], + [51059,1012.61331261331], + [51061,1676.89717689718], + [51063,985.288785288785], + [51065,740.766640766641], + [51067,1788.21548821549], + [51069,1070.96607096607], + [51071,921.471121471121], + [51073,564.128464128464], + [51075,728.878528878529], + [51077,1145.24734524735], + [51079,404.687904687905], + [51081,764.646464646465], + [51083,2118.20771820772], + [51085,1213.51981351981], + [51087,605.283605283605], + [51089,990.23569023569], + [51091,1075.26547526548], + [51093,817.430717430717], + [51095,368.919968919969], + [51097,816.213416213416], + [51099,465.268065268065], + [51101,709.50530950531], + [51103,345.117845117845], + [51105,1127.99792799793], + [51107,1335.30173530174], + [51109,1285.41828541829], + [51111,1118.05231805232], + [51113,830.562030562031], + [51115,222.558922558923], + [51117,1620.02072002072], + [51119,337.503237503238], + [51121,1002.3569023569], + [51125,1219.52861952862], + [51127,543.201243201243], + [51131,548.070448070448], + [51133,495.467495467496], + [51135,814.270914270914], + [51137,882.621082621083], + [51139,805.128205128205], + [51141,1251.23025123025], + [51143,2509.55710955711], + [51145,673.970473970474], + [51147,906.397306397306], + [51149,686.765086765087], + [51153,871.276871276871], + [51155,828.438228438229], + [51157,689.53638953639], + [51159,495.959595959596], + [51161,648.847448847449], + [51163,1547.68194768195], + [51165,2199.1452991453], + [51167,1227.19502719503], + [51169,1387.02408702409], + [51171,1317.74151774152], + [51173,1167.90986790987], + [51175,1551.80005180005], + [51177,1039.88603988604], + [51179,696.607096607097], + [51181,722.481222481222], + [51183,1269.67106967107], + [51185,1343.82284382284], + [51187,552.887852887853], + [51191,1452.93965293965], + [51193,594.094794094794], + [51195,1044.26314426314], + [51197,1196.114996115], + [51199,271.380471380471], + [51510,38.9277389277389], + [51520,33.6959336959337], + [51530,17.3530173530174], + [51540,26.5216265216265], + [51550,882.672882672883], + [51570,19.4768194768195], + [51580,14.1673141673142], + [51590,111.188811188811], + [51595,17.8451178451178], + [51600,16.1616161616162], + [51610,5.18000518000518], + [51620,21.2639212639213], + [51630,27.039627039627], + [51640,21.3416213416213], + [51650,133.152033152033], + [51660,45.1178451178451], + [51670,26.6252266252266], + [51678,6.47500647500648], + [51680,127.246827246827], + [51683,25.5892255892256], + [51685,6.55270655270655], + [51690,28.3864283864284], + [51700,177.959077959078], + [51710,140.17094017094], + [51720,19.3732193732194], + [51730,59.3887593887594], + [51735,39.6788396788397], + [51740,87.1535871535872], + [51750,25.5633255633256], + [51760,154.908054908055], + [51770,110.23051023051], + [51775,37.3996373996374], + [51790,51.7482517482518], + [51800,1036.44133644134], + [51810,644.962444962445], + [51820,38.953638953639], + [51830,23.3618233618234], + [51840,23.9057239057239], + [53001,4985.70318570319], + [53003,1647.78554778555], + [53005,4403.9886039886], + [53007,7564.18026418027], + [53009,4502.2792022792], + [53011,1629.11162911163], + [53013,2249.75394975395], + [53015,2952.93965293965], + [53017,4711.88811188811], + [53019,5706.19010619011], + [53021,3217.22351722352], + [53023,1840.68894068894], + [53025,6939.93783993784], + [53027,4926.26262626263], + [53029,539.88603988604], + [53031,4671.58767158767], + [53033,5479.33177933178], + [53035,1022.89562289562], + [53037,5949.93524993525], + [53039,4846.69774669775], + [53041,6223.25822325822], + [53043,5984.17508417508], + [53045,2484.90028490029], + [53047,13644.0818440818], + [53049,2415.59181559182], + [53051,3625.97772597773], + [53053,4324.03522403522], + [53055,450.45325045325], + [53057,4483.81248381248], + [53059,4288.21548821549], + [53061,5406.03470603471], + [53063,4568.22066822067], + [53065,6417.43071743072], + [53067,1869.87826987827], + [53069,682.154882154882], + [53071,3289.63998963999], + [53073,5456.77285677286], + [53075,5592.04869204869], + [53077,11125.0971250971], + [54001,883.346283346283], + [54003,831.753431753432], + [54005,1298.9898989899], + [54007,1322.99922299922], + [54009,231.054131054131], + [54011,727.842527842528], + [54013,723.258223258223], + [54015,885.521885521886], + [54017,828.075628075628], + [54019,1713.41621341621], + [54021,876.715876715877], + [54023,1236.38953638954], + [54025,2640.68894068894], + [54027,1658.24915824916], + [54029,213.960113960114], + [54031,1508.18440818441], + [54033,1077.46697746698], + [54035,1202.6677026677], + [54037,542.968142968143], + [54039,2335.12043512044], + [54041,996.891996891997], + [54043,1131.93473193473], + [54045,1175.18777518778], + [54047,1381.66278166278], + [54049,799.6373996374], + [54051,791.064491064491], + [54053,1115.64361564362], + [54055,1085.18518518519], + [54057,849.080549080549], + [54059,1095.855995856], + [54061,932.556332556333], + [54063,1224.42372442372], + [54065,593.291893291893], + [54067,1675.26547526548], + [54069,274.074074074074], + [54071,1802.7713027713], + [54073,336.959336959337], + [54075,2435.32763532764], + [54077,1680.41958041958], + [54079,895.286195286195], + [54081,1567.85806785807], + [54083,2692.77389277389], + [54085,1170.65527065527], + [54087,1252.42165242165], + [54089,933.592333592334], + [54091,447.474747474748], + [54093,1085.00388500389], + [54095,663.791763791764], + [54097,918.518518518519], + [54099,1310.48951048951], + [54101,1433.48873348873], + [54103,927.376327376327], + [54105,602.201502201502], + [54107,948.614348614349], + [54109,1293.57679357679], + [55001,1672.23517223517], + [55003,2706.65630665631], + [55005,2234.42113442113], + [55007,3827.66122766123], + [55009,1371.95027195027], + [55011,1739.54933954934], + [55013,2128.59362859363], + [55015,824.242424242424], + [55017,2611.68091168091], + [55019,3133.43693343693], + [55021,1982.72468272468], + [55023,1478.01087801088], + [55025,3100.8547008547], + [55027,2267.88396788397], + [55029,1248.32944832945], + [55031,3377.72597772598], + [55033,2201.7871017871], + [55035,1652.36985236985], + [55037,1264.43926443926], + [55039,1863.63636363636], + [55041,2626.44392644393], + [55043,2970.34447034447], + [55045,1512.45791245791], + [55047,905.050505050505], + [55049,1975.08417508418], + [55051,1963.66226366226], + [55053,2558.19735819736], + [55055,1441.25874125874], + [55057,1986.35068635069], + [55059,704.454804454805], + [55061,887.127687127687], + [55063,1169.87826987827], + [55065,1640.99974099974], + [55067,2254.95985495986], + [55069,2276.53457653458], + [55071,1525.71872571873], + [55073,4001.5022015022], + [55075,3624.32012432012], + [55077,1180.00518000518], + [55078,926.210826210826], + [55079,625.226625226625], + [55081,2333.02253302253], + [55083,2584.79668479669], + [55085,2882.59518259518], + [55087,1651.17845117845], + [55089,603.677803677804], + [55091,600.828800828801], + [55093,1486.01398601399], + [55095,2367.15876715877], + [55097,2073.76327376327], + [55099,3248.84744884745], + [55101,861.175861175861], + [55103,1518.13001813002], + [55105,1859.98445998446], + [55107,2366.20046620047], + [55109,1870.83657083657], + [55111,2152.03315203315], + [55113,3256.43615643616], + [55115,2313.02771302771], + [55117,1324.19062419062], + [55119,2524.94172494172], + [55121,1898.3941983942], + [55123,2050.19425019425], + [55125,2218.59621859622], + [55127,1437.78813778814], + [55129,2064.51696451696], + [55131,1115.51411551412], + [55133,1423.38772338772], + [55135,1936.57083657084], + [55137,1621.73012173012], + [55139,1125.33022533023], + [55141,2054.18285418285], + [56001,11069.2566692567], + [56003,8125.09712509713], + [56005,12439.0313390313], + [56007,20454.7526547527], + [56009,11020.1502201502], + [56011,7392.92929292929], + [56013,23786.0916860917], + [56015,5763.76586376586], + [56017,5190.59829059829], + [56019,10759.2592592593], + [56021,6956.51385651386], + [56023,10557.1872571873], + [56025,13831.5203315203], + [56027,6801.4504014504], + [56029,17980.0051800052], + [56031,5398.1092981093], + [56033,6537.14063714064], + [56035,12656.1512561513], + [56037,27005.0505050505], + [56039,10348.0445480445], + [56041,5390.46879046879], + [56043,5797.8502978503], + [56045,6211.05931105931] + ] +} diff --git a/data/regional/united-states/geography/us-area-metropolitan-2013.json b/data/regional/united-states/geography/us-area-metropolitan-2013.json new file mode 100644 index 0000000..f62ab6f --- /dev/null +++ b/data/regional/united-states/geography/us-area-metropolitan-2013.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Metropolitan Area", + "description" : "Whether the county contains a metropolitan area.", + "units" : "yes/no", + "year" : "2013", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "uncategorised", + "tags" : ["regional","us","counties","geography","metro","metropolitan"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.area.metropolitan.2013"], + [1001,"yes"], + [1003,"yes"], + [1005,"no"], + [1007,"yes"], + [1009,"yes"], + [1011,"no"], + [1013,"no"], + [1015,"yes"], + [1017,"no"], + [1019,"no"], + [1021,"yes"], + [1023,"no"], + [1025,"no"], + [1027,"no"], + [1029,"no"], + [1031,"no"], + [1033,"yes"], + [1035,"no"], + [1037,"no"], + [1039,"no"], + [1041,"no"], + [1043,"no"], + [1045,"no"], + [1047,"no"], + [1049,"no"], + [1051,"yes"], + [1053,"no"], + [1055,"yes"], + [1057,"no"], + [1059,"no"], + [1061,"yes"], + [1063,"no"], + [1065,"yes"], + [1067,"yes"], + [1069,"yes"], + [1071,"no"], + [1073,"yes"], + [1075,"no"], + [1077,"yes"], + [1079,"yes"], + [1081,"yes"], + [1083,"yes"], + [1085,"yes"], + [1087,"no"], + [1089,"yes"], + [1091,"no"], + [1093,"no"], + [1095,"no"], + [1097,"yes"], + [1099,"no"], + [1101,"yes"], + [1103,"yes"], + [1105,"no"], + [1107,"yes"], + [1109,"no"], + [1111,"no"], + [1113,"yes"], + [1115,"yes"], + [1117,"yes"], + [1119,"no"], + [1121,"no"], + [1123,"no"], + [1125,"yes"], + [1127,"yes"], + [1129,"no"], + [1131,"no"], + [1133,"no"], + [2013,"no"], + [2016,"no"], + [2020,"yes"], + [2050,"no"], + [2060,"no"], + [2068,"no"], + [2070,"no"], + [2090,"yes"], + [2100,"no"], + [2105,"no"], + [2110,"no"], + [2122,"no"], + [2130,"no"], + [2150,"no"], + [2158,"yes"], + [2164,"no"], + [2170,"yes"], + [2180,"no"], + [2185,"no"], + [2188,"no"], + [2195,"no"], + [2198,"no"], + [2220,"no"], + [2230,"no"], + [2240,"no"], + [2261,"no"], + [2275,"no"], + [2282,"no"], + [2290,"no"], + [4001,"no"], + [4003,"yes"], + [4005,"yes"], + [4007,"no"], + [4009,"no"], + [4011,"no"], + [4012,"no"], + [4013,"yes"], + [4015,"yes"], + [4017,"no"], + [4019,"yes"], + [4021,"yes"], + [4023,"no"], + [4025,"yes"], + [4027,"yes"], + [5001,"no"], + [5003,"no"], + [5005,"no"], + [5007,"yes"], + [5009,"no"], + [5011,"no"], + [5013,"no"], + [5015,"no"], + [5017,"no"], + [5019,"no"], + [5021,"no"], + [5023,"no"], + [5025,"yes"], + [5027,"no"], + [5029,"no"], + [5031,"yes"], + [5033,"yes"], + [5035,"yes"], + [5037,"no"], + [5039,"no"], + [5041,"no"], + [5043,"no"], + [5045,"yes"], + [5047,"no"], + [5049,"no"], + [5051,"yes"], + [5053,"yes"], + [5055,"no"], + [5057,"no"], + [5059,"no"], + [5061,"no"], + [5063,"no"], + [5065,"no"], + [5067,"no"], + [5069,"yes"], + [5071,"no"], + [5073,"no"], + [5075,"no"], + [5077,"no"], + [5079,"yes"], + [5081,"yes"], + [5083,"no"], + [5085,"yes"], + [5087,"yes"], + [5089,"no"], + [5091,"yes"], + [5093,"no"], + [5095,"no"], + [5097,"no"], + [5099,"no"], + [5101,"no"], + [5103,"no"], + [5105,"yes"], + [5107,"no"], + [5109,"no"], + [5111,"yes"], + [5113,"no"], + [5115,"no"], + [5117,"no"], + [5119,"yes"], + [5121,"no"], + [5123,"no"], + [5125,"yes"], + [5127,"no"], + [5129,"no"], + [5131,"yes"], + [5133,"no"], + [5135,"no"], + [5137,"no"], + [5139,"no"], + [5141,"no"], + [5143,"yes"], + [5145,"no"], + [5147,"no"], + [5149,"no"], + [6001,"yes"], + [6003,"no"], + [6005,"no"], + [6007,"yes"], + [6009,"no"], + [6011,"no"], + [6013,"yes"], + [6015,"no"], + [6017,"yes"], + [6019,"yes"], + [6021,"no"], + [6023,"no"], + [6025,"yes"], + [6027,"no"], + [6029,"yes"], + [6031,"yes"], + [6033,"no"], + [6035,"no"], + [6037,"yes"], + [6039,"yes"], + [6041,"yes"], + [6043,"no"], + [6045,"no"], + [6047,"yes"], + [6049,"no"], + [6051,"no"], + [6053,"yes"], + [6055,"yes"], + [6057,"no"], + [6059,"yes"], + [6061,"yes"], + [6063,"no"], + [6065,"yes"], + [6067,"yes"], + [6069,"yes"], + [6071,"yes"], + [6073,"yes"], + [6075,"yes"], + [6077,"yes"], + [6079,"yes"], + [6081,"yes"], + [6083,"yes"], + [6085,"yes"], + [6087,"yes"], + [6089,"yes"], + [6091,"no"], + [6093,"no"], + [6095,"yes"], + [6097,"yes"], + [6099,"yes"], + [6101,"yes"], + [6103,"no"], + [6105,"no"], + [6107,"yes"], + [6109,"no"], + [6111,"yes"], + [6113,"yes"], + [6115,"yes"], + [8001,"yes"], + [8003,"no"], + [8005,"yes"], + [8007,"no"], + [8009,"no"], + [8011,"no"], + [8013,"yes"], + [8014,"yes"], + [8015,"no"], + [8017,"no"], + [8019,"yes"], + [8021,"no"], + [8023,"no"], + [8025,"no"], + [8027,"no"], + [8029,"no"], + [8031,"yes"], + [8033,"no"], + [8035,"yes"], + [8037,"no"], + [8039,"yes"], + [8041,"yes"], + [8043,"no"], + [8045,"no"], + [8047,"yes"], + [8049,"no"], + [8051,"no"], + [8053,"no"], + [8055,"no"], + [8057,"no"], + [8059,"yes"], + [8061,"no"], + [8063,"no"], + [8065,"no"], + [8067,"no"], + [8069,"yes"], + [8071,"no"], + [8073,"no"], + [8075,"no"], + [8077,"yes"], + [8079,"no"], + [8081,"no"], + [8083,"no"], + [8085,"no"], + [8087,"no"], + [8089,"no"], + [8091,"no"], + [8093,"yes"], + [8095,"no"], + [8097,"no"], + [8099,"no"], + [8101,"yes"], + [8103,"no"], + [8105,"no"], + [8107,"no"], + [8109,"no"], + [8111,"no"], + [8113,"no"], + [8115,"no"], + [8117,"no"], + [8119,"yes"], + [8121,"no"], + [8123,"yes"], + [8125,"no"], + [9001,"yes"], + [9003,"yes"], + [9005,"no"], + [9007,"yes"], + [9009,"yes"], + [9011,"yes"], + [9013,"yes"], + [9015,"yes"], + [10001,"yes"], + [10003,"yes"], + [10005,"yes"], + [11001,"yes"], + [12001,"yes"], + [12003,"yes"], + [12005,"yes"], + [12007,"no"], + [12009,"yes"], + [12011,"yes"], + [12013,"no"], + [12015,"yes"], + [12017,"yes"], + [12019,"yes"], + [12021,"yes"], + [12023,"no"], + [12027,"no"], + [12029,"no"], + [12031,"yes"], + [12033,"yes"], + [12035,"yes"], + [12037,"no"], + [12039,"yes"], + [12041,"yes"], + [12043,"no"], + [12045,"yes"], + [12047,"no"], + [12049,"no"], + [12051,"no"], + [12053,"yes"], + [12055,"yes"], + [12057,"yes"], + [12059,"no"], + [12061,"yes"], + [12063,"no"], + [12065,"yes"], + [12067,"no"], + [12069,"yes"], + [12071,"yes"], + [12073,"yes"], + [12075,"no"], + [12077,"no"], + [12079,"no"], + [12081,"yes"], + [12083,"yes"], + [12085,"yes"], + [12086,"yes"], + [12087,"no"], + [12089,"yes"], + [12091,"yes"], + [12093,"no"], + [12095,"yes"], + [12097,"yes"], + [12099,"yes"], + [12101,"yes"], + [12103,"yes"], + [12105,"yes"], + [12107,"no"], + [12109,"yes"], + [12111,"yes"], + [12113,"yes"], + [12115,"yes"], + [12117,"yes"], + [12119,"yes"], + [12121,"no"], + [12123,"no"], + [12125,"no"], + [12127,"yes"], + [12129,"yes"], + [12131,"yes"], + [12133,"no"], + [13001,"no"], + [13003,"no"], + [13005,"no"], + [13007,"yes"], + [13009,"no"], + [13011,"no"], + [13013,"yes"], + [13015,"yes"], + [13017,"no"], + [13019,"no"], + [13021,"yes"], + [13023,"no"], + [13025,"yes"], + [13027,"yes"], + [13029,"yes"], + [13031,"no"], + [13033,"yes"], + [13035,"yes"], + [13037,"no"], + [13039,"no"], + [13043,"no"], + [13045,"yes"], + [13047,"yes"], + [13049,"no"], + [13051,"yes"], + [13053,"yes"], + [13055,"no"], + [13057,"yes"], + [13059,"yes"], + [13061,"no"], + [13063,"yes"], + [13065,"no"], + [13067,"yes"], + [13069,"no"], + [13071,"no"], + [13073,"yes"], + [13075,"no"], + [13077,"yes"], + [13079,"yes"], + [13081,"no"], + [13083,"yes"], + [13085,"yes"], + [13087,"no"], + [13089,"yes"], + [13091,"no"], + [13093,"no"], + [13095,"yes"], + [13097,"yes"], + [13099,"no"], + [13101,"yes"], + [13103,"yes"], + [13105,"no"], + [13107,"no"], + [13109,"no"], + [13111,"no"], + [13113,"yes"], + [13115,"yes"], + [13117,"yes"], + [13119,"no"], + [13121,"yes"], + [13123,"no"], + [13125,"no"], + [13127,"yes"], + [13129,"no"], + [13131,"no"], + [13133,"no"], + [13135,"yes"], + [13137,"no"], + [13139,"yes"], + [13141,"no"], + [13143,"yes"], + [13145,"yes"], + [13147,"no"], + [13149,"yes"], + [13151,"yes"], + [13153,"yes"], + [13155,"no"], + [13157,"no"], + [13159,"yes"], + [13161,"no"], + [13163,"no"], + [13165,"no"], + [13167,"no"], + [13169,"yes"], + [13171,"yes"], + [13173,"yes"], + [13175,"no"], + [13177,"yes"], + [13179,"yes"], + [13181,"yes"], + [13183,"yes"], + [13185,"yes"], + [13187,"no"], + [13189,"yes"], + [13191,"yes"], + [13193,"no"], + [13195,"yes"], + [13197,"yes"], + [13199,"yes"], + [13201,"no"], + [13205,"no"], + [13207,"yes"], + [13209,"no"], + [13211,"yes"], + [13213,"yes"], + [13215,"yes"], + [13217,"yes"], + [13219,"yes"], + [13221,"yes"], + [13223,"yes"], + [13225,"yes"], + [13227,"yes"], + [13229,"no"], + [13231,"yes"], + [13233,"no"], + [13235,"yes"], + [13237,"no"], + [13239,"no"], + [13241,"no"], + [13243,"no"], + [13245,"yes"], + [13247,"yes"], + [13249,"no"], + [13251,"no"], + [13253,"no"], + [13255,"yes"], + [13257,"no"], + [13259,"no"], + [13261,"no"], + [13263,"no"], + [13265,"no"], + [13267,"no"], + [13269,"no"], + [13271,"no"], + [13273,"yes"], + [13275,"no"], + [13277,"no"], + [13279,"no"], + [13281,"no"], + [13283,"no"], + [13285,"no"], + [13287,"no"], + [13289,"yes"], + [13291,"no"], + [13293,"no"], + [13295,"yes"], + [13297,"yes"], + [13299,"no"], + [13301,"no"], + [13303,"no"], + [13305,"no"], + [13307,"no"], + [13309,"no"], + [13311,"no"], + [13313,"yes"], + [13315,"no"], + [13317,"no"], + [13319,"no"], + [13321,"yes"], + [15001,"no"], + [15003,"yes"], + [15005,"yes"], + [15007,"no"], + [15009,"yes"], + [16001,"yes"], + [16003,"no"], + [16005,"yes"], + [16007,"no"], + [16009,"no"], + [16011,"no"], + [16013,"no"], + [16015,"yes"], + [16017,"no"], + [16019,"yes"], + [16021,"no"], + [16023,"yes"], + [16025,"no"], + [16027,"yes"], + [16029,"no"], + [16031,"no"], + [16033,"no"], + [16035,"no"], + [16037,"no"], + [16039,"no"], + [16041,"yes"], + [16043,"no"], + [16045,"yes"], + [16047,"no"], + [16049,"no"], + [16051,"yes"], + [16053,"no"], + [16055,"yes"], + [16057,"no"], + [16059,"no"], + [16061,"no"], + [16063,"no"], + [16065,"no"], + [16067,"no"], + [16069,"yes"], + [16071,"no"], + [16073,"yes"], + [16075,"no"], + [16077,"no"], + [16079,"no"], + [16081,"no"], + [16083,"no"], + [16085,"no"], + [16087,"no"], + [17001,"no"], + [17003,"yes"], + [17005,"yes"], + [17007,"yes"], + [17009,"no"], + [17011,"no"], + [17013,"yes"], + [17015,"no"], + [17017,"no"], + [17019,"yes"], + [17021,"no"], + [17023,"no"], + [17025,"no"], + [17027,"yes"], + [17029,"no"], + [17031,"yes"], + [17033,"no"], + [17035,"no"], + [17037,"yes"], + [17039,"yes"], + [17041,"no"], + [17043,"yes"], + [17045,"no"], + [17047,"no"], + [17049,"no"], + [17051,"no"], + [17053,"yes"], + [17055,"no"], + [17057,"no"], + [17059,"no"], + [17061,"no"], + [17063,"yes"], + [17065,"no"], + [17067,"no"], + [17069,"no"], + [17071,"no"], + [17073,"yes"], + [17075,"no"], + [17077,"yes"], + [17079,"no"], + [17081,"no"], + [17083,"yes"], + [17085,"no"], + [17087,"no"], + [17089,"yes"], + [17091,"yes"], + [17093,"yes"], + [17095,"no"], + [17097,"yes"], + [17099,"no"], + [17101,"no"], + [17103,"no"], + [17105,"no"], + [17107,"no"], + [17109,"no"], + [17111,"yes"], + [17113,"yes"], + [17115,"yes"], + [17117,"yes"], + [17119,"yes"], + [17121,"no"], + [17123,"yes"], + [17125,"no"], + [17127,"no"], + [17129,"yes"], + [17131,"yes"], + [17133,"yes"], + [17135,"no"], + [17137,"no"], + [17139,"no"], + [17141,"no"], + [17143,"yes"], + [17145,"no"], + [17147,"yes"], + [17149,"no"], + [17151,"no"], + [17153,"no"], + [17155,"no"], + [17157,"no"], + [17159,"no"], + [17161,"yes"], + [17163,"yes"], + [17165,"no"], + [17167,"yes"], + [17169,"no"], + [17171,"no"], + [17173,"no"], + [17175,"yes"], + [17177,"no"], + [17179,"yes"], + [17181,"no"], + [17183,"yes"], + [17185,"no"], + [17187,"no"], + [17189,"no"], + [17191,"no"], + [17193,"no"], + [17195,"no"], + [17197,"yes"], + [17199,"yes"], + [17201,"yes"], + [17203,"yes"], + [18001,"no"], + [18003,"yes"], + [18005,"yes"], + [18007,"yes"], + [18009,"no"], + [18011,"yes"], + [18013,"yes"], + [18015,"yes"], + [18017,"no"], + [18019,"yes"], + [18021,"yes"], + [18023,"no"], + [18025,"no"], + [18027,"no"], + [18029,"yes"], + [18031,"no"], + [18033,"no"], + [18035,"yes"], + [18037,"no"], + [18039,"yes"], + [18041,"no"], + [18043,"yes"], + [18045,"no"], + [18047,"no"], + [18049,"no"], + [18051,"no"], + [18053,"no"], + [18055,"no"], + [18057,"yes"], + [18059,"yes"], + [18061,"yes"], + [18063,"yes"], + [18065,"no"], + [18067,"yes"], + [18069,"no"], + [18071,"no"], + [18073,"yes"], + [18075,"no"], + [18077,"no"], + [18079,"no"], + [18081,"yes"], + [18083,"no"], + [18085,"no"], + [18087,"no"], + [18089,"yes"], + [18091,"yes"], + [18093,"no"], + [18095,"yes"], + [18097,"yes"], + [18099,"no"], + [18101,"no"], + [18103,"no"], + [18105,"yes"], + [18107,"no"], + [18109,"yes"], + [18111,"yes"], + [18113,"no"], + [18115,"yes"], + [18117,"no"], + [18119,"yes"], + [18121,"no"], + [18123,"no"], + [18125,"no"], + [18127,"yes"], + [18129,"yes"], + [18131,"no"], + [18133,"yes"], + [18135,"no"], + [18137,"no"], + [18139,"no"], + [18141,"yes"], + [18143,"yes"], + [18145,"yes"], + [18147,"no"], + [18149,"no"], + [18151,"no"], + [18153,"yes"], + [18155,"no"], + [18157,"yes"], + [18159,"no"], + [18161,"yes"], + [18163,"yes"], + [18165,"yes"], + [18167,"yes"], + [18169,"no"], + [18171,"no"], + [18173,"yes"], + [18175,"yes"], + [18177,"no"], + [18179,"yes"], + [18181,"no"], + [18183,"yes"], + [19001,"no"], + [19003,"no"], + [19005,"no"], + [19007,"no"], + [19009,"no"], + [19011,"yes"], + [19013,"yes"], + [19015,"no"], + [19017,"yes"], + [19019,"no"], + [19021,"no"], + [19023,"no"], + [19025,"no"], + [19027,"no"], + [19029,"no"], + [19031,"no"], + [19033,"no"], + [19035,"no"], + [19037,"no"], + [19039,"no"], + [19041,"no"], + [19043,"no"], + [19045,"no"], + [19047,"no"], + [19049,"yes"], + [19051,"no"], + [19053,"no"], + [19055,"no"], + [19057,"no"], + [19059,"no"], + [19061,"yes"], + [19063,"no"], + [19065,"no"], + [19067,"no"], + [19069,"no"], + [19071,"no"], + [19073,"no"], + [19075,"yes"], + [19077,"yes"], + [19079,"no"], + [19081,"no"], + [19083,"no"], + [19085,"yes"], + [19087,"no"], + [19089,"no"], + [19091,"no"], + [19093,"no"], + [19095,"no"], + [19097,"no"], + [19099,"no"], + [19101,"no"], + [19103,"yes"], + [19105,"yes"], + [19107,"no"], + [19109,"no"], + [19111,"no"], + [19113,"yes"], + [19115,"no"], + [19117,"no"], + [19119,"no"], + [19121,"yes"], + [19123,"no"], + [19125,"no"], + [19127,"no"], + [19129,"yes"], + [19131,"no"], + [19133,"no"], + [19135,"no"], + [19137,"no"], + [19139,"no"], + [19141,"no"], + [19143,"no"], + [19145,"no"], + [19147,"no"], + [19149,"yes"], + [19151,"no"], + [19153,"yes"], + [19155,"yes"], + [19157,"no"], + [19159,"no"], + [19161,"no"], + [19163,"yes"], + [19165,"no"], + [19167,"no"], + [19169,"yes"], + [19171,"no"], + [19173,"no"], + [19175,"no"], + [19177,"no"], + [19179,"no"], + [19181,"yes"], + [19183,"yes"], + [19185,"no"], + [19187,"no"], + [19189,"no"], + [19191,"no"], + [19193,"yes"], + [19195,"no"], + [19197,"no"], + [20001,"no"], + [20003,"no"], + [20005,"no"], + [20007,"no"], + [20009,"no"], + [20011,"no"], + [20013,"no"], + [20015,"yes"], + [20017,"no"], + [20019,"no"], + [20021,"no"], + [20023,"no"], + [20025,"no"], + [20027,"no"], + [20029,"no"], + [20031,"no"], + [20033,"no"], + [20035,"no"], + [20037,"no"], + [20039,"no"], + [20041,"no"], + [20043,"yes"], + [20045,"yes"], + [20047,"no"], + [20049,"no"], + [20051,"no"], + [20053,"no"], + [20055,"no"], + [20057,"no"], + [20059,"no"], + [20061,"no"], + [20063,"no"], + [20065,"no"], + [20067,"no"], + [20069,"no"], + [20071,"no"], + [20073,"no"], + [20075,"no"], + [20077,"no"], + [20079,"yes"], + [20081,"no"], + [20083,"no"], + [20085,"yes"], + [20087,"yes"], + [20089,"no"], + [20091,"yes"], + [20093,"no"], + [20095,"yes"], + [20097,"no"], + [20099,"no"], + [20101,"no"], + [20103,"yes"], + [20105,"no"], + [20107,"yes"], + [20109,"no"], + [20111,"no"], + [20113,"no"], + [20115,"no"], + [20117,"no"], + [20119,"no"], + [20121,"yes"], + [20123,"no"], + [20125,"no"], + [20127,"no"], + [20129,"no"], + [20131,"no"], + [20133,"no"], + [20135,"no"], + [20137,"no"], + [20139,"yes"], + [20141,"no"], + [20143,"no"], + [20145,"no"], + [20147,"no"], + [20149,"yes"], + [20151,"no"], + [20153,"no"], + [20155,"no"], + [20157,"no"], + [20159,"no"], + [20161,"yes"], + [20163,"no"], + [20165,"no"], + [20167,"no"], + [20169,"no"], + [20171,"no"], + [20173,"yes"], + [20175,"no"], + [20177,"yes"], + [20179,"no"], + [20181,"no"], + [20183,"no"], + [20185,"no"], + [20187,"no"], + [20189,"no"], + [20191,"yes"], + [20193,"no"], + [20195,"no"], + [20197,"yes"], + [20199,"no"], + [20201,"no"], + [20203,"no"], + [20205,"no"], + [20207,"no"], + [20209,"yes"], + [21001,"no"], + [21003,"yes"], + [21005,"no"], + [21007,"no"], + [21009,"no"], + [21011,"no"], + [21013,"no"], + [21015,"yes"], + [21017,"yes"], + [21019,"yes"], + [21021,"no"], + [21023,"yes"], + [21025,"no"], + [21027,"no"], + [21029,"yes"], + [21031,"yes"], + [21033,"no"], + [21035,"no"], + [21037,"yes"], + [21039,"no"], + [21041,"no"], + [21043,"no"], + [21045,"no"], + [21047,"yes"], + [21049,"yes"], + [21051,"no"], + [21053,"no"], + [21055,"no"], + [21057,"no"], + [21059,"yes"], + [21061,"yes"], + [21063,"no"], + [21065,"no"], + [21067,"yes"], + [21069,"no"], + [21071,"no"], + [21073,"no"], + [21075,"no"], + [21077,"yes"], + [21079,"no"], + [21081,"yes"], + [21083,"no"], + [21085,"no"], + [21087,"no"], + [21089,"yes"], + [21091,"yes"], + [21093,"yes"], + [21095,"no"], + [21097,"no"], + [21099,"no"], + [21101,"yes"], + [21103,"yes"], + [21105,"no"], + [21107,"no"], + [21109,"no"], + [21111,"yes"], + [21113,"yes"], + [21115,"no"], + [21117,"yes"], + [21119,"no"], + [21121,"no"], + [21123,"yes"], + [21125,"no"], + [21127,"no"], + [21129,"no"], + [21131,"no"], + [21133,"no"], + [21135,"no"], + [21137,"no"], + [21139,"no"], + [21141,"no"], + [21143,"no"], + [21145,"no"], + [21147,"no"], + [21149,"yes"], + [21151,"no"], + [21153,"no"], + [21155,"no"], + [21157,"no"], + [21159,"no"], + [21161,"no"], + [21163,"yes"], + [21165,"no"], + [21167,"no"], + [21169,"no"], + [21171,"no"], + [21173,"no"], + [21175,"no"], + [21177,"no"], + [21179,"no"], + [21181,"no"], + [21183,"no"], + [21185,"yes"], + [21187,"no"], + [21189,"no"], + [21191,"yes"], + [21193,"no"], + [21195,"no"], + [21197,"no"], + [21199,"no"], + [21201,"no"], + [21203,"no"], + [21205,"no"], + [21207,"no"], + [21209,"yes"], + [21211,"yes"], + [21213,"no"], + [21215,"yes"], + [21217,"no"], + [21219,"no"], + [21221,"yes"], + [21223,"yes"], + [21225,"no"], + [21227,"yes"], + [21229,"no"], + [21231,"no"], + [21233,"no"], + [21235,"no"], + [21237,"no"], + [21239,"yes"], + [22001,"yes"], + [22003,"no"], + [22005,"yes"], + [22007,"no"], + [22009,"no"], + [22011,"no"], + [22013,"no"], + [22015,"yes"], + [22017,"yes"], + [22019,"yes"], + [22021,"no"], + [22023,"yes"], + [22025,"no"], + [22027,"no"], + [22029,"no"], + [22031,"yes"], + [22033,"yes"], + [22035,"no"], + [22037,"yes"], + [22039,"no"], + [22041,"no"], + [22043,"yes"], + [22045,"yes"], + [22047,"yes"], + [22049,"no"], + [22051,"yes"], + [22053,"no"], + [22055,"yes"], + [22057,"yes"], + [22059,"no"], + [22061,"no"], + [22063,"yes"], + [22065,"no"], + [22067,"no"], + [22069,"no"], + [22071,"yes"], + [22073,"yes"], + [22075,"yes"], + [22077,"yes"], + [22079,"yes"], + [22081,"no"], + [22083,"no"], + [22085,"no"], + [22087,"yes"], + [22089,"yes"], + [22091,"yes"], + [22093,"yes"], + [22095,"yes"], + [22097,"no"], + [22099,"yes"], + [22101,"no"], + [22103,"yes"], + [22105,"yes"], + [22107,"no"], + [22109,"yes"], + [22111,"yes"], + [22113,"yes"], + [22115,"no"], + [22117,"no"], + [22119,"yes"], + [22121,"yes"], + [22123,"no"], + [22125,"yes"], + [22127,"no"], + [23001,"yes"], + [23003,"no"], + [23005,"yes"], + [23007,"no"], + [23009,"no"], + [23011,"no"], + [23013,"no"], + [23015,"no"], + [23017,"no"], + [23019,"yes"], + [23021,"no"], + [23023,"yes"], + [23025,"no"], + [23027,"no"], + [23029,"no"], + [23031,"yes"], + [24001,"yes"], + [24003,"yes"], + [24005,"yes"], + [24009,"yes"], + [24011,"no"], + [24013,"yes"], + [24015,"yes"], + [24017,"yes"], + [24019,"no"], + [24021,"yes"], + [24023,"no"], + [24025,"yes"], + [24027,"yes"], + [24029,"no"], + [24031,"yes"], + [24033,"yes"], + [24035,"yes"], + [24037,"yes"], + [24039,"yes"], + [24041,"no"], + [24043,"yes"], + [24045,"yes"], + [24047,"yes"], + [24510,"yes"], + [25001,"yes"], + [25003,"yes"], + [25005,"yes"], + [25007,"no"], + [25009,"yes"], + [25011,"no"], + [25013,"yes"], + [25015,"yes"], + [25017,"yes"], + [25019,"no"], + [25021,"yes"], + [25023,"yes"], + [25025,"yes"], + [25027,"yes"], + [26001,"no"], + [26003,"no"], + [26005,"no"], + [26007,"no"], + [26009,"no"], + [26011,"no"], + [26013,"no"], + [26015,"yes"], + [26017,"yes"], + [26019,"no"], + [26021,"yes"], + [26023,"no"], + [26025,"yes"], + [26027,"yes"], + [26029,"no"], + [26031,"no"], + [26033,"no"], + [26035,"no"], + [26037,"yes"], + [26039,"no"], + [26041,"no"], + [26043,"no"], + [26045,"yes"], + [26047,"no"], + [26049,"yes"], + [26051,"no"], + [26053,"no"], + [26055,"no"], + [26057,"no"], + [26059,"no"], + [26061,"no"], + [26063,"no"], + [26065,"yes"], + [26067,"no"], + [26069,"no"], + [26071,"no"], + [26073,"no"], + [26075,"yes"], + [26077,"yes"], + [26079,"no"], + [26081,"yes"], + [26083,"no"], + [26085,"no"], + [26087,"yes"], + [26089,"no"], + [26091,"no"], + [26093,"yes"], + [26095,"no"], + [26097,"no"], + [26099,"yes"], + [26101,"no"], + [26103,"no"], + [26105,"no"], + [26107,"no"], + [26109,"no"], + [26111,"yes"], + [26113,"no"], + [26115,"yes"], + [26117,"yes"], + [26119,"no"], + [26121,"yes"], + [26123,"no"], + [26125,"yes"], + [26127,"no"], + [26129,"no"], + [26131,"no"], + [26133,"no"], + [26135,"no"], + [26137,"no"], + [26139,"yes"], + [26141,"no"], + [26143,"no"], + [26145,"yes"], + [26147,"yes"], + [26149,"no"], + [26151,"no"], + [26153,"no"], + [26155,"no"], + [26157,"no"], + [26159,"yes"], + [26161,"yes"], + [26163,"yes"], + [26165,"no"], + [27001,"no"], + [27003,"yes"], + [27005,"no"], + [27007,"no"], + [27009,"yes"], + [27011,"no"], + [27013,"yes"], + [27015,"no"], + [27017,"yes"], + [27019,"yes"], + [27021,"no"], + [27023,"no"], + [27025,"yes"], + [27027,"yes"], + [27029,"no"], + [27031,"no"], + [27033,"no"], + [27035,"no"], + [27037,"yes"], + [27039,"yes"], + [27041,"no"], + [27043,"no"], + [27045,"yes"], + [27047,"no"], + [27049,"no"], + [27051,"no"], + [27053,"yes"], + [27055,"yes"], + [27057,"no"], + [27059,"yes"], + [27061,"no"], + [27063,"no"], + [27065,"no"], + [27067,"no"], + [27069,"no"], + [27071,"no"], + [27073,"no"], + [27075,"no"], + [27077,"no"], + [27079,"yes"], + [27081,"no"], + [27083,"no"], + [27085,"no"], + [27087,"no"], + [27089,"no"], + [27091,"no"], + [27093,"no"], + [27095,"yes"], + [27097,"no"], + [27099,"no"], + [27101,"no"], + [27103,"yes"], + [27105,"no"], + [27107,"no"], + [27109,"yes"], + [27111,"no"], + [27113,"no"], + [27115,"no"], + [27117,"no"], + [27119,"yes"], + [27121,"no"], + [27123,"yes"], + [27125,"no"], + [27127,"no"], + [27129,"no"], + [27131,"no"], + [27133,"no"], + [27135,"no"], + [27137,"yes"], + [27139,"yes"], + [27141,"yes"], + [27143,"yes"], + [27145,"yes"], + [27147,"no"], + [27149,"no"], + [27151,"no"], + [27153,"no"], + [27155,"no"], + [27157,"yes"], + [27159,"no"], + [27161,"no"], + [27163,"yes"], + [27165,"no"], + [27167,"no"], + [27169,"no"], + [27171,"yes"], + [27173,"no"], + [28001,"no"], + [28003,"no"], + [28005,"no"], + [28007,"no"], + [28009,"yes"], + [28011,"no"], + [28013,"no"], + [28015,"no"], + [28017,"no"], + [28019,"no"], + [28021,"no"], + [28023,"no"], + [28025,"no"], + [28027,"no"], + [28029,"yes"], + [28031,"no"], + [28033,"yes"], + [28035,"yes"], + [28037,"no"], + [28039,"no"], + [28041,"no"], + [28043,"no"], + [28045,"yes"], + [28047,"yes"], + [28049,"yes"], + [28051,"no"], + [28053,"no"], + [28055,"no"], + [28057,"no"], + [28059,"yes"], + [28061,"no"], + [28063,"no"], + [28065,"no"], + [28067,"no"], + [28069,"no"], + [28071,"no"], + [28073,"yes"], + [28075,"no"], + [28077,"no"], + [28079,"no"], + [28081,"no"], + [28083,"no"], + [28085,"no"], + [28087,"no"], + [28089,"yes"], + [28091,"no"], + [28093,"yes"], + [28095,"no"], + [28097,"no"], + [28099,"no"], + [28101,"no"], + [28103,"no"], + [28105,"no"], + [28107,"no"], + [28109,"no"], + [28111,"yes"], + [28113,"no"], + [28115,"no"], + [28117,"no"], + [28119,"no"], + [28121,"yes"], + [28123,"no"], + [28125,"no"], + [28127,"yes"], + [28129,"no"], + [28131,"no"], + [28133,"no"], + [28135,"no"], + [28137,"yes"], + [28139,"no"], + [28141,"no"], + [28143,"yes"], + [28145,"no"], + [28147,"no"], + [28149,"no"], + [28151,"no"], + [28153,"no"], + [28155,"no"], + [28157,"no"], + [28159,"no"], + [28161,"no"], + [28163,"yes"], + [29001,"no"], + [29003,"yes"], + [29005,"no"], + [29007,"no"], + [29009,"no"], + [29011,"no"], + [29013,"yes"], + [29015,"no"], + [29017,"yes"], + [29019,"yes"], + [29021,"yes"], + [29023,"no"], + [29025,"yes"], + [29027,"yes"], + [29029,"no"], + [29031,"yes"], + [29033,"no"], + [29035,"no"], + [29037,"yes"], + [29039,"no"], + [29041,"no"], + [29043,"yes"], + [29045,"no"], + [29047,"yes"], + [29049,"yes"], + [29051,"yes"], + [29053,"no"], + [29055,"no"], + [29057,"no"], + [29059,"yes"], + [29061,"no"], + [29063,"yes"], + [29065,"no"], + [29067,"no"], + [29069,"no"], + [29071,"yes"], + [29073,"no"], + [29075,"no"], + [29077,"yes"], + [29079,"no"], + [29081,"no"], + [29083,"no"], + [29085,"no"], + [29087,"no"], + [29089,"no"], + [29091,"no"], + [29093,"no"], + [29095,"yes"], + [29097,"yes"], + [29099,"yes"], + [29101,"no"], + [29103,"no"], + [29105,"no"], + [29107,"yes"], + [29109,"no"], + [29111,"no"], + [29113,"yes"], + [29115,"no"], + [29117,"no"], + [29119,"yes"], + [29121,"no"], + [29123,"no"], + [29125,"no"], + [29127,"no"], + [29129,"no"], + [29131,"no"], + [29133,"no"], + [29135,"yes"], + [29137,"no"], + [29139,"no"], + [29141,"no"], + [29143,"no"], + [29145,"yes"], + [29147,"no"], + [29149,"no"], + [29151,"yes"], + [29153,"no"], + [29155,"no"], + [29157,"no"], + [29159,"no"], + [29161,"no"], + [29163,"no"], + [29165,"yes"], + [29167,"yes"], + [29169,"no"], + [29171,"no"], + [29173,"no"], + [29175,"no"], + [29177,"yes"], + [29179,"no"], + [29181,"no"], + [29183,"yes"], + [29185,"no"], + [29186,"no"], + [29187,"no"], + [29189,"yes"], + [29195,"no"], + [29197,"no"], + [29199,"no"], + [29201,"no"], + [29203,"no"], + [29205,"no"], + [29207,"no"], + [29209,"no"], + [29211,"no"], + [29213,"no"], + [29215,"no"], + [29217,"no"], + [29219,"yes"], + [29221,"no"], + [29223,"no"], + [29225,"yes"], + [29227,"no"], + [29229,"no"], + [29510,"yes"], + [30001,"no"], + [30003,"no"], + [30005,"no"], + [30007,"no"], + [30009,"yes"], + [30011,"no"], + [30013,"yes"], + [30015,"no"], + [30017,"no"], + [30019,"no"], + [30021,"no"], + [30023,"no"], + [30025,"no"], + [30027,"no"], + [30029,"no"], + [30031,"no"], + [30033,"no"], + [30035,"no"], + [30037,"yes"], + [30039,"no"], + [30041,"no"], + [30043,"no"], + [30045,"no"], + [30047,"no"], + [30049,"no"], + [30051,"no"], + [30053,"no"], + [30055,"no"], + [30057,"no"], + [30059,"no"], + [30061,"no"], + [30063,"yes"], + [30065,"no"], + [30067,"no"], + [30069,"no"], + [30071,"no"], + [30073,"no"], + [30075,"no"], + [30077,"no"], + [30079,"no"], + [30081,"no"], + [30083,"no"], + [30085,"no"], + [30087,"no"], + [30089,"no"], + [30091,"no"], + [30093,"no"], + [30095,"no"], + [30097,"no"], + [30099,"no"], + [30101,"no"], + [30103,"no"], + [30105,"no"], + [30107,"no"], + [30109,"no"], + [30111,"yes"], + [31001,"no"], + [31003,"no"], + [31005,"no"], + [31007,"no"], + [31009,"no"], + [31011,"no"], + [31013,"no"], + [31015,"no"], + [31017,"no"], + [31019,"no"], + [31021,"no"], + [31023,"no"], + [31025,"yes"], + [31027,"no"], + [31029,"no"], + [31031,"no"], + [31033,"no"], + [31035,"no"], + [31037,"no"], + [31039,"no"], + [31041,"no"], + [31043,"yes"], + [31045,"no"], + [31047,"no"], + [31049,"no"], + [31051,"yes"], + [31053,"no"], + [31055,"yes"], + [31057,"no"], + [31059,"no"], + [31061,"no"], + [31063,"no"], + [31065,"no"], + [31067,"no"], + [31069,"no"], + [31071,"no"], + [31073,"no"], + [31075,"no"], + [31077,"no"], + [31079,"yes"], + [31081,"yes"], + [31083,"no"], + [31085,"no"], + [31087,"no"], + [31089,"no"], + [31091,"no"], + [31093,"yes"], + [31095,"no"], + [31097,"no"], + [31099,"no"], + [31101,"no"], + [31103,"no"], + [31105,"no"], + [31107,"no"], + [31109,"yes"], + [31111,"no"], + [31113,"no"], + [31115,"no"], + [31117,"no"], + [31119,"no"], + [31121,"yes"], + [31123,"no"], + [31125,"no"], + [31127,"no"], + [31129,"no"], + [31131,"no"], + [31133,"no"], + [31135,"no"], + [31137,"no"], + [31139,"no"], + [31141,"no"], + [31143,"no"], + [31145,"no"], + [31147,"no"], + [31149,"no"], + [31151,"no"], + [31153,"yes"], + [31155,"yes"], + [31157,"no"], + [31159,"yes"], + [31161,"no"], + [31163,"no"], + [31165,"no"], + [31167,"no"], + [31169,"no"], + [31171,"no"], + [31173,"no"], + [31175,"no"], + [31177,"yes"], + [31179,"no"], + [31181,"no"], + [31183,"no"], + [31185,"no"], + [32001,"no"], + [32003,"yes"], + [32005,"no"], + [32007,"no"], + [32009,"no"], + [32011,"no"], + [32013,"no"], + [32015,"no"], + [32017,"no"], + [32019,"no"], + [32021,"no"], + [32023,"no"], + [32027,"no"], + [32029,"yes"], + [32031,"yes"], + [32033,"no"], + [32510,"yes"], + [33001,"no"], + [33003,"no"], + [33005,"no"], + [33007,"no"], + [33009,"no"], + [33011,"yes"], + [33013,"no"], + [33015,"yes"], + [33017,"yes"], + [33019,"no"], + [34001,"yes"], + [34003,"yes"], + [34005,"yes"], + [34007,"yes"], + [34009,"yes"], + [34011,"yes"], + [34013,"yes"], + [34015,"yes"], + [34017,"yes"], + [34019,"yes"], + [34021,"yes"], + [34023,"yes"], + [34025,"yes"], + [34027,"yes"], + [34029,"yes"], + [34031,"yes"], + [34033,"yes"], + [34035,"yes"], + [34037,"yes"], + [34039,"yes"], + [34041,"yes"], + [35001,"yes"], + [35003,"no"], + [35005,"no"], + [35006,"no"], + [35007,"no"], + [35009,"no"], + [35011,"no"], + [35013,"yes"], + [35015,"no"], + [35017,"no"], + [35019,"no"], + [35021,"no"], + [35023,"no"], + [35025,"no"], + [35027,"no"], + [35028,"no"], + [35029,"no"], + [35031,"no"], + [35033,"no"], + [35035,"no"], + [35037,"no"], + [35039,"no"], + [35041,"no"], + [35043,"yes"], + [35045,"yes"], + [35047,"no"], + [35049,"yes"], + [35051,"no"], + [35053,"no"], + [35055,"no"], + [35057,"yes"], + [35059,"no"], + [35061,"yes"], + [36001,"yes"], + [36003,"no"], + [36005,"yes"], + [36007,"yes"], + [36009,"no"], + [36011,"no"], + [36013,"no"], + [36015,"yes"], + [36017,"no"], + [36019,"no"], + [36021,"no"], + [36023,"no"], + [36025,"no"], + [36027,"yes"], + [36029,"yes"], + [36031,"no"], + [36033,"no"], + [36035,"no"], + [36037,"no"], + [36039,"no"], + [36041,"no"], + [36043,"yes"], + [36045,"yes"], + [36047,"yes"], + [36049,"no"], + [36051,"yes"], + [36053,"yes"], + [36055,"yes"], + [36057,"no"], + [36059,"yes"], + [36061,"yes"], + [36063,"yes"], + [36065,"yes"], + [36067,"yes"], + [36069,"yes"], + [36071,"yes"], + [36073,"yes"], + [36075,"yes"], + [36077,"no"], + [36079,"yes"], + [36081,"yes"], + [36083,"yes"], + [36085,"yes"], + [36087,"yes"], + [36089,"no"], + [36091,"yes"], + [36093,"yes"], + [36095,"yes"], + [36097,"no"], + [36099,"no"], + [36101,"no"], + [36103,"yes"], + [36105,"no"], + [36107,"yes"], + [36109,"yes"], + [36111,"yes"], + [36113,"yes"], + [36115,"yes"], + [36117,"yes"], + [36119,"yes"], + [36121,"no"], + [36123,"yes"], + [37001,"yes"], + [37003,"yes"], + [37005,"no"], + [37007,"no"], + [37009,"no"], + [37011,"no"], + [37013,"no"], + [37015,"no"], + [37017,"no"], + [37019,"yes"], + [37021,"yes"], + [37023,"yes"], + [37025,"yes"], + [37027,"yes"], + [37029,"no"], + [37031,"no"], + [37033,"no"], + [37035,"yes"], + [37037,"yes"], + [37039,"no"], + [37041,"no"], + [37043,"no"], + [37045,"no"], + [37047,"no"], + [37049,"yes"], + [37051,"yes"], + [37053,"yes"], + [37055,"no"], + [37057,"yes"], + [37059,"yes"], + [37061,"no"], + [37063,"yes"], + [37065,"yes"], + [37067,"yes"], + [37069,"yes"], + [37071,"yes"], + [37073,"yes"], + [37075,"no"], + [37077,"no"], + [37079,"no"], + [37081,"yes"], + [37083,"no"], + [37085,"no"], + [37087,"yes"], + [37089,"yes"], + [37091,"no"], + [37093,"yes"], + [37095,"no"], + [37097,"yes"], + [37099,"no"], + [37101,"yes"], + [37103,"yes"], + [37105,"no"], + [37107,"no"], + [37109,"yes"], + [37111,"no"], + [37113,"no"], + [37115,"yes"], + [37117,"no"], + [37119,"yes"], + [37121,"no"], + [37123,"no"], + [37125,"no"], + [37127,"yes"], + [37129,"yes"], + [37131,"no"], + [37133,"yes"], + [37135,"yes"], + [37137,"yes"], + [37139,"no"], + [37141,"yes"], + [37143,"no"], + [37145,"yes"], + [37147,"yes"], + [37149,"no"], + [37151,"yes"], + [37153,"no"], + [37155,"no"], + [37157,"yes"], + [37159,"yes"], + [37161,"no"], + [37163,"no"], + [37165,"no"], + [37167,"no"], + [37169,"yes"], + [37171,"no"], + [37173,"no"], + [37175,"no"], + [37177,"no"], + [37179,"yes"], + [37181,"no"], + [37183,"yes"], + [37185,"no"], + [37187,"no"], + [37189,"no"], + [37191,"yes"], + [37193,"no"], + [37195,"no"], + [37197,"yes"], + [37199,"no"], + [38001,"no"], + [38003,"no"], + [38005,"no"], + [38007,"no"], + [38009,"no"], + [38011,"no"], + [38013,"no"], + [38015,"yes"], + [38017,"yes"], + [38019,"no"], + [38021,"no"], + [38023,"no"], + [38025,"no"], + [38027,"no"], + [38029,"no"], + [38031,"no"], + [38033,"no"], + [38035,"yes"], + [38037,"no"], + [38039,"no"], + [38041,"no"], + [38043,"no"], + [38045,"no"], + [38047,"no"], + [38049,"no"], + [38051,"no"], + [38053,"no"], + [38055,"no"], + [38057,"no"], + [38059,"yes"], + [38061,"no"], + [38063,"no"], + [38065,"yes"], + [38067,"no"], + [38069,"no"], + [38071,"no"], + [38073,"no"], + [38075,"no"], + [38077,"no"], + [38079,"no"], + [38081,"no"], + [38083,"no"], + [38085,"yes"], + [38087,"no"], + [38089,"no"], + [38091,"no"], + [38093,"no"], + [38095,"no"], + [38097,"no"], + [38099,"no"], + [38101,"no"], + [38103,"no"], + [38105,"no"], + [39001,"no"], + [39003,"yes"], + [39005,"no"], + [39007,"no"], + [39009,"no"], + [39011,"no"], + [39013,"yes"], + [39015,"yes"], + [39017,"yes"], + [39019,"yes"], + [39021,"no"], + [39023,"yes"], + [39025,"yes"], + [39027,"no"], + [39029,"no"], + [39031,"no"], + [39033,"no"], + [39035,"yes"], + [39037,"no"], + [39039,"no"], + [39041,"yes"], + [39043,"no"], + [39045,"yes"], + [39047,"no"], + [39049,"yes"], + [39051,"yes"], + [39053,"no"], + [39055,"yes"], + [39057,"yes"], + [39059,"no"], + [39061,"yes"], + [39063,"no"], + [39065,"no"], + [39067,"no"], + [39069,"no"], + [39071,"no"], + [39073,"yes"], + [39075,"no"], + [39077,"no"], + [39079,"no"], + [39081,"yes"], + [39083,"no"], + [39085,"yes"], + [39087,"yes"], + [39089,"yes"], + [39091,"no"], + [39093,"yes"], + [39095,"yes"], + [39097,"yes"], + [39099,"yes"], + [39101,"no"], + [39103,"yes"], + [39105,"no"], + [39107,"no"], + [39109,"yes"], + [39111,"no"], + [39113,"yes"], + [39115,"no"], + [39117,"yes"], + [39119,"no"], + [39121,"no"], + [39123,"no"], + [39125,"no"], + [39127,"yes"], + [39129,"yes"], + [39131,"no"], + [39133,"yes"], + [39135,"no"], + [39137,"no"], + [39139,"yes"], + [39141,"no"], + [39143,"no"], + [39145,"no"], + [39147,"no"], + [39149,"no"], + [39151,"yes"], + [39153,"yes"], + [39155,"yes"], + [39157,"no"], + [39159,"yes"], + [39161,"no"], + [39163,"no"], + [39165,"yes"], + [39167,"no"], + [39169,"no"], + [39171,"no"], + [39173,"yes"], + [39175,"no"], + [40001,"no"], + [40003,"no"], + [40005,"no"], + [40007,"no"], + [40009,"no"], + [40011,"no"], + [40013,"no"], + [40015,"no"], + [40017,"yes"], + [40019,"no"], + [40021,"no"], + [40023,"no"], + [40025,"no"], + [40027,"yes"], + [40029,"no"], + [40031,"yes"], + [40033,"yes"], + [40035,"no"], + [40037,"yes"], + [40039,"no"], + [40041,"no"], + [40043,"no"], + [40045,"no"], + [40047,"no"], + [40049,"no"], + [40051,"yes"], + [40053,"no"], + [40055,"no"], + [40057,"no"], + [40059,"no"], + [40061,"no"], + [40063,"no"], + [40065,"no"], + [40067,"no"], + [40069,"no"], + [40071,"no"], + [40073,"no"], + [40075,"no"], + [40077,"no"], + [40079,"yes"], + [40081,"yes"], + [40083,"yes"], + [40085,"no"], + [40087,"yes"], + [40089,"no"], + [40091,"no"], + [40093,"no"], + [40095,"no"], + [40097,"no"], + [40099,"no"], + [40101,"no"], + [40103,"no"], + [40105,"no"], + [40107,"no"], + [40109,"yes"], + [40111,"yes"], + [40113,"yes"], + [40115,"no"], + [40117,"yes"], + [40119,"no"], + [40121,"no"], + [40123,"no"], + [40125,"no"], + [40127,"no"], + [40129,"no"], + [40131,"yes"], + [40133,"no"], + [40135,"yes"], + [40137,"no"], + [40139,"no"], + [40141,"no"], + [40143,"yes"], + [40145,"yes"], + [40147,"no"], + [40149,"no"], + [40151,"no"], + [40153,"no"], + [41001,"no"], + [41003,"yes"], + [41005,"yes"], + [41007,"no"], + [41009,"yes"], + [41011,"no"], + [41013,"no"], + [41015,"no"], + [41017,"yes"], + [41019,"no"], + [41021,"no"], + [41023,"no"], + [41025,"no"], + [41027,"no"], + [41029,"yes"], + [41031,"no"], + [41033,"yes"], + [41035,"no"], + [41037,"no"], + [41039,"yes"], + [41041,"no"], + [41043,"yes"], + [41045,"no"], + [41047,"yes"], + [41049,"no"], + [41051,"yes"], + [41053,"yes"], + [41055,"no"], + [41057,"no"], + [41059,"no"], + [41061,"no"], + [41063,"no"], + [41065,"no"], + [41067,"yes"], + [41069,"no"], + [41071,"yes"], + [42001,"yes"], + [42003,"yes"], + [42005,"yes"], + [42007,"yes"], + [42009,"no"], + [42011,"yes"], + [42013,"yes"], + [42015,"no"], + [42017,"yes"], + [42019,"yes"], + [42021,"yes"], + [42023,"no"], + [42025,"yes"], + [42027,"yes"], + [42029,"yes"], + [42031,"no"], + [42033,"no"], + [42035,"no"], + [42037,"yes"], + [42039,"no"], + [42041,"yes"], + [42043,"yes"], + [42045,"yes"], + [42047,"no"], + [42049,"yes"], + [42051,"yes"], + [42053,"no"], + [42055,"yes"], + [42057,"no"], + [42059,"no"], + [42061,"no"], + [42063,"no"], + [42065,"no"], + [42067,"no"], + [42069,"yes"], + [42071,"yes"], + [42073,"no"], + [42075,"yes"], + [42077,"yes"], + [42079,"yes"], + [42081,"yes"], + [42083,"no"], + [42085,"yes"], + [42087,"no"], + [42089,"yes"], + [42091,"yes"], + [42093,"yes"], + [42095,"yes"], + [42097,"no"], + [42099,"yes"], + [42101,"yes"], + [42103,"yes"], + [42105,"no"], + [42107,"no"], + [42109,"no"], + [42111,"no"], + [42113,"no"], + [42115,"no"], + [42117,"no"], + [42119,"no"], + [42121,"no"], + [42123,"no"], + [42125,"yes"], + [42127,"no"], + [42129,"yes"], + [42131,"yes"], + [42133,"yes"], + [44001,"yes"], + [44003,"yes"], + [44005,"yes"], + [44007,"yes"], + [44009,"yes"], + [45001,"no"], + [45003,"yes"], + [45005,"no"], + [45007,"yes"], + [45009,"no"], + [45011,"no"], + [45013,"yes"], + [45015,"yes"], + [45017,"yes"], + [45019,"yes"], + [45021,"no"], + [45023,"yes"], + [45025,"no"], + [45027,"no"], + [45029,"no"], + [45031,"yes"], + [45033,"no"], + [45035,"yes"], + [45037,"yes"], + [45039,"yes"], + [45041,"yes"], + [45043,"no"], + [45045,"yes"], + [45047,"no"], + [45049,"no"], + [45051,"yes"], + [45053,"yes"], + [45055,"yes"], + [45057,"yes"], + [45059,"yes"], + [45061,"no"], + [45063,"yes"], + [45065,"no"], + [45067,"no"], + [45069,"no"], + [45071,"no"], + [45073,"no"], + [45075,"no"], + [45077,"yes"], + [45079,"yes"], + [45081,"yes"], + [45083,"yes"], + [45085,"yes"], + [45087,"yes"], + [45089,"no"], + [45091,"yes"], + [46003,"no"], + [46005,"no"], + [46007,"no"], + [46009,"no"], + [46011,"no"], + [46013,"no"], + [46015,"no"], + [46017,"no"], + [46019,"no"], + [46021,"no"], + [46023,"no"], + [46025,"no"], + [46027,"no"], + [46029,"no"], + [46031,"no"], + [46033,"yes"], + [46035,"no"], + [46037,"no"], + [46039,"no"], + [46041,"no"], + [46043,"no"], + [46045,"no"], + [46047,"no"], + [46049,"no"], + [46051,"no"], + [46053,"no"], + [46055,"no"], + [46057,"no"], + [46059,"no"], + [46061,"no"], + [46063,"no"], + [46065,"no"], + [46067,"no"], + [46069,"no"], + [46071,"no"], + [46073,"no"], + [46075,"no"], + [46077,"no"], + [46079,"no"], + [46081,"no"], + [46083,"yes"], + [46085,"no"], + [46087,"yes"], + [46089,"no"], + [46091,"no"], + [46093,"yes"], + [46095,"no"], + [46097,"no"], + [46099,"yes"], + [46101,"no"], + [46102,"yes"], + [46103,"yes"], + [46105,"no"], + [46107,"no"], + [46109,"no"], + [46111,"no"], + [46115,"no"], + [46117,"no"], + [46119,"no"], + [46121,"no"], + [46123,"no"], + [46125,"yes"], + [46127,"yes"], + [46129,"no"], + [46135,"no"], + [46137,"no"], + [47001,"yes"], + [47003,"no"], + [47005,"no"], + [47007,"no"], + [47009,"yes"], + [47011,"yes"], + [47013,"yes"], + [47015,"yes"], + [47017,"no"], + [47019,"yes"], + [47021,"yes"], + [47023,"yes"], + [47025,"no"], + [47027,"no"], + [47029,"no"], + [47031,"no"], + [47033,"yes"], + [47035,"no"], + [47037,"yes"], + [47039,"no"], + [47041,"no"], + [47043,"yes"], + [47045,"no"], + [47047,"yes"], + [47049,"no"], + [47051,"no"], + [47053,"no"], + [47055,"no"], + [47057,"yes"], + [47059,"no"], + [47061,"no"], + [47063,"yes"], + [47065,"yes"], + [47067,"no"], + [47069,"no"], + [47071,"no"], + [47073,"yes"], + [47075,"no"], + [47077,"no"], + [47079,"no"], + [47081,"yes"], + [47083,"no"], + [47085,"no"], + [47087,"no"], + [47089,"yes"], + [47091,"no"], + [47093,"yes"], + [47095,"no"], + [47097,"no"], + [47099,"no"], + [47101,"no"], + [47103,"no"], + [47105,"yes"], + [47107,"no"], + [47109,"no"], + [47111,"yes"], + [47113,"yes"], + [47115,"yes"], + [47117,"no"], + [47119,"yes"], + [47121,"no"], + [47123,"no"], + [47125,"yes"], + [47127,"no"], + [47129,"yes"], + [47131,"no"], + [47133,"no"], + [47135,"no"], + [47137,"no"], + [47139,"yes"], + [47141,"no"], + [47143,"no"], + [47145,"yes"], + [47147,"yes"], + [47149,"yes"], + [47151,"no"], + [47153,"yes"], + [47155,"no"], + [47157,"yes"], + [47159,"yes"], + [47161,"no"], + [47163,"yes"], + [47165,"yes"], + [47167,"yes"], + [47169,"yes"], + [47171,"yes"], + [47173,"yes"], + [47175,"no"], + [47177,"no"], + [47179,"yes"], + [47181,"no"], + [47183,"no"], + [47185,"no"], + [47187,"yes"], + [47189,"yes"], + [48001,"no"], + [48003,"no"], + [48005,"no"], + [48007,"yes"], + [48009,"yes"], + [48011,"yes"], + [48013,"yes"], + [48015,"yes"], + [48017,"no"], + [48019,"yes"], + [48021,"yes"], + [48023,"no"], + [48025,"no"], + [48027,"yes"], + [48029,"yes"], + [48031,"no"], + [48033,"no"], + [48035,"no"], + [48037,"yes"], + [48039,"yes"], + [48041,"yes"], + [48043,"no"], + [48045,"no"], + [48047,"no"], + [48049,"no"], + [48051,"yes"], + [48053,"no"], + [48055,"yes"], + [48057,"no"], + [48059,"yes"], + [48061,"yes"], + [48063,"no"], + [48065,"yes"], + [48067,"no"], + [48069,"no"], + [48071,"yes"], + [48073,"no"], + [48075,"no"], + [48077,"yes"], + [48079,"no"], + [48081,"no"], + [48083,"no"], + [48085,"yes"], + [48087,"no"], + [48089,"no"], + [48091,"yes"], + [48093,"no"], + [48095,"no"], + [48097,"no"], + [48099,"yes"], + [48101,"no"], + [48103,"no"], + [48105,"no"], + [48107,"yes"], + [48109,"no"], + [48111,"no"], + [48113,"yes"], + [48115,"no"], + [48117,"no"], + [48119,"no"], + [48121,"yes"], + [48123,"no"], + [48125,"no"], + [48127,"no"], + [48129,"no"], + [48131,"no"], + [48133,"no"], + [48135,"yes"], + [48137,"no"], + [48139,"yes"], + [48141,"yes"], + [48143,"no"], + [48145,"yes"], + [48147,"no"], + [48149,"no"], + [48151,"no"], + [48153,"no"], + [48155,"no"], + [48157,"yes"], + [48159,"no"], + [48161,"no"], + [48163,"no"], + [48165,"no"], + [48167,"yes"], + [48169,"no"], + [48171,"no"], + [48173,"no"], + [48175,"yes"], + [48177,"no"], + [48179,"no"], + [48181,"yes"], + [48183,"yes"], + [48185,"no"], + [48187,"yes"], + [48189,"no"], + [48191,"no"], + [48193,"no"], + [48195,"no"], + [48197,"no"], + [48199,"yes"], + [48201,"yes"], + [48203,"no"], + [48205,"no"], + [48207,"no"], + [48209,"yes"], + [48211,"no"], + [48213,"no"], + [48215,"yes"], + [48217,"no"], + [48219,"no"], + [48221,"yes"], + [48223,"no"], + [48225,"no"], + [48227,"no"], + [48229,"yes"], + [48231,"yes"], + [48233,"no"], + [48235,"yes"], + [48237,"no"], + [48239,"no"], + [48241,"no"], + [48243,"no"], + [48245,"yes"], + [48247,"no"], + [48249,"no"], + [48251,"yes"], + [48253,"yes"], + [48255,"no"], + [48257,"yes"], + [48259,"yes"], + [48261,"no"], + [48263,"no"], + [48265,"no"], + [48267,"no"], + [48269,"no"], + [48271,"no"], + [48273,"no"], + [48275,"no"], + [48277,"no"], + [48279,"no"], + [48281,"yes"], + [48283,"no"], + [48285,"no"], + [48287,"no"], + [48289,"no"], + [48291,"yes"], + [48293,"no"], + [48295,"no"], + [48297,"no"], + [48299,"no"], + [48301,"no"], + [48303,"yes"], + [48305,"yes"], + [48307,"no"], + [48309,"yes"], + [48311,"no"], + [48313,"no"], + [48315,"no"], + [48317,"yes"], + [48319,"no"], + [48321,"no"], + [48323,"no"], + [48325,"yes"], + [48327,"no"], + [48329,"yes"], + [48331,"no"], + [48333,"no"], + [48335,"no"], + [48337,"no"], + [48339,"yes"], + [48341,"no"], + [48343,"no"], + [48345,"no"], + [48347,"no"], + [48349,"no"], + [48351,"yes"], + [48353,"no"], + [48355,"yes"], + [48357,"no"], + [48359,"yes"], + [48361,"yes"], + [48363,"no"], + [48365,"no"], + [48367,"yes"], + [48369,"no"], + [48371,"no"], + [48373,"no"], + [48375,"yes"], + [48377,"no"], + [48379,"no"], + [48381,"yes"], + [48383,"no"], + [48385,"no"], + [48387,"no"], + [48389,"no"], + [48391,"no"], + [48393,"no"], + [48395,"yes"], + [48397,"yes"], + [48399,"no"], + [48401,"yes"], + [48403,"no"], + [48405,"no"], + [48407,"no"], + [48409,"yes"], + [48411,"no"], + [48413,"no"], + [48415,"no"], + [48417,"no"], + [48419,"no"], + [48421,"no"], + [48423,"yes"], + [48425,"yes"], + [48427,"no"], + [48429,"no"], + [48431,"no"], + [48433,"no"], + [48435,"no"], + [48437,"no"], + [48439,"yes"], + [48441,"yes"], + [48443,"no"], + [48445,"no"], + [48447,"no"], + [48449,"no"], + [48451,"yes"], + [48453,"yes"], + [48455,"no"], + [48457,"no"], + [48459,"yes"], + [48461,"no"], + [48463,"no"], + [48465,"no"], + [48467,"no"], + [48469,"yes"], + [48471,"no"], + [48473,"yes"], + [48475,"no"], + [48477,"no"], + [48479,"yes"], + [48481,"no"], + [48483,"no"], + [48485,"yes"], + [48487,"no"], + [48489,"no"], + [48491,"yes"], + [48493,"yes"], + [48495,"no"], + [48497,"yes"], + [48499,"no"], + [48501,"no"], + [48503,"no"], + [48505,"no"], + [48507,"no"], + [49001,"no"], + [49003,"yes"], + [49005,"yes"], + [49007,"no"], + [49009,"no"], + [49011,"yes"], + [49013,"no"], + [49015,"no"], + [49017,"no"], + [49019,"no"], + [49021,"no"], + [49023,"yes"], + [49025,"no"], + [49027,"no"], + [49029,"yes"], + [49031,"no"], + [49033,"no"], + [49035,"yes"], + [49037,"no"], + [49039,"no"], + [49041,"no"], + [49043,"no"], + [49045,"yes"], + [49047,"no"], + [49049,"yes"], + [49051,"no"], + [49053,"yes"], + [49055,"no"], + [49057,"yes"], + [50001,"no"], + [50003,"no"], + [50005,"no"], + [50007,"yes"], + [50009,"no"], + [50011,"yes"], + [50013,"yes"], + [50015,"no"], + [50017,"no"], + [50019,"no"], + [50021,"no"], + [50023,"no"], + [50025,"no"], + [50027,"no"], + [51001,"no"], + [51003,"yes"], + [51005,"no"], + [51007,"yes"], + [51009,"yes"], + [51011,"yes"], + [51013,"yes"], + [51015,"yes"], + [51017,"no"], + [51019,"yes"], + [51021,"no"], + [51023,"yes"], + [51025,"no"], + [51027,"no"], + [51029,"yes"], + [51031,"yes"], + [51033,"yes"], + [51035,"no"], + [51036,"yes"], + [51037,"no"], + [51041,"yes"], + [51043,"yes"], + [51045,"yes"], + [51047,"yes"], + [51049,"no"], + [51051,"no"], + [51053,"yes"], + [51057,"no"], + [51059,"yes"], + [51061,"yes"], + [51063,"yes"], + [51065,"yes"], + [51067,"yes"], + [51069,"yes"], + [51071,"yes"], + [51073,"yes"], + [51075,"yes"], + [51077,"no"], + [51079,"yes"], + [51081,"no"], + [51083,"no"], + [51085,"yes"], + [51087,"yes"], + [51089,"no"], + [51091,"no"], + [51093,"yes"], + [51095,"yes"], + [51097,"no"], + [51099,"no"], + [51101,"yes"], + [51103,"no"], + [51105,"no"], + [51107,"yes"], + [51109,"no"], + [51111,"no"], + [51113,"no"], + [51115,"yes"], + [51117,"no"], + [51119,"no"], + [51121,"yes"], + [51125,"yes"], + [51127,"yes"], + [51131,"no"], + [51133,"no"], + [51135,"no"], + [51137,"no"], + [51139,"no"], + [51141,"no"], + [51143,"no"], + [51145,"yes"], + [51147,"no"], + [51149,"yes"], + [51153,"yes"], + [51155,"yes"], + [51157,"yes"], + [51159,"no"], + [51161,"yes"], + [51163,"no"], + [51165,"yes"], + [51167,"no"], + [51169,"yes"], + [51171,"no"], + [51173,"no"], + [51175,"no"], + [51177,"yes"], + [51179,"yes"], + [51181,"no"], + [51183,"yes"], + [51185,"no"], + [51187,"yes"], + [51191,"yes"], + [51193,"no"], + [51195,"no"], + [51197,"no"], + [51199,"yes"], + [51510,"yes"], + [51520,"yes"], + [51530,"no"], + [51540,"yes"], + [51550,"yes"], + [51570,"yes"], + [51580,"no"], + [51590,"no"], + [51595,"no"], + [51600,"yes"], + [51610,"yes"], + [51620,"no"], + [51630,"yes"], + [51640,"no"], + [51650,"yes"], + [51660,"yes"], + [51670,"yes"], + [51678,"no"], + [51680,"yes"], + [51683,"yes"], + [51685,"yes"], + [51690,"no"], + [51700,"yes"], + [51710,"yes"], + [51720,"no"], + [51730,"yes"], + [51735,"yes"], + [51740,"yes"], + [51750,"yes"], + [51760,"yes"], + [51770,"yes"], + [51775,"yes"], + [51790,"yes"], + [51800,"yes"], + [51810,"yes"], + [51820,"yes"], + [51830,"yes"], + [51840,"yes"], + [53001,"no"], + [53003,"yes"], + [53005,"yes"], + [53007,"yes"], + [53009,"no"], + [53011,"yes"], + [53013,"yes"], + [53015,"yes"], + [53017,"yes"], + [53019,"no"], + [53021,"yes"], + [53023,"no"], + [53025,"no"], + [53027,"no"], + [53029,"no"], + [53031,"no"], + [53033,"yes"], + [53035,"yes"], + [53037,"no"], + [53039,"no"], + [53041,"no"], + [53043,"no"], + [53045,"no"], + [53047,"no"], + [53049,"no"], + [53051,"yes"], + [53053,"yes"], + [53055,"no"], + [53057,"yes"], + [53059,"yes"], + [53061,"yes"], + [53063,"yes"], + [53065,"yes"], + [53067,"yes"], + [53069,"no"], + [53071,"yes"], + [53073,"yes"], + [53075,"no"], + [53077,"yes"], + [54001,"no"], + [54003,"yes"], + [54005,"yes"], + [54007,"no"], + [54009,"yes"], + [54011,"yes"], + [54013,"no"], + [54015,"yes"], + [54017,"no"], + [54019,"yes"], + [54021,"no"], + [54023,"no"], + [54025,"no"], + [54027,"yes"], + [54029,"yes"], + [54031,"no"], + [54033,"no"], + [54035,"no"], + [54037,"yes"], + [54039,"yes"], + [54041,"no"], + [54043,"yes"], + [54045,"no"], + [54047,"no"], + [54049,"no"], + [54051,"yes"], + [54053,"no"], + [54055,"no"], + [54057,"yes"], + [54059,"no"], + [54061,"yes"], + [54063,"no"], + [54065,"no"], + [54067,"no"], + [54069,"yes"], + [54071,"no"], + [54073,"no"], + [54075,"no"], + [54077,"yes"], + [54079,"yes"], + [54081,"yes"], + [54083,"no"], + [54085,"no"], + [54087,"no"], + [54089,"no"], + [54091,"no"], + [54093,"no"], + [54095,"no"], + [54097,"no"], + [54099,"yes"], + [54101,"no"], + [54103,"no"], + [54105,"yes"], + [54107,"yes"], + [54109,"no"], + [55001,"no"], + [55003,"no"], + [55005,"no"], + [55007,"no"], + [55009,"yes"], + [55011,"no"], + [55013,"no"], + [55015,"yes"], + [55017,"yes"], + [55019,"no"], + [55021,"yes"], + [55023,"no"], + [55025,"yes"], + [55027,"no"], + [55029,"no"], + [55031,"yes"], + [55033,"no"], + [55035,"yes"], + [55037,"no"], + [55039,"yes"], + [55041,"no"], + [55043,"no"], + [55045,"yes"], + [55047,"no"], + [55049,"yes"], + [55051,"no"], + [55053,"no"], + [55055,"no"], + [55057,"no"], + [55059,"yes"], + [55061,"yes"], + [55063,"yes"], + [55065,"no"], + [55067,"no"], + [55069,"no"], + [55071,"no"], + [55073,"yes"], + [55075,"no"], + [55077,"no"], + [55078,"no"], + [55079,"yes"], + [55081,"no"], + [55083,"yes"], + [55085,"no"], + [55087,"yes"], + [55089,"yes"], + [55091,"no"], + [55093,"yes"], + [55095,"no"], + [55097,"no"], + [55099,"no"], + [55101,"yes"], + [55103,"no"], + [55105,"yes"], + [55107,"no"], + [55109,"yes"], + [55111,"no"], + [55113,"no"], + [55115,"no"], + [55117,"yes"], + [55119,"no"], + [55121,"no"], + [55123,"no"], + [55125,"no"], + [55127,"no"], + [55129,"no"], + [55131,"yes"], + [55133,"yes"], + [55135,"no"], + [55137,"no"], + [55139,"yes"], + [55141,"no"], + [56001,"no"], + [56003,"no"], + [56005,"no"], + [56007,"no"], + [56009,"no"], + [56011,"no"], + [56013,"no"], + [56015,"no"], + [56017,"no"], + [56019,"no"], + [56021,"yes"], + [56023,"no"], + [56025,"yes"], + [56027,"no"], + [56029,"no"], + [56031,"no"], + [56033,"no"], + [56035,"no"], + [56037,"no"], + [56039,"no"], + [56041,"no"], + [56043,"no"], + [56045,"no"] + ] +} diff --git a/data/regional/united-states/health/drugs/us-smoking-ban-2010.json b/data/regional/united-states/health/drugs/us-smoking-ban-2010.json new file mode 100644 index 0000000..6911b1d --- /dev/null +++ b/data/regional/united-states/health/drugs/us-smoking-ban-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Smoking Ban", + "description" : "Describes whether the type of county-level smoking ban in place.", + "units" : "laws", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","smoking","tabacco","bans","laws"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.smoking_ban_2010"], + [1001,"none"], + [1003,"none"], + [1005,"partial"], + [1007,"none"], + [1009,"none"], + [1011,"none"], + [1013,"comprehensive"], + [1015,"comprehensive"], + [1017,"none"], + [1019,"none"], + [1021,"none"], + [1023,"none"], + [1025,"none"], + [1027,"none"], + [1029,"none"], + [1031,"none"], + [1033,"none"], + [1035,"none"], + [1037,"none"], + [1039,"none"], + [1041,"none"], + [1043,"none"], + [1045,"none"], + [1047,"none"], + [1049,"none"], + [1051,"partial"], + [1053,"none"], + [1055,"none"], + [1057,"none"], + [1059,"partial"], + [1061,"none"], + [1063,"comprehensive"], + [1065,"none"], + [1067,"none"], + [1069,"none"], + [1071,"comprehensive"], + [1073,"none"], + [1075,"none"], + [1077,"none"], + [1079,"none"], + [1081,"none"], + [1083,"none"], + [1085,"none"], + [1087,"none"], + [1089,"comprehensive"], + [1091,"none"], + [1093,"none"], + [1095,"partial"], + [1097,"none"], + [1099,"none"], + [1101,"none"], + [1103,"partial"], + [1105,"none"], + [1107,"none"], + [1109,"none"], + [1111,"none"], + [1113,"none"], + [1115,"none"], + [1117,"comprehensive"], + [1119,"partial"], + [1121,"none"], + [1123,"none"], + [1125,"none"], + [1127,"none"], + [1129,"none"], + [1131,"none"], + [1133,"none"], + [2013,"NA"], + [2016,"none"], + [2020,"none"], + [2050,"none"], + [2060,"none"], + [2068,"none"], + [2070,"none"], + [2090,"none"], + [2100,"none"], + [2105,"NA"], + [2110,"none"], + [2122,"none"], + [2130,"none"], + [2150,"none"], + [2158,"none"], + [2164,"none"], + [2170,"none"], + [2180,"none"], + [2185,"none"], + [2188,"none"], + [2195,"NA"], + [2198,"NA"], + [2220,"none"], + [2230,"NA"], + [2240,"none"], + [2261,"none"], + [2275,"NA"], + [2282,"NA"], + [2290,"none"], + [4001,"comprehensive"], + [4003,"comprehensive"], + [4005,"none"], + [4007,"comprehensive"], + [4009,"none"], + [4011,"comprehensive"], + [4012,"comprehensive"], + [4013,"partial"], + [4015,"comprehensive"], + [4017,"comprehensive"], + [4019,"comprehensive"], + [4021,"comprehensive"], + [4023,"comprehensive"], + [4025,"partial"], + [4027,"partial"], + [5001,"none"], + [5003,"none"], + [5005,"none"], + [5007,"none"], + [5009,"none"], + [5011,"none"], + [5013,"comprehensive"], + [5015,"none"], + [5017,"none"], + [5019,"partial"], + [5021,"none"], + [5023,"none"], + [5025,"none"], + [5027,"none"], + [5029,"none"], + [5031,"none"], + [5033,"none"], + [5035,"none"], + [5037,"none"], + [5039,"none"], + [5041,"none"], + [5043,"none"], + [5045,"none"], + [5047,"partial"], + [5049,"none"], + [5051,"none"], + [5053,"comprehensive"], + [5055,"comprehensive"], + [5057,"none"], + [5059,"none"], + [5061,"none"], + [5063,"none"], + [5065,"none"], + [5067,"comprehensive"], + [5069,"none"], + [5071,"none"], + [5073,"partial"], + [5075,"none"], + [5077,"none"], + [5079,"partial"], + [5081,"none"], + [5083,"none"], + [5085,"none"], + [5087,"comprehensive"], + [5089,"none"], + [5091,"none"], + [5093,"none"], + [5095,"none"], + [5097,"none"], + [5099,"none"], + [5101,"none"], + [5103,"none"], + [5105,"none"], + [5107,"partial"], + [5109,"none"], + [5111,"none"], + [5113,"none"], + [5115,"comprehensive"], + [5117,"partial"], + [5119,"none"], + [5121,"none"], + [5123,"none"], + [5125,"none"], + [5127,"none"], + [5129,"none"], + [5131,"none"], + [5133,"partial"], + [5135,"none"], + [5137,"none"], + [5139,"none"], + [5141,"none"], + [5143,"none"], + [5145,"comprehensive"], + [5147,"none"], + [5149,"none"], + [6001,"none"], + [6003,"none"], + [6005,"none"], + [6007,"none"], + [6009,"none"], + [6011,"none"], + [6013,"partial"], + [6015,"none"], + [6017,"none"], + [6019,"none"], + [6021,"none"], + [6023,"comprehensive"], + [6025,"none"], + [6027,"none"], + [6029,"none"], + [6031,"comprehensive"], + [6033,"comprehensive"], + [6035,"none"], + [6037,"none"], + [6039,"none"], + [6041,"partial"], + [6043,"none"], + [6045,"none"], + [6047,"none"], + [6049,"none"], + [6051,"none"], + [6053,"none"], + [6055,"none"], + [6057,"none"], + [6059,"none"], + [6061,"none"], + [6063,"none"], + [6065,"none"], + [6067,"none"], + [6069,"none"], + [6071,"none"], + [6073,"none"], + [6075,"none"], + [6077,"none"], + [6079,"none"], + [6081,"none"], + [6083,"none"], + [6085,"none"], + [6087,"comprehensive"], + [6089,"none"], + [6091,"none"], + [6093,"none"], + [6095,"none"], + [6097,"none"], + [6099,"none"], + [6101,"none"], + [6103,"none"], + [6105,"none"], + [6107,"none"], + [6109,"none"], + [6111,"none"], + [6113,"none"], + [6115,"none"], + [8001,"comprehensive"], + [8003,"partial"], + [8005,"partial"], + [8007,"partial"], + [8009,"partial"], + [8011,"partial"], + [8013,"partial"], + [8014,"NA"], + [8015,"partial"], + [8017,"partial"], + [8019,"partial"], + [8021,"partial"], + [8023,"none"], + [8025,"partial"], + [8027,"none"], + [8029,"none"], + [8031,"partial"], + [8033,"partial"], + [8035,"partial"], + [8037,"partial"], + [8039,"partial"], + [8041,"none"], + [8043,"none"], + [8045,"comprehensive"], + [8047,"none"], + [8049,"partial"], + [8051,"partial"], + [8053,"partial"], + [8055,"partial"], + [8057,"comprehensive"], + [8059,"none"], + [8061,"none"], + [8063,"partial"], + [8065,"comprehensive"], + [8067,"partial"], + [8069,"none"], + [8071,"partial"], + [8073,"partial"], + [8075,"none"], + [8077,"none"], + [8079,"partial"], + [8081,"partial"], + [8083,"partial"], + [8085,"partial"], + [8087,"partial"], + [8089,"partial"], + [8091,"partial"], + [8093,"partial"], + [8095,"partial"], + [8097,"none"], + [8099,"partial"], + [8101,"none"], + [8103,"partial"], + [8105,"none"], + [8107,"partial"], + [8109,"partial"], + [8111,"comprehensive"], + [8113,"partial"], + [8115,"none"], + [8117,"partial"], + [8119,"partial"], + [8121,"none"], + [8123,"partial"], + [8125,"partial"], + [9001,"comprehensive"], + [9003,"partial"], + [9005,"partial"], + [9007,"none"], + [9009,"partial"], + [9011,"partial"], + [9013,"partial"], + [9015,"partial"], + [10001,"none"], + [10003,"comprehensive"], + [10005,"comprehensive"], + [11001,"none"], + [12001,"partial"], + [12003,"none"], + [12005,"none"], + [12007,"partial"], + [12009,"partial"], + [12011,"partial"], + [12013,"comprehensive"], + [12015,"none"], + [12017,"partial"], + [12019,"none"], + [12021,"partial"], + [12023,"none"], + [12027,"none"], + [12029,"partial"], + [12031,"partial"], + [12033,"none"], + [12035,"partial"], + [12037,"partial"], + [12039,"partial"], + [12041,"partial"], + [12043,"partial"], + [12045,"partial"], + [12047,"none"], + [12049,"partial"], + [12051,"partial"], + [12053,"partial"], + [12055,"partial"], + [12057,"partial"], + [12059,"comprehensive"], + [12061,"partial"], + [12063,"comprehensive"], + [12065,"none"], + [12067,"partial"], + [12069,"comprehensive"], + [12071,"none"], + [12073,"none"], + [12075,"partial"], + [12077,"partial"], + [12079,"comprehensive"], + [12081,"partial"], + [12083,"none"], + [12085,"none"], + [12086,"partial"], + [12087,"none"], + [12089,"comprehensive"], + [12091,"partial"], + [12093,"partial"], + [12095,"none"], + [12097,"comprehensive"], + [12099,"partial"], + [12101,"partial"], + [12103,"partial"], + [12105,"none"], + [12107,"comprehensive"], + [12109,"partial"], + [12111,"partial"], + [12113,"partial"], + [12115,"partial"], + [12117,"none"], + [12119,"partial"], + [12121,"partial"], + [12123,"none"], + [12125,"none"], + [12127,"partial"], + [12129,"partial"], + [12131,"none"], + [12133,"none"], + [13001,"none"], + [13003,"none"], + [13005,"none"], + [13007,"none"], + [13009,"none"], + [13011,"none"], + [13013,"none"], + [13015,"none"], + [13017,"none"], + [13019,"none"], + [13021,"none"], + [13023,"none"], + [13025,"none"], + [13027,"none"], + [13029,"none"], + [13031,"none"], + [13033,"none"], + [13035,"none"], + [13037,"comprehensive"], + [13039,"comprehensive"], + [13043,"none"], + [13045,"none"], + [13047,"none"], + [13049,"none"], + [13051,"none"], + [13053,"none"], + [13055,"none"], + [13057,"none"], + [13059,"none"], + [13061,"none"], + [13063,"comprehensive"], + [13065,"none"], + [13067,"none"], + [13069,"none"], + [13071,"none"], + [13073,"none"], + [13075,"comprehensive"], + [13077,"none"], + [13079,"none"], + [13081,"none"], + [13083,"none"], + [13085,"none"], + [13087,"none"], + [13089,"none"], + [13091,"comprehensive"], + [13093,"none"], + [13095,"none"], + [13097,"partial"], + [13099,"NA"], + [13101,"NA"], + [13103,"partial"], + [13105,"partial"], + [13107,"none"], + [13109,"none"], + [13111,"none"], + [13113,"none"], + [13115,"comprehensive"], + [13117,"none"], + [13119,"partial"], + [13121,"none"], + [13123,"none"], + [13125,"none"], + [13127,"none"], + [13129,"none"], + [13131,"none"], + [13133,"comprehensive"], + [13135,"none"], + [13137,"none"], + [13139,"none"], + [13141,"none"], + [13143,"none"], + [13145,"none"], + [13147,"none"], + [13149,"none"], + [13151,"none"], + [13153,"none"], + [13155,"none"], + [13157,"comprehensive"], + [13159,"none"], + [13161,"none"], + [13163,"none"], + [13165,"none"], + [13167,"none"], + [13169,"none"], + [13171,"none"], + [13173,"none"], + [13175,"none"], + [13177,"none"], + [13179,"partial"], + [13181,"partial"], + [13183,"none"], + [13185,"none"], + [13187,"none"], + [13189,"none"], + [13191,"partial"], + [13193,"none"], + [13195,"comprehensive"], + [13197,"none"], + [13199,"none"], + [13201,"none"], + [13205,"comprehensive"], + [13207,"none"], + [13209,"none"], + [13211,"partial"], + [13213,"none"], + [13215,"none"], + [13217,"none"], + [13219,"none"], + [13221,"none"], + [13223,"none"], + [13225,"none"], + [13227,"none"], + [13229,"partial"], + [13231,"none"], + [13233,"none"], + [13235,"none"], + [13237,"comprehensive"], + [13239,"none"], + [13241,"none"], + [13243,"none"], + [13245,"comprehensive"], + [13247,"none"], + [13249,"none"], + [13251,"none"], + [13253,"none"], + [13255,"none"], + [13257,"none"], + [13259,"none"], + [13261,"partial"], + [13263,"comprehensive"], + [13265,"none"], + [13267,"none"], + [13269,"none"], + [13271,"none"], + [13273,"none"], + [13275,"none"], + [13277,"partial"], + [13279,"none"], + [13281,"none"], + [13283,"none"], + [13285,"none"], + [13287,"partial"], + [13289,"none"], + [13291,"none"], + [13293,"none"], + [13295,"none"], + [13297,"none"], + [13299,"none"], + [13301,"none"], + [13303,"none"], + [13305,"none"], + [13307,"none"], + [13309,"none"], + [13311,"comprehensive"], + [13313,"none"], + [13315,"none"], + [13317,"none"], + [13319,"none"], + [13321,"none"], + [15001,"comprehensive"], + [15003,"partial"], + [15005,"NA"], + [15007,"comprehensive"], + [15009,"comprehensive"], + [16001,"partial"], + [16003,"comprehensive"], + [16005,"partial"], + [16007,"partial"], + [16009,"partial"], + [16011,"partial"], + [16013,"partial"], + [16015,"partial"], + [16017,"partial"], + [16019,"partial"], + [16021,"partial"], + [16023,"none"], + [16025,"partial"], + [16027,"partial"], + [16029,"partial"], + [16031,"partial"], + [16033,"partial"], + [16035,"partial"], + [16037,"none"], + [16039,"partial"], + [16041,"partial"], + [16043,"none"], + [16045,"partial"], + [16047,"partial"], + [16049,"partial"], + [16051,"none"], + [16053,"partial"], + [16055,"partial"], + [16057,"partial"], + [16059,"partial"], + [16061,"partial"], + [16063,"partial"], + [16065,"comprehensive"], + [16067,"partial"], + [16069,"partial"], + [16071,"none"], + [16073,"partial"], + [16075,"partial"], + [16077,"partial"], + [16079,"partial"], + [16081,"partial"], + [16083,"partial"], + [16085,"partial"], + [16087,"none"], + [17001,"comprehensive"], + [17003,"none"], + [17005,"comprehensive"], + [17007,"none"], + [17009,"none"], + [17011,"comprehensive"], + [17013,"comprehensive"], + [17015,"none"], + [17017,"none"], + [17019,"comprehensive"], + [17021,"comprehensive"], + [17023,"partial"], + [17025,"none"], + [17027,"comprehensive"], + [17029,"comprehensive"], + [17031,"comprehensive"], + [17033,"none"], + [17035,"none"], + [17037,"none"], + [17039,"comprehensive"], + [17041,"partial"], + [17043,"comprehensive"], + [17045,"comprehensive"], + [17047,"comprehensive"], + [17049,"partial"], + [17051,"none"], + [17053,"none"], + [17055,"partial"], + [17057,"none"], + [17059,"comprehensive"], + [17061,"comprehensive"], + [17063,"comprehensive"], + [17065,"none"], + [17067,"none"], + [17069,"none"], + [17071,"none"], + [17073,"none"], + [17075,"comprehensive"], + [17077,"comprehensive"], + [17079,"none"], + [17081,"none"], + [17083,"comprehensive"], + [17085,"comprehensive"], + [17087,"none"], + [17089,"none"], + [17091,"comprehensive"], + [17093,"none"], + [17095,"none"], + [17097,"comprehensive"], + [17099,"comprehensive"], + [17101,"none"], + [17103,"none"], + [17105,"none"], + [17107,"none"], + [17109,"comprehensive"], + [17111,"partial"], + [17113,"none"], + [17115,"none"], + [17117,"comprehensive"], + [17119,"comprehensive"], + [17121,"none"], + [17123,"partial"], + [17125,"comprehensive"], + [17127,"comprehensive"], + [17129,"comprehensive"], + [17131,"comprehensive"], + [17133,"none"], + [17135,"none"], + [17137,"partial"], + [17139,"comprehensive"], + [17141,"comprehensive"], + [17143,"comprehensive"], + [17145,"none"], + [17147,"comprehensive"], + [17149,"none"], + [17151,"comprehensive"], + [17153,"none"], + [17155,"comprehensive"], + [17157,"none"], + [17159,"partial"], + [17161,"none"], + [17163,"none"], + [17165,"none"], + [17167,"comprehensive"], + [17169,"comprehensive"], + [17171,"none"], + [17173,"comprehensive"], + [17175,"comprehensive"], + [17177,"comprehensive"], + [17179,"none"], + [17181,"none"], + [17183,"comprehensive"], + [17185,"comprehensive"], + [17187,"none"], + [17189,"none"], + [17191,"none"], + [17193,"comprehensive"], + [17195,"comprehensive"], + [17197,"comprehensive"], + [17199,"comprehensive"], + [17201,"none"], + [17203,"none"], + [18001,"comprehensive"], + [18003,"none"], + [18005,"none"], + [18007,"none"], + [18009,"none"], + [18011,"none"], + [18013,"none"], + [18015,"none"], + [18017,"none"], + [18019,"partial"], + [18021,"none"], + [18023,"comprehensive"], + [18025,"none"], + [18027,"none"], + [18029,"none"], + [18031,"none"], + [18033,"NA"], + [18035,"comprehensive"], + [18037,"none"], + [18039,"none"], + [18041,"none"], + [18043,"comprehensive"], + [18045,"none"], + [18047,"partial"], + [18049,"none"], + [18051,"none"], + [18053,"comprehensive"], + [18055,"comprehensive"], + [18057,"none"], + [18059,"none"], + [18061,"none"], + [18063,"none"], + [18065,"none"], + [18067,"none"], + [18069,"none"], + [18071,"comprehensive"], + [18073,"none"], + [18075,"none"], + [18077,"none"], + [18079,"none"], + [18081,"none"], + [18083,"none"], + [18085,"none"], + [18087,"NA"], + [18089,"comprehensive"], + [18091,"NA"], + [18093,"none"], + [18095,"comprehensive"], + [18097,"none"], + [18099,"partial"], + [18101,"none"], + [18103,"none"], + [18105,"none"], + [18107,"none"], + [18109,"partial"], + [18111,"none"], + [18113,"none"], + [18115,"comprehensive"], + [18117,"none"], + [18119,"none"], + [18121,"none"], + [18123,"none"], + [18125,"none"], + [18127,"none"], + [18129,"none"], + [18131,"none"], + [18133,"comprehensive"], + [18135,"none"], + [18137,"none"], + [18139,"none"], + [18141,"none"], + [18143,"none"], + [18145,"comprehensive"], + [18147,"none"], + [18149,"none"], + [18151,"comprehensive"], + [18153,"none"], + [18155,"none"], + [18157,"none"], + [18159,"none"], + [18161,"none"], + [18163,"none"], + [18165,"none"], + [18167,"none"], + [18169,"comprehensive"], + [18171,"none"], + [18173,"none"], + [18175,"none"], + [18177,"none"], + [18179,"none"], + [18181,"comprehensive"], + [18183,"none"], + [19001,"comprehensive"], + [19003,"comprehensive"], + [19005,"comprehensive"], + [19007,"comprehensive"], + [19009,"comprehensive"], + [19011,"none"], + [19013,"comprehensive"], + [19015,"none"], + [19017,"comprehensive"], + [19019,"none"], + [19021,"comprehensive"], + [19023,"comprehensive"], + [19025,"comprehensive"], + [19027,"none"], + [19029,"none"], + [19031,"comprehensive"], + [19033,"comprehensive"], + [19035,"none"], + [19037,"comprehensive"], + [19039,"none"], + [19041,"none"], + [19043,"comprehensive"], + [19045,"comprehensive"], + [19047,"none"], + [19049,"none"], + [19051,"partial"], + [19053,"none"], + [19055,"comprehensive"], + [19057,"comprehensive"], + [19059,"none"], + [19061,"comprehensive"], + [19063,"none"], + [19065,"none"], + [19067,"comprehensive"], + [19069,"partial"], + [19071,"none"], + [19073,"comprehensive"], + [19075,"comprehensive"], + [19077,"comprehensive"], + [19079,"none"], + [19081,"none"], + [19083,"none"], + [19085,"none"], + [19087,"none"], + [19089,"none"], + [19091,"comprehensive"], + [19093,"comprehensive"], + [19095,"comprehensive"], + [19097,"comprehensive"], + [19099,"none"], + [19101,"none"], + [19103,"none"], + [19105,"none"], + [19107,"comprehensive"], + [19109,"comprehensive"], + [19111,"none"], + [19113,"none"], + [19115,"none"], + [19117,"comprehensive"], + [19119,"none"], + [19121,"comprehensive"], + [19123,"comprehensive"], + [19125,"none"], + [19127,"partial"], + [19129,"comprehensive"], + [19131,"comprehensive"], + [19133,"comprehensive"], + [19135,"none"], + [19137,"none"], + [19139,"comprehensive"], + [19141,"NA"], + [19143,"comprehensive"], + [19145,"none"], + [19147,"comprehensive"], + [19149,"comprehensive"], + [19151,"comprehensive"], + [19153,"none"], + [19155,"comprehensive"], + [19157,"comprehensive"], + [19159,"comprehensive"], + [19161,"comprehensive"], + [19163,"none"], + [19165,"comprehensive"], + [19167,"partial"], + [19169,"comprehensive"], + [19171,"comprehensive"], + [19173,"none"], + [19175,"none"], + [19177,"none"], + [19179,"comprehensive"], + [19181,"none"], + [19183,"none"], + [19185,"none"], + [19187,"none"], + [19189,"none"], + [19191,"comprehensive"], + [19193,"comprehensive"], + [19195,"none"], + [19197,"comprehensive"], + [20001,"none"], + [20003,"none"], + [20005,"none"], + [20007,"none"], + [20009,"none"], + [20011,"none"], + [20013,"none"], + [20015,"comprehensive"], + [20017,"none"], + [20019,"comprehensive"], + [20021,"none"], + [20023,"partial"], + [20025,"partial"], + [20027,"none"], + [20029,"none"], + [20031,"none"], + [20033,"none"], + [20035,"none"], + [20037,"none"], + [20039,"none"], + [20041,"none"], + [20043,"none"], + [20045,"partial"], + [20047,"comprehensive"], + [20049,"partial"], + [20051,"none"], + [20053,"none"], + [20055,"none"], + [20057,"none"], + [20059,"partial"], + [20061,"none"], + [20063,"none"], + [20065,"none"], + [20067,"comprehensive"], + [20069,"none"], + [20071,"none"], + [20073,"none"], + [20075,"none"], + [20077,"none"], + [20079,"comprehensive"], + [20081,"none"], + [20083,"none"], + [20085,"comprehensive"], + [20087,"none"], + [20089,"none"], + [20091,"none"], + [20093,"none"], + [20095,"none"], + [20097,"none"], + [20099,"none"], + [20101,"none"], + [20103,"none"], + [20105,"partial"], + [20107,"none"], + [20109,"none"], + [20111,"none"], + [20113,"none"], + [20115,"none"], + [20117,"partial"], + [20119,"partial"], + [20121,"none"], + [20123,"comprehensive"], + [20125,"none"], + [20127,"comprehensive"], + [20129,"none"], + [20131,"none"], + [20133,"none"], + [20135,"none"], + [20137,"none"], + [20139,"none"], + [20141,"none"], + [20143,"partial"], + [20145,"none"], + [20147,"partial"], + [20149,"none"], + [20151,"none"], + [20153,"none"], + [20155,"none"], + [20157,"none"], + [20159,"comprehensive"], + [20161,"none"], + [20163,"none"], + [20165,"none"], + [20167,"none"], + [20169,"none"], + [20171,"none"], + [20173,"none"], + [20175,"none"], + [20177,"none"], + [20179,"none"], + [20181,"none"], + [20183,"none"], + [20185,"none"], + [20187,"none"], + [20189,"comprehensive"], + [20191,"none"], + [20193,"none"], + [20195,"none"], + [20197,"none"], + [20199,"none"], + [20201,"none"], + [20203,"none"], + [20205,"none"], + [20207,"none"], + [20209,"none"], + [21001,"comprehensive"], + [21003,"none"], + [21005,"none"], + [21007,"none"], + [21009,"none"], + [21011,"none"], + [21013,"none"], + [21015,"none"], + [21017,"none"], + [21019,"none"], + [21021,"none"], + [21023,"none"], + [21025,"none"], + [21027,"none"], + [21029,"none"], + [21031,"comprehensive"], + [21033,"none"], + [21035,"none"], + [21037,"none"], + [21039,"none"], + [21041,"none"], + [21043,"partial"], + [21045,"none"], + [21047,"comprehensive"], + [21049,"partial"], + [21051,"none"], + [21053,"comprehensive"], + [21055,"none"], + [21057,"none"], + [21059,"none"], + [21061,"none"], + [21063,"none"], + [21065,"none"], + [21067,"none"], + [21069,"none"], + [21071,"comprehensive"], + [21073,"partial"], + [21075,"none"], + [21077,"comprehensive"], + [21079,"none"], + [21081,"comprehensive"], + [21083,"none"], + [21085,"none"], + [21087,"none"], + [21089,"none"], + [21091,"none"], + [21093,"none"], + [21095,"none"], + [21097,"none"], + [21099,"none"], + [21101,"none"], + [21103,"none"], + [21105,"none"], + [21107,"none"], + [21109,"comprehensive"], + [21111,"none"], + [21113,"none"], + [21115,"none"], + [21117,"none"], + [21119,"none"], + [21121,"none"], + [21123,"none"], + [21125,"none"], + [21127,"none"], + [21129,"none"], + [21131,"none"], + [21133,"partial"], + [21135,"partial"], + [21137,"partial"], + [21139,"none"], + [21141,"none"], + [21143,"none"], + [21145,"none"], + [21147,"none"], + [21149,"none"], + [21151,"comprehensive"], + [21153,"none"], + [21155,"none"], + [21157,"partial"], + [21159,"none"], + [21161,"comprehensive"], + [21163,"partial"], + [21165,"none"], + [21167,"comprehensive"], + [21169,"none"], + [21171,"none"], + [21173,"none"], + [21175,"partial"], + [21177,"none"], + [21179,"none"], + [21181,"none"], + [21183,"comprehensive"], + [21185,"none"], + [21187,"none"], + [21189,"none"], + [21191,"none"], + [21193,"none"], + [21195,"none"], + [21197,"none"], + [21199,"none"], + [21201,"none"], + [21203,"none"], + [21205,"none"], + [21207,"none"], + [21209,"none"], + [21211,"comprehensive"], + [21213,"none"], + [21215,"none"], + [21217,"none"], + [21219,"comprehensive"], + [21221,"none"], + [21223,"none"], + [21225,"none"], + [21227,"none"], + [21229,"none"], + [21231,"none"], + [21233,"none"], + [21235,"none"], + [21237,"none"], + [21239,"none"], + [22001,"partial"], + [22003,"partial"], + [22005,"partial"], + [22007,"partial"], + [22009,"partial"], + [22011,"partial"], + [22013,"partial"], + [22015,"partial"], + [22017,"partial"], + [22019,"partial"], + [22021,"partial"], + [22023,"partial"], + [22025,"partial"], + [22027,"partial"], + [22029,"partial"], + [22031,"partial"], + [22033,"partial"], + [22035,"partial"], + [22037,"partial"], + [22039,"partial"], + [22041,"partial"], + [22043,"partial"], + [22045,"partial"], + [22047,"partial"], + [22049,"partial"], + [22051,"partial"], + [22053,"partial"], + [22055,"partial"], + [22057,"partial"], + [22059,"partial"], + [22061,"partial"], + [22063,"partial"], + [22065,"partial"], + [22067,"partial"], + [22069,"partial"], + [22071,"partial"], + [22073,"partial"], + [22075,"partial"], + [22077,"partial"], + [22079,"partial"], + [22081,"partial"], + [22083,"partial"], + [22085,"partial"], + [22087,"partial"], + [22089,"partial"], + [22091,"partial"], + [22093,"partial"], + [22095,"partial"], + [22097,"partial"], + [22099,"partial"], + [22101,"partial"], + [22103,"partial"], + [22105,"partial"], + [22107,"partial"], + [22109,"partial"], + [22111,"partial"], + [22113,"partial"], + [22115,"partial"], + [22117,"partial"], + [22119,"partial"], + [22121,"partial"], + [22123,"partial"], + [22125,"partial"], + [22127,"partial"], + [23001,"partial"], + [23003,"partial"], + [23005,"none"], + [23007,"partial"], + [23009,"none"], + [23011,"partial"], + [23013,"none"], + [23015,"partial"], + [23017,"partial"], + [23019,"partial"], + [23021,"partial"], + [23023,"partial"], + [23025,"partial"], + [23027,"partial"], + [23029,"none"], + [23031,"none"], + [24001,"comprehensive"], + [24003,"comprehensive"], + [24005,"comprehensive"], + [24009,"comprehensive"], + [24011,"comprehensive"], + [24013,"none"], + [24015,"comprehensive"], + [24017,"partial"], + [24019,"comprehensive"], + [24021,"comprehensive"], + [24023,"comprehensive"], + [24025,"comprehensive"], + [24027,"none"], + [24029,"none"], + [24031,"none"], + [24033,"NA"], + [24035,"NA"], + [24037,"NA"], + [24039,"partial"], + [24041,"comprehensive"], + [24043,"none"], + [24045,"comprehensive"], + [24047,"partial"], + [24510,"comprehensive"], + [25001,"partial"], + [25003,"comprehensive"], + [25005,"comprehensive"], + [25007,"partial"], + [25009,"partial"], + [25011,"partial"], + [25013,"partial"], + [25015,"none"], + [25017,"none"], + [25019,"none"], + [25021,"comprehensive"], + [25023,"comprehensive"], + [25025,"comprehensive"], + [25027,"partial"], + [26001,"none"], + [26003,"partial"], + [26005,"none"], + [26007,"none"], + [26009,"none"], + [26011,"none"], + [26013,"partial"], + [26015,"none"], + [26017,"none"], + [26019,"none"], + [26021,"none"], + [26023,"none"], + [26025,"comprehensive"], + [26027,"none"], + [26029,"none"], + [26031,"none"], + [26033,"none"], + [26035,"none"], + [26037,"comprehensive"], + [26039,"none"], + [26041,"none"], + [26043,"none"], + [26045,"none"], + [26047,"none"], + [26049,"none"], + [26051,"none"], + [26053,"partial"], + [26055,"none"], + [26057,"none"], + [26059,"none"], + [26061,"partial"], + [26063,"comprehensive"], + [26065,"none"], + [26067,"none"], + [26069,"none"], + [26071,"none"], + [26073,"none"], + [26075,"comprehensive"], + [26077,"none"], + [26079,"none"], + [26081,"none"], + [26083,"none"], + [26085,"comprehensive"], + [26087,"none"], + [26089,"none"], + [26091,"partial"], + [26093,"none"], + [26095,"none"], + [26097,"partial"], + [26099,"none"], + [26101,"none"], + [26103,"none"], + [26105,"comprehensive"], + [26107,"none"], + [26109,"none"], + [26111,"partial"], + [26113,"none"], + [26115,"none"], + [26117,"none"], + [26119,"none"], + [26121,"none"], + [26123,"none"], + [26125,"none"], + [26127,"none"], + [26129,"none"], + [26131,"none"], + [26133,"comprehensive"], + [26135,"none"], + [26137,"comprehensive"], + [26139,"partial"], + [26141,"none"], + [26143,"none"], + [26145,"none"], + [26147,"none"], + [26149,"none"], + [26151,"none"], + [26153,"partial"], + [26155,"none"], + [26157,"none"], + [26159,"none"], + [26161,"partial"], + [26163,"none"], + [26165,"none"], + [27001,"comprehensive"], + [27003,"partial"], + [27005,"comprehensive"], + [27007,"comprehensive"], + [27009,"none"], + [27011,"comprehensive"], + [27013,"none"], + [27015,"none"], + [27017,"comprehensive"], + [27019,"comprehensive"], + [27021,"none"], + [27023,"none"], + [27025,"comprehensive"], + [27027,"none"], + [27029,"partial"], + [27031,"comprehensive"], + [27033,"comprehensive"], + [27035,"comprehensive"], + [27037,"none"], + [27039,"comprehensive"], + [27041,"partial"], + [27043,"comprehensive"], + [27045,"none"], + [27047,"comprehensive"], + [27049,"comprehensive"], + [27051,"comprehensive"], + [27053,"partial"], + [27055,"none"], + [27057,"comprehensive"], + [27059,"comprehensive"], + [27061,"comprehensive"], + [27063,"comprehensive"], + [27065,"comprehensive"], + [27067,"comprehensive"], + [27069,"comprehensive"], + [27071,"comprehensive"], + [27073,"comprehensive"], + [27075,"comprehensive"], + [27077,"comprehensive"], + [27079,"comprehensive"], + [27081,"partial"], + [27083,"none"], + [27085,"none"], + [27087,"comprehensive"], + [27089,"partial"], + [27091,"none"], + [27093,"comprehensive"], + [27095,"comprehensive"], + [27097,"comprehensive"], + [27099,"comprehensive"], + [27101,"none"], + [27103,"none"], + [27105,"comprehensive"], + [27107,"comprehensive"], + [27109,"comprehensive"], + [27111,"comprehensive"], + [27113,"partial"], + [27115,"comprehensive"], + [27117,"comprehensive"], + [27119,"none"], + [27121,"comprehensive"], + [27123,"partial"], + [27125,"comprehensive"], + [27127,"comprehensive"], + [27129,"comprehensive"], + [27131,"comprehensive"], + [27133,"comprehensive"], + [27135,"comprehensive"], + [27137,"none"], + [27139,"none"], + [27141,"comprehensive"], + [27143,"comprehensive"], + [27145,"comprehensive"], + [27147,"partial"], + [27149,"comprehensive"], + [27151,"comprehensive"], + [27153,"comprehensive"], + [27155,"comprehensive"], + [27157,"comprehensive"], + [27159,"comprehensive"], + [27161,"comprehensive"], + [27163,"none"], + [27165,"comprehensive"], + [27167,"comprehensive"], + [27169,"comprehensive"], + [27171,"comprehensive"], + [27173,"comprehensive"], + [28001,"comprehensive"], + [28003,"none"], + [28005,"none"], + [28007,"none"], + [28009,"none"], + [28011,"none"], + [28013,"comprehensive"], + [28015,"none"], + [28017,"comprehensive"], + [28019,"none"], + [28021,"none"], + [28023,"none"], + [28025,"none"], + [28027,"none"], + [28029,"none"], + [28031,"none"], + [28033,"none"], + [28035,"none"], + [28037,"partial"], + [28039,"none"], + [28041,"comprehensive"], + [28043,"none"], + [28045,"none"], + [28047,"none"], + [28049,"none"], + [28051,"comprehensive"], + [28053,"none"], + [28055,"none"], + [28057,"none"], + [28059,"comprehensive"], + [28061,"none"], + [28063,"none"], + [28065,"none"], + [28067,"none"], + [28069,"none"], + [28071,"partial"], + [28073,"none"], + [28075,"none"], + [28077,"none"], + [28079,"none"], + [28081,"none"], + [28083,"none"], + [28085,"partial"], + [28087,"none"], + [28089,"comprehensive"], + [28091,"none"], + [28093,"partial"], + [28095,"none"], + [28097,"none"], + [28099,"none"], + [28101,"none"], + [28103,"none"], + [28105,"none"], + [28107,"none"], + [28109,"none"], + [28111,"none"], + [28113,"none"], + [28115,"none"], + [28117,"none"], + [28119,"none"], + [28121,"none"], + [28123,"none"], + [28125,"none"], + [28127,"none"], + [28129,"none"], + [28131,"none"], + [28133,"none"], + [28135,"none"], + [28137,"none"], + [28139,"none"], + [28141,"none"], + [28143,"none"], + [28145,"none"], + [28147,"none"], + [28149,"none"], + [28151,"none"], + [28153,"none"], + [28155,"none"], + [28157,"none"], + [28159,"none"], + [28161,"none"], + [28163,"none"], + [29001,"comprehensive"], + [29003,"none"], + [29005,"none"], + [29007,"none"], + [29009,"none"], + [29011,"none"], + [29013,"none"], + [29015,"none"], + [29017,"none"], + [29019,"none"], + [29021,"none"], + [29023,"comprehensive"], + [29025,"none"], + [29027,"none"], + [29029,"comprehensive"], + [29031,"none"], + [29033,"none"], + [29035,"partial"], + [29037,"none"], + [29039,"comprehensive"], + [29041,"none"], + [29043,"comprehensive"], + [29045,"partial"], + [29047,"none"], + [29049,"comprehensive"], + [29051,"none"], + [29053,"none"], + [29055,"none"], + [29057,"none"], + [29059,"none"], + [29061,"none"], + [29063,"none"], + [29065,"none"], + [29067,"partial"], + [29069,"none"], + [29071,"partial"], + [29073,"none"], + [29075,"none"], + [29077,"comprehensive"], + [29079,"comprehensive"], + [29081,"none"], + [29083,"none"], + [29085,"none"], + [29087,"none"], + [29089,"none"], + [29091,"none"], + [29093,"none"], + [29095,"comprehensive"], + [29097,"none"], + [29099,"none"], + [29101,"none"], + [29103,"none"], + [29105,"none"], + [29107,"partial"], + [29109,"none"], + [29111,"partial"], + [29113,"partial"], + [29115,"none"], + [29117,"none"], + [29119,"none"], + [29121,"none"], + [29123,"comprehensive"], + [29125,"none"], + [29127,"none"], + [29129,"comprehensive"], + [29131,"none"], + [29133,"none"], + [29135,"none"], + [29137,"none"], + [29139,"none"], + [29141,"partial"], + [29143,"none"], + [29145,"none"], + [29147,"none"], + [29149,"none"], + [29151,"none"], + [29153,"none"], + [29155,"none"], + [29157,"none"], + [29159,"none"], + [29161,"none"], + [29163,"none"], + [29165,"none"], + [29167,"none"], + [29169,"none"], + [29171,"comprehensive"], + [29173,"none"], + [29175,"none"], + [29177,"none"], + [29179,"none"], + [29181,"none"], + [29183,"none"], + [29185,"none"], + [29186,"none"], + [29187,"none"], + [29189,"none"], + [29195,"none"], + [29197,"comprehensive"], + [29199,"none"], + [29201,"none"], + [29203,"none"], + [29205,"comprehensive"], + [29207,"none"], + [29209,"none"], + [29211,"none"], + [29213,"none"], + [29215,"none"], + [29217,"none"], + [29219,"none"], + [29221,"none"], + [29223,"none"], + [29225,"none"], + [29227,"none"], + [29229,"comprehensive"], + [29510,"none"], + [30001,"partial"], + [30003,"none"], + [30005,"partial"], + [30007,"partial"], + [30009,"partial"], + [30011,"partial"], + [30013,"partial"], + [30015,"partial"], + [30017,"none"], + [30019,"partial"], + [30021,"none"], + [30023,"partial"], + [30025,"partial"], + [30027,"partial"], + [30029,"partial"], + [30031,"comprehensive"], + [30033,"comprehensive"], + [30035,"partial"], + [30037,"partial"], + [30039,"partial"], + [30041,"partial"], + [30043,"none"], + [30045,"partial"], + [30047,"comprehensive"], + [30049,"none"], + [30051,"partial"], + [30053,"partial"], + [30055,"partial"], + [30057,"comprehensive"], + [30059,"partial"], + [30061,"partial"], + [30063,"partial"], + [30065,"partial"], + [30067,"partial"], + [30069,"partial"], + [30071,"partial"], + [30073,"partial"], + [30075,"partial"], + [30077,"none"], + [30079,"partial"], + [30081,"partial"], + [30083,"partial"], + [30085,"none"], + [30087,"partial"], + [30089,"partial"], + [30091,"none"], + [30093,"partial"], + [30095,"partial"], + [30097,"partial"], + [30099,"partial"], + [30101,"partial"], + [30103,"partial"], + [30105,"partial"], + [30107,"partial"], + [30109,"partial"], + [30111,"partial"], + [31001,"comprehensive"], + [31003,"none"], + [31005,"none"], + [31007,"none"], + [31009,"partial"], + [31011,"none"], + [31013,"none"], + [31015,"none"], + [31017,"none"], + [31019,"none"], + [31021,"none"], + [31023,"comprehensive"], + [31025,"none"], + [31027,"comprehensive"], + [31029,"none"], + [31031,"none"], + [31033,"partial"], + [31035,"none"], + [31037,"partial"], + [31039,"none"], + [31041,"none"], + [31043,"none"], + [31045,"none"], + [31047,"none"], + [31049,"none"], + [31051,"none"], + [31053,"comprehensive"], + [31055,"partial"], + [31057,"none"], + [31059,"none"], + [31061,"partial"], + [31063,"none"], + [31065,"none"], + [31067,"none"], + [31069,"none"], + [31071,"comprehensive"], + [31073,"none"], + [31075,"comprehensive"], + [31077,"none"], + [31079,"none"], + [31081,"none"], + [31083,"none"], + [31085,"NA"], + [31087,"none"], + [31089,"none"], + [31091,"none"], + [31093,"none"], + [31095,"none"], + [31097,"none"], + [31099,"none"], + [31101,"none"], + [31103,"none"], + [31105,"none"], + [31107,"none"], + [31109,"partial"], + [31111,"partial"], + [31113,"none"], + [31115,"none"], + [31117,"none"], + [31119,"comprehensive"], + [31121,"none"], + [31123,"none"], + [31125,"none"], + [31127,"none"], + [31129,"none"], + [31131,"none"], + [31133,"none"], + [31135,"partial"], + [31137,"none"], + [31139,"partial"], + [31141,"none"], + [31143,"none"], + [31145,"none"], + [31147,"none"], + [31149,"comprehensive"], + [31151,"none"], + [31153,"none"], + [31155,"none"], + [31157,"none"], + [31159,"none"], + [31161,"none"], + [31163,"none"], + [31165,"partial"], + [31167,"none"], + [31169,"none"], + [31171,"none"], + [31173,"none"], + [31175,"partial"], + [31177,"none"], + [31179,"none"], + [31181,"none"], + [31183,"none"], + [31185,"none"], + [32001,"partial"], + [32003,"partial"], + [32005,"partial"], + [32007,"partial"], + [32009,"partial"], + [32011,"partial"], + [32013,"comprehensive"], + [32015,"partial"], + [32017,"partial"], + [32019,"none"], + [32021,"partial"], + [32023,"partial"], + [32027,"partial"], + [32029,"partial"], + [32031,"partial"], + [32033,"partial"], + [32510,"partial"], + [33001,"partial"], + [33003,"none"], + [33005,"partial"], + [33007,"none"], + [33009,"partial"], + [33011,"partial"], + [33013,"partial"], + [33015,"none"], + [33017,"partial"], + [33019,"none"], + [34001,"none"], + [34003,"comprehensive"], + [34005,"comprehensive"], + [34007,"comprehensive"], + [34009,"comprehensive"], + [34011,"none"], + [34013,"partial"], + [34015,"comprehensive"], + [34017,"comprehensive"], + [34019,"comprehensive"], + [34021,"comprehensive"], + [34023,"none"], + [34025,"partial"], + [34027,"comprehensive"], + [34029,"comprehensive"], + [34031,"comprehensive"], + [34033,"comprehensive"], + [34035,"partial"], + [34037,"comprehensive"], + [34039,"none"], + [34041,"none"], + [35001,"partial"], + [35003,"partial"], + [35005,"none"], + [35006,"partial"], + [35007,"partial"], + [35009,"none"], + [35011,"NA"], + [35013,"none"], + [35015,"partial"], + [35017,"comprehensive"], + [35019,"none"], + [35021,"partial"], + [35023,"partial"], + [35025,"partial"], + [35027,"partial"], + [35028,"partial"], + [35029,"partial"], + [35031,"none"], + [35033,"partial"], + [35035,"partial"], + [35037,"none"], + [35039,"none"], + [35041,"none"], + [35043,"none"], + [35045,"comprehensive"], + [35047,"partial"], + [35049,"none"], + [35051,"none"], + [35053,"none"], + [35055,"none"], + [35057,"partial"], + [35059,"none"], + [35061,"none"], + [36001,"comprehensive"], + [36003,"comprehensive"], + [36005,"comprehensive"], + [36007,"comprehensive"], + [36009,"comprehensive"], + [36011,"comprehensive"], + [36013,"comprehensive"], + [36015,"comprehensive"], + [36017,"comprehensive"], + [36019,"comprehensive"], + [36021,"none"], + [36023,"comprehensive"], + [36025,"comprehensive"], + [36027,"comprehensive"], + [36029,"partial"], + [36031,"partial"], + [36033,"partial"], + [36035,"none"], + [36037,"none"], + [36039,"comprehensive"], + [36041,"none"], + [36043,"comprehensive"], + [36045,"none"], + [36047,"comprehensive"], + [36049,"partial"], + [36051,"none"], + [36053,"comprehensive"], + [36055,"none"], + [36057,"none"], + [36059,"comprehensive"], + [36061,"none"], + [36063,"comprehensive"], + [36065,"none"], + [36067,"comprehensive"], + [36069,"comprehensive"], + [36071,"none"], + [36073,"comprehensive"], + [36075,"comprehensive"], + [36077,"comprehensive"], + [36079,"comprehensive"], + [36081,"comprehensive"], + [36083,"comprehensive"], + [36085,"comprehensive"], + [36087,"comprehensive"], + [36089,"comprehensive"], + [36091,"comprehensive"], + [36093,"comprehensive"], + [36095,"comprehensive"], + [36097,"comprehensive"], + [36099,"comprehensive"], + [36101,"comprehensive"], + [36103,"comprehensive"], + [36105,"none"], + [36107,"partial"], + [36109,"comprehensive"], + [36111,"comprehensive"], + [36113,"none"], + [36115,"none"], + [36117,"none"], + [36119,"comprehensive"], + [36121,"partial"], + [36123,"comprehensive"], + [37001,"none"], + [37003,"none"], + [37005,"none"], + [37007,"none"], + [37009,"none"], + [37011,"none"], + [37013,"comprehensive"], + [37015,"none"], + [37017,"none"], + [37019,"none"], + [37021,"none"], + [37023,"none"], + [37025,"none"], + [37027,"none"], + [37029,"comprehensive"], + [37031,"none"], + [37033,"none"], + [37035,"none"], + [37037,"none"], + [37039,"none"], + [37041,"none"], + [37043,"none"], + [37045,"none"], + [37047,"none"], + [37049,"none"], + [37051,"none"], + [37053,"none"], + [37055,"none"], + [37057,"none"], + [37059,"none"], + [37061,"none"], + [37063,"none"], + [37065,"none"], + [37067,"none"], + [37069,"partial"], + [37071,"none"], + [37073,"none"], + [37075,"none"], + [37077,"none"], + [37079,"comprehensive"], + [37081,"none"], + [37083,"none"], + [37085,"none"], + [37087,"none"], + [37089,"none"], + [37091,"none"], + [37093,"none"], + [37095,"none"], + [37097,"none"], + [37099,"comprehensive"], + [37101,"none"], + [37103,"none"], + [37105,"none"], + [37107,"none"], + [37109,"partial"], + [37111,"partial"], + [37113,"none"], + [37115,"comprehensive"], + [37117,"none"], + [37119,"none"], + [37121,"comprehensive"], + [37123,"none"], + [37125,"none"], + [37127,"none"], + [37129,"none"], + [37131,"none"], + [37133,"none"], + [37135,"none"], + [37137,"none"], + [37139,"none"], + [37141,"none"], + [37143,"none"], + [37145,"none"], + [37147,"none"], + [37149,"none"], + [37151,"none"], + [37153,"comprehensive"], + [37155,"none"], + [37157,"none"], + [37159,"none"], + [37161,"none"], + [37163,"none"], + [37165,"none"], + [37167,"none"], + [37169,"none"], + [37171,"none"], + [37173,"none"], + [37175,"none"], + [37177,"none"], + [37179,"none"], + [37181,"none"], + [37183,"none"], + [37185,"none"], + [37187,"none"], + [37189,"none"], + [37191,"none"], + [37193,"none"], + [37195,"none"], + [37197,"none"], + [37199,"none"], + [38001,"comprehensive"], + [38003,"partial"], + [38005,"partial"], + [38007,"partial"], + [38009,"partial"], + [38011,"partial"], + [38013,"none"], + [38015,"none"], + [38017,"none"], + [38019,"partial"], + [38021,"partial"], + [38023,"partial"], + [38025,"none"], + [38027,"partial"], + [38029,"partial"], + [38031,"partial"], + [38033,"partial"], + [38035,"partial"], + [38037,"comprehensive"], + [38039,"partial"], + [38041,"partial"], + [38043,"partial"], + [38045,"partial"], + [38047,"none"], + [38049,"partial"], + [38051,"partial"], + [38053,"partial"], + [38055,"none"], + [38057,"comprehensive"], + [38059,"none"], + [38061,"partial"], + [38063,"none"], + [38065,"partial"], + [38067,"partial"], + [38069,"partial"], + [38071,"partial"], + [38073,"partial"], + [38075,"comprehensive"], + [38077,"partial"], + [38079,"partial"], + [38081,"partial"], + [38083,"none"], + [38085,"partial"], + [38087,"partial"], + [38089,"comprehensive"], + [38091,"partial"], + [38093,"partial"], + [38095,"partial"], + [38097,"partial"], + [38099,"none"], + [38101,"partial"], + [38103,"none"], + [38105,"comprehensive"], + [39001,"comprehensive"], + [39003,"none"], + [39005,"none"], + [39007,"comprehensive"], + [39009,"comprehensive"], + [39011,"comprehensive"], + [39013,"comprehensive"], + [39015,"none"], + [39017,"comprehensive"], + [39019,"none"], + [39021,"comprehensive"], + [39023,"partial"], + [39025,"comprehensive"], + [39027,"comprehensive"], + [39029,"comprehensive"], + [39031,"comprehensive"], + [39033,"none"], + [39035,"comprehensive"], + [39037,"comprehensive"], + [39039,"comprehensive"], + [39041,"comprehensive"], + [39043,"partial"], + [39045,"comprehensive"], + [39047,"none"], + [39049,"partial"], + [39051,"none"], + [39053,"comprehensive"], + [39055,"comprehensive"], + [39057,"comprehensive"], + [39059,"comprehensive"], + [39061,"none"], + [39063,"none"], + [39065,"none"], + [39067,"none"], + [39069,"none"], + [39071,"comprehensive"], + [39073,"comprehensive"], + [39075,"comprehensive"], + [39077,"comprehensive"], + [39079,"comprehensive"], + [39081,"none"], + [39083,"none"], + [39085,"comprehensive"], + [39087,"none"], + [39089,"partial"], + [39091,"none"], + [39093,"comprehensive"], + [39095,"comprehensive"], + [39097,"comprehensive"], + [39099,"comprehensive"], + [39101,"none"], + [39103,"none"], + [39105,"none"], + [39107,"comprehensive"], + [39109,"none"], + [39111,"none"], + [39113,"none"], + [39115,"partial"], + [39117,"none"], + [39119,"comprehensive"], + [39121,"none"], + [39123,"partial"], + [39125,"none"], + [39127,"none"], + [39129,"comprehensive"], + [39131,"none"], + [39133,"none"], + [39135,"comprehensive"], + [39137,"comprehensive"], + [39139,"partial"], + [39141,"comprehensive"], + [39143,"comprehensive"], + [39145,"comprehensive"], + [39147,"comprehensive"], + [39149,"comprehensive"], + [39151,"comprehensive"], + [39153,"partial"], + [39155,"comprehensive"], + [39157,"comprehensive"], + [39159,"none"], + [39161,"comprehensive"], + [39163,"comprehensive"], + [39165,"none"], + [39167,"none"], + [39169,"none"], + [39171,"comprehensive"], + [39173,"comprehensive"], + [39175,"comprehensive"], + [40001,"comprehensive"], + [40003,"none"], + [40005,"none"], + [40007,"none"], + [40009,"none"], + [40011,"partial"], + [40013,"none"], + [40015,"none"], + [40017,"none"], + [40019,"partial"], + [40021,"none"], + [40023,"none"], + [40025,"none"], + [40027,"none"], + [40029,"none"], + [40031,"none"], + [40033,"none"], + [40035,"none"], + [40037,"none"], + [40039,"none"], + [40041,"comprehensive"], + [40043,"none"], + [40045,"none"], + [40047,"comprehensive"], + [40049,"none"], + [40051,"none"], + [40053,"comprehensive"], + [40055,"none"], + [40057,"none"], + [40059,"none"], + [40061,"none"], + [40063,"partial"], + [40065,"comprehensive"], + [40067,"none"], + [40069,"none"], + [40071,"none"], + [40073,"none"], + [40075,"none"], + [40077,"none"], + [40079,"none"], + [40081,"partial"], + [40083,"none"], + [40085,"none"], + [40087,"none"], + [40089,"none"], + [40091,"partial"], + [40093,"none"], + [40095,"partial"], + [40097,"none"], + [40099,"none"], + [40101,"none"], + [40103,"none"], + [40105,"none"], + [40107,"none"], + [40109,"none"], + [40111,"none"], + [40113,"none"], + [40115,"partial"], + [40117,"none"], + [40119,"none"], + [40121,"none"], + [40123,"none"], + [40125,"none"], + [40127,"none"], + [40129,"none"], + [40131,"none"], + [40133,"none"], + [40135,"none"], + [40137,"none"], + [40139,"none"], + [40141,"none"], + [40143,"none"], + [40145,"none"], + [40147,"none"], + [40149,"none"], + [40151,"none"], + [40153,"none"], + [41001,"none"], + [41003,"none"], + [41005,"none"], + [41007,"none"], + [41009,"none"], + [41011,"none"], + [41013,"none"], + [41015,"none"], + [41017,"none"], + [41019,"partial"], + [41021,"none"], + [41023,"comprehensive"], + [41025,"none"], + [41027,"none"], + [41029,"comprehensive"], + [41031,"none"], + [41033,"none"], + [41035,"none"], + [41037,"comprehensive"], + [41039,"none"], + [41041,"partial"], + [41043,"none"], + [41045,"none"], + [41047,"none"], + [41049,"none"], + [41051,"none"], + [41053,"none"], + [41055,"none"], + [41057,"partial"], + [41059,"none"], + [41061,"none"], + [41063,"none"], + [41065,"none"], + [41067,"none"], + [41069,"none"], + [41071,"none"], + [42001,"comprehensive"], + [42003,"partial"], + [42005,"none"], + [42007,"none"], + [42009,"none"], + [42011,"partial"], + [42013,"partial"], + [42015,"partial"], + [42017,"partial"], + [42019,"comprehensive"], + [42021,"partial"], + [42023,"partial"], + [42025,"partial"], + [42027,"partial"], + [42029,"none"], + [42031,"partial"], + [42033,"partial"], + [42035,"comprehensive"], + [42037,"none"], + [42039,"none"], + [42041,"none"], + [42043,"partial"], + [42045,"comprehensive"], + [42047,"partial"], + [42049,"partial"], + [42051,"none"], + [42053,"none"], + [42055,"partial"], + [42057,"none"], + [42059,"comprehensive"], + [42061,"partial"], + [42063,"partial"], + [42065,"none"], + [42067,"partial"], + [42069,"partial"], + [42071,"partial"], + [42073,"none"], + [42075,"partial"], + [42077,"partial"], + [42079,"partial"], + [42081,"partial"], + [42083,"NA"], + [42085,"comprehensive"], + [42087,"partial"], + [42089,"none"], + [42091,"none"], + [42093,"partial"], + [42095,"none"], + [42097,"none"], + [42099,"none"], + [42101,"partial"], + [42103,"none"], + [42105,"partial"], + [42107,"partial"], + [42109,"partial"], + [42111,"partial"], + [42113,"none"], + [42115,"partial"], + [42117,"partial"], + [42119,"none"], + [42121,"partial"], + [42123,"none"], + [42125,"none"], + [42127,"none"], + [42129,"partial"], + [42131,"partial"], + [42133,"none"], + [44001,"comprehensive"], + [44003,"none"], + [44005,"comprehensive"], + [44007,"comprehensive"], + [44009,"none"], + [45001,"none"], + [45003,"none"], + [45005,"none"], + [45007,"none"], + [45009,"none"], + [45011,"none"], + [45013,"comprehensive"], + [45015,"partial"], + [45017,"comprehensive"], + [45019,"none"], + [45021,"none"], + [45023,"none"], + [45025,"none"], + [45027,"none"], + [45029,"none"], + [45031,"none"], + [45033,"none"], + [45035,"comprehensive"], + [45037,"none"], + [45039,"comprehensive"], + [45041,"none"], + [45043,"none"], + [45045,"none"], + [45047,"none"], + [45049,"none"], + [45051,"none"], + [45053,"none"], + [45055,"none"], + [45057,"partial"], + [45059,"none"], + [45061,"none"], + [45063,"none"], + [45065,"none"], + [45067,"none"], + [45069,"none"], + [45071,"none"], + [45073,"none"], + [45075,"none"], + [45077,"none"], + [45079,"partial"], + [45081,"none"], + [45083,"none"], + [45085,"partial"], + [45087,"none"], + [45089,"none"], + [45091,"none"], + [46003,"partial"], + [46005,"partial"], + [46007,"partial"], + [46009,"partial"], + [46011,"partial"], + [46013,"none"], + [46015,"partial"], + [46017,"none"], + [46019,"none"], + [46021,"none"], + [46023,"partial"], + [46025,"partial"], + [46027,"none"], + [46029,"partial"], + [46031,"partial"], + [46033,"none"], + [46035,"partial"], + [46037,"partial"], + [46039,"none"], + [46041,"none"], + [46043,"partial"], + [46045,"partial"], + [46047,"partial"], + [46049,"partial"], + [46051,"comprehensive"], + [46053,"partial"], + [46055,"partial"], + [46057,"partial"], + [46059,"partial"], + [46061,"partial"], + [46063,"partial"], + [46065,"partial"], + [46067,"partial"], + [46069,"none"], + [46071,"comprehensive"], + [46073,"partial"], + [46075,"none"], + [46077,"partial"], + [46079,"comprehensive"], + [46081,"none"], + [46083,"partial"], + [46085,"partial"], + [46087,"partial"], + [46089,"none"], + [46091,"partial"], + [46093,"partial"], + [46095,"partial"], + [46097,"partial"], + [46099,"partial"], + [46101,"partial"], + [46102,"none"], + [46103,"partial"], + [46105,"partial"], + [46107,"partial"], + [46109,"partial"], + [46111,"partial"], + [46115,"partial"], + [46117,"partial"], + [46119,"partial"], + [46121,"comprehensive"], + [46123,"partial"], + [46125,"partial"], + [46127,"none"], + [46129,"partial"], + [46135,"partial"], + [46137,"partial"], + [47001,"none"], + [47003,"none"], + [47005,"none"], + [47007,"none"], + [47009,"none"], + [47011,"none"], + [47013,"none"], + [47015,"none"], + [47017,"none"], + [47019,"partial"], + [47021,"none"], + [47023,"none"], + [47025,"none"], + [47027,"none"], + [47029,"none"], + [47031,"none"], + [47033,"none"], + [47035,"none"], + [47037,"none"], + [47039,"none"], + [47041,"none"], + [47043,"none"], + [47045,"none"], + [47047,"none"], + [47049,"none"], + [47051,"partial"], + [47053,"none"], + [47055,"none"], + [47057,"none"], + [47059,"comprehensive"], + [47061,"comprehensive"], + [47063,"none"], + [47065,"none"], + [47067,"none"], + [47069,"none"], + [47071,"none"], + [47073,"none"], + [47075,"none"], + [47077,"none"], + [47079,"none"], + [47081,"none"], + [47083,"none"], + [47085,"none"], + [47087,"comprehensive"], + [47089,"none"], + [47091,"none"], + [47093,"none"], + [47095,"comprehensive"], + [47097,"none"], + [47099,"none"], + [47101,"partial"], + [47103,"partial"], + [47105,"none"], + [47107,"none"], + [47109,"none"], + [47111,"none"], + [47113,"comprehensive"], + [47115,"none"], + [47117,"partial"], + [47119,"none"], + [47121,"none"], + [47123,"none"], + [47125,"none"], + [47127,"none"], + [47129,"partial"], + [47131,"none"], + [47133,"none"], + [47135,"none"], + [47137,"none"], + [47139,"none"], + [47141,"comprehensive"], + [47143,"none"], + [47145,"comprehensive"], + [47147,"none"], + [47149,"none"], + [47151,"none"], + [47153,"none"], + [47155,"partial"], + [47157,"comprehensive"], + [47159,"none"], + [47161,"none"], + [47163,"none"], + [47165,"none"], + [47167,"none"], + [47169,"none"], + [47171,"none"], + [47173,"none"], + [47175,"none"], + [47177,"none"], + [47179,"none"], + [47181,"none"], + [47183,"none"], + [47185,"comprehensive"], + [47187,"comprehensive"], + [47189,"none"], + [48001,"none"], + [48003,"none"], + [48005,"none"], + [48007,"none"], + [48009,"none"], + [48011,"none"], + [48013,"none"], + [48015,"none"], + [48017,"none"], + [48019,"none"], + [48021,"none"], + [48023,"none"], + [48025,"none"], + [48027,"none"], + [48029,"none"], + [48031,"none"], + [48033,"NA"], + [48035,"none"], + [48037,"none"], + [48039,"none"], + [48041,"none"], + [48043,"none"], + [48045,"none"], + [48047,"none"], + [48049,"none"], + [48051,"none"], + [48053,"none"], + [48055,"none"], + [48057,"comprehensive"], + [48059,"none"], + [48061,"partial"], + [48063,"none"], + [48065,"none"], + [48067,"none"], + [48069,"none"], + [48071,"none"], + [48073,"none"], + [48075,"none"], + [48077,"none"], + [48079,"none"], + [48081,"none"], + [48083,"none"], + [48085,"none"], + [48087,"none"], + [48089,"none"], + [48091,"none"], + [48093,"none"], + [48095,"none"], + [48097,"none"], + [48099,"none"], + [48101,"none"], + [48103,"none"], + [48105,"none"], + [48107,"none"], + [48109,"none"], + [48111,"none"], + [48113,"none"], + [48115,"none"], + [48117,"none"], + [48119,"none"], + [48121,"none"], + [48123,"none"], + [48125,"none"], + [48127,"none"], + [48129,"none"], + [48131,"partial"], + [48133,"none"], + [48135,"none"], + [48137,"comprehensive"], + [48139,"none"], + [48141,"none"], + [48143,"none"], + [48145,"none"], + [48147,"none"], + [48149,"none"], + [48151,"none"], + [48153,"comprehensive"], + [48155,"none"], + [48157,"none"], + [48159,"partial"], + [48161,"none"], + [48163,"none"], + [48165,"none"], + [48167,"none"], + [48169,"none"], + [48171,"none"], + [48173,"none"], + [48175,"none"], + [48177,"none"], + [48179,"none"], + [48181,"none"], + [48183,"none"], + [48185,"none"], + [48187,"none"], + [48189,"none"], + [48191,"none"], + [48193,"none"], + [48195,"none"], + [48197,"none"], + [48199,"none"], + [48201,"none"], + [48203,"none"], + [48205,"none"], + [48207,"none"], + [48209,"none"], + [48211,"none"], + [48213,"none"], + [48215,"partial"], + [48217,"partial"], + [48219,"none"], + [48221,"none"], + [48223,"none"], + [48225,"none"], + [48227,"none"], + [48229,"none"], + [48231,"none"], + [48233,"partial"], + [48235,"none"], + [48237,"none"], + [48239,"comprehensive"], + [48241,"none"], + [48243,"none"], + [48245,"none"], + [48247,"none"], + [48249,"none"], + [48251,"none"], + [48253,"none"], + [48255,"none"], + [48257,"none"], + [48259,"none"], + [48261,"NA"], + [48263,"none"], + [48265,"none"], + [48267,"none"], + [48269,"comprehensive"], + [48271,"none"], + [48273,"none"], + [48275,"none"], + [48277,"none"], + [48279,"none"], + [48281,"none"], + [48283,"comprehensive"], + [48285,"none"], + [48287,"none"], + [48289,"none"], + [48291,"partial"], + [48293,"none"], + [48295,"none"], + [48297,"none"], + [48299,"none"], + [48301,"NA"], + [48303,"none"], + [48305,"none"], + [48307,"none"], + [48309,"none"], + [48311,"none"], + [48313,"comprehensive"], + [48315,"none"], + [48317,"none"], + [48319,"comprehensive"], + [48321,"none"], + [48323,"none"], + [48325,"none"], + [48327,"comprehensive"], + [48329,"partial"], + [48331,"none"], + [48333,"comprehensive"], + [48335,"comprehensive"], + [48337,"none"], + [48339,"none"], + [48341,"none"], + [48343,"comprehensive"], + [48345,"none"], + [48347,"none"], + [48349,"none"], + [48351,"none"], + [48353,"none"], + [48355,"none"], + [48357,"none"], + [48359,"none"], + [48361,"none"], + [48363,"none"], + [48365,"none"], + [48367,"none"], + [48369,"none"], + [48371,"none"], + [48373,"none"], + [48375,"partial"], + [48377,"none"], + [48379,"none"], + [48381,"none"], + [48383,"none"], + [48385,"none"], + [48387,"none"], + [48389,"none"], + [48391,"none"], + [48393,"partial"], + [48395,"none"], + [48397,"none"], + [48399,"none"], + [48401,"none"], + [48403,"none"], + [48405,"none"], + [48407,"none"], + [48409,"none"], + [48411,"none"], + [48413,"none"], + [48415,"none"], + [48417,"none"], + [48419,"comprehensive"], + [48421,"none"], + [48423,"none"], + [48425,"none"], + [48427,"none"], + [48429,"none"], + [48431,"none"], + [48433,"none"], + [48435,"none"], + [48437,"none"], + [48439,"none"], + [48441,"none"], + [48443,"none"], + [48445,"none"], + [48447,"none"], + [48449,"none"], + [48451,"none"], + [48453,"none"], + [48455,"none"], + [48457,"none"], + [48459,"comprehensive"], + [48461,"none"], + [48463,"none"], + [48465,"none"], + [48467,"none"], + [48469,"none"], + [48471,"none"], + [48473,"none"], + [48475,"partial"], + [48477,"none"], + [48479,"none"], + [48481,"none"], + [48483,"none"], + [48485,"none"], + [48487,"none"], + [48489,"none"], + [48491,"comprehensive"], + [48493,"none"], + [48495,"none"], + [48497,"none"], + [48499,"comprehensive"], + [48501,"none"], + [48503,"none"], + [48505,"none"], + [48507,"none"], + [49001,"none"], + [49003,"partial"], + [49005,"partial"], + [49007,"partial"], + [49009,"partial"], + [49011,"partial"], + [49013,"partial"], + [49015,"partial"], + [49017,"comprehensive"], + [49019,"partial"], + [49021,"none"], + [49023,"partial"], + [49025,"none"], + [49027,"partial"], + [49029,"partial"], + [49031,"partial"], + [49033,"partial"], + [49035,"partial"], + [49037,"comprehensive"], + [49039,"partial"], + [49041,"partial"], + [49043,"partial"], + [49045,"partial"], + [49047,"partial"], + [49049,"partial"], + [49051,"partial"], + [49053,"none"], + [49055,"none"], + [49057,"partial"], + [50001,"partial"], + [50003,"partial"], + [50005,"partial"], + [50007,"none"], + [50009,"partial"], + [50011,"partial"], + [50013,"partial"], + [50015,"partial"], + [50017,"none"], + [50019,"comprehensive"], + [50021,"partial"], + [50023,"none"], + [50025,"partial"], + [50027,"partial"], + [51001,"none"], + [51003,"none"], + [51005,"none"], + [51007,"none"], + [51009,"none"], + [51011,"none"], + [51013,"none"], + [51015,"none"], + [51017,"none"], + [51019,"none"], + [51021,"none"], + [51023,"none"], + [51025,"none"], + [51027,"none"], + [51029,"none"], + [51031,"none"], + [51033,"comprehensive"], + [51035,"none"], + [51036,"none"], + [51037,"none"], + [51041,"none"], + [51043,"none"], + [51045,"none"], + [51047,"none"], + [51049,"none"], + [51051,"none"], + [51053,"none"], + [51057,"partial"], + [51059,"none"], + [51061,"none"], + [51063,"comprehensive"], + [51065,"none"], + [51067,"partial"], + [51069,"comprehensive"], + [51071,"none"], + [51073,"comprehensive"], + [51075,"none"], + [51077,"none"], + [51079,"comprehensive"], + [51081,"none"], + [51083,"none"], + [51085,"none"], + [51087,"none"], + [51089,"none"], + [51091,"comprehensive"], + [51093,"none"], + [51095,"none"], + [51097,"none"], + [51099,"none"], + [51101,"none"], + [51103,"partial"], + [51105,"none"], + [51107,"none"], + [51109,"none"], + [51111,"none"], + [51113,"comprehensive"], + [51115,"none"], + [51117,"none"], + [51119,"none"], + [51121,"none"], + [51125,"none"], + [51127,"none"], + [51131,"none"], + [51133,"none"], + [51135,"none"], + [51137,"none"], + [51139,"none"], + [51141,"none"], + [51143,"none"], + [51145,"none"], + [51147,"none"], + [51149,"none"], + [51153,"none"], + [51155,"none"], + [51157,"none"], + [51159,"comprehensive"], + [51161,"none"], + [51163,"none"], + [51165,"none"], + [51167,"none"], + [51169,"none"], + [51171,"none"], + [51173,"none"], + [51175,"none"], + [51177,"none"], + [51179,"none"], + [51181,"none"], + [51183,"comprehensive"], + [51185,"none"], + [51187,"none"], + [51191,"none"], + [51193,"partial"], + [51195,"none"], + [51197,"none"], + [51199,"none"], + [51510,"none"], + [51520,"none"], + [51530,"none"], + [51540,"none"], + [51550,"none"], + [51570,"none"], + [51580,"none"], + [51590,"none"], + [51595,"NA"], + [51600,"none"], + [51610,"none"], + [51620,"none"], + [51630,"none"], + [51640,"none"], + [51650,"none"], + [51660,"none"], + [51670,"none"], + [51678,"none"], + [51680,"none"], + [51683,"none"], + [51685,"NA"], + [51690,"none"], + [51700,"none"], + [51710,"none"], + [51720,"none"], + [51730,"none"], + [51735,"none"], + [51740,"none"], + [51750,"none"], + [51760,"none"], + [51770,"none"], + [51775,"none"], + [51790,"none"], + [51800,"none"], + [51810,"none"], + [51820,"none"], + [51830,"none"], + [51840,"none"], + [53001,"comprehensive"], + [53003,"comprehensive"], + [53005,"none"], + [53007,"comprehensive"], + [53009,"comprehensive"], + [53011,"partial"], + [53013,"none"], + [53015,"comprehensive"], + [53017,"partial"], + [53019,"comprehensive"], + [53021,"partial"], + [53023,"comprehensive"], + [53025,"comprehensive"], + [53027,"comprehensive"], + [53029,"comprehensive"], + [53031,"none"], + [53033,"comprehensive"], + [53035,"comprehensive"], + [53037,"comprehensive"], + [53039,"comprehensive"], + [53041,"partial"], + [53043,"partial"], + [53045,"comprehensive"], + [53047,"comprehensive"], + [53049,"comprehensive"], + [53051,"comprehensive"], + [53053,"partial"], + [53055,"comprehensive"], + [53057,"comprehensive"], + [53059,"comprehensive"], + [53061,"comprehensive"], + [53063,"comprehensive"], + [53065,"comprehensive"], + [53067,"none"], + [53069,"comprehensive"], + [53071,"comprehensive"], + [53073,"comprehensive"], + [53075,"comprehensive"], + [53077,"comprehensive"], + [54001,"partial"], + [54003,"partial"], + [54005,"none"], + [54007,"comprehensive"], + [54009,"partial"], + [54011,"partial"], + [54013,"comprehensive"], + [54015,"none"], + [54017,"none"], + [54019,"none"], + [54021,"none"], + [54023,"comprehensive"], + [54025,"partial"], + [54027,"none"], + [54029,"none"], + [54031,"partial"], + [54033,"none"], + [54035,"comprehensive"], + [54037,"none"], + [54039,"comprehensive"], + [54041,"partial"], + [54043,"partial"], + [54045,"none"], + [54047,"partial"], + [54049,"none"], + [54051,"partial"], + [54053,"comprehensive"], + [54055,"comprehensive"], + [54057,"partial"], + [54059,"partial"], + [54061,"none"], + [54063,"none"], + [54065,"partial"], + [54067,"none"], + [54069,"comprehensive"], + [54071,"none"], + [54073,"comprehensive"], + [54075,"comprehensive"], + [54077,"partial"], + [54079,"comprehensive"], + [54081,"partial"], + [54083,"none"], + [54085,"comprehensive"], + [54087,"comprehensive"], + [54089,"comprehensive"], + [54091,"none"], + [54093,"comprehensive"], + [54095,"none"], + [54097,"comprehensive"], + [54099,"none"], + [54101,"none"], + [54103,"none"], + [54105,"comprehensive"], + [54107,"comprehensive"], + [54109,"partial"], + [55001,"comprehensive"], + [55003,"none"], + [55005,"none"], + [55007,"none"], + [55009,"none"], + [55011,"none"], + [55013,"none"], + [55015,"none"], + [55017,"none"], + [55019,"partial"], + [55021,"none"], + [55023,"none"], + [55025,"none"], + [55027,"comprehensive"], + [55029,"none"], + [55031,"partial"], + [55033,"none"], + [55035,"none"], + [55037,"none"], + [55039,"none"], + [55041,"none"], + [55043,"comprehensive"], + [55045,"none"], + [55047,"none"], + [55049,"comprehensive"], + [55051,"none"], + [55053,"comprehensive"], + [55055,"none"], + [55057,"none"], + [55059,"none"], + [55061,"none"], + [55063,"none"], + [55065,"partial"], + [55067,"none"], + [55069,"partial"], + [55071,"none"], + [55073,"none"], + [55075,"none"], + [55077,"none"], + [55078,"none"], + [55079,"none"], + [55081,"none"], + [55083,"none"], + [55085,"none"], + [55087,"none"], + [55089,"none"], + [55091,"none"], + [55093,"partial"], + [55095,"none"], + [55097,"none"], + [55099,"none"], + [55101,"none"], + [55103,"partial"], + [55105,"comprehensive"], + [55107,"none"], + [55109,"none"], + [55111,"none"], + [55113,"none"], + [55115,"none"], + [55117,"none"], + [55119,"none"], + [55121,"none"], + [55123,"none"], + [55125,"none"], + [55127,"partial"], + [55129,"none"], + [55131,"none"], + [55133,"none"], + [55135,"none"], + [55137,"none"], + [55139,"none"], + [55141,"comprehensive"], + [56001,"comprehensive"], + [56003,"none"], + [56005,"none"], + [56007,"partial"], + [56009,"none"], + [56011,"none"], + [56013,"none"], + [56015,"none"], + [56017,"none"], + [56019,"none"], + [56021,"none"], + [56023,"partial"], + [56025,"none"], + [56027,"none"], + [56029,"partial"], + [56031,"none"], + [56033,"none"], + [56035,"none"], + [56037,"none"], + [56039,"partial"], + [56041,"none"], + [56043,"none"], + [56045,"none"] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-2017.json b/data/regional/united-states/health/insurance/us-health-uninsured-2017.json new file mode 100644 index 0000000..1a67ab4 --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Uninsured", + "description" : "Percent of the population that are uninsured.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.uninsured.2017"], + [1001,0.088], + [1003,0.108], + [1005,0.123], + [1007,0.081], + [1009,0.11], + [1011,0.141], + [1013,0.114], + [1015,0.104], + [1017,0.122], + [1019,0.09], + [1021,0.148], + [1023,0.11], + [1025,0.109], + [1027,0.132], + [1029,0.144], + [1031,0.105], + [1033,0.086], + [1035,0.157], + [1037,0.1], + [1039,0.118], + [1041,0.107], + [1043,0.134], + [1045,0.123], + [1047,0.121], + [1049,0.151], + [1051,0.077], + [1053,0.156], + [1055,0.117], + [1057,0.083], + [1059,0.12], + [1061,0.139], + [1063,0.131], + [1065,0.107], + [1067,0.108], + [1069,0.11], + [1071,0.106], + [1073,0.103], + [1075,0.106], + [1077,0.103], + [1079,0.097], + [1081,0.087], + [1083,0.112], + [1085,0.123], + [1087,0.101], + [1089,0.097], + [1091,0.107], + [1093,0.096], + [1095,0.154], + [1097,0.121], + [1099,0.15], + [1101,0.111], + [1103,0.112], + [1105,0.142], + [1107,0.089], + [1109,0.088], + [1111,0.123], + [1113,0.138], + [1115,0.079], + [1117,0.074], + [1119,0.169], + [1121,0.102], + [1123,0.094], + [1125,0.086], + [1127,0.116], + [1129,0.095], + [1131,0.149], + [1133,0.117], + [2013,0.482], + [2016,0.212], + [2020,0.132], + [2050,0.234], + [2060,0.201], + [2068,0.208], + [2070,0.239], + [2090,0.102], + [2100,0.194], + [2105,0.258], + [2110,0.116], + [2122,0.182], + [2130,0.141], + [2150,0.22], + [2158,null], + [2164,0.323], + [2170,0.163], + [2180,0.261], + [2185,0.223], + [2188,0.315], + [2195,0.127], + [2198,0.279], + [2220,0.179], + [2230,0.215], + [2240,0.177], + [2261,0.166], + [2275,0.151], + [2282,0.201], + [2290,0.323], + [4001,0.229], + [4003,0.09], + [4005,0.137], + [4007,0.124], + [4009,0.088], + [4011,0.076], + [4012,0.123], + [4013,0.123], + [4015,0.123], + [4017,0.151], + [4019,0.11], + [4021,0.103], + [4023,0.126], + [4025,0.113], + [4027,0.151], + [5001,0.084], + [5003,0.111], + [5005,0.076], + [5007,0.103], + [5009,0.089], + [5011,0.134], + [5013,0.103], + [5015,0.132], + [5017,0.115], + [5019,0.091], + [5021,0.094], + [5023,0.114], + [5025,0.075], + [5027,0.098], + [5029,0.089], + [5031,0.108], + [5033,0.108], + [5035,0.102], + [5037,0.084], + [5039,0.107], + [5041,0.101], + [5043,0.086], + [5045,0.108], + [5047,0.082], + [5049,0.101], + [5051,0.131], + [5053,0.069], + [5055,0.09], + [5057,0.103], + [5059,0.11], + [5061,0.118], + [5063,0.114], + [5065,0.082], + [5067,0.118], + [5069,0.09], + [5071,0.11], + [5073,0.121], + [5075,0.097], + [5077,0.113], + [5079,0.095], + [5081,0.111], + [5083,0.087], + [5085,0.089], + [5087,0.126], + [5089,0.085], + [5091,0.13], + [5093,0.107], + [5095,0.11], + [5097,0.125], + [5099,0.114], + [5101,0.09], + [5103,0.096], + [5105,0.082], + [5107,0.131], + [5109,0.12], + [5111,0.132], + [5113,0.141], + [5115,0.106], + [5117,0.104], + [5119,0.101], + [5121,0.1], + [5123,0.122], + [5125,0.076], + [5127,0.085], + [5129,0.116], + [5131,0.125], + [5133,0.169], + [5135,0.105], + [5137,0.1], + [5139,0.121], + [5141,0.129], + [5143,0.126], + [5145,0.102], + [5147,0.111], + [5149,0.106], + [6001,0.069], + [6003,0.121], + [6005,0.056], + [6007,0.084], + [6009,0.066], + [6011,0.136], + [6013,0.072], + [6015,0.081], + [6017,0.06], + [6019,0.117], + [6021,0.118], + [6023,0.123], + [6025,0.118], + [6027,0.077], + [6029,0.112], + [6031,0.103], + [6033,0.118], + [6035,0.07], + [6037,0.133], + [6039,0.117], + [6041,0.052], + [6043,0.049], + [6045,0.112], + [6047,0.111], + [6049,0.16], + [6051,0.168], + [6053,0.137], + [6055,0.074], + [6057,0.097], + [6059,0.104], + [6061,0.061], + [6063,0.066], + [6065,0.123], + [6067,0.084], + [6069,0.096], + [6071,0.116], + [6073,0.104], + [6075,0.055], + [6077,0.097], + [6079,0.086], + [6081,0.058], + [6083,0.12], + [6085,0.062], + [6087,0.083], + [6089,0.094], + [6091,0.094], + [6093,0.083], + [6095,0.074], + [6097,0.084], + [6099,0.092], + [6101,0.118], + [6103,0.088], + [6105,0.141], + [6107,0.122], + [6109,0.066], + [6111,0.108], + [6113,0.077], + [6115,0.102], + [8001,0.134], + [8003,0.133], + [8005,0.098], + [8007,0.157], + [8009,0.11], + [8011,0.14], + [8013,0.062], + [8014,0.053], + [8015,0.126], + [8017,0.164], + [8019,0.096], + [8021,0.142], + [8023,0.149], + [8025,0.091], + [8027,0.12], + [8029,0.129], + [8031,0.115], + [8033,0.073], + [8035,0.036], + [8037,0.169], + [8039,0.072], + [8041,0.079], + [8043,0.086], + [8045,0.198], + [8047,0.094], + [8049,0.177], + [8051,0.13], + [8053,0.093], + [8055,0.124], + [8057,0.092], + [8059,0.069], + [8061,0.069], + [8063,0.139], + [8065,0.161], + [8067,0.11], + [8069,0.073], + [8071,0.103], + [8073,0.057], + [8075,0.11], + [8077,0.116], + [8079,0.066], + [8081,0.147], + [8083,0.154], + [8085,0.13], + [8087,0.08], + [8089,0.104], + [8091,0.116], + [8093,0.091], + [8095,0.134], + [8097,0.132], + [8099,0.123], + [8101,0.081], + [8103,0.109], + [8105,0.133], + [8107,0.09], + [8109,0.196], + [8111,0.12], + [8113,0.105], + [8115,0.095], + [8117,0.214], + [8119,0.094], + [8121,0.06], + [8123,0.09], + [8125,0.133], + [9001,0.096], + [9003,0.052], + [9005,0.05], + [9007,0.041], + [9009,0.06], + [9011,0.045], + [9013,0.035], + [9015,0.053], + [10001,0.076], + [10003,0.06], + [10005,0.078], + [11001,0.047], + [12001,0.107], + [12003,0.121], + [12005,0.15], + [12007,0.15], + [12009,0.12], + [12011,0.163], + [12013,0.19], + [12015,0.127], + [12017,0.115], + [12019,0.109], + [12021,0.176], + [12023,0.133], + [12027,0.215], + [12029,0.175], + [12031,0.128], + [12033,0.111], + [12035,0.132], + [12037,0.189], + [12039,0.153], + [12041,0.181], + [12043,0.216], + [12045,0.14], + [12047,0.136], + [12049,0.155], + [12051,0.273], + [12053,0.132], + [12055,0.142], + [12057,0.139], + [12059,0.187], + [12061,0.137], + [12063,0.119], + [12065,0.078], + [12067,0.197], + [12069,0.122], + [12071,0.156], + [12073,0.091], + [12075,0.166], + [12077,0.217], + [12079,0.14], + [12081,0.139], + [12083,0.135], + [12085,0.123], + [12086,0.207], + [12087,0.193], + [12089,0.124], + [12091,0.136], + [12093,0.186], + [12095,0.162], + [12097,0.184], + [12099,0.148], + [12101,0.128], + [12103,0.126], + [12105,0.144], + [12107,0.168], + [12109,0.088], + [12111,0.155], + [12113,0.113], + [12115,0.121], + [12117,0.113], + [12119,0.065], + [12121,0.143], + [12123,0.124], + [12125,0.123], + [12127,0.142], + [12129,0.113], + [12131,0.163], + [12133,0.133], + [13001,0.175], + [13003,0.248], + [13005,0.186], + [13007,0.169], + [13009,0.124], + [13011,0.17], + [13013,0.155], + [13015,0.151], + [13017,0.183], + [13019,0.225], + [13021,0.144], + [13023,0.117], + [13025,0.211], + [13027,0.194], + [13029,0.122], + [13031,0.141], + [13033,0.15], + [13035,0.13], + [13037,0.188], + [13039,0.122], + [13043,0.193], + [13045,0.138], + [13047,0.13], + [13049,0.195], + [13051,0.155], + [13053,0.091], + [13055,0.157], + [13057,0.118], + [13059,0.147], + [13061,0.248], + [13063,0.21], + [13065,0.219], + [13067,0.141], + [13069,0.215], + [13071,0.257], + [13073,0.082], + [13075,0.206], + [13077,0.102], + [13079,0.123], + [13081,0.179], + [13083,0.153], + [13085,0.116], + [13087,0.186], + [13089,0.16], + [13091,0.132], + [13093,0.17], + [13095,0.18], + [13097,0.144], + [13099,0.18], + [13101,0.252], + [13103,0.11], + [13105,0.144], + [13107,0.198], + [13109,0.157], + [13111,0.139], + [13113,0.073], + [13115,0.145], + [13117,0.095], + [13119,0.177], + [13121,0.122], + [13123,0.21], + [13125,0.112], + [13127,0.155], + [13129,0.164], + [13131,0.191], + [13133,0.152], + [13135,0.183], + [13137,0.175], + [13139,0.183], + [13141,0.091], + [13143,0.129], + [13145,0.093], + [13147,0.136], + [13149,0.159], + [13151,0.117], + [13153,0.139], + [13155,0.175], + [13157,0.136], + [13159,0.14], + [13161,0.177], + [13163,0.18], + [13165,0.177], + [13167,0.175], + [13169,0.117], + [13171,0.167], + [13173,0.175], + [13175,0.129], + [13177,0.107], + [13179,0.127], + [13181,0.132], + [13183,0.18], + [13185,0.167], + [13187,0.135], + [13189,0.152], + [13191,0.163], + [13193,0.206], + [13195,0.146], + [13197,0.13], + [13199,0.145], + [13201,0.136], + [13205,0.196], + [13207,0.123], + [13209,0.144], + [13211,0.128], + [13213,0.18], + [13215,0.137], + [13217,0.129], + [13219,0.076], + [13221,0.132], + [13223,0.116], + [13225,0.144], + [13227,0.123], + [13229,0.171], + [13231,0.146], + [13233,0.16], + [13235,0.173], + [13237,0.16], + [13239,0.185], + [13241,0.218], + [13243,0.177], + [13245,0.144], + [13247,0.155], + [13249,0.165], + [13251,0.158], + [13253,0.18], + [13255,0.156], + [13257,0.152], + [13259,0.151], + [13261,0.141], + [13263,0.136], + [13265,0.178], + [13267,0.154], + [13269,0.19], + [13271,0.152], + [13273,0.207], + [13275,0.159], + [13277,0.197], + [13279,0.209], + [13281,0.129], + [13283,0.186], + [13285,0.133], + [13287,0.166], + [13289,0.165], + [13291,0.121], + [13293,0.149], + [13295,0.143], + [13297,0.121], + [13299,0.164], + [13301,0.164], + [13303,0.144], + [13305,0.188], + [13307,0.097], + [13309,0.219], + [13311,0.139], + [13313,0.197], + [13315,0.164], + [13317,0.161], + [13319,0.101], + [13321,0.174], + [15001,0.06], + [15003,0.04], + [15005,0.078], + [15007,0.057], + [15009,0.06], + [16001,0.091], + [16003,0.158], + [16005,0.095], + [16007,0.101], + [16009,0.152], + [16011,0.128], + [16013,0.162], + [16015,0.105], + [16017,0.136], + [16019,0.099], + [16021,0.221], + [16023,0.132], + [16025,0.203], + [16027,0.153], + [16029,0.076], + [16031,0.171], + [16033,0.288], + [16035,0.111], + [16037,0.135], + [16039,0.139], + [16041,0.123], + [16043,0.126], + [16045,0.173], + [16047,0.185], + [16049,0.122], + [16051,0.116], + [16053,0.213], + [16055,0.116], + [16057,0.075], + [16059,0.144], + [16061,0.167], + [16063,0.24], + [16065,0.077], + [16067,0.214], + [16069,0.101], + [16071,0.096], + [16073,0.261], + [16075,0.145], + [16077,0.146], + [16079,0.151], + [16081,0.105], + [16083,0.131], + [16085,0.116], + [16087,0.168], + [17001,0.056], + [17003,0.088], + [17005,0.063], + [17007,0.072], + [17009,0.048], + [17011,0.055], + [17013,0.034], + [17015,0.069], + [17017,0.083], + [17019,0.058], + [17021,0.056], + [17023,0.059], + [17025,0.074], + [17027,0.049], + [17029,0.08], + [17031,0.111], + [17033,0.073], + [17035,0.06], + [17037,0.071], + [17039,0.06], + [17041,0.151], + [17043,0.067], + [17045,0.069], + [17047,0.061], + [17049,0.053], + [17051,0.101], + [17053,0.069], + [17055,0.082], + [17057,0.076], + [17059,0.052], + [17061,0.079], + [17063,0.05], + [17065,0.095], + [17067,0.047], + [17069,0.096], + [17071,0.072], + [17073,0.052], + [17075,0.072], + [17077,0.075], + [17079,0.065], + [17081,0.074], + [17083,0.061], + [17085,0.051], + [17087,0.057], + [17089,0.098], + [17091,0.071], + [17093,0.046], + [17095,0.072], + [17097,0.081], + [17099,0.062], + [17101,0.088], + [17103,0.061], + [17105,0.061], + [17107,0.049], + [17109,0.063], + [17111,0.061], + [17113,0.044], + [17115,0.058], + [17117,0.058], + [17119,0.055], + [17121,0.074], + [17123,0.043], + [17125,0.055], + [17127,0.058], + [17129,0.032], + [17131,0.033], + [17133,0.032], + [17135,0.058], + [17137,0.054], + [17139,0.136], + [17141,0.06], + [17143,0.066], + [17145,0.048], + [17147,0.041], + [17149,0.069], + [17151,0.047], + [17153,0.06], + [17155,0.047], + [17157,0.058], + [17159,0.052], + [17161,0.071], + [17163,0.079], + [17165,0.071], + [17167,0.05], + [17169,0.163], + [17171,0.062], + [17173,0.057], + [17175,0.07], + [17177,0.058], + [17179,0.046], + [17181,0.077], + [17183,0.074], + [17185,0.06], + [17187,0.051], + [17189,0.045], + [17191,0.084], + [17193,0.051], + [17195,0.06], + [17197,0.065], + [17199,0.069], + [17201,0.072], + [17203,0.04], + [18001,0.21], + [18003,0.108], + [18005,0.102], + [18007,0.118], + [18009,0.106], + [18011,0.065], + [18013,0.101], + [18015,0.109], + [18017,0.119], + [18019,0.101], + [18021,0.075], + [18023,0.114], + [18025,0.08], + [18027,0.226], + [18029,0.073], + [18031,0.097], + [18033,0.105], + [18035,0.099], + [18037,0.065], + [18039,0.169], + [18041,0.124], + [18043,0.068], + [18045,0.09], + [18047,0.069], + [18049,0.116], + [18051,0.082], + [18053,0.102], + [18055,0.099], + [18057,0.057], + [18059,0.073], + [18061,0.078], + [18063,0.069], + [18065,0.099], + [18067,0.094], + [18069,0.094], + [18071,0.103], + [18073,0.08], + [18075,0.115], + [18077,0.091], + [18079,0.108], + [18081,0.08], + [18083,0.099], + [18085,0.118], + [18087,0.397], + [18089,0.102], + [18091,0.096], + [18093,0.095], + [18095,0.103], + [18097,0.126], + [18099,0.132], + [18101,0.091], + [18103,0.098], + [18105,0.084], + [18107,0.105], + [18109,0.088], + [18111,0.126], + [18113,0.092], + [18115,0.067], + [18117,0.094], + [18119,0.127], + [18121,0.137], + [18123,0.075], + [18125,0.059], + [18127,0.077], + [18129,0.051], + [18131,0.101], + [18133,0.092], + [18135,0.123], + [18137,0.076], + [18139,0.129], + [18141,0.1], + [18143,0.093], + [18145,0.1], + [18147,0.065], + [18149,0.081], + [18151,0.094], + [18153,0.122], + [18155,0.133], + [18157,0.1], + [18159,0.082], + [18161,0.135], + [18163,0.094], + [18165,0.091], + [18167,0.1], + [18169,0.093], + [18171,0.055], + [18173,0.063], + [18175,0.118], + [18177,0.13], + [18179,0.083], + [18181,0.092], + [18183,0.076], + [19001,0.064], + [19003,0.058], + [19005,0.086], + [19007,0.084], + [19009,0.066], + [19011,0.035], + [19013,0.061], + [19015,0.042], + [19017,0.034], + [19019,0.074], + [19021,0.106], + [19023,0.045], + [19025,0.036], + [19027,0.025], + [19029,0.045], + [19031,0.03], + [19033,0.061], + [19035,0.066], + [19037,0.05], + [19039,0.06], + [19041,0.044], + [19043,0.073], + [19045,0.046], + [19047,0.1], + [19049,0.034], + [19051,0.251], + [19053,0.121], + [19055,0.04], + [19057,0.069], + [19059,0.047], + [19061,0.043], + [19063,0.086], + [19065,0.058], + [19067,0.072], + [19069,0.056], + [19071,0.061], + [19073,0.053], + [19075,0.03], + [19077,0.05], + [19079,0.059], + [19081,0.051], + [19083,0.043], + [19085,0.058], + [19087,0.044], + [19089,0.054], + [19091,0.04], + [19093,0.046], + [19095,0.056], + [19097,0.057], + [19099,0.05], + [19101,0.063], + [19103,0.06], + [19105,0.047], + [19107,0.044], + [19109,0.044], + [19111,0.063], + [19113,0.044], + [19115,0.047], + [19117,0.047], + [19119,0.044], + [19121,0.043], + [19123,0.041], + [19125,0.031], + [19127,0.074], + [19129,0.047], + [19131,0.092], + [19133,0.057], + [19135,0.076], + [19137,0.05], + [19139,0.048], + [19141,0.049], + [19143,0.067], + [19145,0.062], + [19147,0.052], + [19149,0.05], + [19151,0.056], + [19153,0.057], + [19155,0.07], + [19157,0.064], + [19159,0.071], + [19161,0.057], + [19163,0.057], + [19165,0.06], + [19167,0.056], + [19169,0.042], + [19171,0.063], + [19173,0.079], + [19175,0.076], + [19177,0.138], + [19179,0.067], + [19181,0.035], + [19183,0.084], + [19185,0.125], + [19187,0.058], + [19189,0.041], + [19191,0.031], + [19193,0.079], + [19195,0.056], + [19197,0.062], + [20001,0.066], + [20003,0.102], + [20005,0.091], + [20007,0.114], + [20009,0.134], + [20011,0.109], + [20013,0.084], + [20015,0.084], + [20017,0.076], + [20019,0.121], + [20021,0.118], + [20023,0.067], + [20025,0.088], + [20027,0.052], + [20029,0.101], + [20031,0.092], + [20033,0.126], + [20035,0.105], + [20037,0.118], + [20039,0.117], + [20041,0.07], + [20043,0.12], + [20045,0.087], + [20047,0.105], + [20049,0.112], + [20051,0.067], + [20053,0.045], + [20055,0.133], + [20057,0.158], + [20059,0.079], + [20061,0.085], + [20063,0.112], + [20065,0.07], + [20067,0.193], + [20069,0.123], + [20071,0.075], + [20073,0.107], + [20075,0.235], + [20077,0.131], + [20079,0.094], + [20081,0.193], + [20083,0.095], + [20085,0.059], + [20087,0.075], + [20089,0.077], + [20091,0.064], + [20093,0.117], + [20095,0.074], + [20097,0.078], + [20099,0.103], + [20101,0.099], + [20103,0.054], + [20105,0.1], + [20107,0.105], + [20109,0.059], + [20111,0.108], + [20113,0.063], + [20115,0.073], + [20117,0.079], + [20119,0.136], + [20121,0.068], + [20123,0.062], + [20125,0.119], + [20127,0.089], + [20129,0.134], + [20131,0.057], + [20133,0.117], + [20135,0.079], + [20137,0.043], + [20139,0.097], + [20141,0.092], + [20143,0.088], + [20145,0.084], + [20147,0.055], + [20149,0.06], + [20151,0.09], + [20153,0.054], + [20155,0.089], + [20157,0.057], + [20159,0.116], + [20161,0.06], + [20163,0.092], + [20165,0.073], + [20167,0.069], + [20169,0.095], + [20171,0.049], + [20173,0.115], + [20175,0.195], + [20177,0.089], + [20179,0.099], + [20181,0.083], + [20183,0.076], + [20185,0.104], + [20187,0.149], + [20189,0.156], + [20191,0.093], + [20193,0.074], + [20195,0.073], + [20197,0.067], + [20199,0.089], + [20201,0.061], + [20203,0.079], + [20205,0.114], + [20207,0.13], + [20209,0.197], + [21001,0.087], + [21003,0.115], + [21005,0.054], + [21007,0.109], + [21009,0.091], + [21011,0.089], + [21013,0.084], + [21015,0.059], + [21017,0.098], + [21019,0.086], + [21021,0.064], + [21023,0.064], + [21025,0.069], + [21027,0.1], + [21029,0.05], + [21031,0.1], + [21033,0.055], + [21035,0.083], + [21037,0.063], + [21039,0.082], + [21041,0.089], + [21043,0.099], + [21045,0.127], + [21047,0.108], + [21049,0.069], + [21051,0.101], + [21053,0.118], + [21055,0.127], + [21057,0.136], + [21059,0.055], + [21061,0.054], + [21063,0.072], + [21065,0.09], + [21067,0.085], + [21069,0.139], + [21071,0.088], + [21073,0.095], + [21075,0.087], + [21077,0.101], + [21079,0.089], + [21081,0.088], + [21083,0.094], + [21085,0.092], + [21087,0.068], + [21089,0.075], + [21091,0.046], + [21093,0.068], + [21095,0.098], + [21097,0.105], + [21099,0.123], + [21101,0.067], + [21103,0.094], + [21105,0.084], + [21107,0.096], + [21109,0.098], + [21111,0.071], + [21113,0.074], + [21115,0.071], + [21117,0.071], + [21119,0.094], + [21121,0.104], + [21123,0.077], + [21125,0.083], + [21127,0.108], + [21129,0.07], + [21131,0.093], + [21133,0.08], + [21135,0.092], + [21137,0.118], + [21139,0.055], + [21141,0.096], + [21143,0.086], + [21145,0.068], + [21147,0.081], + [21149,0.081], + [21151,0.069], + [21153,0.071], + [21155,0.082], + [21157,0.058], + [21159,0.124], + [21161,0.091], + [21163,0.078], + [21165,0.06], + [21167,0.076], + [21169,0.099], + [21171,0.098], + [21173,0.1], + [21175,0.066], + [21177,0.083], + [21179,0.061], + [21181,0.116], + [21183,0.077], + [21185,0.038], + [21187,0.073], + [21189,0.071], + [21191,0.065], + [21193,0.088], + [21195,0.076], + [21197,0.087], + [21199,0.075], + [21201,0.079], + [21203,0.058], + [21205,0.082], + [21207,0.106], + [21209,0.078], + [21211,0.1], + [21213,0.093], + [21215,0.059], + [21217,0.094], + [21219,0.177], + [21221,0.118], + [21223,0.074], + [21225,0.074], + [21227,0.075], + [21229,0.09], + [21231,0.1], + [21233,0.089], + [21235,0.081], + [21237,0.08], + [21239,0.076], + [22001,0.135], + [22003,0.11], + [22005,0.085], + [22007,0.129], + [22009,0.138], + [22011,0.148], + [22013,0.147], + [22015,0.1], + [22017,0.123], + [22019,0.125], + [22021,0.19], + [22023,0.105], + [22025,0.205], + [22027,0.132], + [22029,0.241], + [22031,0.129], + [22033,0.107], + [22035,0.143], + [22037,0.118], + [22039,0.122], + [22041,0.169], + [22043,0.107], + [22045,0.139], + [22047,0.109], + [22049,0.121], + [22051,0.137], + [22053,0.11], + [22055,0.124], + [22057,0.122], + [22059,0.125], + [22061,0.124], + [22063,0.115], + [22065,0.266], + [22067,0.134], + [22069,0.137], + [22071,0.124], + [22073,0.13], + [22075,0.109], + [22077,0.141], + [22079,0.121], + [22081,0.132], + [22083,0.205], + [22085,0.14], + [22087,0.124], + [22089,0.101], + [22091,0.176], + [22093,0.133], + [22095,0.127], + [22097,0.126], + [22099,0.13], + [22101,0.134], + [22103,0.103], + [22105,0.131], + [22107,0.245], + [22109,0.145], + [22111,0.145], + [22113,0.123], + [22115,0.108], + [22117,0.154], + [22119,0.136], + [22121,0.104], + [22123,0.232], + [22125,0.066], + [22127,0.147], + [23001,0.087], + [23003,0.09], + [23005,0.069], + [23007,0.101], + [23009,0.125], + [23011,0.078], + [23013,0.109], + [23015,0.111], + [23017,0.104], + [23019,0.103], + [23021,0.123], + [23023,0.07], + [23025,0.113], + [23027,0.111], + [23029,0.126], + [23031,0.084], + [24001,0.059], + [24003,0.054], + [24005,0.067], + [24009,0.053], + [24011,0.083], + [24013,0.037], + [24015,0.055], + [24017,0.041], + [24019,0.056], + [24021,0.053], + [24023,0.075], + [24025,0.039], + [24027,0.048], + [24029,0.063], + [24031,0.084], + [24033,0.119], + [24035,0.05], + [24037,0.058], + [24039,0.087], + [24041,0.062], + [24043,0.07], + [24045,0.083], + [24047,0.074], + [24510,0.08], + [25001,0.032], + [25003,0.029], + [25005,0.032], + [25007,0.032], + [25009,0.033], + [25011,0.026], + [25013,0.033], + [25015,0.026], + [25017,0.028], + [25019,0.055], + [25021,0.021], + [25023,0.026], + [25025,0.041], + [25027,0.028], + [26001,0.083], + [26003,0.092], + [26005,0.061], + [26007,0.076], + [26009,0.079], + [26011,0.084], + [26013,0.068], + [26015,0.058], + [26017,0.064], + [26019,0.084], + [26021,0.087], + [26023,0.109], + [26025,0.069], + [26027,0.087], + [26029,0.073], + [26031,0.1], + [26033,0.087], + [26035,0.123], + [26037,0.041], + [26039,0.069], + [26041,0.075], + [26043,0.077], + [26045,0.061], + [26047,0.087], + [26049,0.066], + [26051,0.114], + [26053,0.106], + [26055,0.074], + [26057,0.071], + [26059,0.089], + [26061,0.08], + [26063,0.076], + [26065,0.068], + [26067,0.066], + [26069,0.088], + [26071,0.082], + [26073,0.095], + [26075,0.074], + [26077,0.07], + [26079,0.109], + [26081,0.074], + [26083,0.109], + [26085,0.088], + [26087,0.069], + [26089,0.06], + [26091,0.072], + [26093,0.046], + [26095,0.09], + [26097,0.123], + [26099,0.068], + [26101,0.083], + [26103,0.065], + [26105,0.08], + [26107,0.069], + [26109,0.063], + [26111,0.055], + [26113,0.094], + [26115,0.058], + [26117,0.09], + [26119,0.092], + [26121,0.065], + [26123,0.078], + [26125,0.058], + [26127,0.099], + [26129,0.087], + [26131,0.132], + [26133,0.115], + [26135,0.146], + [26137,0.074], + [26139,0.048], + [26141,0.095], + [26143,0.09], + [26145,0.066], + [26147,0.067], + [26149,0.091], + [26151,0.112], + [26153,0.081], + [26155,0.076], + [26157,0.074], + [26159,0.098], + [26161,0.047], + [26163,0.088], + [26165,0.103], + [27001,0.046], + [27003,0.048], + [27005,0.077], + [27007,0.105], + [27009,0.051], + [27011,0.053], + [27013,0.043], + [27015,0.045], + [27017,0.05], + [27019,0.035], + [27021,0.074], + [27023,0.069], + [27025,0.046], + [27027,0.051], + [27029,0.095], + [27031,0.083], + [27033,0.052], + [27035,0.058], + [27037,0.046], + [27039,0.046], + [27041,0.035], + [27043,0.061], + [27045,0.091], + [27047,0.067], + [27049,0.064], + [27051,0.054], + [27053,0.061], + [27055,0.044], + [27057,0.065], + [27059,0.049], + [27061,0.07], + [27063,0.031], + [27065,0.059], + [27067,0.056], + [27069,0.052], + [27071,0.049], + [27073,0.033], + [27075,0.046], + [27077,0.039], + [27079,0.045], + [27081,0.058], + [27083,0.056], + [27085,0.048], + [27087,0.149], + [27089,0.056], + [27091,0.061], + [27093,0.058], + [27095,0.066], + [27097,0.053], + [27099,0.071], + [27101,0.048], + [27103,0.036], + [27105,0.088], + [27107,0.069], + [27109,0.047], + [27111,0.055], + [27113,0.035], + [27115,0.077], + [27117,0.067], + [27119,0.057], + [27121,0.045], + [27123,0.065], + [27125,0.055], + [27127,0.066], + [27129,0.06], + [27131,0.053], + [27133,0.068], + [27135,0.039], + [27137,0.049], + [27139,0.046], + [27141,0.031], + [27143,0.051], + [27145,0.044], + [27147,0.039], + [27149,0.023], + [27151,0.048], + [27153,0.104], + [27155,0.036], + [27157,0.047], + [27159,0.064], + [27161,0.041], + [27163,0.036], + [27165,0.141], + [27167,0.058], + [27169,0.065], + [27171,0.037], + [27173,0.07], + [28001,0.163], + [28003,0.155], + [28005,0.151], + [28007,0.115], + [28009,0.175], + [28011,0.175], + [28013,0.14], + [28015,0.098], + [28017,0.143], + [28019,0.089], + [28021,0.156], + [28023,0.099], + [28025,0.131], + [28027,0.14], + [28029,0.15], + [28031,0.157], + [28033,0.102], + [28035,0.154], + [28037,0.154], + [28039,0.155], + [28041,0.156], + [28043,0.129], + [28045,0.164], + [28047,0.169], + [28049,0.135], + [28051,0.191], + [28053,0.179], + [28055,0.138], + [28057,0.117], + [28059,0.146], + [28061,0.133], + [28063,0.117], + [28065,0.18], + [28067,0.123], + [28069,0.114], + [28071,0.103], + [28073,0.125], + [28075,0.133], + [28077,0.164], + [28079,0.161], + [28081,0.119], + [28083,0.159], + [28085,0.134], + [28087,0.131], + [28089,0.079], + [28091,0.162], + [28093,0.168], + [28095,0.112], + [28097,0.089], + [28099,0.135], + [28101,0.12], + [28103,0.142], + [28105,0.11], + [28107,0.146], + [28109,0.153], + [28111,0.173], + [28113,0.142], + [28115,0.179], + [28117,0.139], + [28119,0.214], + [28121,0.098], + [28123,0.167], + [28125,0.183], + [28127,0.147], + [28129,0.123], + [28131,0.126], + [28133,0.179], + [28135,0.123], + [28137,0.123], + [28139,0.113], + [28141,0.145], + [28143,0.156], + [28145,0.125], + [28147,0.203], + [28149,0.147], + [28151,0.188], + [28153,0.118], + [28155,0.131], + [28157,0.186], + [28159,0.122], + [28161,0.127], + [28163,0.142], + [29001,0.08], + [29003,0.07], + [29005,0.107], + [29007,0.114], + [29009,0.163], + [29011,0.114], + [29013,0.102], + [29015,0.126], + [29017,0.104], + [29019,0.074], + [29021,0.105], + [29023,0.123], + [29025,0.094], + [29027,0.089], + [29029,0.14], + [29031,0.086], + [29033,0.11], + [29035,0.192], + [29037,0.075], + [29039,0.147], + [29041,0.072], + [29043,0.098], + [29045,0.146], + [29047,0.083], + [29049,0.096], + [29051,0.093], + [29053,0.086], + [29055,0.166], + [29057,0.151], + [29059,0.204], + [29061,0.181], + [29063,0.075], + [29065,0.182], + [29067,0.153], + [29069,0.151], + [29071,0.082], + [29073,0.064], + [29075,0.095], + [29077,0.117], + [29079,0.16], + [29081,0.142], + [29083,0.119], + [29085,0.158], + [29087,0.094], + [29089,0.085], + [29091,0.123], + [29093,0.149], + [29095,0.126], + [29097,0.131], + [29099,0.089], + [29101,0.094], + [29103,0.199], + [29105,0.125], + [29107,0.093], + [29109,0.14], + [29111,0.112], + [29113,0.088], + [29115,0.122], + [29117,0.124], + [29119,0.194], + [29121,0.109], + [29123,0.12], + [29125,0.136], + [29127,0.115], + [29129,0.21], + [29131,0.113], + [29133,0.167], + [29135,0.149], + [29137,0.125], + [29139,0.099], + [29141,0.243], + [29143,0.178], + [29145,0.136], + [29147,0.092], + [29149,0.176], + [29151,0.06], + [29153,0.141], + [29155,0.145], + [29157,0.059], + [29159,0.133], + [29161,0.094], + [29163,0.116], + [29165,0.068], + [29167,0.13], + [29169,0.108], + [29171,0.143], + [29173,0.084], + [29175,0.104], + [29177,0.093], + [29179,0.128], + [29181,0.145], + [29183,0.055], + [29185,0.161], + [29186,0.063], + [29187,0.116], + [29189,0.074], + [29195,0.09], + [29197,0.148], + [29199,0.312], + [29201,0.12], + [29203,0.179], + [29205,0.151], + [29207,0.132], + [29209,0.121], + [29211,0.157], + [29213,0.187], + [29215,0.164], + [29217,0.152], + [29219,0.096], + [29221,0.145], + [29223,0.14], + [29225,0.166], + [29227,0.094], + [29229,0.191], + [29510,0.132], + [30001,0.092], + [30003,0.393], + [30005,0.224], + [30007,0.112], + [30009,0.103], + [30011,0.149], + [30013,0.103], + [30015,0.173], + [30017,0.084], + [30019,0.06], + [30021,0.085], + [30023,0.09], + [30025,0.096], + [30027,0.109], + [30029,0.109], + [30031,0.088], + [30033,0.133], + [30035,0.438], + [30037,0.146], + [30039,0.105], + [30041,0.114], + [30043,0.095], + [30045,0.093], + [30047,0.185], + [30049,0.074], + [30051,0.107], + [30053,0.143], + [30055,0.056], + [30057,0.128], + [30059,0.124], + [30061,0.119], + [30063,0.097], + [30065,0.106], + [30067,0.122], + [30069,0.199], + [30071,0.173], + [30073,0.126], + [30075,0.144], + [30077,0.113], + [30079,0.064], + [30081,0.127], + [30083,0.14], + [30085,0.24], + [30087,0.193], + [30089,0.164], + [30091,0.09], + [30093,0.094], + [30095,0.087], + [30097,0.071], + [30099,0.099], + [30101,0.127], + [30103,0.058], + [30105,0.096], + [30107,0.147], + [30109,0.109], + [30111,0.104], + [31001,0.077], + [31003,0.082], + [31005,0.1], + [31007,0.077], + [31009,0.129], + [31011,0.054], + [31013,0.071], + [31015,0.128], + [31017,0.121], + [31019,0.083], + [31021,0.091], + [31023,0.065], + [31025,0.058], + [31027,0.055], + [31029,0.113], + [31031,0.072], + [31033,0.069], + [31035,0.108], + [31037,0.123], + [31039,0.086], + [31041,0.111], + [31043,0.156], + [31045,0.126], + [31047,0.128], + [31049,0.152], + [31051,0.08], + [31053,0.11], + [31055,0.101], + [31057,0.187], + [31059,0.084], + [31061,0.057], + [31063,0.093], + [31065,0.08], + [31067,0.051], + [31069,0.078], + [31071,0.062], + [31073,0.07], + [31075,0.122], + [31077,0.069], + [31079,0.141], + [31081,0.05], + [31083,0.092], + [31085,0.164], + [31087,0.134], + [31089,0.08], + [31091,0.059], + [31093,0.063], + [31095,0.057], + [31097,0.073], + [31099,0.078], + [31101,0.11], + [31103,0.082], + [31105,0.139], + [31107,0.108], + [31109,0.083], + [31111,0.093], + [31113,0.1], + [31115,0.069], + [31117,0.044], + [31119,0.094], + [31121,0.086], + [31123,0.117], + [31125,0.081], + [31127,0.066], + [31129,0.102], + [31131,0.075], + [31133,0.14], + [31135,0.058], + [31137,0.053], + [31139,0.041], + [31141,0.082], + [31143,0.104], + [31145,0.09], + [31147,0.074], + [31149,0.125], + [31151,0.1], + [31153,0.059], + [31155,0.049], + [31157,0.118], + [31159,0.06], + [31161,0.147], + [31163,0.078], + [31165,0.083], + [31167,0.089], + [31169,0.055], + [31171,0.059], + [31173,0.282], + [31175,0.09], + [31177,0.056], + [31179,0.065], + [31181,0.09], + [31183,0.053], + [31185,0.077], + [32001,0.139], + [32003,0.147], + [32005,0.108], + [32007,0.105], + [32009,0.202], + [32011,0.136], + [32013,0.16], + [32015,0.095], + [32017,0.104], + [32019,0.116], + [32021,0.153], + [32023,0.127], + [32027,0.165], + [32029,0.088], + [32031,0.118], + [32033,0.112], + [32510,0.116], + [33001,0.091], + [33003,0.108], + [33005,0.085], + [33007,0.097], + [33009,0.093], + [33011,0.073], + [33013,0.07], + [33015,0.057], + [33017,0.079], + [33019,0.081], + [34001,0.111], + [34003,0.092], + [34005,0.052], + [34007,0.087], + [34009,0.067], + [34011,0.121], + [34013,0.137], + [34015,0.057], + [34017,0.162], + [34019,0.035], + [34021,0.094], + [34023,0.089], + [34025,0.074], + [34027,0.06], + [34029,0.073], + [34031,0.139], + [34033,0.073], + [34035,0.064], + [34037,0.064], + [34039,0.13], + [34041,0.071], + [35001,0.108], + [35003,0.13], + [35005,0.135], + [35006,0.147], + [35007,0.096], + [35009,0.141], + [35011,0.091], + [35013,0.133], + [35015,0.117], + [35017,0.047], + [35019,0.055], + [35021,0.097], + [35023,0.105], + [35025,0.159], + [35027,0.116], + [35028,0.043], + [35029,0.144], + [35031,0.24], + [35033,0.112], + [35035,0.119], + [35037,0.062], + [35039,0.138], + [35041,0.141], + [35043,0.108], + [35045,0.169], + [35047,0.12], + [35049,0.133], + [35051,0.076], + [35053,0.125], + [35055,0.119], + [35057,0.088], + [35059,0.147], + [35061,0.104], + [36001,0.047], + [36003,0.081], + [36005,0.111], + [36007,0.049], + [36009,0.075], + [36011,0.065], + [36013,0.066], + [36015,0.055], + [36017,0.053], + [36019,0.049], + [36021,0.052], + [36023,0.048], + [36025,0.071], + [36027,0.056], + [36029,0.043], + [36031,0.052], + [36033,0.073], + [36035,0.072], + [36037,0.051], + [36039,0.057], + [36041,0.116], + [36043,0.066], + [36045,0.064], + [36047,0.095], + [36049,0.078], + [36051,0.042], + [36053,0.049], + [36055,0.045], + [36057,0.082], + [36059,0.058], + [36061,0.067], + [36063,0.049], + [36065,0.05], + [36067,0.052], + [36069,0.05], + [36071,0.058], + [36073,0.064], + [36075,0.061], + [36077,0.064], + [36079,0.057], + [36081,0.122], + [36083,0.048], + [36085,0.059], + [36087,0.073], + [36089,0.077], + [36091,0.038], + [36093,0.055], + [36095,0.05], + [36097,0.069], + [36099,0.097], + [36101,0.072], + [36103,0.065], + [36105,0.077], + [36107,0.057], + [36109,0.05], + [36111,0.069], + [36113,0.059], + [36115,0.07], + [36117,0.059], + [36119,0.078], + [36121,0.049], + [36123,0.196], + [37001,0.129], + [37003,0.11], + [37005,0.142], + [37007,0.148], + [37009,0.139], + [37011,0.163], + [37013,0.123], + [37015,0.133], + [37017,0.123], + [37019,0.125], + [37021,0.115], + [37023,0.13], + [37025,0.089], + [37027,0.14], + [37029,0.104], + [37031,0.122], + [37033,0.099], + [37035,0.113], + [37037,0.125], + [37039,0.162], + [37041,0.137], + [37043,0.156], + [37045,0.13], + [37047,0.151], + [37049,0.119], + [37051,0.112], + [37053,0.129], + [37055,0.16], + [37057,0.115], + [37059,0.113], + [37061,0.193], + [37063,0.131], + [37065,0.126], + [37067,0.116], + [37069,0.125], + [37071,0.123], + [37073,0.104], + [37075,0.17], + [37077,0.095], + [37079,0.161], + [37081,0.113], + [37083,0.123], + [37085,0.119], + [37087,0.124], + [37089,0.124], + [37091,0.124], + [37093,0.138], + [37095,0.135], + [37097,0.107], + [37099,0.138], + [37101,0.134], + [37103,0.157], + [37105,0.148], + [37107,0.146], + [37109,0.118], + [37111,0.124], + [37113,0.156], + [37115,0.107], + [37117,0.116], + [37119,0.131], + [37121,0.132], + [37123,0.154], + [37125,0.103], + [37127,0.118], + [37129,0.112], + [37131,0.148], + [37133,0.1], + [37135,0.08], + [37137,0.145], + [37139,0.135], + [37141,0.13], + [37143,0.124], + [37145,0.105], + [37147,0.12], + [37149,0.12], + [37151,0.141], + [37153,0.141], + [37155,0.16], + [37157,0.112], + [37159,0.129], + [37161,0.123], + [37163,0.175], + [37165,0.127], + [37167,0.121], + [37169,0.124], + [37171,0.133], + [37173,0.211], + [37175,0.161], + [37177,0.173], + [37179,0.099], + [37181,0.115], + [37183,0.096], + [37185,0.14], + [37187,0.127], + [37189,0.094], + [37191,0.137], + [37193,0.123], + [37195,0.138], + [37197,0.132], + [37199,0.143], + [38001,0.059], + [38003,0.051], + [38005,0.133], + [38007,0.047], + [38009,0.059], + [38011,0.061], + [38013,0.088], + [38015,0.063], + [38017,0.069], + [38019,0.047], + [38021,0.052], + [38023,0.051], + [38025,0.184], + [38027,0.091], + [38029,0.063], + [38031,0.053], + [38033,0.151], + [38035,0.072], + [38037,0.062], + [38039,0.067], + [38041,0.068], + [38043,0.136], + [38045,0.067], + [38047,0.031], + [38049,0.054], + [38051,0.036], + [38053,0.178], + [38055,0.064], + [38057,0.129], + [38059,0.059], + [38061,0.187], + [38063,0.09], + [38065,0.112], + [38067,0.072], + [38069,0.056], + [38071,0.072], + [38073,0.041], + [38075,0.049], + [38077,0.043], + [38079,0.278], + [38081,0.037], + [38083,0.073], + [38085,0.303], + [38087,0.083], + [38089,0.091], + [38091,0.036], + [38093,0.076], + [38095,0.087], + [38097,0.043], + [38099,0.067], + [38101,0.077], + [38103,0.037], + [38105,0.11], + [39001,0.101], + [39003,0.079], + [39005,0.095], + [39007,0.1], + [39009,0.069], + [39011,0.043], + [39013,0.071], + [39015,0.083], + [39017,0.068], + [39019,0.115], + [39021,0.061], + [39023,0.073], + [39025,0.059], + [39027,0.074], + [39029,0.087], + [39031,0.129], + [39033,0.073], + [39035,0.07], + [39037,0.066], + [39039,0.069], + [39041,0.04], + [39043,0.069], + [39045,0.057], + [39047,0.087], + [39049,0.09], + [39051,0.049], + [39053,0.111], + [39055,0.103], + [39057,0.056], + [39059,0.09], + [39061,0.073], + [39063,0.06], + [39065,0.096], + [39067,0.09], + [39069,0.045], + [39071,0.095], + [39073,0.085], + [39075,0.402], + [39077,0.084], + [39079,0.097], + [39081,0.07], + [39083,0.101], + [39085,0.058], + [39087,0.078], + [39089,0.074], + [39091,0.093], + [39093,0.059], + [39095,0.073], + [39097,0.077], + [39099,0.065], + [39101,0.072], + [39103,0.052], + [39105,0.083], + [39107,0.048], + [39109,0.064], + [39111,0.102], + [39113,0.08], + [39115,0.099], + [39117,0.062], + [39119,0.073], + [39121,0.056], + [39123,0.057], + [39125,0.07], + [39127,0.078], + [39129,0.077], + [39131,0.103], + [39133,0.065], + [39135,0.069], + [39137,0.033], + [39139,0.095], + [39141,0.079], + [39143,0.07], + [39145,0.075], + [39147,0.059], + [39149,0.045], + [39151,0.065], + [39153,0.068], + [39155,0.083], + [39157,0.097], + [39159,0.053], + [39161,0.074], + [39163,0.089], + [39165,0.044], + [39167,0.082], + [39169,0.128], + [39171,0.05], + [39173,0.051], + [39175,0.065], + [40001,0.269], + [40003,0.116], + [40005,0.186], + [40007,0.125], + [40009,0.146], + [40011,0.118], + [40013,0.172], + [40015,0.214], + [40017,0.103], + [40019,0.146], + [40021,0.231], + [40023,0.264], + [40025,0.132], + [40027,0.101], + [40029,0.239], + [40031,0.141], + [40033,0.171], + [40035,0.162], + [40037,0.137], + [40039,0.156], + [40041,0.186], + [40043,0.16], + [40045,0.128], + [40047,0.133], + [40049,0.155], + [40051,0.125], + [40053,0.081], + [40055,0.142], + [40057,0.166], + [40059,0.152], + [40061,0.206], + [40063,0.206], + [40065,0.131], + [40067,0.199], + [40069,0.192], + [40071,0.145], + [40073,0.122], + [40075,0.152], + [40077,0.199], + [40079,0.198], + [40081,0.145], + [40083,0.129], + [40085,0.127], + [40087,0.124], + [40089,0.212], + [40091,0.178], + [40093,0.113], + [40095,0.166], + [40097,0.158], + [40099,0.167], + [40101,0.188], + [40103,0.083], + [40105,0.18], + [40107,0.23], + [40109,0.153], + [40111,0.172], + [40113,0.13], + [40115,0.169], + [40117,0.16], + [40119,0.125], + [40121,0.175], + [40123,0.172], + [40125,0.153], + [40127,0.189], + [40129,0.124], + [40131,0.115], + [40133,0.203], + [40135,0.207], + [40137,0.141], + [40139,0.158], + [40141,0.154], + [40143,0.147], + [40145,0.123], + [40147,0.142], + [40149,0.104], + [40151,0.116], + [40153,0.11], + [41001,0.092], + [41003,0.063], + [41005,0.068], + [41007,0.096], + [41009,0.08], + [41011,0.101], + [41013,0.084], + [41015,0.074], + [41017,0.107], + [41019,0.079], + [41021,0.108], + [41023,0.08], + [41025,0.078], + [41027,0.118], + [41029,0.097], + [41031,0.131], + [41033,0.094], + [41035,0.105], + [41037,0.105], + [41039,0.09], + [41041,0.117], + [41043,0.083], + [41045,0.124], + [41047,0.099], + [41049,0.121], + [41051,0.089], + [41053,0.082], + [41055,0.18], + [41057,0.093], + [41059,0.107], + [41061,0.094], + [41063,0.061], + [41065,0.094], + [41067,0.081], + [41069,0.072], + [41071,0.077], + [42001,0.066], + [42003,0.052], + [42005,0.059], + [42007,0.051], + [42009,0.078], + [42011,0.076], + [42013,0.062], + [42015,0.078], + [42017,0.048], + [42019,0.043], + [42021,0.056], + [42023,0.048], + [42025,0.065], + [42027,0.059], + [42029,0.065], + [42031,0.083], + [42033,0.076], + [42035,0.095], + [42037,0.054], + [42039,0.106], + [42041,0.061], + [42043,0.071], + [42045,0.062], + [42047,0.04], + [42049,0.063], + [42051,0.066], + [42053,0.042], + [42055,0.104], + [42057,0.076], + [42059,0.063], + [42061,0.067], + [42063,0.098], + [42065,0.086], + [42067,0.123], + [42069,0.056], + [42071,0.12], + [42073,0.058], + [42075,0.103], + [42077,0.079], + [42079,0.066], + [42081,0.065], + [42083,0.062], + [42085,0.074], + [42087,0.126], + [42089,0.086], + [42091,0.045], + [42093,0.061], + [42095,0.064], + [42097,0.071], + [42099,0.094], + [42101,0.106], + [42103,0.065], + [42105,0.093], + [42107,0.068], + [42109,0.132], + [42111,0.076], + [42113,0.093], + [42115,0.088], + [42117,0.087], + [42119,0.104], + [42121,0.073], + [42123,0.066], + [42125,0.05], + [42127,0.066], + [42129,0.044], + [42131,0.063], + [42133,0.065], + [44001,0.042], + [44003,0.047], + [44005,0.058], + [44007,0.081], + [44009,0.04], + [45001,0.121], + [45003,0.116], + [45005,0.145], + [45007,0.114], + [45009,0.16], + [45011,0.148], + [45013,0.131], + [45015,0.121], + [45017,0.122], + [45019,0.123], + [45021,0.126], + [45023,0.12], + [45025,0.132], + [45027,0.123], + [45029,0.129], + [45031,0.129], + [45033,0.168], + [45035,0.107], + [45037,0.1], + [45039,0.142], + [45041,0.106], + [45043,0.143], + [45045,0.122], + [45047,0.148], + [45049,0.107], + [45051,0.156], + [45053,0.185], + [45055,0.119], + [45057,0.114], + [45059,0.124], + [45061,0.117], + [45063,0.109], + [45065,0.089], + [45067,0.14], + [45069,0.123], + [45071,0.099], + [45073,0.13], + [45075,0.139], + [45077,0.104], + [45079,0.1], + [45081,0.157], + [45083,0.12], + [45085,0.125], + [45087,0.099], + [45089,0.117], + [45091,0.095], + [46003,0.05], + [46005,0.071], + [46007,0.206], + [46009,0.057], + [46011,0.064], + [46013,0.078], + [46015,0.097], + [46017,0.471], + [46019,0.14], + [46021,0.044], + [46023,0.207], + [46025,0.075], + [46027,0.09], + [46029,0.063], + [46031,0.239], + [46033,0.104], + [46035,0.071], + [46037,0.108], + [46039,0.061], + [46041,0.299], + [46043,0.127], + [46045,0.058], + [46047,0.093], + [46049,0.106], + [46051,0.037], + [46053,0.109], + [46055,0.081], + [46057,0.059], + [46059,0.046], + [46061,0.053], + [46063,0.076], + [46065,0.077], + [46067,0.071], + [46069,0.066], + [46071,0.247], + [46073,0.072], + [46075,0.15], + [46077,0.045], + [46079,0.064], + [46081,0.103], + [46083,0.046], + [46085,0.189], + [46087,0.071], + [46089,0.117], + [46091,0.081], + [46093,0.108], + [46095,0.33], + [46097,0.091], + [46099,0.079], + [46101,0.106], + [46102,null], + [46103,0.113], + [46105,0.1], + [46107,0.059], + [46109,0.208], + [46111,0.062], + [46115,0.075], + [46117,0.064], + [46119,0.09], + [46121,0.301], + [46123,0.098], + [46125,0.067], + [46127,0.073], + [46129,0.1], + [46135,0.063], + [46137,0.23], + [47001,0.087], + [47003,0.125], + [47005,0.109], + [47007,0.157], + [47009,0.096], + [47011,0.124], + [47013,0.127], + [47015,0.087], + [47017,0.094], + [47019,0.125], + [47021,0.09], + [47023,0.122], + [47025,0.086], + [47027,0.137], + [47029,0.128], + [47031,0.106], + [47033,0.142], + [47035,0.118], + [47037,0.134], + [47039,0.109], + [47041,0.122], + [47043,0.121], + [47045,0.098], + [47047,0.088], + [47049,0.113], + [47051,0.078], + [47053,0.091], + [47055,0.104], + [47057,0.107], + [47059,0.108], + [47061,0.188], + [47063,0.129], + [47065,0.095], + [47067,0.114], + [47069,0.116], + [47071,0.131], + [47073,0.102], + [47075,0.104], + [47077,0.095], + [47079,0.103], + [47081,0.113], + [47083,0.109], + [47085,0.09], + [47087,0.124], + [47089,0.104], + [47091,0.113], + [47093,0.09], + [47095,0.114], + [47097,0.106], + [47099,0.151], + [47101,0.144], + [47103,0.093], + [47105,0.112], + [47107,0.104], + [47109,0.131], + [47111,0.105], + [47113,0.093], + [47115,0.099], + [47117,0.103], + [47119,0.108], + [47121,0.104], + [47123,0.109], + [47125,0.094], + [47127,0.107], + [47129,0.115], + [47131,0.118], + [47133,0.1], + [47135,0.148], + [47137,0.096], + [47139,0.092], + [47141,0.108], + [47143,0.109], + [47145,0.094], + [47147,0.095], + [47149,0.101], + [47151,0.119], + [47153,0.102], + [47155,0.174], + [47157,0.128], + [47159,0.082], + [47161,0.097], + [47163,0.095], + [47165,0.094], + [47167,0.093], + [47169,0.163], + [47171,0.099], + [47173,0.119], + [47175,0.136], + [47177,0.131], + [47179,0.103], + [47181,0.119], + [47183,0.096], + [47185,0.11], + [47187,0.053], + [47189,0.073], + [48001,0.137], + [48003,0.154], + [48005,0.195], + [48007,0.183], + [48009,0.114], + [48011,0.061], + [48013,0.172], + [48015,0.138], + [48017,0.3], + [48019,0.165], + [48021,0.181], + [48023,0.15], + [48025,0.218], + [48027,0.123], + [48029,0.159], + [48031,0.197], + [48033,0.045], + [48035,0.185], + [48037,0.149], + [48039,0.136], + [48041,0.137], + [48043,0.193], + [48045,0.179], + [48047,0.201], + [48049,0.148], + [48051,0.194], + [48053,0.144], + [48055,0.213], + [48057,0.182], + [48059,0.221], + [48061,0.291], + [48063,0.162], + [48065,0.119], + [48067,0.156], + [48069,0.293], + [48071,0.163], + [48073,0.197], + [48075,0.172], + [48077,0.158], + [48079,0.287], + [48081,0.129], + [48083,0.241], + [48085,0.111], + [48087,0.213], + [48089,0.134], + [48091,0.13], + [48093,0.218], + [48095,0.15], + [48097,0.15], + [48099,0.111], + [48101,0.166], + [48103,0.16], + [48105,0.22], + [48107,0.221], + [48109,0.202], + [48111,0.293], + [48113,0.221], + [48115,0.165], + [48117,0.18], + [48119,0.154], + [48121,0.122], + [48123,0.128], + [48125,0.207], + [48127,0.277], + [48129,0.156], + [48131,0.255], + [48133,0.217], + [48135,0.225], + [48137,0.154], + [48139,0.161], + [48141,0.223], + [48143,0.187], + [48145,0.192], + [48147,0.167], + [48149,0.118], + [48151,0.175], + [48153,0.237], + [48155,0.122], + [48157,0.12], + [48159,0.204], + [48161,0.174], + [48163,0.238], + [48165,0.328], + [48167,0.146], + [48169,0.143], + [48171,0.181], + [48173,0.191], + [48175,0.109], + [48177,0.213], + [48179,0.196], + [48181,0.167], + [48183,0.194], + [48185,0.16], + [48187,0.13], + [48189,0.193], + [48191,0.261], + [48193,0.176], + [48195,0.184], + [48197,0.175], + [48199,0.151], + [48201,0.212], + [48203,0.16], + [48205,0.135], + [48207,0.2], + [48209,0.143], + [48211,0.267], + [48213,0.192], + [48215,0.316], + [48217,0.176], + [48219,0.184], + [48221,0.157], + [48223,0.2], + [48225,0.143], + [48227,0.163], + [48229,0.288], + [48231,0.178], + [48233,0.163], + [48235,0.181], + [48237,0.2], + [48239,0.147], + [48241,0.182], + [48243,0.197], + [48245,0.208], + [48247,0.189], + [48249,0.191], + [48251,0.174], + [48253,0.155], + [48255,0.151], + [48257,0.153], + [48259,0.09], + [48261,0.402], + [48263,0.071], + [48265,0.159], + [48267,0.217], + [48269,0.27], + [48271,0.18], + [48273,0.183], + [48275,0.171], + [48277,0.181], + [48279,0.204], + [48281,0.164], + [48283,0.294], + [48285,0.126], + [48287,0.157], + [48289,0.194], + [48291,0.207], + [48293,0.208], + [48295,0.18], + [48297,0.189], + [48299,0.169], + [48301,0.243], + [48303,0.149], + [48305,0.207], + [48307,0.184], + [48309,0.157], + [48311,0.108], + [48313,0.16], + [48315,0.162], + [48317,0.146], + [48319,0.201], + [48321,0.208], + [48323,0.292], + [48325,0.127], + [48327,0.304], + [48329,0.193], + [48331,0.127], + [48333,0.168], + [48335,0.187], + [48337,0.189], + [48339,0.145], + [48341,0.158], + [48343,0.151], + [48345,0.205], + [48347,0.203], + [48349,0.19], + [48351,0.147], + [48353,0.167], + [48355,0.177], + [48357,0.234], + [48359,0.098], + [48361,0.153], + [48363,0.207], + [48365,0.167], + [48367,0.136], + [48369,0.198], + [48371,0.191], + [48373,0.193], + [48375,0.219], + [48377,0.363], + [48379,0.215], + [48381,0.11], + [48383,0.296], + [48385,0.278], + [48387,0.163], + [48389,0.197], + [48391,0.165], + [48393,0.062], + [48395,0.158], + [48397,0.107], + [48399,0.185], + [48401,0.204], + [48403,0.216], + [48405,0.186], + [48407,0.181], + [48409,0.193], + [48411,0.195], + [48413,0.227], + [48415,0.156], + [48417,0.153], + [48419,0.233], + [48421,0.233], + [48423,0.176], + [48425,0.153], + [48427,0.337], + [48429,0.22], + [48431,0.27], + [48433,0.153], + [48435,0.174], + [48437,0.188], + [48439,0.17], + [48441,0.146], + [48443,0.126], + [48445,0.25], + [48447,0.183], + [48449,0.208], + [48451,0.163], + [48453,0.147], + [48455,0.198], + [48457,0.154], + [48459,0.159], + [48461,0.166], + [48463,0.196], + [48465,0.225], + [48467,0.179], + [48469,0.172], + [48471,0.135], + [48473,0.205], + [48475,0.194], + [48477,0.14], + [48479,0.293], + [48481,0.181], + [48483,0.213], + [48485,0.15], + [48487,0.158], + [48489,0.298], + [48491,0.1], + [48493,0.142], + [48495,0.233], + [48497,0.173], + [48499,0.154], + [48501,0.261], + [48503,0.203], + [48505,0.308], + [48507,0.204], + [49001,0.146], + [49003,0.078], + [49005,0.085], + [49007,0.117], + [49009,0.04], + [49011,0.071], + [49013,0.149], + [49015,0.1], + [49017,0.186], + [49019,0.205], + [49021,0.145], + [49023,0.128], + [49025,0.159], + [49027,0.137], + [49029,0.061], + [49031,0.199], + [49033,0.175], + [49035,0.121], + [49037,0.224], + [49039,0.131], + [49041,0.126], + [49043,0.094], + [49045,0.077], + [49047,0.151], + [49049,0.093], + [49051,0.107], + [49053,0.146], + [49055,0.208], + [49057,0.106], + [50001,0.052], + [50003,0.043], + [50005,0.055], + [50007,0.039], + [50009,0.069], + [50011,0.039], + [50013,0.041], + [50015,0.069], + [50017,0.055], + [50019,0.052], + [50021,0.054], + [50023,0.039], + [50025,0.055], + [50027,0.057], + [51001,0.167], + [51003,0.076], + [51005,0.074], + [51007,0.128], + [51009,0.101], + [51011,0.085], + [51013,0.078], + [51015,0.096], + [51017,0.136], + [51019,0.078], + [51021,0.086], + [51023,0.048], + [51025,0.087], + [51027,0.136], + [51029,0.132], + [51031,0.094], + [51033,0.086], + [51035,0.129], + [51036,0.1], + [51037,0.135], + [51041,0.078], + [51043,0.143], + [51045,0.081], + [51047,0.108], + [51049,0.135], + [51051,0.107], + [51053,0.107], + [51057,0.101], + [51059,0.094], + [51061,0.083], + [51063,0.073], + [51065,0.08], + [51067,0.112], + [51069,0.102], + [51071,0.106], + [51073,0.095], + [51075,0.048], + [51077,0.122], + [51079,0.149], + [51081,0.13], + [51083,0.128], + [51085,0.056], + [51087,0.087], + [51089,0.116], + [51091,0.094], + [51093,0.069], + [51095,0.076], + [51097,0.117], + [51099,0.075], + [51101,0.068], + [51103,0.114], + [51105,0.135], + [51107,0.068], + [51109,0.124], + [51111,0.143], + [51113,0.146], + [51115,0.086], + [51117,0.12], + [51119,0.102], + [51121,0.066], + [51125,0.116], + [51127,0.055], + [51131,0.14], + [51133,0.108], + [51135,0.103], + [51137,0.12], + [51139,0.124], + [51141,0.128], + [51143,0.098], + [51145,0.079], + [51147,0.098], + [51149,0.087], + [51153,0.119], + [51155,0.089], + [51157,0.143], + [51159,0.11], + [51161,0.06], + [51163,0.11], + [51165,0.12], + [51167,0.109], + [51169,0.111], + [51171,0.104], + [51173,0.108], + [51175,0.093], + [51177,0.091], + [51179,0.077], + [51181,0.127], + [51183,0.05], + [51185,0.119], + [51187,0.11], + [51191,0.102], + [51193,0.126], + [51195,0.116], + [51197,0.119], + [51199,0.057], + [51510,0.137], + [51520,0.112], + [51530,0.173], + [51540,0.092], + [51550,0.081], + [51570,0.105], + [51580,0.132], + [51590,0.113], + [51595,0.213], + [51600,0.11], + [51610,0.029], + [51620,0.106], + [51630,0.108], + [51640,0.09], + [51650,0.11], + [51660,0.159], + [51670,0.109], + [51678,0.054], + [51680,0.102], + [51683,0.166], + [51685,0.218], + [51690,0.148], + [51700,0.119], + [51710,0.138], + [51720,0.097], + [51730,0.123], + [51735,0.042], + [51740,0.121], + [51750,0.084], + [51760,0.149], + [51770,0.136], + [51775,0.078], + [51790,0.099], + [51800,0.081], + [51810,0.089], + [51820,0.154], + [51830,0.055], + [51840,0.154], + [53001,0.195], + [53003,0.08], + [53005,0.095], + [53007,0.109], + [53009,0.093], + [53011,0.077], + [53013,0.065], + [53015,0.074], + [53017,0.128], + [53019,0.102], + [53021,0.159], + [53023,0.088], + [53025,0.153], + [53027,0.112], + [53029,0.065], + [53031,0.076], + [53033,0.07], + [53035,0.062], + [53037,0.099], + [53039,0.088], + [53041,0.102], + [53043,0.065], + [53045,0.108], + [53047,0.154], + [53049,0.09], + [53051,0.09], + [53053,0.081], + [53055,0.083], + [53057,0.095], + [53059,0.066], + [53061,0.078], + [53063,0.076], + [53065,0.081], + [53067,0.068], + [53069,0.09], + [53071,0.091], + [53073,0.08], + [53075,0.059], + [53077,0.159], + [54001,0.081], + [54003,0.077], + [54005,0.071], + [54007,0.08], + [54009,0.065], + [54011,0.089], + [54013,0.097], + [54015,0.061], + [54017,0.068], + [54019,0.095], + [54021,0.11], + [54023,0.073], + [54025,0.086], + [54027,0.098], + [54029,0.073], + [54031,0.088], + [54033,0.074], + [54035,0.074], + [54037,0.069], + [54039,0.075], + [54041,0.096], + [54043,0.084], + [54045,0.091], + [54047,0.117], + [54049,0.071], + [54051,0.077], + [54053,0.064], + [54055,0.072], + [54057,0.088], + [54059,0.067], + [54061,0.07], + [54063,0.096], + [54065,0.08], + [54067,0.077], + [54069,0.068], + [54071,0.065], + [54073,0.067], + [54075,0.102], + [54077,0.091], + [54079,0.063], + [54081,0.093], + [54083,0.104], + [54085,0.117], + [54087,0.062], + [54089,0.058], + [54091,0.072], + [54093,0.064], + [54095,0.122], + [54097,0.094], + [54099,0.093], + [54101,0.061], + [54103,0.079], + [54105,0.096], + [54107,0.074], + [54109,0.093], + [55001,0.064], + [55003,0.065], + [55005,0.073], + [55007,0.077], + [55009,0.065], + [55011,0.06], + [55013,0.076], + [55015,0.037], + [55017,0.062], + [55019,0.225], + [55021,0.056], + [55023,0.068], + [55025,0.05], + [55027,0.046], + [55029,0.043], + [55031,0.066], + [55033,0.07], + [55035,0.08], + [55037,0.07], + [55039,0.047], + [55041,0.132], + [55043,0.073], + [55045,0.05], + [55047,0.092], + [55049,0.054], + [55051,0.084], + [55053,0.099], + [55055,0.056], + [55057,0.067], + [55059,0.077], + [55061,0.042], + [55063,0.055], + [55065,0.093], + [55067,0.073], + [55069,0.055], + [55071,0.045], + [55073,0.065], + [55075,0.059], + [55077,0.079], + [55078,0.249], + [55079,0.088], + [55081,0.089], + [55083,0.051], + [55085,0.056], + [55087,0.052], + [55089,0.036], + [55091,0.084], + [55093,0.056], + [55095,0.073], + [55097,0.051], + [55099,0.055], + [55101,0.064], + [55103,0.08], + [55105,0.074], + [55107,0.101], + [55109,0.048], + [55111,0.078], + [55113,0.09], + [55115,0.077], + [55117,0.053], + [55119,0.092], + [55121,0.081], + [55123,0.166], + [55125,0.081], + [55127,0.082], + [55129,0.067], + [55131,0.042], + [55133,0.034], + [55135,0.068], + [55137,0.082], + [55139,0.053], + [55141,0.051], + [56001,0.081], + [56003,0.163], + [56005,0.096], + [56007,0.121], + [56009,0.086], + [56011,0.105], + [56013,0.189], + [56015,0.138], + [56017,0.114], + [56019,0.113], + [56021,0.096], + [56023,0.118], + [56025,0.14], + [56027,0.159], + [56029,0.104], + [56031,0.104], + [56033,0.094], + [56035,0.135], + [56037,0.124], + [56039,0.117], + [56041,0.135], + [56043,0.168], + [56045,0.128] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-2019.json b/data/regional/united-states/health/insurance/us-health-uninsured-2019.json new file mode 100644 index 0000000..ba44a52 --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Uninsured", + "description" : "Percent of the population that are uninsured.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.uninsured.2019"], + [1001,0.071], + [1003,0.089], + [1005,0.113], + [1007,0.107], + [1009,0.108], + [1011,0.114], + [1013,0.087], + [1015,0.095], + [1017,0.103], + [1019,0.086], + [1021,0.13], + [1023,0.103], + [1025,0.097], + [1027,0.103], + [1029,0.123], + [1031,0.098], + [1033,0.072], + [1035,0.127], + [1037,0.08], + [1039,0.111], + [1041,0.087], + [1043,0.111], + [1045,0.116], + [1047,0.111], + [1049,0.137], + [1051,0.074], + [1053,0.142], + [1055,0.106], + [1057,0.076], + [1059,0.117], + [1061,0.126], + [1063,0.128], + [1065,0.095], + [1067,0.098], + [1069,0.105], + [1071,0.095], + [1073,0.092], + [1075,0.106], + [1077,0.09], + [1079,0.091], + [1081,0.078], + [1083,0.096], + [1085,0.088], + [1087,0.075], + [1089,0.083], + [1091,0.088], + [1093,0.087], + [1095,0.123], + [1097,0.112], + [1099,0.114], + [1101,0.1], + [1103,0.096], + [1105,0.093], + [1107,0.091], + [1109,0.097], + [1111,0.091], + [1113,0.115], + [1115,0.085], + [1117,0.062], + [1119,0.125], + [1121,0.093], + [1123,0.082], + [1125,0.072], + [1127,0.118], + [1129,0.094], + [1131,0.109], + [1133,0.123], + [2013,0.463], + [2016,0.175], + [2020,0.112], + [2050,0.203], + [2060,0.205], + [2068,0.185], + [2070,0.209], + [2090,0.098], + [2100,0.134], + [2105,0.247], + [2110,0.105], + [2122,0.16], + [2130,0.114], + [2150,0.172], + [2158,0.199], + [2164,0.334], + [2170,0.148], + [2180,0.207], + [2185,0.186], + [2188,0.257], + [2195,0.096], + [2198,0.247], + [2220,0.163], + [2230,0.182], + [2240,0.171], + [2261,0.192], + [2275,0.188], + [2282,0.237], + [2290,0.271], + [4001,0.251], + [4003,0.078], + [4005,0.112], + [4007,0.1], + [4009,0.069], + [4011,0.046], + [4012,0.147], + [4013,0.106], + [4015,0.089], + [4017,0.132], + [4019,0.092], + [4021,0.088], + [4023,0.102], + [4025,0.098], + [4027,0.127], + [5001,0.068], + [5003,0.078], + [5005,0.052], + [5007,0.089], + [5009,0.069], + [5011,0.11], + [5013,0.093], + [5015,0.111], + [5017,0.093], + [5019,0.085], + [5021,0.065], + [5023,0.082], + [5025,0.055], + [5027,0.071], + [5029,0.068], + [5031,0.088], + [5033,0.081], + [5035,0.084], + [5037,0.077], + [5039,0.065], + [5041,0.063], + [5043,0.055], + [5045,0.088], + [5047,0.055], + [5049,0.121], + [5051,0.105], + [5053,0.048], + [5055,0.077], + [5057,0.091], + [5059,0.071], + [5061,0.086], + [5063,0.087], + [5065,0.062], + [5067,0.077], + [5069,0.068], + [5071,0.111], + [5073,0.082], + [5075,0.066], + [5077,0.072], + [5079,0.074], + [5081,0.062], + [5083,0.066], + [5085,0.076], + [5087,0.103], + [5089,0.057], + [5091,0.094], + [5093,0.074], + [5095,0.089], + [5097,0.102], + [5099,0.094], + [5101,0.05], + [5103,0.071], + [5105,0.051], + [5107,0.084], + [5109,0.091], + [5111,0.113], + [5113,0.105], + [5115,0.086], + [5117,0.078], + [5119,0.079], + [5121,0.073], + [5123,0.086], + [5125,0.06], + [5127,0.1], + [5129,0.065], + [5131,0.104], + [5133,0.168], + [5135,0.063], + [5137,0.076], + [5139,0.075], + [5141,0.096], + [5143,0.116], + [5145,0.083], + [5147,0.06], + [5149,0.079], + [6001,0.044], + [6003,0.089], + [6005,0.047], + [6007,0.062], + [6009,0.044], + [6011,0.098], + [6013,0.051], + [6015,0.065], + [6017,0.046], + [6019,0.083], + [6021,0.086], + [6023,0.082], + [6025,0.08], + [6027,0.058], + [6029,0.079], + [6031,0.075], + [6033,0.071], + [6035,0.044], + [6037,0.096], + [6039,0.083], + [6041,0.035], + [6043,0.056], + [6045,0.086], + [6047,0.083], + [6049,0.125], + [6051,0.161], + [6053,0.098], + [6055,0.059], + [6057,0.065], + [6059,0.076], + [6061,0.04], + [6063,0.031], + [6065,0.088], + [6067,0.055], + [6069,0.075], + [6071,0.084], + [6073,0.078], + [6075,0.037], + [6077,0.064], + [6079,0.06], + [6081,0.042], + [6083,0.1], + [6085,0.043], + [6087,0.051], + [6089,0.065], + [6091,0.088], + [6093,0.059], + [6095,0.047], + [6097,0.061], + [6099,0.057], + [6101,0.08], + [6103,0.063], + [6105,0.105], + [6107,0.081], + [6109,0.055], + [6111,0.088], + [6113,0.048], + [6115,0.072], + [8001,0.101], + [8003,0.122], + [8005,0.077], + [8007,0.107], + [8009,0.068], + [8011,0.088], + [8013,0.046], + [8014,0.043], + [8015,0.1], + [8017,0.117], + [8019,0.099], + [8021,0.105], + [8023,0.115], + [8025,0.062], + [8027,0.162], + [8029,0.085], + [8031,0.093], + [8033,0.053], + [8035,0.028], + [8037,0.135], + [8039,0.053], + [8041,0.072], + [8043,0.069], + [8045,0.16], + [8047,0.057], + [8049,0.131], + [8051,0.095], + [8053,0.1], + [8055,0.096], + [8057,0.061], + [8059,0.055], + [8061,0.063], + [8063,0.091], + [8065,0.14], + [8067,0.084], + [8069,0.059], + [8071,0.085], + [8073,0.081], + [8075,0.092], + [8077,0.097], + [8079,0.091], + [8081,0.156], + [8083,0.121], + [8085,0.106], + [8087,0.09], + [8089,0.103], + [8091,0.1], + [8093,0.089], + [8095,0.143], + [8097,0.099], + [8099,0.1], + [8101,0.067], + [8103,0.084], + [8105,0.108], + [8107,0.073], + [8109,0.133], + [8111,0.088], + [8113,0.087], + [8115,0.09], + [8117,0.166], + [8119,0.086], + [8121,0.047], + [8123,0.079], + [8125,0.09], + [9001,0.084], + [9003,0.041], + [9005,0.039], + [9007,0.032], + [9009,0.05], + [9011,0.04], + [9013,0.026], + [9015,0.041], + [10001,0.071], + [10003,0.049], + [10005,0.067], + [11001,0.037], + [12001,0.084], + [12003,0.1], + [12005,0.131], + [12007,0.113], + [12009,0.102], + [12011,0.142], + [12013,0.165], + [12015,0.104], + [12017,0.102], + [12019,0.103], + [12021,0.154], + [12023,0.125], + [12027,0.192], + [12029,0.162], + [12031,0.118], + [12033,0.103], + [12035,0.134], + [12037,0.183], + [12039,0.141], + [12041,0.176], + [12043,0.241], + [12045,0.104], + [12047,0.137], + [12049,0.117], + [12051,0.256], + [12053,0.122], + [12055,0.111], + [12057,0.126], + [12059,0.177], + [12061,0.118], + [12063,0.113], + [12065,0.073], + [12067,0.166], + [12069,0.103], + [12071,0.133], + [12073,0.081], + [12075,0.152], + [12077,0.152], + [12079,0.127], + [12081,0.122], + [12083,0.114], + [12085,0.104], + [12086,0.168], + [12087,0.182], + [12089,0.105], + [12091,0.117], + [12093,0.161], + [12095,0.133], + [12097,0.145], + [12099,0.13], + [12101,0.115], + [12103,0.109], + [12105,0.127], + [12107,0.16], + [12109,0.08], + [12111,0.137], + [12113,0.093], + [12115,0.11], + [12117,0.095], + [12119,0.056], + [12121,0.139], + [12123,0.096], + [12125,0.108], + [12127,0.115], + [12129,0.089], + [12131,0.129], + [12133,0.128], + [13001,0.154], + [13003,0.226], + [13005,0.206], + [13007,0.116], + [13009,0.119], + [13011,0.153], + [13013,0.144], + [13015,0.149], + [13017,0.178], + [13019,0.227], + [13021,0.129], + [13023,0.095], + [13025,0.147], + [13027,0.181], + [13029,0.106], + [13031,0.133], + [13033,0.123], + [13035,0.11], + [13037,0.17], + [13039,0.122], + [13043,0.219], + [13045,0.123], + [13047,0.115], + [13049,0.2], + [13051,0.142], + [13053,0.062], + [13055,0.142], + [13057,0.108], + [13059,0.135], + [13061,0.16], + [13063,0.184], + [13065,0.194], + [13067,0.123], + [13069,0.186], + [13071,0.211], + [13073,0.079], + [13075,0.18], + [13077,0.097], + [13079,0.13], + [13081,0.157], + [13083,0.123], + [13085,0.121], + [13087,0.184], + [13089,0.14], + [13091,0.105], + [13093,0.167], + [13095,0.165], + [13097,0.129], + [13099,0.168], + [13101,0.235], + [13103,0.089], + [13105,0.132], + [13107,0.177], + [13109,0.169], + [13111,0.139], + [13113,0.072], + [13115,0.135], + [13117,0.088], + [13119,0.147], + [13121,0.103], + [13123,0.199], + [13125,0.072], + [13127,0.141], + [13129,0.153], + [13131,0.187], + [13133,0.15], + [13135,0.165], + [13137,0.159], + [13139,0.173], + [13141,0.109], + [13143,0.123], + [13145,0.068], + [13147,0.121], + [13149,0.119], + [13151,0.103], + [13153,0.116], + [13155,0.184], + [13157,0.118], + [13159,0.122], + [13161,0.184], + [13163,0.148], + [13165,0.169], + [13167,0.139], + [13169,0.099], + [13171,0.126], + [13173,0.146], + [13175,0.114], + [13177,0.1], + [13179,0.112], + [13181,0.124], + [13183,0.154], + [13185,0.149], + [13187,0.116], + [13189,0.121], + [13191,0.149], + [13193,0.187], + [13195,0.151], + [13197,0.107], + [13199,0.138], + [13201,0.152], + [13205,0.172], + [13207,0.12], + [13209,0.146], + [13211,0.112], + [13213,0.146], + [13215,0.115], + [13217,0.13], + [13219,0.067], + [13221,0.122], + [13223,0.115], + [13225,0.129], + [13227,0.106], + [13229,0.158], + [13231,0.131], + [13233,0.157], + [13235,0.143], + [13237,0.14], + [13239,0.236], + [13241,0.174], + [13243,0.133], + [13245,0.13], + [13247,0.137], + [13249,0.142], + [13251,0.135], + [13253,0.16], + [13255,0.145], + [13257,0.135], + [13259,0.163], + [13261,0.119], + [13263,0.15], + [13265,0.111], + [13267,0.14], + [13269,0.175], + [13271,0.098], + [13273,0.167], + [13275,0.149], + [13277,0.188], + [13279,0.183], + [13281,0.119], + [13283,0.202], + [13285,0.118], + [13287,0.129], + [13289,0.096], + [13291,0.127], + [13293,0.118], + [13295,0.123], + [13297,0.117], + [13299,0.163], + [13301,0.13], + [13303,0.113], + [13305,0.151], + [13307,0.082], + [13309,0.215], + [13311,0.111], + [13313,0.166], + [13315,0.17], + [13317,0.147], + [13319,0.098], + [13321,0.184], + [15001,0.049], + [15003,0.033], + [15005,0], + [15007,0.05], + [15009,0.05], + [16001,0.083], + [16003,0.12], + [16005,0.088], + [16007,0.057], + [16009,0.114], + [16011,0.105], + [16013,0.128], + [16015,0.113], + [16017,0.103], + [16019,0.083], + [16021,0.169], + [16023,0.155], + [16025,0.121], + [16027,0.136], + [16029,0.077], + [16031,0.135], + [16033,0.304], + [16035,0.117], + [16037,0.092], + [16039,0.138], + [16041,0.109], + [16043,0.12], + [16045,0.173], + [16047,0.161], + [16049,0.109], + [16051,0.089], + [16053,0.186], + [16055,0.097], + [16057,0.065], + [16059,0.117], + [16061,0.151], + [16063,0.216], + [16065,0.059], + [16067,0.182], + [16069,0.101], + [16071,0.077], + [16073,0.216], + [16075,0.125], + [16077,0.143], + [16079,0.149], + [16081,0.068], + [16083,0.12], + [16085,0.114], + [16087,0.15], + [17001,0.047], + [17003,0.077], + [17005,0.057], + [17007,0.06], + [17009,0.063], + [17011,0.046], + [17013,0.014], + [17015,0.061], + [17017,0.055], + [17019,0.04], + [17021,0.043], + [17023,0.047], + [17025,0.064], + [17027,0.038], + [17029,0.061], + [17031,0.088], + [17033,0.061], + [17035,0.053], + [17037,0.053], + [17039,0.042], + [17041,0.147], + [17043,0.053], + [17045,0.049], + [17047,0.062], + [17049,0.047], + [17051,0.082], + [17053,0.05], + [17055,0.063], + [17057,0.062], + [17059,0.03], + [17061,0.059], + [17063,0.037], + [17065,0.054], + [17067,0.03], + [17069,0.081], + [17071,0.058], + [17073,0.045], + [17075,0.058], + [17077,0.064], + [17079,0.066], + [17081,0.059], + [17083,0.042], + [17085,0.051], + [17087,0.04], + [17089,0.083], + [17091,0.052], + [17093,0.05], + [17095,0.05], + [17097,0.068], + [17099,0.043], + [17101,0.076], + [17103,0.036], + [17105,0.046], + [17107,0.045], + [17109,0.043], + [17111,0.052], + [17113,0.04], + [17115,0.045], + [17117,0.045], + [17119,0.05], + [17121,0.065], + [17123,0.036], + [17125,0.042], + [17127,0.054], + [17129,0.026], + [17131,0.029], + [17133,0.025], + [17135,0.036], + [17137,0.036], + [17139,0.16], + [17141,0.047], + [17143,0.054], + [17145,0.039], + [17147,0.039], + [17149,0.049], + [17151,0.04], + [17153,0.054], + [17155,0.026], + [17157,0.052], + [17159,0.043], + [17161,0.052], + [17163,0.062], + [17165,0.042], + [17167,0.039], + [17169,0.094], + [17171,0.027], + [17173,0.039], + [17175,0.054], + [17177,0.057], + [17179,0.038], + [17181,0.058], + [17183,0.057], + [17185,0.071], + [17187,0.04], + [17189,0.035], + [17191,0.083], + [17193,0.048], + [17195,0.047], + [17197,0.05], + [17199,0.053], + [17201,0.059], + [17203,0.04], + [18001,0.192], + [18003,0.086], + [18005,0.086], + [18007,0.094], + [18009,0.055], + [18011,0.045], + [18013,0.089], + [18015,0.082], + [18017,0.094], + [18019,0.072], + [18021,0.04], + [18023,0.101], + [18025,0.067], + [18027,0.259], + [18029,0.05], + [18031,0.059], + [18033,0.078], + [18035,0.081], + [18037,0.048], + [18039,0.146], + [18041,0.097], + [18043,0.048], + [18045,0.079], + [18047,0.054], + [18049,0.105], + [18051,0.063], + [18053,0.086], + [18055,0.079], + [18057,0.044], + [18059,0.063], + [18061,0.065], + [18063,0.061], + [18065,0.07], + [18067,0.071], + [18069,0.078], + [18071,0.084], + [18073,0.066], + [18075,0.089], + [18077,0.072], + [18079,0.087], + [18081,0.069], + [18083,0.077], + [18085,0.1], + [18087,0.409], + [18089,0.076], + [18091,0.077], + [18093,0.084], + [18095,0.082], + [18097,0.105], + [18099,0.126], + [18101,0.065], + [18103,0.086], + [18105,0.069], + [18107,0.084], + [18109,0.07], + [18111,0.069], + [18113,0.086], + [18115,0.051], + [18117,0.077], + [18119,0.109], + [18121,0.136], + [18123,0.042], + [18125,0.04], + [18127,0.058], + [18129,0.048], + [18131,0.073], + [18133,0.059], + [18135,0.094], + [18137,0.082], + [18139,0.098], + [18141,0.082], + [18143,0.085], + [18145,0.069], + [18147,0.042], + [18149,0.052], + [18151,0.076], + [18153,0.098], + [18155,0.109], + [18157,0.079], + [18159,0.073], + [18161,0.096], + [18163,0.077], + [18165,0.059], + [18167,0.074], + [18169,0.08], + [18171,0.054], + [18173,0.047], + [18175,0.088], + [18177,0.119], + [18179,0.063], + [18181,0.095], + [18183,0.077], + [19001,0.044], + [19003,0.058], + [19005,0.076], + [19007,0.078], + [19009,0.052], + [19011,0.022], + [19013,0.05], + [19015,0.028], + [19017,0.026], + [19019,0.051], + [19021,0.089], + [19023,0.033], + [19025,0.035], + [19027,0.02], + [19029,0.044], + [19031,0.022], + [19033,0.049], + [19035,0.041], + [19037,0.06], + [19039,0.064], + [19041,0.038], + [19043,0.059], + [19045,0.037], + [19047,0.087], + [19049,0.031], + [19051,0.264], + [19053,0.093], + [19055,0.03], + [19057,0.049], + [19059,0.041], + [19061,0.038], + [19063,0.064], + [19065,0.05], + [19067,0.085], + [19069,0.059], + [19071,0.046], + [19073,0.024], + [19075,0.02], + [19077,0.036], + [19079,0.03], + [19081,0.035], + [19083,0.038], + [19085,0.039], + [19087,0.032], + [19089,0.06], + [19091,0.038], + [19093,0.035], + [19095,0.037], + [19097,0.044], + [19099,0.03], + [19101,0.046], + [19103,0.056], + [19105,0.031], + [19107,0.028], + [19109,0.049], + [19111,0.038], + [19113,0.037], + [19115,0.051], + [19117,0.052], + [19119,0.045], + [19121,0.033], + [19123,0.044], + [19125,0.033], + [19127,0.059], + [19129,0.041], + [19131,0.06], + [19133,0.049], + [19135,0.04], + [19137,0.035], + [19139,0.038], + [19141,0.039], + [19143,0.045], + [19145,0.044], + [19147,0.046], + [19149,0.05], + [19151,0.042], + [19153,0.049], + [19155,0.058], + [19157,0.057], + [19159,0.041], + [19161,0.043], + [19163,0.045], + [19165,0.05], + [19167,0.042], + [19169,0.045], + [19171,0.066], + [19173,0.076], + [19175,0.062], + [19177,0.118], + [19179,0.058], + [19181,0.027], + [19183,0.078], + [19185,0.112], + [19187,0.055], + [19189,0.023], + [19191,0.019], + [19193,0.057], + [19195,0.042], + [19197,0.047], + [20001,0.051], + [20003,0.11], + [20005,0.067], + [20007,0.103], + [20009,0.117], + [20011,0.107], + [20013,0.072], + [20015,0.081], + [20017,0.104], + [20019,0.128], + [20021,0.115], + [20023,0.087], + [20025,0.051], + [20027,0.073], + [20029,0.095], + [20031,0.079], + [20033,0.089], + [20035,0.093], + [20037,0.1], + [20039,0.101], + [20041,0.077], + [20043,0.093], + [20045,0.071], + [20047,0.066], + [20049,0.091], + [20051,0.07], + [20053,0.055], + [20055,0.126], + [20057,0.142], + [20059,0.073], + [20061,0.067], + [20063,0.122], + [20065,0.081], + [20067,0.153], + [20069,0.134], + [20071,0.055], + [20073,0.079], + [20075,0.191], + [20077,0.13], + [20079,0.082], + [20081,0.177], + [20083,0.086], + [20085,0.056], + [20087,0.06], + [20089,0.081], + [20091,0.059], + [20093,0.152], + [20095,0.057], + [20097,0.103], + [20099,0.11], + [20101,0.114], + [20103,0.048], + [20105,0.087], + [20107,0.104], + [20109,0.067], + [20111,0.087], + [20113,0.065], + [20115,0.064], + [20117,0.061], + [20119,0.124], + [20121,0.059], + [20123,0.078], + [20125,0.119], + [20127,0.082], + [20129,0.16], + [20131,0.049], + [20133,0.121], + [20135,0.079], + [20137,0.074], + [20139,0.092], + [20141,0.079], + [20143,0.062], + [20145,0.096], + [20147,0.058], + [20149,0.051], + [20151,0.078], + [20153,0.079], + [20155,0.094], + [20157,0.051], + [20159,0.066], + [20161,0.059], + [20163,0.068], + [20165,0.054], + [20167,0.103], + [20169,0.087], + [20171,0.054], + [20173,0.107], + [20175,0.191], + [20177,0.068], + [20179,0.103], + [20181,0.091], + [20183,0.086], + [20185,0.11], + [20187,0.149], + [20189,0.182], + [20191,0.078], + [20193,0.084], + [20195,0.082], + [20197,0.051], + [20199,0.059], + [20201,0.045], + [20203,0.063], + [20205,0.07], + [20207,0.131], + [20209,0.18], + [21001,0.054], + [21003,0.07], + [21005,0.035], + [21007,0.076], + [21009,0.067], + [21011,0.056], + [21013,0.053], + [21015,0.043], + [21017,0.058], + [21019,0.06], + [21021,0.046], + [21023,0.05], + [21025,0.045], + [21027,0.071], + [21029,0.038], + [21031,0.075], + [21033,0.072], + [21035,0.054], + [21037,0.037], + [21039,0.057], + [21041,0.093], + [21043,0.08], + [21045,0.124], + [21047,0.087], + [21049,0.044], + [21051,0.071], + [21053,0.086], + [21055,0.09], + [21057,0.1], + [21059,0.048], + [21061,0.063], + [21063,0.051], + [21065,0.065], + [21067,0.068], + [21069,0.091], + [21071,0.048], + [21073,0.084], + [21075,0.053], + [21077,0.087], + [21079,0.067], + [21081,0.049], + [21083,0.057], + [21085,0.05], + [21087,0.057], + [21089,0.049], + [21091,0.03], + [21093,0.046], + [21095,0.058], + [21097,0.063], + [21099,0.069], + [21101,0.047], + [21103,0.086], + [21105,0.046], + [21107,0.067], + [21109,0.046], + [21111,0.052], + [21113,0.058], + [21115,0.044], + [21117,0.056], + [21119,0.061], + [21121,0.052], + [21123,0.042], + [21125,0.065], + [21127,0.086], + [21129,0.027], + [21131,0.045], + [21133,0.048], + [21135,0.051], + [21137,0.092], + [21139,0.04], + [21141,0.071], + [21143,0.06], + [21145,0.061], + [21147,0.046], + [21149,0.065], + [21151,0.05], + [21153,0.046], + [21155,0.047], + [21157,0.046], + [21159,0.062], + [21161,0.079], + [21163,0.044], + [21165,0.035], + [21167,0.062], + [21169,0.059], + [21171,0.088], + [21173,0.069], + [21175,0.057], + [21177,0.058], + [21179,0.045], + [21181,0.09], + [21183,0.055], + [21185,0.035], + [21187,0.062], + [21189,0.035], + [21191,0.024], + [21193,0.052], + [21195,0.061], + [21197,0.046], + [21199,0.06], + [21201,0.079], + [21203,0.046], + [21205,0.053], + [21207,0.078], + [21209,0.059], + [21211,0.077], + [21213,0.054], + [21215,0.038], + [21217,0.041], + [21219,0.152], + [21221,0.08], + [21223,0.057], + [21225,0.048], + [21227,0.055], + [21229,0.069], + [21231,0.103], + [21233,0.062], + [21235,0.056], + [21237,0.023], + [21239,0.05], + [22001,0.106], + [22003,0.085], + [22005,0.067], + [22007,0.084], + [22009,0.083], + [22011,0.102], + [22013,0.099], + [22015,0.085], + [22017,0.093], + [22019,0.092], + [22021,0.129], + [22023,0.097], + [22025,0.109], + [22027,0.108], + [22029,0.138], + [22031,0.095], + [22033,0.085], + [22035,0.09], + [22037,0.083], + [22039,0.116], + [22041,0.101], + [22043,0.085], + [22045,0.111], + [22047,0.099], + [22049,0.091], + [22051,0.114], + [22053,0.081], + [22055,0.092], + [22057,0.09], + [22059,0.101], + [22061,0.086], + [22063,0.086], + [22065,0.11], + [22067,0.092], + [22069,0.111], + [22071,0.092], + [22073,0.096], + [22075,0.064], + [22077,0.094], + [22079,0.099], + [22081,0.109], + [22083,0.132], + [22085,0.119], + [22087,0.112], + [22089,0.072], + [22091,0.127], + [22093,0.092], + [22095,0.105], + [22097,0.1], + [22099,0.111], + [22101,0.08], + [22103,0.079], + [22105,0.096], + [22107,0.18], + [22109,0.111], + [22111,0.097], + [22113,0.092], + [22115,0.089], + [22117,0.118], + [22119,0.094], + [22121,0.082], + [22123,0.137], + [22125,0.075], + [22127,0.108], + [23001,0.08], + [23003,0.084], + [23005,0.058], + [23007,0.1], + [23009,0.102], + [23011,0.074], + [23013,0.094], + [23015,0.1], + [23017,0.088], + [23019,0.088], + [23021,0.102], + [23023,0.065], + [23025,0.094], + [23027,0.111], + [23029,0.121], + [23031,0.067], + [24001,0.048], + [24003,0.044], + [24005,0.052], + [24009,0.039], + [24011,0.056], + [24013,0.029], + [24015,0.041], + [24017,0.038], + [24019,0.054], + [24021,0.045], + [24023,0.07], + [24025,0.034], + [24027,0.039], + [24029,0.052], + [24031,0.071], + [24033,0.101], + [24035,0.048], + [24037,0.051], + [24039,0.058], + [24041,0.043], + [24043,0.057], + [24045,0.066], + [24047,0.049], + [24510,0.066], + [25001,0.033], + [25003,0.03], + [25005,0.028], + [25007,0.053], + [25009,0.03], + [25011,0.021], + [25013,0.031], + [25015,0.022], + [25017,0.025], + [25019,0.044], + [25021,0.018], + [25023,0.022], + [25025,0.038], + [25027,0.025], + [26001,0.046], + [26003,0.083], + [26005,0.045], + [26007,0.054], + [26009,0.061], + [26011,0.06], + [26013,0.055], + [26015,0.042], + [26017,0.051], + [26019,0.053], + [26021,0.069], + [26023,0.104], + [26025,0.055], + [26027,0.062], + [26029,0.067], + [26031,0.072], + [26033,0.065], + [26035,0.113], + [26037,0.042], + [26039,0.056], + [26041,0.058], + [26043,0.043], + [26045,0.049], + [26047,0.07], + [26049,0.055], + [26051,0.093], + [26053,0.077], + [26055,0.065], + [26057,0.045], + [26059,0.066], + [26061,0.07], + [26063,0.06], + [26065,0.056], + [26067,0.06], + [26069,0.066], + [26071,0.067], + [26073,0.084], + [26075,0.058], + [26077,0.054], + [26079,0.097], + [26081,0.058], + [26083,0.073], + [26085,0.063], + [26087,0.072], + [26089,0.052], + [26091,0.057], + [26093,0.036], + [26095,0.047], + [26097,0.104], + [26099,0.052], + [26101,0.058], + [26103,0.041], + [26105,0.062], + [26107,0.066], + [26109,0.046], + [26111,0.043], + [26113,0.085], + [26115,0.042], + [26117,0.076], + [26119,0.077], + [26121,0.049], + [26123,0.063], + [26125,0.044], + [26127,0.09], + [26129,0.065], + [26131,0.071], + [26133,0.096], + [26135,0.134], + [26137,0.067], + [26139,0.038], + [26141,0.069], + [26143,0.067], + [26145,0.045], + [26147,0.049], + [26149,0.083], + [26151,0.089], + [26153,0.059], + [26155,0.048], + [26157,0.052], + [26159,0.081], + [26161,0.035], + [26163,0.063], + [26165,0.068], + [27001,0.041], + [27003,0.039], + [27005,0.063], + [27007,0.088], + [27009,0.035], + [27011,0.048], + [27013,0.038], + [27015,0.036], + [27017,0.041], + [27019,0.03], + [27021,0.074], + [27023,0.078], + [27025,0.036], + [27027,0.041], + [27029,0.086], + [27031,0.066], + [27033,0.053], + [27035,0.046], + [27037,0.035], + [27039,0.044], + [27041,0.03], + [27043,0.049], + [27045,0.092], + [27047,0.053], + [27049,0.05], + [27051,0.05], + [27053,0.049], + [27055,0.045], + [27057,0.057], + [27059,0.042], + [27061,0.053], + [27063,0.036], + [27065,0.056], + [27067,0.066], + [27069,0.063], + [27071,0.033], + [27073,0.025], + [27075,0.042], + [27077,0.029], + [27079,0.056], + [27081,0.049], + [27083,0.06], + [27085,0.047], + [27087,0.14], + [27089,0.041], + [27091,0.057], + [27093,0.046], + [27095,0.059], + [27097,0.049], + [27099,0.065], + [27101,0.04], + [27103,0.033], + [27105,0.083], + [27107,0.06], + [27109,0.039], + [27111,0.048], + [27113,0.025], + [27115,0.059], + [27117,0.067], + [27119,0.033], + [27121,0.036], + [27123,0.053], + [27125,0.036], + [27127,0.066], + [27129,0.055], + [27131,0.048], + [27133,0.042], + [27135,0.039], + [27137,0.035], + [27139,0.037], + [27141,0.027], + [27143,0.048], + [27145,0.036], + [27147,0.031], + [27149,0.022], + [27151,0.042], + [27153,0.088], + [27155,0.029], + [27157,0.052], + [27159,0.068], + [27161,0.032], + [27163,0.03], + [27165,0.117], + [27167,0.023], + [27169,0.058], + [27171,0.034], + [27173,0.042], + [28001,0.151], + [28003,0.137], + [28005,0.134], + [28007,0.106], + [28009,0.153], + [28011,0.143], + [28013,0.118], + [28015,0.077], + [28017,0.122], + [28019,0.085], + [28021,0.156], + [28023,0.088], + [28025,0.119], + [28027,0.13], + [28029,0.133], + [28031,0.138], + [28033,0.08], + [28035,0.139], + [28037,0.095], + [28039,0.179], + [28041,0.159], + [28043,0.117], + [28045,0.129], + [28047,0.152], + [28049,0.124], + [28051,0.161], + [28053,0.163], + [28055,0.117], + [28057,0.102], + [28059,0.136], + [28061,0.131], + [28063,0.159], + [28065,0.142], + [28067,0.114], + [28069,0.119], + [28071,0.086], + [28073,0.132], + [28075,0.108], + [28077,0.121], + [28079,0.151], + [28081,0.114], + [28083,0.145], + [28085,0.143], + [28087,0.12], + [28089,0.069], + [28091,0.153], + [28093,0.131], + [28095,0.102], + [28097,0.093], + [28099,0.121], + [28101,0.113], + [28103,0.15], + [28105,0.094], + [28107,0.13], + [28109,0.142], + [28111,0.139], + [28113,0.138], + [28115,0.158], + [28117,0.12], + [28119,0.174], + [28121,0.093], + [28123,0.171], + [28125,0.178], + [28127,0.141], + [28129,0.14], + [28131,0.123], + [28133,0.144], + [28135,0.123], + [28137,0.122], + [28139,0.123], + [28141,0.137], + [28143,0.151], + [28145,0.108], + [28147,0.163], + [28149,0.119], + [28151,0.157], + [28153,0.092], + [28155,0.105], + [28157,0.133], + [28159,0.131], + [28161,0.125], + [28163,0.128], + [29001,0.079], + [29003,0.057], + [29005,0.095], + [29007,0.108], + [29009,0.143], + [29011,0.11], + [29013,0.093], + [29015,0.118], + [29017,0.116], + [29019,0.07], + [29021,0.103], + [29023,0.119], + [29025,0.094], + [29027,0.091], + [29029,0.131], + [29031,0.079], + [29033,0.115], + [29035,0.16], + [29037,0.073], + [29039,0.157], + [29041,0.078], + [29043,0.083], + [29045,0.141], + [29047,0.075], + [29049,0.072], + [29051,0.082], + [29053,0.099], + [29055,0.165], + [29057,0.136], + [29059,0.157], + [29061,0.167], + [29063,0.074], + [29065,0.146], + [29067,0.155], + [29069,0.156], + [29071,0.08], + [29073,0.068], + [29075,0.106], + [29077,0.107], + [29079,0.178], + [29081,0.124], + [29083,0.115], + [29085,0.155], + [29087,0.085], + [29089,0.078], + [29091,0.138], + [29093,0.113], + [29095,0.112], + [29097,0.131], + [29099,0.081], + [29101,0.092], + [29103,0.208], + [29105,0.108], + [29107,0.085], + [29109,0.135], + [29111,0.098], + [29113,0.078], + [29115,0.106], + [29117,0.111], + [29119,0.187], + [29121,0.107], + [29123,0.108], + [29125,0.125], + [29127,0.082], + [29129,0.16], + [29131,0.103], + [29133,0.148], + [29135,0.149], + [29137,0.095], + [29139,0.092], + [29141,0.209], + [29143,0.151], + [29145,0.126], + [29147,0.092], + [29149,0.171], + [29151,0.047], + [29153,0.149], + [29155,0.129], + [29157,0.063], + [29159,0.14], + [29161,0.079], + [29163,0.091], + [29165,0.058], + [29167,0.133], + [29169,0.106], + [29171,0.157], + [29173,0.083], + [29175,0.096], + [29177,0.103], + [29179,0.113], + [29181,0.145], + [29183,0.045], + [29185,0.124], + [29186,0.049], + [29187,0.09], + [29189,0.061], + [29195,0.086], + [29197,0.151], + [29199,0.335], + [29201,0.11], + [29203,0.188], + [29205,0.111], + [29207,0.112], + [29209,0.092], + [29211,0.121], + [29213,0.158], + [29215,0.161], + [29217,0.145], + [29219,0.072], + [29221,0.124], + [29223,0.14], + [29225,0.138], + [29227,0.06], + [29229,0.191], + [29510,0.108], + [30001,0.081], + [30003,0.323], + [30005,0.151], + [30007,0.072], + [30009,0.069], + [30011,0.204], + [30013,0.078], + [30015,0.109], + [30017,0.058], + [30019,0.044], + [30021,0.041], + [30023,0.075], + [30025,0.106], + [30027,0.092], + [30029,0.087], + [30031,0.078], + [30033,0.115], + [30035,0.377], + [30037,0.102], + [30039,0.069], + [30041,0.066], + [30043,0.061], + [30045,0.081], + [30047,0.142], + [30049,0.057], + [30051,0.086], + [30053,0.107], + [30055,0.067], + [30057,0.094], + [30059,0.13], + [30061,0.077], + [30063,0.067], + [30065,0.068], + [30067,0.103], + [30069,0.086], + [30071,0.162], + [30073,0.085], + [30075,0.068], + [30077,0.064], + [30079,0.04], + [30081,0.109], + [30083,0.098], + [30085,0.277], + [30087,0.188], + [30089,0.115], + [30091,0.09], + [30093,0.053], + [30095,0.063], + [30097,0.058], + [30099,0.106], + [30101,0.08], + [30103,0.049], + [30105,0.084], + [30107,0.133], + [30109,0.128], + [30111,0.072], + [31001,0.075], + [31003,0.062], + [31005,0.115], + [31007,0.042], + [31009,0.055], + [31011,0.062], + [31013,0.068], + [31015,0.134], + [31017,0.122], + [31019,0.089], + [31021,0.101], + [31023,0.053], + [31025,0.062], + [31027,0.055], + [31029,0.081], + [31031,0.059], + [31033,0.06], + [31035,0.089], + [31037,0.135], + [31039,0.075], + [31041,0.071], + [31043,0.128], + [31045,0.097], + [31047,0.105], + [31049,0.151], + [31051,0.059], + [31053,0.096], + [31055,0.092], + [31057,0.152], + [31059,0.058], + [31061,0.05], + [31063,0.096], + [31065,0.082], + [31067,0.053], + [31069,0.099], + [31071,0.038], + [31073,0.051], + [31075,0.114], + [31077,0.061], + [31079,0.119], + [31081,0.058], + [31083,0.067], + [31085,0.083], + [31087,0.105], + [31089,0.06], + [31091,0.085], + [31093,0.06], + [31095,0.056], + [31097,0.061], + [31099,0.061], + [31101,0.08], + [31103,0.064], + [31105,0.136], + [31107,0.078], + [31109,0.072], + [31111,0.094], + [31113,0.085], + [31115,0.051], + [31117,0.046], + [31119,0.088], + [31121,0.091], + [31123,0.093], + [31125,0.058], + [31127,0.065], + [31129,0.067], + [31131,0.064], + [31133,0.132], + [31135,0.048], + [31137,0.039], + [31139,0.046], + [31141,0.091], + [31143,0.12], + [31145,0.082], + [31147,0.087], + [31149,0.09], + [31151,0.127], + [31153,0.054], + [31155,0.045], + [31157,0.093], + [31159,0.051], + [31161,0.124], + [31163,0.091], + [31165,0.08], + [31167,0.044], + [31169,0.049], + [31171,0.028], + [31173,0.253], + [31175,0.086], + [31177,0.053], + [31179,0.036], + [31181,0.064], + [31183,0.114], + [31185,0.071], + [32001,0.112], + [32003,0.117], + [32005,0.078], + [32007,0.101], + [32009,0.119], + [32011,0.099], + [32013,0.121], + [32015,0.067], + [32017,0.094], + [32019,0.081], + [32021,0.098], + [32023,0.098], + [32027,0.118], + [32029,0.101], + [32031,0.094], + [32033,0.077], + [32510,0.106], + [33001,0.066], + [33003,0.09], + [33005,0.063], + [33007,0.072], + [33009,0.071], + [33011,0.062], + [33013,0.057], + [33015,0.044], + [33017,0.06], + [33019,0.07], + [34001,0.081], + [34003,0.075], + [34005,0.043], + [34007,0.065], + [34009,0.06], + [34011,0.094], + [34013,0.114], + [34015,0.043], + [34017,0.129], + [34019,0.026], + [34021,0.077], + [34023,0.068], + [34025,0.057], + [34027,0.047], + [34029,0.056], + [34031,0.125], + [34033,0.053], + [34035,0.053], + [34037,0.039], + [34039,0.113], + [34041,0.057], + [35001,0.082], + [35003,0.107], + [35005,0.1], + [35006,0.091], + [35007,0.06], + [35009,0.105], + [35011,0.041], + [35013,0.103], + [35015,0.095], + [35017,0.037], + [35019,0.051], + [35021,0.078], + [35023,0.042], + [35025,0.13], + [35027,0.105], + [35028,0.032], + [35029,0.086], + [35031,0.199], + [35033,0.05], + [35035,0.085], + [35037,0.06], + [35039,0.091], + [35041,0.109], + [35043,0.088], + [35045,0.135], + [35047,0.057], + [35049,0.108], + [35051,0.053], + [35053,0.082], + [35055,0.097], + [35057,0.06], + [35059,0.139], + [35061,0.082], + [36001,0.031], + [36003,0.066], + [36005,0.086], + [36007,0.042], + [36009,0.069], + [36011,0.051], + [36013,0.054], + [36015,0.043], + [36017,0.043], + [36019,0.039], + [36021,0.046], + [36023,0.032], + [36025,0.051], + [36027,0.047], + [36029,0.032], + [36031,0.036], + [36033,0.051], + [36035,0.048], + [36037,0.035], + [36039,0.042], + [36041,0.061], + [36043,0.05], + [36045,0.053], + [36047,0.073], + [36049,0.055], + [36051,0.032], + [36053,0.044], + [36055,0.033], + [36057,0.063], + [36059,0.044], + [36061,0.052], + [36063,0.033], + [36065,0.04], + [36067,0.037], + [36069,0.033], + [36071,0.048], + [36073,0.051], + [36075,0.046], + [36077,0.048], + [36079,0.037], + [36081,0.095], + [36083,0.037], + [36085,0.043], + [36087,0.056], + [36089,0.06], + [36091,0.033], + [36093,0.042], + [36095,0.038], + [36097,0.055], + [36099,0.083], + [36101,0.055], + [36103,0.047], + [36105,0.056], + [36107,0.042], + [36109,0.034], + [36111,0.054], + [36113,0.039], + [36115,0.055], + [36117,0.042], + [36119,0.058], + [36121,0.042], + [36123,0.176], + [37001,0.112], + [37003,0.089], + [37005,0.113], + [37007,0.111], + [37009,0.126], + [37011,0.159], + [37013,0.12], + [37015,0.119], + [37017,0.129], + [37019,0.098], + [37021,0.107], + [37023,0.121], + [37025,0.077], + [37027,0.123], + [37029,0.076], + [37031,0.105], + [37033,0.074], + [37035,0.116], + [37037,0.117], + [37039,0.142], + [37041,0.093], + [37043,0.135], + [37045,0.122], + [37047,0.126], + [37049,0.107], + [37051,0.099], + [37053,0.133], + [37055,0.132], + [37057,0.113], + [37059,0.096], + [37061,0.171], + [37063,0.12], + [37065,0.103], + [37067,0.108], + [37069,0.099], + [37071,0.103], + [37073,0.066], + [37075,0.166], + [37077,0.088], + [37079,0.166], + [37081,0.095], + [37083,0.124], + [37085,0.112], + [37087,0.099], + [37089,0.116], + [37091,0.114], + [37093,0.139], + [37095,0.174], + [37097,0.09], + [37099,0.131], + [37101,0.12], + [37103,0.158], + [37105,0.139], + [37107,0.125], + [37109,0.088], + [37111,0.115], + [37113,0.133], + [37115,0.093], + [37117,0.1], + [37119,0.116], + [37121,0.118], + [37123,0.132], + [37125,0.09], + [37127,0.097], + [37129,0.099], + [37131,0.137], + [37133,0.085], + [37135,0.07], + [37137,0.104], + [37139,0.119], + [37141,0.102], + [37143,0.114], + [37145,0.087], + [37147,0.101], + [37149,0.101], + [37151,0.137], + [37153,0.117], + [37155,0.141], + [37157,0.102], + [37159,0.118], + [37161,0.115], + [37163,0.157], + [37165,0.115], + [37167,0.112], + [37169,0.112], + [37171,0.122], + [37173,0.215], + [37175,0.135], + [37177,0.133], + [37179,0.09], + [37181,0.108], + [37183,0.084], + [37185,0.127], + [37187,0.12], + [37189,0.091], + [37191,0.126], + [37193,0.114], + [37195,0.122], + [37197,0.108], + [37199,0.13], + [38001,0.102], + [38003,0.061], + [38005,0.11], + [38007,0.029], + [38009,0.035], + [38011,0.052], + [38013,0.054], + [38015,0.054], + [38017,0.058], + [38019,0.05], + [38021,0.045], + [38023,0.102], + [38025,0.188], + [38027,0.059], + [38029,0.049], + [38031,0.045], + [38033,0.091], + [38035,0.063], + [38037,0.052], + [38039,0.023], + [38041,0.083], + [38043,0.124], + [38045,0.039], + [38047,0.023], + [38049,0.045], + [38051,0.059], + [38053,0.153], + [38055,0.053], + [38057,0.15], + [38059,0.053], + [38061,0.17], + [38063,0.072], + [38065,0.071], + [38067,0.072], + [38069,0.031], + [38071,0.056], + [38073,0.034], + [38075,0.035], + [38077,0.034], + [38079,0.252], + [38081,0.038], + [38083,0.059], + [38085,0.316], + [38087,0.007], + [38089,0.09], + [38091,0.05], + [38093,0.078], + [38095,0.117], + [38097,0.054], + [38099,0.053], + [38101,0.064], + [38103,0.035], + [38105,0.138], + [39001,0.076], + [39003,0.061], + [39005,0.089], + [39007,0.097], + [39009,0.061], + [39011,0.036], + [39013,0.055], + [39015,0.078], + [39017,0.056], + [39019,0.084], + [39021,0.047], + [39023,0.063], + [39025,0.051], + [39027,0.056], + [39029,0.064], + [39031,0.102], + [39033,0.057], + [39035,0.054], + [39037,0.057], + [39039,0.055], + [39041,0.037], + [39043,0.047], + [39045,0.053], + [39047,0.071], + [39049,0.076], + [39051,0.049], + [39053,0.097], + [39055,0.088], + [39057,0.042], + [39059,0.072], + [39061,0.057], + [39063,0.041], + [39065,0.106], + [39067,0.096], + [39069,0.04], + [39071,0.085], + [39073,0.057], + [39075,0.407], + [39077,0.07], + [39079,0.082], + [39081,0.056], + [39083,0.096], + [39085,0.047], + [39087,0.056], + [39089,0.064], + [39091,0.06], + [39093,0.051], + [39095,0.06], + [39097,0.067], + [39099,0.047], + [39101,0.055], + [39103,0.04], + [39105,0.068], + [39107,0.035], + [39109,0.056], + [39111,0.067], + [39113,0.066], + [39115,0.077], + [39117,0.07], + [39119,0.052], + [39121,0.062], + [39123,0.041], + [39125,0.058], + [39127,0.05], + [39129,0.057], + [39131,0.071], + [39133,0.051], + [39135,0.064], + [39137,0.03], + [39139,0.07], + [39141,0.059], + [39143,0.046], + [39145,0.055], + [39147,0.048], + [39149,0.042], + [39151,0.057], + [39153,0.057], + [39155,0.068], + [39157,0.078], + [39159,0.043], + [39161,0.044], + [39163,0.086], + [39165,0.037], + [39167,0.072], + [39169,0.13], + [39171,0.048], + [39173,0.042], + [39175,0.05], + [40001,0.27], + [40003,0.123], + [40005,0.17], + [40007,0.135], + [40009,0.138], + [40011,0.12], + [40013,0.179], + [40015,0.173], + [40017,0.102], + [40019,0.152], + [40021,0.211], + [40023,0.221], + [40025,0.148], + [40027,0.095], + [40029,0.232], + [40031,0.131], + [40033,0.147], + [40035,0.149], + [40037,0.121], + [40039,0.134], + [40041,0.188], + [40043,0.163], + [40045,0.137], + [40047,0.147], + [40049,0.149], + [40051,0.115], + [40053,0.099], + [40055,0.17], + [40057,0.152], + [40059,0.123], + [40061,0.179], + [40063,0.196], + [40065,0.128], + [40067,0.177], + [40069,0.167], + [40071,0.135], + [40073,0.137], + [40075,0.14], + [40077,0.201], + [40079,0.18], + [40081,0.139], + [40083,0.12], + [40085,0.144], + [40087,0.117], + [40089,0.222], + [40091,0.196], + [40093,0.103], + [40095,0.174], + [40097,0.154], + [40099,0.139], + [40101,0.165], + [40103,0.093], + [40105,0.173], + [40107,0.236], + [40109,0.14], + [40111,0.166], + [40113,0.124], + [40115,0.171], + [40117,0.155], + [40119,0.117], + [40121,0.161], + [40123,0.163], + [40125,0.145], + [40127,0.184], + [40129,0.133], + [40131,0.108], + [40133,0.194], + [40135,0.19], + [40137,0.135], + [40139,0.189], + [40141,0.153], + [40143,0.14], + [40145,0.114], + [40147,0.136], + [40149,0.122], + [40151,0.111], + [40153,0.118], + [41001,0.084], + [41003,0.051], + [41005,0.053], + [41007,0.081], + [41009,0.055], + [41011,0.069], + [41013,0.07], + [41015,0.061], + [41017,0.076], + [41019,0.063], + [41021,0.07], + [41023,0.055], + [41025,0.059], + [41027,0.084], + [41029,0.073], + [41031,0.093], + [41033,0.08], + [41035,0.085], + [41037,0.076], + [41039,0.07], + [41041,0.094], + [41043,0.071], + [41045,0.097], + [41047,0.08], + [41049,0.095], + [41051,0.067], + [41053,0.053], + [41055,0.09], + [41057,0.07], + [41059,0.073], + [41061,0.069], + [41063,0.046], + [41065,0.078], + [41067,0.059], + [41069,0.052], + [41071,0.061], + [42001,0.056], + [42003,0.038], + [42005,0.042], + [42007,0.038], + [42009,0.068], + [42011,0.06], + [42013,0.048], + [42015,0.067], + [42017,0.04], + [42019,0.032], + [42021,0.042], + [42023,0.031], + [42025,0.042], + [42027,0.056], + [42029,0.053], + [42031,0.075], + [42033,0.051], + [42035,0.071], + [42037,0.044], + [42039,0.085], + [42041,0.055], + [42043,0.053], + [42045,0.048], + [42047,0.029], + [42049,0.046], + [42051,0.047], + [42053,0.039], + [42055,0.09], + [42057,0.061], + [42059,0.046], + [42061,0.044], + [42063,0.076], + [42065,0.079], + [42067,0.109], + [42069,0.045], + [42071,0.117], + [42073,0.05], + [42075,0.086], + [42077,0.065], + [42079,0.05], + [42081,0.054], + [42083,0.039], + [42085,0.059], + [42087,0.123], + [42089,0.065], + [42091,0.036], + [42093,0.053], + [42095,0.046], + [42097,0.044], + [42099,0.091], + [42101,0.081], + [42103,0.056], + [42105,0.068], + [42107,0.052], + [42109,0.105], + [42111,0.068], + [42113,0.077], + [42115,0.066], + [42117,0.074], + [42119,0.101], + [42121,0.061], + [42123,0.053], + [42125,0.039], + [42127,0.054], + [42129,0.034], + [42131,0.039], + [42133,0.051], + [44001,0.022], + [44003,0.034], + [44005,0.038], + [44007,0.054], + [44009,0.026], + [45001,0.111], + [45003,0.102], + [45005,0.09], + [45007,0.098], + [45009,0.135], + [45011,0.117], + [45013,0.107], + [45015,0.108], + [45017,0.093], + [45019,0.107], + [45021,0.105], + [45023,0.107], + [45025,0.112], + [45027,0.109], + [45029,0.115], + [45031,0.103], + [45033,0.145], + [45035,0.094], + [45037,0.089], + [45039,0.105], + [45041,0.103], + [45043,0.102], + [45045,0.108], + [45047,0.118], + [45049,0.104], + [45051,0.138], + [45053,0.156], + [45055,0.105], + [45057,0.086], + [45059,0.117], + [45061,0.111], + [45063,0.095], + [45065,0.063], + [45067,0.128], + [45069,0.119], + [45071,0.087], + [45073,0.111], + [45075,0.112], + [45077,0.097], + [45079,0.09], + [45081,0.133], + [45083,0.1], + [45085,0.114], + [45087,0.105], + [45089,0.097], + [45091,0.081], + [46003,0.078], + [46005,0.074], + [46007,0.246], + [46009,0.055], + [46011,0.062], + [46013,0.083], + [46015,0.068], + [46017,0.393], + [46019,0.145], + [46021,0.015], + [46023,0.19], + [46025,0.067], + [46027,0.063], + [46029,0.063], + [46031,0.237], + [46033,0.093], + [46035,0.062], + [46037,0.104], + [46039,0.076], + [46041,0.274], + [46043,0.136], + [46045,0.046], + [46047,0.071], + [46049,0.07], + [46051,0.069], + [46053,0.098], + [46055,0.11], + [46057,0.07], + [46059,0.046], + [46061,0.067], + [46063,0.065], + [46065,0.067], + [46067,0.053], + [46069,0.044], + [46071,0.271], + [46073,0.073], + [46075,0.15], + [46077,0.042], + [46079,0.07], + [46081,0.093], + [46083,0.046], + [46085,0.16], + [46087,0.091], + [46089,0.077], + [46091,0.08], + [46093,0.1], + [46095,0.343], + [46097,0.058], + [46099,0.08], + [46101,0.094], + [46102,0.365], + [46103,0.108], + [46105,0.089], + [46107,0.075], + [46109,0.204], + [46111,0.07], + [46115,0.063], + [46117,0.038], + [46119,0.051], + [46121,0.302], + [46123,0.067], + [46125,0.059], + [46127,0.054], + [46129,0.09], + [46135,0.068], + [46137,0.275], + [47001,0.094], + [47003,0.113], + [47005,0.09], + [47007,0.122], + [47009,0.087], + [47011,0.111], + [47013,0.114], + [47015,0.098], + [47017,0.091], + [47019,0.121], + [47021,0.094], + [47023,0.136], + [47025,0.076], + [47027,0.112], + [47029,0.112], + [47031,0.092], + [47033,0.111], + [47035,0.096], + [47037,0.119], + [47039,0.091], + [47041,0.105], + [47043,0.11], + [47045,0.092], + [47047,0.071], + [47049,0.077], + [47051,0.087], + [47053,0.088], + [47055,0.093], + [47057,0.099], + [47059,0.094], + [47061,0.146], + [47063,0.111], + [47065,0.088], + [47067,0.108], + [47069,0.1], + [47071,0.114], + [47073,0.089], + [47075,0.11], + [47077,0.087], + [47079,0.089], + [47081,0.085], + [47083,0.095], + [47085,0.077], + [47087,0.112], + [47089,0.102], + [47091,0.113], + [47093,0.078], + [47095,0.113], + [47097,0.098], + [47099,0.128], + [47101,0.103], + [47103,0.084], + [47105,0.103], + [47107,0.106], + [47109,0.108], + [47111,0.11], + [47113,0.092], + [47115,0.081], + [47117,0.075], + [47119,0.087], + [47121,0.104], + [47123,0.092], + [47125,0.08], + [47127,0.095], + [47129,0.102], + [47131,0.093], + [47133,0.086], + [47135,0.161], + [47137,0.04], + [47139,0.112], + [47141,0.083], + [47143,0.096], + [47145,0.078], + [47147,0.086], + [47149,0.086], + [47151,0.104], + [47153,0.116], + [47155,0.153], + [47157,0.115], + [47159,0.076], + [47161,0.079], + [47163,0.084], + [47165,0.085], + [47167,0.091], + [47169,0.132], + [47171,0.101], + [47173,0.11], + [47175,0.148], + [47177,0.128], + [47179,0.089], + [47181,0.12], + [47183,0.099], + [47185,0.114], + [47187,0.045], + [47189,0.063], + [48001,0.145], + [48003,0.198], + [48005,0.188], + [48007,0.2], + [48009,0.129], + [48011,0.073], + [48013,0.179], + [48015,0.139], + [48017,0.212], + [48019,0.173], + [48021,0.163], + [48023,0.146], + [48025,0.192], + [48027,0.121], + [48029,0.152], + [48031,0.166], + [48033,0.055], + [48035,0.173], + [48037,0.138], + [48039,0.14], + [48041,0.123], + [48043,0.16], + [48045,0.231], + [48047,0.225], + [48049,0.145], + [48051,0.152], + [48053,0.153], + [48055,0.234], + [48057,0.191], + [48059,0.179], + [48061,0.284], + [48063,0.17], + [48065,0.099], + [48067,0.137], + [48069,0.235], + [48071,0.113], + [48073,0.19], + [48075,0.181], + [48077,0.126], + [48079,0.273], + [48081,0.148], + [48083,0.232], + [48085,0.104], + [48087,0.233], + [48089,0.15], + [48091,0.115], + [48093,0.141], + [48095,0.127], + [48097,0.144], + [48099,0.107], + [48101,0.119], + [48103,0.151], + [48105,0.21], + [48107,0.216], + [48109,0.236], + [48111,0.306], + [48113,0.21], + [48115,0.166], + [48117,0.197], + [48119,0.113], + [48121,0.112], + [48123,0.142], + [48125,0.186], + [48127,0.206], + [48129,0.141], + [48131,0.22], + [48133,0.172], + [48135,0.21], + [48137,0.197], + [48139,0.151], + [48141,0.203], + [48143,0.168], + [48145,0.172], + [48147,0.162], + [48149,0.11], + [48151,0.126], + [48153,0.215], + [48155,0.147], + [48157,0.117], + [48159,0.141], + [48161,0.141], + [48163,0.215], + [48165,0.337], + [48167,0.139], + [48169,0.149], + [48171,0.194], + [48173,0.205], + [48175,0.097], + [48177,0.186], + [48179,0.193], + [48181,0.174], + [48183,0.185], + [48185,0.14], + [48187,0.117], + [48189,0.203], + [48191,0.244], + [48193,0.164], + [48195,0.231], + [48197,0.139], + [48199,0.142], + [48201,0.202], + [48203,0.149], + [48205,0.157], + [48207,0.208], + [48209,0.134], + [48211,0.237], + [48213,0.179], + [48215,0.303], + [48217,0.154], + [48219,0.176], + [48221,0.149], + [48223,0.185], + [48225,0.149], + [48227,0.17], + [48229,0.265], + [48231,0.163], + [48233,0.191], + [48235,0.147], + [48237,0.18], + [48239,0.158], + [48241,0.175], + [48243,0.169], + [48245,0.199], + [48247,0.215], + [48249,0.183], + [48251,0.159], + [48253,0.155], + [48255,0.144], + [48257,0.137], + [48259,0.097], + [48261,0.259], + [48263,0.048], + [48265,0.161], + [48267,0.183], + [48269,0.042], + [48271,0.108], + [48273,0.155], + [48275,0.168], + [48277,0.163], + [48279,0.23], + [48281,0.131], + [48283,0.188], + [48285,0.101], + [48287,0.158], + [48289,0.17], + [48291,0.198], + [48293,0.19], + [48295,0.199], + [48297,0.179], + [48299,0.173], + [48301,0.122], + [48303,0.13], + [48305,0.187], + [48307,0.206], + [48309,0.145], + [48311,0.178], + [48313,0.154], + [48315,0.116], + [48317,0.109], + [48319,0.19], + [48321,0.179], + [48323,0.311], + [48325,0.14], + [48327,0.31], + [48329,0.166], + [48331,0.135], + [48333,0.178], + [48335,0.181], + [48337,0.187], + [48339,0.141], + [48341,0.173], + [48343,0.158], + [48345,0.184], + [48347,0.175], + [48349,0.184], + [48351,0.2], + [48353,0.19], + [48355,0.171], + [48357,0.211], + [48359,0.104], + [48361,0.159], + [48363,0.195], + [48365,0.171], + [48367,0.145], + [48369,0.199], + [48371,0.181], + [48373,0.182], + [48375,0.221], + [48377,0.261], + [48379,0.194], + [48381,0.095], + [48383,0.221], + [48385,0.266], + [48387,0.144], + [48389,0.204], + [48391,0.159], + [48393,0.106], + [48395,0.133], + [48397,0.115], + [48399,0.136], + [48401,0.184], + [48403,0.125], + [48405,0.148], + [48407,0.195], + [48409,0.168], + [48411,0.186], + [48413,0.216], + [48415,0.189], + [48417,0.128], + [48419,0.217], + [48421,0.206], + [48423,0.163], + [48425,0.136], + [48427,0.348], + [48429,0.192], + [48431,0.229], + [48433,0.14], + [48435,0.178], + [48437,0.202], + [48439,0.161], + [48441,0.14], + [48443,0.095], + [48445,0.231], + [48447,0.159], + [48449,0.181], + [48451,0.137], + [48453,0.131], + [48455,0.199], + [48457,0.169], + [48459,0.167], + [48461,0.112], + [48463,0.173], + [48465,0.18], + [48467,0.181], + [48469,0.168], + [48471,0.133], + [48473,0.203], + [48475,0.191], + [48477,0.116], + [48479,0.277], + [48481,0.188], + [48483,0.191], + [48485,0.141], + [48487,0.147], + [48489,0.276], + [48491,0.093], + [48493,0.129], + [48495,0.207], + [48497,0.179], + [48499,0.131], + [48501,0.279], + [48503,0.194], + [48505,0.285], + [48507,0.16], + [49001,0.127], + [49003,0.076], + [49005,0.066], + [49007,0.095], + [49009,0.023], + [49011,0.065], + [49013,0.135], + [49015,0.077], + [49017,0.158], + [49019,0.171], + [49021,0.112], + [49023,0.118], + [49025,0.137], + [49027,0.135], + [49029,0.059], + [49031,0.197], + [49033,0.109], + [49035,0.105], + [49037,0.219], + [49039,0.103], + [49041,0.112], + [49043,0.067], + [49045,0.072], + [49047,0.151], + [49049,0.08], + [49051,0.081], + [49053,0.133], + [49055,0.155], + [49057,0.089], + [50001,0.043], + [50003,0.043], + [50005,0.046], + [50007,0.031], + [50009,0.039], + [50011,0.038], + [50013,0.036], + [50015,0.05], + [50017,0.048], + [50019,0.035], + [50021,0.046], + [50023,0.031], + [50025,0.052], + [50027,0.048], + [51001,0.166], + [51003,0.067], + [51005,0.065], + [51007,0.103], + [51009,0.093], + [51011,0.086], + [51013,0.059], + [51015,0.079], + [51017,0.116], + [51019,0.071], + [51021,0.075], + [51023,0.041], + [51025,0.079], + [51027,0.124], + [51029,0.11], + [51031,0.09], + [51033,0.074], + [51035,0.106], + [51036,0.087], + [51037,0.129], + [51041,0.076], + [51043,0.127], + [51045,0.035], + [51047,0.101], + [51049,0.126], + [51051,0.091], + [51053,0.098], + [51057,0.086], + [51059,0.082], + [51061,0.076], + [51063,0.092], + [51065,0.068], + [51067,0.094], + [51069,0.085], + [51071,0.087], + [51073,0.067], + [51075,0.049], + [51077,0.111], + [51079,0.12], + [51081,0.105], + [51083,0.097], + [51085,0.05], + [51087,0.076], + [51089,0.1], + [51091,0.108], + [51093,0.064], + [51095,0.059], + [51097,0.065], + [51099,0.055], + [51101,0.044], + [51103,0.1], + [51105,0.122], + [51107,0.057], + [51109,0.106], + [51111,0.107], + [51113,0.104], + [51115,0.12], + [51117,0.102], + [51119,0.09], + [51121,0.061], + [51125,0.091], + [51127,0.05], + [51131,0.109], + [51133,0.093], + [51135,0.13], + [51137,0.094], + [51139,0.122], + [51141,0.104], + [51143,0.086], + [51145,0.06], + [51147,0.071], + [51149,0.066], + [51153,0.111], + [51155,0.07], + [51157,0.134], + [51159,0.069], + [51161,0.054], + [51163,0.084], + [51165,0.103], + [51167,0.097], + [51169,0.095], + [51171,0.082], + [51173,0.098], + [51175,0.067], + [51177,0.078], + [51179,0.074], + [51181,0.118], + [51183,0.1], + [51185,0.099], + [51187,0.105], + [51191,0.093], + [51193,0.118], + [51195,0.11], + [51197,0.088], + [51199,0.043], + [51510,0.109], + [51520,0.102], + [51530,0.11], + [51540,0.084], + [51550,0.073], + [51570,0.075], + [51580,0.099], + [51590,0.097], + [51595,0.139], + [51600,0.077], + [51610,0.027], + [51620,0.067], + [51630,0.11], + [51640,0.162], + [51650,0.081], + [51660,0.124], + [51670,0.094], + [51678,0.049], + [51680,0.091], + [51683,0.152], + [51685,0.171], + [51690,0.112], + [51700,0.112], + [51710,0.119], + [51720,0.11], + [51730,0.124], + [51735,0.03], + [51740,0.1], + [51750,0.081], + [51760,0.12], + [51770,0.108], + [51775,0.064], + [51790,0.098], + [51800,0.063], + [51810,0.076], + [51820,0.136], + [51830,0.059], + [51840,0.138], + [53001,0.165], + [53003,0.06], + [53005,0.073], + [53007,0.095], + [53009,0.076], + [53011,0.058], + [53013,0.048], + [53015,0.052], + [53017,0.095], + [53019,0.072], + [53021,0.143], + [53023,0.058], + [53025,0.127], + [53027,0.073], + [53029,0.049], + [53031,0.054], + [53033,0.053], + [53035,0.047], + [53037,0.062], + [53039,0.069], + [53041,0.073], + [53043,0.038], + [53045,0.069], + [53047,0.114], + [53049,0.06], + [53051,0.058], + [53053,0.06], + [53055,0.064], + [53057,0.073], + [53059,0.04], + [53061,0.061], + [53063,0.053], + [53065,0.07], + [53067,0.048], + [53069,0.058], + [53071,0.072], + [53073,0.062], + [53075,0.04], + [53077,0.131], + [54001,0.049], + [54003,0.062], + [54005,0.057], + [54007,0.054], + [54009,0.048], + [54011,0.077], + [54013,0.057], + [54015,0.035], + [54017,0.072], + [54019,0.071], + [54021,0.096], + [54023,0.077], + [54025,0.051], + [54027,0.089], + [54029,0.064], + [54031,0.046], + [54033,0.058], + [54035,0.056], + [54037,0.051], + [54039,0.058], + [54041,0.064], + [54043,0.061], + [54045,0.072], + [54047,0.06], + [54049,0.052], + [54051,0.067], + [54053,0.047], + [54055,0.063], + [54057,0.062], + [54059,0.045], + [54061,0.048], + [54063,0.09], + [54065,0.067], + [54067,0.058], + [54069,0.043], + [54071,0.052], + [54073,0.051], + [54075,0.064], + [54077,0.062], + [54079,0.058], + [54081,0.068], + [54083,0.074], + [54085,0.087], + [54087,0.05], + [54089,0.033], + [54091,0.06], + [54093,0.049], + [54095,0.082], + [54097,0.074], + [54099,0.077], + [54101,0.059], + [54103,0.06], + [54105,0.053], + [54107,0.055], + [54109,0.056], + [55001,0.055], + [55003,0.056], + [55005,0.065], + [55007,0.065], + [55009,0.055], + [55011,0.052], + [55013,0.069], + [55015,0.033], + [55017,0.055], + [55019,0.21], + [55021,0.049], + [55023,0.058], + [55025,0.039], + [55027,0.037], + [55029,0.038], + [55031,0.063], + [55033,0.057], + [55035,0.064], + [55037,0.055], + [55039,0.039], + [55041,0.094], + [55043,0.062], + [55045,0.037], + [55047,0.096], + [55049,0.037], + [55051,0.06], + [55053,0.087], + [55055,0.047], + [55057,0.063], + [55059,0.064], + [55061,0.037], + [55063,0.043], + [55065,0.089], + [55067,0.063], + [55069,0.038], + [55071,0.043], + [55073,0.059], + [55075,0.052], + [55077,0.062], + [55078,0.248], + [55079,0.073], + [55081,0.09], + [55083,0.043], + [55085,0.049], + [55087,0.045], + [55089,0.028], + [55091,0.077], + [55093,0.046], + [55095,0.057], + [55097,0.047], + [55099,0.055], + [55101,0.051], + [55103,0.082], + [55105,0.059], + [55107,0.085], + [55109,0.038], + [55111,0.061], + [55113,0.069], + [55115,0.062], + [55117,0.04], + [55119,0.078], + [55121,0.073], + [55123,0.135], + [55125,0.063], + [55127,0.066], + [55129,0.053], + [55131,0.038], + [55133,0.027], + [55135,0.059], + [55137,0.074], + [55139,0.046], + [55141,0.043], + [56001,0.082], + [56003,0.156], + [56005,0.101], + [56007,0.109], + [56009,0.087], + [56011,0.088], + [56013,0.183], + [56015,0.113], + [56017,0.14], + [56019,0.13], + [56021,0.079], + [56023,0.137], + [56025,0.133], + [56027,0.144], + [56029,0.115], + [56031,0.113], + [56033,0.106], + [56035,0.14], + [56037,0.113], + [56039,0.127], + [56041,0.112], + [56043,0.15], + [56045,0.118] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-over65-2019.json b/data/regional/united-states/health/insurance/us-health-uninsured-over65-2019.json new file mode 100644 index 0000000..b45178f --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-over65-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Over 65 Uninsured", + "description" : "Percent of the population over the age of 65 that are uninsured.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.insured.over65.2019"], + [1001,0], + [1003,0.003], + [1005,0.003], + [1007,0], + [1009,0.002], + [1011,0], + [1013,0], + [1015,0.002], + [1017,0.004], + [1019,0.002], + [1021,0.005], + [1023,0], + [1025,0.019], + [1027,0], + [1029,0.009], + [1031,0.001], + [1033,0.001], + [1035,0], + [1037,0.011], + [1039,0.001], + [1041,0], + [1043,0.004], + [1045,0.001], + [1047,0.008], + [1049,0.013], + [1051,0], + [1053,0.001], + [1055,0.003], + [1057,0], + [1059,0.004], + [1061,0], + [1063,0], + [1065,0], + [1067,0], + [1069,0.005], + [1071,0.002], + [1073,0.004], + [1075,0.002], + [1077,0.003], + [1079,0.002], + [1081,0.002], + [1083,0.016], + [1085,0.04], + [1087,0.009], + [1089,0.003], + [1091,0.007], + [1093,0], + [1095,0.008], + [1097,0.006], + [1099,0.009], + [1101,0.002], + [1103,0.002], + [1105,0], + [1107,0.001], + [1109,0], + [1111,0], + [1113,0.006], + [1115,0.002], + [1117,0.002], + [1119,0.007], + [1121,0.001], + [1123,0], + [1125,0.004], + [1127,0.002], + [1129,0], + [1131,0.003], + [1133,0.002], + [2013,0.05], + [2016,0.101], + [2020,0.008], + [2050,0.015], + [2060,0.034], + [2068,0], + [2070,0.035], + [2090,0.001], + [2100,0.062], + [2105,0.007], + [2110,0.014], + [2122,0.006], + [2130,0.006], + [2150,0.049], + [2158,0.033], + [2164,0.028], + [2170,0.009], + [2180,0.012], + [2185,0.004], + [2188,0.009], + [2195,0], + [2198,0.02], + [2220,0], + [2230,0], + [2240,0.004], + [2261,0.005], + [2275,0.004], + [2282,0.021], + [2290,0.033], + [4001,0.045], + [4003,0.003], + [4005,0.008], + [4007,0.003], + [4009,0.007], + [4011,0], + [4012,0.041], + [4013,0.01], + [4015,0.003], + [4017,0.013], + [4019,0.005], + [4021,0.007], + [4023,0.027], + [4025,0.001], + [4027,0.012], + [5001,0], + [5003,0], + [5005,0.002], + [5007,0.012], + [5009,0], + [5011,0], + [5013,0.006], + [5015,0.005], + [5017,0.004], + [5019,0], + [5021,0], + [5023,0.003], + [5025,0], + [5027,0], + [5029,0], + [5031,0.002], + [5033,0.002], + [5035,0.003], + [5037,0], + [5039,0], + [5041,0.002], + [5043,0], + [5045,0.004], + [5047,0], + [5049,0], + [5051,0.007], + [5053,0], + [5055,0.001], + [5057,0.028], + [5059,0.003], + [5061,0], + [5063,0.01], + [5065,0.001], + [5067,0.005], + [5069,0.004], + [5071,0], + [5073,0], + [5075,0], + [5077,0], + [5079,0], + [5081,0.002], + [5083,0.001], + [5085,0.001], + [5087,0.003], + [5089,0.001], + [5091,0.01], + [5093,0.005], + [5095,0], + [5097,0], + [5099,0.006], + [5101,0.005], + [5103,0], + [5105,0], + [5107,0.009], + [5109,0], + [5111,0], + [5113,0.005], + [5115,0], + [5117,0], + [5119,0.006], + [5121,0], + [5123,0.006], + [5125,0.004], + [5127,0], + [5129,0.005], + [5131,0.008], + [5133,0.018], + [5135,0], + [5137,0], + [5139,0], + [5141,0.006], + [5143,0.008], + [5145,0.011], + [5147,0.002], + [5149,0.01], + [6001,0.01], + [6003,0], + [6005,0], + [6007,0.003], + [6009,0.001], + [6011,0.006], + [6013,0.009], + [6015,0.006], + [6017,0.003], + [6019,0.012], + [6021,0.018], + [6023,0.002], + [6025,0.016], + [6027,0.001], + [6029,0.01], + [6031,0.02], + [6033,0.004], + [6035,0.002], + [6037,0.015], + [6039,0.009], + [6041,0.001], + [6043,0.003], + [6045,0.005], + [6047,0.016], + [6049,0.02], + [6051,0.055], + [6053,0.011], + [6055,0.005], + [6057,0.004], + [6059,0.011], + [6061,0.003], + [6063,0.002], + [6065,0.013], + [6067,0.007], + [6069,0.01], + [6071,0.015], + [6073,0.012], + [6075,0.007], + [6077,0.012], + [6079,0.004], + [6081,0.007], + [6083,0.009], + [6085,0.01], + [6087,0.004], + [6089,0.001], + [6091,0], + [6093,0.001], + [6095,0.006], + [6097,0.007], + [6099,0.005], + [6101,0.011], + [6103,0.004], + [6105,0.001], + [6107,0.011], + [6109,0.003], + [6111,0.007], + [6113,0.007], + [6115,0.011], + [8001,0.015], + [8003,0.001], + [8005,0.012], + [8007,0], + [8009,0], + [8011,0.016], + [8013,0.004], + [8014,0.006], + [8015,0.005], + [8017,0], + [8019,0.011], + [8021,0.019], + [8023,0], + [8025,0], + [8027,0], + [8029,0.002], + [8031,0.014], + [8033,0], + [8035,0.004], + [8037,0.018], + [8039,0.001], + [8041,0.005], + [8043,0.003], + [8045,0.002], + [8047,0], + [8049,0.007], + [8051,0], + [8053,0], + [8055,0], + [8057,0], + [8059,0.003], + [8061,0], + [8063,0.007], + [8065,0.039], + [8067,0.004], + [8069,0.003], + [8071,0.003], + [8073,0], + [8075,0.013], + [8077,0.004], + [8079,0], + [8081,0.01], + [8083,0.007], + [8085,0.001], + [8087,0.003], + [8089,0], + [8091,0.008], + [8093,0.005], + [8095,0], + [8097,0.007], + [8099,0.006], + [8101,0.004], + [8103,0.03], + [8105,0.017], + [8107,0.006], + [8109,0.029], + [8111,0], + [8113,0], + [8115,0.021], + [8117,0.009], + [8119,0.009], + [8121,0], + [8123,0.011], + [8125,0.019], + [9001,0.014], + [9003,0.004], + [9005,0.002], + [9007,0.003], + [9009,0.005], + [9011,0.004], + [9013,0], + [9015,0.005], + [10001,0.011], + [10003,0.008], + [10005,0.004], + [11001,0.007], + [12001,0.011], + [12003,0.005], + [12005,0.005], + [12007,0], + [12009,0.007], + [12011,0.028], + [12013,0.007], + [12015,0.003], + [12017,0.001], + [12019,0.007], + [12021,0.01], + [12023,0.005], + [12027,0.044], + [12029,0], + [12031,0.011], + [12033,0.002], + [12035,0.004], + [12037,0.01], + [12039,0.011], + [12041,0.003], + [12043,0.008], + [12045,0.004], + [12047,0.015], + [12049,0.009], + [12051,0.043], + [12053,0.004], + [12055,0.013], + [12057,0.014], + [12059,0.005], + [12061,0.005], + [12063,0.003], + [12065,0], + [12067,0], + [12069,0.004], + [12071,0.008], + [12073,0.004], + [12075,0.016], + [12077,0.019], + [12079,0], + [12081,0.011], + [12083,0.003], + [12085,0.003], + [12086,0.028], + [12087,0.011], + [12089,0.001], + [12091,0.005], + [12093,0.004], + [12095,0.019], + [12097,0.034], + [12099,0.013], + [12101,0.009], + [12103,0.006], + [12105,0.011], + [12107,0.002], + [12109,0.007], + [12111,0.016], + [12113,0.001], + [12115,0.004], + [12117,0.009], + [12119,0.001], + [12121,0.017], + [12123,0], + [12125,0.005], + [12127,0.005], + [12129,0], + [12131,0.003], + [12133,0.008], + [13001,0.005], + [13003,0.004], + [13005,0.008], + [13007,0], + [13009,0.007], + [13011,0.028], + [13013,0.009], + [13015,0.008], + [13017,0.004], + [13019,0.036], + [13021,0.009], + [13023,0], + [13025,0], + [13027,0.038], + [13029,0], + [13031,0.009], + [13033,0.019], + [13035,0.013], + [13037,0.013], + [13039,0.002], + [13043,0], + [13045,0.001], + [13047,0.001], + [13049,0], + [13051,0.006], + [13053,0], + [13055,0.006], + [13057,0.014], + [13059,0.005], + [13061,0.025], + [13063,0.019], + [13065,0.036], + [13067,0.012], + [13069,0.005], + [13071,0.034], + [13073,0.006], + [13075,0], + [13077,0.006], + [13079,0.005], + [13081,0], + [13083,0.006], + [13085,0.003], + [13087,0.004], + [13089,0.012], + [13091,0.001], + [13093,0], + [13095,0.007], + [13097,0.009], + [13099,0], + [13101,0.023], + [13103,0.002], + [13105,0.003], + [13107,0.007], + [13109,0], + [13111,0], + [13113,0.002], + [13115,0.006], + [13117,0.017], + [13119,0.001], + [13121,0.009], + [13123,0.012], + [13125,0], + [13127,0.003], + [13129,0.017], + [13131,0.006], + [13133,0], + [13135,0.025], + [13137,0.014], + [13139,0.007], + [13141,0], + [13143,0], + [13145,0], + [13147,0.005], + [13149,0], + [13151,0.01], + [13153,0.003], + [13155,0], + [13157,0.004], + [13159,0], + [13161,0], + [13163,0.003], + [13165,0], + [13167,0], + [13169,0], + [13171,0.004], + [13173,0.044], + [13175,0.011], + [13177,0.012], + [13179,0], + [13181,0], + [13183,0], + [13185,0.004], + [13187,0], + [13189,0], + [13191,0], + [13193,0.024], + [13195,0.01], + [13197,0], + [13199,0], + [13201,0], + [13205,0.004], + [13207,0.004], + [13209,0.003], + [13211,0.001], + [13213,0.004], + [13215,0.01], + [13217,0.007], + [13219,0.009], + [13221,0], + [13223,0.003], + [13225,0.005], + [13227,0.002], + [13229,0], + [13231,0.002], + [13233,0.008], + [13235,0], + [13237,0.001], + [13239,0.033], + [13241,0], + [13243,0.006], + [13245,0.005], + [13247,0.005], + [13249,0.007], + [13251,0.004], + [13253,0.01], + [13255,0.003], + [13257,0.001], + [13259,0], + [13261,0.007], + [13263,0], + [13265,0], + [13267,0], + [13269,0.023], + [13271,0.002], + [13273,0], + [13275,0.001], + [13277,0.007], + [13279,0], + [13281,0.002], + [13283,0], + [13285,0.003], + [13287,0], + [13289,0], + [13291,0.005], + [13293,0.016], + [13295,0.003], + [13297,0.006], + [13299,0.002], + [13301,0], + [13303,0.006], + [13305,0.003], + [13307,0], + [13309,0], + [13311,0.004], + [13313,0.014], + [13315,0.002], + [13317,0.001], + [13319,0.002], + [13321,0.001], + [15001,0.005], + [15003,0.003], + [15005,0], + [15007,0.005], + [15009,0.012], + [16001,0.005], + [16003,0], + [16005,0.003], + [16007,0.004], + [16009,0.006], + [16011,0.004], + [16013,0], + [16015,0.004], + [16017,0.001], + [16019,0.002], + [16021,0.007], + [16023,0.018], + [16025,0.046], + [16027,0.004], + [16029,0.003], + [16031,0.001], + [16033,0], + [16035,0], + [16037,0], + [16039,0], + [16041,0.003], + [16043,0.002], + [16045,0], + [16047,0], + [16049,0.001], + [16051,0.003], + [16053,0.001], + [16055,0.002], + [16057,0], + [16059,0], + [16061,0], + [16063,0.023], + [16065,0.014], + [16067,0.023], + [16069,0.002], + [16071,0], + [16073,0.032], + [16075,0], + [16077,0], + [16079,0.006], + [16081,0.009], + [16083,0.001], + [16085,0], + [16087,0], + [17001,0.001], + [17003,0], + [17005,0.009], + [17007,0.011], + [17009,0], + [17011,0.006], + [17013,0], + [17015,0.002], + [17017,0], + [17019,0.013], + [17021,0.002], + [17023,0], + [17025,0.001], + [17027,0], + [17029,0.012], + [17031,0.013], + [17033,0], + [17035,0.015], + [17037,0], + [17039,0.001], + [17041,0.045], + [17043,0.012], + [17045,0.001], + [17047,0], + [17049,0.001], + [17051,0.003], + [17053,0], + [17055,0.004], + [17057,0.002], + [17059,0.002], + [17061,0.002], + [17063,0], + [17065,0], + [17067,0.002], + [17069,0], + [17071,0.001], + [17073,0.004], + [17075,0.001], + [17077,0.002], + [17079,0], + [17081,0.002], + [17083,0.002], + [17085,0.001], + [17087,0.002], + [17089,0.013], + [17091,0.005], + [17093,0.016], + [17095,0.003], + [17097,0.01], + [17099,0.002], + [17101,0.003], + [17103,0.001], + [17105,0], + [17107,0.002], + [17109,0.001], + [17111,0.003], + [17113,0.004], + [17115,0.003], + [17117,0.002], + [17119,0.003], + [17121,0], + [17123,0.002], + [17125,0], + [17127,0], + [17129,0], + [17131,0.003], + [17133,0], + [17135,0.001], + [17137,0.002], + [17139,0.061], + [17141,0.004], + [17143,0.005], + [17145,0.001], + [17147,0], + [17149,0.001], + [17151,0], + [17153,0], + [17155,0], + [17157,0.011], + [17159,0], + [17161,0.005], + [17163,0.004], + [17165,0], + [17167,0.001], + [17169,0.029], + [17171,0], + [17173,0], + [17175,0.005], + [17177,0.009], + [17179,0.002], + [17181,0.007], + [17183,0.002], + [17185,0.001], + [17187,0.001], + [17189,0.001], + [17191,0.005], + [17193,0.001], + [17195,0.002], + [17197,0.008], + [17199,0], + [17201,0.005], + [17203,0.003], + [18001,0.033], + [18003,0.009], + [18005,0.011], + [18007,0], + [18009,0], + [18011,0.003], + [18013,0.001], + [18015,0], + [18017,0.012], + [18019,0.005], + [18021,0], + [18023,0.005], + [18025,0.002], + [18027,0.045], + [18029,0], + [18031,0], + [18033,0.002], + [18035,0.002], + [18037,0], + [18039,0.017], + [18041,0], + [18043,0.001], + [18045,0], + [18047,0], + [18049,0.014], + [18051,0], + [18053,0], + [18055,0.002], + [18057,0.003], + [18059,0.001], + [18061,0.011], + [18063,0.004], + [18065,0.001], + [18067,0], + [18069,0.001], + [18071,0.006], + [18073,0.005], + [18075,0.011], + [18077,0], + [18079,0.009], + [18081,0.001], + [18083,0], + [18085,0.007], + [18087,0.098], + [18089,0.003], + [18091,0.002], + [18093,0.004], + [18095,0], + [18097,0.008], + [18099,0.005], + [18101,0.008], + [18103,0.007], + [18105,0.008], + [18107,0.005], + [18109,0.001], + [18111,0], + [18113,0.008], + [18115,0], + [18117,0.005], + [18119,0.004], + [18121,0.033], + [18123,0], + [18125,0.002], + [18127,0.002], + [18129,0], + [18131,0.003], + [18133,0], + [18135,0.005], + [18137,0.006], + [18139,0.001], + [18141,0.006], + [18143,0], + [18145,0.005], + [18147,0], + [18149,0], + [18151,0], + [18153,0.002], + [18155,0.028], + [18157,0.009], + [18159,0], + [18161,0], + [18163,0.004], + [18165,0], + [18167,0.001], + [18169,0.003], + [18171,0.001], + [18173,0.002], + [18175,0.005], + [18177,0], + [18179,0.004], + [18181,0], + [18183,0.001], + [19001,0], + [19003,0], + [19005,0.007], + [19007,0], + [19009,0], + [19011,0], + [19013,0.002], + [19015,0.001], + [19017,0], + [19019,0.023], + [19021,0.002], + [19023,0], + [19025,0], + [19027,0.001], + [19029,0], + [19031,0], + [19033,0], + [19035,0], + [19037,0], + [19039,0], + [19041,0.002], + [19043,0.002], + [19045,0.002], + [19047,0.004], + [19049,0.004], + [19051,0.027], + [19053,0.001], + [19055,0], + [19057,0.001], + [19059,0.004], + [19061,0.003], + [19063,0], + [19065,0], + [19067,0], + [19069,0.013], + [19071,0], + [19073,0], + [19075,0.002], + [19077,0.002], + [19079,0.001], + [19081,0], + [19083,0.003], + [19085,0], + [19087,0], + [19089,0.016], + [19091,0], + [19093,0], + [19095,0.001], + [19097,0.005], + [19099,0.002], + [19101,0.021], + [19103,0.008], + [19105,0], + [19107,0.002], + [19109,0.001], + [19111,0], + [19113,0.003], + [19115,0.027], + [19117,0], + [19119,0], + [19121,0], + [19123,0], + [19125,0.005], + [19127,0.003], + [19129,0.004], + [19131,0.005], + [19133,0.008], + [19135,0], + [19137,0], + [19139,0], + [19141,0], + [19143,0.001], + [19145,0], + [19147,0], + [19149,0], + [19151,0], + [19153,0.002], + [19155,0.002], + [19157,0], + [19159,0], + [19161,0.003], + [19163,0.002], + [19165,0], + [19167,0.002], + [19169,0.002], + [19171,0.002], + [19173,0.014], + [19175,0.001], + [19177,0.008], + [19179,0.002], + [19181,0.004], + [19183,0.012], + [19185,0], + [19187,0.008], + [19189,0], + [19191,0], + [19193,0.005], + [19195,0], + [19197,0.003], + [20001,0.001], + [20003,0], + [20005,0], + [20007,0.002], + [20009,0.003], + [20011,0], + [20013,0.004], + [20015,0.001], + [20017,0.013], + [20019,0], + [20021,0.006], + [20023,0], + [20025,0], + [20027,0], + [20029,0.004], + [20031,0], + [20033,0], + [20035,0], + [20037,0.002], + [20039,0], + [20041,0], + [20043,0], + [20045,0.007], + [20047,0], + [20049,0.003], + [20051,0], + [20053,0], + [20055,0.035], + [20057,0.01], + [20059,0], + [20061,0.004], + [20063,0.003], + [20065,0], + [20067,0], + [20069,0.014], + [20071,0], + [20073,0.001], + [20075,0], + [20077,0], + [20079,0], + [20081,0], + [20083,0], + [20085,0.003], + [20087,0.001], + [20089,0.004], + [20091,0.004], + [20093,0], + [20095,0], + [20097,0.004], + [20099,0.002], + [20101,0], + [20103,0], + [20105,0], + [20107,0.006], + [20109,0.002], + [20111,0.01], + [20113,0.004], + [20115,0.002], + [20117,0], + [20119,0], + [20121,0.011], + [20123,0.01], + [20125,0], + [20127,0.005], + [20129,0], + [20131,0], + [20133,0], + [20135,0], + [20137,0], + [20139,0.002], + [20141,0], + [20143,0], + [20145,0], + [20147,0], + [20149,0], + [20151,0], + [20153,0], + [20155,0], + [20157,0], + [20159,0], + [20161,0.003], + [20163,0.015], + [20165,0.001], + [20167,0], + [20169,0.007], + [20171,0], + [20173,0.006], + [20175,0.007], + [20177,0.002], + [20179,0], + [20181,0], + [20183,0], + [20185,0], + [20187,0], + [20189,0.01], + [20191,0.002], + [20193,0.017], + [20195,0], + [20197,0], + [20199,0.009], + [20201,0.004], + [20203,0], + [20205,0], + [20207,0.008], + [20209,0.024], + [21001,0.001], + [21003,0.014], + [21005,0.002], + [21007,0.005], + [21009,0.004], + [21011,0], + [21013,0], + [21015,0.001], + [21017,0], + [21019,0.001], + [21021,0], + [21023,0], + [21025,0], + [21027,0], + [21029,0.004], + [21031,0.004], + [21033,0], + [21035,0], + [21037,0.002], + [21039,0], + [21041,0.013], + [21043,0.013], + [21045,0], + [21047,0.005], + [21049,0.002], + [21051,0.004], + [21053,0.006], + [21055,0.039], + [21057,0.008], + [21059,0.005], + [21061,0], + [21063,0], + [21065,0], + [21067,0.008], + [21069,0], + [21071,0.001], + [21073,0.005], + [21075,0], + [21077,0], + [21079,0], + [21081,0], + [21083,0], + [21085,0.008], + [21087,0], + [21089,0], + [21091,0], + [21093,0.001], + [21095,0], + [21097,0.001], + [21099,0.032], + [21101,0], + [21103,0.006], + [21105,0], + [21107,0.005], + [21109,0.005], + [21111,0.002], + [21113,0.003], + [21115,0.004], + [21117,0.004], + [21119,0], + [21121,0.002], + [21123,0], + [21125,0.002], + [21127,0], + [21129,0], + [21131,0], + [21133,0.009], + [21135,0], + [21137,0], + [21139,0.015], + [21141,0.004], + [21143,0], + [21145,0.004], + [21147,0], + [21149,0], + [21151,0.006], + [21153,0], + [21155,0.003], + [21157,0], + [21159,0.009], + [21161,0], + [21163,0.007], + [21165,0], + [21167,0], + [21169,0.012], + [21171,0], + [21173,0], + [21175,0.007], + [21177,0.001], + [21179,0], + [21181,0.038], + [21183,0.004], + [21185,0.001], + [21187,0], + [21189,0], + [21191,0], + [21193,0], + [21195,0.001], + [21197,0], + [21199,0], + [21201,0.013], + [21203,0.005], + [21205,0], + [21207,0], + [21209,0.002], + [21211,0.008], + [21213,0.003], + [21215,0], + [21217,0], + [21219,0.016], + [21221,0], + [21223,0], + [21225,0], + [21227,0.006], + [21229,0], + [21231,0], + [21233,0.011], + [21235,0.002], + [21237,0], + [21239,0], + [22001,0.006], + [22003,0.003], + [22005,0.009], + [22007,0.004], + [22009,0.011], + [22011,0.001], + [22013,0.003], + [22015,0], + [22017,0.005], + [22019,0.001], + [22021,0], + [22023,0], + [22025,0.007], + [22027,0.011], + [22029,0], + [22031,0], + [22033,0.004], + [22035,0], + [22037,0.009], + [22039,0.003], + [22041,0.007], + [22043,0.004], + [22045,0.01], + [22047,0.001], + [22049,0.008], + [22051,0.004], + [22053,0.007], + [22055,0.003], + [22057,0.002], + [22059,0], + [22061,0], + [22063,0.002], + [22065,0], + [22067,0.001], + [22069,0.007], + [22071,0.006], + [22073,0.009], + [22075,0], + [22077,0.001], + [22079,0.005], + [22081,0], + [22083,0], + [22085,0.005], + [22087,0.004], + [22089,0.002], + [22091,0.005], + [22093,0], + [22095,0.011], + [22097,0.003], + [22099,0.013], + [22101,0.003], + [22103,0.007], + [22105,0.003], + [22107,0], + [22109,0.004], + [22111,0.001], + [22113,0.006], + [22115,0.001], + [22117,0.001], + [22119,0.01], + [22121,0], + [22123,0], + [22125,0], + [22127,0.001], + [23001,0], + [23003,0.001], + [23005,0.002], + [23007,0.004], + [23009,0.002], + [23011,0.001], + [23013,0], + [23015,0.002], + [23017,0.003], + [23019,0.001], + [23021,0], + [23023,0.002], + [23025,0.001], + [23027,0.002], + [23029,0.002], + [23031,0.001], + [24001,0.001], + [24003,0.007], + [24005,0.007], + [24009,0.002], + [24011,0.006], + [24013,0.002], + [24015,0.003], + [24017,0.006], + [24019,0.014], + [24021,0.008], + [24023,0.002], + [24025,0.002], + [24027,0.015], + [24029,0.001], + [24031,0.017], + [24033,0.02], + [24035,0.006], + [24037,0.012], + [24039,0.002], + [24041,0.002], + [24043,0.002], + [24045,0.004], + [24047,0.001], + [24510,0.009], + [25001,0.001], + [25003,0.002], + [25005,0.002], + [25007,0], + [25009,0.003], + [25011,0.002], + [25013,0.001], + [25015,0.003], + [25017,0.006], + [25019,0], + [25021,0.005], + [25023,0.002], + [25025,0.007], + [25027,0.002], + [26001,0], + [26003,0.026], + [26005,0], + [26007,0.002], + [26009,0], + [26011,0], + [26013,0], + [26015,0.002], + [26017,0], + [26019,0], + [26021,0.005], + [26023,0.006], + [26025,0.003], + [26027,0.002], + [26029,0.003], + [26031,0.001], + [26033,0.006], + [26035,0.003], + [26037,0], + [26039,0], + [26041,0.004], + [26043,0], + [26045,0.002], + [26047,0], + [26049,0.001], + [26051,0.003], + [26053,0], + [26055,0.005], + [26057,0], + [26059,0.002], + [26061,0.002], + [26063,0.001], + [26065,0.004], + [26067,0], + [26069,0], + [26071,0], + [26073,0.005], + [26075,0.001], + [26077,0.002], + [26079,0], + [26081,0.005], + [26083,0], + [26085,0.008], + [26087,0.001], + [26089,0.001], + [26091,0.003], + [26093,0.001], + [26095,0], + [26097,0.002], + [26099,0.005], + [26101,0.002], + [26103,0.001], + [26105,0.002], + [26107,0.005], + [26109,0], + [26111,0.003], + [26113,0], + [26115,0.001], + [26117,0.005], + [26119,0], + [26121,0.003], + [26123,0.001], + [26125,0.003], + [26127,0.007], + [26129,0.003], + [26131,0], + [26133,0.004], + [26135,0.008], + [26137,0], + [26139,0.002], + [26141,0.001], + [26143,0], + [26145,0.001], + [26147,0.001], + [26149,0.01], + [26151,0.006], + [26153,0.007], + [26155,0], + [26157,0.002], + [26159,0.002], + [26161,0.002], + [26163,0.007], + [26165,0.002], + [27001,0.002], + [27003,0.005], + [27005,0.001], + [27007,0.003], + [27009,0], + [27011,0.009], + [27013,0.001], + [27015,0], + [27017,0.002], + [27019,0.004], + [27021,0.003], + [27023,0], + [27025,0.001], + [27027,0], + [27029,0.004], + [27031,0], + [27033,0], + [27035,0.003], + [27037,0.003], + [27039,0.001], + [27041,0.002], + [27043,0.002], + [27045,0.004], + [27047,0.001], + [27049,0.006], + [27051,0], + [27053,0.005], + [27055,0.002], + [27057,0.001], + [27059,0.001], + [27061,0.002], + [27063,0], + [27065,0.002], + [27067,0.004], + [27069,0], + [27071,0], + [27073,0], + [27075,0.002], + [27077,0.032], + [27079,0], + [27081,0.002], + [27083,0.002], + [27085,0.002], + [27087,0.014], + [27089,0.001], + [27091,0], + [27093,0], + [27095,0.001], + [27097,0.002], + [27099,0], + [27101,0], + [27103,0], + [27105,0.002], + [27107,0.002], + [27109,0.002], + [27111,0.001], + [27113,0], + [27115,0.002], + [27117,0], + [27119,0.004], + [27121,0.001], + [27123,0.004], + [27125,0], + [27127,0.002], + [27129,0], + [27131,0], + [27133,0], + [27135,0.002], + [27137,0.001], + [27139,0.002], + [27141,0.001], + [27143,0.002], + [27145,0], + [27147,0.001], + [27149,0], + [27151,0], + [27153,0.004], + [27155,0.004], + [27157,0], + [27159,0], + [27161,0.002], + [27163,0.002], + [27165,0.002], + [27167,0], + [27169,0.003], + [27171,0], + [27173,0], + [28001,0.002], + [28003,0], + [28005,0], + [28007,0.002], + [28009,0], + [28011,0], + [28013,0], + [28015,0], + [28017,0.002], + [28019,0], + [28021,0.008], + [28023,0.021], + [28025,0], + [28027,0.001], + [28029,0], + [28031,0.001], + [28033,0.004], + [28035,0.004], + [28037,0.008], + [28039,0], + [28041,0], + [28043,0], + [28045,0], + [28047,0.004], + [28049,0.004], + [28051,0.01], + [28053,0], + [28055,0], + [28057,0.007], + [28059,0.005], + [28061,0], + [28063,0], + [28065,0], + [28067,0], + [28069,0], + [28071,0], + [28073,0.007], + [28075,0.001], + [28077,0], + [28079,0.002], + [28081,0.007], + [28083,0.009], + [28085,0.005], + [28087,0], + [28089,0.007], + [28091,0.005], + [28093,0.011], + [28095,0.001], + [28097,0], + [28099,0.006], + [28101,0.003], + [28103,0], + [28105,0.007], + [28107,0.001], + [28109,0.002], + [28111,0], + [28113,0.007], + [28115,0.007], + [28117,0], + [28119,0], + [28121,0.002], + [28123,0.008], + [28125,0.024], + [28127,0], + [28129,0], + [28131,0.011], + [28133,0], + [28135,0.001], + [28137,0], + [28139,0], + [28141,0.004], + [28143,0], + [28145,0], + [28147,0.003], + [28149,0.005], + [28151,0.016], + [28153,0.004], + [28155,0], + [28157,0], + [28159,0.009], + [28161,0], + [28163,0.005], + [29001,0.003], + [29003,0], + [29005,0], + [29007,0.016], + [29009,0], + [29011,0.009], + [29013,0.002], + [29015,0.006], + [29017,0.005], + [29019,0.001], + [29021,0.001], + [29023,0.001], + [29025,0.001], + [29027,0], + [29029,0.001], + [29031,0], + [29033,0], + [29035,0.012], + [29037,0.001], + [29039,0.005], + [29041,0], + [29043,0], + [29045,0.034], + [29047,0.002], + [29049,0.002], + [29051,0.004], + [29053,0.001], + [29055,0.001], + [29057,0.012], + [29059,0.008], + [29061,0.006], + [29063,0], + [29065,0.011], + [29067,0.019], + [29069,0.006], + [29071,0], + [29073,0], + [29075,0.011], + [29077,0.005], + [29079,0.008], + [29081,0], + [29083,0.001], + [29085,0.015], + [29087,0], + [29089,0.003], + [29091,0.01], + [29093,0.005], + [29095,0.006], + [29097,0.009], + [29099,0.003], + [29101,0.005], + [29103,0.008], + [29105,0], + [29107,0.008], + [29109,0], + [29111,0.007], + [29113,0.004], + [29115,0], + [29117,0.011], + [29119,0.012], + [29121,0.012], + [29123,0], + [29125,0], + [29127,0.005], + [29129,0.019], + [29131,0.004], + [29133,0.001], + [29135,0.008], + [29137,0.009], + [29139,0.008], + [29141,0.045], + [29143,0.005], + [29145,0.001], + [29147,0.004], + [29149,0.01], + [29151,0.007], + [29153,0.004], + [29155,0.002], + [29157,0.002], + [29159,0.014], + [29161,0.001], + [29163,0.008], + [29165,0.004], + [29167,0.009], + [29169,0], + [29171,0], + [29173,0.004], + [29175,0.006], + [29177,0.018], + [29179,0], + [29181,0], + [29183,0.002], + [29185,0.002], + [29186,0.009], + [29187,0.004], + [29189,0.004], + [29195,0.024], + [29197,0.049], + [29199,0.034], + [29201,0.003], + [29203,0.003], + [29205,0], + [29207,0], + [29209,0], + [29211,0.056], + [29213,0.002], + [29215,0.021], + [29217,0.017], + [29219,0], + [29221,0], + [29223,0.005], + [29225,0.005], + [29227,0], + [29229,0.006], + [29510,0.012], + [30001,0.004], + [30003,0.036], + [30005,0.007], + [30007,0], + [30009,0], + [30011,0], + [30013,0.001], + [30015,0.001], + [30017,0.002], + [30019,0.01], + [30021,0.004], + [30023,0.002], + [30025,0], + [30027,0.007], + [30029,0.003], + [30031,0.006], + [30033,0], + [30035,0.025], + [30037,0], + [30039,0], + [30041,0], + [30043,0], + [30045,0], + [30047,0.004], + [30049,0.004], + [30051,0.007], + [30053,0.004], + [30055,0], + [30057,0.008], + [30059,0], + [30061,0], + [30063,0.001], + [30065,0.002], + [30067,0.005], + [30069,0], + [30071,0.006], + [30073,0.002], + [30075,0], + [30077,0.011], + [30079,0], + [30081,0.001], + [30083,0], + [30085,0.051], + [30087,0.008], + [30089,0.003], + [30091,0], + [30093,0.002], + [30095,0], + [30097,0.002], + [30099,0], + [30101,0], + [30103,0], + [30105,0.009], + [30107,0], + [30109,0], + [30111,0.001], + [31001,0.004], + [31003,0], + [31005,0.019], + [31007,0], + [31009,0], + [31011,0.004], + [31013,0], + [31015,0], + [31017,0], + [31019,0.002], + [31021,0.007], + [31023,0], + [31025,0.001], + [31027,0], + [31029,0], + [31031,0], + [31033,0.001], + [31035,0.02], + [31037,0], + [31039,0.007], + [31041,0.009], + [31043,0.008], + [31045,0], + [31047,0.012], + [31049,0], + [31051,0], + [31053,0.005], + [31055,0.005], + [31057,0], + [31059,0], + [31061,0], + [31063,0.015], + [31065,0], + [31067,0.002], + [31069,0], + [31071,0], + [31073,0], + [31075,0], + [31077,0], + [31079,0.019], + [31081,0], + [31083,0.004], + [31085,0], + [31087,0], + [31089,0], + [31091,0], + [31093,0], + [31095,0.009], + [31097,0], + [31099,0], + [31101,0.002], + [31103,0], + [31105,0], + [31107,0], + [31109,0.005], + [31111,0.003], + [31113,0], + [31115,0], + [31117,0.008], + [31119,0], + [31121,0], + [31123,0], + [31125,0], + [31127,0], + [31129,0], + [31131,0.004], + [31133,0.03], + [31135,0], + [31137,0], + [31139,0.012], + [31141,0], + [31143,0.006], + [31145,0], + [31147,0], + [31149,0], + [31151,0.001], + [31153,0.007], + [31155,0.003], + [31157,0], + [31159,0.001], + [31161,0.003], + [31163,0.007], + [31165,0], + [31167,0], + [31169,0], + [31171,0], + [31173,0.008], + [31175,0.001], + [31177,0], + [31179,0], + [31181,0], + [31183,0], + [31185,0], + [32001,0.025], + [32003,0.018], + [32005,0.005], + [32007,0.016], + [32009,0], + [32011,0], + [32013,0.004], + [32015,0], + [32017,0], + [32019,0.006], + [32021,0.002], + [32023,0.008], + [32027,0], + [32029,0], + [32031,0.005], + [32033,0], + [32510,0.014], + [33001,0.005], + [33003,0], + [33005,0], + [33007,0.004], + [33009,0.002], + [33011,0.004], + [33013,0.002], + [33015,0.001], + [33017,0.002], + [33019,0.008], + [34001,0.014], + [34003,0.013], + [34005,0.004], + [34007,0.007], + [34009,0.002], + [34011,0.004], + [34013,0.02], + [34015,0.008], + [34017,0.026], + [34019,0.001], + [34021,0.005], + [34023,0.015], + [34025,0.005], + [34027,0.009], + [34029,0.003], + [34031,0.019], + [34033,0.004], + [34035,0.012], + [34037,0.002], + [34039,0.02], + [34041,0.007], + [35001,0.01], + [35003,0.005], + [35005,0.001], + [35006,0.005], + [35007,0], + [35009,0.002], + [35011,0], + [35013,0.01], + [35015,0.01], + [35017,0.008], + [35019,0], + [35021,0], + [35023,0], + [35025,0.013], + [35027,0], + [35028,0.006], + [35029,0.002], + [35031,0.029], + [35033,0], + [35035,0.015], + [35037,0], + [35039,0.017], + [35041,0.002], + [35043,0.011], + [35045,0.015], + [35047,0.004], + [35049,0.011], + [35051,0.006], + [35053,0.042], + [35055,0.002], + [35057,0.008], + [35059,0], + [35061,0.006], + [36001,0.003], + [36003,0.002], + [36005,0.018], + [36007,0.002], + [36009,0.005], + [36011,0.002], + [36013,0.001], + [36015,0], + [36017,0.004], + [36019,0.002], + [36021,0.002], + [36023,0.004], + [36025,0.002], + [36027,0.003], + [36029,0.002], + [36031,0.001], + [36033,0.001], + [36035,0], + [36037,0], + [36039,0], + [36041,0.001], + [36043,0.002], + [36045,0], + [36047,0.013], + [36049,0.003], + [36051,0.002], + [36053,0.003], + [36055,0.002], + [36057,0.002], + [36059,0.006], + [36061,0.009], + [36063,0], + [36065,0], + [36067,0.002], + [36069,0], + [36071,0.005], + [36073,0.001], + [36075,0.004], + [36077,0.003], + [36079,0.001], + [36081,0.018], + [36083,0.002], + [36085,0.009], + [36087,0.006], + [36089,0.001], + [36091,0.002], + [36093,0.004], + [36095,0], + [36097,0.001], + [36099,0.012], + [36101,0.002], + [36103,0.005], + [36105,0.005], + [36107,0.001], + [36109,0.002], + [36111,0.004], + [36113,0], + [36115,0.003], + [36117,0.004], + [36119,0.007], + [36121,0.001], + [36123,0.009], + [37001,0.007], + [37003,0], + [37005,0.006], + [37007,0.002], + [37009,0.004], + [37011,0], + [37013,0], + [37015,0.005], + [37017,0.008], + [37019,0.002], + [37021,0.002], + [37023,0.001], + [37025,0.003], + [37027,0.005], + [37029,0.016], + [37031,0.002], + [37033,0], + [37035,0.002], + [37037,0.007], + [37039,0.002], + [37041,0], + [37043,0], + [37045,0.005], + [37047,0.003], + [37049,0.014], + [37051,0.005], + [37053,0], + [37055,0], + [37057,0.006], + [37059,0.002], + [37061,0.01], + [37063,0.013], + [37065,0.002], + [37067,0.006], + [37069,0.006], + [37071,0.002], + [37073,0], + [37075,0], + [37077,0.009], + [37079,0], + [37081,0.007], + [37083,0.002], + [37085,0.006], + [37087,0.003], + [37089,0.003], + [37091,0.005], + [37093,0.002], + [37095,0], + [37097,0.002], + [37099,0.008], + [37101,0.005], + [37103,0.014], + [37105,0], + [37107,0.001], + [37109,0.004], + [37111,0.002], + [37113,0.003], + [37115,0.003], + [37117,0.002], + [37119,0.014], + [37121,0], + [37123,0.003], + [37125,0.002], + [37127,0.001], + [37129,0.007], + [37131,0.008], + [37133,0.001], + [37135,0.004], + [37137,0.002], + [37139,0.001], + [37141,0.005], + [37143,0], + [37145,0.005], + [37147,0.008], + [37149,0.001], + [37151,0.001], + [37153,0.005], + [37155,0.007], + [37157,0.005], + [37159,0.001], + [37161,0.006], + [37163,0.011], + [37165,0], + [37167,0.013], + [37169,0.006], + [37171,0.007], + [37173,0.008], + [37175,0.003], + [37177,0], + [37179,0.005], + [37181,0.001], + [37183,0.009], + [37185,0.004], + [37187,0], + [37189,0], + [37191,0.008], + [37193,0.006], + [37195,0.005], + [37197,0.003], + [37199,0.004], + [38001,0], + [38003,0.008], + [38005,0.001], + [38007,0], + [38009,0], + [38011,0], + [38013,0.003], + [38015,0.002], + [38017,0.003], + [38019,0], + [38021,0], + [38023,0.004], + [38025,0.006], + [38027,0], + [38029,0.02], + [38031,0], + [38033,0.008], + [38035,0.001], + [38037,0], + [38039,0], + [38041,0], + [38043,0], + [38045,0], + [38047,0], + [38049,0], + [38051,0], + [38053,0.011], + [38055,0.013], + [38057,0.003], + [38059,0], + [38061,0.004], + [38063,0], + [38065,0], + [38067,0], + [38069,0.007], + [38071,0], + [38073,0.005], + [38075,0], + [38077,0], + [38079,0.029], + [38081,0], + [38083,0], + [38085,0.024], + [38087,0], + [38089,0.003], + [38091,0], + [38093,0.007], + [38095,0], + [38097,0], + [38099,0.01], + [38101,0.001], + [38103,0.001], + [38105,0.009], + [39001,0.008], + [39003,0.002], + [39005,0.012], + [39007,0.001], + [39009,0.007], + [39011,0.003], + [39013,0], + [39015,0.003], + [39017,0.004], + [39019,0.005], + [39021,0], + [39023,0], + [39025,0.002], + [39027,0.004], + [39029,0.003], + [39031,0.013], + [39033,0], + [39035,0.004], + [39037,0.007], + [39039,0], + [39041,0.012], + [39043,0.003], + [39045,0.006], + [39047,0.001], + [39049,0.012], + [39051,0.001], + [39053,0.002], + [39055,0.011], + [39057,0.003], + [39059,0.004], + [39061,0.004], + [39063,0.001], + [39065,0.003], + [39067,0], + [39069,0.001], + [39071,0], + [39073,0.001], + [39075,0.129], + [39077,0], + [39079,0], + [39081,0.006], + [39083,0.009], + [39085,0.002], + [39087,0], + [39089,0.001], + [39091,0.011], + [39093,0.004], + [39095,0.003], + [39097,0.004], + [39099,0.004], + [39101,0.001], + [39103,0.004], + [39105,0.005], + [39107,0], + [39109,0.005], + [39111,0.003], + [39113,0.004], + [39115,0.009], + [39117,0.01], + [39119,0.002], + [39121,0], + [39123,0], + [39125,0.004], + [39127,0], + [39129,0.005], + [39131,0.007], + [39133,0.003], + [39135,0.005], + [39137,0.006], + [39139,0.005], + [39141,0.001], + [39143,0.002], + [39145,0.002], + [39147,0.004], + [39149,0.001], + [39151,0.002], + [39153,0.003], + [39155,0.003], + [39157,0.007], + [39159,0], + [39161,0.001], + [39163,0], + [39165,0.002], + [39167,0.005], + [39169,0.021], + [39171,0.001], + [39173,0.005], + [39175,0.003], + [40001,0.006], + [40003,0.006], + [40005,0], + [40007,0.007], + [40009,0.004], + [40011,0.024], + [40013,0.008], + [40015,0.018], + [40017,0.002], + [40019,0.002], + [40021,0.012], + [40023,0.007], + [40025,0.025], + [40027,0.009], + [40029,0.015], + [40031,0.008], + [40033,0.011], + [40035,0.003], + [40037,0], + [40039,0], + [40041,0.006], + [40043,0], + [40045,0.006], + [40047,0.001], + [40049,0.004], + [40051,0.003], + [40053,0], + [40055,0], + [40057,0], + [40059,0], + [40061,0.012], + [40063,0.011], + [40065,0.003], + [40067,0.012], + [40069,0.008], + [40071,0.003], + [40073,0], + [40075,0.002], + [40077,0.002], + [40079,0.012], + [40081,0.002], + [40083,0], + [40085,0.003], + [40087,0.001], + [40089,0.005], + [40091,0.002], + [40093,0], + [40095,0.004], + [40097,0.006], + [40099,0], + [40101,0.003], + [40103,0], + [40105,0], + [40107,0.021], + [40109,0.008], + [40111,0.005], + [40113,0.01], + [40115,0.002], + [40117,0.006], + [40119,0.003], + [40121,0.004], + [40123,0.006], + [40125,0.004], + [40127,0.005], + [40129,0.005], + [40131,0.004], + [40133,0.008], + [40135,0.007], + [40137,0.005], + [40139,0.002], + [40141,0.008], + [40143,0.01], + [40145,0.003], + [40147,0.002], + [40149,0.002], + [40151,0.003], + [40153,0], + [41001,0.001], + [41003,0.004], + [41005,0.006], + [41007,0.004], + [41009,0.002], + [41011,0.005], + [41013,0], + [41015,0.004], + [41017,0.008], + [41019,0.004], + [41021,0], + [41023,0], + [41025,0.002], + [41027,0], + [41029,0.006], + [41031,0.012], + [41033,0.003], + [41035,0.001], + [41037,0], + [41039,0.005], + [41041,0.003], + [41043,0.003], + [41045,0.003], + [41047,0.004], + [41049,0], + [41051,0.01], + [41053,0.003], + [41055,0], + [41057,0.005], + [41059,0.009], + [41061,0.009], + [41063,0], + [41065,0.009], + [41067,0.006], + [41069,0], + [41071,0.001], + [42001,0.002], + [42003,0.002], + [42005,0.001], + [42007,0.001], + [42009,0.006], + [42011,0.005], + [42013,0.005], + [42015,0.004], + [42017,0.004], + [42019,0], + [42021,0.002], + [42023,0], + [42025,0.001], + [42027,0.004], + [42029,0.004], + [42031,0.002], + [42033,0.003], + [42035,0.003], + [42037,0.003], + [42039,0.008], + [42041,0.004], + [42043,0.002], + [42045,0.003], + [42047,0], + [42049,0.001], + [42051,0.001], + [42053,0.015], + [42055,0.013], + [42057,0], + [42059,0], + [42061,0.002], + [42063,0.004], + [42065,0.002], + [42067,0.018], + [42069,0.005], + [42071,0.02], + [42073,0.002], + [42075,0.005], + [42077,0.003], + [42079,0.003], + [42081,0.001], + [42083,0], + [42085,0.004], + [42087,0.022], + [42089,0.008], + [42091,0.003], + [42093,0.008], + [42095,0.003], + [42097,0.004], + [42099,0.01], + [42101,0.007], + [42103,0.002], + [42105,0.001], + [42107,0.002], + [42109,0.019], + [42111,0.007], + [42113,0.002], + [42115,0.001], + [42117,0], + [42119,0.01], + [42121,0], + [42123,0.004], + [42125,0.002], + [42127,0.001], + [42129,0.001], + [42131,0], + [42133,0.003], + [44001,0], + [44003,0.002], + [44005,0.002], + [44007,0.006], + [44009,0.001], + [45001,0], + [45003,0.002], + [45005,0.009], + [45007,0.005], + [45009,0.009], + [45011,0.001], + [45013,0.003], + [45015,0.007], + [45017,0], + [45019,0.006], + [45021,0.003], + [45023,0], + [45025,0], + [45027,0.009], + [45029,0], + [45031,0.003], + [45033,0.004], + [45035,0.003], + [45037,0], + [45039,0], + [45041,0], + [45043,0.001], + [45045,0.007], + [45047,0.002], + [45049,0.017], + [45051,0.001], + [45053,0.008], + [45055,0.008], + [45057,0.003], + [45059,0.002], + [45061,0.001], + [45063,0.006], + [45065,0.004], + [45067,0.005], + [45069,0.025], + [45071,0.003], + [45073,0.003], + [45075,0.004], + [45077,0.002], + [45079,0.004], + [45081,0.004], + [45083,0.002], + [45085,0.007], + [45087,0], + [45089,0], + [45091,0.001], + [46003,0], + [46005,0], + [46007,0.021], + [46009,0], + [46011,0.007], + [46013,0], + [46015,0], + [46017,0.082], + [46019,0.002], + [46021,0.005], + [46023,0.022], + [46025,0.004], + [46027,0], + [46029,0.003], + [46031,0.015], + [46033,0.002], + [46035,0], + [46037,0.001], + [46039,0.006], + [46041,0.018], + [46043,0], + [46045,0], + [46047,0], + [46049,0], + [46051,0], + [46053,0.002], + [46055,0], + [46057,0.006], + [46059,0], + [46061,0], + [46063,0], + [46065,0], + [46067,0.001], + [46069,0], + [46071,0.019], + [46073,0], + [46075,0], + [46077,0], + [46079,0.001], + [46081,0], + [46083,0], + [46085,0.002], + [46087,0], + [46089,0], + [46091,0.004], + [46093,0], + [46095,0.022], + [46097,0], + [46099,0.006], + [46101,0.005], + [46102,0], + [46103,0.001], + [46105,0], + [46107,0], + [46109,0.002], + [46111,0], + [46115,0.005], + [46117,0.002], + [46119,0], + [46121,0.046], + [46123,0], + [46125,0], + [46127,0], + [46129,0], + [46135,0], + [46137,0.027], + [47001,0.005], + [47003,0.004], + [47005,0.005], + [47007,0], + [47009,0.004], + [47011,0.002], + [47013,0], + [47015,0.004], + [47017,0.001], + [47019,0.002], + [47021,0], + [47023,0], + [47025,0.001], + [47027,0.009], + [47029,0.008], + [47031,0.001], + [47033,0], + [47035,0.002], + [47037,0.012], + [47039,0.001], + [47041,0.002], + [47043,0.003], + [47045,0], + [47047,0], + [47049,0.001], + [47051,0.001], + [47053,0], + [47055,0.003], + [47057,0], + [47059,0], + [47061,0.005], + [47063,0.008], + [47065,0.003], + [47067,0], + [47069,0], + [47071,0.022], + [47073,0.002], + [47075,0.014], + [47077,0.001], + [47079,0.002], + [47081,0], + [47083,0], + [47085,0], + [47087,0.013], + [47089,0.014], + [47091,0.006], + [47093,0.004], + [47095,0], + [47097,0], + [47099,0.006], + [47101,0], + [47103,0.001], + [47105,0], + [47107,0.006], + [47109,0.006], + [47111,0], + [47113,0.004], + [47115,0], + [47117,0], + [47119,0], + [47121,0.003], + [47123,0.002], + [47125,0.006], + [47127,0.014], + [47129,0], + [47131,0], + [47133,0.003], + [47135,0], + [47137,0], + [47139,0], + [47141,0.002], + [47143,0], + [47145,0.006], + [47147,0.003], + [47149,0.008], + [47151,0.003], + [47153,0], + [47155,0.004], + [47157,0.01], + [47159,0], + [47161,0], + [47163,0.001], + [47165,0.008], + [47167,0.005], + [47169,0], + [47171,0], + [47173,0.014], + [47175,0], + [47177,0.004], + [47179,0.001], + [47181,0], + [47183,0.006], + [47185,0.006], + [47187,0.001], + [47189,0.002], + [48001,0.001], + [48003,0], + [48005,0.006], + [48007,0], + [48009,0], + [48011,0], + [48013,0.019], + [48015,0.01], + [48017,0], + [48019,0.001], + [48021,0.011], + [48023,0.024], + [48025,0.019], + [48027,0.01], + [48029,0.017], + [48031,0.005], + [48033,0], + [48035,0.006], + [48037,0.003], + [48039,0.032], + [48041,0.015], + [48043,0.008], + [48045,0], + [48047,0.018], + [48049,0.004], + [48051,0.002], + [48053,0.006], + [48055,0.021], + [48057,0], + [48059,0.006], + [48061,0.034], + [48063,0.013], + [48065,0], + [48067,0.014], + [48069,0.016], + [48071,0.004], + [48073,0.02], + [48075,0], + [48077,0.037], + [48079,0], + [48081,0.001], + [48083,0], + [48085,0.024], + [48087,0.013], + [48089,0.003], + [48091,0.006], + [48093,0.004], + [48095,0.005], + [48097,0], + [48099,0.007], + [48101,0], + [48103,0], + [48105,0], + [48107,0], + [48109,0.239], + [48111,0], + [48113,0.025], + [48115,0.021], + [48117,0.038], + [48119,0], + [48121,0.019], + [48123,0.01], + [48125,0], + [48127,0], + [48129,0.007], + [48131,0], + [48133,0], + [48135,0.01], + [48137,0], + [48139,0.011], + [48141,0.028], + [48143,0.003], + [48145,0.026], + [48147,0.012], + [48149,0.008], + [48151,0], + [48153,0], + [48155,0], + [48157,0.036], + [48159,0], + [48161,0.001], + [48163,0.026], + [48165,0.009], + [48167,0.005], + [48169,0], + [48171,0.008], + [48173,0], + [48175,0], + [48177,0.015], + [48179,0.008], + [48181,0.011], + [48183,0.005], + [48185,0.013], + [48187,0.015], + [48189,0.008], + [48191,0.003], + [48193,0], + [48195,0], + [48197,0], + [48199,0.016], + [48201,0.034], + [48203,0.007], + [48205,0.013], + [48207,0.032], + [48209,0.002], + [48211,0], + [48213,0.003], + [48215,0.047], + [48217,0.011], + [48219,0.002], + [48221,0.001], + [48223,0.01], + [48225,0.001], + [48227,0.003], + [48229,0], + [48231,0.004], + [48233,0], + [48235,0], + [48237,0], + [48239,0.005], + [48241,0.003], + [48243,0], + [48245,0.014], + [48247,0], + [48249,0.005], + [48251,0.005], + [48253,0], + [48255,0.001], + [48257,0.01], + [48259,0.006], + [48261,0], + [48263,0], + [48265,0.002], + [48267,0], + [48269,0], + [48271,0], + [48273,0.021], + [48275,0.027], + [48277,0.006], + [48279,0], + [48281,0.003], + [48283,0.002], + [48285,0.004], + [48287,0], + [48289,0], + [48291,0.015], + [48293,0.003], + [48295,0], + [48297,0.009], + [48299,0.021], + [48301,0], + [48303,0.006], + [48305,0.002], + [48307,0], + [48309,0.006], + [48311,0], + [48313,0.009], + [48315,0.006], + [48317,0.024], + [48319,0], + [48321,0.03], + [48323,0.01], + [48325,0.004], + [48327,0], + [48329,0.007], + [48331,0.013], + [48333,0.009], + [48335,0], + [48337,0.008], + [48339,0.011], + [48341,0.018], + [48343,0.004], + [48345,0], + [48347,0.013], + [48349,0.004], + [48351,0], + [48353,0], + [48355,0.004], + [48357,0.014], + [48359,0], + [48361,0.002], + [48363,0.008], + [48365,0], + [48367,0.005], + [48369,0.006], + [48371,0.027], + [48373,0.001], + [48375,0.018], + [48377,0.04], + [48379,0.019], + [48381,0.002], + [48383,0], + [48385,0.011], + [48387,0], + [48389,0.004], + [48391,0], + [48393,0], + [48395,0], + [48397,0.011], + [48399,0.005], + [48401,0.016], + [48403,0], + [48405,0.005], + [48407,0.018], + [48409,0.002], + [48411,0.004], + [48413,0], + [48415,0], + [48417,0], + [48419,0.013], + [48421,0], + [48423,0.007], + [48425,0], + [48427,0.047], + [48429,0], + [48431,0], + [48433,0], + [48435,0.02], + [48437,0], + [48439,0.019], + [48441,0.008], + [48443,0], + [48445,0.01], + [48447,0.013], + [48449,0.035], + [48451,0.003], + [48453,0.015], + [48455,0.005], + [48457,0.003], + [48459,0.004], + [48461,0.048], + [48463,0.011], + [48465,0.018], + [48467,0.004], + [48469,0.004], + [48471,0.003], + [48473,0.025], + [48475,0.055], + [48477,0.004], + [48479,0.043], + [48481,0.015], + [48483,0.035], + [48485,0.002], + [48487,0], + [48489,0.018], + [48491,0.018], + [48493,0.012], + [48495,0], + [48497,0.009], + [48499,0.003], + [48501,0.023], + [48503,0], + [48505,0.01], + [48507,0.004], + [49001,0], + [49003,0.006], + [49005,0.006], + [49007,0.003], + [49009,0], + [49011,0.007], + [49013,0.002], + [49015,0.004], + [49017,0], + [49019,0], + [49021,0.012], + [49023,0.005], + [49025,0], + [49027,0], + [49029,0], + [49031,0.013], + [49033,0], + [49035,0.015], + [49037,0.006], + [49039,0.007], + [49041,0.009], + [49043,0.006], + [49045,0.011], + [49047,0.006], + [49049,0.011], + [49051,0.004], + [49053,0.005], + [49055,0.004], + [49057,0.007], + [50001,0.004], + [50003,0], + [50005,0.001], + [50007,0.002], + [50009,0.001], + [50011,0.001], + [50013,0.002], + [50015,0.013], + [50017,0], + [50019,0], + [50021,0], + [50023,0], + [50025,0.003], + [50027,0.003], + [51001,0.005], + [51003,0.004], + [51005,0], + [51007,0.018], + [51009,0.002], + [51011,0], + [51013,0.019], + [51015,0.003], + [51017,0], + [51019,0], + [51021,0], + [51023,0], + [51025,0], + [51027,0], + [51029,0.007], + [51031,0.003], + [51033,0.005], + [51035,0], + [51036,0], + [51037,0], + [51041,0.003], + [51043,0], + [51045,0], + [51047,0.009], + [51049,0.02], + [51051,0], + [51053,0], + [51057,0.006], + [51059,0.02], + [51061,0.002], + [51063,0.001], + [51065,0.005], + [51067,0], + [51069,0.01], + [51071,0.004], + [51073,0.003], + [51075,0.008], + [51077,0.002], + [51079,0.01], + [51081,0], + [51083,0], + [51085,0.004], + [51087,0.012], + [51089,0.005], + [51091,0], + [51093,0.003], + [51095,0.002], + [51097,0], + [51099,0], + [51101,0], + [51103,0], + [51105,0], + [51107,0.025], + [51109,0.003], + [51111,0.01], + [51113,0.004], + [51115,0], + [51117,0.007], + [51119,0], + [51121,0.014], + [51125,0], + [51127,0.004], + [51131,0], + [51133,0.004], + [51135,0.005], + [51137,0], + [51139,0], + [51141,0.006], + [51143,0.002], + [51145,0.002], + [51147,0], + [51149,0], + [51153,0.029], + [51155,0.005], + [51157,0.014], + [51159,0], + [51161,0.008], + [51163,0.007], + [51165,0.014], + [51167,0.002], + [51169,0.001], + [51171,0.004], + [51173,0.002], + [51175,0], + [51177,0.003], + [51179,0.002], + [51181,0], + [51183,0.002], + [51185,0.005], + [51187,0.003], + [51191,0.002], + [51193,0.003], + [51195,0.006], + [51197,0.001], + [51199,0.024], + [51510,0.037], + [51520,0.003], + [51530,0], + [51540,0.023], + [51550,0.005], + [51570,0.004], + [51580,0], + [51590,0.003], + [51595,0], + [51600,0.02], + [51610,0.006], + [51620,0.011], + [51630,0.002], + [51640,0], + [51650,0.004], + [51660,0.002], + [51670,0.006], + [51678,0], + [51680,0.003], + [51683,0.049], + [51685,0.01], + [51690,0], + [51700,0.013], + [51710,0.011], + [51720,0], + [51730,0.009], + [51735,0.008], + [51740,0.004], + [51750,0], + [51760,0.009], + [51770,0], + [51775,0], + [51790,0.002], + [51800,0.006], + [51810,0.007], + [51820,0], + [51830,0], + [51840,0], + [53001,0.036], + [53003,0], + [53005,0.004], + [53007,0.006], + [53009,0.005], + [53011,0.007], + [53013,0.017], + [53015,0.001], + [53017,0.009], + [53019,0.008], + [53021,0.022], + [53023,0], + [53025,0.025], + [53027,0.004], + [53029,0.003], + [53031,0.002], + [53033,0.01], + [53035,0.003], + [53037,0], + [53039,0.005], + [53041,0.005], + [53043,0.001], + [53045,0.003], + [53047,0.008], + [53049,0], + [53051,0.004], + [53053,0.004], + [53055,0.002], + [53057,0.005], + [53059,0.003], + [53061,0.005], + [53063,0.004], + [53065,0.003], + [53067,0.002], + [53069,0], + [53071,0.005], + [53073,0.005], + [53075,0], + [53077,0.015], + [54001,0], + [54003,0.007], + [54005,0], + [54007,0], + [54009,0], + [54011,0], + [54013,0], + [54015,0.006], + [54017,0], + [54019,0.003], + [54021,0], + [54023,0], + [54025,0], + [54027,0.003], + [54029,0.006], + [54031,0], + [54033,0.002], + [54035,0], + [54037,0.003], + [54039,0.003], + [54041,0], + [54043,0], + [54045,0], + [54047,0.006], + [54049,0.001], + [54051,0.002], + [54053,0], + [54055,0], + [54057,0], + [54059,0], + [54061,0.015], + [54063,0], + [54065,0], + [54067,0], + [54069,0.002], + [54071,0.012], + [54073,0], + [54075,0], + [54077,0.002], + [54079,0.004], + [54081,0.002], + [54083,0.002], + [54085,0.001], + [54087,0], + [54089,0], + [54091,0.017], + [54093,0], + [54095,0.006], + [54097,0.005], + [54099,0.006], + [54101,0], + [54103,0.013], + [54105,0], + [54107,0.001], + [54109,0], + [55001,0.002], + [55003,0], + [55005,0], + [55007,0.003], + [55009,0.002], + [55011,0.005], + [55013,0.001], + [55015,0.002], + [55017,0.002], + [55019,0.016], + [55021,0.001], + [55023,0], + [55025,0.005], + [55027,0.002], + [55029,0], + [55031,0.001], + [55033,0], + [55035,0.002], + [55037,0], + [55039,0], + [55041,0.002], + [55043,0.001], + [55045,0.004], + [55047,0.009], + [55049,0.001], + [55051,0.001], + [55053,0.002], + [55055,0.001], + [55057,0.006], + [55059,0.001], + [55061,0.002], + [55063,0.001], + [55065,0.008], + [55067,0.002], + [55069,0], + [55071,0.001], + [55073,0.003], + [55075,0.001], + [55077,0.001], + [55078,0.008], + [55079,0.009], + [55081,0.006], + [55083,0.001], + [55085,0.001], + [55087,0.001], + [55089,0.002], + [55091,0.002], + [55093,0.005], + [55095,0.001], + [55097,0.001], + [55099,0], + [55101,0.001], + [55103,0], + [55105,0.003], + [55107,0.004], + [55109,0.004], + [55111,0.003], + [55113,0.002], + [55115,0], + [55117,0.003], + [55119,0.001], + [55121,0.003], + [55123,0.011], + [55125,0], + [55127,0.001], + [55129,0], + [55131,0.002], + [55133,0.002], + [55135,0.003], + [55137,0.004], + [55139,0.001], + [55141,0.001], + [56001,0.011], + [56003,0], + [56005,0.009], + [56007,0.002], + [56009,0], + [56011,0.004], + [56013,0.005], + [56015,0], + [56017,0], + [56019,0], + [56021,0.001], + [56023,0.001], + [56025,0.001], + [56027,0], + [56029,0], + [56031,0], + [56033,0.009], + [56035,0], + [56037,0.005], + [56039,0], + [56041,0.006], + [56043,0.015], + [56045,0] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-over74-2017.json b/data/regional/united-states/health/insurance/us-health-uninsured-over74-2017.json new file mode 100644 index 0000000..41fc867 --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-over74-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Over 74 Uninsured", + "description" : "Percent of the population over the age of 74 that are uninsured.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.uninsured.over74.2017"], + [1001,0], + [1003,0.004], + [1005,0], + [1007,0], + [1009,0.002], + [1011,0], + [1013,0], + [1015,0], + [1017,0], + [1019,0], + [1021,0.018], + [1023,0], + [1025,0], + [1027,0], + [1029,0], + [1031,0], + [1033,0], + [1035,0], + [1037,0], + [1039,0.004], + [1041,0.001], + [1043,0], + [1045,0], + [1047,0.004], + [1049,0.002], + [1051,0], + [1053,0.003], + [1055,0.001], + [1057,0], + [1059,0], + [1061,0], + [1063,0], + [1065,0], + [1067,0], + [1069,0.005], + [1071,0.007], + [1073,0.004], + [1075,0], + [1077,0.009], + [1079,0], + [1081,0], + [1083,0], + [1085,0], + [1087,0.006], + [1089,0.003], + [1091,0], + [1093,0], + [1095,0], + [1097,0.008], + [1099,0.016], + [1101,0.006], + [1103,0.002], + [1105,0], + [1107,0], + [1109,0], + [1111,0], + [1113,0.005], + [1115,0], + [1117,0.002], + [1119,0.015], + [1121,0], + [1123,0], + [1125,0], + [1127,0], + [1129,0], + [1131,0], + [1133,0], + [2013,0], + [2016,0.117], + [2020,0.008], + [2050,0.011], + [2060,0], + [2068,0], + [2070,0], + [2090,0], + [2100,0], + [2105,0], + [2110,0], + [2122,0], + [2130,0], + [2150,0.026], + [2158,null], + [2164,0], + [2170,0.024], + [2180,0.015], + [2185,0], + [2188,0], + [2195,0.023], + [2198,0], + [2220,0.019], + [2230,0], + [2240,0], + [2261,0.016], + [2275,0], + [2282,0.063], + [2290,0.047], + [4001,0.038], + [4003,0.004], + [4005,0.014], + [4007,0.006], + [4009,0.015], + [4011,0], + [4012,0], + [4013,0.007], + [4015,0.001], + [4017,0.006], + [4019,0.003], + [4021,0.007], + [4023,0.048], + [4025,0.002], + [4027,0.01], + [5001,0], + [5003,0], + [5005,0.006], + [5007,0.005], + [5009,0], + [5011,0], + [5013,0.018], + [5015,0], + [5017,0], + [5019,0], + [5021,0], + [5023,0], + [5025,0.02], + [5027,0.005], + [5029,0], + [5031,0.002], + [5033,0], + [5035,0], + [5037,0], + [5039,0], + [5041,0.008], + [5043,0], + [5045,0.001], + [5047,0], + [5049,0], + [5051,0.008], + [5053,0], + [5055,0], + [5057,0.054], + [5059,0], + [5061,0], + [5063,0], + [5065,0], + [5067,0], + [5069,0.007], + [5071,0.002], + [5073,0], + [5075,0], + [5077,0], + [5079,0], + [5081,0], + [5083,0], + [5085,0.002], + [5087,0], + [5089,0], + [5091,0], + [5093,0.008], + [5095,0], + [5097,0.003], + [5099,0], + [5101,0], + [5103,0], + [5105,0], + [5107,0], + [5109,0.018], + [5111,0], + [5113,0], + [5115,0], + [5117,0], + [5119,0.003], + [5121,0], + [5123,0], + [5125,0], + [5127,0], + [5129,0], + [5131,0.002], + [5133,0], + [5135,0], + [5137,0], + [5139,0], + [5141,0.015], + [5143,0.003], + [5145,0.001], + [5147,0], + [5149,0.002], + [6001,0.007], + [6003,0], + [6005,0], + [6007,0.004], + [6009,0], + [6011,0], + [6013,0.006], + [6015,0], + [6017,0], + [6019,0.011], + [6021,0.004], + [6023,0.003], + [6025,0.01], + [6027,0], + [6029,0.009], + [6031,0.002], + [6033,0.006], + [6035,0.002], + [6037,0.012], + [6039,0], + [6041,0], + [6043,0.005], + [6045,0], + [6047,0.016], + [6049,0.014], + [6051,0], + [6053,0.006], + [6055,0.003], + [6057,0.002], + [6059,0.008], + [6061,0.003], + [6063,0], + [6065,0.007], + [6067,0.009], + [6069,0.036], + [6071,0.013], + [6073,0.008], + [6075,0.002], + [6077,0.014], + [6079,0.004], + [6081,0.004], + [6083,0.002], + [6085,0.008], + [6087,0.004], + [6089,0.002], + [6091,0], + [6093,0], + [6095,0.003], + [6097,0.007], + [6099,0.006], + [6101,0.006], + [6103,0.002], + [6105,0.03], + [6107,0.01], + [6109,0], + [6111,0.005], + [6113,0.001], + [6115,0], + [8001,0.014], + [8003,0], + [8005,0.014], + [8007,0.012], + [8009,0], + [8011,0.014], + [8013,0.001], + [8014,0.017], + [8015,0], + [8017,0], + [8019,0], + [8021,0], + [8023,0], + [8025,0], + [8027,0], + [8029,0], + [8031,0.008], + [8033,0], + [8035,0.005], + [8037,0], + [8039,0], + [8041,0.002], + [8043,0], + [8045,0.013], + [8047,0], + [8049,0], + [8051,0], + [8053,0], + [8055,0], + [8057,0], + [8059,0.003], + [8061,0], + [8063,0], + [8065,0], + [8067,0.002], + [8069,0], + [8071,0.015], + [8073,0], + [8075,0], + [8077,0.004], + [8079,0], + [8081,0], + [8083,0.008], + [8085,0.001], + [8087,0], + [8089,0], + [8091,0], + [8093,0], + [8095,0], + [8097,0.019], + [8099,0], + [8101,0.004], + [8103,0], + [8105,0], + [8107,0], + [8109,0], + [8111,0], + [8113,0], + [8115,0.007], + [8117,0], + [8119,0], + [8121,0.007], + [8123,0.008], + [8125,0], + [9001,0.008], + [9003,0.003], + [9005,0.003], + [9007,0.003], + [9009,0.003], + [9011,0.004], + [9013,0.002], + [9015,0.01], + [10001,0.014], + [10003,0.012], + [10005,0.005], + [11001,0.007], + [12001,0.018], + [12003,0.012], + [12005,0.004], + [12007,0], + [12009,0.004], + [12011,0.022], + [12013,0.013], + [12015,0.003], + [12017,0.004], + [12019,0], + [12021,0.013], + [12023,0.004], + [12027,0.007], + [12029,0], + [12031,0.007], + [12033,0.003], + [12035,0.002], + [12037,0], + [12039,0.016], + [12041,0], + [12043,0], + [12045,0], + [12047,0], + [12049,0], + [12051,0.014], + [12053,0.004], + [12055,0.007], + [12057,0.007], + [12059,0.012], + [12061,0.003], + [12063,0], + [12065,0], + [12067,0], + [12069,0.001], + [12071,0.012], + [12073,0.004], + [12075,0.007], + [12077,0], + [12079,0], + [12081,0.005], + [12083,0.002], + [12085,0.002], + [12086,0.017], + [12087,0.014], + [12089,0], + [12091,0.004], + [12093,0], + [12095,0.017], + [12097,0.037], + [12099,0.009], + [12101,0.006], + [12103,0.005], + [12105,0.01], + [12107,0.004], + [12109,0.005], + [12111,0.009], + [12113,0], + [12115,0.002], + [12117,0.009], + [12119,0.001], + [12121,0], + [12123,0], + [12125,0], + [12127,0.004], + [12129,0], + [12131,0.002], + [12133,0], + [13001,0], + [13003,0], + [13005,0], + [13007,0], + [13009,0.011], + [13011,0], + [13013,0.006], + [13015,0], + [13017,0.019], + [13019,0], + [13021,0.015], + [13023,0], + [13025,0], + [13027,0.011], + [13029,0], + [13031,0.013], + [13033,0], + [13035,0], + [13037,0], + [13039,0.008], + [13043,0.004], + [13045,0], + [13047,0], + [13049,0], + [13051,0.001], + [13053,0], + [13055,0.006], + [13057,0.003], + [13059,0.009], + [13061,0.035], + [13063,0.029], + [13065,0], + [13067,0.009], + [13069,0], + [13071,0.031], + [13073,0.012], + [13075,0], + [13077,0.017], + [13079,0], + [13081,0], + [13083,0], + [13085,0], + [13087,0], + [13089,0.01], + [13091,0], + [13093,0], + [13095,0.001], + [13097,0], + [13099,0], + [13101,0], + [13103,0], + [13105,0], + [13107,0.012], + [13109,0.029], + [13111,0], + [13113,0.005], + [13115,0], + [13117,0.012], + [13119,0], + [13121,0.006], + [13123,0], + [13125,0], + [13127,0], + [13129,0], + [13131,0.015], + [13133,0], + [13135,0.038], + [13137,0.014], + [13139,0.008], + [13141,0], + [13143,0], + [13145,0], + [13147,0], + [13149,0], + [13151,0.008], + [13153,0.009], + [13155,0], + [13157,0], + [13159,0], + [13161,0], + [13163,0], + [13165,0], + [13167,0], + [13169,0], + [13171,0.018], + [13173,0], + [13175,0], + [13177,0], + [13179,0], + [13181,0], + [13183,0], + [13185,0.002], + [13187,0], + [13189,0], + [13191,0], + [13193,0.027], + [13195,0], + [13197,0], + [13199,0], + [13201,0], + [13205,0.01], + [13207,0], + [13209,0.068], + [13211,0], + [13213,0.024], + [13215,0.008], + [13217,0.008], + [13219,0], + [13221,0], + [13223,0.003], + [13225,0], + [13227,0.007], + [13229,0], + [13231,0], + [13233,0], + [13235,0], + [13237,0], + [13239,0], + [13241,0.007], + [13243,0], + [13245,0], + [13247,0], + [13249,0], + [13251,0], + [13253,0.015], + [13255,0.008], + [13257,0], + [13259,0], + [13261,0.014], + [13263,0], + [13265,0], + [13267,0], + [13269,0], + [13271,0], + [13273,0], + [13275,0], + [13277,0], + [13279,0], + [13281,0], + [13283,0], + [13285,0], + [13287,0], + [13289,0.008], + [13291,0], + [13293,0.01], + [13295,0.006], + [13297,0.024], + [13299,0], + [13301,0], + [13303,0.006], + [13305,0], + [13307,0], + [13309,0], + [13311,0], + [13313,0.016], + [13315,0], + [13317,0], + [13319,0.003], + [13321,0.002], + [15001,0.002], + [15003,0.004], + [15005,0.333], + [15007,0.006], + [15009,0.011], + [16001,0.002], + [16003,0], + [16005,0], + [16007,0], + [16009,0.006], + [16011,0.011], + [16013,0.009], + [16015,0.015], + [16017,0.006], + [16019,0.003], + [16021,0], + [16023,0], + [16025,0], + [16027,0.001], + [16029,0], + [16031,0], + [16033,0], + [16035,0.004], + [16037,0], + [16039,0], + [16041,0.005], + [16043,0], + [16045,0.014], + [16047,0.015], + [16049,0.003], + [16051,0], + [16053,0.002], + [16055,0.004], + [16057,0], + [16059,0], + [16061,0], + [16063,0], + [16065,0.013], + [16067,0.025], + [16069,0], + [16071,0], + [16073,0], + [16075,0], + [16077,0], + [16079,0], + [16081,0], + [16083,0.003], + [16085,0], + [16087,0], + [17001,0.002], + [17003,0], + [17005,0], + [17007,0], + [17009,0.014], + [17011,0], + [17013,0], + [17015,0], + [17017,0], + [17019,0.006], + [17021,0], + [17023,0], + [17025,0], + [17027,0], + [17029,0.006], + [17031,0.011], + [17033,0], + [17035,0], + [17037,0], + [17039,0], + [17041,0.07], + [17043,0.01], + [17045,0], + [17047,0], + [17049,0.001], + [17051,0], + [17053,0], + [17055,0.003], + [17057,0], + [17059,0], + [17061,0], + [17063,0], + [17065,0], + [17067,0], + [17069,0], + [17071,0], + [17073,0], + [17075,0.001], + [17077,0.007], + [17079,0.029], + [17081,0.002], + [17083,0.014], + [17085,0], + [17087,0], + [17089,0.009], + [17091,0.001], + [17093,0], + [17095,0.003], + [17097,0.006], + [17099,0], + [17101,0.005], + [17103,0.004], + [17105,0], + [17107,0.003], + [17109,0], + [17111,0.004], + [17113,0.004], + [17115,0], + [17117,0], + [17119,0.001], + [17121,0], + [17123,0], + [17125,0], + [17127,0.014], + [17129,0], + [17131,0.007], + [17133,0], + [17135,0], + [17137,0], + [17139,0.009], + [17141,0], + [17143,0.003], + [17145,0], + [17147,0.008], + [17149,0.004], + [17151,0], + [17153,0], + [17155,0], + [17157,0.005], + [17159,0], + [17161,0.002], + [17163,0.003], + [17165,0], + [17167,0.001], + [17169,0.02], + [17171,0.016], + [17173,0], + [17175,0], + [17177,0.012], + [17179,0.001], + [17181,0], + [17183,0.003], + [17185,0], + [17187,0.004], + [17189,0.006], + [17191,0], + [17193,0.002], + [17195,0], + [17197,0.003], + [17199,0], + [17201,0.009], + [17203,0], + [18001,0.004], + [18003,0.005], + [18005,0], + [18007,0], + [18009,0], + [18011,0], + [18013,0], + [18015,0], + [18017,0], + [18019,0.007], + [18021,0], + [18023,0.006], + [18025,0.003], + [18027,0.022], + [18029,0], + [18031,0], + [18033,0.003], + [18035,0], + [18037,0], + [18039,0.008], + [18041,0], + [18043,0.005], + [18045,0], + [18047,0], + [18049,0.025], + [18051,0], + [18053,0], + [18055,0], + [18057,0.006], + [18059,0], + [18061,0], + [18063,0], + [18065,0.003], + [18067,0], + [18069,0.004], + [18071,0.006], + [18073,0.012], + [18075,0], + [18077,0], + [18079,0], + [18081,0.002], + [18083,0], + [18085,0.004], + [18087,0.055], + [18089,0.002], + [18091,0], + [18093,0], + [18095,0.001], + [18097,0.003], + [18099,0.002], + [18101,0], + [18103,0.005], + [18105,0.002], + [18107,0.008], + [18109,0.003], + [18111,0], + [18113,0.002], + [18115,0], + [18117,0.009], + [18119,0], + [18121,0], + [18123,0], + [18125,0], + [18127,0], + [18129,0], + [18131,0], + [18133,0.001], + [18135,0], + [18137,0.016], + [18139,0.011], + [18141,0.007], + [18143,0], + [18145,0], + [18147,0], + [18149,0.001], + [18151,0], + [18153,0], + [18155,0.003], + [18157,0], + [18159,0], + [18161,0], + [18163,0.005], + [18165,0], + [18167,0.002], + [18169,0], + [18171,0], + [18173,0], + [18175,0], + [18177,0.001], + [18179,0], + [18181,0], + [18183,0], + [19001,0], + [19003,0], + [19005,0], + [19007,0], + [19009,0], + [19011,0], + [19013,0.002], + [19015,0], + [19017,0], + [19019,0.005], + [19021,0], + [19023,0], + [19025,0], + [19027,0], + [19029,0], + [19031,0], + [19033,0], + [19035,0], + [19037,0], + [19039,0], + [19041,0], + [19043,0], + [19045,0.003], + [19047,0.007], + [19049,0.001], + [19051,0.046], + [19053,0.029], + [19055,0], + [19057,0], + [19059,0.003], + [19061,0.004], + [19063,0], + [19065,0], + [19067,0], + [19069,0], + [19071,0], + [19073,0.001], + [19075,0], + [19077,0], + [19079,0], + [19081,0], + [19083,0], + [19085,0], + [19087,0], + [19089,0], + [19091,0], + [19093,0], + [19095,0.005], + [19097,0.006], + [19099,0.003], + [19101,0], + [19103,0], + [19105,0], + [19107,0], + [19109,0], + [19111,0], + [19113,0.004], + [19115,0.009], + [19117,0], + [19119,0], + [19121,0], + [19123,0.008], + [19125,0], + [19127,0.005], + [19129,0.01], + [19131,0.002], + [19133,0], + [19135,0], + [19137,0], + [19139,0], + [19141,0], + [19143,0.002], + [19145,0], + [19147,0], + [19149,0], + [19151,0], + [19153,0.003], + [19155,0.003], + [19157,0], + [19159,0], + [19161,0.003], + [19163,0.002], + [19165,0], + [19167,0], + [19169,0.002], + [19171,0.016], + [19173,0], + [19175,0], + [19177,0], + [19179,0], + [19181,0], + [19183,0.021], + [19185,0], + [19187,0], + [19189,0], + [19191,0], + [19193,0.003], + [19195,0.008], + [19197,0], + [20001,0], + [20003,0], + [20005,0], + [20007,0], + [20009,0], + [20011,0], + [20013,0], + [20015,0], + [20017,0], + [20019,0.011], + [20021,0], + [20023,0], + [20025,0], + [20027,0], + [20029,0], + [20031,0], + [20033,0.012], + [20035,0], + [20037,0.004], + [20039,0], + [20041,0], + [20043,0], + [20045,0], + [20047,0], + [20049,0], + [20051,0], + [20053,0], + [20055,0.026], + [20057,0], + [20059,0], + [20061,0], + [20063,0.006], + [20065,0], + [20067,0], + [20069,0], + [20071,0], + [20073,0], + [20075,0], + [20077,0], + [20079,0], + [20081,0], + [20083,0], + [20085,0], + [20087,0.002], + [20089,0.005], + [20091,0.004], + [20093,0], + [20095,0], + [20097,0], + [20099,0.005], + [20101,0], + [20103,0.003], + [20105,0], + [20107,0.006], + [20109,0], + [20111,0], + [20113,0], + [20115,0], + [20117,0], + [20119,0], + [20121,0], + [20123,0.01], + [20125,0], + [20127,0.003], + [20129,0], + [20131,0], + [20133,0], + [20135,0], + [20137,0], + [20139,0.003], + [20141,0], + [20143,0], + [20145,0], + [20147,0], + [20149,0], + [20151,0.002], + [20153,0], + [20155,0.001], + [20157,0], + [20159,0], + [20161,0], + [20163,0], + [20165,0], + [20167,0], + [20169,0.004], + [20171,0], + [20173,0.002], + [20175,0], + [20177,0.001], + [20179,0], + [20181,0], + [20183,0], + [20185,0], + [20187,0], + [20189,0.026], + [20191,0], + [20193,0], + [20195,0], + [20197,0], + [20199,0.031], + [20201,0], + [20203,0], + [20205,0], + [20207,0], + [20209,0.011], + [21001,0], + [21003,0.014], + [21005,0.009], + [21007,0], + [21009,0.005], + [21011,0], + [21013,0], + [21015,0], + [21017,0.001], + [21019,0], + [21021,0], + [21023,0], + [21025,0], + [21027,0], + [21029,0.01], + [21031,0], + [21033,0], + [21035,0.004], + [21037,0], + [21039,0.012], + [21041,0.019], + [21043,0], + [21045,0], + [21047,0.006], + [21049,0.004], + [21051,0.004], + [21053,0], + [21055,0.023], + [21057,0], + [21059,0.003], + [21061,0], + [21063,0], + [21065,0], + [21067,0.008], + [21069,0], + [21071,0], + [21073,0], + [21075,0.01], + [21077,0], + [21079,0.003], + [21081,0], + [21083,0], + [21085,0], + [21087,0], + [21089,0], + [21091,0], + [21093,0.007], + [21095,0], + [21097,0], + [21099,0.067], + [21101,0], + [21103,0], + [21105,0], + [21107,0], + [21109,0], + [21111,0.004], + [21113,0.007], + [21115,0], + [21117,0.001], + [21119,0], + [21121,0], + [21123,0.003], + [21125,0], + [21127,0], + [21129,0], + [21131,0], + [21133,0], + [21135,0], + [21137,0], + [21139,0], + [21141,0.009], + [21143,0], + [21145,0], + [21147,0], + [21149,0], + [21151,0.005], + [21153,0.007], + [21155,0], + [21157,0], + [21159,0.004], + [21161,0], + [21163,0], + [21165,0], + [21167,0.013], + [21169,0.006], + [21171,0], + [21173,0], + [21175,0], + [21177,0], + [21179,0], + [21181,0], + [21183,0], + [21185,0], + [21187,0], + [21189,0], + [21191,0.05], + [21193,0], + [21195,0.002], + [21197,0], + [21199,0], + [21201,0.041], + [21203,0], + [21205,0], + [21207,0], + [21209,0], + [21211,0], + [21213,0.015], + [21215,0], + [21217,0], + [21219,0], + [21221,0], + [21223,0], + [21225,0], + [21227,0], + [21229,0.007], + [21231,0], + [21233,0.025], + [21235,0], + [21237,0], + [21239,0], + [22001,0], + [22003,0], + [22005,0.002], + [22007,0], + [22009,0.003], + [22011,0], + [22013,0], + [22015,0.01], + [22017,0.005], + [22019,0.002], + [22021,0], + [22023,0], + [22025,0.01], + [22027,0], + [22029,0.004], + [22031,0], + [22033,0.003], + [22035,0.022], + [22037,0], + [22039,0], + [22041,0], + [22043,0], + [22045,0], + [22047,0], + [22049,0.005], + [22051,0.011], + [22053,0], + [22055,0.005], + [22057,0], + [22059,0], + [22061,0], + [22063,0], + [22065,0], + [22067,0], + [22069,0], + [22071,0.006], + [22073,0.001], + [22075,0], + [22077,0], + [22079,0.009], + [22081,0], + [22083,0], + [22085,0.002], + [22087,0], + [22089,0.006], + [22091,0], + [22093,0], + [22095,0], + [22097,0.006], + [22099,0], + [22101,0], + [22103,0.004], + [22105,0.001], + [22107,0], + [22109,0.004], + [22111,0.039], + [22113,0.006], + [22115,0.002], + [22117,0.002], + [22119,0.009], + [22121,0], + [22123,0], + [22125,0], + [22127,0], + [23001,0], + [23003,0.002], + [23005,0.001], + [23007,0.001], + [23009,0.001], + [23011,0.001], + [23013,0.001], + [23015,0], + [23017,0.007], + [23019,0], + [23021,0], + [23023,0], + [23025,0], + [23027,0], + [23029,0], + [23031,0.002], + [24001,0.001], + [24003,0.002], + [24005,0.008], + [24009,0.001], + [24011,0.011], + [24013,0.007], + [24015,0.01], + [24017,0.004], + [24019,0.002], + [24021,0.017], + [24023,0], + [24025,0.001], + [24027,0.016], + [24029,0], + [24031,0.014], + [24033,0.013], + [24035,0], + [24037,0.001], + [24039,0], + [24041,0], + [24043,0.001], + [24045,0.008], + [24047,0], + [24510,0.006], + [25001,0.001], + [25003,0.001], + [25005,0.001], + [25007,0], + [25009,0.002], + [25011,0.004], + [25013,0.001], + [25015,0], + [25017,0.004], + [25019,0], + [25021,0.004], + [25023,0.001], + [25025,0.004], + [25027,0.002], + [26001,0], + [26003,0.032], + [26005,0], + [26007,0], + [26009,0], + [26011,0.002], + [26013,0], + [26015,0.001], + [26017,0.001], + [26019,0], + [26021,0.004], + [26023,0.013], + [26025,0.005], + [26027,0], + [26029,0], + [26031,0], + [26033,0], + [26035,0.003], + [26037,0], + [26039,0], + [26041,0], + [26043,0], + [26045,0], + [26047,0.001], + [26049,0], + [26051,0], + [26053,0], + [26055,0.003], + [26057,0.003], + [26059,0], + [26061,0], + [26063,0], + [26065,0.003], + [26067,0], + [26069,0], + [26071,0], + [26073,0.002], + [26075,0], + [26077,0], + [26079,0.006], + [26081,0.005], + [26083,0], + [26085,0], + [26087,0.006], + [26089,0], + [26091,0.001], + [26093,0.001], + [26095,0], + [26097,0], + [26099,0.003], + [26101,0.001], + [26103,0], + [26105,0], + [26107,0], + [26109,0], + [26111,0.003], + [26113,0], + [26115,0.002], + [26117,0.007], + [26119,0], + [26121,0], + [26123,0], + [26125,0.002], + [26127,0.005], + [26129,0.002], + [26131,0], + [26133,0.005], + [26135,0.007], + [26137,0], + [26139,0.004], + [26141,0], + [26143,0], + [26145,0.001], + [26147,0], + [26149,0.004], + [26151,0.002], + [26153,0], + [26155,0], + [26157,0.004], + [26159,0.001], + [26161,0.003], + [26163,0.004], + [26165,0], + [27001,0.002], + [27003,0.001], + [27005,0], + [27007,0.006], + [27009,0], + [27011,0], + [27013,0], + [27015,0], + [27017,0.009], + [27019,0.002], + [27021,0], + [27023,0], + [27025,0], + [27027,0], + [27029,0], + [27031,0], + [27033,0], + [27035,0], + [27037,0.001], + [27039,0.004], + [27041,0.001], + [27043,0], + [27045,0.009], + [27047,0], + [27049,0], + [27051,0], + [27053,0.008], + [27055,0.003], + [27057,0], + [27059,0], + [27061,0.001], + [27063,0], + [27065,0], + [27067,0.003], + [27069,0], + [27071,0], + [27073,0], + [27075,0.003], + [27077,0], + [27079,0], + [27081,0], + [27083,0], + [27085,0], + [27087,0.01], + [27089,0], + [27091,0], + [27093,0.001], + [27095,0.007], + [27097,0], + [27099,0.001], + [27101,0], + [27103,0], + [27105,0], + [27107,0.002], + [27109,0.002], + [27111,0.002], + [27113,0], + [27115,0.006], + [27117,0], + [27119,0], + [27121,0], + [27123,0.007], + [27125,0], + [27127,0], + [27129,0], + [27131,0.008], + [27133,0], + [27135,0], + [27137,0], + [27139,0.005], + [27141,0], + [27143,0], + [27145,0], + [27147,0], + [27149,0], + [27151,0], + [27153,0.007], + [27155,0], + [27157,0], + [27159,0], + [27161,0], + [27163,0.005], + [27165,0], + [27167,0], + [27169,0], + [27171,0.001], + [27173,0], + [28001,0], + [28003,0], + [28005,0], + [28007,0], + [28009,0], + [28011,0], + [28013,0], + [28015,0], + [28017,0], + [28019,0], + [28021,0], + [28023,0], + [28025,0], + [28027,0], + [28029,0], + [28031,0.003], + [28033,0.002], + [28035,0.003], + [28037,0], + [28039,0], + [28041,0], + [28043,0], + [28045,0], + [28047,0.005], + [28049,0], + [28051,0], + [28053,0], + [28055,0], + [28057,0], + [28059,0.007], + [28061,0], + [28063,0], + [28065,0], + [28067,0], + [28069,0], + [28071,0], + [28073,0], + [28075,0.007], + [28077,0], + [28079,0], + [28081,0], + [28083,0.007], + [28085,0], + [28087,0], + [28089,0], + [28091,0.01], + [28093,0.026], + [28095,0.001], + [28097,0], + [28099,0], + [28101,0], + [28103,0], + [28105,0], + [28107,0.001], + [28109,0], + [28111,0], + [28113,0], + [28115,0], + [28117,0], + [28119,0.011], + [28121,0], + [28123,0], + [28125,0], + [28127,0], + [28129,0], + [28131,0], + [28133,0.002], + [28135,0], + [28137,0], + [28139,0.007], + [28141,0], + [28143,0], + [28145,0], + [28147,0], + [28149,0], + [28151,0], + [28153,0], + [28155,0], + [28157,0.018], + [28159,0.007], + [28161,0], + [28163,0.01], + [29001,0.002], + [29003,0.004], + [29005,0], + [29007,0], + [29009,0], + [29011,0.009], + [29013,0], + [29015,0.006], + [29017,0], + [29019,0.001], + [29021,0], + [29023,0], + [29025,0], + [29027,0], + [29029,0.003], + [29031,0.001], + [29033,0], + [29035,0], + [29037,0], + [29039,0], + [29041,0], + [29043,0.008], + [29045,0.007], + [29047,0.003], + [29049,0], + [29051,0.005], + [29053,0.003], + [29055,0], + [29057,0], + [29059,0.014], + [29061,0.005], + [29063,0], + [29065,0], + [29067,0], + [29069,0.025], + [29071,0], + [29073,0], + [29075,0.007], + [29077,0.002], + [29079,0], + [29081,0], + [29083,0], + [29085,0], + [29087,0], + [29089,0.007], + [29091,0.006], + [29093,0], + [29095,0.002], + [29097,0], + [29099,0.001], + [29101,0.011], + [29103,0], + [29105,0], + [29107,0], + [29109,0.001], + [29111,0.013], + [29113,0], + [29115,0], + [29117,0.019], + [29119,0.01], + [29121,0], + [29123,0], + [29125,0], + [29127,0.003], + [29129,0.009], + [29131,0], + [29133,0], + [29135,0.007], + [29137,0], + [29139,0.002], + [29141,0.026], + [29143,0], + [29145,0], + [29147,0], + [29149,0], + [29151,0.004], + [29153,0.007], + [29155,0], + [29157,0], + [29159,0.015], + [29161,0], + [29163,0], + [29165,0.006], + [29167,0], + [29169,0], + [29171,0], + [29173,0], + [29175,0], + [29177,0.016], + [29179,0], + [29181,0], + [29183,0.002], + [29185,0], + [29186,0], + [29187,0], + [29189,0.004], + [29195,0.039], + [29197,0.112], + [29199,0.022], + [29201,0], + [29203,0], + [29205,0], + [29207,0], + [29209,0.001], + [29211,0], + [29213,0], + [29215,0.02], + [29217,0.004], + [29219,0], + [29221,0], + [29223,0], + [29225,0], + [29227,0], + [29229,0.003], + [29510,0.002], + [30001,0.004], + [30003,0.006], + [30005,0], + [30007,0], + [30009,0.005], + [30011,0], + [30013,0.002], + [30015,0.004], + [30017,0], + [30019,0], + [30021,0], + [30023,0], + [30025,0], + [30027,0.002], + [30029,0.004], + [30031,0.002], + [30033,0], + [30035,0], + [30037,0], + [30039,0], + [30041,0], + [30043,0], + [30045,0], + [30047,0.004], + [30049,0.003], + [30051,0], + [30053,0], + [30055,0], + [30057,0.022], + [30059,0], + [30061,0], + [30063,0.004], + [30065,0], + [30067,0.014], + [30069,0], + [30071,0], + [30073,0], + [30075,0.062], + [30077,0], + [30079,0], + [30081,0.006], + [30083,0], + [30085,0.005], + [30087,0], + [30089,0], + [30091,0], + [30093,0], + [30095,0], + [30097,0], + [30099,0], + [30101,0], + [30103,0], + [30105,0], + [30107,0], + [30109,0], + [30111,0.001], + [31001,0], + [31003,0], + [31005,0], + [31007,0], + [31009,0], + [31011,0.006], + [31013,0], + [31015,0], + [31017,0], + [31019,0], + [31021,0], + [31023,0], + [31025,0], + [31027,0], + [31029,0], + [31031,0], + [31033,0], + [31035,0], + [31037,0], + [31039,0.006], + [31041,0], + [31043,0], + [31045,0], + [31047,0.011], + [31049,0], + [31051,0], + [31053,0], + [31055,0.003], + [31057,0], + [31059,0], + [31061,0], + [31063,0], + [31065,0], + [31067,0], + [31069,0], + [31071,0], + [31073,0], + [31075,0], + [31077,0], + [31079,0.018], + [31081,0], + [31083,0], + [31085,0], + [31087,0], + [31089,0], + [31091,0], + [31093,0], + [31095,0], + [31097,0], + [31099,0], + [31101,0], + [31103,0], + [31105,0], + [31107,0], + [31109,0.002], + [31111,0], + [31113,0.03], + [31115,0], + [31117,0], + [31119,0], + [31121,0], + [31123,0], + [31125,0], + [31127,0], + [31129,0], + [31131,0], + [31133,0], + [31135,0], + [31137,0], + [31139,0.042], + [31141,0], + [31143,0.018], + [31145,0], + [31147,0], + [31149,0], + [31151,0], + [31153,0.002], + [31155,0], + [31157,0], + [31159,0.002], + [31161,0], + [31163,0.006], + [31165,0], + [31167,0], + [31169,0], + [31171,0], + [31173,0], + [31175,0], + [31177,0], + [31179,0], + [31181,0], + [31183,0], + [31185,0], + [32001,0.004], + [32003,0.018], + [32005,0.004], + [32007,0.049], + [32009,0], + [32011,0], + [32013,0.039], + [32015,0], + [32017,0], + [32019,0.005], + [32021,0.006], + [32023,0], + [32027,0], + [32029,0], + [32031,0.01], + [32033,0], + [32510,0.002], + [33001,0.002], + [33003,0], + [33005,0], + [33007,0], + [33009,0.008], + [33011,0], + [33013,0.002], + [33015,0], + [33017,0], + [33019,0], + [34001,0.005], + [34003,0.012], + [34005,0.003], + [34007,0.009], + [34009,0], + [34011,0.002], + [34013,0.015], + [34015,0.002], + [34017,0.014], + [34019,0], + [34021,0.001], + [34023,0.018], + [34025,0.007], + [34027,0.003], + [34029,0.001], + [34031,0.016], + [34033,0.002], + [34035,0.016], + [34037,0.003], + [34039,0.016], + [34041,0.008], + [35001,0.005], + [35003,0], + [35005,0], + [35006,0.006], + [35007,0], + [35009,0], + [35011,0], + [35013,0.006], + [35015,0], + [35017,0.004], + [35019,0], + [35021,0], + [35023,0], + [35025,0.013], + [35027,0], + [35028,0], + [35029,0.015], + [35031,0.011], + [35033,0], + [35035,0.01], + [35037,0], + [35039,0.001], + [35041,0], + [35043,0.015], + [35045,0.022], + [35047,0], + [35049,0.004], + [35051,0], + [35053,0.007], + [35055,0.004], + [35057,0.018], + [35059,0], + [35061,0], + [36001,0.003], + [36003,0.003], + [36005,0.009], + [36007,0.003], + [36009,0.009], + [36011,0], + [36013,0], + [36015,0], + [36017,0.001], + [36019,0.001], + [36021,0], + [36023,0.001], + [36025,0], + [36027,0.003], + [36029,0.002], + [36031,0], + [36033,0.003], + [36035,0], + [36037,0.001], + [36039,0], + [36041,0.008], + [36043,0.001], + [36045,0], + [36047,0.009], + [36049,0], + [36051,0.011], + [36053,0.001], + [36055,0.001], + [36057,0.001], + [36059,0.005], + [36061,0.002], + [36063,0.002], + [36065,0.001], + [36067,0.002], + [36069,0], + [36071,0.003], + [36073,0], + [36075,0.003], + [36077,0.004], + [36079,0], + [36081,0.011], + [36083,0.003], + [36085,0.01], + [36087,0.008], + [36089,0.001], + [36091,0.006], + [36093,0.003], + [36095,0], + [36097,0.007], + [36099,0.023], + [36101,0.001], + [36103,0.004], + [36105,0.002], + [36107,0], + [36109,0], + [36111,0.003], + [36113,0], + [36115,0.001], + [36117,0.002], + [36119,0.005], + [36121,0], + [36123,0.003], + [37001,0.01], + [37003,0], + [37005,0.01], + [37007,0], + [37009,0], + [37011,0], + [37013,0.002], + [37015,0], + [37017,0], + [37019,0], + [37021,0.005], + [37023,0.001], + [37025,0.005], + [37027,0], + [37029,0], + [37031,0.002], + [37033,0], + [37035,0.013], + [37037,0], + [37039,0.008], + [37041,0], + [37043,0], + [37045,0.002], + [37047,0], + [37049,0.016], + [37051,0.002], + [37053,0], + [37055,0], + [37057,0.002], + [37059,0], + [37061,0.001], + [37063,0.006], + [37065,0.004], + [37067,0.004], + [37069,0.007], + [37071,0.002], + [37073,0], + [37075,0], + [37077,0], + [37079,0], + [37081,0.005], + [37083,0.005], + [37085,0], + [37087,0], + [37089,0.001], + [37091,0], + [37093,0.001], + [37095,0], + [37097,0], + [37099,0], + [37101,0.002], + [37103,0], + [37105,0], + [37107,0.003], + [37109,0.011], + [37111,0.002], + [37113,0], + [37115,0], + [37117,0.005], + [37119,0.006], + [37121,0], + [37123,0], + [37125,0.002], + [37127,0.005], + [37129,0.006], + [37131,0.002], + [37133,0], + [37135,0], + [37137,0.001], + [37139,0.003], + [37141,0.008], + [37143,0], + [37145,0], + [37147,0.009], + [37149,0.001], + [37151,0.002], + [37153,0.009], + [37155,0.003], + [37157,0], + [37159,0.002], + [37161,0.003], + [37163,0.006], + [37165,0], + [37167,0.01], + [37169,0.005], + [37171,0.006], + [37173,0], + [37175,0.003], + [37177,0], + [37179,0.004], + [37181,0], + [37183,0.008], + [37185,0.006], + [37187,0], + [37189,0], + [37191,0], + [37193,0], + [37195,0], + [37197,0.002], + [37199,0.002], + [38001,0], + [38003,0], + [38005,0.008], + [38007,0], + [38009,0], + [38011,0], + [38013,0.007], + [38015,0.001], + [38017,0.001], + [38019,0], + [38021,0], + [38023,0], + [38025,0], + [38027,0.01], + [38029,0], + [38031,0], + [38033,0.029], + [38035,0], + [38037,0.007], + [38039,0], + [38041,0.006], + [38043,0], + [38045,0], + [38047,0], + [38049,0], + [38051,0], + [38053,0], + [38055,0.004], + [38057,0], + [38059,0], + [38061,0], + [38063,0], + [38065,0], + [38067,0], + [38069,0], + [38071,0], + [38073,0], + [38075,0], + [38077,0], + [38079,0.005], + [38081,0], + [38083,0], + [38085,0], + [38087,0], + [38089,0], + [38091,0], + [38093,0], + [38095,0], + [38097,0], + [38099,0.013], + [38101,0], + [38103,0], + [38105,0], + [39001,0], + [39003,0], + [39005,0], + [39007,0], + [39009,0.003], + [39011,0.005], + [39013,0.001], + [39015,0.005], + [39017,0.004], + [39019,0.003], + [39021,0], + [39023,0], + [39025,0.007], + [39027,0], + [39029,0.004], + [39031,0.01], + [39033,0], + [39035,0.002], + [39037,0.006], + [39039,0], + [39041,0.002], + [39043,0.004], + [39045,0.005], + [39047,0], + [39049,0.008], + [39051,0.002], + [39053,0], + [39055,0.011], + [39057,0.004], + [39059,0], + [39061,0.004], + [39063,0.008], + [39065,0.016], + [39067,0], + [39069,0], + [39071,0], + [39073,0.011], + [39075,0.117], + [39077,0], + [39079,0], + [39081,0.002], + [39083,0.024], + [39085,0.001], + [39087,0], + [39089,0.001], + [39091,0.016], + [39093,0.001], + [39095,0], + [39097,0.002], + [39099,0.004], + [39101,0], + [39103,0], + [39105,0], + [39107,0], + [39109,0], + [39111,0], + [39113,0.003], + [39115,0], + [39117,0.024], + [39119,0.001], + [39121,0], + [39123,0], + [39125,0.008], + [39127,0], + [39129,0], + [39131,0], + [39133,0], + [39135,0], + [39137,0], + [39139,0.002], + [39141,0], + [39143,0], + [39145,0.001], + [39147,0.005], + [39149,0], + [39151,0.002], + [39153,0.003], + [39155,0.001], + [39157,0.006], + [39159,0], + [39161,0], + [39163,0.012], + [39165,0.003], + [39167,0.001], + [39169,0.018], + [39171,0], + [39173,0], + [39175,0.005], + [40001,0.005], + [40003,0.008], + [40005,0], + [40007,0], + [40009,0], + [40011,0], + [40013,0.001], + [40015,0.024], + [40017,0.002], + [40019,0.003], + [40021,0.001], + [40023,0.003], + [40025,0], + [40027,0.002], + [40029,0.037], + [40031,0.004], + [40033,0], + [40035,0.008], + [40037,0], + [40039,0], + [40041,0.001], + [40043,0.026], + [40045,0.01], + [40047,0.002], + [40049,0], + [40051,0], + [40053,0], + [40055,0], + [40057,0], + [40059,0], + [40061,0], + [40063,0], + [40065,0], + [40067,0.006], + [40069,0], + [40071,0.003], + [40073,0.012], + [40075,0], + [40077,0], + [40079,0.007], + [40081,0.001], + [40083,0.005], + [40085,0], + [40087,0], + [40089,0.008], + [40091,0], + [40093,0], + [40095,0], + [40097,0.003], + [40099,0], + [40101,0.004], + [40103,0.002], + [40105,0], + [40107,0.003], + [40109,0.005], + [40111,0], + [40113,0.004], + [40115,0.002], + [40117,0], + [40119,0.001], + [40121,0.001], + [40123,0.001], + [40125,0.004], + [40127,0], + [40129,0], + [40131,0.006], + [40133,0.001], + [40135,0.006], + [40137,0], + [40139,0], + [40141,0.05], + [40143,0.004], + [40145,0.004], + [40147,0.002], + [40149,0], + [40151,0], + [40153,0], + [41001,0], + [41003,0.003], + [41005,0.002], + [41007,0], + [41009,0.001], + [41011,0], + [41013,0], + [41015,0], + [41017,0.001], + [41019,0.002], + [41021,0], + [41023,0], + [41025,0.003], + [41027,0], + [41029,0.001], + [41031,0], + [41033,0], + [41035,0], + [41037,0], + [41039,0.004], + [41041,0], + [41043,0], + [41045,0.002], + [41047,0.006], + [41049,0], + [41051,0.003], + [41053,0.005], + [41055,0], + [41057,0], + [41059,0], + [41061,0], + [41063,0], + [41065,0.004], + [41067,0.008], + [41069,0], + [41071,0], + [42001,0.004], + [42003,0.001], + [42005,0.002], + [42007,0.001], + [42009,0.005], + [42011,0.004], + [42013,0.003], + [42015,0.002], + [42017,0.004], + [42019,0], + [42021,0.001], + [42023,0], + [42025,0], + [42027,0], + [42029,0.003], + [42031,0.003], + [42033,0.003], + [42035,0], + [42037,0], + [42039,0.009], + [42041,0.006], + [42043,0.003], + [42045,0.003], + [42047,0], + [42049,0.002], + [42051,0], + [42053,0], + [42055,0.009], + [42057,0], + [42059,0], + [42061,0], + [42063,0.004], + [42065,0.001], + [42067,0.006], + [42069,0.001], + [42071,0.018], + [42073,0.003], + [42075,0.002], + [42077,0.003], + [42079,0.001], + [42081,0.001], + [42083,0], + [42085,0.003], + [42087,0.007], + [42089,0.003], + [42091,0.001], + [42093,0.004], + [42095,0.004], + [42097,0.001], + [42099,0.001], + [42101,0.006], + [42103,0.003], + [42105,0.002], + [42107,0.001], + [42109,0.024], + [42111,0.009], + [42113,0], + [42115,0.002], + [42117,0.004], + [42119,0.01], + [42121,0.002], + [42123,0.001], + [42125,0.003], + [42127,0.001], + [42129,0.001], + [42131,0], + [42133,0.001], + [44001,0.005], + [44003,0.001], + [44005,0.001], + [44007,0.004], + [44009,0], + [45001,0], + [45003,0.003], + [45005,0], + [45007,0.002], + [45009,0], + [45011,0], + [45013,0.001], + [45015,0.001], + [45017,0.003], + [45019,0.002], + [45021,0], + [45023,0], + [45025,0], + [45027,0.024], + [45029,0], + [45031,0.004], + [45033,0.005], + [45035,0.003], + [45037,0], + [45039,0], + [45041,0], + [45043,0], + [45045,0.005], + [45047,0.006], + [45049,0], + [45051,0.001], + [45053,0.002], + [45055,0.012], + [45057,0], + [45059,0], + [45061,0.009], + [45063,0.009], + [45065,0], + [45067,0.001], + [45069,0], + [45071,0], + [45073,0], + [45075,0.002], + [45077,0.001], + [45079,0.002], + [45081,0], + [45083,0.006], + [45085,0.009], + [45087,0], + [45089,0], + [45091,0.002], + [46003,0.004], + [46005,0], + [46007,0], + [46009,0], + [46011,0.008], + [46013,0], + [46015,0], + [46017,0.188], + [46019,0], + [46021,0], + [46023,0.003], + [46025,0], + [46027,0], + [46029,0], + [46031,0], + [46033,0], + [46035,0], + [46037,0.002], + [46039,0], + [46041,0.018], + [46043,0], + [46045,0.003], + [46047,0], + [46049,0], + [46051,0], + [46053,0], + [46055,0], + [46057,0.02], + [46059,0], + [46061,0], + [46063,0], + [46065,0], + [46067,0], + [46069,0], + [46071,0], + [46073,0], + [46075,0], + [46077,0], + [46079,0.004], + [46081,0.007], + [46083,0], + [46085,0], + [46087,0], + [46089,0], + [46091,0], + [46093,0], + [46095,0], + [46097,0], + [46099,0.001], + [46101,0], + [46102,null], + [46103,0], + [46105,0], + [46107,0], + [46109,0], + [46111,0], + [46115,0.011], + [46117,0], + [46119,0], + [46121,0], + [46123,0], + [46125,0], + [46127,0], + [46129,0], + [46135,0], + [46137,0], + [47001,0], + [47003,0.004], + [47005,0], + [47007,0], + [47009,0], + [47011,0], + [47013,0], + [47015,0], + [47017,0], + [47019,0.002], + [47021,0.008], + [47023,0], + [47025,0], + [47027,0], + [47029,0.009], + [47031,0.002], + [47033,0], + [47035,0.001], + [47037,0.011], + [47039,0], + [47041,0], + [47043,0], + [47045,0.006], + [47047,0.002], + [47049,0.006], + [47051,0], + [47053,0.001], + [47055,0.003], + [47057,0], + [47059,0], + [47061,0], + [47063,0], + [47065,0.004], + [47067,0], + [47069,0], + [47071,0.039], + [47073,0], + [47075,0.004], + [47077,0], + [47079,0.003], + [47081,0], + [47083,0.015], + [47085,0], + [47087,0.023], + [47089,0], + [47091,0], + [47093,0.005], + [47095,0], + [47097,0], + [47099,0.002], + [47101,0], + [47103,0], + [47105,0], + [47107,0], + [47109,0.01], + [47111,0], + [47113,0], + [47115,0], + [47117,0], + [47119,0.01], + [47121,0], + [47123,0], + [47125,0.007], + [47127,0], + [47129,0.006], + [47131,0.003], + [47133,0], + [47135,0], + [47137,0], + [47139,0], + [47141,0.003], + [47143,0], + [47145,0.007], + [47147,0], + [47149,0.011], + [47151,0], + [47153,0], + [47155,0.004], + [47157,0.004], + [47159,0], + [47161,0.009], + [47163,0], + [47165,0.005], + [47167,0.01], + [47169,0], + [47171,0], + [47173,0], + [47175,0], + [47177,0.004], + [47179,0.004], + [47181,0.001], + [47183,0.009], + [47185,0], + [47187,0], + [47189,0.002], + [48001,0], + [48003,0], + [48005,0.011], + [48007,0.001], + [48009,0], + [48011,0], + [48013,0], + [48015,0.004], + [48017,0], + [48019,0], + [48021,0.005], + [48023,0], + [48025,0.022], + [48027,0.013], + [48029,0.01], + [48031,0], + [48033,0], + [48035,0.004], + [48037,0.003], + [48039,0.024], + [48041,0.014], + [48043,0], + [48045,0], + [48047,0.012], + [48049,0], + [48051,0.007], + [48053,0], + [48055,0], + [48057,0], + [48059,0], + [48061,0.02], + [48063,0], + [48065,0], + [48067,0.007], + [48069,0], + [48071,0], + [48073,0.01], + [48075,0], + [48077,0.014], + [48079,0], + [48081,0], + [48083,0], + [48085,0.03], + [48087,0], + [48089,0.009], + [48091,0.003], + [48093,0], + [48095,0], + [48097,0.014], + [48099,0.002], + [48101,0], + [48103,0], + [48105,0], + [48107,0], + [48109,0.166], + [48111,0], + [48113,0.015], + [48115,0.042], + [48117,0.011], + [48119,0], + [48121,0.01], + [48123,0], + [48125,0.014], + [48127,0], + [48129,0], + [48131,0], + [48133,0.011], + [48135,0.019], + [48137,0], + [48139,0.004], + [48141,0.032], + [48143,0.01], + [48145,0.018], + [48147,0.021], + [48149,0.019], + [48151,0], + [48153,0.006], + [48155,0], + [48157,0.031], + [48159,0], + [48161,0.003], + [48163,0], + [48165,0], + [48167,0.004], + [48169,0], + [48171,0], + [48173,0], + [48175,0], + [48177,0.008], + [48179,0], + [48181,0.005], + [48183,0.006], + [48185,0.01], + [48187,0.01], + [48189,0], + [48191,0], + [48193,0.008], + [48195,0.04], + [48197,0], + [48199,0.01], + [48201,0.027], + [48203,0.009], + [48205,0.003], + [48207,0], + [48209,0], + [48211,0], + [48213,0.003], + [48215,0.04], + [48217,0], + [48219,0], + [48221,0.006], + [48223,0], + [48225,0], + [48227,0], + [48229,0], + [48231,0.001], + [48233,0], + [48235,0], + [48237,0], + [48239,0], + [48241,0], + [48243,0], + [48245,0.015], + [48247,0], + [48249,0.014], + [48251,0.005], + [48253,0], + [48255,0], + [48257,0.014], + [48259,0.004], + [48261,0], + [48263,0], + [48265,0], + [48267,0], + [48269,0], + [48271,0], + [48273,0.027], + [48275,0], + [48277,0], + [48279,0], + [48281,0], + [48283,0], + [48285,0], + [48287,0], + [48289,0], + [48291,0.004], + [48293,0], + [48295,0], + [48297,0], + [48299,0.049], + [48301,0], + [48303,0.008], + [48305,0], + [48307,0], + [48309,0.002], + [48311,0], + [48313,0.023], + [48315,0], + [48317,0.091], + [48319,0], + [48321,0.003], + [48323,0.026], + [48325,0.033], + [48327,0], + [48329,0.011], + [48331,0], + [48333,0], + [48335,0], + [48337,0.002], + [48339,0.005], + [48341,0], + [48343,0], + [48345,0], + [48347,0.024], + [48349,0], + [48351,0], + [48353,0], + [48355,0.005], + [48357,0], + [48359,0], + [48361,0], + [48363,0], + [48365,0], + [48367,0], + [48369,0], + [48371,0.077], + [48373,0], + [48375,0.003], + [48377,0.053], + [48379,0], + [48381,0.001], + [48383,0], + [48385,0.042], + [48387,0], + [48389,0], + [48391,0], + [48393,0], + [48395,0], + [48397,0], + [48399,0], + [48401,0.009], + [48403,0], + [48405,0], + [48407,0], + [48409,0], + [48411,0.008], + [48413,0], + [48415,0.008], + [48417,0], + [48419,0.009], + [48421,0.029], + [48423,0.008], + [48425,0], + [48427,0.009], + [48429,0], + [48431,0], + [48433,0], + [48435,0], + [48437,0], + [48439,0.014], + [48441,0.006], + [48443,0], + [48445,0], + [48447,0], + [48449,0.025], + [48451,0.004], + [48453,0.012], + [48455,0.015], + [48457,0], + [48459,0], + [48461,0], + [48463,0], + [48465,0.005], + [48467,0.01], + [48469,0.005], + [48471,0.002], + [48473,0], + [48475,0], + [48477,0.008], + [48479,0.056], + [48481,0.006], + [48483,0.008], + [48485,0.006], + [48487,0], + [48489,0.003], + [48491,0.009], + [48493,0.021], + [48495,0], + [48497,0], + [48499,0.01], + [48501,0], + [48503,0], + [48505,0], + [48507,0.014], + [49001,0], + [49003,0.01], + [49005,0], + [49007,0], + [49009,0], + [49011,0.005], + [49013,0], + [49015,0.028], + [49017,0], + [49019,0], + [49021,0.013], + [49023,0], + [49025,0], + [49027,0], + [49029,0], + [49031,0.037], + [49033,0], + [49035,0.012], + [49037,0.014], + [49039,0.003], + [49041,0], + [49043,0], + [49045,0.009], + [49047,0], + [49049,0.007], + [49051,0], + [49053,0.002], + [49055,0], + [49057,0.004], + [50001,0.001], + [50003,0.001], + [50005,0], + [50007,0], + [50009,0], + [50011,0], + [50013,0], + [50015,0.014], + [50017,0.001], + [50019,0], + [50021,0], + [50023,0.001], + [50025,0], + [50027,0], + [51001,0.001], + [51003,0.004], + [51005,0], + [51007,0], + [51009,0], + [51011,0], + [51013,0.008], + [51015,0], + [51017,0], + [51019,0.001], + [51021,0], + [51023,0], + [51025,0], + [51027,0], + [51029,0.009], + [51031,0], + [51033,0.006], + [51035,0], + [51036,0], + [51037,0], + [51041,0.007], + [51043,0], + [51045,0], + [51047,0], + [51049,0], + [51051,0], + [51053,0], + [51057,0], + [51059,0.027], + [51061,0], + [51063,0.003], + [51065,0], + [51067,0], + [51069,0.003], + [51071,0], + [51073,0], + [51075,0.011], + [51077,0], + [51079,0.026], + [51081,0], + [51083,0], + [51085,0.004], + [51087,0.002], + [51089,0], + [51091,0], + [51093,0], + [51095,0.004], + [51097,0], + [51099,0], + [51101,0.004], + [51103,0], + [51105,0], + [51107,0.024], + [51109,0], + [51111,0.007], + [51113,0], + [51115,0], + [51117,0], + [51119,0], + [51121,0], + [51125,0], + [51127,0], + [51131,0], + [51133,0], + [51135,0.004], + [51137,0], + [51139,0], + [51141,0], + [51143,0], + [51145,0.009], + [51147,0], + [51149,0], + [51153,0.024], + [51155,0.008], + [51157,0.01], + [51159,0], + [51161,0.002], + [51163,0.005], + [51165,0.013], + [51167,0], + [51169,0.005], + [51171,0.007], + [51173,0], + [51175,0], + [51177,0.001], + [51179,0.011], + [51181,0], + [51183,0.003], + [51185,0], + [51187,0], + [51191,0], + [51193,0], + [51195,0.013], + [51197,0], + [51199,0.006], + [51510,0.043], + [51520,0], + [51530,0], + [51540,0.005], + [51550,0.006], + [51570,0.003], + [51580,0], + [51590,0], + [51595,0], + [51600,0], + [51610,0], + [51620,0], + [51630,0], + [51640,0], + [51650,0.001], + [51660,0], + [51670,0.012], + [51678,0], + [51680,0.003], + [51683,0.042], + [51685,0.011], + [51690,0.018], + [51700,0.001], + [51710,0.006], + [51720,0], + [51730,0], + [51735,0], + [51740,0], + [51750,0], + [51760,0.003], + [51770,0.002], + [51775,0.007], + [51790,0], + [51800,0.001], + [51810,0.008], + [51820,0], + [51830,0], + [51840,0], + [53001,0], + [53003,0], + [53005,0], + [53007,0], + [53009,0], + [53011,0.004], + [53013,0.011], + [53015,0], + [53017,0.006], + [53019,0], + [53021,0.043], + [53023,0], + [53025,0.012], + [53027,0.004], + [53029,0.001], + [53031,0], + [53033,0.004], + [53035,0.003], + [53037,0], + [53039,0], + [53041,0], + [53043,0], + [53045,0.003], + [53047,0.005], + [53049,0], + [53051,0.011], + [53053,0.003], + [53055,0], + [53057,0.002], + [53059,0], + [53061,0.004], + [53063,0.005], + [53065,0], + [53067,0.004], + [53069,0], + [53071,0], + [53073,0.009], + [53075,0], + [53077,0.003], + [54001,0], + [54003,0], + [54005,0], + [54007,0], + [54009,0], + [54011,0], + [54013,0], + [54015,0], + [54017,0], + [54019,0], + [54021,0], + [54023,0], + [54025,0], + [54027,0], + [54029,0.007], + [54031,0], + [54033,0], + [54035,0], + [54037,0], + [54039,0], + [54041,0], + [54043,0], + [54045,0], + [54047,0], + [54049,0], + [54051,0.001], + [54053,0], + [54055,0], + [54057,0], + [54059,0], + [54061,0], + [54063,0], + [54065,0], + [54067,0], + [54069,0], + [54071,0], + [54073,0], + [54075,0], + [54077,0], + [54079,0], + [54081,0], + [54083,0], + [54085,0], + [54087,0], + [54089,0], + [54091,0], + [54093,0], + [54095,0], + [54097,0], + [54099,0], + [54101,0], + [54103,0], + [54105,0], + [54107,0], + [54109,0], + [55001,0.003], + [55003,0], + [55005,0], + [55007,0], + [55009,0], + [55011,0.002], + [55013,0.002], + [55015,0.001], + [55017,0.004], + [55019,0.007], + [55021,0.001], + [55023,0], + [55025,0.003], + [55027,0.002], + [55029,0], + [55031,0.001], + [55033,0], + [55035,0.003], + [55037,0], + [55039,0], + [55041,0.008], + [55043,0.002], + [55045,0], + [55047,0.009], + [55049,0], + [55051,0], + [55053,0.001], + [55055,0], + [55057,0], + [55059,0.004], + [55061,0], + [55063,0.002], + [55065,0], + [55067,0], + [55069,0.001], + [55071,0], + [55073,0.001], + [55075,0.002], + [55077,0], + [55078,0], + [55079,0.005], + [55081,0.01], + [55083,0], + [55085,0], + [55087,0.002], + [55089,0.004], + [55091,0], + [55093,0], + [55095,0.001], + [55097,0.001], + [55099,0], + [55101,0.001], + [55103,0.002], + [55105,0.001], + [55107,0.001], + [55109,0], + [55111,0.002], + [55113,0], + [55115,0], + [55117,0], + [55119,0.006], + [55121,0.005], + [55123,0.006], + [55125,0], + [55127,0], + [55129,0.001], + [55131,0.003], + [55133,0.001], + [55135,0.006], + [55137,0.003], + [55139,0], + [55141,0], + [56001,0], + [56003,0], + [56005,0], + [56007,0], + [56009,0], + [56011,0], + [56013,0.003], + [56015,0], + [56017,0], + [56019,0], + [56021,0], + [56023,0], + [56025,0], + [56027,0], + [56029,0], + [56031,0.005], + [56033,0], + [56035,0], + [56037,0.009], + [56039,0], + [56041,0], + [56043,0], + [56045,0] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-under19-2017.json b/data/regional/united-states/health/insurance/us-health-uninsured-under19-2017.json new file mode 100644 index 0000000..5095148 --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-under19-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Under 19 Uninsured", + "description" : "Percent of the population under the age of 19 that are uninsured.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.uninsured.under19.2017"], + [1001,0.032], + [1003,0.035], + [1005,0.046], + [1007,0.018], + [1009,0.057], + [1011,0.012], + [1013,0.028], + [1015,0.018], + [1017,0.047], + [1019,0.034], + [1021,0.057], + [1023,0.011], + [1025,0.019], + [1027,0.075], + [1029,0.076], + [1031,0.041], + [1033,0.039], + [1035,0.072], + [1037,0.017], + [1039,0.067], + [1041,0.027], + [1043,0.054], + [1045,0.033], + [1047,0.02], + [1049,0.037], + [1051,0.025], + [1053,0.107], + [1055,0.04], + [1057,0.014], + [1059,0.045], + [1061,0.034], + [1063,0.035], + [1065,0.03], + [1067,0.015], + [1069,0.031], + [1071,0.02], + [1073,0.042], + [1075,0.105], + [1077,0.021], + [1079,0.045], + [1081,0.024], + [1083,0.024], + [1085,0.109], + [1087,0.017], + [1089,0.037], + [1091,0.021], + [1093,0.027], + [1095,0.039], + [1097,0.038], + [1099,0.038], + [1101,0.028], + [1103,0.04], + [1105,0.046], + [1107,0.027], + [1109,0.051], + [1111,0.039], + [1113,0.047], + [1115,0.022], + [1117,0.037], + [1119,0.043], + [1121,0.014], + [1123,0.015], + [1125,0.021], + [1127,0.034], + [1129,0.038], + [1131,0.034], + [1133,0.038], + [2013,0.359], + [2016,0.191], + [2020,0.1], + [2050,0.096], + [2060,0.184], + [2068,0.133], + [2070,0.096], + [2090,0.072], + [2100,0.121], + [2105,0.182], + [2110,0.089], + [2122,0.138], + [2130,0.105], + [2150,0.141], + [2158,null], + [2164,0.147], + [2170,0.107], + [2180,0.137], + [2185,0.239], + [2188,0.195], + [2195,0.13], + [2198,0.202], + [2220,0.162], + [2230,0.078], + [2240,0.069], + [2261,0.159], + [2275,0.117], + [2282,0.145], + [2290,0.167], + [4001,0.2], + [4003,0.064], + [4005,0.103], + [4007,0.122], + [4009,0.062], + [4011,0.075], + [4012,0.143], + [4013,0.09], + [4015,0.128], + [4017,0.106], + [4019,0.086], + [4021,0.085], + [4023,0.069], + [4025,0.11], + [4027,0.132], + [5001,0.009], + [5003,0.036], + [5005,0.045], + [5007,0.044], + [5009,0.051], + [5011,0.042], + [5013,0.042], + [5015,0.05], + [5017,0.031], + [5019,0.034], + [5021,0.028], + [5023,0.097], + [5025,0.043], + [5027,0.045], + [5029,0.039], + [5031,0.049], + [5033,0.067], + [5035,0.05], + [5037,0.017], + [5039,0.062], + [5041,0.054], + [5043,0.048], + [5045,0.061], + [5047,0.035], + [5049,0.061], + [5051,0.064], + [5053,0.028], + [5055,0.031], + [5057,0.069], + [5059,0.038], + [5061,0.056], + [5063,0.044], + [5065,0.034], + [5067,0.039], + [5069,0.028], + [5071,0.044], + [5073,0.021], + [5075,0.034], + [5077,0.011], + [5079,0.036], + [5081,0.02], + [5083,0.017], + [5085,0.04], + [5087,0.092], + [5089,0.038], + [5091,0.049], + [5093,0.046], + [5095,0.043], + [5097,0.054], + [5099,0.032], + [5101,0.03], + [5103,0.036], + [5105,0.022], + [5107,0.074], + [5109,0.052], + [5111,0.049], + [5113,0.051], + [5115,0.045], + [5117,0.059], + [5119,0.051], + [5121,0.017], + [5123,0.05], + [5125,0.038], + [5127,0.021], + [5129,0.05], + [5131,0.067], + [5133,0.077], + [5135,0.044], + [5137,0.014], + [5139,0.048], + [5141,0.043], + [5143,0.071], + [5145,0.036], + [5147,0.014], + [5149,0.055], + [6001,0.032], + [6003,0.109], + [6005,0.048], + [6007,0.043], + [6009,0.034], + [6011,0.024], + [6013,0.031], + [6015,0.025], + [6017,0.028], + [6019,0.04], + [6021,0.04], + [6023,0.085], + [6025,0.072], + [6027,0.049], + [6029,0.045], + [6031,0.045], + [6033,0.064], + [6035,0.048], + [6037,0.055], + [6039,0.051], + [6041,0.019], + [6043,0.009], + [6045,0.067], + [6047,0.041], + [6049,0.256], + [6051,0.063], + [6053,0.067], + [6055,0.042], + [6057,0.066], + [6059,0.047], + [6061,0.036], + [6063,0.045], + [6065,0.065], + [6067,0.038], + [6069,0.038], + [6071,0.054], + [6073,0.054], + [6075,0.02], + [6077,0.039], + [6079,0.06], + [6081,0.028], + [6083,0.058], + [6085,0.024], + [6087,0.033], + [6089,0.055], + [6091,0.004], + [6093,0.053], + [6095,0.034], + [6097,0.039], + [6099,0.037], + [6101,0.061], + [6103,0.039], + [6105,0.166], + [6107,0.037], + [6109,0.05], + [6111,0.053], + [6113,0.04], + [6115,0.04], + [8001,0.067], + [8003,0.068], + [8005,0.058], + [8007,0.092], + [8009,0.068], + [8011,0.062], + [8013,0.031], + [8014,0.033], + [8015,0.085], + [8017,0.102], + [8019,0.125], + [8021,0.161], + [8023,0.091], + [8025,0.116], + [8027,0.123], + [8029,0.085], + [8031,0.058], + [8033,0.038], + [8035,0.026], + [8037,0.116], + [8039,0.059], + [8041,0.038], + [8043,0.044], + [8045,0.135], + [8047,0.083], + [8049,0.057], + [8051,0.046], + [8053,0.02], + [8055,0.12], + [8057,0.036], + [8059,0.041], + [8061,0.064], + [8063,0.144], + [8065,0.122], + [8067,0.095], + [8069,0.052], + [8071,0.089], + [8073,0.032], + [8075,0.084], + [8077,0.083], + [8079,0.107], + [8081,0.151], + [8083,0.149], + [8085,0.101], + [8087,0.042], + [8089,0.064], + [8091,0.183], + [8093,0.039], + [8095,0.076], + [8097,0.064], + [8099,0.087], + [8101,0.038], + [8103,0.114], + [8105,0.099], + [8107,0.025], + [8109,0.136], + [8111,0], + [8113,0.041], + [8115,0.037], + [8117,0.182], + [8119,0.102], + [8121,0.016], + [8123,0.056], + [8125,0.086], + [9001,0.06], + [9003,0.027], + [9005,0.034], + [9007,0.016], + [9009,0.029], + [9011,0.019], + [9013,0.022], + [9015,0.02], + [10001,0.057], + [10003,0.034], + [10005,0.046], + [11001,0.023], + [12001,0.047], + [12003,0.11], + [12005,0.091], + [12007,0.112], + [12009,0.066], + [12011,0.093], + [12013,0.153], + [12015,0.13], + [12017,0.076], + [12019,0.068], + [12021,0.139], + [12023,0.095], + [12027,0.108], + [12029,0.081], + [12031,0.069], + [12033,0.052], + [12035,0.113], + [12037,0.12], + [12039,0.059], + [12041,0.183], + [12043,0.181], + [12045,0.061], + [12047,0.094], + [12049,0.086], + [12051,0.194], + [12053,0.09], + [12055,0.099], + [12057,0.072], + [12059,0.096], + [12061,0.085], + [12063,0.055], + [12065,0.052], + [12067,0.063], + [12069,0.077], + [12071,0.102], + [12073,0.049], + [12075,0.085], + [12077,0.105], + [12079,0.072], + [12081,0.085], + [12083,0.077], + [12085,0.108], + [12086,0.087], + [12087,0.126], + [12089,0.081], + [12091,0.086], + [12093,0.093], + [12095,0.093], + [12097,0.118], + [12099,0.099], + [12101,0.069], + [12103,0.076], + [12105,0.085], + [12107,0.078], + [12109,0.054], + [12111,0.086], + [12113,0.059], + [12115,0.098], + [12117,0.064], + [12119,0.126], + [12121,0.069], + [12123,0.058], + [12125,0.036], + [12127,0.085], + [12129,0.052], + [12131,0.093], + [12133,0.06], + [13001,0.078], + [13003,0.106], + [13005,0.106], + [13007,0.028], + [13009,0.054], + [13011,0.134], + [13013,0.077], + [13015,0.073], + [13017,0.095], + [13019,0.161], + [13021,0.055], + [13023,0.07], + [13025,0.178], + [13027,0.113], + [13029,0.054], + [13031,0.06], + [13033,0.083], + [13035,0.045], + [13037,0.082], + [13039,0.068], + [13043,0.089], + [13045,0.067], + [13047,0.091], + [13049,0.127], + [13051,0.078], + [13053,0.028], + [13055,0.053], + [13057,0.068], + [13059,0.083], + [13061,0.124], + [13063,0.108], + [13065,0.119], + [13067,0.086], + [13069,0.158], + [13071,0.104], + [13073,0.036], + [13075,0.132], + [13077,0.051], + [13079,0.093], + [13081,0.082], + [13083,0.063], + [13085,0.066], + [13087,0.072], + [13089,0.089], + [13091,0.043], + [13093,0.07], + [13095,0.061], + [13097,0.075], + [13099,0.03], + [13101,0.134], + [13103,0.038], + [13105,0.059], + [13107,0.087], + [13109,0.024], + [13111,0.082], + [13113,0.049], + [13115,0.053], + [13117,0.063], + [13119,0.096], + [13121,0.059], + [13123,0.15], + [13125,0.011], + [13127,0.083], + [13129,0.064], + [13131,0.083], + [13133,0.075], + [13135,0.101], + [13137,0.139], + [13139,0.104], + [13141,0.021], + [13143,0.072], + [13145,0.046], + [13147,0.073], + [13149,0.036], + [13151,0.065], + [13153,0.077], + [13155,0.083], + [13157,0.064], + [13159,0.039], + [13161,0.089], + [13163,0.1], + [13165,0.014], + [13167,0.092], + [13169,0.062], + [13171,0.117], + [13173,0.111], + [13175,0.049], + [13177,0.053], + [13179,0.064], + [13181,0.044], + [13183,0.051], + [13185,0.065], + [13187,0.1], + [13189,0.117], + [13191,0.178], + [13193,0.085], + [13195,0.069], + [13197,0.045], + [13199,0.054], + [13201,0.056], + [13205,0.111], + [13207,0.065], + [13209,0.087], + [13211,0.075], + [13213,0.117], + [13215,0.051], + [13217,0.059], + [13219,0.041], + [13221,0.04], + [13223,0.077], + [13225,0.048], + [13227,0.051], + [13229,0.089], + [13231,0.08], + [13233,0.092], + [13235,0.061], + [13237,0.069], + [13239,0.191], + [13241,0.144], + [13243,0.051], + [13245,0.052], + [13247,0.092], + [13249,0.106], + [13251,0.09], + [13253,0.033], + [13255,0.073], + [13257,0.145], + [13259,0.056], + [13261,0.025], + [13263,0.212], + [13265,0.088], + [13267,0.09], + [13269,0.08], + [13271,0.04], + [13273,0.039], + [13275,0.11], + [13277,0.12], + [13279,0.084], + [13281,0.053], + [13283,0.127], + [13285,0.065], + [13287,0.129], + [13289,0.053], + [13291,0.096], + [13293,0.069], + [13295,0.09], + [13297,0.046], + [13299,0.084], + [13301,0.065], + [13303,0.04], + [13305,0.102], + [13307,0.052], + [13309,0.116], + [13311,0.095], + [13313,0.119], + [13315,0.11], + [13317,0.112], + [13319,0.021], + [13321,0.068], + [15001,0.027], + [15003,0.024], + [15005,0], + [15007,0.026], + [15009,0.032], + [16001,0.047], + [16003,0.199], + [16005,0.043], + [16007,0.066], + [16009,0.16], + [16011,0.078], + [16013,0.092], + [16015,0.061], + [16017,0.09], + [16019,0.043], + [16021,0.268], + [16023,0.025], + [16025,0.038], + [16027,0.06], + [16029,0.008], + [16031,0.095], + [16033,0.107], + [16035,0.083], + [16037,0.084], + [16039,0.081], + [16041,0.051], + [16043,0.063], + [16045,0.094], + [16047,0.089], + [16049,0.093], + [16051,0.074], + [16053,0.112], + [16055,0.066], + [16057,0.045], + [16059,0.114], + [16061,0.151], + [16063,0.176], + [16065,0.052], + [16067,0.11], + [16069,0.051], + [16071,0.093], + [16073,0.152], + [16075,0.085], + [16077,0.055], + [16079,0.116], + [16081,0.06], + [16083,0.077], + [16085,0.007], + [16087,0.074], + [17001,0.048], + [17003,0.064], + [17005,0.05], + [17007,0.029], + [17009,0.022], + [17011,0.024], + [17013,0.006], + [17015,0.029], + [17017,0.043], + [17019,0.027], + [17021,0.035], + [17023,0.03], + [17025,0.077], + [17027,0.037], + [17029,0.03], + [17031,0.037], + [17033,0.069], + [17035,0.019], + [17037,0.032], + [17039,0.023], + [17041,0.167], + [17043,0.032], + [17045,0.058], + [17047,0.015], + [17049,0.021], + [17051,0.078], + [17053,0.043], + [17055,0.028], + [17057,0.032], + [17059,0], + [17061,0.057], + [17063,0.024], + [17065,0.144], + [17067,0.011], + [17069,0.004], + [17071,0.055], + [17073,0.017], + [17075,0.039], + [17077,0.046], + [17079,0.034], + [17081,0.057], + [17083,0.017], + [17085,0.028], + [17087,0.027], + [17089,0.031], + [17091,0.029], + [17093,0.028], + [17095,0.038], + [17097,0.033], + [17099,0.025], + [17101,0.072], + [17103,0.038], + [17105,0.047], + [17107,0.017], + [17109,0.023], + [17111,0.031], + [17113,0.023], + [17115,0.017], + [17117,0.023], + [17119,0.022], + [17121,0.031], + [17123,0.025], + [17125,0.019], + [17127,0.02], + [17129,0.007], + [17131,0.008], + [17133,0.022], + [17135,0.036], + [17137,0.019], + [17139,0.158], + [17141,0.029], + [17143,0.025], + [17145,0.017], + [17147,0.023], + [17149,0.039], + [17151,0.001], + [17153,0.017], + [17155,0.031], + [17157,0.041], + [17159,0.029], + [17161,0.033], + [17163,0.035], + [17165,0.022], + [17167,0.017], + [17169,0.018], + [17171,0.013], + [17173,0.016], + [17175,0.038], + [17177,0.016], + [17179,0.026], + [17181,0.057], + [17183,0.04], + [17185,0.023], + [17187,0.024], + [17189,0.013], + [17191,0.094], + [17193,0.011], + [17195,0.024], + [17197,0.027], + [17199,0.022], + [17201,0.032], + [17203,0.037], + [18001,0.314], + [18003,0.075], + [18005,0.1], + [18007,0.085], + [18009,0.063], + [18011,0.046], + [18013,0.025], + [18015,0.106], + [18017,0.074], + [18019,0.075], + [18021,0.031], + [18023,0.075], + [18025,0.044], + [18027,0.303], + [18029,0.052], + [18031,0.076], + [18033,0.102], + [18035,0.047], + [18037,0.037], + [18039,0.152], + [18041,0.048], + [18043,0.041], + [18045,0.059], + [18047,0.059], + [18049,0.166], + [18051,0.052], + [18053,0.047], + [18055,0.052], + [18057,0.042], + [18059,0.061], + [18061,0.049], + [18063,0.058], + [18065,0.053], + [18067,0.05], + [18069,0.083], + [18071,0.054], + [18073,0.056], + [18075,0.094], + [18077,0.041], + [18079,0.064], + [18081,0.057], + [18083,0.041], + [18085,0.105], + [18087,0.531], + [18089,0.053], + [18091,0.055], + [18093,0.083], + [18095,0.046], + [18097,0.061], + [18099,0.138], + [18101,0.096], + [18103,0.051], + [18105,0.058], + [18107,0.067], + [18109,0.058], + [18111,0.103], + [18113,0.071], + [18115,0.036], + [18117,0.053], + [18119,0.136], + [18121,0.164], + [18123,0.033], + [18125,0.04], + [18127,0.029], + [18129,0.01], + [18131,0.077], + [18133,0.06], + [18135,0.103], + [18137,0.055], + [18139,0.12], + [18141,0.051], + [18143,0.05], + [18145,0.078], + [18147,0.028], + [18149,0.03], + [18151,0.082], + [18153,0.067], + [18155,0.129], + [18157,0.055], + [18159,0.065], + [18161,0.093], + [18163,0.048], + [18165,0.021], + [18167,0.049], + [18169,0.064], + [18171,0.067], + [18173,0.035], + [18175,0.125], + [18177,0.108], + [18179,0.091], + [18181,0.076], + [18183,0.044], + [19001,0.049], + [19003,0.049], + [19005,0.111], + [19007,0.085], + [19009,0.024], + [19011,0.027], + [19013,0.054], + [19015,0.019], + [19017,0.016], + [19019,0.087], + [19021,0.051], + [19023,0.044], + [19025,0.019], + [19027,0.006], + [19029,0.022], + [19031,0.006], + [19033,0.029], + [19035,0.059], + [19037,0.079], + [19039,0.022], + [19041,0.015], + [19043,0.101], + [19045,0.012], + [19047,0.069], + [19049,0.019], + [19051,0.403], + [19053,0.116], + [19055,0.015], + [19057,0.038], + [19059,0.038], + [19061,0.024], + [19063,0.042], + [19065,0.05], + [19067,0.105], + [19069,0.025], + [19071,0.033], + [19073,0.022], + [19075,0.018], + [19077,0.027], + [19079,0.037], + [19081,0.056], + [19083,0.024], + [19085,0.031], + [19087,0.015], + [19089,0.039], + [19091,0.016], + [19093,0.032], + [19095,0.031], + [19097,0.028], + [19099,0.019], + [19101,0.044], + [19103,0.037], + [19105,0.013], + [19107,0.021], + [19109,0.055], + [19111,0.046], + [19113,0.028], + [19115,0.043], + [19117,0.038], + [19119,0.038], + [19121,0.03], + [19123,0.013], + [19125,0.01], + [19127,0.036], + [19129,0.013], + [19131,0.108], + [19133,0.025], + [19135,0.101], + [19137,0.02], + [19139,0.023], + [19141,0.035], + [19143,0.044], + [19145,0.028], + [19147,0.032], + [19149,0.017], + [19151,0.023], + [19153,0.028], + [19155,0.027], + [19157,0.04], + [19159,0.104], + [19161,0.016], + [19163,0.016], + [19165,0.034], + [19167,0.049], + [19169,0.018], + [19171,0.054], + [19173,0.077], + [19175,0.061], + [19177,0.231], + [19179,0.032], + [19181,0.018], + [19183,0.071], + [19185,0.207], + [19187,0.02], + [19189,0.04], + [19191,0.011], + [19193,0.031], + [19195,0.044], + [19197,0.025], + [20001,0.045], + [20003,0.03], + [20005,0.05], + [20007,0.1], + [20009,0.078], + [20011,0.072], + [20013,0.041], + [20015,0.069], + [20017,0.024], + [20019,0.099], + [20021,0.084], + [20023,0.037], + [20025,0.095], + [20027,0.045], + [20029,0.043], + [20031,0.052], + [20033,0.147], + [20035,0.074], + [20037,0.064], + [20039,0.136], + [20041,0.03], + [20043,0.099], + [20045,0.044], + [20047,0.092], + [20049,0.065], + [20051,0.015], + [20053,0.011], + [20055,0.092], + [20057,0.077], + [20059,0.064], + [20061,0.032], + [20063,0.122], + [20065,0.035], + [20067,0.156], + [20069,0.099], + [20071,0.024], + [20073,0.066], + [20075,0.182], + [20077,0.135], + [20079,0.062], + [20081,0.161], + [20083,0.07], + [20085,0.037], + [20087,0.03], + [20089,0.016], + [20091,0.037], + [20093,0.11], + [20095,0.039], + [20097,0.082], + [20099,0.1], + [20101,0.074], + [20103,0.028], + [20105,0.067], + [20107,0.05], + [20109,0.06], + [20111,0.045], + [20113,0.026], + [20115,0.037], + [20117,0.052], + [20119,0.121], + [20121,0.032], + [20123,0.034], + [20125,0.077], + [20127,0.061], + [20129,0.201], + [20131,0.03], + [20133,0.086], + [20135,0.134], + [20137,0.011], + [20139,0.089], + [20141,0.024], + [20143,0.034], + [20145,0.009], + [20147,0.014], + [20149,0.019], + [20151,0.036], + [20153,0.037], + [20155,0.048], + [20157,0.026], + [20159,0.052], + [20161,0.02], + [20163,0.074], + [20165,0.01], + [20167,0.024], + [20169,0.042], + [20171,0.029], + [20173,0.058], + [20175,0.082], + [20177,0.049], + [20179,0.047], + [20181,0.13], + [20183,0.058], + [20185,0.054], + [20187,0.142], + [20189,0.151], + [20191,0.027], + [20193,0.055], + [20195,0.105], + [20197,0.05], + [20199,0.036], + [20201,0.034], + [20203,0.029], + [20205,0.097], + [20207,0.07], + [20209,0.098], + [21001,0.086], + [21003,0.116], + [21005,0.033], + [21007,0.069], + [21009,0.074], + [21011,0.058], + [21013,0.062], + [21015,0.039], + [21017,0.049], + [21019,0.044], + [21021,0.013], + [21023,0.053], + [21025,0.033], + [21027,0.106], + [21029,0.035], + [21031,0.073], + [21033,0.013], + [21035,0.074], + [21037,0.036], + [21039,0.009], + [21041,0.008], + [21043,0.062], + [21045,0.09], + [21047,0.091], + [21049,0.033], + [21051,0.051], + [21053,0.111], + [21055,0.16], + [21057,0.083], + [21059,0.022], + [21061,0.028], + [21063,0.034], + [21065,0.025], + [21067,0.044], + [21069,0.167], + [21071,0.029], + [21073,0.069], + [21075,0.018], + [21077,0.102], + [21079,0.049], + [21081,0.069], + [21083,0.063], + [21085,0.055], + [21087,0.034], + [21089,0.026], + [21091,0.045], + [21093,0.034], + [21095,0.045], + [21097,0.134], + [21099,0.129], + [21101,0.03], + [21103,0.058], + [21105,0], + [21107,0.097], + [21109,0.058], + [21111,0.027], + [21113,0.052], + [21115,0.023], + [21117,0.038], + [21119,0.056], + [21121,0.019], + [21123,0.034], + [21125,0.025], + [21127,0.068], + [21129,0.01], + [21131,0.026], + [21133,0.036], + [21135,0.081], + [21137,0.075], + [21139,0.008], + [21141,0.046], + [21143,0.125], + [21145,0.035], + [21147,0.022], + [21149,0.039], + [21151,0.037], + [21153,0.016], + [21155,0.035], + [21157,0.021], + [21159,0.133], + [21161,0.089], + [21163,0.036], + [21165,0.012], + [21167,0.047], + [21169,0.088], + [21171,0.092], + [21173,0.061], + [21175,0.043], + [21177,0.07], + [21179,0.033], + [21181,0.107], + [21183,0.026], + [21185,0.015], + [21187,0.038], + [21189,0.013], + [21191,0.023], + [21193,0.046], + [21195,0.041], + [21197,0.033], + [21199,0.034], + [21201,0.097], + [21203,0.002], + [21205,0.043], + [21207,0.1], + [21209,0.053], + [21211,0.049], + [21213,0.056], + [21215,0.019], + [21217,0.028], + [21219,0.194], + [21221,0.155], + [21223,0.032], + [21225,0.02], + [21227,0.031], + [21229,0.081], + [21231,0.076], + [21233,0.067], + [21235,0.029], + [21237,0.043], + [21239,0.053], + [22001,0.048], + [22003,0.042], + [22005,0.024], + [22007,0.045], + [22009,0.087], + [22011,0.091], + [22013,0.037], + [22015,0.037], + [22017,0.031], + [22019,0.038], + [22021,0.127], + [22023,0.009], + [22025,0.297], + [22027,0.035], + [22029,0.327], + [22031,0.031], + [22033,0.028], + [22035,0.076], + [22037,0.021], + [22039,0.039], + [22041,0.105], + [22043,0.013], + [22045,0.037], + [22047,0.028], + [22049,0.028], + [22051,0.049], + [22053,0.033], + [22055,0.049], + [22057,0.04], + [22059,0.048], + [22061,0.03], + [22063,0.055], + [22065,0.302], + [22067,0.049], + [22069,0.038], + [22071,0.043], + [22073,0.04], + [22075,0.046], + [22077,0.057], + [22079,0.045], + [22081,0.004], + [22083,0.186], + [22085,0.03], + [22087,0.073], + [22089,0.039], + [22091,0.044], + [22093,0.062], + [22095,0.026], + [22097,0.059], + [22099,0.041], + [22101,0.038], + [22103,0.039], + [22105,0.037], + [22107,0.241], + [22109,0.054], + [22111,0.036], + [22113,0.029], + [22115,0.024], + [22117,0.053], + [22119,0.048], + [22121,0.039], + [22123,0.332], + [22125,0.014], + [22127,0.041], + [23001,0.047], + [23003,0.048], + [23005,0.041], + [23007,0.061], + [23009,0.109], + [23011,0.043], + [23013,0.063], + [23015,0.091], + [23017,0.045], + [23019,0.068], + [23021,0.118], + [23023,0.051], + [23025,0.063], + [23027,0.08], + [23029,0.08], + [23031,0.063], + [24001,0.037], + [24003,0.032], + [24005,0.038], + [24009,0.035], + [24011,0.033], + [24013,0.022], + [24015,0.022], + [24017,0.029], + [24019,0.028], + [24021,0.03], + [24023,0.055], + [24025,0.024], + [24027,0.031], + [24029,0.024], + [24031,0.037], + [24033,0.056], + [24035,0.035], + [24037,0.054], + [24039,0.035], + [24041,0.025], + [24043,0.05], + [24045,0.04], + [24047,0.055], + [24510,0.043], + [25001,0.018], + [25003,0.02], + [25005,0.015], + [25007,0.026], + [25009,0.015], + [25011,0.01], + [25013,0.013], + [25015,0.018], + [25017,0.014], + [25019,0.022], + [25021,0.01], + [25023,0.013], + [25025,0.014], + [25027,0.015], + [26001,0.029], + [26003,0.048], + [26005,0.019], + [26007,0.044], + [26009,0.046], + [26011,0.032], + [26013,0.072], + [26015,0.024], + [26017,0.025], + [26019,0.05], + [26021,0.05], + [26023,0.119], + [26025,0.024], + [26027,0.051], + [26029,0.044], + [26031,0.031], + [26033,0.038], + [26035,0.13], + [26037,0.019], + [26039,0.034], + [26041,0.066], + [26043,0.031], + [26045,0.027], + [26047,0.048], + [26049,0.029], + [26051,0.17], + [26053,0.05], + [26055,0.049], + [26057,0.047], + [26059,0.084], + [26061,0.038], + [26063,0.047], + [26065,0.035], + [26067,0.034], + [26069,0.068], + [26071,0.063], + [26073,0.074], + [26075,0.04], + [26077,0.033], + [26079,0.07], + [26081,0.035], + [26083,0.027], + [26085,0.084], + [26087,0.043], + [26089,0.053], + [26091,0.032], + [26093,0.018], + [26095,0.031], + [26097,0.097], + [26099,0.032], + [26101,0.049], + [26103,0.032], + [26105,0.044], + [26107,0.042], + [26109,0.042], + [26111,0.023], + [26113,0.067], + [26115,0.027], + [26117,0.064], + [26119,0.072], + [26121,0.021], + [26123,0.053], + [26125,0.028], + [26127,0.062], + [26129,0.07], + [26131,0.209], + [26133,0.115], + [26135,0.184], + [26137,0.034], + [26139,0.022], + [26141,0.075], + [26143,0.047], + [26145,0.027], + [26147,0.027], + [26149,0.081], + [26151,0.12], + [26153,0.077], + [26155,0.045], + [26157,0.025], + [26159,0.054], + [26161,0.022], + [26163,0.034], + [26165,0.066], + [27001,0.03], + [27003,0.03], + [27005,0.089], + [27007,0.109], + [27009,0.035], + [27011,0.074], + [27013,0.023], + [27015,0.045], + [27017,0.032], + [27019,0.036], + [27021,0.07], + [27023,0.056], + [27025,0.028], + [27027,0.046], + [27029,0.096], + [27031,0.066], + [27033,0.012], + [27035,0.037], + [27037,0.028], + [27039,0.027], + [27041,0.031], + [27043,0.034], + [27045,0.115], + [27047,0.022], + [27049,0.056], + [27051,0.035], + [27053,0.042], + [27055,0.029], + [27057,0.057], + [27059,0.032], + [27061,0.065], + [27063,0.017], + [27065,0.06], + [27067,0.041], + [27069,0.007], + [27071,0.039], + [27073,0.027], + [27075,0.038], + [27077,0.033], + [27079,0.033], + [27081,0.047], + [27083,0.057], + [27085,0.038], + [27087,0.187], + [27089,0.036], + [27091,0.035], + [27093,0.071], + [27095,0.051], + [27097,0.032], + [27099,0.049], + [27101,0.031], + [27103,0.019], + [27105,0.055], + [27107,0.059], + [27109,0.027], + [27111,0.057], + [27113,0.02], + [27115,0.059], + [27117,0.058], + [27119,0.066], + [27121,0.039], + [27123,0.04], + [27125,0.03], + [27127,0.066], + [27129,0.046], + [27131,0.061], + [27133,0.069], + [27135,0.029], + [27137,0.032], + [27139,0.033], + [27141,0.016], + [27143,0.031], + [27145,0.029], + [27147,0.02], + [27149,0.03], + [27151,0.031], + [27153,0.149], + [27155,0.057], + [27157,0.024], + [27159,0.046], + [27161,0.043], + [27163,0.034], + [27165,0.156], + [27167,0.072], + [27169,0.061], + [27171,0.022], + [27173,0.084], + [28001,0.077], + [28003,0.06], + [28005,0.065], + [28007,0.02], + [28009,0.155], + [28011,0.1], + [28013,0.049], + [28015,0], + [28017,0.043], + [28019,0.014], + [28021,0.028], + [28023,0.034], + [28025,0.074], + [28027,0.028], + [28029,0.056], + [28031,0.055], + [28033,0.06], + [28035,0.068], + [28037,0.089], + [28039,0.085], + [28041,0.063], + [28043,0.052], + [28045,0.108], + [28047,0.069], + [28049,0.043], + [28051,0.04], + [28053,0.06], + [28055,0.104], + [28057,0.047], + [28059,0.062], + [28061,0.035], + [28063,0.034], + [28065,0.084], + [28067,0.046], + [28069,0.013], + [28071,0.044], + [28073,0.056], + [28075,0.045], + [28077,0.085], + [28079,0.074], + [28081,0.035], + [28083,0.053], + [28085,0.029], + [28087,0.038], + [28089,0.046], + [28091,0.041], + [28093,0.048], + [28095,0.017], + [28097,0.02], + [28099,0.043], + [28101,0.069], + [28103,0.03], + [28105,0.075], + [28107,0.047], + [28109,0.089], + [28111,0.06], + [28113,0.054], + [28115,0.111], + [28117,0.058], + [28119,0.108], + [28121,0.065], + [28123,0.064], + [28125,0.029], + [28127,0.055], + [28129,0.046], + [28131,0.064], + [28133,0.054], + [28135,0.012], + [28137,0.061], + [28139,0.044], + [28141,0.03], + [28143,0.036], + [28145,0.03], + [28147,0.11], + [28149,0.08], + [28151,0.088], + [28153,0.028], + [28155,0.032], + [28157,0.011], + [28159,0.023], + [28161,0.026], + [28163,0.041], + [29001,0.052], + [29003,0.025], + [29005,0.037], + [29007,0.077], + [29009,0.103], + [29011,0.044], + [29013,0.065], + [29015,0.098], + [29017,0.019], + [29019,0.04], + [29021,0.056], + [29023,0.029], + [29025,0.067], + [29027,0.055], + [29029,0.092], + [29031,0.033], + [29033,0.088], + [29035,0.049], + [29037,0.044], + [29039,0.114], + [29041,0.017], + [29043,0.059], + [29045,0.142], + [29047,0.041], + [29049,0.027], + [29051,0.047], + [29053,0.043], + [29055,0.121], + [29057,0.123], + [29059,0.252], + [29061,0.227], + [29063,0.034], + [29065,0.119], + [29067,0.036], + [29069,0.063], + [29071,0.048], + [29073,0.022], + [29075,0.061], + [29077,0.074], + [29079,0.19], + [29081,0.169], + [29083,0.088], + [29085,0.155], + [29087,0.059], + [29089,0.048], + [29091,0.067], + [29093,0.058], + [29095,0.074], + [29097,0.074], + [29099,0.04], + [29101,0.044], + [29103,0.24], + [29105,0.053], + [29107,0.031], + [29109,0.101], + [29111,0.138], + [29113,0.05], + [29115,0.14], + [29117,0.077], + [29119,0.128], + [29121,0.093], + [29123,0.068], + [29125,0.121], + [29127,0.037], + [29129,0.242], + [29131,0.073], + [29133,0.067], + [29135,0.147], + [29137,0.103], + [29139,0.032], + [29141,0.275], + [29143,0.086], + [29145,0.098], + [29147,0.073], + [29149,0.117], + [29151,0.007], + [29153,0.067], + [29155,0.058], + [29157,0.037], + [29159,0.076], + [29161,0.047], + [29163,0.099], + [29165,0.038], + [29167,0.098], + [29169,0.045], + [29171,0.141], + [29173,0.032], + [29175,0.048], + [29177,0.053], + [29179,0.011], + [29181,0.033], + [29183,0.037], + [29185,0.155], + [29186,0.018], + [29187,0.05], + [29189,0.041], + [29195,0.03], + [29197,0.08], + [29199,0.388], + [29201,0.031], + [29203,0.102], + [29205,0.134], + [29207,0.056], + [29209,0.122], + [29211,0.118], + [29213,0.124], + [29215,0.155], + [29217,0.113], + [29219,0.066], + [29221,0.04], + [29223,0.062], + [29225,0.181], + [29227,0.08], + [29229,0.157], + [29510,0.062], + [30001,0.036], + [30003,0.35], + [30005,0.14], + [30007,0.154], + [30009,0.069], + [30011,0.211], + [30013,0.044], + [30015,0.14], + [30017,0.035], + [30019,0.015], + [30021,0.038], + [30023,0.029], + [30025,0.071], + [30027,0.054], + [30029,0.054], + [30031,0.056], + [30033,0.185], + [30035,0.362], + [30037,0.032], + [30039,0.021], + [30041,0.069], + [30043,0.087], + [30045,0.027], + [30047,0.118], + [30049,0.034], + [30051,0.118], + [30053,0.086], + [30055,0.091], + [30057,0.103], + [30059,0.111], + [30061,0.098], + [30063,0.034], + [30065,0.036], + [30067,0.058], + [30069,0.104], + [30071,0.224], + [30073,0.079], + [30075,0.07], + [30077,0.069], + [30079,0], + [30081,0.068], + [30083,0.147], + [30085,0.136], + [30087,0.201], + [30089,0.108], + [30091,0.051], + [30093,0.028], + [30095,0.086], + [30097,0.03], + [30099,0.063], + [30101,0.081], + [30103,0], + [30105,0.075], + [30107,0.089], + [30109,0], + [30111,0.074], + [31001,0.05], + [31003,0.062], + [31005,0.068], + [31007,0.028], + [31009,0.109], + [31011,0.024], + [31013,0.032], + [31015,0.181], + [31017,0.196], + [31019,0.045], + [31021,0.079], + [31023,0.032], + [31025,0.044], + [31027,0.04], + [31029,0.076], + [31031,0.118], + [31033,0.017], + [31035,0.088], + [31037,0.089], + [31039,0.038], + [31041,0.08], + [31043,0.116], + [31045,0.115], + [31047,0.109], + [31049,0.13], + [31051,0.06], + [31053,0.058], + [31055,0.049], + [31057,0.226], + [31059,0.131], + [31061,0.031], + [31063,0.087], + [31065,0.069], + [31067,0.016], + [31069,0.072], + [31071,0.032], + [31073,0.082], + [31075,0.138], + [31077,0.035], + [31079,0.079], + [31081,0.043], + [31083,0.087], + [31085,0.091], + [31087,0.05], + [31089,0.06], + [31091,0.063], + [31093,0.068], + [31095,0.018], + [31097,0.02], + [31099,0.056], + [31101,0.083], + [31103,0.034], + [31105,0.091], + [31107,0.109], + [31109,0.042], + [31111,0.047], + [31113,0.099], + [31115,0.048], + [31117,0], + [31119,0.054], + [31121,0.038], + [31123,0.067], + [31125,0.073], + [31127,0.019], + [31129,0.085], + [31131,0.06], + [31133,0.209], + [31135,0.027], + [31137,0.056], + [31139,0.021], + [31141,0.039], + [31143,0.091], + [31145,0.054], + [31147,0.022], + [31149,0.243], + [31151,0.06], + [31153,0.031], + [31155,0.023], + [31157,0.08], + [31159,0.049], + [31161,0.12], + [31163,0.04], + [31165,0.02], + [31167,0.055], + [31169,0.051], + [31171,0.066], + [31173,0.248], + [31175,0.082], + [31177,0.032], + [31179,0.03], + [31181,0.077], + [31183,0.018], + [31185,0.065], + [32001,0.107], + [32003,0.098], + [32005,0.119], + [32007,0.075], + [32009,0.144], + [32011,0.07], + [32013,0.153], + [32015,0.067], + [32017,0.183], + [32019,0.107], + [32021,0.155], + [32023,0.095], + [32027,0.167], + [32029,0.051], + [32031,0.088], + [32033,0.081], + [32510,0.088], + [33001,0.026], + [33003,0.065], + [33005,0.039], + [33007,0.035], + [33009,0.06], + [33011,0.025], + [33013,0.033], + [33015,0.031], + [33017,0.034], + [33019,0.027], + [34001,0.061], + [34003,0.051], + [34005,0.025], + [34007,0.033], + [34009,0.037], + [34011,0.058], + [34013,0.057], + [34015,0.028], + [34017,0.063], + [34019,0.025], + [34021,0.04], + [34023,0.038], + [34025,0.035], + [34027,0.029], + [34029,0.037], + [34031,0.054], + [34033,0.037], + [34035,0.036], + [34037,0.034], + [34039,0.056], + [34041,0.037], + [35001,0.047], + [35003,0.241], + [35005,0.071], + [35006,0.052], + [35007,0.067], + [35009,0.065], + [35011,0], + [35013,0.062], + [35015,0.086], + [35017,0.016], + [35019,0.061], + [35021,0.028], + [35023,0.049], + [35025,0.097], + [35027,0.112], + [35028,0.021], + [35029,0.036], + [35031,0.135], + [35033,0.076], + [35035,0.063], + [35037,0.004], + [35039,0.09], + [35041,0.067], + [35043,0.067], + [35045,0.093], + [35047,0.074], + [35049,0.083], + [35051,0.018], + [35053,0.139], + [35055,0.04], + [35057,0.022], + [35059,0.109], + [35061,0.044], + [36001,0.019], + [36003,0.099], + [36005,0.032], + [36007,0.03], + [36009,0.076], + [36011,0.052], + [36013,0.073], + [36015,0.038], + [36017,0.04], + [36019,0.016], + [36021,0.021], + [36023,0.041], + [36025,0.054], + [36027,0.025], + [36029,0.02], + [36031,0.034], + [36033,0.082], + [36035,0.054], + [36037,0.021], + [36039,0.033], + [36041,0.015], + [36043,0.052], + [36045,0.038], + [36047,0.028], + [36049,0.067], + [36051,0.015], + [36053,0.03], + [36055,0.022], + [36057,0.096], + [36059,0.027], + [36061,0.021], + [36063,0.024], + [36065,0.028], + [36067,0.03], + [36069,0.033], + [36071,0.023], + [36073,0.07], + [36075,0.04], + [36077,0.049], + [36079,0.029], + [36081,0.037], + [36083,0.02], + [36085,0.025], + [36087,0.038], + [36089,0.087], + [36091,0.015], + [36093,0.027], + [36095,0.029], + [36097,0.033], + [36099,0.121], + [36101,0.073], + [36103,0.027], + [36105,0.019], + [36107,0.036], + [36109,0.033], + [36111,0.031], + [36113,0.025], + [36115,0.04], + [36117,0.045], + [36119,0.026], + [36121,0.035], + [36123,0.355], + [37001,0.047], + [37003,0.026], + [37005,0.059], + [37007,0.043], + [37009,0.047], + [37011,0.054], + [37013,0.073], + [37015,0.05], + [37017,0.039], + [37019,0.054], + [37021,0.038], + [37023,0.045], + [37025,0.04], + [37027,0.046], + [37029,0.044], + [37031,0.057], + [37033,0.026], + [37035,0.037], + [37037,0.08], + [37039,0.067], + [37041,0.064], + [37043,0.088], + [37045,0.047], + [37047,0.059], + [37049,0.063], + [37051,0.045], + [37053,0.07], + [37055,0.097], + [37057,0.043], + [37059,0.081], + [37061,0.096], + [37063,0.068], + [37065,0.021], + [37067,0.041], + [37069,0.067], + [37071,0.066], + [37073,0.04], + [37075,0.117], + [37077,0.054], + [37079,0.062], + [37081,0.043], + [37083,0.062], + [37085,0.037], + [37087,0.061], + [37089,0.052], + [37091,0.048], + [37093,0.041], + [37095,0.103], + [37097,0.044], + [37099,0.067], + [37101,0.058], + [37103,0.049], + [37105,0.063], + [37107,0.049], + [37109,0.061], + [37111,0.043], + [37113,0.12], + [37115,0.058], + [37117,0.049], + [37119,0.063], + [37121,0.088], + [37123,0.06], + [37125,0.048], + [37127,0.048], + [37129,0.05], + [37131,0.072], + [37133,0.036], + [37135,0.051], + [37137,0.121], + [37139,0.055], + [37141,0.051], + [37143,0.037], + [37145,0.046], + [37147,0.049], + [37149,0.07], + [37151,0.092], + [37153,0.049], + [37155,0.042], + [37157,0.061], + [37159,0.041], + [37161,0.056], + [37163,0.095], + [37165,0.065], + [37167,0.053], + [37169,0.062], + [37171,0.066], + [37173,0.163], + [37175,0.091], + [37177,0], + [37179,0.047], + [37181,0.025], + [37183,0.046], + [37185,0.057], + [37187,0.031], + [37189,0.052], + [37191,0.06], + [37193,0.05], + [37195,0.061], + [37197,0.075], + [37199,0.044], + [38001,0.058], + [38003,0.059], + [38005,0.063], + [38007,0], + [38009,0.018], + [38011,0.032], + [38013,0.125], + [38015,0.063], + [38017,0.053], + [38019,0.032], + [38021,0.049], + [38023,0.009], + [38025,0.266], + [38027,0.066], + [38029,0.017], + [38031,0.093], + [38033,0.215], + [38035,0.069], + [38037,0.057], + [38039,0.027], + [38041,0.042], + [38043,0.258], + [38045,0.06], + [38047,0.011], + [38049,0.023], + [38051,0.039], + [38053,0.267], + [38055,0.07], + [38057,0.231], + [38059,0.064], + [38061,0.228], + [38063,0.017], + [38065,0.285], + [38067,0.07], + [38069,0.021], + [38071,0.051], + [38073,0.061], + [38075,0.026], + [38077,0.041], + [38079,0.199], + [38081,0.04], + [38083,0.055], + [38085,0.25], + [38087,0.087], + [38089,0.084], + [38091,0.023], + [38093,0.089], + [38095,0.134], + [38097,0.026], + [38099,0.049], + [38101,0.043], + [38103,0.04], + [38105,0.15], + [39001,0.051], + [39003,0.05], + [39005,0.111], + [39007,0.094], + [39009,0.032], + [39011,0.014], + [39013,0.034], + [39015,0.054], + [39017,0.034], + [39019,0.133], + [39021,0.03], + [39023,0.034], + [39025,0.032], + [39027,0.04], + [39029,0.063], + [39031,0.167], + [39033,0.037], + [39035,0.03], + [39037,0.037], + [39039,0.055], + [39041,0.022], + [39043,0.046], + [39045,0.028], + [39047,0.051], + [39049,0.048], + [39051,0.019], + [39053,0.093], + [39055,0.164], + [39057,0.034], + [39059,0.073], + [39061,0.037], + [39063,0.042], + [39065,0.091], + [39067,0.1], + [39069,0.022], + [39071,0.064], + [39073,0.044], + [39075,0.49], + [39077,0.065], + [39079,0.038], + [39081,0.026], + [39083,0.117], + [39085,0.031], + [39087,0.031], + [39089,0.046], + [39091,0.087], + [39093,0.022], + [39095,0.028], + [39097,0.044], + [39099,0.031], + [39101,0.039], + [39103,0.034], + [39105,0.042], + [39107,0.026], + [39109,0.041], + [39111,0.129], + [39113,0.041], + [39115,0.084], + [39117,0.046], + [39119,0.039], + [39121,0.081], + [39123,0.025], + [39125,0.044], + [39127,0.042], + [39129,0.08], + [39131,0.034], + [39133,0.037], + [39135,0.07], + [39137,0.015], + [39139,0.078], + [39141,0.054], + [39143,0.062], + [39145,0.031], + [39147,0.024], + [39149,0.022], + [39151,0.04], + [39153,0.041], + [39155,0.064], + [39157,0.097], + [39159,0.027], + [39161,0.057], + [39163,0.052], + [39165,0.028], + [39167,0.041], + [39169,0.176], + [39171,0.014], + [39173,0.024], + [39175,0.04], + [40001,0.18], + [40003,0.06], + [40005,0.164], + [40007,0.07], + [40009,0.1], + [40011,0.077], + [40013,0.11], + [40015,0.143], + [40017,0.059], + [40019,0.083], + [40021,0.167], + [40023,0.23], + [40025,0.128], + [40027,0.049], + [40029,0.268], + [40031,0.067], + [40033,0.066], + [40035,0.143], + [40037,0.061], + [40039,0.126], + [40041,0.13], + [40043,0.112], + [40045,0.035], + [40047,0.046], + [40049,0.107], + [40051,0.074], + [40053,0.036], + [40055,0.072], + [40057,0.078], + [40059,0.077], + [40061,0.12], + [40063,0.159], + [40065,0.064], + [40067,0.121], + [40069,0.15], + [40071,0.073], + [40073,0.025], + [40075,0.079], + [40077,0.192], + [40079,0.136], + [40081,0.086], + [40083,0.056], + [40085,0.113], + [40087,0.09], + [40089,0.141], + [40091,0.107], + [40093,0.092], + [40095,0.104], + [40097,0.106], + [40099,0.131], + [40101,0.145], + [40103,0.042], + [40105,0.134], + [40107,0.174], + [40109,0.074], + [40111,0.107], + [40113,0.089], + [40115,0.092], + [40117,0.107], + [40119,0.08], + [40121,0.113], + [40123,0.145], + [40125,0.084], + [40127,0.134], + [40129,0.084], + [40131,0.076], + [40133,0.152], + [40135,0.14], + [40137,0.062], + [40139,0.084], + [40141,0.064], + [40143,0.076], + [40145,0.067], + [40147,0.088], + [40149,0.047], + [40151,0.056], + [40153,0.097], + [41001,0.059], + [41003,0.026], + [41005,0.035], + [41007,0.048], + [41009,0.046], + [41011,0.057], + [41013,0.041], + [41015,0.041], + [41017,0.06], + [41019,0.055], + [41021,0.129], + [41023,0.06], + [41025,0.048], + [41027,0.044], + [41029,0.052], + [41031,0.101], + [41033,0.052], + [41035,0.049], + [41037,0.07], + [41039,0.047], + [41041,0.074], + [41043,0.052], + [41045,0.058], + [41047,0.051], + [41049,0.083], + [41051,0.031], + [41053,0.046], + [41055,0.139], + [41057,0.061], + [41059,0.058], + [41061,0.081], + [41063,0.014], + [41065,0.067], + [41067,0.036], + [41069,0.009], + [41071,0.026], + [42001,0.05], + [42003,0.024], + [42005,0.033], + [42007,0.018], + [42009,0.061], + [42011,0.054], + [42013,0.035], + [42015,0.064], + [42017,0.027], + [42019,0.02], + [42021,0.026], + [42023,0.065], + [42025,0.029], + [42027,0.055], + [42029,0.051], + [42031,0.092], + [42033,0.049], + [42035,0.13], + [42037,0.029], + [42039,0.116], + [42041,0.056], + [42043,0.041], + [42045,0.031], + [42047,0.022], + [42049,0.031], + [42051,0.024], + [42053,0.004], + [42055,0.113], + [42057,0.069], + [42059,0.04], + [42061,0.046], + [42063,0.148], + [42065,0.102], + [42067,0.167], + [42069,0.025], + [42071,0.16], + [42073,0.038], + [42075,0.11], + [42077,0.037], + [42079,0.034], + [42081,0.045], + [42083,0.044], + [42085,0.079], + [42087,0.149], + [42089,0.048], + [42091,0.025], + [42093,0.068], + [42095,0.03], + [42097,0.066], + [42099,0.107], + [42101,0.042], + [42103,0.03], + [42105,0.068], + [42107,0.045], + [42109,0.17], + [42111,0.058], + [42113,0.057], + [42115,0.059], + [42117,0.051], + [42119,0.118], + [42121,0.042], + [42123,0.068], + [42125,0.02], + [42127,0.035], + [42129,0.019], + [42131,0.031], + [42133,0.037], + [44001,0.02], + [44003,0.025], + [44005,0.045], + [44007,0.04], + [44009,0.013], + [45001,0.052], + [45003,0.047], + [45005,0.036], + [45007,0.061], + [45009,0.09], + [45011,0.077], + [45013,0.1], + [45015,0.056], + [45017,0.118], + [45019,0.051], + [45021,0.039], + [45023,0.069], + [45025,0.03], + [45027,0.023], + [45029,0.041], + [45031,0.044], + [45033,0.046], + [45035,0.06], + [45037,0.046], + [45039,0.077], + [45041,0.025], + [45043,0.085], + [45045,0.059], + [45047,0.08], + [45049,0.022], + [45051,0.076], + [45053,0.05], + [45055,0.041], + [45057,0.055], + [45059,0.056], + [45061,0.027], + [45063,0.047], + [45065,0.021], + [45067,0.005], + [45069,0.042], + [45071,0.021], + [45073,0.055], + [45075,0.033], + [45077,0.049], + [45079,0.036], + [45081,0.043], + [45083,0.057], + [45085,0.034], + [45087,0.033], + [45089,0.025], + [45091,0.039], + [46003,0.002], + [46005,0.028], + [46007,0.131], + [46009,0.038], + [46011,0.055], + [46013,0.045], + [46015,0.072], + [46017,0.313], + [46019,0.059], + [46021,0.012], + [46023,0.164], + [46025,0.06], + [46027,0.036], + [46029,0.033], + [46031,0.122], + [46033,0.099], + [46035,0.043], + [46037,0.122], + [46039,0.002], + [46041,0.176], + [46043,0.19], + [46045,0.022], + [46047,0.052], + [46049,0.131], + [46051,0.008], + [46053,0.061], + [46055,0.052], + [46057,0.046], + [46059,0.012], + [46061,0.039], + [46063,0.048], + [46065,0.043], + [46067,0.027], + [46069,0.033], + [46071,0.145], + [46073,0.023], + [46075,0.017], + [46077,0.052], + [46079,0.023], + [46081,0.088], + [46083,0.024], + [46085,0.134], + [46087,0.059], + [46089,0.019], + [46091,0.052], + [46093,0.075], + [46095,0.201], + [46097,0.115], + [46099,0.045], + [46101,0.089], + [46102,null], + [46103,0.065], + [46105,0.143], + [46107,0.029], + [46109,0.188], + [46111,0.03], + [46115,0.047], + [46117,0.024], + [46119,0.104], + [46121,0.123], + [46123,0.058], + [46125,0.036], + [46127,0.055], + [46129,0.055], + [46135,0.017], + [46137,0.067], + [47001,0.02], + [47003,0.063], + [47005,0.044], + [47007,0.07], + [47009,0.049], + [47011,0.05], + [47013,0.046], + [47015,0.029], + [47017,0.031], + [47019,0.033], + [47021,0.032], + [47023,0.044], + [47025,0.022], + [47027,0.045], + [47029,0.059], + [47031,0.055], + [47033,0.058], + [47035,0.04], + [47037,0.069], + [47039,0.044], + [47041,0.036], + [47043,0.056], + [47045,0.037], + [47047,0.023], + [47049,0.025], + [47051,0.014], + [47053,0.024], + [47055,0.051], + [47057,0.034], + [47059,0.037], + [47061,0.05], + [47063,0.058], + [47065,0.034], + [47067,0.014], + [47069,0.036], + [47071,0.068], + [47073,0.028], + [47075,0.048], + [47077,0.009], + [47079,0.048], + [47081,0.032], + [47083,0.031], + [47085,0.032], + [47087,0.104], + [47089,0.033], + [47091,0.055], + [47093,0.035], + [47095,0.047], + [47097,0.019], + [47099,0.142], + [47101,0.044], + [47103,0.049], + [47105,0.05], + [47107,0.035], + [47109,0.066], + [47111,0.016], + [47113,0.038], + [47115,0.034], + [47117,0.051], + [47119,0.054], + [47121,0.082], + [47123,0.055], + [47125,0.036], + [47127,0.09], + [47129,0.052], + [47131,0.054], + [47133,0.035], + [47135,0.147], + [47137,0.031], + [47139,0.049], + [47141,0.04], + [47143,0.046], + [47145,0.034], + [47147,0.028], + [47149,0.055], + [47151,0.027], + [47153,0.057], + [47155,0.08], + [47157,0.059], + [47159,0.03], + [47161,0.057], + [47163,0.042], + [47165,0.044], + [47167,0.024], + [47169,0.044], + [47171,0.02], + [47173,0.063], + [47175,0.044], + [47177,0.061], + [47179,0.051], + [47181,0.057], + [47183,0.055], + [47185,0.034], + [47187,0.037], + [47189,0.04], + [48001,0.094], + [48003,0.136], + [48005,0.136], + [48007,0.18], + [48009,0.064], + [48011,0.009], + [48013,0.103], + [48015,0.096], + [48017,0.225], + [48019,0.141], + [48021,0.124], + [48023,0.059], + [48025,0.14], + [48027,0.061], + [48029,0.082], + [48031,0.215], + [48033,0.047], + [48035,0.162], + [48037,0.081], + [48039,0.085], + [48041,0.09], + [48043,0.101], + [48045,0.095], + [48047,0.024], + [48049,0.056], + [48051,0.161], + [48053,0.089], + [48055,0.126], + [48057,0.152], + [48059,0.208], + [48061,0.147], + [48063,0.085], + [48065,0.044], + [48067,0.099], + [48069,0.227], + [48071,0.115], + [48073,0.107], + [48075,0.037], + [48077,0.145], + [48079,0.281], + [48081,0.12], + [48083,0.177], + [48085,0.078], + [48087,0.13], + [48089,0.099], + [48091,0.106], + [48093,0.227], + [48095,0.115], + [48097,0.114], + [48099,0.06], + [48101,0.027], + [48103,0.105], + [48105,0.162], + [48107,0.118], + [48109,0.141], + [48111,0.346], + [48113,0.135], + [48115,0.128], + [48117,0.096], + [48119,0.058], + [48121,0.079], + [48123,0.059], + [48125,0.163], + [48127,0.117], + [48129,0.054], + [48131,0.118], + [48133,0.136], + [48135,0.186], + [48137,0.141], + [48139,0.119], + [48141,0.105], + [48143,0.159], + [48145,0.125], + [48147,0.105], + [48149,0.101], + [48151,0.158], + [48153,0.178], + [48155,0.137], + [48157,0.072], + [48159,0.146], + [48161,0.141], + [48163,0.145], + [48165,0.317], + [48167,0.081], + [48169,0.05], + [48171,0.181], + [48173,0.062], + [48175,0.107], + [48177,0.135], + [48179,0.146], + [48181,0.11], + [48183,0.116], + [48185,0.11], + [48187,0.082], + [48189,0.101], + [48191,0.114], + [48193,0.084], + [48195,0.16], + [48197,0.126], + [48199,0.094], + [48201,0.121], + [48203,0.111], + [48205,0.116], + [48207,0.053], + [48209,0.089], + [48211,0.31], + [48213,0.133], + [48215,0.155], + [48217,0.128], + [48219,0.117], + [48221,0.16], + [48223,0.139], + [48225,0.046], + [48227,0.126], + [48229,0.293], + [48231,0.12], + [48233,0.117], + [48235,0.254], + [48237,0.15], + [48239,0.125], + [48241,0.125], + [48243,0.163], + [48245,0.113], + [48247,0.165], + [48249,0.094], + [48251,0.133], + [48253,0.107], + [48255,0.113], + [48257,0.096], + [48259,0.065], + [48261,0.303], + [48263,0], + [48265,0.114], + [48267,0.191], + [48269,0.055], + [48271,0.073], + [48273,0.074], + [48275,0.11], + [48277,0.11], + [48279,0.092], + [48281,0.109], + [48283,0.401], + [48285,0.088], + [48287,0.102], + [48289,0.068], + [48291,0.111], + [48293,0.122], + [48295,0.181], + [48297,0.151], + [48299,0.122], + [48301,0.571], + [48303,0.097], + [48305,0.131], + [48307,0.117], + [48309,0.096], + [48311,0.1], + [48313,0.099], + [48315,0.175], + [48317,0.108], + [48319,0.077], + [48321,0.093], + [48323,0.202], + [48325,0.075], + [48327,0.251], + [48329,0.177], + [48331,0.074], + [48333,0.153], + [48335,0.119], + [48337,0.175], + [48339,0.097], + [48341,0.105], + [48343,0.109], + [48345,0.043], + [48347,0.133], + [48349,0.107], + [48351,0.036], + [48353,0.107], + [48355,0.093], + [48357,0.195], + [48359,0.035], + [48361,0.087], + [48363,0.168], + [48365,0.106], + [48367,0.097], + [48369,0.116], + [48371,0.14], + [48373,0.111], + [48375,0.128], + [48377,0.409], + [48379,0.136], + [48381,0.078], + [48383,0.203], + [48385,0.224], + [48387,0.109], + [48389,0.152], + [48391,0.111], + [48393,0.034], + [48395,0.099], + [48397,0.072], + [48399,0.095], + [48401,0.135], + [48403,0.102], + [48405,0.056], + [48407,0.083], + [48409,0.122], + [48411,0.09], + [48413,0.289], + [48415,0.125], + [48417,0.088], + [48419,0.174], + [48421,0.184], + [48423,0.113], + [48425,0.067], + [48427,0.178], + [48429,0.194], + [48431,0.401], + [48433,0.166], + [48435,0.095], + [48437,0.087], + [48439,0.105], + [48441,0.079], + [48443,0.14], + [48445,0.188], + [48447,0.213], + [48449,0.117], + [48451,0.115], + [48453,0.091], + [48455,0.183], + [48457,0.074], + [48459,0.094], + [48461,0.107], + [48463,0.09], + [48465,0.149], + [48467,0.125], + [48469,0.101], + [48471,0.098], + [48473,0.105], + [48475,0.135], + [48477,0.119], + [48479,0.134], + [48481,0.112], + [48483,0.167], + [48485,0.091], + [48487,0.14], + [48489,0.129], + [48491,0.066], + [48493,0.085], + [48495,0.209], + [48497,0.149], + [48499,0.105], + [48501,0.233], + [48503,0.172], + [48505,0.153], + [48507,0.043], + [49001,0.154], + [49003,0.053], + [49005,0.058], + [49007,0.054], + [49009,0], + [49011,0.045], + [49013,0.12], + [49015,0.084], + [49017,0.141], + [49019,0.204], + [49021,0.078], + [49023,0.103], + [49025,0.118], + [49027,0.105], + [49029,0.047], + [49031,0.211], + [49033,0.119], + [49035,0.094], + [49037,0.144], + [49039,0.097], + [49041,0.092], + [49043,0.083], + [49045,0.052], + [49047,0.095], + [49049,0.066], + [49051,0.104], + [49053,0.15], + [49055,0.191], + [49057,0.07], + [50001,0.018], + [50003,0.016], + [50005,0.017], + [50007,0.022], + [50009,0.008], + [50011,0.015], + [50013,0.023], + [50015,0.02], + [50017,0.023], + [50019,0.024], + [50021,0.035], + [50023,0.011], + [50025,0.016], + [50027,0.022], + [51001,0.084], + [51003,0.049], + [51005,0.036], + [51007,0.141], + [51009,0.091], + [51011,0.041], + [51013,0.04], + [51015,0.055], + [51017,0.021], + [51019,0.039], + [51021,0.066], + [51023,0.015], + [51025,0.004], + [51027,0.064], + [51029,0.039], + [51031,0.059], + [51033,0.031], + [51035,0.114], + [51036,0.04], + [51037,0.066], + [51041,0.044], + [51043,0.147], + [51045,0.113], + [51047,0.059], + [51049,0.082], + [51051,0.035], + [51053,0.09], + [51057,0.076], + [51059,0.053], + [51061,0.048], + [51063,0.005], + [51065,0.017], + [51067,0.092], + [51069,0.033], + [51071,0.058], + [51073,0.058], + [51075,0.016], + [51077,0.081], + [51079,0.149], + [51081,0.116], + [51083,0.09], + [51085,0.033], + [51087,0.047], + [51089,0.049], + [51091,0.113], + [51093,0.019], + [51095,0.05], + [51097,0.145], + [51099,0.041], + [51101,0.032], + [51103,0.065], + [51105,0.051], + [51107,0.044], + [51109,0.081], + [51111,0.089], + [51113,0.092], + [51115,0.009], + [51117,0.055], + [51119,0.038], + [51121,0.03], + [51125,0.085], + [51127,0.011], + [51131,0.074], + [51133,0.118], + [51135,0.026], + [51137,0.116], + [51139,0.07], + [51141,0.025], + [51143,0.027], + [51145,0.073], + [51147,0.067], + [51149,0.046], + [51153,0.073], + [51155,0.04], + [51157,0.091], + [51159,0.024], + [51161,0.03], + [51163,0.098], + [51165,0.122], + [51167,0.026], + [51169,0.045], + [51171,0.06], + [51173,0.03], + [51175,0.046], + [51177,0.05], + [51179,0.047], + [51181,0.064], + [51183,0.005], + [51185,0.059], + [51187,0.051], + [51191,0.065], + [51193,0.049], + [51195,0.059], + [51197,0.105], + [51199,0.044], + [51510,0.079], + [51520,0.049], + [51530,0.081], + [51540,0.027], + [51550,0.039], + [51570,0.056], + [51580,0.087], + [51590,0.063], + [51595,0.22], + [51600,0.069], + [51610,0.029], + [51620,0.008], + [51630,0.06], + [51640,0.042], + [51650,0.046], + [51660,0.124], + [51670,0.041], + [51678,0.039], + [51680,0.083], + [51683,0.094], + [51685,0.14], + [51690,0.064], + [51700,0.057], + [51710,0.062], + [51720,0], + [51730,0.063], + [51735,0.021], + [51740,0.045], + [51750,0.03], + [51760,0.063], + [51770,0.062], + [51775,0.037], + [51790,0.022], + [51800,0.031], + [51810,0.039], + [51820,0.122], + [51830,0.005], + [51840,0.073], + [53001,0.085], + [53003,0.058], + [53005,0.041], + [53007,0.031], + [53009,0.079], + [53011,0.037], + [53013,0.015], + [53015,0.028], + [53017,0.043], + [53019,0.054], + [53021,0.039], + [53023,0.036], + [53025,0.064], + [53027,0.063], + [53029,0.042], + [53031,0.07], + [53033,0.028], + [53035,0.034], + [53037,0.047], + [53039,0.019], + [53041,0.063], + [53043,0.059], + [53045,0.069], + [53047,0.062], + [53049,0.065], + [53051,0.064], + [53053,0.036], + [53055,0.061], + [53057,0.034], + [53059,0.01], + [53061,0.043], + [53063,0.035], + [53065,0.056], + [53067,0.038], + [53069,0.104], + [53071,0.036], + [53073,0.045], + [53075,0.028], + [53077,0.056], + [54001,0.041], + [54003,0.044], + [54005,0.019], + [54007,0.027], + [54009,0.044], + [54011,0.028], + [54013,0.03], + [54015,0.005], + [54017,0.034], + [54019,0.02], + [54021,0.109], + [54023,0.043], + [54025,0.02], + [54027,0.032], + [54029,0.041], + [54031,0.019], + [54033,0.029], + [54035,0.023], + [54037,0.037], + [54039,0.028], + [54041,0.03], + [54043,0.013], + [54045,0.026], + [54047,0.062], + [54049,0.035], + [54051,0.043], + [54053,0.021], + [54055,0.015], + [54057,0.041], + [54059,0.015], + [54061,0.027], + [54063,0.068], + [54065,0.034], + [54067,0], + [54069,0.024], + [54071,0.034], + [54073,0.015], + [54075,0.02], + [54077,0.044], + [54079,0.032], + [54081,0.061], + [54083,0.041], + [54085,0.066], + [54087,0.02], + [54089,0.034], + [54091,0.027], + [54093,0.015], + [54095,0.055], + [54097,0.036], + [54099,0.067], + [54101,0.033], + [54103,0.028], + [54105,0.013], + [54107,0.019], + [54109,0.109], + [55001,0.036], + [55003,0.026], + [55005,0.054], + [55007,0.046], + [55009,0.037], + [55011,0.05], + [55013,0.044], + [55015,0.02], + [55017,0.042], + [55019,0.339], + [55021,0.044], + [55023,0.056], + [55025,0.024], + [55027,0.02], + [55029,0.014], + [55031,0.023], + [55033,0.06], + [55035,0.056], + [55037,0.019], + [55039,0.026], + [55041,0.135], + [55043,0.074], + [55045,0.034], + [55047,0.147], + [55049,0.031], + [55051,0.041], + [55053,0.111], + [55055,0.033], + [55057,0.032], + [55059,0.039], + [55061,0.017], + [55063,0.033], + [55065,0.123], + [55067,0.047], + [55069,0.038], + [55071,0.027], + [55073,0.055], + [55075,0.027], + [55077,0.057], + [55078,0.242], + [55079,0.032], + [55081,0.096], + [55083,0.044], + [55085,0.027], + [55087,0.035], + [55089,0.015], + [55091,0.11], + [55093,0.032], + [55095,0.056], + [55097,0.026], + [55099,0.028], + [55101,0.037], + [55103,0.082], + [55105,0.035], + [55107,0.1], + [55109,0.034], + [55111,0.068], + [55113,0.059], + [55115,0.059], + [55117,0.026], + [55119,0.11], + [55121,0.077], + [55123,0.271], + [55125,0.058], + [55127,0.049], + [55129,0.038], + [55131,0.029], + [55133,0.02], + [55135,0.057], + [55137,0.073], + [55139,0.037], + [55141,0.029], + [56001,0.044], + [56003,0.127], + [56005,0.043], + [56007,0.095], + [56009,0.033], + [56011,0.077], + [56013,0.184], + [56015,0.112], + [56017,0.104], + [56019,0.048], + [56021,0.037], + [56023,0.074], + [56025,0.069], + [56027,0.177], + [56029,0.084], + [56031,0.048], + [56033,0.046], + [56035,0.093], + [56037,0.075], + [56039,0.052], + [56041,0.081], + [56043,0.115], + [56045,0.108] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-under19-2019.json b/data/regional/united-states/health/insurance/us-health-uninsured-under19-2019.json new file mode 100644 index 0000000..64f28ea --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-under19-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Under 19 Uninsured", + "description" : "Percent of the population under the age of 19 that are uninsured.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.uninsured.under19.2019"], + [1001,0.017], + [1003,0.038], + [1005,0.033], + [1007,0.02], + [1009,0.059], + [1011,0.01], + [1013,0.023], + [1015,0.024], + [1017,0.054], + [1019,0.008], + [1021,0.048], + [1023,0.015], + [1025,0.014], + [1027,0.006], + [1029,0.053], + [1031,0.037], + [1033,0.023], + [1035,0.054], + [1037,0.05], + [1039,0.06], + [1041,0.031], + [1043,0.025], + [1045,0.038], + [1047,0.021], + [1049,0.027], + [1051,0.031], + [1053,0.072], + [1055,0.04], + [1057,0.024], + [1059,0.095], + [1061,0.017], + [1063,0.022], + [1065,0.028], + [1067,0.011], + [1069,0.022], + [1071,0.014], + [1073,0.036], + [1075,0.133], + [1077,0.032], + [1079,0.034], + [1081,0.021], + [1083,0.032], + [1085,0.012], + [1087,0.01], + [1089,0.033], + [1091,0.003], + [1093,0.012], + [1095,0.026], + [1097,0.033], + [1099,0.034], + [1101,0.028], + [1103,0.034], + [1105,0.012], + [1107,0.054], + [1109,0.029], + [1111,0.024], + [1113,0.021], + [1115,0.015], + [1117,0.026], + [1119,0.025], + [1121,0.019], + [1123,0.028], + [1125,0.023], + [1127,0.076], + [1129,0.038], + [1131,0.005], + [1133,0.078], + [2013,0.331], + [2016,0.099], + [2020,0.082], + [2050,0.105], + [2060,0.124], + [2068,0.163], + [2070,0.119], + [2090,0.062], + [2100,0.13], + [2105,0.193], + [2110,0.079], + [2122,0.142], + [2130,0.096], + [2150,0.14], + [2158,0.096], + [2164,0.207], + [2170,0.124], + [2180,0.12], + [2185,0.215], + [2188,0.154], + [2195,0.079], + [2198,0.207], + [2220,0.167], + [2230,0.03], + [2240,0.099], + [2261,0.201], + [2275,0.195], + [2282,0.234], + [2290,0.146], + [4001,0.243], + [4003,0.051], + [4005,0.083], + [4007,0.107], + [4009,0.045], + [4011,0.025], + [4012,0.196], + [4013,0.082], + [4015,0.074], + [4017,0.109], + [4019,0.071], + [4021,0.075], + [4023,0.043], + [4025,0.091], + [4027,0.102], + [5001,0.027], + [5003,0.014], + [5005,0.028], + [5007,0.049], + [5009,0.038], + [5011,0.046], + [5013,0.054], + [5015,0.053], + [5017,0.02], + [5019,0.035], + [5021,0.029], + [5023,0.045], + [5025,0.007], + [5027,0.019], + [5029,0.023], + [5031,0.057], + [5033,0.054], + [5035,0.041], + [5037,0.042], + [5039,0.069], + [5041,0.035], + [5043,0.045], + [5045,0.043], + [5047,0.032], + [5049,0.183], + [5051,0.063], + [5053,0.032], + [5055,0.033], + [5057,0.065], + [5059,0.011], + [5061,0.062], + [5063,0.049], + [5065,0.043], + [5067,0.054], + [5069,0.04], + [5071,0.055], + [5073,0.049], + [5075,0.034], + [5077,0.008], + [5079,0.07], + [5081,0.01], + [5083,0.026], + [5085,0.043], + [5087,0.039], + [5089,0.018], + [5091,0.031], + [5093,0.045], + [5095,0.048], + [5097,0.046], + [5099,0.023], + [5101,0.06], + [5103,0.029], + [5105,0.022], + [5107,0.084], + [5109,0.056], + [5111,0.058], + [5113,0.042], + [5115,0.051], + [5117,0.058], + [5119,0.046], + [5121,0.019], + [5123,0.034], + [5125,0.042], + [5127,0.124], + [5129,0.017], + [5131,0.057], + [5133,0.061], + [5135,0.015], + [5137,0.039], + [5139,0.04], + [5141,0.054], + [5143,0.084], + [5145,0.045], + [5147,0.032], + [5149,0.032], + [6001,0.021], + [6003,0.037], + [6005,0.034], + [6007,0.032], + [6009,0.007], + [6011,0.03], + [6013,0.026], + [6015,0.055], + [6017,0.03], + [6019,0.029], + [6021,0.045], + [6023,0.059], + [6025,0.04], + [6027,0.029], + [6029,0.032], + [6031,0.031], + [6033,0.016], + [6035,0.037], + [6037,0.039], + [6039,0.039], + [6041,0.013], + [6043,0.014], + [6045,0.046], + [6047,0.033], + [6049,0.219], + [6051,0.099], + [6053,0.033], + [6055,0.034], + [6057,0.045], + [6059,0.033], + [6061,0.027], + [6063,0.026], + [6065,0.04], + [6067,0.025], + [6069,0.025], + [6071,0.039], + [6073,0.038], + [6075,0.015], + [6077,0.025], + [6079,0.038], + [6081,0.018], + [6083,0.042], + [6085,0.019], + [6087,0.023], + [6089,0.035], + [6091,0], + [6093,0.035], + [6095,0.022], + [6097,0.032], + [6099,0.022], + [6101,0.042], + [6103,0.02], + [6105,0.072], + [6107,0.024], + [6109,0.061], + [6111,0.036], + [6113,0.014], + [6115,0.032], + [8001,0.046], + [8003,0.074], + [8005,0.052], + [8007,0.074], + [8009,0.046], + [8011,0.037], + [8013,0.021], + [8014,0.02], + [8015,0.067], + [8017,0.109], + [8019,0.132], + [8021,0.082], + [8023,0.056], + [8025,0.053], + [8027,0.312], + [8029,0.043], + [8031,0.042], + [8033,0], + [8035,0.018], + [8037,0.106], + [8039,0.036], + [8041,0.04], + [8043,0.037], + [8045,0.08], + [8047,0.024], + [8049,0.034], + [8051,0.028], + [8053,0], + [8055,0.122], + [8057,0.07], + [8059,0.035], + [8061,0.025], + [8063,0.089], + [8065,0.106], + [8067,0.07], + [8069,0.047], + [8071,0.053], + [8073,0.11], + [8075,0.052], + [8077,0.071], + [8079,0.041], + [8081,0.142], + [8083,0.126], + [8085,0.076], + [8087,0.081], + [8089,0.098], + [8091,0.132], + [8093,0.055], + [8095,0.128], + [8097,0.055], + [8099,0.042], + [8101,0.027], + [8103,0.053], + [8105,0.123], + [8107,0.038], + [8109,0.074], + [8111,0], + [8113,0.04], + [8115,0.014], + [8117,0.111], + [8119,0.068], + [8121,0.021], + [8123,0.046], + [8125,0.058], + [9001,0.056], + [9003,0.018], + [9005,0.025], + [9007,0.013], + [9009,0.022], + [9011,0.015], + [9013,0.026], + [9015,0.018], + [10001,0.059], + [10003,0.028], + [10005,0.04], + [11001,0.02], + [12001,0.044], + [12003,0.086], + [12005,0.085], + [12007,0.054], + [12009,0.057], + [12011,0.083], + [12013,0.137], + [12015,0.089], + [12017,0.077], + [12019,0.079], + [12021,0.113], + [12023,0.066], + [12027,0.102], + [12029,0.066], + [12031,0.067], + [12033,0.057], + [12035,0.15], + [12037,0.09], + [12039,0.068], + [12041,0.163], + [12043,0.265], + [12045,0.044], + [12047,0.057], + [12049,0.033], + [12051,0.15], + [12053,0.079], + [12055,0.047], + [12057,0.063], + [12059,0.099], + [12061,0.058], + [12063,0.089], + [12065,0.005], + [12067,0.074], + [12069,0.055], + [12071,0.093], + [12073,0.047], + [12075,0.068], + [12077,0.064], + [12079,0.067], + [12081,0.075], + [12083,0.053], + [12085,0.074], + [12086,0.072], + [12087,0.112], + [12089,0.078], + [12091,0.074], + [12093,0.098], + [12095,0.071], + [12097,0.092], + [12099,0.082], + [12101,0.054], + [12103,0.065], + [12105,0.072], + [12107,0.053], + [12109,0.048], + [12111,0.089], + [12113,0.042], + [12115,0.092], + [12117,0.053], + [12119,0.131], + [12121,0.059], + [12123,0.053], + [12125,0.066], + [12127,0.064], + [12129,0.022], + [12131,0.062], + [12133,0.051], + [13001,0.068], + [13003,0.068], + [13005,0.143], + [13007,0.022], + [13009,0.068], + [13011,0.102], + [13013,0.077], + [13015,0.087], + [13017,0.063], + [13019,0.103], + [13021,0.056], + [13023,0.051], + [13025,0.12], + [13027,0.061], + [13029,0.061], + [13031,0.059], + [13033,0.052], + [13035,0.031], + [13037,0.105], + [13039,0.052], + [13043,0.082], + [13045,0.06], + [13047,0.073], + [13049,0.11], + [13051,0.072], + [13053,0.01], + [13055,0.063], + [13057,0.065], + [13059,0.073], + [13061,0.035], + [13063,0.1], + [13065,0.011], + [13067,0.082], + [13069,0.119], + [13071,0.088], + [13073,0.038], + [13075,0.057], + [13077,0.05], + [13079,0.08], + [13081,0.055], + [13083,0.076], + [13085,0.084], + [13087,0.064], + [13089,0.077], + [13091,0.041], + [13093,0.092], + [13095,0.052], + [13097,0.072], + [13099,0.015], + [13101,0.19], + [13103,0.024], + [13105,0.093], + [13107,0.059], + [13109,0.045], + [13111,0.115], + [13113,0.057], + [13115,0.054], + [13117,0.064], + [13119,0.104], + [13121,0.054], + [13123,0.154], + [13125,0.004], + [13127,0.072], + [13129,0.063], + [13131,0.099], + [13133,0.075], + [13135,0.098], + [13137,0.127], + [13139,0.101], + [13141,0.049], + [13143,0.055], + [13145,0.032], + [13147,0.053], + [13149,0.019], + [13151,0.065], + [13153,0.071], + [13155,0.127], + [13157,0.069], + [13159,0.047], + [13161,0.085], + [13163,0.084], + [13165,0.023], + [13167,0.065], + [13169,0.05], + [13171,0.098], + [13173,0.137], + [13175,0.037], + [13177,0.04], + [13179,0.049], + [13181,0.035], + [13183,0.054], + [13185,0.061], + [13187,0.083], + [13189,0.065], + [13191,0.126], + [13193,0.129], + [13195,0.078], + [13197,0.018], + [13199,0.102], + [13201,0.083], + [13205,0.067], + [13207,0.09], + [13209,0.075], + [13211,0.048], + [13213,0.089], + [13215,0.038], + [13217,0.065], + [13219,0.05], + [13221,0.049], + [13223,0.064], + [13225,0.046], + [13227,0.049], + [13229,0.081], + [13231,0.078], + [13233,0.124], + [13235,0.045], + [13237,0.074], + [13239,0.205], + [13241,0.135], + [13243,0.056], + [13245,0.059], + [13247,0.105], + [13249,0.07], + [13251,0.096], + [13253,0.055], + [13255,0.076], + [13257,0.078], + [13259,0.028], + [13261,0.033], + [13263,0.318], + [13265,0.073], + [13267,0.056], + [13269,0.064], + [13271,0.009], + [13273,0.019], + [13275,0.102], + [13277,0.13], + [13279,0.079], + [13281,0.093], + [13283,0.165], + [13285,0.061], + [13287,0.066], + [13289,0.018], + [13291,0.088], + [13293,0.064], + [13295,0.077], + [13297,0.058], + [13299,0.082], + [13301,0.023], + [13303,0.038], + [13305,0.062], + [13307,0.053], + [13309,0.046], + [13311,0.054], + [13313,0.09], + [13315,0.1], + [13317,0.135], + [13319,0.028], + [13321,0.051], + [15001,0.026], + [15003,0.02], + [15005,0], + [15007,0.03], + [15009,0.033], + [16001,0.043], + [16003,0.065], + [16005,0.033], + [16007,0.014], + [16009,0.085], + [16011,0.055], + [16013,0.032], + [16015,0.045], + [16017,0.077], + [16019,0.03], + [16021,0.159], + [16023,0.013], + [16025,0.037], + [16027,0.05], + [16029,0.036], + [16031,0.06], + [16033,0.093], + [16035,0.078], + [16037,0.007], + [16039,0.073], + [16041,0.079], + [16043,0.053], + [16045,0.121], + [16047,0.054], + [16049,0.07], + [16051,0.045], + [16053,0.091], + [16055,0.053], + [16057,0.036], + [16059,0.092], + [16061,0.131], + [16063,0.083], + [16065,0.024], + [16067,0.07], + [16069,0.077], + [16071,0.048], + [16073,0.106], + [16075,0.069], + [16077,0.067], + [16079,0.045], + [16081,0.049], + [16083,0.066], + [16085,0.023], + [16087,0.086], + [17001,0.042], + [17003,0.025], + [17005,0.056], + [17007,0.028], + [17009,0.05], + [17011,0.033], + [17013,0.004], + [17015,0.035], + [17017,0.031], + [17019,0.015], + [17021,0.024], + [17023,0.033], + [17025,0.038], + [17027,0.028], + [17029,0.038], + [17031,0.034], + [17033,0.052], + [17035,0.027], + [17037,0.015], + [17039,0.006], + [17041,0.182], + [17043,0.033], + [17045,0.048], + [17047,0.031], + [17049,0.028], + [17051,0.059], + [17053,0.034], + [17055,0.018], + [17057,0.033], + [17059,0.007], + [17061,0.032], + [17063,0.029], + [17065,0.054], + [17067,0.007], + [17069,0], + [17071,0.031], + [17073,0.02], + [17075,0.042], + [17077,0.04], + [17079,0.037], + [17081,0.047], + [17083,0.016], + [17085,0.039], + [17087,0.026], + [17089,0.034], + [17091,0.017], + [17093,0.033], + [17095,0.018], + [17097,0.032], + [17099,0.021], + [17101,0.036], + [17103,0.016], + [17105,0.04], + [17107,0.028], + [17109,0.021], + [17111,0.027], + [17113,0.028], + [17115,0.026], + [17117,0.017], + [17119,0.03], + [17121,0.031], + [17123,0.032], + [17125,0.011], + [17127,0.052], + [17129,0], + [17131,0.012], + [17133,0.018], + [17135,0.007], + [17137,0.007], + [17139,0.216], + [17141,0.024], + [17143,0.031], + [17145,0.015], + [17147,0.026], + [17149,0.029], + [17151,0], + [17153,0.019], + [17155,0.01], + [17157,0.037], + [17159,0.019], + [17161,0.033], + [17163,0.033], + [17165,0.04], + [17167,0.017], + [17169,0.014], + [17171,0], + [17173,0.008], + [17175,0.042], + [17177,0.034], + [17179,0.021], + [17181,0.043], + [17183,0.033], + [17185,0.032], + [17187,0.01], + [17189,0.012], + [17191,0.101], + [17193,0.021], + [17195,0.025], + [17197,0.02], + [17199,0.022], + [17201,0.029], + [17203,0.035], + [18001,0.29], + [18003,0.062], + [18005,0.079], + [18007,0.074], + [18009,0.031], + [18011,0.039], + [18013,0.08], + [18015,0.085], + [18017,0.067], + [18019,0.045], + [18021,0.028], + [18023,0.073], + [18025,0.03], + [18027,0.364], + [18029,0.028], + [18031,0.044], + [18033,0.094], + [18035,0.047], + [18037,0.024], + [18039,0.146], + [18041,0.058], + [18043,0.029], + [18045,0.05], + [18047,0.066], + [18049,0.138], + [18051,0.049], + [18053,0.045], + [18055,0.05], + [18057,0.034], + [18059,0.054], + [18061,0.037], + [18063,0.05], + [18065,0.032], + [18067,0.048], + [18069,0.061], + [18071,0.046], + [18073,0.057], + [18075,0.053], + [18077,0.038], + [18079,0.059], + [18081,0.066], + [18083,0.067], + [18085,0.094], + [18087,0.558], + [18089,0.04], + [18091,0.045], + [18093,0.066], + [18095,0.053], + [18097,0.061], + [18099,0.141], + [18101,0.057], + [18103,0.05], + [18105,0.052], + [18107,0.051], + [18109,0.055], + [18111,0.062], + [18113,0.088], + [18115,0.022], + [18117,0.051], + [18119,0.098], + [18121,0.194], + [18123,0.018], + [18125,0.014], + [18127,0.027], + [18129,0.012], + [18131,0.036], + [18133,0.038], + [18135,0.061], + [18137,0.076], + [18139,0.096], + [18141,0.051], + [18143,0.043], + [18145,0.038], + [18147,0.015], + [18149,0.023], + [18151,0.07], + [18153,0.108], + [18155,0.097], + [18157,0.047], + [18159,0.047], + [18161,0.035], + [18163,0.031], + [18165,0.025], + [18167,0.039], + [18169,0.057], + [18171,0.058], + [18173,0.026], + [18175,0.105], + [18177,0.112], + [18179,0.047], + [18181,0.081], + [18183,0.091], + [19001,0.045], + [19003,0.075], + [19005,0.111], + [19007,0.1], + [19009,0.016], + [19011,0.013], + [19013,0.043], + [19015,0.008], + [19017,0.01], + [19019,0.053], + [19021,0.066], + [19023,0.026], + [19025,0.019], + [19027,0.003], + [19029,0.01], + [19031,0.01], + [19033,0.036], + [19035,0.03], + [19037,0.115], + [19039,0.017], + [19041,0.022], + [19043,0.101], + [19045,0.011], + [19047,0.017], + [19049,0.027], + [19051,0.423], + [19053,0.078], + [19055,0.013], + [19057,0.024], + [19059,0.029], + [19061,0.024], + [19063,0.021], + [19065,0.038], + [19067,0.115], + [19069,0.069], + [19071,0.031], + [19073,0.006], + [19075,0.012], + [19077,0.019], + [19079,0.016], + [19081,0.031], + [19083,0.028], + [19085,0.033], + [19087,0.008], + [19089,0.075], + [19091,0.019], + [19093,0.02], + [19095,0.029], + [19097,0.025], + [19099,0.01], + [19101,0.014], + [19103,0.032], + [19105,0.003], + [19107,0.017], + [19109,0.067], + [19111,0.016], + [19113,0.022], + [19115,0.031], + [19117,0.058], + [19119,0.033], + [19121,0.02], + [19123,0.02], + [19125,0.022], + [19127,0.031], + [19129,0.017], + [19131,0.053], + [19133,0.02], + [19135,0.05], + [19137,0.019], + [19139,0.011], + [19141,0.054], + [19143,0.027], + [19145,0.005], + [19147,0.042], + [19149,0.043], + [19151,0.012], + [19153,0.024], + [19155,0.03], + [19157,0.038], + [19159,0.045], + [19161,0.009], + [19163,0.024], + [19165,0.037], + [19167,0.026], + [19169,0.016], + [19171,0.048], + [19173,0.073], + [19175,0.048], + [19177,0.173], + [19179,0.026], + [19181,0.012], + [19183,0.073], + [19185,0.182], + [19187,0.022], + [19189,0.02], + [19191,0.014], + [19193,0.019], + [19195,0.035], + [19197,0.027], + [20001,0.054], + [20003,0.086], + [20005,0.016], + [20007,0.047], + [20009,0.076], + [20011,0.06], + [20013,0.037], + [20015,0.069], + [20017,0.072], + [20019,0.102], + [20021,0.098], + [20023,0.077], + [20025,0.059], + [20027,0.033], + [20029,0.041], + [20031,0.037], + [20033,0.145], + [20035,0.07], + [20037,0.044], + [20039,0.123], + [20041,0.041], + [20043,0.078], + [20045,0.041], + [20047,0.023], + [20049,0.067], + [20051,0.012], + [20053,0.044], + [20055,0.085], + [20057,0.064], + [20059,0.067], + [20061,0.046], + [20063,0.116], + [20065,0.05], + [20067,0.078], + [20069,0.099], + [20071,0.034], + [20073,0.054], + [20075,0.183], + [20077,0.136], + [20079,0.038], + [20081,0.104], + [20083,0.041], + [20085,0.054], + [20087,0.02], + [20089,0.069], + [20091,0.039], + [20093,0.115], + [20095,0.046], + [20097,0.084], + [20099,0.096], + [20101,0.081], + [20103,0.024], + [20105,0.026], + [20107,0.049], + [20109,0.019], + [20111,0.049], + [20113,0.03], + [20115,0.047], + [20117,0.038], + [20119,0.103], + [20121,0.03], + [20123,0.013], + [20125,0.087], + [20127,0.056], + [20129,0.243], + [20131,0.037], + [20133,0.11], + [20135,0.103], + [20137,0.065], + [20139,0.067], + [20141,0.013], + [20143,0.024], + [20145,0.06], + [20147,0.021], + [20149,0.028], + [20151,0.029], + [20153,0.064], + [20155,0.061], + [20157,0.059], + [20159,0.026], + [20161,0.019], + [20163,0.064], + [20165,0.028], + [20167,0.039], + [20169,0.033], + [20171,0.03], + [20173,0.059], + [20175,0.072], + [20177,0.038], + [20179,0.11], + [20181,0.104], + [20183,0.085], + [20185,0.056], + [20187,0.104], + [20189,0.148], + [20191,0.034], + [20193,0.094], + [20195,0.082], + [20197,0.029], + [20199,0], + [20201,0.031], + [20203,0], + [20205,0.021], + [20207,0.096], + [20209,0.086], + [21001,0.043], + [21003,0.063], + [21005,0.024], + [21007,0.069], + [21009,0.053], + [21011,0.067], + [21013,0.035], + [21015,0.026], + [21017,0.022], + [21019,0.028], + [21021,0.007], + [21023,0.053], + [21025,0.022], + [21027,0.067], + [21029,0.035], + [21031,0.053], + [21033,0.037], + [21035,0.058], + [21037,0.013], + [21039,0.035], + [21041,0.019], + [21043,0.05], + [21045,0.151], + [21047,0.086], + [21049,0.025], + [21051,0.037], + [21053,0.114], + [21055,0.079], + [21057,0.116], + [21059,0.028], + [21061,0.032], + [21063,0.005], + [21065,0.034], + [21067,0.043], + [21069,0.126], + [21071,0.012], + [21073,0.066], + [21075,0], + [21077,0.101], + [21079,0.017], + [21081,0.053], + [21083,0.054], + [21085,0.026], + [21087,0.054], + [21089,0.039], + [21091,0.033], + [21093,0.025], + [21095,0.034], + [21097,0.092], + [21099,0.079], + [21101,0.016], + [21103,0.058], + [21105,0], + [21107,0.069], + [21109,0.021], + [21111,0.029], + [21113,0.035], + [21115,0.02], + [21117,0.032], + [21119,0.065], + [21121,0.004], + [21123,0.013], + [21125,0.038], + [21127,0.07], + [21129,0.012], + [21131,0.02], + [21133,0.037], + [21135,0.007], + [21137,0.092], + [21139,0.012], + [21141,0.054], + [21143,0.081], + [21145,0.04], + [21147,0.012], + [21149,0.04], + [21151,0.028], + [21153,0.01], + [21155,0.025], + [21157,0.032], + [21159,0.1], + [21161,0.082], + [21163,0.035], + [21165,0.016], + [21167,0.046], + [21169,0.071], + [21171,0.131], + [21173,0.055], + [21175,0.044], + [21177,0.039], + [21179,0.038], + [21181,0.132], + [21183,0.01], + [21185,0.024], + [21187,0.024], + [21189,0], + [21191,0.003], + [21193,0.023], + [21195,0.048], + [21197,0.02], + [21199,0.039], + [21201,0.086], + [21203,0.007], + [21205,0.021], + [21207,0.092], + [21209,0.042], + [21211,0.047], + [21213,0.057], + [21215,0.006], + [21217,0.021], + [21219,0.174], + [21221,0.133], + [21223,0.041], + [21225,0.03], + [21227,0.019], + [21229,0.073], + [21231,0.093], + [21233,0.032], + [21235,0.04], + [21237,0.008], + [21239,0.043], + [22001,0.05], + [22003,0.027], + [22005,0.023], + [22007,0.02], + [22009,0.028], + [22011,0.062], + [22013,0.007], + [22015,0.05], + [22017,0.033], + [22019,0.023], + [22021,0.087], + [22023,0.011], + [22025,0.133], + [22027,0.044], + [22029,0.148], + [22031,0.028], + [22033,0.038], + [22035,0.039], + [22037,0.022], + [22039,0.031], + [22041,0.031], + [22043,0.007], + [22045,0.039], + [22047,0.026], + [22049,0.033], + [22051,0.046], + [22053,0.03], + [22055,0.035], + [22057,0.04], + [22059,0.043], + [22061,0.026], + [22063,0.028], + [22065,0.061], + [22067,0.021], + [22069,0.033], + [22071,0.034], + [22073,0.035], + [22075,0.035], + [22077,0.035], + [22079,0.039], + [22081,0], + [22083,0.102], + [22085,0.033], + [22087,0.047], + [22089,0.018], + [22091,0.025], + [22093,0.056], + [22095,0.046], + [22097,0.037], + [22099,0.032], + [22101,0.031], + [22103,0.028], + [22105,0.022], + [22107,0.16], + [22109,0.035], + [22111,0.025], + [22113,0.022], + [22115,0.026], + [22117,0.037], + [22119,0.043], + [22121,0.06], + [22123,0.108], + [22125,0.017], + [22127,0.032], + [23001,0.051], + [23003,0.06], + [23005,0.032], + [23007,0.075], + [23009,0.099], + [23011,0.054], + [23013,0.087], + [23015,0.075], + [23017,0.037], + [23019,0.056], + [23021,0.067], + [23023,0.04], + [23025,0.037], + [23027,0.08], + [23029,0.087], + [23031,0.044], + [24001,0.034], + [24003,0.029], + [24005,0.03], + [24009,0.035], + [24011,0.021], + [24013,0.014], + [24015,0.017], + [24017,0.034], + [24019,0.038], + [24021,0.024], + [24023,0.055], + [24025,0.025], + [24027,0.03], + [24029,0.033], + [24031,0.034], + [24033,0.055], + [24035,0.017], + [24037,0.051], + [24039,0.048], + [24041,0.037], + [24043,0.049], + [24045,0.038], + [24047,0.024], + [24510,0.04], + [25001,0.02], + [25003,0.017], + [25005,0.014], + [25007,0.027], + [25009,0.014], + [25011,0.009], + [25013,0.015], + [25015,0.021], + [25017,0.014], + [25019,0.028], + [25021,0.006], + [25023,0.011], + [25025,0.013], + [25027,0.011], + [26001,0.015], + [26003,0.058], + [26005,0.02], + [26007,0.029], + [26009,0.045], + [26011,0.026], + [26013,0.034], + [26015,0.025], + [26017,0.031], + [26019,0.026], + [26021,0.049], + [26023,0.141], + [26025,0.032], + [26027,0.043], + [26029,0.039], + [26031,0.03], + [26033,0.03], + [26035,0.148], + [26037,0.026], + [26039,0.042], + [26041,0.04], + [26043,0.04], + [26045,0.038], + [26047,0.057], + [26049,0.027], + [26051,0.139], + [26053,0.056], + [26055,0.051], + [26057,0.027], + [26059,0.061], + [26061,0.041], + [26063,0.05], + [26065,0.029], + [26067,0.029], + [26069,0.055], + [26071,0.066], + [26073,0.095], + [26075,0.031], + [26077,0.032], + [26079,0.08], + [26081,0.033], + [26083,0.016], + [26085,0.069], + [26087,0.062], + [26089,0.048], + [26091,0.028], + [26093,0.014], + [26095,0.011], + [26097,0.087], + [26099,0.026], + [26101,0.048], + [26103,0.017], + [26105,0.038], + [26107,0.048], + [26109,0.042], + [26111,0.027], + [26113,0.078], + [26115,0.023], + [26117,0.065], + [26119,0.065], + [26121,0.023], + [26123,0.064], + [26125,0.026], + [26127,0.053], + [26129,0.063], + [26131,0.089], + [26133,0.105], + [26135,0.208], + [26137,0.034], + [26139,0.023], + [26141,0.077], + [26143,0.021], + [26145,0.023], + [26147,0.023], + [26149,0.064], + [26151,0.117], + [26153,0.061], + [26155,0.019], + [26157,0.022], + [26159,0.046], + [26161,0.018], + [26163,0.028], + [26165,0.043], + [27001,0.026], + [27003,0.023], + [27005,0.069], + [27007,0.09], + [27009,0.02], + [27011,0.008], + [27013,0.022], + [27015,0.026], + [27017,0.023], + [27019,0.035], + [27021,0.081], + [27023,0.06], + [27025,0.033], + [27027,0.042], + [27029,0.087], + [27031,0.04], + [27033,0.02], + [27035,0.027], + [27037,0.026], + [27039,0.036], + [27041,0.034], + [27043,0.027], + [27045,0.129], + [27047,0.017], + [27049,0.044], + [27051,0.028], + [27053,0.033], + [27055,0.038], + [27057,0.046], + [27059,0.029], + [27061,0.046], + [27063,0.016], + [27065,0.065], + [27067,0.063], + [27069,0.086], + [27071,0.057], + [27073,0.007], + [27075,0.044], + [27077,0], + [27079,0.057], + [27081,0.043], + [27083,0.077], + [27085,0.036], + [27087,0.165], + [27089,0.025], + [27091,0.048], + [27093,0.051], + [27095,0.049], + [27097,0.031], + [27099,0.069], + [27101,0.011], + [27103,0.024], + [27105,0.049], + [27107,0.054], + [27109,0.024], + [27111,0.055], + [27113,0.02], + [27115,0.042], + [27117,0.045], + [27119,0.033], + [27121,0.028], + [27123,0.036], + [27125,0.028], + [27127,0.061], + [27129,0.051], + [27131,0.033], + [27133,0.035], + [27135,0.031], + [27137,0.02], + [27139,0.03], + [27141,0.013], + [27143,0.031], + [27145,0.022], + [27147,0.015], + [27149,0.03], + [27151,0.017], + [27153,0.12], + [27155,0.027], + [27157,0.047], + [27159,0.033], + [27161,0.02], + [27163,0.024], + [27165,0.122], + [27167,0.026], + [27169,0.063], + [27171,0.029], + [27173,0.031], + [28001,0.05], + [28003,0.065], + [28005,0.075], + [28007,0.025], + [28009,0.089], + [28011,0.042], + [28013,0.038], + [28015,0.022], + [28017,0.078], + [28019,0.028], + [28021,0.082], + [28023,0.028], + [28025,0.035], + [28027,0.029], + [28029,0.044], + [28031,0.038], + [28033,0.042], + [28035,0.036], + [28037,0.013], + [28039,0.081], + [28041,0.056], + [28043,0.058], + [28045,0.061], + [28047,0.062], + [28049,0.045], + [28051,0.038], + [28053,0.047], + [28055,0.075], + [28057,0.05], + [28059,0.052], + [28061,0.068], + [28063,0.131], + [28065,0.029], + [28067,0.048], + [28069,0.04], + [28071,0.026], + [28073,0.053], + [28075,0.041], + [28077,0.061], + [28079,0.092], + [28081,0.052], + [28083,0.054], + [28085,0.043], + [28087,0.044], + [28089,0.039], + [28091,0.062], + [28093,0.028], + [28095,0.027], + [28097,0.017], + [28099,0.037], + [28101,0.067], + [28103,0.059], + [28105,0.052], + [28107,0.026], + [28109,0.086], + [28111,0.045], + [28113,0.058], + [28115,0.097], + [28117,0.039], + [28119,0.045], + [28121,0.051], + [28123,0.107], + [28125,0.083], + [28127,0.038], + [28129,0.063], + [28131,0.073], + [28133,0.027], + [28135,0.015], + [28137,0.047], + [28139,0.093], + [28141,0.047], + [28143,0.039], + [28145,0.035], + [28147,0.091], + [28149,0.056], + [28151,0.052], + [28153,0.038], + [28155,0.017], + [28157,0.01], + [28159,0.027], + [28161,0.02], + [28163,0.008], + [29001,0.051], + [29003,0.012], + [29005,0.051], + [29007,0.081], + [29009,0.124], + [29011,0.04], + [29013,0.065], + [29015,0.125], + [29017,0.029], + [29019,0.041], + [29021,0.045], + [29023,0.039], + [29025,0.047], + [29027,0.071], + [29029,0.072], + [29031,0.03], + [29033,0.121], + [29035,0.053], + [29037,0.044], + [29039,0.101], + [29041,0.051], + [29043,0.042], + [29045,0.154], + [29047,0.035], + [29049,0.027], + [29051,0.045], + [29053,0.098], + [29055,0.114], + [29057,0.093], + [29059,0.204], + [29061,0.233], + [29063,0.047], + [29065,0.085], + [29067,0.047], + [29069,0.076], + [29071,0.052], + [29073,0.019], + [29075,0.086], + [29077,0.078], + [29079,0.209], + [29081,0.15], + [29083,0.08], + [29085,0.278], + [29087,0.067], + [29089,0.046], + [29091,0.075], + [29093,0.028], + [29095,0.068], + [29097,0.065], + [29099,0.035], + [29101,0.056], + [29103,0.226], + [29105,0.049], + [29107,0.043], + [29109,0.086], + [29111,0.097], + [29113,0.054], + [29115,0.096], + [29117,0.067], + [29119,0.116], + [29121,0.094], + [29123,0.081], + [29125,0.152], + [29127,0.018], + [29129,0.17], + [29131,0.04], + [29133,0.046], + [29135,0.171], + [29137,0.092], + [29139,0.033], + [29141,0.246], + [29143,0.047], + [29145,0.087], + [29147,0.069], + [29149,0.114], + [29151,0.011], + [29153,0.06], + [29155,0.044], + [29157,0.042], + [29159,0.093], + [29161,0.039], + [29163,0.06], + [29165,0.044], + [29167,0.094], + [29169,0.041], + [29171,0.195], + [29173,0.051], + [29175,0.05], + [29177,0.072], + [29179,0.025], + [29181,0.052], + [29183,0.028], + [29185,0.115], + [29186,0.003], + [29187,0.022], + [29189,0.031], + [29195,0.03], + [29197,0.108], + [29199,0.473], + [29201,0.017], + [29203,0.113], + [29205,0.09], + [29207,0.063], + [29209,0.073], + [29211,0.056], + [29213,0.1], + [29215,0.149], + [29217,0.127], + [29219,0.034], + [29221,0.032], + [29223,0.053], + [29225,0.122], + [29227,0.016], + [29229,0.203], + [29510,0.05], + [30001,0.052], + [30003,0.296], + [30005,0.074], + [30007,0.051], + [30009,0.03], + [30011,0.248], + [30013,0.036], + [30015,0.068], + [30017,0.037], + [30019,0.03], + [30021,0.005], + [30023,0.067], + [30025,0.184], + [30027,0.037], + [30029,0.046], + [30031,0.066], + [30033,0.16], + [30035,0.301], + [30037,0.063], + [30039,0.041], + [30041,0.032], + [30043,0.05], + [30045,0.012], + [30047,0.102], + [30049,0.033], + [30051,0.039], + [30053,0.068], + [30055,0.129], + [30057,0.044], + [30059,0.231], + [30061,0.05], + [30063,0.027], + [30065,0.026], + [30067,0.061], + [30069,0.01], + [30071,0.139], + [30073,0.073], + [30075,0.098], + [30077,0.046], + [30079,0], + [30081,0.084], + [30083,0.091], + [30085,0.232], + [30087,0.22], + [30089,0.106], + [30091,0.061], + [30093,0.013], + [30095,0.017], + [30097,0], + [30099,0.125], + [30101,0.037], + [30103,0], + [30105,0.066], + [30107,0.094], + [30109,0.199], + [30111,0.046], + [31001,0.056], + [31003,0.032], + [31005,0.1], + [31007,0.024], + [31009,0], + [31011,0.049], + [31013,0.033], + [31015,0.227], + [31017,0.195], + [31019,0.068], + [31021,0.09], + [31023,0.024], + [31025,0.044], + [31027,0.047], + [31029,0.071], + [31031,0.085], + [31033,0.016], + [31035,0.05], + [31037,0.101], + [31039,0.023], + [31041,0.052], + [31043,0.108], + [31045,0.048], + [31047,0.091], + [31049,0.074], + [31051,0.054], + [31053,0.043], + [31055,0.051], + [31057,0.173], + [31059,0.093], + [31061,0.029], + [31063,0.063], + [31065,0.041], + [31067,0.021], + [31069,0.154], + [31071,0.08], + [31073,0.049], + [31075,0.153], + [31077,0.042], + [31079,0.063], + [31081,0.044], + [31083,0.052], + [31085,0], + [31087,0.064], + [31089,0.04], + [31091,0.068], + [31093,0.057], + [31095,0.017], + [31097,0.02], + [31099,0.04], + [31101,0.059], + [31103,0.064], + [31105,0.119], + [31107,0.086], + [31109,0.047], + [31111,0.052], + [31113,0.092], + [31115,0.054], + [31117,0], + [31119,0.062], + [31121,0.068], + [31123,0.03], + [31125,0.05], + [31127,0.021], + [31129,0.085], + [31131,0.048], + [31133,0.133], + [31135,0.031], + [31137,0.044], + [31139,0.016], + [31141,0.082], + [31143,0.128], + [31145,0.044], + [31147,0.027], + [31149,0.053], + [31151,0.121], + [31153,0.032], + [31155,0.026], + [31157,0.054], + [31159,0.056], + [31161,0.112], + [31163,0.051], + [31165,0.074], + [31167,0.025], + [31169,0.027], + [31171,0.021], + [31173,0.226], + [31175,0.082], + [31177,0.034], + [31179,0.003], + [31181,0.006], + [31183,0.153], + [31185,0.083], + [32001,0.104], + [32003,0.074], + [32005,0.067], + [32007,0.091], + [32009,0.062], + [32011,0.047], + [32013,0.099], + [32015,0.028], + [32017,0.089], + [32019,0.047], + [32021,0.11], + [32023,0.118], + [32027,0.144], + [32029,0.171], + [32031,0.077], + [32033,0.081], + [32510,0.084], + [33001,0.025], + [33003,0.057], + [33005,0.031], + [33007,0.041], + [33009,0.036], + [33011,0.026], + [33013,0.029], + [33015,0.023], + [33017,0.027], + [33019,0.041], + [34001,0.039], + [34003,0.041], + [34005,0.024], + [34007,0.03], + [34009,0.035], + [34011,0.045], + [34013,0.058], + [34015,0.025], + [34017,0.05], + [34019,0.019], + [34021,0.027], + [34023,0.033], + [34025,0.029], + [34027,0.023], + [34029,0.028], + [34031,0.055], + [34033,0.028], + [34035,0.036], + [34037,0.019], + [34039,0.055], + [34041,0.032], + [35001,0.036], + [35003,0.111], + [35005,0.075], + [35006,0.037], + [35007,0.025], + [35009,0.04], + [35011,0.023], + [35013,0.053], + [35015,0.077], + [35017,0.01], + [35019,0.051], + [35021,0], + [35023,0.003], + [35025,0.077], + [35027,0.055], + [35028,0.014], + [35029,0.034], + [35031,0.119], + [35033,0.093], + [35035,0.032], + [35037,0.066], + [35039,0.039], + [35041,0.06], + [35043,0.06], + [35045,0.074], + [35047,0.006], + [35049,0.081], + [35051,0.004], + [35053,0.04], + [35055,0.037], + [35057,0.027], + [35059,0.092], + [35061,0.044], + [36001,0.012], + [36003,0.092], + [36005,0.023], + [36007,0.027], + [36009,0.084], + [36011,0.052], + [36013,0.061], + [36015,0.038], + [36017,0.044], + [36019,0.015], + [36021,0.033], + [36023,0.03], + [36025,0.033], + [36027,0.026], + [36029,0.017], + [36031,0.018], + [36033,0.053], + [36035,0.034], + [36037,0.016], + [36039,0.029], + [36041,0], + [36043,0.053], + [36045,0.043], + [36047,0.023], + [36049,0.05], + [36051,0.013], + [36053,0.039], + [36055,0.016], + [36057,0.083], + [36059,0.023], + [36061,0.019], + [36063,0.017], + [36065,0.024], + [36067,0.019], + [36069,0.017], + [36071,0.021], + [36073,0.051], + [36075,0.025], + [36077,0.045], + [36079,0.017], + [36081,0.03], + [36083,0.018], + [36085,0.018], + [36087,0.026], + [36089,0.088], + [36091,0.017], + [36093,0.02], + [36095,0.025], + [36097,0.055], + [36099,0.123], + [36101,0.054], + [36103,0.022], + [36105,0.023], + [36107,0.019], + [36109,0.02], + [36111,0.02], + [36113,0.021], + [36115,0.043], + [36117,0.041], + [36119,0.021], + [36121,0.028], + [36123,0.338], + [37001,0.049], + [37003,0.045], + [37005,0.009], + [37007,0.015], + [37009,0.046], + [37011,0.076], + [37013,0.05], + [37015,0.057], + [37017,0.046], + [37019,0.039], + [37021,0.045], + [37023,0.035], + [37025,0.035], + [37027,0.033], + [37029,0.02], + [37031,0.059], + [37033,0.031], + [37035,0.066], + [37037,0.071], + [37039,0.059], + [37041,0.028], + [37043,0.041], + [37045,0.051], + [37047,0.042], + [37049,0.081], + [37051,0.037], + [37053,0.103], + [37055,0.112], + [37057,0.058], + [37059,0.06], + [37061,0.096], + [37063,0.069], + [37065,0.026], + [37067,0.043], + [37069,0.045], + [37071,0.048], + [37073,0.039], + [37075,0.12], + [37077,0.056], + [37079,0.078], + [37081,0.042], + [37083,0.069], + [37085,0.032], + [37087,0.053], + [37089,0.062], + [37091,0.039], + [37093,0.041], + [37095,0.116], + [37097,0.041], + [37099,0.058], + [37101,0.058], + [37103,0.064], + [37105,0.067], + [37107,0.037], + [37109,0.043], + [37111,0.051], + [37113,0.092], + [37115,0.055], + [37117,0.031], + [37119,0.06], + [37121,0.066], + [37123,0.046], + [37125,0.064], + [37127,0.05], + [37129,0.058], + [37131,0.1], + [37133,0.021], + [37135,0.045], + [37137,0.037], + [37139,0.061], + [37141,0.039], + [37143,0.152], + [37145,0.043], + [37147,0.044], + [37149,0.038], + [37151,0.066], + [37153,0.036], + [37155,0.038], + [37157,0.045], + [37159,0.042], + [37161,0.043], + [37163,0.075], + [37165,0.057], + [37167,0.062], + [37169,0.054], + [37171,0.05], + [37173,0.226], + [37175,0.061], + [37177,0], + [37179,0.047], + [37181,0.033], + [37183,0.043], + [37185,0.038], + [37187,0.05], + [37189,0.055], + [37191,0.054], + [37193,0.045], + [37195,0.044], + [37197,0.064], + [37199,0.049], + [38001,0.105], + [38003,0.089], + [38005,0.074], + [38007,0], + [38009,0.016], + [38011,0.074], + [38013,0.067], + [38015,0.058], + [38017,0.042], + [38019,0.051], + [38021,0.059], + [38023,0.012], + [38025,0.334], + [38027,0.088], + [38029,0.038], + [38031,0.097], + [38033,0.067], + [38035,0.063], + [38037,0.058], + [38039,0.011], + [38041,0.106], + [38043,0.28], + [38045,0.03], + [38047,0.005], + [38049,0.024], + [38051,0.035], + [38053,0.202], + [38055,0.077], + [38057,0.301], + [38059,0.044], + [38061,0.153], + [38063,0.02], + [38065,0.195], + [38067,0.067], + [38069,0.017], + [38071,0.067], + [38073,0.061], + [38075,0.025], + [38077,0.025], + [38079,0.178], + [38081,0.023], + [38083,0.029], + [38085,0.29], + [38087,0], + [38089,0.08], + [38091,0.005], + [38093,0.054], + [38095,0.14], + [38097,0.06], + [38099,0.065], + [38101,0.033], + [38103,0.044], + [38105,0.197], + [39001,0.041], + [39003,0.048], + [39005,0.136], + [39007,0.133], + [39009,0.03], + [39011,0.012], + [39013,0.029], + [39015,0.057], + [39017,0.029], + [39019,0.08], + [39021,0.025], + [39023,0.044], + [39025,0.03], + [39027,0.025], + [39029,0.049], + [39031,0.128], + [39033,0.032], + [39035,0.029], + [39037,0.039], + [39039,0.05], + [39041,0.023], + [39043,0.036], + [39045,0.035], + [39047,0.035], + [39049,0.044], + [39051,0.024], + [39053,0.108], + [39055,0.134], + [39057,0.027], + [39059,0.039], + [39061,0.035], + [39063,0.028], + [39065,0.134], + [39067,0.134], + [39069,0.019], + [39071,0.066], + [39073,0.035], + [39075,0.515], + [39077,0.06], + [39079,0.037], + [39081,0.03], + [39083,0.139], + [39085,0.031], + [39087,0.033], + [39089,0.049], + [39091,0.046], + [39093,0.028], + [39095,0.029], + [39097,0.057], + [39099,0.019], + [39101,0.041], + [39103,0.03], + [39105,0.033], + [39107,0.013], + [39109,0.042], + [39111,0.045], + [39113,0.046], + [39115,0.086], + [39117,0.076], + [39119,0.034], + [39121,0.12], + [39123,0.028], + [39125,0.043], + [39127,0.037], + [39129,0.064], + [39131,0.015], + [39133,0.032], + [39135,0.076], + [39137,0.022], + [39139,0.068], + [39141,0.046], + [39143,0.039], + [39145,0.021], + [39147,0.024], + [39149,0.024], + [39151,0.037], + [39153,0.033], + [39155,0.059], + [39157,0.084], + [39159,0.023], + [39161,0.026], + [39163,0.081], + [39165,0.025], + [39167,0.044], + [39169,0.19], + [39171,0.042], + [39173,0.025], + [39175,0.041], + [40001,0.182], + [40003,0.046], + [40005,0.178], + [40007,0.055], + [40009,0.08], + [40011,0.051], + [40013,0.126], + [40015,0.102], + [40017,0.051], + [40019,0.08], + [40021,0.148], + [40023,0.158], + [40025,0.134], + [40027,0.044], + [40029,0.264], + [40031,0.061], + [40033,0.075], + [40035,0.14], + [40037,0.058], + [40039,0.093], + [40041,0.12], + [40043,0.134], + [40045,0.034], + [40047,0.081], + [40049,0.105], + [40051,0.066], + [40053,0.048], + [40055,0.118], + [40057,0.077], + [40059,0.049], + [40061,0.089], + [40063,0.125], + [40065,0.063], + [40067,0.077], + [40069,0.131], + [40071,0.088], + [40073,0.044], + [40075,0.06], + [40077,0.183], + [40079,0.117], + [40081,0.08], + [40083,0.041], + [40085,0.12], + [40087,0.092], + [40089,0.141], + [40091,0.127], + [40093,0.059], + [40095,0.104], + [40097,0.114], + [40099,0.096], + [40101,0.118], + [40103,0.072], + [40105,0.105], + [40107,0.183], + [40109,0.068], + [40111,0.103], + [40113,0.081], + [40115,0.102], + [40117,0.13], + [40119,0.088], + [40121,0.089], + [40123,0.117], + [40125,0.087], + [40127,0.12], + [40129,0.063], + [40131,0.075], + [40133,0.125], + [40135,0.121], + [40137,0.056], + [40139,0.106], + [40141,0.058], + [40143,0.076], + [40145,0.064], + [40147,0.095], + [40149,0.051], + [40151,0.086], + [40153,0.063], + [41001,0.091], + [41003,0.024], + [41005,0.031], + [41007,0.035], + [41009,0.028], + [41011,0.048], + [41013,0.05], + [41015,0.026], + [41017,0.043], + [41019,0.037], + [41021,0.073], + [41023,0.051], + [41025,0.064], + [41027,0.033], + [41029,0.039], + [41031,0.067], + [41033,0.052], + [41035,0.044], + [41037,0.05], + [41039,0.041], + [41041,0.049], + [41043,0.059], + [41045,0.042], + [41047,0.043], + [41049,0.101], + [41051,0.027], + [41053,0.031], + [41055,0.071], + [41057,0.045], + [41059,0.044], + [41061,0.054], + [41063,0.008], + [41065,0.056], + [41067,0.031], + [41069,0.008], + [41071,0.023], + [42001,0.051], + [42003,0.019], + [42005,0.035], + [42007,0.011], + [42009,0.06], + [42011,0.046], + [42013,0.034], + [42015,0.056], + [42017,0.022], + [42019,0.011], + [42021,0.025], + [42023,0.008], + [42025,0.021], + [42027,0.065], + [42029,0.045], + [42031,0.111], + [42033,0.046], + [42035,0.099], + [42037,0.033], + [42039,0.11], + [42041,0.061], + [42043,0.034], + [42045,0.021], + [42047,0.026], + [42049,0.023], + [42051,0.017], + [42053,0], + [42055,0.102], + [42057,0.048], + [42059,0.03], + [42061,0.034], + [42063,0.125], + [42065,0.119], + [42067,0.16], + [42069,0.02], + [42071,0.17], + [42073,0.043], + [42075,0.095], + [42077,0.033], + [42079,0.027], + [42081,0.042], + [42083,0.03], + [42085,0.062], + [42087,0.171], + [42089,0.044], + [42091,0.022], + [42093,0.078], + [42095,0.026], + [42097,0.042], + [42099,0.131], + [42101,0.035], + [42103,0.041], + [42105,0.06], + [42107,0.046], + [42109,0.136], + [42111,0.067], + [42113,0.068], + [42115,0.052], + [42117,0.053], + [42119,0.132], + [42121,0.052], + [42123,0.056], + [42125,0.017], + [42127,0.037], + [42129,0.013], + [42131,0.017], + [42133,0.033], + [44001,0.007], + [44003,0.022], + [44005,0.03], + [44007,0.028], + [44009,0.009], + [45001,0.061], + [45003,0.043], + [45005,0.012], + [45007,0.057], + [45009,0.077], + [45011,0.05], + [45013,0.086], + [45015,0.053], + [45017,0.024], + [45019,0.06], + [45021,0.033], + [45023,0.05], + [45025,0.051], + [45027,0.016], + [45029,0.039], + [45031,0.035], + [45033,0.047], + [45035,0.058], + [45037,0.047], + [45039,0.04], + [45041,0.025], + [45043,0.064], + [45045,0.047], + [45047,0.064], + [45049,0.058], + [45051,0.062], + [45053,0.044], + [45055,0.038], + [45057,0.031], + [45059,0.057], + [45061,0.032], + [45063,0.037], + [45065,0.036], + [45067,0.03], + [45069,0.026], + [45071,0.025], + [45073,0.034], + [45075,0.023], + [45077,0.056], + [45079,0.039], + [45081,0.021], + [45083,0.053], + [45085,0.037], + [45087,0.034], + [45089,0.013], + [45091,0.028], + [46003,0.022], + [46005,0.078], + [46007,0.169], + [46009,0.05], + [46011,0.049], + [46013,0.043], + [46015,0.052], + [46017,0.189], + [46019,0.075], + [46021,0], + [46023,0.143], + [46025,0.02], + [46027,0.023], + [46029,0.031], + [46031,0.136], + [46033,0.076], + [46035,0.039], + [46037,0.145], + [46039,0.011], + [46041,0.146], + [46043,0.201], + [46045,0.012], + [46047,0.005], + [46049,0.06], + [46051,0.045], + [46053,0.036], + [46055,0.105], + [46057,0.07], + [46059,0.039], + [46061,0.029], + [46063,0.033], + [46065,0.034], + [46067,0.024], + [46069,0.057], + [46071,0.17], + [46073,0.049], + [46075,0.1], + [46077,0.034], + [46079,0.027], + [46081,0.063], + [46083,0.02], + [46085,0.148], + [46087,0.057], + [46089,0.039], + [46091,0.044], + [46093,0.075], + [46095,0.258], + [46097,0.03], + [46099,0.054], + [46101,0.086], + [46102,0.187], + [46103,0.061], + [46105,0.084], + [46107,0.117], + [46109,0.211], + [46111,0.038], + [46115,0.043], + [46117,0.008], + [46119,0.078], + [46121,0.123], + [46123,0.034], + [46125,0.027], + [46127,0.036], + [46129,0.065], + [46135,0.037], + [46137,0.113], + [47001,0.038], + [47003,0.04], + [47005,0.021], + [47007,0.063], + [47009,0.05], + [47011,0.037], + [47013,0.051], + [47015,0.072], + [47017,0.029], + [47019,0.049], + [47021,0.05], + [47023,0.052], + [47025,0.026], + [47027,0.051], + [47029,0.05], + [47031,0.055], + [47033,0.045], + [47035,0.045], + [47037,0.068], + [47039,0.025], + [47041,0.021], + [47043,0.056], + [47045,0.04], + [47047,0.019], + [47049,0.017], + [47051,0.048], + [47053,0.033], + [47055,0.027], + [47057,0.015], + [47059,0.039], + [47061,0.017], + [47063,0.037], + [47065,0.034], + [47067,0.012], + [47069,0.04], + [47071,0.076], + [47073,0.03], + [47075,0.028], + [47077,0.029], + [47079,0.043], + [47081,0.021], + [47083,0.035], + [47085,0.003], + [47087,0.085], + [47089,0.024], + [47091,0.073], + [47093,0.029], + [47095,0.048], + [47097,0.014], + [47099,0.112], + [47101,0.031], + [47103,0.041], + [47105,0.044], + [47107,0.053], + [47109,0.065], + [47111,0.024], + [47113,0.042], + [47115,0.023], + [47117,0.034], + [47119,0.054], + [47121,0.057], + [47123,0.037], + [47125,0.036], + [47127,0.084], + [47129,0.039], + [47131,0.031], + [47133,0.041], + [47135,0.157], + [47137,0.005], + [47139,0.08], + [47141,0.025], + [47143,0.042], + [47145,0.013], + [47147,0.031], + [47149,0.051], + [47151,0.037], + [47153,0.068], + [47155,0.049], + [47157,0.056], + [47159,0.017], + [47161,0.045], + [47163,0.02], + [47165,0.044], + [47167,0.024], + [47169,0.011], + [47171,0.008], + [47173,0.051], + [47175,0.058], + [47177,0.09], + [47179,0.042], + [47181,0.066], + [47183,0.076], + [47185,0.084], + [47187,0.031], + [47189,0.037], + [48001,0.097], + [48003,0.208], + [48005,0.129], + [48007,0.162], + [48009,0.072], + [48011,0], + [48013,0.106], + [48015,0.088], + [48017,0.114], + [48019,0.134], + [48021,0.093], + [48023,0.117], + [48025,0.107], + [48027,0.057], + [48029,0.08], + [48031,0.179], + [48033,0.043], + [48035,0.129], + [48037,0.068], + [48039,0.104], + [48041,0.082], + [48043,0.068], + [48045,0.077], + [48047,0.085], + [48049,0.069], + [48051,0.108], + [48053,0.077], + [48055,0.162], + [48057,0.141], + [48059,0.14], + [48061,0.158], + [48063,0.107], + [48065,0.054], + [48067,0.071], + [48069,0.144], + [48071,0.055], + [48073,0.12], + [48075,0.032], + [48077,0.1], + [48079,0.257], + [48081,0.187], + [48083,0.231], + [48085,0.074], + [48087,0.17], + [48089,0.155], + [48091,0.085], + [48093,0.114], + [48095,0.007], + [48097,0.114], + [48099,0.043], + [48101,0.006], + [48103,0.119], + [48105,0.076], + [48107,0.123], + [48109,0.116], + [48111,0.336], + [48113,0.138], + [48115,0.101], + [48117,0.111], + [48119,0.057], + [48121,0.075], + [48123,0.066], + [48125,0.095], + [48127,0.096], + [48129,0.07], + [48131,0.089], + [48133,0.08], + [48135,0.172], + [48137,0.197], + [48139,0.121], + [48141,0.097], + [48143,0.127], + [48145,0.081], + [48147,0.114], + [48149,0.112], + [48151,0.099], + [48153,0.151], + [48155,0.183], + [48157,0.07], + [48159,0.122], + [48161,0.119], + [48163,0.117], + [48165,0.325], + [48167,0.09], + [48169,0.049], + [48171,0.288], + [48173,0.086], + [48175,0.103], + [48177,0.09], + [48179,0.096], + [48181,0.132], + [48183,0.115], + [48185,0.108], + [48187,0.069], + [48189,0.113], + [48191,0.063], + [48193,0.083], + [48195,0.241], + [48197,0.051], + [48199,0.095], + [48201,0.121], + [48203,0.1], + [48205,0.122], + [48207,0.08], + [48209,0.088], + [48211,0.255], + [48213,0.117], + [48215,0.149], + [48217,0.099], + [48219,0.086], + [48221,0.132], + [48223,0.135], + [48225,0.071], + [48227,0.122], + [48229,0.296], + [48231,0.115], + [48233,0.129], + [48235,0.207], + [48237,0.125], + [48239,0.123], + [48241,0.101], + [48243,0.192], + [48245,0.113], + [48247,0.144], + [48249,0.074], + [48251,0.121], + [48253,0.125], + [48255,0.143], + [48257,0.079], + [48259,0.084], + [48261,0], + [48263,0], + [48265,0.126], + [48267,0.108], + [48269,0.043], + [48271,0.047], + [48273,0.054], + [48275,0.108], + [48277,0.095], + [48279,0.147], + [48281,0.081], + [48283,0.109], + [48285,0.073], + [48287,0.093], + [48289,0.135], + [48291,0.141], + [48293,0.09], + [48295,0.207], + [48297,0.127], + [48299,0.118], + [48301,0], + [48303,0.086], + [48305,0.177], + [48307,0.181], + [48309,0.099], + [48311,0.214], + [48313,0.143], + [48315,0.074], + [48317,0.058], + [48319,0.165], + [48321,0.124], + [48323,0.227], + [48325,0.099], + [48327,0.344], + [48329,0.144], + [48331,0.076], + [48333,0.105], + [48335,0.13], + [48337,0.129], + [48339,0.093], + [48341,0.122], + [48343,0.114], + [48345,0.046], + [48347,0.118], + [48349,0.129], + [48351,0.133], + [48353,0.149], + [48355,0.089], + [48357,0.147], + [48359,0.023], + [48361,0.105], + [48363,0.19], + [48365,0.154], + [48367,0.108], + [48369,0.128], + [48371,0.125], + [48373,0.091], + [48375,0.141], + [48377,0.28], + [48379,0.128], + [48381,0.051], + [48383,0.161], + [48385,0.161], + [48387,0.066], + [48389,0.127], + [48391,0.11], + [48393,0.07], + [48395,0.084], + [48397,0.103], + [48399,0.057], + [48401,0.128], + [48403,0.069], + [48405,0.106], + [48407,0.128], + [48409,0.095], + [48411,0.144], + [48413,0.275], + [48415,0.163], + [48417,0.034], + [48419,0.149], + [48421,0.128], + [48423,0.104], + [48425,0.119], + [48427,0.189], + [48429,0.155], + [48431,0.241], + [48433,0.203], + [48435,0.079], + [48437,0.149], + [48439,0.106], + [48441,0.08], + [48443,0], + [48445,0.157], + [48447,0.1], + [48449,0.09], + [48451,0.09], + [48453,0.086], + [48455,0.191], + [48457,0.068], + [48459,0.132], + [48461,0.071], + [48463,0.105], + [48465,0.101], + [48467,0.133], + [48469,0.116], + [48471,0.086], + [48473,0.14], + [48475,0.153], + [48477,0.095], + [48479,0.14], + [48481,0.161], + [48483,0.078], + [48485,0.085], + [48487,0.073], + [48489,0.11], + [48491,0.061], + [48493,0.078], + [48495,0.186], + [48497,0.147], + [48499,0.096], + [48501,0.288], + [48503,0.179], + [48505,0.131], + [48507,0.037], + [49001,0.125], + [49003,0.058], + [49005,0.04], + [49007,0.064], + [49009,0], + [49011,0.045], + [49013,0.104], + [49015,0.069], + [49017,0.146], + [49019,0.129], + [49021,0.066], + [49023,0.103], + [49025,0.072], + [49027,0.145], + [49029,0.042], + [49031,0.117], + [49033,0.1], + [49035,0.084], + [49037,0.154], + [49039,0.086], + [49041,0.086], + [49043,0.06], + [49045,0.051], + [49047,0.102], + [49049,0.059], + [49051,0.067], + [49053,0.14], + [49055,0.166], + [49057,0.064], + [50001,0.005], + [50003,0.01], + [50005,0.012], + [50007,0.022], + [50009,0.011], + [50011,0.01], + [50013,0.028], + [50015,0.017], + [50017,0.022], + [50019,0.015], + [50021,0.018], + [50023,0.013], + [50025,0.016], + [50027,0.018], + [51001,0.088], + [51003,0.038], + [51005,0.032], + [51007,0.114], + [51009,0.081], + [51011,0.048], + [51013,0.029], + [51015,0.04], + [51017,0.018], + [51019,0.028], + [51021,0.081], + [51023,0.023], + [51025,0.011], + [51027,0.065], + [51029,0.052], + [51031,0.062], + [51033,0.049], + [51035,0.076], + [51036,0.042], + [51037,0.055], + [51041,0.043], + [51043,0.116], + [51045,0], + [51047,0.066], + [51049,0.116], + [51051,0.042], + [51053,0.092], + [51057,0.01], + [51059,0.05], + [51061,0.049], + [51063,0.063], + [51065,0.042], + [51067,0.084], + [51069,0.047], + [51071,0.037], + [51073,0.042], + [51075,0.018], + [51077,0.081], + [51079,0.113], + [51081,0.069], + [51083,0.05], + [51085,0.026], + [51087,0.046], + [51089,0.038], + [51091,0.215], + [51093,0.063], + [51095,0.033], + [51097,0.084], + [51099,0.018], + [51101,0.005], + [51103,0.074], + [51105,0.06], + [51107,0.037], + [51109,0.067], + [51111,0.064], + [51113,0.05], + [51115,0.039], + [51117,0.063], + [51119,0.038], + [51121,0.03], + [51125,0.034], + [51127,0.002], + [51131,0.104], + [51133,0.133], + [51135,0.07], + [51137,0.085], + [51139,0.068], + [51141,0.036], + [51143,0.027], + [51145,0.068], + [51147,0.03], + [51149,0.022], + [51153,0.071], + [51155,0.037], + [51157,0.054], + [51159,0.011], + [51161,0.041], + [51163,0.065], + [51165,0.102], + [51167,0.046], + [51169,0.046], + [51171,0.042], + [51173,0.026], + [51175,0.033], + [51177,0.041], + [51179,0.051], + [51181,0.091], + [51183,0.045], + [51185,0.062], + [51187,0.064], + [51191,0.057], + [51193,0.028], + [51195,0.039], + [51197,0.089], + [51199,0.027], + [51510,0.067], + [51520,0.028], + [51530,0], + [51540,0.04], + [51550,0.045], + [51570,0.037], + [51580,0.06], + [51590,0.042], + [51595,0.124], + [51600,0.056], + [51610,0.018], + [51620,0], + [51630,0.089], + [51640,0.183], + [51650,0.033], + [51660,0.091], + [51670,0.03], + [51678,0.017], + [51680,0.077], + [51683,0.101], + [51685,0.084], + [51690,0.037], + [51700,0.068], + [51710,0.065], + [51720,0.009], + [51730,0.062], + [51735,0.033], + [51740,0.04], + [51750,0.046], + [51760,0.065], + [51770,0.031], + [51775,0.026], + [51790,0.046], + [51800,0.033], + [51810,0.038], + [51820,0.135], + [51830,0.019], + [51840,0.067], + [53001,0.039], + [53003,0.046], + [53005,0.024], + [53007,0.035], + [53009,0.057], + [53011,0.026], + [53013,0.016], + [53015,0.019], + [53017,0.022], + [53019,0.044], + [53021,0.045], + [53023,0.052], + [53025,0.031], + [53027,0.038], + [53029,0.033], + [53031,0.038], + [53033,0.021], + [53035,0.033], + [53037,0.036], + [53039,0.03], + [53041,0.04], + [53043,0.035], + [53045,0.027], + [53047,0.041], + [53049,0.095], + [53051,0.05], + [53053,0.026], + [53055,0.051], + [53057,0.023], + [53059,0], + [53061,0.034], + [53063,0.023], + [53065,0.073], + [53067,0.022], + [53069,0.104], + [53071,0.033], + [53073,0.042], + [53075,0.023], + [53077,0.045], + [54001,0.005], + [54003,0.032], + [54005,0.025], + [54007,0.004], + [54009,0.029], + [54011,0.026], + [54013,0.009], + [54015,0], + [54017,0.069], + [54019,0.017], + [54021,0.137], + [54023,0.052], + [54025,0.011], + [54027,0.084], + [54029,0.037], + [54031,0.017], + [54033,0.038], + [54035,0.02], + [54037,0.029], + [54039,0.022], + [54041,0.024], + [54043,0.032], + [54045,0.053], + [54047,0.011], + [54049,0.018], + [54051,0.062], + [54053,0.021], + [54055,0.034], + [54057,0.022], + [54059,0.003], + [54061,0.025], + [54063,0.054], + [54065,0.076], + [54067,0.024], + [54069,0.018], + [54071,0.037], + [54073,0.002], + [54075,0.015], + [54077,0.024], + [54079,0.027], + [54081,0.05], + [54083,0.043], + [54085,0.059], + [54087,0.018], + [54089,0.008], + [54091,0.022], + [54093,0.019], + [54095,0.031], + [54097,0.03], + [54099,0.073], + [54101,0.031], + [54103,0.019], + [54105,0.007], + [54107,0.017], + [54109,0.049], + [55001,0.043], + [55003,0.015], + [55005,0.061], + [55007,0.038], + [55009,0.038], + [55011,0.036], + [55013,0.055], + [55015,0.015], + [55017,0.048], + [55019,0.331], + [55021,0.044], + [55023,0.061], + [55025,0.018], + [55027,0.018], + [55029,0.016], + [55031,0.04], + [55033,0.053], + [55035,0.052], + [55037,0.019], + [55039,0.027], + [55041,0.111], + [55043,0.074], + [55045,0.019], + [55047,0.16], + [55049,0.028], + [55051,0.042], + [55053,0.095], + [55055,0.02], + [55057,0.025], + [55059,0.031], + [55061,0.012], + [55063,0.033], + [55065,0.095], + [55067,0.064], + [55069,0.029], + [55071,0.027], + [55073,0.058], + [55075,0.026], + [55077,0.048], + [55078,0.235], + [55079,0.027], + [55081,0.103], + [55083,0.033], + [55085,0.046], + [55087,0.032], + [55089,0.021], + [55091,0.101], + [55093,0.04], + [55095,0.048], + [55097,0.025], + [55099,0.034], + [55101,0.026], + [55103,0.11], + [55105,0.03], + [55107,0.081], + [55109,0.03], + [55111,0.049], + [55113,0.062], + [55115,0.068], + [55117,0.024], + [55119,0.089], + [55121,0.086], + [55123,0.221], + [55125,0.055], + [55127,0.041], + [55129,0.03], + [55131,0.03], + [55133,0.015], + [55135,0.048], + [55137,0.082], + [55139,0.039], + [55141,0.03], + [56001,0.055], + [56003,0.083], + [56005,0.071], + [56007,0.093], + [56009,0.058], + [56011,0.07], + [56013,0.177], + [56015,0.087], + [56017,0.176], + [56019,0.145], + [56021,0.041], + [56023,0.1], + [56025,0.088], + [56027,0.123], + [56029,0.115], + [56031,0.016], + [56033,0.076], + [56035,0.158], + [56037,0.092], + [56039,0.101], + [56041,0.068], + [56043,0.07], + [56045,0.086] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-under6-2017.json b/data/regional/united-states/health/insurance/us-health-uninsured-under6-2017.json new file mode 100644 index 0000000..1f686d3 --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-under6-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Under 6 Uninsured", + "description" : "Percent of the population under the age of 6 that are uninsured.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.uninsured.under6.2017"], + [1001,0.011], + [1003,0.024], + [1005,0.041], + [1007,0.027], + [1009,0.039], + [1011,0], + [1013,0.015], + [1015,0.003], + [1017,0.06], + [1019,0.018], + [1021,0.037], + [1023,0], + [1025,0.017], + [1027,0.125], + [1029,0.043], + [1031,0.046], + [1033,0.02], + [1035,0.065], + [1037,0.02], + [1039,0.05], + [1041,0.002], + [1043,0.045], + [1045,0.029], + [1047,0.014], + [1049,0.019], + [1051,0.022], + [1053,0.083], + [1055,0.024], + [1057,0.001], + [1059,0.079], + [1061,0.017], + [1063,0.059], + [1065,0.023], + [1067,0.009], + [1069,0.021], + [1071,0.01], + [1073,0.04], + [1075,0.144], + [1077,0.017], + [1079,0.036], + [1081,0.017], + [1083,0.024], + [1085,0.06], + [1087,0.025], + [1089,0.021], + [1091,0.014], + [1093,0.025], + [1095,0.022], + [1097,0.03], + [1099,0.052], + [1101,0.013], + [1103,0.039], + [1105,0], + [1107,0], + [1109,0.019], + [1111,0.005], + [1113,0.041], + [1115,0.019], + [1117,0.035], + [1119,0.035], + [1121,0.007], + [1123,0.006], + [1125,0.017], + [1127,0.016], + [1129,0.034], + [1131,0.028], + [1133,0.097], + [2013,0.317], + [2016,0.327], + [2020,0.095], + [2050,0.08], + [2060,0.258], + [2068,0.129], + [2070,0.065], + [2090,0.078], + [2100,0.164], + [2105,0.094], + [2110,0.059], + [2122,0.118], + [2130,0.083], + [2150,0.143], + [2158,null], + [2164,0.181], + [2170,0.112], + [2180,0.135], + [2185,0.236], + [2188,0.157], + [2195,0.13], + [2198,0.206], + [2220,0.213], + [2230,0.14], + [2240,0.082], + [2261,0.14], + [2275,0.136], + [2282,0.038], + [2290,0.113], + [4001,0.185], + [4003,0.033], + [4005,0.092], + [4007,0.095], + [4009,0.054], + [4011,0.103], + [4012,0.051], + [4013,0.072], + [4015,0.089], + [4017,0.084], + [4019,0.073], + [4021,0.073], + [4023,0.041], + [4025,0.104], + [4027,0.091], + [5001,0], + [5003,0.069], + [5005,0.064], + [5007,0.024], + [5009,0.041], + [5011,0.078], + [5013,0.014], + [5015,0.075], + [5017,0.004], + [5019,0.022], + [5021,0.004], + [5023,0.18], + [5025,0.024], + [5027,0.009], + [5029,0.052], + [5031,0.023], + [5033,0.07], + [5035,0.055], + [5037,0.007], + [5039,0.031], + [5041,0.038], + [5043,0], + [5045,0.048], + [5047,0.02], + [5049,0.057], + [5051,0.066], + [5053,0.022], + [5055,0.024], + [5057,0.055], + [5059,0.036], + [5061,0.021], + [5063,0.035], + [5065,0.003], + [5067,0.044], + [5069,0.036], + [5071,0.028], + [5073,0.035], + [5075,0.019], + [5077,0.01], + [5079,0.011], + [5081,0.01], + [5083,0.019], + [5085,0.029], + [5087,0.029], + [5089,0.006], + [5091,0.085], + [5093,0.033], + [5095,0.041], + [5097,0.024], + [5099,0.005], + [5101,0.046], + [5103,0.032], + [5105,0.003], + [5107,0.048], + [5109,0.026], + [5111,0.018], + [5113,0.019], + [5115,0.024], + [5117,0.07], + [5119,0.055], + [5121,0.002], + [5123,0.03], + [5125,0.039], + [5127,0.018], + [5129,0.03], + [5131,0.066], + [5133,0.048], + [5135,0.056], + [5137,0], + [5139,0.035], + [5141,0.026], + [5143,0.059], + [5145,0.024], + [5147,0], + [5149,0.038], + [6001,0.028], + [6003,0], + [6005,0.021], + [6007,0.035], + [6009,0.029], + [6011,0.03], + [6013,0.02], + [6015,0.023], + [6017,0.032], + [6019,0.026], + [6021,0.035], + [6023,0.075], + [6025,0.052], + [6027,0.034], + [6029,0.031], + [6031,0.029], + [6033,0.065], + [6035,0.072], + [6037,0.035], + [6039,0.034], + [6041,0.021], + [6043,0], + [6045,0.032], + [6047,0.025], + [6049,0.157], + [6051,0], + [6053,0.052], + [6055,0.042], + [6057,0.05], + [6059,0.031], + [6061,0.028], + [6063,0.032], + [6065,0.049], + [6067,0.026], + [6069,0.037], + [6071,0.035], + [6073,0.038], + [6075,0.009], + [6077,0.03], + [6079,0.047], + [6081,0.025], + [6083,0.038], + [6085,0.016], + [6087,0.021], + [6089,0.049], + [6091,0], + [6093,0.027], + [6095,0.025], + [6097,0.027], + [6099,0.029], + [6101,0.042], + [6103,0.029], + [6105,0.16], + [6107,0.026], + [6109,0.03], + [6111,0.035], + [6113,0.034], + [6115,0.034], + [8001,0.053], + [8003,0.056], + [8005,0.049], + [8007,0.02], + [8009,0.036], + [8011,0.034], + [8013,0.022], + [8014,0.011], + [8015,0.056], + [8017,0.102], + [8019,0.064], + [8021,0.152], + [8023,0.033], + [8025,0.161], + [8027,0.095], + [8029,0.078], + [8031,0.03], + [8033,0.098], + [8035,0.021], + [8037,0.096], + [8039,0.023], + [8041,0.026], + [8043,0.052], + [8045,0.113], + [8047,0.115], + [8049,0.039], + [8051,0.014], + [8053,0], + [8055,0.096], + [8057,0], + [8059,0.031], + [8061,0.112], + [8063,0.058], + [8065,0.09], + [8067,0.089], + [8069,0.037], + [8071,0.045], + [8073,0.028], + [8075,0.139], + [8077,0.04], + [8079,0], + [8081,0.111], + [8083,0.075], + [8085,0.096], + [8087,0.049], + [8089,0.044], + [8091,0.038], + [8093,0.04], + [8095,0.089], + [8097,0.061], + [8099,0.07], + [8101,0.012], + [8103,0.103], + [8105,0.042], + [8107,0.009], + [8109,0.138], + [8111,0], + [8113,0], + [8115,0], + [8117,0.115], + [8119,0.185], + [8121,0.007], + [8123,0.041], + [8125,0.068], + [9001,0.055], + [9003,0.024], + [9005,0.027], + [9007,0.018], + [9009,0.02], + [9011,0.009], + [9013,0.028], + [9015,0.019], + [10001,0.053], + [10003,0.028], + [10005,0.049], + [11001,0.017], + [12001,0.039], + [12003,0.151], + [12005,0.044], + [12007,0.075], + [12009,0.049], + [12011,0.068], + [12013,0.067], + [12015,0.099], + [12017,0.09], + [12019,0.046], + [12021,0.084], + [12023,0.077], + [12027,0.097], + [12029,0], + [12031,0.049], + [12033,0.04], + [12035,0.151], + [12037,0.082], + [12039,0.014], + [12041,0.092], + [12043,0.101], + [12045,0.139], + [12047,0.079], + [12049,0.053], + [12051,0.145], + [12053,0.06], + [12055,0.077], + [12057,0.047], + [12059,0.038], + [12061,0.085], + [12063,0.022], + [12065,0.021], + [12067,0.04], + [12069,0.056], + [12071,0.075], + [12073,0.039], + [12075,0.061], + [12077,0.074], + [12079,0.05], + [12081,0.047], + [12083,0.043], + [12085,0.071], + [12086,0.049], + [12087,0.089], + [12089,0.056], + [12091,0.052], + [12093,0.081], + [12095,0.075], + [12097,0.088], + [12099,0.074], + [12101,0.065], + [12103,0.059], + [12105,0.055], + [12107,0.043], + [12109,0.055], + [12111,0.052], + [12113,0.038], + [12115,0.074], + [12117,0.067], + [12119,0.139], + [12121,0.03], + [12123,0.021], + [12125,0.004], + [12127,0.057], + [12129,0.045], + [12131,0.096], + [12133,0.091], + [13001,0.035], + [13003,0.057], + [13005,0.033], + [13007,0.022], + [13009,0.03], + [13011,0.093], + [13013,0.048], + [13015,0.089], + [13017,0.108], + [13019,0.166], + [13021,0.051], + [13023,0.057], + [13025,0.025], + [13027,0.184], + [13029,0.048], + [13031,0.051], + [13033,0.036], + [13035,0.055], + [13037,0.057], + [13039,0.048], + [13043,0.182], + [13045,0.043], + [13047,0.1], + [13049,0.173], + [13051,0.065], + [13053,0.034], + [13055,0.052], + [13057,0.042], + [13059,0.086], + [13061,0.266], + [13063,0.069], + [13065,0.188], + [13067,0.066], + [13069,0.121], + [13071,0.09], + [13073,0.035], + [13075,0.043], + [13077,0.032], + [13079,0.118], + [13081,0.13], + [13083,0.074], + [13085,0.072], + [13087,0.034], + [13089,0.064], + [13091,0.013], + [13093,0.043], + [13095,0.034], + [13097,0.044], + [13099,0.023], + [13101,0], + [13103,0.019], + [13105,0.049], + [13107,0.053], + [13109,0.019], + [13111,0.05], + [13113,0.039], + [13115,0.046], + [13117,0.061], + [13119,0.135], + [13121,0.047], + [13123,0.169], + [13125,0], + [13127,0.069], + [13129,0.054], + [13131,0.025], + [13133,0.041], + [13135,0.084], + [13137,0.126], + [13139,0.09], + [13141,0], + [13143,0.045], + [13145,0.011], + [13147,0.085], + [13149,0.053], + [13151,0.049], + [13153,0.047], + [13155,0.215], + [13157,0.043], + [13159,0.029], + [13161,0.142], + [13163,0.105], + [13165,0.009], + [13167,0.086], + [13169,0.077], + [13171,0.068], + [13173,0.129], + [13175,0.051], + [13177,0.043], + [13179,0.029], + [13181,0.077], + [13183,0.045], + [13185,0.077], + [13187,0.055], + [13189,0.166], + [13191,0.167], + [13193,0.02], + [13195,0.042], + [13197,0.078], + [13199,0.02], + [13201,0.013], + [13205,0.073], + [13207,0.042], + [13209,0.023], + [13211,0.08], + [13213,0.132], + [13215,0.036], + [13217,0.028], + [13219,0.034], + [13221,0.051], + [13223,0.081], + [13225,0.041], + [13227,0.09], + [13229,0.073], + [13231,0.034], + [13233,0.091], + [13235,0.039], + [13237,0.122], + [13239,0.364], + [13241,0.103], + [13243,0.003], + [13245,0.039], + [13247,0.073], + [13249,0.095], + [13251,0.052], + [13253,0], + [13255,0.07], + [13257,0.085], + [13259,0], + [13261,0.023], + [13263,0.154], + [13265,0.043], + [13267,0.092], + [13269,0.025], + [13271,0.019], + [13273,0.036], + [13275,0.041], + [13277,0.095], + [13279,0.052], + [13281,0.039], + [13283,0.125], + [13285,0.039], + [13287,0.036], + [13289,0.058], + [13291,0.079], + [13293,0.03], + [13295,0.109], + [13297,0.02], + [13299,0.121], + [13301,0.043], + [13303,0.005], + [13305,0.08], + [13307,0.101], + [13309,0.094], + [13311,0.041], + [13313,0.099], + [13315,0.1], + [13317,0.034], + [13319,0.016], + [13321,0.005], + [15001,0.033], + [15003,0.019], + [15005,0], + [15007,0.019], + [15009,0.017], + [16001,0.038], + [16003,0.092], + [16005,0.027], + [16007,0.04], + [16009,0.075], + [16011,0.051], + [16013,0.01], + [16015,0.087], + [16017,0.041], + [16019,0.037], + [16021,0.176], + [16023,0], + [16025,0.055], + [16027,0.058], + [16029,0], + [16031,0.099], + [16033,0], + [16035,0.064], + [16037,0.027], + [16039,0.037], + [16041,0.12], + [16043,0.043], + [16045,0.099], + [16047,0.044], + [16049,0.085], + [16051,0.045], + [16053,0.104], + [16055,0.059], + [16057,0.047], + [16059,0.064], + [16061,0.146], + [16063,0.171], + [16065,0.044], + [16067,0.083], + [16069,0.051], + [16071,0.194], + [16073,0.096], + [16075,0.061], + [16077,0.003], + [16079,0.087], + [16081,0.045], + [16083,0.057], + [16085,0], + [16087,0.083], + [17001,0.045], + [17003,0.083], + [17005,0.034], + [17007,0.002], + [17009,0.043], + [17011,0.009], + [17013,0], + [17015,0.036], + [17017,0.016], + [17019,0.031], + [17021,0.025], + [17023,0.032], + [17025,0.033], + [17027,0.022], + [17029,0.028], + [17031,0.024], + [17033,0.057], + [17035,0], + [17037,0.031], + [17039,0.012], + [17041,0.166], + [17043,0.025], + [17045,0.09], + [17047,0], + [17049,0.017], + [17051,0.085], + [17053,0.071], + [17055,0.025], + [17057,0.029], + [17059,0], + [17061,0.084], + [17063,0.042], + [17065,0.133], + [17067,0.006], + [17069,0], + [17071,0.054], + [17073,0.002], + [17075,0.008], + [17077,0.062], + [17079,0.034], + [17081,0.051], + [17083,0.022], + [17085,0.01], + [17087,0.023], + [17089,0.023], + [17091,0.022], + [17093,0.013], + [17095,0.012], + [17097,0.021], + [17099,0.023], + [17101,0.063], + [17103,0.034], + [17105,0.051], + [17107,0.03], + [17109,0.006], + [17111,0.026], + [17113,0.01], + [17115,0.018], + [17117,0.022], + [17119,0.02], + [17121,0.019], + [17123,0.029], + [17125,0.004], + [17127,0.042], + [17129,0.002], + [17131,0.009], + [17133,0.034], + [17135,0.055], + [17137,0.013], + [17139,0.132], + [17141,0.014], + [17143,0.033], + [17145,0.004], + [17147,0.014], + [17149,0.045], + [17151,0], + [17153,0], + [17155,0.003], + [17157,0.052], + [17159,0.026], + [17161,0.027], + [17163,0.023], + [17165,0.025], + [17167,0.01], + [17169,0], + [17171,0.018], + [17173,0.002], + [17175,0.068], + [17177,0.018], + [17179,0.02], + [17181,0.108], + [17183,0.039], + [17185,0.013], + [17187,0.022], + [17189,0.019], + [17191,0.178], + [17193,0], + [17195,0.025], + [17197,0.024], + [17199,0.023], + [17201,0.026], + [17203,0.014], + [18001,0.353], + [18003,0.068], + [18005,0.108], + [18007,0.064], + [18009,0.014], + [18011,0.038], + [18013,0.012], + [18015,0.164], + [18017,0.05], + [18019,0.038], + [18021,0.044], + [18023,0.059], + [18025,0.047], + [18027,0.368], + [18029,0.023], + [18031,0.076], + [18033,0.108], + [18035,0.039], + [18037,0.022], + [18039,0.154], + [18041,0.052], + [18043,0.028], + [18045,0.077], + [18047,0.038], + [18049,0.221], + [18051,0.049], + [18053,0.032], + [18055,0.057], + [18057,0.048], + [18059,0.049], + [18061,0.079], + [18063,0.047], + [18065,0.034], + [18067,0.023], + [18069,0.075], + [18071,0.054], + [18073,0.045], + [18075,0.114], + [18077,0.032], + [18079,0.07], + [18081,0.048], + [18083,0.026], + [18085,0.094], + [18087,0.568], + [18089,0.048], + [18091,0.055], + [18093,0.044], + [18095,0.041], + [18097,0.052], + [18099,0.194], + [18101,0.134], + [18103,0.052], + [18105,0.029], + [18107,0.067], + [18109,0.034], + [18111,0.017], + [18113,0.069], + [18115,0.013], + [18117,0.046], + [18119,0.15], + [18121,0.207], + [18123,0.017], + [18125,0.042], + [18127,0.032], + [18129,0.012], + [18131,0.062], + [18133,0.025], + [18135,0.104], + [18137,0.019], + [18139,0.101], + [18141,0.038], + [18143,0.012], + [18145,0.126], + [18147,0.07], + [18149,0.03], + [18151,0.049], + [18153,0.08], + [18155,0.187], + [18157,0.037], + [18159,0.077], + [18161,0.174], + [18163,0.043], + [18165,0.03], + [18167,0.031], + [18169,0.028], + [18171,0.055], + [18173,0.024], + [18175,0.123], + [18177,0.116], + [18179,0.08], + [18181,0.058], + [18183,0.029], + [19001,0.03], + [19003,0.042], + [19005,0.07], + [19007,0.105], + [19009,0.039], + [19011,0.032], + [19013,0.058], + [19015,0.004], + [19017,0.002], + [19019,0.08], + [19021,0.015], + [19023,0.037], + [19025,0.011], + [19027,0.006], + [19029,0.019], + [19031,0.017], + [19033,0.031], + [19035,0.093], + [19037,0.082], + [19039,0.006], + [19041,0.017], + [19043,0.085], + [19045,0.018], + [19047,0.007], + [19049,0.047], + [19051,0.562], + [19053,0.158], + [19055,0.022], + [19057,0.026], + [19059,0.013], + [19061,0.02], + [19063,0.082], + [19065,0.049], + [19067,0.12], + [19069,0.051], + [19071,0.041], + [19073,0.002], + [19075,0.002], + [19077,0.033], + [19079,0.026], + [19081,0.036], + [19083,0.008], + [19085,0.05], + [19087,0.016], + [19089,0.038], + [19091,0.003], + [19093,0.004], + [19095,0.05], + [19097,0.034], + [19099,0.013], + [19101,0.015], + [19103,0.035], + [19105,0.02], + [19107,0.017], + [19109,0.041], + [19111,0.041], + [19113,0.022], + [19115,0.031], + [19117,0], + [19119,0.042], + [19121,0.053], + [19123,0.023], + [19125,0.002], + [19127,0.03], + [19129,0.023], + [19131,0.167], + [19133,0.025], + [19135,0.066], + [19137,0.038], + [19139,0.008], + [19141,0.079], + [19143,0.039], + [19145,0.033], + [19147,0.05], + [19149,0.017], + [19151,0.017], + [19153,0.021], + [19155,0.014], + [19157,0.054], + [19159,0.114], + [19161,0.006], + [19163,0.018], + [19165,0.022], + [19167,0.027], + [19169,0.021], + [19171,0.063], + [19173,0.013], + [19175,0.125], + [19177,0.211], + [19179,0.023], + [19181,0.009], + [19183,0.063], + [19185,0.208], + [19187,0.019], + [19189,0.048], + [19191,0.009], + [19193,0.021], + [19195,0.056], + [19197,0.005], + [20001,0.025], + [20003,0.062], + [20005,0.002], + [20007,0.121], + [20009,0.1], + [20011,0.102], + [20013,0.03], + [20015,0.035], + [20017,0.064], + [20019,0.009], + [20021,0.082], + [20023,0.03], + [20025,0.133], + [20027,0.007], + [20029,0.003], + [20031,0.074], + [20033,0.086], + [20035,0.063], + [20037,0.023], + [20039,0.227], + [20041,0.024], + [20043,0.019], + [20045,0.027], + [20047,0], + [20049,0.006], + [20051,0.011], + [20053,0.005], + [20055,0.066], + [20057,0.044], + [20059,0.084], + [20061,0.017], + [20063,0.051], + [20065,0.039], + [20067,0.089], + [20069,0.041], + [20071,0], + [20073,0.036], + [20075,0.132], + [20077,0.179], + [20079,0.048], + [20081,0.136], + [20083,0.119], + [20085,0.023], + [20087,0.013], + [20089,0], + [20091,0.026], + [20093,0], + [20095,0.011], + [20097,0.063], + [20099,0.137], + [20101,0.099], + [20103,0.026], + [20105,0.022], + [20107,0.065], + [20109,0], + [20111,0.064], + [20113,0.03], + [20115,0.013], + [20117,0.033], + [20119,0.159], + [20121,0.032], + [20123,0.009], + [20125,0.067], + [20127,0.065], + [20129,0], + [20131,0.04], + [20133,0.098], + [20135,0.164], + [20137,0], + [20139,0.136], + [20141,0.031], + [20143,0.032], + [20145,0], + [20147,0.017], + [20149,0.012], + [20151,0.042], + [20153,0.027], + [20155,0.029], + [20157,0.006], + [20159,0.057], + [20161,0.021], + [20163,0.057], + [20165,0], + [20167,0], + [20169,0.025], + [20171,0], + [20173,0.05], + [20175,0.063], + [20177,0.032], + [20179,0.037], + [20181,0.139], + [20183,0.063], + [20185,0.01], + [20187,0], + [20189,0.167], + [20191,0.047], + [20193,0.027], + [20195,0.133], + [20197,0.009], + [20199,0.074], + [20201,0.027], + [20203,0], + [20205,0.127], + [20207,0.008], + [20209,0.075], + [21001,0.039], + [21003,0.151], + [21005,0.018], + [21007,0.075], + [21009,0.047], + [21011,0.162], + [21013,0.082], + [21015,0.021], + [21017,0.012], + [21019,0.046], + [21021,0], + [21023,0.008], + [21025,0], + [21027,0.181], + [21029,0.044], + [21031,0.054], + [21033,0.009], + [21035,0.032], + [21037,0.04], + [21039,0], + [21041,0], + [21043,0.081], + [21045,0.083], + [21047,0.081], + [21049,0.044], + [21051,0.096], + [21053,0.101], + [21055,0.115], + [21057,0.015], + [21059,0.022], + [21061,0.022], + [21063,0.036], + [21065,0.005], + [21067,0.037], + [21069,0.189], + [21071,0.005], + [21073,0.073], + [21075,0], + [21077,0.112], + [21079,0.049], + [21081,0.005], + [21083,0.074], + [21085,0.06], + [21087,0.033], + [21089,0.026], + [21091,0.03], + [21093,0.031], + [21095,0.018], + [21097,0.15], + [21099,0.188], + [21101,0.032], + [21103,0.028], + [21105,0], + [21107,0.082], + [21109,0.013], + [21111,0.02], + [21113,0.017], + [21115,0.025], + [21117,0.042], + [21119,0.009], + [21121,0.021], + [21123,0.034], + [21125,0.025], + [21127,0.036], + [21129,0.013], + [21131,0.02], + [21133,0.031], + [21135,0.016], + [21137,0.066], + [21139,0.015], + [21141,0.031], + [21143,0.163], + [21145,0.023], + [21147,0.048], + [21149,0.012], + [21151,0.026], + [21153,0], + [21155,0.048], + [21157,0.026], + [21159,0.021], + [21161,0.06], + [21163,0.035], + [21165,0], + [21167,0.047], + [21169,0.058], + [21171,0.077], + [21173,0.02], + [21175,0.039], + [21177,0.063], + [21179,0.027], + [21181,0.134], + [21183,0.018], + [21185,0.011], + [21187,0.076], + [21189,0], + [21191,0.044], + [21193,0.006], + [21195,0.015], + [21197,0.066], + [21199,0.033], + [21201,0.115], + [21203,0], + [21205,0.047], + [21207,0.028], + [21209,0.051], + [21211,0.042], + [21213,0.036], + [21215,0.01], + [21217,0.021], + [21219,0.11], + [21221,0.206], + [21223,0.03], + [21225,0], + [21227,0.019], + [21229,0.093], + [21231,0.086], + [21233,0.048], + [21235,0.019], + [21237,0], + [21239,0.054], + [22001,0.049], + [22003,0.072], + [22005,0.016], + [22007,0.028], + [22009,0.088], + [22011,0.044], + [22013,0.054], + [22015,0.044], + [22017,0.025], + [22019,0.025], + [22021,0.134], + [22023,0], + [22025,0.257], + [22027,0.009], + [22029,0.356], + [22031,0.018], + [22033,0.023], + [22035,0.023], + [22037,0.002], + [22039,0.013], + [22041,0.113], + [22043,0.011], + [22045,0.023], + [22047,0.035], + [22049,0.002], + [22051,0.04], + [22053,0.032], + [22055,0.049], + [22057,0.018], + [22059,0.052], + [22061,0.031], + [22063,0.056], + [22065,0.299], + [22067,0.021], + [22069,0.055], + [22071,0.036], + [22073,0.021], + [22075,0.009], + [22077,0.062], + [22079,0.029], + [22081,0], + [22083,0.223], + [22085,0.004], + [22087,0.081], + [22089,0.013], + [22091,0.015], + [22093,0.065], + [22095,0.033], + [22097,0.053], + [22099,0.04], + [22101,0.016], + [22103,0.032], + [22105,0.024], + [22107,0.214], + [22109,0.048], + [22111,0.007], + [22113,0.013], + [22115,0.015], + [22117,0.061], + [22119,0.034], + [22121,0.042], + [22123,0.321], + [22125,0.045], + [22127,0], + [23001,0.059], + [23003,0.045], + [23005,0.053], + [23007,0.071], + [23009,0.12], + [23011,0.032], + [23013,0.047], + [23015,0.089], + [23017,0.034], + [23019,0.049], + [23021,0.036], + [23023,0.032], + [23025,0.051], + [23027,0.07], + [23029,0.085], + [23031,0.043], + [24001,0.019], + [24003,0.025], + [24005,0.028], + [24009,0.05], + [24011,0.033], + [24013,0.012], + [24015,0.01], + [24017,0.037], + [24019,0.04], + [24021,0.025], + [24023,0.064], + [24025,0.018], + [24027,0.031], + [24029,0.03], + [24031,0.029], + [24033,0.041], + [24035,0.024], + [24037,0.047], + [24039,0.04], + [24041,0.025], + [24043,0.064], + [24045,0.025], + [24047,0.063], + [24510,0.036], + [25001,0.019], + [25003,0.006], + [25005,0.01], + [25007,0.01], + [25009,0.018], + [25011,0.01], + [25013,0.011], + [25015,0.02], + [25017,0.014], + [25019,0], + [25021,0.006], + [25023,0.01], + [25025,0.014], + [25027,0.012], + [26001,0.025], + [26003,0.039], + [26005,0.016], + [26007,0.035], + [26009,0.035], + [26011,0.025], + [26013,0.056], + [26015,0.026], + [26017,0.016], + [26019,0.059], + [26021,0.048], + [26023,0.144], + [26025,0.023], + [26027,0.073], + [26029,0.045], + [26031,0.033], + [26033,0.014], + [26035,0.171], + [26037,0.002], + [26039,0.068], + [26041,0.09], + [26043,0.044], + [26045,0.016], + [26047,0.035], + [26049,0.02], + [26051,0.221], + [26053,0.058], + [26055,0.043], + [26057,0.034], + [26059,0.083], + [26061,0.014], + [26063,0.044], + [26065,0.029], + [26067,0.033], + [26069,0.082], + [26071,0.053], + [26073,0.062], + [26075,0.038], + [26077,0.03], + [26079,0.04], + [26081,0.025], + [26083,0], + [26085,0.113], + [26087,0.036], + [26089,0.006], + [26091,0.022], + [26093,0.011], + [26095,0.033], + [26097,0.146], + [26099,0.032], + [26101,0.07], + [26103,0.031], + [26105,0.041], + [26107,0.034], + [26109,0.035], + [26111,0.024], + [26113,0.074], + [26115,0.019], + [26117,0.08], + [26119,0.074], + [26121,0.016], + [26123,0.063], + [26125,0.023], + [26127,0.068], + [26129,0.073], + [26131,0.258], + [26133,0.16], + [26135,0.247], + [26137,0.006], + [26139,0.017], + [26141,0.082], + [26143,0.065], + [26145,0.022], + [26147,0.016], + [26149,0.085], + [26151,0.147], + [26153,0.047], + [26155,0.024], + [26157,0.016], + [26159,0.04], + [26161,0.019], + [26163,0.025], + [26165,0.049], + [27001,0.007], + [27003,0.028], + [27005,0.093], + [27007,0.112], + [27009,0.037], + [27011,0.025], + [27013,0.012], + [27015,0.038], + [27017,0.034], + [27019,0.026], + [27021,0.055], + [27023,0.016], + [27025,0.026], + [27027,0.039], + [27029,0.106], + [27031,0.067], + [27033,0.003], + [27035,0.052], + [27037,0.027], + [27039,0.059], + [27041,0.02], + [27043,0.019], + [27045,0.16], + [27047,0.022], + [27049,0.053], + [27051,0.055], + [27053,0.037], + [27055,0.016], + [27057,0.077], + [27059,0.027], + [27061,0.04], + [27063,0.013], + [27065,0.067], + [27067,0.045], + [27069,0], + [27071,0.017], + [27073,0.028], + [27075,0.017], + [27077,0], + [27079,0.017], + [27081,0.083], + [27083,0.058], + [27085,0.017], + [27087,0.138], + [27089,0.026], + [27091,0.032], + [27093,0.098], + [27095,0.065], + [27097,0.033], + [27099,0.036], + [27101,0.024], + [27103,0.016], + [27105,0.064], + [27107,0.075], + [27109,0.021], + [27111,0.08], + [27113,0.012], + [27115,0.062], + [27117,0.052], + [27119,0.088], + [27121,0.023], + [27123,0.029], + [27125,0.033], + [27127,0.047], + [27129,0.025], + [27131,0.066], + [27133,0.066], + [27135,0.042], + [27137,0.021], + [27139,0.022], + [27141,0.021], + [27143,0.019], + [27145,0.03], + [27147,0.021], + [27149,0], + [27151,0.035], + [27153,0.176], + [27155,0.107], + [27157,0.027], + [27159,0.036], + [27161,0.03], + [27163,0.027], + [27165,0.134], + [27167,0.028], + [27169,0.063], + [27171,0.031], + [27173,0.077], + [28001,0.091], + [28003,0.114], + [28005,0.009], + [28007,0.013], + [28009,0.196], + [28011,0.08], + [28013,0], + [28015,0], + [28017,0.015], + [28019,0], + [28021,0.028], + [28023,0], + [28025,0.082], + [28027,0.038], + [28029,0.041], + [28031,0.018], + [28033,0.039], + [28035,0.066], + [28037,0.114], + [28039,0.079], + [28041,0.038], + [28043,0], + [28045,0.125], + [28047,0.053], + [28049,0.025], + [28051,0.075], + [28053,0.072], + [28055,0.127], + [28057,0.022], + [28059,0.052], + [28061,0.01], + [28063,0], + [28065,0.011], + [28067,0.031], + [28069,0.007], + [28071,0.035], + [28073,0.006], + [28075,0.053], + [28077,0.092], + [28079,0.08], + [28081,0.048], + [28083,0.058], + [28085,0.023], + [28087,0.037], + [28089,0.018], + [28091,0], + [28093,0.047], + [28095,0.006], + [28097,0], + [28099,0.014], + [28101,0.106], + [28103,0.01], + [28105,0.112], + [28107,0.012], + [28109,0.109], + [28111,0.066], + [28113,0.015], + [28115,0.069], + [28117,0.006], + [28119,0.045], + [28121,0.049], + [28123,0.01], + [28125,0.074], + [28127,0.027], + [28129,0.034], + [28131,0], + [28133,0.032], + [28135,0.025], + [28137,0.035], + [28139,0.056], + [28141,0.002], + [28143,0.025], + [28145,0.025], + [28147,0.168], + [28149,0.08], + [28151,0.097], + [28153,0.01], + [28155,0.026], + [28157,0.017], + [28159,0.029], + [28161,0], + [28163,0.017], + [29001,0.085], + [29003,0.064], + [29005,0.027], + [29007,0.074], + [29009,0.125], + [29011,0.028], + [29013,0.104], + [29015,0.091], + [29017,0.04], + [29019,0.026], + [29021,0.054], + [29023,0.025], + [29025,0.053], + [29027,0.05], + [29029,0.1], + [29031,0.025], + [29033,0.015], + [29035,0.086], + [29037,0.042], + [29039,0.019], + [29041,0.014], + [29043,0.043], + [29045,0.162], + [29047,0.028], + [29049,0.023], + [29051,0.04], + [29053,0.025], + [29055,0.164], + [29057,0.153], + [29059,0.338], + [29061,0.253], + [29063,0.04], + [29065,0.208], + [29067,0.009], + [29069,0.039], + [29071,0.04], + [29073,0.004], + [29075,0.056], + [29077,0.067], + [29079,0.158], + [29081,0.163], + [29083,0.116], + [29085,0.207], + [29087,0.032], + [29089,0.016], + [29091,0.101], + [29093,0.146], + [29095,0.063], + [29097,0.057], + [29099,0.027], + [29101,0.037], + [29103,0.188], + [29105,0.073], + [29107,0.029], + [29109,0.135], + [29111,0.211], + [29113,0.03], + [29115,0.13], + [29117,0.055], + [29119,0.142], + [29121,0.17], + [29123,0.035], + [29125,0.122], + [29127,0.028], + [29129,0.187], + [29131,0.098], + [29133,0.088], + [29135,0.198], + [29137,0.095], + [29139,0.021], + [29141,0.266], + [29143,0.043], + [29145,0.115], + [29147,0.069], + [29149,0.106], + [29151,0], + [29153,0.015], + [29155,0.061], + [29157,0.069], + [29159,0.046], + [29161,0.023], + [29163,0.08], + [29165,0.049], + [29167,0.122], + [29169,0.036], + [29171,0.08], + [29173,0], + [29175,0.021], + [29177,0.02], + [29179,0], + [29181,0.027], + [29183,0.039], + [29185,0.074], + [29186,0.004], + [29187,0.041], + [29189,0.035], + [29195,0.016], + [29197,0.052], + [29199,0.429], + [29201,0.015], + [29203,0.091], + [29205,0.115], + [29207,0.034], + [29209,0.029], + [29211,0.121], + [29213,0.099], + [29215,0.089], + [29217,0.136], + [29219,0.046], + [29221,0.014], + [29223,0.026], + [29225,0.153], + [29227,0.085], + [29229,0.154], + [29510,0.047], + [30001,0.014], + [30003,0.36], + [30005,0.031], + [30007,0.2], + [30009,0.026], + [30011,0.175], + [30013,0.039], + [30015,0.104], + [30017,0.042], + [30019,0], + [30021,0.029], + [30023,0.056], + [30025,0.039], + [30027,0.012], + [30029,0.032], + [30031,0.048], + [30033,0.125], + [30035,0.216], + [30037,0.038], + [30039,0.037], + [30041,0.03], + [30043,0.05], + [30045,0], + [30047,0.133], + [30049,0.019], + [30051,0], + [30053,0.064], + [30055,0.073], + [30057,0.069], + [30059,0.145], + [30061,0.186], + [30063,0.026], + [30065,0.031], + [30067,0.024], + [30069,0], + [30071,0.339], + [30073,0.079], + [30075,0.056], + [30077,0.062], + [30079,0], + [30081,0.065], + [30083,0.107], + [30085,0.112], + [30087,0.228], + [30089,0.068], + [30091,0.073], + [30093,0.022], + [30095,0.093], + [30097,0], + [30099,0.026], + [30101,0.067], + [30103,0], + [30105,0.026], + [30107,0.071], + [30109,0], + [30111,0.048], + [31001,0.027], + [31003,0.047], + [31005,0.074], + [31007,0], + [31009,0.091], + [31011,0.046], + [31013,0.031], + [31015,0.129], + [31017,0.058], + [31019,0.039], + [31021,0.067], + [31023,0.018], + [31025,0.031], + [31027,0.049], + [31029,0.034], + [31031,0.076], + [31033,0.019], + [31035,0.06], + [31037,0.056], + [31039,0.039], + [31041,0.076], + [31043,0.093], + [31045,0.166], + [31047,0.108], + [31049,0.053], + [31051,0.037], + [31053,0.058], + [31055,0.041], + [31057,0.08], + [31059,0.114], + [31061,0.034], + [31063,0.184], + [31065,0], + [31067,0.007], + [31069,0.108], + [31071,0.052], + [31073,0.039], + [31075,0.306], + [31077,0.038], + [31079,0.054], + [31081,0.039], + [31083,0.105], + [31085,0], + [31087,0.027], + [31089,0.032], + [31091,0], + [31093,0.011], + [31095,0.036], + [31097,0], + [31099,0.013], + [31101,0.037], + [31103,0], + [31105,0.085], + [31107,0.075], + [31109,0.039], + [31111,0.057], + [31113,0.136], + [31115,0.106], + [31117,0], + [31119,0.022], + [31121,0.02], + [31123,0], + [31125,0.023], + [31127,0.034], + [31129,0.095], + [31131,0.1], + [31133,0.211], + [31135,0], + [31137,0.045], + [31139,0.014], + [31141,0.031], + [31143,0.074], + [31145,0.015], + [31147,0.019], + [31149,0.293], + [31151,0.083], + [31153,0.027], + [31155,0.008], + [31157,0.076], + [31159,0.049], + [31161,0.09], + [31163,0.03], + [31165,0], + [31167,0.05], + [31169,0.006], + [31171,0.033], + [31173,0.202], + [31175,0.075], + [31177,0.001], + [31179,0.044], + [31181,0.034], + [31183,0.045], + [31185,0.037], + [32001,0.042], + [32003,0.075], + [32005,0.143], + [32007,0.063], + [32009,0], + [32011,0.113], + [32013,0.121], + [32015,0.026], + [32017,0], + [32019,0.065], + [32021,0.093], + [32023,0.036], + [32027,0.234], + [32029,0], + [32031,0.078], + [32033,0.038], + [32510,0.051], + [33001,0.003], + [33003,0.097], + [33005,0.062], + [33007,0.051], + [33009,0.082], + [33011,0.017], + [33013,0.02], + [33015,0.03], + [33017,0.028], + [33019,0.043], + [34001,0.053], + [34003,0.043], + [34005,0.016], + [34007,0.024], + [34009,0.046], + [34011,0.039], + [34013,0.048], + [34015,0.024], + [34017,0.039], + [34019,0.023], + [34021,0.022], + [34023,0.022], + [34025,0.022], + [34027,0.015], + [34029,0.027], + [34031,0.041], + [34033,0.034], + [34035,0.034], + [34037,0.031], + [34039,0.041], + [34041,0.027], + [35001,0.027], + [35003,0.216], + [35005,0.045], + [35006,0.053], + [35007,0.076], + [35009,0.055], + [35011,0], + [35013,0.048], + [35015,0.066], + [35017,0.01], + [35019,0.035], + [35021,0], + [35023,0.083], + [35025,0.06], + [35027,0.037], + [35028,0], + [35029,0.04], + [35031,0.104], + [35033,0.092], + [35035,0.026], + [35037,0.013], + [35039,0.118], + [35041,0.058], + [35043,0.061], + [35045,0.088], + [35047,0.064], + [35049,0.025], + [35051,0], + [35053,0.031], + [35055,0.017], + [35057,0.005], + [35059,0.148], + [35061,0.029], + [36001,0.015], + [36003,0.135], + [36005,0.027], + [36007,0.016], + [36009,0.115], + [36011,0.069], + [36013,0.072], + [36015,0.023], + [36017,0.033], + [36019,0.008], + [36021,0.02], + [36023,0.06], + [36025,0.055], + [36027,0.018], + [36029,0.016], + [36031,0.019], + [36033,0.092], + [36035,0.049], + [36037,0.042], + [36039,0.006], + [36041,0.027], + [36043,0.078], + [36045,0.033], + [36047,0.023], + [36049,0.048], + [36051,0.009], + [36053,0.026], + [36055,0.021], + [36057,0.147], + [36059,0.028], + [36061,0.02], + [36063,0.023], + [36065,0.032], + [36067,0.033], + [36069,0.039], + [36071,0.019], + [36073,0.12], + [36075,0.056], + [36077,0.044], + [36079,0.012], + [36081,0.029], + [36083,0.023], + [36085,0.02], + [36087,0.028], + [36089,0.108], + [36091,0.017], + [36093,0.027], + [36095,0.022], + [36097,0.023], + [36099,0.146], + [36101,0.075], + [36103,0.024], + [36105,0.026], + [36107,0.011], + [36109,0.037], + [36111,0.027], + [36113,0.019], + [36115,0.035], + [36117,0.043], + [36119,0.019], + [36121,0.044], + [36123,0.412], + [37001,0.033], + [37003,0.024], + [37005,0.049], + [37007,0.043], + [37009,0.009], + [37011,0.009], + [37013,0.019], + [37015,0.01], + [37017,0.067], + [37019,0.041], + [37021,0.026], + [37023,0.035], + [37025,0.034], + [37027,0.033], + [37029,0], + [37031,0.05], + [37033,0.034], + [37035,0.018], + [37037,0.054], + [37039,0.069], + [37041,0], + [37043,0.004], + [37045,0.042], + [37047,0.038], + [37049,0.051], + [37051,0.032], + [37053,0.05], + [37055,0.079], + [37057,0.025], + [37059,0.093], + [37061,0.028], + [37063,0.052], + [37065,0.011], + [37067,0.021], + [37069,0.067], + [37071,0.05], + [37073,0.002], + [37075,0.026], + [37077,0.014], + [37079,0.041], + [37081,0.035], + [37083,0.044], + [37085,0.029], + [37087,0.059], + [37089,0.039], + [37091,0.011], + [37093,0.012], + [37095,0.063], + [37097,0.036], + [37099,0.009], + [37101,0.027], + [37103,0.033], + [37105,0.03], + [37107,0.028], + [37109,0.05], + [37111,0.009], + [37113,0.047], + [37115,0.034], + [37117,0.009], + [37119,0.043], + [37121,0.093], + [37123,0.017], + [37125,0.024], + [37127,0.024], + [37129,0.035], + [37131,0.025], + [37133,0.026], + [37135,0.037], + [37137,0.057], + [37139,0.039], + [37141,0.008], + [37143,0.024], + [37145,0.033], + [37147,0.036], + [37149,0.02], + [37151,0.044], + [37153,0.025], + [37155,0.028], + [37157,0.049], + [37159,0.039], + [37161,0.042], + [37163,0.087], + [37165,0.05], + [37167,0.026], + [37169,0.027], + [37171,0.043], + [37173,0.067], + [37175,0.028], + [37177,0], + [37179,0.027], + [37181,0.003], + [37183,0.034], + [37185,0.026], + [37187,0.119], + [37189,0.03], + [37191,0.036], + [37193,0.026], + [37195,0.047], + [37197,0.034], + [37199,0], + [38001,0.13], + [38003,0.036], + [38005,0.067], + [38007,0], + [38009,0.004], + [38011,0], + [38013,0.068], + [38015,0.05], + [38017,0.049], + [38019,0.045], + [38021,0.01], + [38023,0], + [38025,0.18], + [38027,0.052], + [38029,0.018], + [38031,0.236], + [38033,0.266], + [38035,0.096], + [38037,0.031], + [38039,0], + [38041,0.01], + [38043,0], + [38045,0], + [38047,0], + [38049,0.012], + [38051,0.076], + [38053,0.227], + [38055,0.047], + [38057,0.147], + [38059,0.097], + [38061,0.293], + [38063,0], + [38065,0.423], + [38067,0.073], + [38069,0.005], + [38071,0.046], + [38073,0.054], + [38075,0.045], + [38077,0.045], + [38079,0.191], + [38081,0.07], + [38083,0.01], + [38085,0.26], + [38087,0], + [38089,0.08], + [38091,0], + [38093,0.069], + [38095,0.013], + [38097,0.051], + [38099,0.044], + [38101,0.049], + [38103,0.036], + [38105,0.13], + [39001,0.067], + [39003,0.051], + [39005,0.135], + [39007,0.133], + [39009,0.026], + [39011,0.014], + [39013,0.031], + [39015,0.054], + [39017,0.036], + [39019,0.097], + [39021,0.033], + [39023,0.024], + [39025,0.025], + [39027,0.052], + [39029,0.046], + [39031,0.229], + [39033,0.03], + [39035,0.024], + [39037,0.032], + [39039,0.058], + [39041,0.022], + [39043,0.024], + [39045,0.04], + [39047,0.031], + [39049,0.037], + [39051,0.021], + [39053,0.091], + [39055,0.184], + [39057,0.029], + [39059,0.075], + [39061,0.031], + [39063,0.05], + [39065,0.091], + [39067,0.17], + [39069,0.037], + [39071,0.059], + [39073,0.017], + [39075,0.556], + [39077,0.079], + [39079,0.01], + [39081,0.025], + [39083,0.099], + [39085,0.028], + [39087,0.023], + [39089,0.029], + [39091,0.106], + [39093,0.019], + [39095,0.027], + [39097,0.022], + [39099,0.017], + [39101,0.027], + [39103,0.062], + [39105,0.025], + [39107,0.012], + [39109,0.051], + [39111,0.088], + [39113,0.036], + [39115,0.075], + [39117,0.057], + [39119,0.025], + [39121,0.082], + [39123,0.024], + [39125,0.04], + [39127,0.061], + [39129,0.06], + [39131,0.023], + [39133,0.025], + [39135,0.085], + [39137,0.021], + [39139,0.102], + [39141,0.059], + [39143,0.034], + [39145,0.031], + [39147,0.009], + [39149,0.018], + [39151,0.044], + [39153,0.038], + [39155,0.059], + [39157,0.089], + [39159,0.025], + [39161,0.053], + [39163,0.094], + [39165,0.022], + [39167,0.031], + [39169,0.188], + [39171,0.017], + [39173,0.025], + [39175,0.048], + [40001,0.141], + [40003,0.03], + [40005,0.176], + [40007,0.063], + [40009,0.043], + [40011,0.047], + [40013,0.07], + [40015,0.127], + [40017,0.052], + [40019,0.061], + [40021,0.168], + [40023,0.202], + [40025,0.125], + [40027,0.042], + [40029,0.241], + [40031,0.056], + [40033,0.08], + [40035,0.102], + [40037,0.042], + [40039,0.101], + [40041,0.11], + [40043,0.067], + [40045,0.058], + [40047,0.038], + [40049,0.112], + [40051,0.052], + [40053,0.02], + [40055,0.045], + [40057,0.032], + [40059,0], + [40061,0.102], + [40063,0.188], + [40065,0.06], + [40067,0.075], + [40069,0.082], + [40071,0.056], + [40073,0.023], + [40075,0.063], + [40077,0.17], + [40079,0.104], + [40081,0.07], + [40083,0.056], + [40085,0.157], + [40087,0.08], + [40089,0.118], + [40091,0.089], + [40093,0.13], + [40095,0.062], + [40097,0.095], + [40099,0.173], + [40101,0.121], + [40103,0.062], + [40105,0.083], + [40107,0.179], + [40109,0.053], + [40111,0.124], + [40113,0.075], + [40115,0.08], + [40117,0.088], + [40119,0.075], + [40121,0.093], + [40123,0.169], + [40125,0.063], + [40127,0.089], + [40129,0.164], + [40131,0.055], + [40133,0.128], + [40135,0.118], + [40137,0.034], + [40139,0.039], + [40141,0.089], + [40143,0.052], + [40145,0.054], + [40147,0.064], + [40149,0.046], + [40151,0.03], + [40153,0.121], + [41001,0.042], + [41003,0.016], + [41005,0.036], + [41007,0.05], + [41009,0.048], + [41011,0.057], + [41013,0.019], + [41015,0.022], + [41017,0.05], + [41019,0.046], + [41021,0.195], + [41023,0.036], + [41025,0.083], + [41027,0.047], + [41029,0.048], + [41031,0.075], + [41033,0.02], + [41035,0.018], + [41037,0.004], + [41039,0.037], + [41041,0.057], + [41043,0.058], + [41045,0.037], + [41047,0.04], + [41049,0.077], + [41051,0.018], + [41053,0.025], + [41055,0.197], + [41057,0.022], + [41059,0.02], + [41061,0.088], + [41063,0], + [41065,0.032], + [41067,0.035], + [41069,0], + [41071,0.026], + [42001,0.052], + [42003,0.023], + [42005,0.033], + [42007,0.018], + [42009,0.063], + [42011,0.047], + [42013,0.031], + [42015,0.06], + [42017,0.016], + [42019,0.012], + [42021,0.036], + [42023,0.039], + [42025,0.021], + [42027,0.06], + [42029,0.052], + [42031,0.101], + [42033,0.036], + [42035,0.158], + [42037,0.028], + [42039,0.116], + [42041,0.07], + [42043,0.048], + [42045,0.03], + [42047,0.025], + [42049,0.032], + [42051,0.023], + [42053,0], + [42055,0.127], + [42057,0.113], + [42059,0.03], + [42061,0.048], + [42063,0.233], + [42065,0.149], + [42067,0.252], + [42069,0.023], + [42071,0.181], + [42073,0.036], + [42075,0.116], + [42077,0.046], + [42079,0.023], + [42081,0.037], + [42083,0.026], + [42085,0.094], + [42087,0.192], + [42089,0.057], + [42091,0.02], + [42093,0.088], + [42095,0.022], + [42097,0.052], + [42099,0.113], + [42101,0.033], + [42103,0.022], + [42105,0.047], + [42107,0.047], + [42109,0.235], + [42111,0.069], + [42113,0.041], + [42115,0.041], + [42117,0.041], + [42119,0.133], + [42121,0.057], + [42123,0.088], + [42125,0.025], + [42127,0.018], + [42129,0.018], + [42131,0.023], + [42133,0.039], + [44001,0.013], + [44003,0.029], + [44005,0.044], + [44007,0.035], + [44009,0.013], + [45001,0.068], + [45003,0.042], + [45005,0.014], + [45007,0.044], + [45009,0.006], + [45011,0.091], + [45013,0.079], + [45015,0.054], + [45017,0.079], + [45019,0.043], + [45021,0.024], + [45023,0.037], + [45025,0.008], + [45027,0.01], + [45029,0.024], + [45031,0.02], + [45033,0.059], + [45035,0.04], + [45037,0], + [45039,0.022], + [45041,0.015], + [45043,0.12], + [45045,0.041], + [45047,0.07], + [45049,0.008], + [45051,0.056], + [45053,0.017], + [45055,0.007], + [45057,0.056], + [45059,0.049], + [45061,0], + [45063,0.026], + [45065,0], + [45067,0], + [45069,0.052], + [45071,0.032], + [45073,0.068], + [45075,0.036], + [45077,0.034], + [45079,0.023], + [45081,0.036], + [45083,0.036], + [45085,0.03], + [45087,0.002], + [45089,0.028], + [45091,0.034], + [46003,0], + [46005,0.015], + [46007,0.147], + [46009,0.005], + [46011,0.065], + [46013,0.042], + [46015,0.092], + [46017,0.202], + [46019,0.072], + [46021,0], + [46023,0.161], + [46025,0.101], + [46027,0.056], + [46029,0.026], + [46031,0.046], + [46033,0.171], + [46035,0.072], + [46037,0.082], + [46039,0], + [46041,0.102], + [46043,0.197], + [46045,0.003], + [46047,0.006], + [46049,0.186], + [46051,0], + [46053,0.031], + [46055,0.049], + [46057,0.018], + [46059,0.004], + [46061,0.046], + [46063,0], + [46065,0.047], + [46067,0.015], + [46069,0.059], + [46071,0.099], + [46073,0.063], + [46075,0], + [46077,0.086], + [46079,0.041], + [46081,0.107], + [46083,0.018], + [46085,0.122], + [46087,0.081], + [46089,0], + [46091,0.052], + [46093,0.036], + [46095,0.172], + [46097,0.161], + [46099,0.045], + [46101,0.077], + [46102,null], + [46103,0.068], + [46105,0.073], + [46107,0], + [46109,0.212], + [46111,0.005], + [46115,0.081], + [46117,0], + [46119,0.089], + [46121,0.058], + [46123,0], + [46125,0.019], + [46127,0.064], + [46129,0.066], + [46135,0.021], + [46137,0.011], + [47001,0.016], + [47003,0.036], + [47005,0.013], + [47007,0.021], + [47009,0.051], + [47011,0.035], + [47013,0.009], + [47015,0.009], + [47017,0.004], + [47019,0.036], + [47021,0.013], + [47023,0.003], + [47025,0.011], + [47027,0.037], + [47029,0.047], + [47031,0.046], + [47033,0.042], + [47035,0.041], + [47037,0.046], + [47039,0.056], + [47041,0.008], + [47043,0.026], + [47045,0.021], + [47047,0.02], + [47049,0], + [47051,0.02], + [47053,0.018], + [47055,0.071], + [47057,0.009], + [47059,0.017], + [47061,0.063], + [47063,0.075], + [47065,0.036], + [47067,0.016], + [47069,0.033], + [47071,0.039], + [47073,0.039], + [47075,0.012], + [47077,0.004], + [47079,0.061], + [47081,0.038], + [47083,0.009], + [47085,0.013], + [47087,0.243], + [47089,0.009], + [47091,0.012], + [47093,0.025], + [47095,0.032], + [47097,0.015], + [47099,0.137], + [47101,0], + [47103,0.107], + [47105,0.034], + [47107,0.044], + [47109,0.075], + [47111,0.034], + [47113,0.015], + [47115,0.013], + [47117,0.04], + [47119,0.022], + [47121,0.08], + [47123,0.041], + [47125,0.035], + [47127,0.057], + [47129,0.085], + [47131,0.036], + [47133,0.017], + [47135,0.159], + [47137,0.077], + [47139,0.024], + [47141,0.029], + [47143,0.022], + [47145,0.011], + [47147,0.015], + [47149,0.057], + [47151,0.014], + [47153,0], + [47155,0.07], + [47157,0.046], + [47159,0.041], + [47161,0.007], + [47163,0.025], + [47165,0.043], + [47167,0.018], + [47169,0], + [47171,0.043], + [47173,0.135], + [47175,0.019], + [47177,0.044], + [47179,0.031], + [47181,0.003], + [47183,0.087], + [47185,0.042], + [47187,0.028], + [47189,0.029], + [48001,0.052], + [48003,0.124], + [48005,0.104], + [48007,0.123], + [48009,0.043], + [48011,0], + [48013,0.082], + [48015,0.095], + [48017,0.181], + [48019,0.22], + [48021,0.112], + [48023,0], + [48025,0.099], + [48027,0.038], + [48029,0.061], + [48031,0.229], + [48033,0], + [48035,0.134], + [48037,0.087], + [48039,0.063], + [48041,0.051], + [48043,0.005], + [48045,0.107], + [48047,0], + [48049,0.071], + [48051,0.093], + [48053,0.098], + [48055,0.098], + [48057,0.117], + [48059,0.193], + [48061,0.09], + [48063,0.106], + [48065,0.027], + [48067,0.023], + [48069,0.135], + [48071,0.073], + [48073,0.072], + [48075,0], + [48077,0.062], + [48079,0.248], + [48081,0.116], + [48083,0.038], + [48085,0.056], + [48087,0.025], + [48089,0.042], + [48091,0.094], + [48093,0.264], + [48095,0.109], + [48097,0.07], + [48099,0.026], + [48101,0.043], + [48103,0.145], + [48105,0.202], + [48107,0.084], + [48109,0.061], + [48111,0.132], + [48113,0.092], + [48115,0.12], + [48117,0.085], + [48119,0.038], + [48121,0.06], + [48123,0.055], + [48125,0.293], + [48127,0.059], + [48129,0], + [48131,0.039], + [48133,0.113], + [48135,0.156], + [48137,0.095], + [48139,0.098], + [48141,0.065], + [48143,0.14], + [48145,0.098], + [48147,0.056], + [48149,0.118], + [48151,0.091], + [48153,0.254], + [48155,0.51], + [48157,0.051], + [48159,0.139], + [48161,0.136], + [48163,0.119], + [48165,0.25], + [48167,0.062], + [48169,0], + [48171,0.08], + [48173,0], + [48175,0.029], + [48177,0.114], + [48179,0.122], + [48181,0.077], + [48183,0.103], + [48185,0.093], + [48187,0.07], + [48189,0.092], + [48191,0.063], + [48193,0.173], + [48195,0.14], + [48197,0.098], + [48199,0.075], + [48201,0.085], + [48203,0.075], + [48205,0.072], + [48207,0.039], + [48209,0.059], + [48211,0.338], + [48213,0.083], + [48215,0.089], + [48217,0.112], + [48219,0.088], + [48221,0.068], + [48223,0.119], + [48225,0.015], + [48227,0.073], + [48229,0.052], + [48231,0.089], + [48233,0.138], + [48235,0.485], + [48237,0.108], + [48239,0.055], + [48241,0.121], + [48243,0], + [48245,0.079], + [48247,0.212], + [48249,0.05], + [48251,0.102], + [48253,0.152], + [48255,0.069], + [48257,0.083], + [48259,0.048], + [48261,0.091], + [48263,0], + [48265,0.098], + [48267,0.202], + [48269,0.133], + [48271,0.324], + [48273,0.05], + [48275,0], + [48277,0.098], + [48279,0.066], + [48281,0.093], + [48283,0.255], + [48285,0.043], + [48287,0.032], + [48289,0.034], + [48291,0.082], + [48293,0.076], + [48295,0.152], + [48297,0.123], + [48299,0.098], + [48301,"#VALUE!"], + [48303,0.079], + [48305,0.104], + [48307,0.154], + [48309,0.079], + [48311,0], + [48313,0.02], + [48315,0.218], + [48317,0.046], + [48319,0.097], + [48321,0.051], + [48323,0.126], + [48325,0.075], + [48327,0.286], + [48329,0.129], + [48331,0.076], + [48333,0.066], + [48335,0.047], + [48337,0.146], + [48339,0.079], + [48341,0.069], + [48343,0.096], + [48345,0], + [48347,0.117], + [48349,0.093], + [48351,0], + [48353,0.07], + [48355,0.074], + [48357,0.145], + [48359,0.011], + [48361,0.055], + [48363,0.07], + [48365,0.08], + [48367,0.063], + [48369,0.063], + [48371,0.111], + [48373,0.069], + [48375,0.089], + [48377,0.299], + [48379,0.088], + [48381,0.061], + [48383,0.183], + [48385,0.053], + [48387,0.143], + [48389,0.158], + [48391,0.076], + [48393,0.03], + [48395,0.08], + [48397,0.044], + [48399,0.037], + [48401,0.111], + [48403,0.057], + [48405,0], + [48407,0.092], + [48409,0.073], + [48411,0.069], + [48413,0.078], + [48415,0.156], + [48417,0.084], + [48419,0.119], + [48421,0.088], + [48423,0.083], + [48425,0.043], + [48427,0.109], + [48429,0.022], + [48431,0.422], + [48433,0.213], + [48435,0.146], + [48437,0.108], + [48439,0.081], + [48441,0.055], + [48443,0], + [48445,0.207], + [48447,0.196], + [48449,0.073], + [48451,0.102], + [48453,0.067], + [48455,0.133], + [48457,0.071], + [48459,0.099], + [48461,0.128], + [48463,0.053], + [48465,0.113], + [48467,0.076], + [48469,0.097], + [48471,0.082], + [48473,0.073], + [48475,0.126], + [48477,0.048], + [48479,0.075], + [48481,0.072], + [48483,0.123], + [48485,0.075], + [48487,0.095], + [48489,0.105], + [48491,0.051], + [48493,0.127], + [48495,0.181], + [48497,0.112], + [48499,0.043], + [48501,0.184], + [48503,0.113], + [48505,0.089], + [48507,0.046], + [49001,0.131], + [49003,0.054], + [49005,0.05], + [49007,0.05], + [49009,0], + [49011,0.038], + [49013,0.087], + [49015,0.114], + [49017,0.065], + [49019,0.259], + [49021,0.055], + [49023,0.126], + [49025,0.103], + [49027,0.118], + [49029,0.017], + [49031,0.118], + [49033,0.075], + [49035,0.075], + [49037,0.127], + [49039,0.108], + [49041,0.045], + [49043,0.092], + [49045,0.044], + [49047,0.095], + [49049,0.061], + [49051,0.121], + [49053,0.114], + [49055,0.244], + [49057,0.059], + [50001,0.011], + [50003,0.019], + [50005,0.015], + [50007,0.028], + [50009,0], + [50011,0.022], + [50013,0.006], + [50015,0.018], + [50017,0.032], + [50019,0.032], + [50021,0.024], + [50023,0.011], + [50025,0.003], + [50027,0.003], + [51001,0.07], + [51003,0.072], + [51005,0], + [51007,0.05], + [51009,0.087], + [51011,0.021], + [51013,0.021], + [51015,0.04], + [51017,0], + [51019,0.033], + [51021,0.073], + [51023,0.011], + [51025,0], + [51027,0.001], + [51029,0.048], + [51031,0.083], + [51033,0.057], + [51035,0.041], + [51036,0.04], + [51037,0.063], + [51041,0.039], + [51043,0.123], + [51045,0.123], + [51047,0.052], + [51049,0.056], + [51051,0.046], + [51053,0.012], + [51057,0.031], + [51059,0.036], + [51061,0.072], + [51063,0.006], + [51065,0.009], + [51067,0.103], + [51069,0.018], + [51071,0.042], + [51073,0.021], + [51075,0.007], + [51077,0.061], + [51079,0.146], + [51081,0.059], + [51083,0.091], + [51085,0.037], + [51087,0.035], + [51089,0.042], + [51091,0.202], + [51093,0.031], + [51095,0.048], + [51097,0.081], + [51099,0.028], + [51101,0.009], + [51103,0.012], + [51105,0.025], + [51107,0.041], + [51109,0.044], + [51111,0.109], + [51113,0.119], + [51115,0.044], + [51117,0.013], + [51119,0.01], + [51121,0.045], + [51125,0.026], + [51127,0.021], + [51131,0.037], + [51133,0.139], + [51135,0.051], + [51137,0.07], + [51139,0.054], + [51141,0.004], + [51143,0.021], + [51145,0.006], + [51147,0.031], + [51149,0.048], + [51153,0.057], + [51155,0.023], + [51157,0.186], + [51159,0], + [51161,0.024], + [51163,0.13], + [51165,0.126], + [51167,0.013], + [51169,0.036], + [51171,0.074], + [51173,0.004], + [51175,0.026], + [51177,0.054], + [51179,0.041], + [51181,0.054], + [51183,0.003], + [51185,0.075], + [51187,0.071], + [51191,0.012], + [51193,0.054], + [51195,0.044], + [51197,0.171], + [51199,0.056], + [51510,0.044], + [51520,0.031], + [51530,0], + [51540,0.005], + [51550,0.021], + [51570,0.064], + [51580,0], + [51590,0.036], + [51595,0.23], + [51600,0.061], + [51610,0.089], + [51620,0], + [51630,0.011], + [51640,0.044], + [51650,0.041], + [51660,0.119], + [51670,0.047], + [51678,0.157], + [51680,0.054], + [51683,0.071], + [51685,0.078], + [51690,0.046], + [51700,0.051], + [51710,0.042], + [51720,0], + [51730,0.023], + [51735,0], + [51740,0.028], + [51750,0.088], + [51760,0.053], + [51770,0.048], + [51775,0], + [51790,0.017], + [51800,0.03], + [51810,0.031], + [51820,0.112], + [51830,0], + [51840,0.04], + [53001,0.059], + [53003,0.073], + [53005,0.027], + [53007,0.041], + [53009,0.034], + [53011,0.033], + [53013,0.055], + [53015,0.006], + [53017,0.04], + [53019,0.019], + [53021,0.029], + [53023,0], + [53025,0.038], + [53027,0.081], + [53029,0.039], + [53031,0.005], + [53033,0.023], + [53035,0.032], + [53037,0.04], + [53039,0.014], + [53041,0.018], + [53043,0.032], + [53045,0.053], + [53047,0.04], + [53049,0.088], + [53051,0.015], + [53053,0.029], + [53055,0.119], + [53057,0.037], + [53059,0], + [53061,0.035], + [53063,0.041], + [53065,0.049], + [53067,0.025], + [53069,0.021], + [53071,0.042], + [53073,0.028], + [53075,0.024], + [53077,0.049], + [54001,0.024], + [54003,0.035], + [54005,0.029], + [54007,0], + [54009,0.023], + [54011,0.018], + [54013,0.056], + [54015,0], + [54017,0.029], + [54019,0.003], + [54021,0.091], + [54023,0.095], + [54025,0.002], + [54027,0.06], + [54029,0.063], + [54031,0], + [54033,0.011], + [54035,0.027], + [54037,0.014], + [54039,0.027], + [54041,0.008], + [54043,0], + [54045,0.002], + [54047,0.061], + [54049,0.008], + [54051,0.054], + [54053,0.041], + [54055,0.005], + [54057,0.009], + [54059,0.009], + [54061,0.021], + [54063,0.083], + [54065,0], + [54067,0], + [54069,0.023], + [54071,0.036], + [54073,0], + [54075,0.014], + [54077,0.017], + [54079,0.053], + [54081,0.03], + [54083,0.054], + [54085,0.026], + [54087,0.036], + [54089,0.003], + [54091,0.025], + [54093,0], + [54095,0.036], + [54097,0.052], + [54099,0.053], + [54101,0.003], + [54103,0.008], + [54105,0], + [54107,0.011], + [54109,0.072], + [55001,0.024], + [55003,0.013], + [55005,0.035], + [55007,0.021], + [55009,0.03], + [55011,0.064], + [55013,0.009], + [55015,0.019], + [55017,0.065], + [55019,0.399], + [55021,0.042], + [55023,0.122], + [55025,0.017], + [55027,0.019], + [55029,0.012], + [55031,0.011], + [55033,0.09], + [55035,0.06], + [55037,0], + [55039,0.029], + [55041,0.143], + [55043,0.08], + [55045,0.027], + [55047,0.159], + [55049,0.024], + [55051,0.065], + [55053,0.149], + [55055,0.018], + [55057,0.026], + [55059,0.047], + [55061,0.002], + [55063,0.025], + [55065,0.138], + [55067,0.031], + [55069,0.03], + [55071,0.025], + [55073,0.049], + [55075,0.036], + [55077,0.045], + [55078,0.267], + [55079,0.025], + [55081,0.111], + [55083,0.065], + [55085,0.016], + [55087,0.031], + [55089,0.02], + [55091,0.157], + [55093,0.055], + [55095,0.067], + [55097,0.022], + [55099,0.01], + [55101,0.028], + [55103,0.073], + [55105,0.029], + [55107,0.15], + [55109,0.035], + [55111,0.098], + [55113,0.014], + [55115,0.058], + [55117,0.021], + [55119,0.137], + [55121,0.081], + [55123,0.281], + [55125,0.064], + [55127,0.017], + [55129,0.03], + [55131,0.018], + [55133,0.015], + [55135,0.106], + [55137,0.07], + [55139,0.031], + [55141,0.028], + [56001,0.034], + [56003,0.141], + [56005,0.077], + [56007,0.096], + [56009,0.048], + [56011,0.072], + [56013,0.186], + [56015,0.098], + [56017,0.036], + [56019,0], + [56021,0.041], + [56023,0.069], + [56025,0.045], + [56027,0], + [56029,0.079], + [56031,0.114], + [56033,0.012], + [56035,0.081], + [56037,0.1], + [56039,0], + [56041,0.05], + [56043,0.074], + [56045,0.115] + ] +} diff --git a/data/regional/united-states/health/insurance/us-health-uninsured-under6-2019.json b/data/regional/united-states/health/insurance/us-health-uninsured-under6-2019.json new file mode 100644 index 0000000..b8d46b9 --- /dev/null +++ b/data/regional/united-states/health/insurance/us-health-uninsured-under6-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "People Under 6 Uninsured", + "description" : "Percent of the population under the age of 6 that are uninsured.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "health", + "tags" : ["regional","us","counties","health","insurance"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.health.uninsured.under6.2019"], + [1001,0.017], + [1003,0.022], + [1005,0.034], + [1007,0.045], + [1009,0.061], + [1011,0.021], + [1013,0.005], + [1015,0.01], + [1017,0.081], + [1019,0.006], + [1021,0.012], + [1023,0.017], + [1025,0.029], + [1027,0.018], + [1029,0.065], + [1031,0.054], + [1033,0.009], + [1035,0.059], + [1037,0.054], + [1039,0.059], + [1041,0.024], + [1043,0.014], + [1045,0.045], + [1047,0.005], + [1049,0.013], + [1051,0.023], + [1053,0.073], + [1055,0.039], + [1057,0.026], + [1059,0.219], + [1061,0.005], + [1063,0.055], + [1065,0], + [1067,0.014], + [1069,0.016], + [1071,0.005], + [1073,0.038], + [1075,0.148], + [1077,0.029], + [1079,0.03], + [1081,0.018], + [1083,0.018], + [1085,0.033], + [1087,0.012], + [1089,0.025], + [1091,0], + [1093,0.007], + [1095,0.026], + [1097,0.024], + [1099,0.042], + [1101,0.019], + [1103,0.039], + [1105,0], + [1107,0.007], + [1109,0.001], + [1111,0.003], + [1113,0.02], + [1115,0.006], + [1117,0.013], + [1119,0.026], + [1121,0.01], + [1123,0.003], + [1125,0.021], + [1127,0.069], + [1129,0.043], + [1131,0.006], + [1133,0.132], + [2013,0.272], + [2016,0.138], + [2020,0.078], + [2050,0.074], + [2060,0.222], + [2068,0.364], + [2070,0.081], + [2090,0.059], + [2100,0.142], + [2105,0.088], + [2110,0.044], + [2122,0.141], + [2130,0.129], + [2150,0.125], + [2158,0.082], + [2164,0.333], + [2170,0.126], + [2180,0.122], + [2185,0.179], + [2188,0.141], + [2195,0.079], + [2198,0.217], + [2220,0.201], + [2230,0.074], + [2240,0.127], + [2261,0.233], + [2275,0.261], + [2282,0.15], + [2290,0.096], + [4001,0.232], + [4003,0.033], + [4005,0.078], + [4007,0.081], + [4009,0.046], + [4011,0.038], + [4012,0.144], + [4013,0.066], + [4015,0.055], + [4017,0.106], + [4019,0.049], + [4021,0.075], + [4023,0.038], + [4025,0.096], + [4027,0.064], + [5001,0.026], + [5003,0.018], + [5005,0.032], + [5007,0.037], + [5009,0.02], + [5011,0.06], + [5013,0.023], + [5015,0.069], + [5017,0], + [5019,0.052], + [5021,0.006], + [5023,0.047], + [5025,0], + [5027,0.011], + [5029,0.02], + [5031,0.044], + [5033,0.05], + [5035,0.04], + [5037,0.007], + [5039,0.033], + [5041,0.01], + [5043,0.016], + [5045,0.019], + [5047,0.02], + [5049,0.127], + [5051,0.06], + [5053,0.073], + [5055,0.023], + [5057,0.058], + [5059,0.009], + [5061,0.02], + [5063,0.044], + [5065,0.019], + [5067,0.031], + [5069,0.052], + [5071,0.034], + [5073,0.113], + [5075,0.047], + [5077,0.011], + [5079,0.173], + [5081,0.017], + [5083,0.004], + [5085,0.042], + [5087,0.029], + [5089,0.028], + [5091,0.045], + [5093,0.027], + [5095,0.015], + [5097,0.066], + [5099,0.007], + [5101,0.019], + [5103,0.041], + [5105,0.002], + [5107,0.034], + [5109,0.006], + [5111,0.04], + [5113,0.001], + [5115,0.034], + [5117,0.1], + [5119,0.049], + [5121,0.011], + [5123,0.031], + [5125,0.037], + [5127,0.046], + [5129,0.044], + [5131,0.05], + [5133,0.035], + [5135,0.021], + [5137,0.055], + [5139,0.022], + [5141,0.044], + [5143,0.079], + [5145,0.032], + [5147,0], + [5149,0.058], + [6001,0.019], + [6003,0], + [6005,0.051], + [6007,0.033], + [6009,0], + [6011,0.032], + [6013,0.019], + [6015,0.08], + [6017,0.049], + [6019,0.023], + [6021,0.058], + [6023,0.056], + [6025,0.02], + [6027,0.026], + [6029,0.023], + [6031,0.016], + [6033,0.009], + [6035,0.04], + [6037,0.028], + [6039,0.03], + [6041,0.004], + [6043,0], + [6045,0.021], + [6047,0.03], + [6049,0.174], + [6051,0.153], + [6053,0.023], + [6055,0.044], + [6057,0.047], + [6059,0.024], + [6061,0.023], + [6063,0], + [6065,0.031], + [6067,0.016], + [6069,0.033], + [6071,0.029], + [6073,0.026], + [6075,0.009], + [6077,0.018], + [6079,0.042], + [6081,0.013], + [6083,0.028], + [6085,0.012], + [6087,0.014], + [6089,0.031], + [6091,0], + [6093,0.014], + [6095,0.021], + [6097,0.024], + [6099,0.018], + [6101,0.033], + [6103,0.013], + [6105,0.045], + [6107,0.018], + [6109,0.061], + [6111,0.027], + [6113,0.005], + [6115,0.021], + [8001,0.034], + [8003,0.068], + [8005,0.041], + [8007,0.029], + [8009,0.047], + [8011,0.05], + [8013,0.013], + [8014,0.018], + [8015,0.084], + [8017,0.073], + [8019,0.138], + [8021,0.098], + [8023,0], + [8025,0.107], + [8027,0.516], + [8029,0.029], + [8031,0.023], + [8033,0], + [8035,0.019], + [8037,0.072], + [8039,0.021], + [8041,0.034], + [8043,0.049], + [8045,0.039], + [8047,0], + [8049,0.02], + [8051,0], + [8053,0], + [8055,0.159], + [8057,0.038], + [8059,0.028], + [8061,0.053], + [8063,0.045], + [8065,0.181], + [8067,0.09], + [8069,0.051], + [8071,0.026], + [8073,0.167], + [8075,0.067], + [8077,0.048], + [8079,0], + [8081,0.056], + [8083,0.104], + [8085,0.058], + [8087,0.095], + [8089,0.01], + [8091,0.017], + [8093,0.056], + [8095,0.046], + [8097,0.026], + [8099,0.025], + [8101,0.017], + [8103,0.06], + [8105,0.059], + [8107,0.002], + [8109,0.046], + [8111,0], + [8113,0.026], + [8115,0], + [8117,0.083], + [8119,0.134], + [8121,0.03], + [8123,0.036], + [8125,0.018], + [9001,0.057], + [9003,0.017], + [9005,0.009], + [9007,0.015], + [9009,0.02], + [9011,0.005], + [9013,0.029], + [9015,0.021], + [10001,0.055], + [10003,0.024], + [10005,0.045], + [11001,0.016], + [12001,0.039], + [12003,0.08], + [12005,0.05], + [12007,0.049], + [12009,0.048], + [12011,0.063], + [12013,0.076], + [12015,0.029], + [12017,0.061], + [12019,0.057], + [12021,0.062], + [12023,0.034], + [12027,0.088], + [12029,0.047], + [12031,0.051], + [12033,0.047], + [12035,0.146], + [12037,0.096], + [12039,0.052], + [12041,0.143], + [12043,0.09], + [12045,0.062], + [12047,0.056], + [12049,0.029], + [12051,0.075], + [12053,0.051], + [12055,0.04], + [12057,0.042], + [12059,0.062], + [12061,0.057], + [12063,0.061], + [12065,0.007], + [12067,0.094], + [12069,0.051], + [12071,0.071], + [12073,0.031], + [12075,0.033], + [12077,0.051], + [12079,0.072], + [12081,0.058], + [12083,0.039], + [12085,0.061], + [12086,0.047], + [12087,0.066], + [12089,0.06], + [12091,0.06], + [12093,0.051], + [12095,0.049], + [12097,0.074], + [12099,0.062], + [12101,0.042], + [12103,0.051], + [12105,0.045], + [12107,0.067], + [12109,0.044], + [12111,0.056], + [12113,0.041], + [12115,0.089], + [12117,0.046], + [12119,0.1], + [12121,0.04], + [12123,0.024], + [12125,0.031], + [12127,0.045], + [12129,0.032], + [12131,0.052], + [12133,0.076], + [13001,0.011], + [13003,0.011], + [13005,0.096], + [13007,0], + [13009,0.121], + [13011,0.221], + [13013,0.08], + [13015,0.086], + [13017,0.032], + [13019,0.062], + [13021,0.056], + [13023,0.014], + [13025,0], + [13027,0.123], + [13029,0.035], + [13031,0.053], + [13033,0.032], + [13035,0.042], + [13037,0.046], + [13039,0.028], + [13043,0.155], + [13045,0.025], + [13047,0.091], + [13049,0.226], + [13051,0.073], + [13053,0.011], + [13055,0.051], + [13057,0.055], + [13059,0.063], + [13061,0.091], + [13063,0.077], + [13065,0], + [13067,0.068], + [13069,0.081], + [13071,0.072], + [13073,0.032], + [13075,0.075], + [13077,0.044], + [13079,0.134], + [13081,0.07], + [13083,0.041], + [13085,0.085], + [13087,0.048], + [13089,0.053], + [13091,0.011], + [13093,0.094], + [13095,0.03], + [13097,0.054], + [13099,0.015], + [13101,0.041], + [13103,0.006], + [13105,0.031], + [13107,0.058], + [13109,0.009], + [13111,0.125], + [13113,0.062], + [13115,0.05], + [13117,0.068], + [13119,0.155], + [13121,0.04], + [13123,0.215], + [13125,0], + [13127,0.066], + [13129,0.075], + [13131,0.098], + [13133,0.044], + [13135,0.082], + [13137,0.124], + [13139,0.08], + [13141,0.024], + [13143,0.064], + [13145,0.014], + [13147,0.018], + [13149,0.044], + [13151,0.068], + [13153,0.046], + [13155,0.234], + [13157,0.038], + [13159,0.066], + [13161,0.1], + [13163,0.043], + [13165,0.01], + [13167,0.121], + [13169,0.066], + [13171,0.031], + [13173,0.09], + [13175,0.031], + [13177,0.039], + [13179,0.048], + [13181,0.015], + [13183,0.026], + [13185,0.056], + [13187,0.106], + [13189,0.018], + [13191,0.107], + [13193,0.068], + [13195,0.058], + [13197,0.048], + [13199,0.069], + [13201,0.047], + [13205,0.058], + [13207,0.088], + [13209,0.024], + [13211,0.065], + [13213,0.091], + [13215,0.031], + [13217,0.047], + [13219,0.031], + [13221,0.038], + [13223,0.062], + [13225,0.022], + [13227,0.061], + [13229,0.071], + [13231,0.043], + [13233,0.092], + [13235,0.028], + [13237,0.073], + [13239,0.309], + [13241,0.08], + [13243,0.007], + [13245,0.05], + [13247,0.114], + [13249,0], + [13251,0.06], + [13253,0], + [13255,0.052], + [13257,0.037], + [13259,0], + [13261,0.027], + [13263,0.251], + [13265,0.073], + [13267,0.054], + [13269,0.038], + [13271,0], + [13273,0.01], + [13275,0.054], + [13277,0.154], + [13279,0.02], + [13281,0.036], + [13283,0.154], + [13285,0.029], + [13287,0], + [13289,0], + [13291,0.012], + [13293,0.019], + [13295,0.073], + [13297,0.026], + [13299,0.087], + [13301,0.027], + [13303,0.008], + [13305,0.067], + [13307,0], + [13309,0.06], + [13311,0.02], + [13313,0.063], + [13315,0.091], + [13317,0.046], + [13319,0.044], + [13321,0.001], + [15001,0.017], + [15003,0.015], + [15005,0], + [15007,0.019], + [15009,0.02], + [16001,0.028], + [16003,0.054], + [16005,0.027], + [16007,0.007], + [16009,0.045], + [16011,0.022], + [16013,0.008], + [16015,0.033], + [16017,0.057], + [16019,0.027], + [16021,0.122], + [16023,0], + [16025,0.051], + [16027,0.045], + [16029,0.07], + [16031,0.066], + [16033,0], + [16035,0.075], + [16037,0], + [16039,0.076], + [16041,0.13], + [16043,0.028], + [16045,0.145], + [16047,0.014], + [16049,0.053], + [16051,0.033], + [16053,0.035], + [16055,0.036], + [16057,0.057], + [16059,0.067], + [16061,0.149], + [16063,0.093], + [16065,0.034], + [16067,0.043], + [16069,0.048], + [16071,0.065], + [16073,0.094], + [16075,0.032], + [16077,0.005], + [16079,0.049], + [16081,0.042], + [16083,0.042], + [16085,0], + [16087,0.111], + [17001,0.053], + [17003,0.055], + [17005,0.034], + [17007,0.001], + [17009,0.05], + [17011,0.013], + [17013,0], + [17015,0.024], + [17017,0.023], + [17019,0.019], + [17021,0.024], + [17023,0.037], + [17025,0.02], + [17027,0.008], + [17029,0.024], + [17031,0.023], + [17033,0.078], + [17035,0.002], + [17037,0.001], + [17039,0.003], + [17041,0.172], + [17043,0.025], + [17045,0.062], + [17047,0.011], + [17049,0.009], + [17051,0.071], + [17053,0.071], + [17055,0.01], + [17057,0.019], + [17059,0], + [17061,0.064], + [17063,0.011], + [17065,0.072], + [17067,0.003], + [17069,0], + [17071,0], + [17073,0.002], + [17075,0.046], + [17077,0.045], + [17079,0.034], + [17081,0.043], + [17083,0.028], + [17085,0.013], + [17087,0.008], + [17089,0.022], + [17091,0.017], + [17093,0.033], + [17095,0.011], + [17097,0.026], + [17099,0.036], + [17101,0.028], + [17103,0.016], + [17105,0.054], + [17107,0.038], + [17109,0.025], + [17111,0.025], + [17113,0.016], + [17115,0.018], + [17117,0.012], + [17119,0.034], + [17121,0.022], + [17123,0.102], + [17125,0.005], + [17127,0.009], + [17129,0], + [17131,0], + [17133,0.004], + [17135,0.004], + [17137,0.008], + [17139,0.189], + [17141,0.019], + [17143,0.035], + [17145,0.024], + [17147,0.02], + [17149,0.042], + [17151,0], + [17153,0], + [17155,0], + [17157,0.027], + [17159,0.021], + [17161,0.036], + [17163,0.031], + [17165,0.057], + [17167,0.012], + [17169,0], + [17171,0], + [17173,0], + [17175,0.082], + [17177,0.036], + [17179,0.017], + [17181,0.044], + [17183,0.026], + [17185,0.044], + [17187,0], + [17189,0.003], + [17191,0.174], + [17193,0.042], + [17195,0.044], + [17197,0.019], + [17199,0.011], + [17201,0.016], + [17203,0.031], + [18001,0.325], + [18003,0.057], + [18005,0.089], + [18007,0.062], + [18009,0.011], + [18011,0.027], + [18013,0.052], + [18015,0.148], + [18017,0.079], + [18019,0.017], + [18021,0.067], + [18023,0.056], + [18025,0.035], + [18027,0.391], + [18029,0.012], + [18031,0.03], + [18033,0.072], + [18035,0.038], + [18037,0.001], + [18039,0.139], + [18041,0.063], + [18043,0.023], + [18045,0.075], + [18047,0.037], + [18049,0.104], + [18051,0.051], + [18053,0.025], + [18055,0.055], + [18057,0.038], + [18059,0.037], + [18061,0.068], + [18063,0.038], + [18065,0.022], + [18067,0.031], + [18069,0.044], + [18071,0.059], + [18073,0.044], + [18075,0.027], + [18077,0.027], + [18079,0.106], + [18081,0.055], + [18083,0.071], + [18085,0.097], + [18087,0.608], + [18089,0.037], + [18091,0.047], + [18093,0.06], + [18095,0.055], + [18097,0.052], + [18099,0.189], + [18101,0.085], + [18103,0.071], + [18105,0.031], + [18107,0.063], + [18109,0.059], + [18111,0.019], + [18113,0.108], + [18115,0.011], + [18117,0.037], + [18119,0.099], + [18121,0.268], + [18123,0.024], + [18125,0.018], + [18127,0.031], + [18129,0.005], + [18131,0.009], + [18133,0.006], + [18135,0.077], + [18137,0.038], + [18139,0.059], + [18141,0.039], + [18143,0.01], + [18145,0.074], + [18147,0.02], + [18149,0.007], + [18151,0.076], + [18153,0.011], + [18155,0.118], + [18157,0.03], + [18159,0.046], + [18161,0], + [18163,0.038], + [18165,0.046], + [18167,0.025], + [18169,0.052], + [18171,0.052], + [18173,0.006], + [18175,0.102], + [18177,0.113], + [18179,0.034], + [18181,0.081], + [18183,0.084], + [19001,0.02], + [19003,0.152], + [19005,0.088], + [19007,0.099], + [19009,0.019], + [19011,0.01], + [19013,0.056], + [19015,0], + [19017,0.002], + [19019,0.059], + [19021,0.022], + [19023,0.035], + [19025,0.011], + [19027,0], + [19029,0.014], + [19031,0.015], + [19033,0.02], + [19035,0.079], + [19037,0.058], + [19039,0], + [19041,0], + [19043,0.1], + [19045,0.009], + [19047,0.003], + [19049,0.057], + [19051,0.442], + [19053,0.166], + [19055,0.015], + [19057,0.011], + [19059,0.01], + [19061,0.018], + [19063,0.055], + [19065,0.014], + [19067,0.125], + [19069,0.13], + [19071,0.039], + [19073,0.011], + [19075,0.011], + [19077,0.031], + [19079,0.018], + [19081,0.022], + [19083,0.007], + [19085,0.064], + [19087,0], + [19089,0.066], + [19091,0.011], + [19093,0], + [19095,0.03], + [19097,0.032], + [19099,0.001], + [19101,0.003], + [19103,0.041], + [19105,0], + [19107,0.014], + [19109,0.035], + [19111,0.014], + [19113,0.022], + [19115,0.033], + [19117,0.073], + [19119,0.05], + [19121,0.051], + [19123,0.015], + [19125,0.011], + [19127,0.035], + [19129,0.014], + [19131,0.068], + [19133,0.015], + [19135,0.107], + [19137,0.03], + [19139,0.003], + [19141,0.102], + [19143,0.005], + [19145,0.011], + [19147,0.065], + [19149,0.054], + [19151,0.042], + [19153,0.024], + [19155,0.032], + [19157,0.05], + [19159,0.103], + [19161,0], + [19163,0.026], + [19165,0.045], + [19167,0.023], + [19169,0.026], + [19171,0.056], + [19173,0.017], + [19175,0.1], + [19177,0.178], + [19179,0.02], + [19181,0.008], + [19183,0.068], + [19185,0.264], + [19187,0.014], + [19189,0], + [19191,0.002], + [19193,0.005], + [19195,0.027], + [19197,0.01], + [20001,0.013], + [20003,0.178], + [20005,0], + [20007,0.088], + [20009,0.061], + [20011,0.101], + [20013,0.013], + [20015,0.064], + [20017,0.145], + [20019,0.022], + [20021,0.133], + [20023,0.016], + [20025,0.032], + [20027,0.016], + [20029,0.003], + [20031,0.066], + [20033,0.132], + [20035,0.069], + [20037,0.023], + [20039,0.155], + [20041,0.04], + [20043,0.034], + [20045,0.042], + [20047,0.027], + [20049,0.049], + [20051,0.009], + [20053,0.031], + [20055,0.07], + [20057,0.016], + [20059,0.082], + [20061,0.046], + [20063,0.09], + [20065,0.047], + [20067,0], + [20069,0.063], + [20071,0], + [20073,0.027], + [20075,0.246], + [20077,0.192], + [20079,0.03], + [20081,0.046], + [20083,0.031], + [20085,0.035], + [20087,0.021], + [20089,0], + [20091,0.038], + [20093,0.058], + [20095,0.014], + [20097,0.047], + [20099,0.099], + [20101,0.075], + [20103,0.018], + [20105,0.023], + [20107,0.077], + [20109,0], + [20111,0.04], + [20113,0.047], + [20115,0.009], + [20117,0.026], + [20119,0.169], + [20121,0.01], + [20123,0.013], + [20125,0.073], + [20127,0.075], + [20129,0], + [20131,0.045], + [20133,0.214], + [20135,0.123], + [20137,0.083], + [20139,0.101], + [20141,0.018], + [20143,0.008], + [20145,0.005], + [20147,0.018], + [20149,0.032], + [20151,0.021], + [20153,0.106], + [20155,0.047], + [20157,0.003], + [20159,0.045], + [20161,0.008], + [20163,0.047], + [20165,0], + [20167,0.031], + [20169,0.026], + [20171,0], + [20173,0.052], + [20175,0.069], + [20177,0.031], + [20179,0.148], + [20181,0.08], + [20183,0.081], + [20185,0.075], + [20187,0], + [20189,0.17], + [20191,0.059], + [20193,0.048], + [20195,0.133], + [20197,0.015], + [20199,0], + [20201,0.03], + [20203,0], + [20205,0.003], + [20207,0.008], + [20209,0.064], + [21001,0.032], + [21003,0.073], + [21005,0.029], + [21007,0.077], + [21009,0.061], + [21011,0.173], + [21013,0.048], + [21015,0.015], + [21017,0.003], + [21019,0.022], + [21021,0.011], + [21023,0], + [21025,0], + [21027,0.091], + [21029,0.054], + [21031,0.06], + [21033,0], + [21035,0.032], + [21037,0.013], + [21039,0], + [21041,0], + [21043,0.102], + [21045,0.166], + [21047,0.088], + [21049,0.037], + [21051,0.075], + [21053,0.089], + [21055,0.068], + [21057,0.009], + [21059,0.039], + [21061,0.03], + [21063,0], + [21065,0], + [21067,0.038], + [21069,0.147], + [21071,0.006], + [21073,0.052], + [21075,0], + [21077,0.124], + [21079,0.007], + [21081,0], + [21083,0.061], + [21085,0.011], + [21087,0.009], + [21089,0.044], + [21091,0.039], + [21093,0.016], + [21095,0.014], + [21097,0.105], + [21099,0.105], + [21101,0.014], + [21103,0.031], + [21105,0], + [21107,0.079], + [21109,0.015], + [21111,0.023], + [21113,0.026], + [21115,0.03], + [21117,0.034], + [21119,0.039], + [21121,0.009], + [21123,0], + [21125,0.065], + [21127,0.013], + [21129,0.029], + [21131,0], + [21133,0.028], + [21135,0.008], + [21137,0.088], + [21139,0.035], + [21141,0.062], + [21143,0.113], + [21145,0.027], + [21147,0.005], + [21149,0], + [21151,0.028], + [21153,0], + [21155,0.024], + [21157,0.039], + [21159,0], + [21161,0.085], + [21163,0.063], + [21165,0.011], + [21167,0.042], + [21169,0.056], + [21171,0.067], + [21173,0.007], + [21175,0.044], + [21177,0.042], + [21179,0.043], + [21181,0.133], + [21183,0.01], + [21185,0.022], + [21187,0.015], + [21189,0], + [21191,0], + [21193,0], + [21195,0.027], + [21197,0], + [21199,0.015], + [21201,0.021], + [21203,0], + [21205,0.029], + [21207,0.043], + [21209,0.033], + [21211,0.07], + [21213,0.052], + [21215,0], + [21217,0.023], + [21219,0.159], + [21221,0.116], + [21223,0.105], + [21225,0], + [21227,0.01], + [21229,0.075], + [21231,0.142], + [21233,0.033], + [21235,0.047], + [21237,0], + [21239,0.021], + [22001,0.039], + [22003,0.046], + [22005,0.008], + [22007,0.058], + [22009,0.044], + [22011,0.055], + [22013,0.022], + [22015,0.051], + [22017,0.037], + [22019,0.018], + [22021,0], + [22023,0.011], + [22025,0.142], + [22027,0.036], + [22029,0.252], + [22031,0.024], + [22033,0.036], + [22035,0.048], + [22037,0.005], + [22039,0.016], + [22041,0.01], + [22043,0], + [22045,0.016], + [22047,0.045], + [22049,0.032], + [22051,0.044], + [22053,0.019], + [22055,0.041], + [22057,0.012], + [22059,0.09], + [22061,0.038], + [22063,0.017], + [22065,0.054], + [22067,0.021], + [22069,0.051], + [22071,0.028], + [22073,0.036], + [22075,0.012], + [22077,0.056], + [22079,0.044], + [22081,0], + [22083,0.12], + [22085,0.019], + [22087,0.042], + [22089,0.001], + [22091,0.046], + [22093,0.064], + [22095,0.046], + [22097,0.042], + [22099,0.038], + [22101,0.018], + [22103,0.017], + [22105,0.007], + [22107,0.127], + [22109,0.014], + [22111,0.01], + [22113,0.021], + [22115,0.021], + [22117,0.039], + [22119,0.023], + [22121,0.068], + [22123,0.107], + [22125,0.011], + [22127,0.053], + [23001,0.062], + [23003,0.058], + [23005,0.038], + [23007,0.075], + [23009,0.107], + [23011,0.024], + [23013,0.036], + [23015,0.116], + [23017,0.033], + [23019,0.053], + [23021,0.035], + [23023,0.028], + [23025,0.022], + [23027,0.074], + [23029,0.075], + [23031,0.026], + [24001,0.02], + [24003,0.022], + [24005,0.022], + [24009,0.012], + [24011,0.023], + [24013,0.01], + [24015,0.009], + [24017,0.039], + [24019,0.037], + [24021,0.02], + [24023,0.049], + [24025,0.025], + [24027,0.042], + [24029,0.071], + [24031,0.028], + [24033,0.043], + [24035,0.023], + [24037,0.045], + [24039,0.049], + [24041,0.045], + [24043,0.067], + [24045,0.039], + [24047,0.042], + [24510,0.031], + [25001,0.019], + [25003,0.015], + [25005,0.013], + [25007,0.04], + [25009,0.013], + [25011,0.016], + [25013,0.015], + [25015,0.016], + [25017,0.011], + [25019,0.035], + [25021,0.003], + [25023,0.015], + [25025,0.012], + [25027,0.011], + [26001,0], + [26003,0.026], + [26005,0.022], + [26007,0.034], + [26009,0.031], + [26011,0.019], + [26013,0.03], + [26015,0.029], + [26017,0.028], + [26019,0.069], + [26021,0.043], + [26023,0.185], + [26025,0.032], + [26027,0.048], + [26029,0.039], + [26031,0.009], + [26033,0.022], + [26035,0.173], + [26037,0.017], + [26039,0.069], + [26041,0.051], + [26043,0.041], + [26045,0.031], + [26047,0.027], + [26049,0.026], + [26051,0.206], + [26053,0.101], + [26055,0.064], + [26057,0.028], + [26059,0.063], + [26061,0.019], + [26063,0.05], + [26065,0.024], + [26067,0.037], + [26069,0.058], + [26071,0.087], + [26073,0.083], + [26075,0.022], + [26077,0.04], + [26079,0.044], + [26081,0.025], + [26083,0], + [26085,0.096], + [26087,0.074], + [26089,0.01], + [26091,0.028], + [26093,0.011], + [26095,0.031], + [26097,0.114], + [26099,0.024], + [26101,0.077], + [26103,0.019], + [26105,0.021], + [26107,0.051], + [26109,0.022], + [26111,0.022], + [26113,0.087], + [26115,0.017], + [26117,0.075], + [26119,0.114], + [26121,0.014], + [26123,0.058], + [26125,0.022], + [26127,0.066], + [26129,0.079], + [26131,0.14], + [26133,0.143], + [26135,0.241], + [26137,0.018], + [26139,0.017], + [26141,0.085], + [26143,0.042], + [26145,0.017], + [26147,0.02], + [26149,0.078], + [26151,0.139], + [26153,0.089], + [26155,0.014], + [26157,0.014], + [26159,0.033], + [26161,0.011], + [26163,0.019], + [26165,0.035], + [27001,0.026], + [27003,0.02], + [27005,0.063], + [27007,0.069], + [27009,0.006], + [27011,0], + [27013,0.013], + [27015,0.005], + [27017,0.01], + [27019,0.015], + [27021,0.083], + [27023,0.039], + [27025,0.031], + [27027,0.033], + [27029,0.088], + [27031,0.068], + [27033,0.011], + [27035,0.04], + [27037,0.016], + [27039,0.046], + [27041,0.033], + [27043,0.019], + [27045,0.158], + [27047,0.015], + [27049,0.039], + [27051,0.045], + [27053,0.026], + [27055,0.036], + [27057,0.03], + [27059,0.022], + [27061,0.019], + [27063,0.016], + [27065,0.051], + [27067,0.047], + [27069,0.042], + [27071,0.025], + [27073,0.003], + [27075,0.013], + [27077,0], + [27079,0.042], + [27081,0.07], + [27083,0.063], + [27085,0.017], + [27087,0.128], + [27089,0.02], + [27091,0.044], + [27093,0.075], + [27095,0.059], + [27097,0.037], + [27099,0.095], + [27101,0.024], + [27103,0.034], + [27105,0.018], + [27107,0.059], + [27109,0.025], + [27111,0.069], + [27113,0.006], + [27115,0.029], + [27117,0.037], + [27119,0.041], + [27121,0.013], + [27123,0.024], + [27125,0.032], + [27127,0.045], + [27129,0.025], + [27131,0.013], + [27133,0.058], + [27135,0.047], + [27137,0.013], + [27139,0.027], + [27141,0.008], + [27143,0.029], + [27145,0.022], + [27147,0.012], + [27149,0.016], + [27151,0.017], + [27153,0.144], + [27155,0.053], + [27157,0.031], + [27159,0.018], + [27161,0.022], + [27163,0.018], + [27165,0.062], + [27167,0.051], + [27169,0.065], + [27171,0.052], + [27173,0.024], + [28001,0.065], + [28003,0.066], + [28005,0.012], + [28007,0.009], + [28009,0.167], + [28011,0.045], + [28013,0.025], + [28015,0], + [28017,0.057], + [28019,0.018], + [28021,0.022], + [28023,0], + [28025,0.008], + [28027,0.013], + [28029,0.03], + [28031,0.02], + [28033,0.034], + [28035,0.045], + [28037,0.02], + [28039,0.056], + [28041,0.043], + [28043,0.036], + [28045,0.066], + [28047,0.045], + [28049,0.034], + [28051,0.078], + [28053,0.074], + [28055,0.086], + [28057,0.021], + [28059,0.032], + [28061,0.03], + [28063,0], + [28065,0.036], + [28067,0.024], + [28069,0.012], + [28071,0.012], + [28073,0.047], + [28075,0.034], + [28077,0.023], + [28079,0.076], + [28081,0.055], + [28083,0.048], + [28085,0.016], + [28087,0.048], + [28089,0.027], + [28091,0.005], + [28093,0.015], + [28095,0.04], + [28097,0.012], + [28099,0], + [28101,0.065], + [28103,0.112], + [28105,0.079], + [28107,0.022], + [28109,0.103], + [28111,0.056], + [28113,0.027], + [28115,0.06], + [28117,0.03], + [28119,0.021], + [28121,0.033], + [28123,0.083], + [28125,0], + [28127,0.023], + [28129,0.048], + [28131,0.011], + [28133,0.009], + [28135,0.019], + [28137,0.037], + [28139,0.111], + [28141,0.018], + [28143,0.021], + [28145,0.036], + [28147,0.15], + [28149,0.063], + [28151,0.06], + [28153,0.01], + [28155,0.018], + [28157,0.03], + [28159,0], + [28161,0], + [28163,0.004], + [29001,0.08], + [29003,0.028], + [29005,0.024], + [29007,0.036], + [29009,0.173], + [29011,0.029], + [29013,0.061], + [29015,0.109], + [29017,0.067], + [29019,0.045], + [29021,0.049], + [29023,0.004], + [29025,0.028], + [29027,0.069], + [29029,0.064], + [29031,0.015], + [29033,0.018], + [29035,0.054], + [29037,0.052], + [29039,0], + [29041,0.116], + [29043,0.03], + [29045,0.223], + [29047,0.038], + [29049,0.014], + [29051,0.036], + [29053,0.103], + [29055,0.182], + [29057,0.184], + [29059,0.221], + [29061,0.27], + [29063,0.097], + [29065,0.135], + [29067,0.004], + [29069,0.054], + [29071,0.056], + [29073,0.017], + [29075,0.077], + [29077,0.076], + [29079,0.221], + [29081,0.128], + [29083,0.149], + [29085,0.32], + [29087,0.02], + [29089,0.021], + [29091,0.109], + [29093,0.06], + [29095,0.059], + [29097,0.068], + [29099,0.017], + [29101,0.051], + [29103,0.229], + [29105,0.056], + [29107,0.086], + [29109,0.077], + [29111,0.192], + [29113,0.046], + [29115,0.1], + [29117,0.053], + [29119,0.137], + [29121,0.147], + [29123,0.05], + [29125,0.193], + [29127,0.009], + [29129,0.215], + [29131,0.044], + [29133,0.044], + [29135,0.208], + [29137,0.107], + [29139,0.027], + [29141,0.278], + [29143,0.018], + [29145,0.104], + [29147,0.096], + [29149,0.111], + [29151,0], + [29153,0.078], + [29155,0.056], + [29157,0.062], + [29159,0.089], + [29161,0.035], + [29163,0.084], + [29165,0.036], + [29167,0.115], + [29169,0.008], + [29171,0.226], + [29173,0.018], + [29175,0.034], + [29177,0.028], + [29179,0.029], + [29181,0.041], + [29183,0.019], + [29185,0.121], + [29186,0], + [29187,0.006], + [29189,0.021], + [29195,0.024], + [29197,0.125], + [29199,0.545], + [29201,0.03], + [29203,0.17], + [29205,0.066], + [29207,0.067], + [29209,0.083], + [29211,0.074], + [29213,0.068], + [29215,0.095], + [29217,0.144], + [29219,0.005], + [29221,0.035], + [29223,0.036], + [29225,0.086], + [29227,0.014], + [29229,0.174], + [29510,0.034], + [30001,0.023], + [30003,0.333], + [30005,0.027], + [30007,0.098], + [30009,0.056], + [30011,0.257], + [30013,0.022], + [30015,0.062], + [30017,0.026], + [30019,0], + [30021,0.003], + [30023,0.072], + [30025,0.2], + [30027,0.018], + [30029,0.025], + [30031,0.047], + [30033,0.107], + [30035,0.235], + [30037,0.065], + [30039,0], + [30041,0.019], + [30043,0.009], + [30045,0], + [30047,0.098], + [30049,0.011], + [30051,0], + [30053,0.097], + [30055,0.095], + [30057,0.063], + [30059,0.339], + [30061,0.155], + [30063,0.02], + [30065,0.014], + [30067,0.023], + [30069,0], + [30071,0.2], + [30073,0.052], + [30075,0.066], + [30077,0.035], + [30079,0], + [30081,0.106], + [30083,0.058], + [30085,0.27], + [30087,0.241], + [30089,0.08], + [30091,0.096], + [30093,0], + [30095,0.017], + [30097,0], + [30099,0.143], + [30101,0], + [30103,0], + [30105,0.02], + [30107,0.064], + [30109,0.376], + [30111,0.024], + [31001,0.041], + [31003,0], + [31005,0], + [31007,0], + [31009,0], + [31011,0.029], + [31013,0.002], + [31015,0], + [31017,0], + [31019,0.046], + [31021,0.087], + [31023,0.015], + [31025,0.024], + [31027,0.022], + [31029,0], + [31031,0.029], + [31033,0.004], + [31035,0.041], + [31037,0.084], + [31039,0.011], + [31041,0.037], + [31043,0.108], + [31045,0.098], + [31047,0.128], + [31049,0.008], + [31051,0.045], + [31053,0.033], + [31055,0.046], + [31057,0.084], + [31059,0.09], + [31061,0.016], + [31063,0.011], + [31065,0], + [31067,0.032], + [31069,0.085], + [31071,0.125], + [31073,0], + [31075,0.2], + [31077,0.059], + [31079,0.046], + [31081,0.039], + [31083,0.059], + [31085,0], + [31087,0.113], + [31089,0.026], + [31091,0], + [31093,0], + [31095,0.012], + [31097,0.007], + [31099,0.023], + [31101,0.084], + [31103,0.188], + [31105,0.138], + [31107,0.048], + [31109,0.044], + [31111,0.06], + [31113,0.094], + [31115,0.106], + [31117,0], + [31119,0.068], + [31121,0.045], + [31123,0], + [31125,0.019], + [31127,0.031], + [31129,0.05], + [31131,0.076], + [31133,0.141], + [31135,0], + [31137,0.053], + [31139,0.016], + [31141,0.091], + [31143,0.138], + [31145,0.026], + [31147,0.049], + [31149,0.081], + [31151,0.148], + [31153,0.028], + [31155,0.017], + [31157,0.055], + [31159,0.053], + [31161,0.05], + [31163,0.029], + [31165,0.063], + [31167,0.055], + [31169,0.02], + [31171,0], + [31173,0.164], + [31175,0.083], + [31177,0.005], + [31179,0.009], + [31181,0.009], + [31183,0.128], + [31185,0.057], + [32001,0.046], + [32003,0.055], + [32005,0.086], + [32007,0.102], + [32009,0], + [32011,0], + [32013,0.08], + [32015,0.034], + [32017,0.004], + [32019,0.032], + [32021,0.087], + [32023,0.097], + [32027,0.101], + [32029,0], + [32031,0.067], + [32033,0.052], + [32510,0.059], + [33001,0.008], + [33003,0.059], + [33005,0.046], + [33007,0.054], + [33009,0.052], + [33011,0.021], + [33013,0.024], + [33015,0.017], + [33017,0.018], + [33019,0.081], + [34001,0.042], + [34003,0.038], + [34005,0.017], + [34007,0.027], + [34009,0.049], + [34011,0.035], + [34013,0.046], + [34015,0.027], + [34017,0.032], + [34019,0.012], + [34021,0.013], + [34023,0.026], + [34025,0.024], + [34027,0.012], + [34029,0.021], + [34031,0.044], + [34033,0.024], + [34035,0.03], + [34037,0.022], + [34039,0.043], + [34041,0.032], + [35001,0.024], + [35003,0.25], + [35005,0.062], + [35006,0.043], + [35007,0.013], + [35009,0.017], + [35011,0], + [35013,0.055], + [35015,0.058], + [35017,0.017], + [35019,0], + [35021,0], + [35023,0.01], + [35025,0.046], + [35027,0.059], + [35028,0.014], + [35029,0.022], + [35031,0.07], + [35033,0], + [35035,0.027], + [35037,0.121], + [35039,0.023], + [35041,0.039], + [35043,0.071], + [35045,0.067], + [35047,0.005], + [35049,0.038], + [35051,0], + [35053,0.009], + [35055,0.019], + [35057,0.02], + [35059,0.061], + [35061,0.006], + [36001,0.011], + [36003,0.146], + [36005,0.018], + [36007,0.019], + [36009,0.131], + [36011,0.065], + [36013,0.081], + [36015,0.027], + [36017,0.038], + [36019,0.009], + [36021,0.03], + [36023,0.042], + [36025,0.023], + [36027,0.022], + [36029,0.013], + [36031,0.009], + [36033,0.048], + [36035,0.026], + [36037,0.023], + [36039,0.015], + [36041,0], + [36043,0.078], + [36045,0.04], + [36047,0.018], + [36049,0.022], + [36051,0.012], + [36053,0.034], + [36055,0.016], + [36057,0.137], + [36059,0.02], + [36061,0.017], + [36063,0.012], + [36065,0.036], + [36067,0.024], + [36069,0.033], + [36071,0.017], + [36073,0.082], + [36075,0.037], + [36077,0.033], + [36079,0.014], + [36081,0.023], + [36083,0.025], + [36085,0.009], + [36087,0.019], + [36089,0.121], + [36091,0.023], + [36093,0.015], + [36095,0.028], + [36097,0.003], + [36099,0.139], + [36101,0.079], + [36103,0.019], + [36105,0.032], + [36107,0.017], + [36109,0.011], + [36111,0.029], + [36113,0.013], + [36115,0.015], + [36117,0.032], + [36119,0.013], + [36121,0.048], + [36123,0.428], + [37001,0.048], + [37003,0.065], + [37005,0.022], + [37007,0.009], + [37009,0.06], + [37011,0.007], + [37013,0.013], + [37015,0.022], + [37017,0.036], + [37019,0.029], + [37021,0.037], + [37023,0.013], + [37025,0.035], + [37027,0.024], + [37029,0], + [37031,0.04], + [37033,0.02], + [37035,0.065], + [37037,0.05], + [37039,0.047], + [37041,0], + [37043,0.019], + [37045,0.051], + [37047,0.024], + [37049,0.073], + [37051,0.023], + [37053,0.119], + [37055,0.09], + [37057,0.036], + [37059,0.031], + [37061,0.072], + [37063,0.055], + [37065,0.005], + [37067,0.024], + [37069,0.034], + [37071,0.046], + [37073,0.047], + [37075,0.027], + [37077,0.019], + [37079,0.011], + [37081,0.031], + [37083,0.062], + [37085,0.025], + [37087,0.04], + [37089,0.051], + [37091,0.003], + [37093,0.014], + [37095,0.053], + [37097,0.038], + [37099,0.027], + [37101,0.033], + [37103,0.008], + [37105,0.043], + [37107,0.016], + [37109,0.021], + [37111,0.022], + [37113,0.016], + [37115,0.024], + [37117,0.012], + [37119,0.043], + [37121,0.073], + [37123,0.03], + [37125,0.045], + [37127,0.014], + [37129,0.045], + [37131,0.061], + [37133,0.01], + [37135,0.034], + [37137,0.009], + [37139,0.024], + [37141,0.027], + [37143,0.037], + [37145,0.051], + [37147,0.025], + [37149,0.015], + [37151,0.04], + [37153,0.026], + [37155,0.021], + [37157,0.042], + [37159,0.045], + [37161,0.038], + [37163,0.04], + [37165,0.032], + [37167,0.082], + [37169,0.042], + [37171,0.03], + [37173,0.141], + [37175,0.026], + [37177,0], + [37179,0.041], + [37181,0.021], + [37183,0.032], + [37185,0.007], + [37187,0.131], + [37189,0.034], + [37191,0.029], + [37193,0.022], + [37195,0.02], + [37197,0.031], + [37199,0.018], + [38001,0.317], + [38003,0.092], + [38005,0.089], + [38007,0], + [38009,0.011], + [38011,0.028], + [38013,0.052], + [38015,0.056], + [38017,0.044], + [38019,0.074], + [38021,0.04], + [38023,0], + [38025,0.296], + [38027,0.094], + [38029,0.058], + [38031,0.321], + [38033,0.016], + [38035,0.08], + [38037,0.034], + [38039,0], + [38041,0.099], + [38043,0.03], + [38045,0.033], + [38047,0], + [38049,0.012], + [38051,0.05], + [38053,0.144], + [38055,0.091], + [38057,0.168], + [38059,0.048], + [38061,0.164], + [38063,0.012], + [38065,0.242], + [38067,0.055], + [38069,0], + [38071,0.093], + [38073,0.122], + [38075,0.032], + [38077,0.027], + [38079,0.172], + [38081,0.04], + [38083,0.009], + [38085,0.354], + [38087,0], + [38089,0.091], + [38091,0], + [38093,0.091], + [38095,0.033], + [38097,0.102], + [38099,0.017], + [38101,0.031], + [38103,0.052], + [38105,0.135], + [39001,0.042], + [39003,0.048], + [39005,0.213], + [39007,0.15], + [39009,0.035], + [39011,0.006], + [39013,0.02], + [39015,0.065], + [39017,0.03], + [39019,0.076], + [39021,0.029], + [39023,0.044], + [39025,0.025], + [39027,0.023], + [39029,0.051], + [39031,0.162], + [39033,0.03], + [39035,0.023], + [39037,0.025], + [39039,0.061], + [39041,0.012], + [39043,0.024], + [39045,0.033], + [39047,0.035], + [39049,0.032], + [39051,0.023], + [39053,0.134], + [39055,0.137], + [39057,0.028], + [39059,0.029], + [39061,0.036], + [39063,0.029], + [39065,0.139], + [39067,0.174], + [39069,0.02], + [39071,0.066], + [39073,0.016], + [39075,0.574], + [39077,0.056], + [39079,0.02], + [39081,0.025], + [39083,0.189], + [39085,0.036], + [39087,0.059], + [39089,0.035], + [39091,0.05], + [39093,0.026], + [39095,0.027], + [39097,0.041], + [39099,0.021], + [39101,0.032], + [39103,0.048], + [39105,0.033], + [39107,0.008], + [39109,0.044], + [39111,0.058], + [39113,0.037], + [39115,0.13], + [39117,0.112], + [39119,0.028], + [39121,0.164], + [39123,0.049], + [39125,0.023], + [39127,0.038], + [39129,0.07], + [39131,0.027], + [39133,0.03], + [39135,0.093], + [39137,0.025], + [39139,0.088], + [39141,0.032], + [39143,0.018], + [39145,0.019], + [39147,0.013], + [39149,0.014], + [39151,0.037], + [39153,0.03], + [39155,0.046], + [39157,0.091], + [39159,0.025], + [39161,0.017], + [39163,0.133], + [39165,0.017], + [39167,0.043], + [39169,0.195], + [39171,0.074], + [39173,0.033], + [39175,0.059], + [40001,0.161], + [40003,0.032], + [40005,0.218], + [40007,0.023], + [40009,0.015], + [40011,0.04], + [40013,0.105], + [40015,0.062], + [40017,0.041], + [40019,0.077], + [40021,0.134], + [40023,0.142], + [40025,0.094], + [40027,0.039], + [40029,0.248], + [40031,0.036], + [40033,0.032], + [40035,0.124], + [40037,0.046], + [40039,0.085], + [40041,0.121], + [40043,0.101], + [40045,0.016], + [40047,0.043], + [40049,0.105], + [40051,0.051], + [40053,0.032], + [40055,0.071], + [40057,0.049], + [40059,0], + [40061,0.078], + [40063,0.145], + [40065,0.044], + [40067,0.037], + [40069,0.077], + [40071,0.063], + [40073,0.037], + [40075,0.051], + [40077,0.193], + [40079,0.078], + [40081,0.065], + [40083,0.031], + [40085,0.082], + [40087,0.097], + [40089,0.113], + [40091,0.14], + [40093,0.049], + [40095,0.058], + [40097,0.121], + [40099,0.119], + [40101,0.101], + [40103,0.08], + [40105,0.073], + [40107,0.183], + [40109,0.05], + [40111,0.112], + [40113,0.045], + [40115,0.112], + [40117,0.084], + [40119,0.104], + [40121,0.059], + [40123,0.132], + [40125,0.054], + [40127,0.054], + [40129,0.083], + [40131,0.062], + [40133,0.1], + [40135,0.081], + [40137,0.03], + [40139,0.059], + [40141,0.058], + [40143,0.057], + [40145,0.051], + [40147,0.078], + [40149,0.066], + [40151,0.023], + [40153,0.065], + [41001,0.083], + [41003,0.022], + [41005,0.029], + [41007,0.047], + [41009,0.028], + [41011,0.058], + [41013,0.017], + [41015,0.038], + [41017,0.025], + [41019,0.035], + [41021,0.022], + [41023,0.036], + [41025,0.05], + [41027,0.024], + [41029,0.041], + [41031,0.085], + [41033,0.023], + [41035,0.02], + [41037,0], + [41039,0.03], + [41041,0.028], + [41043,0.068], + [41045,0.035], + [41047,0.035], + [41049,0.084], + [41051,0.02], + [41053,0.015], + [41055,0.064], + [41057,0.003], + [41059,0.026], + [41061,0.059], + [41063,0], + [41065,0.04], + [41067,0.033], + [41069,0], + [41071,0.016], + [42001,0.069], + [42003,0.019], + [42005,0.054], + [42007,0.005], + [42009,0.07], + [42011,0.046], + [42013,0.039], + [42015,0.054], + [42017,0.018], + [42019,0.013], + [42021,0.036], + [42023,0], + [42025,0.03], + [42027,0.076], + [42029,0.046], + [42031,0.115], + [42033,0.044], + [42035,0.107], + [42037,0.037], + [42039,0.125], + [42041,0.073], + [42043,0.039], + [42045,0.02], + [42047,0.045], + [42049,0.022], + [42051,0.022], + [42053,0], + [42055,0.11], + [42057,0.069], + [42059,0.013], + [42061,0.036], + [42063,0.166], + [42065,0.129], + [42067,0.195], + [42069,0.018], + [42071,0.208], + [42073,0.039], + [42075,0.114], + [42077,0.038], + [42079,0.023], + [42081,0.054], + [42083,0.024], + [42085,0.076], + [42087,0.232], + [42089,0.057], + [42091,0.019], + [42093,0.086], + [42095,0.023], + [42097,0.037], + [42099,0.143], + [42101,0.026], + [42103,0.039], + [42105,0.049], + [42107,0.047], + [42109,0.18], + [42111,0.074], + [42113,0.043], + [42115,0.037], + [42117,0.074], + [42119,0.164], + [42121,0.071], + [42123,0.1], + [42125,0.019], + [42127,0.036], + [42129,0.013], + [42131,0.023], + [42133,0.032], + [44001,0.01], + [44003,0.024], + [44005,0.03], + [44007,0.025], + [44009,0.011], + [45001,0.116], + [45003,0.06], + [45005,0], + [45007,0.043], + [45009,0.025], + [45011,0.072], + [45013,0.07], + [45015,0.054], + [45017,0.029], + [45019,0.045], + [45021,0.025], + [45023,0.074], + [45025,0.032], + [45027,0.006], + [45029,0.018], + [45031,0.025], + [45033,0.081], + [45035,0.058], + [45037,0.012], + [45039,0.025], + [45041,0.012], + [45043,0.088], + [45045,0.035], + [45047,0.07], + [45049,0.067], + [45051,0.043], + [45053,0.013], + [45055,0.011], + [45057,0.009], + [45059,0.032], + [45061,0], + [45063,0.035], + [45065,0], + [45067,0.015], + [45069,0.023], + [45071,0.022], + [45073,0.052], + [45075,0.022], + [45077,0.052], + [45079,0.04], + [45081,0.016], + [45083,0.03], + [45085,0.035], + [45087,0], + [45089,0.017], + [45091,0.029], + [46003,0.052], + [46005,0.069], + [46007,0.153], + [46009,0], + [46011,0.05], + [46013,0.027], + [46015,0.177], + [46017,0.156], + [46019,0.171], + [46021,0], + [46023,0.115], + [46025,0.009], + [46027,0.039], + [46029,0.019], + [46031,0.037], + [46033,0.136], + [46035,0.074], + [46037,0.098], + [46039,0.029], + [46041,0.113], + [46043,0.146], + [46045,0.003], + [46047,0.009], + [46049,0.116], + [46051,0.013], + [46053,0.017], + [46055,0.204], + [46057,0.058], + [46059,0.014], + [46061,0.055], + [46063,0], + [46065,0.044], + [46067,0.014], + [46069,0.022], + [46071,0.155], + [46073,0.092], + [46075,0.19], + [46077,0.039], + [46079,0.033], + [46081,0.073], + [46083,0.015], + [46085,0.106], + [46087,0.056], + [46089,0.016], + [46091,0.037], + [46093,0.044], + [46095,0.276], + [46097,0.022], + [46099,0.051], + [46101,0.024], + [46102,0.103], + [46103,0.064], + [46105,0.06], + [46107,0.262], + [46109,0.211], + [46111,0.03], + [46115,0.078], + [46117,0], + [46119,0.118], + [46121,0.056], + [46123,0], + [46125,0.011], + [46127,0.044], + [46129,0.05], + [46135,0.029], + [46137,0.06], + [47001,0.036], + [47003,0.03], + [47005,0], + [47007,0.019], + [47009,0.053], + [47011,0.021], + [47013,0.049], + [47015,0.051], + [47017,0.015], + [47019,0.063], + [47021,0.032], + [47023,0.003], + [47025,0.026], + [47027,0.097], + [47029,0.014], + [47031,0.073], + [47033,0.018], + [47035,0.057], + [47037,0.05], + [47039,0.036], + [47041,0.004], + [47043,0.037], + [47045,0.004], + [47047,0.01], + [47049,0], + [47051,0.088], + [47053,0.023], + [47055,0.021], + [47057,0], + [47059,0.018], + [47061,0.008], + [47063,0.046], + [47065,0.024], + [47067,0.022], + [47069,0.069], + [47071,0.019], + [47073,0.035], + [47075,0.038], + [47077,0.032], + [47079,0.044], + [47081,0.013], + [47083,0.037], + [47085,0.005], + [47087,0.178], + [47089,0.029], + [47091,0.043], + [47093,0.022], + [47095,0.018], + [47097,0.011], + [47099,0.097], + [47101,0], + [47103,0.016], + [47105,0.021], + [47107,0.05], + [47109,0.091], + [47111,0.038], + [47113,0.029], + [47115,0.014], + [47117,0.015], + [47119,0.044], + [47121,0.093], + [47123,0.026], + [47125,0.037], + [47127,0.049], + [47129,0.063], + [47131,0.042], + [47133,0.015], + [47135,0.068], + [47137,0.007], + [47139,0.048], + [47141,0.007], + [47143,0.033], + [47145,0], + [47147,0.016], + [47149,0.047], + [47151,0.04], + [47153,0.071], + [47155,0.046], + [47157,0.047], + [47159,0.022], + [47161,0.056], + [47163,0.021], + [47165,0.037], + [47167,0.007], + [47169,0], + [47171,0.016], + [47173,0.129], + [47175,0.137], + [47177,0.066], + [47179,0.023], + [47181,0.004], + [47183,0.152], + [47185,0.09], + [47187,0.021], + [47189,0.028], + [48001,0.076], + [48003,0.137], + [48005,0.099], + [48007,0.053], + [48009,0.09], + [48011,0], + [48013,0.116], + [48015,0.048], + [48017,0.198], + [48019,0.112], + [48021,0.09], + [48023,0.293], + [48025,0.086], + [48027,0.034], + [48029,0.061], + [48031,0.185], + [48033,0], + [48035,0.114], + [48037,0.076], + [48039,0.093], + [48041,0.048], + [48043,0], + [48045,0.066], + [48047,0.018], + [48049,0.076], + [48051,0.042], + [48053,0.105], + [48055,0.141], + [48057,0.086], + [48059,0.13], + [48061,0.095], + [48063,0.137], + [48065,0.043], + [48067,0.026], + [48069,0.163], + [48071,0.043], + [48073,0.084], + [48075,0], + [48077,0.052], + [48079,0.238], + [48081,0.095], + [48083,0.17], + [48085,0.056], + [48087,0.15], + [48089,0.094], + [48091,0.08], + [48093,0.145], + [48095,0], + [48097,0.075], + [48099,0.016], + [48101,0], + [48103,0.099], + [48105,0], + [48107,0], + [48109,0.057], + [48111,0.279], + [48113,0.096], + [48115,0.04], + [48117,0.059], + [48119,0.133], + [48121,0.062], + [48123,0.098], + [48125,0.139], + [48127,0.108], + [48129,0.099], + [48131,0.033], + [48133,0.052], + [48135,0.158], + [48137,0.085], + [48139,0.098], + [48141,0.056], + [48143,0.145], + [48145,0.082], + [48147,0.093], + [48149,0.1], + [48151,0.017], + [48153,0.18], + [48155,0.64], + [48157,0.057], + [48159,0.102], + [48161,0.085], + [48163,0.079], + [48165,0.297], + [48167,0.065], + [48169,0.05], + [48171,0.139], + [48173,0], + [48175,0.023], + [48177,0.057], + [48179,0.066], + [48181,0.118], + [48183,0.093], + [48185,0.053], + [48187,0.065], + [48189,0.09], + [48191,0.028], + [48193,0.137], + [48195,0.184], + [48197,0.081], + [48199,0.087], + [48201,0.085], + [48203,0.058], + [48205,0.144], + [48207,0.062], + [48209,0.066], + [48211,0.233], + [48213,0.097], + [48215,0.092], + [48217,0.084], + [48219,0.046], + [48221,0.09], + [48223,0.148], + [48225,0.002], + [48227,0.082], + [48229,0.037], + [48231,0.074], + [48233,0.087], + [48235,0.467], + [48237,0.13], + [48239,0.049], + [48241,0.108], + [48243,0], + [48245,0.084], + [48247,0.092], + [48249,0.02], + [48251,0.098], + [48253,0.074], + [48255,0.095], + [48257,0.047], + [48259,0.073], + [48261,0], + [48263,0], + [48265,0.093], + [48267,0.053], + [48269,0.214], + [48271,0.221], + [48273,0.048], + [48275,0.08], + [48277,0.12], + [48279,0.086], + [48281,0.066], + [48283,0.065], + [48285,0.045], + [48287,0.034], + [48289,0.08], + [48291,0.1], + [48293,0.03], + [48295,0.172], + [48297,0.118], + [48299,0.058], + [48301,0], + [48303,0.073], + [48305,0.15], + [48307,0.276], + [48309,0.083], + [48311,0], + [48313,0.045], + [48315,0.064], + [48317,0.055], + [48319,0.256], + [48321,0.049], + [48323,0.158], + [48325,0.099], + [48327,0], + [48329,0.099], + [48331,0.052], + [48333,0.039], + [48335,0.106], + [48337,0.116], + [48339,0.067], + [48341,0.087], + [48343,0.112], + [48345,0], + [48347,0.103], + [48349,0.132], + [48351,0.077], + [48353,0.108], + [48355,0.07], + [48357,0.109], + [48359,0], + [48361,0.094], + [48363,0.105], + [48365,0.097], + [48367,0.1], + [48369,0.119], + [48371,0.091], + [48373,0.077], + [48375,0.113], + [48377,0.202], + [48379,0.083], + [48381,0.067], + [48383,0.142], + [48385,0.052], + [48387,0.044], + [48389,0.191], + [48391,0.13], + [48393,0.167], + [48395,0.055], + [48397,0.126], + [48399,0.03], + [48401,0.091], + [48403,0], + [48405,0.054], + [48407,0.063], + [48409,0.051], + [48411,0.062], + [48413,0.102], + [48415,0.202], + [48417,0.054], + [48419,0.096], + [48421,0.147], + [48423,0.082], + [48425,0.063], + [48427,0.13], + [48429,0.018], + [48431,0.108], + [48433,0.134], + [48435,0.085], + [48437,0.114], + [48439,0.077], + [48441,0.067], + [48443,0], + [48445,0.207], + [48447,0.058], + [48449,0.06], + [48451,0.074], + [48453,0.065], + [48455,0.161], + [48457,0.017], + [48459,0.113], + [48461,0], + [48463,0.008], + [48465,0.031], + [48467,0.095], + [48469,0.08], + [48471,0.098], + [48473,0.077], + [48475,0.158], + [48477,0.067], + [48479,0.103], + [48481,0.117], + [48483,0.054], + [48485,0.071], + [48487,0.114], + [48489,0.075], + [48491,0.048], + [48493,0.095], + [48495,0.112], + [48497,0.098], + [48499,0.025], + [48501,0.241], + [48503,0.134], + [48505,0.064], + [48507,0.022], + [49001,0.04], + [49003,0.078], + [49005,0.031], + [49007,0.08], + [49009,0], + [49011,0.042], + [49013,0.067], + [49015,0.074], + [49017,0.146], + [49019,0.082], + [49021,0.038], + [49023,0.151], + [49025,0.045], + [49027,0.127], + [49029,0.032], + [49031,0], + [49033,0.116], + [49035,0.064], + [49037,0.17], + [49039,0.089], + [49041,0.031], + [49043,0.047], + [49045,0.063], + [49047,0.11], + [49049,0.049], + [49051,0.051], + [49053,0.112], + [49055,0.251], + [49057,0.058], + [50001,0.005], + [50003,0.013], + [50005,0.01], + [50007,0.022], + [50009,0.018], + [50011,0.014], + [50013,0.005], + [50015,0.026], + [50017,0.024], + [50019,0.024], + [50021,0.017], + [50023,0.01], + [50025,0.001], + [50027,0.003], + [51001,0.072], + [51003,0.058], + [51005,0.011], + [51007,0.022], + [51009,0.094], + [51011,0.044], + [51013,0.022], + [51015,0.03], + [51017,0], + [51019,0.01], + [51021,0.109], + [51023,0.014], + [51025,0.024], + [51027,0.014], + [51029,0.077], + [51031,0.085], + [51033,0.041], + [51035,0.065], + [51036,0.076], + [51037,0.02], + [51041,0.031], + [51043,0.123], + [51045,0], + [51047,0.039], + [51049,0.012], + [51051,0.046], + [51053,0.023], + [51057,0.016], + [51059,0.034], + [51061,0.074], + [51063,0.075], + [51065,0.053], + [51067,0.097], + [51069,0.041], + [51071,0.04], + [51073,0.037], + [51075,0.008], + [51077,0.063], + [51079,0.142], + [51081,0.057], + [51083,0.067], + [51085,0.021], + [51087,0.044], + [51089,0.03], + [51091,0.194], + [51093,0.039], + [51095,0.021], + [51097,0.07], + [51099,0.016], + [51101,0.006], + [51103,0.03], + [51105,0.057], + [51107,0.037], + [51109,0.051], + [51111,0.089], + [51113,0.035], + [51115,0.022], + [51117,0.069], + [51119,0.063], + [51121,0.036], + [51125,0.015], + [51127,0], + [51131,0.157], + [51133,0.127], + [51135,0.086], + [51137,0.079], + [51139,0.058], + [51141,0], + [51143,0.03], + [51145,0.021], + [51147,0.044], + [51149,0.026], + [51153,0.057], + [51155,0.016], + [51157,0.114], + [51159,0], + [51161,0.02], + [51163,0.104], + [51165,0.103], + [51167,0.038], + [51169,0.064], + [51171,0.033], + [51173,0.005], + [51175,0.007], + [51177,0.034], + [51179,0.041], + [51181,0.112], + [51183,0.048], + [51185,0.08], + [51187,0.111], + [51191,0.017], + [51193,0.026], + [51195,0.01], + [51197,0.114], + [51199,0.035], + [51510,0.034], + [51520,0.03], + [51530,0], + [51540,0.038], + [51550,0.024], + [51570,0.045], + [51580,0.051], + [51590,0.021], + [51595,0.314], + [51600,0.017], + [51610,0.067], + [51620,0], + [51630,0.042], + [51640,0.133], + [51650,0.034], + [51660,0.103], + [51670,0.031], + [51678,0], + [51680,0.048], + [51683,0.046], + [51685,0.052], + [51690,0.018], + [51700,0.064], + [51710,0.058], + [51720,0], + [51730,0.038], + [51735,0], + [51740,0.018], + [51750,0.069], + [51760,0.039], + [51770,0.026], + [51775,0.003], + [51790,0.051], + [51800,0.038], + [51810,0.04], + [51820,0.132], + [51830,0], + [51840,0.024], + [53001,0.019], + [53003,0.034], + [53005,0.019], + [53007,0.039], + [53009,0.038], + [53011,0.023], + [53013,0.059], + [53015,0.007], + [53017,0.012], + [53019,0.005], + [53021,0.032], + [53023,0], + [53025,0.012], + [53027,0.045], + [53029,0.045], + [53031,0.003], + [53033,0.018], + [53035,0.038], + [53037,0.032], + [53039,0.044], + [53041,0.016], + [53043,0.024], + [53045,0.016], + [53047,0.025], + [53049,0.107], + [53051,0.011], + [53053,0.02], + [53055,0.1], + [53057,0.027], + [53059,0], + [53061,0.023], + [53063,0.02], + [53065,0.064], + [53067,0.011], + [53069,0.063], + [53071,0.032], + [53073,0.029], + [53075,0.008], + [53077,0.048], + [54001,0.006], + [54003,0.033], + [54005,0.026], + [54007,0], + [54009,0.035], + [54011,0.022], + [54013,0.03], + [54015,0], + [54017,0.046], + [54019,0], + [54021,0.191], + [54023,0.111], + [54025,0.017], + [54027,0.142], + [54029,0.04], + [54031,0], + [54033,0.027], + [54035,0.042], + [54037,0.016], + [54039,0.019], + [54041,0.006], + [54043,0.032], + [54045,0.024], + [54047,0.009], + [54049,0.012], + [54051,0.116], + [54053,0.023], + [54055,0.014], + [54057,0.012], + [54059,0], + [54061,0.018], + [54063,0.022], + [54065,0], + [54067,0.063], + [54069,0.016], + [54071,0.021], + [54073,0], + [54075,0.04], + [54077,0.014], + [54079,0.023], + [54081,0.021], + [54083,0.061], + [54085,0.038], + [54087,0.04], + [54089,0], + [54091,0.027], + [54093,0.032], + [54095,0.008], + [54097,0.019], + [54099,0.051], + [54101,0.004], + [54103,0.006], + [54105,0], + [54107,0.014], + [54109,0.014], + [55001,0.031], + [55003,0.004], + [55005,0.046], + [55007,0.026], + [55009,0.034], + [55011,0.04], + [55013,0.032], + [55015,0.014], + [55017,0.057], + [55019,0.381], + [55021,0.038], + [55023,0.122], + [55025,0.013], + [55027,0.012], + [55029,0.009], + [55031,0.034], + [55033,0.083], + [55035,0.049], + [55037,0], + [55039,0.033], + [55041,0.106], + [55043,0.088], + [55045,0.013], + [55047,0.188], + [55049,0.043], + [55051,0.057], + [55053,0.13], + [55055,0.013], + [55057,0.014], + [55059,0.033], + [55061,0], + [55063,0.033], + [55065,0.143], + [55067,0.054], + [55069,0.041], + [55071,0.033], + [55073,0.049], + [55075,0.017], + [55077,0.015], + [55078,0.267], + [55079,0.021], + [55081,0.129], + [55083,0.05], + [55085,0.025], + [55087,0.026], + [55089,0.035], + [55091,0.18], + [55093,0.033], + [55095,0.044], + [55097,0.028], + [55099,0.017], + [55101,0.02], + [55103,0.144], + [55105,0.022], + [55107,0.127], + [55109,0.042], + [55111,0.055], + [55113,0.016], + [55115,0.072], + [55117,0.016], + [55119,0.126], + [55121,0.079], + [55123,0.243], + [55125,0.097], + [55127,0.025], + [55129,0.021], + [55131,0.022], + [55133,0.015], + [55135,0.084], + [55137,0.084], + [55139,0.037], + [55141,0.035], + [56001,0.039], + [56003,0.076], + [56005,0.078], + [56007,0.081], + [56009,0.096], + [56011,0.061], + [56013,0.161], + [56015,0.092], + [56017,0.189], + [56019,0.1], + [56021,0.048], + [56023,0.07], + [56025,0.063], + [56027,0], + [56029,0.121], + [56031,0], + [56033,0.009], + [56035,0.123], + [56037,0.138], + [56039,0.059], + [56041,0.018], + [56043,0.078], + [56045,0.071] + ] +} diff --git a/data/regional/united-states/infrastructure/construction/us-building-permits-2010.json b/data/regional/united-states/infrastructure/construction/us-building-permits-2010.json new file mode 100644 index 0000000..456a3d5 --- /dev/null +++ b/data/regional/united-states/infrastructure/construction/us-building-permits-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Building Permits", + "description" : "Number of building permits issued.", + "units" : "permits", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "infrastructure", + "tags" : ["regional","us","counties","infrastructure","construction","building"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.building_permits_2010"], + [1001,191], + [1003,696], + [1005,10], + [1007,8], + [1009,18], + [1011,1], + [1013,3], + [1015,107], + [1017,10], + [1019,6], + [1021,22], + [1023,1], + [1025,5], + [1027,2], + [1029,8], + [1031,239], + [1033,88], + [1035,1], + [1037,0], + [1039,12], + [1041,1], + [1043,24], + [1045,136], + [1047,36], + [1049,32], + [1051,128], + [1053,7], + [1055,105], + [1057,3], + [1059,12], + [1061,18], + [1063,3], + [1065,22], + [1067,42], + [1069,261], + [1071,18], + [1073,1277], + [1075,1], + [1077,144], + [1079,0], + [1081,971], + [1083,138], + [1085,3], + [1087,5], + [1089,2137], + [1091,32], + [1093,7], + [1095,53], + [1097,1026], + [1099,1], + [1101,671], + [1103,165], + [1105,0], + [1107,4], + [1109,88], + [1111,0], + [1113,934], + [1115,111], + [1117,473], + [1119,5], + [1121,116], + [1123,9], + [1125,598], + [1127,15], + [1129,1], + [1131,0], + [1133,0], + [2013,0], + [2016,8], + [2020,480], + [2050,10], + [2060,1], + [2068,0], + [2070,0], + [2090,42], + [2100,6], + [2105,4], + [2110,53], + [2122,89], + [2130,17], + [2150,17], + [2158,0], + [2164,0], + [2170,53], + [2180,1], + [2185,12], + [2188,4], + [2195,5], + [2198,4], + [2220,13], + [2230,0], + [2240,0], + [2261,19], + [2275,0], + [2282,2], + [2290,0], + [4001,48], + [4003,347], + [4005,315], + [4007,73], + [4009,80], + [4011,4], + [4012,16], + [4013,6703], + [4015,262], + [4017,140], + [4019,1938], + [4021,1597], + [4023,53], + [4025,339], + [4027,455], + [5001,17], + [5003,0], + [5005,17], + [5007,769], + [5009,71], + [5011,1], + [5013,1], + [5015,10], + [5017,5], + [5019,13], + [5021,12], + [5023,16], + [5025,0], + [5027,8], + [5029,8], + [5031,590], + [5033,104], + [5035,42], + [5037,8], + [5039,5], + [5041,2], + [5043,86], + [5045,1070], + [5047,8], + [5049,0], + [5051,38], + [5053,39], + [5055,168], + [5057,5], + [5059,2], + [5061,13], + [5063,17], + [5065,2], + [5067,6], + [5069,124], + [5071,10], + [5073,0], + [5075,9], + [5077,27], + [5079,2], + [5081,3], + [5083,14], + [5085,312], + [5087,20], + [5089,11], + [5091,45], + [5093,35], + [5095,1], + [5097,0], + [5099,1], + [5101,1], + [5103,6], + [5105,4], + [5107,2], + [5109,0], + [5111,21], + [5113,37], + [5115,133], + [5117,3], + [5119,1283], + [5121,6], + [5123,0], + [5125,851], + [5127,2], + [5129,0], + [5131,462], + [5133,4], + [5135,3], + [5137,9], + [5139,3], + [5141,7], + [5143,417], + [5145,151], + [5147,4], + [5149,1], + [6001,1727], + [6003,4], + [6005,29], + [6007,512], + [6009,45], + [6011,19], + [6013,1676], + [6015,29], + [6017,120], + [6019,2248], + [6021,45], + [6023,191], + [6025,102], + [6027,8], + [6029,1656], + [6031,265], + [6033,46], + [6035,13], + [6037,7260], + [6039,192], + [6041,186], + [6043,45], + [6045,157], + [6047,106], + [6049,16], + [6051,22], + [6053,279], + [6055,110], + [6057,142], + [6059,3134], + [6061,1166], + [6063,35], + [6065,4547], + [6067,1162], + [6069,47], + [6071,1789], + [6073,3494], + [6075,779], + [6077,813], + [6079,468], + [6081,253], + [6083,400], + [6085,4132], + [6087,158], + [6089,253], + [6091,7], + [6093,58], + [6095,467], + [6097,477], + [6099,292], + [6101,88], + [6103,77], + [6105,40], + [6107,1367], + [6109,57], + [6111,590], + [6113,254], + [6115,62], + [8001,662], + [8003,38], + [8005,1279], + [8007,37], + [8009,2], + [8011,0], + [8013,657], + [8014,232], + [8015,101], + [8017,1], + [8019,13], + [8021,17], + [8023,24], + [8025,4], + [8027,67], + [8029,10], + [8031,1232], + [8033,0], + [8035,915], + [8037,61], + [8039,33], + [8041,1718], + [8043,53], + [8045,37], + [8047,4], + [8049,159], + [8051,73], + [8053,11], + [8055,30], + [8057,7], + [8059,577], + [8061,6], + [8063,2], + [8065,19], + [8067,222], + [8069,1153], + [8071,20], + [8073,1], + [8075,15], + [8077,408], + [8079,5], + [8081,7], + [8083,14], + [8085,62], + [8087,22], + [8089,3], + [8091,20], + [8093,95], + [8095,3], + [8097,44], + [8099,2], + [8101,234], + [8103,22], + [8105,21], + [8107,27], + [8109,35], + [8111,1], + [8113,47], + [8115,0], + [8117,117], + [8119,42], + [8121,5], + [8123,863], + [8125,0], + [9001,926], + [9003,810], + [9005,164], + [9007,279], + [9009,1019], + [9011,344], + [9013,190], + [9015,200], + [10001,813], + [10003,705], + [10005,1554], + [11001,739], + [12001,454], + [12003,35], + [12005,309], + [12007,31], + [12009,1144], + [12011,1168], + [12013,17], + [12015,425], + [12017,199], + [12019,551], + [12021,1259], + [12023,84], + [12027,96], + [12029,18], + [12031,1501], + [12033,973], + [12035,278], + [12037,6], + [12039,89], + [12041,36], + [12043,8], + [12045,45], + [12047,22], + [12049,12], + [12051,22], + [12053,242], + [12055,154], + [12057,3950], + [12059,16], + [12061,307], + [12063,58], + [12065,21], + [12067,19], + [12069,552], + [12071,1276], + [12073,434], + [12075,56], + [12077,12], + [12079,27], + [12081,1247], + [12083,481], + [12085,199], + [12086,3203], + [12087,271], + [12089,251], + [12091,547], + [12093,48], + [12095,2880], + [12097,892], + [12099,1506], + [12101,1612], + [12103,697], + [12105,1200], + [12107,36], + [12109,1268], + [12111,293], + [12113,781], + [12115,708], + [12117,930], + [12119,2420], + [12121,50], + [12123,33], + [12125,13], + [12127,715], + [12129,81], + [12131,388], + [12133,23], + [13001,2], + [13003,0], + [13005,0], + [13007,0], + [13009,61], + [13011,42], + [13013,62], + [13015,144], + [13017,36], + [13019,28], + [13021,210], + [13023,9], + [13025,22], + [13027,24], + [13029,223], + [13031,207], + [13033,41], + [13035,9], + [13037,1], + [13039,96], + [13043,0], + [13045,149], + [13047,123], + [13049,17], + [13051,957], + [13053,6], + [13055,0], + [13057,549], + [13059,94], + [13061,10], + [13063,143], + [13065,5], + [13067,1013], + [13069,108], + [13071,67], + [13073,1285], + [13075,22], + [13077,416], + [13079,15], + [13081,75], + [13083,1], + [13085,35], + [13087,89], + [13089,432], + [13091,12], + [13093,0], + [13095,54], + [13097,72], + [13099,12], + [13101,3], + [13103,121], + [13105,18], + [13107,5], + [13109,14], + [13111,106], + [13113,82], + [13115,55], + [13117,1125], + [13119,1], + [13121,1101], + [13123,91], + [13125,0], + [13127,307], + [13129,33], + [13131,20], + [13133,124], + [13135,1239], + [13137,35], + [13139,184], + [13141,12], + [13143,17], + [13145,88], + [13147,29], + [13149,11], + [13151,260], + [13153,646], + [13155,19], + [13157,82], + [13159,36], + [13161,0], + [13163,19], + [13165,8], + [13167,0], + [13169,25], + [13171,80], + [13173,68], + [13175,60], + [13177,111], + [13179,111], + [13181,16], + [13183,0], + [13185,757], + [13187,56], + [13189,33], + [13191,75], + [13193,1], + [13195,58], + [13197,17], + [13199,29], + [13201,4], + [13205,34], + [13207,110], + [13209,9], + [13211,33], + [13213,31], + [13215,339], + [13217,58], + [13219,74], + [13221,0], + [13223,265], + [13225,78], + [13227,28], + [13229,34], + [13231,17], + [13233,94], + [13235,14], + [13237,35], + [13239,5], + [13241,65], + [13243,1], + [13245,378], + [13247,40], + [13249,0], + [13251,7], + [13253,53], + [13255,118], + [13257,2], + [13259,1], + [13261,19], + [13263,6], + [13265,2], + [13267,21], + [13269,10], + [13271,0], + [13273,14], + [13275,72], + [13277,47], + [13279,21], + [13281,59], + [13283,6], + [13285,140], + [13287,7], + [13289,8], + [13291,68], + [13293,71], + [13295,75], + [13297,45], + [13299,76], + [13301,0], + [13303,4], + [13305,3], + [13307,0], + [13309,0], + [13311,40], + [13313,70], + [13315,0], + [13317,17], + [13319,2], + [13321,69], + [15001,1102], + [15003,1891], + [15005,0], + [15007,172], + [15009,277], + [16001,1285], + [16003,13], + [16005,140], + [16007,27], + [16009,19], + [16011,61], + [16013,24], + [16015,24], + [16017,17], + [16019,325], + [16021,29], + [16023,1], + [16025,4], + [16027,360], + [16029,7], + [16031,37], + [16033,2], + [16035,20], + [16037,12], + [16039,37], + [16041,52], + [16043,52], + [16045,13], + [16047,12], + [16049,4], + [16051,65], + [16053,54], + [16055,627], + [16057,107], + [16059,20], + [16061,0], + [16063,3], + [16065,249], + [16067,40], + [16069,48], + [16071,19], + [16073,11], + [16075,38], + [16077,9], + [16079,2], + [16081,16], + [16083,199], + [16085,46], + [16087,23], + [17001,139], + [17003,0], + [17005,28], + [17007,42], + [17009,0], + [17011,27], + [17013,3], + [17015,18], + [17017,3], + [17019,478], + [17021,35], + [17023,5], + [17025,3], + [17027,104], + [17029,127], + [17031,2734], + [17033,7], + [17035,2], + [17037,51], + [17039,24], + [17041,26], + [17043,618], + [17045,6], + [17047,0], + [17049,147], + [17051,4], + [17053,10], + [17055,15], + [17057,32], + [17059,0], + [17061,1], + [17063,86], + [17065,0], + [17067,3], + [17069,0], + [17071,17], + [17073,28], + [17075,44], + [17077,65], + [17079,0], + [17081,0], + [17083,65], + [17085,37], + [17087,3], + [17089,565], + [17091,71], + [17093,177], + [17095,7], + [17097,698], + [17099,77], + [17101,0], + [17103,29], + [17105,29], + [17107,17], + [17109,9], + [17111,305], + [17113,427], + [17115,101], + [17117,48], + [17119,483], + [17121,0], + [17123,13], + [17125,8], + [17127,1], + [17129,9], + [17131,10], + [17133,131], + [17135,24], + [17137,8], + [17139,33], + [17141,97], + [17143,455], + [17145,26], + [17147,41], + [17149,15], + [17151,0], + [17153,8], + [17155,15], + [17157,50], + [17159,10], + [17161,237], + [17163,1023], + [17165,0], + [17167,390], + [17169,0], + [17171,0], + [17173,99], + [17175,0], + [17177,27], + [17179,242], + [17181,27], + [17183,13], + [17185,1], + [17187,57], + [17189,31], + [17191,1], + [17193,0], + [17195,50], + [17197,618], + [17199,128], + [17201,257], + [17203,83], + [18001,44], + [18003,721], + [18005,131], + [18007,7], + [18009,8], + [18011,767], + [18013,136], + [18015,37], + [18017,15], + [18019,276], + [18021,15], + [18023,13], + [18025,0], + [18027,42], + [18029,68], + [18031,31], + [18033,70], + [18035,50], + [18037,81], + [18039,234], + [18041,4], + [18043,133], + [18045,5], + [18047,26], + [18049,10], + [18051,45], + [18053,46], + [18055,0], + [18057,1975], + [18059,151], + [18061,88], + [18063,631], + [18065,22], + [18067,13], + [18069,79], + [18071,111], + [18073,80], + [18075,14], + [18077,37], + [18079,37], + [18081,651], + [18083,17], + [18085,193], + [18087,74], + [18089,818], + [18091,228], + [18093,8], + [18095,80], + [18097,1404], + [18099,88], + [18101,0], + [18103,10], + [18105,261], + [18107,42], + [18109,89], + [18111,18], + [18113,66], + [18115,15], + [18117,5], + [18119,2], + [18121,29], + [18123,38], + [18125,34], + [18127,251], + [18129,60], + [18131,13], + [18133,63], + [18135,12], + [18137,68], + [18139,10], + [18141,311], + [18143,44], + [18145,54], + [18147,38], + [18149,31], + [18151,71], + [18153,1], + [18155,44], + [18157,487], + [18159,5], + [18161,0], + [18163,277], + [18165,9], + [18167,164], + [18169,23], + [18171,11], + [18173,197], + [18175,31], + [18177,149], + [18179,71], + [18181,72], + [18183,93], + [19001,4], + [19003,2], + [19005,34], + [19007,8], + [19009,30], + [19011,16], + [19013,318], + [19015,32], + [19017,59], + [19019,25], + [19021,12], + [19023,29], + [19025,8], + [19027,29], + [19029,11], + [19031,32], + [19033,51], + [19035,12], + [19037,7], + [19039,60], + [19041,16], + [19043,21], + [19045,80], + [19047,20], + [19049,265], + [19051,3], + [19053,4], + [19055,10], + [19057,33], + [19059,92], + [19061,548], + [19063,25], + [19065,5], + [19067,12], + [19069,2], + [19071,12], + [19073,13], + [19075,14], + [19077,4], + [19079,1], + [19081,9], + [19083,4], + [19085,20], + [19087,18], + [19089,7], + [19091,9], + [19093,12], + [19095,10], + [19097,20], + [19099,32], + [19101,9], + [19103,519], + [19105,21], + [19107,4], + [19109,19], + [19111,133], + [19113,818], + [19115,14], + [19117,3], + [19119,20], + [19121,35], + [19123,10], + [19125,48], + [19127,14], + [19129,16], + [19131,24], + [19133,15], + [19135,16], + [19137,9], + [19139,46], + [19141,7], + [19143,1], + [19145,13], + [19147,4], + [19149,44], + [19151,4], + [19153,2233], + [19155,168], + [19157,19], + [19159,2], + [19161,3], + [19163,427], + [19165,11], + [19167,88], + [19169,167], + [19171,15], + [19173,2], + [19175,5], + [19177,1], + [19179,26], + [19181,278], + [19183,34], + [19185,0], + [19187,23], + [19189,2], + [19191,41], + [19193,86], + [19195,4], + [19197,6], + [20001,16], + [20003,7], + [20005,4], + [20007,1], + [20009,7], + [20011,1], + [20013,1], + [20015,147], + [20017,0], + [20019,0], + [20021,4], + [20023,0], + [20025,2], + [20027,7], + [20029,4], + [20031,29], + [20033,0], + [20035,37], + [20037,47], + [20039,1], + [20041,33], + [20043,7], + [20045,288], + [20047,0], + [20049,0], + [20051,54], + [20053,0], + [20055,18], + [20057,52], + [20059,33], + [20061,229], + [20063,0], + [20065,5], + [20067,5], + [20069,34], + [20071,1], + [20073,0], + [20075,0], + [20077,4], + [20079,55], + [20081,0], + [20083,0], + [20085,19], + [20087,36], + [20089,0], + [20091,1053], + [20093,4], + [20095,11], + [20097,1], + [20099,15], + [20101,0], + [20103,103], + [20105,0], + [20107,23], + [20109,0], + [20111,27], + [20113,56], + [20115,20], + [20117,29], + [20119,1], + [20121,38], + [20123,2], + [20125,6], + [20127,3], + [20129,0], + [20131,9], + [20133,62], + [20135,0], + [20137,0], + [20139,24], + [20141,0], + [20143,4], + [20145,12], + [20147,0], + [20149,90], + [20151,1], + [20153,0], + [20155,63], + [20157,1], + [20159,28], + [20161,511], + [20163,3], + [20165,1], + [20167,2], + [20169,98], + [20171,3], + [20173,1036], + [20175,58], + [20177,285], + [20179,0], + [20181,0], + [20183,4], + [20185,6], + [20187,0], + [20189,0], + [20191,21], + [20193,0], + [20195,2], + [20197,17], + [20199,0], + [20201,2], + [20203,0], + [20205,2], + [20207,1], + [20209,214], + [21001,8], + [21003,0], + [21005,57], + [21007,0], + [21009,156], + [21011,0], + [21013,22], + [21015,450], + [21017,33], + [21019,15], + [21021,47], + [21023,0], + [21025,1], + [21027,6], + [21029,293], + [21031,0], + [21033,3], + [21035,46], + [21037,143], + [21039,0], + [21041,0], + [21043,3], + [21045,1], + [21047,115], + [21049,49], + [21051,0], + [21053,0], + [21055,5], + [21057,0], + [21059,332], + [21061,0], + [21063,0], + [21065,5], + [21067,822], + [21069,2], + [21071,2], + [21073,50], + [21075,1], + [21077,37], + [21079,1], + [21081,32], + [21083,2], + [21085,21], + [21087,1], + [21089,14], + [21091,5], + [21093,1209], + [21095,0], + [21097,21], + [21099,52], + [21101,63], + [21103,28], + [21105,0], + [21107,82], + [21109,0], + [21111,1003], + [21113,222], + [21115,1], + [21117,260], + [21119,0], + [21121,0], + [21123,33], + [21125,9], + [21127,0], + [21129,0], + [21131,0], + [21133,3], + [21135,0], + [21137,40], + [21139,0], + [21141,24], + [21143,8], + [21145,145], + [21147,0], + [21149,1], + [21151,186], + [21153,0], + [21155,10], + [21157,65], + [21159,0], + [21161,27], + [21163,216], + [21165,0], + [21167,42], + [21169,0], + [21171,0], + [21173,29], + [21175,1], + [21177,1], + [21179,146], + [21181,2], + [21183,4], + [21185,113], + [21187,10], + [21189,0], + [21191,0], + [21193,9], + [21195,19], + [21197,0], + [21199,7], + [21201,0], + [21203,0], + [21205,3], + [21207,4], + [21209,185], + [21211,109], + [21213,23], + [21215,89], + [21217,47], + [21219,11], + [21221,2], + [21223,0], + [21225,7], + [21227,573], + [21229,2], + [21231,0], + [21233,2], + [21235,8], + [21237,0], + [21239,50], + [22001,108], + [22003,4], + [22005,711], + [22007,36], + [22009,39], + [22011,28], + [22013,0], + [22015,956], + [22017,344], + [22019,910], + [22021,7], + [22023,65], + [22025,9], + [22027,0], + [22029,19], + [22031,0], + [22033,1129], + [22035,0], + [22037,36], + [22039,53], + [22041,35], + [22043,37], + [22045,114], + [22047,34], + [22049,23], + [22051,274], + [22053,91], + [22055,689], + [22057,204], + [22059,3], + [22061,29], + [22063,812], + [22065,14], + [22067,21], + [22069,54], + [22071,1080], + [22073,423], + [22075,72], + [22077,45], + [22079,397], + [22081,0], + [22083,120], + [22085,0], + [22087,24], + [22089,91], + [22091,0], + [22093,40], + [22095,52], + [22097,139], + [22099,160], + [22101,56], + [22103,578], + [22105,526], + [22107,7], + [22109,161], + [22111,18], + [22113,131], + [22115,14], + [22117,68], + [22119,57], + [22121,157], + [22123,1], + [22125,38], + [22127,0], + [23001,206], + [23003,93], + [23005,585], + [23007,100], + [23009,175], + [23011,303], + [23013,75], + [23015,77], + [23017,143], + [23019,272], + [23021,20], + [23023,102], + [23025,60], + [23027,65], + [23029,84], + [23031,573], + [24001,122], + [24003,1711], + [24005,1230], + [24009,222], + [24011,67], + [24013,195], + [24015,364], + [24017,576], + [24019,156], + [24021,939], + [24023,95], + [24025,771], + [24027,1151], + [24029,61], + [24031,1899], + [24033,707], + [24035,167], + [24037,413], + [24039,48], + [24041,173], + [24043,256], + [24045,146], + [24047,93], + [24510,369], + [25001,418], + [25003,139], + [25005,505], + [25007,113], + [25009,872], + [25011,58], + [25013,327], + [25015,248], + [25017,2109], + [25019,53], + [25021,1417], + [25023,945], + [25025,480], + [25027,1391], + [26001,20], + [26003,35], + [26005,152], + [26007,11], + [26009,42], + [26011,10], + [26013,6], + [26015,84], + [26017,54], + [26019,58], + [26021,133], + [26023,19], + [26025,33], + [26027,72], + [26029,57], + [26031,39], + [26033,60], + [26035,34], + [26037,91], + [26039,38], + [26041,60], + [26043,36], + [26045,121], + [26047,47], + [26049,78], + [26051,42], + [26053,18], + [26055,181], + [26057,9], + [26059,46], + [26061,57], + [26063,36], + [26065,465], + [26067,28], + [26069,27], + [26071,43], + [26073,52], + [26075,63], + [26077,289], + [26079,22], + [26081,694], + [26083,9], + [26085,42], + [26087,22], + [26089,89], + [26091,102], + [26093,178], + [26095,6], + [26097,26], + [26099,991], + [26101,10], + [26103,126], + [26105,39], + [26107,35], + [26109,29], + [26111,123], + [26113,19], + [26115,117], + [26117,59], + [26119,20], + [26121,106], + [26123,37], + [26125,1230], + [26127,32], + [26129,29], + [26131,9], + [26133,19], + [26135,15], + [26137,17], + [26139,434], + [26141,20], + [26143,28], + [26145,137], + [26147,54], + [26149,32], + [26151,23], + [26153,19], + [26155,29], + [26157,29], + [26159,78], + [26161,368], + [26163,735], + [26165,39], + [27001,112], + [27003,642], + [27005,157], + [27007,65], + [27009,41], + [27011,14], + [27013,174], + [27015,27], + [27017,68], + [27019,294], + [27021,158], + [27023,3], + [27025,43], + [27027,211], + [27029,3], + [27031,37], + [27033,5], + [27035,207], + [27037,507], + [27039,39], + [27041,396], + [27043,9], + [27045,55], + [27047,34], + [27049,42], + [27051,2], + [27053,1915], + [27055,40], + [27057,25], + [27059,34], + [27061,79], + [27063,17], + [27065,11], + [27067,82], + [27069,2], + [27071,14], + [27073,11], + [27075,48], + [27077,21], + [27079,35], + [27081,15], + [27083,20], + [27085,16], + [27087,0], + [27089,3], + [27091,13], + [27093,23], + [27095,18], + [27097,61], + [27099,29], + [27101,26], + [27103,157], + [27105,41], + [27107,7], + [27109,398], + [27111,36], + [27113,5], + [27115,46], + [27117,10], + [27119,56], + [27121,52], + [27123,122], + [27125,2], + [27127,23], + [27129,15], + [27131,85], + [27133,19], + [27135,3], + [27137,326], + [27139,483], + [27141,135], + [27143,9], + [27145,273], + [27147,41], + [27149,14], + [27151,5], + [27153,49], + [27155,9], + [27157,40], + [27159,38], + [27161,23], + [27163,1069], + [27165,8], + [27167,7], + [27169,113], + [27171,211], + [27173,7], + [28001,5], + [28003,13], + [28005,0], + [28007,2], + [28009,0], + [28011,16], + [28013,1], + [28015,0], + [28017,2], + [28019,1], + [28021,0], + [28023,3], + [28025,14], + [28027,8], + [28029,3], + [28031,4], + [28033,456], + [28035,52], + [28037,0], + [28039,3], + [28041,0], + [28043,13], + [28045,428], + [28047,1304], + [28049,323], + [28051,3], + [28053,2], + [28055,0], + [28057,18], + [28059,326], + [28061,0], + [28063,3], + [28065,0], + [28067,56], + [28069,0], + [28071,82], + [28073,22], + [28075,109], + [28077,3], + [28079,0], + [28081,99], + [28083,9], + [28085,11], + [28087,109], + [28089,581], + [28091,2], + [28093,47], + [28095,9], + [28097,39], + [28099,3], + [28101,0], + [28103,0], + [28105,83], + [28107,14], + [28109,238], + [28111,0], + [28113,62], + [28115,17], + [28117,8], + [28119,9], + [28121,475], + [28123,16], + [28125,2], + [28127,9], + [28129,2], + [28131,12], + [28133,8], + [28135,1], + [28137,66], + [28139,8], + [28141,1], + [28143,11], + [28145,2], + [28147,1], + [28149,0], + [28151,14], + [28153,2], + [28155,2], + [28157,1], + [28159,0], + [28161,9], + [28163,2], + [29001,17], + [29003,6], + [29005,1], + [29007,8], + [29009,22], + [29011,7], + [29013,22], + [29015,1], + [29017,1], + [29019,607], + [29021,118], + [29023,24], + [29025,17], + [29027,43], + [29029,85], + [29031,98], + [29033,14], + [29035,2], + [29037,186], + [29039,8], + [29041,0], + [29043,286], + [29045,9], + [29047,141], + [29049,21], + [29051,178], + [29053,42], + [29055,10], + [29057,2], + [29059,0], + [29061,3], + [29063,0], + [29065,1], + [29067,1], + [29069,3], + [29071,184], + [29073,2], + [29075,4], + [29077,1004], + [29079,1], + [29081,0], + [29083,54], + [29085,0], + [29087,3], + [29089,0], + [29091,73], + [29093,1], + [29095,670], + [29097,157], + [29099,636], + [29101,110], + [29103,0], + [29105,55], + [29107,42], + [29109,5], + [29111,5], + [29113,94], + [29115,1], + [29117,29], + [29119,15], + [29121,12], + [29123,1], + [29125,5], + [29127,56], + [29129,1], + [29131,12], + [29133,12], + [29135,1], + [29137,23], + [29139,26], + [29141,1], + [29143,20], + [29145,45], + [29147,27], + [29149,2], + [29151,0], + [29153,6], + [29155,14], + [29157,25], + [29159,28], + [29161,98], + [29163,6], + [29165,137], + [29167,21], + [29169,54], + [29171,2], + [29173,0], + [29175,5], + [29177,14], + [29179,6], + [29181,2], + [29183,1799], + [29185,1], + [29186,8], + [29187,352], + [29189,673], + [29195,23], + [29197,1], + [29199,5], + [29201,28], + [29203,0], + [29205,3], + [29207,18], + [29209,97], + [29211,1], + [29213,464], + [29215,9], + [29217,5], + [29219,124], + [29221,6], + [29223,0], + [29225,27], + [29227,0], + [29229,5], + [29510,259], + [30001,13], + [30003,0], + [30005,0], + [30007,3], + [30009,9], + [30011,0], + [30013,150], + [30015,0], + [30017,6], + [30019,1], + [30021,1], + [30023,17], + [30025,6], + [30027,1], + [30029,154], + [30031,398], + [30033,2], + [30035,1], + [30037,0], + [30039,0], + [30041,7], + [30043,1], + [30045,0], + [30047,25], + [30049,168], + [30051,0], + [30053,10], + [30055,0], + [30057,2], + [30059,0], + [30061,0], + [30063,368], + [30065,1], + [30067,15], + [30069,0], + [30071,1], + [30073,1], + [30075,0], + [30077,0], + [30079,0], + [30081,36], + [30083,27], + [30085,3], + [30087,6], + [30089,0], + [30091,1], + [30093,122], + [30095,9], + [30097,0], + [30099,4], + [30101,2], + [30103,0], + [30105,3], + [30107,0], + [30109,0], + [30111,448], + [31001,176], + [31003,16], + [31005,0], + [31007,0], + [31009,0], + [31011,3], + [31013,18], + [31015,0], + [31017,1], + [31019,109], + [31021,8], + [31023,8], + [31025,65], + [31027,6], + [31029,1], + [31031,8], + [31033,8], + [31035,4], + [31037,8], + [31039,7], + [31041,0], + [31043,112], + [31045,2], + [31047,38], + [31049,0], + [31051,3], + [31053,40], + [31055,1916], + [31057,0], + [31059,3], + [31061,1], + [31063,4], + [31065,3], + [31067,17], + [31069,1], + [31071,3], + [31073,10], + [31075,0], + [31077,0], + [31079,119], + [31081,31], + [31083,3], + [31085,0], + [31087,0], + [31089,9], + [31091,3], + [31093,18], + [31095,6], + [31097,2], + [31099,28], + [31101,6], + [31103,2], + [31105,0], + [31107,20], + [31109,979], + [31111,83], + [31113,0], + [31115,4], + [31117,0], + [31119,68], + [31121,23], + [31123,0], + [31125,11], + [31127,9], + [31129,2], + [31131,38], + [31133,0], + [31135,0], + [31137,34], + [31139,9], + [31141,88], + [31143,2], + [31145,0], + [31147,1], + [31149,0], + [31151,20], + [31153,939], + [31155,62], + [31157,21], + [31159,53], + [31161,1], + [31163,3], + [31165,2], + [31167,10], + [31169,6], + [31171,0], + [31173,5], + [31175,18], + [31177,37], + [31179,9], + [31181,4], + [31183,0], + [31185,14], + [32001,3], + [32003,5474], + [32005,56], + [32007,136], + [32009,0], + [32011,0], + [32013,18], + [32015,5], + [32017,11], + [32019,53], + [32021,7], + [32023,0], + [32027,2], + [32029,6], + [32031,600], + [32033,1], + [32510,71], + [33001,178], + [33003,167], + [33005,102], + [33007,39], + [33009,401], + [33011,682], + [33013,180], + [33015,593], + [33017,256], + [33019,72], + [34001,512], + [34003,1226], + [34005,682], + [34007,487], + [34009,434], + [34011,246], + [34013,663], + [34015,716], + [34017,917], + [34019,275], + [34021,655], + [34023,1568], + [34025,915], + [34027,579], + [34029,1325], + [34031,402], + [34033,105], + [34035,716], + [34037,210], + [34039,730], + [34041,172], + [35001,1133], + [35003,0], + [35005,21], + [35006,0], + [35007,16], + [35009,161], + [35011,0], + [35013,974], + [35015,89], + [35017,0], + [35019,0], + [35021,0], + [35023,0], + [35025,77], + [35027,53], + [35028,2], + [35029,25], + [35031,17], + [35033,0], + [35035,2], + [35037,0], + [35039,3], + [35041,51], + [35043,544], + [35045,273], + [35047,0], + [35049,96], + [35051,1], + [35053,4], + [35055,60], + [35057,0], + [35059,0], + [35061,87], + [36001,321], + [36003,53], + [36005,1064], + [36007,60], + [36009,116], + [36011,85], + [36013,130], + [36015,76], + [36017,76], + [36019,115], + [36021,67], + [36023,63], + [36025,65], + [36027,336], + [36029,1261], + [36031,74], + [36033,68], + [36035,92], + [36037,47], + [36039,93], + [36041,48], + [36043,96], + [36045,291], + [36047,2093], + [36049,104], + [36051,95], + [36053,92], + [36055,872], + [36057,140], + [36059,523], + [36061,704], + [36063,237], + [36065,218], + [36067,845], + [36069,320], + [36071,1007], + [36073,27], + [36075,202], + [36077,62], + [36079,81], + [36081,2358], + [36083,332], + [36085,508], + [36087,294], + [36089,176], + [36091,612], + [36093,130], + [36095,34], + [36097,40], + [36099,68], + [36101,104], + [36103,971], + [36105,244], + [36107,48], + [36109,153], + [36111,334], + [36113,151], + [36115,128], + [36117,135], + [36119,357], + [36121,28], + [36123,44], + [37001,847], + [37003,47], + [37005,39], + [37007,31], + [37009,90], + [37011,50], + [37013,211], + [37015,24], + [37017,38], + [37019,1079], + [37021,1588], + [37023,113], + [37025,671], + [37027,132], + [37029,16], + [37031,216], + [37033,40], + [37035,156], + [37037,263], + [37039,108], + [37041,29], + [37043,41], + [37045,92], + [37047,28], + [37049,434], + [37051,3054], + [37053,138], + [37055,137], + [37057,266], + [37059,66], + [37061,77], + [37063,1230], + [37065,37], + [37067,1033], + [37069,158], + [37071,456], + [37073,34], + [37075,29], + [37077,202], + [37079,9], + [37081,1480], + [37083,124], + [37085,837], + [37087,172], + [37089,226], + [37091,19], + [37093,555], + [37095,9], + [37097,353], + [37099,155], + [37101,641], + [37103,51], + [37105,114], + [37107,32], + [37109,133], + [37111,115], + [37113,77], + [37115,52], + [37117,22], + [37119,2672], + [37121,49], + [37123,40], + [37125,366], + [37127,175], + [37129,568], + [37131,22], + [37133,2375], + [37135,352], + [37137,48], + [37139,45], + [37141,183], + [37143,53], + [37145,68], + [37147,669], + [37149,39], + [37151,318], + [37153,115], + [37155,206], + [37157,105], + [37159,207], + [37161,111], + [37163,93], + [37165,80], + [37167,130], + [37169,40], + [37171,88], + [37173,46], + [37175,160], + [37177,5], + [37179,520], + [37181,83], + [37183,4414], + [37185,32], + [37187,10], + [37189,271], + [37191,279], + [37193,89], + [37195,181], + [37197,62], + [37199,44], + [38001,2], + [38003,6], + [38005,1], + [38007,4], + [38009,2], + [38011,4], + [38013,0], + [38015,536], + [38017,1107], + [38019,2], + [38021,0], + [38023,14], + [38025,5], + [38027,5], + [38029,6], + [38031,1], + [38033,2], + [38035,144], + [38037,0], + [38039,1], + [38041,0], + [38043,0], + [38045,1], + [38047,1], + [38049,27], + [38051,1], + [38053,36], + [38055,31], + [38057,7], + [38059,114], + [38061,94], + [38063,7], + [38065,1], + [38067,0], + [38069,3], + [38071,14], + [38073,4], + [38075,1], + [38077,24], + [38079,3], + [38081,3], + [38083,2], + [38085,0], + [38087,0], + [38089,310], + [38091,2], + [38093,83], + [38095,0], + [38097,4], + [38099,48], + [38101,692], + [38103,2], + [38105,476], + [39001,0], + [39003,116], + [39005,40], + [39007,81], + [39009,195], + [39011,69], + [39013,13], + [39015,41], + [39017,462], + [39019,3], + [39021,29], + [39023,57], + [39025,524], + [39027,33], + [39029,19], + [39031,2], + [39033,12], + [39035,531], + [39037,30], + [39039,55], + [39041,577], + [39043,47], + [39045,196], + [39047,23], + [39049,3119], + [39051,40], + [39053,9], + [39055,91], + [39057,380], + [39059,28], + [39061,549], + [39063,86], + [39065,22], + [39067,0], + [39069,15], + [39071,19], + [39073,5], + [39075,3], + [39077,35], + [39079,40], + [39081,4], + [39083,225], + [39085,276], + [39087,10], + [39089,348], + [39091,65], + [39093,620], + [39095,303], + [39097,33], + [39099,100], + [39101,82], + [39103,423], + [39105,5], + [39107,39], + [39109,108], + [39111,0], + [39113,243], + [39115,6], + [39117,33], + [39119,30], + [39121,12], + [39123,136], + [39125,12], + [39127,30], + [39129,23], + [39131,75], + [39133,175], + [39135,27], + [39137,38], + [39139,45], + [39141,13], + [39143,33], + [39145,36], + [39147,14], + [39149,98], + [39151,449], + [39153,561], + [39155,73], + [39157,43], + [39159,115], + [39161,30], + [39163,0], + [39165,599], + [39167,13], + [39169,132], + [39171,15], + [39173,296], + [39175,68], + [40001,30], + [40003,0], + [40005,17], + [40007,0], + [40009,20], + [40011,4], + [40013,80], + [40015,30], + [40017,180], + [40019,145], + [40021,38], + [40023,14], + [40025,0], + [40027,1143], + [40029,1], + [40031,326], + [40033,0], + [40035,1], + [40037,91], + [40039,34], + [40041,24], + [40043,0], + [40045,2], + [40047,74], + [40049,4], + [40051,44], + [40053,0], + [40055,4], + [40057,0], + [40059,0], + [40061,3], + [40063,26], + [40065,33], + [40067,3], + [40069,5], + [40071,11], + [40073,30], + [40075,0], + [40077,4], + [40079,60], + [40081,26], + [40083,12], + [40085,0], + [40087,146], + [40089,16], + [40091,22], + [40093,3], + [40095,2], + [40097,10], + [40099,17], + [40101,62], + [40103,0], + [40105,4], + [40107,15], + [40109,2084], + [40111,0], + [40113,111], + [40115,31], + [40117,0], + [40119,108], + [40121,178], + [40123,86], + [40125,119], + [40127,1], + [40129,0], + [40131,265], + [40133,21], + [40135,56], + [40137,30], + [40139,2], + [40141,0], + [40143,1966], + [40145,183], + [40147,64], + [40149,0], + [40151,0], + [40153,19], + [41001,34], + [41003,93], + [41005,665], + [41007,160], + [41009,62], + [41011,24], + [41013,61], + [41015,27], + [41017,377], + [41019,181], + [41021,0], + [41023,0], + [41025,6], + [41027,88], + [41029,373], + [41031,32], + [41033,106], + [41035,68], + [41037,11], + [41039,550], + [41041,118], + [41043,174], + [41045,15], + [41047,610], + [41049,5], + [41051,1235], + [41053,89], + [41055,0], + [41057,90], + [41059,78], + [41061,32], + [41063,0], + [41065,0], + [41067,1271], + [41069,0], + [41071,148], + [42001,306], + [42003,1424], + [42005,60], + [42007,337], + [42009,108], + [42011,415], + [42013,159], + [42015,175], + [42017,474], + [42019,523], + [42021,117], + [42023,0], + [42025,149], + [42027,426], + [42029,1112], + [42031,47], + [42033,124], + [42035,31], + [42037,123], + [42039,108], + [42041,832], + [42043,691], + [42045,363], + [42047,36], + [42049,586], + [42051,240], + [42053,10], + [42055,570], + [42057,24], + [42059,41], + [42061,99], + [42063,88], + [42065,81], + [42067,41], + [42069,265], + [42071,1381], + [42073,105], + [42075,240], + [42077,589], + [42079,359], + [42081,207], + [42083,35], + [42085,152], + [42087,79], + [42089,263], + [42091,1061], + [42093,65], + [42095,478], + [42097,124], + [42099,89], + [42101,984], + [42103,189], + [42105,30], + [42107,188], + [42109,89], + [42111,112], + [42113,24], + [42115,73], + [42117,99], + [42119,91], + [42121,68], + [42123,32], + [42125,471], + [42127,196], + [42129,560], + [42131,63], + [42133,1059], + [44001,40], + [44003,216], + [44005,93], + [44007,297], + [44009,288], + [45001,19], + [45003,697], + [45005,1], + [45007,420], + [45009,9], + [45011,15], + [45013,244], + [45015,1176], + [45017,32], + [45019,1361], + [45021,91], + [45023,32], + [45025,42], + [45027,70], + [45029,11], + [45031,168], + [45033,15], + [45035,523], + [45037,40], + [45039,32], + [45041,308], + [45043,140], + [45045,1304], + [45047,50], + [45049,14], + [45051,1508], + [45053,168], + [45055,252], + [45057,120], + [45059,79], + [45061,11], + [45063,1318], + [45065,24], + [45067,20], + [45069,6], + [45071,69], + [45073,186], + [45075,79], + [45077,159], + [45079,1274], + [45081,34], + [45083,562], + [45085,353], + [45087,17], + [45089,30], + [45091,938], + [46003,7], + [46005,31], + [46007,1], + [46009,8], + [46011,117], + [46013,170], + [46015,7], + [46017,0], + [46019,25], + [46021,4], + [46023,5], + [46025,24], + [46027,40], + [46029,59], + [46031,0], + [46033,34], + [46035,87], + [46037,28], + [46039,8], + [46041,0], + [46043,5], + [46045,21], + [46047,2], + [46049,3], + [46051,12], + [46053,6], + [46055,1], + [46057,24], + [46059,5], + [46061,0], + [46063,0], + [46065,29], + [46067,14], + [46069,0], + [46071,0], + [46073,8], + [46075,6], + [46077,9], + [46079,26], + [46081,162], + [46083,145], + [46085,8], + [46087,14], + [46089,5], + [46091,4], + [46093,87], + [46095,2], + [46097,3], + [46099,894], + [46101,15], + [46102,0], + [46103,555], + [46105,0], + [46107,1], + [46109,18], + [46111,1], + [46115,22], + [46117,13], + [46119,2], + [46121,0], + [46123,0], + [46125,28], + [46127,74], + [46129,11], + [46135,56], + [46137,0], + [47001,146], + [47003,127], + [47005,0], + [47007,0], + [47009,207], + [47011,449], + [47013,135], + [47015,7], + [47017,59], + [47019,143], + [47021,50], + [47023,27], + [47025,108], + [47027,0], + [47029,2], + [47031,70], + [47033,1], + [47035,69], + [47037,1608], + [47039,0], + [47041,6], + [47043,109], + [47045,58], + [47047,159], + [47049,0], + [47051,85], + [47053,132], + [47055,5], + [47057,2], + [47059,136], + [47061,0], + [47063,80], + [47065,817], + [47067,0], + [47069,41], + [47071,15], + [47073,25], + [47075,17], + [47077,53], + [47079,12], + [47081,0], + [47083,3], + [47085,58], + [47087,0], + [47089,124], + [47091,2], + [47093,1606], + [47095,7], + [47097,33], + [47099,4], + [47101,4], + [47103,23], + [47105,238], + [47107,0], + [47109,72], + [47111,28], + [47113,222], + [47115,49], + [47117,66], + [47119,341], + [47121,34], + [47123,110], + [47125,1800], + [47127,22], + [47129,2], + [47131,32], + [47133,4], + [47135,1], + [47137,0], + [47139,101], + [47141,282], + [47143,52], + [47145,15], + [47147,159], + [47149,1123], + [47151,3], + [47153,21], + [47155,120], + [47157,1548], + [47159,47], + [47161,4], + [47163,294], + [47165,454], + [47167,100], + [47169,10], + [47171,0], + [47173,76], + [47175,0], + [47177,9], + [47179,598], + [47181,8], + [47183,58], + [47185,51], + [47187,569], + [47189,928], + [48001,16], + [48003,71], + [48005,123], + [48007,100], + [48009,12], + [48011,0], + [48013,36], + [48015,21], + [48017,0], + [48019,0], + [48021,33], + [48023,0], + [48025,9], + [48027,1914], + [48029,4653], + [48031,21], + [48033,0], + [48035,6], + [48037,192], + [48039,1979], + [48041,978], + [48043,18], + [48045,0], + [48047,3], + [48049,21], + [48051,11], + [48053,189], + [48055,39], + [48057,56], + [48059,2], + [48061,1258], + [48063,4], + [48065,1], + [48067,0], + [48069,0], + [48071,226], + [48073,30], + [48075,3], + [48077,0], + [48079,0], + [48081,0], + [48083,1], + [48085,4533], + [48087,1], + [48089,7], + [48091,846], + [48093,1], + [48095,0], + [48097,26], + [48099,313], + [48101,0], + [48103,26], + [48105,0], + [48107,0], + [48109,3], + [48111,83], + [48113,5485], + [48115,1], + [48117,1], + [48119,3], + [48121,2096], + [48123,7], + [48125,0], + [48127,5], + [48129,1], + [48131,0], + [48133,1], + [48135,708], + [48137,0], + [48139,497], + [48141,4549], + [48143,45], + [48145,5], + [48147,1], + [48149,5], + [48151,0], + [48153,0], + [48155,0], + [48157,4954], + [48159,2], + [48161,9], + [48163,11], + [48165,7], + [48167,1971], + [48169,1], + [48171,34], + [48173,0], + [48175,0], + [48177,1], + [48179,3], + [48181,327], + [48183,476], + [48185,3], + [48187,1055], + [48189,13], + [48191,0], + [48193,0], + [48195,0], + [48197,0], + [48199,87], + [48201,15039], + [48203,87], + [48205,0], + [48207,2], + [48209,2380], + [48211,0], + [48213,60], + [48215,3552], + [48217,9], + [48219,8], + [48221,76], + [48223,14], + [48225,2], + [48227,2], + [48229,0], + [48231,47], + [48233,0], + [48235,0], + [48237,4], + [48239,12], + [48241,40], + [48243,0], + [48245,1111], + [48247,0], + [48249,18], + [48251,833], + [48253,0], + [48255,25], + [48257,189], + [48259,202], + [48261,0], + [48263,0], + [48265,41], + [48267,1], + [48269,0], + [48271,0], + [48273,19], + [48275,0], + [48277,46], + [48279,0], + [48281,14], + [48283,6], + [48285,9], + [48287,20], + [48289,0], + [48291,269], + [48293,4], + [48295,2], + [48297,8], + [48299,197], + [48301,0], + [48303,1451], + [48305,1], + [48307,0], + [48309,602], + [48311,0], + [48313,19], + [48315,5], + [48317,9], + [48319,9], + [48321,68], + [48323,205], + [48325,12], + [48327,0], + [48329,394], + [48331,3], + [48333,0], + [48335,1], + [48337,0], + [48339,2932], + [48341,12], + [48343,0], + [48345,0], + [48347,250], + [48349,109], + [48351,0], + [48353,1], + [48355,999], + [48357,1], + [48359,4], + [48361,226], + [48363,96], + [48365,10], + [48367,147], + [48369,0], + [48371,6], + [48373,346], + [48375,855], + [48377,2], + [48379,0], + [48381,71], + [48383,0], + [48385,0], + [48387,11], + [48389,1], + [48391,3], + [48393,0], + [48395,6], + [48397,613], + [48399,1], + [48401,0], + [48403,5], + [48405,0], + [48407,2], + [48409,126], + [48411,0], + [48413,0], + [48415,84], + [48417,0], + [48419,8], + [48421,8], + [48423,266], + [48425,8], + [48427,0], + [48429,3], + [48431,0], + [48433,0], + [48435,0], + [48437,0], + [48439,5089], + [48441,388], + [48443,0], + [48445,48], + [48447,0], + [48449,4], + [48451,177], + [48453,4397], + [48455,4], + [48457,4], + [48459,15], + [48461,1], + [48463,12], + [48465,38], + [48467,9], + [48469,47], + [48471,629], + [48473,59], + [48475,7], + [48477,54], + [48479,663], + [48481,12], + [48483,0], + [48485,175], + [48487,2], + [48489,16], + [48491,1937], + [48493,61], + [48495,1], + [48497,26], + [48499,3], + [48501,6], + [48503,5], + [48505,0], + [48507,4], + [49001,19], + [49003,264], + [49005,603], + [49007,39], + [49009,13], + [49011,960], + [49013,64], + [49015,19], + [49017,30], + [49019,41], + [49021,147], + [49023,36], + [49025,33], + [49027,11], + [49029,43], + [49031,4], + [49033,36], + [49035,2472], + [49037,34], + [49039,44], + [49041,44], + [49043,243], + [49045,274], + [49047,71], + [49049,1949], + [49051,269], + [49053,893], + [49055,10], + [49057,506], + [50001,84], + [50003,49], + [50005,86], + [50007,411], + [50009,10], + [50011,161], + [50013,13], + [50015,73], + [50017,28], + [50019,88], + [50021,56], + [50023,105], + [50025,77], + [50027,78], + [51001,89], + [51003,631], + [51005,17], + [51007,44], + [51009,66], + [51011,61], + [51013,875], + [51015,300], + [51017,25], + [51019,317], + [51021,11], + [51023,66], + [51025,17], + [51027,21], + [51029,31], + [51031,111], + [51033,96], + [51035,75], + [51036,43], + [51037,24], + [51041,871], + [51043,23], + [51045,19], + [51047,93], + [51049,20], + [51051,12], + [51053,72], + [51057,25], + [51059,896], + [51061,151], + [51063,49], + [51065,95], + [51067,117], + [51069,247], + [51071,25], + [51073,102], + [51075,60], + [51077,31], + [51079,235], + [51081,27], + [51083,54], + [51085,283], + [51087,635], + [51089,36], + [51091,12], + [51093,256], + [51095,496], + [51097,25], + [51099,86], + [51101,45], + [51103,93], + [51105,49], + [51107,2041], + [51109,163], + [51111,15], + [51113,27], + [51115,30], + [51117,100], + [51119,60], + [51121,169], + [51125,51], + [51127,146], + [51131,26], + [51133,48], + [51135,57], + [51137,54], + [51139,37], + [51141,47], + [51143,90], + [51145,70], + [51147,74], + [51149,42], + [51153,2092], + [51155,44], + [51157,16], + [51159,28], + [51161,137], + [51163,52], + [51165,261], + [51167,43], + [51169,29], + [51171,90], + [51173,37], + [51175,47], + [51177,254], + [51179,530], + [51181,33], + [51183,15], + [51185,25], + [51187,50], + [51191,111], + [51193,52], + [51195,26], + [51197,71], + [51199,160], + [51510,468], + [51520,5], + [51530,4], + [51540,93], + [51550,1085], + [51570,6], + [51580,2], + [51590,70], + [51595,13], + [51600,22], + [51610,24], + [51620,1], + [51630,346], + [51640,6], + [51650,134], + [51660,201], + [51670,36], + [51678,0], + [51680,144], + [51683,52], + [51685,0], + [51690,7], + [51700,188], + [51710,304], + [51720,6], + [51730,177], + [51735,14], + [51740,66], + [51750,30], + [51760,607], + [51770,77], + [51775,20], + [51790,41], + [51800,297], + [51810,629], + [51820,35], + [51830,34], + [51840,37], + [53001,33], + [53003,27], + [53005,1259], + [53007,206], + [53009,169], + [53011,1070], + [53013,4], + [53015,131], + [53017,114], + [53019,22], + [53021,763], + [53023,4], + [53025,228], + [53027,166], + [53029,219], + [53031,97], + [53033,6020], + [53035,623], + [53037,183], + [53039,77], + [53041,204], + [53043,43], + [53045,140], + [53047,123], + [53049,125], + [53051,52], + [53053,1900], + [53055,189], + [53057,207], + [53059,25], + [53061,2120], + [53063,1609], + [53065,72], + [53067,1156], + [53069,11], + [53071,128], + [53073,458], + [53075,90], + [53077,624], + [54001,8], + [54003,400], + [54005,54], + [54007,1], + [54009,12], + [54011,124], + [54013,0], + [54015,24], + [54017,0], + [54019,39], + [54021,0], + [54023,28], + [54025,102], + [54027,62], + [54029,9], + [54031,41], + [54033,116], + [54035,2], + [54037,159], + [54039,148], + [54041,0], + [54043,13], + [54045,13], + [54047,0], + [54049,5], + [54051,3], + [54053,2], + [54055,8], + [54057,39], + [54059,0], + [54061,300], + [54063,0], + [54065,43], + [54067,4], + [54069,22], + [54071,26], + [54073,9], + [54075,0], + [54077,1], + [54079,119], + [54081,110], + [54083,12], + [54085,0], + [54087,30], + [54089,20], + [54091,1], + [54093,12], + [54095,0], + [54097,42], + [54099,85], + [54101,0], + [54103,10], + [54105,11], + [54107,126], + [54109,0], + [55001,62], + [55003,19], + [55005,80], + [55007,59], + [55009,988], + [55011,25], + [55013,62], + [55015,57], + [55017,130], + [55019,39], + [55021,102], + [55023,48], + [55025,1060], + [55027,144], + [55029,145], + [55031,92], + [55033,74], + [55035,227], + [55037,24], + [55039,229], + [55041,54], + [55043,93], + [55045,54], + [55047,40], + [55049,36], + [55051,18], + [55053,58], + [55055,194], + [55057,87], + [55059,248], + [55061,37], + [55063,287], + [55065,26], + [55067,55], + [55069,72], + [55071,88], + [55073,262], + [55075,109], + [55077,22], + [55078,4], + [55079,1006], + [55081,174], + [55083,109], + [55085,136], + [55087,530], + [55089,121], + [55091,18], + [55093,121], + [55095,91], + [55097,138], + [55099,48], + [55101,240], + [55103,41], + [55105,111], + [55107,50], + [55109,150], + [55111,119], + [55113,101], + [55115,64], + [55117,69], + [55119,25], + [55121,92], + [55123,77], + [55125,131], + [55127,111], + [55129,59], + [55131,328], + [55133,486], + [55135,72], + [55137,68], + [55139,359], + [55141,109], + [56001,172], + [56003,14], + [56005,317], + [56007,18], + [56009,23], + [56011,4], + [56013,21], + [56015,6], + [56017,1], + [56019,12], + [56021,238], + [56023,49], + [56025,807], + [56027,4], + [56029,118], + [56031,19], + [56033,121], + [56035,42], + [56037,147], + [56039,115], + [56041,45], + [56043,1], + [56045,4] + ] +} diff --git a/data/regional/united-states/infrastructure/housing/us-housing-mobilehomes-2019.json b/data/regional/united-states/infrastructure/housing/us-housing-mobilehomes-2019.json new file mode 100644 index 0000000..e72d753 --- /dev/null +++ b/data/regional/united-states/infrastructure/housing/us-housing-mobilehomes-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Mobile Homes", + "description" : "Percent of housing units in mobile-home, rv, and other types of units.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "infrastructure", + "tags" : ["regional","us","counties","infrastructure","housing","mobile homes"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.housing.mobilehomes.2019"], + [1001,0.267], + [1003,0.248], + [1005,0.391], + [1007,0.256], + [1009,0.212], + [1011,0.289], + [1013,0.3], + [1015,0.299], + [1017,0.325], + [1019,0.227], + [1021,0.255], + [1023,0.191], + [1025,0.299], + [1027,0.245], + [1029,0.239], + [1031,0.343], + [1033,0.278], + [1035,0.239], + [1037,0.208], + [1039,0.255], + [1041,0.245], + [1043,0.252], + [1045,0.399], + [1047,0.407], + [1049,0.285], + [1051,0.267], + [1053,0.317], + [1055,0.274], + [1057,0.227], + [1059,0.292], + [1061,0.28], + [1063,0.329], + [1065,0.242], + [1067,0.167], + [1069,0.343], + [1071,0.245], + [1073,0.373], + [1075,0.244], + [1077,0.319], + [1079,0.223], + [1081,0.384], + [1083,0.224], + [1085,0.257], + [1087,0.345], + [1089,0.332], + [1091,0.285], + [1093,0.249], + [1095,0.298], + [1097,0.355], + [1099,0.364], + [1101,0.416], + [1103,0.273], + [1105,0.281], + [1107,0.247], + [1109,0.377], + [1111,0.234], + [1113,0.398], + [1115,0.201], + [1117,0.195], + [1119,0.359], + [1121,0.287], + [1123,0.251], + [1125,0.363], + [1127,0.228], + [1129,0.173], + [1131,0.321], + [1133,0.206], + [2013,0.362], + [2016,0.718], + [2020,0.387], + [2050,0.418], + [2060,0.462], + [2068,0.184], + [2070,0.38], + [2090,0.411], + [2100,0.336], + [2105,0.245], + [2110,0.352], + [2122,0.272], + [2130,0.384], + [2150,0.454], + [2158,0.283], + [2164,0.285], + [2170,0.229], + [2180,0.395], + [2185,0.473], + [2188,0.438], + [2195,0.312], + [2198,0.272], + [2220,0.407], + [2230,0.467], + [2240,0.265], + [2261,0.254], + [2275,0.321], + [2282,0.338], + [2290,0.276], + [4001,0.211], + [4003,0.311], + [4005,0.39], + [4007,0.244], + [4009,0.297], + [4011,0.514], + [4012,0.285], + [4013,0.378], + [4015,0.307], + [4017,0.312], + [4019,0.368], + [4021,0.233], + [4023,0.323], + [4025,0.28], + [4027,0.329], + [5001,0.348], + [5003,0.225], + [5005,0.239], + [5007,0.334], + [5009,0.282], + [5011,0.348], + [5013,0.152], + [5015,0.243], + [5017,0.382], + [5019,0.425], + [5021,0.326], + [5023,0.248], + [5025,0.24], + [5027,0.296], + [5029,0.327], + [5031,0.429], + [5033,0.24], + [5035,0.426], + [5037,0.332], + [5039,0.323], + [5041,0.385], + [5043,0.323], + [5045,0.377], + [5047,0.295], + [5049,0.203], + [5051,0.322], + [5053,0.199], + [5055,0.33], + [5057,0.307], + [5059,0.221], + [5061,0.311], + [5063,0.284], + [5065,0.239], + [5067,0.306], + [5069,0.379], + [5071,0.296], + [5073,0.209], + [5075,0.327], + [5077,0.402], + [5079,0.229], + [5081,0.285], + [5083,0.263], + [5085,0.308], + [5087,0.22], + [5089,0.211], + [5091,0.354], + [5093,0.436], + [5095,0.401], + [5097,0.187], + [5099,0.331], + [5101,0.158], + [5103,0.309], + [5105,0.236], + [5107,0.518], + [5109,0.212], + [5111,0.371], + [5113,0.233], + [5115,0.311], + [5117,0.261], + [5119,0.412], + [5121,0.283], + [5123,0.453], + [5125,0.219], + [5127,0.262], + [5129,0.261], + [5131,0.412], + [5133,0.286], + [5135,0.228], + [5137,0.254], + [5139,0.246], + [5141,0.214], + [5143,0.474], + [5145,0.339], + [5147,0.346], + [5149,0.285], + [6001,0.465], + [6003,0.16], + [6005,0.235], + [6007,0.41], + [6009,0.222], + [6011,0.39], + [6013,0.341], + [6015,0.369], + [6017,0.243], + [6019,0.467], + [6021,0.406], + [6023,0.432], + [6025,0.417], + [6027,0.345], + [6029,0.417], + [6031,0.477], + [6033,0.336], + [6035,0.324], + [6037,0.542], + [6039,0.359], + [6041,0.363], + [6043,0.316], + [6045,0.401], + [6047,0.478], + [6049,0.251], + [6051,0.356], + [6053,0.49], + [6055,0.358], + [6057,0.258], + [6059,0.426], + [6061,0.281], + [6063,0.271], + [6065,0.337], + [6067,0.436], + [6069,0.363], + [6071,0.402], + [6073,0.467], + [6075,0.624], + [6077,0.434], + [6079,0.384], + [6081,0.398], + [6083,0.479], + [6085,0.436], + [6087,0.399], + [6089,0.36], + [6091,0.246], + [6093,0.35], + [6095,0.385], + [6097,0.385], + [6099,0.422], + [6101,0.423], + [6103,0.346], + [6105,0.311], + [6107,0.429], + [6109,0.287], + [6111,0.368], + [6113,0.484], + [6115,0.395], + [8001,0.338], + [8003,0.422], + [8005,0.365], + [8007,0.278], + [8009,0.29], + [8011,0.404], + [8013,0.378], + [8014,0.348], + [8015,0.222], + [8017,0.286], + [8019,0.228], + [8021,0.206], + [8023,0.31], + [8025,0.275], + [8027,0.128], + [8029,0.264], + [8031,0.501], + [8033,0.184], + [8035,0.21], + [8037,0.302], + [8039,0.1], + [8041,0.36], + [8043,0.25], + [8045,0.331], + [8047,0.204], + [8049,0.315], + [8051,0.386], + [8053,0.284], + [8055,0.282], + [8057,0.201], + [8059,0.293], + [8061,0.257], + [8063,0.336], + [8065,0.316], + [8067,0.293], + [8069,0.35], + [8071,0.326], + [8073,0.294], + [8075,0.348], + [8077,0.318], + [8079,0.134], + [8081,0.352], + [8083,0.279], + [8085,0.273], + [8087,0.36], + [8089,0.361], + [8091,0.277], + [8093,0.136], + [8095,0.281], + [8097,0.35], + [8099,0.346], + [8101,0.353], + [8103,0.292], + [8105,0.368], + [8107,0.288], + [8109,0.285], + [8111,0.374], + [8113,0.39], + [8115,0.286], + [8117,0.345], + [8119,0.175], + [8121,0.331], + [8123,0.271], + [8125,0.331], + [9001,0.329], + [9003,0.359], + [9005,0.235], + [9007,0.265], + [9009,0.382], + [9011,0.336], + [9013,0.282], + [9015,0.31], + [10001,0.309], + [10003,0.321], + [10005,0.197], + [11001,0.584], + [12001,0.45], + [12003,0.247], + [12005,0.349], + [12007,0.307], + [12009,0.257], + [12011,0.379], + [12013,0.186], + [12015,0.203], + [12017,0.181], + [12019,0.25], + [12021,0.267], + [12023,0.286], + [12027,0.303], + [12029,0.214], + [12031,0.433], + [12033,0.38], + [12035,0.24], + [12037,0.254], + [12039,0.271], + [12041,0.17], + [12043,0.204], + [12045,0.258], + [12047,0.321], + [12049,0.351], + [12051,0.347], + [12053,0.219], + [12055,0.247], + [12057,0.414], + [12059,0.236], + [12061,0.208], + [12063,0.302], + [12065,0.23], + [12067,0.156], + [12069,0.255], + [12071,0.277], + [12073,0.47], + [12075,0.223], + [12077,0.246], + [12079,0.264], + [12081,0.271], + [12083,0.25], + [12085,0.22], + [12086,0.488], + [12087,0.405], + [12089,0.2], + [12091,0.366], + [12093,0.278], + [12095,0.446], + [12097,0.384], + [12099,0.311], + [12101,0.279], + [12103,0.33], + [12105,0.311], + [12107,0.293], + [12109,0.196], + [12111,0.268], + [12113,0.24], + [12115,0.251], + [12117,0.354], + [12119,0.103], + [12121,0.257], + [12123,0.226], + [12125,0.339], + [12127,0.297], + [12129,0.18], + [12131,0.254], + [12133,0.223], + [13001,0.236], + [13003,0.267], + [13005,0.276], + [13007,0.347], + [13009,0.415], + [13011,0.246], + [13013,0.244], + [13015,0.337], + [13017,0.412], + [13019,0.358], + [13021,0.477], + [13023,0.257], + [13025,0.197], + [13027,0.26], + [13029,0.299], + [13031,0.461], + [13033,0.292], + [13035,0.302], + [13037,0.344], + [13039,0.375], + [13043,0.424], + [13045,0.331], + [13047,0.26], + [13049,0.287], + [13051,0.453], + [13053,0.754], + [13055,0.318], + [13057,0.232], + [13059,0.61], + [13061,0.271], + [13063,0.505], + [13065,0.251], + [13067,0.355], + [13069,0.369], + [13071,0.37], + [13073,0.205], + [13075,0.336], + [13077,0.272], + [13079,0.221], + [13081,0.455], + [13083,0.285], + [13085,0.185], + [13087,0.425], + [13089,0.454], + [13091,0.322], + [13093,0.304], + [13095,0.54], + [13097,0.357], + [13099,0.36], + [13101,0.322], + [13103,0.241], + [13105,0.278], + [13107,0.362], + [13109,0.32], + [13111,0.21], + [13113,0.18], + [13115,0.39], + [13117,0.16], + [13119,0.336], + [13121,0.484], + [13123,0.255], + [13125,0.253], + [13127,0.375], + [13129,0.349], + [13131,0.357], + [13133,0.254], + [13135,0.337], + [13137,0.217], + [13139,0.305], + [13141,0.294], + [13143,0.316], + [13145,0.124], + [13147,0.252], + [13149,0.289], + [13151,0.296], + [13153,0.364], + [13155,0.264], + [13157,0.221], + [13159,0.232], + [13161,0.349], + [13163,0.368], + [13165,0.286], + [13167,0.327], + [13169,0.198], + [13171,0.308], + [13173,0.356], + [13175,0.358], + [13177,0.272], + [13179,0.543], + [13181,0.25], + [13183,0.309], + [13185,0.477], + [13187,0.293], + [13189,0.387], + [13191,0.202], + [13193,0.36], + [13195,0.253], + [13197,0.216], + [13199,0.315], + [13201,0.345], + [13205,0.378], + [13207,0.209], + [13209,0.308], + [13211,0.268], + [13213,0.304], + [13215,0.52], + [13217,0.324], + [13219,0.171], + [13221,0.228], + [13223,0.242], + [13225,0.346], + [13227,0.241], + [13229,0.225], + [13231,0.16], + [13233,0.354], + [13235,0.357], + [13237,0.23], + [13239,0.298], + [13241,0.257], + [13243,0.428], + [13245,0.474], + [13247,0.336], + [13249,0.285], + [13251,0.265], + [13253,0.347], + [13255,0.375], + [13257,0.302], + [13259,0.265], + [13261,0.445], + [13263,0.21], + [13265,0.31], + [13267,0.328], + [13269,0.295], + [13271,0.33], + [13273,0.45], + [13275,0.388], + [13277,0.4], + [13279,0.395], + [13281,0.217], + [13283,0.331], + [13285,0.426], + [13287,0.309], + [13289,0.191], + [13291,0.228], + [13293,0.324], + [13295,0.282], + [13297,0.257], + [13299,0.364], + [13301,0.334], + [13303,0.334], + [13305,0.365], + [13307,0.161], + [13309,0.367], + [13311,0.241], + [13313,0.354], + [13315,0.239], + [13317,0.325], + [13319,0.248], + [13321,0.346], + [15001,0.323], + [15003,0.438], + [15005,1], + [15007,0.368], + [15009,0.39], + [16001,0.307], + [16003,0.197], + [16005,0.325], + [16007,0.234], + [16009,0.267], + [16011,0.232], + [16013,0.299], + [16015,0.172], + [16017,0.243], + [16019,0.304], + [16021,0.233], + [16023,0.177], + [16025,0.244], + [16027,0.305], + [16029,0.207], + [16031,0.297], + [16033,0.376], + [16035,0.219], + [16037,0.214], + [16039,0.402], + [16041,0.187], + [16043,0.188], + [16045,0.252], + [16047,0.295], + [16049,0.233], + [16051,0.193], + [16053,0.351], + [16055,0.296], + [16057,0.457], + [16059,0.224], + [16061,0.306], + [16063,0.318], + [16065,0.554], + [16067,0.266], + [16069,0.272], + [16071,0.201], + [16073,0.291], + [16075,0.273], + [16077,0.256], + [16079,0.3], + [16081,0.223], + [16083,0.311], + [16085,0.192], + [16087,0.275], + [17001,0.282], + [17003,0.263], + [17005,0.241], + [17007,0.19], + [17009,0.252], + [17011,0.234], + [17013,0.127], + [17015,0.234], + [17017,0.254], + [17019,0.47], + [17021,0.249], + [17023,0.234], + [17025,0.255], + [17027,0.204], + [17029,0.385], + [17031,0.431], + [17033,0.223], + [17035,0.213], + [17037,0.43], + [17039,0.213], + [17041,0.26], + [17043,0.266], + [17045,0.235], + [17047,0.198], + [17049,0.246], + [17051,0.195], + [17053,0.278], + [17055,0.258], + [17057,0.217], + [17059,0.229], + [17061,0.224], + [17063,0.287], + [17065,0.2], + [17067,0.186], + [17069,0.18], + [17071,0.178], + [17073,0.214], + [17075,0.239], + [17077,0.485], + [17079,0.211], + [17081,0.268], + [17083,0.181], + [17085,0.216], + [17087,0.158], + [17089,0.261], + [17091,0.32], + [17093,0.164], + [17095,0.333], + [17097,0.27], + [17099,0.282], + [17101,0.258], + [17103,0.277], + [17105,0.272], + [17107,0.273], + [17109,0.337], + [17111,0.206], + [17113,0.354], + [17115,0.316], + [17117,0.233], + [17119,0.286], + [17121,0.264], + [17123,0.182], + [17125,0.222], + [17127,0.245], + [17129,0.219], + [17131,0.21], + [17133,0.166], + [17135,0.236], + [17137,0.315], + [17139,0.224], + [17141,0.268], + [17143,0.349], + [17145,0.246], + [17147,0.175], + [17149,0.214], + [17151,0.175], + [17153,0.236], + [17155,0.195], + [17157,0.26], + [17159,0.288], + [17161,0.32], + [17163,0.348], + [17165,0.255], + [17167,0.311], + [17169,0.243], + [17171,0.201], + [17173,0.19], + [17175,0.215], + [17177,0.301], + [17179,0.236], + [17181,0.227], + [17183,0.304], + [17185,0.22], + [17187,0.257], + [17189,0.225], + [17191,0.234], + [17193,0.194], + [17195,0.251], + [17197,0.187], + [17199,0.299], + [17201,0.341], + [17203,0.182], + [18001,0.229], + [18003,0.316], + [18005,0.286], + [18007,0.26], + [18009,0.253], + [18011,0.229], + [18013,0.156], + [18015,0.193], + [18017,0.26], + [18019,0.289], + [18021,0.224], + [18023,0.294], + [18025,0.174], + [18027,0.265], + [18029,0.204], + [18031,0.302], + [18033,0.239], + [18035,0.365], + [18037,0.221], + [18039,0.302], + [18041,0.305], + [18043,0.27], + [18045,0.238], + [18047,0.16], + [18049,0.253], + [18051,0.245], + [18053,0.316], + [18055,0.204], + [18057,0.231], + [18059,0.208], + [18061,0.17], + [18063,0.215], + [18065,0.265], + [18067,0.298], + [18069,0.245], + [18071,0.279], + [18073,0.234], + [18075,0.27], + [18077,0.281], + [18079,0.223], + [18081,0.273], + [18083,0.354], + [18085,0.252], + [18087,0.179], + [18089,0.303], + [18091,0.277], + [18093,0.23], + [18095,0.304], + [18097,0.461], + [18099,0.253], + [18101,0.218], + [18103,0.285], + [18105,0.441], + [18107,0.285], + [18109,0.229], + [18111,0.221], + [18113,0.234], + [18115,0.238], + [18117,0.256], + [18119,0.208], + [18121,0.212], + [18123,0.223], + [18125,0.176], + [18127,0.249], + [18129,0.183], + [18131,0.241], + [18133,0.284], + [18135,0.237], + [18137,0.241], + [18139,0.286], + [18141,0.318], + [18143,0.28], + [18145,0.267], + [18147,0.181], + [18149,0.199], + [18151,0.222], + [18153,0.256], + [18155,0.252], + [18157,0.449], + [18159,0.183], + [18161,0.28], + [18163,0.352], + [18165,0.269], + [18167,0.382], + [18169,0.26], + [18171,0.161], + [18173,0.215], + [18175,0.222], + [18177,0.331], + [18179,0.211], + [18181,0.225], + [18183,0.178], + [19001,0.257], + [19003,0.183], + [19005,0.207], + [19007,0.29], + [19009,0.232], + [19011,0.172], + [19013,0.345], + [19015,0.219], + [19017,0.173], + [19019,0.207], + [19021,0.354], + [19023,0.221], + [19025,0.212], + [19027,0.242], + [19029,0.308], + [19031,0.188], + [19033,0.309], + [19035,0.254], + [19037,0.193], + [19039,0.296], + [19041,0.323], + [19043,0.255], + [19045,0.267], + [19047,0.309], + [19049,0.263], + [19051,0.148], + [19053,0.33], + [19055,0.156], + [19057,0.297], + [19059,0.206], + [19061,0.267], + [19063,0.219], + [19065,0.234], + [19067,0.288], + [19069,0.253], + [19071,0.237], + [19073,0.266], + [19075,0.184], + [19077,0.204], + [19079,0.276], + [19081,0.229], + [19083,0.251], + [19085,0.243], + [19087,0.288], + [19089,0.203], + [19091,0.258], + [19093,0.244], + [19095,0.196], + [19097,0.21], + [19099,0.255], + [19101,0.337], + [19103,0.415], + [19105,0.217], + [19107,0.216], + [19109,0.243], + [19111,0.256], + [19113,0.262], + [19115,0.231], + [19117,0.219], + [19119,0.146], + [19121,0.216], + [19123,0.31], + [19125,0.292], + [19127,0.295], + [19129,0.221], + [19131,0.192], + [19133,0.277], + [19135,0.201], + [19137,0.298], + [19139,0.266], + [19141,0.283], + [19143,0.216], + [19145,0.285], + [19147,0.277], + [19149,0.225], + [19151,0.227], + [19153,0.329], + [19155,0.316], + [19157,0.314], + [19159,0.228], + [19161,0.206], + [19163,0.31], + [19165,0.225], + [19167,0.197], + [19169,0.465], + [19171,0.242], + [19173,0.218], + [19175,0.296], + [19177,0.187], + [19179,0.285], + [19181,0.21], + [19183,0.29], + [19185,0.189], + [19187,0.32], + [19189,0.24], + [19191,0.207], + [19193,0.336], + [19195,0.224], + [19197,0.283], + [20001,0.292], + [20003,0.256], + [20005,0.306], + [20007,0.282], + [20009,0.297], + [20011,0.286], + [20013,0.298], + [20015,0.255], + [20017,0.193], + [20019,0.223], + [20021,0.273], + [20023,0.2], + [20025,0.257], + [20027,0.289], + [20029,0.271], + [20031,0.241], + [20033,0.204], + [20035,0.326], + [20037,0.406], + [20039,0.263], + [20041,0.294], + [20043,0.28], + [20045,0.487], + [20047,0.22], + [20049,0.205], + [20051,0.388], + [20053,0.232], + [20055,0.356], + [20057,0.385], + [20059,0.277], + [20061,0.621], + [20063,0.242], + [20065,0.177], + [20067,0.255], + [20069,0.219], + [20071,0.37], + [20073,0.262], + [20075,0.283], + [20077,0.304], + [20079,0.284], + [20081,0.238], + [20083,0.185], + [20085,0.244], + [20087,0.159], + [20089,0.187], + [20091,0.308], + [20093,0.239], + [20095,0.214], + [20097,0.294], + [20099,0.305], + [20101,0.244], + [20103,0.326], + [20105,0.221], + [20107,0.225], + [20109,0.308], + [20111,0.4], + [20113,0.305], + [20115,0.215], + [20117,0.213], + [20119,0.308], + [20121,0.208], + [20123,0.287], + [20125,0.312], + [20127,0.196], + [20129,0.305], + [20131,0.251], + [20133,0.296], + [20135,0.166], + [20137,0.198], + [20139,0.253], + [20141,0.252], + [20143,0.204], + [20145,0.339], + [20147,0.243], + [20149,0.213], + [20151,0.323], + [20153,0.259], + [20155,0.307], + [20157,0.271], + [20159,0.255], + [20161,0.568], + [20163,0.23], + [20165,0.242], + [20167,0.22], + [20169,0.333], + [20171,0.3], + [20173,0.371], + [20175,0.333], + [20177,0.356], + [20179,0.233], + [20181,0.331], + [20183,0.229], + [20185,0.188], + [20187,0.256], + [20189,0.298], + [20191,0.259], + [20193,0.324], + [20195,0.251], + [20197,0.145], + [20199,0.241], + [20201,0.221], + [20203,0.267], + [20205,0.267], + [20207,0.229], + [20209,0.426], + [21001,0.239], + [21003,0.251], + [21005,0.239], + [21007,0.193], + [21009,0.333], + [21011,0.279], + [21013,0.34], + [21015,0.255], + [21017,0.368], + [21019,0.312], + [21021,0.328], + [21023,0.26], + [21025,0.29], + [21027,0.194], + [21029,0.197], + [21031,0.28], + [21033,0.236], + [21035,0.376], + [21037,0.303], + [21039,0.183], + [21041,0.357], + [21043,0.226], + [21045,0.227], + [21047,0.519], + [21049,0.326], + [21051,0.321], + [21053,0.305], + [21055,0.181], + [21057,0.271], + [21059,0.321], + [21061,0.196], + [21063,0.247], + [21065,0.279], + [21067,0.456], + [21069,0.268], + [21071,0.301], + [21073,0.372], + [21075,0.387], + [21077,0.28], + [21079,0.176], + [21081,0.315], + [21083,0.245], + [21085,0.274], + [21087,0.262], + [21089,0.224], + [21091,0.208], + [21093,0.385], + [21095,0.312], + [21097,0.31], + [21099,0.259], + [21101,0.387], + [21103,0.279], + [21105,0.172], + [21107,0.305], + [21109,0.248], + [21111,0.382], + [21113,0.354], + [21115,0.281], + [21117,0.339], + [21119,0.252], + [21121,0.345], + [21123,0.259], + [21125,0.301], + [21127,0.251], + [21129,0.311], + [21131,0.186], + [21133,0.258], + [21135,0.26], + [21137,0.217], + [21139,0.207], + [21141,0.303], + [21143,0.206], + [21145,0.349], + [21147,0.299], + [21149,0.216], + [21151,0.409], + [21153,0.275], + [21155,0.266], + [21157,0.19], + [21159,0.295], + [21161,0.324], + [21163,0.274], + [21165,0.202], + [21167,0.277], + [21169,0.216], + [21171,0.303], + [21173,0.321], + [21175,0.253], + [21177,0.204], + [21179,0.24], + [21181,0.311], + [21183,0.239], + [21185,0.153], + [21187,0.252], + [21189,0.316], + [21191,0.247], + [21193,0.241], + [21195,0.271], + [21197,0.31], + [21199,0.31], + [21201,0.251], + [21203,0.238], + [21205,0.402], + [21207,0.259], + [21209,0.3], + [21211,0.298], + [21213,0.35], + [21215,0.149], + [21217,0.397], + [21219,0.325], + [21221,0.19], + [21223,0.229], + [21225,0.292], + [21227,0.413], + [21229,0.25], + [21231,0.265], + [21233,0.282], + [21235,0.312], + [21237,0.366], + [21239,0.293], + [22001,0.289], + [22003,0.255], + [22005,0.185], + [22007,0.219], + [22009,0.305], + [22011,0.225], + [22013,0.269], + [22015,0.366], + [22017,0.402], + [22019,0.325], + [22021,0.235], + [22023,0.156], + [22025,0.198], + [22027,0.341], + [22029,0.339], + [22031,0.287], + [22033,0.402], + [22035,0.484], + [22037,0.195], + [22039,0.345], + [22041,0.273], + [22043,0.313], + [22045,0.321], + [22047,0.266], + [22049,0.29], + [22051,0.388], + [22053,0.271], + [22055,0.352], + [22057,0.235], + [22059,0.234], + [22061,0.485], + [22063,0.182], + [22065,0.468], + [22067,0.332], + [22069,0.562], + [22071,0.517], + [22073,0.416], + [22075,0.312], + [22077,0.237], + [22079,0.383], + [22081,0.264], + [22083,0.333], + [22085,0.318], + [22087,0.323], + [22089,0.193], + [22091,0.211], + [22093,0.21], + [22095,0.215], + [22097,0.317], + [22099,0.212], + [22101,0.393], + [22103,0.216], + [22105,0.31], + [22107,0.325], + [22109,0.285], + [22111,0.183], + [22113,0.228], + [22115,0.47], + [22117,0.326], + [22119,0.331], + [22121,0.269], + [22123,0.231], + [22125,0.268], + [22127,0.328], + [23001,0.357], + [23003,0.28], + [23005,0.307], + [23007,0.206], + [23009,0.237], + [23011,0.295], + [23013,0.228], + [23015,0.208], + [23017,0.192], + [23019,0.306], + [23021,0.241], + [23023,0.255], + [23025,0.239], + [23027,0.208], + [23029,0.235], + [23031,0.261], + [24001,0.312], + [24003,0.258], + [24005,0.339], + [24009,0.153], + [24011,0.272], + [24013,0.18], + [24015,0.27], + [24017,0.231], + [24019,0.32], + [24021,0.248], + [24023,0.214], + [24025,0.213], + [24027,0.268], + [24029,0.308], + [24031,0.346], + [24033,0.379], + [24035,0.19], + [24037,0.29], + [24039,0.35], + [24041,0.297], + [24043,0.341], + [24045,0.423], + [24047,0.249], + [24510,0.525], + [25001,0.202], + [25003,0.308], + [25005,0.374], + [25007,0.277], + [25009,0.358], + [25011,0.314], + [25013,0.389], + [25015,0.331], + [25017,0.376], + [25019,0.295], + [25021,0.311], + [25023,0.235], + [25025,0.639], + [25027,0.349], + [26001,0.112], + [26003,0.16], + [26005,0.174], + [26007,0.221], + [26009,0.129], + [26011,0.162], + [26013,0.197], + [26015,0.165], + [26017,0.232], + [26019,0.103], + [26021,0.293], + [26023,0.258], + [26025,0.301], + [26027,0.2], + [26029,0.191], + [26031,0.176], + [26033,0.326], + [26035,0.171], + [26037,0.2], + [26039,0.188], + [26041,0.226], + [26043,0.226], + [26045,0.277], + [26047,0.272], + [26049,0.3], + [26051,0.151], + [26053,0.225], + [26055,0.237], + [26057,0.257], + [26059,0.235], + [26061,0.331], + [26063,0.191], + [26065,0.415], + [26067,0.234], + [26069,0.201], + [26071,0.192], + [26073,0.379], + [26075,0.265], + [26077,0.36], + [26079,0.174], + [26081,0.302], + [26083,0.12], + [26085,0.158], + [26087,0.161], + [26089,0.117], + [26091,0.225], + [26093,0.146], + [26095,0.205], + [26097,0.281], + [26099,0.267], + [26101,0.166], + [26103,0.292], + [26105,0.231], + [26107,0.267], + [26109,0.223], + [26111,0.234], + [26113,0.199], + [26115,0.203], + [26117,0.219], + [26119,0.159], + [26121,0.253], + [26123,0.161], + [26125,0.29], + [26127,0.174], + [26129,0.186], + [26131,0.118], + [26133,0.193], + [26135,0.147], + [26137,0.211], + [26139,0.223], + [26141,0.112], + [26143,0.18], + [26145,0.287], + [26147,0.227], + [26149,0.254], + [26151,0.213], + [26153,0.163], + [26155,0.244], + [26157,0.176], + [26159,0.23], + [26161,0.389], + [26163,0.38], + [26165,0.232], + [27001,0.178], + [27003,0.199], + [27005,0.215], + [27007,0.329], + [27009,0.326], + [27011,0.271], + [27013,0.38], + [27015,0.208], + [27017,0.202], + [27019,0.181], + [27021,0.185], + [27023,0.333], + [27025,0.136], + [27027,0.325], + [27029,0.187], + [27031,0.231], + [27033,0.219], + [27035,0.235], + [27037,0.26], + [27039,0.161], + [27041,0.257], + [27043,0.225], + [27045,0.192], + [27047,0.233], + [27049,0.247], + [27051,0.226], + [27053,0.376], + [27055,0.199], + [27057,0.188], + [27059,0.175], + [27061,0.187], + [27063,0.19], + [27065,0.152], + [27067,0.26], + [27069,0.195], + [27071,0.212], + [27073,0.191], + [27075,0.18], + [27077,0.191], + [27079,0.184], + [27081,0.212], + [27083,0.316], + [27085,0.223], + [27087,0.32], + [27089,0.174], + [27091,0.262], + [27093,0.196], + [27095,0.249], + [27097,0.228], + [27099,0.27], + [27101,0.188], + [27103,0.261], + [27105,0.293], + [27107,0.181], + [27109,0.273], + [27111,0.217], + [27113,0.272], + [27115,0.191], + [27117,0.251], + [27119,0.271], + [27121,0.225], + [27123,0.406], + [27125,0.164], + [27127,0.215], + [27129,0.22], + [27131,0.26], + [27133,0.245], + [27135,0.184], + [27137,0.287], + [27139,0.172], + [27141,0.164], + [27143,0.209], + [27145,0.319], + [27147,0.248], + [27149,0.315], + [27151,0.297], + [27153,0.174], + [27155,0.204], + [27157,0.214], + [27159,0.235], + [27161,0.225], + [27163,0.189], + [27165,0.231], + [27167,0.219], + [27169,0.296], + [27171,0.184], + [27173,0.206], + [28001,0.376], + [28003,0.313], + [28005,0.151], + [28007,0.275], + [28009,0.194], + [28011,0.464], + [28013,0.255], + [28015,0.188], + [28017,0.303], + [28019,0.214], + [28021,0.305], + [28023,0.167], + [28025,0.286], + [28027,0.494], + [28029,0.228], + [28031,0.218], + [28033,0.26], + [28035,0.455], + [28037,0.231], + [28039,0.182], + [28041,0.172], + [28043,0.36], + [28045,0.245], + [28047,0.434], + [28049,0.42], + [28051,0.387], + [28053,0.381], + [28055,0.563], + [28057,0.237], + [28059,0.302], + [28061,0.15], + [28063,0.326], + [28065,0.244], + [28067,0.274], + [28069,0.264], + [28071,0.38], + [28073,0.325], + [28075,0.355], + [28077,0.248], + [28079,0.292], + [28081,0.321], + [28083,0.494], + [28085,0.247], + [28087,0.365], + [28089,0.283], + [28091,0.177], + [28093,0.245], + [28095,0.257], + [28097,0.308], + [28099,0.285], + [28101,0.228], + [28103,0.271], + [28105,0.483], + [28107,0.304], + [28109,0.222], + [28111,0.178], + [28113,0.31], + [28115,0.287], + [28117,0.273], + [28119,0.413], + [28121,0.235], + [28123,0.259], + [28125,0.359], + [28127,0.203], + [28129,0.17], + [28131,0.255], + [28133,0.464], + [28135,0.28], + [28137,0.252], + [28139,0.277], + [28141,0.245], + [28143,0.598], + [28145,0.269], + [28147,0.121], + [28149,0.339], + [28151,0.471], + [28153,0.165], + [28155,0.237], + [28157,0.201], + [28159,0.269], + [28161,0.3], + [28163,0.368], + [29001,0.399], + [29003,0.201], + [29005,0.303], + [29007,0.315], + [29009,0.263], + [29011,0.299], + [29013,0.273], + [29015,0.184], + [29017,0.192], + [29019,0.444], + [29021,0.376], + [29023,0.363], + [29025,0.239], + [29027,0.275], + [29029,0.193], + [29031,0.35], + [29033,0.257], + [29035,0.226], + [29037,0.235], + [29039,0.293], + [29041,0.217], + [29043,0.258], + [29045,0.251], + [29047,0.313], + [29049,0.236], + [29051,0.337], + [29053,0.274], + [29055,0.286], + [29057,0.232], + [29059,0.239], + [29061,0.207], + [29063,0.309], + [29065,0.265], + [29067,0.202], + [29069,0.38], + [29071,0.255], + [29073,0.216], + [29075,0.264], + [29077,0.44], + [29079,0.318], + [29081,0.273], + [29083,0.278], + [29085,0.178], + [29087,0.238], + [29089,0.218], + [29091,0.316], + [29093,0.292], + [29095,0.418], + [29097,0.364], + [29099,0.206], + [29101,0.39], + [29103,0.174], + [29105,0.305], + [29107,0.292], + [29109,0.282], + [29111,0.239], + [29113,0.215], + [29115,0.271], + [29117,0.334], + [29119,0.314], + [29121,0.254], + [29123,0.282], + [29125,0.251], + [29127,0.346], + [29129,0.214], + [29131,0.258], + [29133,0.403], + [29135,0.23], + [29137,0.255], + [29139,0.3], + [29141,0.193], + [29143,0.365], + [29145,0.285], + [29147,0.422], + [29149,0.262], + [29151,0.154], + [29153,0.224], + [29155,0.459], + [29157,0.25], + [29159,0.312], + [29161,0.404], + [29163,0.283], + [29165,0.341], + [29167,0.31], + [29169,0.507], + [29171,0.228], + [29173,0.167], + [29175,0.285], + [29177,0.215], + [29179,0.213], + [29181,0.21], + [29183,0.194], + [29185,0.217], + [29186,0.199], + [29187,0.315], + [29189,0.314], + [29195,0.304], + [29197,0.307], + [29199,0.225], + [29201,0.333], + [29203,0.266], + [29205,0.262], + [29207,0.32], + [29209,0.183], + [29211,0.255], + [29213,0.383], + [29215,0.276], + [29217,0.283], + [29219,0.211], + [29221,0.206], + [29223,0.265], + [29225,0.25], + [29227,0.236], + [29229,0.3], + [29510,0.563], + [30001,0.322], + [30003,0.366], + [30005,0.42], + [30007,0.175], + [30009,0.236], + [30011,0.28], + [30013,0.356], + [30015,0.362], + [30017,0.312], + [30019,0.216], + [30021,0.317], + [30023,0.322], + [30025,0.28], + [30027,0.272], + [30029,0.259], + [30031,0.388], + [30033,0.269], + [30035,0.412], + [30037,0.231], + [30039,0.209], + [30041,0.382], + [30043,0.157], + [30045,0.243], + [30047,0.28], + [30049,0.306], + [30051,0.37], + [30053,0.197], + [30055,0.192], + [30057,0.23], + [30059,0.275], + [30061,0.26], + [30063,0.411], + [30065,0.28], + [30067,0.315], + [30069,0.255], + [30071,0.229], + [30073,0.254], + [30075,0.254], + [30077,0.329], + [30079,0.16], + [30081,0.237], + [30083,0.34], + [30085,0.371], + [30087,0.308], + [30089,0.224], + [30091,0.212], + [30093,0.311], + [30095,0.193], + [30097,0.277], + [30099,0.301], + [30101,0.406], + [30103,0.319], + [30105,0.251], + [30107,0.253], + [30109,0.203], + [30111,0.316], + [31001,0.335], + [31003,0.245], + [31005,0.335], + [31007,0.304], + [31009,0.263], + [31011,0.238], + [31013,0.314], + [31015,0.185], + [31017,0.246], + [31019,0.35], + [31021,0.234], + [31023,0.221], + [31025,0.183], + [31027,0.195], + [31029,0.244], + [31031,0.387], + [31033,0.334], + [31035,0.202], + [31037,0.277], + [31039,0.303], + [31041,0.304], + [31043,0.348], + [31045,0.354], + [31047,0.327], + [31049,0.237], + [31051,0.215], + [31053,0.379], + [31055,0.383], + [31057,0.279], + [31059,0.225], + [31061,0.194], + [31063,0.298], + [31065,0.254], + [31067,0.304], + [31069,0.263], + [31071,0.222], + [31073,0.295], + [31075,0.295], + [31077,0.19], + [31079,0.377], + [31081,0.23], + [31083,0.206], + [31085,0.248], + [31087,0.261], + [31089,0.278], + [31091,0.374], + [31093,0.235], + [31095,0.288], + [31097,0.266], + [31099,0.269], + [31101,0.312], + [31103,0.273], + [31105,0.286], + [31107,0.259], + [31109,0.402], + [31111,0.33], + [31113,0.262], + [31115,0.235], + [31117,0.272], + [31119,0.344], + [31121,0.255], + [31123,0.285], + [31125,0.195], + [31127,0.271], + [31129,0.242], + [31131,0.302], + [31133,0.166], + [31135,0.221], + [31137,0.282], + [31139,0.241], + [31141,0.275], + [31143,0.169], + [31145,0.271], + [31147,0.241], + [31149,0.202], + [31151,0.294], + [31153,0.311], + [31155,0.219], + [31157,0.331], + [31159,0.283], + [31161,0.312], + [31163,0.228], + [31165,0.279], + [31167,0.179], + [31169,0.214], + [31171,0.235], + [31173,0.392], + [31175,0.257], + [31177,0.217], + [31179,0.359], + [31181,0.204], + [31183,0.329], + [31185,0.284], + [32001,0.346], + [32003,0.462], + [32005,0.286], + [32007,0.288], + [32009,0.418], + [32011,0.262], + [32013,0.286], + [32015,0.266], + [32017,0.252], + [32019,0.293], + [32021,0.294], + [32023,0.292], + [32027,0.332], + [32029,0.096], + [32031,0.417], + [32033,0.244], + [32510,0.432], + [33001,0.245], + [33003,0.207], + [33005,0.306], + [33007,0.293], + [33009,0.307], + [33011,0.34], + [33013,0.282], + [33015,0.223], + [33017,0.34], + [33019,0.267], + [34001,0.329], + [34003,0.352], + [34005,0.246], + [34007,0.332], + [34009,0.224], + [34011,0.348], + [34013,0.56], + [34015,0.199], + [34017,0.683], + [34019,0.172], + [34021,0.369], + [34023,0.365], + [34025,0.262], + [34027,0.261], + [34029,0.2], + [34031,0.473], + [34033,0.289], + [34035,0.242], + [34037,0.169], + [34039,0.414], + [34041,0.283], + [35001,0.37], + [35003,0.123], + [35005,0.311], + [35006,0.313], + [35007,0.29], + [35009,0.43], + [35011,0.374], + [35013,0.369], + [35015,0.305], + [35017,0.319], + [35019,0.374], + [35021,0.346], + [35023,0.294], + [35025,0.332], + [35027,0.194], + [35028,0.259], + [35029,0.391], + [35031,0.291], + [35033,0.145], + [35035,0.358], + [35037,0.385], + [35039,0.231], + [35041,0.415], + [35043,0.214], + [35045,0.29], + [35047,0.297], + [35049,0.291], + [35051,0.261], + [35053,0.266], + [35055,0.236], + [35057,0.168], + [35059,0.351], + [35061,0.185], + [36001,0.436], + [36003,0.238], + [36005,0.803], + [36007,0.348], + [36009,0.283], + [36011,0.287], + [36013,0.307], + [36015,0.317], + [36017,0.255], + [36019,0.335], + [36021,0.263], + [36023,0.344], + [36025,0.261], + [36027,0.312], + [36029,0.354], + [36031,0.246], + [36033,0.286], + [36035,0.293], + [36037,0.277], + [36039,0.252], + [36041,0.133], + [36043,0.264], + [36045,0.435], + [36047,0.699], + [36049,0.192], + [36051,0.253], + [36053,0.226], + [36055,0.365], + [36057,0.316], + [36059,0.193], + [36061,0.759], + [36063,0.293], + [36065,0.325], + [36067,0.353], + [36069,0.262], + [36071,0.331], + [36073,0.244], + [36075,0.263], + [36077,0.278], + [36079,0.182], + [36081,0.552], + [36083,0.372], + [36085,0.307], + [36087,0.317], + [36089,0.27], + [36091,0.278], + [36093,0.343], + [36095,0.242], + [36097,0.248], + [36099,0.261], + [36101,0.273], + [36103,0.194], + [36105,0.317], + [36107,0.231], + [36109,0.451], + [36111,0.317], + [36113,0.293], + [36115,0.26], + [36117,0.236], + [36119,0.386], + [36121,0.231], + [36123,0.2], + [37001,0.348], + [37003,0.243], + [37005,0.237], + [37007,0.339], + [37009,0.241], + [37011,0.247], + [37013,0.301], + [37015,0.256], + [37017,0.286], + [37019,0.193], + [37021,0.366], + [37023,0.261], + [37025,0.285], + [37027,0.275], + [37029,0.181], + [37031,0.274], + [37033,0.236], + [37035,0.306], + [37037,0.236], + [37039,0.21], + [37041,0.333], + [37043,0.22], + [37045,0.322], + [37047,0.275], + [37049,0.371], + [37051,0.493], + [37053,0.18], + [37055,0.256], + [37057,0.302], + [37059,0.202], + [37061,0.296], + [37063,0.456], + [37065,0.412], + [37067,0.384], + [37069,0.262], + [37071,0.347], + [37073,0.225], + [37075,0.17], + [37077,0.279], + [37079,0.293], + [37081,0.412], + [37083,0.374], + [37085,0.346], + [37087,0.27], + [37089,0.267], + [37091,0.342], + [37093,0.329], + [37095,0.322], + [37097,0.277], + [37099,0.357], + [37101,0.27], + [37103,0.267], + [37105,0.333], + [37107,0.407], + [37109,0.236], + [37111,0.273], + [37113,0.271], + [37115,0.259], + [37117,0.32], + [37119,0.436], + [37121,0.22], + [37123,0.252], + [37125,0.243], + [37127,0.347], + [37129,0.419], + [37131,0.316], + [37133,0.469], + [37135,0.374], + [37137,0.223], + [37139,0.404], + [37141,0.188], + [37143,0.246], + [37145,0.236], + [37147,0.479], + [37149,0.26], + [37151,0.282], + [37153,0.338], + [37155,0.344], + [37157,0.304], + [37159,0.307], + [37161,0.285], + [37163,0.307], + [37165,0.395], + [37167,0.256], + [37169,0.224], + [37171,0.265], + [37173,0.285], + [37175,0.24], + [37177,0.317], + [37179,0.187], + [37181,0.435], + [37183,0.361], + [37185,0.268], + [37187,0.335], + [37189,0.399], + [37191,0.379], + [37193,0.243], + [37195,0.409], + [37197,0.238], + [37199,0.267], + [38001,0.265], + [38003,0.307], + [38005,0.33], + [38007,0.209], + [38009,0.206], + [38011,0.247], + [38013,0.211], + [38015,0.313], + [38017,0.479], + [38019,0.193], + [38021,0.257], + [38023,0.276], + [38025,0.23], + [38027,0.29], + [38029,0.141], + [38031,0.258], + [38033,0.3], + [38035,0.515], + [38037,0.133], + [38039,0.239], + [38041,0.193], + [38043,0.247], + [38045,0.231], + [38047,0.161], + [38049,0.171], + [38051,0.266], + [38053,0.46], + [38055,0.188], + [38057,0.173], + [38059,0.293], + [38061,0.319], + [38063,0.277], + [38065,0.114], + [38067,0.23], + [38069,0.264], + [38071,0.397], + [38073,0.291], + [38075,0.174], + [38077,0.291], + [38079,0.287], + [38081,0.272], + [38083,0.202], + [38085,0.566], + [38087,0.178], + [38089,0.389], + [38091,0.153], + [38093,0.344], + [38095,0.269], + [38097,0.285], + [38099,0.236], + [38101,0.405], + [38103,0.213], + [38105,0.474], + [39001,0.292], + [39003,0.329], + [39005,0.262], + [39007,0.295], + [39009,0.422], + [39011,0.243], + [39013,0.236], + [39015,0.276], + [39017,0.319], + [39019,0.213], + [39021,0.268], + [39023,0.34], + [39025,0.258], + [39027,0.354], + [39029,0.265], + [39031,0.26], + [39033,0.303], + [39035,0.418], + [39037,0.272], + [39039,0.237], + [39041,0.186], + [39043,0.308], + [39045,0.261], + [39047,0.351], + [39049,0.466], + [39051,0.209], + [39053,0.255], + [39055,0.137], + [39057,0.339], + [39059,0.285], + [39061,0.421], + [39063,0.312], + [39065,0.29], + [39067,0.211], + [39069,0.226], + [39071,0.316], + [39073,0.249], + [39075,0.245], + [39077,0.291], + [39079,0.308], + [39081,0.31], + [39083,0.28], + [39085,0.258], + [39087,0.278], + [39089,0.271], + [39091,0.258], + [39093,0.277], + [39095,0.403], + [39097,0.288], + [39099,0.313], + [39101,0.336], + [39103,0.201], + [39105,0.214], + [39107,0.23], + [39109,0.289], + [39111,0.217], + [39113,0.39], + [39115,0.233], + [39117,0.182], + [39119,0.31], + [39121,0.181], + [39123,0.212], + [39125,0.21], + [39127,0.263], + [39129,0.254], + [39131,0.352], + [39133,0.305], + [39135,0.216], + [39137,0.184], + [39139,0.326], + [39141,0.291], + [39143,0.273], + [39145,0.324], + [39147,0.277], + [39149,0.288], + [39151,0.318], + [39153,0.342], + [39155,0.294], + [39157,0.293], + [39159,0.215], + [39161,0.229], + [39163,0.24], + [39165,0.223], + [39167,0.264], + [39169,0.27], + [39171,0.23], + [39173,0.347], + [39175,0.259], + [40001,0.307], + [40003,0.198], + [40005,0.266], + [40007,0.235], + [40009,0.338], + [40011,0.266], + [40013,0.378], + [40015,0.287], + [40017,0.246], + [40019,0.317], + [40021,0.316], + [40023,0.307], + [40025,0.271], + [40027,0.363], + [40029,0.26], + [40031,0.469], + [40033,0.222], + [40035,0.305], + [40037,0.264], + [40039,0.374], + [40041,0.244], + [40043,0.237], + [40045,0.258], + [40047,0.342], + [40049,0.307], + [40051,0.229], + [40053,0.234], + [40055,0.303], + [40057,0.269], + [40059,0.216], + [40061,0.253], + [40063,0.272], + [40065,0.415], + [40067,0.279], + [40069,0.265], + [40071,0.325], + [40073,0.237], + [40075,0.279], + [40077,0.302], + [40079,0.29], + [40081,0.203], + [40083,0.171], + [40085,0.233], + [40087,0.206], + [40089,0.292], + [40091,0.216], + [40093,0.206], + [40095,0.274], + [40097,0.271], + [40099,0.298], + [40101,0.347], + [40103,0.232], + [40105,0.263], + [40107,0.288], + [40109,0.411], + [40111,0.29], + [40113,0.217], + [40115,0.31], + [40117,0.244], + [40119,0.483], + [40121,0.275], + [40123,0.341], + [40125,0.305], + [40127,0.244], + [40129,0.25], + [40131,0.218], + [40133,0.32], + [40135,0.281], + [40137,0.276], + [40139,0.32], + [40141,0.242], + [40143,0.412], + [40145,0.214], + [40147,0.292], + [40149,0.291], + [40151,0.316], + [40153,0.288], + [41001,0.293], + [41003,0.428], + [41005,0.289], + [41007,0.378], + [41009,0.246], + [41011,0.341], + [41013,0.278], + [41015,0.286], + [41017,0.33], + [41019,0.318], + [41021,0.327], + [41023,0.289], + [41025,0.278], + [41027,0.328], + [41029,0.368], + [41031,0.319], + [41033,0.337], + [41035,0.357], + [41037,0.381], + [41039,0.413], + [41041,0.344], + [41043,0.356], + [41045,0.417], + [41047,0.398], + [41049,0.3], + [41051,0.455], + [41053,0.337], + [41055,0.354], + [41057,0.307], + [41059,0.343], + [41061,0.355], + [41063,0.303], + [41065,0.378], + [41067,0.384], + [41069,0.239], + [41071,0.3], + [42001,0.22], + [42003,0.357], + [42005,0.24], + [42007,0.269], + [42009,0.209], + [42011,0.285], + [42013,0.302], + [42015,0.26], + [42017,0.23], + [42019,0.241], + [42021,0.259], + [42023,0.28], + [42025,0.242], + [42027,0.385], + [42029,0.25], + [42031,0.309], + [42033,0.232], + [42035,0.298], + [42037,0.308], + [42039,0.271], + [42041,0.297], + [42043,0.368], + [42045,0.312], + [42047,0.214], + [42049,0.339], + [42051,0.256], + [42053,0.161], + [42055,0.288], + [42057,0.226], + [42059,0.252], + [42061,0.243], + [42063,0.288], + [42065,0.257], + [42067,0.255], + [42069,0.357], + [42071,0.319], + [42073,0.255], + [42075,0.3], + [42077,0.356], + [42079,0.32], + [42081,0.308], + [42083,0.259], + [42085,0.275], + [42087,0.287], + [42089,0.23], + [42091,0.282], + [42093,0.328], + [42095,0.286], + [42097,0.292], + [42099,0.21], + [42101,0.47], + [42103,0.168], + [42105,0.238], + [42107,0.243], + [42109,0.278], + [42111,0.219], + [42113,0.18], + [42115,0.229], + [42117,0.272], + [42119,0.276], + [42121,0.249], + [42123,0.231], + [42125,0.244], + [42127,0.19], + [42129,0.228], + [42131,0.228], + [42133,0.251], + [44001,0.293], + [44003,0.299], + [44005,0.368], + [44007,0.458], + [44009,0.26], + [45001,0.25], + [45003,0.274], + [45005,0.318], + [45007,0.283], + [45009,0.294], + [45011,0.304], + [45013,0.267], + [45015,0.281], + [45017,0.197], + [45019,0.384], + [45021,0.311], + [45023,0.239], + [45025,0.289], + [45027,0.23], + [45029,0.251], + [45031,0.304], + [45033,0.406], + [45035,0.283], + [45037,0.259], + [45039,0.247], + [45041,0.343], + [45043,0.212], + [45045,0.325], + [45047,0.36], + [45049,0.24], + [45051,0.282], + [45053,0.283], + [45055,0.179], + [45057,0.203], + [45059,0.302], + [45061,0.253], + [45063,0.258], + [45065,0.234], + [45067,0.34], + [45069,0.371], + [45071,0.267], + [45073,0.273], + [45075,0.327], + [45077,0.329], + [45079,0.405], + [45081,0.259], + [45083,0.294], + [45085,0.354], + [45087,0.317], + [45089,0.27], + [45091,0.28], + [46003,0.247], + [46005,0.343], + [46007,0.395], + [46009,0.265], + [46011,0.408], + [46013,0.36], + [46015,0.383], + [46017,0.537], + [46019,0.229], + [46021,0.135], + [46023,0.291], + [46025,0.206], + [46027,0.463], + [46029,0.347], + [46031,0.462], + [46033,0.16], + [46035,0.403], + [46037,0.247], + [46039,0.21], + [46041,0.389], + [46043,0.202], + [46045,0.18], + [46047,0.219], + [46049,0.197], + [46051,0.188], + [46053,0.284], + [46055,0.229], + [46057,0.195], + [46059,0.317], + [46061,0.121], + [46063,0.329], + [46065,0.312], + [46067,0.228], + [46069,0.25], + [46071,0.417], + [46073,0.274], + [46075,0.25], + [46077,0.205], + [46079,0.254], + [46081,0.353], + [46083,0.233], + [46085,0.328], + [46087,0.241], + [46089,0.229], + [46091,0.262], + [46093,0.256], + [46095,0.306], + [46097,0.233], + [46099,0.368], + [46101,0.286], + [46102,0.498], + [46103,0.314], + [46105,0.274], + [46107,0.212], + [46109,0.335], + [46111,0.267], + [46115,0.258], + [46117,0.211], + [46119,0.141], + [46121,0.563], + [46123,0.238], + [46125,0.217], + [46127,0.308], + [46129,0.261], + [46135,0.348], + [46137,0.428], + [47001,0.321], + [47003,0.315], + [47005,0.229], + [47007,0.262], + [47009,0.246], + [47011,0.345], + [47013,0.319], + [47015,0.252], + [47017,0.269], + [47019,0.292], + [47021,0.23], + [47023,0.229], + [47025,0.291], + [47027,0.217], + [47029,0.329], + [47031,0.319], + [47033,0.284], + [47035,0.224], + [47037,0.457], + [47039,0.19], + [47041,0.316], + [47043,0.249], + [47045,0.385], + [47047,0.201], + [47049,0.249], + [47051,0.255], + [47053,0.317], + [47055,0.304], + [47057,0.209], + [47059,0.26], + [47061,0.22], + [47063,0.331], + [47065,0.36], + [47067,0.204], + [47069,0.288], + [47071,0.275], + [47073,0.265], + [47075,0.418], + [47077,0.272], + [47079,0.238], + [47081,0.197], + [47083,0.235], + [47085,0.222], + [47087,0.229], + [47089,0.248], + [47091,0.244], + [47093,0.357], + [47095,0.453], + [47097,0.439], + [47099,0.247], + [47101,0.22], + [47103,0.249], + [47105,0.222], + [47107,0.265], + [47109,0.273], + [47111,0.256], + [47113,0.377], + [47115,0.251], + [47117,0.282], + [47119,0.301], + [47121,0.213], + [47123,0.233], + [47125,0.405], + [47127,0.152], + [47129,0.184], + [47131,0.351], + [47133,0.203], + [47135,0.176], + [47137,0.183], + [47139,0.263], + [47141,0.385], + [47143,0.288], + [47145,0.228], + [47147,0.26], + [47149,0.348], + [47151,0.3], + [47153,0.253], + [47155,0.306], + [47157,0.449], + [47159,0.261], + [47161,0.25], + [47163,0.282], + [47165,0.264], + [47167,0.287], + [47169,0.212], + [47171,0.281], + [47173,0.246], + [47175,0.185], + [47177,0.305], + [47179,0.356], + [47181,0.226], + [47183,0.347], + [47185,0.2], + [47187,0.194], + [47189,0.232], + [48001,0.304], + [48003,0.259], + [48005,0.338], + [48007,0.198], + [48009,0.163], + [48011,0.12], + [48013,0.247], + [48015,0.238], + [48017,0.254], + [48019,0.15], + [48021,0.223], + [48023,0.276], + [48025,0.373], + [48027,0.457], + [48029,0.415], + [48031,0.214], + [48033,0.242], + [48035,0.226], + [48037,0.365], + [48039,0.279], + [48041,0.529], + [48043,0.422], + [48045,0.307], + [48047,0.387], + [48049,0.275], + [48051,0.218], + [48053,0.228], + [48055,0.326], + [48057,0.272], + [48059,0.179], + [48061,0.341], + [48063,0.276], + [48065,0.19], + [48067,0.207], + [48069,0.355], + [48071,0.171], + [48073,0.281], + [48075,0.401], + [48077,0.156], + [48079,0.216], + [48081,0.259], + [48083,0.254], + [48085,0.35], + [48087,0.247], + [48089,0.176], + [48091,0.251], + [48093,0.2], + [48095,0.248], + [48097,0.307], + [48099,0.421], + [48101,0.438], + [48103,0.144], + [48105,0.261], + [48107,0.247], + [48109,0.333], + [48111,0.356], + [48113,0.5], + [48115,0.307], + [48117,0.36], + [48119,0.218], + [48121,0.349], + [48123,0.272], + [48125,0.233], + [48127,0.338], + [48129,0.297], + [48131,0.345], + [48133,0.234], + [48135,0.351], + [48137,0.144], + [48139,0.256], + [48141,0.389], + [48143,0.366], + [48145,0.276], + [48147,0.268], + [48149,0.183], + [48151,0.264], + [48153,0.251], + [48155,0.169], + [48157,0.228], + [48159,0.213], + [48161,0.226], + [48163,0.31], + [48165,0.227], + [48167,0.325], + [48169,0.295], + [48171,0.276], + [48173,0.342], + [48175,0.2], + [48177,0.327], + [48179,0.265], + [48181,0.324], + [48183,0.409], + [48185,0.235], + [48187,0.233], + [48189,0.377], + [48191,0.347], + [48193,0.181], + [48195,0.295], + [48197,0.321], + [48199,0.188], + [48201,0.454], + [48203,0.277], + [48205,0.373], + [48207,0.244], + [48209,0.377], + [48211,0.287], + [48213,0.248], + [48215,0.32], + [48217,0.274], + [48219,0.295], + [48221,0.227], + [48223,0.304], + [48225,0.3], + [48227,0.346], + [48229,0.281], + [48231,0.311], + [48233,0.197], + [48235,0.224], + [48237,0.187], + [48239,0.304], + [48241,0.224], + [48243,0.184], + [48245,0.389], + [48247,0.284], + [48249,0.294], + [48251,0.267], + [48253,0.254], + [48255,0.255], + [48257,0.234], + [48259,0.259], + [48261,0.766], + [48263,0.304], + [48265,0.293], + [48267,0.238], + [48269,0.662], + [48271,0.234], + [48273,0.472], + [48275,0.171], + [48277,0.355], + [48279,0.285], + [48281,0.226], + [48283,0.313], + [48285,0.257], + [48287,0.194], + [48289,0.226], + [48291,0.245], + [48293,0.259], + [48295,0.262], + [48297,0.18], + [48299,0.219], + [48301,0.367], + [48303,0.448], + [48305,0.317], + [48307,0.278], + [48309,0.408], + [48311,0.241], + [48313,0.258], + [48315,0.227], + [48317,0.262], + [48319,0.294], + [48321,0.293], + [48323,0.343], + [48325,0.196], + [48327,0.309], + [48329,0.331], + [48331,0.286], + [48333,0.149], + [48335,0.21], + [48337,0.276], + [48339,0.29], + [48341,0.342], + [48343,0.27], + [48345,0.317], + [48347,0.434], + [48349,0.311], + [48351,0.154], + [48353,0.328], + [48355,0.42], + [48357,0.266], + [48359,0.215], + [48361,0.247], + [48363,0.273], + [48365,0.233], + [48367,0.212], + [48369,0.331], + [48371,0.278], + [48373,0.24], + [48375,0.448], + [48377,0.422], + [48379,0.223], + [48381,0.292], + [48383,0.326], + [48385,0.235], + [48387,0.234], + [48389,0.275], + [48391,0.272], + [48393,0.203], + [48395,0.239], + [48397,0.182], + [48399,0.289], + [48401,0.222], + [48403,0.118], + [48405,0.225], + [48407,0.194], + [48409,0.317], + [48411,0.316], + [48413,0.211], + [48415,0.248], + [48417,0.204], + [48419,0.264], + [48421,0.274], + [48423,0.336], + [48425,0.197], + [48427,0.249], + [48429,0.179], + [48431,0.144], + [48433,0.245], + [48435,0.308], + [48437,0.29], + [48439,0.395], + [48441,0.416], + [48443,0.069], + [48445,0.304], + [48447,0.271], + [48449,0.33], + [48451,0.365], + [48453,0.476], + [48455,0.226], + [48457,0.16], + [48459,0.212], + [48461,0.27], + [48463,0.267], + [48465,0.365], + [48467,0.22], + [48469,0.338], + [48471,0.486], + [48473,0.317], + [48475,0.285], + [48477,0.259], + [48479,0.378], + [48481,0.33], + [48483,0.334], + [48485,0.397], + [48487,0.393], + [48489,0.295], + [48491,0.316], + [48493,0.156], + [48495,0.204], + [48497,0.221], + [48499,0.198], + [48501,0.22], + [48503,0.244], + [48505,0.252], + [48507,0.28], + [49001,0.259], + [49003,0.222], + [49005,0.37], + [49007,0.263], + [49009,0.129], + [49011,0.23], + [49013,0.249], + [49015,0.231], + [49017,0.205], + [49019,0.349], + [49021,0.36], + [49023,0.214], + [49025,0.226], + [49027,0.255], + [49029,0.147], + [49031,0.164], + [49033,0.283], + [49035,0.329], + [49037,0.194], + [49039,0.223], + [49041,0.219], + [49043,0.226], + [49045,0.191], + [49047,0.241], + [49049,0.324], + [49051,0.27], + [49053,0.296], + [49055,0.261], + [49057,0.266], + [50001,0.24], + [50003,0.26], + [50005,0.269], + [50007,0.376], + [50009,0.188], + [50011,0.246], + [50013,0.16], + [50015,0.268], + [50017,0.195], + [50019,0.218], + [50021,0.286], + [50023,0.296], + [50025,0.327], + [50027,0.262], + [51001,0.332], + [51003,0.367], + [51005,0.238], + [51007,0.156], + [51009,0.229], + [51011,0.222], + [51013,0.573], + [51015,0.207], + [51017,0.247], + [51019,0.179], + [51021,0.186], + [51023,0.137], + [51025,0.293], + [51027,0.227], + [51029,0.248], + [51031,0.253], + [51033,0.208], + [51035,0.217], + [51036,0.161], + [51037,0.287], + [51041,0.242], + [51043,0.25], + [51045,0.236], + [51047,0.273], + [51049,0.261], + [51051,0.243], + [51053,0.228], + [51057,0.329], + [51059,0.32], + [51061,0.217], + [51063,0.189], + [51065,0.15], + [51067,0.183], + [51069,0.224], + [51071,0.249], + [51073,0.218], + [51075,0.151], + [51077,0.187], + [51079,0.224], + [51081,0.267], + [51083,0.259], + [51085,0.175], + [51087,0.373], + [51089,0.281], + [51091,0.171], + [51093,0.242], + [51095,0.236], + [51097,0.165], + [51099,0.212], + [51101,0.126], + [51103,0.241], + [51105,0.292], + [51107,0.22], + [51109,0.2], + [51111,0.282], + [51113,0.255], + [51115,0.15], + [51117,0.289], + [51119,0.213], + [51121,0.446], + [51125,0.236], + [51127,0.135], + [51131,0.348], + [51133,0.108], + [51135,0.353], + [51137,0.212], + [51139,0.289], + [51141,0.21], + [51143,0.246], + [51145,0.099], + [51147,0.356], + [51149,0.324], + [51153,0.267], + [51155,0.286], + [51157,0.258], + [51159,0.301], + [51161,0.252], + [51163,0.248], + [51165,0.255], + [51167,0.239], + [51169,0.226], + [51171,0.291], + [51173,0.285], + [51175,0.252], + [51177,0.219], + [51179,0.226], + [51181,0.257], + [51183,0.308], + [51185,0.255], + [51187,0.233], + [51191,0.248], + [51193,0.268], + [51195,0.334], + [51197,0.22], + [51199,0.287], + [51510,0.567], + [51520,0.396], + [51530,0.32], + [51540,0.572], + [51550,0.286], + [51570,0.371], + [51580,0.255], + [51590,0.485], + [51595,0.599], + [51600,0.3], + [51610,0.417], + [51620,0.484], + [51630,0.645], + [51640,0.319], + [51650,0.443], + [51660,0.604], + [51670,0.533], + [51678,0.476], + [51680,0.513], + [51683,0.339], + [51685,0.341], + [51690,0.441], + [51700,0.511], + [51710,0.566], + [51720,0.499], + [51730,0.612], + [51735,0.186], + [51740,0.45], + [51750,0.534], + [51760,0.574], + [51770,0.485], + [51775,0.364], + [51790,0.427], + [51800,0.313], + [51810,0.363], + [51820,0.423], + [51830,0.507], + [51840,0.557], + [53001,0.369], + [53003,0.293], + [53005,0.312], + [53007,0.356], + [53009,0.296], + [53011,0.33], + [53013,0.321], + [53015,0.339], + [53017,0.313], + [53019,0.28], + [53021,0.315], + [53023,0.285], + [53025,0.375], + [53027,0.33], + [53029,0.285], + [53031,0.257], + [53033,0.431], + [53035,0.322], + [53037,0.409], + [53039,0.32], + [53041,0.294], + [53043,0.22], + [53045,0.226], + [53047,0.342], + [53049,0.2], + [53051,0.221], + [53053,0.379], + [53055,0.254], + [53057,0.314], + [53059,0.255], + [53061,0.329], + [53063,0.376], + [53065,0.219], + [53067,0.346], + [53069,0.133], + [53071,0.352], + [53073,0.381], + [53075,0.564], + [53077,0.373], + [54001,0.28], + [54003,0.254], + [54005,0.234], + [54007,0.193], + [54009,0.238], + [54011,0.382], + [54013,0.211], + [54015,0.186], + [54017,0.123], + [54019,0.227], + [54021,0.311], + [54023,0.185], + [54025,0.275], + [54027,0.237], + [54029,0.273], + [54031,0.262], + [54033,0.261], + [54035,0.233], + [54037,0.236], + [54039,0.309], + [54041,0.285], + [54043,0.222], + [54045,0.274], + [54047,0.213], + [54049,0.254], + [54051,0.199], + [54053,0.205], + [54055,0.305], + [54057,0.24], + [54059,0.265], + [54061,0.432], + [54063,0.213], + [54065,0.167], + [54067,0.206], + [54069,0.302], + [54071,0.195], + [54073,0.175], + [54075,0.184], + [54077,0.171], + [54079,0.182], + [54081,0.266], + [54083,0.285], + [54085,0.202], + [54087,0.207], + [54089,0.238], + [54091,0.22], + [54093,0.215], + [54095,0.173], + [54097,0.263], + [54099,0.265], + [54101,0.274], + [54103,0.206], + [54105,0.163], + [54107,0.285], + [54109,0.158], + [55001,0.167], + [55003,0.317], + [55005,0.253], + [55007,0.168], + [55009,0.352], + [55011,0.236], + [55013,0.178], + [55015,0.194], + [55017,0.269], + [55019,0.216], + [55021,0.256], + [55023,0.243], + [55025,0.418], + [55027,0.303], + [55029,0.201], + [55031,0.325], + [55033,0.318], + [55035,0.355], + [55037,0.138], + [55039,0.297], + [55041,0.238], + [55043,0.296], + [55045,0.249], + [55047,0.239], + [55049,0.262], + [55051,0.225], + [55053,0.261], + [55055,0.298], + [55057,0.238], + [55059,0.339], + [55061,0.207], + [55063,0.37], + [55065,0.236], + [55067,0.229], + [55069,0.219], + [55071,0.246], + [55073,0.278], + [55075,0.253], + [55077,0.186], + [55078,0.32], + [55079,0.505], + [55081,0.303], + [55083,0.173], + [55085,0.168], + [55087,0.289], + [55089,0.241], + [55091,0.202], + [55093,0.278], + [55095,0.211], + [55097,0.31], + [55099,0.222], + [55101,0.324], + [55103,0.253], + [55105,0.316], + [55107,0.209], + [55109,0.232], + [55111,0.311], + [55113,0.26], + [55115,0.227], + [55117,0.3], + [55119,0.234], + [55121,0.27], + [55123,0.222], + [55125,0.223], + [55127,0.314], + [55129,0.2], + [55131,0.225], + [55133,0.237], + [55135,0.263], + [55137,0.184], + [55139,0.348], + [55141,0.276], + [56001,0.49], + [56003,0.268], + [56005,0.266], + [56007,0.304], + [56009,0.263], + [56011,0.182], + [56013,0.295], + [56015,0.263], + [56017,0.248], + [56019,0.301], + [56021,0.302], + [56023,0.176], + [56025,0.318], + [56027,0.225], + [56029,0.268], + [56031,0.252], + [56033,0.312], + [56035,0.179], + [56037,0.238], + [56039,0.396], + [56041,0.229], + [56043,0.235], + [56045,0.17] + ] +} diff --git a/data/regional/united-states/infrastructure/housing/us-housing-multiunits-2010.json b/data/regional/united-states/infrastructure/housing/us-housing-multiunits-2010.json new file mode 100644 index 0000000..6b11164 --- /dev/null +++ b/data/regional/united-states/infrastructure/housing/us-housing-multiunits-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Multi-Housing Units", + "description" : "Percent of housing units in multi apartment blocks.", + "units" : "%", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "infrastructure", + "tags" : ["regional","us","counties","infrastructure","housing","apartmenmts"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.infrastructure.housing.multiunits.2010"], + [1001,0.072], + [1003,0.226], + [1005,0.111], + [1007,0.066], + [1009,0.037], + [1011,0.099], + [1013,0.137], + [1015,0.143], + [1017,0.087], + [1019,0.043], + [1021,0.044], + [1023,0.039], + [1025,0.063], + [1027,0.112], + [1029,0.053], + [1031,0.136], + [1033,0.123], + [1035,0.06], + [1037,0.019], + [1039,0.061], + [1041,0.092], + [1043,0.085], + [1045,0.132], + [1047,0.16], + [1049,0.064], + [1051,0.07], + [1053,0.078], + [1055,0.119], + [1057,0.079], + [1059,0.104], + [1061,0.066], + [1063,0.111], + [1065,0.061], + [1067,0.032], + [1069,0.152], + [1071,0.058], + [1073,0.24], + [1075,0.09], + [1077,0.147], + [1079,0.051], + [1081,0.233], + [1083,0.094], + [1085,0.07], + [1087,0.155], + [1089,0.214], + [1091,0.083], + [1093,0.109], + [1095,0.093], + [1097,0.177], + [1099,0.06], + [1101,0.224], + [1103,0.137], + [1105,0.114], + [1107,0.101], + [1109,0.187], + [1111,0.048], + [1113,0.178], + [1115,0.055], + [1117,0.114], + [1119,0.145], + [1121,0.096], + [1123,0.089], + [1125,0.254], + [1127,0.066], + [1129,0.026], + [1131,0.06], + [1133,0.061], + [2013,0.118], + [2016,0.309], + [2020,0.353], + [2050,0.139], + [2060,0.134], + [2068,0.141], + [2070,0.141], + [2090,0.262], + [2100,0.132], + [2105,0.086], + [2110,0.322], + [2122,0.12], + [2130,0.367], + [2150,0.259], + [2158,0.041], + [2164,0.025], + [2170,0.101], + [2180,0.174], + [2185,0.249], + [2188,0.194], + [2195,0.095], + [2198,0.097], + [2220,0.244], + [2230,0.272], + [2240,0.173], + [2261,0.176], + [2275,0.119], + [2282,0.124], + [2290,0.029], + [4001,0.052], + [4003,0.122], + [4005,0.189], + [4007,0.048], + [4009,0.077], + [4011,0.061], + [4012,0.036], + [4013,0.251], + [4015,0.098], + [4017,0.07], + [4019,0.229], + [4021,0.063], + [4023,0.176], + [4025,0.11], + [4027,0.125], + [5001,0.109], + [5003,0.085], + [5005,0.101], + [5007,0.156], + [5009,0.121], + [5011,0.08], + [5013,0.024], + [5015,0.116], + [5017,0.1], + [5019,0.159], + [5021,0.081], + [5023,0.057], + [5025,0.031], + [5027,0.114], + [5029,0.063], + [5031,0.2], + [5033,0.108], + [5035,0.231], + [5037,0.113], + [5039,0.079], + [5041,0.172], + [5043,0.077], + [5045,0.173], + [5047,0.047], + [5049,0.034], + [5051,0.167], + [5053,0.024], + [5055,0.135], + [5057,0.102], + [5059,0.044], + [5061,0.082], + [5063,0.073], + [5065,0.045], + [5067,0.15], + [5069,0.148], + [5071,0.113], + [5073,0.054], + [5075,0.081], + [5077,0.139], + [5079,0.084], + [5081,0.094], + [5083,0.04], + [5085,0.086], + [5087,0.036], + [5089,0.047], + [5091,0.187], + [5093,0.168], + [5095,0.161], + [5097,0.025], + [5099,0.059], + [5101,0.04], + [5103,0.105], + [5105,0.023], + [5107,0.157], + [5109,0.061], + [5111,0.115], + [5113,0.037], + [5115,0.141], + [5117,0.058], + [5119,0.249], + [5121,0.068], + [5123,0.152], + [5125,0.078], + [5127,0.064], + [5129,0.047], + [5131,0.223], + [5133,0.061], + [5135,0.036], + [5137,0.014], + [5139,0.088], + [5141,0.099], + [5143,0.301], + [5145,0.138], + [5147,0.129], + [5149,0.073], + [6001,0.38], + [6003,0.384], + [6005,0.075], + [6007,0.197], + [6009,0.037], + [6011,0.143], + [6013,0.238], + [6015,0.146], + [6017,0.121], + [6019,0.258], + [6021,0.114], + [6023,0.189], + [6025,0.214], + [6027,0.131], + [6029,0.181], + [6031,0.185], + [6033,0.078], + [6035,0.097], + [6037,0.418], + [6039,0.12], + [6041,0.27], + [6043,0.08], + [6045,0.131], + [6047,0.173], + [6049,0.053], + [6051,0.511], + [6053,0.266], + [6055,0.197], + [6057,0.095], + [6059,0.337], + [6061,0.171], + [6063,0.066], + [6065,0.161], + [6067,0.269], + [6069,0.143], + [6071,0.188], + [6073,0.355], + [6075,0.666], + [6077,0.187], + [6079,0.177], + [6081,0.324], + [6083,0.295], + [6085,0.328], + [6087,0.214], + [6089,0.16], + [6091,0.045], + [6093,0.144], + [6095,0.214], + [6097,0.188], + [6099,0.165], + [6101,0.2], + [6103,0.116], + [6105,0.071], + [6107,0.144], + [6109,0.086], + [6111,0.202], + [6113,0.306], + [6115,0.178], + [8001,0.239], + [8003,0.203], + [8005,0.337], + [8007,0.17], + [8009,0.044], + [8011,0.089], + [8013,0.282], + [8014,0.217], + [8015,0.074], + [8017,0.056], + [8019,0.118], + [8021,0.041], + [8023,0.073], + [8025,0.065], + [8027,0.047], + [8029,0.053], + [8031,0.449], + [8033,0.017], + [8035,0.149], + [8037,0.363], + [8039,0.014], + [8041,0.224], + [8043,0.1], + [8045,0.205], + [8047,0.113], + [8049,0.303], + [8051,0.288], + [8053,0.036], + [8055,0.086], + [8057,0.056], + [8059,0.247], + [8061,0.034], + [8063,0.107], + [8065,0.177], + [8067,0.187], + [8069,0.214], + [8071,0.12], + [8073,0.118], + [8075,0.15], + [8077,0.148], + [8079,0.002], + [8081,0.14], + [8083,0.095], + [8085,0.089], + [8087,0.121], + [8089,0.133], + [8091,0.081], + [8093,0.013], + [8095,0.076], + [8097,0.4], + [8099,0.149], + [8101,0.162], + [8103,0.138], + [8105,0.089], + [8107,0.288], + [8109,0.081], + [8111,0.333], + [8113,0.4], + [8115,0.115], + [8117,0.577], + [8119,0.051], + [8121,0.054], + [8123,0.166], + [8125,0.066], + [9001,0.355], + [9003,0.388], + [9005,0.217], + [9007,0.235], + [9009,0.397], + [9011,0.291], + [9013,0.243], + [9015,0.274], + [10001,0.129], + [10003,0.228], + [10005,0.108], + [11001,0.617], + [12001,0.38], + [12003,0.043], + [12005,0.303], + [12007,0.059], + [12009,0.226], + [12011,0.485], + [12013,0.054], + [12015,0.184], + [12017,0.054], + [12019,0.106], + [12021,0.48], + [12023,0.082], + [12027,0.099], + [12029,0.014], + [12031,0.284], + [12033,0.226], + [12035,0.094], + [12037,0.152], + [12039,0.067], + [12041,0.017], + [12043,0.053], + [12045,0.111], + [12047,0.082], + [12049,0.094], + [12051,0.095], + [12053,0.039], + [12055,0.113], + [12057,0.291], + [12059,0.053], + [12061,0.242], + [12063,0.075], + [12065,0.044], + [12067,0.02], + [12069,0.108], + [12071,0.287], + [12073,0.307], + [12075,0.055], + [12077,0.017], + [12079,0.093], + [12081,0.254], + [12083,0.1], + [12085,0.287], + [12086,0.466], + [12087,0.235], + [12089,0.139], + [12091,0.259], + [12093,0.044], + [12095,0.329], + [12097,0.242], + [12099,0.41], + [12101,0.108], + [12103,0.36], + [12105,0.142], + [12107,0.066], + [12109,0.2], + [12111,0.202], + [12113,0.106], + [12115,0.245], + [12117,0.261], + [12119,0.024], + [12121,0.052], + [12123,0.027], + [12125,0.082], + [12127,0.212], + [12129,0.035], + [12131,0.246], + [12133,0.043], + [13001,0.055], + [13003,0.065], + [13005,0.053], + [13007,0.069], + [13009,0.156], + [13011,0.048], + [13013,0.07], + [13015,0.126], + [13017,0.128], + [13019,0.03], + [13021,0.25], + [13023,0.109], + [13025,0.023], + [13027,0.052], + [13029,0.081], + [13031,0.264], + [13033,0.105], + [13035,0.058], + [13037,0.098], + [13039,0.163], + [13043,0.05], + [13045,0.141], + [13047,0.116], + [13049,0.051], + [13051,0.277], + [13053,0.394], + [13055,0.101], + [13057,0.093], + [13059,0.433], + [13061,0.064], + [13063,0.294], + [13065,0.087], + [13067,0.251], + [13069,0.077], + [13071,0.117], + [13073,0.075], + [13075,0.049], + [13077,0.118], + [13079,0.025], + [13081,0.185], + [13083,0.06], + [13085,0.043], + [13087,0.111], + [13089,0.366], + [13091,0.086], + [13093,0.085], + [13095,0.315], + [13097,0.161], + [13099,0.06], + [13101,0.038], + [13103,0.068], + [13105,0.08], + [13107,0.075], + [13109,0.045], + [13111,0.049], + [13113,0.085], + [13115,0.164], + [13117,0.038], + [13119,0.078], + [13121,0.441], + [13123,0.055], + [13125,0.038], + [13127,0.201], + [13129,0.139], + [13131,0.048], + [13133,0.07], + [13135,0.205], + [13137,0.077], + [13139,0.141], + [13141,0.045], + [13143,0.082], + [13145,0.03], + [13147,0.042], + [13149,0.05], + [13151,0.108], + [13153,0.177], + [13155,0.035], + [13157,0.057], + [13159,0.029], + [13161,0.082], + [13163,0.105], + [13165,0.021], + [13167,0.089], + [13169,0.031], + [13171,0.111], + [13173,0.058], + [13175,0.118], + [13177,0.096], + [13179,0.232], + [13181,0.022], + [13183,0.023], + [13185,0.191], + [13187,0.064], + [13189,0.095], + [13191,0.038], + [13193,0.093], + [13195,0.029], + [13197,0.096], + [13199,0.054], + [13201,0.034], + [13205,0.113], + [13207,0.047], + [13209,0.067], + [13211,0.039], + [13213,0.073], + [13215,0.29], + [13217,0.087], + [13219,0.061], + [13221,0.018], + [13223,0.075], + [13225,0.15], + [13227,0.072], + [13229,0.053], + [13231,0.029], + [13233,0.114], + [13235,0.077], + [13237,0.038], + [13239,0.027], + [13241,0.088], + [13243,0.043], + [13245,0.255], + [13247,0.208], + [13249,0.078], + [13251,0.07], + [13253,0.028], + [13255,0.158], + [13257,0.083], + [13259,0.048], + [13261,0.196], + [13263,0.058], + [13265,0.047], + [13267,0.058], + [13269,0.065], + [13271,0.089], + [13273,0.116], + [13275,0.118], + [13277,0.151], + [13279,0.134], + [13281,0.023], + [13283,0.058], + [13285,0.151], + [13287,0.195], + [13289,0.025], + [13291,0.043], + [13293,0.095], + [13295,0.09], + [13297,0.087], + [13299,0.138], + [13301,0.093], + [13303,0.057], + [13305,0.069], + [13307,0.037], + [13309,0.068], + [13311,0.056], + [13313,0.191], + [13315,0.039], + [13317,0.064], + [13319,0.022], + [13321,0.069], + [15001,0.209], + [15003,0.45], + [15005,0.223], + [15007,0.251], + [15009,0.389], + [16001,0.18], + [16003,0.031], + [16005,0.195], + [16007,0.075], + [16009,0.058], + [16011,0.096], + [16013,0.299], + [16015,0.013], + [16017,0.101], + [16019,0.174], + [16021,0.057], + [16023,0.119], + [16025,0], + [16027,0.119], + [16029,0.106], + [16031,0.088], + [16033,0.061], + [16035,0.066], + [16037,0.047], + [16039,0.093], + [16041,0.043], + [16043,0.034], + [16045,0.061], + [16047,0.057], + [16049,0.046], + [16051,0.045], + [16053,0.094], + [16055,0.15], + [16057,0.349], + [16059,0.076], + [16061,0.055], + [16063,0.021], + [16065,0.422], + [16067,0.091], + [16069,0.177], + [16071,0.036], + [16073,0.051], + [16075,0.087], + [16077,0.051], + [16079,0.115], + [16081,0.167], + [16083,0.155], + [16085,0.099], + [16087,0.067], + [17001,0.166], + [17003,0.139], + [17005,0.08], + [17007,0.121], + [17009,0.115], + [17011,0.122], + [17013,0.062], + [17015,0.117], + [17017,0.115], + [17019,0.352], + [17021,0.101], + [17023,0.062], + [17025,0.102], + [17027,0.077], + [17029,0.232], + [17031,0.54], + [17033,0.095], + [17035,0.049], + [17037,0.28], + [17039,0.129], + [17041,0.112], + [17043,0.282], + [17045,0.076], + [17047,0.059], + [17049,0.124], + [17051,0.08], + [17053,0.079], + [17055,0.081], + [17057,0.101], + [17059,0.073], + [17061,0.088], + [17063,0.142], + [17065,0.059], + [17067,0.087], + [17069,0.088], + [17071,0.042], + [17073,0.119], + [17075,0.098], + [17077,0.312], + [17079,0.08], + [17081,0.122], + [17083,0.092], + [17085,0.096], + [17087,0.068], + [17089,0.205], + [17091,0.181], + [17093,0.088], + [17095,0.168], + [17097,0.194], + [17099,0.129], + [17101,0.088], + [17103,0.158], + [17105,0.145], + [17107,0.128], + [17109,0.253], + [17111,0.117], + [17113,0.287], + [17115,0.168], + [17117,0.085], + [17119,0.168], + [17121,0.106], + [17123,0.076], + [17125,0.062], + [17127,0.081], + [17129,0.076], + [17131,0.082], + [17133,0.115], + [17135,0.078], + [17137,0.179], + [17139,0.079], + [17141,0.135], + [17143,0.233], + [17145,0.083], + [17147,0.075], + [17149,0.072], + [17151,0.068], + [17153,0.117], + [17155,0.083], + [17157,0.097], + [17159,0.09], + [17161,0.213], + [17163,0.206], + [17165,0.109], + [17167,0.203], + [17169,0.058], + [17171,0.079], + [17173,0.064], + [17175,0.093], + [17177,0.19], + [17179,0.142], + [17181,0.095], + [17183,0.145], + [17185,0.078], + [17187,0.118], + [17189,0.045], + [17191,0.077], + [17193,0.079], + [17195,0.144], + [17197,0.123], + [17199,0.168], + [17201,0.257], + [17203,0.089], + [18001,0.13], + [18003,0.214], + [18005,0.151], + [18007,0.08], + [18009,0.126], + [18011,0.122], + [18013,0.031], + [18015,0.074], + [18017,0.126], + [18019,0.195], + [18021,0.06], + [18023,0.124], + [18025,0.033], + [18027,0.069], + [18029,0.129], + [18031,0.127], + [18033,0.128], + [18035,0.199], + [18037,0.106], + [18039,0.197], + [18041,0.146], + [18043,0.172], + [18045,0.076], + [18047,0.055], + [18049,0.088], + [18051,0.103], + [18053,0.162], + [18055,0.058], + [18057,0.15], + [18059,0.125], + [18061,0.066], + [18063,0.118], + [18065,0.127], + [18067,0.176], + [18069,0.104], + [18071,0.128], + [18073,0.104], + [18075,0.092], + [18077,0.143], + [18079,0.078], + [18081,0.158], + [18083,0.151], + [18085,0.111], + [18087,0.067], + [18089,0.226], + [18091,0.165], + [18093,0.092], + [18095,0.145], + [18097,0.314], + [18099,0.117], + [18101,0.05], + [18103,0.109], + [18105,0.347], + [18107,0.156], + [18109,0.084], + [18111,0.051], + [18113,0.136], + [18115,0.122], + [18117,0.063], + [18119,0.038], + [18121,0.041], + [18123,0.093], + [18125,0.042], + [18127,0.161], + [18129,0.067], + [18131,0.065], + [18133,0.076], + [18135,0.072], + [18137,0.101], + [18139,0.112], + [18141,0.195], + [18143,0.097], + [18145,0.145], + [18147,0.066], + [18149,0.052], + [18151,0.092], + [18153,0.081], + [18155,0.064], + [18157,0.325], + [18159,0.078], + [18161,0.08], + [18163,0.259], + [18165,0.069], + [18167,0.205], + [18169,0.126], + [18171,0.056], + [18173,0.107], + [18175,0.068], + [18177,0.179], + [18179,0.121], + [18181,0.07], + [18183,0.098], + [19001,0.096], + [19003,0.08], + [19005,0.107], + [19007,0.102], + [19009,0.072], + [19011,0.083], + [19013,0.228], + [19015,0.16], + [19017,0.114], + [19019,0.089], + [19021,0.147], + [19023,0.064], + [19025,0.074], + [19027,0.17], + [19029,0.137], + [19031,0.087], + [19033,0.178], + [19035,0.12], + [19037,0.082], + [19039,0.107], + [19041,0.192], + [19043,0.118], + [19045,0.175], + [19047,0.118], + [19049,0.199], + [19051,0.082], + [19053,0.116], + [19055,0.094], + [19057,0.176], + [19059,0.138], + [19061,0.219], + [19063,0.103], + [19065,0.103], + [19067,0.134], + [19069,0.118], + [19071,0.055], + [19073,0.076], + [19075,0.089], + [19077,0.08], + [19079,0.147], + [19081,0.094], + [19083,0.138], + [19085,0.096], + [19087,0.147], + [19089,0.07], + [19091,0.131], + [19093,0.105], + [19095,0.113], + [19097,0.115], + [19099,0.164], + [19101,0.16], + [19103,0.358], + [19105,0.103], + [19107,0.068], + [19109,0.099], + [19111,0.157], + [19113,0.244], + [19115,0.064], + [19117,0.112], + [19119,0.055], + [19121,0.104], + [19123,0.126], + [19125,0.14], + [19127,0.168], + [19129,0.085], + [19131,0.068], + [19133,0.108], + [19135,0.073], + [19137,0.127], + [19139,0.144], + [19141,0.117], + [19143,0.056], + [19145,0.133], + [19147,0.145], + [19149,0.108], + [19151,0.074], + [19153,0.245], + [19155,0.195], + [19157,0.155], + [19159,0.067], + [19161,0.087], + [19163,0.238], + [19165,0.116], + [19167,0.102], + [19169,0.381], + [19171,0.087], + [19173,0.062], + [19175,0.144], + [19177,0.074], + [19179,0.139], + [19181,0.142], + [19183,0.127], + [19185,0.077], + [19187,0.188], + [19189,0.173], + [19191,0.135], + [19193,0.188], + [19195,0.095], + [19197,0.14], + [20001,0.072], + [20003,0.036], + [20005,0.144], + [20007,0.089], + [20009,0.081], + [20011,0.09], + [20013,0.126], + [20015,0.086], + [20017,0.036], + [20019,0.028], + [20021,0.054], + [20023,0.045], + [20025,0.048], + [20027,0.12], + [20029,0.078], + [20031,0.054], + [20033,0.061], + [20035,0.108], + [20037,0.135], + [20039,0.067], + [20041,0.086], + [20043,0.069], + [20045,0.32], + [20047,0.065], + [20049,0.078], + [20051,0.252], + [20053,0.065], + [20055,0.174], + [20057,0.186], + [20059,0.098], + [20061,0.278], + [20063,0.047], + [20065,0.054], + [20067,0.053], + [20069,0.038], + [20071,0.008], + [20073,0.031], + [20075,0.091], + [20077,0.08], + [20079,0.132], + [20081,0.056], + [20083,0.059], + [20085,0.064], + [20087,0.043], + [20089,0.048], + [20091,0.227], + [20093,0.051], + [20095,0.027], + [20097,0.075], + [20099,0.097], + [20101,0.048], + [20103,0.132], + [20105,0.048], + [20107,0.031], + [20109,0.069], + [20111,0.233], + [20113,0.109], + [20115,0.084], + [20117,0.07], + [20119,0.046], + [20121,0.089], + [20123,0.072], + [20125,0.121], + [20127,0.074], + [20129,0.062], + [20131,0.099], + [20133,0.075], + [20135,0.043], + [20137,0.1], + [20139,0.07], + [20141,0.064], + [20143,0.069], + [20145,0.053], + [20147,0.043], + [20149,0.071], + [20151,0.079], + [20153,0.051], + [20155,0.13], + [20157,0.055], + [20159,0.06], + [20161,0.38], + [20163,0.049], + [20165,0.033], + [20167,0.112], + [20169,0.174], + [20171,0.043], + [20173,0.212], + [20175,0.155], + [20177,0.214], + [20179,0.042], + [20181,0.089], + [20183,0.042], + [20185,0.05], + [20187,0.029], + [20189,0.061], + [20191,0.068], + [20193,0.183], + [20195,0.081], + [20197,0.041], + [20199,0.021], + [20201,0.058], + [20203,0.062], + [20205,0.086], + [20207,0.061], + [20209,0.194], + [21001,0.061], + [21003,0.064], + [21005,0.107], + [21007,0.059], + [21009,0.131], + [21011,0.068], + [21013,0.14], + [21015,0.222], + [21017,0.161], + [21019,0.139], + [21021,0.189], + [21023,0.063], + [21025,0.054], + [21027,0.059], + [21029,0.1], + [21031,0.068], + [21033,0.07], + [21035,0.206], + [21037,0.288], + [21039,0.043], + [21041,0.148], + [21043,0.055], + [21045,0.019], + [21047,0.217], + [21049,0.205], + [21051,0.052], + [21053,0.084], + [21055,0.048], + [21057,0.069], + [21059,0.189], + [21061,0.038], + [21063,0.061], + [21065,0.084], + [21067,0.335], + [21069,0.044], + [21071,0.088], + [21073,0.255], + [21075,0.183], + [21077,0.113], + [21079,0.078], + [21081,0.157], + [21083,0.092], + [21085,0.072], + [21087,0.05], + [21089,0.068], + [21091,0.083], + [21093,0.199], + [21095,0.089], + [21097,0.154], + [21099,0.087], + [21101,0.185], + [21103,0.072], + [21105,0.052], + [21107,0.096], + [21109,0.065], + [21111,0.29], + [21113,0.149], + [21115,0.106], + [21117,0.266], + [21119,0.03], + [21121,0.108], + [21123,0.09], + [21125,0.099], + [21127,0.055], + [21129,0.084], + [21131,0.03], + [21133,0.044], + [21135,0.047], + [21137,0.059], + [21139,0.021], + [21141,0.088], + [21143,0.101], + [21145,0.179], + [21147,0.083], + [21149,0.057], + [21151,0.276], + [21153,0.039], + [21155,0.065], + [21157,0.072], + [21159,0.082], + [21161,0.161], + [21163,0.196], + [21165,0.036], + [21167,0.128], + [21169,0.041], + [21171,0.069], + [21173,0.139], + [21175,0.072], + [21177,0.069], + [21179,0.101], + [21181,0.095], + [21183,0.069], + [21185,0.079], + [21187,0.073], + [21189,0.053], + [21191,0.082], + [21193,0.098], + [21195,0.085], + [21197,0.084], + [21199,0.116], + [21201,0.074], + [21203,0.045], + [21205,0.114], + [21207,0.054], + [21209,0.156], + [21211,0.145], + [21213,0.118], + [21215,0.057], + [21217,0.146], + [21219,0.049], + [21221,0.062], + [21223,0.075], + [21225,0.064], + [21227,0.25], + [21229,0.052], + [21231,0.098], + [21233,0.056], + [21235,0.093], + [21237,0.063], + [21239,0.121], + [22001,0.071], + [22003,0.083], + [22005,0.057], + [22007,0.03], + [22009,0.094], + [22011,0.069], + [22013,0.081], + [22015,0.172], + [22017,0.199], + [22019,0.135], + [22021,0.044], + [22023,0.003], + [22025,0.026], + [22027,0.039], + [22029,0.055], + [22031,0.078], + [22033,0.291], + [22035,0.089], + [22037,0.046], + [22039,0.068], + [22041,0.04], + [22043,0.027], + [22045,0.102], + [22047,0.064], + [22049,0.081], + [22051,0.289], + [22053,0.051], + [22055,0.227], + [22057,0.091], + [22059,0.05], + [22061,0.244], + [22063,0.051], + [22065,0.138], + [22067,0.079], + [22069,0.169], + [22071,0.409], + [22073,0.173], + [22075,0.17], + [22077,0.032], + [22079,0.144], + [22081,0.05], + [22083,0.07], + [22085,0.056], + [22087,0.162], + [22089,0.102], + [22091,0.023], + [22093,0.076], + [22095,0.088], + [22097,0.093], + [22099,0.05], + [22101,0.115], + [22103,0.11], + [22105,0.137], + [22107,0.036], + [22109,0.112], + [22111,0.057], + [22113,0.05], + [22115,0.248], + [22117,0.065], + [22119,0.096], + [22121,0.084], + [22123,0.032], + [22125,0.087], + [22127,0.061], + [23001,0.306], + [23003,0.175], + [23005,0.269], + [23007,0.147], + [23009,0.082], + [23011,0.224], + [23013,0.133], + [23015,0.065], + [23017,0.148], + [23019,0.211], + [23021,0.087], + [23023,0.145], + [23025,0.111], + [23027,0.091], + [23029,0.08], + [23031,0.224], + [24001,0.201], + [24003,0.173], + [24005,0.282], + [24009,0.058], + [24011,0.094], + [24013,0.119], + [24015,0.123], + [24017,0.098], + [24019,0.137], + [24021,0.167], + [24023,0.087], + [24025,0.159], + [24027,0.248], + [24029,0.126], + [24031,0.325], + [24033,0.329], + [24035,0.062], + [24037,0.136], + [24039,0.13], + [24041,0.121], + [24043,0.21], + [24045,0.2], + [24047,0.472], + [24510,0.331], + [25001,0.131], + [25003,0.307], + [25005,0.421], + [25007,0.045], + [25009,0.427], + [25011,0.279], + [25013,0.391], + [25015,0.335], + [25017,0.447], + [25019,0.085], + [25021,0.369], + [25023,0.229], + [25025,0.807], + [25027,0.369], + [26001,0.011], + [26003,0.079], + [26005,0.088], + [26007,0.106], + [26009,0.058], + [26011,0.054], + [26013,0.096], + [26015,0.063], + [26017,0.148], + [26019,0.051], + [26021,0.176], + [26023,0.083], + [26025,0.194], + [26027,0.057], + [26029,0.108], + [26031,0.062], + [26033,0.121], + [26035,0.051], + [26037,0.122], + [26039,0.037], + [26041,0.12], + [26043,0.099], + [26045,0.196], + [26047,0.187], + [26049,0.165], + [26051,0.038], + [26053,0.12], + [26055,0.148], + [26057,0.116], + [26059,0.095], + [26061,0.158], + [26063,0.076], + [26065,0.293], + [26067,0.129], + [26069,0.063], + [26071,0.068], + [26073,0.304], + [26075,0.163], + [26077,0.279], + [26079,0.026], + [26081,0.244], + [26083,0.039], + [26085,0.022], + [26087,0.084], + [26089,0.091], + [26091,0.122], + [26093,0.083], + [26095,0.056], + [26097,0.078], + [26099,0.178], + [26101,0.083], + [26103,0.204], + [26105,0.112], + [26107,0.108], + [26109,0.092], + [26111,0.148], + [26113,0.03], + [26115,0.136], + [26117,0.075], + [26119,0.016], + [26121,0.143], + [26123,0.054], + [26125,0.224], + [26127,0.045], + [26129,0.031], + [26131,0.061], + [26133,0.051], + [26135,0.022], + [26137,0.066], + [26139,0.174], + [26141,0.039], + [26143,0.036], + [26145,0.167], + [26147,0.134], + [26149,0.111], + [26151,0.066], + [26153,0.046], + [26155,0.121], + [26157,0.082], + [26159,0.113], + [26161,0.336], + [26163,0.234], + [26165,0.094], + [27001,0.049], + [27003,0.135], + [27005,0.102], + [27007,0.137], + [27009,0.255], + [27011,0.106], + [27013,0.278], + [27015,0.144], + [27017,0.102], + [27019,0.132], + [27021,0.038], + [27023,0.15], + [27025,0.074], + [27027,0.238], + [27029,0.079], + [27031,0.076], + [27033,0.115], + [27035,0.109], + [27037,0.207], + [27039,0.085], + [27041,0.143], + [27043,0.114], + [27045,0.102], + [27047,0.135], + [27049,0.172], + [27051,0.119], + [27053,0.364], + [27055,0.112], + [27057,0.053], + [27059,0.116], + [27061,0.08], + [27063,0.108], + [27065,0.095], + [27067,0.166], + [27069,0.084], + [27071,0.124], + [27073,0.088], + [27075,0.075], + [27077,0.03], + [27079,0.112], + [27081,0.092], + [27083,0.245], + [27085,0.159], + [27087,0.092], + [27089,0.105], + [27091,0.167], + [27093,0.104], + [27095,0.128], + [27097,0.091], + [27099,0.162], + [27101,0.074], + [27103,0.194], + [27105,0.163], + [27107,0.097], + [27109,0.215], + [27111,0.106], + [27113,0.176], + [27115,0.064], + [27117,0.127], + [27119,0.182], + [27121,0.112], + [27123,0.376], + [27125,0.109], + [27127,0.122], + [27129,0.114], + [27131,0.183], + [27133,0.154], + [27135,0.102], + [27137,0.195], + [27139,0.093], + [27141,0.109], + [27143,0.105], + [27145,0.226], + [27147,0.154], + [27149,0.192], + [27151,0.159], + [27153,0.063], + [27155,0.1], + [27157,0.104], + [27159,0.111], + [27161,0.145], + [27163,0.131], + [27165,0.158], + [27167,0.134], + [27169,0.226], + [27171,0.083], + [27173,0.09], + [28001,0.136], + [28003,0.117], + [28005,0.02], + [28007,0.061], + [28009,0.015], + [28011,0.211], + [28013,0.047], + [28015,0.032], + [28017,0.094], + [28019,0.067], + [28021,0.032], + [28023,0.03], + [28025,0.087], + [28027,0.201], + [28029,0.052], + [28031,0.04], + [28033,0.118], + [28035,0.256], + [28037,0.024], + [28039,0.022], + [28041,0.047], + [28043,0.124], + [28045,0.087], + [28047,0.201], + [28049,0.236], + [28051,0.075], + [28053,0.127], + [28055,0.151], + [28057,0.038], + [28059,0.122], + [28061,0.024], + [28063,0.076], + [28065,0.069], + [28067,0.099], + [28069,0.087], + [28071,0.245], + [28073,0.203], + [28075,0.194], + [28077,0.034], + [28079,0.036], + [28081,0.156], + [28083,0.211], + [28085,0.075], + [28087,0.159], + [28089,0.196], + [28091,0.042], + [28093,0.057], + [28095,0.07], + [28097,0.047], + [28099,0.065], + [28101,0.036], + [28103,0.043], + [28105,0.337], + [28107,0.056], + [28109,0.069], + [28111,0.047], + [28113,0.116], + [28115,0.035], + [28117,0.114], + [28119,0.107], + [28121,0.128], + [28123,0.045], + [28125,0.071], + [28127,0.072], + [28129,0.014], + [28131,0.041], + [28133,0.156], + [28135,0.047], + [28137,0.064], + [28139,0.038], + [28141,0.061], + [28143,0.315], + [28145,0.055], + [28147,0.025], + [28149,0.176], + [28151,0.194], + [28153,0.039], + [28155,0.092], + [28157,0.037], + [28159,0.061], + [28161,0.065], + [28163,0.129], + [29001,0.243], + [29003,0.099], + [29005,0.12], + [29007,0.092], + [29009,0.075], + [29011,0.068], + [29013,0.076], + [29015,0.032], + [29017,0.039], + [29019,0.306], + [29021,0.181], + [29023,0.13], + [29025,0.07], + [29027,0.109], + [29029,0.255], + [29031,0.2], + [29033,0.07], + [29035,0.031], + [29037,0.107], + [29039,0.056], + [29041,0.063], + [29043,0.122], + [29045,0.082], + [29047,0.176], + [29049,0.107], + [29051,0.233], + [29053,0.131], + [29055,0.068], + [29057,0.052], + [29059,0.035], + [29061,0.074], + [29063,0.179], + [29065,0.073], + [29067,0.055], + [29069,0.104], + [29071,0.109], + [29073,0.072], + [29075,0.096], + [29077,0.223], + [29079,0.105], + [29081,0.076], + [29083,0.108], + [29085,0.017], + [29087,0.081], + [29089,0.091], + [29091,0.097], + [29093,0.075], + [29095,0.256], + [29097,0.155], + [29099,0.092], + [29101,0.209], + [29103,0.051], + [29105,0.111], + [29107,0.122], + [29109,0.088], + [29111,0.093], + [29113,0.055], + [29115,0.055], + [29117,0.133], + [29119,0.072], + [29121,0.087], + [29123,0.076], + [29125,0.049], + [29127,0.188], + [29129,0.105], + [29131,0.126], + [29133,0.115], + [29135,0.077], + [29137,0.07], + [29139,0.084], + [29141,0.035], + [29143,0.152], + [29145,0.072], + [29147,0.222], + [29149,0.048], + [29151,0.061], + [29153,0.032], + [29155,0.175], + [29157,0.073], + [29159,0.144], + [29161,0.192], + [29163,0.124], + [29165,0.271], + [29167,0.079], + [29169,0.204], + [29171,0.056], + [29173,0.071], + [29175,0.108], + [29177,0.091], + [29179,0.039], + [29181,0.036], + [29183,0.152], + [29185,0.047], + [29186,0.059], + [29187,0.128], + [29189,0.232], + [29195,0.129], + [29197,0.097], + [29199,0.095], + [29201,0.126], + [29203,0.043], + [29205,0.092], + [29207,0.088], + [29209,0.091], + [29211,0.104], + [29213,0.27], + [29215,0.066], + [29217,0.111], + [29219,0.078], + [29221,0.05], + [29223,0.042], + [29225,0.064], + [29227,0.084], + [29229,0.066], + [29510,0.535], + [30001,0.078], + [30003,0.099], + [30005,0.1], + [30007,0.043], + [30009,0.049], + [30011,0.025], + [30013,0.233], + [30015,0.051], + [30017,0.112], + [30019,0.048], + [30021,0.106], + [30023,0.112], + [30025,0.051], + [30027,0.137], + [30029,0.138], + [30031,0.253], + [30033,0.028], + [30035,0.139], + [30037,0], + [30039,0.045], + [30041,0.152], + [30043,0.03], + [30045,0.043], + [30047,0.088], + [30049,0.185], + [30051,0.165], + [30053,0.063], + [30055,0.059], + [30057,0.181], + [30059,0.041], + [30061,0.042], + [30063,0.267], + [30065,0.05], + [30067,0.111], + [30069,0.027], + [30071,0.049], + [30073,0.13], + [30075,0.042], + [30077,0.082], + [30079,0.063], + [30081,0.069], + [30083,0.157], + [30085,0.068], + [30087,0.135], + [30089,0.051], + [30091,0.118], + [30093,0.219], + [30095,0.039], + [30097,0.053], + [30099,0.077], + [30101,0.132], + [30103,0.007], + [30105,0.237], + [30107,0.066], + [30109,0.082], + [30111,0.194], + [31001,0.179], + [31003,0.043], + [31005,0], + [31007,0.072], + [31009,0], + [31011,0.071], + [31013,0.164], + [31015,0.023], + [31017,0.085], + [31019,0.204], + [31021,0.074], + [31023,0.051], + [31025,0.063], + [31027,0.06], + [31029,0.086], + [31031,0.079], + [31033,0.147], + [31035,0.093], + [31037,0.101], + [31039,0.059], + [31041,0.081], + [31043,0.195], + [31045,0.176], + [31047,0.123], + [31049,0.029], + [31051,0.076], + [31053,0.168], + [31055,0.269], + [31057,0.076], + [31059,0.071], + [31061,0.019], + [31063,0.036], + [31065,0.087], + [31067,0.137], + [31069,0.066], + [31071,0.053], + [31073,0.016], + [31075,0.047], + [31077,0.051], + [31079,0.194], + [31081,0.115], + [31083,0.036], + [31085,0.023], + [31087,0.037], + [31089,0.056], + [31091,0.029], + [31093,0.054], + [31095,0.066], + [31097,0.099], + [31099,0.064], + [31101,0.089], + [31103,0.032], + [31105,0.086], + [31107,0.06], + [31109,0.303], + [31111,0.148], + [31113,0], + [31115,0], + [31117,0.067], + [31119,0.206], + [31121,0.05], + [31123,0.051], + [31125,0.08], + [31127,0.139], + [31129,0.057], + [31131,0.099], + [31133,0.042], + [31135,0.062], + [31137,0.126], + [31139,0.05], + [31141,0.155], + [31143,0.059], + [31145,0.124], + [31147,0.07], + [31149,0.034], + [31151,0.144], + [31153,0.184], + [31155,0.079], + [31157,0.162], + [31159,0.135], + [31161,0.046], + [31163,0.03], + [31165,0], + [31167,0.048], + [31169,0.055], + [31171,0.01], + [31173,0.078], + [31175,0.107], + [31177,0.12], + [31179,0.126], + [31181,0.058], + [31183,0.015], + [31185,0.13], + [32001,0.169], + [32003,0.323], + [32005,0.114], + [32007,0.159], + [32009,0.17], + [32011,0.067], + [32013,0.094], + [32015,0.044], + [32017,0.048], + [32019,0.095], + [32021,0.122], + [32023,0.091], + [32027,0.104], + [32029,0.012], + [32031,0.29], + [32033,0.06], + [32510,0.251], + [33001,0.174], + [33003,0.167], + [33005,0.226], + [33007,0.222], + [33009,0.219], + [33011,0.342], + [33013,0.253], + [33015,0.221], + [33017,0.294], + [33019,0.208], + [34001,0.318], + [34003,0.408], + [34005,0.183], + [34007,0.257], + [34009,0.285], + [34011,0.204], + [34013,0.605], + [34015,0.177], + [34017,0.837], + [34019,0.143], + [34021,0.3], + [34023,0.345], + [34025,0.251], + [34027,0.25], + [34029,0.13], + [34031,0.532], + [34033,0.179], + [34035,0.256], + [34037,0.137], + [34039,0.436], + [34041,0.198], + [35001,0.246], + [35003,0.002], + [35005,0.097], + [35006,0.08], + [35007,0.108], + [35009,0.147], + [35011,0.062], + [35013,0.18], + [35015,0.103], + [35017,0.077], + [35019,0.062], + [35021,0.014], + [35023,0.054], + [35025,0.093], + [35027,0.104], + [35028,0.215], + [35029,0.09], + [35031,0.073], + [35033,0.008], + [35035,0.089], + [35037,0.06], + [35039,0.034], + [35041,0.115], + [35043,0.063], + [35045,0.081], + [35047,0.082], + [35049,0.169], + [35051,0.062], + [35053,0.084], + [35055,0.125], + [35057,0.023], + [35059,0.016], + [35061,0.053], + [36001,0.437], + [36003,0.117], + [36005,0.891], + [36007,0.318], + [36009,0.168], + [36011,0.222], + [36013,0.252], + [36015,0.258], + [36017,0.145], + [36019,0.209], + [36021,0.168], + [36023,0.3], + [36025,0.125], + [36027,0.286], + [36029,0.383], + [36031,0.148], + [36033,0.165], + [36035,0.25], + [36037,0.219], + [36039,0.172], + [36041,0.038], + [36043,0.215], + [36045,0.294], + [36047,0.857], + [36049,0.1], + [36051,0.172], + [36053,0.166], + [36055,0.308], + [36057,0.335], + [36059,0.209], + [36061,0.985], + [36063,0.276], + [36065,0.312], + [36067,0.331], + [36069,0.203], + [36071,0.284], + [36073,0.16], + [36075,0.171], + [36077,0.173], + [36079,0.15], + [36081,0.714], + [36083,0.37], + [36085,0.404], + [36087,0.316], + [36089,0.171], + [36091,0.237], + [36093,0.376], + [36095,0.136], + [36097,0.085], + [36099,0.142], + [36101,0.176], + [36103,0.143], + [36105,0.174], + [36107,0.135], + [36109,0.383], + [36111,0.217], + [36113,0.221], + [36115,0.173], + [36117,0.179], + [36119,0.494], + [36121,0.154], + [36123,0.113], + [37001,0.171], + [37003,0.022], + [37005,0.062], + [37007,0.049], + [37009,0.044], + [37011,0.181], + [37013,0.092], + [37015,0.022], + [37017,0.055], + [37019,0.093], + [37021,0.168], + [37023,0.091], + [37025,0.129], + [37027,0.094], + [37029,0.013], + [37031,0.179], + [37033,0.034], + [37035,0.16], + [37037,0.071], + [37039,0.043], + [37041,0.102], + [37043,0.042], + [37045,0.104], + [37047,0.058], + [37049,0.158], + [37051,0.202], + [37053,0.018], + [37055,0.1], + [37057,0.104], + [37059,0.05], + [37061,0.058], + [37063,0.35], + [37065,0.14], + [37067,0.255], + [37069,0.032], + [37071,0.123], + [37073,0], + [37075,0.055], + [37077,0.09], + [37079,0.034], + [37081,0.271], + [37083,0.092], + [37085,0.081], + [37087,0.067], + [37089,0.093], + [37091,0.098], + [37093,0.052], + [37095,0.055], + [37097,0.11], + [37099,0.105], + [37101,0.066], + [37103,0.032], + [37105,0.148], + [37107,0.149], + [37109,0.084], + [37111,0.07], + [37113,0.069], + [37115,0.059], + [37117,0.071], + [37119,0.303], + [37121,0.086], + [37123,0.042], + [37125,0.112], + [37127,0.147], + [37129,0.267], + [37131,0.04], + [37133,0.123], + [37135,0.294], + [37137,0.02], + [37139,0.154], + [37141,0.063], + [37143,0.037], + [37145,0.058], + [37147,0.348], + [37149,0.101], + [37151,0.101], + [37153,0.084], + [37155,0.086], + [37157,0.096], + [37159,0.113], + [37161,0.071], + [37163,0.057], + [37165,0.121], + [37167,0.073], + [37169,0.044], + [37171,0.075], + [37173,0.072], + [37175,0.057], + [37177,0.09], + [37179,0.064], + [37181,0.096], + [37183,0.267], + [37185,0.033], + [37187,0.069], + [37189,0.281], + [37191,0.121], + [37193,0.076], + [37195,0.2], + [37197,0.036], + [37199,0.081], + [38001,0.208], + [38003,0.249], + [38005,0.132], + [38007,0.088], + [38009,0.065], + [38011,0.062], + [38013,0.055], + [38015,0.302], + [38017,0.442], + [38019,0.113], + [38021,0.183], + [38023,0.073], + [38025,0.045], + [38027,0.105], + [38029,0.069], + [38031,0.157], + [38033,0.099], + [38035,0.393], + [38037,0.073], + [38039,0.09], + [38041,0.078], + [38043,0.063], + [38045,0.096], + [38047,0.057], + [38049,0.079], + [38051,0.057], + [38053,0.074], + [38055,0.08], + [38057,0.166], + [38059,0.171], + [38061,0.077], + [38063,0.097], + [38065,0.031], + [38067,0.129], + [38069,0.164], + [38071,0.303], + [38073,0.14], + [38075,0.087], + [38077,0.232], + [38079,0.092], + [38081,0.102], + [38083,0.044], + [38085,0.113], + [38087,0.032], + [38089,0.219], + [38091,0.061], + [38093,0.243], + [38095,0.145], + [38097,0.173], + [38099,0.152], + [38101,0.251], + [38103,0.098], + [38105,0.187], + [39001,0.059], + [39003,0.176], + [39005,0.12], + [39007,0.151], + [39009,0.236], + [39011,0.12], + [39013,0.156], + [39015,0.081], + [39017,0.219], + [39019,0.056], + [39021,0.147], + [39023,0.187], + [39025,0.189], + [39027,0.167], + [39029,0.132], + [39031,0.104], + [39033,0.15], + [39035,0.353], + [39037,0.106], + [39039,0.111], + [39041,0.132], + [39043,0.202], + [39045,0.148], + [39047,0.167], + [39049,0.345], + [39051,0.124], + [39053,0.085], + [39055,0.061], + [39057,0.216], + [39059,0.119], + [39061,0.374], + [39063,0.214], + [39065,0.165], + [39067,0.072], + [39069,0.112], + [39071,0.098], + [39073,0.087], + [39075,0.057], + [39077,0.162], + [39079,0.115], + [39081,0.149], + [39083,0.135], + [39085,0.183], + [39087,0.094], + [39089,0.169], + [39091,0.129], + [39093,0.175], + [39095,0.264], + [39097,0.152], + [39099,0.19], + [39101,0.169], + [39103,0.134], + [39105,0.059], + [39107,0.122], + [39109,0.177], + [39111,0.048], + [39113,0.267], + [39115,0.051], + [39117,0.062], + [39119,0.171], + [39121,0.045], + [39123,0.126], + [39125,0.089], + [39127,0.085], + [39129,0.101], + [39131,0.084], + [39133,0.221], + [39135,0.086], + [39137,0.084], + [39139,0.189], + [39141,0.121], + [39143,0.153], + [39145,0.147], + [39147,0.131], + [39149,0.151], + [39151,0.185], + [39153,0.225], + [39155,0.17], + [39157,0.139], + [39159,0.143], + [39161,0.08], + [39163,0.049], + [39165,0.153], + [39167,0.138], + [39169,0.161], + [39171,0.142], + [39173,0.237], + [39175,0.136], + [40001,0.062], + [40003,0.017], + [40005,0.038], + [40007,0.039], + [40009,0.136], + [40011,0.067], + [40013,0.106], + [40015,0.071], + [40017,0.11], + [40019,0.082], + [40021,0.146], + [40023,0.082], + [40025,0.048], + [40027,0.198], + [40029,0.052], + [40031,0.185], + [40033,0.048], + [40035,0.052], + [40037,0.076], + [40039,0.15], + [40041,0.045], + [40043,0.022], + [40045,0.011], + [40047,0.108], + [40049,0.068], + [40051,0.074], + [40053,0.027], + [40055,0.078], + [40057,0.028], + [40059,0.043], + [40061,0.039], + [40063,0.03], + [40065,0.122], + [40067,0.073], + [40069,0.061], + [40071,0.105], + [40073,0.037], + [40075,0.074], + [40077,0.033], + [40079,0.043], + [40081,0.035], + [40083,0.04], + [40085,0.031], + [40087,0.028], + [40089,0.055], + [40091,0.033], + [40093,0.042], + [40095,0.03], + [40097,0.065], + [40099,0.047], + [40101,0.134], + [40103,0.033], + [40105,0.065], + [40107,0.061], + [40109,0.244], + [40111,0.084], + [40113,0.064], + [40115,0.084], + [40117,0.033], + [40119,0.252], + [40121,0.07], + [40123,0.121], + [40125,0.098], + [40127,0.055], + [40129,0.021], + [40131,0.066], + [40133,0.078], + [40135,0.066], + [40137,0.071], + [40139,0.101], + [40141,0.064], + [40143,0.255], + [40145,0.046], + [40147,0.115], + [40149,0.037], + [40151,0.115], + [40153,0.094], + [41001,0.11], + [41003,0.3], + [41005,0.213], + [41007,0.227], + [41009,0.106], + [41011,0.129], + [41013,0.072], + [41015,0.104], + [41017,0.149], + [41019,0.121], + [41021,0.063], + [41023,0.053], + [41025,0.076], + [41027,0.14], + [41029,0.173], + [41031,0.112], + [41033,0.112], + [41035,0.122], + [41037,0.049], + [41039,0.231], + [41041,0.162], + [41043,0.168], + [41045,0.146], + [41047,0.247], + [41049,0.11], + [41051,0.363], + [41053,0.191], + [41055,0.041], + [41057,0.089], + [41059,0.181], + [41061,0.175], + [41063,0.064], + [41065,0.143], + [41067,0.312], + [41069,0.003], + [41071,0.169], + [42001,0.098], + [42003,0.273], + [42005,0.102], + [42007,0.173], + [42009,0.079], + [42011,0.184], + [42013,0.176], + [42015,0.118], + [42017,0.193], + [42019,0.14], + [42021,0.161], + [42023,0.086], + [42025,0.088], + [42027,0.296], + [42029,0.184], + [42031,0.132], + [42033,0.107], + [42035,0.161], + [42037,0.168], + [42039,0.128], + [42041,0.196], + [42043,0.246], + [42045,0.237], + [42047,0.106], + [42049,0.25], + [42051,0.132], + [42053,0.016], + [42055,0.153], + [42057,0.05], + [42059,0.1], + [42061,0.094], + [42063,0.167], + [42065,0.115], + [42067,0.074], + [42069,0.294], + [42071,0.195], + [42073,0.127], + [42075,0.178], + [42077,0.235], + [42079,0.206], + [42081,0.193], + [42083,0.109], + [42085,0.149], + [42087,0.13], + [42089,0.084], + [42091,0.241], + [42093,0.16], + [42095,0.172], + [42097,0.157], + [42099,0.086], + [42101,0.328], + [42103,0.037], + [42105,0.06], + [42107,0.126], + [42109,0.104], + [42111,0.115], + [42113,0.04], + [42115,0.089], + [42117,0.111], + [42119,0.148], + [42121,0.12], + [42123,0.113], + [42125,0.145], + [42127,0.056], + [42129,0.144], + [42131,0.092], + [42133,0.143], + [44001,0.298], + [44003,0.266], + [44005,0.296], + [44007,0.521], + [44009,0.181], + [45001,0.077], + [45003,0.096], + [45005,0.125], + [45007,0.111], + [45009,0.071], + [45011,0.072], + [45013,0.239], + [45015,0.152], + [45017,0.027], + [45019,0.297], + [45021,0.115], + [45023,0.067], + [45025,0.075], + [45027,0.049], + [45029,0.064], + [45031,0.071], + [45033,0.084], + [45035,0.155], + [45037,0.075], + [45039,0.084], + [45041,0.16], + [45043,0.167], + [45045,0.203], + [45047,0.167], + [45049,0.058], + [45051,0.354], + [45053,0.049], + [45055,0.052], + [45057,0.075], + [45059,0.067], + [45061,0.063], + [45063,0.116], + [45065,0.078], + [45067,0.082], + [45069,0.107], + [45071,0.06], + [45073,0.075], + [45075,0.085], + [45077,0.157], + [45079,0.278], + [45081,0.023], + [45083,0.133], + [45085,0.134], + [45087,0.081], + [45089,0.061], + [45091,0.157], + [46003,0.051], + [46005,0.205], + [46007,0.097], + [46009,0.091], + [46011,0.29], + [46013,0.252], + [46015,0.151], + [46017,0.112], + [46019,0.088], + [46021,0.023], + [46023,0.089], + [46025,0.096], + [46027,0.298], + [46029,0.156], + [46031,0.054], + [46033,0.073], + [46035,0.253], + [46037,0.086], + [46039,0.091], + [46041,0.073], + [46043,0.074], + [46045,0.066], + [46047,0.138], + [46049,0.105], + [46051,0.162], + [46053,0.063], + [46055,0.037], + [46057,0.05], + [46059,0.076], + [46061,0.04], + [46063,0.036], + [46065,0.223], + [46067,0.089], + [46069,0.069], + [46071,0.074], + [46073,0.119], + [46075,0.085], + [46077,0.096], + [46079,0.139], + [46081,0.218], + [46083,0.181], + [46085,0.094], + [46087,0.094], + [46089,0.098], + [46091,0.096], + [46093,0.124], + [46095,0.04], + [46097,0.059], + [46099,0.274], + [46101,0.1], + [46102,0.038], + [46103,0.215], + [46105,0.107], + [46107,0.059], + [46109,0.069], + [46111,0.071], + [46115,0.122], + [46117,0.084], + [46119,0.044], + [46121,0.149], + [46123,0.132], + [46125,0.082], + [46127,0.155], + [46129,0.124], + [46135,0.186], + [46137,0.067], + [47001,0.159], + [47003,0.088], + [47005,0.033], + [47007,0.048], + [47009,0.107], + [47011,0.172], + [47013,0.114], + [47015,0.042], + [47017,0.078], + [47019,0.128], + [47021,0.057], + [47023,0.072], + [47025,0.07], + [47027,0.049], + [47029,0.077], + [47031,0.106], + [47033,0.079], + [47035,0.097], + [47037,0.372], + [47039,0.054], + [47041,0.075], + [47043,0.11], + [47045,0.17], + [47047,0.041], + [47049,0.059], + [47051,0.086], + [47053,0.112], + [47055,0.115], + [47057,0.026], + [47059,0.078], + [47061,0.043], + [47063,0.147], + [47065,0.242], + [47067,0.074], + [47069,0.063], + [47071,0.059], + [47073,0.093], + [47075,0.149], + [47077,0.064], + [47079,0.092], + [47081,0.042], + [47083,0.058], + [47085,0.059], + [47087,0.049], + [47089,0.073], + [47091,0.058], + [47093,0.232], + [47095,0.194], + [47097,0.134], + [47099,0.074], + [47101,0.056], + [47103,0.086], + [47105,0.073], + [47107,0.118], + [47109,0.049], + [47111,0.075], + [47113,0.196], + [47115,0.051], + [47117,0.09], + [47119,0.121], + [47121,0.038], + [47123,0.071], + [47125,0.204], + [47127,0.037], + [47129,0.032], + [47131,0.14], + [47133,0.03], + [47135,0.036], + [47137,0.062], + [47139,0.04], + [47141,0.22], + [47143,0.083], + [47145,0.101], + [47147,0.088], + [47149,0.189], + [47151,0.077], + [47153,0.048], + [47155,0.172], + [47157,0.276], + [47159,0.087], + [47161,0.037], + [47163,0.128], + [47165,0.151], + [47167,0.067], + [47169,0.067], + [47171,0.077], + [47173,0.059], + [47175,0.05], + [47177,0.11], + [47179,0.212], + [47181,0.037], + [47183,0.155], + [47185,0.057], + [47187,0.121], + [47189,0.09], + [48001,0.08], + [48003,0.095], + [48005,0.112], + [48007,0.128], + [48009,0.034], + [48011,0.01], + [48013,0.053], + [48015,0.087], + [48017,0.093], + [48019,0.007], + [48021,0.053], + [48023,0.058], + [48025,0.115], + [48027,0.276], + [48029,0.266], + [48031,0.047], + [48033,0], + [48035,0.041], + [48037,0.144], + [48039,0.145], + [48041,0.384], + [48043,0.117], + [48045,0.027], + [48047,0.127], + [48049,0.102], + [48051,0.043], + [48053,0.069], + [48055,0.11], + [48057,0.101], + [48059,0.023], + [48061,0.209], + [48063,0.068], + [48065,0.013], + [48067,0.079], + [48069,0.055], + [48071,0.045], + [48073,0.074], + [48075,0.143], + [48077,0.018], + [48079,0.041], + [48081,0.045], + [48083,0.076], + [48085,0.244], + [48087,0.065], + [48089,0.081], + [48091,0.122], + [48093,0.045], + [48095,0.018], + [48097,0.078], + [48099,0.222], + [48101,0.082], + [48103,0], + [48105,0.137], + [48107,0.062], + [48109,0.084], + [48111,0.055], + [48113,0.389], + [48115,0.066], + [48117,0.123], + [48119,0.038], + [48121,0.27], + [48123,0.076], + [48125,0.035], + [48127,0.106], + [48129,0.063], + [48131,0.043], + [48133,0.071], + [48135,0.199], + [48137,0.008], + [48139,0.105], + [48141,0.235], + [48143,0.135], + [48145,0.087], + [48147,0.089], + [48149,0.071], + [48151,0.048], + [48153,0.043], + [48155,0.074], + [48157,0.102], + [48159,0.039], + [48161,0.038], + [48163,0.107], + [48165,0.063], + [48167,0.212], + [48169,0.088], + [48171,0.07], + [48173,0.006], + [48175,0.037], + [48177,0.092], + [48179,0.079], + [48181,0.146], + [48183,0.206], + [48185,0.049], + [48187,0.07], + [48189,0.121], + [48191,0.088], + [48193,0.041], + [48195,0.052], + [48197,0.093], + [48199,0.062], + [48201,0.36], + [48203,0.076], + [48205,0.03], + [48207,0.05], + [48209,0.217], + [48211,0.042], + [48213,0.06], + [48215,0.152], + [48217,0.055], + [48219,0.079], + [48221,0.068], + [48223,0.113], + [48225,0.067], + [48227,0.116], + [48229,0.049], + [48231,0.147], + [48233,0.084], + [48235,0], + [48237,0.033], + [48239,0.082], + [48241,0.062], + [48243,0.011], + [48245,0.199], + [48247,0.087], + [48249,0.091], + [48251,0.088], + [48253,0.046], + [48255,0.103], + [48257,0.083], + [48259,0.123], + [48261,0.184], + [48263,0], + [48265,0.11], + [48267,0.068], + [48269,0.057], + [48271,0.07], + [48273,0.229], + [48275,0.119], + [48277,0.127], + [48279,0.061], + [48281,0.056], + [48283,0.133], + [48285,0.052], + [48287,0.091], + [48289,0.042], + [48291,0.059], + [48293,0.045], + [48295,0.079], + [48297,0.038], + [48299,0.146], + [48301,0.063], + [48303,0.245], + [48305,0.048], + [48307,0.083], + [48309,0.243], + [48311,0.026], + [48313,0.036], + [48315,0.038], + [48317,0.082], + [48319,0.033], + [48321,0.151], + [48323,0.157], + [48325,0.064], + [48327,0.014], + [48329,0.213], + [48331,0.054], + [48333,0.03], + [48335,0.048], + [48337,0.05], + [48339,0.135], + [48341,0.155], + [48343,0.084], + [48345,0.026], + [48347,0.215], + [48349,0.103], + [48351,0.019], + [48353,0.122], + [48355,0.265], + [48357,0.083], + [48359,0.096], + [48361,0.089], + [48363,0.081], + [48365,0.039], + [48367,0.071], + [48369,0.063], + [48371,0.111], + [48373,0.045], + [48375,0.211], + [48377,0.116], + [48379,0.039], + [48381,0.182], + [48383,0.044], + [48385,0], + [48387,0.069], + [48389,0.082], + [48391,0.049], + [48393,0], + [48395,0.106], + [48397,0.068], + [48399,0.046], + [48401,0.061], + [48403,0.033], + [48405,0.056], + [48407,0.019], + [48409,0.158], + [48411,0.034], + [48413,0.034], + [48415,0.109], + [48417,0.082], + [48419,0.05], + [48421,0.04], + [48423,0.165], + [48425,0.061], + [48427,0.058], + [48429,0.094], + [48431,0.018], + [48433,0.035], + [48435,0.05], + [48437,0.084], + [48439,0.277], + [48441,0.184], + [48443,0.009], + [48445,0.057], + [48447,0.046], + [48449,0.1], + [48451,0.194], + [48453,0.403], + [48455,0.026], + [48457,0.031], + [48459,0.061], + [48461,0.017], + [48463,0.078], + [48465,0.147], + [48467,0.043], + [48469,0.194], + [48471,0.263], + [48473,0.117], + [48475,0.103], + [48477,0.124], + [48479,0.204], + [48481,0.113], + [48483,0.018], + [48485,0.216], + [48487,0.138], + [48489,0.08], + [48491,0.191], + [48493,0.037], + [48495,0.042], + [48497,0.055], + [48499,0.045], + [48501,0.034], + [48503,0.106], + [48505,0.035], + [48507,0.147], + [49001,0.117], + [49003,0.107], + [49005,0.256], + [49007,0.128], + [49009,0.008], + [49011,0.159], + [49013,0.092], + [49015,0.054], + [49017,0.042], + [49019,0.153], + [49021,0.263], + [49023,0.07], + [49025,0.043], + [49027,0.045], + [49029,0.057], + [49031,0], + [49033,0.182], + [49035,0.271], + [49037,0.055], + [49039,0.091], + [49041,0.07], + [49043,0.298], + [49045,0.1], + [49047,0.131], + [49049,0.223], + [49051,0.1], + [49053,0.153], + [49055,0.039], + [49057,0.198], + [50001,0.129], + [50003,0.197], + [50005,0.196], + [50007,0.343], + [50009,0.068], + [50011,0.169], + [50013,0.053], + [50015,0.197], + [50017,0.09], + [50019,0.134], + [50021,0.277], + [50023,0.275], + [50025,0.232], + [50027,0.234], + [51001,0.056], + [51003,0.237], + [51005,0.075], + [51007,0.025], + [51009,0.093], + [51011,0.047], + [51013,0.613], + [51015,0.071], + [51017,0.009], + [51019,0.038], + [51021,0.02], + [51023,0.044], + [51025,0.032], + [51027,0.018], + [51029,0.044], + [51031,0.105], + [51033,0.024], + [51035,0.035], + [51036,0.019], + [51037,0.041], + [51041,0.141], + [51043,0.093], + [51045,0.018], + [51047,0.103], + [51049,0.055], + [51051,0.051], + [51053,0.031], + [51057,0.084], + [51059,0.271], + [51061,0.07], + [51063,0.036], + [51065,0.02], + [51067,0.078], + [51069,0.063], + [51071,0.062], + [51073,0.051], + [51075,0.009], + [51077,0.024], + [51079,0.029], + [51081,0.027], + [51083,0.055], + [51085,0.082], + [51087,0.283], + [51089,0.084], + [51091,0.021], + [51093,0.072], + [51095,0.169], + [51097,0], + [51099,0.1], + [51101,0.047], + [51103,0.048], + [51105,0.06], + [51107,0.162], + [51109,0.038], + [51111,0.022], + [51113,0.019], + [51115,0.024], + [51117,0.044], + [51119,0.031], + [51121,0.276], + [51125,0.118], + [51127,0.003], + [51131,0.055], + [51133,0.022], + [51135,0.054], + [51137,0.058], + [51139,0.062], + [51141,0.042], + [51143,0.041], + [51145,0.011], + [51147,0.166], + [51149,0.091], + [51153,0.162], + [51155,0.126], + [51157,0.009], + [51159,0.063], + [51161,0.183], + [51163,0.05], + [51165,0.097], + [51167,0.057], + [51169,0.048], + [51171,0.141], + [51173,0.085], + [51175,0.029], + [51177,0.064], + [51179,0.094], + [51181,0.044], + [51183,0.073], + [51185,0.08], + [51187,0.118], + [51191,0.116], + [51193,0.034], + [51195,0.084], + [51197,0.072], + [51199,0.167], + [51510,0.629], + [51520,0.267], + [51530,0.147], + [51540,0.432], + [51550,0.168], + [51570,0.204], + [51580,0.102], + [51590,0.241], + [51595,0.234], + [51600,0.247], + [51610,0.394], + [51620,0.312], + [51630,0.463], + [51640,0.194], + [51650,0.283], + [51660,0.442], + [51670,0.245], + [51678,0.298], + [51680,0.298], + [51683,0.235], + [51685,0.166], + [51690,0.248], + [51700,0.364], + [51710,0.429], + [51720,0.308], + [51730,0.34], + [51735,0.061], + [51740,0.285], + [51750,0.371], + [51760,0.438], + [51770,0.34], + [51775,0.224], + [51790,0.279], + [51800,0.144], + [51810,0.224], + [51820,0.272], + [51830,0.363], + [51840,0.293], + [53001,0.137], + [53003,0.156], + [53005,0.219], + [53007,0.181], + [53009,0.109], + [53011,0.221], + [53013,0.077], + [53015,0.191], + [53017,0.135], + [53019,0.041], + [53021,0.18], + [53023,0.057], + [53025,0.141], + [53027,0.148], + [53029,0.108], + [53031,0.09], + [53033,0.381], + [53035,0.194], + [53037,0.236], + [53039,0.102], + [53041,0.11], + [53043,0.044], + [53045,0.043], + [53047,0.098], + [53049,0.099], + [53051,0.064], + [53053,0.248], + [53055,0.078], + [53057,0.167], + [53059,0.055], + [53061,0.261], + [53063,0.241], + [53065,0.059], + [53067,0.192], + [53069,0.058], + [53071,0.224], + [53073,0.262], + [53075,0.411], + [53077,0.181], + [54001,0.065], + [54003,0.115], + [54005,0.048], + [54007,0.047], + [54009,0.131], + [54011,0.232], + [54013,0.022], + [54015,0.038], + [54017,0.024], + [54019,0.067], + [54021,0.06], + [54023,0.052], + [54025,0.071], + [54027,0.051], + [54029,0.133], + [54031,0.057], + [54033,0.134], + [54035,0.078], + [54037,0.104], + [54039,0.176], + [54041,0.09], + [54043,0.032], + [54045,0.089], + [54047,0.049], + [54049,0.13], + [54051,0.104], + [54053,0.069], + [54055,0.105], + [54057,0.128], + [54059,0.091], + [54061,0.31], + [54063,0.017], + [54065,0.064], + [54067,0.067], + [54069,0.244], + [54071,0.049], + [54073,0.086], + [54075,0.204], + [54077,0.055], + [54079,0.068], + [54081,0.09], + [54083,0.096], + [54085,0.05], + [54087,0.048], + [54089,0.057], + [54091,0.095], + [54093,0.067], + [54095,0.037], + [54097,0.071], + [54099,0.069], + [54101,0.065], + [54103,0.093], + [54105,0.038], + [54107,0.151], + [54109,0.048], + [55001,0.047], + [55003,0.163], + [55005,0.147], + [55007,0.072], + [55009,0.296], + [55011,0.114], + [55013,0.036], + [55015,0.133], + [55017,0.164], + [55019,0.09], + [55021,0.174], + [55023,0.117], + [55025,0.383], + [55027,0.214], + [55029,0.166], + [55031,0.201], + [55033,0.211], + [55035,0.278], + [55037,0.051], + [55039,0.228], + [55041,0.054], + [55043,0.163], + [55045,0.143], + [55047,0.124], + [55049,0.115], + [55051,0.122], + [55053,0.113], + [55055,0.209], + [55057,0.108], + [55059,0.275], + [55061,0.135], + [55063,0.276], + [55065,0.094], + [55067,0.118], + [55069,0.153], + [55071,0.211], + [55073,0.181], + [55075,0.09], + [55077,0.056], + [55078,0.025], + [55079,0.479], + [55081,0.158], + [55083,0.062], + [55085,0.096], + [55087,0.236], + [55089,0.222], + [55091,0.125], + [55093,0.171], + [55095,0.099], + [55097,0.227], + [55099,0.066], + [55101,0.275], + [55103,0.13], + [55105,0.187], + [55107,0.092], + [55109,0.157], + [55111,0.2], + [55113,0.066], + [55115,0.138], + [55117,0.273], + [55119,0.121], + [55121,0.146], + [55123,0.103], + [55125,0.043], + [55127,0.228], + [55129,0.067], + [55131,0.217], + [55133,0.221], + [55135,0.156], + [55137,0.059], + [55139,0.281], + [55141,0.168], + [56001,0.328], + [56003,0.064], + [56005,0.199], + [56007,0.119], + [56009,0.13], + [56011,0.028], + [56013,0.093], + [56015,0.077], + [56017,0.128], + [56019,0.123], + [56021,0.185], + [56023,0.076], + [56025,0.158], + [56027,0.062], + [56029,0.105], + [56031,0.083], + [56033,0.144], + [56035,0.033], + [56037,0.146], + [56039,0.319], + [56041,0.17], + [56043,0.1], + [56045,0.065] + ] +} diff --git a/data/regional/united-states/infrastructure/housing/us-housing-multiunits-2019.json b/data/regional/united-states/infrastructure/housing/us-housing-multiunits-2019.json new file mode 100644 index 0000000..3774249 --- /dev/null +++ b/data/regional/united-states/infrastructure/housing/us-housing-multiunits-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Multi-Housing Units", + "description" : "Percent of housing units in multi apartment blocks.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "infrastructure", + "tags" : ["regional","us","counties","infrastructure","housing","apartments"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.housing.multiunits.2019"], + [1001,0.733], + [1003,0.752], + [1005,0.609], + [1007,0.744], + [1009,0.788], + [1011,0.711], + [1013,0.7], + [1015,0.701], + [1017,0.675], + [1019,0.773], + [1021,0.745], + [1023,0.809], + [1025,0.701], + [1027,0.755], + [1029,0.761], + [1031,0.657], + [1033,0.722], + [1035,0.761], + [1037,0.792], + [1039,0.745], + [1041,0.755], + [1043,0.748], + [1045,0.601], + [1047,0.593], + [1049,0.715], + [1051,0.733], + [1053,0.683], + [1055,0.726], + [1057,0.773], + [1059,0.708], + [1061,0.72], + [1063,0.671], + [1065,0.758], + [1067,0.833], + [1069,0.657], + [1071,0.755], + [1073,0.627], + [1075,0.756], + [1077,0.681], + [1079,0.777], + [1081,0.616], + [1083,0.776], + [1085,0.743], + [1087,0.655], + [1089,0.668], + [1091,0.715], + [1093,0.751], + [1095,0.702], + [1097,0.645], + [1099,0.636], + [1101,0.584], + [1103,0.727], + [1105,0.719], + [1107,0.753], + [1109,0.623], + [1111,0.766], + [1113,0.602], + [1115,0.799], + [1117,0.805], + [1119,0.641], + [1121,0.713], + [1123,0.749], + [1125,0.637], + [1127,0.772], + [1129,0.827], + [1131,0.679], + [1133,0.794], + [2013,0.638], + [2016,0.282], + [2020,0.613], + [2050,0.582], + [2060,0.538], + [2068,0.816], + [2070,0.62], + [2090,0.589], + [2100,0.664], + [2105,0.755], + [2110,0.648], + [2122,0.728], + [2130,0.616], + [2150,0.546], + [2158,0.717], + [2164,0.715], + [2170,0.771], + [2180,0.605], + [2185,0.527], + [2188,0.562], + [2195,0.688], + [2198,0.728], + [2220,0.593], + [2230,0.533], + [2240,0.735], + [2261,0.746], + [2275,0.679], + [2282,0.662], + [2290,0.724], + [4001,0.789], + [4003,0.689], + [4005,0.61], + [4007,0.756], + [4009,0.703], + [4011,0.486], + [4012,0.715], + [4013,0.622], + [4015,0.693], + [4017,0.688], + [4019,0.632], + [4021,0.767], + [4023,0.677], + [4025,0.72], + [4027,0.671], + [5001,0.652], + [5003,0.775], + [5005,0.761], + [5007,0.666], + [5009,0.718], + [5011,0.652], + [5013,0.848], + [5015,0.757], + [5017,0.618], + [5019,0.575], + [5021,0.674], + [5023,0.752], + [5025,0.76], + [5027,0.704], + [5029,0.673], + [5031,0.571], + [5033,0.76], + [5035,0.574], + [5037,0.668], + [5039,0.677], + [5041,0.615], + [5043,0.677], + [5045,0.623], + [5047,0.705], + [5049,0.797], + [5051,0.678], + [5053,0.801], + [5055,0.67], + [5057,0.693], + [5059,0.779], + [5061,0.689], + [5063,0.716], + [5065,0.761], + [5067,0.694], + [5069,0.621], + [5071,0.704], + [5073,0.791], + [5075,0.673], + [5077,0.598], + [5079,0.771], + [5081,0.715], + [5083,0.737], + [5085,0.692], + [5087,0.78], + [5089,0.789], + [5091,0.646], + [5093,0.564], + [5095,0.599], + [5097,0.813], + [5099,0.669], + [5101,0.842], + [5103,0.691], + [5105,0.764], + [5107,0.482], + [5109,0.788], + [5111,0.629], + [5113,0.767], + [5115,0.689], + [5117,0.739], + [5119,0.588], + [5121,0.717], + [5123,0.547], + [5125,0.781], + [5127,0.738], + [5129,0.739], + [5131,0.588], + [5133,0.714], + [5135,0.772], + [5137,0.746], + [5139,0.754], + [5141,0.786], + [5143,0.526], + [5145,0.661], + [5147,0.654], + [5149,0.715], + [6001,0.535], + [6003,0.84], + [6005,0.765], + [6007,0.59], + [6009,0.778], + [6011,0.61], + [6013,0.659], + [6015,0.631], + [6017,0.757], + [6019,0.533], + [6021,0.594], + [6023,0.568], + [6025,0.583], + [6027,0.655], + [6029,0.583], + [6031,0.523], + [6033,0.664], + [6035,0.676], + [6037,0.458], + [6039,0.641], + [6041,0.637], + [6043,0.684], + [6045,0.599], + [6047,0.522], + [6049,0.749], + [6051,0.644], + [6053,0.51], + [6055,0.642], + [6057,0.742], + [6059,0.574], + [6061,0.719], + [6063,0.729], + [6065,0.663], + [6067,0.564], + [6069,0.637], + [6071,0.598], + [6073,0.533], + [6075,0.376], + [6077,0.566], + [6079,0.616], + [6081,0.602], + [6083,0.521], + [6085,0.564], + [6087,0.601], + [6089,0.64], + [6091,0.754], + [6093,0.65], + [6095,0.615], + [6097,0.615], + [6099,0.578], + [6101,0.577], + [6103,0.654], + [6105,0.689], + [6107,0.571], + [6109,0.713], + [6111,0.632], + [6113,0.516], + [6115,0.605], + [8001,0.662], + [8003,0.578], + [8005,0.635], + [8007,0.722], + [8009,0.71], + [8011,0.596], + [8013,0.622], + [8014,0.652], + [8015,0.778], + [8017,0.714], + [8019,0.772], + [8021,0.794], + [8023,0.69], + [8025,0.725], + [8027,0.872], + [8029,0.736], + [8031,0.499], + [8033,0.816], + [8035,0.79], + [8037,0.698], + [8039,0.9], + [8041,0.64], + [8043,0.75], + [8045,0.669], + [8047,0.796], + [8049,0.685], + [8051,0.614], + [8053,0.716], + [8055,0.718], + [8057,0.799], + [8059,0.707], + [8061,0.743], + [8063,0.664], + [8065,0.684], + [8067,0.707], + [8069,0.65], + [8071,0.674], + [8073,0.706], + [8075,0.652], + [8077,0.682], + [8079,0.866], + [8081,0.648], + [8083,0.721], + [8085,0.727], + [8087,0.64], + [8089,0.639], + [8091,0.723], + [8093,0.864], + [8095,0.719], + [8097,0.65], + [8099,0.654], + [8101,0.647], + [8103,0.708], + [8105,0.632], + [8107,0.712], + [8109,0.715], + [8111,0.626], + [8113,0.61], + [8115,0.714], + [8117,0.655], + [8119,0.825], + [8121,0.669], + [8123,0.729], + [8125,0.669], + [9001,0.671], + [9003,0.641], + [9005,0.765], + [9007,0.735], + [9009,0.618], + [9011,0.664], + [9013,0.718], + [9015,0.69], + [10001,0.691], + [10003,0.679], + [10005,0.803], + [11001,0.416], + [12001,0.55], + [12003,0.753], + [12005,0.651], + [12007,0.693], + [12009,0.743], + [12011,0.621], + [12013,0.814], + [12015,0.797], + [12017,0.819], + [12019,0.75], + [12021,0.733], + [12023,0.714], + [12027,0.697], + [12029,0.786], + [12031,0.567], + [12033,0.62], + [12035,0.76], + [12037,0.746], + [12039,0.729], + [12041,0.83], + [12043,0.796], + [12045,0.742], + [12047,0.679], + [12049,0.649], + [12051,0.653], + [12053,0.781], + [12055,0.753], + [12057,0.586], + [12059,0.764], + [12061,0.792], + [12063,0.698], + [12065,0.77], + [12067,0.844], + [12069,0.745], + [12071,0.723], + [12073,0.53], + [12075,0.777], + [12077,0.754], + [12079,0.736], + [12081,0.729], + [12083,0.75], + [12085,0.78], + [12086,0.512], + [12087,0.595], + [12089,0.8], + [12091,0.634], + [12093,0.722], + [12095,0.554], + [12097,0.616], + [12099,0.689], + [12101,0.721], + [12103,0.67], + [12105,0.689], + [12107,0.707], + [12109,0.804], + [12111,0.732], + [12113,0.76], + [12115,0.749], + [12117,0.646], + [12119,0.897], + [12121,0.743], + [12123,0.774], + [12125,0.661], + [12127,0.703], + [12129,0.82], + [12131,0.746], + [12133,0.777], + [13001,0.764], + [13003,0.733], + [13005,0.724], + [13007,0.653], + [13009,0.585], + [13011,0.754], + [13013,0.756], + [13015,0.663], + [13017,0.588], + [13019,0.642], + [13021,0.523], + [13023,0.743], + [13025,0.803], + [13027,0.74], + [13029,0.701], + [13031,0.539], + [13033,0.708], + [13035,0.698], + [13037,0.656], + [13039,0.625], + [13043,0.576], + [13045,0.669], + [13047,0.74], + [13049,0.713], + [13051,0.547], + [13053,0.246], + [13055,0.682], + [13057,0.768], + [13059,0.39], + [13061,0.729], + [13063,0.495], + [13065,0.749], + [13067,0.645], + [13069,0.631], + [13071,0.63], + [13073,0.795], + [13075,0.664], + [13077,0.728], + [13079,0.779], + [13081,0.545], + [13083,0.715], + [13085,0.815], + [13087,0.575], + [13089,0.546], + [13091,0.678], + [13093,0.696], + [13095,0.46], + [13097,0.643], + [13099,0.64], + [13101,0.678], + [13103,0.759], + [13105,0.722], + [13107,0.638], + [13109,0.68], + [13111,0.79], + [13113,0.82], + [13115,0.61], + [13117,0.84], + [13119,0.664], + [13121,0.516], + [13123,0.745], + [13125,0.747], + [13127,0.625], + [13129,0.651], + [13131,0.643], + [13133,0.746], + [13135,0.663], + [13137,0.783], + [13139,0.695], + [13141,0.706], + [13143,0.684], + [13145,0.876], + [13147,0.748], + [13149,0.711], + [13151,0.704], + [13153,0.636], + [13155,0.736], + [13157,0.779], + [13159,0.768], + [13161,0.651], + [13163,0.632], + [13165,0.714], + [13167,0.673], + [13169,0.802], + [13171,0.692], + [13173,0.644], + [13175,0.642], + [13177,0.728], + [13179,0.457], + [13181,0.75], + [13183,0.691], + [13185,0.523], + [13187,0.707], + [13189,0.613], + [13191,0.798], + [13193,0.64], + [13195,0.747], + [13197,0.784], + [13199,0.685], + [13201,0.655], + [13205,0.622], + [13207,0.791], + [13209,0.692], + [13211,0.732], + [13213,0.696], + [13215,0.48], + [13217,0.676], + [13219,0.829], + [13221,0.772], + [13223,0.758], + [13225,0.654], + [13227,0.759], + [13229,0.775], + [13231,0.84], + [13233,0.646], + [13235,0.643], + [13237,0.77], + [13239,0.702], + [13241,0.743], + [13243,0.572], + [13245,0.526], + [13247,0.664], + [13249,0.715], + [13251,0.735], + [13253,0.653], + [13255,0.625], + [13257,0.698], + [13259,0.735], + [13261,0.555], + [13263,0.79], + [13265,0.69], + [13267,0.672], + [13269,0.705], + [13271,0.67], + [13273,0.55], + [13275,0.612], + [13277,0.6], + [13279,0.605], + [13281,0.783], + [13283,0.669], + [13285,0.574], + [13287,0.691], + [13289,0.809], + [13291,0.772], + [13293,0.676], + [13295,0.718], + [13297,0.743], + [13299,0.636], + [13301,0.666], + [13303,0.666], + [13305,0.635], + [13307,0.839], + [13309,0.633], + [13311,0.759], + [13313,0.646], + [13315,0.761], + [13317,0.675], + [13319,0.752], + [13321,0.654], + [15001,0.677], + [15003,0.562], + [15005,0], + [15007,0.632], + [15009,0.61], + [16001,0.693], + [16003,0.803], + [16005,0.675], + [16007,0.766], + [16009,0.733], + [16011,0.768], + [16013,0.701], + [16015,0.828], + [16017,0.757], + [16019,0.696], + [16021,0.767], + [16023,0.823], + [16025,0.756], + [16027,0.695], + [16029,0.793], + [16031,0.703], + [16033,0.624], + [16035,0.781], + [16037,0.786], + [16039,0.598], + [16041,0.813], + [16043,0.812], + [16045,0.748], + [16047,0.705], + [16049,0.767], + [16051,0.807], + [16053,0.649], + [16055,0.704], + [16057,0.543], + [16059,0.776], + [16061,0.694], + [16063,0.682], + [16065,0.446], + [16067,0.734], + [16069,0.728], + [16071,0.799], + [16073,0.709], + [16075,0.727], + [16077,0.744], + [16079,0.7], + [16081,0.777], + [16083,0.689], + [16085,0.808], + [16087,0.725], + [17001,0.718], + [17003,0.737], + [17005,0.759], + [17007,0.81], + [17009,0.748], + [17011,0.766], + [17013,0.873], + [17015,0.766], + [17017,0.746], + [17019,0.53], + [17021,0.751], + [17023,0.766], + [17025,0.745], + [17027,0.796], + [17029,0.615], + [17031,0.569], + [17033,0.777], + [17035,0.787], + [17037,0.57], + [17039,0.787], + [17041,0.74], + [17043,0.734], + [17045,0.765], + [17047,0.802], + [17049,0.754], + [17051,0.805], + [17053,0.722], + [17055,0.742], + [17057,0.783], + [17059,0.771], + [17061,0.776], + [17063,0.713], + [17065,0.8], + [17067,0.814], + [17069,0.82], + [17071,0.822], + [17073,0.786], + [17075,0.761], + [17077,0.515], + [17079,0.789], + [17081,0.732], + [17083,0.819], + [17085,0.784], + [17087,0.842], + [17089,0.739], + [17091,0.68], + [17093,0.836], + [17095,0.667], + [17097,0.73], + [17099,0.718], + [17101,0.742], + [17103,0.723], + [17105,0.728], + [17107,0.727], + [17109,0.663], + [17111,0.794], + [17113,0.646], + [17115,0.684], + [17117,0.767], + [17119,0.714], + [17121,0.736], + [17123,0.818], + [17125,0.778], + [17127,0.755], + [17129,0.781], + [17131,0.79], + [17133,0.834], + [17135,0.764], + [17137,0.685], + [17139,0.776], + [17141,0.732], + [17143,0.651], + [17145,0.754], + [17147,0.825], + [17149,0.786], + [17151,0.825], + [17153,0.764], + [17155,0.805], + [17157,0.74], + [17159,0.712], + [17161,0.68], + [17163,0.652], + [17165,0.745], + [17167,0.689], + [17169,0.757], + [17171,0.799], + [17173,0.81], + [17175,0.785], + [17177,0.699], + [17179,0.764], + [17181,0.773], + [17183,0.696], + [17185,0.78], + [17187,0.743], + [17189,0.775], + [17191,0.766], + [17193,0.806], + [17195,0.749], + [17197,0.813], + [17199,0.701], + [17201,0.659], + [17203,0.818], + [18001,0.771], + [18003,0.684], + [18005,0.714], + [18007,0.74], + [18009,0.747], + [18011,0.771], + [18013,0.844], + [18015,0.807], + [18017,0.74], + [18019,0.711], + [18021,0.776], + [18023,0.706], + [18025,0.826], + [18027,0.735], + [18029,0.796], + [18031,0.698], + [18033,0.761], + [18035,0.635], + [18037,0.779], + [18039,0.698], + [18041,0.695], + [18043,0.73], + [18045,0.762], + [18047,0.84], + [18049,0.747], + [18051,0.755], + [18053,0.684], + [18055,0.796], + [18057,0.769], + [18059,0.792], + [18061,0.83], + [18063,0.785], + [18065,0.735], + [18067,0.702], + [18069,0.755], + [18071,0.721], + [18073,0.766], + [18075,0.73], + [18077,0.719], + [18079,0.777], + [18081,0.727], + [18083,0.646], + [18085,0.748], + [18087,0.821], + [18089,0.697], + [18091,0.723], + [18093,0.77], + [18095,0.696], + [18097,0.539], + [18099,0.747], + [18101,0.782], + [18103,0.715], + [18105,0.559], + [18107,0.715], + [18109,0.771], + [18111,0.779], + [18113,0.766], + [18115,0.762], + [18117,0.744], + [18119,0.792], + [18121,0.788], + [18123,0.777], + [18125,0.824], + [18127,0.751], + [18129,0.817], + [18131,0.759], + [18133,0.716], + [18135,0.763], + [18137,0.759], + [18139,0.714], + [18141,0.682], + [18143,0.72], + [18145,0.733], + [18147,0.819], + [18149,0.801], + [18151,0.778], + [18153,0.744], + [18155,0.748], + [18157,0.551], + [18159,0.817], + [18161,0.72], + [18163,0.648], + [18165,0.731], + [18167,0.618], + [18169,0.74], + [18171,0.839], + [18173,0.785], + [18175,0.778], + [18177,0.669], + [18179,0.789], + [18181,0.775], + [18183,0.822], + [19001,0.743], + [19003,0.817], + [19005,0.793], + [19007,0.71], + [19009,0.768], + [19011,0.828], + [19013,0.655], + [19015,0.781], + [19017,0.827], + [19019,0.793], + [19021,0.646], + [19023,0.779], + [19025,0.788], + [19027,0.758], + [19029,0.692], + [19031,0.812], + [19033,0.691], + [19035,0.746], + [19037,0.807], + [19039,0.704], + [19041,0.677], + [19043,0.745], + [19045,0.733], + [19047,0.691], + [19049,0.737], + [19051,0.852], + [19053,0.67], + [19055,0.844], + [19057,0.703], + [19059,0.794], + [19061,0.733], + [19063,0.781], + [19065,0.766], + [19067,0.712], + [19069,0.747], + [19071,0.763], + [19073,0.734], + [19075,0.816], + [19077,0.796], + [19079,0.724], + [19081,0.771], + [19083,0.749], + [19085,0.757], + [19087,0.712], + [19089,0.797], + [19091,0.742], + [19093,0.756], + [19095,0.804], + [19097,0.79], + [19099,0.745], + [19101,0.663], + [19103,0.585], + [19105,0.783], + [19107,0.784], + [19109,0.757], + [19111,0.744], + [19113,0.738], + [19115,0.769], + [19117,0.781], + [19119,0.854], + [19121,0.784], + [19123,0.69], + [19125,0.708], + [19127,0.705], + [19129,0.779], + [19131,0.808], + [19133,0.724], + [19135,0.799], + [19137,0.702], + [19139,0.734], + [19141,0.717], + [19143,0.784], + [19145,0.715], + [19147,0.723], + [19149,0.775], + [19151,0.773], + [19153,0.671], + [19155,0.684], + [19157,0.686], + [19159,0.772], + [19161,0.794], + [19163,0.69], + [19165,0.775], + [19167,0.803], + [19169,0.535], + [19171,0.758], + [19173,0.782], + [19175,0.704], + [19177,0.813], + [19179,0.715], + [19181,0.79], + [19183,0.71], + [19185,0.811], + [19187,0.68], + [19189,0.76], + [19191,0.793], + [19193,0.664], + [19195,0.776], + [19197,0.717], + [20001,0.708], + [20003,0.744], + [20005,0.694], + [20007,0.718], + [20009,0.703], + [20011,0.714], + [20013,0.702], + [20015,0.745], + [20017,0.807], + [20019,0.777], + [20021,0.727], + [20023,0.8], + [20025,0.743], + [20027,0.711], + [20029,0.729], + [20031,0.759], + [20033,0.796], + [20035,0.674], + [20037,0.594], + [20039,0.737], + [20041,0.706], + [20043,0.72], + [20045,0.513], + [20047,0.78], + [20049,0.795], + [20051,0.612], + [20053,0.768], + [20055,0.644], + [20057,0.615], + [20059,0.723], + [20061,0.379], + [20063,0.758], + [20065,0.823], + [20067,0.745], + [20069,0.781], + [20071,0.63], + [20073,0.738], + [20075,0.717], + [20077,0.696], + [20079,0.716], + [20081,0.762], + [20083,0.815], + [20085,0.756], + [20087,0.841], + [20089,0.813], + [20091,0.692], + [20093,0.761], + [20095,0.786], + [20097,0.706], + [20099,0.695], + [20101,0.756], + [20103,0.674], + [20105,0.779], + [20107,0.775], + [20109,0.692], + [20111,0.6], + [20113,0.695], + [20115,0.785], + [20117,0.787], + [20119,0.692], + [20121,0.792], + [20123,0.713], + [20125,0.688], + [20127,0.804], + [20129,0.695], + [20131,0.749], + [20133,0.704], + [20135,0.834], + [20137,0.802], + [20139,0.747], + [20141,0.748], + [20143,0.796], + [20145,0.661], + [20147,0.757], + [20149,0.787], + [20151,0.677], + [20153,0.741], + [20155,0.693], + [20157,0.729], + [20159,0.745], + [20161,0.432], + [20163,0.77], + [20165,0.758], + [20167,0.78], + [20169,0.667], + [20171,0.7], + [20173,0.629], + [20175,0.667], + [20177,0.644], + [20179,0.767], + [20181,0.669], + [20183,0.771], + [20185,0.812], + [20187,0.744], + [20189,0.702], + [20191,0.741], + [20193,0.676], + [20195,0.749], + [20197,0.855], + [20199,0.759], + [20201,0.779], + [20203,0.733], + [20205,0.733], + [20207,0.771], + [20209,0.574], + [21001,0.761], + [21003,0.749], + [21005,0.761], + [21007,0.807], + [21009,0.667], + [21011,0.721], + [21013,0.66], + [21015,0.745], + [21017,0.632], + [21019,0.688], + [21021,0.672], + [21023,0.74], + [21025,0.71], + [21027,0.806], + [21029,0.803], + [21031,0.72], + [21033,0.764], + [21035,0.624], + [21037,0.697], + [21039,0.817], + [21041,0.643], + [21043,0.774], + [21045,0.773], + [21047,0.481], + [21049,0.674], + [21051,0.679], + [21053,0.695], + [21055,0.819], + [21057,0.729], + [21059,0.679], + [21061,0.804], + [21063,0.753], + [21065,0.721], + [21067,0.544], + [21069,0.732], + [21071,0.699], + [21073,0.628], + [21075,0.613], + [21077,0.72], + [21079,0.824], + [21081,0.685], + [21083,0.755], + [21085,0.726], + [21087,0.738], + [21089,0.776], + [21091,0.792], + [21093,0.615], + [21095,0.688], + [21097,0.69], + [21099,0.741], + [21101,0.613], + [21103,0.721], + [21105,0.828], + [21107,0.695], + [21109,0.752], + [21111,0.618], + [21113,0.646], + [21115,0.719], + [21117,0.661], + [21119,0.748], + [21121,0.655], + [21123,0.741], + [21125,0.699], + [21127,0.749], + [21129,0.689], + [21131,0.814], + [21133,0.742], + [21135,0.74], + [21137,0.783], + [21139,0.793], + [21141,0.697], + [21143,0.794], + [21145,0.651], + [21147,0.701], + [21149,0.784], + [21151,0.591], + [21153,0.725], + [21155,0.734], + [21157,0.81], + [21159,0.705], + [21161,0.676], + [21163,0.726], + [21165,0.798], + [21167,0.723], + [21169,0.784], + [21171,0.697], + [21173,0.679], + [21175,0.747], + [21177,0.796], + [21179,0.76], + [21181,0.689], + [21183,0.761], + [21185,0.847], + [21187,0.748], + [21189,0.684], + [21191,0.753], + [21193,0.759], + [21195,0.729], + [21197,0.69], + [21199,0.69], + [21201,0.749], + [21203,0.762], + [21205,0.598], + [21207,0.741], + [21209,0.7], + [21211,0.702], + [21213,0.65], + [21215,0.851], + [21217,0.603], + [21219,0.675], + [21221,0.81], + [21223,0.771], + [21225,0.708], + [21227,0.587], + [21229,0.75], + [21231,0.735], + [21233,0.718], + [21235,0.688], + [21237,0.634], + [21239,0.707], + [22001,0.711], + [22003,0.745], + [22005,0.815], + [22007,0.781], + [22009,0.695], + [22011,0.775], + [22013,0.731], + [22015,0.634], + [22017,0.598], + [22019,0.675], + [22021,0.765], + [22023,0.844], + [22025,0.802], + [22027,0.659], + [22029,0.661], + [22031,0.713], + [22033,0.598], + [22035,0.516], + [22037,0.805], + [22039,0.655], + [22041,0.727], + [22043,0.687], + [22045,0.679], + [22047,0.734], + [22049,0.71], + [22051,0.612], + [22053,0.729], + [22055,0.648], + [22057,0.765], + [22059,0.766], + [22061,0.515], + [22063,0.818], + [22065,0.532], + [22067,0.668], + [22069,0.438], + [22071,0.483], + [22073,0.584], + [22075,0.688], + [22077,0.763], + [22079,0.617], + [22081,0.736], + [22083,0.667], + [22085,0.682], + [22087,0.677], + [22089,0.807], + [22091,0.789], + [22093,0.79], + [22095,0.785], + [22097,0.683], + [22099,0.788], + [22101,0.607], + [22103,0.784], + [22105,0.69], + [22107,0.675], + [22109,0.715], + [22111,0.817], + [22113,0.772], + [22115,0.53], + [22117,0.674], + [22119,0.669], + [22121,0.731], + [22123,0.769], + [22125,0.732], + [22127,0.672], + [23001,0.643], + [23003,0.72], + [23005,0.693], + [23007,0.794], + [23009,0.763], + [23011,0.705], + [23013,0.772], + [23015,0.792], + [23017,0.808], + [23019,0.694], + [23021,0.759], + [23023,0.745], + [23025,0.761], + [23027,0.792], + [23029,0.765], + [23031,0.739], + [24001,0.688], + [24003,0.742], + [24005,0.661], + [24009,0.847], + [24011,0.728], + [24013,0.82], + [24015,0.73], + [24017,0.769], + [24019,0.68], + [24021,0.752], + [24023,0.786], + [24025,0.787], + [24027,0.732], + [24029,0.692], + [24031,0.654], + [24033,0.621], + [24035,0.81], + [24037,0.71], + [24039,0.65], + [24041,0.703], + [24043,0.659], + [24045,0.577], + [24047,0.751], + [24510,0.475], + [25001,0.798], + [25003,0.692], + [25005,0.626], + [25007,0.723], + [25009,0.642], + [25011,0.686], + [25013,0.611], + [25015,0.669], + [25017,0.624], + [25019,0.705], + [25021,0.689], + [25023,0.765], + [25025,0.361], + [25027,0.651], + [26001,0.888], + [26003,0.84], + [26005,0.826], + [26007,0.779], + [26009,0.871], + [26011,0.838], + [26013,0.803], + [26015,0.835], + [26017,0.768], + [26019,0.897], + [26021,0.707], + [26023,0.742], + [26025,0.699], + [26027,0.8], + [26029,0.809], + [26031,0.824], + [26033,0.674], + [26035,0.829], + [26037,0.8], + [26039,0.812], + [26041,0.774], + [26043,0.774], + [26045,0.723], + [26047,0.728], + [26049,0.7], + [26051,0.849], + [26053,0.775], + [26055,0.763], + [26057,0.743], + [26059,0.765], + [26061,0.669], + [26063,0.809], + [26065,0.585], + [26067,0.766], + [26069,0.799], + [26071,0.808], + [26073,0.621], + [26075,0.735], + [26077,0.64], + [26079,0.826], + [26081,0.698], + [26083,0.88], + [26085,0.842], + [26087,0.839], + [26089,0.883], + [26091,0.775], + [26093,0.854], + [26095,0.795], + [26097,0.719], + [26099,0.733], + [26101,0.834], + [26103,0.708], + [26105,0.769], + [26107,0.733], + [26109,0.777], + [26111,0.766], + [26113,0.801], + [26115,0.797], + [26117,0.781], + [26119,0.841], + [26121,0.747], + [26123,0.839], + [26125,0.71], + [26127,0.826], + [26129,0.814], + [26131,0.882], + [26133,0.807], + [26135,0.853], + [26137,0.789], + [26139,0.777], + [26141,0.888], + [26143,0.82], + [26145,0.713], + [26147,0.773], + [26149,0.746], + [26151,0.787], + [26153,0.837], + [26155,0.756], + [26157,0.824], + [26159,0.77], + [26161,0.611], + [26163,0.62], + [26165,0.768], + [27001,0.822], + [27003,0.801], + [27005,0.785], + [27007,0.671], + [27009,0.674], + [27011,0.729], + [27013,0.62], + [27015,0.792], + [27017,0.798], + [27019,0.819], + [27021,0.815], + [27023,0.667], + [27025,0.864], + [27027,0.675], + [27029,0.813], + [27031,0.769], + [27033,0.781], + [27035,0.765], + [27037,0.74], + [27039,0.839], + [27041,0.743], + [27043,0.775], + [27045,0.808], + [27047,0.767], + [27049,0.753], + [27051,0.774], + [27053,0.624], + [27055,0.801], + [27057,0.812], + [27059,0.825], + [27061,0.813], + [27063,0.81], + [27065,0.848], + [27067,0.74], + [27069,0.805], + [27071,0.788], + [27073,0.809], + [27075,0.82], + [27077,0.809], + [27079,0.816], + [27081,0.788], + [27083,0.684], + [27085,0.777], + [27087,0.68], + [27089,0.826], + [27091,0.738], + [27093,0.804], + [27095,0.751], + [27097,0.772], + [27099,0.73], + [27101,0.812], + [27103,0.739], + [27105,0.707], + [27107,0.819], + [27109,0.727], + [27111,0.783], + [27113,0.728], + [27115,0.809], + [27117,0.749], + [27119,0.729], + [27121,0.775], + [27123,0.594], + [27125,0.836], + [27127,0.785], + [27129,0.78], + [27131,0.74], + [27133,0.755], + [27135,0.816], + [27137,0.713], + [27139,0.828], + [27141,0.836], + [27143,0.791], + [27145,0.681], + [27147,0.752], + [27149,0.685], + [27151,0.703], + [27153,0.826], + [27155,0.796], + [27157,0.786], + [27159,0.765], + [27161,0.775], + [27163,0.811], + [27165,0.769], + [27167,0.781], + [27169,0.704], + [27171,0.816], + [27173,0.794], + [28001,0.624], + [28003,0.687], + [28005,0.849], + [28007,0.725], + [28009,0.806], + [28011,0.536], + [28013,0.745], + [28015,0.812], + [28017,0.697], + [28019,0.786], + [28021,0.695], + [28023,0.833], + [28025,0.714], + [28027,0.506], + [28029,0.772], + [28031,0.782], + [28033,0.74], + [28035,0.545], + [28037,0.769], + [28039,0.818], + [28041,0.828], + [28043,0.64], + [28045,0.755], + [28047,0.566], + [28049,0.58], + [28051,0.613], + [28053,0.619], + [28055,0.437], + [28057,0.763], + [28059,0.698], + [28061,0.85], + [28063,0.674], + [28065,0.756], + [28067,0.726], + [28069,0.736], + [28071,0.62], + [28073,0.675], + [28075,0.645], + [28077,0.752], + [28079,0.708], + [28081,0.679], + [28083,0.506], + [28085,0.753], + [28087,0.635], + [28089,0.717], + [28091,0.823], + [28093,0.755], + [28095,0.743], + [28097,0.692], + [28099,0.715], + [28101,0.772], + [28103,0.729], + [28105,0.517], + [28107,0.696], + [28109,0.778], + [28111,0.822], + [28113,0.69], + [28115,0.713], + [28117,0.727], + [28119,0.587], + [28121,0.765], + [28123,0.741], + [28125,0.641], + [28127,0.797], + [28129,0.83], + [28131,0.745], + [28133,0.536], + [28135,0.72], + [28137,0.748], + [28139,0.723], + [28141,0.755], + [28143,0.402], + [28145,0.731], + [28147,0.879], + [28149,0.661], + [28151,0.529], + [28153,0.835], + [28155,0.763], + [28157,0.799], + [28159,0.731], + [28161,0.7], + [28163,0.632], + [29001,0.601], + [29003,0.799], + [29005,0.697], + [29007,0.685], + [29009,0.737], + [29011,0.701], + [29013,0.727], + [29015,0.816], + [29017,0.808], + [29019,0.556], + [29021,0.624], + [29023,0.637], + [29025,0.761], + [29027,0.725], + [29029,0.807], + [29031,0.65], + [29033,0.743], + [29035,0.774], + [29037,0.765], + [29039,0.707], + [29041,0.783], + [29043,0.742], + [29045,0.749], + [29047,0.687], + [29049,0.764], + [29051,0.663], + [29053,0.726], + [29055,0.714], + [29057,0.768], + [29059,0.761], + [29061,0.793], + [29063,0.691], + [29065,0.735], + [29067,0.798], + [29069,0.62], + [29071,0.745], + [29073,0.784], + [29075,0.736], + [29077,0.56], + [29079,0.682], + [29081,0.727], + [29083,0.722], + [29085,0.822], + [29087,0.762], + [29089,0.782], + [29091,0.684], + [29093,0.708], + [29095,0.582], + [29097,0.636], + [29099,0.794], + [29101,0.61], + [29103,0.826], + [29105,0.695], + [29107,0.708], + [29109,0.718], + [29111,0.761], + [29113,0.785], + [29115,0.729], + [29117,0.666], + [29119,0.686], + [29121,0.746], + [29123,0.718], + [29125,0.749], + [29127,0.654], + [29129,0.786], + [29131,0.742], + [29133,0.597], + [29135,0.77], + [29137,0.745], + [29139,0.7], + [29141,0.807], + [29143,0.635], + [29145,0.715], + [29147,0.578], + [29149,0.738], + [29151,0.846], + [29153,0.776], + [29155,0.541], + [29157,0.75], + [29159,0.688], + [29161,0.596], + [29163,0.717], + [29165,0.659], + [29167,0.69], + [29169,0.493], + [29171,0.772], + [29173,0.833], + [29175,0.715], + [29177,0.785], + [29179,0.787], + [29181,0.79], + [29183,0.806], + [29185,0.783], + [29186,0.801], + [29187,0.685], + [29189,0.686], + [29195,0.696], + [29197,0.693], + [29199,0.775], + [29201,0.667], + [29203,0.734], + [29205,0.738], + [29207,0.68], + [29209,0.817], + [29211,0.745], + [29213,0.617], + [29215,0.724], + [29217,0.717], + [29219,0.789], + [29221,0.794], + [29223,0.735], + [29225,0.75], + [29227,0.764], + [29229,0.7], + [29510,0.437], + [30001,0.678], + [30003,0.634], + [30005,0.58], + [30007,0.825], + [30009,0.764], + [30011,0.72], + [30013,0.644], + [30015,0.638], + [30017,0.688], + [30019,0.784], + [30021,0.683], + [30023,0.678], + [30025,0.72], + [30027,0.728], + [30029,0.741], + [30031,0.612], + [30033,0.731], + [30035,0.588], + [30037,0.769], + [30039,0.791], + [30041,0.618], + [30043,0.843], + [30045,0.757], + [30047,0.72], + [30049,0.694], + [30051,0.63], + [30053,0.803], + [30055,0.808], + [30057,0.77], + [30059,0.725], + [30061,0.74], + [30063,0.589], + [30065,0.72], + [30067,0.685], + [30069,0.745], + [30071,0.771], + [30073,0.746], + [30075,0.746], + [30077,0.671], + [30079,0.84], + [30081,0.763], + [30083,0.66], + [30085,0.629], + [30087,0.692], + [30089,0.776], + [30091,0.788], + [30093,0.689], + [30095,0.807], + [30097,0.723], + [30099,0.699], + [30101,0.594], + [30103,0.681], + [30105,0.749], + [30107,0.747], + [30109,0.797], + [30111,0.684], + [31001,0.665], + [31003,0.755], + [31005,0.665], + [31007,0.696], + [31009,0.737], + [31011,0.762], + [31013,0.686], + [31015,0.815], + [31017,0.754], + [31019,0.65], + [31021,0.766], + [31023,0.779], + [31025,0.817], + [31027,0.805], + [31029,0.756], + [31031,0.613], + [31033,0.666], + [31035,0.798], + [31037,0.723], + [31039,0.697], + [31041,0.696], + [31043,0.652], + [31045,0.646], + [31047,0.673], + [31049,0.763], + [31051,0.785], + [31053,0.621], + [31055,0.617], + [31057,0.721], + [31059,0.775], + [31061,0.806], + [31063,0.702], + [31065,0.746], + [31067,0.696], + [31069,0.737], + [31071,0.778], + [31073,0.705], + [31075,0.705], + [31077,0.81], + [31079,0.623], + [31081,0.77], + [31083,0.794], + [31085,0.752], + [31087,0.739], + [31089,0.722], + [31091,0.626], + [31093,0.765], + [31095,0.712], + [31097,0.734], + [31099,0.731], + [31101,0.688], + [31103,0.727], + [31105,0.714], + [31107,0.741], + [31109,0.598], + [31111,0.67], + [31113,0.738], + [31115,0.765], + [31117,0.728], + [31119,0.656], + [31121,0.745], + [31123,0.715], + [31125,0.805], + [31127,0.729], + [31129,0.758], + [31131,0.698], + [31133,0.834], + [31135,0.779], + [31137,0.718], + [31139,0.759], + [31141,0.725], + [31143,0.831], + [31145,0.729], + [31147,0.759], + [31149,0.798], + [31151,0.706], + [31153,0.689], + [31155,0.781], + [31157,0.669], + [31159,0.717], + [31161,0.688], + [31163,0.772], + [31165,0.721], + [31167,0.821], + [31169,0.786], + [31171,0.765], + [31173,0.608], + [31175,0.743], + [31177,0.783], + [31179,0.641], + [31181,0.796], + [31183,0.671], + [31185,0.716], + [32001,0.654], + [32003,0.538], + [32005,0.714], + [32007,0.712], + [32009,0.582], + [32011,0.738], + [32013,0.714], + [32015,0.734], + [32017,0.748], + [32019,0.707], + [32021,0.706], + [32023,0.708], + [32027,0.668], + [32029,0.904], + [32031,0.583], + [32033,0.756], + [32510,0.568], + [33001,0.755], + [33003,0.793], + [33005,0.694], + [33007,0.707], + [33009,0.693], + [33011,0.66], + [33013,0.718], + [33015,0.777], + [33017,0.66], + [33019,0.733], + [34001,0.671], + [34003,0.648], + [34005,0.754], + [34007,0.668], + [34009,0.776], + [34011,0.652], + [34013,0.44], + [34015,0.801], + [34017,0.317], + [34019,0.828], + [34021,0.631], + [34023,0.635], + [34025,0.738], + [34027,0.739], + [34029,0.8], + [34031,0.527], + [34033,0.711], + [34035,0.758], + [34037,0.831], + [34039,0.586], + [34041,0.717], + [35001,0.63], + [35003,0.877], + [35005,0.689], + [35006,0.687], + [35007,0.71], + [35009,0.57], + [35011,0.626], + [35013,0.631], + [35015,0.695], + [35017,0.681], + [35019,0.626], + [35021,0.654], + [35023,0.706], + [35025,0.668], + [35027,0.806], + [35028,0.741], + [35029,0.609], + [35031,0.709], + [35033,0.855], + [35035,0.642], + [35037,0.615], + [35039,0.769], + [35041,0.585], + [35043,0.786], + [35045,0.71], + [35047,0.703], + [35049,0.709], + [35051,0.739], + [35053,0.734], + [35055,0.764], + [35057,0.832], + [35059,0.649], + [35061,0.815], + [36001,0.564], + [36003,0.762], + [36005,0.197], + [36007,0.652], + [36009,0.717], + [36011,0.713], + [36013,0.693], + [36015,0.683], + [36017,0.745], + [36019,0.665], + [36021,0.737], + [36023,0.656], + [36025,0.739], + [36027,0.688], + [36029,0.646], + [36031,0.754], + [36033,0.714], + [36035,0.707], + [36037,0.723], + [36039,0.748], + [36041,0.867], + [36043,0.736], + [36045,0.565], + [36047,0.301], + [36049,0.808], + [36051,0.747], + [36053,0.774], + [36055,0.635], + [36057,0.684], + [36059,0.807], + [36061,0.241], + [36063,0.707], + [36065,0.675], + [36067,0.647], + [36069,0.738], + [36071,0.669], + [36073,0.756], + [36075,0.737], + [36077,0.722], + [36079,0.818], + [36081,0.448], + [36083,0.628], + [36085,0.693], + [36087,0.683], + [36089,0.73], + [36091,0.722], + [36093,0.657], + [36095,0.758], + [36097,0.752], + [36099,0.739], + [36101,0.727], + [36103,0.806], + [36105,0.683], + [36107,0.769], + [36109,0.549], + [36111,0.683], + [36113,0.707], + [36115,0.74], + [36117,0.764], + [36119,0.614], + [36121,0.769], + [36123,0.8], + [37001,0.652], + [37003,0.757], + [37005,0.763], + [37007,0.661], + [37009,0.759], + [37011,0.753], + [37013,0.699], + [37015,0.744], + [37017,0.714], + [37019,0.807], + [37021,0.634], + [37023,0.739], + [37025,0.715], + [37027,0.725], + [37029,0.819], + [37031,0.726], + [37033,0.764], + [37035,0.694], + [37037,0.764], + [37039,0.79], + [37041,0.667], + [37043,0.78], + [37045,0.678], + [37047,0.725], + [37049,0.629], + [37051,0.507], + [37053,0.82], + [37055,0.744], + [37057,0.698], + [37059,0.798], + [37061,0.704], + [37063,0.544], + [37065,0.588], + [37067,0.616], + [37069,0.738], + [37071,0.653], + [37073,0.775], + [37075,0.83], + [37077,0.721], + [37079,0.707], + [37081,0.588], + [37083,0.626], + [37085,0.654], + [37087,0.73], + [37089,0.733], + [37091,0.658], + [37093,0.671], + [37095,0.678], + [37097,0.723], + [37099,0.643], + [37101,0.73], + [37103,0.733], + [37105,0.667], + [37107,0.593], + [37109,0.764], + [37111,0.727], + [37113,0.729], + [37115,0.741], + [37117,0.68], + [37119,0.564], + [37121,0.78], + [37123,0.748], + [37125,0.757], + [37127,0.653], + [37129,0.581], + [37131,0.684], + [37133,0.531], + [37135,0.626], + [37137,0.777], + [37139,0.596], + [37141,0.812], + [37143,0.754], + [37145,0.764], + [37147,0.521], + [37149,0.74], + [37151,0.718], + [37153,0.662], + [37155,0.656], + [37157,0.696], + [37159,0.693], + [37161,0.715], + [37163,0.693], + [37165,0.605], + [37167,0.744], + [37169,0.776], + [37171,0.735], + [37173,0.715], + [37175,0.76], + [37177,0.683], + [37179,0.813], + [37181,0.565], + [37183,0.639], + [37185,0.732], + [37187,0.665], + [37189,0.601], + [37191,0.621], + [37193,0.757], + [37195,0.591], + [37197,0.762], + [37199,0.733], + [38001,0.735], + [38003,0.693], + [38005,0.67], + [38007,0.791], + [38009,0.794], + [38011,0.753], + [38013,0.789], + [38015,0.687], + [38017,0.521], + [38019,0.807], + [38021,0.743], + [38023,0.724], + [38025,0.77], + [38027,0.71], + [38029,0.859], + [38031,0.742], + [38033,0.7], + [38035,0.485], + [38037,0.867], + [38039,0.761], + [38041,0.807], + [38043,0.753], + [38045,0.769], + [38047,0.839], + [38049,0.829], + [38051,0.734], + [38053,0.54], + [38055,0.812], + [38057,0.827], + [38059,0.707], + [38061,0.681], + [38063,0.723], + [38065,0.886], + [38067,0.77], + [38069,0.736], + [38071,0.603], + [38073,0.709], + [38075,0.826], + [38077,0.709], + [38079,0.713], + [38081,0.728], + [38083,0.798], + [38085,0.434], + [38087,0.822], + [38089,0.611], + [38091,0.847], + [38093,0.656], + [38095,0.731], + [38097,0.715], + [38099,0.764], + [38101,0.595], + [38103,0.787], + [38105,0.526], + [39001,0.708], + [39003,0.671], + [39005,0.738], + [39007,0.705], + [39009,0.578], + [39011,0.757], + [39013,0.764], + [39015,0.724], + [39017,0.681], + [39019,0.787], + [39021,0.732], + [39023,0.66], + [39025,0.742], + [39027,0.646], + [39029,0.735], + [39031,0.74], + [39033,0.697], + [39035,0.582], + [39037,0.728], + [39039,0.763], + [39041,0.814], + [39043,0.692], + [39045,0.739], + [39047,0.649], + [39049,0.534], + [39051,0.791], + [39053,0.745], + [39055,0.863], + [39057,0.661], + [39059,0.715], + [39061,0.579], + [39063,0.688], + [39065,0.71], + [39067,0.789], + [39069,0.774], + [39071,0.684], + [39073,0.751], + [39075,0.755], + [39077,0.709], + [39079,0.692], + [39081,0.69], + [39083,0.72], + [39085,0.742], + [39087,0.722], + [39089,0.729], + [39091,0.742], + [39093,0.723], + [39095,0.597], + [39097,0.712], + [39099,0.687], + [39101,0.664], + [39103,0.799], + [39105,0.786], + [39107,0.77], + [39109,0.711], + [39111,0.783], + [39113,0.61], + [39115,0.767], + [39117,0.818], + [39119,0.69], + [39121,0.819], + [39123,0.788], + [39125,0.79], + [39127,0.737], + [39129,0.746], + [39131,0.648], + [39133,0.695], + [39135,0.784], + [39137,0.816], + [39139,0.674], + [39141,0.709], + [39143,0.727], + [39145,0.676], + [39147,0.723], + [39149,0.712], + [39151,0.682], + [39153,0.658], + [39155,0.706], + [39157,0.707], + [39159,0.785], + [39161,0.771], + [39163,0.76], + [39165,0.777], + [39167,0.736], + [39169,0.73], + [39171,0.77], + [39173,0.653], + [39175,0.741], + [40001,0.693], + [40003,0.802], + [40005,0.734], + [40007,0.765], + [40009,0.662], + [40011,0.734], + [40013,0.622], + [40015,0.713], + [40017,0.754], + [40019,0.683], + [40021,0.684], + [40023,0.693], + [40025,0.729], + [40027,0.637], + [40029,0.74], + [40031,0.531], + [40033,0.778], + [40035,0.695], + [40037,0.736], + [40039,0.626], + [40041,0.756], + [40043,0.763], + [40045,0.742], + [40047,0.658], + [40049,0.693], + [40051,0.771], + [40053,0.766], + [40055,0.697], + [40057,0.731], + [40059,0.784], + [40061,0.747], + [40063,0.728], + [40065,0.585], + [40067,0.721], + [40069,0.735], + [40071,0.675], + [40073,0.763], + [40075,0.721], + [40077,0.698], + [40079,0.71], + [40081,0.797], + [40083,0.829], + [40085,0.767], + [40087,0.794], + [40089,0.708], + [40091,0.784], + [40093,0.794], + [40095,0.726], + [40097,0.729], + [40099,0.702], + [40101,0.653], + [40103,0.768], + [40105,0.737], + [40107,0.712], + [40109,0.589], + [40111,0.71], + [40113,0.783], + [40115,0.69], + [40117,0.756], + [40119,0.517], + [40121,0.725], + [40123,0.659], + [40125,0.695], + [40127,0.756], + [40129,0.75], + [40131,0.782], + [40133,0.68], + [40135,0.719], + [40137,0.724], + [40139,0.68], + [40141,0.758], + [40143,0.588], + [40145,0.786], + [40147,0.708], + [40149,0.709], + [40151,0.684], + [40153,0.712], + [41001,0.707], + [41003,0.572], + [41005,0.711], + [41007,0.622], + [41009,0.754], + [41011,0.659], + [41013,0.722], + [41015,0.714], + [41017,0.67], + [41019,0.682], + [41021,0.673], + [41023,0.711], + [41025,0.722], + [41027,0.672], + [41029,0.632], + [41031,0.681], + [41033,0.663], + [41035,0.643], + [41037,0.619], + [41039,0.587], + [41041,0.656], + [41043,0.644], + [41045,0.583], + [41047,0.602], + [41049,0.7], + [41051,0.545], + [41053,0.663], + [41055,0.646], + [41057,0.693], + [41059,0.657], + [41061,0.645], + [41063,0.697], + [41065,0.622], + [41067,0.616], + [41069,0.761], + [41071,0.7], + [42001,0.78], + [42003,0.643], + [42005,0.76], + [42007,0.731], + [42009,0.791], + [42011,0.715], + [42013,0.698], + [42015,0.74], + [42017,0.77], + [42019,0.759], + [42021,0.741], + [42023,0.72], + [42025,0.758], + [42027,0.615], + [42029,0.75], + [42031,0.691], + [42033,0.768], + [42035,0.702], + [42037,0.692], + [42039,0.729], + [42041,0.703], + [42043,0.632], + [42045,0.688], + [42047,0.786], + [42049,0.661], + [42051,0.744], + [42053,0.839], + [42055,0.712], + [42057,0.774], + [42059,0.748], + [42061,0.757], + [42063,0.712], + [42065,0.743], + [42067,0.745], + [42069,0.643], + [42071,0.681], + [42073,0.745], + [42075,0.7], + [42077,0.644], + [42079,0.68], + [42081,0.692], + [42083,0.741], + [42085,0.725], + [42087,0.713], + [42089,0.77], + [42091,0.718], + [42093,0.672], + [42095,0.714], + [42097,0.708], + [42099,0.79], + [42101,0.53], + [42103,0.832], + [42105,0.762], + [42107,0.757], + [42109,0.722], + [42111,0.781], + [42113,0.82], + [42115,0.771], + [42117,0.728], + [42119,0.724], + [42121,0.751], + [42123,0.769], + [42125,0.756], + [42127,0.81], + [42129,0.772], + [42131,0.772], + [42133,0.749], + [44001,0.707], + [44003,0.701], + [44005,0.632], + [44007,0.542], + [44009,0.74], + [45001,0.75], + [45003,0.726], + [45005,0.682], + [45007,0.717], + [45009,0.706], + [45011,0.696], + [45013,0.733], + [45015,0.719], + [45017,0.803], + [45019,0.616], + [45021,0.689], + [45023,0.761], + [45025,0.711], + [45027,0.77], + [45029,0.749], + [45031,0.696], + [45033,0.594], + [45035,0.717], + [45037,0.741], + [45039,0.753], + [45041,0.657], + [45043,0.788], + [45045,0.675], + [45047,0.64], + [45049,0.76], + [45051,0.718], + [45053,0.717], + [45055,0.821], + [45057,0.797], + [45059,0.698], + [45061,0.747], + [45063,0.742], + [45065,0.766], + [45067,0.66], + [45069,0.629], + [45071,0.733], + [45073,0.727], + [45075,0.673], + [45077,0.671], + [45079,0.595], + [45081,0.741], + [45083,0.706], + [45085,0.646], + [45087,0.683], + [45089,0.73], + [45091,0.72], + [46003,0.753], + [46005,0.657], + [46007,0.605], + [46009,0.735], + [46011,0.592], + [46013,0.64], + [46015,0.617], + [46017,0.463], + [46019,0.771], + [46021,0.865], + [46023,0.709], + [46025,0.794], + [46027,0.537], + [46029,0.653], + [46031,0.538], + [46033,0.84], + [46035,0.597], + [46037,0.753], + [46039,0.79], + [46041,0.611], + [46043,0.798], + [46045,0.82], + [46047,0.781], + [46049,0.803], + [46051,0.812], + [46053,0.716], + [46055,0.771], + [46057,0.805], + [46059,0.683], + [46061,0.879], + [46063,0.671], + [46065,0.688], + [46067,0.772], + [46069,0.75], + [46071,0.583], + [46073,0.726], + [46075,0.75], + [46077,0.795], + [46079,0.746], + [46081,0.647], + [46083,0.767], + [46085,0.672], + [46087,0.759], + [46089,0.771], + [46091,0.738], + [46093,0.744], + [46095,0.694], + [46097,0.767], + [46099,0.632], + [46101,0.714], + [46102,0.502], + [46103,0.686], + [46105,0.726], + [46107,0.788], + [46109,0.665], + [46111,0.733], + [46115,0.742], + [46117,0.789], + [46119,0.859], + [46121,0.437], + [46123,0.762], + [46125,0.783], + [46127,0.692], + [46129,0.739], + [46135,0.652], + [46137,0.572], + [47001,0.679], + [47003,0.685], + [47005,0.771], + [47007,0.738], + [47009,0.754], + [47011,0.655], + [47013,0.681], + [47015,0.748], + [47017,0.731], + [47019,0.708], + [47021,0.77], + [47023,0.771], + [47025,0.709], + [47027,0.783], + [47029,0.671], + [47031,0.681], + [47033,0.716], + [47035,0.776], + [47037,0.543], + [47039,0.81], + [47041,0.684], + [47043,0.751], + [47045,0.615], + [47047,0.799], + [47049,0.751], + [47051,0.745], + [47053,0.683], + [47055,0.696], + [47057,0.791], + [47059,0.74], + [47061,0.78], + [47063,0.669], + [47065,0.64], + [47067,0.796], + [47069,0.712], + [47071,0.725], + [47073,0.735], + [47075,0.582], + [47077,0.728], + [47079,0.762], + [47081,0.803], + [47083,0.765], + [47085,0.778], + [47087,0.771], + [47089,0.752], + [47091,0.756], + [47093,0.643], + [47095,0.547], + [47097,0.561], + [47099,0.753], + [47101,0.78], + [47103,0.751], + [47105,0.778], + [47107,0.735], + [47109,0.727], + [47111,0.744], + [47113,0.623], + [47115,0.749], + [47117,0.718], + [47119,0.699], + [47121,0.787], + [47123,0.767], + [47125,0.595], + [47127,0.848], + [47129,0.816], + [47131,0.649], + [47133,0.797], + [47135,0.824], + [47137,0.817], + [47139,0.737], + [47141,0.615], + [47143,0.712], + [47145,0.772], + [47147,0.74], + [47149,0.652], + [47151,0.7], + [47153,0.747], + [47155,0.694], + [47157,0.551], + [47159,0.739], + [47161,0.75], + [47163,0.718], + [47165,0.736], + [47167,0.713], + [47169,0.788], + [47171,0.719], + [47173,0.754], + [47175,0.815], + [47177,0.695], + [47179,0.644], + [47181,0.774], + [47183,0.653], + [47185,0.8], + [47187,0.806], + [47189,0.768], + [48001,0.696], + [48003,0.741], + [48005,0.662], + [48007,0.802], + [48009,0.837], + [48011,0.88], + [48013,0.753], + [48015,0.762], + [48017,0.746], + [48019,0.85], + [48021,0.777], + [48023,0.724], + [48025,0.627], + [48027,0.543], + [48029,0.585], + [48031,0.786], + [48033,0.758], + [48035,0.774], + [48037,0.635], + [48039,0.721], + [48041,0.471], + [48043,0.578], + [48045,0.693], + [48047,0.613], + [48049,0.725], + [48051,0.782], + [48053,0.772], + [48055,0.674], + [48057,0.728], + [48059,0.821], + [48061,0.659], + [48063,0.724], + [48065,0.81], + [48067,0.793], + [48069,0.645], + [48071,0.829], + [48073,0.719], + [48075,0.599], + [48077,0.844], + [48079,0.784], + [48081,0.741], + [48083,0.746], + [48085,0.65], + [48087,0.753], + [48089,0.824], + [48091,0.749], + [48093,0.8], + [48095,0.752], + [48097,0.693], + [48099,0.579], + [48101,0.562], + [48103,0.856], + [48105,0.739], + [48107,0.753], + [48109,0.667], + [48111,0.644], + [48113,0.5], + [48115,0.693], + [48117,0.64], + [48119,0.782], + [48121,0.651], + [48123,0.728], + [48125,0.767], + [48127,0.662], + [48129,0.703], + [48131,0.655], + [48133,0.766], + [48135,0.649], + [48137,0.856], + [48139,0.744], + [48141,0.611], + [48143,0.634], + [48145,0.724], + [48147,0.732], + [48149,0.817], + [48151,0.736], + [48153,0.749], + [48155,0.831], + [48157,0.772], + [48159,0.787], + [48161,0.774], + [48163,0.69], + [48165,0.773], + [48167,0.675], + [48169,0.705], + [48171,0.724], + [48173,0.658], + [48175,0.8], + [48177,0.673], + [48179,0.735], + [48181,0.676], + [48183,0.591], + [48185,0.765], + [48187,0.767], + [48189,0.623], + [48191,0.653], + [48193,0.819], + [48195,0.705], + [48197,0.679], + [48199,0.812], + [48201,0.546], + [48203,0.723], + [48205,0.627], + [48207,0.756], + [48209,0.623], + [48211,0.713], + [48213,0.752], + [48215,0.68], + [48217,0.726], + [48219,0.705], + [48221,0.773], + [48223,0.696], + [48225,0.7], + [48227,0.654], + [48229,0.719], + [48231,0.689], + [48233,0.803], + [48235,0.776], + [48237,0.813], + [48239,0.696], + [48241,0.776], + [48243,0.816], + [48245,0.611], + [48247,0.716], + [48249,0.706], + [48251,0.733], + [48253,0.746], + [48255,0.745], + [48257,0.766], + [48259,0.741], + [48261,0.234], + [48263,0.696], + [48265,0.707], + [48267,0.762], + [48269,0.338], + [48271,0.766], + [48273,0.528], + [48275,0.829], + [48277,0.645], + [48279,0.715], + [48281,0.774], + [48283,0.687], + [48285,0.743], + [48287,0.806], + [48289,0.774], + [48291,0.755], + [48293,0.741], + [48295,0.738], + [48297,0.82], + [48299,0.781], + [48301,0.633], + [48303,0.552], + [48305,0.683], + [48307,0.722], + [48309,0.592], + [48311,0.759], + [48313,0.742], + [48315,0.773], + [48317,0.738], + [48319,0.706], + [48321,0.707], + [48323,0.657], + [48325,0.804], + [48327,0.691], + [48329,0.669], + [48331,0.714], + [48333,0.851], + [48335,0.79], + [48337,0.724], + [48339,0.71], + [48341,0.658], + [48343,0.73], + [48345,0.683], + [48347,0.566], + [48349,0.689], + [48351,0.846], + [48353,0.672], + [48355,0.58], + [48357,0.734], + [48359,0.785], + [48361,0.753], + [48363,0.727], + [48365,0.767], + [48367,0.788], + [48369,0.669], + [48371,0.722], + [48373,0.76], + [48375,0.552], + [48377,0.578], + [48379,0.777], + [48381,0.708], + [48383,0.674], + [48385,0.765], + [48387,0.766], + [48389,0.725], + [48391,0.728], + [48393,0.797], + [48395,0.761], + [48397,0.818], + [48399,0.711], + [48401,0.778], + [48403,0.882], + [48405,0.775], + [48407,0.806], + [48409,0.683], + [48411,0.684], + [48413,0.789], + [48415,0.752], + [48417,0.796], + [48419,0.736], + [48421,0.726], + [48423,0.664], + [48425,0.803], + [48427,0.751], + [48429,0.821], + [48431,0.856], + [48433,0.755], + [48435,0.692], + [48437,0.71], + [48439,0.605], + [48441,0.584], + [48443,0.931], + [48445,0.696], + [48447,0.729], + [48449,0.67], + [48451,0.635], + [48453,0.524], + [48455,0.774], + [48457,0.84], + [48459,0.788], + [48461,0.73], + [48463,0.733], + [48465,0.635], + [48467,0.78], + [48469,0.662], + [48471,0.514], + [48473,0.683], + [48475,0.715], + [48477,0.741], + [48479,0.622], + [48481,0.67], + [48483,0.666], + [48485,0.603], + [48487,0.607], + [48489,0.705], + [48491,0.684], + [48493,0.844], + [48495,0.796], + [48497,0.779], + [48499,0.802], + [48501,0.78], + [48503,0.756], + [48505,0.748], + [48507,0.72], + [49001,0.741], + [49003,0.778], + [49005,0.63], + [49007,0.737], + [49009,0.871], + [49011,0.77], + [49013,0.751], + [49015,0.769], + [49017,0.795], + [49019,0.651], + [49021,0.64], + [49023,0.786], + [49025,0.774], + [49027,0.745], + [49029,0.853], + [49031,0.836], + [49033,0.717], + [49035,0.671], + [49037,0.806], + [49039,0.777], + [49041,0.781], + [49043,0.774], + [49045,0.809], + [49047,0.759], + [49049,0.676], + [49051,0.73], + [49053,0.704], + [49055,0.739], + [49057,0.734], + [50001,0.76], + [50003,0.74], + [50005,0.731], + [50007,0.624], + [50009,0.812], + [50011,0.754], + [50013,0.84], + [50015,0.732], + [50017,0.805], + [50019,0.782], + [50021,0.714], + [50023,0.704], + [50025,0.673], + [50027,0.738], + [51001,0.668], + [51003,0.633], + [51005,0.762], + [51007,0.844], + [51009,0.771], + [51011,0.778], + [51013,0.427], + [51015,0.793], + [51017,0.753], + [51019,0.821], + [51021,0.814], + [51023,0.863], + [51025,0.707], + [51027,0.773], + [51029,0.752], + [51031,0.747], + [51033,0.792], + [51035,0.783], + [51036,0.839], + [51037,0.713], + [51041,0.758], + [51043,0.75], + [51045,0.764], + [51047,0.727], + [51049,0.739], + [51051,0.757], + [51053,0.772], + [51057,0.671], + [51059,0.68], + [51061,0.783], + [51063,0.811], + [51065,0.85], + [51067,0.817], + [51069,0.776], + [51071,0.751], + [51073,0.782], + [51075,0.849], + [51077,0.813], + [51079,0.776], + [51081,0.733], + [51083,0.741], + [51085,0.825], + [51087,0.627], + [51089,0.719], + [51091,0.829], + [51093,0.758], + [51095,0.764], + [51097,0.835], + [51099,0.788], + [51101,0.874], + [51103,0.759], + [51105,0.708], + [51107,0.78], + [51109,0.8], + [51111,0.718], + [51113,0.745], + [51115,0.85], + [51117,0.711], + [51119,0.787], + [51121,0.554], + [51125,0.764], + [51127,0.865], + [51131,0.652], + [51133,0.892], + [51135,0.647], + [51137,0.788], + [51139,0.711], + [51141,0.79], + [51143,0.754], + [51145,0.901], + [51147,0.644], + [51149,0.676], + [51153,0.733], + [51155,0.714], + [51157,0.742], + [51159,0.699], + [51161,0.748], + [51163,0.752], + [51165,0.745], + [51167,0.761], + [51169,0.774], + [51171,0.709], + [51173,0.715], + [51175,0.748], + [51177,0.781], + [51179,0.774], + [51181,0.743], + [51183,0.692], + [51185,0.745], + [51187,0.767], + [51191,0.752], + [51193,0.732], + [51195,0.666], + [51197,0.78], + [51199,0.713], + [51510,0.433], + [51520,0.604], + [51530,0.68], + [51540,0.428], + [51550,0.714], + [51570,0.629], + [51580,0.745], + [51590,0.515], + [51595,0.401], + [51600,0.7], + [51610,0.583], + [51620,0.516], + [51630,0.355], + [51640,0.681], + [51650,0.557], + [51660,0.396], + [51670,0.467], + [51678,0.524], + [51680,0.487], + [51683,0.661], + [51685,0.659], + [51690,0.559], + [51700,0.489], + [51710,0.434], + [51720,0.501], + [51730,0.388], + [51735,0.814], + [51740,0.55], + [51750,0.466], + [51760,0.426], + [51770,0.515], + [51775,0.636], + [51790,0.573], + [51800,0.687], + [51810,0.637], + [51820,0.577], + [51830,0.493], + [51840,0.443], + [53001,0.631], + [53003,0.707], + [53005,0.688], + [53007,0.644], + [53009,0.704], + [53011,0.67], + [53013,0.679], + [53015,0.661], + [53017,0.687], + [53019,0.72], + [53021,0.685], + [53023,0.715], + [53025,0.625], + [53027,0.67], + [53029,0.715], + [53031,0.743], + [53033,0.569], + [53035,0.678], + [53037,0.591], + [53039,0.68], + [53041,0.706], + [53043,0.78], + [53045,0.774], + [53047,0.658], + [53049,0.8], + [53051,0.779], + [53053,0.621], + [53055,0.746], + [53057,0.686], + [53059,0.745], + [53061,0.671], + [53063,0.624], + [53065,0.781], + [53067,0.654], + [53069,0.867], + [53071,0.648], + [53073,0.619], + [53075,0.436], + [53077,0.627], + [54001,0.72], + [54003,0.746], + [54005,0.766], + [54007,0.807], + [54009,0.762], + [54011,0.618], + [54013,0.789], + [54015,0.814], + [54017,0.877], + [54019,0.773], + [54021,0.689], + [54023,0.815], + [54025,0.725], + [54027,0.763], + [54029,0.727], + [54031,0.738], + [54033,0.739], + [54035,0.767], + [54037,0.764], + [54039,0.691], + [54041,0.715], + [54043,0.778], + [54045,0.726], + [54047,0.787], + [54049,0.746], + [54051,0.801], + [54053,0.795], + [54055,0.695], + [54057,0.76], + [54059,0.735], + [54061,0.568], + [54063,0.787], + [54065,0.833], + [54067,0.794], + [54069,0.698], + [54071,0.805], + [54073,0.825], + [54075,0.816], + [54077,0.829], + [54079,0.818], + [54081,0.734], + [54083,0.715], + [54085,0.798], + [54087,0.793], + [54089,0.762], + [54091,0.78], + [54093,0.785], + [54095,0.827], + [54097,0.737], + [54099,0.735], + [54101,0.726], + [54103,0.794], + [54105,0.837], + [54107,0.715], + [54109,0.842], + [55001,0.833], + [55003,0.683], + [55005,0.747], + [55007,0.832], + [55009,0.648], + [55011,0.764], + [55013,0.822], + [55015,0.806], + [55017,0.731], + [55019,0.784], + [55021,0.744], + [55023,0.757], + [55025,0.582], + [55027,0.697], + [55029,0.799], + [55031,0.675], + [55033,0.682], + [55035,0.645], + [55037,0.862], + [55039,0.703], + [55041,0.762], + [55043,0.704], + [55045,0.751], + [55047,0.761], + [55049,0.738], + [55051,0.775], + [55053,0.739], + [55055,0.702], + [55057,0.762], + [55059,0.661], + [55061,0.793], + [55063,0.63], + [55065,0.764], + [55067,0.771], + [55069,0.781], + [55071,0.754], + [55073,0.722], + [55075,0.747], + [55077,0.814], + [55078,0.68], + [55079,0.495], + [55081,0.697], + [55083,0.827], + [55085,0.832], + [55087,0.711], + [55089,0.759], + [55091,0.798], + [55093,0.722], + [55095,0.789], + [55097,0.69], + [55099,0.778], + [55101,0.676], + [55103,0.747], + [55105,0.684], + [55107,0.791], + [55109,0.768], + [55111,0.689], + [55113,0.74], + [55115,0.773], + [55117,0.7], + [55119,0.766], + [55121,0.73], + [55123,0.778], + [55125,0.777], + [55127,0.686], + [55129,0.8], + [55131,0.775], + [55133,0.763], + [55135,0.737], + [55137,0.816], + [55139,0.652], + [55141,0.724], + [56001,0.51], + [56003,0.732], + [56005,0.734], + [56007,0.696], + [56009,0.737], + [56011,0.818], + [56013,0.705], + [56015,0.737], + [56017,0.752], + [56019,0.699], + [56021,0.698], + [56023,0.824], + [56025,0.682], + [56027,0.775], + [56029,0.732], + [56031,0.748], + [56033,0.688], + [56035,0.821], + [56037,0.762], + [56039,0.604], + [56041,0.771], + [56043,0.765], + [56045,0.83] + ] +} diff --git a/data/regional/united-states/infrastructure/housing/us-housing-singleunits-2019.json b/data/regional/united-states/infrastructure/housing/us-housing-singleunits-2019.json new file mode 100644 index 0000000..ff994b2 --- /dev/null +++ b/data/regional/united-states/infrastructure/housing/us-housing-singleunits-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Single Detached Homes", + "description" : "Percent of housing units in 1-unit structures (single detached homes).", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "infrastructure", + "tags" : ["regional","us","counties","infrastructure","housing"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.housing.singleunits.2019"], + [1001,0.173], + [1003,0.115], + [1005,0.261], + [1007,0.297], + [1009,0.24], + [1011,0.393], + [1013,0.249], + [1015,0.138], + [1017,0.134], + [1019,0.246], + [1021,0.334], + [1023,0.291], + [1025,0.262], + [1027,0.22], + [1029,0.269], + [1031,0.126], + [1033,0.083], + [1035,0.274], + [1037,0.31], + [1039,0.204], + [1041,0.259], + [1043,0.198], + [1045,0.164], + [1047,0.197], + [1049,0.231], + [1051,0.152], + [1053,0.163], + [1055,0.106], + [1057,0.206], + [1059,0.136], + [1061,0.255], + [1063,0.313], + [1065,0.354], + [1067,0.234], + [1069,0.118], + [1071,0.198], + [1073,0.027], + [1075,0.166], + [1077,0.087], + [1079,0.219], + [1081,0.166], + [1083,0.115], + [1085,0.382], + [1087,0.225], + [1089,0.043], + [1091,0.273], + [1093,0.195], + [1095,0.129], + [1097,0.075], + [1099,0.204], + [1101,0.038], + [1103,0.107], + [1105,0.245], + [1107,0.245], + [1109,0.209], + [1111,0.233], + [1113,0.143], + [1115,0.219], + [1117,0.07], + [1119,0.319], + [1121,0.233], + [1123,0.198], + [1125,0.099], + [1127,0.273], + [1129,0.274], + [1131,0.414], + [1133,0.25], + [2013,0.056], + [2016,0.014], + [2020,0.048], + [2050,0.031], + [2060,0.032], + [2068,0.069], + [2070,0.015], + [2090,0.033], + [2100,0.072], + [2105,0.048], + [2110,0.084], + [2122,0.047], + [2130,0.035], + [2150,0.041], + [2158,0.014], + [2164,0.007], + [2170,0.03], + [2180,0.007], + [2185,0.003], + [2188,0.016], + [2195,0.117], + [2198,0.199], + [2220,0.108], + [2230,0.08], + [2240,0.059], + [2261,0.17], + [2275,0.172], + [2282,0.059], + [2290,0.009], + [4001,0.243], + [4003,0.203], + [4005,0.137], + [4007,0.232], + [4009,0.225], + [4011,0.302], + [4012,0.594], + [4013,0.045], + [4015,0.249], + [4017,0.216], + [4019,0.1], + [4021,0.166], + [4023,0.048], + [4025,0.185], + [4027,0.242], + [5001,0.131], + [5003,0.188], + [5005,0.12], + [5007,0.044], + [5009,0.098], + [5011,0.143], + [5013,0.235], + [5015,0.144], + [5017,0.172], + [5019,0.16], + [5021,0.088], + [5023,0.214], + [5025,0.269], + [5027,0.193], + [5029,0.174], + [5031,0.057], + [5033,0.114], + [5035,0.068], + [5037,0.171], + [5039,0.217], + [5041,0.129], + [5043,0.239], + [5045,0.109], + [5047,0.127], + [5049,0.189], + [5051,0.138], + [5053,0.262], + [5055,0.125], + [5057,0.192], + [5059,0.233], + [5061,0.158], + [5063,0.18], + [5065,0.15], + [5067,0.129], + [5069,0.114], + [5071,0.155], + [5073,0.204], + [5075,0.1], + [5077,0.113], + [5079,0.357], + [5081,0.183], + [5083,0.108], + [5085,0.145], + [5087,0.183], + [5089,0.164], + [5091,0.125], + [5093,0.07], + [5095,0.111], + [5097,0.303], + [5099,0.245], + [5101,0.108], + [5103,0.127], + [5105,0.224], + [5107,0.097], + [5109,0.177], + [5111,0.119], + [5113,0.195], + [5115,0.099], + [5117,0.245], + [5119,0.043], + [5121,0.123], + [5123,0.148], + [5125,0.147], + [5127,0.213], + [5129,0.211], + [5131,0.032], + [5133,0.213], + [5135,0.139], + [5137,0.305], + [5139,0.204], + [5141,0.247], + [5143,0.046], + [5145,0.178], + [5147,0.12], + [5149,0.121], + [6001,0.013], + [6003,0.034], + [6005,0.081], + [6007,0.123], + [6009,0.085], + [6011,0.078], + [6013,0.018], + [6015,0.206], + [6017,0.06], + [6019,0.037], + [6021,0.116], + [6023,0.089], + [6025,0.078], + [6027,0.258], + [6029,0.066], + [6031,0.04], + [6033,0.222], + [6035,0.127], + [6037,0.017], + [6039,0.06], + [6041,0.014], + [6043,0.184], + [6045,0.096], + [6047,0.06], + [6049,0.113], + [6051,0.138], + [6053,0.044], + [6055,0.065], + [6057,0.066], + [6059,0.028], + [6061,0.028], + [6063,0.136], + [6065,0.08], + [6067,0.024], + [6069,0.038], + [6071,0.055], + [6073,0.035], + [6075,0.002], + [6077,0.034], + [6079,0.074], + [6081,0.011], + [6083,0.044], + [6085,0.03], + [6087,0.06], + [6089,0.115], + [6091,0.114], + [6093,0.113], + [6095,0.028], + [6097,0.051], + [6099,0.042], + [6101,0.054], + [6103,0.199], + [6105,0.216], + [6107,0.062], + [6109,0.123], + [6111,0.037], + [6113,0.044], + [6115,0.08], + [8001,0.062], + [8003,0.146], + [8005,0.011], + [8007,0.123], + [8009,0.09], + [8011,0.152], + [8013,0.029], + [8014,0.021], + [8015,0.092], + [8017,0.116], + [8019,0.063], + [8021,0.209], + [8023,0.202], + [8025,0.17], + [8027,0.088], + [8029,0.149], + [8031,0.004], + [8033,0.229], + [8035,0.004], + [8037,0.093], + [8039,0.036], + [8041,0.031], + [8043,0.132], + [8045,0.105], + [8047,0.023], + [8049,0.1], + [8051,0.071], + [8053,0.04], + [8055,0.159], + [8057,0.269], + [8059,0.01], + [8061,0.083], + [8063,0.126], + [8065,0.18], + [8067,0.149], + [8069,0.038], + [8071,0.089], + [8073,0.148], + [8075,0.086], + [8077,0.099], + [8079,0.104], + [8081,0.195], + [8083,0.195], + [8085,0.188], + [8087,0.108], + [8089,0.071], + [8091,0.101], + [8093,0.035], + [8095,0.069], + [8097,0.077], + [8099,0.096], + [8101,0.053], + [8103,0.086], + [8105,0.139], + [8107,0.075], + [8109,0.213], + [8111,0.031], + [8113,0.032], + [8115,0.065], + [8117,0.011], + [8119,0.075], + [8121,0.081], + [8123,0.07], + [8125,0.095], + [9001,0.004], + [9003,0.005], + [9005,0.003], + [9007,0.011], + [9009,0.005], + [9011,0.026], + [9013,0.011], + [9015,0.022], + [10001,0.119], + [10003,0.02], + [10005,0.143], + [11001,0.001], + [12001,0.078], + [12003,0.363], + [12005,0.131], + [12007,0.333], + [12009,0.069], + [12011,0.026], + [12013,0.38], + [12015,0.089], + [12017,0.202], + [12019,0.126], + [12021,0.051], + [12023,0.378], + [12027,0.3], + [12029,0.509], + [12031,0.044], + [12033,0.068], + [12035,0.045], + [12037,0.241], + [12039,0.283], + [12041,0.496], + [12043,0.496], + [12045,0.209], + [12047,0.397], + [12049,0.235], + [12051,0.394], + [12053,0.156], + [12055,0.209], + [12057,0.065], + [12059,0.34], + [12061,0.067], + [12063,0.309], + [12065,0.372], + [12067,0.449], + [12069,0.165], + [12071,0.079], + [12073,0.074], + [12075,0.483], + [12077,0.436], + [12079,0.381], + [12081,0.124], + [12083,0.185], + [12085,0.084], + [12086,0.014], + [12087,0.121], + [12089,0.201], + [12091,0.055], + [12093,0.318], + [12095,0.038], + [12097,0.08], + [12099,0.027], + [12101,0.163], + [12103,0.075], + [12105,0.191], + [12107,0.418], + [12109,0.075], + [12111,0.065], + [12113,0.097], + [12115,0.079], + [12117,0.027], + [12119,0.124], + [12121,0.504], + [12123,0.306], + [12125,0.422], + [12127,0.087], + [12129,0.268], + [12131,0.193], + [12133,0.36], + [13001,0.358], + [13003,0.421], + [13005,0.363], + [13007,0.322], + [13009,0.176], + [13011,0.276], + [13013,0.07], + [13015,0.108], + [13017,0.21], + [13019,0.315], + [13021,0.028], + [13023,0.2], + [13025,0.514], + [13027,0.296], + [13029,0.14], + [13031,0.176], + [13033,0.333], + [13035,0.133], + [13037,0.308], + [13039,0.107], + [13043,0.375], + [13045,0.101], + [13047,0.108], + [13049,0.407], + [13051,0.039], + [13053,0.197], + [13055,0.197], + [13057,0.036], + [13059,0.048], + [13061,0.413], + [13063,0.029], + [13065,0.343], + [13067,0.013], + [13069,0.323], + [13071,0.309], + [13073,0.042], + [13075,0.322], + [13077,0.031], + [13079,0.417], + [13081,0.23], + [13083,0.213], + [13085,0.091], + [13087,0.196], + [13089,0.005], + [13091,0.324], + [13093,0.224], + [13095,0.044], + [13097,0.03], + [13099,0.255], + [13101,0.559], + [13103,0.207], + [13105,0.252], + [13107,0.262], + [13109,0.323], + [13111,0.125], + [13113,0.027], + [13115,0.08], + [13117,0.037], + [13119,0.296], + [13121,0.007], + [13123,0.239], + [13125,0.383], + [13127,0.109], + [13129,0.119], + [13131,0.279], + [13133,0.176], + [13135,0.016], + [13137,0.153], + [13139,0.093], + [13141,0.329], + [13143,0.164], + [13145,0.07], + [13147,0.246], + [13149,0.343], + [13151,0.029], + [13153,0.07], + [13155,0.268], + [13157,0.14], + [13159,0.178], + [13161,0.305], + [13163,0.287], + [13165,0.357], + [13167,0.317], + [13169,0.228], + [13171,0.103], + [13173,0.256], + [13175,0.246], + [13177,0.12], + [13179,0.136], + [13181,0.31], + [13183,0.402], + [13185,0.097], + [13187,0.203], + [13189,0.221], + [13191,0.307], + [13193,0.308], + [13195,0.277], + [13197,0.381], + [13199,0.175], + [13201,0.207], + [13205,0.239], + [13207,0.191], + [13209,0.349], + [13211,0.145], + [13213,0.343], + [13215,0.011], + [13217,0.048], + [13219,0.049], + [13221,0.297], + [13223,0.031], + [13225,0.132], + [13227,0.158], + [13229,0.333], + [13231,0.114], + [13233,0.084], + [13235,0.152], + [13237,0.325], + [13239,0.471], + [13241,0.169], + [13243,0.213], + [13245,0.072], + [13247,0.036], + [13249,0.334], + [13251,0.335], + [13253,0.26], + [13255,0.062], + [13257,0.216], + [13259,0.357], + [13261,0.132], + [13263,0.328], + [13265,0.346], + [13267,0.352], + [13269,0.349], + [13271,0.285], + [13273,0.15], + [13275,0.166], + [13277,0.221], + [13279,0.203], + [13281,0.133], + [13283,0.412], + [13285,0.065], + [13287,0.18], + [13289,0.315], + [13291,0.137], + [13293,0.155], + [13295,0.114], + [13297,0.074], + [13299,0.178], + [13301,0.353], + [13303,0.336], + [13305,0.276], + [13307,0.461], + [13309,0.26], + [13311,0.2], + [13313,0.144], + [13315,0.298], + [13317,0.173], + [13319,0.276], + [13321,0.321], + [15001,0.002], + [15003,0.002], + [15005,0], + [15007,0.001], + [15009,0.005], + [16001,0.037], + [16003,0.114], + [16005,0.081], + [16007,0.06], + [16009,0.178], + [16011,0.12], + [16013,0.086], + [16015,0.15], + [16017,0.132], + [16019,0.055], + [16021,0.11], + [16023,0.138], + [16025,0.147], + [16027,0.077], + [16029,0.081], + [16031,0.115], + [16033,0.286], + [16035,0.216], + [16037,0.178], + [16039,0.106], + [16041,0.046], + [16043,0.151], + [16045,0.113], + [16047,0.191], + [16049,0.153], + [16051,0.095], + [16053,0.115], + [16055,0.076], + [16057,0.097], + [16059,0.15], + [16061,0.157], + [16063,0.263], + [16065,0.052], + [16067,0.079], + [16069,0.089], + [16071,0.041], + [16073,0.229], + [16075,0.137], + [16077,0.309], + [16079,0.106], + [16081,0.113], + [16083,0.065], + [16085,0.057], + [16087,0.113], + [17001,0.034], + [17003,0.134], + [17005,0.099], + [17007,0.049], + [17009,0.094], + [17011,0.024], + [17013,0.116], + [17015,0.039], + [17017,0.117], + [17019,0.042], + [17021,0.045], + [17023,0.093], + [17025,0.213], + [17027,0.077], + [17029,0.049], + [17031,0.007], + [17033,0.097], + [17035,0.11], + [17037,0.022], + [17039,0.045], + [17041,0.054], + [17043,0.002], + [17045,0.051], + [17047,0.183], + [17049,0.078], + [17051,0.133], + [17053,0.022], + [17055,0.117], + [17057,0.033], + [17059,0.214], + [17061,0.089], + [17063,0.039], + [17065,0.192], + [17067,0.045], + [17069,0.172], + [17071,0.095], + [17073,0.017], + [17075,0.035], + [17077,0.099], + [17079,0.101], + [17081,0.161], + [17083,0.052], + [17085,0.032], + [17087,0.178], + [17089,0.006], + [17091,0.06], + [17093,0], + [17095,0.036], + [17097,0.017], + [17099,0.028], + [17101,0.143], + [17103,0.037], + [17105,0.056], + [17107,0.035], + [17109,0.044], + [17111,0.007], + [17113,0.036], + [17115,0.024], + [17117,0.075], + [17119,0.026], + [17121,0.176], + [17123,0.02], + [17125,0.069], + [17127,0.186], + [17129,0.041], + [17131,0.029], + [17133,0.025], + [17135,0.063], + [17137,0.061], + [17139,0.034], + [17141,0.029], + [17143,0.015], + [17145,0.11], + [17147,0.034], + [17149,0.081], + [17151,0.143], + [17153,0.18], + [17155,0.036], + [17157,0.108], + [17159,0.094], + [17161,0.024], + [17163,0.057], + [17165,0.133], + [17167,0.045], + [17169,0.112], + [17171,0.094], + [17173,0.087], + [17175,0.027], + [17177,0.042], + [17179,0.017], + [17181,0.146], + [17183,0.048], + [17185,0.102], + [17187,0.023], + [17189,0.091], + [17191,0.225], + [17193,0.142], + [17195,0.026], + [17197,0.012], + [17199,0.093], + [17201,0.016], + [17203,0.025], + [18001,0.025], + [18003,0.029], + [18005,0.056], + [18007,0.024], + [18009,0.053], + [18011,0.031], + [18013,0.042], + [18015,0.052], + [18017,0.045], + [18019,0.055], + [18021,0.088], + [18023,0.043], + [18025,0.237], + [18027,0.057], + [18029,0.034], + [18031,0.055], + [18033,0.082], + [18035,0.04], + [18037,0.036], + [18039,0.067], + [18041,0.045], + [18043,0.02], + [18045,0.083], + [18047,0.095], + [18049,0.087], + [18051,0.111], + [18053,0.053], + [18055,0.179], + [18057,0.015], + [18059,0.016], + [18061,0.124], + [18063,0.01], + [18065,0.041], + [18067,0.029], + [18069,0.037], + [18071,0.08], + [18073,0.039], + [18075,0.06], + [18077,0.094], + [18079,0.169], + [18081,0.028], + [18083,0.086], + [18085,0.1], + [18087,0.07], + [18089,0.013], + [18091,0.038], + [18093,0.111], + [18095,0.048], + [18097,0.016], + [18099,0.057], + [18101,0.139], + [18103,0.096], + [18105,0.059], + [18107,0.05], + [18109,0.068], + [18111,0.044], + [18113,0.078], + [18115,0.112], + [18117,0.176], + [18119,0.209], + [18121,0.125], + [18123,0.108], + [18125,0.157], + [18127,0.043], + [18129,0.062], + [18131,0.127], + [18133,0.088], + [18135,0.059], + [18137,0.066], + [18139,0.038], + [18141,0.014], + [18143,0.164], + [18145,0.035], + [18147,0.099], + [18149,0.069], + [18151,0.105], + [18153,0.124], + [18155,0.166], + [18157,0.027], + [18159,0.088], + [18161,0.119], + [18163,0.022], + [18165,0.077], + [18167,0.029], + [18169,0.049], + [18171,0.047], + [18173,0.045], + [18175,0.177], + [18177,0.034], + [18179,0.055], + [18181,0.066], + [18183,0.05], + [19001,0.032], + [19003,0.041], + [19005,0.082], + [19007,0.072], + [19009,0.013], + [19011,0.022], + [19013,0.036], + [19015,0.037], + [19017,0.012], + [19019,0.048], + [19021,0.032], + [19023,0.024], + [19025,0.008], + [19027,0.009], + [19029,0.019], + [19031,0.044], + [19033,0.017], + [19035,0.011], + [19037,0.023], + [19039,0.041], + [19041,0.015], + [19043,0.038], + [19045,0.021], + [19047,0.055], + [19049,0.024], + [19051,0.039], + [19053,0.077], + [19055,0.038], + [19057,0.051], + [19059,0.046], + [19061,0.039], + [19063,0.036], + [19065,0.029], + [19067,0.017], + [19069,0.02], + [19071,0.033], + [19073,0.013], + [19075,0.033], + [19077,0.02], + [19079,0.024], + [19081,0.013], + [19083,0.022], + [19085,0.036], + [19087,0.052], + [19089,0.027], + [19091,0.026], + [19093,0.028], + [19095,0.036], + [19097,0.081], + [19099,0.041], + [19101,0.092], + [19103,0.048], + [19105,0.063], + [19107,0.029], + [19109,0.003], + [19111,0.055], + [19113,0.039], + [19115,0.12], + [19117,0.039], + [19119,0.015], + [19121,0.042], + [19123,0.063], + [19125,0.042], + [19127,0.027], + [19129,0.031], + [19131,0.026], + [19133,0.033], + [19135,0.128], + [19137,0.016], + [19139,0.068], + [19141,0.014], + [19143,0.008], + [19145,0.026], + [19147,0.006], + [19149,0.039], + [19151,0.022], + [19153,0.021], + [19155,0.039], + [19157,0.035], + [19159,0.071], + [19161,0.007], + [19163,0.022], + [19165,0.01], + [19167,0.031], + [19169,0.038], + [19171,0.035], + [19173,0.047], + [19175,0.05], + [19177,0.068], + [19179,0.053], + [19181,0.03], + [19183,0.042], + [19185,0.08], + [19187,0.031], + [19189,0.004], + [19191,0.029], + [19193,0.033], + [19195,0.014], + [19197,0.009], + [20001,0.081], + [20003,0.074], + [20005,0.045], + [20007,0.047], + [20009,0.066], + [20011,0.068], + [20013,0.027], + [20015,0.063], + [20017,0.088], + [20019,0.122], + [20021,0.099], + [20023,0.051], + [20025,0.079], + [20027,0.016], + [20029,0.017], + [20031,0.096], + [20033,0.033], + [20035,0.085], + [20037,0.06], + [20039,0.06], + [20041,0.054], + [20043,0.085], + [20045,0.018], + [20047,0.063], + [20049,0.119], + [20051,0.037], + [20053,0.037], + [20055,0.138], + [20057,0.114], + [20059,0.107], + [20061,0.044], + [20063,0.046], + [20065,0.079], + [20067,0.193], + [20069,0.09], + [20071,0.139], + [20073,0.06], + [20075,0.083], + [20077,0.026], + [20079,0.028], + [20081,0.264], + [20083,0.035], + [20085,0.065], + [20087,0.056], + [20089,0.035], + [20091,0.006], + [20093,0.188], + [20095,0.054], + [20097,0.04], + [20099,0.043], + [20101,0.049], + [20103,0.017], + [20105,0.05], + [20107,0.135], + [20109,0.075], + [20111,0.045], + [20113,0.04], + [20115,0.045], + [20117,0.033], + [20119,0.097], + [20121,0.046], + [20123,0.013], + [20125,0.074], + [20127,0.059], + [20129,0.083], + [20131,0.036], + [20133,0.067], + [20135,0.044], + [20137,0.039], + [20139,0.112], + [20141,0.022], + [20143,0.047], + [20145,0.036], + [20147,0.061], + [20149,0.08], + [20151,0.042], + [20153,0.028], + [20155,0.041], + [20157,0.019], + [20159,0.029], + [20161,0.046], + [20163,0.028], + [20165,0.063], + [20167,0.026], + [20169,0.031], + [20171,0.112], + [20173,0.033], + [20175,0.149], + [20177,0.022], + [20179,0.013], + [20181,0.056], + [20183,0.014], + [20185,0.042], + [20187,0.274], + [20189,0.201], + [20191,0.095], + [20193,0.094], + [20195,0.016], + [20197,0.031], + [20199,0.068], + [20201,0.028], + [20203,0.116], + [20205,0.131], + [20207,0.072], + [20209,0.025], + [21001,0.2], + [21003,0.202], + [21005,0.07], + [21007,0.146], + [21009,0.125], + [21011,0.353], + [21013,0.214], + [21015,0.035], + [21017,0.073], + [21019,0.096], + [21021,0.054], + [21023,0.224], + [21025,0.411], + [21027,0.238], + [21029,0.071], + [21031,0.24], + [21033,0.138], + [21035,0.117], + [21037,0.019], + [21039,0.206], + [21041,0.181], + [21043,0.284], + [21045,0.263], + [21047,0.075], + [21049,0.078], + [21051,0.296], + [21053,0.271], + [21055,0.175], + [21057,0.17], + [21059,0.047], + [21061,0.226], + [21063,0.356], + [21065,0.206], + [21067,0.01], + [21069,0.333], + [21071,0.292], + [21073,0.053], + [21075,0.082], + [21077,0.265], + [21079,0.105], + [21081,0.271], + [21083,0.138], + [21085,0.135], + [21087,0.183], + [21089,0.137], + [21091,0.249], + [21093,0.089], + [21095,0.19], + [21097,0.142], + [21099,0.187], + [21101,0.077], + [21103,0.15], + [21105,0.132], + [21107,0.138], + [21109,0.254], + [21111,0.013], + [21113,0.037], + [21115,0.244], + [21117,0.02], + [21119,0.356], + [21121,0.306], + [21123,0.132], + [21125,0.243], + [21127,0.362], + [21129,0.266], + [21131,0.364], + [21133,0.286], + [21135,0.255], + [21137,0.185], + [21139,0.195], + [21141,0.099], + [21143,0.116], + [21145,0.086], + [21147,0.314], + [21149,0.16], + [21151,0.072], + [21153,0.493], + [21155,0.12], + [21157,0.122], + [21159,0.352], + [21161,0.088], + [21163,0.175], + [21165,0.261], + [21167,0.083], + [21169,0.231], + [21171,0.166], + [21173,0.201], + [21175,0.354], + [21177,0.204], + [21179,0.076], + [21181,0.223], + [21183,0.204], + [21185,0.022], + [21187,0.282], + [21189,0.242], + [21191,0.211], + [21193,0.297], + [21195,0.363], + [21197,0.199], + [21199,0.177], + [21201,0.197], + [21203,0.298], + [21205,0.239], + [21207,0.214], + [21209,0.065], + [21211,0.036], + [21213,0.076], + [21215,0.063], + [21217,0.088], + [21219,0.161], + [21221,0.144], + [21223,0.272], + [21225,0.119], + [21227,0.061], + [21229,0.131], + [21231,0.23], + [21233,0.19], + [21235,0.248], + [21237,0.296], + [21239,0.017], + [22001,0.166], + [22003,0.209], + [22005,0.182], + [22007,0.288], + [22009,0.181], + [22011,0.298], + [22013,0.321], + [22015,0.125], + [22017,0.084], + [22019,0.156], + [22021,0.3], + [22023,0.361], + [22025,0.281], + [22027,0.252], + [22029,0.235], + [22031,0.295], + [22033,0.028], + [22035,0.117], + [22037,0.323], + [22039,0.126], + [22041,0.268], + [22043,0.264], + [22045,0.213], + [22047,0.183], + [22049,0.191], + [22051,0.015], + [22053,0.187], + [22055,0.1], + [22057,0.157], + [22059,0.236], + [22061,0.174], + [22063,0.233], + [22065,0.1], + [22067,0.157], + [22069,0.211], + [22071,0.006], + [22073,0.111], + [22075,0.278], + [22077,0.203], + [22079,0.147], + [22081,0.29], + [22083,0.186], + [22085,0.375], + [22087,0.053], + [22089,0.076], + [22091,0.342], + [22093,0.155], + [22095,0.106], + [22097,0.206], + [22099,0.269], + [22101,0.186], + [22103,0.068], + [22105,0.206], + [22107,0.071], + [22109,0.158], + [22111,0.278], + [22113,0.213], + [22115,0.199], + [22117,0.212], + [22119,0.201], + [22121,0.193], + [22123,0.273], + [22125,0.188], + [22127,0.239], + [23001,0.088], + [23003,0.101], + [23005,0.035], + [23007,0.102], + [23009,0.089], + [23011,0.109], + [23013,0.077], + [23015,0.125], + [23017,0.129], + [23019,0.125], + [23021,0.127], + [23023,0.111], + [23025,0.164], + [23027,0.144], + [23029,0.149], + [23031,0.062], + [24001,0.033], + [24003,0.015], + [24005,0.007], + [24009,0.009], + [24011,0.058], + [24013,0.013], + [24015,0.052], + [24017,0.009], + [24019,0.055], + [24021,0.009], + [24023,0.076], + [24025,0.026], + [24027,0.009], + [24029,0.024], + [24031,0.001], + [24033,0.004], + [24035,0.026], + [24037,0.034], + [24039,0.1], + [24041,0.021], + [24043,0.036], + [24045,0.043], + [24047,0.061], + [24510,0.002], + [25001,0.003], + [25003,0.023], + [25005,0.014], + [25007,0.001], + [25009,0.007], + [25011,0.018], + [25013,0.014], + [25015,0.01], + [25017,0.003], + [25019,0.002], + [25021,0.003], + [25023,0.026], + [25025,0.002], + [25027,0.007], + [26001,0.081], + [26003,0.049], + [26005,0.111], + [26007,0.048], + [26009,0.072], + [26011,0.126], + [26013,0.071], + [26015,0.069], + [26017,0.052], + [26019,0.055], + [26021,0.052], + [26023,0.113], + [26025,0.057], + [26027,0.088], + [26029,0.075], + [26031,0.087], + [26033,0.07], + [26035,0.128], + [26037,0.065], + [26039,0.086], + [26041,0.064], + [26043,0.045], + [26045,0.047], + [26047,0.065], + [26049,0.048], + [26051,0.157], + [26053,0.03], + [26055,0.075], + [26057,0.095], + [26059,0.093], + [26061,0.033], + [26063,0.061], + [26065,0.026], + [26067,0.118], + [26069,0.058], + [26071,0.037], + [26073,0.094], + [26075,0.058], + [26077,0.031], + [26079,0.156], + [26081,0.038], + [26083,0.046], + [26085,0.208], + [26087,0.076], + [26089,0.031], + [26091,0.063], + [26093,0.05], + [26095,0.084], + [26097,0.06], + [26099,0.037], + [26101,0.067], + [26103,0.045], + [26105,0.086], + [26107,0.161], + [26109,0.062], + [26111,0.082], + [26113,0.157], + [26115,0.076], + [26117,0.134], + [26119,0.086], + [26121,0.066], + [26123,0.207], + [26125,0.027], + [26127,0.175], + [26129,0.092], + [26131,0.064], + [26133,0.147], + [26135,0.123], + [26137,0.079], + [26139,0.063], + [26141,0.053], + [26143,0.085], + [26145,0.034], + [26147,0.065], + [26149,0.07], + [26151,0.097], + [26153,0.055], + [26155,0.046], + [26157,0.097], + [26159,0.131], + [26161,0.037], + [26163,0.017], + [26165,0.128], + [27001,0.103], + [27003,0.031], + [27005,0.092], + [27007,0.097], + [27009,0.051], + [27011,0.02], + [27013,0.049], + [27015,0.021], + [27017,0.064], + [27019,0.02], + [27021,0.1], + [27023,0.02], + [27025,0.041], + [27027,0.026], + [27029,0.145], + [27031,0.034], + [27033,0.008], + [27035,0.048], + [27037,0.023], + [27039,0.048], + [27041,0.032], + [27043,0.01], + [27045,0.031], + [27047,0.026], + [27049,0.045], + [27051,0.029], + [27053,0.003], + [27055,0.055], + [27057,0.097], + [27059,0.032], + [27061,0.079], + [27063,0.007], + [27065,0.131], + [27067,0.029], + [27069,0.056], + [27071,0.083], + [27073,0.021], + [27075,0.023], + [27077,0.153], + [27079,0.023], + [27081,0.011], + [27083,0.023], + [27085,0.036], + [27087,0.08], + [27089,0.105], + [27091,0.017], + [27093,0.05], + [27095,0.073], + [27097,0.066], + [27099,0.019], + [27101,0.018], + [27103,0.056], + [27105,0.019], + [27107,0.035], + [27109,0.03], + [27111,0.054], + [27113,0.102], + [27115,0.124], + [27117,0.019], + [27119,0.046], + [27121,0.043], + [27123,0.015], + [27125,0.101], + [27127,0.024], + [27129,0.022], + [27131,0.043], + [27133,0.012], + [27135,0.128], + [27137,0.036], + [27139,0.012], + [27141,0.015], + [27143,0.022], + [27145,0.021], + [27147,0.029], + [27149,0.014], + [27151,0.029], + [27153,0.076], + [27155,0.021], + [27157,0.071], + [27159,0.073], + [27161,0.031], + [27163,0.015], + [27165,0.04], + [27167,0.044], + [27169,0.042], + [27171,0.04], + [27173,0.019], + [28001,0.114], + [28003,0.136], + [28005,0.317], + [28007,0.193], + [28009,0.262], + [28011,0.097], + [28013,0.185], + [28015,0.24], + [28017,0.219], + [28019,0.193], + [28021,0.339], + [28023,0.279], + [28025,0.172], + [28027,0.074], + [28029,0.275], + [28031,0.244], + [28033,0.043], + [28035,0.101], + [28037,0.327], + [28039,0.22], + [28041,0.27], + [28043,0.119], + [28045,0.128], + [28047,0.087], + [28049,0.038], + [28051,0.322], + [28053,0.082], + [28055,0.213], + [28057,0.195], + [28059,0.082], + [28061,0.323], + [28063,0.306], + [28065,0.213], + [28067,0.207], + [28069,0.166], + [28071,0.096], + [28073,0.112], + [28075,0.135], + [28077,0.253], + [28079,0.256], + [28081,0.117], + [28083,0.058], + [28085,0.261], + [28087,0.093], + [28089,0.042], + [28091,0.26], + [28093,0.21], + [28095,0.216], + [28097,0.139], + [28099,0.209], + [28101,0.224], + [28103,0.327], + [28105,0.102], + [28107,0.269], + [28109,0.188], + [28111,0.335], + [28113,0.213], + [28115,0.251], + [28117,0.167], + [28119,0.105], + [28121,0.142], + [28123,0.28], + [28125,0.262], + [28127,0.209], + [28129,0.247], + [28131,0.227], + [28133,0.049], + [28135,0.235], + [28137,0.226], + [28139,0.243], + [28141,0.163], + [28143,0.187], + [28145,0.217], + [28147,0.281], + [28149,0.144], + [28151,0.085], + [28153,0.299], + [28155,0.155], + [28157,0.333], + [28159,0.2], + [28161,0.244], + [28163,0.199], + [29001,0.057], + [29003,0.067], + [29005,0.022], + [29007,0.049], + [29009,0.183], + [29011,0.102], + [29013,0.117], + [29015,0.178], + [29017,0.124], + [29019,0.041], + [29021,0.042], + [29023,0.13], + [29025,0.103], + [29027,0.137], + [29029,0.111], + [29031,0.065], + [29033,0.071], + [29035,0.179], + [29037,0.043], + [29039,0.156], + [29041,0.101], + [29043,0.049], + [29045,0.157], + [29047,0.018], + [29049,0.043], + [29051,0.02], + [29053,0.059], + [29055,0.151], + [29057,0.153], + [29059,0.197], + [29061,0.096], + [29063,0.092], + [29065,0.18], + [29067,0.139], + [29069,0.096], + [29071,0.087], + [29073,0.079], + [29075,0.04], + [29077,0.034], + [29079,0.055], + [29081,0.065], + [29083,0.114], + [29085,0.346], + [29087,0.098], + [29089,0.111], + [29091,0.152], + [29093,0.166], + [29095,0.01], + [29097,0.064], + [29099,0.099], + [29101,0.082], + [29103,0.087], + [29105,0.165], + [29107,0.07], + [29109,0.102], + [29111,0.139], + [29113,0.149], + [29115,0.061], + [29117,0.067], + [29119,0.215], + [29121,0.111], + [29123,0.097], + [29125,0.139], + [29127,0.044], + [29129,0.039], + [29131,0.137], + [29133,0.07], + [29135,0.067], + [29137,0.16], + [29139,0.125], + [29141,0.178], + [29143,0.138], + [29145,0.138], + [29147,0.068], + [29149,0.169], + [29151,0.064], + [29153,0.193], + [29155,0.073], + [29157,0.071], + [29159,0.051], + [29161,0.092], + [29163,0.106], + [29165,0.004], + [29167,0.116], + [29169,0.091], + [29171,0.087], + [29173,0.087], + [29175,0.12], + [29177,0.043], + [29179,0.161], + [29181,0.223], + [29183,0.027], + [29185,0.204], + [29186,0.095], + [29187,0.104], + [29189,0.002], + [29195,0.071], + [29197,0.127], + [29199,0.094], + [29201,0.112], + [29203,0.181], + [29205,0.111], + [29207,0.092], + [29209,0.137], + [29211,0.104], + [29213,0.148], + [29215,0.16], + [29217,0.106], + [29219,0.147], + [29221,0.331], + [29223,0.238], + [29225,0.106], + [29227,0.061], + [29229,0.153], + [29510,0.004], + [30001,0.146], + [30003,0.143], + [30005,0.115], + [30007,0.151], + [30009,0.133], + [30011,0.264], + [30013,0.086], + [30015,0.116], + [30017,0.1], + [30019,0.051], + [30021,0.16], + [30023,0.042], + [30025,0.156], + [30027,0.125], + [30029,0.116], + [30031,0.076], + [30033,0.187], + [30035,0.145], + [30037,0.234], + [30039,0.192], + [30041,0.105], + [30043,0.08], + [30045,0.157], + [30047,0.142], + [30049,0.09], + [30051,0.14], + [30053,0.168], + [30055,0.123], + [30057,0.125], + [30059,0.178], + [30061,0.297], + [30063,0.089], + [30065,0.155], + [30067,0.104], + [30069,0.225], + [30071,0.132], + [30073,0.113], + [30075,0.247], + [30077,0.101], + [30079,0.137], + [30081,0.109], + [30083,0.149], + [30085,0.083], + [30087,0.194], + [30089,0.152], + [30091,0.087], + [30093,0.064], + [30095,0.148], + [30097,0.093], + [30099,0.087], + [30101,0.11], + [30103,0.182], + [30105,0.068], + [30107,0.092], + [30109,0.141], + [30111,0.107], + [31001,0.045], + [31003,0.038], + [31005,0.071], + [31007,0.081], + [31009,0.15], + [31011,0.011], + [31013,0.053], + [31015,0.051], + [31017,0.058], + [31019,0.073], + [31021,0.021], + [31023,0.029], + [31025,0.037], + [31027,0.021], + [31029,0.095], + [31031,0.073], + [31033,0.041], + [31035,0.018], + [31037,0.066], + [31039,0.01], + [31041,0.033], + [31043,0.101], + [31045,0.052], + [31047,0.074], + [31049,0.046], + [31051,0.033], + [31053,0.044], + [31055,0.01], + [31057,0.072], + [31059,0.006], + [31061,0.02], + [31063,0.026], + [31065,0.019], + [31067,0.013], + [31069,0.053], + [31071,0.031], + [31073,0.052], + [31075,0.104], + [31077,0.029], + [31079,0.051], + [31081,0.034], + [31083,0.049], + [31085,0.062], + [31087,0.062], + [31089,0.034], + [31091,0.126], + [31093,0.056], + [31095,0.013], + [31097,0.043], + [31099,0.067], + [31101,0.077], + [31103,0.125], + [31105,0.101], + [31107,0.027], + [31109,0.016], + [31111,0.076], + [31113,0.112], + [31115,0.143], + [31117,0.073], + [31119,0.029], + [31121,0.054], + [31123,0.056], + [31125,0.01], + [31127,0.015], + [31129,0.024], + [31131,0.023], + [31133,0.023], + [31135,0.015], + [31137,0.034], + [31139,0.042], + [31141,0.033], + [31143,0.027], + [31145,0.052], + [31147,0.019], + [31149,0.067], + [31151,0.035], + [31153,0.007], + [31155,0.023], + [31157,0.05], + [31159,0.032], + [31161,0.086], + [31163,0.059], + [31165,0.092], + [31167,0.054], + [31169,0.012], + [31171,0.029], + [31173,0.034], + [31175,0.036], + [31177,0.031], + [31179,0.009], + [31181,0.024], + [31183,0.127], + [31185,0.025], + [32001,0.15], + [32003,0.027], + [32005,0.057], + [32007,0.18], + [32009,0.527], + [32011,0.34], + [32013,0.379], + [32015,0.553], + [32017,0.185], + [32019,0.162], + [32021,0.171], + [32023,0.343], + [32027,0.402], + [32029,0.168], + [32031,0.058], + [32033,0.174], + [32510,0.097], + [33001,0.071], + [33003,0.071], + [33005,0.067], + [33007,0.094], + [33009,0.085], + [33011,0.02], + [33013,0.056], + [33015,0.05], + [33017,0.095], + [33019,0.092], + [34001,0.026], + [34003,0.003], + [34005,0.012], + [34007,0.007], + [34009,0.03], + [34011,0.058], + [34013,0.001], + [34015,0.025], + [34017,0.002], + [34019,0.003], + [34021,0.003], + [34023,0.007], + [34025,0.009], + [34027,0.002], + [34029,0.023], + [34031,0.003], + [34033,0.036], + [34035,0.002], + [34037,0.006], + [34039,0.002], + [34041,0.013], + [35001,0.058], + [35003,0.297], + [35005,0.138], + [35006,0.286], + [35007,0.215], + [35009,0.107], + [35011,0.183], + [35013,0.209], + [35015,0.183], + [35017,0.27], + [35019,0.21], + [35021,0.261], + [35023,0.391], + [35025,0.195], + [35027,0.3], + [35028,0.041], + [35029,0.365], + [35031,0.25], + [35033,0.406], + [35035,0.257], + [35037,0.193], + [35039,0.398], + [35041,0.217], + [35043,0.077], + [35045,0.328], + [35047,0.391], + [35049,0.148], + [35051,0.385], + [35053,0.316], + [35055,0.225], + [35057,0.444], + [35059,0.093], + [35061,0.281], + [36001,0.012], + [36003,0.115], + [36005,0.003], + [36007,0.041], + [36009,0.12], + [36011,0.099], + [36013,0.062], + [36015,0.048], + [36017,0.207], + [36019,0.14], + [36021,0.082], + [36023,0.061], + [36025,0.119], + [36027,0.035], + [36029,0.013], + [36031,0.088], + [36033,0.108], + [36035,0.106], + [36037,0.059], + [36039,0.086], + [36041,0.073], + [36043,0.1], + [36045,0.09], + [36047,0.002], + [36049,0.13], + [36051,0.102], + [36053,0.093], + [36055,0.007], + [36057,0.072], + [36059,0.002], + [36061,0.001], + [36063,0.034], + [36065,0.057], + [36067,0.01], + [36069,0.071], + [36071,0.021], + [36073,0.106], + [36075,0.141], + [36077,0.121], + [36079,0.01], + [36081,0.002], + [36083,0.029], + [36085,0.002], + [36087,0.01], + [36089,0.107], + [36091,0.072], + [36093,0.009], + [36095,0.126], + [36097,0.16], + [36099,0.122], + [36101,0.135], + [36103,0.009], + [36105,0.103], + [36107,0.15], + [36109,0.07], + [36111,0.06], + [36113,0.05], + [36115,0.065], + [36117,0.076], + [36119,0.002], + [36121,0.069], + [36123,0.083], + [37001,0.114], + [37003,0.288], + [37005,0.2], + [37007,0.242], + [37009,0.225], + [37011,0.216], + [37013,0.245], + [37015,0.354], + [37017,0.366], + [37019,0.198], + [37021,0.144], + [37023,0.237], + [37025,0.057], + [37027,0.179], + [37029,0.149], + [37031,0.158], + [37033,0.248], + [37035,0.136], + [37037,0.156], + [37039,0.221], + [37041,0.258], + [37043,0.153], + [37045,0.179], + [37047,0.306], + [37049,0.127], + [37051,0.083], + [37053,0.187], + [37055,0.082], + [37057,0.151], + [37059,0.176], + [37061,0.351], + [37063,0.014], + [37065,0.249], + [37067,0.038], + [37069,0.231], + [37071,0.097], + [37073,0.286], + [37075,0.29], + [37077,0.198], + [37079,0.378], + [37081,0.031], + [37083,0.223], + [37085,0.204], + [37087,0.189], + [37089,0.154], + [37091,0.236], + [37093,0.207], + [37095,0.173], + [37097,0.127], + [37099,0.217], + [37101,0.163], + [37103,0.323], + [37105,0.132], + [37107,0.239], + [37109,0.198], + [37111,0.314], + [37113,0.18], + [37115,0.258], + [37117,0.22], + [37119,0.014], + [37121,0.178], + [37123,0.208], + [37125,0.144], + [37127,0.183], + [37129,0.037], + [37131,0.197], + [37133,0.133], + [37135,0.079], + [37137,0.245], + [37139,0.146], + [37141,0.224], + [37143,0.193], + [37145,0.221], + [37147,0.112], + [37149,0.148], + [37151,0.215], + [37153,0.261], + [37155,0.384], + [37157,0.16], + [37159,0.166], + [37161,0.203], + [37163,0.36], + [37165,0.238], + [37167,0.128], + [37169,0.232], + [37171,0.228], + [37173,0.27], + [37175,0.171], + [37177,0.253], + [37179,0.055], + [37181,0.228], + [37183,0.03], + [37185,0.34], + [37187,0.262], + [37189,0.099], + [37191,0.244], + [37193,0.257], + [37195,0.138], + [37197,0.243], + [37199,0.254], + [38001,0.106], + [38003,0.058], + [38005,0.168], + [38007,0.102], + [38009,0.053], + [38011,0.096], + [38013,0.073], + [38015,0.074], + [38017,0.022], + [38019,0.012], + [38021,0.052], + [38023,0.071], + [38025,0.103], + [38027,0.045], + [38029,0.057], + [38031,0.04], + [38033,0.065], + [38035,0.038], + [38037,0.074], + [38039,0.017], + [38041,0.055], + [38043,0.143], + [38045,0.026], + [38047,0.072], + [38049,0.106], + [38051,0.018], + [38053,0.112], + [38055,0.059], + [38057,0.118], + [38059,0.113], + [38061,0.168], + [38063,0.052], + [38065,0.127], + [38067,0.061], + [38069,0.073], + [38071,0.078], + [38073,0.046], + [38075,0.116], + [38077,0.053], + [38079,0.179], + [38081,0.107], + [38083,0.086], + [38085,0.089], + [38087,0.147], + [38089,0.056], + [38091,0.037], + [38093,0.065], + [38095,0.043], + [38097,0.036], + [38099,0.07], + [38101,0.077], + [38103,0.063], + [38105,0.06], + [39001,0.236], + [39003,0.033], + [39005,0.052], + [39007,0.073], + [39009,0.145], + [39011,0.034], + [39013,0.067], + [39015,0.148], + [39017,0.024], + [39019,0.121], + [39021,0.057], + [39023,0.038], + [39025,0.051], + [39027,0.067], + [39029,0.086], + [39031,0.134], + [39033,0.034], + [39035,0.005], + [39037,0.041], + [39039,0.052], + [39041,0.016], + [39043,0.025], + [39045,0.026], + [39047,0.053], + [39049,0.009], + [39051,0.069], + [39053,0.217], + [39055,0.03], + [39057,0.011], + [39059,0.129], + [39061,0.008], + [39063,0.068], + [39065,0.074], + [39067,0.148], + [39069,0.056], + [39071,0.126], + [39073,0.188], + [39075,0.058], + [39077,0.061], + [39079,0.17], + [39081,0.056], + [39083,0.038], + [39085,0.018], + [39087,0.17], + [39089,0.041], + [39091,0.072], + [39093,0.02], + [39095,0.021], + [39097,0.049], + [39099,0.014], + [39101,0.038], + [39103,0.009], + [39105,0.268], + [39107,0.046], + [39109,0.013], + [39111,0.147], + [39113,0.011], + [39115,0.187], + [39117,0.101], + [39119,0.09], + [39121,0.181], + [39123,0.069], + [39125,0.063], + [39127,0.165], + [39129,0.074], + [39131,0.249], + [39133,0.073], + [39135,0.029], + [39137,0.054], + [39139,0.033], + [39141,0.135], + [39143,0.047], + [39145,0.132], + [39147,0.041], + [39149,0.038], + [39151,0.018], + [39153,0.008], + [39155,0.046], + [39157,0.081], + [39159,0.034], + [39161,0.045], + [39163,0.303], + [39165,0.009], + [39167,0.108], + [39169,0.074], + [39171,0.06], + [39173,0.068], + [39175,0.049], + [40001,0.195], + [40003,0.073], + [40005,0.192], + [40007,0.18], + [40009,0.123], + [40011,0.161], + [40013,0.149], + [40015,0.112], + [40017,0.056], + [40019,0.143], + [40021,0.165], + [40023,0.141], + [40025,0.139], + [40027,0.056], + [40029,0.114], + [40031,0.05], + [40033,0.069], + [40035,0.098], + [40037,0.19], + [40039,0.11], + [40041,0.254], + [40043,0.185], + [40045,0.099], + [40047,0.045], + [40049,0.099], + [40051,0.127], + [40053,0.071], + [40055,0.049], + [40057,0.03], + [40059,0.105], + [40061,0.18], + [40063,0.125], + [40065,0.049], + [40067,0.086], + [40069,0.202], + [40071,0.061], + [40073,0.15], + [40075,0.057], + [40077,0.207], + [40079,0.157], + [40081,0.227], + [40083,0.192], + [40085,0.219], + [40087,0.129], + [40089,0.144], + [40091,0.278], + [40093,0.139], + [40095,0.272], + [40097,0.186], + [40099,0.127], + [40101,0.105], + [40103,0.149], + [40105,0.192], + [40107,0.178], + [40109,0.027], + [40111,0.156], + [40113,0.155], + [40115,0.121], + [40117,0.26], + [40119,0.092], + [40121,0.112], + [40123,0.089], + [40125,0.115], + [40127,0.169], + [40129,0.17], + [40131,0.113], + [40133,0.152], + [40135,0.181], + [40137,0.072], + [40139,0.222], + [40141,0.048], + [40143,0.024], + [40145,0.131], + [40147,0.057], + [40149,0.112], + [40151,0.076], + [40153,0.158], + [41001,0.122], + [41003,0.065], + [41005,0.059], + [41007,0.072], + [41009,0.136], + [41011,0.163], + [41013,0.136], + [41015,0.212], + [41017,0.079], + [41019,0.21], + [41021,0.16], + [41023,0.242], + [41025,0.212], + [41027,0.133], + [41029,0.127], + [41031,0.19], + [41033,0.164], + [41035,0.162], + [41037,0.187], + [41039,0.085], + [41041,0.173], + [41043,0.124], + [41045,0.169], + [41047,0.083], + [41049,0.348], + [41051,0.02], + [41053,0.08], + [41055,0.245], + [41057,0.132], + [41059,0.164], + [41061,0.168], + [41063,0.149], + [41065,0.168], + [41067,0.023], + [41069,0.217], + [41071,0.115], + [42001,0.069], + [42003,0.006], + [42005,0.093], + [42007,0.039], + [42009,0.138], + [42011,0.031], + [42013,0.068], + [42015,0.136], + [42017,0.018], + [42019,0.081], + [42021,0.039], + [42023,0.072], + [42025,0.038], + [42027,0.043], + [42029,0.024], + [42031,0.101], + [42033,0.117], + [42035,0.078], + [42037,0.081], + [42039,0.112], + [42041,0.046], + [42043,0.024], + [42045,0.003], + [42047,0.051], + [42049,0.052], + [42051,0.101], + [42053,0.125], + [42055,0.078], + [42057,0.172], + [42059,0.158], + [42061,0.117], + [42063,0.107], + [42065,0.072], + [42067,0.108], + [42069,0.023], + [42071,0.036], + [42073,0.063], + [42075,0.055], + [42077,0.021], + [42079,0.029], + [42081,0.062], + [42083,0.073], + [42085,0.069], + [42087,0.076], + [42089,0.042], + [42091,0.009], + [42093,0.062], + [42095,0.021], + [42097,0.049], + [42099,0.109], + [42101,0.003], + [42103,0.024], + [42105,0.121], + [42107,0.036], + [42109,0.075], + [42111,0.107], + [42113,0.067], + [42115,0.106], + [42117,0.165], + [42119,0.06], + [42121,0.091], + [42123,0.079], + [42125,0.051], + [42127,0.068], + [42129,0.052], + [42131,0.092], + [42133,0.049], + [44001,0], + [44003,0.014], + [44005,0.019], + [44007,0.005], + [44009,0.015], + [45001,0.243], + [45003,0.181], + [45005,0.294], + [45007,0.155], + [45009,0.289], + [45011,0.311], + [45013,0.107], + [45015,0.172], + [45017,0.353], + [45019,0.063], + [45021,0.283], + [45023,0.201], + [45025,0.375], + [45027,0.382], + [45029,0.424], + [45031,0.284], + [45033,0.347], + [45035,0.121], + [45037,0.216], + [45039,0.248], + [45041,0.189], + [45043,0.203], + [45045,0.083], + [45047,0.121], + [45049,0.368], + [45051,0.156], + [45053,0.289], + [45055,0.255], + [45057,0.118], + [45059,0.294], + [45061,0.324], + [45063,0.173], + [45065,0.171], + [45067,0.339], + [45069,0.288], + [45071,0.246], + [45073,0.219], + [45075,0.309], + [45077,0.174], + [45079,0.051], + [45081,0.318], + [45083,0.133], + [45085,0.231], + [45087,0.211], + [45089,0.408], + [45091,0.102], + [46003,0.082], + [46005,0.055], + [46007,0.081], + [46009,0.055], + [46011,0.072], + [46013,0.055], + [46015,0.102], + [46017,0.165], + [46019,0.269], + [46021,0.08], + [46023,0.039], + [46025,0.056], + [46027,0.083], + [46029,0.074], + [46031,0.147], + [46033,0.219], + [46035,0.045], + [46037,0.057], + [46039,0.032], + [46041,0.224], + [46043,0.016], + [46045,0.088], + [46047,0.094], + [46049,0.092], + [46051,0.037], + [46053,0.066], + [46055,0.237], + [46057,0.051], + [46059,0.056], + [46061,0.032], + [46063,0.239], + [46065,0.125], + [46067,0.022], + [46069,0.131], + [46071,0.197], + [46073,0.083], + [46075,0.167], + [46077,0.054], + [46079,0.027], + [46081,0.131], + [46083,0.018], + [46085,0.122], + [46087,0.033], + [46089,0.035], + [46091,0.056], + [46093,0.152], + [46095,0.304], + [46097,0.021], + [46099,0.043], + [46101,0.053], + [46102,0.276], + [46103,0.109], + [46105,0.114], + [46107,0.128], + [46109,0.063], + [46111,0.086], + [46115,0.068], + [46117,0.281], + [46119,0.127], + [46121,0.181], + [46123,0.128], + [46125,0.038], + [46127,0.041], + [46129,0.116], + [46135,0.061], + [46137,0.277], + [47001,0.115], + [47003,0.15], + [47005,0.268], + [47007,0.272], + [47009,0.118], + [47011,0.105], + [47013,0.169], + [47015,0.154], + [47017,0.164], + [47019,0.168], + [47021,0.11], + [47023,0.163], + [47025,0.237], + [47027,0.252], + [47029,0.273], + [47031,0.113], + [47033,0.121], + [47035,0.156], + [47037,0.016], + [47039,0.2], + [47041,0.17], + [47043,0.122], + [47045,0.077], + [47047,0.117], + [47049,0.179], + [47051,0.107], + [47053,0.098], + [47055,0.148], + [47057,0.295], + [47059,0.22], + [47061,0.271], + [47063,0.088], + [47065,0.033], + [47067,0.21], + [47069,0.193], + [47071,0.112], + [47073,0.23], + [47075,0.084], + [47077,0.227], + [47079,0.217], + [47081,0.206], + [47083,0.159], + [47085,0.156], + [47087,0.288], + [47089,0.225], + [47091,0.179], + [47093,0.04], + [47095,0.086], + [47097,0.133], + [47099,0.114], + [47101,0.255], + [47103,0.145], + [47105,0.094], + [47107,0.172], + [47109,0.134], + [47111,0.225], + [47113,0.051], + [47115,0.184], + [47117,0.146], + [47119,0.102], + [47121,0.353], + [47123,0.265], + [47125,0.047], + [47127,0.15], + [47129,0.273], + [47131,0.099], + [47133,0.187], + [47135,0.285], + [47137,0.217], + [47139,0.251], + [47141,0.062], + [47143,0.208], + [47145,0.155], + [47147,0.09], + [47149,0.035], + [47151,0.256], + [47153,0.227], + [47155,0.159], + [47157,0.009], + [47159,0.194], + [47161,0.18], + [47163,0.113], + [47165,0.066], + [47167,0.087], + [47169,0.169], + [47171,0.165], + [47173,0.288], + [47175,0.224], + [47177,0.121], + [47179,0.093], + [47181,0.249], + [47183,0.124], + [47185,0.176], + [47187,0.017], + [47189,0.067], + [48001,0.228], + [48003,0.197], + [48005,0.184], + [48007,0.214], + [48009,0.091], + [48011,0.134], + [48013,0.338], + [48015,0.176], + [48017,0.089], + [48019,0.314], + [48021,0.251], + [48023,0.071], + [48025,0.111], + [48027,0.06], + [48029,0.026], + [48031,0.202], + [48033,0.163], + [48035,0.168], + [48037,0.127], + [48039,0.106], + [48041,0.066], + [48043,0.207], + [48045,0.038], + [48047,0.111], + [48049,0.153], + [48051,0.285], + [48053,0.156], + [48055,0.265], + [48057,0.129], + [48059,0.195], + [48061,0.089], + [48063,0.203], + [48065,0.096], + [48067,0.207], + [48069,0.09], + [48071,0.141], + [48073,0.197], + [48075,0.077], + [48077,0.124], + [48079,0.076], + [48081,0.176], + [48083,0.108], + [48085,0.016], + [48087,0.037], + [48089,0.165], + [48091,0.1], + [48093,0.178], + [48095,0.1], + [48097,0.123], + [48099,0.071], + [48101,0.011], + [48103,0.137], + [48105,0.1], + [48107,0.058], + [48109,0.176], + [48111,0.157], + [48113,0.015], + [48115,0.066], + [48117,0.102], + [48119,0.133], + [48121,0.035], + [48123,0.153], + [48125,0.105], + [48127,0.164], + [48129,0.113], + [48131,0.126], + [48133,0.138], + [48135,0.152], + [48137,0.212], + [48139,0.094], + [48141,0.055], + [48143,0.128], + [48145,0.115], + [48147,0.137], + [48149,0.158], + [48151,0.071], + [48153,0.044], + [48155,0.064], + [48157,0.028], + [48159,0.117], + [48161,0.263], + [48163,0.181], + [48165,0.225], + [48167,0.055], + [48169,0.104], + [48171,0.123], + [48173,0.079], + [48175,0.167], + [48177,0.24], + [48179,0.058], + [48181,0.098], + [48183,0.082], + [48185,0.239], + [48187,0.139], + [48189,0.066], + [48191,0.054], + [48193,0.042], + [48195,0.077], + [48197,0.071], + [48199,0.274], + [48201,0.026], + [48203,0.214], + [48205,0.233], + [48207,0.078], + [48209,0.09], + [48211,0.183], + [48213,0.271], + [48215,0.128], + [48217,0.177], + [48219,0.164], + [48221,0.189], + [48223,0.122], + [48225,0.209], + [48227,0.07], + [48229,0.387], + [48231,0.165], + [48233,0.092], + [48235,0.128], + [48237,0.187], + [48239,0.196], + [48241,0.243], + [48243,0.169], + [48245,0.032], + [48247,0.099], + [48249,0.118], + [48251,0.192], + [48253,0.161], + [48255,0.169], + [48257,0.136], + [48259,0.082], + [48261,0], + [48263,0.106], + [48265,0.193], + [48267,0.169], + [48269,0.143], + [48271,0.285], + [48273,0.069], + [48275,0.027], + [48277,0.088], + [48279,0.052], + [48281,0.134], + [48283,0.29], + [48285,0.161], + [48287,0.217], + [48289,0.319], + [48291,0.308], + [48293,0.196], + [48295,0.065], + [48297,0.246], + [48299,0.159], + [48301,0.233], + [48303,0.051], + [48305,0.064], + [48307,0.093], + [48309,0.054], + [48311,0.252], + [48313,0.249], + [48315,0.331], + [48317,0.145], + [48319,0.116], + [48321,0.18], + [48323,0.091], + [48325,0.269], + [48327,0.154], + [48329,0.088], + [48331,0.138], + [48333,0.123], + [48335,0.084], + [48337,0.143], + [48339,0.129], + [48341,0.195], + [48343,0.121], + [48345,0.08], + [48347,0.176], + [48349,0.175], + [48351,0.353], + [48353,0.062], + [48355,0.033], + [48357,0.112], + [48359,0.197], + [48361,0.178], + [48363,0.149], + [48365,0.3], + [48367,0.157], + [48369,0.095], + [48371,0.2], + [48373,0.255], + [48375,0.071], + [48377,0.264], + [48379,0.2], + [48381,0.063], + [48383,0.239], + [48385,0.307], + [48387,0.168], + [48389,0.091], + [48391,0.1], + [48393,0.116], + [48395,0.218], + [48397,0.042], + [48399,0.054], + [48401,0.187], + [48403,0.316], + [48405,0.202], + [48407,0.291], + [48409,0.091], + [48411,0.115], + [48413,0.178], + [48415,0.079], + [48417,0.153], + [48419,0.334], + [48421,0.071], + [48423,0.102], + [48425,0.149], + [48427,0.099], + [48429,0.107], + [48431,0.319], + [48433,0.124], + [48435,0.193], + [48437,0.062], + [48439,0.018], + [48441,0.052], + [48443,0], + [48445,0.109], + [48447,0.118], + [48449,0.171], + [48451,0.062], + [48453,0.034], + [48455,0.335], + [48457,0.267], + [48459,0.198], + [48461,0.142], + [48463,0.171], + [48465,0.096], + [48467,0.22], + [48469,0.102], + [48471,0.205], + [48473,0.236], + [48475,0.157], + [48477,0.13], + [48479,0.094], + [48481,0.112], + [48483,0.1], + [48485,0.038], + [48487,0.064], + [48489,0.094], + [48491,0.022], + [48493,0.226], + [48495,0.105], + [48497,0.249], + [48499,0.162], + [48501,0.164], + [48503,0.108], + [48505,0.265], + [48507,0.256], + [49001,0.054], + [49003,0.027], + [49005,0.023], + [49007,0.092], + [49009,0.313], + [49011,0.026], + [49013,0.113], + [49015,0.122], + [49017,0.09], + [49019,0.173], + [49021,0.046], + [49023,0.044], + [49025,0.102], + [49027,0.045], + [49029,0.003], + [49031,0.053], + [49033,0.146], + [49035,0.019], + [49037,0.167], + [49039,0.054], + [49041,0.063], + [49043,0.014], + [49045,0.051], + [49047,0.091], + [49049,0.015], + [49051,0.007], + [49053,0.056], + [49055,0.085], + [49057,0.035], + [50001,0.083], + [50003,0.066], + [50005,0.099], + [50007,0.045], + [50009,0.134], + [50011,0.081], + [50013,0.128], + [50015,0.106], + [50017,0.11], + [50019,0.106], + [50021,0.06], + [50023,0.059], + [50025,0.063], + [50027,0.073], + [51001,0.167], + [51003,0.038], + [51005,0.102], + [51007,0.21], + [51009,0.113], + [51011,0.178], + [51013,0.001], + [51015,0.094], + [51017,0.118], + [51019,0.133], + [51021,0.291], + [51023,0.074], + [51025,0.259], + [51027,0.312], + [51029,0.295], + [51031,0.163], + [51033,0.1], + [51035,0.203], + [51036,0.163], + [51037,0.231], + [51041,0.012], + [51043,0.002], + [51045,0.171], + [51047,0.033], + [51049,0.21], + [51051,0.31], + [51053,0.135], + [51057,0.133], + [51059,0.006], + [51061,0.01], + [51063,0.172], + [51065,0.062], + [51067,0.148], + [51069,0.06], + [51071,0.128], + [51073,0.094], + [51075,0.039], + [51077,0.19], + [51079,0.093], + [51081,0.16], + [51083,0.18], + [51085,0.02], + [51087,0.005], + [51089,0.185], + [51091,0.109], + [51093,0.108], + [51095,0.036], + [51097,0.138], + [51099,0.069], + [51101,0.035], + [51103,0.077], + [51105,0.221], + [51107,0.006], + [51109,0.131], + [51111,0.229], + [51113,0.056], + [51115,0.09], + [51117,0.202], + [51119,0.091], + [51121,0.107], + [51125,0.163], + [51127,0.039], + [51131,0.064], + [51133,0.105], + [51135,0.132], + [51137,0.071], + [51139,0.127], + [51141,0.248], + [51143,0.184], + [51145,0.031], + [51147,0.139], + [51149,0.058], + [51153,0.01], + [51155,0.106], + [51157,0.026], + [51159,0.098], + [51161,0.019], + [51163,0.124], + [51165,0.09], + [51167,0.238], + [51169,0.227], + [51171,0.039], + [51173,0.162], + [51175,0.134], + [51177,0.042], + [51179,0.024], + [51181,0.151], + [51183,0.198], + [51185,0.211], + [51187,0.014], + [51191,0.146], + [51193,0.098], + [51195,0.269], + [51197,0.186], + [51199,0.013], + [51510,0.001], + [51520,0.009], + [51530,0.025], + [51540,0.008], + [51550,0.022], + [51570,0], + [51580,0.057], + [51590,0.034], + [51595,0.024], + [51600,0], + [51610,0], + [51620,0.013], + [51630,0.002], + [51640,0.081], + [51650,0.014], + [51660,0.02], + [51670,0.007], + [51678,0.01], + [51680,0.006], + [51683,0.012], + [51685,0], + [51690,0.011], + [51700,0.027], + [51710,0.008], + [51720,0.124], + [51730,0.016], + [51735,0.003], + [51740,0.009], + [51750,0.032], + [51760,0.005], + [51770,0.005], + [51775,0.031], + [51790,0.007], + [51800,0.031], + [51810,0.012], + [51820,0.022], + [51830,0.002], + [51840,0.006], + [53001,0.199], + [53003,0.122], + [53005,0.096], + [53007,0.104], + [53009,0.129], + [53011,0.046], + [53013,0.106], + [53015,0.102], + [53017,0.182], + [53019,0.216], + [53021,0.099], + [53023,0.134], + [53025,0.253], + [53027,0.12], + [53029,0.082], + [53031,0.137], + [53033,0.019], + [53035,0.07], + [53037,0.077], + [53039,0.144], + [53041,0.187], + [53043,0.187], + [53045,0.203], + [53047,0.183], + [53049,0.17], + [53051,0.2], + [53053,0.057], + [53055,0.067], + [53057,0.07], + [53059,0.218], + [53061,0.047], + [53063,0.057], + [53065,0.207], + [53067,0.092], + [53069,0.152], + [53071,0.068], + [53073,0.066], + [53075,0.063], + [53077,0.123], + [54001,0.176], + [54003,0.124], + [54005,0.353], + [54007,0.247], + [54009,0.055], + [54011,0.083], + [54013,0.314], + [54015,0.338], + [54017,0.203], + [54019,0.115], + [54021,0.252], + [54023,0.156], + [54025,0.122], + [54027,0.174], + [54029,0.071], + [54031,0.22], + [54033,0.082], + [54035,0.157], + [54037,0.075], + [54039,0.099], + [54041,0.194], + [54043,0.306], + [54045,0.215], + [54047,0.265], + [54049,0.082], + [54051,0.065], + [54053,0.222], + [54055,0.214], + [54057,0.074], + [54059,0.323], + [54061,0.108], + [54063,0.171], + [54065,0.104], + [54067,0.224], + [54069,0.037], + [54071,0.204], + [54073,0.195], + [54075,0.158], + [54077,0.172], + [54079,0.154], + [54081,0.14], + [54083,0.177], + [54085,0.203], + [54087,0.199], + [54089,0.142], + [54091,0.112], + [54093,0.086], + [54095,0.139], + [54097,0.198], + [54099,0.202], + [54101,0.263], + [54103,0.134], + [54105,0.275], + [54107,0.074], + [54109,0.283], + [55001,0.204], + [55003,0.078], + [55005,0.056], + [55007,0.068], + [55009,0.017], + [55011,0.058], + [55013,0.085], + [55015,0.023], + [55017,0.03], + [55019,0.059], + [55021,0.029], + [55023,0.088], + [55025,0.008], + [55027,0.04], + [55029,0.049], + [55031,0.052], + [55033,0.093], + [55035,0.032], + [55037,0.083], + [55039,0.033], + [55041,0.07], + [55043,0.049], + [55045,0.043], + [55047,0.044], + [55049,0.036], + [55051,0.026], + [55053,0.102], + [55055,0.043], + [55057,0.148], + [55059,0.035], + [55061,0.045], + [55063,0.042], + [55065,0.037], + [55067,0.052], + [55069,0.046], + [55071,0.026], + [55073,0.026], + [55075,0.079], + [55077,0.101], + [55078,0.114], + [55079,0.006], + [55081,0.085], + [55083,0.09], + [55085,0.063], + [55087,0.01], + [55089,0.003], + [55091,0.036], + [55093,0.046], + [55095,0.08], + [55097,0.046], + [55099,0.076], + [55101,0.011], + [55103,0.068], + [55105,0.02], + [55107,0.084], + [55109,0.025], + [55111,0.058], + [55113,0.048], + [55115,0.06], + [55117,0.022], + [55119,0.072], + [55121,0.062], + [55123,0.084], + [55125,0.053], + [55127,0.023], + [55129,0.061], + [55131,0.012], + [55133,0.005], + [55135,0.04], + [55137,0.075], + [55139,0.019], + [55141,0.038], + [56001,0.086], + [56003,0.14], + [56005,0.208], + [56007,0.119], + [56009,0.205], + [56011,0.186], + [56013,0.157], + [56015,0.11], + [56017,0.161], + [56019,0.152], + [56021,0.085], + [56023,0.121], + [56025,0.103], + [56027,0.126], + [56029,0.089], + [56031,0.121], + [56033,0.09], + [56035,0.101], + [56037,0.195], + [56039,0.038], + [56041,0.22], + [56043,0.116], + [56045,0.201] + ] +} diff --git a/data/regional/united-states/infrastructure/housing/us-housing-units-2010.json b/data/regional/united-states/infrastructure/housing/us-housing-units-2010.json new file mode 100644 index 0000000..4d3ee21 --- /dev/null +++ b/data/regional/united-states/infrastructure/housing/us-housing-units-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Housing Units", + "description" : "Number of housing units.", + "units" : "houses", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "infrastructure", + "tags" : ["regional","us","counties","infrastructure","housing"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.infrastructure.housing.units.2010"], + [1001,22135], + [1003,104061], + [1005,11829], + [1007,8981], + [1009,23887], + [1011,4493], + [1013,9964], + [1015,53289], + [1017,17004], + [1019,16267], + [1021,19278], + [1023,7269], + [1025,12638], + [1027,6776], + [1029,6718], + [1031,22330], + [1033,25758], + [1035,7093], + [1037,6478], + [1039,18829], + [1041,6735], + [1043,37054], + [1045,22677], + [1047,20208], + [1049,31109], + [1051,32657], + [1053,16486], + [1055,47454], + [1057,8437], + [1059,14022], + [1061,12687], + [1063,5007], + [1065,7655], + [1067,8891], + [1069,45319], + [1071,24786], + [1073,300552], + [1075,7354], + [1077,43791], + [1079,15229], + [1081,62391], + [1083,34977], + [1085,5140], + [1087,10259], + [1089,146447], + [1091,10237], + [1093,14737], + [1095,40342], + [1097,178196], + [1099,11333], + [1101,101641], + [1103,51193], + [1105,4737], + [1107,9483], + [1109,15267], + [1111,11982], + [1113,24595], + [1115,35541], + [1117,80970], + [1119,6786], + [1121,37088], + [1123,22111], + [1125,84872], + [1127,30816], + [1129,8407], + [1131,5649], + [1133,13469], + [2013,747], + [2016,1929], + [2020,113032], + [2050,5919], + [2060,969], + [2068,1771], + [2070,2427], + [2090,41783], + [2100,1631], + [2105,1771], + [2110,13055], + [2122,30578], + [2130,6166], + [2150,5303], + [2158,2183], + [2164,1502], + [2170,41329], + [2180,4008], + [2185,2500], + [2188,2707], + [2195,1994], + [2198,2992], + [2220,4102], + [2230,636], + [2240,3915], + [2261,6102], + [2275,1428], + [2282,450], + [2290,4038], + [4001,32514], + [4003,59041], + [4005,63321], + [4007,32698], + [4009,12980], + [4011,4372], + [4012,16049], + [4013,1639279], + [4015,110911], + [4017,56938], + [4019,440909], + [4021,159222], + [4023,18010], + [4025,110432], + [4027,87850], + [5001,9436], + [5003,10137], + [5005,22580], + [5007,93084], + [5009,16827], + [5011,5860], + [5013,2897], + [5015,13559], + [5017,5421], + [5019,10385], + [5021,8031], + [5023,15826], + [5025,4064], + [5027,11596], + [5029,9720], + [5031,40515], + [5033,26115], + [5035,21489], + [5037,7853], + [5039,4305], + [5041,6261], + [5043,8408], + [5045,46612], + [5047,8021], + [5049,6778], + [5051,50548], + [5053,7758], + [5055,17892], + [5057,10419], + [5059,14332], + [5061,6238], + [5063,16187], + [5065,7232], + [5067,7601], + [5069,33006], + [5071,11311], + [5073,4353], + [5075,8000], + [5077,4356], + [5079,4860], + [5081,6460], + [5083,10108], + [5085,27239], + [5087,7481], + [5089,9354], + [5091,19281], + [5093,20459], + [5095,4455], + [5097,5763], + [5099,4563], + [5101,4664], + [5103,13121], + [5105,4907], + [5107,10126], + [5109,5580], + [5111,10923], + [5113,10002], + [5115,25551], + [5117,4503], + [5119,175555], + [5121,8513], + [5123,10903], + [5125,44811], + [5127,5193], + [5129,4900], + [5131,54651], + [5133,6887], + [5135,9822], + [5137,6712], + [5139,19653], + [5141,10345], + [5143,87808], + [5145,32488], + [5147,3893], + [5149,9752], + [6001,582549], + [6003,1760], + [6005,18032], + [6007,95835], + [6009,27925], + [6011,7883], + [6013,400263], + [6015,11186], + [6017,88159], + [6019,315531], + [6021,10778], + [6023,61559], + [6025,56067], + [6027,9478], + [6029,284367], + [6031,43867], + [6033,35492], + [6035,12710], + [6037,3445076], + [6039,49140], + [6041,111214], + [6043,10188], + [6045,40323], + [6047,83698], + [6049,5192], + [6051,13912], + [6053,139048], + [6055,54759], + [6057,52590], + [6059,1048907], + [6061,152648], + [6063,15566], + [6065,800707], + [6067,555932], + [6069,17870], + [6071,699637], + [6073,1164786], + [6075,376942], + [6077,233755], + [6079,117315], + [6081,271031], + [6083,152834], + [6085,631920], + [6087,104476], + [6089,77313], + [6091,2328], + [6093,23910], + [6095,152698], + [6097,204572], + [6099,179503], + [6101,33858], + [6103,26987], + [6105,8681], + [6107,141696], + [6109,31244], + [6111,281695], + [6113,75054], + [6115,27635], + [8001,163136], + [8003,6554], + [8005,238301], + [8007,8762], + [8009,2248], + [8011,2242], + [8013,127071], + [8014,22646], + [8015,10020], + [8017,975], + [8019,5685], + [8021,4286], + [8023,2613], + [8025,1559], + [8027,3956], + [8029,14572], + [8031,285797], + [8033,1468], + [8035,106859], + [8037,31312], + [8039,8939], + [8041,252852], + [8043,19242], + [8045,23309], + [8047,3560], + [8049,16061], + [8051,11412], + [8053,1388], + [8055,5075], + [8057,1286], + [8059,229967], + [8061,805], + [8063,3527], + [8065,4271], + [8067,25860], + [8069,132722], + [8071,8217], + [8073,2420], + [8075,8981], + [8077,62644], + [8079,1201], + [8081,6196], + [8083,12094], + [8085,18250], + [8087,11490], + [8089,8969], + [8091,3083], + [8093,13947], + [8095,2087], + [8097,12953], + [8099,5942], + [8101,69526], + [8103,3309], + [8105,6630], + [8107,16303], + [8109,3843], + [8111,756], + [8113,6638], + [8115,1415], + [8117,29842], + [8119,12643], + [8121,2434], + [8123,96281], + [8125,4466], + [9001,361221], + [9003,374249], + [9005,87550], + [9007,74837], + [9009,362004], + [9011,120994], + [9013,57963], + [9015,49073], + [10001,65338], + [10003,217511], + [10005,123036], + [11001,296719], + [12001,112766], + [12003,9687], + [12005,99650], + [12007,11011], + [12009,269864], + [12011,810388], + [12013,5999], + [12015,100632], + [12017,78026], + [12019,75478], + [12021,197298], + [12023,28636], + [12027,14590], + [12029,9319], + [12031,388486], + [12033,136703], + [12035,48595], + [12037,8652], + [12039,19506], + [12041,7307], + [12043,6979], + [12045,9110], + [12047,5778], + [12049,9722], + [12051,14564], + [12053,84504], + [12055,55386], + [12057,536092], + [12059,8641], + [12061,76346], + [12063,21003], + [12065,6632], + [12067,3328], + [12069,144996], + [12071,371099], + [12073,124136], + [12075,20123], + [12077,3357], + [12079,8481], + [12081,172690], + [12083,164050], + [12085,78131], + [12086,989435], + [12087,52764], + [12089,35009], + [12091,92407], + [12093,18509], + [12095,487839], + [12097,128170], + [12099,664594], + [12101,228928], + [12103,503634], + [12105,281214], + [12107,37337], + [12109,89830], + [12111,137029], + [12113,64760], + [12115,228413], + [12117,181307], + [12119,53026], + [12121,19164], + [12123,11004], + [12125,4508], + [12127,254226], + [12129,12804], + [12131,45132], + [12133,10796], + [13001,8512], + [13003,3522], + [13005,4801], + [13007,1652], + [13009,20159], + [13011,7595], + [13013,26400], + [13015,39823], + [13017,7942], + [13019,8709], + [13021,69662], + [13023,5304], + [13025,8086], + [13027,7706], + [13029,11842], + [13031,28794], + [13033,9865], + [13035,9357], + [13037,2409], + [13039,21114], + [13043,4761], + [13045,44607], + [13047,26606], + [13049,4475], + [13051,119323], + [13053,3376], + [13055,10977], + [13057,82360], + [13059,51068], + [13061,2102], + [13063,104705], + [13065,3007], + [13067,286490], + [13069,17061], + [13071,18311], + [13073,48626], + [13075,7287], + [13077,50171], + [13079,5292], + [13081,10734], + [13083,7305], + [13085,10425], + [13087,12125], + [13089,304968], + [13091,9857], + [13093,6328], + [13095,40801], + [13097,51672], + [13099,4975], + [13101,1558], + [13103,19884], + [13105,9583], + [13107,9968], + [13109,4664], + [13111,16207], + [13113,40793], + [13115,40551], + [13117,64052], + [13119,10553], + [13121,437105], + [13123,16564], + [13125,1519], + [13127,40716], + [13129,22278], + [13131,10760], + [13133,8688], + [13135,291547], + [13137,18146], + [13139,68825], + [13141,5360], + [13143,12287], + [13145,13397], + [13147,13007], + [13149,5148], + [13151,76533], + [13153,58325], + [13155,4033], + [13157,23752], + [13159,6153], + [13161,6488], + [13163,7298], + [13165,4221], + [13167,4120], + [13169,11688], + [13171,7474], + [13173,4249], + [13175,21368], + [13177,10276], + [13179,26731], + [13181,4786], + [13183,6039], + [13185,43921], + [13187,12925], + [13189,9319], + [13191,9220], + [13193,6136], + [13195,11784], + [13197,4156], + [13199,9957], + [13201,2791], + [13205,8996], + [13207,10710], + [13209,3921], + [13211,7472], + [13213,15979], + [13215,82690], + [13217,38342], + [13219,12383], + [13221,6484], + [13223,52130], + [13225,11050], + [13227,13692], + [13229,7986], + [13231,6820], + [13233,16908], + [13235,5151], + [13237,12804], + [13239,2047], + [13241,12313], + [13243,4153], + [13245,86331], + [13247,33272], + [13249,2208], + [13251,6739], + [13253,4797], + [13255,26777], + [13257,12662], + [13259,2383], + [13261,13909], + [13263,3399], + [13265,1015], + [13267,9966], + [13269,4563], + [13271,7297], + [13273,4080], + [13275,20177], + [13277,16434], + [13279,12144], + [13281,7731], + [13283,2992], + [13285,28046], + [13287,3841], + [13289,4235], + [13291,14052], + [13293,12161], + [13295,30100], + [13297,32435], + [13299,16326], + [13301,2985], + [13303,9047], + [13305,12199], + [13307,1523], + [13309,2625], + [13311,16062], + [13313,39899], + [13315,3510], + [13317,5158], + [13319,4487], + [13321,9251], + [15001,82324], + [15003,336899], + [15005,113], + [15007,29793], + [15009,70379], + [16001,159471], + [16003,2636], + [16005,33191], + [16007,3914], + [16009,4629], + [16011,16141], + [16013,15050], + [16015,5292], + [16017,24669], + [16019,39731], + [16021,5175], + [16023,1354], + [16025,831], + [16027,69409], + [16029,3226], + [16031,8372], + [16033,531], + [16035,4453], + [16037,3103], + [16039,12162], + [16041,4528], + [16043,8531], + [16045,7099], + [16047,6093], + [16049,8744], + [16051,8722], + [16053,8101], + [16055,63177], + [16057,15988], + [16059,4729], + [16061,1880], + [16063,1976], + [16065,11280], + [16067,7665], + [16069,17438], + [16071,1906], + [16073,4781], + [16075,8945], + [16077,2944], + [16079,7061], + [16081,5478], + [16083,31072], + [16085,11789], + [16087,4529], + [17001,29842], + [17003,4006], + [17005,7089], + [17007,19970], + [17009,2462], + [17011,15720], + [17013,2835], + [17015,8437], + [17017,5836], + [17019,87569], + [17021,15563], + [17023,7772], + [17025,6404], + [17027,15311], + [17029,23425], + [17031,2180359], + [17033,8661], + [17035,4874], + [17037,41079], + [17039,7521], + [17041,8390], + [17043,356179], + [17045,8803], + [17047,3187], + [17049,14570], + [17051,9302], + [17053,6282], + [17055,18525], + [17057,16195], + [17059,2746], + [17061,6389], + [17063,19996], + [17065,4104], + [17067,9274], + [17069,2488], + [17071,3827], + [17073,22161], + [17075,13452], + [17077,28578], + [17079,4345], + [17081,16954], + [17083,9848], + [17085,13574], + [17087,5598], + [17089,182047], + [17091,45246], + [17093,40321], + [17095,24077], + [17097,260310], + [17099,49978], + [17101,6936], + [17103,15049], + [17105,15895], + [17107,12107], + [17109,14419], + [17111,116040], + [17113,69656], + [17115,50475], + [17117,21584], + [17119,117106], + [17121,18296], + [17123,5914], + [17125,7077], + [17127,7113], + [17129,5654], + [17131,7358], + [17133,13392], + [17135,13080], + [17137,15515], + [17139,6260], + [17141,22561], + [17143,83034], + [17145,9426], + [17147,7269], + [17149,7951], + [17151,2491], + [17153,3155], + [17155,3074], + [17157,13707], + [17159,7513], + [17161,65756], + [17163,116249], + [17165,11697], + [17167,89901], + [17169,3459], + [17171,2459], + [17173,10396], + [17175,2674], + [17177,22081], + [17179,57516], + [17181,7924], + [17183,36318], + [17185,5585], + [17187,7682], + [17189,6534], + [17191,7975], + [17193,7181], + [17195,25770], + [17197,237501], + [17199,30359], + [17201,125965], + [17203,15145], + [18001,13014], + [18003,152184], + [18005,33098], + [18007,3937], + [18009,6051], + [18011,22754], + [18013,8285], + [18015,9472], + [18017,16474], + [18019,47776], + [18021,11703], + [18023,13321], + [18025,5520], + [18027,12471], + [18029,20171], + [18031,11209], + [18033,17558], + [18035,52357], + [18037,17384], + [18039,77767], + [18041,10898], + [18043,31968], + [18045,7865], + [18047,9538], + [18049,9708], + [18051,14645], + [18053,30443], + [18055,15211], + [18057,106772], + [18059,28125], + [18061,16534], + [18063,55454], + [18065,21288], + [18067,38679], + [18069,15805], + [18071,18202], + [18073,13168], + [18075,9221], + [18077,14311], + [18079,12069], + [18081,56649], + [18083,17038], + [18085,37038], + [18087,14094], + [18089,208750], + [18091,48448], + [18093,21074], + [18095,59068], + [18097,417862], + [18099,19845], + [18101,4786], + [18103,15479], + [18105,59107], + [18107,16535], + [18109,27754], + [18111,6030], + [18113,20109], + [18115,2784], + [18117,9176], + [18119,10091], + [18121,8085], + [18123,8495], + [18125,5735], + [18127,66179], + [18129,11207], + [18131,6060], + [18133,14706], + [18135,11743], + [18137,11952], + [18139,7508], + [18141,114849], + [18143,10440], + [18145,19080], + [18147,8872], + [18149,10962], + [18151,19377], + [18153,8939], + [18155,4969], + [18157,71096], + [18159,6998], + [18161,3239], + [18163,83003], + [18165,7488], + [18167,46006], + [18169,14171], + [18171,3680], + [18173,24203], + [18175,12220], + [18177,31242], + [18179,11659], + [18181,12970], + [18183,14281], + [19001,3698], + [19003,2010], + [19005,7617], + [19007,6633], + [19009,2972], + [19011,11095], + [19013,55887], + [19015,11756], + [19017,9915], + [19019,8968], + [19021,8237], + [19023,6682], + [19025,5108], + [19027,9376], + [19029,6591], + [19031,8064], + [19033,22163], + [19035,5777], + [19037,5679], + [19039,4086], + [19041,8062], + [19043,8999], + [19045,21733], + [19047,6943], + [19049,27260], + [19051,3600], + [19053,3834], + [19055,8028], + [19057,18535], + [19059,12849], + [19061,38951], + [19063,4758], + [19065,9558], + [19067,7526], + [19069,4894], + [19071,3431], + [19073,4546], + [19075,5530], + [19077,5756], + [19079,7219], + [19081,5330], + [19083,8224], + [19085,6731], + [19087,8280], + [19089,4367], + [19091,4684], + [19093,3426], + [19095,7258], + [19097,9415], + [19099,16181], + [19101,7594], + [19103,55967], + [19105,8911], + [19107,4931], + [19109,7486], + [19111,16205], + [19113,92251], + [19115,5002], + [19117,4238], + [19119,4848], + [19121,6554], + [19123,9766], + [19125,13914], + [19127,16831], + [19129,6109], + [19131,4850], + [19133,4697], + [19135,3884], + [19137,5239], + [19139,17910], + [19141,6649], + [19143,2990], + [19145,7181], + [19147,4628], + [19149,10550], + [19151,3794], + [19153,182262], + [19155,39330], + [19157,8949], + [19159,2613], + [19161,5429], + [19163,71835], + [19165,5542], + [19167,12279], + [19169,36789], + [19171,7766], + [19173,3107], + [19175,5937], + [19177,3670], + [19179,16098], + [19181,18371], + [19183,9516], + [19185,3212], + [19187,17035], + [19189,5194], + [19191,8721], + [19193,41484], + [19195,3548], + [19197,6529], + [20001,6226], + [20003,3720], + [20005,6990], + [20007,2765], + [20009,12696], + [20011,7167], + [20013,4779], + [20015,26058], + [20017,1503], + [20019,2150], + [20021,9890], + [20023,1518], + [20025,1135], + [20027,4042], + [20029,4659], + [20031,3964], + [20033,1044], + [20035,16030], + [20037,17801], + [20039,1818], + [20041,8972], + [20043,3576], + [20045,46731], + [20047,1636], + [20049,1760], + [20051,12872], + [20053,3239], + [20055,13276], + [20057,12005], + [20059,11147], + [20061,14517], + [20063,1373], + [20065,1484], + [20067,2945], + [20069,2340], + [20071,629], + [20073,4068], + [20075,1236], + [20077,3116], + [20079,14527], + [20081,1666], + [20083,973], + [20085,5779], + [20087,8160], + [20089,2032], + [20091,226571], + [20093,1556], + [20095,3818], + [20097,1220], + [20099,10092], + [20101,990], + [20103,28697], + [20105,1864], + [20107,5446], + [20109,1441], + [20111,15237], + [20113,12721], + [20115,5946], + [20117,4866], + [20119,1998], + [20121,13190], + [20123,3296], + [20125,16578], + [20127,3206], + [20129,1467], + [20131,4562], + [20133,7513], + [20135,1740], + [20137,2542], + [20139,7503], + [20141,2206], + [20143,2779], + [20145,3152], + [20147,3049], + [20149,8626], + [20151,4514], + [20153,1458], + [20155,28274], + [20157,2877], + [20159,4548], + [20161,28212], + [20163,2768], + [20165,1869], + [20167,3910], + [20169,24101], + [20171,2193], + [20173,211593], + [20175,8061], + [20177,79140], + [20179,1265], + [20181,3148], + [20183,2232], + [20185,2319], + [20187,990], + [20189,2306], + [20191,10865], + [20193,3536], + [20195,1682], + [20197,3227], + [20199,781], + [20201,2955], + [20203,1054], + [20205,4682], + [20207,2022], + [20209,66747], + [21001,8568], + [21003,9307], + [21005,9127], + [21007,3885], + [21009,19188], + [21011,5405], + [21013,13154], + [21015,46154], + [21017,8927], + [21019,21803], + [21021,12312], + [21023,3840], + [21025,6231], + [21027,10630], + [21029,29318], + [21031,5877], + [21033,6292], + [21035,18065], + [21037,39523], + [21039,2441], + [21041,4696], + [21043,12311], + [21045,7487], + [21047,29459], + [21049,15706], + [21051,8875], + [21053,5311], + [21055,4569], + [21057,3690], + [21059,41452], + [21061,6467], + [21063,3371], + [21065,6865], + [21067,135160], + [21069,6623], + [21071,18175], + [21073,23164], + [21075,3372], + [21077,3786], + [21079,7463], + [21081,9942], + [21083,16777], + [21085,13561], + [21087,5324], + [21089,16330], + [21091,3734], + [21093,43261], + [21095,13513], + [21097,8208], + [21099,8559], + [21101,20320], + [21103,6640], + [21105,2342], + [21107,21180], + [21109,6523], + [21111,337616], + [21113,19331], + [21115,10624], + [21117,68975], + [21119,7461], + [21121,14485], + [21123,6172], + [21125,25446], + [21127,7286], + [21129,3436], + [21131,5278], + [21133,11601], + [21135,6481], + [21137,10819], + [21139,4824], + [21141,12339], + [21143,4791], + [21145,31079], + [21147,7507], + [21149,4264], + [21151,35043], + [21153,5950], + [21155,8182], + [21157,15748], + [21159,5164], + [21161,8105], + [21163,11762], + [21165,3744], + [21167,9941], + [21169,4681], + [21171,5204], + [21173,11699], + [21175,5830], + [21177,13699], + [21179,18075], + [21181,3261], + [21183,10219], + [21185,20688], + [21187,5634], + [21189,2328], + [21191,6339], + [21193,12791], + [21195,30304], + [21197,5598], + [21199,31443], + [21201,1095], + [21203,7703], + [21205,10102], + [21207,9993], + [21209,19303], + [21211,16606], + [21213,7435], + [21215,6704], + [21217,10864], + [21219,5286], + [21221,7810], + [21223,3930], + [21225,6141], + [21227,47223], + [21229,5044], + [21231,10942], + [21233,5936], + [21235,15166], + [21237,3660], + [21239,10711], + [22001,25387], + [22003,9733], + [22005,40784], + [22007,10351], + [22009,18042], + [22011,15040], + [22013,7718], + [22015,49351], + [22017,112028], + [22019,82058], + [22021,4994], + [22023,3593], + [22025,4877], + [22027,7761], + [22029,9383], + [22031,12290], + [22033,187353], + [22035,2904], + [22037,8014], + [22039,14662], + [22041,9034], + [22043,8886], + [22045,29698], + [22047,12707], + [22049,7680], + [22051,189135], + [22053,13306], + [22055,93656], + [22057,38582], + [22059,6560], + [22061,19479], + [22063,50170], + [22065,4804], + [22067,12423], + [22069,18587], + [22071,189896], + [22073,64481], + [22075,9596], + [22077,11130], + [22079,55684], + [22081,4128], + [22083,8621], + [22085,14130], + [22087,16794], + [22089,19896], + [22091,5150], + [22093,8455], + [22095,17510], + [22097,35692], + [22099,21941], + [22101,23028], + [22103,95412], + [22105,50073], + [22107,3357], + [22109,43887], + [22111,11346], + [22113,25235], + [22115,21433], + [22117,21039], + [22119,19336], + [22121,9324], + [22123,5046], + [22125,5097], + [22127,7234], + [23001,49090], + [23003,39529], + [23005,138657], + [23007,21709], + [23009,40184], + [23011,60972], + [23013,23744], + [23015,23493], + [23017,36055], + [23019,73860], + [23021,15340], + [23023,18288], + [23025,30569], + [23027,21566], + [23029,23001], + [23031,105773], + [24001,33311], + [24003,212562], + [24005,335622], + [24009,33780], + [24011,13482], + [24013,62406], + [24015,41103], + [24017,54963], + [24019,16554], + [24021,90136], + [24023,18854], + [24025,95554], + [24027,109282], + [24029,10549], + [24031,375905], + [24033,328182], + [24035,20140], + [24037,41282], + [24039,11130], + [24041,19577], + [24043,60814], + [24045,41192], + [24047,55749], + [24510,296685], + [25001,160281], + [25003,68508], + [25005,230535], + [25007,17188], + [25009,306754], + [25011,33758], + [25013,192175], + [25015,62603], + [25017,612004], + [25019,11618], + [25021,270359], + [25023,200161], + [25025,315522], + [25027,326788], + [26001,11073], + [26003,6554], + [26005,49426], + [26007,16053], + [26009,17824], + [26011,9803], + [26013,5270], + [26015,27010], + [26017,48220], + [26019,12199], + [26021,76922], + [26023,20841], + [26025,61042], + [26027,25887], + [26029,17249], + [26031,18298], + [26033,21253], + [26035,23233], + [26037,30695], + [26039,11092], + [26041,20214], + [26043,13990], + [26045,47050], + [26047,21304], + [26049,192180], + [26051,17672], + [26053,10795], + [26055,41599], + [26057,16339], + [26059,21757], + [26061,18636], + [26063,21199], + [26065,121281], + [26067,24778], + [26069,20443], + [26071,9197], + [26073,28381], + [26075,69458], + [26077,110007], + [26079,12171], + [26081,246901], + [26083,2467], + [26085,14966], + [26087,36332], + [26089,14935], + [26091,43452], + [26093,72809], + [26095,4343], + [26097,11010], + [26099,356626], + [26101,15694], + [26103,34330], + [26105,17293], + [26107,21131], + [26109,14227], + [26111,35960], + [26113,9117], + [26115,62971], + [26117,28221], + [26119,9597], + [26121,73561], + [26123,25075], + [26125,527255], + [26127,15944], + [26129,16047], + [26131,5672], + [26133,13632], + [26135,9118], + [26137,14731], + [26139,102495], + [26141,10428], + [26143,24459], + [26145,86844], + [26147,71822], + [26149,27778], + [26151,22725], + [26153,6313], + [26155,30319], + [26157,24451], + [26159,36785], + [26161,147573], + [26163,821693], + [26165,16736], + [27001,16029], + [27003,126688], + [27005,18784], + [27007,20527], + [27009,16140], + [27011,3115], + [27013,26202], + [27015,11493], + [27017,15656], + [27019,34536], + [27021,24903], + [27023,5721], + [27025,21172], + [27027,23959], + [27029,4773], + [27031,5839], + [27033,5412], + [27035,40180], + [27037,159598], + [27039,7947], + [27041,19905], + [27043,7090], + [27045,9732], + [27047,14231], + [27049,20337], + [27051,3324], + [27053,509469], + [27055,8601], + [27057,14622], + [27059,15321], + [27061,27065], + [27063,4990], + [27065,7849], + [27067,19476], + [27069,2605], + [27071,7900], + [27073,3692], + [27075,7681], + [27077,3672], + [27079,12416], + [27081,3108], + [27083,11098], + [27085,15760], + [27087,2786], + [27089,4812], + [27091,10009], + [27093,10674], + [27095,12750], + [27097,15731], + [27099,17027], + [27101,4556], + [27103,12873], + [27105,8535], + [27107,3421], + [27109,60495], + [27111,35594], + [27113,6297], + [27115,17276], + [27117,4483], + [27119,14610], + [27121,6435], + [27123,217197], + [27125,1948], + [27127,7272], + [27129,7355], + [27131,24453], + [27133,4262], + [27135,7469], + [27137,103058], + [27139,47124], + [27141,32379], + [27143,6582], + [27145,61974], + [27147,15343], + [27149,4160], + [27151,4835], + [27153,12917], + [27155,2073], + [27157,9997], + [27159,6899], + [27161,7903], + [27163,92374], + [27165,5047], + [27167,3078], + [27169,20760], + [27171,49000], + [27173,4760], + [28001,14656], + [28003,17077], + [28005,6635], + [28007,9126], + [28009,4186], + [28011,14070], + [28013,6913], + [28015,5052], + [28017,7514], + [28019,4150], + [28021,4223], + [28023,7876], + [28025,9180], + [28027,10792], + [28029,12184], + [28031,8496], + [28033,61634], + [28035,32289], + [28037,4154], + [28039,9330], + [28041,5123], + [28043,10155], + [28045,21840], + [28047,85181], + [28049,103421], + [28051,8415], + [28053,3855], + [28055,560], + [28057,10126], + [28059,60067], + [28061,8212], + [28063,3673], + [28065,5876], + [28067,28424], + [28069,4722], + [28071,22729], + [28073,24070], + [28075,34698], + [28077,6019], + [28079,9415], + [28081,35872], + [28083,13199], + [28085,15255], + [28087,26556], + [28089,38558], + [28091,11838], + [28093,14881], + [28095,16455], + [28097,5194], + [28099,12357], + [28101,9373], + [28103,5170], + [28105,20947], + [28107,14697], + [28109,23968], + [28111,5519], + [28113,17861], + [28115,12440], + [28117,11054], + [28119,3589], + [28121,56487], + [28123,11470], + [28125,2100], + [28127,11934], + [28129,7237], + [28131,7161], + [28133,9685], + [28135,5530], + [28137,10947], + [28139,9696], + [28141,10295], + [28143,4803], + [28145,11520], + [28147,7132], + [28149,21896], + [28151,21708], + [28153,9213], + [28155,4804], + [28157,5037], + [28159,8745], + [28161,6344], + [28163,10074], + [29001,11263], + [29003,7306], + [29005,2985], + [29007,10852], + [29009,17523], + [29011,5600], + [29013,7842], + [29015,14150], + [29017,5878], + [29019,69551], + [29021,38427], + [29023,19731], + [29025,4605], + [29027,18522], + [29029,41183], + [29031,32616], + [29033,4630], + [29035,3247], + [29037,40030], + [29039,7224], + [29041,4167], + [29043,31576], + [29045,3473], + [29047,93918], + [29049,8876], + [29051,32324], + [29053,7463], + [29055,11955], + [29057,3965], + [29059,7662], + [29061,4199], + [29063,4329], + [29065,7285], + [29067,6519], + [29069,14419], + [29071,43419], + [29073,8205], + [29075,3209], + [29077,125387], + [29079,5023], + [29081,4407], + [29083,10886], + [29085,6835], + [29087,2806], + [29089,4582], + [29091,18021], + [29093,5329], + [29095,312105], + [29097,50668], + [29099,87626], + [29101,21528], + [29103,2289], + [29105,15778], + [29107,14718], + [29109,16649], + [29111,4535], + [29113,21011], + [29115,6429], + [29117,6730], + [29119,9925], + [29121,7665], + [29123,5970], + [29125,4611], + [29127,12826], + [29129,2135], + [29131,12758], + [29133,5711], + [29135,6176], + [29137,4798], + [29139,6130], + [29141,15517], + [29143,8531], + [29145,24313], + [29147,9524], + [29149,5486], + [29151,6533], + [29153,5652], + [29155,8161], + [29157,8568], + [29159,18249], + [29161,19533], + [29163,7875], + [29165,39223], + [29167,13304], + [29169,17904], + [29171,2982], + [29173,5183], + [29175,10714], + [29177,9984], + [29179,4033], + [29181,6597], + [29183,141016], + [29185,5640], + [29186,8637], + [29187,28458], + [29189,438032], + [29195,10117], + [29197,2102], + [29199,2369], + [29201,16987], + [29203,4164], + [29205,3206], + [29207,13609], + [29209,20373], + [29211,3358], + [29213,29255], + [29215,11685], + [29217,9495], + [29219,14685], + [29221,11017], + [29223,8083], + [29225,14417], + [29227,1281], + [29229,8700], + [29510,176002], + [30001,5273], + [30003,4695], + [30005,2843], + [30007,2695], + [30009,6441], + [30011,810], + [30013,37276], + [30015,2879], + [30017,5560], + [30019,1111], + [30021,4233], + [30023,5122], + [30025,1470], + [30027,5836], + [30029,46963], + [30031,42289], + [30033,844], + [30035,5348], + [30037,476], + [30039,2822], + [30041,7250], + [30043,5055], + [30045,1336], + [30047,16588], + [30049,30180], + [30051,1043], + [30053,11413], + [30055,1008], + [30057,6940], + [30059,1432], + [30061,2446], + [30063,50106], + [30065,2654], + [30067,9375], + [30069,324], + [30071,2335], + [30073,2659], + [30075,1022], + [30077,3105], + [30079,673], + [30081,19583], + [30083,4550], + [30085,4063], + [30087,4057], + [30089,6678], + [30091,2089], + [30093,16717], + [30095,4803], + [30097,2148], + [30099,2892], + [30101,2336], + [30103,422], + [30105,4879], + [30107,1197], + [30109,538], + [30111,63943], + [31001,13350], + [31003,3284], + [31005,254], + [31007,369], + [31009,326], + [31011,2649], + [31013,5478], + [31015,1390], + [31017,1865], + [31019,19064], + [31021,3467], + [31023,4053], + [31025,11117], + [31027,4148], + [31029,1946], + [31031,3157], + [31033,4888], + [31035,3001], + [31037,4097], + [31039,4204], + [31041,5579], + [31043,7631], + [31045,4252], + [31047,10123], + [31049,1044], + [31051,2688], + [31053,16584], + [31055,219580], + [31057,1125], + [31059,2913], + [31061,1734], + [31063,1574], + [31065,2721], + [31067,10446], + [31069,1314], + [31071,1178], + [31073,1267], + [31075,391], + [31077,1300], + [31079,23549], + [31081,3968], + [31083,2375], + [31085,511], + [31087,1763], + [31089,5215], + [31091,431], + [31093,2951], + [31095,3918], + [31097,2191], + [31099,2886], + [31101,5424], + [31103,549], + [31105,1963], + [31107,4788], + [31109,120875], + [31111,16583], + [31113,395], + [31115,426], + [31117,283], + [31119,15014], + [31121,3698], + [31123,2442], + [31125,1801], + [31127,3498], + [31129,2465], + [31131,7025], + [31133,1588], + [31135,1450], + [31137,4175], + [31139,3222], + [31141,13378], + [31143,2731], + [31145,5267], + [31147,4393], + [31149,912], + [31151,5762], + [31153,61938], + [31155,9221], + [31157,16408], + [31159,6875], + [31161,2936], + [31163,1941], + [31165,815], + [31167,2633], + [31169,2731], + [31171,402], + [31173,2408], + [31175,2273], + [31177,8301], + [31179,3776], + [31181,1912], + [31183,576], + [31185,6231], + [32001,10826], + [32003,840343], + [32005,23671], + [32007,19566], + [32009,850], + [32011,1076], + [32013,7123], + [32015,2575], + [32017,2730], + [32019,22547], + [32021,2830], + [32023,22350], + [32027,2464], + [32029,1990], + [32031,184841], + [32033,4498], + [32510,23534], + [33001,37386], + [33003,39813], + [33005,34773], + [33007,21321], + [33009,51120], + [33011,166053], + [33013,63541], + [33015,126709], + [33017,51697], + [33019,22341], + [34001,126647], + [34003,352388], + [34005,175615], + [34007,204943], + [34009,98309], + [34011,55834], + [34013,312954], + [34015,109796], + [34017,270335], + [34019,49487], + [34021,143169], + [34023,294800], + [34025,258410], + [34027,189842], + [34029,278052], + [34031,175966], + [34033,27417], + [34035,123127], + [34037,62057], + [34039,199489], + [34041,44925], + [35001,284234], + [35003,3289], + [35005,26697], + [35006,11101], + [35007,10023], + [35009,20062], + [35011,1344], + [35013,81492], + [35015,22585], + [35017,14693], + [35019,2393], + [35021,526], + [35023,2393], + [35025,24919], + [35027,17519], + [35028,8354], + [35029,10999], + [35031,25813], + [35033,3232], + [35035,30992], + [35037,5569], + [35039,19638], + [35041,8163], + [35043,52287], + [35045,49341], + [35047,15595], + [35049,71267], + [35051,8356], + [35053,8059], + [35055,20265], + [35057,7798], + [35059,2305], + [35061,30085], + [36001,137739], + [36003,26140], + [36005,511896], + [36007,90563], + [36009,41111], + [36011,36489], + [36013,66920], + [36015,38369], + [36017,24710], + [36019,35888], + [36021,32775], + [36023,20577], + [36025,31222], + [36027,118638], + [36029,419974], + [36031,25603], + [36033,25306], + [36035,28562], + [36037,25589], + [36039,29210], + [36041,8694], + [36043,33381], + [36045,57966], + [36047,1000293], + [36049,15112], + [36051,27123], + [36053,31757], + [36055,320593], + [36057,23063], + [36059,468346], + [36061,847090], + [36063,99120], + [36065,104180], + [36067,202357], + [36069,48193], + [36071,137025], + [36073,18431], + [36075,53598], + [36077,30777], + [36079,38224], + [36081,835127], + [36083,71475], + [36085,176656], + [36087,104057], + [36089,52133], + [36091,98656], + [36093,68196], + [36095,17231], + [36097,9455], + [36099,16043], + [36101,48875], + [36103,569985], + [36105,49186], + [36107,22203], + [36109,41674], + [36111,83638], + [36113,38726], + [36115,28844], + [36117,41057], + [36119,370821], + [36121,17970], + [36123,13491], + [37001,66576], + [37003,16189], + [37005,8094], + [37007,11576], + [37009,17342], + [37011,13890], + [37013,24688], + [37015,9822], + [37017,17718], + [37019,77482], + [37021,113365], + [37023,40879], + [37025,71937], + [37027,37659], + [37029,4104], + [37031,48179], + [37033,10619], + [37035,67886], + [37037,28753], + [37039,17515], + [37041,7289], + [37043,7140], + [37045,43373], + [37047,26042], + [37049,45002], + [37051,135524], + [37053,14453], + [37055,33492], + [37057,72655], + [37059,18238], + [37061,25728], + [37063,120217], + [37065,24838], + [37067,156872], + [37069,26577], + [37071,88686], + [37073,5208], + [37075,5930], + [37077,22827], + [37079,8213], + [37081,218017], + [37083,25781], + [37085,46731], + [37087,34954], + [37089,54710], + [37091,10635], + [37093,18211], + [37095,3347], + [37097,69013], + [37099,25948], + [37101,67682], + [37103,4838], + [37105,24136], + [37107,27437], + [37109,33641], + [37111,20808], + [37113,25245], + [37115,10608], + [37117,11704], + [37119,398510], + [37121,8713], + [37123,15914], + [37125,43940], + [37127,42286], + [37129,101436], + [37131,11674], + [37133,68226], + [37135,55597], + [37137,7534], + [37139,16833], + [37141,26724], + [37143,6986], + [37145,18193], + [37147,74990], + [37149,11432], + [37151,61041], + [37153,20738], + [37155,52751], + [37157,43696], + [37159,60211], + [37161,33878], + [37163,27234], + [37165,15193], + [37167,27110], + [37169,21924], + [37171,33667], + [37173,8723], + [37175,19163], + [37177,2068], + [37179,72870], + [37181,20082], + [37183,371836], + [37185,11806], + [37187,6491], + [37189,32137], + [37191,52949], + [37193,33065], + [37195,35511], + [37197,17341], + [37199,11032], + [38001,1377], + [38003,5704], + [38005,2950], + [38007,484], + [38009,4341], + [38011,1683], + [38013,1340], + [38015,35754], + [38017,67938], + [38019,2309], + [38021,2636], + [38023,1324], + [38025,2132], + [38027,1323], + [38029,2085], + [38031,1801], + [38033,967], + [38035,29344], + [38037,1690], + [38039,1461], + [38041,1414], + [38043,1674], + [38045,2238], + [38047,1144], + [38049,2948], + [38051,1858], + [38053,3090], + [38055,5590], + [38057,4450], + [38059,12079], + [38061,4119], + [38063,1927], + [38065,905], + [38067,3859], + [38069,2199], + [38071,5615], + [38073,2656], + [38075,1386], + [38077,7503], + [38079,5372], + [38081,2004], + [38083,894], + [38085,1311], + [38087,436], + [38089,10735], + [38091,1171], + [38093,9862], + [38095,1449], + [38097,3780], + [38099,5498], + [38101,26744], + [38103,2481], + [38105,10464], + [39001,12978], + [39003,44999], + [39005,22141], + [39007,46099], + [39009,26385], + [39011,19585], + [39013,32452], + [39015,19301], + [39017,148273], + [39019,13698], + [39021,16755], + [39023,61419], + [39025,80656], + [39027,18133], + [39029,47088], + [39031,16545], + [39033,20167], + [39035,621763], + [39037,22730], + [39039,16729], + [39041,66378], + [39043,37845], + [39045,58687], + [39047,12693], + [39049,527186], + [39051,17407], + [39053,13925], + [39055,36574], + [39057,68241], + [39059,19193], + [39061,377364], + [39063,33174], + [39065,13100], + [39067,8170], + [39069,11963], + [39071,19380], + [39073,13417], + [39075,13666], + [39077,25196], + [39079,14587], + [39081,32826], + [39083,25118], + [39085,101202], + [39087,27603], + [39089,69291], + [39091,23181], + [39093,127036], + [39095,202630], + [39097,15939], + [39099,111833], + [39101,27834], + [39103,69181], + [39105,11191], + [39107,17633], + [39109,44256], + [39111,7567], + [39113,254775], + [39115,7892], + [39117,14155], + [39119,38074], + [39121,6053], + [39123,27909], + [39125,8749], + [39127,15211], + [39129,21275], + [39131,12481], + [39133,67472], + [39135,17888], + [39137,13731], + [39139,54599], + [39141,32148], + [39143,26390], + [39145,34142], + [39147,24122], + [39149,20173], + [39151,165215], + [39153,245109], + [39155,96163], + [39157,40206], + [39159,19429], + [39161,12615], + [39163,6291], + [39165,80750], + [39167,28367], + [39169,45847], + [39171,16668], + [39173,53376], + [39175,9870], + [40001,9142], + [40003,2763], + [40005,6312], + [40007,2670], + [40009,9647], + [40011,5193], + [40013,19586], + [40015,13141], + [40017,45810], + [40019,21148], + [40021,21455], + [40023,7521], + [40025,1587], + [40027,104821], + [40029,2810], + [40031,50739], + [40033,3016], + [40035,6749], + [40037,29761], + [40039,12204], + [40041,24818], + [40043,2445], + [40045,2285], + [40047,26831], + [40049,12827], + [40051,22219], + [40053,2486], + [40055,2738], + [40057,1544], + [40059,1908], + [40061,6028], + [40063,6183], + [40065,12077], + [40067,3378], + [40069,5126], + [40071,21708], + [40073,6409], + [40075,5216], + [40077,4979], + [40079,21448], + [40081,15208], + [40083,17195], + [40085,4539], + [40087,13996], + [40089,15533], + [40091,13350], + [40093,3671], + [40095,10006], + [40097,19239], + [40099,6746], + [40101,30908], + [40103,5341], + [40105,4828], + [40107,5282], + [40109,319828], + [40111,17891], + [40113,21143], + [40115,14060], + [40117,7745], + [40119,33991], + [40121,22634], + [40123,16595], + [40125,29139], + [40127,6110], + [40129,1905], + [40131,35160], + [40133,11642], + [40135,18656], + [40137,20658], + [40139,8208], + [40141,4077], + [40143,268426], + [40145,29694], + [40147,23451], + [40149,5479], + [40151,4478], + [40153,8838], + [41001,8826], + [41003,36245], + [41005,156945], + [41007,21546], + [41009,20698], + [41011,30593], + [41013,10202], + [41015,12613], + [41017,80139], + [41019,48915], + [41021,1156], + [41023,4344], + [41025,3835], + [41027,9271], + [41029,90937], + [41031,9815], + [41033,38001], + [41035,32774], + [41037,4439], + [41039,156112], + [41041,30610], + [41043,48821], + [41045,11692], + [41047,120948], + [41049,4442], + [41051,324832], + [41053,30302], + [41055,918], + [41057,18359], + [41059,29693], + [41061,11489], + [41063,4108], + [41065,11487], + [41067,212450], + [41069,895], + [41071,37110], + [42001,40820], + [42003,589201], + [42005,32520], + [42007,78211], + [42009,23954], + [42011,164827], + [42013,56276], + [42015,29979], + [42017,245956], + [42019,78167], + [42021,65650], + [42023,4455], + [42025,34299], + [42027,63297], + [42029,192462], + [42031,19962], + [42033,38644], + [42035,19080], + [42037,29498], + [42039,44686], + [42041,99988], + [42043,120406], + [42045,222902], + [42047,17585], + [42049,119138], + [42051,62773], + [42053,8760], + [42055,63219], + [42057,7122], + [42059,16460], + [42061,22365], + [42063,38236], + [42065,22434], + [42067,10978], + [42069,96832], + [42071,202952], + [42073,40975], + [42075,55592], + [42077,142613], + [42079,148748], + [42081,52500], + [42083,21225], + [42085,51733], + [42087,21537], + [42089,80359], + [42091,325735], + [42093,7965], + [42095,120363], + [42097,45125], + [42099,20424], + [42101,670171], + [42103,38350], + [42105,12932], + [42107,69323], + [42109,16027], + [42111,38113], + [42113,6304], + [42115,22968], + [42117,21364], + [42119,16997], + [42121,27464], + [42123,23560], + [42125,92977], + [42127,31653], + [42129,168199], + [42131,13254], + [42133,178671], + [44001,20850], + [44003,73701], + [44005,41796], + [44007,264835], + [44009,62206], + [45001,12079], + [45003,72249], + [45005,4486], + [45007,84774], + [45009,7716], + [45011,10484], + [45013,93023], + [45015,73372], + [45017,7340], + [45019,169984], + [45021,23997], + [45023,14701], + [45025,21482], + [45027,17467], + [45029,19901], + [45031,30297], + [45033,13742], + [45035,55186], + [45037,10559], + [45039,11681], + [45041,58666], + [45043,33672], + [45045,195462], + [45047,31054], + [45049,9140], + [45051,185992], + [45053,10299], + [45055,27478], + [45057,32687], + [45059,30709], + [45061,7775], + [45063,113957], + [45065,5453], + [45067,14953], + [45069,12072], + [45071,17922], + [45073,38763], + [45075,42504], + [45077,51244], + [45079,161725], + [45081,9289], + [45083,122628], + [45085,46011], + [45087,14153], + [45089,15359], + [45091,94196], + [46003,1324], + [46005,8304], + [46007,1263], + [46009,2931], + [46011,13137], + [46013,16706], + [46015,2433], + [46017,609], + [46019,4621], + [46021,980], + [46023,3849], + [46025,1710], + [46027,5639], + [46029,12397], + [46031,1540], + [46033,4628], + [46035,8852], + [46037,3630], + [46039,2204], + [46041,2002], + [46043,1439], + [46045,1966], + [46047,4191], + [46049,1136], + [46051,3526], + [46053,2503], + [46055,1013], + [46057,2760], + [46059,1815], + [46061,1177], + [46063,731], + [46065,7623], + [46067,3351], + [46069,708], + [46071,1193], + [46073,1070], + [46075,589], + [46077,2720], + [46079,5559], + [46081,12756], + [46083,17875], + [46085,1704], + [46087,2491], + [46089,1418], + [46091,2534], + [46093,11000], + [46095,838], + [46097,1308], + [46099,71557], + [46101,2824], + [46102,3593], + [46103,44949], + [46105,1739], + [46107,1500], + [46109,4905], + [46111,1172], + [46115,3139], + [46117,1387], + [46119,845], + [46121,3142], + [46123,3072], + [46125,3939], + [46127,6280], + [46129,3003], + [46135,9652], + [46137,987], + [47001,34717], + [47003,18360], + [47005,8975], + [47007,5718], + [47009,55266], + [47011,41395], + [47013,19966], + [47015,6037], + [47017,13184], + [47019,27746], + [47021,15663], + [47023,6980], + [47025,14859], + [47027,4282], + [47029,17459], + [47031,23434], + [47033,6425], + [47035,28151], + [47037,283978], + [47039,6873], + [47041,9405], + [47043,20820], + [47045,16703], + [47047,15669], + [47049,8961], + [47051,18697], + [47053,21999], + [47055,13844], + [47057,10894], + [47059,32025], + [47061,6397], + [47063,26963], + [47065,151107], + [47067,3624], + [47069,10851], + [47071,13946], + [47073,26870], + [47075,8315], + [47077,12776], + [47079,17054], + [47081,10311], + [47083,4188], + [47085,8865], + [47087,5843], + [47089,23499], + [47091,8956], + [47093,194949], + [47095,2598], + [47097,11256], + [47099,18177], + [47101,5470], + [47103,15241], + [47105,21725], + [47107,23341], + [47109,11933], + [47111,9861], + [47113,41877], + [47115,12954], + [47117,13119], + [47119,35254], + [47121,5628], + [47123,20787], + [47125,70098], + [47127,2915], + [47129,8920], + [47131,14659], + [47133,10295], + [47135,4599], + [47137,3462], + [47139,7991], + [47141,31882], + [47143,14365], + [47145,25716], + [47147,26086], + [47149,102968], + [47151,9910], + [47153,6368], + [47155,55918], + [47157,398274], + [47159,8529], + [47161,6778], + [47163,73760], + [47165,65968], + [47167,23199], + [47169,3368], + [47171,8830], + [47173,8958], + [47175,2663], + [47177,17821], + [47179,57254], + [47181,7287], + [47183,15495], + [47185,11511], + [47187,68498], + [47189,45568], + [48001,20116], + [48003,5814], + [48005,35589], + [48007,15355], + [48009,4107], + [48011,904], + [48013,17631], + [48015,12926], + [48017,2784], + [48019,11561], + [48021,29316], + [48023,2665], + [48025,10649], + [48027,125470], + [48029,662872], + [48031,5532], + [48033,385], + [48035,9623], + [48037,38493], + [48039,118336], + [48041,77700], + [48043,5383], + [48045,953], + [48047,3239], + [48049,18287], + [48051,8832], + [48053,20870], + [48055,13759], + [48057,11410], + [48059,6549], + [48061,141924], + [48063,5656], + [48065,2784], + [48067,14379], + [48069,3166], + [48071,13291], + [48073,20859], + [48075,2883], + [48077,5150], + [48079,1360], + [48081,2667], + [48083,5543], + [48085,300960], + [48087,1616], + [48089,10527], + [48091,47108], + [48093,7223], + [48095,1637], + [48097,16606], + [48099,25178], + [48101,968], + [48103,1632], + [48105,1866], + [48107,2902], + [48109,1137], + [48111,2827], + [48113,943257], + [48115,5220], + [48117,7077], + [48119,2458], + [48121,256139], + [48123,9176], + [48125,1282], + [48127,4350], + [48129,2142], + [48131,5523], + [48133,10258], + [48135,53027], + [48137,1606], + [48139,54365], + [48141,270307], + [48143,16987], + [48145,7724], + [48147,14191], + [48149,13868], + [48151,2212], + [48153,3004], + [48155,789], + [48157,197030], + [48159,5770], + [48161,9265], + [48163,5846], + [48165,6301], + [48167,132492], + [48169,2237], + [48171,12778], + [48173,580], + [48175,3710], + [48177,8794], + [48179,10158], + [48181,53727], + [48183,49514], + [48185,10917], + [48187,50015], + [48189,13541], + [48191,1943], + [48193,4566], + [48195,2338], + [48197,2417], + [48199,22597], + [48201,1598698], + [48203,27704], + [48205,1946], + [48207,3443], + [48209,59417], + [48211,1629], + [48213,39595], + [48215,248287], + [48217,16118], + [48219,9293], + [48221,24951], + [48223,15029], + [48225,11532], + [48227,13124], + [48229,1527], + [48231,36704], + [48233,10629], + [48235,856], + [48237,4095], + [48239,6590], + [48241,16798], + [48243,1613], + [48245,104424], + [48247,2441], + [48249,16147], + [48251,56719], + [48253,7422], + [48255,5650], + [48257,38322], + [48259,14055], + [48261,233], + [48263,552], + [48265,23831], + [48267,3371], + [48269,186], + [48271,1940], + [48273,12787], + [48275,2044], + [48277,22481], + [48279,6128], + [48281,8718], + [48283,2746], + [48285,10344], + [48287,7499], + [48289,9509], + [48291,28759], + [48293,10536], + [48295,1512], + [48297,6065], + [48299,14280], + [48301,50], + [48303,115064], + [48305,2676], + [48307,4302], + [48309,95124], + [48311,485], + [48313,5096], + [48315,6218], + [48317,1852], + [48319,2733], + [48321,18801], + [48323,17462], + [48325,17991], + [48327,1702], + [48329,54351], + [48331,11305], + [48333,2846], + [48335,4064], + [48337,10131], + [48339,177647], + [48341,7881], + [48343,6024], + [48345,779], + [48347,27406], + [48349,20234], + [48351,7142], + [48353,7152], + [48355,141033], + [48357,4062], + [48359,841], + [48361,35313], + [48363,15214], + [48365,10920], + [48367,46628], + [48369,3799], + [48371,5585], + [48373,22683], + [48375,47271], + [48377,3825], + [48379,5269], + [48381,51587], + [48383,1372], + [48385,2599], + [48387,6826], + [48389,4640], + [48391,3726], + [48393,439], + [48395,8484], + [48397,27939], + [48399,5298], + [48401,21191], + [48403,7988], + [48405,5342], + [48407,13187], + [48409,26521], + [48411,3177], + [48413,1489], + [48415,6963], + [48417,1754], + [48419,11873], + [48421,1252], + [48423,87309], + [48425,3674], + [48427,19526], + [48429,4938], + [48431,615], + [48433,928], + [48435,2031], + [48437,3221], + [48439,714803], + [48441,55750], + [48443,700], + [48445,4828], + [48447,1079], + [48449,12054], + [48451,46571], + [48453,441240], + [48455,8713], + [48457,10579], + [48459,16613], + [48461,1548], + [48463,10811], + [48465,18651], + [48467,22817], + [48469,35417], + [48471,24058], + [48473,15839], + [48475,4694], + [48477,15514], + [48479,73496], + [48481,17127], + [48483,2730], + [48485,55566], + [48487,6318], + [48489,7040], + [48491,162773], + [48493,16766], + [48495,3027], + [48497,23781], + [48499,20861], + [48501,2978], + [48503,8622], + [48505,6203], + [48507,4283], + [49001,2908], + [49003,17326], + [49005,37024], + [49007,9551], + [49009,1141], + [49011,97570], + [49013,9493], + [49015,4489], + [49017,3726], + [49019,4816], + [49021,19667], + [49023,3502], + [49025,5815], + [49027,4939], + [49029,3006], + [49031,898], + [49033,2834], + [49035,364031], + [49037,5734], + [49039,10379], + [49041,8449], + [49043,26545], + [49045,19455], + [49047,11972], + [49049,148350], + [49051,10577], + [49053,57734], + [49055,1591], + [49057,86187], + [50001,16760], + [50003,20922], + [50005,15942], + [50007,65722], + [50009,5019], + [50011,21588], + [50013,5048], + [50015,12969], + [50017,14845], + [50019,16162], + [50021,33768], + [50023,29941], + [50025,29735], + [50027,34118], + [51001,21002], + [51003,42122], + [51005,8074], + [51007,5359], + [51009,13976], + [51011,6921], + [51013,105404], + [51015,31194], + [51017,3270], + [51019,31937], + [51021,3265], + [51023,14562], + [51025,8166], + [51027,11576], + [51029,7244], + [51031,24769], + [51033,11729], + [51035,16569], + [51036,3229], + [51037,6273], + [51041,122555], + [51043,6235], + [51045,2809], + [51047,17657], + [51049,4626], + [51051,7579], + [51053,11422], + [51057,5757], + [51059,407998], + [51061,25600], + [51063,7790], + [51065,10383], + [51067,29315], + [51069,31346], + [51071,8319], + [51073,15852], + [51075,8618], + [51077,9156], + [51079,7509], + [51081,4090], + [51083,18004], + [51085,38360], + [51087,132778], + [51089,26268], + [51091,1837], + [51093,14633], + [51095,29797], + [51097,3414], + [51099,9477], + [51101,6522], + [51103,7402], + [51105,11745], + [51107,109442], + [51109,16319], + [51111,5935], + [51113,5932], + [51115,5669], + [51117,18591], + [51119,7133], + [51121,38569], + [51125,9931], + [51127,7295], + [51131,7301], + [51133,8995], + [51135,6650], + [51137,14616], + [51139,11600], + [51141,10083], + [51143,31307], + [51145,10043], + [51147,9149], + [51149,12056], + [51153,137115], + [51155,17235], + [51157,3839], + [51159,3850], + [51161,40016], + [51163,11152], + [51165,33660], + [51167,13484], + [51169,11916], + [51171,20876], + [51173,15427], + [51175,7473], + [51177,45185], + [51179,43978], + [51181,3444], + [51183,4696], + [51185,20826], + [51187,16034], + [51191,25601], + [51193,10618], + [51195,17940], + [51197,14079], + [51199,26849], + [51510,72376], + [51520,8831], + [51530,2936], + [51540,19189], + [51550,83196], + [51570,7831], + [51580,3067], + [51590,22438], + [51595,2565], + [51600,8680], + [51610,5489], + [51620,3901], + [51630,10467], + [51640,3252], + [51650,59566], + [51660,17444], + [51670,10121], + [51678,2546], + [51680,31992], + [51683,13123], + [51685,4904], + [51690,7205], + [51700,76198], + [51710,95018], + [51720,1945], + [51730,16326], + [51735,4726], + [51740,40806], + [51750,6427], + [51760,98349], + [51770,47453], + [51775,10832], + [51790,11738], + [51800,33035], + [51810,177879], + [51820,9717], + [51830,5176], + [51840,11872], + [53001,6242], + [53003,9872], + [53005,68618], + [53007,35465], + [53009,35582], + [53011,167413], + [53013,2136], + [53015,43450], + [53017,16004], + [53019,4403], + [53021,24423], + [53023,1233], + [53025,35083], + [53027,35166], + [53029,40234], + [53031,17767], + [53033,851261], + [53035,107367], + [53037,21900], + [53039,9786], + [53041,34050], + [53043,5776], + [53045,32518], + [53047,22245], + [53049,15547], + [53051,7936], + [53053,325375], + [53055,13313], + [53057,51473], + [53059,5628], + [53061,286659], + [53063,201434], + [53065,21156], + [53067,108182], + [53069,2067], + [53071,23451], + [53073,90665], + [53075,19323], + [53077,85474], + [54001,7849], + [54003,44762], + [54005,11070], + [54007,7415], + [54009,10967], + [54011,46169], + [54013,3963], + [54015,4572], + [54017,3946], + [54019,21618], + [54021,3448], + [54023,6366], + [54025,18980], + [54027,13688], + [54029,14541], + [54031,8078], + [54033,31431], + [54035,13305], + [54037,22037], + [54039,92618], + [54041,7958], + [54043,9887], + [54045,16743], + [54047,11322], + [54049,26463], + [54051,15918], + [54053,13006], + [54055,30115], + [54057,13039], + [54059,12699], + [54061,43238], + [54063,7601], + [54065,9753], + [54067,13064], + [54069,21172], + [54071,5132], + [54073,3390], + [54075,8847], + [54077,15097], + [54079,23438], + [54081,35931], + [54083,14189], + [54085,5843], + [54087,7351], + [54089,7680], + [54091,7541], + [54093,5346], + [54095,5000], + [54097,11099], + [54099,19227], + [54101,5428], + [54103,8173], + [54105,3231], + [54107,40215], + [54109,10958], + [55001,17436], + [55003,9656], + [55005,23614], + [55007,12999], + [55009,104371], + [55011,6664], + [55013,15278], + [55015,19695], + [55017,27185], + [55019,15076], + [55021,26137], + [55023,8802], + [55025,216022], + [55027,37005], + [55029,23966], + [55031,22825], + [55033,17964], + [55035,42151], + [55037,4780], + [55039,43910], + [55041,8970], + [55043,21581], + [55045,15856], + [55047,10616], + [55049,10719], + [55051,5999], + [55053,9727], + [55055,35147], + [55057,14669], + [55059,69288], + [55061,9304], + [55063,48402], + [55065,7230], + [55067,12360], + [55069,16784], + [55071,37189], + [55073,57734], + [55075,30379], + [55077,9896], + [55078,2253], + [55079,418053], + [55081,19204], + [55083,23537], + [55085,30125], + [55087,73149], + [55089,36267], + [55091,3579], + [55093,16132], + [55095,24248], + [55097,30054], + [55099,11120], + [55101,82164], + [55103,8868], + [55105,68422], + [55107,8883], + [55109,33983], + [55111,29708], + [55113,15975], + [55115,20720], + [55117,50766], + [55119,10582], + [55121,12619], + [55123,13720], + [55125,25116], + [55127,51531], + [55129,12979], + [55131,54695], + [55133,160864], + [55135,25396], + [55137,14843], + [55139,73329], + [55141,34088], + [56001,17939], + [56003,5379], + [56005,18955], + [56007,8576], + [56009,6403], + [56011,3595], + [56013,17796], + [56015,5972], + [56017,2582], + [56019,4553], + [56021,40462], + [56023,8946], + [56025,33807], + [56027,1338], + [56029,13562], + [56031,4667], + [56033,13939], + [56035,5770], + [56037,18735], + [56039,12813], + [56041,8713], + [56043,3833], + [56045,3533] + ] +} diff --git a/data/regional/united-states/meta/us-counties.json b/data/regional/united-states/meta/us-counties.json new file mode 100644 index 0000000..04bd524 --- /dev/null +++ b/data/regional/united-states/meta/us-counties.json @@ -0,0 +1,3314 @@ +{ + "metadata" : { + "name" : "US County Metadata", + "description" : "Metadata related to counties, states and regions.", + "units" : "counties", + "year" : "2023", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "meta", + "tags" : ["regional","us","metadata","counties","states","geography","regions"], + "authors" : [ + "United States Department of Agriculture (USDA)" + ], + "sources" : [ + "https://www.nass.usda.gov/Data_and_Statistics/County_Data_Files/Frequently_Asked_Questions/county_list.txt" + ] + }, + "data" : [ + ["us.county.fips","us.county.name","us.county.state","us.county.state.code","us.county.state.num","us.county.disctrict","us.county.num","us.county.status"], + [1000,"Alabama","Alabama","AL",1,0,0,"current"], + [1033,"Colbert","Alabama","AL",1,10,33,"current"], + [1057,"Fayette","Alabama","AL",1,10,57,"historical"], + [1059,"Franklin","Alabama","AL",1,10,59,"current"], + [1075,"Lamar","Alabama","AL",1,10,75,"historical"], + [1077,"Lauderdale","Alabama","AL",1,10,77,"current"], + [1079,"Lawrence","Alabama","AL",1,10,79,"current"], + [1083,"Limestone","Alabama","AL",1,10,83,"current"], + [1089,"Madison","Alabama","AL",1,10,89,"current"], + [1093,"Marion","Alabama","AL",1,10,93,"current"], + [1103,"Morgan","Alabama","AL",1,10,103,"current"], + [1133,"Winston","Alabama","AL",1,10,133,"current"], + [1009,"Blount","Alabama","AL",1,20,9,"current"], + [1015,"Calhoun","Alabama","AL",1,20,15,"current"], + [1019,"Cherokee","Alabama","AL",1,20,19,"current"], + [1029,"Cleburne","Alabama","AL",1,20,29,"current"], + [1043,"Cullman","Alabama","AL",1,20,43,"current"], + [1049,"De Kalb","Alabama","AL",1,20,49,"current"], + [1055,"Etowah","Alabama","AL",1,20,55,"current"], + [1071,"Jackson","Alabama","AL",1,20,71,"current"], + [1077,"Lauderdale","Alabama","AL",1,20,77,"historical"], + [1079,"Lawrence","Alabama","AL",1,20,79,"historical"], + [1083,"Limestone","Alabama","AL",1,20,83,"historical"], + [1089,"Madison","Alabama","AL",1,20,89,"historical"], + [1095,"Marshall","Alabama","AL",1,20,95,"current"], + [1103,"Morgan","Alabama","AL",1,20,103,"historical"], + [1115,"Saint Clair","Alabama","AL",1,20,115,"current"], + [1007,"Bibb","Alabama","AL",1,21,7,"historical"], + [1009,"Blount","Alabama","AL",1,21,9,"historical"], + [1021,"Chilton","Alabama","AL",1,21,21,"historical"], + [1043,"Cullman","Alabama","AL",1,21,43,"historical"], + [1073,"Jefferson","Alabama","AL",1,21,73,"historical"], + [1115,"Saint Clair","Alabama","AL",1,21,115,"historical"], + [1117,"Shelby","Alabama","AL",1,21,117,"historical"], + [1127,"Walker","Alabama","AL",1,21,127,"historical"], + [1133,"Winston","Alabama","AL",1,21,133,"historical"], + [1007,"Bibb","Alabama","AL",1,30,7,"current"], + [1015,"Calhoun","Alabama","AL",1,30,15,"historical"], + [1017,"Chambers","Alabama","AL",1,30,17,"current"], + [1019,"Cherokee","Alabama","AL",1,30,19,"historical"], + [1021,"Chilton","Alabama","AL",1,30,21,"current"], + [1027,"Clay","Alabama","AL",1,30,27,"current"], + [1029,"Cleburne","Alabama","AL",1,30,29,"historical"], + [1037,"Coosa","Alabama","AL",1,30,37,"current"], + [1049,"De Kalb","Alabama","AL",1,30,49,"historical"], + [1055,"Etowah","Alabama","AL",1,30,55,"historical"], + [1057,"Fayette","Alabama","AL",1,30,57,"current"], + [1071,"Jackson","Alabama","AL",1,30,71,"historical"], + [1073,"Jefferson","Alabama","AL",1,30,73,"current"], + [1075,"Lamar","Alabama","AL",1,30,75,"current"], + [1081,"Lee","Alabama","AL",1,30,81,"current"], + [1107,"Pickens","Alabama","AL",1,30,107,"current"], + [1111,"Randolph","Alabama","AL",1,30,111,"current"], + [1117,"Shelby","Alabama","AL",1,30,117,"current"], + [1121,"Talladega","Alabama","AL",1,30,121,"current"], + [1123,"Tallapoosa","Alabama","AL",1,30,123,"current"], + [1125,"Tuscaloosa","Alabama","AL",1,30,125,"current"], + [1127,"Walker","Alabama","AL",1,30,127,"current"], + [1001,"Autauga","Alabama","AL",1,40,1,"current"], + [1011,"Bullock","Alabama","AL",1,40,11,"current"], + [1047,"Dallas","Alabama","AL",1,40,47,"current"], + [1051,"Elmore","Alabama","AL",1,40,51,"current"], + [1063,"Greene","Alabama","AL",1,40,63,"current"], + [1065,"Hale","Alabama","AL",1,40,65,"current"], + [1085,"Lowndes","Alabama","AL",1,40,85,"current"], + [1087,"Macon","Alabama","AL",1,40,87,"current"], + [1091,"Marengo","Alabama","AL",1,40,91,"current"], + [1101,"Montgomery","Alabama","AL",1,40,101,"current"], + [1105,"Perry","Alabama","AL",1,40,105,"current"], + [1107,"Pickens","Alabama","AL",1,40,107,"historical"], + [1119,"Sumter","Alabama","AL",1,40,119,"current"], + [1125,"Tuscaloosa","Alabama","AL",1,40,125,"historical"], + [1001,"Autauga","Alabama","AL",1,50,1,"historical"], + [1003,"Baldwin","Alabama","AL",1,50,3,"current"], + [1013,"Butler","Alabama","AL",1,50,13,"current"], + [1023,"Choctaw","Alabama","AL",1,50,23,"current"], + [1025,"Clarke","Alabama","AL",1,50,25,"current"], + [1035,"Conecuh","Alabama","AL",1,50,35,"current"], + [1047,"Dallas","Alabama","AL",1,50,47,"historical"], + [1051,"Elmore","Alabama","AL",1,50,51,"historical"], + [1053,"Escambia","Alabama","AL",1,50,53,"current"], + [1085,"Lowndes","Alabama","AL",1,50,85,"historical"], + [1097,"Mobile","Alabama","AL",1,50,97,"current"], + [1099,"Monroe","Alabama","AL",1,50,99,"current"], + [1101,"Montgomery","Alabama","AL",1,50,101,"historical"], + [1105,"Perry","Alabama","AL",1,50,105,"historical"], + [1129,"Washington","Alabama","AL",1,50,129,"current"], + [1131,"Wilcox","Alabama","AL",1,50,131,"current"], + [1005,"Barbour","Alabama","AL",1,60,5,"current"], + [1017,"Chambers","Alabama","AL",1,60,17,"historical"], + [1027,"Clay","Alabama","AL",1,60,27,"historical"], + [1031,"Coffee","Alabama","AL",1,60,31,"current"], + [1037,"Coosa","Alabama","AL",1,60,37,"historical"], + [1039,"Covington","Alabama","AL",1,60,39,"current"], + [1041,"Crenshaw","Alabama","AL",1,60,41,"current"], + [1045,"Dale","Alabama","AL",1,60,45,"current"], + [1061,"Geneva","Alabama","AL",1,60,61,"current"], + [1067,"Henry","Alabama","AL",1,60,67,"current"], + [1069,"Houston","Alabama","AL",1,60,69,"current"], + [1081,"Lee","Alabama","AL",1,60,81,"historical"], + [1087,"Macon","Alabama","AL",1,60,87,"historical"], + [1109,"Pike","Alabama","AL",1,60,109,"current"], + [1111,"Randolph","Alabama","AL",1,60,111,"historical"], + [1113,"Russell","Alabama","AL",1,60,113,"current"], + [1121,"Talladega","Alabama","AL",1,60,121,"historical"], + [1123,"Tallapoosa","Alabama","AL",1,60,123,"historical"], + [1003,"Baldwin","Alabama","AL",1,70,3,"historical"], + [1023,"Choctaw","Alabama","AL",1,70,23,"historical"], + [1025,"Clarke","Alabama","AL",1,70,25,"historical"], + [1097,"Mobile","Alabama","AL",1,70,97,"historical"], + [1129,"Washington","Alabama","AL",1,70,129,"historical"], + [1013,"Butler","Alabama","AL",1,80,13,"historical"], + [1035,"Conecuh","Alabama","AL",1,80,35,"historical"], + [1039,"Covington","Alabama","AL",1,80,39,"historical"], + [1041,"Crenshaw","Alabama","AL",1,80,41,"historical"], + [1053,"Escambia","Alabama","AL",1,80,53,"historical"], + [1099,"Monroe","Alabama","AL",1,80,99,"historical"], + [1005,"Barbour","Alabama","AL",1,90,5,"historical"], + [1011,"Bullock","Alabama","AL",1,90,11,"historical"], + [1031,"Coffee","Alabama","AL",1,90,31,"historical"], + [1045,"Dale","Alabama","AL",1,90,45,"historical"], + [1061,"Geneva","Alabama","AL",1,90,61,"historical"], + [1067,"Henry","Alabama","AL",1,90,67,"historical"], + [1069,"Houston","Alabama","AL",1,90,69,"historical"], + [1109,"Pike","Alabama","AL",1,90,109,"historical"], + [2000,"Alaska","Alaska","AK",2,0,0,"current"], + [2016,"Aleutians West Census Area","Alaska","AK",2,10,16,"current"], + [2090,"Fairbanks North Star","Alaska","AK",2,10,90,"current"], + [2240,"Southeast Fairbanks","Alaska","AK",2,10,240,"current"], + [2290,"Yukon-Koyukuk","Alaska","AK",2,10,290,"current"], + [2020,"Anchorage","Alaska","AK",2,20,20,"current"], + [2063,"Chugach Census Area","Alaska","AK",2,20,63,"current"], + [2066,"Copper River Census Area","Alaska","AK",2,20,66,"current"], + [2068,"Denali Borough","Alaska","AK",2,20,68,"current"], + [2105,"Hoonah-Angoon Census Area","Alaska","AK",2,20,105,"current"], + [2158,"Kusilvak Census Area","Alaska","AK",2,20,158,"current"], + [2164,"Lake and Peninsula Borough","Alaska","AK",2,20,164,"current"], + [2170,"Matanuska-Susitna","Alaska","AK",2,20,170,"current"], + [2261,"Valdez-Cordova","Alaska","AK",2,20,261,"current"], + [2122,"Kenai Peninsula","Alaska","AK",2,30,122,"current"], + [2100,"Haines","Alaska","AK",2,40,100,"current"], + [2110,"Juneau","Alaska","AK",2,40,110,"current"], + [2130,"Ketchikan Gateway","Alaska","AK",2,40,130,"current"], + [2195,"Petersburg Borough","Alaska","AK",2,40,195,"current"], + [2198,"Prince of Wales-Hyder Census Area","Alaska","AK",2,40,198,"current"], + [2201,"Prince of Wales-Outer Ketchikan","Alaska","AK",2,40,201,"current"], + [2220,"Sitka","Alaska","AK",2,40,220,"current"], + [2230,"Skagway Municipality","Alaska","AK",2,40,230,"current"], + [2231,"Skagway-Yakutat-Angoon","Alaska","AK",2,40,231,"current"], + [2280,"Wrangell-Petersburg","Alaska","AK",2,40,280,"current"], + [2010,"Aleutian Islands","Alaska","AK",2,50,10,"current"], + [2013,"Aleutians East","Alaska","AK",2,50,13,"current"], + [2050,"Bethel","Alaska","AK",2,50,50,"current"], + [2060,"Bristol Bay","Alaska","AK",2,50,60,"current"], + [2070,"Dillingham","Alaska","AK",2,50,70,"current"], + [2150,"Kodiak Island","Alaska","AK",2,50,150,"current"], + [2180,"Nome","Alaska","AK",2,50,180,"current"], + [2185,"North Slope","Alaska","AK",2,50,185,"current"], + [2188,"Northeast Arctic","Alaska","AK",2,50,188,"current"], + [2270,"Wade Hampton","Alaska","AK",2,50,270,"current"], + [2275,"Wrangell City and Borough","Alaska","AK",2,50,275,"current"], + [2282,"Yakutat City and Borough","Alaska","AK",2,50,282,"current"], + [4000,"Arizona","Arizona","AZ",4,0,0,"current"], + [4001,"Apache","Arizona","AZ",4,10,1,"current"], + [4005,"Coconino","Arizona","AZ",4,10,5,"current"], + [4007,"Gila","Arizona","AZ",4,10,7,"current"], + [4015,"Mohave","Arizona","AZ",4,10,15,"current"], + [4017,"Navajo","Arizona","AZ",4,10,17,"current"], + [4025,"Yavapai","Arizona","AZ",4,10,25,"current"], + [4001,"Apache","Arizona","AZ",4,20,1,"historical"], + [4005,"Coconino","Arizona","AZ",4,20,5,"historical"], + [4015,"Mohave","Arizona","AZ",4,20,15,"historical"], + [4017,"Navajo","Arizona","AZ",4,20,17,"historical"], + [4025,"Yavapai","Arizona","AZ",4,20,25,"historical"], + [4013,"Maricopa","Arizona","AZ",4,50,13,"historical"], + [4021,"Pinal","Arizona","AZ",4,50,21,"historical"], + [4012,"Lapaz","Arizona","AZ",4,70,12,"historical"], + [4027,"Yuma","Arizona","AZ",4,70,27,"historical"], + [4003,"Cochise","Arizona","AZ",4,80,3,"current"], + [4009,"Graham","Arizona","AZ",4,80,9,"current"], + [4011,"Greenlee","Arizona","AZ",4,80,11,"current"], + [4012,"Lapaz","Arizona","AZ",4,80,12,"current"], + [4013,"Maricopa","Arizona","AZ",4,80,13,"current"], + [4019,"Pima","Arizona","AZ",4,80,19,"current"], + [4021,"Pinal","Arizona","AZ",4,80,21,"current"], + [4023,"Santa Cruz","Arizona","AZ",4,80,23,"current"], + [4027,"Yuma","Arizona","AZ",4,80,27,"current"], + [4003,"Cochise","Arizona","AZ",4,90,3,"historical"], + [4007,"Gila","Arizona","AZ",4,90,7,"historical"], + [4009,"Graham","Arizona","AZ",4,90,9,"historical"], + [4011,"Greenlee","Arizona","AZ",4,90,11,"historical"], + [4019,"Pima","Arizona","AZ",4,90,19,"historical"], + [4023,"Santa Cruz","Arizona","AZ",4,90,23,"historical"], + [5000,"Arkansas","Arkansas","AR",5,0,0,"current"], + [5007,"Benton","Arkansas","AR",5,10,7,"current"], + [5009,"Boone","Arkansas","AR",5,10,9,"current"], + [5015,"Carroll","Arkansas","AR",5,10,15,"current"], + [5087,"Madison","Arkansas","AR",5,10,87,"current"], + [5101,"Newton","Arkansas","AR",5,10,101,"current"], + [5143,"Washington","Arkansas","AR",5,10,143,"current"], + [5005,"Baxter","Arkansas","AR",5,20,5,"current"], + [5023,"Cleburne","Arkansas","AR",5,20,23,"current"], + [5049,"Fulton","Arkansas","AR",5,20,49,"current"], + [5065,"Izard","Arkansas","AR",5,20,65,"current"], + [5089,"Marion","Arkansas","AR",5,20,89,"current"], + [5129,"Searcy","Arkansas","AR",5,20,129,"current"], + [5135,"Sharp","Arkansas","AR",5,20,135,"current"], + [5137,"Stone","Arkansas","AR",5,20,137,"current"], + [5141,"Van Buren","Arkansas","AR",5,20,141,"current"], + [5021,"Clay","Arkansas","AR",5,30,21,"current"], + [5031,"Craighead","Arkansas","AR",5,30,31,"current"], + [5055,"Greene","Arkansas","AR",5,30,55,"current"], + [5063,"Independence","Arkansas","AR",5,30,63,"current"], + [5067,"Jackson","Arkansas","AR",5,30,67,"current"], + [5075,"Lawrence","Arkansas","AR",5,30,75,"current"], + [5093,"Mississippi","Arkansas","AR",5,30,93,"current"], + [5111,"Poinsett","Arkansas","AR",5,30,111,"current"], + [5121,"Randolph","Arkansas","AR",5,30,121,"current"], + [5145,"White","Arkansas","AR",5,30,145,"current"], + [5033,"Crawford","Arkansas","AR",5,40,33,"current"], + [5047,"Franklin","Arkansas","AR",5,40,47,"current"], + [5071,"Johnson","Arkansas","AR",5,40,71,"current"], + [5083,"Logan","Arkansas","AR",5,40,83,"current"], + [5113,"Polk","Arkansas","AR",5,40,113,"current"], + [5115,"Pope","Arkansas","AR",5,40,115,"current"], + [5127,"Scott","Arkansas","AR",5,40,127,"current"], + [5131,"Sebastian","Arkansas","AR",5,40,131,"current"], + [5149,"Yell","Arkansas","AR",5,40,149,"current"], + [5029,"Conway","Arkansas","AR",5,50,29,"current"], + [5045,"Faulkner","Arkansas","AR",5,50,45,"current"], + [5051,"Garland","Arkansas","AR",5,50,51,"current"], + [5053,"Grant","Arkansas","AR",5,50,53,"current"], + [5059,"Hot Spring","Arkansas","AR",5,50,59,"current"], + [5105,"Perry","Arkansas","AR",5,50,105,"current"], + [5119,"Pulaski","Arkansas","AR",5,50,119,"current"], + [5125,"Saline","Arkansas","AR",5,50,125,"current"], + [5001,"Arkansas","Arkansas","AR",5,60,1,"current"], + [5035,"Crittenden","Arkansas","AR",5,60,35,"current"], + [5037,"Cross","Arkansas","AR",5,60,37,"current"], + [5077,"Lee","Arkansas","AR",5,60,77,"current"], + [5085,"Lonoke","Arkansas","AR",5,60,85,"current"], + [5095,"Monroe","Arkansas","AR",5,60,95,"current"], + [5107,"Phillips","Arkansas","AR",5,60,107,"current"], + [5117,"Prairie","Arkansas","AR",5,60,117,"current"], + [5123,"Saint Francis","Arkansas","AR",5,60,123,"current"], + [5147,"Woodruff","Arkansas","AR",5,60,147,"current"], + [5057,"Hempstead","Arkansas","AR",5,70,57,"current"], + [5061,"Howard","Arkansas","AR",5,70,61,"current"], + [5073,"Lafayette","Arkansas","AR",5,70,73,"current"], + [5081,"Little River","Arkansas","AR",5,70,81,"current"], + [5091,"Miller","Arkansas","AR",5,70,91,"current"], + [5097,"Montgomery","Arkansas","AR",5,70,97,"current"], + [5109,"Pike","Arkansas","AR",5,70,109,"current"], + [5133,"Sevier","Arkansas","AR",5,70,133,"current"], + [5011,"Bradley","Arkansas","AR",5,80,11,"current"], + [5013,"Calhoun","Arkansas","AR",5,80,13,"current"], + [5019,"Clark","Arkansas","AR",5,80,19,"current"], + [5025,"Cleveland","Arkansas","AR",5,80,25,"current"], + [5027,"Columbia","Arkansas","AR",5,80,27,"current"], + [5039,"Dallas","Arkansas","AR",5,80,39,"current"], + [5099,"Nevada","Arkansas","AR",5,80,99,"current"], + [5103,"Ouachita","Arkansas","AR",5,80,103,"current"], + [5139,"Union","Arkansas","AR",5,80,139,"current"], + [5003,"Ashley","Arkansas","AR",5,90,3,"current"], + [5017,"Chicot","Arkansas","AR",5,90,17,"current"], + [5041,"Desha","Arkansas","AR",5,90,41,"current"], + [5043,"Drew","Arkansas","AR",5,90,43,"current"], + [5069,"Jefferson","Arkansas","AR",5,90,69,"current"], + [5079,"Lincoln","Arkansas","AR",5,90,79,"current"], + [6000,"California","California","CA",6,0,0,"current"], + [6015,"Del Norte","California","CA",6,10,15,"current"], + [6023,"Humboldt","California","CA",6,10,23,"current"], + [6045,"Mendocino","California","CA",6,10,45,"current"], + [6089,"Shasta","California","CA",6,20,89,"current"], + [6093,"Siskiyou","California","CA",6,20,93,"current"], + [6105,"Trinity","California","CA",6,20,105,"current"], + [6035,"Lassen","California","CA",6,30,35,"current"], + [6049,"Modoc","California","CA",6,30,49,"current"], + [6063,"Plumas","California","CA",6,30,63,"current"], + [6001,"Alameda","California","CA",6,40,1,"current"], + [6013,"Contra Costa","California","CA",6,40,13,"current"], + [6033,"Lake","California","CA",6,40,33,"current"], + [6041,"Marin","California","CA",6,40,41,"current"], + [6053,"Monterey","California","CA",6,40,53,"current"], + [6055,"Napa","California","CA",6,40,55,"current"], + [6069,"San Benito","California","CA",6,40,69,"current"], + [6075,"San Francisco","California","CA",6,40,75,"current"], + [6079,"San Luis Obispo","California","CA",6,40,79,"current"], + [6081,"San Mateo","California","CA",6,40,81,"current"], + [6085,"Santa Clara","California","CA",6,40,85,"current"], + [6087,"Santa Cruz","California","CA",6,40,87,"current"], + [6097,"Sonoma","California","CA",6,40,97,"current"], + [6007,"Butte","California","CA",6,50,7,"current"], + [6011,"Colusa","California","CA",6,50,11,"current"], + [6021,"Glenn","California","CA",6,50,21,"current"], + [6067,"Sacramento","California","CA",6,50,67,"current"], + [6095,"Solano","California","CA",6,50,95,"current"], + [6101,"Sutter","California","CA",6,50,101,"current"], + [6103,"Tehama","California","CA",6,50,103,"current"], + [6113,"Yolo","California","CA",6,50,113,"current"], + [6115,"Yuba","California","CA",6,50,115,"current"], + [6019,"Fresno","California","CA",6,51,19,"current"], + [6029,"Kern","California","CA",6,51,29,"current"], + [6031,"Kings","California","CA",6,51,31,"current"], + [6039,"Madera","California","CA",6,51,39,"current"], + [6047,"Merced","California","CA",6,51,47,"current"], + [6077,"San Joaquin","California","CA",6,51,77,"current"], + [6099,"Stanislaus","California","CA",6,51,99,"current"], + [6107,"Tulare","California","CA",6,51,107,"current"], + [6003,"Alpine","California","CA",6,60,3,"current"], + [6005,"Amador","California","CA",6,60,5,"current"], + [6009,"Calaveras","California","CA",6,60,9,"current"], + [6017,"El Dorado","California","CA",6,60,17,"current"], + [6027,"Inyo","California","CA",6,60,27,"current"], + [6043,"Mariposa","California","CA",6,60,43,"current"], + [6051,"Mono","California","CA",6,60,51,"current"], + [6057,"Nevada","California","CA",6,60,57,"current"], + [6061,"Placer","California","CA",6,60,61,"current"], + [6091,"Sierra","California","CA",6,60,91,"current"], + [6109,"Tuolumne","California","CA",6,60,109,"current"], + [6025,"Imperial","California","CA",6,80,25,"current"], + [6037,"Los Angeles","California","CA",6,80,37,"current"], + [6059,"Orange","California","CA",6,80,59,"current"], + [6065,"Riverside","California","CA",6,80,65,"current"], + [6071,"San Bernardino","California","CA",6,80,71,"current"], + [6073,"San Diego","California","CA",6,80,73,"current"], + [6083,"Santa Barbara","California","CA",6,80,83,"current"], + [6111,"Ventura","California","CA",6,80,111,"current"], + [8000,"Colorado","Colorado","CO",8,0,0,"current"], + [8015,"Chaffee","Colorado","CO",8,10,15,"current"], + [8019,"Clear Creek","Colorado","CO",8,10,19,"current"], + [8037,"Eagle","Colorado","CO",8,10,37,"current"], + [8047,"Gilpin","Colorado","CO",8,10,47,"current"], + [8049,"Grand","Colorado","CO",8,10,49,"current"], + [8051,"Gunnison","Colorado","CO",8,10,51,"current"], + [8057,"Jackson","Colorado","CO",8,10,57,"current"], + [8065,"Lake","Colorado","CO",8,10,65,"current"], + [8081,"Moffat","Colorado","CO",8,10,81,"current"], + [8093,"Park","Colorado","CO",8,10,93,"current"], + [8097,"Pitkin","Colorado","CO",8,10,97,"current"], + [8103,"Rio Blanco","Colorado","CO",8,10,103,"current"], + [8107,"Routt","Colorado","CO",8,10,107,"current"], + [8117,"Summit","Colorado","CO",8,10,117,"current"], + [8119,"Teller","Colorado","CO",8,10,119,"current"], + [8013,"Boulder","Colorado","CO",8,20,13,"current"], + [8014,"Broomfield","Colorado","CO",8,20,14,"current"], + [8059,"Jefferson","Colorado","CO",8,20,59,"current"], + [8069,"Larimer","Colorado","CO",8,20,69,"current"], + [8075,"Logan","Colorado","CO",8,20,75,"current"], + [8087,"Morgan","Colorado","CO",8,20,87,"current"], + [8115,"Sedgwick","Colorado","CO",8,20,115,"current"], + [8123,"Weld","Colorado","CO",8,20,123,"current"], + [8001,"Adams","Colorado","CO",8,60,1,"current"], + [8005,"Arapahoe","Colorado","CO",8,60,5,"current"], + [8017,"Cheyenne","Colorado","CO",8,60,17,"current"], + [8031,"Denver","Colorado","CO",8,60,31,"current"], + [8035,"Douglas","Colorado","CO",8,60,35,"current"], + [8039,"Elbert","Colorado","CO",8,60,39,"current"], + [8041,"El Paso","Colorado","CO",8,60,41,"current"], + [8061,"Kiowa","Colorado","CO",8,60,61,"current"], + [8063,"Kit Carson","Colorado","CO",8,60,63,"current"], + [8073,"Lincoln","Colorado","CO",8,60,73,"current"], + [8095,"Phillips","Colorado","CO",8,60,95,"current"], + [8121,"Washington","Colorado","CO",8,60,121,"current"], + [8125,"Yuma","Colorado","CO",8,60,125,"current"], + [8007,"Archuleta","Colorado","CO",8,70,7,"current"], + [8029,"Delta","Colorado","CO",8,70,29,"current"], + [8033,"Dolores","Colorado","CO",8,70,33,"current"], + [8045,"Garfield","Colorado","CO",8,70,45,"current"], + [8053,"Hinsdale","Colorado","CO",8,70,53,"current"], + [8067,"La Plata","Colorado","CO",8,70,67,"current"], + [8077,"Mesa","Colorado","CO",8,70,77,"current"], + [8083,"Montezuma","Colorado","CO",8,70,83,"current"], + [8085,"Montrose","Colorado","CO",8,70,85,"current"], + [8091,"Ouray","Colorado","CO",8,70,91,"current"], + [8111,"San Juan","Colorado","CO",8,70,111,"current"], + [8113,"San Miguel","Colorado","CO",8,70,113,"current"], + [8003,"Alamosa","Colorado","CO",8,80,3,"current"], + [8021,"Conejos","Colorado","CO",8,80,21,"current"], + [8023,"Costilla","Colorado","CO",8,80,23,"current"], + [8079,"Mineral","Colorado","CO",8,80,79,"current"], + [8105,"Rio Grande","Colorado","CO",8,80,105,"current"], + [8109,"Saguache","Colorado","CO",8,80,109,"current"], + [8009,"Baca","Colorado","CO",8,90,9,"current"], + [8011,"Bent","Colorado","CO",8,90,11,"current"], + [8025,"Crowley","Colorado","CO",8,90,25,"current"], + [8027,"Custer","Colorado","CO",8,90,27,"current"], + [8043,"Fremont","Colorado","CO",8,90,43,"current"], + [8055,"Huerfano","Colorado","CO",8,90,55,"current"], + [8071,"Las Animas","Colorado","CO",8,90,71,"current"], + [8089,"Otero","Colorado","CO",8,90,89,"current"], + [8099,"Prowers","Colorado","CO",8,90,99,"current"], + [8101,"Pueblo","Colorado","CO",8,90,101,"current"], + [9000,"Connecticut","Connecticut","CT",9,0,0,"current"], + [9001,"Fairfield","Connecticut","CT",9,10,1,"current"], + [9003,"Hartford","Connecticut","CT",9,10,3,"current"], + [9005,"Litchfield","Connecticut","CT",9,10,5,"current"], + [9007,"Middlesex","Connecticut","CT",9,10,7,"current"], + [9009,"New Haven","Connecticut","CT",9,10,9,"current"], + [9011,"New London","Connecticut","CT",9,10,11,"current"], + [9013,"Tolland","Connecticut","CT",9,10,13,"current"], + [9015,"Windham","Connecticut","CT",9,10,15,"current"], + [10000,"Delaware","Delaware","DE",10,0,0,"current"], + [10003,"New Castle","Delaware","DE",10,20,3,"current"], + [10001,"Kent","Delaware","DE",10,50,1,"current"], + [10005,"Sussex","Delaware","DE",10,80,5,"current"], + [11000,"District of Columbia","District of Columbia","DC",11,0,0,"current"], + [11001,"District of Columbia","District of Columbia","DC",11,10,1,"current"], + [12000,"Florida","Florida","FL",12,0,0,"current"], + [12005,"Bay","Florida","FL",12,10,5,"current"], + [12013,"Calhoun","Florida","FL",12,10,13,"current"], + [12033,"Escambia","Florida","FL",12,10,33,"current"], + [12037,"Franklin","Florida","FL",12,10,37,"current"], + [12039,"Gadsden","Florida","FL",12,10,39,"current"], + [12045,"Gulf","Florida","FL",12,10,45,"current"], + [12059,"Holmes","Florida","FL",12,10,59,"current"], + [12063,"Jackson","Florida","FL",12,10,63,"current"], + [12065,"Jefferson","Florida","FL",12,10,65,"current"], + [12073,"Leon","Florida","FL",12,10,73,"current"], + [12077,"Liberty","Florida","FL",12,10,77,"current"], + [12091,"Okaloosa","Florida","FL",12,10,91,"current"], + [12113,"Santa Rosa","Florida","FL",12,10,113,"current"], + [12129,"Wakulla","Florida","FL",12,10,129,"current"], + [12131,"Walton","Florida","FL",12,10,131,"current"], + [12133,"Washington","Florida","FL",12,10,133,"current"], + [12003,"Baker","Florida","FL",12,30,3,"current"], + [12023,"Columbia","Florida","FL",12,30,23,"current"], + [12029,"Dixie","Florida","FL",12,30,29,"current"], + [12031,"Duval","Florida","FL",12,30,31,"current"], + [12047,"Hamilton","Florida","FL",12,30,47,"current"], + [12067,"Lafayette","Florida","FL",12,30,67,"current"], + [12079,"Madison","Florida","FL",12,30,79,"current"], + [12089,"Nassau","Florida","FL",12,30,89,"current"], + [12121,"Suwannee","Florida","FL",12,30,121,"current"], + [12123,"Taylor","Florida","FL",12,30,123,"current"], + [12001,"Alachua","Florida","FL",12,50,1,"current"], + [12007,"Bradford","Florida","FL",12,50,7,"current"], + [12017,"Citrus","Florida","FL",12,50,17,"current"], + [12019,"Clay","Florida","FL",12,50,19,"current"], + [12035,"Flagler","Florida","FL",12,50,35,"current"], + [12041,"Gilchrist","Florida","FL",12,50,41,"current"], + [12053,"Hernando","Florida","FL",12,50,53,"current"], + [12057,"Hillsborough","Florida","FL",12,50,57,"current"], + [12069,"Lake","Florida","FL",12,50,69,"current"], + [12075,"Levy","Florida","FL",12,50,75,"current"], + [12083,"Marion","Florida","FL",12,50,83,"current"], + [12095,"Orange","Florida","FL",12,50,95,"current"], + [12097,"Osceola","Florida","FL",12,50,97,"current"], + [12101,"Pasco","Florida","FL",12,50,101,"current"], + [12103,"Pinellas","Florida","FL",12,50,103,"current"], + [12105,"Polk","Florida","FL",12,50,105,"current"], + [12107,"Putnam","Florida","FL",12,50,107,"current"], + [12109,"St. Johns","Florida","FL",12,50,109,"current"], + [12117,"Seminole","Florida","FL",12,50,117,"current"], + [12119,"Sumter","Florida","FL",12,50,119,"current"], + [12125,"Union","Florida","FL",12,50,125,"current"], + [12127,"Volusia","Florida","FL",12,50,127,"current"], + [12009,"Brevard","Florida","FL",12,80,9,"current"], + [12011,"Broward","Florida","FL",12,80,11,"current"], + [12015,"Charlotte","Florida","FL",12,80,15,"current"], + [12021,"Collier","Florida","FL",12,80,21,"current"], + [12027,"De Soto","Florida","FL",12,80,27,"current"], + [12043,"Glades","Florida","FL",12,80,43,"current"], + [12049,"Hardee","Florida","FL",12,80,49,"current"], + [12051,"Hendry","Florida","FL",12,80,51,"current"], + [12055,"Highlands","Florida","FL",12,80,55,"current"], + [12061,"Indian River","Florida","FL",12,80,61,"current"], + [12071,"Lee","Florida","FL",12,80,71,"current"], + [12081,"Manatee","Florida","FL",12,80,81,"current"], + [12085,"Martin","Florida","FL",12,80,85,"current"], + [12086,"Miami-Dade","Florida","FL",12,80,86,"current"], + [12087,"Monroe","Florida","FL",12,80,87,"current"], + [12093,"Okeechobee","Florida","FL",12,80,93,"current"], + [12099,"Palm Beach","Florida","FL",12,80,99,"current"], + [12111,"St. Lucie","Florida","FL",12,80,111,"current"], + [12115,"Sarasota","Florida","FL",12,80,115,"current"], + [13000,"Georgia","Georgia","FA",13,0,0,"current"], + [13015,"Bartow","Georgia","FA",13,10,15,"current"], + [13047,"Catoosa","Georgia","FA",13,10,47,"current"], + [13055,"Chattooga","Georgia","FA",13,10,55,"current"], + [13083,"Dade","Georgia","FA",13,10,83,"current"], + [13115,"Floyd","Georgia","FA",13,10,115,"current"], + [13129,"Gordon","Georgia","FA",13,10,129,"current"], + [13213,"Murray","Georgia","FA",13,10,213,"current"], + [13223,"Paulding","Georgia","FA",13,10,223,"current"], + [13233,"Polk","Georgia","FA",13,10,233,"current"], + [13295,"Walker","Georgia","FA",13,10,295,"current"], + [13313,"Whitfield","Georgia","FA",13,10,313,"current"], + [13013,"Barrow","Georgia","FA",13,20,13,"current"], + [13057,"Cherokee","Georgia","FA",13,20,57,"current"], + [13059,"Clarke","Georgia","FA",13,20,59,"current"], + [13067,"Cobb","Georgia","FA",13,20,67,"current"], + [13085,"Dawson","Georgia","FA",13,20,85,"current"], + [13089,"De Kalb","Georgia","FA",13,20,89,"current"], + [13111,"Fannin","Georgia","FA",13,20,111,"current"], + [13117,"Forsyth","Georgia","FA",13,20,117,"current"], + [13121,"Fulton","Georgia","FA",13,20,121,"current"], + [13123,"Gilmer","Georgia","FA",13,20,123,"current"], + [13135,"Gwinnett","Georgia","FA",13,20,135,"current"], + [13139,"Hall","Georgia","FA",13,20,139,"current"], + [13157,"Jackson","Georgia","FA",13,20,157,"current"], + [13187,"Lumpkin","Georgia","FA",13,20,187,"current"], + [13219,"Oconee","Georgia","FA",13,20,219,"current"], + [13227,"Pickens","Georgia","FA",13,20,227,"current"], + [13281,"Towns","Georgia","FA",13,20,281,"current"], + [13291,"Union","Georgia","FA",13,20,291,"current"], + [13297,"Walton","Georgia","FA",13,20,297,"current"], + [13311,"White","Georgia","FA",13,20,311,"current"], + [13011,"Banks","Georgia","FA",13,30,11,"current"], + [13105,"Elbert","Georgia","FA",13,30,105,"current"], + [13119,"Franklin","Georgia","FA",13,30,119,"current"], + [13137,"Habersham","Georgia","FA",13,30,137,"current"], + [13147,"Hart","Georgia","FA",13,30,147,"current"], + [13181,"Lincoln","Georgia","FA",13,30,181,"current"], + [13195,"Madison","Georgia","FA",13,30,195,"current"], + [13221,"Oglethorpe","Georgia","FA",13,30,221,"current"], + [13241,"Rabun","Georgia","FA",13,30,241,"current"], + [13257,"Stephens","Georgia","FA",13,30,257,"current"], + [13317,"Wilkes","Georgia","FA",13,30,317,"current"], + [13045,"Carroll","Georgia","FA",13,40,45,"current"], + [13053,"Chattahoochee","Georgia","FA",13,40,53,"current"], + [13063,"Clayton","Georgia","FA",13,40,63,"current"], + [13077,"Coweta","Georgia","FA",13,40,77,"current"], + [13097,"Douglas","Georgia","FA",13,40,97,"current"], + [13113,"Fayette","Georgia","FA",13,40,113,"current"], + [13143,"Haralson","Georgia","FA",13,40,143,"current"], + [13145,"Harris","Georgia","FA",13,40,145,"current"], + [13149,"Heard","Georgia","FA",13,40,149,"current"], + [13151,"Henry","Georgia","FA",13,40,151,"current"], + [13171,"Lamar","Georgia","FA",13,40,171,"current"], + [13193,"Macon","Georgia","FA",13,40,193,"current"], + [13197,"Marion","Georgia","FA",13,40,197,"current"], + [13199,"Meriwether","Georgia","FA",13,40,199,"current"], + [13215,"Muscogee","Georgia","FA",13,40,215,"current"], + [13231,"Pike","Georgia","FA",13,40,231,"current"], + [13249,"Schley","Georgia","FA",13,40,249,"current"], + [13255,"Spalding","Georgia","FA",13,40,255,"current"], + [13263,"Talbot","Georgia","FA",13,40,263,"current"], + [13269,"Taylor","Georgia","FA",13,40,269,"current"], + [13285,"Troup","Georgia","FA",13,40,285,"current"], + [13293,"Upson","Georgia","FA",13,40,293,"current"], + [13009,"Baldwin","Georgia","FA",13,50,9,"current"], + [13021,"Bibb","Georgia","FA",13,50,21,"current"], + [13023,"Bleckley","Georgia","FA",13,50,23,"current"], + [13035,"Butts","Georgia","FA",13,50,35,"current"], + [13079,"Crawford","Georgia","FA",13,50,79,"current"], + [13091,"Dodge","Georgia","FA",13,50,91,"current"], + [13133,"Greene","Georgia","FA",13,50,133,"current"], + [13141,"Hancock","Georgia","FA",13,50,141,"current"], + [13153,"Houston","Georgia","FA",13,50,153,"current"], + [13159,"Jasper","Georgia","FA",13,50,159,"current"], + [13167,"Johnson","Georgia","FA",13,50,167,"current"], + [13169,"Jones","Georgia","FA",13,50,169,"current"], + [13175,"Laurens","Georgia","FA",13,50,175,"current"], + [13207,"Monroe","Georgia","FA",13,50,207,"current"], + [13209,"Montgomery","Georgia","FA",13,50,209,"current"], + [13211,"Morgan","Georgia","FA",13,50,211,"current"], + [13217,"Newton","Georgia","FA",13,50,217,"current"], + [13225,"Peach","Georgia","FA",13,50,225,"current"], + [13235,"Pulaski","Georgia","FA",13,50,235,"current"], + [13237,"Putnam","Georgia","FA",13,50,237,"current"], + [13247,"Rockdale","Georgia","FA",13,50,247,"current"], + [13265,"Taliaferro","Georgia","FA",13,50,265,"current"], + [13283,"Treutlen","Georgia","FA",13,50,283,"current"], + [13289,"Twiggs","Georgia","FA",13,50,289,"current"], + [13303,"Washington","Georgia","FA",13,50,303,"current"], + [13309,"Wheeler","Georgia","FA",13,50,309,"current"], + [13319,"Wilkinson","Georgia","FA",13,50,319,"current"], + [13031,"Bulloch","Georgia","FA",13,60,31,"current"], + [13033,"Burke","Georgia","FA",13,60,33,"current"], + [13043,"Candler","Georgia","FA",13,60,43,"current"], + [13073,"Columbia","Georgia","FA",13,60,73,"current"], + [13103,"Effingham","Georgia","FA",13,60,103,"current"], + [13107,"Emanuel","Georgia","FA",13,60,107,"current"], + [13125,"Glascock","Georgia","FA",13,60,125,"current"], + [13163,"Jefferson","Georgia","FA",13,60,163,"current"], + [13165,"Jenkins","Georgia","FA",13,60,165,"current"], + [13189,"McDuffie","Georgia","FA",13,60,189,"current"], + [13245,"Richmond","Georgia","FA",13,60,245,"current"], + [13251,"Screven","Georgia","FA",13,60,251,"current"], + [13301,"Warren","Georgia","FA",13,60,301,"current"], + [13007,"Baker","Georgia","FA",13,70,7,"current"], + [13037,"Calhoun","Georgia","FA",13,70,37,"current"], + [13061,"Clay","Georgia","FA",13,70,61,"current"], + [13087,"Decatur","Georgia","FA",13,70,87,"current"], + [13095,"Dougherty","Georgia","FA",13,70,95,"current"], + [13099,"Early","Georgia","FA",13,70,99,"current"], + [13131,"Grady","Georgia","FA",13,70,131,"current"], + [13177,"Lee","Georgia","FA",13,70,177,"current"], + [13201,"Miller","Georgia","FA",13,70,201,"current"], + [13205,"Mitchell","Georgia","FA",13,70,205,"current"], + [13239,"Quitman","Georgia","FA",13,70,239,"current"], + [13243,"Randolph","Georgia","FA",13,70,243,"current"], + [13253,"Seminole","Georgia","FA",13,70,253,"current"], + [13259,"Stewart","Georgia","FA",13,70,259,"current"], + [13261,"Sumter","Georgia","FA",13,70,261,"current"], + [13273,"Terrell","Georgia","FA",13,70,273,"current"], + [13275,"Thomas","Georgia","FA",13,70,275,"current"], + [13307,"Webster","Georgia","FA",13,70,307,"current"], + [13003,"Atkinson","Georgia","FA",13,80,3,"current"], + [13017,"Ben Hill","Georgia","FA",13,80,17,"current"], + [13019,"Berrien","Georgia","FA",13,80,19,"current"], + [13027,"Brooks","Georgia","FA",13,80,27,"current"], + [13065,"Clinch","Georgia","FA",13,80,65,"current"], + [13069,"Coffee","Georgia","FA",13,80,69,"current"], + [13071,"Colquitt","Georgia","FA",13,80,71,"current"], + [13075,"Cook","Georgia","FA",13,80,75,"current"], + [13081,"Crisp","Georgia","FA",13,80,81,"current"], + [13093,"Dooly","Georgia","FA",13,80,93,"current"], + [13101,"Echols","Georgia","FA",13,80,101,"current"], + [13155,"Irwin","Georgia","FA",13,80,155,"current"], + [13161,"Jeff Davis","Georgia","FA",13,80,161,"current"], + [13173,"Lanier","Georgia","FA",13,80,173,"current"], + [13185,"Lowndes","Georgia","FA",13,80,185,"current"], + [13271,"Telfair","Georgia","FA",13,80,271,"current"], + [13277,"Tift","Georgia","FA",13,80,277,"current"], + [13287,"Turner","Georgia","FA",13,80,287,"current"], + [13315,"Wilcox","Georgia","FA",13,80,315,"current"], + [13321,"Worth","Georgia","FA",13,80,321,"current"], + [13001,"Appling","Georgia","FA",13,90,1,"current"], + [13005,"Bacon","Georgia","FA",13,90,5,"current"], + [13025,"Brantley","Georgia","FA",13,90,25,"current"], + [13029,"Bryan","Georgia","FA",13,90,29,"current"], + [13039,"Camden","Georgia","FA",13,90,39,"current"], + [13049,"Charlton","Georgia","FA",13,90,49,"current"], + [13051,"Chatham","Georgia","FA",13,90,51,"current"], + [13109,"Evans","Georgia","FA",13,90,109,"current"], + [13127,"Glynn","Georgia","FA",13,90,127,"current"], + [13179,"Liberty","Georgia","FA",13,90,179,"current"], + [13183,"Long","Georgia","FA",13,90,183,"current"], + [13191,"McIntosh","Georgia","FA",13,90,191,"current"], + [13229,"Pierce","Georgia","FA",13,90,229,"current"], + [13267,"Tattnall","Georgia","FA",13,90,267,"current"], + [13279,"Toombs","Georgia","FA",13,90,279,"current"], + [13299,"Ware","Georgia","FA",13,90,299,"current"], + [13305,"Wayne","Georgia","FA",13,90,305,"current"], + [15000,"Hawaii","Hawaii","HI",15,0,0,"current"], + [15001,"Hawaii","Hawaii","HI",15,11,1,"current"], + [15007,"Kauai","Hawaii","HI",15,24,7,"current"], + [15009,"Maui & Kalwao","Hawaii","HI",15,35,9,"current"], + [15005,"Kalawao County","Hawaii","HI",15,40,5,"current"], + [15003,"Honolulu","Hawaii","HI",15,62,3,"current"], + [16000,"Idaho","Idaho","ID",16,0,0,"current"], + [16009,"Benewah","Idaho","ID",16,10,9,"current"], + [16017,"Bonner","Idaho","ID",16,10,17,"current"], + [16021,"Boundary","Idaho","ID",16,10,21,"current"], + [16035,"Clearwater","Idaho","ID",16,10,35,"current"], + [16049,"Idaho","Idaho","ID",16,10,49,"current"], + [16055,"Kootenai","Idaho","ID",16,10,55,"current"], + [16057,"Latah","Idaho","ID",16,10,57,"current"], + [16061,"Lewis","Idaho","ID",16,10,61,"current"], + [16069,"Nez Perce","Idaho","ID",16,10,69,"current"], + [16079,"Shoshone","Idaho","ID",16,10,79,"current"], + [16001,"Ada","Idaho","ID",16,70,1,"current"], + [16003,"Adams","Idaho","ID",16,70,3,"current"], + [16015,"Boise","Idaho","ID",16,70,15,"current"], + [16027,"Canyon","Idaho","ID",16,70,27,"current"], + [16039,"Elmore","Idaho","ID",16,70,39,"current"], + [16045,"Gem","Idaho","ID",16,70,45,"current"], + [16073,"Owyhee","Idaho","ID",16,70,73,"current"], + [16075,"Payette","Idaho","ID",16,70,75,"current"], + [16085,"Valley","Idaho","ID",16,70,85,"current"], + [16087,"Washington","Idaho","ID",16,70,87,"current"], + [16013,"Blaine","Idaho","ID",16,80,13,"current"], + [16025,"Camas","Idaho","ID",16,80,25,"current"], + [16031,"Cassia","Idaho","ID",16,80,31,"current"], + [16047,"Gooding","Idaho","ID",16,80,47,"current"], + [16053,"Jerome","Idaho","ID",16,80,53,"current"], + [16063,"Lincoln","Idaho","ID",16,80,63,"current"], + [16067,"Minidoka","Idaho","ID",16,80,67,"current"], + [16083,"Twin Falls","Idaho","ID",16,80,83,"current"], + [16005,"Bannock","Idaho","ID",16,90,5,"current"], + [16007,"Bear Lake","Idaho","ID",16,90,7,"current"], + [16011,"Bingham","Idaho","ID",16,90,11,"current"], + [16019,"Bonneville","Idaho","ID",16,90,19,"current"], + [16023,"Butte","Idaho","ID",16,90,23,"current"], + [16029,"Caribou","Idaho","ID",16,90,29,"current"], + [16033,"Clark","Idaho","ID",16,90,33,"current"], + [16037,"Custer","Idaho","ID",16,90,37,"current"], + [16041,"Franklin","Idaho","ID",16,90,41,"current"], + [16043,"Fremont","Idaho","ID",16,90,43,"current"], + [16051,"Jefferson","Idaho","ID",16,90,51,"current"], + [16059,"Lemhi","Idaho","ID",16,90,59,"current"], + [16065,"Madison","Idaho","ID",16,90,65,"current"], + [16071,"Oneida","Idaho","ID",16,90,71,"current"], + [16077,"Power","Idaho","ID",16,90,77,"current"], + [16081,"Teton","Idaho","ID",16,90,81,"current"], + [17000,"Illinois","Illinois","IL",17,0,0,"current"], + [17011,"Bureau","Illinois","IL",17,10,11,"current"], + [17015,"Carroll","Illinois","IL",17,10,15,"current"], + [17073,"Henry","Illinois","IL",17,10,73,"current"], + [17085,"Jo Daviess","Illinois","IL",17,10,85,"current"], + [17103,"Lee","Illinois","IL",17,10,103,"current"], + [17131,"Mercer","Illinois","IL",17,10,131,"current"], + [17141,"Ogle","Illinois","IL",17,10,141,"current"], + [17155,"Putnam","Illinois","IL",17,10,155,"current"], + [17161,"Rock Island","Illinois","IL",17,10,161,"current"], + [17177,"Stephenson","Illinois","IL",17,10,177,"current"], + [17195,"Whiteside","Illinois","IL",17,10,195,"current"], + [17201,"Winnebago","Illinois","IL",17,10,201,"current"], + [17007,"Boone","Illinois","IL",17,20,7,"current"], + [17031,"Cook","Illinois","IL",17,20,31,"current"], + [17037,"De Kalb","Illinois","IL",17,20,37,"current"], + [17043,"Du Page","Illinois","IL",17,20,43,"current"], + [17063,"Grundy","Illinois","IL",17,20,63,"current"], + [17089,"Kane","Illinois","IL",17,20,89,"current"], + [17093,"Kendall","Illinois","IL",17,20,93,"current"], + [17097,"Lake","Illinois","IL",17,20,97,"current"], + [17099,"La Salle","Illinois","IL",17,20,99,"current"], + [17111,"McHenry","Illinois","IL",17,20,111,"current"], + [17197,"Will","Illinois","IL",17,20,197,"current"], + [17001,"Adams","Illinois","IL",17,30,1,"current"], + [17009,"Brown","Illinois","IL",17,30,9,"current"], + [17057,"Fulton","Illinois","IL",17,30,57,"current"], + [17067,"Hancock","Illinois","IL",17,30,67,"current"], + [17071,"Henderson","Illinois","IL",17,30,71,"current"], + [17095,"Knox","Illinois","IL",17,30,95,"current"], + [17109,"McDonough","Illinois","IL",17,30,109,"current"], + [17169,"Schuyler","Illinois","IL",17,30,169,"current"], + [17187,"Warren","Illinois","IL",17,30,187,"current"], + [17039,"De Witt","Illinois","IL",17,40,39,"current"], + [17107,"Logan","Illinois","IL",17,40,107,"current"], + [17113,"McLean","Illinois","IL",17,40,113,"current"], + [17115,"Macon","Illinois","IL",17,40,115,"current"], + [17123,"Marshall","Illinois","IL",17,40,123,"current"], + [17125,"Mason","Illinois","IL",17,40,125,"current"], + [17129,"Menard","Illinois","IL",17,40,129,"current"], + [17143,"Peoria","Illinois","IL",17,40,143,"current"], + [17175,"Stark","Illinois","IL",17,40,175,"current"], + [17179,"Tazewell","Illinois","IL",17,40,179,"current"], + [17203,"Woodford","Illinois","IL",17,40,203,"current"], + [17019,"Champaign","Illinois","IL",17,50,19,"current"], + [17053,"Ford","Illinois","IL",17,50,53,"current"], + [17075,"Iroquois","Illinois","IL",17,50,75,"current"], + [17091,"Kankakee","Illinois","IL",17,50,91,"current"], + [17105,"Livingston","Illinois","IL",17,50,105,"current"], + [17147,"Piatt","Illinois","IL",17,50,147,"current"], + [17183,"Vermilion","Illinois","IL",17,50,183,"current"], + [17005,"Bond","Illinois","IL",17,60,5,"current"], + [17013,"Calhoun","Illinois","IL",17,60,13,"current"], + [17017,"Cass","Illinois","IL",17,60,17,"current"], + [17021,"Christian","Illinois","IL",17,60,21,"current"], + [17061,"Greene","Illinois","IL",17,60,61,"current"], + [17083,"Jersey","Illinois","IL",17,60,83,"current"], + [17117,"Macoupin","Illinois","IL",17,60,117,"current"], + [17119,"Madison","Illinois","IL",17,60,119,"current"], + [17135,"Montgomery","Illinois","IL",17,60,135,"current"], + [17137,"Morgan","Illinois","IL",17,60,137,"current"], + [17149,"Pike","Illinois","IL",17,60,149,"current"], + [17167,"Sangamon","Illinois","IL",17,60,167,"current"], + [17171,"Scott","Illinois","IL",17,60,171,"current"], + [17023,"Clark","Illinois","IL",17,70,23,"current"], + [17025,"Clay","Illinois","IL",17,70,25,"current"], + [17029,"Coles","Illinois","IL",17,70,29,"current"], + [17033,"Crawford","Illinois","IL",17,70,33,"current"], + [17035,"Cumberland","Illinois","IL",17,70,35,"current"], + [17041,"Douglas","Illinois","IL",17,70,41,"current"], + [17045,"Edgar","Illinois","IL",17,70,45,"current"], + [17049,"Effingham","Illinois","IL",17,70,49,"current"], + [17051,"Fayette","Illinois","IL",17,70,51,"current"], + [17079,"Jasper","Illinois","IL",17,70,79,"current"], + [17101,"Lawrence","Illinois","IL",17,70,101,"current"], + [17121,"Marion","Illinois","IL",17,70,121,"current"], + [17139,"Moultrie","Illinois","IL",17,70,139,"current"], + [17159,"Richland","Illinois","IL",17,70,159,"current"], + [17173,"Shelby","Illinois","IL",17,70,173,"current"], + [17003,"Alexander","Illinois","IL",17,80,3,"current"], + [17027,"Clinton","Illinois","IL",17,80,27,"current"], + [17077,"Jackson","Illinois","IL",17,80,77,"current"], + [17087,"Johnson","Illinois","IL",17,80,87,"current"], + [17133,"Monroe","Illinois","IL",17,80,133,"current"], + [17145,"Perry","Illinois","IL",17,80,145,"current"], + [17153,"Pulaski","Illinois","IL",17,80,153,"current"], + [17157,"Randolph","Illinois","IL",17,80,157,"current"], + [17163,"St. Clair","Illinois","IL",17,80,163,"current"], + [17181,"Union","Illinois","IL",17,80,181,"current"], + [17189,"Washington","Illinois","IL",17,80,189,"current"], + [17199,"Williamson","Illinois","IL",17,80,199,"current"], + [17047,"Edwards","Illinois","IL",17,90,47,"current"], + [17055,"Franklin","Illinois","IL",17,90,55,"current"], + [17059,"Gallatin","Illinois","IL",17,90,59,"current"], + [17065,"Hamilton","Illinois","IL",17,90,65,"current"], + [17069,"Hardin","Illinois","IL",17,90,69,"current"], + [17081,"Jefferson","Illinois","IL",17,90,81,"current"], + [17127,"Massac","Illinois","IL",17,90,127,"current"], + [17151,"Pope","Illinois","IL",17,90,151,"current"], + [17165,"Saline","Illinois","IL",17,90,165,"current"], + [17185,"Wabash","Illinois","IL",17,90,185,"current"], + [17191,"Wayne","Illinois","IL",17,90,191,"current"], + [17193,"White","Illinois","IL",17,90,193,"current"], + [18000,"Indiana","Indiana","IN",18,0,0,"current"], + [18007,"Benton","Indiana","IN",18,10,7,"current"], + [18073,"Jasper","Indiana","IN",18,10,73,"current"], + [18089,"Lake","Indiana","IN",18,10,89,"current"], + [18091,"La Porte","Indiana","IN",18,10,91,"current"], + [18111,"Newton","Indiana","IN",18,10,111,"current"], + [18127,"Porter","Indiana","IN",18,10,127,"current"], + [18131,"Pulaski","Indiana","IN",18,10,131,"current"], + [18149,"Starke","Indiana","IN",18,10,149,"current"], + [18181,"White","Indiana","IN",18,10,181,"current"], + [18015,"Carroll","Indiana","IN",18,20,15,"current"], + [18017,"Cass","Indiana","IN",18,20,17,"current"], + [18039,"Elkhart","Indiana","IN",18,20,39,"current"], + [18049,"Fulton","Indiana","IN",18,20,49,"current"], + [18085,"Kosciusko","Indiana","IN",18,20,85,"current"], + [18099,"Marshall","Indiana","IN",18,20,99,"current"], + [18103,"Miami","Indiana","IN",18,20,103,"current"], + [18141,"St. Joseph","Indiana","IN",18,20,141,"current"], + [18169,"Wabash","Indiana","IN",18,20,169,"current"], + [18001,"Adams","Indiana","IN",18,30,1,"current"], + [18003,"Allen","Indiana","IN",18,30,3,"current"], + [18033,"De Kalb","Indiana","IN",18,30,33,"current"], + [18069,"Huntington","Indiana","IN",18,30,69,"current"], + [18087,"Lagrange","Indiana","IN",18,30,87,"current"], + [18113,"Noble","Indiana","IN",18,30,113,"current"], + [18151,"Steuben","Indiana","IN",18,30,151,"current"], + [18179,"Wells","Indiana","IN",18,30,179,"current"], + [18183,"Whitley","Indiana","IN",18,30,183,"current"], + [18021,"Clay","Indiana","IN",18,40,21,"current"], + [18045,"Fountain","Indiana","IN",18,40,45,"current"], + [18107,"Montgomery","Indiana","IN",18,40,107,"current"], + [18119,"Owen","Indiana","IN",18,40,119,"current"], + [18121,"Parke","Indiana","IN",18,40,121,"current"], + [18133,"Putnam","Indiana","IN",18,40,133,"current"], + [18157,"Tippecanoe","Indiana","IN",18,40,157,"current"], + [18165,"Vermillion","Indiana","IN",18,40,165,"current"], + [18167,"Vigo","Indiana","IN",18,40,167,"current"], + [18171,"Warren","Indiana","IN",18,40,171,"current"], + [18005,"Bartholomew","Indiana","IN",18,50,5,"current"], + [18011,"Boone","Indiana","IN",18,50,11,"current"], + [18023,"Clinton","Indiana","IN",18,50,23,"current"], + [18031,"Decatur","Indiana","IN",18,50,31,"current"], + [18053,"Grant","Indiana","IN",18,50,53,"current"], + [18057,"Hamilton","Indiana","IN",18,50,57,"current"], + [18059,"Hancock","Indiana","IN",18,50,59,"current"], + [18063,"Hendricks","Indiana","IN",18,50,63,"current"], + [18067,"Howard","Indiana","IN",18,50,67,"current"], + [18081,"Johnson","Indiana","IN",18,50,81,"current"], + [18095,"Madison","Indiana","IN",18,50,95,"current"], + [18097,"Marion","Indiana","IN",18,50,97,"current"], + [18109,"Morgan","Indiana","IN",18,50,109,"current"], + [18139,"Rush","Indiana","IN",18,50,139,"current"], + [18145,"Shelby","Indiana","IN",18,50,145,"current"], + [18159,"Tipton","Indiana","IN",18,50,159,"current"], + [18009,"Blackford","Indiana","IN",18,60,9,"current"], + [18035,"Delaware","Indiana","IN",18,60,35,"current"], + [18041,"Fayette","Indiana","IN",18,60,41,"current"], + [18065,"Henry","Indiana","IN",18,60,65,"current"], + [18075,"Jay","Indiana","IN",18,60,75,"current"], + [18135,"Randolph","Indiana","IN",18,60,135,"current"], + [18161,"Union","Indiana","IN",18,60,161,"current"], + [18177,"Wayne","Indiana","IN",18,60,177,"current"], + [18027,"Daviess","Indiana","IN",18,70,27,"current"], + [18037,"Dubois","Indiana","IN",18,70,37,"current"], + [18051,"Gibson","Indiana","IN",18,70,51,"current"], + [18055,"Greene","Indiana","IN",18,70,55,"current"], + [18083,"Knox","Indiana","IN",18,70,83,"current"], + [18101,"Martin","Indiana","IN",18,70,101,"current"], + [18125,"Pike","Indiana","IN",18,70,125,"current"], + [18129,"Posey","Indiana","IN",18,70,129,"current"], + [18147,"Spencer","Indiana","IN",18,70,147,"current"], + [18153,"Sullivan","Indiana","IN",18,70,153,"current"], + [18163,"Vanderburgh","Indiana","IN",18,70,163,"current"], + [18173,"Warrick","Indiana","IN",18,70,173,"current"], + [18013,"Brown","Indiana","IN",18,80,13,"current"], + [18025,"Crawford","Indiana","IN",18,80,25,"current"], + [18043,"Floyd","Indiana","IN",18,80,43,"current"], + [18061,"Harrison","Indiana","IN",18,80,61,"current"], + [18071,"Jackson","Indiana","IN",18,80,71,"current"], + [18093,"Lawrence","Indiana","IN",18,80,93,"current"], + [18105,"Monroe","Indiana","IN",18,80,105,"current"], + [18117,"Orange","Indiana","IN",18,80,117,"current"], + [18123,"Perry","Indiana","IN",18,80,123,"current"], + [18175,"Washington","Indiana","IN",18,80,175,"current"], + [18019,"Clark","Indiana","IN",18,90,19,"current"], + [18029,"Dearborn","Indiana","IN",18,90,29,"current"], + [18047,"Franklin","Indiana","IN",18,90,47,"current"], + [18077,"Jefferson","Indiana","IN",18,90,77,"current"], + [18079,"Jennings","Indiana","IN",18,90,79,"current"], + [18115,"Ohio","Indiana","IN",18,90,115,"current"], + [18137,"Ripley","Indiana","IN",18,90,137,"current"], + [18143,"Scott","Indiana","IN",18,90,143,"current"], + [18155,"Switzerland","Indiana","IN",18,90,155,"current"], + [19000,"Iowa","Iowa","IA",19,0,0,"current"], + [19021,"Buena Vista","Iowa","IA",19,10,21,"current"], + [19035,"Cherokee","Iowa","IA",19,10,35,"current"], + [19041,"Clay","Iowa","IA",19,10,41,"current"], + [19059,"Dickinson","Iowa","IA",19,10,59,"current"], + [19063,"Emmet","Iowa","IA",19,10,63,"current"], + [19119,"Lyon","Iowa","IA",19,10,119,"current"], + [19141,"O Brien","Iowa","IA",19,10,141,"current"], + [19143,"Osceola","Iowa","IA",19,10,143,"current"], + [19147,"Palo Alto","Iowa","IA",19,10,147,"current"], + [19149,"Plymouth","Iowa","IA",19,10,149,"current"], + [19151,"Pocahontas","Iowa","IA",19,10,151,"current"], + [19167,"Sioux","Iowa","IA",19,10,167,"current"], + [19023,"Butler","Iowa","IA",19,20,23,"current"], + [19033,"Cerro Gordo","Iowa","IA",19,20,33,"current"], + [19067,"Floyd","Iowa","IA",19,20,67,"current"], + [19069,"Franklin","Iowa","IA",19,20,69,"current"], + [19081,"Hancock","Iowa","IA",19,20,81,"current"], + [19091,"Humboldt","Iowa","IA",19,20,91,"current"], + [19109,"Kossuth","Iowa","IA",19,20,109,"current"], + [19131,"Mitchell","Iowa","IA",19,20,131,"current"], + [19189,"Winnebago","Iowa","IA",19,20,189,"current"], + [19195,"Worth","Iowa","IA",19,20,195,"current"], + [19197,"Wright","Iowa","IA",19,20,197,"current"], + [19005,"Allamakee","Iowa","IA",19,30,5,"current"], + [19013,"Black Hawk","Iowa","IA",19,30,13,"current"], + [19017,"Bremer","Iowa","IA",19,30,17,"current"], + [19019,"Buchanan","Iowa","IA",19,30,19,"current"], + [19037,"Chickasaw","Iowa","IA",19,30,37,"current"], + [19043,"Clayton","Iowa","IA",19,30,43,"current"], + [19055,"Delaware","Iowa","IA",19,30,55,"current"], + [19061,"Dubuque","Iowa","IA",19,30,61,"current"], + [19065,"Fayette","Iowa","IA",19,30,65,"current"], + [19089,"Howard","Iowa","IA",19,30,89,"current"], + [19191,"Winneshiek","Iowa","IA",19,30,191,"current"], + [19009,"Audubon","Iowa","IA",19,40,9,"current"], + [19025,"Calhoun","Iowa","IA",19,40,25,"current"], + [19027,"Carroll","Iowa","IA",19,40,27,"current"], + [19047,"Crawford","Iowa","IA",19,40,47,"current"], + [19073,"Greene","Iowa","IA",19,40,73,"current"], + [19077,"Guthrie","Iowa","IA",19,40,77,"current"], + [19085,"Harrison","Iowa","IA",19,40,85,"current"], + [19093,"Ida","Iowa","IA",19,40,93,"current"], + [19133,"Monona","Iowa","IA",19,40,133,"current"], + [19161,"Sac","Iowa","IA",19,40,161,"current"], + [19165,"Shelby","Iowa","IA",19,40,165,"current"], + [19193,"Woodbury","Iowa","IA",19,40,193,"current"], + [19015,"Boone","Iowa","IA",19,50,15,"current"], + [19049,"Dallas","Iowa","IA",19,50,49,"current"], + [19075,"Grundy","Iowa","IA",19,50,75,"current"], + [19079,"Hamilton","Iowa","IA",19,50,79,"current"], + [19083,"Hardin","Iowa","IA",19,50,83,"current"], + [19099,"Jasper","Iowa","IA",19,50,99,"current"], + [19127,"Marshall","Iowa","IA",19,50,127,"current"], + [19153,"Polk","Iowa","IA",19,50,153,"current"], + [19157,"Poweshiek","Iowa","IA",19,50,157,"current"], + [19169,"Story","Iowa","IA",19,50,169,"current"], + [19171,"Tama","Iowa","IA",19,50,171,"current"], + [19187,"Webster","Iowa","IA",19,50,187,"current"], + [19011,"Benton","Iowa","IA",19,60,11,"current"], + [19031,"Cedar","Iowa","IA",19,60,31,"current"], + [19045,"Clinton","Iowa","IA",19,60,45,"current"], + [19095,"Iowa","Iowa","IA",19,60,95,"current"], + [19097,"Jackson","Iowa","IA",19,60,97,"current"], + [19103,"Johnson","Iowa","IA",19,60,103,"current"], + [19105,"Jones","Iowa","IA",19,60,105,"current"], + [19113,"Linn","Iowa","IA",19,60,113,"current"], + [19139,"Muscatine","Iowa","IA",19,60,139,"current"], + [19163,"Scott","Iowa","IA",19,60,163,"current"], + [19001,"Adair","Iowa","IA",19,70,1,"current"], + [19003,"Adams","Iowa","IA",19,70,3,"current"], + [19029,"Cass","Iowa","IA",19,70,29,"current"], + [19071,"Fremont","Iowa","IA",19,70,71,"current"], + [19129,"Mills","Iowa","IA",19,70,129,"current"], + [19137,"Montgomery","Iowa","IA",19,70,137,"current"], + [19145,"Page","Iowa","IA",19,70,145,"current"], + [19155,"Pottawattamie","Iowa","IA",19,70,155,"current"], + [19173,"Taylor","Iowa","IA",19,70,173,"current"], + [19007,"Appanoose","Iowa","IA",19,80,7,"current"], + [19039,"Clarke","Iowa","IA",19,80,39,"current"], + [19053,"Decatur","Iowa","IA",19,80,53,"current"], + [19117,"Lucas","Iowa","IA",19,80,117,"current"], + [19121,"Madison","Iowa","IA",19,80,121,"current"], + [19125,"Marion","Iowa","IA",19,80,125,"current"], + [19135,"Monroe","Iowa","IA",19,80,135,"current"], + [19159,"Ringgold","Iowa","IA",19,80,159,"current"], + [19175,"Union","Iowa","IA",19,80,175,"current"], + [19181,"Warren","Iowa","IA",19,80,181,"current"], + [19185,"Wayne","Iowa","IA",19,80,185,"current"], + [19051,"Davis","Iowa","IA",19,90,51,"current"], + [19057,"Des Moines","Iowa","IA",19,90,57,"current"], + [19087,"Henry","Iowa","IA",19,90,87,"current"], + [19101,"Jefferson","Iowa","IA",19,90,101,"current"], + [19107,"Keokuk","Iowa","IA",19,90,107,"current"], + [19111,"Lee","Iowa","IA",19,90,111,"current"], + [19115,"Louisa","Iowa","IA",19,90,115,"current"], + [19123,"Mahaska","Iowa","IA",19,90,123,"current"], + [19177,"Van Buren","Iowa","IA",19,90,177,"current"], + [19179,"Wapello","Iowa","IA",19,90,179,"current"], + [19183,"Washington","Iowa","IA",19,90,183,"current"], + [20000,"Kansas","Kansas","KS",20,0,0,"current"], + [20023,"Cheyenne","Kansas","KS",20,10,23,"current"], + [20039,"Decatur","Kansas","KS",20,10,39,"current"], + [20065,"Graham","Kansas","KS",20,10,65,"current"], + [20137,"Norton","Kansas","KS",20,10,137,"current"], + [20153,"Rawlins","Kansas","KS",20,10,153,"current"], + [20179,"Sheridan","Kansas","KS",20,10,179,"current"], + [20181,"Sherman","Kansas","KS",20,10,181,"current"], + [20193,"Thomas","Kansas","KS",20,10,193,"current"], + [20063,"Gove","Kansas","KS",20,20,63,"current"], + [20071,"Greeley","Kansas","KS",20,20,71,"current"], + [20101,"Lane","Kansas","KS",20,20,101,"current"], + [20109,"Logan","Kansas","KS",20,20,109,"current"], + [20135,"Ness","Kansas","KS",20,20,135,"current"], + [20171,"Scott","Kansas","KS",20,20,171,"current"], + [20195,"Trego","Kansas","KS",20,20,195,"current"], + [20199,"Wallace","Kansas","KS",20,20,199,"current"], + [20203,"Wichita","Kansas","KS",20,20,203,"current"], + [20025,"Clark","Kansas","KS",20,30,25,"current"], + [20055,"Finney","Kansas","KS",20,30,55,"current"], + [20057,"Ford","Kansas","KS",20,30,57,"current"], + [20067,"Grant","Kansas","KS",20,30,67,"current"], + [20069,"Gray","Kansas","KS",20,30,69,"current"], + [20075,"Hamilton","Kansas","KS",20,30,75,"current"], + [20081,"Haskell","Kansas","KS",20,30,81,"current"], + [20083,"Hodgeman","Kansas","KS",20,30,83,"current"], + [20093,"Kearny","Kansas","KS",20,30,93,"current"], + [20119,"Meade","Kansas","KS",20,30,119,"current"], + [20129,"Morton","Kansas","KS",20,30,129,"current"], + [20175,"Seward","Kansas","KS",20,30,175,"current"], + [20187,"Stanton","Kansas","KS",20,30,187,"current"], + [20189,"Stevens","Kansas","KS",20,30,189,"current"], + [20027,"Clay","Kansas","KS",20,40,27,"current"], + [20029,"Cloud","Kansas","KS",20,40,29,"current"], + [20089,"Jewell","Kansas","KS",20,40,89,"current"], + [20123,"Mitchell","Kansas","KS",20,40,123,"current"], + [20141,"Osborne","Kansas","KS",20,40,141,"current"], + [20143,"Ottawa","Kansas","KS",20,40,143,"current"], + [20147,"Phillips","Kansas","KS",20,40,147,"current"], + [20157,"Republic","Kansas","KS",20,40,157,"current"], + [20163,"Rooks","Kansas","KS",20,40,163,"current"], + [20183,"Smith","Kansas","KS",20,40,183,"current"], + [20201,"Washington","Kansas","KS",20,40,201,"current"], + [20009,"Barton","Kansas","KS",20,50,9,"current"], + [20041,"Dickinson","Kansas","KS",20,50,41,"current"], + [20051,"Ellis","Kansas","KS",20,50,51,"current"], + [20053,"Ellsworth","Kansas","KS",20,50,53,"current"], + [20105,"Lincoln","Kansas","KS",20,50,105,"current"], + [20113,"McPherson","Kansas","KS",20,50,113,"current"], + [20115,"Marion","Kansas","KS",20,50,115,"current"], + [20159,"Rice","Kansas","KS",20,50,159,"current"], + [20165,"Rush","Kansas","KS",20,50,165,"current"], + [20167,"Russell","Kansas","KS",20,50,167,"current"], + [20169,"Saline","Kansas","KS",20,50,169,"current"], + [20007,"Barber","Kansas","KS",20,60,7,"current"], + [20033,"Comanche","Kansas","KS",20,60,33,"current"], + [20047,"Edwards","Kansas","KS",20,60,47,"current"], + [20077,"Harper","Kansas","KS",20,60,77,"current"], + [20079,"Harvey","Kansas","KS",20,60,79,"current"], + [20095,"Kingman","Kansas","KS",20,60,95,"current"], + [20097,"Kiowa","Kansas","KS",20,60,97,"current"], + [20145,"Pawnee","Kansas","KS",20,60,145,"current"], + [20151,"Pratt","Kansas","KS",20,60,151,"current"], + [20155,"Reno","Kansas","KS",20,60,155,"current"], + [20173,"Sedgwick","Kansas","KS",20,60,173,"current"], + [20185,"Stafford","Kansas","KS",20,60,185,"current"], + [20191,"Sumner","Kansas","KS",20,60,191,"current"], + [20005,"Atchison","Kansas","KS",20,70,5,"current"], + [20013,"Brown","Kansas","KS",20,70,13,"current"], + [20043,"Doniphan","Kansas","KS",20,70,43,"current"], + [20085,"Jackson","Kansas","KS",20,70,85,"current"], + [20087,"Jefferson","Kansas","KS",20,70,87,"current"], + [20103,"Leavenworth","Kansas","KS",20,70,103,"current"], + [20117,"Marshall","Kansas","KS",20,70,117,"current"], + [20131,"Nemaha","Kansas","KS",20,70,131,"current"], + [20149,"Pottawatomie","Kansas","KS",20,70,149,"current"], + [20161,"Riley","Kansas","KS",20,70,161,"current"], + [20209,"Wyandotte","Kansas","KS",20,70,209,"current"], + [20003,"Anderson","Kansas","KS",20,80,3,"current"], + [20017,"Chase","Kansas","KS",20,80,17,"current"], + [20031,"Coffey","Kansas","KS",20,80,31,"current"], + [20045,"Douglas","Kansas","KS",20,80,45,"current"], + [20059,"Franklin","Kansas","KS",20,80,59,"current"], + [20061,"Geary","Kansas","KS",20,80,61,"current"], + [20091,"Johnson","Kansas","KS",20,80,91,"current"], + [20107,"Linn","Kansas","KS",20,80,107,"current"], + [20111,"Lyon","Kansas","KS",20,80,111,"current"], + [20121,"Miami","Kansas","KS",20,80,121,"current"], + [20127,"Morris","Kansas","KS",20,80,127,"current"], + [20139,"Osage","Kansas","KS",20,80,139,"current"], + [20177,"Shawnee","Kansas","KS",20,80,177,"current"], + [20197,"Wabaunsee","Kansas","KS",20,80,197,"current"], + [20001,"Allen","Kansas","KS",20,90,1,"current"], + [20011,"Bourbon","Kansas","KS",20,90,11,"current"], + [20015,"Butler","Kansas","KS",20,90,15,"current"], + [20019,"Chautauqua","Kansas","KS",20,90,19,"current"], + [20021,"Cherokee","Kansas","KS",20,90,21,"current"], + [20035,"Cowley","Kansas","KS",20,90,35,"current"], + [20037,"Crawford","Kansas","KS",20,90,37,"current"], + [20049,"Elk","Kansas","KS",20,90,49,"current"], + [20073,"Greenwood","Kansas","KS",20,90,73,"current"], + [20099,"Labette","Kansas","KS",20,90,99,"current"], + [20125,"Montgomery","Kansas","KS",20,90,125,"current"], + [20133,"Neosho","Kansas","KS",20,90,133,"current"], + [20205,"Wilson","Kansas","KS",20,90,205,"current"], + [20207,"Woodson","Kansas","KS",20,90,207,"current"], + [21000,"Kentucky","Kentucky","KY",21,0,0,"current"], + [21007,"Ballard","Kentucky","KY",21,10,7,"current"], + [21035,"Calloway","Kentucky","KY",21,10,35,"current"], + [21039,"Carlisle","Kentucky","KY",21,10,39,"current"], + [21075,"Fulton","Kentucky","KY",21,10,75,"current"], + [21083,"Graves","Kentucky","KY",21,10,83,"current"], + [21105,"Hickman","Kentucky","KY",21,10,105,"current"], + [21139,"Livingston","Kentucky","KY",21,10,139,"current"], + [21143,"Lyon","Kentucky","KY",21,10,143,"current"], + [21145,"McCracken","Kentucky","KY",21,10,145,"current"], + [21157,"Marshall","Kentucky","KY",21,10,157,"current"], + [21221,"Trigg","Kentucky","KY",21,10,221,"current"], + [21033,"Caldwell","Kentucky","KY",21,20,33,"current"], + [21047,"Christian","Kentucky","KY",21,20,47,"current"], + [21055,"Crittenden","Kentucky","KY",21,20,55,"current"], + [21059,"Daviess","Kentucky","KY",21,20,59,"current"], + [21091,"Hancock","Kentucky","KY",21,20,91,"current"], + [21101,"Henderson","Kentucky","KY",21,20,101,"current"], + [21107,"Hopkins","Kentucky","KY",21,20,107,"current"], + [21141,"Logan","Kentucky","KY",21,20,141,"current"], + [21149,"McLean","Kentucky","KY",21,20,149,"current"], + [21177,"Muhlenberg","Kentucky","KY",21,20,177,"current"], + [21183,"Ohio","Kentucky","KY",21,20,183,"current"], + [21213,"Simpson","Kentucky","KY",21,20,213,"current"], + [21219,"Todd","Kentucky","KY",21,20,219,"current"], + [21225,"Union","Kentucky","KY",21,20,225,"current"], + [21233,"Webster","Kentucky","KY",21,20,233,"current"], + [21001,"Adair","Kentucky","KY",21,30,1,"current"], + [21003,"Allen","Kentucky","KY",21,30,3,"current"], + [21009,"Barren","Kentucky","KY",21,30,9,"current"], + [21027,"Breckinridge","Kentucky","KY",21,30,27,"current"], + [21029,"Bullitt","Kentucky","KY",21,30,29,"current"], + [21031,"Butler","Kentucky","KY",21,30,31,"current"], + [21045,"Casey","Kentucky","KY",21,30,45,"current"], + [21053,"Clinton","Kentucky","KY",21,30,53,"current"], + [21057,"Cumberland","Kentucky","KY",21,30,57,"current"], + [21061,"Edmonson","Kentucky","KY",21,30,61,"current"], + [21085,"Grayson","Kentucky","KY",21,30,85,"current"], + [21087,"Green","Kentucky","KY",21,30,87,"current"], + [21093,"Hardin","Kentucky","KY",21,30,93,"current"], + [21099,"Hart","Kentucky","KY",21,30,99,"current"], + [21111,"Jefferson","Kentucky","KY",21,30,111,"current"], + [21123,"Larue","Kentucky","KY",21,30,123,"current"], + [21155,"Marion","Kentucky","KY",21,30,155,"current"], + [21163,"Meade","Kentucky","KY",21,30,163,"current"], + [21169,"Metcalfe","Kentucky","KY",21,30,169,"current"], + [21171,"Monroe","Kentucky","KY",21,30,171,"current"], + [21179,"Nelson","Kentucky","KY",21,30,179,"current"], + [21207,"Russell","Kentucky","KY",21,30,207,"current"], + [21217,"Taylor","Kentucky","KY",21,30,217,"current"], + [21227,"Warren","Kentucky","KY",21,30,227,"current"], + [21015,"Boone","Kentucky","KY",21,40,15,"current"], + [21023,"Bracken","Kentucky","KY",21,40,23,"current"], + [21037,"Campbell","Kentucky","KY",21,40,37,"current"], + [21041,"Carroll","Kentucky","KY",21,40,41,"current"], + [21077,"Gallatin","Kentucky","KY",21,40,77,"current"], + [21081,"Grant","Kentucky","KY",21,40,81,"current"], + [21103,"Henry","Kentucky","KY",21,40,103,"current"], + [21117,"Kenton","Kentucky","KY",21,40,117,"current"], + [21185,"Oldham","Kentucky","KY",21,40,185,"current"], + [21187,"Owen","Kentucky","KY",21,40,187,"current"], + [21191,"Pendleton","Kentucky","KY",21,40,191,"current"], + [21223,"Trimble","Kentucky","KY",21,40,223,"current"], + [21005,"Anderson","Kentucky","KY",21,50,5,"current"], + [21011,"Bath","Kentucky","KY",21,50,11,"current"], + [21017,"Bourbon","Kentucky","KY",21,50,17,"current"], + [21021,"Boyle","Kentucky","KY",21,50,21,"current"], + [21049,"Clark","Kentucky","KY",21,50,49,"current"], + [21067,"Fayette","Kentucky","KY",21,50,67,"current"], + [21069,"Fleming","Kentucky","KY",21,50,69,"current"], + [21073,"Franklin","Kentucky","KY",21,50,73,"current"], + [21079,"Garrard","Kentucky","KY",21,50,79,"current"], + [21097,"Harrison","Kentucky","KY",21,50,97,"current"], + [21113,"Jessamine","Kentucky","KY",21,50,113,"current"], + [21137,"Lincoln","Kentucky","KY",21,50,137,"current"], + [21151,"Madison","Kentucky","KY",21,50,151,"current"], + [21161,"Mason","Kentucky","KY",21,50,161,"current"], + [21167,"Mercer","Kentucky","KY",21,50,167,"current"], + [21173,"Montgomery","Kentucky","KY",21,50,173,"current"], + [21181,"Nicholas","Kentucky","KY",21,50,181,"current"], + [21201,"Robertson","Kentucky","KY",21,50,201,"current"], + [21209,"Scott","Kentucky","KY",21,50,209,"current"], + [21211,"Shelby","Kentucky","KY",21,50,211,"current"], + [21215,"Spencer","Kentucky","KY",21,50,215,"current"], + [21229,"Washington","Kentucky","KY",21,50,229,"current"], + [21239,"Woodford","Kentucky","KY",21,50,239,"current"], + [21013,"Bell","Kentucky","KY",21,60,13,"current"], + [21019,"Boyd","Kentucky","KY",21,60,19,"current"], + [21025,"Breathitt","Kentucky","KY",21,60,25,"current"], + [21043,"Carter","Kentucky","KY",21,60,43,"current"], + [21051,"Clay","Kentucky","KY",21,60,51,"current"], + [21063,"Elliott","Kentucky","KY",21,60,63,"current"], + [21065,"Estill","Kentucky","KY",21,60,65,"current"], + [21071,"Floyd","Kentucky","KY",21,60,71,"current"], + [21089,"Greenup","Kentucky","KY",21,60,89,"current"], + [21095,"Harlan","Kentucky","KY",21,60,95,"current"], + [21109,"Jackson","Kentucky","KY",21,60,109,"current"], + [21115,"Johnson","Kentucky","KY",21,60,115,"current"], + [21119,"Knott","Kentucky","KY",21,60,119,"current"], + [21121,"Knox","Kentucky","KY",21,60,121,"current"], + [21125,"Laurel","Kentucky","KY",21,60,125,"current"], + [21127,"Lawrence","Kentucky","KY",21,60,127,"current"], + [21129,"Lee","Kentucky","KY",21,60,129,"current"], + [21131,"Leslie","Kentucky","KY",21,60,131,"current"], + [21133,"Letcher","Kentucky","KY",21,60,133,"current"], + [21135,"Lewis","Kentucky","KY",21,60,135,"current"], + [21147,"McCreary","Kentucky","KY",21,60,147,"current"], + [21153,"Magoffin","Kentucky","KY",21,60,153,"current"], + [21159,"Martin","Kentucky","KY",21,60,159,"current"], + [21165,"Menifee","Kentucky","KY",21,60,165,"current"], + [21175,"Morgan","Kentucky","KY",21,60,175,"current"], + [21189,"Owsley","Kentucky","KY",21,60,189,"current"], + [21193,"Perry","Kentucky","KY",21,60,193,"current"], + [21195,"Pike","Kentucky","KY",21,60,195,"current"], + [21197,"Powell","Kentucky","KY",21,60,197,"current"], + [21199,"Pulaski","Kentucky","KY",21,60,199,"current"], + [21203,"Rockcastle","Kentucky","KY",21,60,203,"current"], + [21205,"Rowan","Kentucky","KY",21,60,205,"current"], + [21231,"Wayne","Kentucky","KY",21,60,231,"current"], + [21235,"Whitley","Kentucky","KY",21,60,235,"current"], + [21237,"Wolfe","Kentucky","KY",21,60,237,"current"], + [22000,"Louisiana","Louisiana","LA",22,0,0,"current"], + [22015,"Bossier","Louisiana","LA",22,10,15,"current"], + [22017,"Caddo","Louisiana","LA",22,10,17,"current"], + [22031,"Desoto","Louisiana","LA",22,10,31,"current"], + [22081,"Red River","Louisiana","LA",22,10,81,"current"], + [22119,"Webster","Louisiana","LA",22,10,119,"current"], + [22013,"Bienville","Louisiana","LA",22,20,13,"current"], + [22021,"Caldwell","Louisiana","LA",22,20,21,"current"], + [22027,"Claiborne","Louisiana","LA",22,20,27,"current"], + [22049,"Jackson","Louisiana","LA",22,20,49,"current"], + [22061,"Lincoln","Louisiana","LA",22,20,61,"current"], + [22073,"Ouachita","Louisiana","LA",22,20,73,"current"], + [22111,"Union","Louisiana","LA",22,20,111,"current"], + [22127,"Winn","Louisiana","LA",22,20,127,"current"], + [22035,"East Carroll","Louisiana","LA",22,30,35,"current"], + [22041,"Franklin","Louisiana","LA",22,30,41,"current"], + [22065,"Madison","Louisiana","LA",22,30,65,"current"], + [22067,"Morehouse","Louisiana","LA",22,30,67,"current"], + [22083,"Richland","Louisiana","LA",22,30,83,"current"], + [22107,"Tensas","Louisiana","LA",22,30,107,"current"], + [22123,"West Carroll","Louisiana","LA",22,30,123,"current"], + [22069,"Natchitoches","Louisiana","LA",22,40,69,"current"], + [22085,"Sabine","Louisiana","LA",22,40,85,"current"], + [22115,"Vernon","Louisiana","LA",22,40,115,"current"], + [22009,"Avoyelles","Louisiana","LA",22,50,9,"current"], + [22025,"Catahoula","Louisiana","LA",22,50,25,"current"], + [22029,"Concordia","Louisiana","LA",22,50,29,"current"], + [22039,"Evangeline","Louisiana","LA",22,50,39,"current"], + [22043,"Grant","Louisiana","LA",22,50,43,"current"], + [22059,"La Salle","Louisiana","LA",22,50,59,"current"], + [22077,"Pointe Coupee","Louisiana","LA",22,50,77,"current"], + [22079,"Rapides","Louisiana","LA",22,50,79,"current"], + [22097,"Saint Landry","Louisiana","LA",22,50,97,"current"], + [22121,"West Baton Rouge","Louisiana","LA",22,50,121,"current"], + [22033,"East Baton Rouge","Louisiana","LA",22,60,33,"current"], + [22037,"East Feliciana","Louisiana","LA",22,60,37,"current"], + [22063,"Livingston","Louisiana","LA",22,60,63,"current"], + [22091,"Saint Helena","Louisiana","LA",22,60,91,"current"], + [22103,"Saint Tammany","Louisiana","LA",22,60,103,"current"], + [22105,"Tangipahoa","Louisiana","LA",22,60,105,"current"], + [22117,"Washington","Louisiana","LA",22,60,117,"current"], + [22125,"West Feliciana","Louisiana","LA",22,60,125,"current"], + [22001,"Acadia","Louisiana","LA",22,70,1,"current"], + [22003,"Allen","Louisiana","LA",22,70,3,"current"], + [22011,"Beauregard","Louisiana","LA",22,70,11,"current"], + [22019,"Calcasieu","Louisiana","LA",22,70,19,"current"], + [22023,"Cameron","Louisiana","LA",22,70,23,"current"], + [22053,"Jefferson Davis","Louisiana","LA",22,70,53,"current"], + [22113,"Vermilion","Louisiana","LA",22,70,113,"current"], + [22007,"Assumption","Louisiana","LA",22,80,7,"current"], + [22045,"Iberia","Louisiana","LA",22,80,45,"current"], + [22047,"Iberville","Louisiana","LA",22,80,47,"current"], + [22055,"Lafayette","Louisiana","LA",22,80,55,"current"], + [22099,"Saint Martin","Louisiana","LA",22,80,99,"current"], + [22101,"Saint Mary","Louisiana","LA",22,80,101,"current"], + [22005,"Ascension","Louisiana","LA",22,90,5,"current"], + [22051,"Jefferson","Louisiana","LA",22,90,51,"current"], + [22057,"Lafourche","Louisiana","LA",22,90,57,"current"], + [22071,"Orleans","Louisiana","LA",22,90,71,"current"], + [22075,"Plaquemines","Louisiana","LA",22,90,75,"current"], + [22087,"Saint Bernard","Louisiana","LA",22,90,87,"current"], + [22089,"Saint Charles","Louisiana","LA",22,90,89,"current"], + [22093,"Saint James","Louisiana","LA",22,90,93,"current"], + [22095,"St. John the Baptist","Louisiana","LA",22,90,95,"current"], + [22109,"Terrebonne","Louisiana","LA",22,90,109,"current"], + [23000,"Maine","Maine","ME",23,0,0,"current"], + [23003,"Aroostook","Maine","ME",23,10,3,"current"], + [23009,"Hancock","Maine","ME",23,20,9,"current"], + [23019,"Penobscot","Maine","ME",23,20,19,"current"], + [23021,"Piscataquis","Maine","ME",23,20,21,"current"], + [23025,"Somerset","Maine","ME",23,20,25,"current"], + [23027,"Waldo","Maine","ME",23,20,27,"current"], + [23029,"Washington","Maine","ME",23,20,29,"current"], + [23001,"Androscoggin","Maine","ME",23,30,1,"current"], + [23005,"Cumberland","Maine","ME",23,30,5,"current"], + [23007,"Franklin","Maine","ME",23,30,7,"current"], + [23011,"Kennebec","Maine","ME",23,30,11,"current"], + [23013,"Knox","Maine","ME",23,30,13,"current"], + [23015,"Lincoln","Maine","ME",23,30,15,"current"], + [23017,"Oxford","Maine","ME",23,30,17,"current"], + [23023,"Sagadahoc","Maine","ME",23,30,23,"current"], + [23031,"York","Maine","ME",23,30,31,"current"], + [24000,"Maryland","Maryland","MD",24,0,0,"current"], + [24001,"Allegany","Maryland","MD",24,10,1,"current"], + [24023,"Garrett","Maryland","MD",24,10,23,"current"], + [24005,"Baltimore","Maryland","MD",24,20,5,"current"], + [24013,"Carroll","Maryland","MD",24,20,13,"current"], + [24021,"Frederick","Maryland","MD",24,20,21,"current"], + [24025,"Harford","Maryland","MD",24,20,25,"current"], + [24027,"Howard","Maryland","MD",24,20,27,"current"], + [24031,"Montgomery","Maryland","MD",24,20,31,"current"], + [24043,"Washington","Maryland","MD",24,20,43,"current"], + [24510,"Baltimore City","Maryland","MD",24,20,510,"current"], + [24011,"Caroline","Maryland","MD",24,30,11,"current"], + [24015,"Cecil","Maryland","MD",24,30,15,"current"], + [24029,"Kent","Maryland","MD",24,30,29,"current"], + [24035,"Queen Anne's","Maryland","MD",24,30,35,"current"], + [24041,"Talbot","Maryland","MD",24,30,41,"current"], + [24003,"Anne Arundel","Maryland","MD",24,80,3,"current"], + [24009,"Calvert","Maryland","MD",24,80,9,"current"], + [24017,"Charles","Maryland","MD",24,80,17,"current"], + [24033,"Prince George's","Maryland","MD",24,80,33,"current"], + [24037,"St. Marys","Maryland","MD",24,80,37,"current"], + [24019,"Dorchester","Maryland","MD",24,90,19,"current"], + [24039,"Somerset","Maryland","MD",24,90,39,"current"], + [24045,"Wicomico","Maryland","MD",24,90,45,"current"], + [24047,"Worcester","Maryland","MD",24,90,47,"current"], + [25000,"Massachusetts","Massachusetts","MA",25,0,0,"current"], + [25001,"Barnstable","Massachusetts","MA",25,10,1,"current"], + [25003,"Berkshire","Massachusetts","MA",25,10,3,"current"], + [25005,"Bristol","Massachusetts","MA",25,10,5,"current"], + [25007,"Dukes","Massachusetts","MA",25,10,7,"current"], + [25009,"Essex","Massachusetts","MA",25,10,9,"current"], + [25011,"Franklin","Massachusetts","MA",25,10,11,"current"], + [25013,"Hampden","Massachusetts","MA",25,10,13,"current"], + [25015,"Hampshire","Massachusetts","MA",25,10,15,"current"], + [25017,"Middlesex","Massachusetts","MA",25,10,17,"current"], + [25019,"Nantucket","Massachusetts","MA",25,10,19,"current"], + [25021,"Norfolk","Massachusetts","MA",25,10,21,"current"], + [25023,"Plymouth","Massachusetts","MA",25,10,23,"current"], + [25025,"Suffolk","Massachusetts","MA",25,10,25,"current"], + [25027,"Worcester","Massachusetts","MA",25,10,27,"current"], + [26000,"Michigan","Michigan","MI",26,0,0,"current"], + [26003,"Alger","Michigan","MI",26,10,3,"current"], + [26013,"Baraga","Michigan","MI",26,10,13,"current"], + [26033,"Chippewa","Michigan","MI",26,10,33,"current"], + [26041,"Delta","Michigan","MI",26,10,41,"current"], + [26043,"Dickinson","Michigan","MI",26,10,43,"current"], + [26053,"Gogebic","Michigan","MI",26,10,53,"current"], + [26061,"Houghton","Michigan","MI",26,10,61,"current"], + [26071,"Iron","Michigan","MI",26,10,71,"current"], + [26083,"Keweenaw","Michigan","MI",26,10,83,"current"], + [26095,"Luce","Michigan","MI",26,10,95,"current"], + [26097,"Mackinac","Michigan","MI",26,10,97,"current"], + [26103,"Marquette","Michigan","MI",26,10,103,"current"], + [26109,"Menominee","Michigan","MI",26,10,109,"current"], + [26131,"Ontonagon","Michigan","MI",26,10,131,"current"], + [26153,"Schoolcraft","Michigan","MI",26,10,153,"current"], + [26009,"Antrim","Michigan","MI",26,20,9,"current"], + [26019,"Benzie","Michigan","MI",26,20,19,"current"], + [26029,"Charlevoix","Michigan","MI",26,20,29,"current"], + [26047,"Emmet","Michigan","MI",26,20,47,"current"], + [26055,"Grand Traverse","Michigan","MI",26,20,55,"current"], + [26079,"Kalkaska","Michigan","MI",26,20,79,"current"], + [26089,"Leelanau","Michigan","MI",26,20,89,"current"], + [26101,"Manistee","Michigan","MI",26,20,101,"current"], + [26113,"Missaukee","Michigan","MI",26,20,113,"current"], + [26165,"Wexford","Michigan","MI",26,20,165,"current"], + [26001,"Alcona","Michigan","MI",26,30,1,"current"], + [26007,"Alpena","Michigan","MI",26,30,7,"current"], + [26031,"Cheboygan","Michigan","MI",26,30,31,"current"], + [26039,"Crawford","Michigan","MI",26,30,39,"current"], + [26069,"Iosco","Michigan","MI",26,30,69,"current"], + [26119,"Montmorency","Michigan","MI",26,30,119,"current"], + [26129,"Ogemaw","Michigan","MI",26,30,129,"current"], + [26135,"Oscoda","Michigan","MI",26,30,135,"current"], + [26137,"Otsego","Michigan","MI",26,30,137,"current"], + [26141,"Presque Isle","Michigan","MI",26,30,141,"current"], + [26143,"Roscommon","Michigan","MI",26,30,143,"current"], + [26085,"Lake","Michigan","MI",26,40,85,"current"], + [26105,"Mason","Michigan","MI",26,40,105,"current"], + [26121,"Muskegon","Michigan","MI",26,40,121,"current"], + [26123,"Newaygo","Michigan","MI",26,40,123,"current"], + [26127,"Oceana","Michigan","MI",26,40,127,"current"], + [26035,"Clare","Michigan","MI",26,50,35,"current"], + [26051,"Gladwin","Michigan","MI",26,50,51,"current"], + [26057,"Gratiot","Michigan","MI",26,50,57,"current"], + [26073,"Isabella","Michigan","MI",26,50,73,"current"], + [26107,"Mecosta","Michigan","MI",26,50,107,"current"], + [26111,"Midland","Michigan","MI",26,50,111,"current"], + [26117,"Montcalm","Michigan","MI",26,50,117,"current"], + [26133,"Osceola","Michigan","MI",26,50,133,"current"], + [26011,"Arenac","Michigan","MI",26,60,11,"current"], + [26017,"Bay","Michigan","MI",26,60,17,"current"], + [26063,"Huron","Michigan","MI",26,60,63,"current"], + [26145,"Saginaw","Michigan","MI",26,60,145,"current"], + [26151,"Sanilac","Michigan","MI",26,60,151,"current"], + [26157,"Tuscola","Michigan","MI",26,60,157,"current"], + [26005,"Allegan","Michigan","MI",26,70,5,"current"], + [26021,"Berrien","Michigan","MI",26,70,21,"current"], + [26027,"Cass","Michigan","MI",26,70,27,"current"], + [26077,"Kalamazoo","Michigan","MI",26,70,77,"current"], + [26081,"Kent","Michigan","MI",26,70,81,"current"], + [26139,"Ottawa","Michigan","MI",26,70,139,"current"], + [26159,"Van Buren","Michigan","MI",26,70,159,"current"], + [26015,"Barry","Michigan","MI",26,80,15,"current"], + [26023,"Branch","Michigan","MI",26,80,23,"current"], + [26025,"Calhoun","Michigan","MI",26,80,25,"current"], + [26037,"Clinton","Michigan","MI",26,80,37,"current"], + [26045,"Eaton","Michigan","MI",26,80,45,"current"], + [26059,"Hillsdale","Michigan","MI",26,80,59,"current"], + [26065,"Ingham","Michigan","MI",26,80,65,"current"], + [26067,"Ionia","Michigan","MI",26,80,67,"current"], + [26075,"Jackson","Michigan","MI",26,80,75,"current"], + [26149,"St. Joseph","Michigan","MI",26,80,149,"current"], + [26155,"Shiawassee","Michigan","MI",26,80,155,"current"], + [26049,"Genesee","Michigan","MI",26,90,49,"current"], + [26087,"Lapeer","Michigan","MI",26,90,87,"current"], + [26091,"Lenawee","Michigan","MI",26,90,91,"current"], + [26093,"Livingston","Michigan","MI",26,90,93,"current"], + [26099,"Macomb","Michigan","MI",26,90,99,"current"], + [26115,"Monroe","Michigan","MI",26,90,115,"current"], + [26125,"Oakland","Michigan","MI",26,90,125,"current"], + [26147,"St. Clair","Michigan","MI",26,90,147,"current"], + [26161,"Washtenaw","Michigan","MI",26,90,161,"current"], + [26163,"Wayne","Michigan","MI",26,90,163,"current"], + [27000,"Minnesota","Minnesota","MN",27,0,0,"current"], + [27005,"Becker","Minnesota","MN",27,10,5,"current"], + [27027,"Clay","Minnesota","MN",27,10,27,"current"], + [27029,"Clearwater","Minnesota","MN",27,10,29,"current"], + [27069,"Kittson","Minnesota","MN",27,10,69,"current"], + [27087,"Mahnomen","Minnesota","MN",27,10,87,"current"], + [27089,"Marshall","Minnesota","MN",27,10,89,"current"], + [27107,"Norman","Minnesota","MN",27,10,107,"current"], + [27113,"Pennington","Minnesota","MN",27,10,113,"current"], + [27119,"Polk","Minnesota","MN",27,10,119,"current"], + [27125,"Red Lake","Minnesota","MN",27,10,125,"current"], + [27135,"Roseau","Minnesota","MN",27,10,135,"current"], + [27007,"Beltrami","Minnesota","MN",27,20,7,"current"], + [27021,"Cass","Minnesota","MN",27,20,21,"current"], + [27057,"Hubbard","Minnesota","MN",27,20,57,"current"], + [27061,"Itasca","Minnesota","MN",27,20,61,"current"], + [27071,"Koochiching","Minnesota","MN",27,20,71,"current"], + [27077,"Lake of the Woods","Minnesota","MN",27,20,77,"current"], + [27031,"Cook","Minnesota","MN",27,30,31,"current"], + [27075,"Lake","Minnesota","MN",27,30,75,"current"], + [27137,"St. Louis","Minnesota","MN",27,30,137,"current"], + [27011,"Big Stone","Minnesota","MN",27,40,11,"current"], + [27023,"Chippewa","Minnesota","MN",27,40,23,"current"], + [27041,"Douglas","Minnesota","MN",27,40,41,"current"], + [27051,"Grant","Minnesota","MN",27,40,51,"current"], + [27073,"Lac Qui Parle","Minnesota","MN",27,40,73,"current"], + [27111,"Otter Tail","Minnesota","MN",27,40,111,"current"], + [27121,"Pope","Minnesota","MN",27,40,121,"current"], + [27149,"Stevens","Minnesota","MN",27,40,149,"current"], + [27151,"Swift","Minnesota","MN",27,40,151,"current"], + [27155,"Traverse","Minnesota","MN",27,40,155,"current"], + [27167,"Wilkin","Minnesota","MN",27,40,167,"current"], + [27173,"Yellow Medicine","Minnesota","MN",27,40,173,"current"], + [27009,"Benton","Minnesota","MN",27,50,9,"current"], + [27019,"Carver","Minnesota","MN",27,50,19,"current"], + [27067,"Kandiyohi","Minnesota","MN",27,50,67,"current"], + [27085,"McLeod","Minnesota","MN",27,50,85,"current"], + [27093,"Meeker","Minnesota","MN",27,50,93,"current"], + [27097,"Morrison","Minnesota","MN",27,50,97,"current"], + [27129,"Renville","Minnesota","MN",27,50,129,"current"], + [27139,"Scott","Minnesota","MN",27,50,139,"current"], + [27141,"Sherburne","Minnesota","MN",27,50,141,"current"], + [27143,"Sibley","Minnesota","MN",27,50,143,"current"], + [27145,"Stearns","Minnesota","MN",27,50,145,"current"], + [27153,"Todd","Minnesota","MN",27,50,153,"current"], + [27159,"Wadena","Minnesota","MN",27,50,159,"current"], + [27171,"Wright","Minnesota","MN",27,50,171,"current"], + [27001,"Aitkin","Minnesota","MN",27,60,1,"current"], + [27003,"Anoka","Minnesota","MN",27,60,3,"current"], + [27017,"Carlton","Minnesota","MN",27,60,17,"current"], + [27025,"Chisago","Minnesota","MN",27,60,25,"current"], + [27035,"Crow Wing","Minnesota","MN",27,60,35,"current"], + [27053,"Hennepin","Minnesota","MN",27,60,53,"current"], + [27059,"Isanti","Minnesota","MN",27,60,59,"current"], + [27065,"Kanabec","Minnesota","MN",27,60,65,"current"], + [27095,"Mille Lacs","Minnesota","MN",27,60,95,"current"], + [27115,"Pine","Minnesota","MN",27,60,115,"current"], + [27123,"Ramsey","Minnesota","MN",27,60,123,"current"], + [27163,"Washington","Minnesota","MN",27,60,163,"current"], + [27033,"Cottonwood","Minnesota","MN",27,70,33,"current"], + [27063,"Jackson","Minnesota","MN",27,70,63,"current"], + [27081,"Lincoln","Minnesota","MN",27,70,81,"current"], + [27083,"Lyon","Minnesota","MN",27,70,83,"current"], + [27101,"Murray","Minnesota","MN",27,70,101,"current"], + [27105,"Nobles","Minnesota","MN",27,70,105,"current"], + [27117,"Pipestone","Minnesota","MN",27,70,117,"current"], + [27127,"Redwood","Minnesota","MN",27,70,127,"current"], + [27133,"Rock","Minnesota","MN",27,70,133,"current"], + [27013,"Blue Earth","Minnesota","MN",27,80,13,"current"], + [27015,"Brown","Minnesota","MN",27,80,15,"current"], + [27043,"Faribault","Minnesota","MN",27,80,43,"current"], + [27047,"Freeborn","Minnesota","MN",27,80,47,"current"], + [27079,"Le Sueur","Minnesota","MN",27,80,79,"current"], + [27091,"Martin","Minnesota","MN",27,80,91,"current"], + [27103,"Nicollet","Minnesota","MN",27,80,103,"current"], + [27131,"Rice","Minnesota","MN",27,80,131,"current"], + [27147,"Steele","Minnesota","MN",27,80,147,"current"], + [27161,"Waseca","Minnesota","MN",27,80,161,"current"], + [27165,"Watonwan","Minnesota","MN",27,80,165,"current"], + [27037,"Dakota","Minnesota","MN",27,90,37,"current"], + [27039,"Dodge","Minnesota","MN",27,90,39,"current"], + [27045,"Fillmore","Minnesota","MN",27,90,45,"current"], + [27049,"Goodhue","Minnesota","MN",27,90,49,"current"], + [27055,"Houston","Minnesota","MN",27,90,55,"current"], + [27099,"Mower","Minnesota","MN",27,90,99,"current"], + [27109,"Olmsted","Minnesota","MN",27,90,109,"current"], + [27157,"Wabasha","Minnesota","MN",27,90,157,"current"], + [27169,"Winona","Minnesota","MN",27,90,169,"current"], + [28000,"Mississippi","Mississippi","MS",28,0,0,"current"], + [28011,"Bolivar","Mississippi","MS",28,10,11,"current"], + [28027,"Coahoma","Mississippi","MS",28,10,27,"current"], + [28119,"Quitman","Mississippi","MS",28,10,119,"current"], + [28135,"Tallahatchie","Mississippi","MS",28,10,135,"current"], + [28143,"Tunica","Mississippi","MS",28,10,143,"current"], + [28009,"Benton","Mississippi","MS",28,20,9,"current"], + [28013,"Calhoun","Mississippi","MS",28,20,13,"current"], + [28033,"Desoto","Mississippi","MS",28,20,33,"current"], + [28043,"Grenada","Mississippi","MS",28,20,43,"current"], + [28071,"Lafayette","Mississippi","MS",28,20,71,"current"], + [28093,"Marshall","Mississippi","MS",28,20,93,"current"], + [28107,"Panola","Mississippi","MS",28,20,107,"current"], + [28137,"Tate","Mississippi","MS",28,20,137,"current"], + [28161,"Yalobusha","Mississippi","MS",28,20,161,"current"], + [28003,"Alcorn","Mississippi","MS",28,30,3,"current"], + [28057,"Itawamba","Mississippi","MS",28,30,57,"current"], + [28081,"Lee","Mississippi","MS",28,30,81,"current"], + [28115,"Pontotoc","Mississippi","MS",28,30,115,"current"], + [28117,"Prentiss","Mississippi","MS",28,30,117,"current"], + [28139,"Tippah","Mississippi","MS",28,30,139,"current"], + [28141,"Tishomingo","Mississippi","MS",28,30,141,"current"], + [28145,"Union","Mississippi","MS",28,30,145,"current"], + [28053,"Humphreys","Mississippi","MS",28,40,53,"current"], + [28055,"Issaquena","Mississippi","MS",28,40,55,"current"], + [28083,"Leflore","Mississippi","MS",28,40,83,"current"], + [28125,"Sharkey","Mississippi","MS",28,40,125,"current"], + [28133,"Sunflower","Mississippi","MS",28,40,133,"current"], + [28151,"Washington","Mississippi","MS",28,40,151,"current"], + [28163,"Yazoo","Mississippi","MS",28,40,163,"current"], + [28007,"Attala","Mississippi","MS",28,50,7,"current"], + [28015,"Carroll","Mississippi","MS",28,50,15,"current"], + [28019,"Choctaw","Mississippi","MS",28,50,19,"current"], + [28051,"Holmes","Mississippi","MS",28,50,51,"current"], + [28079,"Leake","Mississippi","MS",28,50,79,"current"], + [28089,"Madison","Mississippi","MS",28,50,89,"current"], + [28097,"Montgomery","Mississippi","MS",28,50,97,"current"], + [28121,"Rankin","Mississippi","MS",28,50,121,"current"], + [28123,"Scott","Mississippi","MS",28,50,123,"current"], + [28155,"Webster","Mississippi","MS",28,50,155,"current"], + [28017,"Chickasaw","Mississippi","MS",28,60,17,"current"], + [28025,"Clay","Mississippi","MS",28,60,25,"current"], + [28069,"Kemper","Mississippi","MS",28,60,69,"current"], + [28087,"Lowndes","Mississippi","MS",28,60,87,"current"], + [28095,"Monroe","Mississippi","MS",28,60,95,"current"], + [28099,"Neshoba","Mississippi","MS",28,60,99,"current"], + [28103,"Noxubee","Mississippi","MS",28,60,103,"current"], + [28105,"Oktibbeha","Mississippi","MS",28,60,105,"current"], + [28159,"Winston","Mississippi","MS",28,60,159,"current"], + [28001,"Adams","Mississippi","MS",28,70,1,"current"], + [28005,"Amite","Mississippi","MS",28,70,5,"current"], + [28021,"Claiborne","Mississippi","MS",28,70,21,"current"], + [28029,"Copiah","Mississippi","MS",28,70,29,"current"], + [28037,"Franklin","Mississippi","MS",28,70,37,"current"], + [28049,"Hinds","Mississippi","MS",28,70,49,"current"], + [28063,"Jefferson","Mississippi","MS",28,70,63,"current"], + [28085,"Lincoln","Mississippi","MS",28,70,85,"current"], + [28149,"Warren","Mississippi","MS",28,70,149,"current"], + [28157,"Wilkinson","Mississippi","MS",28,70,157,"current"], + [28031,"Covington","Mississippi","MS",28,80,31,"current"], + [28033,"Desoto","Mississippi","MS",28,80,33,"historical"], + [28065,"Jefferson Davis","Mississippi","MS",28,80,65,"current"], + [28073,"Lamar","Mississippi","MS",28,80,73,"current"], + [28077,"Lawrence","Mississippi","MS",28,80,77,"current"], + [28091,"Marion","Mississippi","MS",28,80,91,"current"], + [28113,"Pike","Mississippi","MS",28,80,113,"current"], + [28127,"Simpson","Mississippi","MS",28,80,127,"current"], + [28129,"Smith","Mississippi","MS",28,80,129,"current"], + [28147,"Walthall","Mississippi","MS",28,80,147,"current"], + [28023,"Clarke","Mississippi","MS",28,90,23,"current"], + [28035,"Forrest","Mississippi","MS",28,90,35,"current"], + [28039,"George","Mississippi","MS",28,90,39,"current"], + [28041,"Greene","Mississippi","MS",28,90,41,"current"], + [28045,"Hancock","Mississippi","MS",28,90,45,"current"], + [28047,"Harrison","Mississippi","MS",28,90,47,"current"], + [28059,"Jackson","Mississippi","MS",28,90,59,"current"], + [28061,"Jasper","Mississippi","MS",28,90,61,"current"], + [28067,"Jones","Mississippi","MS",28,90,67,"current"], + [28075,"Lauderdale","Mississippi","MS",28,90,75,"current"], + [28101,"Newton","Mississippi","MS",28,90,101,"current"], + [28109,"Pearl River","Mississippi","MS",28,90,109,"current"], + [28111,"Perry","Mississippi","MS",28,90,111,"current"], + [28131,"Stone","Mississippi","MS",28,90,131,"current"], + [28153,"Wayne","Mississippi","MS",28,90,153,"current"], + [29000,"Missouri","Missouri","MO",29,0,0,"current"], + [29003,"Andrew","Missouri","MO",29,10,3,"current"], + [29005,"Atchison","Missouri","MO",29,10,5,"current"], + [29021,"Buchanan","Missouri","MO",29,10,21,"current"], + [29025,"Caldwell","Missouri","MO",29,10,25,"current"], + [29047,"Clay","Missouri","MO",29,10,47,"current"], + [29049,"Clinton","Missouri","MO",29,10,49,"current"], + [29061,"Daviess","Missouri","MO",29,10,61,"current"], + [29063,"De Kalb","Missouri","MO",29,10,63,"current"], + [29075,"Gentry","Missouri","MO",29,10,75,"current"], + [29081,"Harrison","Missouri","MO",29,10,81,"current"], + [29087,"Holt","Missouri","MO",29,10,87,"current"], + [29147,"Nodaway","Missouri","MO",29,10,147,"current"], + [29165,"Platte","Missouri","MO",29,10,165,"current"], + [29177,"Ray","Missouri","MO",29,10,177,"current"], + [29227,"Worth","Missouri","MO",29,10,227,"current"], + [29001,"Adair","Missouri","MO",29,20,1,"current"], + [29033,"Carroll","Missouri","MO",29,20,33,"current"], + [29041,"Chariton","Missouri","MO",29,20,41,"current"], + [29079,"Grundy","Missouri","MO",29,20,79,"current"], + [29115,"Linn","Missouri","MO",29,20,115,"current"], + [29117,"Livingston","Missouri","MO",29,20,117,"current"], + [29121,"Macon","Missouri","MO",29,20,121,"current"], + [29129,"Mercer","Missouri","MO",29,20,129,"current"], + [29171,"Putnam","Missouri","MO",29,20,171,"current"], + [29175,"Randolph","Missouri","MO",29,20,175,"current"], + [29197,"Schuyler","Missouri","MO",29,20,197,"current"], + [29211,"Sullivan","Missouri","MO",29,20,211,"current"], + [29007,"Audrain","Missouri","MO",29,30,7,"current"], + [29045,"Clark","Missouri","MO",29,30,45,"current"], + [29103,"Knox","Missouri","MO",29,30,103,"current"], + [29111,"Lewis","Missouri","MO",29,30,111,"current"], + [29127,"Marion","Missouri","MO",29,30,127,"current"], + [29137,"Monroe","Missouri","MO",29,30,137,"current"], + [29163,"Pike","Missouri","MO",29,30,163,"current"], + [29173,"Ralls","Missouri","MO",29,30,173,"current"], + [29199,"Scotland","Missouri","MO",29,30,199,"current"], + [29205,"Shelby","Missouri","MO",29,30,205,"current"], + [29013,"Bates","Missouri","MO",29,40,13,"current"], + [29037,"Cass","Missouri","MO",29,40,37,"current"], + [29039,"Cedar","Missouri","MO",29,40,39,"current"], + [29083,"Henry","Missouri","MO",29,40,83,"current"], + [29095,"Jackson","Missouri","MO",29,40,95,"current"], + [29101,"Johnson","Missouri","MO",29,40,101,"current"], + [29107,"Lafayette","Missouri","MO",29,40,107,"current"], + [29185,"St. Clair","Missouri","MO",29,40,185,"current"], + [29217,"Vernon","Missouri","MO",29,40,217,"current"], + [29015,"Benton","Missouri","MO",29,50,15,"current"], + [29019,"Boone","Missouri","MO",29,50,19,"current"], + [29027,"Callaway","Missouri","MO",29,50,27,"current"], + [29029,"Camden","Missouri","MO",29,50,29,"current"], + [29051,"Cole","Missouri","MO",29,50,51,"current"], + [29053,"Cooper","Missouri","MO",29,50,53,"current"], + [29059,"Dallas","Missouri","MO",29,50,59,"current"], + [29085,"Hickory","Missouri","MO",29,50,85,"current"], + [29089,"Howard","Missouri","MO",29,50,89,"current"], + [29105,"Laclede","Missouri","MO",29,50,105,"current"], + [29125,"Maries","Missouri","MO",29,50,125,"current"], + [29131,"Miller","Missouri","MO",29,50,131,"current"], + [29135,"Moniteau","Missouri","MO",29,50,135,"current"], + [29141,"Morgan","Missouri","MO",29,50,141,"current"], + [29151,"Osage","Missouri","MO",29,50,151,"current"], + [29159,"Pettis","Missouri","MO",29,50,159,"current"], + [29161,"Phelps","Missouri","MO",29,50,161,"current"], + [29167,"Polk","Missouri","MO",29,50,167,"current"], + [29169,"Pulaski","Missouri","MO",29,50,169,"current"], + [29195,"Saline","Missouri","MO",29,50,195,"current"], + [29055,"Crawford","Missouri","MO",29,60,55,"current"], + [29071,"Franklin","Missouri","MO",29,60,71,"current"], + [29073,"Gasconade","Missouri","MO",29,60,73,"current"], + [29099,"Jefferson","Missouri","MO",29,60,99,"current"], + [29113,"Lincoln","Missouri","MO",29,60,113,"current"], + [29139,"Montgomery","Missouri","MO",29,60,139,"current"], + [29157,"Perry","Missouri","MO",29,60,157,"current"], + [29183,"St. Charles","Missouri","MO",29,60,183,"current"], + [29186,"Ste. Genevieve","Missouri","MO",29,60,186,"current"], + [29187,"St. Francois","Missouri","MO",29,60,187,"current"], + [29189,"St. Louis","Missouri","MO",29,60,189,"current"], + [29193,"Ste. Genevieve","Missouri","MO",29,60,193,"historical"], + [29219,"Warren","Missouri","MO",29,60,219,"current"], + [29221,"Washington","Missouri","MO",29,60,221,"current"], + [29510,"St. Louis City","Missouri","MO",29,60,510,"current"], + [29009,"Barry","Missouri","MO",29,70,9,"current"], + [29011,"Barton","Missouri","MO",29,70,11,"current"], + [29043,"Christian","Missouri","MO",29,70,43,"current"], + [29057,"Dade","Missouri","MO",29,70,57,"current"], + [29077,"Greene","Missouri","MO",29,70,77,"current"], + [29097,"Jasper","Missouri","MO",29,70,97,"current"], + [29109,"Lawrence","Missouri","MO",29,70,109,"current"], + [29119,"McDonald","Missouri","MO",29,70,119,"current"], + [29145,"Newton","Missouri","MO",29,70,145,"current"], + [29209,"Stone","Missouri","MO",29,70,209,"current"], + [29017,"Bollinger","Missouri","MO",29,80,17,"current"], + [29035,"Carter","Missouri","MO",29,80,35,"current"], + [29065,"Dent","Missouri","MO",29,80,65,"current"], + [29067,"Douglas","Missouri","MO",29,80,67,"current"], + [29091,"Howell","Missouri","MO",29,80,91,"current"], + [29093,"Iron","Missouri","MO",29,80,93,"current"], + [29123,"Madison","Missouri","MO",29,80,123,"current"], + [29149,"Oregon","Missouri","MO",29,80,149,"current"], + [29153,"Ozark","Missouri","MO",29,80,153,"current"], + [29179,"Reynolds","Missouri","MO",29,80,179,"current"], + [29181,"Ripley","Missouri","MO",29,80,181,"current"], + [29203,"Shannon","Missouri","MO",29,80,203,"current"], + [29213,"Taney","Missouri","MO",29,80,213,"current"], + [29215,"Texas","Missouri","MO",29,80,215,"current"], + [29223,"Wayne","Missouri","MO",29,80,223,"current"], + [29225,"Webster","Missouri","MO",29,80,225,"current"], + [29229,"Wright","Missouri","MO",29,80,229,"current"], + [29023,"Butler","Missouri","MO",29,90,23,"current"], + [29031,"Cape Girardeau","Missouri","MO",29,90,31,"current"], + [29069,"Dunklin","Missouri","MO",29,90,69,"current"], + [29133,"Mississippi","Missouri","MO",29,90,133,"current"], + [29143,"New Madrid","Missouri","MO",29,90,143,"current"], + [29155,"Pemiscot","Missouri","MO",29,90,155,"current"], + [29201,"Scott","Missouri","MO",29,90,201,"current"], + [29207,"Stoddard","Missouri","MO",29,90,207,"current"], + [30000,"Montana","Montana","MT",30,0,0,"current"], + [30023,"Deer Lodge","Montana","MT",30,10,23,"current"], + [30029,"Flathead","Montana","MT",30,10,29,"current"], + [30039,"Granite","Montana","MT",30,10,39,"current"], + [30047,"Lake","Montana","MT",30,10,47,"current"], + [30053,"Lincoln","Montana","MT",30,10,53,"current"], + [30061,"Mineral","Montana","MT",30,10,61,"current"], + [30063,"Missoula","Montana","MT",30,10,63,"current"], + [30077,"Powell","Montana","MT",30,10,77,"current"], + [30081,"Ravalli","Montana","MT",30,10,81,"current"], + [30089,"Sanders","Montana","MT",30,10,89,"current"], + [30005,"Blaine","Montana","MT",30,20,5,"current"], + [30015,"Chouteau","Montana","MT",30,20,15,"current"], + [30035,"Glacier","Montana","MT",30,20,35,"current"], + [30041,"Hill","Montana","MT",30,20,41,"current"], + [30051,"Liberty","Montana","MT",30,20,51,"current"], + [30071,"Phillips","Montana","MT",30,20,71,"current"], + [30073,"Pondera","Montana","MT",30,20,73,"current"], + [30099,"Teton","Montana","MT",30,20,99,"current"], + [30101,"Toole","Montana","MT",30,20,101,"current"], + [30019,"Daniels","Montana","MT",30,30,19,"current"], + [30021,"Dawson","Montana","MT",30,30,21,"current"], + [30033,"Garfield","Montana","MT",30,30,33,"current"], + [30055,"McCone","Montana","MT",30,30,55,"current"], + [30083,"Richland","Montana","MT",30,30,83,"current"], + [30085,"Roosevelt","Montana","MT",30,30,85,"current"], + [30091,"Sheridan","Montana","MT",30,30,91,"current"], + [30105,"Valley","Montana","MT",30,30,105,"current"], + [30007,"Broadwater","Montana","MT",30,50,7,"current"], + [30013,"Cascade","Montana","MT",30,50,13,"current"], + [30027,"Fergus","Montana","MT",30,50,27,"current"], + [30037,"Golden Valley","Montana","MT",30,50,37,"current"], + [30045,"Judith Basin","Montana","MT",30,50,45,"current"], + [30049,"Lewis and Clark","Montana","MT",30,50,49,"current"], + [30059,"Meagher","Montana","MT",30,50,59,"current"], + [30065,"Musselshell","Montana","MT",30,50,65,"current"], + [30069,"Petroleum","Montana","MT",30,50,69,"current"], + [30107,"Wheatland","Montana","MT",30,50,107,"current"], + [30001,"Beaverhead","Montana","MT",30,70,1,"current"], + [30031,"Gallatin","Montana","MT",30,70,31,"current"], + [30043,"Jefferson","Montana","MT",30,70,43,"current"], + [30057,"Madison","Montana","MT",30,70,57,"current"], + [30093,"Silver Bow","Montana","MT",30,70,93,"current"], + [30003,"Big Horn","Montana","MT",30,80,3,"current"], + [30009,"Carbon","Montana","MT",30,80,9,"current"], + [30067,"Park","Montana","MT",30,80,67,"current"], + [30095,"Stillwater","Montana","MT",30,80,95,"current"], + [30097,"Sweet Grass","Montana","MT",30,80,97,"current"], + [30103,"Treasure","Montana","MT",30,80,103,"current"], + [30111,"Yellowstone","Montana","MT",30,80,111,"current"], + [30113,"Yellowstone National Park","Montana","MT",30,80,113,"current"], + [30011,"Carter","Montana","MT",30,90,11,"current"], + [30017,"Custer","Montana","MT",30,90,17,"current"], + [30025,"Fallon","Montana","MT",30,90,25,"current"], + [30075,"Powder River","Montana","MT",30,90,75,"current"], + [30079,"Prairie","Montana","MT",30,90,79,"current"], + [30087,"Rosebud","Montana","MT",30,90,87,"current"], + [30109,"Wibaux","Montana","MT",30,90,109,"current"], + [31000,"Nebraska","Nebraska","NE",31,0,0,"current"], + [31007,"Banner","Nebraska","NE",31,10,7,"current"], + [31013,"Box Butte","Nebraska","NE",31,10,13,"current"], + [31033,"Cheyenne","Nebraska","NE",31,10,33,"current"], + [31045,"Dawes","Nebraska","NE",31,10,45,"current"], + [31049,"Deuel","Nebraska","NE",31,10,49,"current"], + [31069,"Garden","Nebraska","NE",31,10,69,"current"], + [31105,"Kimball","Nebraska","NE",31,10,105,"current"], + [31123,"Morrill","Nebraska","NE",31,10,123,"current"], + [31157,"Scotts Bluff","Nebraska","NE",31,10,157,"current"], + [31161,"Sheridan","Nebraska","NE",31,10,161,"current"], + [31165,"Sioux","Nebraska","NE",31,10,165,"current"], + [31005,"Arthur","Nebraska","NE",31,20,5,"current"], + [31009,"Blaine","Nebraska","NE",31,20,9,"current"], + [31015,"Boyd","Nebraska","NE",31,20,15,"current"], + [31017,"Brown","Nebraska","NE",31,20,17,"current"], + [31031,"Cherry","Nebraska","NE",31,20,31,"current"], + [31071,"Garfield","Nebraska","NE",31,20,71,"current"], + [31075,"Grant","Nebraska","NE",31,20,75,"current"], + [31089,"Holt","Nebraska","NE",31,20,89,"current"], + [31091,"Hooker","Nebraska","NE",31,20,91,"current"], + [31103,"Keya Paha","Nebraska","NE",31,20,103,"current"], + [31113,"Logan","Nebraska","NE",31,20,113,"current"], + [31115,"Loup","Nebraska","NE",31,20,115,"current"], + [31117,"McPherson","Nebraska","NE",31,20,117,"current"], + [31149,"Rock","Nebraska","NE",31,20,149,"current"], + [31171,"Thomas","Nebraska","NE",31,20,171,"current"], + [31183,"Wheeler","Nebraska","NE",31,20,183,"current"], + [31003,"Antelope","Nebraska","NE",31,30,3,"current"], + [31011,"Boone","Nebraska","NE",31,30,11,"current"], + [31021,"Burt","Nebraska","NE",31,30,21,"current"], + [31027,"Cedar","Nebraska","NE",31,30,27,"current"], + [31039,"Cuming","Nebraska","NE",31,30,39,"current"], + [31043,"Dakota","Nebraska","NE",31,30,43,"current"], + [31051,"Dixon","Nebraska","NE",31,30,51,"current"], + [31107,"Knox","Nebraska","NE",31,30,107,"current"], + [31119,"Madison","Nebraska","NE",31,30,119,"current"], + [31139,"Pierce","Nebraska","NE",31,30,139,"current"], + [31167,"Stanton","Nebraska","NE",31,30,167,"current"], + [31173,"Thurston","Nebraska","NE",31,30,173,"current"], + [31179,"Wayne","Nebraska","NE",31,30,179,"current"], + [31019,"Buffalo","Nebraska","NE",31,50,19,"current"], + [31041,"Custer","Nebraska","NE",31,50,41,"current"], + [31047,"Dawson","Nebraska","NE",31,50,47,"current"], + [31077,"Greeley","Nebraska","NE",31,50,77,"current"], + [31079,"Hall","Nebraska","NE",31,50,79,"current"], + [31093,"Howard","Nebraska","NE",31,50,93,"current"], + [31163,"Sherman","Nebraska","NE",31,50,163,"current"], + [31175,"Valley","Nebraska","NE",31,50,175,"current"], + [31023,"Butler","Nebraska","NE",31,60,23,"current"], + [31025,"Cass","Nebraska","NE",31,60,25,"current"], + [31037,"Colfax","Nebraska","NE",31,60,37,"current"], + [31053,"Dodge","Nebraska","NE",31,60,53,"current"], + [31055,"Douglas","Nebraska","NE",31,60,55,"current"], + [31081,"Hamilton","Nebraska","NE",31,60,81,"current"], + [31109,"Lancaster","Nebraska","NE",31,60,109,"current"], + [31121,"Merrick","Nebraska","NE",31,60,121,"current"], + [31125,"Nance","Nebraska","NE",31,60,125,"current"], + [31141,"Platte","Nebraska","NE",31,60,141,"current"], + [31143,"Polk","Nebraska","NE",31,60,143,"current"], + [31153,"Sarpy","Nebraska","NE",31,60,153,"current"], + [31155,"Saunders","Nebraska","NE",31,60,155,"current"], + [31159,"Seward","Nebraska","NE",31,60,159,"current"], + [31177,"Washington","Nebraska","NE",31,60,177,"current"], + [31185,"York","Nebraska","NE",31,60,185,"current"], + [31029,"Chase","Nebraska","NE",31,70,29,"current"], + [31057,"Dundy","Nebraska","NE",31,70,57,"current"], + [31063,"Frontier","Nebraska","NE",31,70,63,"current"], + [31085,"Hayes","Nebraska","NE",31,70,85,"current"], + [31087,"Hitchcock","Nebraska","NE",31,70,87,"current"], + [31101,"Keith","Nebraska","NE",31,70,101,"current"], + [31111,"Lincoln","Nebraska","NE",31,70,111,"current"], + [31135,"Perkins","Nebraska","NE",31,70,135,"current"], + [31145,"Red Willow","Nebraska","NE",31,70,145,"current"], + [31001,"Adams","Nebraska","NE",31,80,1,"current"], + [31061,"Franklin","Nebraska","NE",31,80,61,"current"], + [31065,"Furnas","Nebraska","NE",31,80,65,"current"], + [31073,"Gosper","Nebraska","NE",31,80,73,"current"], + [31083,"Harlan","Nebraska","NE",31,80,83,"current"], + [31099,"Kearney","Nebraska","NE",31,80,99,"current"], + [31137,"Phelps","Nebraska","NE",31,80,137,"current"], + [31181,"Webster","Nebraska","NE",31,80,181,"current"], + [31035,"Clay","Nebraska","NE",31,90,35,"current"], + [31059,"Fillmore","Nebraska","NE",31,90,59,"current"], + [31067,"Gage","Nebraska","NE",31,90,67,"current"], + [31095,"Jefferson","Nebraska","NE",31,90,95,"current"], + [31097,"Johnson","Nebraska","NE",31,90,97,"current"], + [31127,"Nemaha","Nebraska","NE",31,90,127,"current"], + [31129,"Nuckolls","Nebraska","NE",31,90,129,"current"], + [31131,"Otoe","Nebraska","NE",31,90,131,"current"], + [31133,"Pawnee","Nebraska","NE",31,90,133,"current"], + [31147,"Richardson","Nebraska","NE",31,90,147,"current"], + [31151,"Saline","Nebraska","NE",31,90,151,"current"], + [31169,"Thayer","Nebraska","NE",31,90,169,"current"], + [32000,"Nevada","Nevada","NV",32,0,0,"current"], + [32001,"Churchill","Nevada","NV",32,10,1,"current"], + [32005,"Douglas","Nevada","NV",32,10,5,"current"], + [32013,"Humboldt","Nevada","NV",32,10,13,"current"], + [32019,"Lyon","Nevada","NV",32,10,19,"current"], + [32025,"Ormsby","Nevada","NV",32,10,25,"current"], + [32027,"Pershing","Nevada","NV",32,10,27,"current"], + [32029,"Storey","Nevada","NV",32,10,29,"current"], + [32031,"Washoe","Nevada","NV",32,10,31,"current"], + [32510,"Carson City","Nevada","NV",32,10,510,"current"], + [32007,"Elko","Nevada","NV",32,30,7,"current"], + [32011,"Eureka","Nevada","NV",32,30,11,"current"], + [32015,"Lander","Nevada","NV",32,30,15,"current"], + [32033,"White Pine","Nevada","NV",32,30,33,"current"], + [32003,"Clark","Nevada","NV",32,80,3,"current"], + [32009,"Esmeralda","Nevada","NV",32,80,9,"current"], + [32017,"Lincoln","Nevada","NV",32,80,17,"current"], + [32021,"Mineral","Nevada","NV",32,80,21,"current"], + [32023,"Nye","Nevada","NV",32,80,23,"current"], + [33000,"New Hampshire","New Hampshire","NH",33,0,0,"current"], + [33001,"Belknap","New Hampshire","NH",33,10,1,"current"], + [33003,"Carroll","New Hampshire","NH",33,10,3,"current"], + [33005,"Cheshire","New Hampshire","NH",33,10,5,"current"], + [33007,"Coos","New Hampshire","NH",33,10,7,"current"], + [33009,"Grafton","New Hampshire","NH",33,10,9,"current"], + [33011,"Hillsborough","New Hampshire","NH",33,10,11,"current"], + [33013,"Merrimack","New Hampshire","NH",33,10,13,"current"], + [33015,"Rockingham","New Hampshire","NH",33,10,15,"current"], + [33017,"Strafford","New Hampshire","NH",33,10,17,"current"], + [33019,"Sullivan","New Hampshire","NH",33,10,19,"current"], + [34000,"New Jersey","New Jersey","NJ",34,0,0,"current"], + [34003,"Bergen","New Jersey","NJ",34,20,3,"current"], + [34013,"Essex","New Jersey","NJ",34,20,13,"current"], + [34017,"Hudson","New Jersey","NJ",34,20,17,"current"], + [34019,"Hunterdon","New Jersey","NJ",34,20,19,"current"], + [34027,"Morris","New Jersey","NJ",34,20,27,"current"], + [34031,"Passaic","New Jersey","NJ",34,20,31,"current"], + [34035,"Somerset","New Jersey","NJ",34,20,35,"current"], + [34037,"Sussex","New Jersey","NJ",34,20,37,"current"], + [34039,"Union","New Jersey","NJ",34,20,39,"current"], + [34041,"Warren","New Jersey","NJ",34,20,41,"current"], + [34005,"Burlington","New Jersey","NJ",34,50,5,"current"], + [34021,"Mercer","New Jersey","NJ",34,50,21,"current"], + [34023,"Middlesex","New Jersey","NJ",34,50,23,"current"], + [34025,"Monmouth","New Jersey","NJ",34,50,25,"current"], + [34029,"Ocean","New Jersey","NJ",34,50,29,"current"], + [34001,"Atlantic","New Jersey","NJ",34,80,1,"current"], + [34007,"Camden","New Jersey","NJ",34,80,7,"current"], + [34009,"Cape May","New Jersey","NJ",34,80,9,"current"], + [34011,"Cumberland","New Jersey","NJ",34,80,11,"current"], + [34015,"Gloucester","New Jersey","NJ",34,80,15,"current"], + [34033,"Salem","New Jersey","NJ",34,80,33,"current"], + [35000,"New Mexico","New Mexico","NM",35,0,0,"current"], + [35001,"Bernalillo","New Mexico","NM",35,10,1,"current"], + [35006,"Cibola","New Mexico","NM",35,10,6,"current"], + [35028,"Los Alamos","New Mexico","NM",35,10,28,"current"], + [35031,"McKinley","New Mexico","NM",35,10,31,"current"], + [35039,"Rio Arriba","New Mexico","NM",35,10,39,"current"], + [35043,"Sandoval","New Mexico","NM",35,10,43,"current"], + [35045,"San Juan","New Mexico","NM",35,10,45,"current"], + [35049,"Santa Fe","New Mexico","NM",35,10,49,"current"], + [35055,"Taos","New Mexico","NM",35,10,55,"current"], + [35061,"Valencia","New Mexico","NM",35,10,61,"current"], + [35007,"Colfax","New Mexico","NM",35,30,7,"current"], + [35009,"Curry","New Mexico","NM",35,30,9,"current"], + [35011,"De Baca","New Mexico","NM",35,30,11,"current"], + [35019,"Guadalupe","New Mexico","NM",35,30,19,"current"], + [35021,"Harding","New Mexico","NM",35,30,21,"current"], + [35033,"Mora","New Mexico","NM",35,30,33,"current"], + [35037,"Quay","New Mexico","NM",35,30,37,"current"], + [35041,"Roosevelt","New Mexico","NM",35,30,41,"current"], + [35047,"San Miguel","New Mexico","NM",35,30,47,"current"], + [35057,"Torrance","New Mexico","NM",35,30,57,"current"], + [35059,"Union","New Mexico","NM",35,30,59,"current"], + [35003,"Catron","New Mexico","NM",35,70,3,"current"], + [35017,"Grant","New Mexico","NM",35,70,17,"current"], + [35023,"Hidalgo","New Mexico","NM",35,70,23,"current"], + [35029,"Luna","New Mexico","NM",35,70,29,"current"], + [35051,"Sierra","New Mexico","NM",35,70,51,"current"], + [35053,"Socorro","New Mexico","NM",35,70,53,"current"], + [35005,"Chaves","New Mexico","NM",35,90,5,"current"], + [35013,"Dona Ana","New Mexico","NM",35,90,13,"current"], + [35015,"Eddy","New Mexico","NM",35,90,15,"current"], + [35025,"Lea","New Mexico","NM",35,90,25,"current"], + [35027,"Lincoln","New Mexico","NM",35,90,27,"current"], + [35035,"Otero","New Mexico","NM",35,90,35,"current"], + [36000,"New York","New York","NY",36,0,0,"current"], + [36045,"Jefferson","New Mexico","NM",36,20,45,"current"], + [36049,"Lewis","New York","NY",36,20,49,"current"], + [36089,"St. Lawrence","New Mexico","NM",36,20,89,"current"], + [36019,"Clinton","New York","NY",36,30,19,"current"], + [36031,"Essex","New Mexico","NM",36,30,31,"current"], + [36033,"Franklin","New York","NY",36,30,33,"current"], + [36041,"Hamilton","New Mexico","NM",36,30,41,"current"], + [36113,"Warren","New York","NY",36,30,113,"current"], + [36029,"Erie","New Mexico","NM",36,40,29,"current"], + [36037,"Genesee","New York","NY",36,40,37,"current"], + [36051,"Livingston","New Mexico","NM",36,40,51,"current"], + [36055,"Monroe","New York","NY",36,40,55,"current"], + [36063,"Niagara","New Mexico","NM",36,40,63,"current"], + [36069,"Ontario","New York","NY",36,40,69,"current"], + [36073,"Orleans","New Mexico","NM",36,40,73,"current"], + [36099,"Seneca","New York","NY",36,40,99,"current"], + [36117,"Wayne","New Mexico","NM",36,40,117,"current"], + [36121,"Wyoming","New York","NY",36,40,121,"current"], + [36123,"Yates","New Mexico","NM",36,40,123,"current"], + [36011,"Cayuga","New York","NY",36,50,11,"current"], + [36017,"Chenango","New Mexico","NM",36,50,17,"current"], + [36023,"Cortland","New York","NY",36,50,23,"current"], + [36043,"Herkimer","New Mexico","NM",36,50,43,"current"], + [36053,"Madison","New York","NY",36,50,53,"current"], + [36065,"Oneida","New Mexico","NM",36,50,65,"current"], + [36067,"Onondaga","New York","NY",36,50,67,"current"], + [36075,"Oswego","New Mexico","NM",36,50,75,"current"], + [36077,"Otsego","New York","NY",36,50,77,"current"], + [36001,"Albany","New Mexico","NM",36,60,1,"current"], + [36035,"Fulton","New York","NY",36,60,35,"current"], + [36057,"Montgomery","New Mexico","NM",36,60,57,"current"], + [36083,"Rensselaer","New York","NY",36,60,83,"current"], + [36091,"Saratoga","New Mexico","NM",36,60,91,"current"], + [36093,"Schenectady","New York","NY",36,60,93,"current"], + [36095,"Schoharie","New Mexico","NM",36,60,95,"current"], + [36115,"Washington","New York","NY",36,60,115,"current"], + [36003,"Allegany","New Mexico","NM",36,70,3,"current"], + [36009,"Cattaraugus","New York","NY",36,70,9,"current"], + [36013,"Chautauqua","New Mexico","NM",36,70,13,"current"], + [36101,"Steuben","New York","NY",36,70,101,"current"], + [36007,"Broome","New Mexico","NM",36,80,7,"current"], + [36015,"Chemung","New York","NY",36,80,15,"current"], + [36097,"Schuyler","New Mexico","NM",36,80,97,"current"], + [36107,"Tioga","New York","NY",36,80,107,"current"], + [36109,"Tompkins","New Mexico","NM",36,80,109,"current"], + [36021,"Columbia","New York","NY",36,90,21,"current"], + [36025,"Delaware","New Mexico","NM",36,90,25,"current"], + [36027,"Dutchess","New York","NY",36,90,27,"current"], + [36039,"Greene","New Mexico","NM",36,90,39,"current"], + [36071,"Crange","New York","NY",36,90,71,"current"], + [36079,"Putnam","New Mexico","NM",36,90,79,"current"], + [36087,"Rockland","New York","NY",36,90,87,"current"], + [36105,"Sullivan","New Mexico","NM",36,90,105,"current"], + [36111,"Ulster","New York","NY",36,90,111,"current"], + [36119,"Westchester","New Mexico","NM",36,90,119,"current"], + [36005,"Bronx","New York","NY",36,91,5,"current"], + [36047,"Kings","New Mexico","NM",36,91,47,"current"], + [36059,"Nassau","New York","NY",36,91,59,"current"], + [36061,"New York","New Mexico","NM",36,91,61,"current"], + [36081,"Queens","New York","NY",36,91,81,"current"], + [36085,"Richmond","New Mexico","NM",36,91,85,"current"], + [36103,"Suffolk","New York","NY",36,91,103,"current"], + [36501,"New York City Area","New Mexico","NM",36,91,501,"current"], + [37000,"North Carolina","North Carolina","NC",37,0,0,"current"], + [37005,"Alleghany","North Carolina","NC",37,10,5,"current"], + [37009,"Ashe","North Carolina","NC",37,10,9,"current"], + [37011,"Avery","North Carolina","NC",37,10,11,"current"], + [37027,"Caldwell","North Carolina","NC",37,10,27,"current"], + [37171,"Surry","North Carolina","NC",37,10,171,"current"], + [37189,"Watauga","North Carolina","NC",37,10,189,"current"], + [37193,"Wilkes","North Carolina","NC",37,10,193,"current"], + [37197,"Yadkin","North Carolina","NC",37,10,197,"current"], + [37021,"Buncombe","North Carolina","NC",37,20,21,"current"], + [37023,"Burke","North Carolina","NC",37,20,23,"current"], + [37039,"Cherokee","North Carolina","NC",37,20,39,"current"], + [37043,"Clay","North Carolina","NC",37,20,43,"current"], + [37075,"Graham","North Carolina","NC",37,20,75,"current"], + [37087,"Haywood","North Carolina","NC",37,20,87,"current"], + [37089,"Henderson","North Carolina","NC",37,20,89,"current"], + [37099,"Jackson","North Carolina","NC",37,20,99,"current"], + [37111,"McDowell","North Carolina","NC",37,20,111,"current"], + [37113,"Macon","North Carolina","NC",37,20,113,"current"], + [37115,"Madison","North Carolina","NC",37,20,115,"current"], + [37121,"Mitchell","North Carolina","NC",37,20,121,"current"], + [37149,"Polk","North Carolina","NC",37,20,149,"current"], + [37161,"Rutherford","North Carolina","NC",37,20,161,"current"], + [37173,"Swain","North Carolina","NC",37,20,173,"current"], + [37175,"Transylvania","North Carolina","NC",37,20,175,"current"], + [37199,"Yancey","North Carolina","NC",37,20,199,"current"], + [37001,"Alamance","North Carolina","NC",37,40,1,"current"], + [37033,"Caswell","North Carolina","NC",37,40,33,"current"], + [37063,"Durham","North Carolina","NC",37,40,63,"current"], + [37067,"Forsyth","North Carolina","NC",37,40,67,"current"], + [37069,"Franklin","North Carolina","NC",37,40,69,"current"], + [37077,"Granville","North Carolina","NC",37,40,77,"current"], + [37081,"Guilford","North Carolina","NC",37,40,81,"current"], + [37135,"Orange","North Carolina","NC",37,40,135,"current"], + [37145,"Person","North Carolina","NC",37,40,145,"current"], + [37157,"Rockingham","North Carolina","NC",37,40,157,"current"], + [37169,"Stokes","North Carolina","NC",37,40,169,"current"], + [37181,"Vance","North Carolina","NC",37,40,181,"current"], + [37185,"Warren","North Carolina","NC",37,40,185,"current"], + [37003,"Alexander","North Carolina","NC",37,50,3,"current"], + [37035,"Catawba","North Carolina","NC",37,50,35,"current"], + [37037,"Chatham","North Carolina","NC",37,50,37,"current"], + [37057,"Davidson","North Carolina","NC",37,50,57,"current"], + [37059,"Davie","North Carolina","NC",37,50,59,"current"], + [37097,"Iredell","North Carolina","NC",37,50,97,"current"], + [37105,"Lee","North Carolina","NC",37,50,105,"current"], + [37151,"Randolph","North Carolina","NC",37,50,151,"current"], + [37159,"Rowan","North Carolina","NC",37,50,159,"current"], + [37183,"Wake","North Carolina","NC",37,50,183,"current"], + [37007,"Anson","North Carolina","NC",37,60,7,"current"], + [37025,"Cabarrus","North Carolina","NC",37,60,25,"current"], + [37045,"Cleveland","North Carolina","NC",37,60,45,"current"], + [37071,"Gaston","North Carolina","NC",37,60,71,"current"], + [37109,"Lincoln","North Carolina","NC",37,60,109,"current"], + [37119,"Mecklenburg","North Carolina","NC",37,60,119,"current"], + [37123,"Montgomery","North Carolina","NC",37,60,123,"current"], + [37125,"Moore","North Carolina","NC",37,60,125,"current"], + [37153,"Richmond","North Carolina","NC",37,60,153,"current"], + [37167,"Stanly","North Carolina","NC",37,60,167,"current"], + [37179,"Union","North Carolina","NC",37,60,179,"current"], + [37015,"Bertie","North Carolina","NC",37,70,15,"current"], + [37029,"Camden","North Carolina","NC",37,70,29,"current"], + [37041,"Chowan","North Carolina","NC",37,70,41,"current"], + [37053,"Currituck","North Carolina","NC",37,70,53,"current"], + [37055,"Dare","North Carolina","NC",37,70,55,"current"], + [37065,"Edgecombe","North Carolina","NC",37,70,65,"current"], + [37073,"Gates","North Carolina","NC",37,70,73,"current"], + [37083,"Halifax","North Carolina","NC",37,70,83,"current"], + [37091,"Hertford","North Carolina","NC",37,70,91,"current"], + [37117,"Martin","North Carolina","NC",37,70,117,"current"], + [37127,"Nash","North Carolina","NC",37,70,127,"current"], + [37131,"Northampton","North Carolina","NC",37,70,131,"current"], + [37139,"Pasquotank","North Carolina","NC",37,70,139,"current"], + [37143,"Perquimans","North Carolina","NC",37,70,143,"current"], + [37177,"Tyrrell","North Carolina","NC",37,70,177,"current"], + [37187,"Washington","North Carolina","NC",37,70,187,"current"], + [37013,"Beaufort","North Carolina","NC",37,80,13,"current"], + [37031,"Carteret","North Carolina","NC",37,80,31,"current"], + [37049,"Craven","North Carolina","NC",37,80,49,"current"], + [37079,"Greene","North Carolina","NC",37,80,79,"current"], + [37095,"Hyde","North Carolina","NC",37,80,95,"current"], + [37101,"Johnston","North Carolina","NC",37,80,101,"current"], + [37103,"Jones","North Carolina","NC",37,80,103,"current"], + [37107,"Lenoir","North Carolina","NC",37,80,107,"current"], + [37137,"Pamlico","North Carolina","NC",37,80,137,"current"], + [37147,"Pitt","North Carolina","NC",37,80,147,"current"], + [37191,"Wayne","North Carolina","NC",37,80,191,"current"], + [37195,"Wilson","North Carolina","NC",37,80,195,"current"], + [37017,"Bladen","North Carolina","NC",37,90,17,"current"], + [37019,"Brunswick","North Carolina","NC",37,90,19,"current"], + [37047,"Columbus","North Carolina","NC",37,90,47,"current"], + [37051,"Cumberland","North Carolina","NC",37,90,51,"current"], + [37061,"Duplin","North Carolina","NC",37,90,61,"current"], + [37085,"Harnett","North Carolina","NC",37,90,85,"current"], + [37093,"Hoke","North Carolina","NC",37,90,93,"current"], + [37129,"New Hanover","North Carolina","NC",37,90,129,"current"], + [37133,"Onslow","North Carolina","NC",37,90,133,"current"], + [37141,"Pender","North Carolina","NC",37,90,141,"current"], + [37155,"Robeson","North Carolina","NC",37,90,155,"current"], + [37163,"Sampson","North Carolina","NC",37,90,163,"current"], + [37165,"Scotland","North Carolina","NC",37,90,165,"current"], + [38000,"North Dakota","North Dakota","ND",38,0,0,"current"], + [38013,"Burke","North Dakota","ND",38,10,13,"current"], + [38023,"Divide","North Dakota","ND",38,10,23,"current"], + [38061,"Mountrail","North Dakota","ND",38,10,61,"current"], + [38075,"Renville","North Dakota","ND",38,10,75,"current"], + [38101,"Ward","North Dakota","ND",38,10,101,"current"], + [38105,"Williams","North Dakota","ND",38,10,105,"current"], + [38005,"Benson","North Dakota","ND",38,20,5,"current"], + [38009,"Bottineau","North Dakota","ND",38,20,9,"current"], + [38049,"McHenry","North Dakota","ND",38,20,49,"current"], + [38069,"Pierce","North Dakota","ND",38,20,69,"current"], + [38079,"Rolette","North Dakota","ND",38,20,79,"current"], + [38019,"Cavalier","North Dakota","ND",38,30,19,"current"], + [38035,"Grand Forks","North Dakota","ND",38,30,35,"current"], + [38063,"Nelson","North Dakota","ND",38,30,63,"current"], + [38067,"Pembina","North Dakota","ND",38,30,67,"current"], + [38071,"Ramsey","North Dakota","ND",38,30,71,"current"], + [38095,"Towner","North Dakota","ND",38,30,95,"current"], + [38099,"Walsh","North Dakota","ND",38,30,99,"current"], + [38025,"Dunn","North Dakota","ND",38,40,25,"current"], + [38053,"McKenzie","North Dakota","ND",38,40,53,"current"], + [38055,"McLean","North Dakota","ND",38,40,55,"current"], + [38057,"Mercer","North Dakota","ND",38,40,57,"current"], + [38065,"Oliver","North Dakota","ND",38,40,65,"current"], + [38027,"Eddy","North Dakota","ND",38,50,27,"current"], + [38031,"Foster","North Dakota","ND",38,50,31,"current"], + [38043,"Kidder","North Dakota","ND",38,50,43,"current"], + [38083,"Sheridan","North Dakota","ND",38,50,83,"current"], + [38093,"Stutsman","North Dakota","ND",38,50,93,"current"], + [38103,"Wells","North Dakota","ND",38,50,103,"current"], + [38003,"Barnes","North Dakota","ND",38,60,3,"current"], + [38017,"Cass","North Dakota","ND",38,60,17,"current"], + [38039,"Griggs","North Dakota","ND",38,60,39,"current"], + [38091,"Steele","North Dakota","ND",38,60,91,"current"], + [38097,"Traill","North Dakota","ND",38,60,97,"current"], + [38001,"Adams","North Dakota","ND",38,70,1,"current"], + [38007,"Billings","North Dakota","ND",38,70,7,"current"], + [38011,"Bowman","North Dakota","ND",38,70,11,"current"], + [38033,"Golden Valley","North Dakota","ND",38,70,33,"current"], + [38041,"Hettinger","North Dakota","ND",38,70,41,"current"], + [38087,"Slope","North Dakota","ND",38,70,87,"current"], + [38089,"Stark","North Dakota","ND",38,70,89,"current"], + [38015,"Burleigh","North Dakota","ND",38,80,15,"current"], + [38029,"Emmons","North Dakota","ND",38,80,29,"current"], + [38037,"Grant","North Dakota","ND",38,80,37,"current"], + [38059,"Morton","North Dakota","ND",38,80,59,"current"], + [38085,"Sioux","North Dakota","ND",38,80,85,"current"], + [38021,"Dickey","North Dakota","ND",38,90,21,"current"], + [38045,"La Moure","North Dakota","ND",38,90,45,"current"], + [38047,"Logan","North Dakota","ND",38,90,47,"current"], + [38051,"McIntosh","North Dakota","ND",38,90,51,"current"], + [38073,"Ransom","North Dakota","ND",38,90,73,"current"], + [38077,"Richland","North Dakota","ND",38,90,77,"current"], + [38081,"Sargent","North Dakota","ND",38,90,81,"current"], + [39000,"Ohio","Ohio","OH",39,0,0,"current"], + [39003,"Allen","Ohio","OH",39,10,3,"current"], + [39039,"Defiance","Ohio","OH",39,10,39,"current"], + [39051,"Fulton","Ohio","OH",39,10,51,"current"], + [39063,"Hancock","Ohio","OH",39,10,63,"current"], + [39069,"Henry","Ohio","OH",39,10,69,"current"], + [39095,"Lucas","Ohio","OH",39,10,95,"current"], + [39125,"Paulding","Ohio","OH",39,10,125,"current"], + [39137,"Putnam","Ohio","OH",39,10,137,"current"], + [39161,"Van Wert","Ohio","OH",39,10,161,"current"], + [39171,"Williams","Ohio","OH",39,10,171,"current"], + [39173,"Wood","Ohio","OH",39,10,173,"current"], + [39005,"Ashland","Ohio","OH",39,20,5,"current"], + [39033,"Crawford","Ohio","OH",39,20,33,"current"], + [39043,"Erie","Ohio","OH",39,20,43,"current"], + [39077,"Huron","Ohio","OH",39,20,77,"current"], + [39093,"Lorain","Ohio","OH",39,20,93,"current"], + [39123,"Ottawa","Ohio","OH",39,20,123,"current"], + [39139,"Richland","Ohio","OH",39,20,139,"current"], + [39143,"Sandusky","Ohio","OH",39,20,143,"current"], + [39147,"Seneca","Ohio","OH",39,20,147,"current"], + [39175,"Wyandot","Ohio","OH",39,20,175,"current"], + [39007,"Ashtabula","Ohio","OH",39,30,7,"current"], + [39029,"Columbiana","Ohio","OH",39,30,29,"current"], + [39035,"Cuyahoga","Ohio","OH",39,30,35,"current"], + [39055,"Geauga","Ohio","OH",39,30,55,"current"], + [39085,"Lake","Ohio","OH",39,30,85,"current"], + [39099,"Mahoning","Ohio","OH",39,30,99,"current"], + [39103,"Medina","Ohio","OH",39,30,103,"current"], + [39133,"Portage","Ohio","OH",39,30,133,"current"], + [39151,"Stark","Ohio","OH",39,30,151,"current"], + [39153,"Summit","Ohio","OH",39,30,153,"current"], + [39155,"Trumbull","Ohio","OH",39,30,155,"current"], + [39169,"Wayne","Ohio","OH",39,30,169,"current"], + [39011,"Auglaize","Ohio","OH",39,40,11,"current"], + [39021,"Champaign","Ohio","OH",39,40,21,"current"], + [39023,"Clark","Ohio","OH",39,40,23,"current"], + [39037,"Darke","Ohio","OH",39,40,37,"current"], + [39065,"Hardin","Ohio","OH",39,40,65,"current"], + [39091,"Logan","Ohio","OH",39,40,91,"current"], + [39107,"Mercer","Ohio","OH",39,40,107,"current"], + [39109,"Miami","Ohio","OH",39,40,109,"current"], + [39149,"Shelby","Ohio","OH",39,40,149,"current"], + [39041,"Delaware","Ohio","OH",39,50,41,"current"], + [39045,"Fairfield","Ohio","OH",39,50,45,"current"], + [39047,"Fayette","Ohio","OH",39,50,47,"current"], + [39049,"Franklin","Ohio","OH",39,50,49,"current"], + [39083,"Knox","Ohio","OH",39,50,83,"current"], + [39089,"Licking","Ohio","OH",39,50,89,"current"], + [39097,"Madison","Ohio","OH",39,50,97,"current"], + [39101,"Marion","Ohio","OH",39,50,101,"current"], + [39117,"Morrow","Ohio","OH",39,50,117,"current"], + [39129,"Pickaway","Ohio","OH",39,50,129,"current"], + [39141,"Ross","Ohio","OH",39,50,141,"current"], + [39159,"Union","Ohio","OH",39,50,159,"current"], + [39013,"Belmont","Ohio","OH",39,60,13,"current"], + [39019,"Carroll","Ohio","OH",39,60,19,"current"], + [39031,"Coshocton","Ohio","OH",39,60,31,"current"], + [39067,"Harrison","Ohio","OH",39,60,67,"current"], + [39075,"Holmes","Ohio","OH",39,60,75,"current"], + [39081,"Jefferson","Ohio","OH",39,60,81,"current"], + [39157,"Tuscarawas","Ohio","OH",39,60,157,"current"], + [39017,"Butler","Ohio","OH",39,70,17,"current"], + [39025,"Clermont","Ohio","OH",39,70,25,"current"], + [39027,"Clinton","Ohio","OH",39,70,27,"current"], + [39057,"Greene","Ohio","OH",39,70,57,"current"], + [39061,"Hamilton","Ohio","OH",39,70,61,"current"], + [39113,"Montgomery","Ohio","OH",39,70,113,"current"], + [39135,"Preble","Ohio","OH",39,70,135,"current"], + [39165,"Warren","Ohio","OH",39,70,165,"current"], + [39001,"Adams","Ohio","OH",39,80,1,"current"], + [39015,"Brown","Ohio","OH",39,80,15,"current"], + [39053,"Gallia","Ohio","OH",39,80,53,"current"], + [39071,"Highland","Ohio","OH",39,80,71,"current"], + [39079,"Jackson","Ohio","OH",39,80,79,"current"], + [39087,"Lawrence","Ohio","OH",39,80,87,"current"], + [39131,"Pike","Ohio","OH",39,80,131,"current"], + [39145,"Scioto","Ohio","OH",39,80,145,"current"], + [39009,"Athens","Ohio","OH",39,90,9,"current"], + [39059,"Guernsey","Ohio","OH",39,90,59,"current"], + [39073,"Hocking","Ohio","OH",39,90,73,"current"], + [39105,"Meigs","Ohio","OH",39,90,105,"current"], + [39111,"Monroe","Ohio","OH",39,90,111,"current"], + [39115,"Morgan","Ohio","OH",39,90,115,"current"], + [39119,"Muskingum","Ohio","OH",39,90,119,"current"], + [39121,"Noble","Ohio","OH",39,90,121,"current"], + [39127,"Perry","Ohio","OH",39,90,127,"current"], + [39163,"Vinton","Ohio","OH",39,90,163,"current"], + [39167,"Washington","Ohio","OH",39,90,167,"current"], + [40000,"Oklahoma","Oklahoma","OK",40,0,0,"current"], + [40007,"Beaver","Oklahoma","OK",40,10,7,"current"], + [40025,"Cimarron","Oklahoma","OK",40,10,25,"current"], + [40045,"Ellis","Oklahoma","OK",40,10,45,"current"], + [40059,"Harper","Oklahoma","OK",40,10,59,"current"], + [40139,"Texas","Oklahoma","OK",40,10,139,"current"], + [40009,"Beckham","Oklahoma","OK",40,20,9,"current"], + [40011,"Blaine","Oklahoma","OK",40,20,11,"current"], + [40039,"Custer","Oklahoma","OK",40,20,39,"current"], + [40043,"Dewey","Oklahoma","OK",40,20,43,"current"], + [40129,"Roger Mills","Oklahoma","OK",40,20,129,"current"], + [40149,"Washita","Oklahoma","OK",40,20,149,"current"], + [40015,"Caddo","Oklahoma","OK",40,30,15,"current"], + [40031,"Comanche","Oklahoma","OK",40,30,31,"current"], + [40033,"Cotton","Oklahoma","OK",40,30,33,"current"], + [40055,"Greer","Oklahoma","OK",40,30,55,"current"], + [40057,"Harmon","Oklahoma","OK",40,30,57,"current"], + [40065,"Jackson","Oklahoma","OK",40,30,65,"current"], + [40075,"Kiowa","Oklahoma","OK",40,30,75,"current"], + [40141,"Tillman","Oklahoma","OK",40,30,141,"current"], + [40003,"Alfalfa","Oklahoma","OK",40,40,3,"current"], + [40047,"Garfield","Oklahoma","OK",40,40,47,"current"], + [40053,"Grant","Oklahoma","OK",40,40,53,"current"], + [40071,"Kay","Oklahoma","OK",40,40,71,"current"], + [40093,"Major","Oklahoma","OK",40,40,93,"current"], + [40103,"Noble","Oklahoma","OK",40,40,103,"current"], + [40151,"Woods","Oklahoma","OK",40,40,151,"current"], + [40153,"Woodward","Oklahoma","OK",40,40,153,"current"], + [40017,"Canadian","Oklahoma","OK",40,50,17,"current"], + [40027,"Cleveland","Oklahoma","OK",40,50,27,"current"], + [40037,"Creek","Oklahoma","OK",40,50,37,"current"], + [40051,"Grady","Oklahoma","OK",40,50,51,"current"], + [40073,"Kingfisher","Oklahoma","OK",40,50,73,"current"], + [40081,"Lincoln","Oklahoma","OK",40,50,81,"current"], + [40083,"Logan","Oklahoma","OK",40,50,83,"current"], + [40087,"McClain","Oklahoma","OK",40,50,87,"current"], + [40107,"Okfuskee","Oklahoma","OK",40,50,107,"current"], + [40109,"Oklahoma","Oklahoma","OK",40,50,109,"current"], + [40119,"Payne","Oklahoma","OK",40,50,119,"current"], + [40125,"Pottawatomie","Oklahoma","OK",40,50,125,"current"], + [40133,"Seminole","Oklahoma","OK",40,50,133,"current"], + [40005,"Atoka","Oklahoma","OK",40,60,5,"current"], + [40013,"Bryan","Oklahoma","OK",40,60,13,"current"], + [40019,"Carter","Oklahoma","OK",40,60,19,"current"], + [40029,"Coal","Oklahoma","OK",40,60,29,"current"], + [40049,"Garvin","Oklahoma","OK",40,60,49,"current"], + [40067,"Jefferson","Oklahoma","OK",40,60,67,"current"], + [40069,"Johnston","Oklahoma","OK",40,60,69,"current"], + [40085,"Love","Oklahoma","OK",40,60,85,"current"], + [40095,"Marshall","Oklahoma","OK",40,60,95,"current"], + [40099,"Murray","Oklahoma","OK",40,60,99,"current"], + [40123,"Pontotoc","Oklahoma","OK",40,60,123,"current"], + [40137,"Stephens","Oklahoma","OK",40,60,137,"current"], + [40035,"Craig","Oklahoma","OK",40,70,35,"current"], + [40041,"Delaware","Oklahoma","OK",40,70,41,"current"], + [40097,"Mayes","Oklahoma","OK",40,70,97,"current"], + [40105,"Nowata","Oklahoma","OK",40,70,105,"current"], + [40113,"Osage","Oklahoma","OK",40,70,113,"current"], + [40115,"Ottawa","Oklahoma","OK",40,70,115,"current"], + [40117,"Pawnee","Oklahoma","OK",40,70,117,"current"], + [40131,"Rogers","Oklahoma","OK",40,70,131,"current"], + [40143,"Tulsa","Oklahoma","OK",40,70,143,"current"], + [40145,"Wagoner","Oklahoma","OK",40,70,145,"current"], + [40147,"Washington","Oklahoma","OK",40,70,147,"current"], + [40001,"Adair","Oklahoma","OK",40,80,1,"current"], + [40021,"Cherokee","Oklahoma","OK",40,80,21,"current"], + [40061,"Haskell","Oklahoma","OK",40,80,61,"current"], + [40063,"Hughes","Oklahoma","OK",40,80,63,"current"], + [40091,"McIntosh","Oklahoma","OK",40,80,91,"current"], + [40101,"Muskogee","Oklahoma","OK",40,80,101,"current"], + [40111,"Okmulgee","Oklahoma","OK",40,80,111,"current"], + [40121,"Pittsburg","Oklahoma","OK",40,80,121,"current"], + [40135,"Sequoyah","Oklahoma","OK",40,80,135,"current"], + [40023,"Choctaw","Oklahoma","OK",40,90,23,"current"], + [40077,"Latimer","Oklahoma","OK",40,90,77,"current"], + [40079,"Leflore","Oklahoma","OK",40,90,79,"current"], + [40089,"McCurtain","Oklahoma","OK",40,90,89,"current"], + [40127,"Pushmataha","Oklahoma","OK",40,90,127,"current"], + [41000,"Oregon","Oregon","OR",41,0,0,"current"], + [41003,"Benton","Oregon","OR",41,10,3,"current"], + [41005,"Clackamas","Oregon","OR",41,10,5,"current"], + [41007,"Clatsop","Oregon","OR",41,10,7,"current"], + [41009,"Columbia","Oregon","OR",41,10,9,"current"], + [41039,"Lane","Oregon","OR",41,10,39,"current"], + [41041,"Lincoln","Oregon","OR",41,10,41,"current"], + [41043,"Linn","Oregon","OR",41,10,43,"current"], + [41047,"Marion","Oregon","OR",41,10,47,"current"], + [41051,"Multnomah","Oregon","OR",41,10,51,"current"], + [41053,"Polk","Oregon","OR",41,10,53,"current"], + [41057,"Tillamook","Oregon","OR",41,10,57,"current"], + [41067,"Washington","Oregon","OR",41,10,67,"current"], + [41071,"Yamhill","Oregon","OR",41,10,71,"current"], + [41021,"Gilliam","Oregon","OR",41,20,21,"current"], + [41027,"Hood River","Oregon","OR",41,20,27,"current"], + [41049,"Morrow","Oregon","OR",41,20,49,"current"], + [41055,"Sherman","Oregon","OR",41,20,55,"current"], + [41065,"Wasco","Oregon","OR",41,20,65,"current"], + [41001,"Baker","Oregon","OR",41,30,1,"current"], + [41059,"Umatilla","Oregon","OR",41,30,59,"current"], + [41061,"Union","Oregon","OR",41,30,61,"current"], + [41063,"Wallowa","Oregon","OR",41,30,63,"current"], + [41011,"Coos","Oregon","OR",41,70,11,"current"], + [41015,"Curry","Oregon","OR",41,70,15,"current"], + [41019,"Douglas","Oregon","OR",41,70,19,"current"], + [41029,"Jackson","Oregon","OR",41,70,29,"current"], + [41033,"Josephine","Oregon","OR",41,70,33,"current"], + [41013,"Crook","Oregon","OR",41,80,13,"current"], + [41017,"Deschutes","Oregon","OR",41,80,17,"current"], + [41023,"Grant","Oregon","OR",41,80,23,"current"], + [41025,"Harney","Oregon","OR",41,80,25,"current"], + [41031,"Jefferson","Oregon","OR",41,80,31,"current"], + [41035,"Klamath","Oregon","OR",41,80,35,"current"], + [41037,"Lake","Oregon","OR",41,80,37,"current"], + [41045,"Malheur","Oregon","OR",41,80,45,"current"], + [41069,"Wheeler","Oregon","OR",41,80,69,"current"], + [42000,"Pennsylvania","Pennsylvania","PA",42,0,0,"current"], + [42039,"Crawford","Pennsylvania","PA",42,10,39,"current"], + [42049,"Erie","Pennsylvania","PA",42,10,49,"current"], + [42053,"Forest","Pennsylvania","PA",42,10,53,"current"], + [42085,"Mercer","Pennsylvania","PA",42,10,85,"current"], + [42121,"Venango","Pennsylvania","PA",42,10,121,"current"], + [42123,"Warren","Pennsylvania","PA",42,10,123,"current"], + [42015,"Bradford","Pennsylvania","PA",42,20,15,"current"], + [42023,"Cameron","Pennsylvania","PA",42,20,23,"current"], + [42035,"Clinton","Pennsylvania","PA",42,20,35,"current"], + [42047,"Elk","Pennsylvania","PA",42,20,47,"current"], + [42081,"Lycoming","Pennsylvania","PA",42,20,81,"current"], + [42083,"McKean","Pennsylvania","PA",42,20,83,"current"], + [42105,"Potter","Pennsylvania","PA",42,20,105,"current"], + [42113,"Sullivan","Pennsylvania","PA",42,20,113,"current"], + [42117,"Tioga","Pennsylvania","PA",42,20,117,"current"], + [42069,"Lackawanna","Pennsylvania","PA",42,30,69,"current"], + [42115,"Susquehanna","Pennsylvania","PA",42,30,115,"current"], + [42127,"Wayne","Pennsylvania","PA",42,30,127,"current"], + [42131,"Wyoming","Pennsylvania","PA",42,30,131,"current"], + [42005,"Armstrong","Pennsylvania","PA",42,40,5,"current"], + [42007,"Beaver","Pennsylvania","PA",42,40,7,"current"], + [42019,"Butler","Pennsylvania","PA",42,40,19,"current"], + [42031,"Clarion","Pennsylvania","PA",42,40,31,"current"], + [42063,"Indiana","Pennsylvania","PA",42,40,63,"current"], + [42065,"Jefferson","Pennsylvania","PA",42,40,65,"current"], + [42073,"Lawrence","Pennsylvania","PA",42,40,73,"current"], + [42013,"Blair","Pennsylvania","PA",42,50,13,"current"], + [42021,"Cambria","Pennsylvania","PA",42,50,21,"current"], + [42027,"Centre","Pennsylvania","PA",42,50,27,"current"], + [42033,"Clearfield","Pennsylvania","PA",42,50,33,"current"], + [42037,"Columbia","Pennsylvania","PA",42,50,37,"current"], + [42043,"Dauphin","Pennsylvania","PA",42,50,43,"current"], + [42061,"Huntingdon","Pennsylvania","PA",42,50,61,"current"], + [42067,"Juniata","Pennsylvania","PA",42,50,67,"current"], + [42087,"Mifflin","Pennsylvania","PA",42,50,87,"current"], + [42093,"Montour","Pennsylvania","PA",42,50,93,"current"], + [42097,"Northumberland","Pennsylvania","PA",42,50,97,"current"], + [42099,"Perry","Pennsylvania","PA",42,50,99,"current"], + [42109,"Snyder","Pennsylvania","PA",42,50,109,"current"], + [42119,"Union","Pennsylvania","PA",42,50,119,"current"], + [42025,"Carbon","Pennsylvania","PA",42,60,25,"current"], + [42077,"Lehigh","Pennsylvania","PA",42,60,77,"current"], + [42079,"Luzerne","Pennsylvania","PA",42,60,79,"current"], + [42089,"Monroe","Pennsylvania","PA",42,60,89,"current"], + [42095,"Northampton","Pennsylvania","PA",42,60,95,"current"], + [42103,"Pike","Pennsylvania","PA",42,60,103,"current"], + [42107,"Schuylkill","Pennsylvania","PA",42,60,107,"current"], + [42003,"Allegheny","Pennsylvania","PA",42,70,3,"current"], + [42051,"Fayette","Pennsylvania","PA",42,70,51,"current"], + [42059,"Greene","Pennsylvania","PA",42,70,59,"current"], + [42111,"Somerset","Pennsylvania","PA",42,70,111,"current"], + [42125,"Washington","Pennsylvania","PA",42,70,125,"current"], + [42129,"Westmoreland","Pennsylvania","PA",42,70,129,"current"], + [42001,"Adams","Pennsylvania","PA",42,80,1,"current"], + [42009,"Bedford","Pennsylvania","PA",42,80,9,"current"], + [42041,"Cumberland","Pennsylvania","PA",42,80,41,"current"], + [42055,"Franklin","Pennsylvania","PA",42,80,55,"current"], + [42057,"Fulton","Pennsylvania","PA",42,80,57,"current"], + [42133,"York","Pennsylvania","PA",42,80,133,"current"], + [42011,"Berks","Pennsylvania","PA",42,90,11,"current"], + [42017,"Bucks","Pennsylvania","PA",42,90,17,"current"], + [42029,"Chester","Pennsylvania","PA",42,90,29,"current"], + [42045,"Delaware","Pennsylvania","PA",42,90,45,"current"], + [42071,"Lancaster","Pennsylvania","PA",42,90,71,"current"], + [42075,"Lebanon","Pennsylvania","PA",42,90,75,"current"], + [42091,"Montgomery","Pennsylvania","PA",42,90,91,"current"], + [42101,"Philadelphia","Pennsylvania","PA",42,90,101,"current"], + [44000,"Rhode Island","Rhode Island","RI",44,0,0,"current"], + [44001,"Bristol","Rhode Island","RI",44,10,1,"current"], + [44003,"Kent","Rhode Island","RI",44,10,3,"current"], + [44005,"Newport","Rhode Island","RI",44,10,5,"current"], + [44007,"Providence","Rhode Island","RI",44,10,7,"current"], + [44009,"Washington","Rhode Island","RI",44,10,9,"current"], + [45000,"South Carolina","South Carolina","SC",45,0,0,"current"], + [45007,"Anderson","South Carolina","SC",45,10,7,"current"], + [45021,"Cherokee","South Carolina","SC",45,10,21,"current"], + [45045,"Greenville","South Carolina","SC",45,10,45,"current"], + [45059,"Laurens","South Carolina","SC",45,10,59,"current"], + [45073,"Oconee","South Carolina","SC",45,10,73,"current"], + [45077,"Pickens","South Carolina","SC",45,10,77,"current"], + [45083,"Spartanburg","South Carolina","SC",45,10,83,"current"], + [45087,"Union","South Carolina","SC",45,10,87,"current"], + [45023,"Chester","South Carolina","SC",45,20,23,"current"], + [45039,"Fairfield","South Carolina","SC",45,20,39,"current"], + [45055,"Kershaw","South Carolina","SC",45,20,55,"current"], + [45057,"Lancaster","South Carolina","SC",45,20,57,"current"], + [45091,"York","South Carolina","SC",45,20,91,"current"], + [45025,"Chesterfield","South Carolina","SC",45,30,25,"current"], + [45031,"Darlington","South Carolina","SC",45,30,31,"current"], + [45033,"Dillon","South Carolina","SC",45,30,33,"current"], + [45041,"Florence","South Carolina","SC",45,30,41,"current"], + [45043,"Georgetown","South Carolina","SC",45,30,43,"current"], + [45051,"Horry","South Carolina","SC",45,30,51,"current"], + [45067,"Marion","South Carolina","SC",45,30,67,"current"], + [45069,"Marlboro","South Carolina","SC",45,30,69,"current"], + [45089,"Williamsburg","South Carolina","SC",45,30,89,"current"], + [45001,"Abbeville","South Carolina","SC",45,40,1,"current"], + [45003,"Aiken","South Carolina","SC",45,40,3,"current"], + [45037,"Edgefield","South Carolina","SC",45,40,37,"current"], + [45047,"Greenwood","South Carolina","SC",45,40,47,"current"], + [45065,"McCormick","South Carolina","SC",45,40,65,"current"], + [45071,"Newberry","South Carolina","SC",45,40,71,"current"], + [45081,"Saluda","South Carolina","SC",45,40,81,"current"], + [45017,"Calhoun","South Carolina","SC",45,50,17,"current"], + [45027,"Clarendon","South Carolina","SC",45,50,27,"current"], + [45061,"Lee","South Carolina","SC",45,50,61,"current"], + [45063,"Lexington","South Carolina","SC",45,50,63,"current"], + [45075,"Orangeburg","South Carolina","SC",45,50,75,"current"], + [45079,"Richland","South Carolina","SC",45,50,79,"current"], + [45085,"Sumter","South Carolina","SC",45,50,85,"current"], + [45005,"Allendale","South Carolina","SC",45,80,5,"current"], + [45009,"Bamberg","South Carolina","SC",45,80,9,"current"], + [45011,"Barnwell","South Carolina","SC",45,80,11,"current"], + [45013,"Beaufort","South Carolina","SC",45,80,13,"current"], + [45015,"Berkeley","South Carolina","SC",45,80,15,"current"], + [45019,"Charleston","South Carolina","SC",45,80,19,"current"], + [45029,"Colleton","South Carolina","SC",45,80,29,"current"], + [45035,"Dorchester","South Carolina","SC",45,80,35,"current"], + [45049,"Hampton","South Carolina","SC",45,80,49,"current"], + [45053,"Jasper","South Carolina","SC",45,80,53,"current"], + [46000,"South Dakota","South Dakota","SD",46,0,0,"current"], + [46019,"Butte","South Dakota","SD",46,10,19,"current"], + [46031,"Corson","South Dakota","SD",46,10,31,"current"], + [46041,"Dewey","South Dakota","SD",46,10,41,"current"], + [46063,"Harding","South Dakota","SD",46,10,63,"current"], + [46105,"Perkins","South Dakota","SD",46,10,105,"current"], + [46137,"Ziebach","South Dakota","SD",46,10,137,"current"], + [46013,"Brown","South Dakota","SD",46,20,13,"current"], + [46021,"Campbell","South Dakota","SD",46,20,21,"current"], + [46045,"Edmunds","South Dakota","SD",46,20,45,"current"], + [46049,"Faulk","South Dakota","SD",46,20,49,"current"], + [46089,"McPherson","South Dakota","SD",46,20,89,"current"], + [46107,"Potter","South Dakota","SD",46,20,107,"current"], + [46115,"Spink","South Dakota","SD",46,20,115,"current"], + [46129,"Walworth","South Dakota","SD",46,20,129,"current"], + [46025,"Clark","South Dakota","SD",46,30,25,"current"], + [46029,"Codington","South Dakota","SD",46,30,29,"current"], + [46037,"Day","South Dakota","SD",46,30,37,"current"], + [46039,"Deuel","South Dakota","SD",46,30,39,"current"], + [46051,"Grant","South Dakota","SD",46,30,51,"current"], + [46057,"Hamlin","South Dakota","SD",46,30,57,"current"], + [46091,"Marshall","South Dakota","SD",46,30,91,"current"], + [46109,"Roberts","South Dakota","SD",46,30,109,"current"], + [46055,"Haakon","South Dakota","SD",46,40,55,"current"], + [46071,"Jackson","South Dakota","SD",46,40,71,"current"], + [46081,"Lawrence","South Dakota","SD",46,40,81,"current"], + [46093,"Meade","South Dakota","SD",46,40,93,"current"], + [46103,"Pennington","South Dakota","SD",46,40,103,"current"], + [46117,"Stanley","South Dakota","SD",46,40,117,"current"], + [46003,"Aurora","South Dakota","SD",46,50,3,"current"], + [46005,"Beadle","South Dakota","SD",46,50,5,"current"], + [46015,"Brule","South Dakota","SD",46,50,15,"current"], + [46017,"Buffalo","South Dakota","SD",46,50,17,"current"], + [46059,"Hand","South Dakota","SD",46,50,59,"current"], + [46065,"Hughes","South Dakota","SD",46,50,65,"current"], + [46069,"Hyde","South Dakota","SD",46,50,69,"current"], + [46073,"Jerauld","South Dakota","SD",46,50,73,"current"], + [46119,"Sully","South Dakota","SD",46,50,119,"current"], + [46011,"Brookings","South Dakota","SD",46,60,11,"current"], + [46035,"Davison","South Dakota","SD",46,60,35,"current"], + [46061,"Hanson","South Dakota","SD",46,60,61,"current"], + [46077,"Kingsbury","South Dakota","SD",46,60,77,"current"], + [46079,"Lake","South Dakota","SD",46,60,79,"current"], + [46087,"McCook","South Dakota","SD",46,60,87,"current"], + [46097,"Miner","South Dakota","SD",46,60,97,"current"], + [46099,"Minnehaha","South Dakota","SD",46,60,99,"current"], + [46101,"Moody","South Dakota","SD",46,60,101,"current"], + [46111,"Sanborn","South Dakota","SD",46,60,111,"current"], + [46007,"Bennett","South Dakota","SD",46,70,7,"current"], + [46033,"Custer","South Dakota","SD",46,70,33,"current"], + [46047,"Fall River","South Dakota","SD",46,70,47,"current"], + [46113,"Shannon","South Dakota","SD",46,70,113,"historical"], + [46102,"Oglala Lakota","South Dakota","SD",46,70,102,"current"], + [46131,"Washabaugh","South Dakota","SD",46,70,131,"historical"], + [46133,"Washington","South Dakota","SD",46,70,133,"historical"], + [46053,"Gregory","South Dakota","SD",46,80,53,"current"], + [46075,"Jones","South Dakota","SD",46,80,75,"current"], + [46085,"Lyman","South Dakota","SD",46,80,85,"current"], + [46095,"Mellette","South Dakota","SD",46,80,95,"current"], + [46121,"Todd","South Dakota","SD",46,80,121,"current"], + [46123,"Tripp","South Dakota","SD",46,80,123,"current"], + [46009,"Bon Homme","South Dakota","SD",46,90,9,"current"], + [46023,"Charles Mix","South Dakota","SD",46,90,23,"current"], + [46027,"Clay","South Dakota","SD",46,90,27,"current"], + [46043,"Douglas","South Dakota","SD",46,90,43,"current"], + [46067,"Hutchinson","South Dakota","SD",46,90,67,"current"], + [46083,"Lincoln","South Dakota","SD",46,90,83,"current"], + [46125,"Turner","South Dakota","SD",46,90,125,"current"], + [46127,"Union","South Dakota","SD",46,90,127,"current"], + [46135,"Yankton","South Dakota","SD",46,90,135,"current"], + [47000,"Tennessee","Tennessee","TN",47,0,0,"current"], + [47045,"Dyer","Tennessee","TN",47,10,45,"current"], + [47095,"Lake","Tennessee","TN",47,10,95,"current"], + [47097,"Lauderdale","Tennessee","TN",47,10,97,"current"], + [47131,"Obion","Tennessee","TN",47,10,131,"current"], + [47157,"Shelby","Tennessee","TN",47,10,157,"current"], + [47167,"Tipton","Tennessee","TN",47,10,167,"current"], + [47005,"Benton","Tennessee","TN",47,20,5,"current"], + [47017,"Carroll","Tennessee","TN",47,20,17,"current"], + [47023,"Chester","Tennessee","TN",47,20,23,"current"], + [47033,"Crockett","Tennessee","TN",47,20,33,"current"], + [47039,"Decatur","Tennessee","TN",47,20,39,"current"], + [47047,"Fayette","Tennessee","TN",47,20,47,"current"], + [47053,"Gibson","Tennessee","TN",47,20,53,"current"], + [47069,"Hardeman","Tennessee","TN",47,20,69,"current"], + [47071,"Hardin","Tennessee","TN",47,20,71,"current"], + [47075,"Haywood","Tennessee","TN",47,20,75,"current"], + [47077,"Henderson","Tennessee","TN",47,20,77,"current"], + [47079,"Henry","Tennessee","TN",47,20,79,"current"], + [47109,"McNairy","Tennessee","TN",47,20,109,"current"], + [47113,"Madison","Tennessee","TN",47,20,113,"current"], + [47183,"Weakley","Tennessee","TN",47,20,183,"current"], + [47005,"Benton","Tennessee","TN",47,30,5,"historical"], + [47021,"Cheatham","Tennessee","TN",47,30,21,"current"], + [47039,"Decatur","Tennessee","TN",47,30,39,"historical"], + [47043,"Dickson","Tennessee","TN",47,30,43,"current"], + [47071,"Hardin","Tennessee","TN",47,30,71,"historical"], + [47081,"Hickman","Tennessee","TN",47,30,81,"current"], + [47083,"Houston","Tennessee","TN",47,30,83,"current"], + [47085,"Humphreys","Tennessee","TN",47,30,85,"current"], + [47099,"Lawrence","Tennessee","TN",47,30,99,"current"], + [47101,"Lewis","Tennessee","TN",47,30,101,"current"], + [47125,"Montgomery","Tennessee","TN",47,30,125,"current"], + [47135,"Perry","Tennessee","TN",47,30,135,"current"], + [47147,"Robertson","Tennessee","TN",47,30,147,"current"], + [47161,"Stewart","Tennessee","TN",47,30,161,"current"], + [47181,"Wayne","Tennessee","TN",47,30,181,"current"], + [47003,"Bedford","Tennessee","TN",47,40,3,"current"], + [47015,"Cannon","Tennessee","TN",47,40,15,"current"], + [47027,"Clay","Tennessee","TN",47,40,27,"current"], + [47037,"Davidson","Tennessee","TN",47,40,37,"current"], + [47041,"De Kalb","Tennessee","TN",47,40,41,"current"], + [47055,"Giles","Tennessee","TN",47,40,55,"current"], + [47087,"Jackson","Tennessee","TN",47,40,87,"current"], + [47103,"Lincoln","Tennessee","TN",47,40,103,"current"], + [47111,"Macon","Tennessee","TN",47,40,111,"current"], + [47117,"Marshall","Tennessee","TN",47,40,117,"current"], + [47119,"Maury","Tennessee","TN",47,40,119,"current"], + [47127,"Moore","Tennessee","TN",47,40,127,"current"], + [47149,"Rutherford","Tennessee","TN",47,40,149,"current"], + [47159,"Smith","Tennessee","TN",47,40,159,"current"], + [47165,"Sumner","Tennessee","TN",47,40,165,"current"], + [47169,"Trousdale","Tennessee","TN",47,40,169,"current"], + [47187,"Williamson","Tennessee","TN",47,40,187,"current"], + [47189,"Wilson","Tennessee","TN",47,40,189,"current"], + [47007,"Bledsoe","Tennessee","TN",47,50,7,"current"], + [47031,"Coffee","Tennessee","TN",47,50,31,"current"], + [47035,"Cumberland","Tennessee","TN",47,50,35,"current"], + [47049,"Fentress","Tennessee","TN",47,50,49,"current"], + [47051,"Franklin","Tennessee","TN",47,50,51,"current"], + [47061,"Grundy","Tennessee","TN",47,50,61,"current"], + [47115,"Marion","Tennessee","TN",47,50,115,"current"], + [47129,"Morgan","Tennessee","TN",47,50,129,"current"], + [47133,"Overton","Tennessee","TN",47,50,133,"current"], + [47137,"Pickett","Tennessee","TN",47,50,137,"current"], + [47141,"Putnam","Tennessee","TN",47,50,141,"current"], + [47151,"Scott","Tennessee","TN",47,50,151,"current"], + [47153,"Sequatchie","Tennessee","TN",47,50,153,"current"], + [47175,"Van Buren","Tennessee","TN",47,50,175,"current"], + [47177,"Warren","Tennessee","TN",47,50,177,"current"], + [47185,"White","Tennessee","TN",47,50,185,"current"], + [47001,"Anderson","Tennessee","TN",47,60,1,"current"], + [47009,"Blount","Tennessee","TN",47,60,9,"current"], + [47011,"Bradley","Tennessee","TN",47,60,11,"current"], + [47013,"Campbell","Tennessee","TN",47,60,13,"current"], + [47019,"Carter","Tennessee","TN",47,60,19,"current"], + [47025,"Claiborne","Tennessee","TN",47,60,25,"current"], + [47029,"Cocke","Tennessee","TN",47,60,29,"current"], + [47057,"Grainger","Tennessee","TN",47,60,57,"current"], + [47059,"Greene","Tennessee","TN",47,60,59,"current"], + [47063,"Hamblen","Tennessee","TN",47,60,63,"current"], + [47065,"Hamilton","Tennessee","TN",47,60,65,"current"], + [47067,"Hancock","Tennessee","TN",47,60,67,"current"], + [47073,"Hawkins","Tennessee","TN",47,60,73,"current"], + [47089,"Jefferson","Tennessee","TN",47,60,89,"current"], + [47091,"Johnson","Tennessee","TN",47,60,91,"current"], + [47093,"Knox","Tennessee","TN",47,60,93,"current"], + [47105,"Loudon","Tennessee","TN",47,60,105,"current"], + [47107,"McMinn","Tennessee","TN",47,60,107,"current"], + [47121,"Meigs","Tennessee","TN",47,60,121,"current"], + [47123,"Monroe","Tennessee","TN",47,60,123,"current"], + [47139,"Polk","Tennessee","TN",47,60,139,"current"], + [47143,"Rhea","Tennessee","TN",47,60,143,"current"], + [47145,"Roane","Tennessee","TN",47,60,145,"current"], + [47155,"Sevier","Tennessee","TN",47,60,155,"current"], + [47163,"Sullivan","Tennessee","TN",47,60,163,"current"], + [47171,"Unicoi","Tennessee","TN",47,60,171,"current"], + [47173,"Union","Tennessee","TN",47,60,173,"current"], + [47179,"Washington","Tennessee","TN",47,60,179,"current"], + [48000,"Texas","Texas","TX",48,0,0,"current"], + [48011,"Armstrong","Texas","TX",48,11,11,"current"], + [48045,"Briscoe","Texas","TX",48,11,45,"current"], + [48065,"Carson","Texas","TX",48,11,65,"current"], + [48069,"Castro","Texas","TX",48,11,69,"current"], + [48111,"Dallam","Texas","TX",48,11,111,"current"], + [48117,"Deaf Smith","Texas","TX",48,11,117,"current"], + [48153,"Floyd","Texas","TX",48,11,153,"current"], + [48179,"Gray","Texas","TX",48,11,179,"current"], + [48189,"Hale","Texas","TX",48,11,189,"current"], + [48195,"Hansford","Texas","TX",48,11,195,"current"], + [48205,"Hartley","Texas","TX",48,11,205,"current"], + [48211,"Hemphill","Texas","TX",48,11,211,"current"], + [48233,"Hutchinson","Texas","TX",48,11,233,"current"], + [48295,"Lipscomb","Texas","TX",48,11,295,"current"], + [48341,"Moore","Texas","TX",48,11,341,"current"], + [48357,"Ochiltree","Texas","TX",48,11,357,"current"], + [48359,"Oldham","Texas","TX",48,11,359,"current"], + [48369,"Parmer","Texas","TX",48,11,369,"current"], + [48375,"Potter","Texas","TX",48,11,375,"current"], + [48381,"Randall","Texas","TX",48,11,381,"current"], + [48393,"Roberts","Texas","TX",48,11,393,"current"], + [48421,"Sherman","Texas","TX",48,11,421,"current"], + [48437,"Swisher","Texas","TX",48,11,437,"current"], + [48003,"Andrews","Texas","TX",48,12,3,"current"], + [48017,"Bailey","Texas","TX",48,12,17,"current"], + [48079,"Cochran","Texas","TX",48,12,79,"current"], + [48107,"Crosby","Texas","TX",48,12,107,"current"], + [48115,"Dawson","Texas","TX",48,12,115,"current"], + [48165,"Gaines","Texas","TX",48,12,165,"current"], + [48173,"Glasscock","Texas","TX",48,12,173,"current"], + [48219,"Hockley","Texas","TX",48,12,219,"current"], + [48227,"Howard","Texas","TX",48,12,227,"current"], + [48279,"Lamb","Texas","TX",48,12,279,"current"], + [48303,"Lubbock","Texas","TX",48,12,303,"current"], + [48305,"Lynn","Texas","TX",48,12,305,"current"], + [48317,"Martin","Texas","TX",48,12,317,"current"], + [48329,"Midland","Texas","TX",48,12,329,"current"], + [48445,"Terry","Texas","TX",48,12,445,"current"], + [48501,"Yoakum","Texas","TX",48,12,501,"current"], + [48033,"Borden","Texas","TX",48,21,33,"current"], + [48075,"Childress","Texas","TX",48,21,75,"current"], + [48087,"Collingsworth","Texas","TX",48,21,87,"current"], + [48101,"Cottle","Texas","TX",48,21,101,"current"], + [48125,"Dickens","Texas","TX",48,21,125,"current"], + [48129,"Donley","Texas","TX",48,21,129,"current"], + [48155,"Foard","Texas","TX",48,21,155,"current"], + [48169,"Garza","Texas","TX",48,21,169,"current"], + [48191,"Hall","Texas","TX",48,21,191,"current"], + [48197,"Hardeman","Texas","TX",48,21,197,"current"], + [48263,"Kent","Texas","TX",48,21,263,"current"], + [48269,"King","Texas","TX",48,21,269,"current"], + [48345,"Motley","Texas","TX",48,21,345,"current"], + [48483,"Wheeler","Texas","TX",48,21,483,"current"], + [48485,"Wichita","Texas","TX",48,21,485,"current"], + [48487,"Wilbarger","Texas","TX",48,21,487,"current"], + [48023,"Baylor","Texas","TX",48,22,23,"current"], + [48083,"Coleman","Texas","TX",48,22,83,"current"], + [48151,"Fisher","Texas","TX",48,22,151,"current"], + [48207,"Haskell","Texas","TX",48,22,207,"current"], + [48253,"Jones","Texas","TX",48,22,253,"current"], + [48275,"Knox","Texas","TX",48,22,275,"current"], + [48335,"Mitchell","Texas","TX",48,22,335,"current"], + [48353,"Nolan","Texas","TX",48,22,353,"current"], + [48399,"Runnels","Texas","TX",48,22,399,"current"], + [48415,"Scurry","Texas","TX",48,22,415,"current"], + [48433,"Stonewall","Texas","TX",48,22,433,"current"], + [48441,"Taylor","Texas","TX",48,22,441,"current"], + [48009,"Archer","Texas","TX",48,30,9,"current"], + [48049,"Brown","Texas","TX",48,30,49,"current"], + [48059,"Callahan","Texas","TX",48,30,59,"current"], + [48077,"Clay","Texas","TX",48,30,77,"current"], + [48093,"Comanche","Texas","TX",48,30,93,"current"], + [48133,"Eastland","Texas","TX",48,30,133,"current"], + [48143,"Erath","Texas","TX",48,30,143,"current"], + [48221,"Hood","Texas","TX",48,30,221,"current"], + [48237,"Jack","Texas","TX",48,30,237,"current"], + [48333,"Mills","Texas","TX",48,30,333,"current"], + [48337,"Montague","Texas","TX",48,30,337,"current"], + [48363,"Palo Pinto","Texas","TX",48,30,363,"current"], + [48367,"Parker","Texas","TX",48,30,367,"current"], + [48417,"Shackelford","Texas","TX",48,30,417,"current"], + [48425,"Somervell","Texas","TX",48,30,425,"current"], + [48429,"Stephens","Texas","TX",48,30,429,"current"], + [48447,"Throckmorton","Texas","TX",48,30,447,"current"], + [48497,"Wise","Texas","TX",48,30,497,"current"], + [48503,"Young","Texas","TX",48,30,503,"current"], + [48027,"Bell","Texas","TX",48,40,27,"current"], + [48035,"Bosque","Texas","TX",48,40,35,"current"], + [48085,"Collin","Texas","TX",48,40,85,"current"], + [48097,"Cooke","Texas","TX",48,40,97,"current"], + [48099,"Coryell","Texas","TX",48,40,99,"current"], + [48113,"Dallas","Texas","TX",48,40,113,"current"], + [48119,"Delta","Texas","TX",48,40,119,"current"], + [48121,"Denton","Texas","TX",48,40,121,"current"], + [48139,"Ellis","Texas","TX",48,40,139,"current"], + [48145,"Falls","Texas","TX",48,40,145,"current"], + [48147,"Fannin","Texas","TX",48,40,147,"current"], + [48181,"Grayson","Texas","TX",48,40,181,"current"], + [48193,"Hamilton","Texas","TX",48,40,193,"current"], + [48217,"Hill","Texas","TX",48,40,217,"current"], + [48231,"Hunt","Texas","TX",48,40,231,"current"], + [48251,"Johnson","Texas","TX",48,40,251,"current"], + [48257,"Kaufman","Texas","TX",48,40,257,"current"], + [48277,"Lamar","Texas","TX",48,40,277,"current"], + [48293,"Limestone","Texas","TX",48,40,293,"current"], + [48309,"McLennan","Texas","TX",48,40,309,"current"], + [48331,"Milam","Texas","TX",48,40,331,"current"], + [48349,"Navarro","Texas","TX",48,40,349,"current"], + [48397,"Rockwall","Texas","TX",48,40,397,"current"], + [48439,"Tarrant","Texas","TX",48,40,439,"current"], + [48491,"Williamson","Texas","TX",48,40,491,"current"], + [48001,"Anderson","Texas","TX",48,51,1,"current"], + [48037,"Bowie","Texas","TX",48,51,37,"current"], + [48063,"Camp","Texas","TX",48,51,63,"current"], + [48067,"Cass","Texas","TX",48,51,67,"current"], + [48073,"Cherokee","Texas","TX",48,51,73,"current"], + [48159,"Franklin","Texas","TX",48,51,159,"current"], + [48183,"Gregg","Texas","TX",48,51,183,"current"], + [48203,"Harrison","Texas","TX",48,51,203,"current"], + [48213,"Henderson","Texas","TX",48,51,213,"current"], + [48223,"Hopkins","Texas","TX",48,51,223,"current"], + [48225,"Houston","Texas","TX",48,51,225,"current"], + [48315,"Marion","Texas","TX",48,51,315,"current"], + [48343,"Morris","Texas","TX",48,51,343,"current"], + [48347,"Nacogdoches","Texas","TX",48,51,347,"current"], + [48365,"Panola","Texas","TX",48,51,365,"current"], + [48379,"Rains","Texas","TX",48,51,379,"current"], + [48387,"Red River","Texas","TX",48,51,387,"current"], + [48401,"Rusk","Texas","TX",48,51,401,"current"], + [48419,"Shelby","Texas","TX",48,51,419,"current"], + [48423,"Smith","Texas","TX",48,51,423,"current"], + [48449,"Titus","Texas","TX",48,51,449,"current"], + [48459,"Upshur","Texas","TX",48,51,459,"current"], + [48467,"Van Zandt","Texas","TX",48,51,467,"current"], + [48499,"Wood","Texas","TX",48,51,499,"current"], + [48005,"Angelina","Texas","TX",48,52,5,"current"], + [48041,"Brazos","Texas","TX",48,52,41,"current"], + [48161,"Freestone","Texas","TX",48,52,161,"current"], + [48185,"Grimes","Texas","TX",48,52,185,"current"], + [48199,"Hardin","Texas","TX",48,52,199,"current"], + [48241,"Jasper","Texas","TX",48,52,241,"current"], + [48289,"Leon","Texas","TX",48,52,289,"current"], + [48313,"Madison","Texas","TX",48,52,313,"current"], + [48339,"Montgomery","Texas","TX",48,52,339,"current"], + [48351,"Newton","Texas","TX",48,52,351,"current"], + [48373,"Polk","Texas","TX",48,52,373,"current"], + [48395,"Robertson","Texas","TX",48,52,395,"current"], + [48403,"Sabine","Texas","TX",48,52,403,"current"], + [48405,"San Augustine","Texas","TX",48,52,405,"current"], + [48407,"San Jacinto","Texas","TX",48,52,407,"current"], + [48455,"Trinity","Texas","TX",48,52,455,"current"], + [48457,"Tyler","Texas","TX",48,52,457,"current"], + [48471,"Walker","Texas","TX",48,52,471,"current"], + [48473,"Waller","Texas","TX",48,52,473,"current"], + [48043,"Brewster","Texas","TX",48,60,43,"current"], + [48103,"Crane","Texas","TX",48,60,103,"current"], + [48109,"Culberson","Texas","TX",48,60,109,"current"], + [48135,"Ector","Texas","TX",48,60,135,"current"], + [48141,"El Paso","Texas","TX",48,60,141,"current"], + [48229,"Hudspeth","Texas","TX",48,60,229,"current"], + [48243,"Jeff Davis","Texas","TX",48,60,243,"current"], + [48301,"Loving","Texas","TX",48,60,301,"current"], + [48371,"Pecos","Texas","TX",48,60,371,"current"], + [48377,"Presidio","Texas","TX",48,60,377,"current"], + [48389,"Reeves","Texas","TX",48,60,389,"current"], + [48443,"Terrell","Texas","TX",48,60,443,"current"], + [48475,"Ward","Texas","TX",48,60,475,"current"], + [48495,"Winkler","Texas","TX",48,60,495,"current"], + [48019,"Bandera","Texas","TX",48,70,19,"current"], + [48031,"Blanco","Texas","TX",48,70,31,"current"], + [48053,"Burnet","Texas","TX",48,70,53,"current"], + [48081,"Coke","Texas","TX",48,70,81,"current"], + [48095,"Concho","Texas","TX",48,70,95,"current"], + [48105,"Crockett","Texas","TX",48,70,105,"current"], + [48137,"Edwards","Texas","TX",48,70,137,"current"], + [48171,"Gillespie","Texas","TX",48,70,171,"current"], + [48235,"Irion","Texas","TX",48,70,235,"current"], + [48259,"Kendall","Texas","TX",48,70,259,"current"], + [48265,"Kerr","Texas","TX",48,70,265,"current"], + [48267,"Kimble","Texas","TX",48,70,267,"current"], + [48271,"Kinney","Texas","TX",48,70,271,"current"], + [48281,"Lampasas","Texas","TX",48,70,281,"current"], + [48299,"Llano","Texas","TX",48,70,299,"current"], + [48307,"McCulloch","Texas","TX",48,70,307,"current"], + [48319,"Mason","Texas","TX",48,70,319,"current"], + [48327,"Menard","Texas","TX",48,70,327,"current"], + [48383,"Reagan","Texas","TX",48,70,383,"current"], + [48385,"Real","Texas","TX",48,70,385,"current"], + [48411,"San Saba","Texas","TX",48,70,411,"current"], + [48413,"Schleicher","Texas","TX",48,70,413,"current"], + [48431,"Sterling","Texas","TX",48,70,431,"current"], + [48435,"Sutton","Texas","TX",48,70,435,"current"], + [48451,"Tom Green","Texas","TX",48,70,451,"current"], + [48461,"Upton","Texas","TX",48,70,461,"current"], + [48463,"Uvalde","Texas","TX",48,70,463,"current"], + [48465,"Val Verde","Texas","TX",48,70,465,"current"], + [48015,"Austin","Texas","TX",48,81,15,"current"], + [48021,"Bastrop","Texas","TX",48,81,21,"current"], + [48025,"Bee","Texas","TX",48,81,25,"current"], + [48029,"Bexar","Texas","TX",48,81,29,"current"], + [48051,"Burleson","Texas","TX",48,81,51,"current"], + [48055,"Caldwell","Texas","TX",48,81,55,"current"], + [48089,"Colorado","Texas","TX",48,81,89,"current"], + [48091,"Comal","Texas","TX",48,81,91,"current"], + [48123,"De Witt","Texas","TX",48,81,123,"current"], + [48149,"Fayette","Texas","TX",48,81,149,"current"], + [48175,"Goliad","Texas","TX",48,81,175,"current"], + [48177,"Gonzales","Texas","TX",48,81,177,"current"], + [48187,"Guadalupe","Texas","TX",48,81,187,"current"], + [48209,"Hays","Texas","TX",48,81,209,"current"], + [48255,"Karnes","Texas","TX",48,81,255,"current"], + [48285,"Lavaca","Texas","TX",48,81,285,"current"], + [48287,"Lee","Texas","TX",48,81,287,"current"], + [48325,"Medina","Texas","TX",48,81,325,"current"], + [48453,"Travis","Texas","TX",48,81,453,"current"], + [48477,"Washington","Texas","TX",48,81,477,"current"], + [48493,"Wilson","Texas","TX",48,81,493,"current"], + [48007,"Aransas","Texas","TX",48,82,7,"current"], + [48273,"Kleberg","Texas","TX",48,82,273,"current"], + [48355,"Nueces","Texas","TX",48,82,355,"current"], + [48391,"Refugio","Texas","TX",48,82,391,"current"], + [48409,"San Patricio","Texas","TX",48,82,409,"current"], + [48039,"Brazoria","Texas","TX",48,90,39,"current"], + [48057,"Calhoun","Texas","TX",48,90,57,"current"], + [48071,"Chambers","Texas","TX",48,90,71,"current"], + [48157,"Fort Bend","Texas","TX",48,90,157,"current"], + [48167,"Galveston","Texas","TX",48,90,167,"current"], + [48201,"Harris","Texas","TX",48,90,201,"current"], + [48239,"Jackson","Texas","TX",48,90,239,"current"], + [48245,"Jefferson","Texas","TX",48,90,245,"current"], + [48291,"Liberty","Texas","TX",48,90,291,"current"], + [48321,"Matagorda","Texas","TX",48,90,321,"current"], + [48361,"Orange","Texas","TX",48,90,361,"current"], + [48469,"Victoria","Texas","TX",48,90,469,"current"], + [48481,"Wharton","Texas","TX",48,90,481,"current"], + [48013,"Atascosa","Texas","TX",48,96,13,"current"], + [48047,"Brooks","Texas","TX",48,96,47,"current"], + [48127,"Dimmit","Texas","TX",48,96,127,"current"], + [48131,"Duval","Texas","TX",48,96,131,"current"], + [48163,"Frio","Texas","TX",48,96,163,"current"], + [48247,"Jim Hogg","Texas","TX",48,96,247,"current"], + [48249,"Jim Wells","Texas","TX",48,96,249,"current"], + [48261,"Kenedy","Texas","TX",48,96,261,"current"], + [48283,"La Salle","Texas","TX",48,96,283,"current"], + [48297,"Live Oak","Texas","TX",48,96,297,"current"], + [48311,"McMullen","Texas","TX",48,96,311,"current"], + [48323,"Maverick","Texas","TX",48,96,323,"current"], + [48479,"Webb","Texas","TX",48,96,479,"current"], + [48505,"Zapata","Texas","TX",48,96,505,"current"], + [48507,"Zavala","Texas","TX",48,96,507,"current"], + [48061,"Cameron","Texas","TX",48,97,61,"current"], + [48215,"Hidalgo","Texas","TX",48,97,215,"current"], + [48427,"Starr","Texas","TX",48,97,427,"current"], + [48489,"Willacy","Texas","TX",48,97,489,"current"], + [49000,"Utah","Utah","UT",49,0,0,"current"], + [49003,"Box Elder","Utah","UT",49,10,3,"current"], + [49005,"Cache","Utah","UT",49,10,5,"current"], + [49011,"Davis","Utah","UT",49,10,11,"current"], + [49029,"Morgan","Utah","UT",49,10,29,"current"], + [49033,"Rich","Utah","UT",49,10,33,"current"], + [49035,"Salt Lake","Utah","UT",49,10,35,"current"], + [49045,"Tooele","Utah","UT",49,10,45,"current"], + [49057,"Weber","Utah","UT",49,10,57,"current"], + [49023,"Juab","Utah","UT",49,50,23,"current"], + [49027,"Millard","Utah","UT",49,50,27,"current"], + [49039,"Sanpete","Utah","UT",49,50,39,"current"], + [49041,"Sevier","Utah","UT",49,50,41,"current"], + [49049,"Utah","Utah","UT",49,50,49,"current"], + [49007,"Carbon","Utah","UT",49,60,7,"current"], + [49009,"Daggett","Utah","UT",49,60,9,"current"], + [49013,"Duchesne","Utah","UT",49,60,13,"current"], + [49015,"Emery","Utah","UT",49,60,15,"current"], + [49019,"Grand","Utah","UT",49,60,19,"current"], + [49037,"San Juan","Utah","UT",49,60,37,"current"], + [49043,"Summit","Utah","UT",49,60,43,"current"], + [49047,"Uintah","Utah","UT",49,60,47,"current"], + [49051,"Wasatch","Utah","UT",49,60,51,"current"], + [49001,"Beaver","Utah","UT",49,70,1,"current"], + [49017,"Garfield","Utah","UT",49,70,17,"current"], + [49021,"Iron","Utah","UT",49,70,21,"current"], + [49025,"Kane","Utah","UT",49,70,25,"current"], + [49031,"Piute","Utah","UT",49,70,31,"current"], + [49053,"Washington","Utah","UT",49,70,53,"current"], + [49055,"Wayne","Utah","UT",49,70,55,"current"], + [50000,"Vermont","Vermont","VT",50,0,0,"current"], + [50001,"Addison","Vermont","VT",50,10,1,"current"], + [50003,"Bennington","Vermont","VT",50,10,3,"current"], + [50005,"Caledonia","Vermont","VT",50,10,5,"current"], + [50007,"Chittenden","Vermont","VT",50,10,7,"current"], + [50009,"Essex","Vermont","VT",50,10,9,"current"], + [50011,"Franklin","Vermont","VT",50,10,11,"current"], + [50013,"Grand Isle","Vermont","VT",50,10,13,"current"], + [50015,"Lamoille","Vermont","VT",50,10,15,"current"], + [50017,"Orange","Vermont","VT",50,10,17,"current"], + [50019,"Orleans","Vermont","VT",50,10,19,"current"], + [50021,"Rutland","Vermont","VT",50,10,21,"current"], + [50023,"Washington","Vermont","VT",50,10,23,"current"], + [50025,"Windham","Vermont","VT",50,10,25,"current"], + [50027,"Windsor","Vermont","VT",50,10,27,"current"], + [51000,"Virginia","Virginia","VA",51,0,0,"current"], + [51013,"Arlington","Virginia","VA",51,20,13,"current"], + [51043,"Clarke","Virginia","VA",51,20,43,"current"], + [51047,"Culpeper","Virginia","VA",51,20,47,"current"], + [51059,"Fairfax","Virginia","VA",51,20,59,"current"], + [51061,"Fauquier","Virginia","VA",51,20,61,"current"], + [51069,"Frederick","Virginia","VA",51,20,69,"current"], + [51107,"Loudoun","Virginia","VA",51,20,107,"current"], + [51113,"Madison","Virginia","VA",51,20,113,"current"], + [51139,"Page","Virginia","VA",51,20,139,"current"], + [51153,"Prince William","Virginia","VA",51,20,153,"current"], + [51157,"Rappahannock","Virginia","VA",51,20,157,"current"], + [51165,"Rockingham","Virginia","VA",51,20,165,"current"], + [51171,"Shenandoah","Virginia","VA",51,20,171,"current"], + [51179,"Stafford","Virginia","VA",51,20,179,"current"], + [51187,"Warren","Virginia","VA",51,20,187,"current"], + [51510,"Alexandria City","Virginia","VA",51,20,510,"current"], + [51600,"Fairfax City","Virginia","VA",51,20,600,"current"], + [51610,"Falls Church City","Virginia","VA",51,20,610,"current"], + [51660,"Harrisonburg City","Virginia","VA",51,20,660,"current"], + [51683,"Manassas City","Virginia","VA",51,20,683,"current"], + [51685,"Manassas Park City","Virginia","VA",51,20,685,"current"], + [51840,"Winchester City","Virginia","VA",51,20,840,"current"], + [51005,"Alleghany","Virginia","VA",51,40,5,"current"], + [51015,"Augusta","Virginia","VA",51,40,15,"current"], + [51017,"Bath","Virginia","VA",51,40,17,"current"], + [51023,"Botetourt","Virginia","VA",51,40,23,"current"], + [51045,"Craig","Virginia","VA",51,40,45,"current"], + [51091,"Highland","Virginia","VA",51,40,91,"current"], + [51161,"Roanoke","Virginia","VA",51,40,161,"current"], + [51163,"Rockbridge","Virginia","VA",51,40,163,"current"], + [51530,"Buena Vista City","Virginia","VA",51,40,530,"current"], + [51560,"Clifton Forge City","Virginia","VA",51,40,560,"current"], + [51580,"Covington City","Virginia","VA",51,40,580,"current"], + [51678,"Lexington City","Virginia","VA",51,40,678,"current"], + [51770,"Roanoke City","Virginia","VA",51,40,770,"current"], + [51775,"Salem City","Virginia","VA",51,40,775,"current"], + [51790,"Staunton City","Virginia","VA",51,40,790,"current"], + [51820,"Waynesboro City","Virginia","VA",51,40,820,"current"], + [51003,"Albemarle","Virginia","VA",51,50,3,"current"], + [51007,"Amelia","Virginia","VA",51,50,7,"current"], + [51009,"Amherst","Virginia","VA",51,50,9,"current"], + [51011,"Appomattox","Virginia","VA",51,50,11,"current"], + [51019,"Bedford","Virginia","VA",51,50,19,"current"], + [51029,"Buckingham","Virginia","VA",51,50,29,"current"], + [51031,"Campbell","Virginia","VA",51,50,31,"current"], + [51033,"Caroline","Virginia","VA",51,50,33,"current"], + [51041,"Chesterfield","Virginia","VA",51,50,41,"current"], + [51049,"Cumberland","Virginia","VA",51,50,49,"current"], + [51065,"Fluvanna","Virginia","VA",51,50,65,"current"], + [51075,"Goochland","Virginia","VA",51,50,75,"current"], + [51079,"Greene","Virginia","VA",51,50,79,"current"], + [51085,"Hanover","Virginia","VA",51,50,85,"current"], + [51087,"Henrico","Virginia","VA",51,50,87,"current"], + [51109,"Louisa","Virginia","VA",51,50,109,"current"], + [51125,"Nelson","Virginia","VA",51,50,125,"current"], + [51137,"Orange","Virginia","VA",51,50,137,"current"], + [51145,"Powhatan","Virginia","VA",51,50,145,"current"], + [51147,"Prince Edward","Virginia","VA",51,50,147,"current"], + [51177,"Spotsylvania","Virginia","VA",51,50,177,"current"], + [51515,"Bedford City","Virginia","VA",51,50,515,"current"], + [51540,"Charlottesville City","Virginia","VA",51,50,540,"current"], + [51570,"Colonial Heights City","Virginia","VA",51,50,570,"current"], + [51630,"Fredericksburg City","Virginia","VA",51,50,630,"current"], + [51680,"Lynchburg City","Virginia","VA",51,50,680,"current"], + [51760,"Richmond City","Virginia","VA",51,50,760,"current"], + [51001,"Accomack","Virginia","VA",51,60,1,"current"], + [51036,"Charles City","Virginia","VA",51,60,36,"current"], + [51057,"Essex","Virginia","VA",51,60,57,"current"], + [51073,"Gloucester","Virginia","VA",51,60,73,"current"], + [51095,"James City","Virginia","VA",51,60,95,"current"], + [51097,"King and Queen","Virginia","VA",51,60,97,"current"], + [51099,"King George","Virginia","VA",51,60,99,"current"], + [51101,"King William","Virginia","VA",51,60,101,"current"], + [51103,"Lancaster","Virginia","VA",51,60,103,"current"], + [51115,"Mathews","Virginia","VA",51,60,115,"current"], + [51119,"Middlesex","Virginia","VA",51,60,119,"current"], + [51127,"New Kent","Virginia","VA",51,60,127,"current"], + [51131,"Northampton","Virginia","VA",51,60,131,"current"], + [51133,"Northumberland","Virginia","VA",51,60,133,"current"], + [51159,"Richmond","Virginia","VA",51,60,159,"current"], + [51193,"Westmoreland","Virginia","VA",51,60,193,"current"], + [51199,"York","Virginia","VA",51,60,199,"current"], + [51650,"Hampton City","Virginia","VA",51,60,650,"current"], + [51700,"Newport News City","Virginia","VA",51,60,700,"current"], + [51735,"Poquoson City","Virginia","VA",51,60,735,"current"], + [51830,"Williamsburg City","Virginia","VA",51,60,830,"current"], + [51021,"Bland","Virginia","VA",51,70,21,"current"], + [51027,"Buchanan","Virginia","VA",51,70,27,"current"], + [51035,"Carroll","Virginia","VA",51,70,35,"current"], + [51051,"Dickenson","Virginia","VA",51,70,51,"current"], + [51063,"Floyd","Virginia","VA",51,70,63,"current"], + [51071,"Giles","Virginia","VA",51,70,71,"current"], + [51077,"Grayson","Virginia","VA",51,70,77,"current"], + [51105,"Lee","Virginia","VA",51,70,105,"current"], + [51121,"Montgomery","Virginia","VA",51,70,121,"current"], + [51155,"Pulaski","Virginia","VA",51,70,155,"current"], + [51167,"Russell","Virginia","VA",51,70,167,"current"], + [51169,"Scott","Virginia","VA",51,70,169,"current"], + [51173,"Smyth","Virginia","VA",51,70,173,"current"], + [51185,"Tazewell","Virginia","VA",51,70,185,"current"], + [51191,"Washington","Virginia","VA",51,70,191,"current"], + [51195,"Wise","Virginia","VA",51,70,195,"current"], + [51197,"Wythe","Virginia","VA",51,70,197,"current"], + [51520,"Bristol City","Virginia","VA",51,70,520,"current"], + [51640,"Galax City","Virginia","VA",51,70,640,"current"], + [51720,"Norton City","Virginia","VA",51,70,720,"current"], + [51750,"Radford City","Virginia","VA",51,70,750,"current"], + [51037,"Charlotte","Virginia","VA",51,80,37,"current"], + [51067,"Franklin","Virginia","VA",51,80,67,"current"], + [51083,"Halifax","Virginia","VA",51,80,83,"current"], + [51089,"Henry","Virginia","VA",51,80,89,"current"], + [51111,"Lunenburg","Virginia","VA",51,80,111,"current"], + [51135,"Nottoway","Virginia","VA",51,80,135,"current"], + [51141,"Patrick","Virginia","VA",51,80,141,"current"], + [51143,"Pittsylvania","Virginia","VA",51,80,143,"current"], + [51590,"Danville City","Virginia","VA",51,80,590,"current"], + [51690,"Martinsville City","Virginia","VA",51,80,690,"current"], + [51780,"South Boston City","Virginia","VA",51,80,780,"current"], + [51025,"Brunswick","Virginia","VA",51,90,25,"current"], + [51053,"Dinwiddie","Virginia","VA",51,90,53,"current"], + [51055,"Elizabeth City County","Virginia","VA",51,90,55,"historical"], + [51081,"Greensville","Virginia","VA",51,90,81,"current"], + [51093,"Isle of Wight","Virginia","VA",51,90,93,"current"], + [51117,"Mecklenburg","Virginia","VA",51,90,117,"current"], + [51123,"Nansemond","Virginia","VA",51,90,123,"current"], + [51123,"Nansmond County","Virginia","VA",51,90,123,"historical"], + [51129,"Norfolk County","Virginia","VA",51,90,129,"historical"], + [51149,"Prince George","Virginia","VA",51,90,149,"current"], + [51151,"Princess Anne County","Virginia","VA",51,90,151,"historical"], + [51175,"Southampton","Virginia","VA",51,90,175,"current"], + [51181,"Surry","Virginia","VA",51,90,181,"current"], + [51183,"Sussex","Virginia","VA",51,90,183,"current"], + [51189,"Warrick County","Virginia","VA",51,90,189,"historical"], + [51550,"Chesapeake City","Virginia","VA",51,90,550,"current"], + [51595,"Emporia City","Virginia","VA",51,90,595,"current"], + [51620,"Franklin City","Virginia","VA",51,90,620,"current"], + [51670,"Hopewell City","Virginia","VA",51,90,670,"current"], + [51710,"Norfolk City","Virginia","VA",51,90,710,"current"], + [51730,"Petersburg City","Virginia","VA",51,90,730,"current"], + [51740,"Portsmouth City","Virginia","VA",51,90,740,"current"], + [51800,"Suffolk City","Virginia","VA",51,90,800,"current"], + [51810,"Virginia Beach City","Virginia","VA",51,90,810,"current"], + [53000,"Washington","Washington","WA",53,0,0,"current"], + [53009,"Clallam","Washington","WA",53,10,9,"current"], + [53011,"Clark","Washington","WA",53,10,11,"current"], + [53015,"Cowlitz","Washington","WA",53,10,15,"current"], + [53027,"Grays Harbor","Washington","WA",53,10,27,"current"], + [53029,"Island","Washington","WA",53,10,29,"current"], + [53031,"Jefferson","Washington","WA",53,10,31,"current"], + [53033,"King","Washington","WA",53,10,33,"current"], + [53035,"Kitsap","Washington","WA",53,10,35,"current"], + [53041,"Lewis","Washington","WA",53,10,41,"current"], + [53045,"Mason","Washington","WA",53,10,45,"current"], + [53049,"Pacific","Washington","WA",53,10,49,"current"], + [53053,"Pierce","Washington","WA",53,10,53,"current"], + [53055,"San Juan","Washington","WA",53,10,55,"current"], + [53057,"Skagit","Washington","WA",53,10,57,"current"], + [53059,"Skamania","Washington","WA",53,10,59,"current"], + [53061,"Snohomish","Washington","WA",53,10,61,"current"], + [53067,"Thurston","Washington","WA",53,10,67,"current"], + [53069,"Wahkiakum","Washington","WA",53,10,69,"current"], + [53073,"Whatcom","Washington","WA",53,10,73,"current"], + [53005,"Benton","Washington","WA",53,20,5,"current"], + [53007,"Chelan","Washington","WA",53,20,7,"current"], + [53037,"Kittitas","Washington","WA",53,20,37,"current"], + [53039,"Klickitat","Washington","WA",53,20,39,"current"], + [53047,"Okanogan","Washington","WA",53,20,47,"current"], + [53077,"Yakima","Washington","WA",53,20,77,"current"], + [53019,"Ferry","Washington","WA",53,30,19,"current"], + [53051,"Pend Oreille","Washington","WA",53,30,51,"current"], + [53063,"Spokane","Washington","WA",53,30,63,"current"], + [53065,"Stevens","Washington","WA",53,30,65,"current"], + [53001,"Adams","Washington","WA",53,50,1,"current"], + [53017,"Douglas","Washington","WA",53,50,17,"current"], + [53021,"Franklin","Washington","WA",53,50,21,"current"], + [53025,"Grant","Washington","WA",53,50,25,"current"], + [53043,"Lincoln","Washington","WA",53,50,43,"current"], + [53003,"Asotin","Washington","WA",53,90,3,"current"], + [53013,"Columbia","Washington","WA",53,90,13,"current"], + [53023,"Garfield","Washington","WA",53,90,23,"current"], + [53071,"Walla Walla","Washington","WA",53,90,71,"current"], + [53075,"Whitman","Washington","WA",53,90,75,"current"], + [54000,"West Virginia","West Virginia","WV",54,0,0,"current"], + [54001,"Barbour","West Virginia","WV",54,20,1,"current"], + [54009,"Brooke","West Virginia","WV",54,20,9,"current"], + [54017,"Doddridge","West Virginia","WV",54,20,17,"current"], + [54029,"Hancock","West Virginia","WV",54,20,29,"current"], + [54033,"Harrison","West Virginia","WV",54,20,33,"current"], + [54041,"Lewis","West Virginia","WV",54,20,41,"current"], + [54049,"Marion","West Virginia","WV",54,20,49,"current"], + [54051,"Marshall","West Virginia","WV",54,20,51,"current"], + [54061,"Monongalia","West Virginia","WV",54,20,61,"current"], + [54069,"Ohio","West Virginia","WV",54,20,69,"current"], + [54073,"Pleasants","West Virginia","WV",54,20,73,"current"], + [54077,"Preston","West Virginia","WV",54,20,77,"current"], + [54085,"Ritchie","West Virginia","WV",54,20,85,"current"], + [54091,"Taylor","West Virginia","WV",54,20,91,"current"], + [54095,"Tyler","West Virginia","WV",54,20,95,"current"], + [54097,"Upshur","West Virginia","WV",54,20,97,"current"], + [54103,"Wetzel","West Virginia","WV",54,20,103,"current"], + [54107,"Wood","West Virginia","WV",54,20,107,"current"], + [54005,"Boone","West Virginia","WV",54,40,5,"current"], + [54007,"Braxton","West Virginia","WV",54,40,7,"current"], + [54011,"Cabell","West Virginia","WV",54,40,11,"current"], + [54013,"Calhoun","West Virginia","WV",54,40,13,"current"], + [54015,"Clay","West Virginia","WV",54,40,15,"current"], + [54019,"Fayette","West Virginia","WV",54,40,19,"current"], + [54021,"Gilmer","West Virginia","WV",54,40,21,"current"], + [54035,"Jackson","West Virginia","WV",54,40,35,"current"], + [54039,"Kanawha","West Virginia","WV",54,40,39,"current"], + [54043,"Lincoln","West Virginia","WV",54,40,43,"current"], + [54045,"Logan","West Virginia","WV",54,40,45,"current"], + [54047,"McDowell","West Virginia","WV",54,40,47,"current"], + [54053,"Mason","West Virginia","WV",54,40,53,"current"], + [54055,"Mercer","West Virginia","WV",54,40,55,"current"], + [54059,"Mingo","West Virginia","WV",54,40,59,"current"], + [54067,"Nicholas","West Virginia","WV",54,40,67,"current"], + [54079,"Putnam","West Virginia","WV",54,40,79,"current"], + [54081,"Raleigh","West Virginia","WV",54,40,81,"current"], + [54087,"Roane","West Virginia","WV",54,40,87,"current"], + [54099,"Wayne","West Virginia","WV",54,40,99,"current"], + [54101,"Webster","West Virginia","WV",54,40,101,"current"], + [54105,"Wirt","West Virginia","WV",54,40,105,"current"], + [54109,"Wyoming","West Virginia","WV",54,40,109,"current"], + [54003,"Berkeley","West Virginia","WV",54,60,3,"current"], + [54023,"Grant","West Virginia","WV",54,60,23,"current"], + [54025,"Greenbrier","West Virginia","WV",54,60,25,"current"], + [54027,"Hampshire","West Virginia","WV",54,60,27,"current"], + [54031,"Hardy","West Virginia","WV",54,60,31,"current"], + [54037,"Jefferson","West Virginia","WV",54,60,37,"current"], + [54057,"Mineral","West Virginia","WV",54,60,57,"current"], + [54063,"Monroe","West Virginia","WV",54,60,63,"current"], + [54065,"Morgan","West Virginia","WV",54,60,65,"current"], + [54071,"Pendleton","West Virginia","WV",54,60,71,"current"], + [54075,"Pocahontas","West Virginia","WV",54,60,75,"current"], + [54083,"Randolph","West Virginia","WV",54,60,83,"current"], + [54089,"Summers","West Virginia","WV",54,60,89,"current"], + [54093,"Tucker","West Virginia","WV",54,60,93,"current"], + [55000,"Wisconsin","Wisconsin","WI",55,0,0,"current"], + [55005,"Barron","Wisconsin","WI",55,10,5,"current"], + [55007,"Bayfield","Wisconsin","WI",55,10,7,"current"], + [55013,"Burnett","Wisconsin","WI",55,10,13,"current"], + [55017,"Chippewa","Wisconsin","WI",55,10,17,"current"], + [55031,"Douglas","Wisconsin","WI",55,10,31,"current"], + [55095,"Polk","Wisconsin","WI",55,10,95,"current"], + [55107,"Rusk","Wisconsin","WI",55,10,107,"current"], + [55113,"Sawyer","Wisconsin","WI",55,10,113,"current"], + [55129,"Washburn","Wisconsin","WI",55,10,129,"current"], + [55003,"Ashland","Wisconsin","WI",55,20,3,"current"], + [55019,"Clark","Wisconsin","WI",55,20,19,"current"], + [55051,"Iron","Wisconsin","WI",55,20,51,"current"], + [55069,"Lincoln","Wisconsin","WI",55,20,69,"current"], + [55073,"Marathon","Wisconsin","WI",55,20,73,"current"], + [55085,"Oneida","Wisconsin","WI",55,20,85,"current"], + [55099,"Price","Wisconsin","WI",55,20,99,"current"], + [55119,"Taylor","Wisconsin","WI",55,20,119,"current"], + [55125,"Vilas","Wisconsin","WI",55,20,125,"current"], + [55037,"Florence","Wisconsin","WI",55,30,37,"current"], + [55041,"Forest","Wisconsin","WI",55,30,41,"current"], + [55067,"Langlade","Wisconsin","WI",55,30,67,"current"], + [55075,"Marinette","Wisconsin","WI",55,30,75,"current"], + [55078,"Menominee","Wisconsin","WI",55,30,78,"current"], + [55083,"Oconto","Wisconsin","WI",55,30,83,"current"], + [55115,"Shawano","Wisconsin","WI",55,30,115,"current"], + [55011,"Buffalo","Wisconsin","WI",55,40,11,"current"], + [55033,"Dunn","Wisconsin","WI",55,40,33,"current"], + [55035,"Eau Claire","Wisconsin","WI",55,40,35,"current"], + [55053,"Jackson","Wisconsin","WI",55,40,53,"current"], + [55063,"La Crosse","Wisconsin","WI",55,40,63,"current"], + [55081,"Monroe","Wisconsin","WI",55,40,81,"current"], + [55091,"Pepin","Wisconsin","WI",55,40,91,"current"], + [55093,"Pierce","Wisconsin","WI",55,40,93,"current"], + [55109,"St. Croix","Wisconsin","WI",55,40,109,"current"], + [55121,"Trempealeau","Wisconsin","WI",55,40,121,"current"], + [55001,"Adams","Wisconsin","WI",55,50,1,"current"], + [55047,"Green Lake","Wisconsin","WI",55,50,47,"current"], + [55057,"Juneau","Wisconsin","WI",55,50,57,"current"], + [55077,"Marquette","Wisconsin","WI",55,50,77,"current"], + [55097,"Portage","Wisconsin","WI",55,50,97,"current"], + [55135,"Waupaca","Wisconsin","WI",55,50,135,"current"], + [55137,"Waushara","Wisconsin","WI",55,50,137,"current"], + [55141,"Wood","Wisconsin","WI",55,50,141,"current"], + [55009,"Brown","Wisconsin","WI",55,60,9,"current"], + [55015,"Calumet","Wisconsin","WI",55,60,15,"current"], + [55029,"Door","Wisconsin","WI",55,60,29,"current"], + [55039,"Fond Du Lac","Wisconsin","WI",55,60,39,"current"], + [55061,"Kewaunee","Wisconsin","WI",55,60,61,"current"], + [55071,"Manitowoc","Wisconsin","WI",55,60,71,"current"], + [55087,"Outagamie","Wisconsin","WI",55,60,87,"current"], + [55117,"Sheboygan","Wisconsin","WI",55,60,117,"current"], + [55139,"Winnebago","Wisconsin","WI",55,60,139,"current"], + [55023,"Crawford","Wisconsin","WI",55,70,23,"current"], + [55043,"Grant","Wisconsin","WI",55,70,43,"current"], + [55049,"Iowa","Wisconsin","WI",55,70,49,"current"], + [55065,"Lafayette","Wisconsin","WI",55,70,65,"current"], + [55103,"Richland","Wisconsin","WI",55,70,103,"current"], + [55111,"Sauk","Wisconsin","WI",55,70,111,"current"], + [55123,"Vernon","Wisconsin","WI",55,70,123,"current"], + [55021,"Columbia","Wisconsin","WI",55,80,21,"current"], + [55025,"Dane","Wisconsin","WI",55,80,25,"current"], + [55027,"Dodge","Wisconsin","WI",55,80,27,"current"], + [55045,"Green","Wisconsin","WI",55,80,45,"current"], + [55055,"Jefferson","Wisconsin","WI",55,80,55,"current"], + [55105,"Rock","Wisconsin","WI",55,80,105,"current"], + [55059,"Kenosha","Wisconsin","WI",55,90,59,"current"], + [55079,"Milwaukee","Wisconsin","WI",55,90,79,"current"], + [55089,"Ozaukee","Wisconsin","WI",55,90,89,"current"], + [55101,"Racine","Wisconsin","WI",55,90,101,"current"], + [55127,"Walworth","Wisconsin","WI",55,90,127,"current"], + [55131,"Washington","Wisconsin","WI",55,90,131,"current"], + [55133,"Waukesha","Wisconsin","WI",55,90,133,"current"], + [56000,"Wyoming","Wyoming","WY",56,0,0,"current"], + [56003,"Big Horn","Wyoming","WY",56,10,3,"current"], + [56013,"Fremont","Wyoming","WY",56,10,13,"current"], + [56017,"Hot Springs","Wyoming","WY",56,10,17,"current"], + [56029,"Park","Wyoming","WY",56,10,29,"current"], + [56043,"Washakie","Wyoming","WY",56,10,43,"current"], + [56005,"Campbell","Wyoming","WY",56,20,5,"current"], + [56011,"Crook","Wyoming","WY",56,20,11,"current"], + [56019,"Johnson","Wyoming","WY",56,20,19,"current"], + [56033,"Sheridan","Wyoming","WY",56,20,33,"current"], + [56045,"Weston","Wyoming","WY",56,20,45,"current"], + [56023,"Lincoln","Wyoming","WY",56,30,23,"current"], + [56035,"Sublette","Wyoming","WY",56,30,35,"current"], + [56039,"Teton","Wyoming","WY",56,30,39,"current"], + [56041,"Uinta","Wyoming","WY",56,30,41,"current"], + [56001,"Albany","Wyoming","WY",56,40,1,"current"], + [56007,"Carbon","Wyoming","WY",56,40,7,"current"], + [56025,"Natrona","Wyoming","WY",56,40,25,"current"], + [56037,"Sweetwater","Wyoming","WY",56,40,37,"current"], + [56009,"Converse","Wyoming","WY",56,50,9,"current"], + [56015,"Goshen","Wyoming","WY",56,50,15,"current"], + [56021,"Laramie","Wyoming","WY",56,50,21,"current"], + [56027,"Niobrara","Wyoming","WY",56,50,27,"current"], + [56031,"Platte","Wyoming","WY",56,50,31,"current"] + ] +} diff --git a/data/regional/united-states/military/veterans/us-military-veterans-2010.json b/data/regional/united-states/military/veterans/us-military-veterans-2010.json new file mode 100644 index 0000000..76efefc --- /dev/null +++ b/data/regional/united-states/military/veterans/us-military-veterans-2010.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Veteran Population", + "description" : "Number of people that are veterans.", + "units" : "people", + "year" : "2010", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "military", + "tags" : ["regional","us","counties","military","soldier","veterans"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.military.veterans.2010"], + [1001,5817], + [1003,20396], + [1005,2327], + [1007,1883], + [1009,4072], + [1011,943], + [1013,1675], + [1015,11757], + [1017,2893], + [1019,2172], + [1021,3317], + [1023,745], + [1025,1649], + [1027,1148], + [1029,1126], + [1031,5947], + [1033,4586], + [1035,1185], + [1037,1097], + [1039,3764], + [1041,1256], + [1043,6708], + [1045,7148], + [1047,3384], + [1049,4514], + [1051,8363], + [1053,3146], + [1055,9837], + [1057,1319], + [1059,2059], + [1061,2547], + [1063,460], + [1065,1209], + [1067,1548], + [1069,9168], + [1071,4165], + [1073,51882], + [1075,1264], + [1077,8022], + [1079,2299], + [1081,9711], + [1083,6720], + [1085,772], + [1087,2165], + [1089,33909], + [1091,1669], + [1093,2534], + [1095,7612], + [1097,35780], + [1099,1409], + [1101,20711], + [1103,10210], + [1105,591], + [1107,1771], + [1109,2341], + [1111,1778], + [1113,5360], + [1115,7217], + [1117,14211], + [1119,706], + [1121,7080], + [1123,3829], + [1125,12396], + [1127,5535], + [1129,957], + [1131,390], + [1133,1871], + [2013,59], + [2016,484], + [2020,30779], + [2050,770], + [2060,103], + [2068,155], + [2070,206], + [2090,11448], + [2100,324], + [2105,229], + [2110,2564], + [2122,5622], + [2130,1348], + [2150,1467], + [2158,322], + [2164,77], + [2170,9163], + [2180,693], + [2185,489], + [2188,458], + [2195,455], + [2198,585], + [2220,920], + [2230,98], + [2240,1096], + [2261,1059], + [2275,294], + [2282,65], + [2290,466], + [4001,4701], + [4003,19851], + [4005,8457], + [4007,5942], + [4009,2904], + [4011,829], + [4012,3321], + [4013,282952], + [4015,27645], + [4017,7964], + [4019,96814], + [4021,32337], + [4023,2019], + [4025,29228], + [4027,17246], + [5001,1599], + [5003,1584], + [5005,6248], + [5007,16837], + [5009,3417], + [5011,729], + [5013,512], + [5015,2653], + [5017,934], + [5019,1828], + [5021,1372], + [5023,3483], + [5025,535], + [5027,1710], + [5029,2149], + [5031,6670], + [5033,5557], + [5035,3376], + [5037,1293], + [5039,440], + [5041,753], + [5043,1466], + [5045,7962], + [5047,1686], + [5049,1342], + [5051,11237], + [5053,1777], + [5055,3556], + [5057,1542], + [5059,3567], + [5061,934], + [5063,3235], + [5065,1650], + [5067,1495], + [5069,6392], + [5071,1801], + [5073,672], + [5075,1402], + [5077,568], + [5079,1109], + [5081,1044], + [5083,2217], + [5085,6752], + [5087,1279], + [5089,2371], + [5091,3471], + [5093,3428], + [5095,719], + [5097,1128], + [5099,758], + [5101,911], + [5103,2447], + [5105,1111], + [5107,1663], + [5109,882], + [5111,2055], + [5113,2388], + [5115,4968], + [5117,739], + [5119,33031], + [5121,1695], + [5123,2160], + [5125,10734], + [5127,1154], + [5129,968], + [5131,10118], + [5133,1240], + [5135,2281], + [5137,1390], + [5139,3312], + [5141,1950], + [5143,13321], + [5145,6589], + [5147,522], + [5149,1753], + [6001,70376], + [6003,71], + [6005,5453], + [6007,21099], + [6009,5691], + [6011,1118], + [6013,63557], + [6015,3154], + [6017,17652], + [6019,45640], + [6021,1979], + [6023,10988], + [6025,6579], + [6027,1823], + [6029,47365], + [6031,12330], + [6033,7010], + [6035,3390], + [6037,368128], + [6039,8142], + [6041,16783], + [6043,2192], + [6045,6924], + [6047,12474], + [6049,1123], + [6051,691], + [6053,23096], + [6055,10214], + [6057,10362], + [6059,145036], + [6061,30868], + [6063,2675], + [6065,143216], + [6067,101397], + [6069,3069], + [6071,115631], + [6073,247737], + [6075,33078], + [6077,38183], + [6079,23513], + [6081,36246], + [6083,27966], + [6085,74371], + [6087,13729], + [6089,18336], + [6091,429], + [6093,4969], + [6095,36883], + [6097,33302], + [6099,27838], + [6101,6847], + [6103,5866], + [6105,1800], + [6107,19058], + [6109,6129], + [6111,51184], + [6113,10998], + [6115,6201], + [8001,27878], + [8003,1208], + [8005,43247], + [8007,1063], + [8009,317], + [8011,671], + [8013,16582], + [8014,4257], + [8015,2203], + [8017,102], + [8019,909], + [8021,655], + [8023,413], + [8025,788], + [8027,646], + [8029,3542], + [8031,35433], + [8033,206], + [8035,19437], + [8037,1861], + [8039,2492], + [8041,75738], + [8043,6748], + [8045,3724], + [8047,573], + [8049,1394], + [8051,1311], + [8053,72], + [8055,934], + [8057,191], + [8059,45334], + [8061,127], + [8063,826], + [8065,516], + [8067,4193], + [8069,22749], + [8071,1517], + [8073,752], + [8075,2433], + [8077,14641], + [8079,140], + [8081,1171], + [8083,2433], + [8085,3675], + [8087,1988], + [8089,1717], + [8091,414], + [8093,1954], + [8095,444], + [8097,1152], + [8099,812], + [8101,15127], + [8103,589], + [8105,963], + [8107,1344], + [8109,522], + [8111,74], + [8113,369], + [8115,276], + [8117,1331], + [8119,3368], + [8121,387], + [8123,17201], + [8125,588], + [9001,47938], + [9003,59155], + [9005,16630], + [9007,13699], + [9009,56502], + [9011,27415], + [9013,11338], + [9015,10470], + [10001,17572], + [10003,38905], + [10005,21718], + [11001,33139], + [12001,17438], + [12003,2219], + [12005,22640], + [12007,3210], + [12009,73906], + [12011,103651], + [12013,1484], + [12015,25981], + [12017,22409], + [12019,26552], + [12021,32535], + [12023,8563], + [12027,2957], + [12029,1942], + [12031,86673], + [12033,37381], + [12035,11871], + [12037,1536], + [12039,3478], + [12041,1723], + [12043,1274], + [12045,1881], + [12047,1390], + [12049,1467], + [12051,1811], + [12053,23812], + [12055,13900], + [12057,98846], + [12059,2168], + [12061,16453], + [12063,5459], + [12065,1673], + [12067,954], + [12069,37165], + [12071,68238], + [12073,19107], + [12075,5310], + [12077,578], + [12079,1669], + [12081,34539], + [12083,43783], + [12085,17950], + [12086,65602], + [12087,8046], + [12089,9014], + [12091,31529], + [12093,3708], + [12095,69870], + [12097,16660], + [12099,110723], + [12101,53642], + [12103,105071], + [12105,55380], + [12107,9030], + [12109,19062], + [12111,28421], + [12113,20737], + [12115,49766], + [12117,32749], + [12119,16493], + [12121,4431], + [12123,2357], + [12125,1749], + [12127,58480], + [12129,3301], + [12131,6350], + [12133,2541], + [13001,1189], + [13003,461], + [13005,578], + [13007,190], + [13009,3487], + [13011,1311], + [13013,4962], + [13015,6582], + [13017,1335], + [13019,1436], + [13021,12698], + [13023,1085], + [13025,1527], + [13027,1249], + [13029,3535], + [13031,4484], + [13033,1674], + [13035,1883], + [13037,503], + [13039,6108], + [13043,681], + [13045,7671], + [13047,4882], + [13049,1164], + [13051,24577], + [13053,765], + [13055,1647], + [13057,14727], + [13059,5720], + [13061,226], + [13063,19665], + [13065,339], + [13067,47766], + [13069,2747], + [13071,2522], + [13073,12752], + [13075,1292], + [13077,10921], + [13079,1064], + [13081,1641], + [13083,1393], + [13085,1985], + [13087,1637], + [13089,40569], + [13091,1710], + [13093,1182], + [13095,7477], + [13097,10457], + [13099,856], + [13101,245], + [13103,4629], + [13105,1468], + [13107,1452], + [13109,732], + [13111,2540], + [13113,12342], + [13115,7568], + [13117,9650], + [13119,1393], + [13121,48118], + [13123,2496], + [13125,331], + [13127,8409], + [13129,3336], + [13131,1670], + [13133,1302], + [13135,42310], + [13137,3078], + [13139,10877], + [13141,575], + [13143,1970], + [13145,3468], + [13147,1988], + [13149,940], + [13151,17026], + [13153,18255], + [13155,793], + [13157,3414], + [13159,903], + [13161,847], + [13163,1248], + [13165,453], + [13167,850], + [13169,2041], + [13171,1514], + [13173,613], + [13175,3841], + [13177,2228], + [13179,10139], + [13181,857], + [13183,1492], + [13185,9002], + [13187,2453], + [13189,1340], + [13191,1345], + [13193,971], + [13195,2339], + [13197,885], + [13199,1571], + [13201,426], + [13205,1665], + [13207,2120], + [13209,785], + [13211,1571], + [13213,2466], + [13215,21457], + [13217,7122], + [13219,1989], + [13221,991], + [13223,9551], + [13225,2127], + [13227,2662], + [13229,1744], + [13231,1368], + [13233,2860], + [13235,875], + [13237,2032], + [13239,234], + [13241,1723], + [13243,568], + [13245,21044], + [13247,6665], + [13249,275], + [13251,1060], + [13253,571], + [13255,5163], + [13257,2017], + [13259,325], + [13261,1800], + [13263,561], + [13265,143], + [13267,2022], + [13269,573], + [13271,766], + [13273,649], + [13275,3493], + [13277,2772], + [13279,2225], + [13281,1398], + [13283,378], + [13285,4564], + [13287,665], + [13289,571], + [13291,2523], + [13293,2293], + [13295,6467], + [13297,5895], + [13299,2919], + [13301,484], + [13303,1160], + [13305,2382], + [13307,145], + [13309,472], + [13311,2678], + [13313,5869], + [13315,746], + [13317,684], + [13319,665], + [13321,1825], + [15001,16975], + [15003,84228], + [15005,0], + [15007,4819], + [15009,10588], + [16001,32352], + [16003,459], + [16005,6047], + [16007,550], + [16009,988], + [16011,2760], + [16013,1421], + [16015,1020], + [16017,4584], + [16019,7182], + [16021,1457], + [16023,319], + [16025,120], + [16027,13347], + [16029,549], + [16031,1444], + [16033,49], + [16035,1032], + [16037,426], + [16039,4126], + [16041,963], + [16043,1162], + [16045,1739], + [16047,1301], + [16049,1944], + [16051,1492], + [16053,1386], + [16055,14027], + [16057,2566], + [16059,903], + [16061,567], + [16063,287], + [16065,1079], + [16067,1610], + [16069,4207], + [16071,426], + [16073,1097], + [16075,2103], + [16077,486], + [16079,1637], + [16081,377], + [16083,5836], + [16085,1331], + [16087,1253], + [17001,6420], + [17003,895], + [17005,1519], + [17007,3595], + [17009,393], + [17011,3209], + [17013,511], + [17015,1594], + [17017,1108], + [17019,11779], + [17021,3419], + [17023,1559], + [17025,1244], + [17027,3759], + [17029,4202], + [17031,244059], + [17033,2100], + [17035,1063], + [17037,6210], + [17039,1555], + [17041,1419], + [17043,47720], + [17045,1878], + [17047,674], + [17049,2934], + [17051,1702], + [17053,1500], + [17055,3934], + [17057,3477], + [17059,538], + [17061,1251], + [17063,3301], + [17065,758], + [17067,1902], + [17069,435], + [17071,875], + [17073,4609], + [17075,2434], + [17077,4612], + [17079,816], + [17081,3592], + [17083,2319], + [17085,2376], + [17087,1202], + [17089,25397], + [17091,8613], + [17093,5958], + [17095,4893], + [17097,38919], + [17099,9853], + [17101,1551], + [17103,3191], + [17105,3191], + [17107,2550], + [17109,2528], + [17111,18763], + [17113,10538], + [17115,9705], + [17117,4956], + [17119,25827], + [17121,3828], + [17123,1289], + [17125,1416], + [17127,1481], + [17129,1164], + [17131,1407], + [17133,2516], + [17135,3118], + [17137,3166], + [17139,1354], + [17141,4572], + [17143,14162], + [17145,1966], + [17147,1506], + [17149,1567], + [17151,394], + [17153,589], + [17155,622], + [17157,2984], + [17159,1463], + [17161,13730], + [17163,29965], + [17165,2450], + [17167,16265], + [17169,825], + [17171,519], + [17173,2249], + [17175,571], + [17177,4431], + [17179,11938], + [17181,1730], + [17183,7630], + [17185,885], + [17187,1331], + [17189,1505], + [17191,1529], + [17193,1391], + [17195,4803], + [17197,35611], + [17199,6649], + [17201,23171], + [17203,3180], + [18001,2168], + [18003,24566], + [18005,5603], + [18007,676], + [18009,1306], + [18011,3828], + [18013,1497], + [18015,1728], + [18017,3457], + [18019,8879], + [18021,2673], + [18023,2423], + [18025,922], + [18027,2261], + [18029,4103], + [18031,1933], + [18033,3385], + [18035,9062], + [18037,2774], + [18039,11703], + [18041,2274], + [18043,6184], + [18045,1360], + [18047,1966], + [18049,1826], + [18051,2805], + [18053,6195], + [18055,3270], + [18057,14695], + [18059,6077], + [18061,3704], + [18063,10941], + [18065,4642], + [18067,7418], + [18069,2768], + [18071,3312], + [18073,2757], + [18075,1539], + [18077,2601], + [18079,2489], + [18081,10054], + [18083,3135], + [18085,5507], + [18087,1685], + [18089,37140], + [18091,10183], + [18093,4205], + [18095,11487], + [18097,62348], + [18099,3506], + [18101,1030], + [18103,3708], + [18105,7376], + [18107,3088], + [18109,5272], + [18111,1399], + [18113,3605], + [18115,628], + [18117,1475], + [18119,2148], + [18121,1712], + [18123,1587], + [18125,1326], + [18127,12180], + [18129,2180], + [18131,960], + [18133,3207], + [18135,2113], + [18137,2345], + [18139,1706], + [18141,20344], + [18143,1750], + [18145,3886], + [18147,1985], + [18149,1918], + [18151,2901], + [18153,1913], + [18155,811], + [18157,10018], + [18159,1452], + [18161,517], + [18163,14557], + [18165,1536], + [18167,8828], + [18169,2907], + [18171,720], + [18173,5334], + [18175,2337], + [18177,6275], + [18179,2062], + [18181,2388], + [18183,2646], + [19001,791], + [19003,494], + [19005,1397], + [19007,970], + [19009,648], + [19011,2445], + [19013,10565], + [19015,2486], + [19017,2128], + [19019,1638], + [19021,1358], + [19023,1246], + [19025,1091], + [19027,1624], + [19029,1230], + [19031,1771], + [19033,3879], + [19035,1205], + [19037,1079], + [19039,776], + [19041,1488], + [19043,1813], + [19045,4835], + [19047,1128], + [19049,3990], + [19051,659], + [19053,656], + [19055,1452], + [19057,3694], + [19059,1616], + [19061,7217], + [19063,807], + [19065,2203], + [19067,1458], + [19069,828], + [19071,793], + [19073,872], + [19075,1110], + [19077,922], + [19079,1379], + [19081,970], + [19083,1682], + [19085,1463], + [19087,1613], + [19089,746], + [19091,1056], + [19093,716], + [19095,1345], + [19097,1922], + [19099,3298], + [19101,1250], + [19103,7024], + [19105,2180], + [19107,882], + [19109,1544], + [19111,3593], + [19113,17013], + [19115,918], + [19117,830], + [19119,766], + [19121,1322], + [19123,1767], + [19125,2670], + [19127,3956], + [19129,1684], + [19131,1250], + [19133,1117], + [19135,774], + [19137,902], + [19139,3143], + [19141,1207], + [19143,475], + [19145,1511], + [19147,1025], + [19149,2190], + [19151,852], + [19153,28262], + [19155,8581], + [19157,1682], + [19159,479], + [19161,943], + [19163,13361], + [19165,1079], + [19167,1964], + [19169,4837], + [19171,1538], + [19173,723], + [19175,1095], + [19177,801], + [19179,3058], + [19181,3958], + [19183,1897], + [19185,680], + [19187,3643], + [19189,1007], + [19191,1583], + [19193,7991], + [19195,709], + [19197,1269], + [20001,1342], + [20003,699], + [20005,1411], + [20007,513], + [20009,2155], + [20011,1306], + [20013,872], + [20015,6060], + [20017,252], + [20019,378], + [20021,1812], + [20023,286], + [20025,180], + [20027,1030], + [20029,992], + [20031,734], + [20033,161], + [20035,3173], + [20037,3078], + [20039,384], + [20041,2262], + [20043,716], + [20045,6417], + [20047,269], + [20049,318], + [20051,2233], + [20053,645], + [20055,1597], + [20057,1659], + [20059,2208], + [20061,4399], + [20063,253], + [20065,181], + [20067,296], + [20069,308], + [20071,96], + [20073,658], + [20075,189], + [20077,502], + [20079,2208], + [20081,156], + [20083,117], + [20085,1183], + [20087,1834], + [20089,405], + [20091,35734], + [20093,265], + [20095,910], + [20097,251], + [20099,1848], + [20101,132], + [20103,9602], + [20105,422], + [20107,872], + [20109,210], + [20111,2232], + [20113,2105], + [20115,1006], + [20117,960], + [20119,424], + [20121,2895], + [20123,485], + [20125,3296], + [20127,690], + [20129,244], + [20131,810], + [20133,1757], + [20135,288], + [20137,655], + [20139,1914], + [20141,404], + [20143,605], + [20145,844], + [20147,455], + [20149,1767], + [20151,873], + [20153,272], + [20155,5639], + [20157,517], + [20159,866], + [20161,5162], + [20163,505], + [20165,287], + [20167,621], + [20169,5366], + [20171,274], + [20173,39958], + [20175,1076], + [20177,16817], + [20179,257], + [20181,347], + [20183,459], + [20185,435], + [20187,104], + [20189,419], + [20191,2296], + [20193,541], + [20195,302], + [20197,648], + [20199,108], + [20201,610], + [20203,167], + [20205,913], + [20207,442], + [20209,10515], + [21001,1321], + [21003,1417], + [21005,1738], + [21007,736], + [21009,2800], + [21011,660], + [21013,1797], + [21015,8232], + [21017,1558], + [21019,4850], + [21021,2287], + [21023,514], + [21025,687], + [21027,1763], + [21029,6214], + [21031,999], + [21033,1141], + [21035,2595], + [21037,7066], + [21039,434], + [21041,787], + [21043,2066], + [21045,1234], + [21047,8159], + [21049,2811], + [21051,915], + [21053,660], + [21055,771], + [21057,528], + [21059,7837], + [21061,906], + [21063,461], + [21065,869], + [21067,19689], + [21069,1004], + [21071,2466], + [21073,4376], + [21075,640], + [21077,570], + [21079,1216], + [21081,1687], + [21083,2803], + [21085,1557], + [21087,913], + [21089,3389], + [21091,888], + [21093,14009], + [21095,2346], + [21097,1473], + [21099,1305], + [21101,3431], + [21103,1032], + [21105,437], + [21107,4055], + [21109,711], + [21111,57714], + [21113,3301], + [21115,1456], + [21117,11664], + [21119,992], + [21121,2353], + [21123,1138], + [21125,4331], + [21127,1040], + [21129,400], + [21131,433], + [21133,1198], + [21135,890], + [21137,2039], + [21139,812], + [21141,2172], + [21143,1083], + [21145,6158], + [21147,1218], + [21149,808], + [21151,5552], + [21153,506], + [21155,1286], + [21157,2972], + [21159,713], + [21161,1342], + [21163,3272], + [21165,465], + [21167,1632], + [21169,676], + [21171,914], + [21173,1866], + [21175,669], + [21177,2344], + [21179,3428], + [21181,426], + [21183,1767], + [21185,4566], + [21187,948], + [21189,397], + [21191,1017], + [21193,1800], + [21195,3810], + [21197,884], + [21199,5220], + [21201,164], + [21203,1192], + [21205,1203], + [21207,1445], + [21209,2907], + [21211,3709], + [21213,1186], + [21215,1245], + [21217,1736], + [21219,832], + [21221,1596], + [21223,623], + [21225,1194], + [21227,7769], + [21229,715], + [21231,1315], + [21233,975], + [21235,2413], + [21237,561], + [21239,2082], + [22001,3495], + [22003,1755], + [22005,6508], + [22007,1397], + [22009,2985], + [22011,3804], + [22013,1190], + [22015,13029], + [22017,21068], + [22019,15801], + [22021,801], + [22023,601], + [22025,736], + [22027,1342], + [22029,1174], + [22031,2059], + [22033,27875], + [22035,309], + [22037,1609], + [22039,1932], + [22041,1432], + [22043,2017], + [22045,4772], + [22047,2140], + [22049,1144], + [22051,30152], + [22053,2220], + [22055,14662], + [22057,4880], + [22059,1050], + [22061,2582], + [22063,8674], + [22065,1119], + [22067,1930], + [22069,2732], + [22071,17786], + [22073,10028], + [22075,1659], + [22077,1570], + [22079,11991], + [22081,610], + [22083,1209], + [22085,2134], + [22087,1316], + [22089,3310], + [22091,791], + [22093,1404], + [22095,3143], + [22097,4461], + [22099,2844], + [22101,3693], + [22103,21126], + [22105,8290], + [22107,377], + [22109,7229], + [22111,1524], + [22113,3421], + [22115,6073], + [22117,3659], + [22119,3491], + [22121,1460], + [22123,698], + [22125,1252], + [22127,1008], + [23001,11576], + [23003,7796], + [23005,23815], + [23007,2798], + [23009,5792], + [23011,13796], + [23013,4490], + [23015,4357], + [23017,6591], + [23019,14646], + [23021,2226], + [23023,4636], + [23025,5835], + [23027,4396], + [23029,4089], + [23031,20547], + [24001,7877], + [24003,56089], + [24005,63275], + [24009,8986], + [24011,2995], + [24013,13194], + [24015,9572], + [24017,16392], + [24019,3109], + [24021,18566], + [24023,2312], + [24025,23694], + [24027,19332], + [24029,2073], + [24031,52907], + [24033,64735], + [24035,4344], + [24037,12635], + [24039,2110], + [24041,4483], + [24043,13098], + [24045,7938], + [24047,5514], + [24510,40098], + [25001,25566], + [25003,11713], + [25005,37276], + [25007,1343], + [25009,47802], + [25011,6672], + [25013,35687], + [25015,10935], + [25017,83499], + [25019,599], + [25021,41798], + [25023,38895], + [25025,25698], + [25027,58496], + [26001,1816], + [26003,1179], + [26005,8682], + [26007,2888], + [26009,2629], + [26011,1580], + [26013,883], + [26015,5502], + [26017,9724], + [26019,1968], + [26021,12684], + [26023,3548], + [26025,12468], + [26027,4613], + [26029,2594], + [26031,3070], + [26033,4137], + [26035,3433], + [26037,4760], + [26039,1759], + [26041,4311], + [26043,2993], + [26045,8669], + [26047,2925], + [26049,32346], + [26051,3134], + [26053,2051], + [26055,7171], + [26057,3248], + [26059,4099], + [26061,3213], + [26063,3040], + [26065,16165], + [26067,5258], + [26069,3676], + [26071,1445], + [26073,4134], + [26075,13664], + [26077,16730], + [26079,1656], + [26081,36132], + [26083,393], + [26085,1503], + [26087,7056], + [26089,2378], + [26091,8569], + [26093,13382], + [26095,710], + [26097,1381], + [26099,60664], + [26101,2944], + [26103,7066], + [26105,3144], + [26107,3561], + [26109,2588], + [26111,6333], + [26113,1425], + [26115,12930], + [26117,5154], + [26119,1474], + [26121,14542], + [26123,4627], + [26125,73095], + [26127,2554], + [26129,2502], + [26131,1255], + [26133,2334], + [26135,1197], + [26137,2705], + [26139,15328], + [26141,1725], + [26143,3629], + [26145,15769], + [26147,13628], + [26149,4897], + [26151,3530], + [26153,878], + [26155,6047], + [26157,4686], + [26159,6506], + [26161,17629], + [26163,120005], + [26165,3323], + [27001,2367], + [27003,24779], + [27005,3375], + [27007,3648], + [27009,2926], + [27011,528], + [27013,4399], + [27015,2398], + [27017,3306], + [27019,5212], + [27021,3599], + [27023,1073], + [27025,4424], + [27027,4090], + [27029,958], + [27031,780], + [27033,939], + [27035,6332], + [27037,29315], + [27039,1534], + [27041,3809], + [27043,1426], + [27045,1771], + [27047,3124], + [27049,4097], + [27051,592], + [27053,70783], + [27055,1666], + [27057,2528], + [27059,2923], + [27061,4980], + [27063,888], + [27065,1606], + [27067,3489], + [27069,444], + [27071,1393], + [27073,679], + [27075,1263], + [27077,496], + [27079,2222], + [27081,590], + [27083,1747], + [27085,3086], + [27087,480], + [27089,881], + [27091,2125], + [27093,2237], + [27095,2346], + [27097,3006], + [27099,3494], + [27101,860], + [27103,1980], + [27105,1570], + [27107,685], + [27109,10111], + [27111,6116], + [27113,1157], + [27115,3269], + [27117,820], + [27119,2672], + [27121,1064], + [27123,31817], + [27125,367], + [27127,1455], + [27129,1386], + [27131,4159], + [27133,817], + [27135,1353], + [27137,19238], + [27139,7124], + [27141,6320], + [27143,1088], + [27145,11363], + [27147,2663], + [27149,635], + [27151,898], + [27153,2213], + [27155,400], + [27157,2037], + [27159,1345], + [27161,1661], + [27163,16194], + [27165,1020], + [27167,515], + [27169,3739], + [27171,8014], + [27173,984], + [28001,2247], + [28003,2695], + [28005,877], + [28007,1225], + [28009,459], + [28011,1630], + [28013,1031], + [28015,655], + [28017,736], + [28019,497], + [28021,433], + [28023,1368], + [28025,1172], + [28027,1405], + [28029,1963], + [28031,1765], + [28033,11518], + [28035,6468], + [28037,525], + [28039,1679], + [28041,869], + [28043,1523], + [28045,4323], + [28047,21543], + [28049,14908], + [28051,662], + [28053,566], + [28055,113], + [28057,1500], + [28059,14186], + [28061,1015], + [28063,411], + [28065,781], + [28067,4947], + [28069,547], + [28071,2414], + [28073,3690], + [28075,6469], + [28077,998], + [28079,1504], + [28081,5673], + [28083,1125], + [28085,2050], + [28087,5888], + [28089,5682], + [28091,1655], + [28093,2147], + [28095,2496], + [28097,891], + [28099,1907], + [28101,1861], + [28103,416], + [28105,2056], + [28107,1990], + [28109,5362], + [28111,1009], + [28113,2603], + [28115,1663], + [28117,1703], + [28119,466], + [28121,10880], + [28123,1570], + [28125,282], + [28127,1637], + [28129,1149], + [28131,1535], + [28133,1323], + [28135,532], + [28137,1791], + [28139,1325], + [28141,1681], + [28143,596], + [28145,1954], + [28147,834], + [28149,3348], + [28151,3134], + [28153,1227], + [28155,680], + [28157,577], + [28159,1384], + [28161,861], + [28163,1828], + [29001,1727], + [29003,1596], + [29005,694], + [29007,2116], + [29009,3365], + [29011,1192], + [29013,1449], + [29015,2316], + [29017,1376], + [29019,10616], + [29021,7853], + [29023,4364], + [29025,1025], + [29027,4169], + [29029,5689], + [29031,6626], + [29033,856], + [29035,495], + [29037,9579], + [29039,1838], + [29041,817], + [29043,6444], + [29045,694], + [29047,18750], + [29049,2167], + [29051,6625], + [29053,1559], + [29055,2293], + [29057,953], + [29059,1774], + [29061,740], + [29063,1368], + [29065,1748], + [29067,1403], + [29069,2616], + [29071,8787], + [29073,1432], + [29075,685], + [29077,24665], + [29079,879], + [29081,893], + [29083,2537], + [29085,1430], + [29087,492], + [29089,817], + [29091,4358], + [29093,1205], + [29095,52248], + [29097,8716], + [29099,18258], + [29101,5852], + [29103,360], + [29105,3539], + [29107,2817], + [29109,3550], + [29111,825], + [29113,4214], + [29115,1223], + [29117,1210], + [29119,2037], + [29121,1455], + [29123,1203], + [29125,834], + [29127,2398], + [29129,372], + [29131,2625], + [29133,1071], + [29135,1316], + [29137,1004], + [29139,1180], + [29141,2513], + [29143,1599], + [29145,5058], + [29147,1373], + [29149,1143], + [29151,1210], + [29153,1243], + [29155,1164], + [29157,1584], + [29159,3823], + [29161,4405], + [29163,1956], + [29165,8276], + [29167,2925], + [29169,6579], + [29171,417], + [29173,1058], + [29175,2150], + [29177,2007], + [29179,751], + [29181,1576], + [29183,27493], + [29185,1119], + [29186,1931], + [29187,6618], + [29189,78568], + [29195,1840], + [29197,345], + [29199,388], + [29201,3079], + [29203,675], + [29205,529], + [29207,2884], + [29209,4170], + [29211,544], + [29213,5229], + [29215,3024], + [29217,1699], + [29219,2753], + [29221,2081], + [29223,1306], + [29225,3065], + [29227,191], + [29229,1643], + [29510,21890], + [30001,1110], + [30003,790], + [30005,674], + [30007,668], + [30009,1100], + [30011,140], + [30013,11445], + [30015,584], + [30017,1220], + [30019,184], + [30021,1005], + [30023,1369], + [30025,203], + [30027,1336], + [30029,9307], + [30031,6293], + [30033,145], + [30035,979], + [30037,82], + [30039,407], + [30041,1570], + [30043,1339], + [30045,237], + [30047,3094], + [30049,6942], + [30051,196], + [30053,2483], + [30055,167], + [30057,985], + [30059,265], + [30061,550], + [30063,9325], + [30065,660], + [30067,1666], + [30069,76], + [30071,318], + [30073,594], + [30075,110], + [30077,1070], + [30079,125], + [30081,4401], + [30083,732], + [30085,690], + [30087,718], + [30089,1720], + [30091,385], + [30093,3423], + [30095,983], + [30097,492], + [30099,729], + [30101,702], + [30103,54], + [30105,754], + [30107,259], + [30109,102], + [30111,13917], + [31001,2580], + [31003,739], + [31005,37], + [31007,49], + [31009,44], + [31011,635], + [31013,1095], + [31015,213], + [31017,290], + [31019,3102], + [31021,822], + [31023,817], + [31025,3119], + [31027,802], + [31029,295], + [31031,528], + [31033,848], + [31035,502], + [31037,641], + [31039,737], + [31041,1007], + [31043,1250], + [31045,756], + [31047,1648], + [31049,297], + [31051,562], + [31053,3236], + [31055,35898], + [31057,178], + [31059,580], + [31061,385], + [31063,269], + [31065,500], + [31067,2286], + [31069,225], + [31071,182], + [31073,176], + [31075,36], + [31077,284], + [31079,4369], + [31081,944], + [31083,334], + [31085,105], + [31087,283], + [31089,791], + [31091,60], + [31093,696], + [31095,824], + [31097,486], + [31099,617], + [31101,805], + [31103,55], + [31105,401], + [31107,905], + [31109,20535], + [31111,3550], + [31113,43], + [31115,52], + [31117,40], + [31119,2741], + [31121,823], + [31123,413], + [31125,319], + [31127,725], + [31129,482], + [31131,1435], + [31133,261], + [31135,209], + [31137,805], + [31139,670], + [31141,2404], + [31143,498], + [31145,959], + [31147,1022], + [31149,186], + [31151,1005], + [31153,17896], + [31155,2028], + [31157,3005], + [31159,1061], + [31161,647], + [31163,345], + [31165,130], + [31167,407], + [31169,532], + [31171,66], + [31173,484], + [31175,444], + [31177,1756], + [31179,746], + [31181,383], + [31183,88], + [31185,1074], + [32001,3384], + [32003,156564], + [32005,5870], + [32007,3965], + [32009,217], + [32011,202], + [32013,1366], + [32015,492], + [32017,578], + [32019,6637], + [32021,720], + [32023,7083], + [32027,904], + [32029,646], + [32031,37610], + [32033,1234], + [32510,6609], + [33001,6891], + [33003,5654], + [33005,7574], + [33007,3919], + [33009,8541], + [33011,33402], + [33013,14250], + [33015,26042], + [33017,10910], + [33019,4528], + [34001,18358], + [34003,44145], + [34005,37650], + [34007,34046], + [34009,10417], + [34011,9810], + [34013,30285], + [34015,20521], + [34017,17045], + [34019,7620], + [34021,19981], + [34023,38958], + [34025,38754], + [34027,26985], + [34029,54274], + [34031,18524], + [34033,5586], + [34035,15181], + [34037,10179], + [34039,22772], + [34041,7584], + [35001,57104], + [35003,701], + [35005,5303], + [35006,2257], + [35007,1410], + [35009,4995], + [35011,158], + [35013,16184], + [35015,4314], + [35017,3570], + [35019,473], + [35021,105], + [35023,350], + [35025,4008], + [35027,2471], + [35028,1716], + [35029,2467], + [35031,3547], + [35033,547], + [35035,9410], + [35037,994], + [35039,3147], + [35041,1340], + [35043,12467], + [35045,8389], + [35047,2499], + [35049,11758], + [35051,2022], + [35053,1628], + [35055,2999], + [35057,1850], + [35059,386], + [35061,7171], + [36001,22342], + [36003,4521], + [36005,39625], + [36007,16633], + [36009,7802], + [36011,6879], + [36013,12658], + [36015,8608], + [36017,4585], + [36019,7545], + [36021,6261], + [36023,3755], + [36025,4709], + [36027,20715], + [36029,72766], + [36031,3898], + [36033,4204], + [36035,5130], + [36037,4766], + [36039,4897], + [36041,629], + [36043,5803], + [36045,10962], + [36047,58024], + [36049,2555], + [36051,4970], + [36053,6414], + [36055,48701], + [36057,4244], + [36059,70768], + [36061,49002], + [36063,19705], + [36065,21171], + [36067,34489], + [36069,9262], + [36071,25414], + [36073,3787], + [36075,10437], + [36077,5253], + [36079,5645], + [36081,65094], + [36083,13191], + [36085,22257], + [36087,13246], + [36089,8647], + [36091,18815], + [36093,12202], + [36095,2978], + [36097,1751], + [36099,3144], + [36101,10344], + [36103,93310], + [36105,5945], + [36107,4974], + [36109,5160], + [36111,13398], + [36113,6172], + [36115,6327], + [36117,7594], + [36119,45845], + [36121,3511], + [36123,2057], + [37001,11414], + [37003,2613], + [37005,921], + [37007,1824], + [37009,2270], + [37011,1573], + [37013,4572], + [37015,1224], + [37017,2488], + [37019,12943], + [37021,21585], + [37023,6965], + [37025,12744], + [37027,5897], + [37029,998], + [37031,8879], + [37033,1495], + [37035,12316], + [37037,5153], + [37039,2951], + [37041,1114], + [37043,1345], + [37045,7611], + [37047,4265], + [37049,13064], + [37051,43099], + [37053,2943], + [37055,3610], + [37057,12254], + [37059,3564], + [37061,3837], + [37063,15489], + [37065,3723], + [37067,25876], + [37069,4381], + [37071,16327], + [37073,1077], + [37075,776], + [37077,4796], + [37079,1626], + [37081,34328], + [37083,3828], + [37085,10500], + [37087,6773], + [37089,11888], + [37091,1526], + [37093,4301], + [37095,506], + [37097,11492], + [37099,3179], + [37101,11382], + [37103,1059], + [37105,5023], + [37107,5496], + [37109,6139], + [37111,3944], + [37113,4003], + [37115,1785], + [37117,1988], + [37119,54254], + [37121,1058], + [37123,2269], + [37125,9994], + [37127,7499], + [37129,17036], + [37131,1420], + [37133,21227], + [37135,6444], + [37137,1562], + [37139,4039], + [37141,5121], + [37143,1705], + [37145,3293], + [37147,10077], + [37149,2335], + [37151,11253], + [37153,3783], + [37155,7816], + [37157,7786], + [37159,11584], + [37161,5605], + [37163,4543], + [37165,2795], + [37167,4519], + [37169,3377], + [37171,5495], + [37173,1175], + [37175,4083], + [37177,343], + [37179,12571], + [37181,3272], + [37183,54158], + [37185,1851], + [37187,1075], + [37189,3040], + [37191,12345], + [37193,4802], + [37195,5704], + [37197,2704], + [37199,1298], + [38001,220], + [38003,1098], + [38005,413], + [38007,121], + [38009,782], + [38011,217], + [38013,221], + [38015,6383], + [38017,10287], + [38019,468], + [38021,511], + [38023,210], + [38025,302], + [38027,218], + [38029,340], + [38031,229], + [38033,140], + [38035,5716], + [38037,273], + [38039,300], + [38041,264], + [38043,225], + [38045,306], + [38047,155], + [38049,596], + [38051,275], + [38053,379], + [38055,968], + [38057,672], + [38059,2278], + [38061,790], + [38063,502], + [38065,188], + [38067,733], + [38069,334], + [38071,810], + [38073,465], + [38075,312], + [38077,1241], + [38079,674], + [38081,329], + [38083,140], + [38085,323], + [38087,53], + [38089,1933], + [38091,180], + [38093,1594], + [38095,200], + [38097,819], + [38099,1085], + [38101,6278], + [38103,310], + [38105,1879], + [39001,2028], + [39003,9234], + [39005,4475], + [39007,10272], + [39009,3943], + [39011,3781], + [39013,6744], + [39015,3930], + [39017,26540], + [39019,2376], + [39021,3593], + [39023,15098], + [39025,14788], + [39027,3919], + [39029,10153], + [39031,3687], + [39033,4166], + [39035,98038], + [39037,4233], + [39039,3328], + [39041,9840], + [39043,7795], + [39045,12039], + [39047,2532], + [39049,74441], + [39051,3293], + [39053,2269], + [39055,6732], + [39057,17914], + [39059,3644], + [39061,57190], + [39063,6150], + [39065,2330], + [39067,1418], + [39069,2325], + [39071,3834], + [39073,2768], + [39075,1567], + [39077,5010], + [39079,3124], + [39081,7591], + [39083,4703], + [39085,20830], + [39087,5602], + [39089,14910], + [39091,3699], + [39093,25636], + [39095,32483], + [39097,3751], + [39099,21527], + [39101,5762], + [39103,13999], + [39105,2373], + [39107,3438], + [39109,9375], + [39111,1630], + [39113,50392], + [39115,1465], + [39117,3119], + [39119,7165], + [39121,2032], + [39123,4225], + [39125,1596], + [39127,3006], + [39129,4440], + [39131,2287], + [39133,12507], + [39135,3610], + [39137,2091], + [39139,12370], + [39141,7779], + [39143,5770], + [39145,6867], + [39147,5027], + [39149,3770], + [39151,33877], + [39153,44511], + [39155,20274], + [39157,8523], + [39159,3139], + [39161,2297], + [39163,1089], + [39165,15791], + [39167,5972], + [39169,8616], + [39171,3282], + [39173,9747], + [39175,1897], + [40001,1907], + [40003,588], + [40005,1311], + [40007,401], + [40009,1514], + [40011,903], + [40013,3926], + [40015,2657], + [40017,10167], + [40019,3906], + [40021,3983], + [40023,1416], + [40025,186], + [40027,22076], + [40029,533], + [40031,16458], + [40033,625], + [40035,1424], + [40037,6364], + [40039,1748], + [40041,4722], + [40043,383], + [40045,338], + [40047,5277], + [40049,2116], + [40051,4295], + [40053,421], + [40055,611], + [40057,250], + [40059,325], + [40061,946], + [40063,1142], + [40065,3156], + [40067,499], + [40069,996], + [40071,4287], + [40073,1026], + [40075,865], + [40077,1028], + [40079,4255], + [40081,3595], + [40083,3518], + [40085,693], + [40087,2656], + [40089,2856], + [40091,2342], + [40093,656], + [40095,1545], + [40097,4392], + [40099,1514], + [40101,6537], + [40103,1023], + [40105,908], + [40107,1169], + [40109,61046], + [40111,3608], + [40113,4379], + [40115,3029], + [40117,1762], + [40119,4839], + [40121,5100], + [40123,2835], + [40125,6185], + [40127,1209], + [40129,243], + [40131,8793], + [40133,2052], + [40135,3496], + [40137,4775], + [40139,1126], + [40141,746], + [40143,45429], + [40145,6613], + [40147,5003], + [40149,823], + [40151,699], + [40153,1688], + [41001,2214], + [41003,6263], + [41005,31985], + [41007,4447], + [41009,5990], + [41011,9268], + [41013,2642], + [41015,3536], + [41017,15683], + [41019,14861], + [41021,189], + [41023,942], + [41025,824], + [41027,1361], + [41029,24692], + [41031,2271], + [41033,11039], + [41035,7683], + [41037,1091], + [41039,33378], + [41041,5472], + [41043,12641], + [41045,2920], + [41047,26606], + [41049,1135], + [41051,49244], + [41053,6398], + [41055,256], + [41057,3292], + [41059,6845], + [41061,2471], + [41063,935], + [41065,2767], + [41067,35476], + [41069,176], + [41071,8707], + [42001,9489], + [42003,104387], + [42005,6868], + [42007,17135], + [42009,4722], + [42011,32200], + [42013,13064], + [42015,6258], + [42017,44252], + [42019,16573], + [42021,15608], + [42023,593], + [42025,6558], + [42027,9870], + [42029,33394], + [42031,3634], + [42033,8555], + [42035,3818], + [42037,6003], + [42039,8558], + [42041,22134], + [42043,23736], + [42045,39171], + [42047,3171], + [42049,24117], + [42051,12655], + [42053,958], + [42055,14406], + [42057,1269], + [42059,4072], + [42061,4332], + [42063,7874], + [42065,4108], + [42067,1753], + [42069,19598], + [42071,36398], + [42073,8571], + [42075,12106], + [42077,27053], + [42079,30751], + [42081,11068], + [42083,4671], + [42085,11179], + [42087,4495], + [42089,14445], + [42091,56224], + [42093,1725], + [42095,24542], + [42097,9944], + [42099,4399], + [42101,84251], + [42103,5514], + [42105,2064], + [42107,15658], + [42109,2953], + [42111,7399], + [42113,769], + [42115,4542], + [42117,4504], + [42119,3604], + [42121,5580], + [42123,4632], + [42125,19573], + [42127,5849], + [42129,36110], + [42131,2507], + [42133,37003], + [44001,3826], + [44003,15826], + [44005,8852], + [44007,39150], + [44009,11322], + [45001,2151], + [45003,14548], + [45005,668], + [45007,15912], + [45009,1453], + [45011,1744], + [45013,18654], + [45015,20676], + [45017,1262], + [45019,32402], + [45021,4201], + [45023,2530], + [45025,3469], + [45027,3184], + [45029,3315], + [45031,4653], + [45033,1904], + [45035,14677], + [45037,2343], + [45039,2005], + [45041,10187], + [45043,6137], + [45045,32567], + [45047,5613], + [45049,1649], + [45051,27481], + [45053,1532], + [45055,6391], + [45057,5709], + [45059,5217], + [45061,1265], + [45063,23180], + [45065,1296], + [45067,2559], + [45069,2251], + [45071,2685], + [45073,7426], + [45075,6610], + [45077,8940], + [45079,34781], + [45081,1590], + [45083,21499], + [45085,11975], + [45087,2101], + [45089,1978], + [45091,16888], + [46003,254], + [46005,1582], + [46007,265], + [46009,671], + [46011,1833], + [46013,2852], + [46015,487], + [46017,118], + [46019,1128], + [46021,133], + [46023,730], + [46025,343], + [46027,904], + [46029,2397], + [46031,331], + [46033,1391], + [46035,1736], + [46037,705], + [46039,476], + [46041,307], + [46043,294], + [46045,398], + [46047,1850], + [46049,169], + [46051,610], + [46053,457], + [46055,194], + [46057,458], + [46059,303], + [46061,317], + [46063,71], + [46065,1314], + [46067,663], + [46069,143], + [46071,152], + [46073,210], + [46075,101], + [46077,498], + [46079,978], + [46081,2541], + [46083,2672], + [46085,365], + [46087,545], + [46089,203], + [46091,474], + [46093,3259], + [46095,93], + [46097,247], + [46099,12687], + [46101,666], + [46102,642], + [46103,11565], + [46105,241], + [46107,271], + [46109,973], + [46111,270], + [46115,498], + [46117,196], + [46119,100], + [46121,577], + [46123,504], + [46125,802], + [46127,1416], + [46129,608], + [46135,1740], + [46137,160], + [47001,8103], + [47003,3131], + [47005,1977], + [47007,1028], + [47009,11543], + [47011,7470], + [47013,3147], + [47015,1106], + [47017,2455], + [47019,5472], + [47021,2939], + [47023,1337], + [47025,2549], + [47027,611], + [47029,3495], + [47031,5052], + [47033,889], + [47035,6569], + [47037,39887], + [47039,1082], + [47041,1160], + [47043,3996], + [47045,3343], + [47047,2865], + [47049,1439], + [47051,3933], + [47053,3802], + [47055,2549], + [47057,1807], + [47059,5949], + [47061,923], + [47063,5268], + [47065,28136], + [47067,458], + [47069,2022], + [47071,2172], + [47073,5103], + [47075,1243], + [47077,2169], + [47079,3460], + [47081,1919], + [47083,828], + [47085,1695], + [47087,992], + [47089,4727], + [47091,1712], + [47093,31018], + [47095,771], + [47097,1804], + [47099,3194], + [47101,1185], + [47103,2822], + [47105,5526], + [47107,4650], + [47109,2187], + [47111,1321], + [47113,7118], + [47115,2262], + [47117,2540], + [47119,5993], + [47121,1219], + [47123,3412], + [47125,24461], + [47127,602], + [47129,1873], + [47131,2851], + [47133,1541], + [47135,704], + [47137,361], + [47139,1314], + [47141,5218], + [47143,2321], + [47145,6441], + [47147,4600], + [47149,18336], + [47151,1327], + [47153,1098], + [47155,7193], + [47157,62382], + [47159,1441], + [47161,1717], + [47163,15834], + [47165,12748], + [47167,5455], + [47169,647], + [47171,1855], + [47173,1025], + [47175,418], + [47177,2822], + [47179,12052], + [47181,1456], + [47183,2749], + [47185,2283], + [47187,10935], + [47189,9152], + [48001,5446], + [48003,929], + [48005,6786], + [48007,3259], + [48009,858], + [48011,214], + [48013,3061], + [48015,2377], + [48017,366], + [48019,3218], + [48021,6961], + [48023,387], + [48025,2360], + [48027,39775], + [48029,154071], + [48031,1112], + [48033,60], + [48035,2033], + [48037,8661], + [48039,21850], + [48041,8510], + [48043,681], + [48045,157], + [48047,349], + [48049,3796], + [48051,1412], + [48053,4497], + [48055,3019], + [48057,1865], + [48059,1404], + [48061,17314], + [48063,1058], + [48065,570], + [48067,3227], + [48069,408], + [48071,2439], + [48073,3852], + [48075,475], + [48077,905], + [48079,174], + [48081,329], + [48083,900], + [48085,42078], + [48087,229], + [48089,1495], + [48091,11892], + [48093,1295], + [48095,238], + [48097,3217], + [48099,9945], + [48101,168], + [48103,245], + [48105,215], + [48107,383], + [48109,139], + [48111,292], + [48113,112642], + [48115,633], + [48117,868], + [48119,544], + [48121,39355], + [48123,1909], + [48125,187], + [48127,469], + [48129,341], + [48131,746], + [48133,1902], + [48135,7730], + [48137,123], + [48139,9870], + [48141,48976], + [48143,2536], + [48145,1455], + [48147,3812], + [48149,2348], + [48151,324], + [48153,357], + [48155,130], + [48157,25352], + [48159,969], + [48161,1748], + [48163,908], + [48165,801], + [48167,23437], + [48169,241], + [48171,2997], + [48173,49], + [48175,714], + [48177,1373], + [48179,1828], + [48181,10176], + [48183,9298], + [48185,2557], + [48187,15332], + [48189,2067], + [48191,275], + [48193,818], + [48195,335], + [48197,425], + [48199,4531], + [48201,190111], + [48203,5576], + [48205,657], + [48207,466], + [48209,9987], + [48211,314], + [48213,7947], + [48215,24886], + [48217,3318], + [48219,1203], + [48221,6131], + [48223,2667], + [48225,1916], + [48227,2867], + [48229,209], + [48231,7914], + [48233,1982], + [48235,228], + [48237,740], + [48239,953], + [48241,3427], + [48243,260], + [48245,18373], + [48247,303], + [48249,2601], + [48251,11350], + [48253,2052], + [48255,1157], + [48257,7085], + [48259,3665], + [48261,16], + [48263,60], + [48265,6561], + [48267,581], + [48269,7], + [48271,397], + [48273,2302], + [48275,318], + [48277,4172], + [48279,813], + [48281,2987], + [48283,371], + [48285,1340], + [48287,1558], + [48289,2069], + [48291,6096], + [48293,1742], + [48295,231], + [48297,1125], + [48299,2807], + [48301,0], + [48303,17378], + [48305,312], + [48307,611], + [48309,17934], + [48311,124], + [48313,746], + [48315,1541], + [48317,247], + [48319,460], + [48321,3050], + [48323,1707], + [48325,4675], + [48327,314], + [48329,8857], + [48331,2225], + [48333,620], + [48335,753], + [48337,2010], + [48339,30570], + [48341,845], + [48343,1175], + [48345,111], + [48347,4081], + [48349,3544], + [48351,1363], + [48353,1157], + [48355,29871], + [48357,606], + [48359,127], + [48361,7640], + [48363,2572], + [48365,1721], + [48367,10594], + [48369,488], + [48371,1097], + [48373,4690], + [48375,7945], + [48377,380], + [48379,1030], + [48381,8909], + [48383,96], + [48385,358], + [48387,1198], + [48389,428], + [48391,578], + [48393,44], + [48395,1348], + [48397,5425], + [48399,885], + [48401,4761], + [48403,1784], + [48405,802], + [48407,2918], + [48409,6354], + [48411,512], + [48413,169], + [48415,928], + [48417,220], + [48419,1703], + [48421,233], + [48423,16653], + [48425,529], + [48427,1144], + [48429,879], + [48431,74], + [48433,142], + [48435,194], + [48437,551], + [48439,121190], + [48441,12234], + [48443,88], + [48445,540], + [48447,205], + [48449,1812], + [48451,9577], + [48453,54045], + [48455,1532], + [48457,2193], + [48459,3607], + [48461,257], + [48463,1737], + [48465,3025], + [48467,5085], + [48469,6237], + [48471,5383], + [48473,2558], + [48475,683], + [48477,2629], + [48479,5761], + [48481,2281], + [48483,359], + [48485,12564], + [48487,1093], + [48489,986], + [48491,32334], + [48493,4458], + [48495,338], + [48497,5096], + [48499,5336], + [48501,297], + [48503,1718], + [48505,448], + [48507,349], + [49001,391], + [49003,2936], + [49005,4539], + [49007,1665], + [49009,86], + [49011,20446], + [49013,1070], + [49015,695], + [49017,549], + [49019,654], + [49021,2931], + [49023,536], + [49025,654], + [49027,803], + [49029,713], + [49031,164], + [49033,149], + [49035,52386], + [49037,646], + [49039,1763], + [49041,1324], + [49043,1868], + [49045,3981], + [49047,1833], + [49049,17637], + [49051,971], + [49053,10649], + [49055,206], + [49057,17224], + [50001,2831], + [50003,3747], + [50005,3168], + [50007,9664], + [50009,786], + [50011,4054], + [50013,641], + [50015,1783], + [50017,2588], + [50019,2480], + [50021,6039], + [50023,4930], + [50025,4176], + [50027,5878], + [51001,3378], + [51003,7249], + [51005,1574], + [51007,1277], + [51009,2844], + [51011,1438], + [51013,13773], + [51015,7024], + [51017,336], + [51019,6854], + [51021,737], + [51023,3435], + [51025,1212], + [51027,1486], + [51029,1649], + [51031,4340], + [51033,2680], + [51035,2598], + [51036,844], + [51037,1291], + [51041,26368], + [51043,1364], + [51045,561], + [51047,4406], + [51049,860], + [51051,1193], + [51053,2420], + [51057,1061], + [51059,84750], + [51061,6894], + [51063,1399], + [51065,2468], + [51067,4929], + [51069,7040], + [51071,1609], + [51073,4667], + [51075,2066], + [51077,1499], + [51079,1520], + [51081,1114], + [51083,3056], + [51085,8946], + [51087,22644], + [51089,4720], + [51091,281], + [51093,4075], + [51095,8660], + [51097,639], + [51099,2947], + [51101,1370], + [51103,1530], + [51105,1742], + [51107,18530], + [51109,3260], + [51111,1472], + [51113,1277], + [51115,1084], + [51117,3223], + [51119,1389], + [51121,5432], + [51125,1537], + [51127,1766], + [51131,1127], + [51133,1629], + [51135,1436], + [51137,3989], + [51139,2267], + [51141,1611], + [51143,5358], + [51145,3416], + [51147,1540], + [51149,4110], + [51153,37705], + [51155,3810], + [51157,874], + [51159,832], + [51161,8839], + [51163,2530], + [51165,5433], + [51167,1601], + [51169,1847], + [51171,4361], + [51173,2688], + [51175,2178], + [51177,12941], + [51179,16054], + [51181,665], + [51183,1063], + [51185,3620], + [51187,3817], + [51191,4789], + [51193,1943], + [51195,3333], + [51197,2404], + [51199,9956], + [51510,12125], + [51520,1739], + [51530,639], + [51540,2047], + [51550,27717], + [51570,2179], + [51580,693], + [51590,4590], + [51595,342], + [51600,1964], + [51610,804], + [51620,750], + [51630,1765], + [51640,980], + [51650,20814], + [51660,1815], + [51670,2216], + [51678,368], + [51680,6213], + [51683,2607], + [51685,779], + [51690,1431], + [51700,23583], + [51710,29523], + [51720,248], + [51730,2905], + [51735,1415], + [51740,10632], + [51750,786], + [51760,13258], + [51770,8392], + [51775,2265], + [51790,2241], + [51800,10053], + [51810,61118], + [51820,1944], + [51830,904], + [51840,1699], + [53001,903], + [53003,2471], + [53005,15727], + [53007,5834], + [53009,9814], + [53011,36485], + [53013,526], + [53015,10719], + [53017,3207], + [53019,962], + [53021,3329], + [53023,279], + [53025,6465], + [53027,7994], + [53029,12681], + [53031,4854], + [53033,126726], + [53035,36294], + [53037,3481], + [53039,2263], + [53041,8670], + [53043,1444], + [53045,8425], + [53047,3878], + [53049,3229], + [53051,1683], + [53053,87888], + [53055,1829], + [53057,12714], + [53059,1276], + [53061,60605], + [53063,48273], + [53065,5702], + [53067,29243], + [53069,585], + [53071,5980], + [53073,16661], + [53075,2737], + [53077,15901], + [54001,1357], + [54003,10883], + [54005,1933], + [54007,1625], + [54009,2549], + [54011,8727], + [54013,645], + [54015,733], + [54017,880], + [54019,4311], + [54021,726], + [54023,1026], + [54025,3817], + [54027,1669], + [54029,3333], + [54031,1093], + [54033,6933], + [54035,2650], + [54037,4711], + [54039,17584], + [54041,1688], + [54043,1562], + [54045,3283], + [54047,1485], + [54049,5071], + [54051,3509], + [54053,2577], + [54055,6052], + [54057,2976], + [54059,1777], + [54061,5990], + [54063,1047], + [54065,1703], + [54067,2402], + [54069,3997], + [54071,770], + [54073,639], + [54075,803], + [54077,3231], + [54079,5072], + [54081,7928], + [54083,3202], + [54085,1128], + [54087,1472], + [54089,1410], + [54091,1629], + [54093,686], + [54095,1154], + [54097,2114], + [54099,3893], + [54101,886], + [54103,1548], + [54105,578], + [54107,8600], + [54109,1847], + [55001,2633], + [55003,1610], + [55005,4433], + [55007,1779], + [55009,17974], + [55011,1234], + [55013,1871], + [55015,3328], + [55017,5750], + [55019,2513], + [55021,4838], + [55023,1445], + [55025,29264], + [55027,7540], + [55029,2812], + [55031,4237], + [55033,3093], + [55035,7345], + [55037,598], + [55039,8482], + [55041,1088], + [55043,3866], + [55045,2815], + [55047,1681], + [55049,1626], + [55051,738], + [55053,2035], + [55055,6892], + [55057,2888], + [55059,13826], + [55061,1817], + [55063,9108], + [55065,1035], + [55067,2196], + [55069,2960], + [55071,7314], + [55073,10640], + [55075,4449], + [55077,1743], + [55078,449], + [55079,58065], + [55081,5248], + [55083,3572], + [55085,4599], + [55087,13006], + [55089,6886], + [55091,648], + [55093,2739], + [55095,4097], + [55097,5098], + [55099,1683], + [55101,15333], + [55103,1511], + [55105,13025], + [55107,1579], + [55109,6301], + [55111,5034], + [55113,1742], + [55115,4157], + [55117,9606], + [55119,1526], + [55121,2177], + [55123,2474], + [55125,2855], + [55127,7664], + [55129,1713], + [55131,9075], + [55133,27988], + [55135,5398], + [55137,2768], + [55139,13985], + [55141,6768], + [56001,2289], + [56003,1259], + [56005,2776], + [56007,1742], + [56009,1507], + [56011,692], + [56013,3643], + [56015,1253], + [56017,622], + [56019,1202], + [56021,11653], + [56023,1368], + [56025,6485], + [56027,215], + [56029,3091], + [56031,1042], + [56033,3305], + [56035,790], + [56037,3888], + [56039,1343], + [56041,1595], + [56043,819], + [56045,671] + ] +} diff --git a/data/regional/united-states/military/veterans/us-military-veterans-2017.json b/data/regional/united-states/military/veterans/us-military-veterans-2017.json new file mode 100644 index 0000000..8f42019 --- /dev/null +++ b/data/regional/united-states/military/veterans/us-military-veterans-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Veterans", + "description" : "Percent of the population that are veterans.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "military", + "tags" : ["regional","us","counties","military","soldier","veterans"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.military.veterans.2017"], + [1001,0.126], + [1003,0.119], + [1005,0.08], + [1007,0.074], + [1009,0.096], + [1011,0.045], + [1013,0.084], + [1015,0.109], + [1017,0.092], + [1019,0.113], + [1021,0.09], + [1023,0.092], + [1025,0.065], + [1027,0.087], + [1029,0.062], + [1031,0.168], + [1033,0.095], + [1035,0.076], + [1037,0.112], + [1039,0.11], + [1041,0.086], + [1043,0.078], + [1045,0.18], + [1047,0.072], + [1049,0.071], + [1051,0.115], + [1053,0.086], + [1055,0.093], + [1057,0.09], + [1059,0.055], + [1061,0.104], + [1063,0.053], + [1065,0.057], + [1067,0.095], + [1069,0.105], + [1071,0.083], + [1073,0.076], + [1075,0.078], + [1077,0.09], + [1079,0.059], + [1081,0.08], + [1083,0.097], + [1085,0.049], + [1087,0.085], + [1089,0.118], + [1091,0.066], + [1093,0.067], + [1095,0.091], + [1097,0.089], + [1099,0.084], + [1101,0.098], + [1103,0.089], + [1105,0.058], + [1107,0.09], + [1109,0.074], + [1111,0.088], + [1113,0.133], + [1115,0.093], + [1117,0.081], + [1119,0.052], + [1121,0.082], + [1123,0.094], + [1125,0.067], + [1127,0.083], + [1129,0.066], + [1131,0.053], + [1133,0.079], + [2013,0.037], + [2016,0.052], + [2020,0.129], + [2050,0.059], + [2060,0.118], + [2068,0.074], + [2070,0.049], + [2090,0.16], + [2100,0.074], + [2105,0.118], + [2110,0.095], + [2122,0.12], + [2130,0.111], + [2150,0.102], + [2158,null], + [2164,0.056], + [2170,0.145], + [2180,0.072], + [2185,0.088], + [2188,0.059], + [2195,0.091], + [2198,0.115], + [2220,0.105], + [2230,0.078], + [2240,0.166], + [2261,0.156], + [2275,0.124], + [2282,0.094], + [2290,0.084], + [4001,0.056], + [4003,0.187], + [4005,0.066], + [4007,0.13], + [4009,0.079], + [4011,0.106], + [4012,0.148], + [4013,0.081], + [4015,0.147], + [4017,0.096], + [4019,0.109], + [4021,0.111], + [4023,0.051], + [4025,0.143], + [4027,0.101], + [5001,0.079], + [5003,0.061], + [5005,0.137], + [5007,0.085], + [5009,0.117], + [5011,0.074], + [5013,0.105], + [5015,0.117], + [5017,0.075], + [5019,0.075], + [5021,0.097], + [5023,0.13], + [5025,0.087], + [5027,0.076], + [5029,0.096], + [5031,0.073], + [5033,0.095], + [5035,0.073], + [5037,0.073], + [5039,0.099], + [5041,0.069], + [5043,0.074], + [5045,0.079], + [5047,0.11], + [5049,0.125], + [5051,0.121], + [5053,0.107], + [5055,0.093], + [5057,0.072], + [5059,0.091], + [5061,0.075], + [5063,0.085], + [5065,0.139], + [5067,0.083], + [5069,0.079], + [5071,0.097], + [5073,0.071], + [5075,0.09], + [5077,0.048], + [5079,0.061], + [5081,0.1], + [5083,0.09], + [5085,0.131], + [5087,0.08], + [5089,0.143], + [5091,0.098], + [5093,0.071], + [5095,0.086], + [5097,0.113], + [5099,0.067], + [5101,0.104], + [5103,0.09], + [5105,0.099], + [5107,0.068], + [5109,0.097], + [5111,0.064], + [5113,0.129], + [5115,0.088], + [5117,0.097], + [5119,0.096], + [5121,0.098], + [5123,0.078], + [5125,0.106], + [5127,0.103], + [5129,0.099], + [5131,0.089], + [5133,0.084], + [5135,0.146], + [5137,0.115], + [5139,0.08], + [5141,0.113], + [5143,0.067], + [5145,0.091], + [5147,0.108], + [5149,0.071], + [6001,0.042], + [6003,0.124], + [6005,0.133], + [6007,0.087], + [6009,0.122], + [6011,0.053], + [6013,0.057], + [6015,0.094], + [6017,0.098], + [6019,0.054], + [6021,0.062], + [6023,0.081], + [6025,0.045], + [6027,0.106], + [6029,0.061], + [6031,0.096], + [6033,0.107], + [6035,0.089], + [6037,0.036], + [6039,0.064], + [6041,0.059], + [6043,0.112], + [6045,0.093], + [6047,0.055], + [6049,0.095], + [6051,0.057], + [6053,0.057], + [6055,0.073], + [6057,0.106], + [6059,0.047], + [6061,0.094], + [6063,0.127], + [6065,0.072], + [6067,0.072], + [6069,0.055], + [6071,0.061], + [6073,0.091], + [6075,0.033], + [6077,0.058], + [6079,0.077], + [6081,0.044], + [6083,0.067], + [6085,0.038], + [6087,0.049], + [6089,0.105], + [6091,0.098], + [6093,0.117], + [6095,0.101], + [6097,0.071], + [6099,0.057], + [6101,0.091], + [6103,0.094], + [6105,0.126], + [6107,0.045], + [6109,0.11], + [6111,0.065], + [6113,0.051], + [6115,0.118], + [8001,0.075], + [8003,0.078], + [8005,0.083], + [8007,0.121], + [8009,0.095], + [8011,0.099], + [8013,0.057], + [8014,0.083], + [8015,0.127], + [8017,0.063], + [8019,0.098], + [8021,0.091], + [8023,0.151], + [8025,0.099], + [8027,0.203], + [8029,0.131], + [8031,0.055], + [8033,0.116], + [8035,0.082], + [8037,0.05], + [8039,0.12], + [8041,0.176], + [8043,0.141], + [8045,0.065], + [8047,0.15], + [8049,0.116], + [8051,0.062], + [8053,0.118], + [8055,0.155], + [8057,0.15], + [8059,0.087], + [8061,0.055], + [8063,0.093], + [8065,0.077], + [8067,0.083], + [8069,0.079], + [8071,0.098], + [8073,0.08], + [8075,0.094], + [8077,0.102], + [8079,0.112], + [8081,0.085], + [8083,0.103], + [8085,0.111], + [8087,0.066], + [8089,0.089], + [8091,0.107], + [8093,0.135], + [8095,0.105], + [8097,0.046], + [8099,0.075], + [8101,0.113], + [8103,0.096], + [8105,0.073], + [8107,0.063], + [8109,0.103], + [8111,0.04], + [8113,0.056], + [8115,0.11], + [8117,0.047], + [8119,0.161], + [8121,0.084], + [8123,0.077], + [8125,0.081], + [9001,0.047], + [9003,0.061], + [9005,0.081], + [9007,0.08], + [9009,0.06], + [9011,0.108], + [9013,0.071], + [9015,0.087], + [10001,0.133], + [10003,0.071], + [10005,0.108], + [11001,0.05], + [12001,0.073], + [12003,0.103], + [12005,0.159], + [12007,0.126], + [12009,0.142], + [12011,0.053], + [12013,0.096], + [12015,0.149], + [12017,0.163], + [12019,0.17], + [12021,0.097], + [12023,0.139], + [12027,0.08], + [12029,0.136], + [12031,0.119], + [12033,0.143], + [12035,0.13], + [12037,0.109], + [12039,0.1], + [12041,0.115], + [12043,0.099], + [12045,0.11], + [12047,0.088], + [12049,0.068], + [12051,0.067], + [12053,0.129], + [12055,0.141], + [12057,0.089], + [12059,0.108], + [12061,0.122], + [12063,0.111], + [12065,0.1], + [12067,0.075], + [12069,0.125], + [12071,0.102], + [12073,0.068], + [12075,0.143], + [12077,0.066], + [12079,0.074], + [12081,0.111], + [12083,0.128], + [12085,0.115], + [12086,0.023], + [12087,0.111], + [12089,0.139], + [12091,0.227], + [12093,0.097], + [12095,0.062], + [12097,0.063], + [12099,0.074], + [12101,0.117], + [12103,0.11], + [12105,0.095], + [12107,0.126], + [12109,0.113], + [12111,0.105], + [12113,0.185], + [12115,0.123], + [12117,0.075], + [12119,0.179], + [12121,0.124], + [12123,0.092], + [12125,0.146], + [12127,0.119], + [12129,0.112], + [12131,0.117], + [12133,0.109], + [13001,0.076], + [13003,0.076], + [13005,0.078], + [13007,0.048], + [13009,0.072], + [13011,0.091], + [13013,0.081], + [13015,0.087], + [13017,0.059], + [13019,0.089], + [13021,0.082], + [13023,0.08], + [13025,0.079], + [13027,0.117], + [13029,0.144], + [13031,0.067], + [13033,0.099], + [13035,0.079], + [13037,0.065], + [13039,0.182], + [13043,0.115], + [13045,0.075], + [13047,0.078], + [13049,0.091], + [13051,0.108], + [13053,0.198], + [13055,0.069], + [13057,0.081], + [13059,0.044], + [13061,0.084], + [13063,0.086], + [13065,0.069], + [13067,0.076], + [13069,0.063], + [13071,0.067], + [13073,0.155], + [13075,0.078], + [13077,0.095], + [13079,0.095], + [13081,0.074], + [13083,0.081], + [13085,0.077], + [13087,0.062], + [13089,0.068], + [13091,0.072], + [13093,0.097], + [13095,0.088], + [13097,0.092], + [13099,0.058], + [13101,0.047], + [13103,0.121], + [13105,0.103], + [13107,0.075], + [13109,0.098], + [13111,0.106], + [13113,0.126], + [13115,0.089], + [13117,0.07], + [13119,0.059], + [13121,0.056], + [13123,0.105], + [13125,0.069], + [13127,0.108], + [13129,0.075], + [13131,0.084], + [13133,0.089], + [13135,0.059], + [13137,0.086], + [13139,0.069], + [13141,0.059], + [13143,0.077], + [13145,0.127], + [13147,0.074], + [13149,0.092], + [13151,0.104], + [13153,0.16], + [13155,0.059], + [13157,0.088], + [13159,0.088], + [13161,0.057], + [13163,0.073], + [13165,0.081], + [13167,0.096], + [13169,0.101], + [13171,0.091], + [13173,0.134], + [13175,0.095], + [13177,0.102], + [13179,0.249], + [13181,0.111], + [13183,0.172], + [13185,0.102], + [13187,0.094], + [13189,0.1], + [13191,0.153], + [13193,0.068], + [13195,0.081], + [13197,0.125], + [13199,0.072], + [13201,0.074], + [13205,0.087], + [13207,0.092], + [13209,0.063], + [13211,0.09], + [13213,0.063], + [13215,0.147], + [13217,0.095], + [13219,0.082], + [13221,0.097], + [13223,0.088], + [13225,0.104], + [13227,0.112], + [13229,0.09], + [13231,0.083], + [13233,0.09], + [13235,0.075], + [13237,0.101], + [13239,0.104], + [13241,0.1], + [13243,0.053], + [13245,0.131], + [13247,0.093], + [13249,0.089], + [13251,0.086], + [13253,0.087], + [13255,0.091], + [13257,0.084], + [13259,0.063], + [13261,0.066], + [13263,0.102], + [13265,0.07], + [13267,0.094], + [13269,0.067], + [13271,0.067], + [13273,0.067], + [13275,0.091], + [13277,0.063], + [13279,0.082], + [13281,0.12], + [13283,0.097], + [13285,0.083], + [13287,0.107], + [13289,0.077], + [13291,0.107], + [13293,0.088], + [13295,0.078], + [13297,0.077], + [13299,0.085], + [13301,0.061], + [13303,0.071], + [13305,0.109], + [13307,0.056], + [13309,0.067], + [13311,0.105], + [13313,0.055], + [13315,0.083], + [13317,0.068], + [13319,0.063], + [13321,0.082], + [15001,0.099], + [15003,0.106], + [15005,0.063], + [15007,0.074], + [15009,0.071], + [16001,0.089], + [16003,0.15], + [16005,0.081], + [16007,0.081], + [16009,0.149], + [16011,0.07], + [16013,0.081], + [16015,0.148], + [16017,0.134], + [16019,0.084], + [16021,0.139], + [16023,0.12], + [16025,0.133], + [16027,0.091], + [16029,0.085], + [16031,0.065], + [16033,0.034], + [16035,0.164], + [16037,0.112], + [16039,0.254], + [16041,0.066], + [16043,0.082], + [16045,0.145], + [16047,0.087], + [16049,0.142], + [16051,0.083], + [16053,0.085], + [16055,0.107], + [16057,0.069], + [16059,0.127], + [16061,0.144], + [16063,0.091], + [16065,0.029], + [16067,0.073], + [16069,0.104], + [16071,0.081], + [16073,0.087], + [16075,0.096], + [16077,0.109], + [16079,0.135], + [16081,0.05], + [16083,0.096], + [16085,0.104], + [16087,0.112], + [17001,0.09], + [17003,0.088], + [17005,0.087], + [17007,0.082], + [17009,0.074], + [17011,0.093], + [17013,0.104], + [17015,0.099], + [17017,0.091], + [17019,0.056], + [17021,0.113], + [17023,0.091], + [17025,0.089], + [17027,0.102], + [17029,0.075], + [17031,0.043], + [17033,0.088], + [17035,0.086], + [17037,0.062], + [17039,0.095], + [17041,0.082], + [17043,0.049], + [17045,0.091], + [17047,0.092], + [17049,0.073], + [17051,0.085], + [17053,0.092], + [17055,0.102], + [17057,0.093], + [17059,0.096], + [17061,0.104], + [17063,0.082], + [17065,0.081], + [17067,0.103], + [17069,0.094], + [17071,0.118], + [17073,0.093], + [17075,0.093], + [17077,0.072], + [17079,0.066], + [17081,0.099], + [17083,0.116], + [17085,0.107], + [17087,0.104], + [17089,0.055], + [17091,0.083], + [17093,0.063], + [17095,0.089], + [17097,0.059], + [17099,0.089], + [17101,0.078], + [17103,0.085], + [17105,0.09], + [17107,0.087], + [17109,0.078], + [17111,0.067], + [17113,0.066], + [17115,0.093], + [17117,0.104], + [17119,0.103], + [17121,0.1], + [17123,0.11], + [17125,0.118], + [17127,0.097], + [17129,0.121], + [17131,0.111], + [17133,0.084], + [17135,0.102], + [17137,0.096], + [17139,0.1], + [17141,0.09], + [17143,0.075], + [17145,0.091], + [17147,0.104], + [17149,0.09], + [17151,0.135], + [17153,0.111], + [17155,0.08], + [17157,0.089], + [17159,0.095], + [17161,0.089], + [17163,0.131], + [17165,0.092], + [17167,0.088], + [17169,0.106], + [17171,0.106], + [17173,0.106], + [17175,0.091], + [17177,0.096], + [17179,0.089], + [17181,0.105], + [17183,0.093], + [17185,0.112], + [17187,0.077], + [17189,0.097], + [17191,0.097], + [17193,0.097], + [17195,0.098], + [17197,0.061], + [17199,0.103], + [17201,0.084], + [17203,0.09], + [18001,0.068], + [18003,0.074], + [18005,0.065], + [18007,0.072], + [18009,0.097], + [18011,0.069], + [18013,0.137], + [18015,0.097], + [18017,0.088], + [18019,0.095], + [18021,0.083], + [18023,0.069], + [18025,0.103], + [18027,0.084], + [18029,0.091], + [18031,0.067], + [18033,0.084], + [18035,0.07], + [18037,0.078], + [18039,0.062], + [18041,0.098], + [18043,0.088], + [18045,0.079], + [18047,0.077], + [18049,0.092], + [18051,0.079], + [18053,0.084], + [18055,0.083], + [18057,0.061], + [18059,0.109], + [18061,0.095], + [18063,0.086], + [18065,0.087], + [18067,0.102], + [18069,0.081], + [18071,0.068], + [18073,0.086], + [18075,0.072], + [18077,0.099], + [18079,0.107], + [18081,0.085], + [18083,0.087], + [18085,0.079], + [18087,0.059], + [18089,0.077], + [18091,0.09], + [18093,0.107], + [18095,0.091], + [18097,0.072], + [18099,0.083], + [18101,0.111], + [18103,0.109], + [18105,0.053], + [18107,0.079], + [18109,0.101], + [18111,0.087], + [18113,0.081], + [18115,0.114], + [18117,0.089], + [18119,0.095], + [18121,0.103], + [18123,0.086], + [18125,0.087], + [18127,0.077], + [18129,0.096], + [18131,0.1], + [18133,0.085], + [18135,0.081], + [18137,0.103], + [18139,0.084], + [18141,0.07], + [18143,0.076], + [18145,0.092], + [18147,0.099], + [18149,0.082], + [18151,0.086], + [18153,0.082], + [18155,0.12], + [18157,0.054], + [18159,0.106], + [18161,0.115], + [18163,0.082], + [18165,0.106], + [18167,0.087], + [18169,0.085], + [18171,0.102], + [18173,0.084], + [18175,0.103], + [18177,0.098], + [18179,0.083], + [18181,0.097], + [18183,0.094], + [19001,0.098], + [19003,0.079], + [19005,0.094], + [19007,0.096], + [19009,0.097], + [19011,0.094], + [19013,0.074], + [19015,0.09], + [19017,0.08], + [19019,0.087], + [19021,0.071], + [19023,0.085], + [19025,0.101], + [19027,0.083], + [19029,0.096], + [19031,0.106], + [19033,0.097], + [19035,0.099], + [19037,0.099], + [19039,0.095], + [19041,0.091], + [19043,0.103], + [19045,0.105], + [19047,0.075], + [19049,0.067], + [19051,0.085], + [19053,0.081], + [19055,0.074], + [19057,0.103], + [19059,0.091], + [19061,0.077], + [19063,0.074], + [19065,0.092], + [19067,0.108], + [19069,0.077], + [19071,0.108], + [19073,0.094], + [19075,0.079], + [19077,0.097], + [19079,0.085], + [19081,0.092], + [19083,0.094], + [19085,0.1], + [19087,0.089], + [19089,0.086], + [19091,0.104], + [19093,0.106], + [19095,0.096], + [19097,0.104], + [19099,0.094], + [19101,0.074], + [19103,0.047], + [19105,0.101], + [19107,0.089], + [19109,0.11], + [19111,0.103], + [19113,0.085], + [19115,0.08], + [19117,0.097], + [19119,0.074], + [19121,0.072], + [19123,0.077], + [19125,0.073], + [19127,0.094], + [19129,0.085], + [19131,0.091], + [19133,0.108], + [19135,0.079], + [19137,0.094], + [19139,0.068], + [19141,0.094], + [19143,0.089], + [19145,0.083], + [19147,0.098], + [19149,0.088], + [19151,0.111], + [19153,0.068], + [19155,0.096], + [19157,0.073], + [19159,0.081], + [19161,0.09], + [19163,0.091], + [19165,0.1], + [19167,0.058], + [19169,0.05], + [19171,0.086], + [19173,0.091], + [19175,0.1], + [19177,0.104], + [19179,0.088], + [19181,0.093], + [19183,0.079], + [19185,0.095], + [19187,0.089], + [19189,0.078], + [19191,0.069], + [19193,0.078], + [19195,0.1], + [19197,0.09], + [20001,0.107], + [20003,0.104], + [20005,0.082], + [20007,0.091], + [20009,0.087], + [20011,0.086], + [20013,0.106], + [20015,0.095], + [20017,0.093], + [20019,0.092], + [20021,0.083], + [20023,0.105], + [20025,0.085], + [20027,0.149], + [20029,0.096], + [20031,0.096], + [20033,0.069], + [20035,0.093], + [20037,0.076], + [20039,0.099], + [20041,0.135], + [20043,0.098], + [20045,0.053], + [20047,0.076], + [20049,0.124], + [20051,0.07], + [20053,0.087], + [20055,0.041], + [20057,0.05], + [20059,0.087], + [20061,0.231], + [20063,0.073], + [20065,0.092], + [20067,0.036], + [20069,0.055], + [20071,0.09], + [20073,0.116], + [20075,0.041], + [20077,0.089], + [20079,0.079], + [20081,0.034], + [20083,0.082], + [20085,0.118], + [20087,0.105], + [20089,0.113], + [20091,0.069], + [20093,0.058], + [20095,0.094], + [20097,0.078], + [20099,0.077], + [20101,0.102], + [20103,0.166], + [20105,0.102], + [20107,0.114], + [20109,0.112], + [20111,0.07], + [20113,0.074], + [20115,0.088], + [20117,0.1], + [20119,0.062], + [20121,0.092], + [20123,0.095], + [20125,0.102], + [20127,0.133], + [20129,0.059], + [20131,0.089], + [20133,0.084], + [20135,0.105], + [20137,0.124], + [20139,0.113], + [20141,0.079], + [20143,0.08], + [20145,0.106], + [20147,0.093], + [20149,0.09], + [20151,0.073], + [20153,0.088], + [20155,0.086], + [20157,0.11], + [20159,0.076], + [20161,0.096], + [20163,0.084], + [20165,0.107], + [20167,0.096], + [20169,0.09], + [20171,0.072], + [20173,0.088], + [20175,0.034], + [20177,0.102], + [20179,0.11], + [20181,0.063], + [20183,0.1], + [20185,0.082], + [20187,0.037], + [20189,0.052], + [20191,0.085], + [20193,0.066], + [20195,0.076], + [20197,0.11], + [20199,0.096], + [20201,0.1], + [20203,0.067], + [20205,0.089], + [20207,0.113], + [20209,0.072], + [21001,0.072], + [21003,0.077], + [21005,0.087], + [21007,0.093], + [21009,0.074], + [21011,0.063], + [21013,0.067], + [21015,0.09], + [21017,0.076], + [21019,0.105], + [21021,0.072], + [21023,0.069], + [21025,0.048], + [21027,0.093], + [21029,0.087], + [21031,0.085], + [21033,0.065], + [21035,0.066], + [21037,0.076], + [21039,0.085], + [21041,0.099], + [21043,0.056], + [21045,0.069], + [21047,0.115], + [21049,0.093], + [21051,0.056], + [21053,0.081], + [21055,0.1], + [21057,0.07], + [21059,0.084], + [21061,0.082], + [21063,0.061], + [21065,0.065], + [21067,0.066], + [21069,0.086], + [21071,0.059], + [21073,0.078], + [21075,0.102], + [21077,0.113], + [21079,0.085], + [21081,0.092], + [21083,0.069], + [21085,0.088], + [21087,0.071], + [21089,0.086], + [21091,0.093], + [21093,0.189], + [21095,0.076], + [21097,0.09], + [21099,0.074], + [21101,0.081], + [21103,0.089], + [21105,0.102], + [21107,0.087], + [21109,0.047], + [21111,0.081], + [21113,0.079], + [21115,0.074], + [21117,0.083], + [21119,0.043], + [21121,0.062], + [21123,0.119], + [21125,0.08], + [21127,0.061], + [21129,0.059], + [21131,0.067], + [21133,0.048], + [21135,0.078], + [21137,0.071], + [21139,0.069], + [21141,0.073], + [21143,0.132], + [21145,0.097], + [21147,0.076], + [21149,0.085], + [21151,0.085], + [21153,0.04], + [21155,0.067], + [21157,0.104], + [21159,0.049], + [21161,0.07], + [21163,0.184], + [21165,0.078], + [21167,0.083], + [21169,0.087], + [21171,0.085], + [21173,0.084], + [21175,0.052], + [21177,0.083], + [21179,0.086], + [21181,0.08], + [21183,0.079], + [21185,0.091], + [21187,0.092], + [21189,0.058], + [21191,0.074], + [21193,0.07], + [21195,0.061], + [21197,0.072], + [21199,0.094], + [21201,0.051], + [21203,0.068], + [21205,0.056], + [21207,0.062], + [21209,0.092], + [21211,0.074], + [21213,0.075], + [21215,0.086], + [21217,0.063], + [21219,0.077], + [21221,0.15], + [21223,0.104], + [21225,0.076], + [21227,0.069], + [21229,0.061], + [21231,0.071], + [21233,0.085], + [21235,0.074], + [21237,0.064], + [21239,0.083], + [22001,0.068], + [22003,0.078], + [22005,0.061], + [22007,0.065], + [22009,0.085], + [22011,0.123], + [22013,0.091], + [22015,0.128], + [22017,0.091], + [22019,0.085], + [22021,0.066], + [22023,0.103], + [22025,0.063], + [22027,0.071], + [22029,0.054], + [22031,0.086], + [22033,0.062], + [22035,0.034], + [22037,0.068], + [22039,0.059], + [22041,0.059], + [22043,0.082], + [22045,0.062], + [22047,0.048], + [22049,0.085], + [22051,0.063], + [22053,0.08], + [22055,0.064], + [22057,0.051], + [22059,0.062], + [22061,0.055], + [22063,0.077], + [22065,0.066], + [22067,0.064], + [22069,0.063], + [22071,0.054], + [22073,0.074], + [22075,0.091], + [22077,0.049], + [22079,0.097], + [22081,0.064], + [22083,0.063], + [22085,0.098], + [22087,0.047], + [22089,0.077], + [22091,0.05], + [22093,0.07], + [22095,0.068], + [22097,0.051], + [22099,0.053], + [22101,0.06], + [22103,0.09], + [22105,0.07], + [22107,0.084], + [22109,0.058], + [22111,0.082], + [22113,0.073], + [22115,0.185], + [22117,0.1], + [22119,0.078], + [22121,0.056], + [22123,0.069], + [22125,0.072], + [22127,0.054], + [23001,0.109], + [23003,0.114], + [23005,0.079], + [23007,0.114], + [23009,0.109], + [23011,0.104], + [23013,0.103], + [23015,0.119], + [23017,0.104], + [23019,0.098], + [23021,0.133], + [23023,0.135], + [23025,0.115], + [23027,0.111], + [23029,0.122], + [23031,0.111], + [24001,0.094], + [24003,0.12], + [24005,0.072], + [24009,0.127], + [24011,0.094], + [24013,0.086], + [24015,0.093], + [24017,0.14], + [24019,0.098], + [24021,0.086], + [24023,0.091], + [24025,0.102], + [24027,0.075], + [24029,0.093], + [24031,0.055], + [24033,0.082], + [24035,0.096], + [24037,0.128], + [24039,0.077], + [24041,0.11], + [24043,0.098], + [24045,0.083], + [24047,0.105], + [24510,0.06], + [25001,0.103], + [25003,0.088], + [25005,0.069], + [25007,0.044], + [25009,0.058], + [25011,0.089], + [25013,0.076], + [25015,0.065], + [25017,0.049], + [25019,0.068], + [25021,0.059], + [25023,0.077], + [25025,0.03], + [25027,0.071], + [26001,0.161], + [26003,0.117], + [26005,0.064], + [26007,0.108], + [26009,0.102], + [26011,0.106], + [26013,0.101], + [26015,0.088], + [26017,0.094], + [26019,0.125], + [26021,0.088], + [26023,0.089], + [26025,0.103], + [26027,0.1], + [26029,0.095], + [26031,0.115], + [26033,0.105], + [26035,0.105], + [26037,0.076], + [26039,0.14], + [26041,0.111], + [26043,0.117], + [26045,0.08], + [26047,0.1], + [26049,0.077], + [26051,0.109], + [26053,0.12], + [26055,0.094], + [26057,0.077], + [26059,0.096], + [26061,0.085], + [26063,0.091], + [26065,0.063], + [26067,0.074], + [26069,0.143], + [26071,0.132], + [26073,0.052], + [26075,0.087], + [26077,0.07], + [26079,0.099], + [26081,0.062], + [26083,0.175], + [26085,0.119], + [26087,0.084], + [26089,0.091], + [26091,0.088], + [26093,0.076], + [26095,0.101], + [26097,0.113], + [26099,0.075], + [26101,0.115], + [26103,0.11], + [26105,0.102], + [26107,0.091], + [26109,0.117], + [26111,0.078], + [26113,0.092], + [26115,0.09], + [26117,0.093], + [26119,0.142], + [26121,0.092], + [26123,0.103], + [26125,0.06], + [26127,0.093], + [26129,0.116], + [26131,0.156], + [26133,0.119], + [26135,0.124], + [26137,0.111], + [26139,0.066], + [26141,0.135], + [26143,0.122], + [26145,0.083], + [26147,0.089], + [26149,0.088], + [26151,0.088], + [26153,0.123], + [26155,0.085], + [26157,0.099], + [26159,0.09], + [26161,0.047], + [26163,0.064], + [26165,0.109], + [27001,0.148], + [27003,0.08], + [27005,0.109], + [27007,0.087], + [27009,0.079], + [27011,0.111], + [27013,0.073], + [27015,0.09], + [27017,0.097], + [27019,0.067], + [27021,0.131], + [27023,0.093], + [27025,0.091], + [27027,0.069], + [27029,0.12], + [27031,0.095], + [27033,0.084], + [27035,0.113], + [27037,0.075], + [27039,0.088], + [27041,0.097], + [27043,0.101], + [27045,0.089], + [27047,0.104], + [27049,0.102], + [27051,0.096], + [27053,0.059], + [27055,0.093], + [27057,0.13], + [27059,0.088], + [27061,0.116], + [27063,0.098], + [27065,0.112], + [27067,0.074], + [27069,0.098], + [27071,0.098], + [27073,0.097], + [27075,0.11], + [27077,0.108], + [27079,0.087], + [27081,0.109], + [27083,0.064], + [27085,0.096], + [27087,0.098], + [27089,0.084], + [27091,0.104], + [27093,0.095], + [27095,0.096], + [27097,0.1], + [27099,0.091], + [27101,0.099], + [27103,0.071], + [27105,0.067], + [27107,0.085], + [27109,0.074], + [27111,0.096], + [27113,0.099], + [27115,0.097], + [27117,0.076], + [27119,0.091], + [27121,0.092], + [27123,0.058], + [27125,0.089], + [27127,0.08], + [27129,0.084], + [27131,0.076], + [27133,0.078], + [27135,0.09], + [27137,0.093], + [27139,0.063], + [27141,0.081], + [27143,0.072], + [27145,0.079], + [27147,0.092], + [27149,0.063], + [27151,0.088], + [27153,0.105], + [27155,0.107], + [27157,0.1], + [27159,0.099], + [27161,0.079], + [27163,0.076], + [27165,0.086], + [27167,0.075], + [27169,0.071], + [27171,0.074], + [27173,0.1], + [28001,0.061], + [28003,0.064], + [28005,0.052], + [28007,0.073], + [28009,0.057], + [28011,0.049], + [28013,0.046], + [28015,0.078], + [28017,0.049], + [28019,0.086], + [28021,0.043], + [28023,0.073], + [28025,0.072], + [28027,0.063], + [28029,0.057], + [28031,0.064], + [28033,0.085], + [28035,0.08], + [28037,0.074], + [28039,0.069], + [28041,0.077], + [28043,0.073], + [28045,0.117], + [28047,0.149], + [28049,0.064], + [28051,0.037], + [28053,0.041], + [28055,0.053], + [28057,0.072], + [28059,0.12], + [28061,0.086], + [28063,0.044], + [28065,0.083], + [28067,0.073], + [28069,0.053], + [28071,0.044], + [28073,0.087], + [28075,0.088], + [28077,0.052], + [28079,0.053], + [28081,0.07], + [28083,0.035], + [28085,0.063], + [28087,0.105], + [28089,0.059], + [28091,0.059], + [28093,0.061], + [28095,0.085], + [28097,0.074], + [28099,0.058], + [28101,0.084], + [28103,0.041], + [28105,0.045], + [28107,0.049], + [28109,0.1], + [28111,0.067], + [28113,0.069], + [28115,0.067], + [28117,0.063], + [28119,0.064], + [28121,0.075], + [28123,0.06], + [28125,0.046], + [28127,0.072], + [28129,0.087], + [28131,0.111], + [28133,0.048], + [28135,0.041], + [28137,0.066], + [28139,0.053], + [28141,0.078], + [28143,0.054], + [28145,0.059], + [28147,0.053], + [28149,0.076], + [28151,0.058], + [28153,0.063], + [28155,0.07], + [28157,0.037], + [28159,0.055], + [28161,0.056], + [28163,0.069], + [29001,0.064], + [29003,0.095], + [29005,0.106], + [29007,0.093], + [29009,0.104], + [29011,0.09], + [29013,0.088], + [29015,0.14], + [29017,0.08], + [29019,0.069], + [29021,0.09], + [29023,0.107], + [29025,0.124], + [29027,0.096], + [29029,0.128], + [29031,0.083], + [29033,0.096], + [29035,0.105], + [29037,0.109], + [29039,0.125], + [29041,0.083], + [29043,0.098], + [29045,0.103], + [29047,0.092], + [29049,0.119], + [29051,0.093], + [29053,0.091], + [29055,0.112], + [29057,0.129], + [29059,0.112], + [29061,0.107], + [29063,0.109], + [29065,0.114], + [29067,0.11], + [29069,0.082], + [29071,0.095], + [29073,0.11], + [29075,0.092], + [29077,0.09], + [29079,0.092], + [29081,0.094], + [29083,0.14], + [29085,0.144], + [29087,0.116], + [29089,0.106], + [29091,0.108], + [29093,0.104], + [29095,0.08], + [29097,0.09], + [29099,0.096], + [29101,0.144], + [29103,0.107], + [29105,0.114], + [29107,0.096], + [29109,0.107], + [29111,0.102], + [29113,0.095], + [29115,0.085], + [29117,0.082], + [29119,0.093], + [29121,0.121], + [29123,0.108], + [29125,0.128], + [29127,0.108], + [29129,0.088], + [29131,0.095], + [29133,0.078], + [29135,0.096], + [29137,0.106], + [29139,0.107], + [29141,0.11], + [29143,0.094], + [29145,0.097], + [29147,0.056], + [29149,0.123], + [29151,0.091], + [29153,0.128], + [29155,0.07], + [29157,0.085], + [29159,0.098], + [29161,0.109], + [29163,0.106], + [29165,0.093], + [29167,0.102], + [29169,0.25], + [29171,0.12], + [29173,0.107], + [29175,0.093], + [29177,0.096], + [29179,0.117], + [29181,0.106], + [29183,0.087], + [29185,0.142], + [29186,0.094], + [29187,0.095], + [29189,0.077], + [29195,0.093], + [29197,0.075], + [29199,0.074], + [29201,0.091], + [29203,0.115], + [29205,0.09], + [29207,0.103], + [29209,0.135], + [29211,0.069], + [29213,0.112], + [29215,0.129], + [29217,0.09], + [29219,0.108], + [29221,0.103], + [29223,0.119], + [29225,0.089], + [29227,0.079], + [29229,0.11], + [29510,0.068], + [30001,0.09], + [30003,0.087], + [30005,0.1], + [30007,0.15], + [30009,0.132], + [30011,0.089], + [30013,0.149], + [30015,0.104], + [30017,0.105], + [30019,0.1], + [30021,0.076], + [30023,0.116], + [30025,0.059], + [30027,0.094], + [30029,0.115], + [30031,0.068], + [30033,0.079], + [30035,0.074], + [30037,0.152], + [30039,0.161], + [30041,0.099], + [30043,0.128], + [30045,0.115], + [30047,0.118], + [30049,0.12], + [30051,0.071], + [30053,0.146], + [30055,0.114], + [30057,0.118], + [30059,0.088], + [30061,0.148], + [30063,0.081], + [30065,0.154], + [30067,0.103], + [30069,0.122], + [30071,0.131], + [30073,0.111], + [30075,0.047], + [30077,0.128], + [30079,0.168], + [30081,0.132], + [30083,0.083], + [30085,0.082], + [30087,0.115], + [30089,0.163], + [30091,0.091], + [30093,0.099], + [30095,0.108], + [30097,0.137], + [30099,0.122], + [30101,0.12], + [30103,0.085], + [30105,0.1], + [30107,0.094], + [30109,0.088], + [30111,0.1], + [31001,0.081], + [31003,0.092], + [31005,0.08], + [31007,0.094], + [31009,0.106], + [31011,0.099], + [31013,0.08], + [31015,0.114], + [31017,0.092], + [31019,0.07], + [31021,0.095], + [31023,0.098], + [31025,0.136], + [31027,0.1], + [31029,0.087], + [31031,0.095], + [31033,0.095], + [31035,0.094], + [31037,0.058], + [31039,0.09], + [31041,0.1], + [31043,0.068], + [31045,0.083], + [31047,0.065], + [31049,0.111], + [31051,0.089], + [31053,0.093], + [31055,0.075], + [31057,0.103], + [31059,0.09], + [31061,0.11], + [31063,0.101], + [31065,0.087], + [31067,0.092], + [31069,0.122], + [31071,0.12], + [31073,0.083], + [31075,0.078], + [31077,0.106], + [31079,0.083], + [31081,0.096], + [31083,0.113], + [31085,0.127], + [31087,0.107], + [31089,0.087], + [31091,0.137], + [31093,0.098], + [31095,0.099], + [31097,0.093], + [31099,0.1], + [31101,0.105], + [31103,0.078], + [31105,0.096], + [31107,0.111], + [31109,0.067], + [31111,0.096], + [31113,0.082], + [31115,0.143], + [31117,0.084], + [31119,0.075], + [31121,0.108], + [31123,0.079], + [31125,0.084], + [31127,0.105], + [31129,0.121], + [31131,0.094], + [31133,0.107], + [31135,0.089], + [31137,0.08], + [31139,0.1], + [31141,0.088], + [31143,0.078], + [31145,0.083], + [31147,0.112], + [31149,0.093], + [31151,0.07], + [31153,0.143], + [31155,0.097], + [31157,0.095], + [31159,0.072], + [31161,0.124], + [31163,0.086], + [31165,0.098], + [31167,0.087], + [31169,0.103], + [31171,0.106], + [31173,0.072], + [31175,0.095], + [31177,0.11], + [31179,0.06], + [31181,0.093], + [31183,0.075], + [31185,0.079], + [32001,0.163], + [32003,0.09], + [32005,0.137], + [32007,0.086], + [32009,0.123], + [32011,0.12], + [32013,0.078], + [32015,0.106], + [32017,0.115], + [32019,0.157], + [32021,0.197], + [32023,0.165], + [32027,0.124], + [32029,0.13], + [32031,0.094], + [32033,0.098], + [32510,0.111], + [33001,0.123], + [33003,0.119], + [33005,0.099], + [33007,0.126], + [33009,0.086], + [33011,0.085], + [33013,0.093], + [33015,0.093], + [33017,0.093], + [33019,0.11], + [34001,0.063], + [34003,0.041], + [34005,0.087], + [34007,0.063], + [34009,0.093], + [34011,0.058], + [34013,0.033], + [34015,0.068], + [34017,0.025], + [34019,0.057], + [34021,0.046], + [34023,0.039], + [34025,0.058], + [34027,0.05], + [34029,0.089], + [34031,0.036], + [34033,0.088], + [34035,0.04], + [34037,0.071], + [34039,0.037], + [34041,0.068], + [35001,0.093], + [35003,0.124], + [35005,0.082], + [35006,0.085], + [35007,0.134], + [35009,0.156], + [35011,0.176], + [35013,0.091], + [35015,0.087], + [35017,0.123], + [35019,0.093], + [35021,0.185], + [35023,0.096], + [35025,0.058], + [35027,0.137], + [35028,0.099], + [35029,0.088], + [35031,0.06], + [35033,0.092], + [35035,0.17], + [35037,0.086], + [35039,0.076], + [35041,0.082], + [35043,0.113], + [35045,0.079], + [35047,0.095], + [35049,0.082], + [35051,0.177], + [35053,0.076], + [35055,0.094], + [35057,0.125], + [35059,0.088], + [35061,0.11], + [36001,0.061], + [36003,0.101], + [36005,0.025], + [36007,0.077], + [36009,0.106], + [36011,0.092], + [36013,0.09], + [36015,0.088], + [36017,0.093], + [36019,0.091], + [36021,0.084], + [36023,0.074], + [36025,0.087], + [36027,0.065], + [36029,0.075], + [36031,0.097], + [36033,0.086], + [36035,0.087], + [36037,0.09], + [36039,0.085], + [36041,0.078], + [36043,0.1], + [36045,0.137], + [36047,0.02], + [36049,0.093], + [36051,0.082], + [36053,0.088], + [36055,0.063], + [36057,0.079], + [36059,0.045], + [36061,0.023], + [36063,0.087], + [36065,0.09], + [36067,0.072], + [36069,0.087], + [36071,0.072], + [36073,0.09], + [36075,0.093], + [36077,0.083], + [36079,0.053], + [36081,0.024], + [36083,0.076], + [36085,0.046], + [36087,0.039], + [36089,0.089], + [36091,0.09], + [36093,0.074], + [36095,0.096], + [36097,0.104], + [36099,0.092], + [36101,0.113], + [36103,0.057], + [36105,0.081], + [36107,0.104], + [36109,0.048], + [36111,0.064], + [36113,0.095], + [36115,0.095], + [36117,0.088], + [36119,0.04], + [36121,0.084], + [36123,0.083], + [37001,0.076], + [37003,0.074], + [37005,0.091], + [37007,0.084], + [37009,0.073], + [37011,0.071], + [37013,0.084], + [37015,0.073], + [37017,0.072], + [37019,0.131], + [37021,0.088], + [37023,0.087], + [37025,0.082], + [37027,0.078], + [37029,0.156], + [37031,0.15], + [37033,0.082], + [37035,0.086], + [37037,0.086], + [37039,0.109], + [37041,0.118], + [37043,0.128], + [37045,0.084], + [37047,0.079], + [37049,0.163], + [37051,0.196], + [37053,0.149], + [37055,0.104], + [37057,0.08], + [37059,0.091], + [37061,0.078], + [37063,0.065], + [37065,0.077], + [37067,0.082], + [37069,0.076], + [37071,0.082], + [37073,0.082], + [37075,0.082], + [37077,0.078], + [37079,0.077], + [37081,0.07], + [37083,0.073], + [37085,0.144], + [37087,0.117], + [37089,0.109], + [37091,0.061], + [37093,0.152], + [37095,0.041], + [37097,0.076], + [37099,0.089], + [37101,0.097], + [37103,0.105], + [37105,0.094], + [37107,0.089], + [37109,0.087], + [37111,0.082], + [37113,0.105], + [37115,0.083], + [37117,0.07], + [37119,0.061], + [37121,0.07], + [37123,0.095], + [37125,0.116], + [37127,0.091], + [37129,0.086], + [37131,0.081], + [37133,0.22], + [37135,0.052], + [37137,0.143], + [37139,0.129], + [37141,0.105], + [37143,0.135], + [37145,0.083], + [37147,0.073], + [37149,0.096], + [37151,0.085], + [37153,0.078], + [37155,0.072], + [37157,0.082], + [37159,0.087], + [37161,0.077], + [37163,0.073], + [37165,0.087], + [37167,0.083], + [37169,0.086], + [37171,0.08], + [37173,0.076], + [37175,0.121], + [37177,0.087], + [37179,0.076], + [37181,0.065], + [37183,0.067], + [37185,0.097], + [37187,0.08], + [37189,0.057], + [37191,0.134], + [37193,0.083], + [37195,0.087], + [37197,0.079], + [37199,0.072], + [38001,0.07], + [38003,0.1], + [38005,0.086], + [38007,0.052], + [38009,0.107], + [38011,0.091], + [38013,0.072], + [38015,0.078], + [38017,0.066], + [38019,0.091], + [38021,0.081], + [38023,0.105], + [38025,0.104], + [38027,0.094], + [38029,0.089], + [38031,0.096], + [38033,0.079], + [38035,0.085], + [38037,0.103], + [38039,0.101], + [38041,0.088], + [38043,0.075], + [38045,0.088], + [38047,0.09], + [38049,0.097], + [38051,0.081], + [38053,0.082], + [38055,0.1], + [38057,0.088], + [38059,0.083], + [38061,0.095], + [38063,0.11], + [38065,0.091], + [38067,0.11], + [38069,0.083], + [38071,0.089], + [38073,0.087], + [38075,0.114], + [38077,0.084], + [38079,0.06], + [38081,0.088], + [38083,0.087], + [38085,0.058], + [38087,0.085], + [38089,0.079], + [38091,0.11], + [38093,0.089], + [38095,0.092], + [38097,0.09], + [38099,0.078], + [38101,0.113], + [38103,0.059], + [38105,0.087], + [39001,0.089], + [39003,0.086], + [39005,0.091], + [39007,0.107], + [39009,0.064], + [39011,0.075], + [39013,0.097], + [39015,0.091], + [39017,0.078], + [39019,0.091], + [39021,0.092], + [39023,0.115], + [39025,0.088], + [39027,0.09], + [39029,0.105], + [39031,0.087], + [39033,0.1], + [39035,0.071], + [39037,0.086], + [39039,0.09], + [39041,0.07], + [39043,0.108], + [39045,0.099], + [39047,0.095], + [39049,0.068], + [39051,0.086], + [39053,0.079], + [39055,0.077], + [39057,0.126], + [39059,0.102], + [39061,0.068], + [39063,0.083], + [39065,0.076], + [39067,0.099], + [39069,0.08], + [39071,0.108], + [39073,0.107], + [39075,0.056], + [39077,0.084], + [39079,0.074], + [39081,0.101], + [39083,0.091], + [39085,0.085], + [39087,0.09], + [39089,0.099], + [39091,0.091], + [39093,0.089], + [39095,0.076], + [39097,0.085], + [39099,0.091], + [39101,0.102], + [39103,0.088], + [39105,0.093], + [39107,0.075], + [39109,0.098], + [39111,0.093], + [39113,0.1], + [39115,0.097], + [39117,0.09], + [39119,0.089], + [39121,0.129], + [39123,0.105], + [39125,0.095], + [39127,0.104], + [39129,0.087], + [39131,0.082], + [39133,0.082], + [39135,0.095], + [39137,0.077], + [39139,0.097], + [39141,0.099], + [39143,0.089], + [39145,0.093], + [39147,0.087], + [39149,0.086], + [39151,0.092], + [39153,0.079], + [39155,0.104], + [39157,0.095], + [39159,0.081], + [39161,0.088], + [39163,0.085], + [39165,0.081], + [39167,0.111], + [39169,0.076], + [39171,0.09], + [39173,0.073], + [39175,0.091], + [40001,0.083], + [40003,0.123], + [40005,0.08], + [40007,0.059], + [40009,0.062], + [40011,0.095], + [40013,0.086], + [40015,0.094], + [40017,0.096], + [40019,0.096], + [40021,0.087], + [40023,0.09], + [40025,0.095], + [40027,0.096], + [40029,0.087], + [40031,0.187], + [40033,0.113], + [40035,0.093], + [40037,0.094], + [40039,0.076], + [40041,0.116], + [40043,0.083], + [40045,0.078], + [40047,0.099], + [40049,0.084], + [40051,0.1], + [40053,0.109], + [40055,0.102], + [40057,0.063], + [40059,0.078], + [40061,0.096], + [40063,0.088], + [40065,0.166], + [40067,0.095], + [40069,0.089], + [40071,0.1], + [40073,0.069], + [40075,0.094], + [40077,0.11], + [40079,0.1], + [40081,0.116], + [40083,0.094], + [40085,0.079], + [40087,0.09], + [40089,0.091], + [40091,0.127], + [40093,0.081], + [40095,0.111], + [40097,0.102], + [40099,0.11], + [40101,0.1], + [40103,0.083], + [40105,0.064], + [40107,0.088], + [40109,0.091], + [40111,0.097], + [40113,0.092], + [40115,0.098], + [40117,0.111], + [40119,0.06], + [40121,0.118], + [40123,0.072], + [40125,0.103], + [40127,0.125], + [40129,0.073], + [40131,0.104], + [40133,0.098], + [40135,0.097], + [40137,0.104], + [40139,0.029], + [40141,0.095], + [40143,0.082], + [40145,0.107], + [40147,0.091], + [40149,0.096], + [40151,0.073], + [40153,0.075], + [41001,0.159], + [41003,0.071], + [41005,0.09], + [41007,0.123], + [41009,0.135], + [41011,0.142], + [41013,0.14], + [41015,0.154], + [41017,0.095], + [41019,0.154], + [41021,0.156], + [41023,0.125], + [41025,0.149], + [41027,0.065], + [41029,0.115], + [41031,0.104], + [41033,0.128], + [41035,0.138], + [41037,0.15], + [41039,0.094], + [41041,0.138], + [41043,0.115], + [41045,0.087], + [41047,0.09], + [41049,0.116], + [41051,0.062], + [41053,0.097], + [41055,0.111], + [41057,0.127], + [41059,0.097], + [41061,0.102], + [41063,0.113], + [41065,0.118], + [41067,0.073], + [41069,0.123], + [41071,0.096], + [42001,0.099], + [42003,0.08], + [42005,0.102], + [42007,0.097], + [42009,0.097], + [42011,0.076], + [42013,0.106], + [42015,0.12], + [42017,0.071], + [42019,0.095], + [42021,0.104], + [42023,0.13], + [42025,0.105], + [42027,0.061], + [42029,0.066], + [42031,0.091], + [42033,0.096], + [42035,0.094], + [42037,0.08], + [42039,0.097], + [42041,0.101], + [42043,0.083], + [42045,0.064], + [42047,0.11], + [42049,0.092], + [42051,0.091], + [42053,0.098], + [42055,0.109], + [42057,0.1], + [42059,0.092], + [42061,0.095], + [42063,0.079], + [42065,0.094], + [42067,0.088], + [42069,0.085], + [42071,0.075], + [42073,0.095], + [42075,0.092], + [42077,0.071], + [42079,0.089], + [42081,0.095], + [42083,0.103], + [42085,0.102], + [42087,0.11], + [42089,0.079], + [42091,0.066], + [42093,0.098], + [42095,0.079], + [42097,0.1], + [42099,0.102], + [42101,0.05], + [42103,0.094], + [42105,0.114], + [42107,0.103], + [42109,0.072], + [42111,0.096], + [42113,0.128], + [42115,0.105], + [42117,0.106], + [42119,0.073], + [42121,0.117], + [42123,0.119], + [42125,0.092], + [42127,0.106], + [42129,0.095], + [42131,0.093], + [42133,0.091], + [44001,0.07], + [44003,0.088], + [44005,0.116], + [44007,0.058], + [44009,0.081], + [45001,0.078], + [45003,0.103], + [45005,0.073], + [45007,0.092], + [45009,0.071], + [45011,0.066], + [45013,0.136], + [45015,0.141], + [45017,0.107], + [45019,0.092], + [45021,0.079], + [45023,0.083], + [45025,0.063], + [45027,0.088], + [45029,0.107], + [45031,0.091], + [45033,0.062], + [45035,0.135], + [45037,0.097], + [45039,0.075], + [45041,0.08], + [45043,0.107], + [45045,0.082], + [45047,0.081], + [45049,0.085], + [45051,0.111], + [45053,0.104], + [45055,0.12], + [45057,0.088], + [45059,0.089], + [45061,0.067], + [45063,0.102], + [45065,0.116], + [45067,0.079], + [45069,0.08], + [45071,0.074], + [45073,0.108], + [45075,0.081], + [45077,0.08], + [45079,0.105], + [45081,0.077], + [45083,0.08], + [45085,0.144], + [45087,0.085], + [45089,0.069], + [45091,0.089], + [46003,0.083], + [46005,0.078], + [46007,0.073], + [46009,0.099], + [46011,0.062], + [46013,0.082], + [46015,0.074], + [46017,0.083], + [46019,0.109], + [46021,0.048], + [46023,0.09], + [46025,0.078], + [46027,0.072], + [46029,0.107], + [46031,0.094], + [46033,0.14], + [46035,0.089], + [46037,0.118], + [46039,0.104], + [46041,0.07], + [46043,0.1], + [46045,0.085], + [46047,0.165], + [46049,0.077], + [46051,0.099], + [46053,0.086], + [46055,0.073], + [46057,0.097], + [46059,0.079], + [46061,0.104], + [46063,0.077], + [46065,0.085], + [46067,0.09], + [46069,0.074], + [46071,0.111], + [46073,0.093], + [46075,0.061], + [46077,0.085], + [46079,0.094], + [46081,0.107], + [46083,0.084], + [46085,0.056], + [46087,0.094], + [46089,0.113], + [46091,0.082], + [46093,0.142], + [46095,0.033], + [46097,0.084], + [46099,0.074], + [46101,0.094], + [46102,null], + [46103,0.14], + [46105,0.119], + [46107,0.102], + [46109,0.089], + [46111,0.099], + [46115,0.11], + [46117,0.074], + [46119,0.092], + [46121,0.055], + [46123,0.068], + [46125,0.091], + [46127,0.089], + [46129,0.101], + [46135,0.105], + [46137,0.039], + [47001,0.104], + [47003,0.087], + [47005,0.118], + [47007,0.083], + [47009,0.101], + [47011,0.081], + [47013,0.083], + [47015,0.089], + [47017,0.09], + [47019,0.1], + [47021,0.094], + [47023,0.08], + [47025,0.078], + [47027,0.089], + [47029,0.111], + [47031,0.111], + [47033,0.078], + [47035,0.14], + [47037,0.061], + [47039,0.081], + [47041,0.079], + [47043,0.077], + [47045,0.083], + [47047,0.094], + [47049,0.086], + [47051,0.102], + [47053,0.091], + [47055,0.091], + [47057,0.087], + [47059,0.107], + [47061,0.071], + [47063,0.088], + [47065,0.082], + [47067,0.066], + [47069,0.069], + [47071,0.101], + [47073,0.096], + [47075,0.077], + [47077,0.074], + [47079,0.116], + [47081,0.086], + [47083,0.107], + [47085,0.092], + [47087,0.091], + [47089,0.102], + [47091,0.106], + [47093,0.084], + [47095,0.074], + [47097,0.069], + [47099,0.082], + [47101,0.07], + [47103,0.092], + [47105,0.116], + [47107,0.08], + [47109,0.081], + [47111,0.063], + [47113,0.078], + [47115,0.086], + [47117,0.069], + [47119,0.084], + [47121,0.09], + [47123,0.1], + [47125,0.199], + [47127,0.134], + [47129,0.106], + [47131,0.082], + [47133,0.076], + [47135,0.087], + [47137,0.092], + [47139,0.091], + [47141,0.062], + [47143,0.091], + [47145,0.12], + [47147,0.078], + [47149,0.082], + [47151,0.07], + [47153,0.102], + [47155,0.09], + [47157,0.075], + [47159,0.072], + [47161,0.145], + [47163,0.102], + [47165,0.088], + [47167,0.119], + [47169,0.073], + [47171,0.107], + [47173,0.091], + [47175,0.109], + [47177,0.07], + [47179,0.109], + [47181,0.087], + [47183,0.078], + [47185,0.092], + [47187,0.065], + [47189,0.089], + [48001,0.087], + [48003,0.061], + [48005,0.088], + [48007,0.131], + [48009,0.104], + [48011,0.104], + [48013,0.092], + [48015,0.071], + [48017,0.065], + [48019,0.149], + [48021,0.123], + [48023,0.074], + [48025,0.081], + [48027,0.216], + [48029,0.11], + [48031,0.129], + [48033,0.094], + [48035,0.094], + [48037,0.104], + [48039,0.078], + [48041,0.051], + [48043,0.113], + [48045,0.069], + [48047,0.044], + [48049,0.106], + [48051,0.098], + [48053,0.105], + [48055,0.078], + [48057,0.071], + [48059,0.121], + [48061,0.049], + [48063,0.092], + [48065,0.097], + [48067,0.105], + [48069,0.041], + [48071,0.075], + [48073,0.082], + [48075,0.068], + [48077,0.102], + [48079,0.037], + [48081,0.068], + [48083,0.093], + [48085,0.062], + [48087,0.09], + [48089,0.08], + [48091,0.124], + [48093,0.083], + [48095,0.066], + [48097,0.083], + [48099,0.208], + [48101,0.081], + [48103,0.043], + [48105,0.053], + [48107,0.04], + [48109,0.075], + [48111,0.073], + [48113,0.051], + [48115,0.047], + [48117,0.05], + [48119,0.118], + [48121,0.07], + [48123,0.088], + [48125,0.088], + [48127,0.045], + [48129,0.114], + [48131,0.06], + [48133,0.079], + [48135,0.06], + [48137,0.123], + [48139,0.087], + [48141,0.083], + [48143,0.064], + [48145,0.088], + [48147,0.129], + [48149,0.088], + [48151,0.094], + [48153,0.068], + [48155,0.079], + [48157,0.052], + [48159,0.109], + [48161,0.089], + [48163,0.048], + [48165,0.028], + [48167,0.086], + [48169,0.04], + [48171,0.094], + [48173,0.042], + [48175,0.11], + [48177,0.075], + [48179,0.085], + [48181,0.106], + [48183,0.087], + [48185,0.085], + [48187,0.158], + [48189,0.053], + [48191,0.075], + [48193,0.091], + [48195,0.063], + [48197,0.083], + [48199,0.086], + [48201,0.05], + [48203,0.086], + [48205,0.071], + [48207,0.069], + [48209,0.077], + [48211,0.052], + [48213,0.108], + [48215,0.035], + [48217,0.101], + [48219,0.054], + [48221,0.121], + [48223,0.09], + [48225,0.105], + [48227,0.088], + [48229,0.062], + [48231,0.098], + [48233,0.084], + [48235,0.089], + [48237,0.074], + [48239,0.085], + [48241,0.087], + [48243,0.116], + [48245,0.077], + [48247,0.05], + [48249,0.069], + [48251,0.073], + [48253,0.091], + [48255,0.069], + [48257,0.081], + [48259,0.112], + [48261,0], + [48263,0.074], + [48265,0.129], + [48267,0.145], + [48269,0.032], + [48271,0.198], + [48273,0.082], + [48275,0.084], + [48277,0.083], + [48279,0.046], + [48281,0.206], + [48283,0.03], + [48285,0.087], + [48287,0.098], + [48289,0.113], + [48291,0.086], + [48293,0.075], + [48295,0.078], + [48297,0.12], + [48299,0.146], + [48301,0.045], + [48303,0.065], + [48305,0.063], + [48307,0.085], + [48309,0.086], + [48311,0.081], + [48313,0.084], + [48315,0.124], + [48317,0.063], + [48319,0.094], + [48321,0.087], + [48323,0.022], + [48325,0.119], + [48327,0.13], + [48329,0.064], + [48331,0.093], + [48333,0.1], + [48335,0.063], + [48337,0.108], + [48339,0.078], + [48341,0.042], + [48343,0.135], + [48345,0.074], + [48347,0.07], + [48349,0.081], + [48351,0.111], + [48353,0.082], + [48355,0.102], + [48357,0.064], + [48359,0.048], + [48361,0.088], + [48363,0.088], + [48365,0.08], + [48367,0.108], + [48369,0.046], + [48371,0.074], + [48373,0.105], + [48375,0.077], + [48377,0.038], + [48379,0.128], + [48381,0.091], + [48383,0.035], + [48385,0.125], + [48387,0.07], + [48389,0.063], + [48391,0.094], + [48393,0.059], + [48395,0.063], + [48397,0.079], + [48399,0.086], + [48401,0.082], + [48403,0.149], + [48405,0.105], + [48407,0.102], + [48409,0.093], + [48411,0.08], + [48413,0.034], + [48415,0.058], + [48417,0.085], + [48419,0.071], + [48421,0.046], + [48423,0.075], + [48425,0.069], + [48427,0.017], + [48429,0.059], + [48431,0.044], + [48433,0.157], + [48435,0.061], + [48437,0.064], + [48439,0.075], + [48441,0.11], + [48443,0.121], + [48445,0.052], + [48447,0.088], + [48449,0.079], + [48451,0.112], + [48453,0.057], + [48455,0.132], + [48457,0.108], + [48459,0.091], + [48461,0.051], + [48463,0.07], + [48465,0.087], + [48467,0.101], + [48469,0.087], + [48471,0.089], + [48473,0.052], + [48475,0.069], + [48477,0.086], + [48479,0.03], + [48481,0.058], + [48483,0.069], + [48485,0.115], + [48487,0.093], + [48489,0.045], + [48491,0.091], + [48493,0.126], + [48495,0.059], + [48497,0.101], + [48499,0.122], + [48501,0.043], + [48503,0.086], + [48505,0.04], + [48507,0.037], + [49001,0.082], + [49003,0.068], + [49005,0.042], + [49007,0.079], + [49009,0.076], + [49011,0.078], + [49013,0.061], + [49015,0.064], + [49017,0.102], + [49019,0.089], + [49021,0.08], + [49023,0.074], + [49025,0.106], + [49027,0.076], + [49029,0.089], + [49031,0.105], + [49033,0.082], + [49035,0.053], + [49037,0.055], + [49039,0.068], + [49041,0.078], + [49043,0.052], + [49045,0.092], + [49047,0.061], + [49049,0.038], + [49051,0.055], + [49053,0.094], + [49055,0.052], + [49057,0.083], + [50001,0.074], + [50003,0.09], + [50005,0.085], + [50007,0.062], + [50009,0.115], + [50011,0.082], + [50013,0.097], + [50015,0.075], + [50017,0.097], + [50019,0.095], + [50021,0.081], + [50023,0.085], + [50025,0.081], + [50027,0.093], + [51001,0.116], + [51003,0.078], + [51005,0.096], + [51007,0.097], + [51009,0.097], + [51011,0.119], + [51013,0.068], + [51015,0.098], + [51017,0.07], + [51019,0.106], + [51021,0.076], + [51023,0.109], + [51025,0.089], + [51027,0.042], + [51029,0.096], + [51031,0.098], + [51033,0.134], + [51035,0.079], + [51036,0.103], + [51037,0.11], + [51041,0.101], + [51043,0.094], + [51045,0.088], + [51047,0.107], + [51049,0.092], + [51051,0.071], + [51053,0.102], + [51057,0.078], + [51059,0.089], + [51061,0.116], + [51063,0.087], + [51065,0.114], + [51067,0.093], + [51069,0.106], + [51071,0.084], + [51073,0.159], + [51075,0.088], + [51077,0.083], + [51079,0.106], + [51081,0.095], + [51083,0.084], + [51085,0.089], + [51087,0.076], + [51089,0.099], + [51091,0.15], + [51093,0.128], + [51095,0.158], + [51097,0.114], + [51099,0.182], + [51101,0.093], + [51103,0.133], + [51105,0.083], + [51107,0.079], + [51109,0.119], + [51111,0.104], + [51113,0.084], + [51115,0.123], + [51117,0.109], + [51119,0.129], + [51121,0.053], + [51125,0.092], + [51127,0.112], + [51131,0.114], + [51133,0.137], + [51135,0.081], + [51137,0.112], + [51139,0.082], + [51141,0.09], + [51143,0.094], + [51145,0.095], + [51147,0.076], + [51149,0.164], + [51153,0.13], + [51155,0.089], + [51157,0.12], + [51159,0.086], + [51161,0.098], + [51163,0.093], + [51165,0.076], + [51167,0.058], + [51169,0.087], + [51171,0.103], + [51173,0.088], + [51175,0.116], + [51177,0.143], + [51179,0.199], + [51181,0.116], + [51183,0.097], + [51185,0.068], + [51187,0.117], + [51191,0.084], + [51193,0.138], + [51195,0.072], + [51197,0.091], + [51199,0.201], + [51510,0.087], + [51520,0.082], + [51530,0.068], + [51540,0.045], + [51550,0.157], + [51570,0.134], + [51580,0.117], + [51590,0.098], + [51595,0.059], + [51600,0.084], + [51610,0.084], + [51620,0.1], + [51630,0.094], + [51640,0.081], + [51650,0.182], + [51660,0.031], + [51670,0.109], + [51678,0.039], + [51680,0.077], + [51683,0.087], + [51685,0.082], + [51690,0.071], + [51700,0.151], + [51710,0.162], + [51720,0.078], + [51730,0.117], + [51735,0.133], + [51740,0.164], + [51750,0.052], + [51760,0.066], + [51770,0.084], + [51775,0.1], + [51790,0.087], + [51800,0.166], + [51810,0.177], + [51820,0.094], + [51830,0.078], + [51840,0.09], + [53001,0.043], + [53003,0.128], + [53005,0.093], + [53007,0.087], + [53009,0.149], + [53011,0.096], + [53013,0.152], + [53015,0.12], + [53017,0.092], + [53019,0.149], + [53021,0.06], + [53023,0.136], + [53025,0.081], + [53027,0.132], + [53029,0.2], + [53031,0.156], + [53033,0.063], + [53035,0.175], + [53037,0.097], + [53039,0.128], + [53041,0.129], + [53043,0.143], + [53045,0.154], + [53047,0.121], + [53049,0.138], + [53051,0.16], + [53053,0.138], + [53055,0.111], + [53057,0.112], + [53059,0.151], + [53061,0.088], + [53063,0.113], + [53065,0.147], + [53067,0.139], + [53069,0.134], + [53071,0.107], + [53073,0.079], + [53075,0.054], + [53077,0.071], + [54001,0.099], + [54003,0.121], + [54005,0.076], + [54007,0.075], + [54009,0.1], + [54011,0.085], + [54013,0.079], + [54015,0.073], + [54017,0.086], + [54019,0.112], + [54021,0.07], + [54023,0.09], + [54025,0.098], + [54027,0.099], + [54029,0.108], + [54031,0.113], + [54033,0.1], + [54035,0.103], + [54037,0.118], + [54039,0.093], + [54041,0.098], + [54043,0.089], + [54045,0.073], + [54047,0.067], + [54049,0.097], + [54051,0.105], + [54053,0.104], + [54055,0.095], + [54057,0.11], + [54059,0.069], + [54061,0.057], + [54063,0.101], + [54065,0.106], + [54067,0.093], + [54069,0.091], + [54071,0.107], + [54073,0.082], + [54075,0.097], + [54077,0.086], + [54079,0.094], + [54081,0.107], + [54083,0.098], + [54085,0.105], + [54087,0.101], + [54089,0.095], + [54091,0.125], + [54093,0.095], + [54095,0.102], + [54097,0.094], + [54099,0.084], + [54101,0.082], + [54103,0.09], + [54105,0.095], + [54107,0.102], + [54109,0.092], + [55001,0.127], + [55003,0.097], + [55005,0.091], + [55007,0.121], + [55009,0.076], + [55011,0.093], + [55013,0.129], + [55015,0.066], + [55017,0.095], + [55019,0.079], + [55021,0.093], + [55023,0.097], + [55025,0.057], + [55027,0.086], + [55029,0.094], + [55031,0.11], + [55033,0.081], + [55035,0.073], + [55037,0.135], + [55039,0.079], + [55041,0.106], + [55043,0.068], + [55045,0.072], + [55047,0.087], + [55049,0.083], + [55051,0.122], + [55053,0.104], + [55055,0.083], + [55057,0.109], + [55059,0.078], + [55061,0.078], + [55063,0.084], + [55065,0.08], + [55067,0.103], + [55069,0.107], + [55071,0.086], + [55073,0.086], + [55075,0.128], + [55077,0.126], + [55078,0.093], + [55079,0.061], + [55081,0.148], + [55083,0.111], + [55085,0.117], + [55087,0.075], + [55089,0.068], + [55091,0.091], + [55093,0.075], + [55095,0.093], + [55097,0.07], + [55099,0.108], + [55101,0.084], + [55103,0.088], + [55105,0.087], + [55107,0.104], + [55109,0.076], + [55111,0.081], + [55113,0.109], + [55115,0.094], + [55117,0.074], + [55119,0.087], + [55121,0.081], + [55123,0.084], + [55125,0.12], + [55127,0.07], + [55129,0.117], + [55131,0.083], + [55133,0.072], + [55135,0.111], + [55137,0.115], + [55139,0.087], + [55141,0.097], + [56001,0.07], + [56003,0.103], + [56005,0.088], + [56007,0.086], + [56009,0.129], + [56011,0.106], + [56013,0.099], + [56015,0.108], + [56017,0.162], + [56019,0.139], + [56021,0.146], + [56023,0.097], + [56025,0.098], + [56027,0.094], + [56029,0.115], + [56031,0.113], + [56033,0.115], + [56035,0.099], + [56037,0.085], + [56039,0.065], + [56041,0.086], + [56043,0.127], + [56045,0.128] + ] +} diff --git a/data/regional/united-states/military/veterans/us-military-veterans-2019.json b/data/regional/united-states/military/veterans/us-military-veterans-2019.json new file mode 100644 index 0000000..52c5987 --- /dev/null +++ b/data/regional/united-states/military/veterans/us-military-veterans-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Veterans", + "description" : "Percent of the population that are veterans.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "military", + "tags" : ["regional","us","counties","military","soldier","veterans"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.military.veterans.2019"], + [1001,0.126], + [1003,0.118], + [1005,0.066], + [1007,0.08], + [1009,0.077], + [1011,0.033], + [1013,0.066], + [1015,0.108], + [1017,0.079], + [1019,0.091], + [1021,0.076], + [1023,0.086], + [1025,0.062], + [1027,0.06], + [1029,0.061], + [1031,0.164], + [1033,0.089], + [1035,0.059], + [1037,0.104], + [1039,0.1], + [1041,0.066], + [1043,0.08], + [1045,0.164], + [1047,0.061], + [1049,0.063], + [1051,0.106], + [1053,0.074], + [1055,0.084], + [1057,0.084], + [1059,0.056], + [1061,0.116], + [1063,0.071], + [1065,0.071], + [1067,0.092], + [1069,0.098], + [1071,0.068], + [1073,0.072], + [1075,0.07], + [1077,0.081], + [1079,0.059], + [1081,0.079], + [1083,0.098], + [1085,0.038], + [1087,0.087], + [1089,0.117], + [1091,0.063], + [1093,0.059], + [1095,0.082], + [1097,0.089], + [1099,0.081], + [1101,0.097], + [1103,0.081], + [1105,0.056], + [1107,0.074], + [1109,0.071], + [1111,0.077], + [1113,0.137], + [1115,0.093], + [1117,0.078], + [1119,0.047], + [1121,0.083], + [1123,0.087], + [1125,0.061], + [1127,0.078], + [1129,0.075], + [1131,0.047], + [1133,0.073], + [2013,0.05], + [2016,0.061], + [2020,0.126], + [2050,0.054], + [2060,0.115], + [2068,0.069], + [2070,0.041], + [2090,0.165], + [2100,0.091], + [2105,0.109], + [2110,0.094], + [2122,0.11], + [2130,0.103], + [2150,0.113], + [2158,0.048], + [2164,0.057], + [2170,0.138], + [2180,0.061], + [2185,0.071], + [2188,0.057], + [2195,0.115], + [2198,0.091], + [2220,0.09], + [2230,0.062], + [2240,0.14], + [2261,0.131], + [2275,0.11], + [2282,0.08], + [2290,0.097], + [4001,0.059], + [4003,0.192], + [4005,0.066], + [4007,0.129], + [4009,0.07], + [4011,0.093], + [4012,0.145], + [4013,0.077], + [4015,0.143], + [4017,0.091], + [4019,0.106], + [4021,0.105], + [4023,0.051], + [4025,0.138], + [4027,0.101], + [5001,0.074], + [5003,0.062], + [5005,0.137], + [5007,0.079], + [5009,0.106], + [5011,0.093], + [5013,0.087], + [5015,0.106], + [5017,0.057], + [5019,0.078], + [5021,0.083], + [5023,0.125], + [5025,0.077], + [5027,0.071], + [5029,0.109], + [5031,0.067], + [5033,0.091], + [5035,0.066], + [5037,0.076], + [5039,0.08], + [5041,0.057], + [5043,0.079], + [5045,0.072], + [5047,0.102], + [5049,0.12], + [5051,0.105], + [5053,0.097], + [5055,0.085], + [5057,0.072], + [5059,0.089], + [5061,0.076], + [5063,0.088], + [5065,0.125], + [5067,0.075], + [5069,0.078], + [5071,0.084], + [5073,0.078], + [5075,0.084], + [5077,0.045], + [5079,0.066], + [5081,0.087], + [5083,0.087], + [5085,0.126], + [5087,0.069], + [5089,0.135], + [5091,0.087], + [5093,0.074], + [5095,0.071], + [5097,0.103], + [5099,0.069], + [5101,0.091], + [5103,0.087], + [5105,0.114], + [5107,0.071], + [5109,0.093], + [5111,0.056], + [5113,0.122], + [5115,0.087], + [5117,0.084], + [5119,0.091], + [5121,0.082], + [5123,0.067], + [5125,0.098], + [5127,0.09], + [5129,0.108], + [5131,0.088], + [5133,0.074], + [5135,0.136], + [5137,0.104], + [5139,0.075], + [5141,0.092], + [5143,0.068], + [5145,0.078], + [5147,0.064], + [5149,0.071], + [6001,0.037], + [6003,0.094], + [6005,0.117], + [6007,0.079], + [6009,0.119], + [6011,0.053], + [6013,0.053], + [6015,0.095], + [6017,0.09], + [6019,0.051], + [6021,0.069], + [6023,0.074], + [6025,0.043], + [6027,0.106], + [6029,0.057], + [6031,0.092], + [6033,0.106], + [6035,0.076], + [6037,0.033], + [6039,0.056], + [6041,0.051], + [6043,0.102], + [6045,0.087], + [6047,0.048], + [6049,0.109], + [6051,0.061], + [6053,0.054], + [6055,0.067], + [6057,0.098], + [6059,0.044], + [6061,0.087], + [6063,0.121], + [6065,0.068], + [6067,0.067], + [6069,0.059], + [6071,0.058], + [6073,0.086], + [6075,0.031], + [6077,0.054], + [6079,0.073], + [6081,0.041], + [6083,0.061], + [6085,0.034], + [6087,0.046], + [6089,0.098], + [6091,0.114], + [6093,0.112], + [6095,0.098], + [6097,0.064], + [6099,0.053], + [6101,0.085], + [6103,0.09], + [6105,0.109], + [6107,0.046], + [6109,0.115], + [6111,0.061], + [6113,0.045], + [6115,0.109], + [8001,0.073], + [8003,0.065], + [8005,0.08], + [8007,0.115], + [8009,0.08], + [8011,0.087], + [8013,0.053], + [8014,0.08], + [8015,0.106], + [8017,0.075], + [8019,0.079], + [8021,0.091], + [8023,0.133], + [8025,0.087], + [8027,0.177], + [8029,0.124], + [8031,0.052], + [8033,0.127], + [8035,0.082], + [8037,0.047], + [8039,0.119], + [8041,0.169], + [8043,0.137], + [8045,0.062], + [8047,0.141], + [8049,0.093], + [8051,0.057], + [8053,0.095], + [8055,0.155], + [8057,0.142], + [8059,0.082], + [8061,0.063], + [8063,0.086], + [8065,0.077], + [8067,0.073], + [8069,0.075], + [8071,0.106], + [8073,0.085], + [8075,0.103], + [8077,0.099], + [8079,0.109], + [8081,0.079], + [8083,0.108], + [8085,0.104], + [8087,0.06], + [8089,0.091], + [8091,0.121], + [8093,0.103], + [8095,0.082], + [8097,0.049], + [8099,0.075], + [8101,0.108], + [8103,0.109], + [8105,0.068], + [8107,0.062], + [8109,0.092], + [8111,0.121], + [8113,0.049], + [8115,0.106], + [8117,0.049], + [8119,0.163], + [8121,0.094], + [8123,0.071], + [8125,0.072], + [9001,0.043], + [9003,0.055], + [9005,0.077], + [9007,0.072], + [9009,0.056], + [9011,0.105], + [9013,0.069], + [9015,0.085], + [10001,0.128], + [10003,0.069], + [10005,0.101], + [11001,0.046], + [12001,0.07], + [12003,0.096], + [12005,0.151], + [12007,0.101], + [12009,0.137], + [12011,0.049], + [12013,0.092], + [12015,0.143], + [12017,0.155], + [12019,0.165], + [12021,0.089], + [12023,0.13], + [12027,0.074], + [12029,0.143], + [12031,0.116], + [12033,0.141], + [12035,0.119], + [12037,0.101], + [12039,0.093], + [12041,0.105], + [12043,0.131], + [12045,0.117], + [12047,0.083], + [12049,0.06], + [12051,0.052], + [12053,0.125], + [12055,0.123], + [12057,0.084], + [12059,0.107], + [12061,0.119], + [12063,0.102], + [12065,0.102], + [12067,0.096], + [12069,0.118], + [12071,0.095], + [12073,0.063], + [12075,0.144], + [12077,0.079], + [12079,0.078], + [12081,0.103], + [12083,0.126], + [12085,0.11], + [12086,0.022], + [12087,0.103], + [12089,0.132], + [12091,0.22], + [12093,0.098], + [12095,0.06], + [12097,0.064], + [12099,0.068], + [12101,0.111], + [12103,0.104], + [12105,0.091], + [12107,0.122], + [12109,0.108], + [12111,0.098], + [12113,0.183], + [12115,0.116], + [12117,0.076], + [12119,0.168], + [12121,0.122], + [12123,0.08], + [12125,0.127], + [12127,0.114], + [12129,0.11], + [12131,0.123], + [12133,0.096], + [13001,0.065], + [13003,0.053], + [13005,0.07], + [13007,0.076], + [13009,0.068], + [13011,0.084], + [13013,0.071], + [13015,0.078], + [13017,0.065], + [13019,0.063], + [13021,0.081], + [13023,0.074], + [13025,0.064], + [13027,0.092], + [13029,0.139], + [13031,0.066], + [13033,0.09], + [13035,0.074], + [13037,0.062], + [13039,0.161], + [13043,0.077], + [13045,0.067], + [13047,0.084], + [13049,0.094], + [13051,0.103], + [13053,0.188], + [13055,0.07], + [13057,0.075], + [13059,0.044], + [13061,0.086], + [13063,0.079], + [13065,0.044], + [13067,0.072], + [13069,0.063], + [13071,0.072], + [13073,0.16], + [13075,0.08], + [13077,0.094], + [13079,0.094], + [13081,0.063], + [13083,0.069], + [13085,0.074], + [13087,0.063], + [13089,0.063], + [13091,0.076], + [13093,0.07], + [13095,0.085], + [13097,0.09], + [13099,0.064], + [13101,0.035], + [13103,0.113], + [13105,0.093], + [13107,0.07], + [13109,0.093], + [13111,0.102], + [13113,0.122], + [13115,0.084], + [13117,0.062], + [13119,0.059], + [13121,0.053], + [13123,0.105], + [13125,0.072], + [13127,0.102], + [13129,0.062], + [13131,0.082], + [13133,0.09], + [13135,0.058], + [13137,0.082], + [13139,0.071], + [13141,0.065], + [13143,0.061], + [13145,0.128], + [13147,0.076], + [13149,0.094], + [13151,0.098], + [13153,0.156], + [13155,0.076], + [13157,0.084], + [13159,0.082], + [13161,0.064], + [13163,0.069], + [13165,0.076], + [13167,0.087], + [13169,0.105], + [13171,0.086], + [13173,0.09], + [13175,0.09], + [13177,0.102], + [13179,0.235], + [13181,0.091], + [13183,0.21], + [13185,0.093], + [13187,0.084], + [13189,0.1], + [13191,0.14], + [13193,0.06], + [13195,0.076], + [13197,0.146], + [13199,0.069], + [13201,0.05], + [13205,0.082], + [13207,0.081], + [13209,0.059], + [13211,0.081], + [13213,0.054], + [13215,0.141], + [13217,0.086], + [13219,0.066], + [13221,0.082], + [13223,0.084], + [13225,0.094], + [13227,0.111], + [13229,0.07], + [13231,0.081], + [13233,0.08], + [13235,0.07], + [13237,0.096], + [13239,0.046], + [13241,0.097], + [13243,0.059], + [13245,0.123], + [13247,0.101], + [13249,0.075], + [13251,0.087], + [13253,0.102], + [13255,0.089], + [13257,0.09], + [13259,0.07], + [13261,0.064], + [13263,0.107], + [13265,0.08], + [13267,0.094], + [13269,0.077], + [13271,0.065], + [13273,0.08], + [13275,0.08], + [13277,0.059], + [13279,0.072], + [13281,0.113], + [13283,0.106], + [13285,0.074], + [13287,0.103], + [13289,0.09], + [13291,0.115], + [13293,0.087], + [13295,0.08], + [13297,0.07], + [13299,0.065], + [13301,0.05], + [13303,0.067], + [13305,0.09], + [13307,0.052], + [13309,0.059], + [13311,0.115], + [13313,0.048], + [13315,0.072], + [13317,0.074], + [13319,0.06], + [13321,0.085], + [15001,0.095], + [15003,0.101], + [15005,0.031], + [15007,0.07], + [15009,0.067], + [16001,0.086], + [16003,0.156], + [16005,0.081], + [16007,0.071], + [16009,0.147], + [16011,0.07], + [16013,0.083], + [16015,0.139], + [16017,0.124], + [16019,0.078], + [16021,0.11], + [16023,0.106], + [16025,0.117], + [16027,0.087], + [16029,0.081], + [16031,0.068], + [16033,0.043], + [16035,0.158], + [16037,0.154], + [16039,0.229], + [16041,0.055], + [16043,0.072], + [16045,0.146], + [16047,0.091], + [16049,0.129], + [16051,0.076], + [16053,0.069], + [16055,0.109], + [16057,0.065], + [16059,0.143], + [16061,0.13], + [16063,0.082], + [16065,0.031], + [16067,0.066], + [16069,0.096], + [16071,0.099], + [16073,0.088], + [16075,0.099], + [16077,0.089], + [16079,0.122], + [16081,0.034], + [16083,0.092], + [16085,0.123], + [16087,0.092], + [17001,0.088], + [17003,0.103], + [17005,0.091], + [17007,0.075], + [17009,0.073], + [17011,0.083], + [17013,0.101], + [17015,0.099], + [17017,0.084], + [17019,0.05], + [17021,0.103], + [17023,0.078], + [17025,0.086], + [17027,0.097], + [17029,0.073], + [17031,0.039], + [17033,0.081], + [17035,0.079], + [17037,0.064], + [17039,0.088], + [17041,0.07], + [17043,0.044], + [17045,0.089], + [17047,0.091], + [17049,0.074], + [17051,0.08], + [17053,0.091], + [17055,0.098], + [17057,0.082], + [17059,0.088], + [17061,0.112], + [17063,0.079], + [17065,0.086], + [17067,0.09], + [17069,0.108], + [17071,0.097], + [17073,0.09], + [17075,0.081], + [17077,0.074], + [17079,0.057], + [17081,0.093], + [17083,0.106], + [17085,0.097], + [17087,0.094], + [17089,0.053], + [17091,0.075], + [17093,0.055], + [17095,0.081], + [17097,0.058], + [17099,0.082], + [17101,0.08], + [17103,0.075], + [17105,0.09], + [17107,0.081], + [17109,0.075], + [17111,0.062], + [17113,0.061], + [17115,0.086], + [17117,0.095], + [17119,0.098], + [17121,0.093], + [17123,0.107], + [17125,0.104], + [17127,0.093], + [17129,0.108], + [17131,0.1], + [17133,0.084], + [17135,0.096], + [17137,0.085], + [17139,0.083], + [17141,0.086], + [17143,0.07], + [17145,0.081], + [17147,0.084], + [17149,0.087], + [17151,0.133], + [17153,0.11], + [17155,0.089], + [17157,0.086], + [17159,0.084], + [17161,0.084], + [17163,0.125], + [17165,0.086], + [17167,0.083], + [17169,0.087], + [17171,0.093], + [17173,0.088], + [17175,0.091], + [17177,0.09], + [17179,0.085], + [17181,0.09], + [17183,0.088], + [17185,0.104], + [17187,0.072], + [17189,0.09], + [17191,0.081], + [17193,0.092], + [17195,0.091], + [17197,0.058], + [17199,0.101], + [17201,0.077], + [17203,0.083], + [18001,0.059], + [18003,0.073], + [18005,0.061], + [18007,0.065], + [18009,0.1], + [18011,0.067], + [18013,0.116], + [18015,0.099], + [18017,0.087], + [18019,0.088], + [18021,0.088], + [18023,0.072], + [18025,0.102], + [18027,0.079], + [18029,0.087], + [18031,0.063], + [18033,0.069], + [18035,0.069], + [18037,0.059], + [18039,0.059], + [18041,0.089], + [18043,0.078], + [18045,0.085], + [18047,0.083], + [18049,0.101], + [18051,0.087], + [18053,0.085], + [18055,0.083], + [18057,0.06], + [18059,0.097], + [18061,0.093], + [18063,0.078], + [18065,0.09], + [18067,0.092], + [18069,0.085], + [18071,0.062], + [18073,0.085], + [18075,0.071], + [18077,0.084], + [18079,0.093], + [18081,0.08], + [18083,0.081], + [18085,0.076], + [18087,0.054], + [18089,0.071], + [18091,0.087], + [18093,0.103], + [18095,0.09], + [18097,0.067], + [18099,0.072], + [18101,0.127], + [18103,0.111], + [18105,0.05], + [18107,0.077], + [18109,0.101], + [18111,0.092], + [18113,0.082], + [18115,0.091], + [18117,0.084], + [18119,0.086], + [18121,0.098], + [18123,0.094], + [18125,0.072], + [18127,0.074], + [18129,0.094], + [18131,0.09], + [18133,0.084], + [18135,0.083], + [18137,0.099], + [18139,0.077], + [18141,0.063], + [18143,0.085], + [18145,0.086], + [18147,0.104], + [18149,0.085], + [18151,0.081], + [18153,0.078], + [18155,0.125], + [18157,0.049], + [18159,0.095], + [18161,0.092], + [18163,0.08], + [18165,0.103], + [18167,0.082], + [18169,0.074], + [18171,0.097], + [18173,0.082], + [18175,0.086], + [18177,0.09], + [18179,0.085], + [18181,0.1], + [18183,0.081], + [19001,0.088], + [19003,0.094], + [19005,0.085], + [19007,0.091], + [19009,0.09], + [19011,0.086], + [19013,0.073], + [19015,0.08], + [19017,0.083], + [19019,0.086], + [19021,0.054], + [19023,0.089], + [19025,0.093], + [19027,0.079], + [19029,0.078], + [19031,0.101], + [19033,0.083], + [19035,0.096], + [19037,0.089], + [19039,0.087], + [19041,0.087], + [19043,0.095], + [19045,0.098], + [19047,0.063], + [19049,0.065], + [19051,0.072], + [19053,0.067], + [19055,0.076], + [19057,0.098], + [19059,0.085], + [19061,0.073], + [19063,0.072], + [19065,0.084], + [19067,0.107], + [19069,0.071], + [19071,0.1], + [19073,0.097], + [19075,0.067], + [19077,0.094], + [19079,0.077], + [19081,0.076], + [19083,0.09], + [19085,0.095], + [19087,0.096], + [19089,0.091], + [19091,0.091], + [19093,0.084], + [19095,0.077], + [19097,0.088], + [19099,0.083], + [19101,0.1], + [19103,0.043], + [19105,0.1], + [19107,0.088], + [19109,0.1], + [19111,0.094], + [19113,0.081], + [19115,0.065], + [19117,0.085], + [19119,0.076], + [19121,0.071], + [19123,0.066], + [19125,0.077], + [19127,0.096], + [19129,0.103], + [19131,0.093], + [19133,0.101], + [19135,0.081], + [19137,0.081], + [19139,0.064], + [19141,0.088], + [19143,0.09], + [19145,0.089], + [19147,0.095], + [19149,0.09], + [19151,0.092], + [19153,0.065], + [19155,0.094], + [19157,0.083], + [19159,0.083], + [19161,0.088], + [19163,0.09], + [19165,0.091], + [19167,0.057], + [19169,0.047], + [19171,0.084], + [19173,0.099], + [19175,0.091], + [19177,0.097], + [19179,0.088], + [19181,0.082], + [19183,0.087], + [19185,0.083], + [19187,0.085], + [19189,0.074], + [19191,0.064], + [19193,0.07], + [19195,0.095], + [19197,0.086], + [20001,0.088], + [20003,0.098], + [20005,0.079], + [20007,0.082], + [20009,0.077], + [20011,0.087], + [20013,0.097], + [20015,0.099], + [20017,0.093], + [20019,0.108], + [20021,0.078], + [20023,0.104], + [20025,0.113], + [20027,0.153], + [20029,0.086], + [20031,0.121], + [20033,0.073], + [20035,0.087], + [20037,0.065], + [20039,0.1], + [20041,0.125], + [20043,0.091], + [20045,0.05], + [20047,0.058], + [20049,0.101], + [20051,0.065], + [20053,0.078], + [20055,0.039], + [20057,0.039], + [20059,0.086], + [20061,0.262], + [20063,0.072], + [20065,0.092], + [20067,0.051], + [20069,0.062], + [20071,0.073], + [20073,0.11], + [20075,0.066], + [20077,0.096], + [20079,0.073], + [20081,0.034], + [20083,0.082], + [20085,0.115], + [20087,0.102], + [20089,0.099], + [20091,0.064], + [20093,0.054], + [20095,0.1], + [20097,0.072], + [20099,0.076], + [20101,0.094], + [20103,0.161], + [20105,0.1], + [20107,0.095], + [20109,0.077], + [20111,0.066], + [20113,0.066], + [20115,0.083], + [20117,0.094], + [20119,0.06], + [20121,0.087], + [20123,0.087], + [20125,0.096], + [20127,0.118], + [20129,0.08], + [20131,0.075], + [20133,0.074], + [20135,0.089], + [20137,0.072], + [20139,0.119], + [20141,0.075], + [20143,0.083], + [20145,0.102], + [20147,0.096], + [20149,0.092], + [20151,0.074], + [20153,0.092], + [20155,0.084], + [20157,0.092], + [20159,0.067], + [20161,0.092], + [20163,0.087], + [20165,0.089], + [20167,0.082], + [20169,0.091], + [20171,0.052], + [20173,0.084], + [20175,0.035], + [20177,0.094], + [20179,0.089], + [20181,0.053], + [20183,0.105], + [20185,0.074], + [20187,0.029], + [20189,0.053], + [20191,0.083], + [20193,0.059], + [20195,0.104], + [20197,0.098], + [20199,0.103], + [20201,0.081], + [20203,0.075], + [20205,0.076], + [20207,0.1], + [20209,0.067], + [21001,0.071], + [21003,0.066], + [21005,0.069], + [21007,0.109], + [21009,0.062], + [21011,0.073], + [21013,0.05], + [21015,0.09], + [21017,0.078], + [21019,0.094], + [21021,0.063], + [21023,0.053], + [21025,0.042], + [21027,0.1], + [21029,0.088], + [21031,0.087], + [21033,0.069], + [21035,0.063], + [21037,0.071], + [21039,0.077], + [21041,0.088], + [21043,0.051], + [21045,0.062], + [21047,0.132], + [21049,0.078], + [21051,0.05], + [21053,0.08], + [21055,0.088], + [21057,0.081], + [21059,0.081], + [21061,0.075], + [21063,0.055], + [21065,0.059], + [21067,0.061], + [21069,0.077], + [21071,0.049], + [21073,0.082], + [21075,0.104], + [21077,0.073], + [21079,0.083], + [21081,0.093], + [21083,0.066], + [21085,0.087], + [21087,0.074], + [21089,0.083], + [21091,0.084], + [21093,0.18], + [21095,0.069], + [21097,0.066], + [21099,0.087], + [21101,0.079], + [21103,0.094], + [21105,0.114], + [21107,0.079], + [21109,0.042], + [21111,0.077], + [21113,0.077], + [21115,0.065], + [21117,0.08], + [21119,0.04], + [21121,0.058], + [21123,0.102], + [21125,0.07], + [21127,0.045], + [21129,0.048], + [21131,0.052], + [21133,0.04], + [21135,0.072], + [21137,0.074], + [21139,0.074], + [21141,0.067], + [21143,0.123], + [21145,0.083], + [21147,0.078], + [21149,0.076], + [21151,0.076], + [21153,0.032], + [21155,0.073], + [21157,0.091], + [21159,0.038], + [21161,0.067], + [21163,0.167], + [21165,0.057], + [21167,0.082], + [21169,0.087], + [21171,0.077], + [21173,0.081], + [21175,0.064], + [21177,0.071], + [21179,0.093], + [21181,0.067], + [21183,0.085], + [21185,0.087], + [21187,0.078], + [21189,0.04], + [21191,0.076], + [21193,0.066], + [21195,0.058], + [21197,0.074], + [21199,0.092], + [21201,0.052], + [21203,0.058], + [21205,0.059], + [21207,0.069], + [21209,0.086], + [21211,0.068], + [21213,0.079], + [21215,0.078], + [21217,0.069], + [21219,0.076], + [21221,0.14], + [21223,0.097], + [21225,0.079], + [21227,0.07], + [21229,0.058], + [21231,0.076], + [21233,0.068], + [21235,0.071], + [21237,0.062], + [21239,0.082], + [22001,0.058], + [22003,0.064], + [22005,0.056], + [22007,0.066], + [22009,0.071], + [22011,0.114], + [22013,0.074], + [22015,0.125], + [22017,0.086], + [22019,0.079], + [22021,0.063], + [22023,0.095], + [22025,0.048], + [22027,0.058], + [22029,0.058], + [22031,0.071], + [22033,0.06], + [22035,0.033], + [22037,0.05], + [22039,0.046], + [22041,0.056], + [22043,0.088], + [22045,0.052], + [22047,0.047], + [22049,0.083], + [22051,0.061], + [22053,0.07], + [22055,0.064], + [22057,0.051], + [22059,0.064], + [22061,0.059], + [22063,0.071], + [22065,0.059], + [22067,0.057], + [22069,0.058], + [22071,0.052], + [22073,0.073], + [22075,0.085], + [22077,0.058], + [22079,0.097], + [22081,0.065], + [22083,0.053], + [22085,0.083], + [22087,0.049], + [22089,0.069], + [22091,0.055], + [22093,0.049], + [22095,0.065], + [22097,0.049], + [22099,0.054], + [22101,0.055], + [22103,0.087], + [22105,0.069], + [22107,0.045], + [22109,0.06], + [22111,0.067], + [22113,0.074], + [22115,0.179], + [22117,0.086], + [22119,0.074], + [22121,0.061], + [22123,0.052], + [22125,0.079], + [22127,0.057], + [23001,0.101], + [23003,0.11], + [23005,0.072], + [23007,0.112], + [23009,0.101], + [23011,0.099], + [23013,0.09], + [23015,0.115], + [23017,0.102], + [23019,0.091], + [23021,0.126], + [23023,0.129], + [23025,0.106], + [23027,0.103], + [23029,0.118], + [23031,0.102], + [24001,0.085], + [24003,0.119], + [24005,0.065], + [24009,0.126], + [24011,0.089], + [24013,0.083], + [24015,0.089], + [24017,0.135], + [24019,0.084], + [24021,0.083], + [24023,0.085], + [24025,0.099], + [24027,0.074], + [24029,0.085], + [24031,0.051], + [24033,0.078], + [24035,0.094], + [24037,0.125], + [24039,0.07], + [24041,0.106], + [24043,0.09], + [24045,0.08], + [24047,0.103], + [24510,0.058], + [25001,0.096], + [25003,0.08], + [25005,0.065], + [25007,0.066], + [25009,0.053], + [25011,0.086], + [25013,0.067], + [25015,0.06], + [25017,0.045], + [25019,0.056], + [25021,0.053], + [25023,0.071], + [25025,0.029], + [25027,0.067], + [26001,0.147], + [26003,0.109], + [26005,0.056], + [26007,0.11], + [26009,0.106], + [26011,0.097], + [26013,0.089], + [26015,0.084], + [26017,0.092], + [26019,0.113], + [26021,0.079], + [26023,0.081], + [26025,0.091], + [26027,0.087], + [26029,0.091], + [26031,0.11], + [26033,0.102], + [26035,0.105], + [26037,0.077], + [26039,0.127], + [26041,0.108], + [26043,0.113], + [26045,0.077], + [26047,0.087], + [26049,0.074], + [26051,0.106], + [26053,0.122], + [26055,0.086], + [26057,0.074], + [26059,0.088], + [26061,0.078], + [26063,0.088], + [26065,0.057], + [26067,0.073], + [26069,0.148], + [26071,0.117], + [26073,0.051], + [26075,0.081], + [26077,0.064], + [26079,0.105], + [26081,0.059], + [26083,0.147], + [26085,0.106], + [26087,0.077], + [26089,0.087], + [26091,0.083], + [26093,0.073], + [26095,0.099], + [26097,0.114], + [26099,0.07], + [26101,0.111], + [26103,0.103], + [26105,0.098], + [26107,0.082], + [26109,0.115], + [26111,0.074], + [26113,0.094], + [26115,0.085], + [26117,0.079], + [26119,0.126], + [26121,0.089], + [26123,0.098], + [26125,0.055], + [26127,0.083], + [26129,0.106], + [26131,0.147], + [26133,0.109], + [26135,0.112], + [26137,0.102], + [26139,0.059], + [26141,0.126], + [26143,0.128], + [26145,0.081], + [26147,0.09], + [26149,0.087], + [26151,0.086], + [26153,0.101], + [26155,0.089], + [26157,0.093], + [26159,0.081], + [26161,0.046], + [26163,0.059], + [26165,0.107], + [27001,0.132], + [27003,0.074], + [27005,0.103], + [27007,0.081], + [27009,0.072], + [27011,0.094], + [27013,0.065], + [27015,0.077], + [27017,0.094], + [27019,0.06], + [27021,0.123], + [27023,0.084], + [27025,0.087], + [27027,0.067], + [27029,0.113], + [27031,0.085], + [27033,0.088], + [27035,0.105], + [27037,0.07], + [27039,0.077], + [27041,0.086], + [27043,0.088], + [27045,0.082], + [27047,0.093], + [27049,0.095], + [27051,0.086], + [27053,0.055], + [27055,0.085], + [27057,0.12], + [27059,0.085], + [27061,0.107], + [27063,0.09], + [27065,0.106], + [27067,0.074], + [27069,0.087], + [27071,0.106], + [27073,0.083], + [27075,0.098], + [27077,0.087], + [27079,0.081], + [27081,0.097], + [27083,0.068], + [27085,0.084], + [27087,0.085], + [27089,0.079], + [27091,0.103], + [27093,0.087], + [27095,0.101], + [27097,0.095], + [27099,0.086], + [27101,0.085], + [27103,0.061], + [27105,0.061], + [27107,0.081], + [27109,0.069], + [27111,0.091], + [27113,0.082], + [27115,0.091], + [27117,0.072], + [27119,0.08], + [27121,0.098], + [27123,0.053], + [27125,0.092], + [27127,0.077], + [27129,0.077], + [27131,0.072], + [27133,0.071], + [27135,0.088], + [27137,0.087], + [27139,0.052], + [27141,0.075], + [27143,0.069], + [27145,0.078], + [27147,0.077], + [27149,0.047], + [27151,0.078], + [27153,0.098], + [27155,0.09], + [27157,0.091], + [27159,0.088], + [27161,0.077], + [27163,0.069], + [27165,0.078], + [27167,0.073], + [27169,0.074], + [27171,0.071], + [27173,0.078], + [28001,0.06], + [28003,0.062], + [28005,0.071], + [28007,0.068], + [28009,0.075], + [28011,0.045], + [28013,0.039], + [28015,0.061], + [28017,0.028], + [28019,0.062], + [28021,0.048], + [28023,0.083], + [28025,0.066], + [28027,0.059], + [28029,0.05], + [28031,0.072], + [28033,0.08], + [28035,0.08], + [28037,0.077], + [28039,0.089], + [28041,0.072], + [28043,0.065], + [28045,0.112], + [28047,0.145], + [28049,0.061], + [28051,0.033], + [28053,0.039], + [28055,0.034], + [28057,0.071], + [28059,0.115], + [28061,0.084], + [28063,0.045], + [28065,0.08], + [28067,0.068], + [28069,0.04], + [28071,0.045], + [28073,0.082], + [28075,0.087], + [28077,0.058], + [28079,0.057], + [28081,0.065], + [28083,0.028], + [28085,0.046], + [28087,0.098], + [28089,0.056], + [28091,0.061], + [28093,0.064], + [28095,0.07], + [28097,0.065], + [28099,0.061], + [28101,0.082], + [28103,0.039], + [28105,0.039], + [28107,0.051], + [28109,0.089], + [28111,0.077], + [28113,0.066], + [28115,0.076], + [28117,0.055], + [28119,0.042], + [28121,0.066], + [28123,0.056], + [28125,0.042], + [28127,0.068], + [28129,0.066], + [28131,0.111], + [28133,0.043], + [28135,0.048], + [28137,0.059], + [28139,0.052], + [28141,0.072], + [28143,0.056], + [28145,0.052], + [28147,0.052], + [28149,0.071], + [28151,0.05], + [28153,0.05], + [28155,0.059], + [28157,0.042], + [28159,0.071], + [28161,0.052], + [28163,0.069], + [29001,0.057], + [29003,0.085], + [29005,0.1], + [29007,0.087], + [29009,0.098], + [29011,0.079], + [29013,0.088], + [29015,0.125], + [29017,0.083], + [29019,0.065], + [29021,0.09], + [29023,0.1], + [29025,0.109], + [29027,0.095], + [29029,0.122], + [29031,0.082], + [29033,0.074], + [29035,0.1], + [29037,0.104], + [29039,0.12], + [29041,0.093], + [29043,0.101], + [29045,0.082], + [29047,0.084], + [29049,0.111], + [29051,0.087], + [29053,0.09], + [29055,0.102], + [29057,0.112], + [29059,0.113], + [29061,0.095], + [29063,0.099], + [29065,0.102], + [29067,0.098], + [29069,0.079], + [29071,0.093], + [29073,0.092], + [29075,0.089], + [29077,0.076], + [29079,0.083], + [29081,0.094], + [29083,0.136], + [29085,0.117], + [29087,0.114], + [29089,0.085], + [29091,0.104], + [29093,0.101], + [29095,0.077], + [29097,0.078], + [29099,0.091], + [29101,0.145], + [29103,0.1], + [29105,0.118], + [29107,0.081], + [29109,0.102], + [29111,0.104], + [29113,0.087], + [29115,0.081], + [29117,0.076], + [29119,0.092], + [29121,0.105], + [29123,0.117], + [29125,0.13], + [29127,0.093], + [29129,0.084], + [29131,0.109], + [29133,0.067], + [29135,0.089], + [29137,0.108], + [29139,0.11], + [29141,0.105], + [29143,0.09], + [29145,0.098], + [29147,0.052], + [29149,0.114], + [29151,0.086], + [29153,0.108], + [29155,0.071], + [29157,0.081], + [29159,0.094], + [29161,0.099], + [29163,0.083], + [29165,0.091], + [29167,0.085], + [29169,0.219], + [29171,0.111], + [29173,0.11], + [29175,0.091], + [29177,0.096], + [29179,0.109], + [29181,0.103], + [29183,0.08], + [29185,0.137], + [29186,0.097], + [29187,0.084], + [29189,0.072], + [29195,0.07], + [29197,0.07], + [29199,0.068], + [29201,0.093], + [29203,0.107], + [29205,0.089], + [29207,0.097], + [29209,0.126], + [29211,0.064], + [29213,0.101], + [29215,0.13], + [29217,0.082], + [29219,0.105], + [29221,0.102], + [29223,0.125], + [29225,0.091], + [29227,0.076], + [29229,0.097], + [29510,0.065], + [30001,0.095], + [30003,0.081], + [30005,0.092], + [30007,0.141], + [30009,0.126], + [30011,0.07], + [30013,0.152], + [30015,0.088], + [30017,0.101], + [30019,0.096], + [30021,0.099], + [30023,0.102], + [30025,0.046], + [30027,0.093], + [30029,0.112], + [30031,0.073], + [30033,0.09], + [30035,0.084], + [30037,0.144], + [30039,0.142], + [30041,0.084], + [30043,0.135], + [30045,0.111], + [30047,0.107], + [30049,0.12], + [30051,0.102], + [30053,0.148], + [30055,0.079], + [30057,0.129], + [30059,0.081], + [30061,0.161], + [30063,0.081], + [30065,0.136], + [30067,0.104], + [30069,0.094], + [30071,0.112], + [30073,0.119], + [30075,0.088], + [30077,0.136], + [30079,0.173], + [30081,0.129], + [30083,0.075], + [30085,0.088], + [30087,0.095], + [30089,0.137], + [30091,0.089], + [30093,0.097], + [30095,0.094], + [30097,0.115], + [30099,0.108], + [30101,0.113], + [30103,0.109], + [30105,0.092], + [30107,0.072], + [30109,0.114], + [30111,0.096], + [31001,0.076], + [31003,0.102], + [31005,0.065], + [31007,0.081], + [31009,0.134], + [31011,0.092], + [31013,0.084], + [31015,0.129], + [31017,0.081], + [31019,0.064], + [31021,0.106], + [31023,0.093], + [31025,0.133], + [31027,0.089], + [31029,0.081], + [31031,0.094], + [31033,0.098], + [31035,0.085], + [31037,0.044], + [31039,0.077], + [31041,0.097], + [31043,0.061], + [31045,0.098], + [31047,0.075], + [31049,0.111], + [31051,0.089], + [31053,0.092], + [31055,0.071], + [31057,0.1], + [31059,0.074], + [31061,0.101], + [31063,0.1], + [31065,0.093], + [31067,0.071], + [31069,0.13], + [31071,0.107], + [31073,0.1], + [31075,0.053], + [31077,0.098], + [31079,0.071], + [31081,0.096], + [31083,0.11], + [31085,0.088], + [31087,0.097], + [31089,0.08], + [31091,0.147], + [31093,0.078], + [31095,0.096], + [31097,0.08], + [31099,0.081], + [31101,0.098], + [31103,0.062], + [31105,0.102], + [31107,0.104], + [31109,0.063], + [31111,0.098], + [31113,0.118], + [31115,0.066], + [31117,0.093], + [31119,0.074], + [31121,0.095], + [31123,0.083], + [31125,0.1], + [31127,0.09], + [31129,0.111], + [31131,0.097], + [31133,0.094], + [31135,0.079], + [31137,0.075], + [31139,0.076], + [31141,0.078], + [31143,0.084], + [31145,0.085], + [31147,0.106], + [31149,0.069], + [31151,0.061], + [31153,0.141], + [31155,0.087], + [31157,0.082], + [31159,0.074], + [31161,0.116], + [31163,0.076], + [31165,0.09], + [31167,0.086], + [31169,0.087], + [31171,0.073], + [31173,0.068], + [31175,0.099], + [31177,0.099], + [31179,0.067], + [31181,0.086], + [31183,0.07], + [31185,0.078], + [32001,0.175], + [32003,0.086], + [32005,0.134], + [32007,0.082], + [32009,0.161], + [32011,0.124], + [32013,0.085], + [32015,0.095], + [32017,0.122], + [32019,0.144], + [32021,0.169], + [32023,0.159], + [32027,0.106], + [32029,0.145], + [32031,0.091], + [32033,0.092], + [32510,0.1], + [33001,0.108], + [33003,0.1], + [33005,0.096], + [33007,0.109], + [33009,0.083], + [33011,0.081], + [33013,0.089], + [33015,0.089], + [33017,0.087], + [33019,0.103], + [34001,0.059], + [34003,0.037], + [34005,0.08], + [34007,0.059], + [34009,0.089], + [34011,0.056], + [34013,0.03], + [34015,0.067], + [34017,0.022], + [34019,0.054], + [34021,0.042], + [34023,0.038], + [34025,0.05], + [34027,0.046], + [34029,0.079], + [34031,0.033], + [34033,0.078], + [34035,0.037], + [34037,0.064], + [34039,0.033], + [34041,0.064], + [35001,0.091], + [35003,0.172], + [35005,0.075], + [35006,0.074], + [35007,0.117], + [35009,0.129], + [35011,0.175], + [35013,0.088], + [35015,0.08], + [35017,0.116], + [35019,0.08], + [35021,0.133], + [35023,0.107], + [35025,0.044], + [35027,0.122], + [35028,0.1], + [35029,0.087], + [35031,0.059], + [35033,0.112], + [35035,0.162], + [35037,0.077], + [35039,0.071], + [35041,0.073], + [35043,0.101], + [35045,0.076], + [35047,0.088], + [35049,0.08], + [35051,0.155], + [35053,0.09], + [35055,0.098], + [35057,0.13], + [35059,0.102], + [35061,0.107], + [36001,0.06], + [36003,0.093], + [36005,0.023], + [36007,0.073], + [36009,0.099], + [36011,0.085], + [36013,0.081], + [36015,0.09], + [36017,0.092], + [36019,0.088], + [36021,0.08], + [36023,0.072], + [36025,0.089], + [36027,0.059], + [36029,0.071], + [36031,0.087], + [36033,0.079], + [36035,0.077], + [36037,0.084], + [36039,0.084], + [36041,0.114], + [36043,0.093], + [36045,0.131], + [36047,0.019], + [36049,0.078], + [36051,0.072], + [36053,0.079], + [36055,0.059], + [36057,0.074], + [36059,0.041], + [36061,0.023], + [36063,0.084], + [36065,0.083], + [36067,0.069], + [36069,0.08], + [36071,0.068], + [36073,0.093], + [36075,0.092], + [36077,0.08], + [36079,0.047], + [36081,0.023], + [36083,0.073], + [36085,0.04], + [36087,0.037], + [36089,0.087], + [36091,0.085], + [36093,0.071], + [36095,0.093], + [36097,0.106], + [36099,0.086], + [36101,0.106], + [36103,0.052], + [36105,0.075], + [36107,0.093], + [36109,0.045], + [36111,0.06], + [36113,0.094], + [36115,0.085], + [36117,0.089], + [36119,0.037], + [36121,0.079], + [36123,0.072], + [37001,0.072], + [37003,0.069], + [37005,0.094], + [37007,0.073], + [37009,0.067], + [37011,0.057], + [37013,0.08], + [37015,0.071], + [37017,0.082], + [37019,0.121], + [37021,0.081], + [37023,0.081], + [37025,0.076], + [37027,0.081], + [37029,0.166], + [37031,0.141], + [37033,0.077], + [37035,0.079], + [37037,0.077], + [37039,0.121], + [37041,0.095], + [37043,0.114], + [37045,0.08], + [37047,0.083], + [37049,0.159], + [37051,0.195], + [37053,0.153], + [37055,0.113], + [37057,0.079], + [37059,0.096], + [37061,0.072], + [37063,0.06], + [37065,0.063], + [37067,0.074], + [37069,0.075], + [37071,0.078], + [37073,0.099], + [37075,0.068], + [37077,0.076], + [37079,0.061], + [37081,0.068], + [37083,0.067], + [37085,0.141], + [37087,0.106], + [37089,0.098], + [37091,0.065], + [37093,0.162], + [37095,0.051], + [37097,0.069], + [37099,0.087], + [37101,0.093], + [37103,0.118], + [37105,0.089], + [37107,0.096], + [37109,0.089], + [37111,0.076], + [37113,0.103], + [37115,0.087], + [37117,0.076], + [37119,0.059], + [37121,0.069], + [37123,0.086], + [37125,0.116], + [37127,0.085], + [37129,0.081], + [37131,0.076], + [37133,0.216], + [37135,0.047], + [37137,0.15], + [37139,0.122], + [37141,0.103], + [37143,0.126], + [37145,0.078], + [37147,0.079], + [37149,0.091], + [37151,0.081], + [37153,0.072], + [37155,0.069], + [37157,0.069], + [37159,0.086], + [37161,0.077], + [37163,0.071], + [37165,0.081], + [37167,0.075], + [37169,0.085], + [37171,0.068], + [37173,0.07], + [37175,0.119], + [37177,0.092], + [37179,0.073], + [37181,0.064], + [37183,0.063], + [37185,0.082], + [37187,0.099], + [37189,0.057], + [37191,0.132], + [37193,0.077], + [37195,0.089], + [37197,0.084], + [37199,0.059], + [38001,0.076], + [38003,0.086], + [38005,0.078], + [38007,0.07], + [38009,0.105], + [38011,0.085], + [38013,0.065], + [38015,0.077], + [38017,0.065], + [38019,0.086], + [38021,0.086], + [38023,0.099], + [38025,0.1], + [38027,0.072], + [38029,0.087], + [38031,0.078], + [38033,0.088], + [38035,0.078], + [38037,0.101], + [38039,0.072], + [38041,0.093], + [38043,0.086], + [38045,0.091], + [38047,0.076], + [38049,0.112], + [38051,0.081], + [38053,0.068], + [38055,0.09], + [38057,0.089], + [38059,0.073], + [38061,0.08], + [38063,0.111], + [38065,0.111], + [38067,0.119], + [38069,0.072], + [38071,0.086], + [38073,0.1], + [38075,0.115], + [38077,0.081], + [38079,0.062], + [38081,0.081], + [38083,0.083], + [38085,0.056], + [38087,0.072], + [38089,0.076], + [38091,0.101], + [38093,0.081], + [38095,0.072], + [38097,0.085], + [38099,0.075], + [38101,0.119], + [38103,0.068], + [38105,0.081], + [39001,0.085], + [39003,0.082], + [39005,0.079], + [39007,0.099], + [39009,0.057], + [39011,0.076], + [39013,0.085], + [39015,0.095], + [39017,0.073], + [39019,0.084], + [39021,0.09], + [39023,0.111], + [39025,0.082], + [39027,0.095], + [39029,0.101], + [39031,0.082], + [39033,0.095], + [39035,0.066], + [39037,0.087], + [39039,0.083], + [39041,0.064], + [39043,0.099], + [39045,0.087], + [39047,0.082], + [39049,0.064], + [39051,0.086], + [39053,0.07], + [39055,0.071], + [39057,0.122], + [39059,0.1], + [39061,0.064], + [39063,0.079], + [39065,0.071], + [39067,0.091], + [39069,0.081], + [39071,0.101], + [39073,0.095], + [39075,0.051], + [39077,0.08], + [39079,0.073], + [39081,0.099], + [39083,0.093], + [39085,0.079], + [39087,0.088], + [39089,0.095], + [39091,0.088], + [39093,0.083], + [39095,0.069], + [39097,0.074], + [39099,0.082], + [39101,0.094], + [39103,0.079], + [39105,0.092], + [39107,0.073], + [39109,0.096], + [39111,0.083], + [39113,0.096], + [39115,0.086], + [39117,0.089], + [39119,0.087], + [39121,0.13], + [39123,0.102], + [39125,0.088], + [39127,0.094], + [39129,0.084], + [39131,0.093], + [39133,0.075], + [39135,0.097], + [39137,0.067], + [39139,0.094], + [39141,0.097], + [39143,0.084], + [39145,0.083], + [39147,0.083], + [39149,0.081], + [39151,0.085], + [39153,0.074], + [39155,0.098], + [39157,0.082], + [39159,0.067], + [39161,0.075], + [39163,0.079], + [39165,0.079], + [39167,0.101], + [39169,0.07], + [39171,0.083], + [39173,0.068], + [39175,0.084], + [40001,0.078], + [40003,0.112], + [40005,0.084], + [40007,0.048], + [40009,0.067], + [40011,0.062], + [40013,0.085], + [40015,0.086], + [40017,0.091], + [40019,0.094], + [40021,0.09], + [40023,0.09], + [40025,0.088], + [40027,0.097], + [40029,0.084], + [40031,0.19], + [40033,0.109], + [40035,0.076], + [40037,0.092], + [40039,0.069], + [40041,0.106], + [40043,0.063], + [40045,0.073], + [40047,0.09], + [40049,0.088], + [40051,0.099], + [40053,0.118], + [40055,0.099], + [40057,0.036], + [40059,0.107], + [40061,0.101], + [40063,0.085], + [40065,0.144], + [40067,0.082], + [40069,0.094], + [40071,0.105], + [40073,0.066], + [40075,0.1], + [40077,0.12], + [40079,0.101], + [40081,0.104], + [40083,0.093], + [40085,0.077], + [40087,0.086], + [40089,0.087], + [40091,0.12], + [40093,0.075], + [40095,0.109], + [40097,0.101], + [40099,0.11], + [40101,0.091], + [40103,0.085], + [40105,0.052], + [40107,0.078], + [40109,0.089], + [40111,0.091], + [40113,0.09], + [40115,0.093], + [40117,0.095], + [40119,0.054], + [40121,0.117], + [40123,0.071], + [40125,0.1], + [40127,0.113], + [40129,0.052], + [40131,0.102], + [40133,0.102], + [40135,0.094], + [40137,0.095], + [40139,0.025], + [40141,0.085], + [40143,0.077], + [40145,0.104], + [40147,0.087], + [40149,0.081], + [40151,0.061], + [40153,0.078], + [41001,0.147], + [41003,0.069], + [41005,0.082], + [41007,0.112], + [41009,0.12], + [41011,0.142], + [41013,0.139], + [41015,0.154], + [41017,0.099], + [41019,0.138], + [41021,0.126], + [41023,0.126], + [41025,0.133], + [41027,0.065], + [41029,0.107], + [41031,0.099], + [41033,0.127], + [41035,0.131], + [41037,0.119], + [41039,0.091], + [41041,0.133], + [41043,0.112], + [41045,0.084], + [41047,0.079], + [41049,0.111], + [41051,0.058], + [41053,0.089], + [41055,0.131], + [41057,0.111], + [41059,0.091], + [41061,0.1], + [41063,0.106], + [41065,0.118], + [41067,0.069], + [41069,0.141], + [41071,0.095], + [42001,0.095], + [42003,0.074], + [42005,0.099], + [42007,0.092], + [42009,0.089], + [42011,0.069], + [42013,0.093], + [42015,0.117], + [42017,0.068], + [42019,0.088], + [42021,0.1], + [42023,0.114], + [42025,0.101], + [42027,0.058], + [42029,0.063], + [42031,0.087], + [42033,0.094], + [42035,0.093], + [42037,0.076], + [42039,0.089], + [42041,0.092], + [42043,0.081], + [42045,0.06], + [42047,0.098], + [42049,0.091], + [42051,0.087], + [42053,0.089], + [42055,0.103], + [42057,0.092], + [42059,0.089], + [42061,0.094], + [42063,0.075], + [42065,0.086], + [42067,0.082], + [42069,0.079], + [42071,0.07], + [42073,0.091], + [42075,0.085], + [42077,0.065], + [42079,0.085], + [42081,0.098], + [42083,0.097], + [42085,0.097], + [42087,0.099], + [42089,0.08], + [42091,0.061], + [42093,0.094], + [42095,0.074], + [42097,0.089], + [42099,0.092], + [42101,0.048], + [42103,0.097], + [42105,0.109], + [42107,0.094], + [42109,0.069], + [42111,0.096], + [42113,0.118], + [42115,0.102], + [42117,0.111], + [42119,0.071], + [42121,0.107], + [42123,0.116], + [42125,0.086], + [42127,0.105], + [42129,0.091], + [42131,0.091], + [42133,0.085], + [44001,0.062], + [44003,0.082], + [44005,0.101], + [44007,0.052], + [44009,0.076], + [45001,0.08], + [45003,0.101], + [45005,0.074], + [45007,0.092], + [45009,0.065], + [45011,0.07], + [45013,0.125], + [45015,0.14], + [45017,0.094], + [45019,0.091], + [45021,0.073], + [45023,0.078], + [45025,0.068], + [45027,0.089], + [45029,0.092], + [45031,0.087], + [45033,0.07], + [45035,0.137], + [45037,0.09], + [45039,0.08], + [45041,0.078], + [45043,0.099], + [45045,0.076], + [45047,0.077], + [45049,0.081], + [45051,0.105], + [45053,0.116], + [45055,0.119], + [45057,0.085], + [45059,0.081], + [45061,0.066], + [45063,0.099], + [45065,0.127], + [45067,0.071], + [45069,0.071], + [45071,0.07], + [45073,0.102], + [45075,0.066], + [45077,0.077], + [45079,0.098], + [45081,0.074], + [45083,0.077], + [45085,0.139], + [45087,0.08], + [45089,0.071], + [45091,0.088], + [46003,0.086], + [46005,0.061], + [46007,0.077], + [46009,0.086], + [46011,0.059], + [46013,0.066], + [46015,0.053], + [46017,0.079], + [46019,0.117], + [46021,0.057], + [46023,0.084], + [46025,0.064], + [46027,0.061], + [46029,0.106], + [46031,0.095], + [46033,0.161], + [46035,0.085], + [46037,0.118], + [46039,0.091], + [46041,0.056], + [46043,0.086], + [46045,0.075], + [46047,0.146], + [46049,0.061], + [46051,0.083], + [46053,0.071], + [46055,0.066], + [46057,0.085], + [46059,0.069], + [46061,0.1], + [46063,0.077], + [46065,0.081], + [46067,0.084], + [46069,0.054], + [46071,0.06], + [46073,0.105], + [46075,0.063], + [46077,0.085], + [46079,0.083], + [46081,0.108], + [46083,0.073], + [46085,0.048], + [46087,0.079], + [46089,0.092], + [46091,0.079], + [46093,0.141], + [46095,0.053], + [46097,0.067], + [46099,0.075], + [46101,0.094], + [46102,0.055], + [46103,0.127], + [46105,0.109], + [46107,0.101], + [46109,0.078], + [46111,0.075], + [46115,0.09], + [46117,0.073], + [46119,0.085], + [46121,0.038], + [46123,0.051], + [46125,0.087], + [46127,0.091], + [46129,0.104], + [46135,0.101], + [46137,0.041], + [47001,0.101], + [47003,0.081], + [47005,0.1], + [47007,0.079], + [47009,0.096], + [47011,0.077], + [47013,0.083], + [47015,0.078], + [47017,0.085], + [47019,0.099], + [47021,0.082], + [47023,0.079], + [47025,0.074], + [47027,0.082], + [47029,0.1], + [47031,0.1], + [47033,0.074], + [47035,0.132], + [47037,0.056], + [47039,0.072], + [47041,0.076], + [47043,0.072], + [47045,0.07], + [47047,0.089], + [47049,0.089], + [47051,0.095], + [47053,0.08], + [47055,0.084], + [47057,0.088], + [47059,0.099], + [47061,0.063], + [47063,0.08], + [47065,0.076], + [47067,0.074], + [47069,0.073], + [47071,0.09], + [47073,0.089], + [47075,0.069], + [47077,0.071], + [47079,0.11], + [47081,0.1], + [47083,0.115], + [47085,0.101], + [47087,0.083], + [47089,0.099], + [47091,0.104], + [47093,0.082], + [47095,0.066], + [47097,0.066], + [47099,0.082], + [47101,0.079], + [47103,0.088], + [47105,0.1], + [47107,0.083], + [47109,0.073], + [47111,0.063], + [47113,0.075], + [47115,0.083], + [47117,0.074], + [47119,0.077], + [47121,0.079], + [47123,0.096], + [47125,0.196], + [47127,0.109], + [47129,0.089], + [47131,0.075], + [47133,0.066], + [47135,0.072], + [47137,0.09], + [47139,0.084], + [47141,0.069], + [47143,0.085], + [47145,0.123], + [47147,0.079], + [47149,0.076], + [47151,0.084], + [47153,0.107], + [47155,0.084], + [47157,0.072], + [47159,0.072], + [47161,0.145], + [47163,0.097], + [47165,0.086], + [47167,0.122], + [47169,0.09], + [47171,0.111], + [47173,0.092], + [47175,0.083], + [47177,0.077], + [47179,0.105], + [47181,0.093], + [47183,0.079], + [47185,0.092], + [47187,0.061], + [47189,0.087], + [48001,0.087], + [48003,0.055], + [48005,0.088], + [48007,0.121], + [48009,0.088], + [48011,0.112], + [48013,0.089], + [48015,0.058], + [48017,0.049], + [48019,0.145], + [48021,0.112], + [48023,0.078], + [48025,0.089], + [48027,0.214], + [48029,0.102], + [48031,0.122], + [48033,0.078], + [48035,0.083], + [48037,0.1], + [48039,0.066], + [48041,0.047], + [48043,0.091], + [48045,0.089], + [48047,0.038], + [48049,0.098], + [48051,0.087], + [48053,0.11], + [48055,0.068], + [48057,0.077], + [48059,0.108], + [48061,0.044], + [48063,0.085], + [48065,0.085], + [48067,0.116], + [48069,0.055], + [48071,0.078], + [48073,0.074], + [48075,0.055], + [48077,0.103], + [48079,0.044], + [48081,0.076], + [48083,0.102], + [48085,0.058], + [48087,0.076], + [48089,0.062], + [48091,0.126], + [48093,0.086], + [48095,0.075], + [48097,0.081], + [48099,0.205], + [48101,0.076], + [48103,0.058], + [48105,0.063], + [48107,0.051], + [48109,0.06], + [48111,0.073], + [48113,0.048], + [48115,0.036], + [48117,0.042], + [48119,0.104], + [48121,0.066], + [48123,0.07], + [48125,0.081], + [48127,0.055], + [48129,0.095], + [48131,0.053], + [48133,0.085], + [48135,0.05], + [48137,0.097], + [48139,0.084], + [48141,0.081], + [48143,0.076], + [48145,0.087], + [48147,0.105], + [48149,0.082], + [48151,0.096], + [48153,0.069], + [48155,0.072], + [48157,0.047], + [48159,0.102], + [48161,0.075], + [48163,0.046], + [48165,0.037], + [48167,0.086], + [48169,0.025], + [48171,0.091], + [48173,0.021], + [48175,0.087], + [48177,0.069], + [48179,0.069], + [48181,0.1], + [48183,0.081], + [48185,0.088], + [48187,0.151], + [48189,0.049], + [48191,0.061], + [48193,0.096], + [48195,0.054], + [48197,0.063], + [48199,0.09], + [48201,0.047], + [48203,0.086], + [48205,0.056], + [48207,0.058], + [48209,0.073], + [48211,0.069], + [48213,0.105], + [48215,0.032], + [48217,0.097], + [48219,0.055], + [48221,0.107], + [48223,0.086], + [48225,0.094], + [48227,0.088], + [48229,0.047], + [48231,0.091], + [48233,0.071], + [48235,0.082], + [48237,0.058], + [48239,0.062], + [48241,0.074], + [48243,0.115], + [48245,0.076], + [48247,0.035], + [48249,0.054], + [48251,0.065], + [48253,0.075], + [48255,0.064], + [48257,0.077], + [48259,0.093], + [48261,0], + [48263,0.086], + [48265,0.121], + [48267,0.123], + [48269,0.03], + [48271,0.217], + [48273,0.081], + [48275,0.08], + [48277,0.081], + [48279,0.052], + [48281,0.221], + [48283,0.068], + [48285,0.078], + [48287,0.082], + [48289,0.099], + [48291,0.088], + [48293,0.084], + [48295,0.067], + [48297,0.095], + [48299,0.141], + [48301,0.055], + [48303,0.062], + [48305,0.068], + [48307,0.089], + [48309,0.077], + [48311,0.053], + [48313,0.08], + [48315,0.096], + [48317,0.043], + [48319,0.095], + [48321,0.088], + [48323,0.018], + [48325,0.111], + [48327,0.117], + [48329,0.062], + [48331,0.084], + [48333,0.111], + [48335,0.053], + [48337,0.095], + [48339,0.075], + [48341,0.044], + [48343,0.121], + [48345,0.123], + [48347,0.068], + [48349,0.077], + [48351,0.092], + [48353,0.074], + [48355,0.097], + [48357,0.065], + [48359,0.05], + [48361,0.083], + [48363,0.097], + [48365,0.083], + [48367,0.098], + [48369,0.037], + [48371,0.067], + [48373,0.109], + [48375,0.069], + [48377,0.014], + [48379,0.121], + [48381,0.093], + [48383,0.045], + [48385,0.121], + [48387,0.055], + [48389,0.059], + [48391,0.09], + [48393,0.077], + [48395,0.062], + [48397,0.082], + [48399,0.081], + [48401,0.077], + [48403,0.14], + [48405,0.113], + [48407,0.093], + [48409,0.088], + [48411,0.082], + [48413,0.032], + [48415,0.062], + [48417,0.091], + [48419,0.061], + [48421,0.063], + [48423,0.069], + [48425,0.069], + [48427,0.015], + [48429,0.067], + [48431,0.047], + [48433,0.094], + [48435,0.102], + [48437,0.053], + [48439,0.072], + [48441,0.107], + [48443,0.097], + [48445,0.042], + [48447,0.079], + [48449,0.075], + [48451,0.107], + [48453,0.054], + [48455,0.132], + [48457,0.1], + [48459,0.086], + [48461,0.065], + [48463,0.079], + [48465,0.088], + [48467,0.088], + [48469,0.082], + [48471,0.08], + [48473,0.047], + [48475,0.061], + [48477,0.078], + [48479,0.027], + [48481,0.06], + [48483,0.065], + [48485,0.116], + [48487,0.069], + [48489,0.035], + [48491,0.086], + [48493,0.124], + [48495,0.055], + [48497,0.097], + [48499,0.116], + [48501,0.027], + [48503,0.089], + [48505,0.043], + [48507,0.045], + [49001,0.075], + [49003,0.064], + [49005,0.039], + [49007,0.076], + [49009,0.046], + [49011,0.075], + [49013,0.061], + [49015,0.073], + [49017,0.103], + [49019,0.073], + [49021,0.076], + [49023,0.056], + [49025,0.103], + [49027,0.076], + [49029,0.07], + [49031,0.069], + [49033,0.08], + [49035,0.048], + [49037,0.053], + [49039,0.054], + [49041,0.075], + [49043,0.045], + [49045,0.078], + [49047,0.057], + [49049,0.036], + [49051,0.047], + [49053,0.088], + [49055,0.055], + [49057,0.077], + [50001,0.067], + [50003,0.081], + [50005,0.083], + [50007,0.058], + [50009,0.115], + [50011,0.075], + [50013,0.082], + [50015,0.076], + [50017,0.087], + [50019,0.087], + [50021,0.073], + [50023,0.071], + [50025,0.08], + [50027,0.083], + [51001,0.102], + [51003,0.079], + [51005,0.085], + [51007,0.096], + [51009,0.1], + [51011,0.114], + [51013,0.065], + [51015,0.093], + [51017,0.104], + [51019,0.106], + [51021,0.068], + [51023,0.107], + [51025,0.097], + [51027,0.045], + [51029,0.089], + [51031,0.092], + [51033,0.122], + [51035,0.078], + [51036,0.095], + [51037,0.088], + [51041,0.097], + [51043,0.096], + [51045,0.077], + [51047,0.099], + [51049,0.101], + [51051,0.078], + [51053,0.094], + [51057,0.073], + [51059,0.085], + [51061,0.115], + [51063,0.068], + [51065,0.108], + [51067,0.091], + [51069,0.098], + [51071,0.074], + [51073,0.147], + [51075,0.081], + [51077,0.075], + [51079,0.099], + [51081,0.089], + [51083,0.09], + [51085,0.089], + [51087,0.071], + [51089,0.092], + [51091,0.153], + [51093,0.133], + [51095,0.162], + [51097,0.089], + [51099,0.176], + [51101,0.088], + [51103,0.137], + [51105,0.072], + [51107,0.078], + [51109,0.114], + [51111,0.108], + [51113,0.079], + [51115,0.147], + [51117,0.096], + [51119,0.128], + [51121,0.055], + [51125,0.1], + [51127,0.113], + [51131,0.111], + [51133,0.129], + [51135,0.093], + [51137,0.113], + [51139,0.09], + [51141,0.074], + [51143,0.084], + [51145,0.093], + [51147,0.066], + [51149,0.166], + [51153,0.128], + [51155,0.093], + [51157,0.103], + [51159,0.09], + [51161,0.087], + [51163,0.092], + [51165,0.071], + [51167,0.058], + [51169,0.084], + [51171,0.099], + [51173,0.087], + [51175,0.129], + [51177,0.141], + [51179,0.194], + [51181,0.131], + [51183,0.102], + [51185,0.072], + [51187,0.104], + [51191,0.08], + [51193,0.142], + [51195,0.071], + [51197,0.097], + [51199,0.198], + [51510,0.089], + [51520,0.091], + [51530,0.081], + [51540,0.042], + [51550,0.154], + [51570,0.125], + [51580,0.094], + [51590,0.091], + [51595,0.05], + [51600,0.078], + [51610,0.086], + [51620,0.095], + [51630,0.084], + [51640,0.104], + [51650,0.185], + [51660,0.028], + [51670,0.125], + [51678,0.045], + [51680,0.073], + [51683,0.077], + [51685,0.073], + [51690,0.075], + [51700,0.151], + [51710,0.159], + [51720,0.076], + [51730,0.103], + [51735,0.156], + [51740,0.148], + [51750,0.053], + [51760,0.063], + [51770,0.083], + [51775,0.086], + [51790,0.089], + [51800,0.165], + [51810,0.173], + [51820,0.094], + [51830,0.076], + [51840,0.081], + [53001,0.043], + [53003,0.117], + [53005,0.089], + [53007,0.083], + [53009,0.145], + [53011,0.092], + [53013,0.122], + [53015,0.116], + [53017,0.077], + [53019,0.135], + [53021,0.06], + [53023,0.149], + [53025,0.082], + [53027,0.123], + [53029,0.193], + [53031,0.138], + [53033,0.058], + [53035,0.168], + [53037,0.085], + [53039,0.137], + [53041,0.12], + [53043,0.133], + [53045,0.135], + [53047,0.104], + [53049,0.14], + [53051,0.137], + [53053,0.132], + [53055,0.102], + [53057,0.112], + [53059,0.123], + [53061,0.084], + [53063,0.111], + [53065,0.129], + [53067,0.134], + [53069,0.146], + [53071,0.096], + [53073,0.081], + [53075,0.05], + [53077,0.063], + [54001,0.095], + [54003,0.112], + [54005,0.077], + [54007,0.077], + [54009,0.103], + [54011,0.08], + [54013,0.055], + [54015,0.077], + [54017,0.099], + [54019,0.105], + [54021,0.072], + [54023,0.096], + [54025,0.097], + [54027,0.12], + [54029,0.101], + [54031,0.111], + [54033,0.093], + [54035,0.088], + [54037,0.118], + [54039,0.082], + [54041,0.1], + [54043,0.079], + [54045,0.062], + [54047,0.068], + [54049,0.093], + [54051,0.102], + [54053,0.084], + [54055,0.088], + [54057,0.108], + [54059,0.062], + [54061,0.058], + [54063,0.112], + [54065,0.114], + [54067,0.091], + [54069,0.084], + [54071,0.1], + [54073,0.091], + [54075,0.099], + [54077,0.083], + [54079,0.087], + [54081,0.097], + [54083,0.093], + [54085,0.102], + [54087,0.099], + [54089,0.1], + [54091,0.134], + [54093,0.09], + [54095,0.088], + [54097,0.094], + [54099,0.074], + [54101,0.09], + [54103,0.073], + [54105,0.107], + [54107,0.096], + [54109,0.087], + [55001,0.113], + [55003,0.094], + [55005,0.091], + [55007,0.113], + [55009,0.07], + [55011,0.086], + [55013,0.125], + [55015,0.069], + [55017,0.09], + [55019,0.076], + [55021,0.085], + [55023,0.091], + [55025,0.054], + [55027,0.084], + [55029,0.087], + [55031,0.098], + [55033,0.071], + [55035,0.07], + [55037,0.124], + [55039,0.073], + [55041,0.095], + [55043,0.065], + [55045,0.073], + [55047,0.084], + [55049,0.078], + [55051,0.119], + [55053,0.097], + [55055,0.075], + [55057,0.103], + [55059,0.075], + [55061,0.074], + [55063,0.08], + [55065,0.077], + [55067,0.101], + [55069,0.091], + [55071,0.084], + [55073,0.082], + [55075,0.113], + [55077,0.125], + [55078,0.071], + [55079,0.055], + [55081,0.134], + [55083,0.102], + [55085,0.102], + [55087,0.07], + [55089,0.058], + [55091,0.084], + [55093,0.072], + [55095,0.09], + [55097,0.069], + [55099,0.106], + [55101,0.082], + [55103,0.088], + [55105,0.084], + [55107,0.104], + [55109,0.071], + [55111,0.084], + [55113,0.098], + [55115,0.087], + [55117,0.073], + [55119,0.082], + [55121,0.078], + [55123,0.074], + [55125,0.113], + [55127,0.062], + [55129,0.118], + [55131,0.08], + [55133,0.066], + [55135,0.106], + [55137,0.105], + [55139,0.082], + [55141,0.092], + [56001,0.072], + [56003,0.1], + [56005,0.102], + [56007,0.085], + [56009,0.132], + [56011,0.123], + [56013,0.102], + [56015,0.089], + [56017,0.114], + [56019,0.114], + [56021,0.141], + [56023,0.096], + [56025,0.093], + [56027,0.07], + [56029,0.106], + [56031,0.101], + [56033,0.108], + [56035,0.11], + [56037,0.086], + [56039,0.053], + [56041,0.074], + [56043,0.119], + [56045,0.103] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-swing.json b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-swing.json new file mode 100644 index 0000000..232edad --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-swing.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2008 Presidential Election | Swing", + "description" : "Democrat/Republican swing (-dem/gop+)in the 2008 presidential election.", + "units" : "-dem/gop+", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "GitHub user @wboykinm" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2008.swing"], + [26041,-0.0646314778246251], + [48295,0.751602564102564], + [1127,0.472674294648568], + [48389,-0.0527695837430351], + [56017,0.495311863024867], + [20043,0.360481789503871], + [37183,-0.145903556127995], + [37147,-0.0883269737195679], + [48497,0.562610056740364], + [21207,0.572945019052804], + [5053,0.525588458618072], + [31147,0.215045395590143], + [47123,0.388885529418879], + [36059,-0.0846470701041744], + [1011,-0.485005553498704], + [42057,0.493084593116758], + [20031,0.462994011976048], + [31151,-0.0469851213782302], + [31035,0.472438282042611], + [28033,0.385205719745023], + [22061,0.125869702719798], + [40129,0.67915036333147], + [22057,0.474191178471334], + [40135,0.360057471264368], + [51153,-0.160279654281741], + [23031,-0.209071911034817], + [23015,-0.122750673026968], + [47025,0.399590363795962], + [29063,0.261296660117878], + [42045,-0.216211162597784], + [12119,0.272273860802539], + [36055,-0.179474053914166], + [18045,0.146718146718147], + [39063,0.235602094240838], + [34009,0.0875829497220064], + [28047,0.26182646915188], + [5141,0.330636377781235], + [48343,0.211586418568962], + [30073,0.129847029526859], + [47181,0.50101270484257], + [48153,0.419252187748608], + [46119,0.427518427518428], + [19097,-0.24849104859335], + [28087,0.0288571113480132], + [17155,-0.159243441122636], + [45073,0.381236743351281], + [36101,0.17061256076032], + [37143,0.14046511627907], + [28035,0.136488594992199], + [31027,0.419795221843003], + [13141,-0.632794457274827], + [39091,0.271391847227323], + [39059,0.0934490548091784], + [48297,0.49408641081342], + [47151,0.482784543677643], + [30027,0.360039728521768], + [35021,0.158576051779935], + [23027,-0.118934081346424], + [49007,0.082418309300172], + [20053,0.407381615598886], + [27113,-0.0219813309244203], + [27159,0.17774607703281], + [18131,0.157499145883157], + [38041,0.37490377213241], + [28003,0.446936725811851], + [19143,0.323107049608355], + [50009,-0.148823334438184], + [1015,0.328951152376648], + [13253,0.164779874213836], + [6105,-0.0474647659160862], + [17181,0.121623136419684], + [31055,-0.0471490490853919], + [51670,-0.120415518337927], + [20095,0.459899046550757], + [21209,0.208782189391608], + [48467,0.554819902169079], + [31177,0.267758484609313], + [29199,0.223310479921645], + [47027,0.146374829001368], + [55111,-0.222173635171045], + [48045,0.501216545012166], + [45007,0.337233253687073], + [48125,0.514522821576763], + [19173,0.08801624915369], + [37193,0.38854287865307], + [27081,-0.00864361702127658], + [48369,0.610086767895879], + [1005,0.0146155841909539], + [42125,0.047794041744947], + [51035,0.331652569941444], + [47033,0.340043616842812], + [39021,0.202742092194753], + [36049,0.0897307165677772], + [29143,0.153585332161246], + [51135,0.0124421296296295], + [26089,-0.0291751206884489], + [48275,0.45750184774575], + [51073,0.27219152854512], + [35051,0.123859191655802], + [6069,-0.232240719677386], + [41051,-0.576342686133115], + [51610,-0.408852213053263], + [48195,0.770004791566842], + [13025,0.638974028069044], + [27079,0.0438824333561176], + [36061,-0.728393793653479], + [18073,0.206481554314481], + [21183,0.167042889390519], + [21081,0.278125724889817], + [5025,0.458060678167757], + [27055,-0.10921213259461], + [37129,0.0140336446348144], + [26013,0.0338840660879305], + [48189,0.451766373114688], + [20171,0.700559701492537], + [48211,0.723254324151185], + [15007,-0.531525449157946], + [54047,-0.0868187579214195], + [22043,0.64825199856819], + [39143,-0.047363297640227], + [48465,-0.0965918014763625], + [48279,0.486222222222222], + [37041,0.011392574721887], + [38085,-0.683823529411765], + [39115,0.0739931314392757], + [1057,0.493715881680843], + [22017,-0.0306967076203556], + [13191,0.0609342169064167], + [51109,0.0794195250659631], + [46121,-0.589060813242174], + [31085,0.688644688644689], + [55113,-0.0631414547077198], + [6083,-0.233815618081881], + [51820,0.104231166150671], + [28049,-0.391804337794186], + [44003,-0.177962183340228], + [21229,0.272377285851781], + [37065,-0.346564531104921], + [27029,0.0993282149712091], + [17061,0.0765162200282088], + [21029,0.327784933452228], + [51071,0.165926313038934], + [20083,0.607806691449814], + [20045,-0.314732356145011], + [40097,0.280610648814365], + [22105,0.313252005347594], + [36013,-0.00953074097178897], + [25007,-0.528343795267987], + [20127,0.347951114306255], + [48141,-0.327729537986116], + [30025,0.539797395079595], + [55019,-0.0774011707740118], + [19165,0.098409699259959], + [13103,0.510463155806804], + [55011,-0.14930151338766], + [31051,0.307213474917613], + [41023,0.469269322078607], + [24033,-0.790786818917703], + [29219,0.128088426527959], + [36051,0.080006737409466], + [48391,0.146122953351869], + [22013,0.0253903598099117], + [22023,0.668827660723933], + [17045,0.0804569463210907], + [21047,0.21342840692679], + [13193,-0.310094700785815], + [1003,0.519297767087791], + [38105,0.365827181936604], + [19105,-0.105674550807025], + [22095,-0.164604424446944], + [32031,-0.129090177908933], + [20187,0.53921568627451], + [18139,0.138933333333333], + [29037,0.198853428611801], + [38057,0.307854630715123], + [55035,-0.22524720450975], + [29079,0.310946358482338], + [47077,0.434798877455566], + [35029,-0.0539053905390539], + [47173,0.418996188055909], + [48005,0.352010501589056], + [46061,0.194805194805195], + [48271,0.177922077922078], + [39031,0.0602542165729652], + [40043,0.685882886972311], + [6065,-0.0235820980130949], + [30109,0.443809523809524], + [48325,0.34126831765534], + [9005,-0.0500750920649289], + [20039,0.552219321148825], + [13015,0.457769796284864], + [8051,-0.279152756993208], + [30045,0.337228714524207], + [17099,-0.112967656899523], + [40103,0.535509396636993], + [53001,0.349811478843737], + [19109,-0.0330578512396694], + [51001,0.014637305699482], + [19075,0.171492204899777], + [23005,-0.303784292830413], + [37099,-0.0548736462093863], + [39119,0.0736435121084669], + [17177,-0.0677392040643523], + [8053,0.178082191780822], + [40093,0.703255545952175], + [48171,0.575582832193756], + [6061,0.115074900299837], + [27153,0.114151418499244], + [39041,0.198236921831764], + [16071,0.638004750593824], + [21035,0.18646080760095], + [12013,0.409341550437885], + [36009,0.107958973719487], + [18069,0.275691087145159], + [39099,-0.271937152588118], + [48059,0.623849964614296], + [47165,0.353151905593353], + [46109,-0.200089827082866], + [17185,0.138558432470259], + [20121,0.240677069558318], + [27147,0.0551247118004612], + [51063,0.203849281648143], + [16027,0.359385681807342], + [45041,0.0319492682252518], + [29073,0.243278517358392], + [16013,-0.337762372424418], + [31141,0.423494570582428], + [42027,-0.119532438419044], + [13123,0.525675920885502], + [12039,-0.391684901531729], + [48175,0.267162944582299], + [5143,0.133494565866476], + [41019,0.207372552082316], + [19179,-0.139314086417361], + [29151,0.452719184961975], + [28009,0.0223880597014925], + [48179,0.714497957162313], + [13009,-0.0465569774527727], + [13023,0.452054794520548], + [47071,0.433897274845507], + [32023,0.137863150987293], + [39057,0.186672486541539], + [47081,0.146280100634959], + [48473,0.0721234920223115], + [55117,0.00663442055036279], + [8015,0.00123279227450168], + [21161,0.173173173173173], + [41039,-0.282236664567779], + [13003,0.348384855852727], + [9013,-0.212422126239589], + [40045,0.70455735987428], + [13053,-0.0115783059110298], + [22085,0.525921233238306], + [55099,-0.136907730673317], + [20175,0.434897804693414], + [28141,0.522104493971502], + [18083,0.0660167818361304], + [37011,0.445731009034228], + [22015,0.440593623392637], + [39085,-0.00849141218974492], + [5069,-0.26820054945055], + [30035,-0.404595814526057], + [31143,0.463453815261044], + [55093,-0.0921119592875318], + [51057,-0.10446075663467], + [48051,0.377878787878788], + [13221,0.299874529485571], + [5031,0.251433305716653], + [21041,0.0843116328708644], + [13273,-0.139148257800046], + [42011,-0.0931178193286776], + [18013,0.0260298205711398], + [38077,0.0522055847834884], + [42017,-0.0874121945219707], + [16015,0.324802613667302], + [36111,-0.239899566309062], + [29095,-0.256733758356656], + [49055,0.474509803921569], + [20165,0.417004048582996], + [41061,0.243398392652124], + [29186,-0.143152336126736], + [30101,0.282375851996105], + [37157,0.161442387131263], + [5137,0.377240841777085], + [39123,-0.0637509919760162], + [29081,0.322453277178205], + [27173,-0.0439295644114921], + [5041,-0.124781085814361], + [27023,-0.0602877000161629], + [47095,0.0686675761709867], + [22025,0.355102040816327], + [48021,0.0835163111668758], + [39161,0.278126306984525], + [12123,0.394600431965443], + [13133,0.151569050946512], + [56013,0.296333118895842], + [36113,-0.0268684957426679], + [19049,0.0562252748964271], + [8111,-0.0954356846473029], + [53007,0.121837762059517], + [51093,0.135394079975796], + [18105,-0.32495844521161], + [51077,0.293447293447293], + [48429,0.641773962804006], + [8007,0.123880135928329], + [8001,-0.187188331776977], + [26001,0.0806349206349206], + [37119,-0.245484372471224], + [21165,-0.0497737556561086], + [54083,0.14350410416077], + [48411,0.598846787479407], + [54077,0.270598438855161], + [1039,0.586840091813313], + [15001,-0.547354799421481], + [5061,0.25749521581969], + [35023,-0.0295489891135303], + [26151,0.0827334482409003], + [46031,-0.220116618075802], + [42121,0.195155950514027], + [39163,0.101750547045952], + [13241,0.465544871794872], + [48337,0.592705942361643], + [13281,0.510469822276966], + [19021,0.0178356230416967], + [29169,0.290723599756773], + [5057,0.196583590030804], + [27067,0.0556799104644656], + [39027,0.30848315495334], + [41031,0.0890648193963384], + [38089,0.297616848328099], + [54017,0.502201151371487], + [21127,0.264849250767287], + [26047,0.0448146278534971], + [53009,-0.0337412726645252], + [45021,0.296783625730994], + [27145,0.0715883668903803], + [51570,0.412587412587413], + [28023,0.252455089820359], + [24017,-0.258091023108971], + [5117,0.359217364720269], + [48031,0.399385875127943], + [21169,0.338883447600392], + [36091,-0.0346118721461187], + [17015,-0.0488030683771988], + [42065,0.303177691309987], + [28015,0.314025930291295], + [12019,0.431373801916933], + [12115,0.00102634945496471], + [12071,0.104399777037062], + [29205,0.320731707317073], + [51099,0.136569829167069], + [5023,0.45917712819573], + [27011,-0.0652024708304736], + [5079,0.190149183045228], + [21225,0.0533423362592842], + [37033,-0.031340091137357], + [42035,0.0278748030956784], + [31031,0.595133491044272], + [6021,0.22563251762754], + [56033,0.390775538093611], + [31003,0.517834394904459], + [20109,0.681303116147309], + [21227,0.190646328615272], + [16059,0.469367341835459], + [29141,0.209183673469388], + [47091,0.431093217714463], + [13081,0.178319350113197], + [16031,0.651354534746761], + [38083,0.415816326530612], + [17087,0.352931004668857], + [9007,-0.233582845368506], + [12069,0.136219554030875], + [35037,0.209504343382729], + [48129,0.650450450450451], + [5059,0.25406627815952], + [1105,-0.452737940026076], + [47187,0.398645734494954], + [32021,0.0221418888386806], + [47073,0.426665377550034], + [18175,0.176608609331288], + [51013,-0.451161936254248], + [37103,0.0845043310875842], + [8081,0.44656288263075], + [51121,-0.0500012481589656], + [48483,0.718637992831541], + [20033,0.59541188738269], + [47109,0.0708292144647003], + [26071,-0.0220673635307782], + [46011,-0.0568998386860243], + [18171,0.104820198928845], + [21057,0.493643298220124], + [29031,0.339679792297707], + [38043,0.281090289608177], + [4012,0.290547995586613], + [37007,-0.210916252461784], + [48205,0.745028046914839], + [12095,-0.187406081667359], + [21091,-0.0509475756829929], + [41035,0.342063687111611], + [54057,0.340137251451698], + [22113,0.485021573864804], + [26113,0.213248269309081], + [5037,0.260002868205937], + [9015,-0.149610087604996], + [29075,0.227883713660519], + [28091,0.316273676072671], + [33011,-0.037832057743146], + [19145,0.200110329609709], + [37135,-0.452802678474997], + [47067,0.448905109489051], + [20011,0.278263491106421], + [8085,0.305124638921579], + [18107,0.202149538910635], + [13011,0.665853261753701], + [35025,0.446437279869954], + [54041,0.345437616387337], + [29065,0.387274623752049], + [28115,0.53072625698324], + [48071,0.516089860352156], + [37059,0.387072771466839], + [35001,-0.216377088525474], + [12035,-0.0159212769891325], + [29123,0.173111965985017], + [35041,0.303598427577865], + [48231,0.410703877669969], + [18095,-0.0662894527451153], + [48361,0.475493054364603], + [30039,0.255266418835192], + [48035,0.524540283106231], + [21111,-0.121229936756547], + [6001,-0.607154064413524], + [40105,0.364700585321927], + [48169,0.566724436741768], + [20185,0.467844869906725], + [26025,-0.0951928256805146], + [19051,0.0940954435157724], + [29157,0.295593061415846], + [47177,0.216452369112737], + [42003,-0.156167312161115], + [36073,0.189560102928563], + [4027,0.139512240356083], + [28111,0.4525], + [9009,-0.235139686811778], + [35045,0.214414885504499], + [42127,0.124369301584492], + [21177,0.01784022734449], + [49037,0.0459952418715306], + [26037,-0.00702222445949008], + [51590,-0.192680925022932], + [20067,0.517110266159696], + [12087,-0.0495481927710844], + [29035,0.303116147308782], + [5001,0.23015873015873], + [40069,0.368713671973717], + [37107,0.000858881959744595], + [48209,0.0207856171106786], + [4005,-0.172457524385013], + [20143,0.534852989758837], + [48437,0.348557692307692], + [41063,0.310536044362292], + [19091,0.14540059347181], + [22091,-0.171620955821974], + [48185,0.345753689813695], + [40051,0.467052860246198], + [31095,0.160916367651118], + [39127,0.0307035108797222], + [48233,0.695496948059426], + [13099,0.0203236733157697], + [16057,-0.0702438456614095], + [56045,0.598290598290598], + [46053,0.297174111212397], + [49029,0.6555], + [22021,0.535521395928542], + [46017,-0.488524590163934], + [19133,0.0246493837654058], + [16017,0.174084803792468], + [42095,-0.124837451235371], + [51690,-0.283410852713178], + [40131,0.440633519408023], + [55119,0.00251393594928406], + [17145,0.0393378972105856], + [27021,0.0868473895582329], + [48417,0.721179624664879], + [48339,0.531212680490718], + [6099,-0.0176325930433019], + [47013,0.376390904692792], + [27085,0.18856092550546], + [30017,0.146782085058337], + [48165,0.677819083023544], + [35057,0.0949868073878628], + [33007,-0.184835301429459], + [47135,0.0912820512820514], + [6111,-0.125198678078536], + [40099,0.403521918321469], + [20201,0.546611627106983], + [48245,-0.0225872222158942], + [18057,0.224011553022911], + [19041,0.0519323671497585], + [47015,0.245827864241515], + [1049,0.520813042557696], + [42067,0.357621440536013], + [26105,-0.0447741245656241], + [34003,-0.0953837928478559], + [48017,0.40695652173913], + [17013,-0.0763993948562783], + [40061,0.370220038453322], + [27015,0.124161326799849], + [45057,0.150524842547236], + [21149,0.0972637387905266], + [22107,-0.0925987387985396], + [28113,-0.0348636135438166], + [25019,-0.372304582210243], + [13321,0.389089161259313], + [26097,0.0382843526608419], + [51089,0.10612638687892], + [1009,0.705407553009075], + [13303,-0.0443159922928709], + [4019,-0.0613595430453353], + [38025,0.34411947728687], + [21019,0.125221500295334], + [8069,-0.098988761982834], + [51037,0.109758104327793], + [29117,0.242377100186683], + [48315,0.219187841367846], + [51101,0.195186522262335], + [28077,0.256181713628522], + [45077,0.471509617340596], + [21025,0.0955701394585726], + [51540,-0.587726836172471], + [17189,0.144721689059501], + [29135,0.363761257823233], + [24001,0.26503539762183], + [27025,0.105207895842083], + [29181,0.309880815071127], + [48419,0.444759206798867], + [17183,-0.00594427244582041], + [48067,0.406916475486447], + [26067,0.0595411848358969], + [26085,-0.125289128758674], + [17071,-0.179446219382322], + [39033,0.195496020190254], + [21101,-0.0268751277334969], + [13283,0.243022464261402], + [22035,-0.287702357284862], + [49011,0.43465840583205], + [13271,0.143514259429623], + [51195,0.281760011503343], + [48037,0.381593618663693], + [48241,0.423028391167192], + [47075,-0.214445271779598], + [1045,0.449780747546461], + [40123,0.367269667648296], + [22027,0.107011070110701], + [29041,0.130497825036249], + [45055,0.189224324714719], + [51015,0.40355137350129], + [6085,-0.417308517814436], + [29055,0.211332930026215], + [39007,-0.138211751864653], + [13173,0.254475254475254], + [13161,0.480758184951178], + [18033,0.153641993512238], + [42081,0.244528472493373], + [48225,0.377110694183865], + [38059,0.215477293790547], + [42063,0.0723526853663841], + [39165,0.364386377261179], + [31137,0.523809523809524], + [42043,-0.0915429792610734], + [20091,0.0912919440293438], + [25001,-0.142892319056926], + [19073,-0.00466101694915255], + [6025,-0.266020434896516], + [19065,-0.168397112627311], + [37001,0.0931527039528357], + [18065,0.0399427344309233], + [26079,0.0899241603466956], + [16077,0.261416756562388], + [46029,0.0650848024062161], + [46117,0.332023575638507], + [40115,0.236015394254005], + [39097,0.237717353250088], + [45083,0.219453662560699], + [8091,-0.0895770895770895], + [37081,-0.18506873934092], + [16075,0.425205283827204], + [17011,-0.0582142857142857], + [5049,0.195310771953108], + [30063,-0.27565736634424], + [1065,-0.217795160107553], + [48105,0.334200260078023], + [13125,0.702549575070822], + [1099,0.102678571428571], + [30001,0.300756756756757], + [17163,-0.227219259092154], + [29147,0.106848225822483], + [5135,0.30110457610099], + [54009,0.0252118206240959], + [21117,0.211834389975295], + [48257,0.36032783127006], + [16085,0.0708904771102956], + [26021,-0.0555606383395851], + [36089,-0.166002656042497], + [37189,-0.0435094258476095], + [36117,0.100314177572174], + [8023,-0.5], + [17049,0.36545070847151], + [51059,-0.213873781907997], + [39001,0.247564056297366], + [17135,-0.0269757139466814], + [36031,-0.135333005518221], + [12037,0.282930107526882], + [39109,0.290505705844871], + [53039,-0.00211928549803209], + [41009,-0.125068268705625], + [1101,-0.193239728591034], + [29039,0.341221618164375], + [17097,-0.198443474527278], + [5017,-0.179000387446726], + [13107,0.249694301785278], + [27093,0.111991417017413], + [17043,-0.109312094372387], + [26121,-0.297423040763686], + [36109,-0.428687758963428], + [21083,0.264985219196176], + [48317,0.631238990017616], + [6053,-0.390223968565815], + [13247,-0.0962693940769621], + [13109,0.283628779979145], + [29097,0.336244910015402], + [40039,0.493429822890878], + [22001,0.464676086376966], + [42123,0.0630007683020524], + [54091,0.188396241964727], + [48493,0.340710684864134], + [55051,-0.133214920071048], + [37113,0.218279506406093], + [5115,0.443486323597589], + [1131,-0.423456790123457], + [13137,0.604527478521751], + [8095,0.443151298119964], + [42013,0.245520839283334], + [5045,0.258129325098594], + [5139,0.266022410624296], + [20003,0.335595137121855], + [30005,-0.198169658570926], + [31093,0.260750853242321], + [55059,-0.183704564529666], + [48291,0.441111992163814], + [45037,0.110351476904198], + [38053,0.301907968574635], + [34035,-0.0618181331405699], + [32007,0.414442295293359], + [55045,-0.261737604212374], + [12051,0.0725552050473186], + [36069,0.00135258781875325], + [20007,0.508021390374332], + [35015,0.259382398871593], + [16061,0.45381984036488], + [24045,0.058447377982318], + [48187,0.312876129718235], + [51720,0.000672494956287739], + [46003,0.095928226363009], + [8067,-0.165239477503628], + [51710,-0.433683657982723], + [16035,0.359259259259259], + [36045,0.0535090918564061], + [33005,-0.278973823975721], + [48481,0.312778396436526], + [26065,-0.338211949287072], + [19099,-0.0764545263600084], + [6033,-0.19843478962443], + [22125,0.132075471698113], + [38051,0.225418060200669], + [55041,-0.153149266609146], + [53055,-0.427409988385598], + [27007,-0.103622423212892], + [51053,0.021922956467272], + [38063,-0.0626830697129467], + [20065,0.530685920577617], + [36043,0.0945232658256279], + [13113,0.309246097867855], + [23007,-0.208243727598566], + [38037,0.354094579008074], + [40017,0.522464161825553], + [13061,-0.223382045929019], + [51770,-0.236560206308272], + [13201,0.397865292602135], + [48163,-0.187947641392937], + [17175,0.0543554006968641], + [48269,0.89937106918239], + [30111,0.0648706236044425], + [31119,0.399579618757701], + [44009,-0.399756576648229], + [31133,0.280178837555887], + [46037,-0.130820399113082], + [17093,-0.0728936299379905], + [19029,0.110156574754053], + [4017,0.118336162988115], + [16005,0.13365350825817], + [47099,0.343676479938958], + [8101,-0.151918603021554], + [8043,0.298482984829848], + [12043,0.167821633021995], + [13095,-0.35127449459697], + [13155,0.370331404523935], + [31063,0.49530007230658], + [36039,0.100826144506824], + [22055,0.317515923566879], + [39065,0.214386459802539], + [56043,0.478739369684842], + [55107,-0.0846933033202026], + [27045,-0.0850284038849185], + [29051,0.271906947631963], + [13087,0.142136901299205], + [17057,-0.217793906025152], + [22045,0.234066035132898], + [46023,0.0771195097037793], + [46069,0.415265200517464], + [13291,0.526431088675112], + [17117,-0.100040944452027], + [21063,-0.259745588838736], + [35055,-0.656396115573672], + [46039,0.0158730158730158], + [19023,0.0475651189127972], + [37173,0.0164738871363477], + [48307,0.513206285523236], + [40079,0.386416582044083], + [28043,0.106987481132913], + [48223,0.44968430898745], + [21049,0.254006358268994], + [42131,0.0769586674892042], + [20111,0.0613215021391222], + [47069,-0.0622756640344581], + [54043,0.0912091209120911], + [13151,0.0751219734622224], + [20101,0.616683217477656], + [48173,0.812274368231047], + [6081,-0.496063890856477], + [38011,0.396845425867508], + [51027,0.0555555555555556], + [56011,0.658005029337804], + [17201,-0.130309877340219], + [51630,-0.286580267558528], + [48289,0.593928980526919], + [55123,-0.223861171366594], + [17129,0.151458137347131], + [48333,0.629939562993956], + [21005,0.330820527689185], + [37121,0.421481194261342], + [19183,0.00739176346356918], + [31059,0.330782608695652], + [16025,0.385878489326765], + [17199,0.150195760766842], + [45039,-0.319829609667043], + [1079,0.284814071047711], + [12055,0.182297772567409], + [19077,0.0787857518862958], + [31157,0.343388915796029], + [29221,-0.000530954656472349], + [53077,0.10766061950408], + [29119,0.382874387023765], + [21077,0.18024374599102], + [48501,0.6309963099631], + [42103,0.0426887676481613], + [29057,0.41501976284585], + [48401,0.465027645069515], + [20141,0.574220813523508], + [19187,-0.086556371206311], + [42075,0.190962099125364], + [20099,0.131447963800905], + [48079,0.45489443378119], + [24025,0.192838083838308], + [12015,0.0732940785412413], + [13027,0.135686528497409], + [29071,0.125465429635268], + [41055,0.244357212953876], + [6057,-0.0544215180545321], + [47041,0.181147896486916], + [26111,0.0363560189926451], + [34013,-0.528814864061024], + [21159,0.555066079295154], + [19093,0.16676217765043], + [39093,-0.181566258382752], + [45009,-0.314328136599852], + [47147,0.315381506924801], + [47169,0.0673411318368637], + [29183,0.0983596900387185], + [54021,0.180073499387505], + [37095,-0.0118222584590297], + [47107,0.428174878556558], + [21163,0.212796809860431], + [20079,0.17541111981206], + [55049,-0.351895734597156], + [36103,-0.0604801321970103], + [51740,-0.396083004037918], + [46045,0.193897637795276], + [16081,-0.00854326396495075], + [13233,0.417062293195224], + [39153,-0.167941747865243], + [53043,0.303513281919452], + [51840,-0.054338036625638], + [53005,0.266036603241523], + [13129,0.50888901674242], + [27151,-0.142015321154979], + [19089,-0.261419686896847], + [19139,-0.158682158204679], + [49047,0.704735938604463], + [18121,0.144153373335285], + [4009,0.412121723004299], + [21037,0.212362609660179], + [8005,-0.131072480578746], + [37187,-0.167965098161421], + [55097,-0.284956118777021], + [29007,0.163475143854353], + [27033,0.0672751859364436], + [51107,-0.0832893089498556], + [51137,0.0896048164990713], + [31101,0.502553626149132], + [8047,-0.218584346741503], + [21153,0.0724829257545714], + [39071,0.269200021318552], + [55025,-0.476328530114783], + [51111,0.0351597358557916], + [53049,-0.144520612264062], + [27009,0.100255427841635], + [42099,0.342448853706179], + [5013,0.358104969809568], + [20137,0.581473684210526], + [40147,0.44581594553042], + [23019,-0.0508676226758977], + [39005,0.239512633903017], + [27073,-0.0609037328094303], + [8107,-0.272797229703732], + [29139,0.187186147186147], + [54087,0.0792079207920793], + [5055,0.307721625123866], + [27013,-0.133198463658487], + [40019,0.405327955848015], + [20073,0.444890673806337], + [17059,-0.133976420150054], + [42059,0.00381727955210587], + [28007,0.156106117079588], + [51183,-0.239346724235029], + [55131,0.299667792179501], + [27099,-0.242505353319058], + [1119,-0.505075053609721], + [1085,-0.50151556902728], + [48109,-0.313751668891856], + [17063,-0.0172873563218391], + [47023,0.43703007518797], + [46071,0.211242067089755], + [24005,-0.148678476124066], + [48439,0.117984918979624], + [38071,0.0100534759358288], + [20113,0.358722919042189], + [20089,0.594559585492228], + [41067,-0.226928561212505], + [40049,0.436021605513131], + [13189,0.15028224518053], + [47021,0.321234567901235], + [36067,-0.206940160250876], + [8014,-0.117925669835782], + [18025,0.022868134216713], + [28041,0.522961410860835], + [39089,0.160618429189858], + [19019,-0.187555206595348], + [37181,-0.267668014635086], + [22065,-0.18050266565118], + [13185,0.0944784644676582], + [8013,-0.468789741102429], + [20163,0.630914826498423], + [37021,-0.140921364863759], + [48177,0.305782476373538], + [12081,0.0708898543995225], + [46081,0.158289956480928], + [21181,0.124569855471439], + [38029,0.385135135135135], + [20125,0.364255880413278], + [27035,0.0786614767907976], + [36071,-0.0417908065545861], + [36081,-0.51181686803069], + [31181,0.381512605042017], + [20173,0.129565612677471], + [13301,-0.176826959485044], + [55007,-0.279211738245689], + [36079,0.0755378758715086], + [28153,0.218875502008032], + [27091,0.156697878845786], + [51036,-0.375666505089675], + [55069,-0.127484440875326], + [48097,0.591073582629674], + [23029,-0.0103534889419837], + [47163,0.418827776194547], + [19061,-0.210740129490923], + [21155,0.0330734068297929], + [51191,0.331980115990058], + [35009,0.345434157964819], + [6049,0.388448998602702], + [51033,-0.120970266040689], + [51141,0.312066905615293], + [19161,0.0905059463817779], + [17131,-0.120871559633028], + [55005,-0.0719325493676504], + [26127,-0.0444353852425601], + [16063,0.386606640405177], + [29053,0.241326918207141], + [53047,0.0722076655901529], + [1107,0.0837654567211807], + [41017,0.00314574425741165], + [46035,0.142063971031986], + [41033,0.1376996409558], + [17035,0.211283822682786], + [40067,0.344729344729345], + [17123,0.0102794731769997], + [35031,-0.443931340942755], + [28127,0.22668165034516], + [31039,0.363954068896655], + [51640,0.111861544955677], + [46095,0.0880195599022005], + [19121,0.101780558229067], + [18015,0.130556202001396], + [51165,0.364964612253577], + [47085,0.0293879751954704], + [12113,0.483841891784417], + [46089,0.349557522123894], + [18043,0.101987852015461], + [51009,0.163141993957704], + [12017,0.162919405050156], + [30093,-0.415787559112405], + [16003,0.351447661469933], + [31099,0.434838709677419], + [39037,0.369288033578839], + [24021,0.0105968877938873], + [51510,-0.449249145777701], + [48101,0.46264367816092], + [27037,-0.0561358764956453], + [46059,0.269211195928753], + [47063,0.389917096123684], + [40013,0.355421248088546], + [13075,0.291446132832508], + [54097,0.337935717519239], + [54045,0.110084097280097], + [48385,0.535027898326101], + [51003,-0.181950104363383], + [51011,0.299840933191941], + [47079,0.227146606674166], + [21033,0.272128989799276], + [48131,-0.508001828989483], + [19103,-0.422177009155646], + [29043,0.362243391922716], + [21237,-0.0293002412961048], + [49051,0.304974765681327], + [38045,0.202938475665748], + [29001,0.013418200584896], + [40127,0.434384082271406], + [29017,0.403037795831862], + [1121,0.18686376914225], + [28085,0.32395922878546], + [18145,0.193187066974596], + [31019,0.381248681712719], + [30023,-0.387438825448613], + [26005,0.108730129458193], + [6079,-0.0551028777924801], + [47185,0.288232189973615], + [48281,0.496160974318242], + [26117,0.00313219366768558], + [39087,0.155677175094651], + [5063,0.382399732060621], + [46033,0.327098540145985], + [12121,0.436561604584527], + [37133,0.216545794242321], + [54025,0.125371802498513], + [48261,-0.0693069306930693], + [1089,0.151229133847844], + [22059,0.733828536056948], + [13205,0.0407531277096493], + [5133,0.415307971014493], + [55125,0.0416359072789014], + [48159,0.532068654019874], + [41059,0.233244401325895], + [51051,0.00696758558012722], + [8057,0.385127635960044], + [31155,0.243194374686087], + [8079,0.105960264900662], + [47161,0.0895687430888315], + [32003,-0.19391448992934], + [36057,0.0824111970087413], + [29129,0.385071090047393], + [38079,-0.530125899280576], + [34017,-0.471503579952267], + [41021,0.202226345083488], + [37075,0.38126681340181], + [16053,0.463757285906441], + [13005,0.581669226830517], + [37063,-0.523551458298051], + [28105,-0.000321784833208216], + [17027,0.099917714823087], + [51161,0.213544251037056], + [38099,0.018987341772152], + [20207,0.346522016592215], + [40071,0.415503129513722], + [34033,-0.0397926117952041], + [28029,-0.0700159600305322], + [48423,0.398679558501134], + [39151,-0.0557711461740678], + [19153,-0.148662248637563], + [21007,0.280020181634712], + [28027,-0.445120791325851], + [28079,0.107215829659103], + [41053,0.00504964539007102], + [22117,0.332278998745705], + [26145,-0.176105598969766], + [48313,0.432251672033688], + [28129,0.521923964532977], + [18063,0.236169021096521], + [29225,0.294489947877885], + [6095,-0.291279327135901], + [37005,0.214382896015549], + [47061,0.130569033965593], + [46113,-0.799515445184737], + [31081,0.435712772717645], + [25015,-0.467833313975247], + [13143,0.587749862461031], + [40055,0.464522232734153], + [37049,0.125392628748333], + [36099,-0.0265560165975104], + [45001,0.153909919867367], + [42037,0.0450066770130293], + [56029,0.485201425047958], + [26137,0.0902632003875343], + [15009,-0.56156522080934], + [13049,0.346437346437346], + [21175,0.12093567251462], + [35027,0.258598993288591], + [30071,0.380883066472586], + [35003,0.355965082444229], + [13217,-0.0119036050918279], + [26009,0.105042326094958], + [37067,-0.10567556248824], + [12033,0.19504781577038], + [5147,-0.0786860198624905], + [28081,0.307446348840559], + [10001,-0.0991407300019632], + [48359,0.777049180327869], + [46125,0.203128703484238], + [37117,-0.0465749039692702], + [18129,0.0772640911969602], + [26095,0.111525550167848], + [6015,0.0693218514531755], + [27169,-0.195469706410585], + [8017,0.636029411764706], + [29161,0.225759162303665], + [30053,0.306908007790125], + [1093,0.57152274225445], + [13293,0.284531360112756], + [42053,0.136439267886855], + [16069,0.185011441647597], + [55105,-0.297395144621468], + [27057,0.14750656167979], + [46101,-0.0488804793440555], + [47093,0.233586203132675], + [21151,0.227575889796173], + [48267,0.626025150355386], + [17159,0.152862849533955], + [6075,-0.72074593070449], + [26157,0.00869948243585506], + [48407,0.386609558160505], + [39061,-0.0705490049745332], + [30087,-0.0409547057228099], + [54101,-0.056501021102791], + [13157,0.564375605033882], + [13317,0.0776892430278884], + [20025,0.57092819614711], + [37139,-0.138171745152355], + [37097,0.246046421770209], + [21119,0.0806054206265399], + [49015,0.550681135996306], + [48293,0.337458854509546], + [40109,0.168209511945417], + [48181,0.382716049382716], + [48183,0.378507871321013], + [48055,0.0611642050390964], + [12086,-0.161881582831812], + [54109,0.256389342033714], + [22073,0.25434985124861], + [51187,0.118543713781809], + [45089,-0.385371246084874], + [30021,0.247164461247637], + [31109,-0.0506345299363872], + [6031,0.1440345938416], + [20179,0.627019089574156], + [39067,0.0250165453342157], + [55027,0.0908099909948339], + [33019,-0.181996609867071], + [13111,0.498752159723555], + [48447,0.603345280764636], + [17009,0.220553359683795], + [48009,0.658592848904268], + [39145,0.0647869674185464], + [26073,-0.195670095702355], + [26057,-0.0449302805990705], + [48085,0.258042348202379], + [18027,0.356132976690867], + [35019,-0.430408819476344], + [21087,0.517338143916617], + [47115,0.216817609308463], + [1075,0.541020901464524], + [1073,-0.0512590098784339], + [13231,0.612164491504555], + [12107,0.194719070361695], + [35033,-0.584216295213738], + [37017,-0.0208644783880403], + [5009,0.409060626249167], + [56039,-0.241505358478026], + [1021,0.583304979017806], + [20181,0.480166225916131], + [48387,0.3844], + [48311,0.503759398496241], + [46135,0.020350308798218], + [1007,0.462913211073473], + [49027,0.656313761051916], + [21205,-0.0209246961533642], + [21125,0.585420594308286], + [28125,-0.371942446043166], + [17167,-0.0443279556211512], + [21235,0.483813615823394], + [13035,0.319795827785175], + [27065,0.0895159328630504], + [19053,0.00848726909635555], + [8035,0.174241010741797], + [8109,-0.289601192694745], + [17069,0.197119711971197], + [40133,0.30581788504139], + [48377,-0.438253877082137], + [34011,-0.219260112781299], + [40121,0.365796966703469], + [24027,-0.222625304358199], + [46009,0.112049366677493], + [12089,0.441466557954815], + [40027,0.240045963803505], + [51017,0.127926421404682], + [26163,-0.500761083455444], + [38069,0.243191591017678], + [20129,0.668596237337193], + [29091,0.31379351597081], + [28083,-0.369383209155849], + [48475,0.495793606281548], + [19135,0.05318588730911], + [6103,0.247940137884648], + [5039,0.0885997521685253], + [48089,0.395881006864989], + [18003,0.0438090382138256], + [1043,0.662600690448792], + [18127,-0.0728554802491956], + [37127,0.013432421466248], + [51081,-0.287157287157287], + [39015,0.238080731150038], + [18169,0.203154666277202], + [29005,0.318801089918256], + [21009,0.343997102673991], + [39025,0.328639694170118], + [45063,0.384775962240101], + [48259,0.565600482800241], + [56037,0.285200347351445], + [27069,-0.189792663476874], + [47003,0.340461821044345], + [26055,0.0303914620419394], + [31053,0.122523940705759], + [17079,0.179232146409389], + [21075,0.105491329479769], + [12129,0.251339159853397], + [12133,0.481387555475048], + [40087,0.5183125339121], + [13067,0.0952708914608247], + [19071,0.0367474589523065], + [24019,0.0832891246684351], + [51095,0.0930378423583524], + [30065,0.426251691474966], + [19057,-0.234900658970421], + [27157,0.0249546671271912], + [39051,0.0828662744916393], + [51133,0.0991432068543452], + [28037,0.253339077983628], + [47189,0.370614686713813], + [47045,0.381779957953749], + [37105,0.0845112271318818], + [37123,0.1109105676383], + [22041,0.359021539127611], + [48229,0.0315315315315314], + [36083,-0.0952295675891615], + [1087,-0.742577908906509], + [19107,0.0370936902485659], + [20051,0.34353769337808], + [13039,0.236693358455016], + [55031,-0.33784069300655], + [20037,-0.0141473362222788], + [21143,0.169344219120358], + [13257,0.479507408120069], + [48003,0.656969170646982], + [13267,0.419993995797058], + [51061,0.136246786632391], + [40033,0.444220700765204], + [13229,0.628905671553384], + [42133,0.137574372615261], + [46107,0.320648343904158], + [48247,-0.47787610619469], + [18147,-0.00378486055776894], + [1077,0.287162071823943], + [42097,0.140612348936936], + [19169,-0.165843268998529], + [45079,-0.291661827539625], + [48443,0.269155206286837], + [36011,-0.0864523088909532], + [39083,0.203442539958053], + [13159,0.338574602632029], + [13021,-0.180994789773416], + [37009,0.238035658429778], + [47087,-0.00884554320707642], + [56025,0.353015657329916], + [19047,-0.0524079320113314], + [39141,0.0738130326135709], + [46103,0.21585728444004], + [42001,0.198171979446137], + [54063,0.255590463869895], + [6071,-0.0645931400979215], + [31161,0.620876826722338], + [36075,-0.0249441548771407], + [20069,0.580567580567581], + [48409,0.166995954464202], + [37167,0.370510866097068], + [17173,0.202142655765436], + [42117,0.27861819823888], + [41015,0.119232064668239], + [8029,0.328889182232196], + [51750,-0.0957367240089754], + [28053,-0.426216640502355], + [20059,0.229847116052814], + [41025,0.464033850493653], + [29133,0.149024805907972], + [28117,0.436724797164973], + [23003,-0.0978066566410351], + [17077,-0.223019851614197], + [27155,-0.055668016194332], + [49019,-0.0497714575926866], + [40025,0.760818253343824], + [29173,0.188146380270485], + [19015,-0.0778811634551981], + [34001,-0.152278055244114], + [46041,-0.336688475088072], + [27139,0.113996238548808], + [29101,0.124774961916632], + [17109,-0.0567066521264995], + [20049,0.483274021352313], + [55053,-0.221394125383604], + [39075,0.421600220974128], + [37069,0.00713255937476287], + [5123,-0.166861639902159], + [48305,0.402857142857143], + [21107,0.252996845425868], + [27131,-0.117605452674897], + [5077,-0.217648641377455], + [1061,0.630508181109861], + [6009,0.133433415754151], + [18079,0.0820012097122613], + [21023,0.249470819473843], + [5065,0.281043129388165], + [20027,0.496381332667831], + [54007,-0.014063378961185], + [12005,0.411148177653854], + [21015,0.349672680823886], + [55009,-0.0927121658828976], + [6063,0.122790697674419], + [8113,-0.56422232601588], + [36015,0.01244379378856], + [19115,-0.0432086003721315], + [51775,0.157035586026771], + [28103,-0.534706331045004], + [36019,-0.232870864461046], + [17091,-0.0470207500475919], + [45059,0.183544303797468], + [28051,-0.638358476632556], + [31069,0.497781721384206], + [51113,0.135347432024169], + [56001,-0.0427020506634499], + [31123,0.511831726555653], + [29013,0.192744323790721], + [13057,0.517429746623628], + [31077,0.219096334185848], + [18051,0.133789586688137], + [51830,-0.295614428977698], + [28143,-0.526536312849162], + [48191,0.483253588516746], + [45071,0.178142612104876], + [17001,0.226749713161777], + [8073,0.517454706142289], + [42005,0.249460916442048], + [31025,0.199359892192369], + [37045,0.200616928707903], + [1097,0.0880430560949896], + [37051,-0.177714357793826], + [17085,-0.106541087012875], + [51065,0.018643395477985], + [48115,0.432232626909808], + [48039,0.29842780902928], + [36017,0.0115966139844399], + [37177,0.0142630744849446], + [48471,0.226248879042043], + [26131,-0.0377408287147004], + [12091,0.453375730237373], + [12007,0.406882241051358], + [6041,-0.587753442165805], + [20177,0.00291375995937671], + [23017,-0.164821608284907], + [19101,-0.208005718370265], + [17017,-0.0137554173732806], + [39049,-0.210094089787507], + [27143,0.199465954606141], + [36115,-0.0082298013769091], + [20147,0.600760456273764], + [47141,0.274292101341282], + [13119,0.520481022172116], + [19095,-0.00166865315852205], + [33013,-0.139945377301234], + [51171,0.269228736057514], + [47131,0.3463318412867], + [20013,0.387726638772664], + [16007,0.651267801319903], + [34021,-0.364864779416879], + [55109,0.037715272413323], + [55075,-0.0702165288466135], + [56007,0.299235038248088], + [18111,0.114073574080324], + [34005,-0.188335710566234], + [18011,0.260483809812694], + [49021,0.586967545638945], + [48113,-0.154148288719203], + [22071,-0.612619808306709], + [27077,0.136505113383726], + [17083,0.027673319834153], + [45067,-0.259314179796108], + [47127,0.390522310619163], + [1069,0.410545095108368], + [8117,-0.334967654068778], + [18117,0.144587433762301], + [37035,0.252545557837696], + [45029,-0.0053089084650837], + [19155,0.0192210783960838], + [38101,0.195080341202142], + [6011,0.184703268803554], + [21095,0.469592862270536], + [1115,0.638944872554831], + [6107,0.156007311482703], + [48147,0.400484596746279], + [55095,0.0183229533351386], + [55139,-0.118692880285207], + [39055,0.155841576292059], + [20001,0.237415084480056], + [8055,-0.114597926590081], + [18041,0.0567375886524824], + [20103,0.117686214471144], + [53029,-0.0634461479124482], + [20097,0.640287769784173], + [48043,-0.0300653594771242], + [12093,0.193622227484411], + [22039,0.251821551834335], + [19005,-0.145040369088812], + [17031,-0.539167406791512], + [48265,0.500940775916137], + [46129,0.287533770744886], + [34007,-0.366572563691125], + [51700,-0.289004079911705], + [48373,0.375782776414007], + [54081,0.263127586827425], + [16037,0.469848156182213], + [17051,0.161842383266427], + [51041,0.0753034724339392], + [21055,0.349922239502333], + [48341,0.584458834412581], + [1019,0.519783423573511], + [55127,0.0263380451854536], + [45085,-0.155639371080614], + [48303,0.370058890381238], + [31185,0.502091402013943], + [20017,0.436350257542311], + [21147,0.528485757121439], + [53053,-0.124115525028053], + [40083,0.374268045750561], + [37071,0.25179101453076], + [47133,0.136179888832744], + [53069,-0.00718778077268645], + [36121,0.265811129654141], + [37091,-0.417279758536125], + [21213,0.23044925124792], + [29137,0.195939565627951], + [28161,0.0703643605251512], + [13001,0.46732073293897], + [12079,0.0310869071931019], + [29019,-0.121712290402927], + [21121,0.452245188880969], + [27053,-0.291258443096139], + [38009,0.195008705745792], + [38103,0.271546123863144], + [19067,-0.224946018036327], + [13223,0.389269952677195], + [16011,0.468716224330491], + [46055,0.66785079928952], + [18053,0.132208860029969], + [30085,-0.270250185781521], + [6077,-0.108798964884887], + [27161,0.0842696629213484], + [34041,0.142785904255319], + [1041,0.380533802141601], + [56041,0.426485148514852], + [18155,0.0844046953605366], + [18097,-0.286138719107095], + [39125,0.121493355832103], + [21085,0.353622297366534], + [48345,0.772495755517827], + [49001,0.556464811783961], + [55067,-0.00984117704374943], + [12009,0.105077329256791], + [8031,-0.532120142531847], + [13115,0.367826626851551], + [28109,0.610828341065718], + [27105,0.0143985137018114], + [26159,-0.0895023738350624], + [40151,0.554136874361594], + [22101,0.170365767045455], + [53031,-0.35348789704831], + [48041,0.292632014767023], + [26031,0.0146627565982405], + [16019,0.439670192142524], + [41037,0.46759388038943], + [5015,0.186348122866894], + [20077,0.461791590493601], + [13215,-0.197894908173507], + [39149,0.370336904608235], + [41043,0.117609587132221], + [47171,0.407979769598202], + [45091,0.179423921746846], + [18023,0.131850155406511], + [24047,0.156888180571513], + [13181,0.246747317963935], + [13063,-0.666656569022447], + [53017,0.21744948481199], + [39117,0.239473036197981], + [13199,0.0547263681592041], + [13101,0.65989847715736], + [42071,0.119308082103345], + [10003,-0.41108865875221], + [47057,0.438815700122233], + [19163,-0.147282277353093], + [37083,-0.283349328214971], + [19063,-0.0398543394699575], + [29047,0.00697285665469116], + [51005,0.0222894881673088], + [17021,0.0645030425963489], + [18061,0.182913840461909], + [42087,0.340652600588813], + [49049,0.610424860498976], + [37175,0.127488606380427], + [55115,-0.0364196595443754], + [51145,0.408446771378709], + [13019,0.538292529817954], + [26141,-0.0158296943231441], + [41003,-0.324078379275988], + [18091,-0.223925848925849], + [21193,0.325102880658436], + [12075,0.273111291632819], + [48263,0.551020408163265], + [28163,-0.0724180256005611], + [5035,-0.149054505005562], + [13105,0.182414379402478], + [27097,0.195799041886746], + [55085,-0.105725031341412], + [46079,-0.00663790242283435], + [54027,0.272882388787325], + [45017,-0.035877364644488], + [34015,-0.123213792501926], + [18077,0.0599639314697926], + [47083,-0.0213024954351796], + [40145,0.417539916035834], + [21211,0.249972710402794], + [22083,0.269256234826749], + [31047,0.389489756966535], + [54099,0.186290108724476], + [22033,-0.0218517037356056], + [30029,0.225939516032329], + [31083,0.535528596187175], + [48151,0.223728813559322], + [24015,0.149084778420039], + [51031,0.366281574309771], + [40015,0.306509116838138], + [27041,0.0968434405034884], + [25009,-0.20758729287355], + [51197,0.332954360890044], + [34037,0.210122699386503], + [31089,0.549534643226474], + [53071,0.16902279190537], + [26087,0.0310242052023122], + [18021,0.117012743962214], + [13117,0.586815426701711], + [13073,0.429241253975466], + [13029,0.429557577659241], + [27111,0.132183008173363], + [40007,0.784902597402597], + [1017,0.0852953047221849], + [5091,0.341225815180625], + [5043,0.195416537627749], + [38031,0.141786383510306], + [48459,0.495070610178524], + [5033,0.474254742547426], + [12077,0.446505875077304], + [51760,-0.595782035720479], + [8003,-0.143924626380767], + [38019,0.0962099125364431], + [39047,0.234808310875424], + [55089,0.21976834562378], + [18093,0.20904202787227], + [21105,0.267808836789901], + [40137,0.520600042256497], + [13177,0.523992322456814], + [30031,-0.0347775901502683], + [48077,0.59041147602869], + [55121,-0.267575596008835], + [26147,-0.0270283918043756], + [40031,0.17540222501241], + [17139,0.130803062388011], + [48023,0.55036855036855], + [32027,0.229977116704805], + [17195,-0.178331445828615], + [20149,0.454450041981528], + [37109,0.337200090538705], + [48255,0.217081850533808], + [5075,0.221838034576888], + [45043,0.0530527860215413], + [27001,-0.000653310104529625], + [12059,0.658922042693714], + [6019,-0.0212572043283866], + [31079,0.245871735791091], + [37031,0.350281661364233], + [36097,0.071858407079646], + [31113,0.602941176470588], + [17101,0.0602897647608662], + [5097,0.368238356956899], + [12125,0.50381679389313], + [38093,0.151020408163265], + [29015,0.226885385598637], + [48065,0.725118483412322], + [37153,-0.0151016355750641], + [48485,0.391741046952784], + [27107,-0.277527752775278], + [54075,0.130092722674909], + [16023,0.537117903930131], + [54059,0.123026074182887], + [35061,-0.0782401235001052], + [20029,0.433624253559945], + [19001,0.0341365461847389], + [36037,0.186760872029319], + [28005,0.118135124456737], + [27061,-0.132567630106441], + [50013,-0.287762906309751], + [18183,0.217669825170159], + [19131,-0.12570821529745], + [17023,0.0818304502515028], + [29213,0.375974601988888], + [34029,0.186394748694927], + [50015,-0.434387319977472], + [24023,0.408813988448453], + [37151,0.428203163101791], + [29059,0.296517017613561], + [5087,0.298888162197515], + [22115,0.543410852713178], + [16083,0.376487180414422], + [42015,0.187320111974135], + [29510,-0.687004638707508], + [18059,0.29909686559235], + [48487,0.465952221478009], + [42007,0.0287310837710146], + [18165,-0.141594182232996], + [27165,-0.00707547169811318], + [51091,0.223684210526316], + [13277,0.330183356840621], + [51790,-0.0219286173043398], + [48445,0.352278064819164], + [48455,0.36046511627907], + [8105,0.0896243956861287], + [50027,-0.404874213836478], + [51175,0.0201446855870895], + [13319,0.0109748224661073], + [16047,0.433193757137419], + [39137,0.424508254781235], + [17003,-0.128059778407627], + [21131,0.647004608294931], + [1035,0.00594289027395267], + [20041,0.430318711043161], + [48503,0.640303657694962], + [1013,0.134084565284814], + [39017,0.229391203879303], + [55029,-0.175611452416831], + [31139,0.505681818181818], + [31011,0.466954022988506], + [42119,0.146928804094928], + [36023,-0.10135103765263], + [42077,-0.157551953532574], + [55129,-0.0433526011560693], + [47017,0.303891560996939], + [51179,0.063800353131769], + [5029,0.196683673469388], + [6037,-0.411843022029482], + [5109,0.429245283018868], + [13031,0.193097643097643], + [27103,-0.107476897227667], + [31043,0.0474069360483616], + [30015,0.18577648766328], + [5149,0.31061779383927], + [39147,0.0273504273504273], + [31097,0.110894941634241], + [37079,0.0589985126425385], + [30003,-0.367029548989114], + [42039,0.10578204103384], + [13179,-0.284995706048338], + [20157,0.511077158135982], + [1081,0.199746873138773], + [53051,0.183946488294314], + [51660,-0.165332597295059], + [29025,0.188003581020591], + [29033,0.316258351893096], + [24043,0.131161651272884], + [17095,-0.202117746717493], + [54005,-0.109913000857738], + [17029,-0.0325196087071473], + [29149,0.188438270221824], + [22047,-0.113400789733465], + [8039,0.40914365281968], + [8089,0.106688499811059], + [47009,0.39977176137258], + [30079,0.408963585434174], + [21201,0.0833333333333333], + [55023,-0.275937060253294], + [26069,-0.0522602936942125], + [50003,-0.342552393203623], + [31065,0.512494519947392], + [37029,0.325733586658223], + [31067,0.0970932579733548], + [29021,-0.00141087944818941], + [54093,0.24479624743477], + [29105,0.351519294103026], + [17037,-0.170669693530079], + [28065,-0.216109215017065], + [38047,0.416585365853658], + [31131,0.16090961427749], + [48335,0.511870054144107], + [54037,-0.0487728272086867], + [22111,0.421190076478269], + [12131,0.46332522910043], + [38027,-0.0309460654288241], + [37037,-0.0981862895788503], + [17187,-0.081913416635113], + [27171,0.178347525030411], + [54103,0.063653723742839], + [49031,0.63659793814433], + [36063,-0.0101974351581937], + [48379,0.500238435860753], + [26049,-0.330329331078021], + [19025,0.0787091696182605], + [8103,0.576326002587322], + [46049,0.268669527896996], + [36119,-0.278263034806681], + [20145,0.376237623762376], + [31121,0.413269860160666], + [17127,0.237542468856172], + [50025,-0.491391739462302], + [22119,0.26665557219726], + [45013,0.108843836580325], + [35049,-0.557065598116961], + [45069,-0.0612480739599384], + [5011,0.147640791476408], + [56019,0.571900047147572], + [18039,0.112975675904738], + [45035,0.157011694210882], + [19081,0.0362480673423811], + [31041,0.565993082104497], + [17073,-0.0784650630011455], + [21097,0.215707369553523], + [22075,0.342028421257543], + [18001,0.260726072607261], + [21157,0.251990786442909], + [53019,0.132722435707952], + [56035,0.559736594543744], + [17179,0.0616787213999457], + [40077,0.370716510903427], + [37047,0.0796842542584129], + [53023,0.430894308943089], + [55015,-0.0220240611907598], + [5067,0.171079812206573], + [48397,0.465777554101661], + [17055,0.0286589367753227], + [40107,0.282076158137279], + [22063,0.732492492492493], + [21141,0.2900521609538], + [48319,0.477511961722488], + [54079,0.23791639451339], + [5145,0.48608725523875], + [48351,0.32614970175101], + [40001,0.386547085201794], + [12001,-0.218024146101646], + [37159,0.231090365208244], + [23001,-0.155453732677693], + [20189,0.7302192564347], + [39023,0.0255518965727528], + [6027,0.0943624485845633], + [51047,0.0978322144211552], + [26019,-0.0753600315644112], + [49003,0.642807055396731], + [40059,0.717210492642354], + [48405,0.276294277929155], + [51075,0.227199743095697], + [30069,0.538983050847458], + [21223,0.202793446145582], + [40047,0.509552450026535], + [56027,0.613005551149881], + [55073,-0.0902686173402086], + [35043,-0.12920396806194], + [31103,0.561068702290076], + [1123,0.367745972157047], + [32001,0.323261669571954], + [54039,0.00439016015500449], + [51620,-0.282821387940842], + [22127,0.387033987123821], + [37141,0.157747077577046], + [36087,-0.059339654975437], + [26133,0.103250831178426], + [18085,0.37854932041448], + [22005,0.362244897959184], + [13097,-0.0185405494445157], + [41049,0.280428680785915], + [29187,0.0462809917355371], + [29103,0.229832572298326], + [20085,0.245628370648799], + [40119,0.269803003168481], + [28089,0.156737679125739], + [13197,0.124008880431335], + [17107,0.17185897941478], + [20161,0.0714854463416792], + [48107,0.281889763779527], + [46127,0.141117288853587], + [42085,0.00290697674418605], + [13045,0.333224793580649], + [13289,-0.0701715304076632], + [55003,-0.376715570279224], + [56009,0.562043795620438], + [1067,0.2983842845519], + [27167,0.0707434052757794], + [51155,0.198917089678511], + [47051,0.228894589552239], + [16055,0.268844927033236], + [17025,0.236340733742718], + [18149,-0.0329694087125716], + [40005,0.438639623028068], + [45025,0.029875672666543], + [48063,0.23477493380406], + [16067,0.514664284650886], + [12021,0.226721768953838], + [26143,-0.0257078716778912], + [6007,-0.0241017979711448], + [29223,0.255682760909242], + [47065,0.119604242606956], + [19037,-0.210802469135802], + [42105,0.379133486300445], + [22009,0.23600796957073], + [26149,0.0223738495715646], + [29009,0.356408117876008], + [47149,0.193638392857143], + [40057,0.388990825688073], + [22121,0.137727622467299], + [21217,0.410230131370539], + [47005,0.165746727645482], + [30097,0.468304668304668], + [29045,0.0626118067978534], + [1117,0.540056865696605], + [32005,0.157030015797788], + [29207,0.403412133731161], + [48075,0.563843791136463], + [28071,0.124815321477428], + [20205,0.417910447761194], + [5003,0.289906943450251], + [37013,0.174827616304443], + [48203,0.316121585225087], + [22003,0.373156981786644], + [38095,-0.0734658599827139], + [17113,-0.0123831524658858], + [21171,0.536490008688097], + [27149,-0.0129302494991804], + [16029,0.655344344032409], + [18179,0.317734562640428], + [18177,0.0392261841025092], + [36029,-0.178077469352859], + [8049,0.0111451316595224], + [46087,0.149040139616056], + [19175,-0.0378827192527245], + [22051,0.269761676398167], + [32033,0.329700272479564], + [48149,0.431106077765195], + [30107,0.389006342494715], + [33001,-0.0118681848304115], + [31169,0.340743579915677], + [48381,0.63170997354909], + [46115,0.0342679127725856], + [55001,-0.187321063394683], + [33015,-0.0109031634870804], + [18017,0.0869310412189881], + [17169,-0.0179480310742031], + [48111,0.615531508593253], + [12045,0.397110394164679], + [31007,0.697560975609756], + [21103,0.199235968263297], + [13043,0.308154506437768], + [22093,-0.125704168678577], + [49025,0.441981747066493], + [1029,0.634085213032581], + [13311,0.591391786486233], + [51025,-0.267006369426752], + [29023,0.379008235500263], + [40073,0.683748628741577], + [48393,0.841698841698842], + [35047,-0.612751992498828], + [42009,0.453725826083037], + [20151,0.371234207968902], + [48219,0.526606954689147], + [55141,-0.133947925099893], + [21135,0.360575905145035], + [37163,0.0851047383473758], + [26033,0.00504528600085097], + [49039,0.606751054852321], + [36007,-0.0816558013771611], + [20131,0.454372261383121], + [20047,0.498493975903614], + [41027,-0.317445385178217], + [27019,0.153698012702315], + [45061,-0.319459818463582], + [45049,-0.256834143706105], + [18071,0.13887587822014], + [28039,0.668110918544194], + [42029,-0.0928112140937309], + [21059,0.102620188951459], + [48415,0.604507451835696], + [54055,0.280054116737534], + [22019,0.250393466595616], + [18143,0.0199632859109684], + [47029,0.456247456247456], + [45005,-0.52364185110664], + [48349,0.333744602097471], + [48479,-0.43660217732065], + [30051,0.236212278876171], + [19055,-0.0611732481168683], + [31159,0.264489795918367], + [29189,-0.200815387831905], + [48427,-0.694450133114889], + [51169,0.43843379701185], + [40149,0.559463986599665], + [28017,-0.0214850272737392], + [55081,-0.0812128922815946], + [44007,-0.349991145170898], + [4021,0.146293706293706], + [42019,0.277766583831464], + [46005,0.0743341725188818], + [6051,-0.135671011566], + [51115,0.282374768089054], + [17153,-0.0139275766016713], + [29111,0.170841796434214], + [29195,0.0258424643373991], + [51125,-0.092560338392635], + [27075,-0.225844346549192], + [1055,0.387780096162569], + [28151,-0.34885868171326], + [23023,-0.164375029942989], + [16039,0.372335271317829], + [37039,0.390891535243], + [37019,0.180900084478919], + [56015,0.365431243505369], + [25017,-0.307945089757128], + [38003,0.0152685467936051], + [51049,0.0348812326128825], + [21233,0.119218721208771], + [48287,0.366286438529785], + [19149,0.253025657576247], + [51530,0.0728033472803347], + [49017,0.617021276595745], + [46077,0.058259587020649], + [36005,-0.780583454403807], + [13307,0.0661831368993653], + [22109,0.417908572290216], + [48007,0.380142282709558], + [21173,0.168254591886848], + [1047,-0.345842956120092], + [30095,0.328447701532312], + [22053,0.405651087038861], + [39039,0.106774433691375], + [38001,0.2886345053148], + [56023,0.561145883485797], + [26077,-0.198258232572606], + [40075,0.348392240233856], + [38039,0.065625], + [16087,0.437060557949649], + [18031,0.247268155884344], + [51680,0.0403751437756215], + [38087,0.47394540942928], + [24029,-0.00486914181375531], + [24031,-0.45222282774355], + [38081,-0.178024300052826], + [19083,-0.00895728066146073], + [20105,0.552546744036106], + [41029,-0.000478941844231806], + [42021,-0.0070756912764175], + [51139,0.17574931880109], + [21167,0.364386317907445], + [8025,0.277486910994764], + [21203,0.542727420139452], + [48087,0.602378929481733], + [48451,0.420664589823468], + [47001,0.266454249943677], + [13259,-0.25], + [21017,0.174893357708714], + [29153,0.274514086044988], + [5095,0.0412585336895222], + [48469,0.338135307977112], + [19195,-0.228523570232113], + [55037,0.142857142857143], + [50001,-0.39933223806243], + [47089,0.433169129720854], + [45011,-0.016701030927835], + [54001,0.20740498034076], + [47047,0.276999737739313], + [48057,0.201463057790783], + [30067,0.0237454673061177], + [37061,0.0947857720291028], + [48237,0.686457638425617], + [39135,0.319196537133408], + [35005,0.249633833760527], + [34031,-0.21906904401832], + [47119,0.390025326319891], + [30081,0.215026633024951], + [21089,0.144020685197156], + [5121,0.18836291913215], + [20159,0.410093837179812], + [47153,0.355359489393655], + [39157,-0.0248855835240275], + [21079,0.43562412342216], + [5027,0.245034519383962], + [28073,0.56383158606696], + [16001,0.06317923947962], + [55055,-0.00827378713802185], + [39111,-0.0943730615861763], + [28119,-0.355088228184675], + [26059,0.12288602021415], + [18087,0.217725573945542], + [21179,0.139661664699601], + [26029,0.0346243715924379], + [21139,0.281028368794326], + [47019,0.478800317178973], + [45053,-0.231208590358693], + [39133,-0.0917342653694672], + [19147,-0.0283778060144007], + [29167,0.325930860907543], + [38055,0.194216659473457], + [26063,0.00398785786560318], + [19191,-0.230228787605837], + [8097,-0.494762534323197], + [28013,0.278294462727143], + [48253,0.466759727796196], + [17125,-0.0600029926679635], + [13183,0.243909597886704], + [51083,0.0283391127585795], + [17053,0.293688550586743], + [21093,0.208516664137966], + [51580,-0.122203098106713], + [20021,0.241772151898734], + [48099,0.271396334415763], + [36095,0.146448863636364], + [4025,0.247784994035542], + [48093,0.481639790169031], + [35059,0.427574171029668], + [5111,0.282668410725965], + [38015,0.239821650464147], + [49053,0.550200469493321], + [13007,-0.010752688172043], + [51595,-0.309734513274336], + [5103,0.110610866673488], + [48421,0.748763600395648], + [30007,0.348795718108832], + [20119,0.623616236162362], + [40041,0.337976825934123], + [35035,0.195928277923048], + [24009,0.0644328709038116], + [27051,-0.0583524027459954], + [19151,0.085830370746572], + [1109,0.153064899517395], + [8059,-0.0915384084477879], + [4003,0.210198253038421], + [48365,0.491345397324941], + [31173,-0.0707456978967496], + [6005,0.14955915968216], + [47125,0.079780286629332], + [28011,-0.357504105090312], + [22031,0.135340206185567], + [46019,0.3670947419433], + [47097,0.0660183684494868], + [48301,0.69620253164557], + [13017,0.13767271516564], + [32015,0.435144395496818], + [12029,0.459193706981318], + [28107,-0.0656039239730227], + [4023,-0.315506401030225], + [40063,0.294239107990915], + [20193,0.565673289183223], + [48357,0.842921784098255], + [55078,-0.743411927877947], + [17197,-0.133599290466885], + [48461,0.51433389544688], + [12101,0.0361705431463244], + [12117,0.028057043614393], + [21145,0.255803218148246], + [13261,-0.0605537753676773], + [22037,0.106877228731533], + [47105,0.44607506972066], + [48197,0.525445292620865], + [22087,0.468402619156388], + [49009,0.38785046728972], + [54085,0.4718179412543], + [6087,-0.592802587326295], + [22029,0.201611193555226], + [29165,0.0645196387770646], + [19123,0.168327899394504], + [6003,-0.252225519287834], + [19177,0.124575311438279], + [13195,0.470109909748905], + [22089,0.317666840145722], + [19087,0.0515756187983862], + [28133,-0.414418478751241], + [51683,-0.114355591788335], + [48027,0.0984774970721098], + [51119,0.194407008086253], + [13227,0.588062544646401], + [1023,0.0746914365695381], + [41007,-0.196110210696921], + [39107,0.441321051878013], + [50021,-0.251171660363942], + [37101,0.238962182427539], + [21195,0.141118124436429], + [16041,0.752373091209245], + [17105,0.19518855656697], + [42109,0.295641931684335], + [28137,0.210945509029256], + [37199,0.0586507187073759], + [47007,0.352124706384796], + [13065,0.258342707161605], + [40081,0.498497209102619], + [1129,0.296640293544318], + [48227,0.46835178608732], + [48273,-0.0730910575745202], + [30049,-0.0669576059850374], + [17007,-0.0427861612072138], + [44005,-0.236964753859598], + [28001,-0.157503047411304], + [13285,0.190977327245996], + [48019,0.510070767555797], + [53035,-0.125712551570279], + [53027,-0.149342891278375], + [9001,-0.183114505006428], + [51131,-0.166896975280209], + [20075,0.567316620241411], + [27127,0.139984122783805], + [21231,0.377281086433725], + [6013,-0.384618160250237], + [37145,0.0857328426066248], + [48143,0.549798503166379], + [40011,0.508268482490272], + [17151,0.227605118829982], + [5021,0.149355572403336], + [48117,0.470825376617865], + [28149,0.0306362922230949], + [5081,0.2988], + [45065,-0.2790202342918], + [12031,0.0191671406614951], + [42111,0.254831616711029], + [31117,0.684210526315789], + [55087,-0.11800469040024], + [46075,0.518032786885246], + [41011,0.0320282305494874], + [18099,0.137578573380705], + [5093,0.0226489774976177], + [1031,0.492049204920492], + [22123,0.643306926670729], + [19009,-0.0311295582567447], + [47037,-0.212399268380412], + [48001,0.439263655080538], + [49057,0.282581655043256], + [22081,0.0885188431200701], + [41045,0.416386305165248], + [31175,0.402454506982649], + [45075,-0.384681802021433], + [1125,0.161238347335712], + [46021,0.41726618705036], + [13255,0.189562854631184], + [18137,0.301060011685168], + [20197,0.396094433109881], + [20155,0.238051329337636], + [13225,-0.0679279279279279], + [13209,0.413909141895682], + [55103,-0.209017867849862], + [19011,-0.0452425027767494], + [40009,0.560632688927944], + [9003,-0.318212923559927], + [38007,0.533742331288344], + [55013,-0.0160477919643903], + [51730,-0.793839942697141], + [37057,0.338766727583564], + [48053,0.44705105897882], + [20135,0.613636363636364], + [28075,0.189888801118065], + [27125,-0.0651450309082263], + [13213,0.45993217918972], + [48499,0.546071994566448], + [27087,-0.260201842913559], + [17089,-0.119510903475794], + [55043,-0.242534352420332], + [51550,-0.0128401129254636], + [53075,-0.056247816466752], + [26123,0.0473247395373477], + [31179,0.334221748400853], + [49033,0.687309644670051], + [29077,0.160625709675492], + [54013,0.158117846545146], + [47039,0.328905078208699], + [42129,0.16897408793532], + [12111,-0.122144487073397], + [40141,0.356194006796416], + [13167,0.338852097130243], + [36001,-0.299959176048103], + [18153,0.006838993856497], + [37171,0.282657079267249], + [46091,-0.167052290606201], + [13251,0.0618892508143323], + [26003,-0.0609442060085837], + [49035,-0.000836914725175331], + [48331,0.26304321510713], + [17047,0.304241684467501], + [45087,0.113120143454871], + [48495,0.524426719840479], + [55021,-0.154848547861648], + [54107,0.291042882517128], + [48367,0.557586991321931], + [5119,-0.117196635358908], + [48395,0.196093163035312], + [25023,-0.0772839274112153], + [29127,0.241940683430045], + [55091,-0.130715438407746], + [54071,0.216741405082212], + [39011,0.418129919557132], + [39013,-0.0277392510402219], + [1027,0.478054567022538], + [17147,0.127909604519774], + [29099,-0.0255392199173308], + [47159,0.207941760423561], + [26007,-0.0391099123398516], + [51019,0.378220503993002], + [27005,0.0703833595356149], + [8115,0.293584905660377], + [13211,0.31901299845781], + [12063,0.282681877688423], + [6043,0.127473930623537], + [47049,0.446827794561933], + [19113,-0.218613148491443], + [51097,-0.0421081227927194], + [47143,0.468992602064116], + [48285,0.542024013722127], + [38075,0.225460122699386], + [42047,-0.0439639123585851], + [40117,0.374469375379018], + [47059,0.41387411895635], + [48201,-0.016424090500617], + [30089,0.287908910175312], + [8065,-0.265917602996255], + [40029,0.471830985915493], + [27133,0.143386897404203], + [39095,-0.319295523601068], + [4015,0.334828754234099], + [31091,0.651162790697675], + [25005,-0.237286850441464], + [13085,0.669434879481466], + [5073,0.195883605393896], + [17039,0.135841170323929], + [28057,0.572381245511439], + [18161,0.254794520547945], + [19069,-0.0145784081954294], + [6109,0.130316742081448], + [55079,-0.363066418902792], + [18067,0.0623573546000682], + [48213,0.449913103927702], + [39155,-0.229903459912376], + [18055,0.147910447761194], + [48431,0.685575364667747], + [51167,0.128698878190973], + [37125,0.215630424139926], + [13139,0.513387973543816], + [26093,0.135214057442746], + [35053,-0.215320910973085], + [22007,0.114091459439322], + [8041,0.190994625153686], + [12127,-0.0573235760115499], + [42051,0.00413883381138458], + [48193,0.538379245787644], + [51193,-0.103423336547734], + [31005,0.6953125], + [39029,0.0780120926117092], + [45081,0.219403335682405], + [48145,0.198631370430398], + [5089,0.309785755645628], + [22067,0.112337164750958], + [51600,-0.16722883010829], + [26125,-0.147200556717094], + [48441,0.460080413555428], + [30011,0.675438596491228], + [8063,0.458271458271458], + [51650,-0.392340450788658], + [37161,0.321295318549806], + [28145,0.504851953222195], + [5105,0.33968253968254], + [13145,0.435814455231931], + [56031,0.361760036289408], + [39019,0.0498520710059172], + [20061,0.125391456845797], + [48033,0.775280898876404], + [48363,0.488067192461334], + [22097,0.0329691302065938], + [55039,0.0910570050554942], + [48061,-0.2902023925164], + [26119,0.0835240274599542], + [32019,0.182353227297048], + [8075,0.356690777576854], + [20195,0.48936170212766], + [29155,0.132464556780753], + [51678,-0.256003256003256], + [29185,0.224984590096569], + [29163,0.100709219858156], + [21011,0.00540054005400537], + [31105,0.50812324929972], + [8071,-0.0716004813477738], + [18035,-0.151480730223124], + [37179,0.268825018754689], + [46097,-0.0236886632825719], + [42073,0.0514893412251576], + [29211,0.156115107913669], + [18081,0.257305306685045], + [20167,0.54637904468413], + [51159,0.127762803234501], + [37023,0.194605842769505], + [54051,0.128171573973101], + [21069,0.201891087375241], + [1133,0.643610547667343], + [41013,0.273817854643607], + [37073,-0.0526315789473685], + [30041,-0.126742910856964], + [31145,0.508786103817411], + [21039,0.318076027928627], + [31013,0.217102532171025], + [22103,0.543139476568159], + [53003,0.136809176225235], + [46025,0.12401055408971], + [29083,0.111820503465888], + [5007,0.373285877375596], + [54073,0.216197666437886], + [17193,0.0920295809367298], + [41001,0.336487285629805], + [47121,0.341808587191173], + [47183,0.316630733774441], + [28099,0.449969089463923], + [13309,0.278837420526794], + [12047,0.14703229298214], + [8061,0.570048309178744], + [53013,0.3720823798627], + [51079,0.221486387049301], + [39173,-0.0725290538532526], + [51085,0.338710544711513], + [48329,0.577236836365223], + [13037,-0.217785843920145], + [39139,0.139003698063955], + [13013,0.451692611811218], + [24013,0.320276637234597], + [21031,0.407731860597981], + [47031,0.300166813855363], + [31021,0.148795180722892], + [34025,0.0378303198887344], + [18109,0.274043360624056], + [5085,0.485738905644119], + [38091,-0.206286836935167], + [21051,0.572569540071606], + [12103,-0.0834116915558562], + [29115,0.0868812737971616], + [38023,0.151736745886655], + [40113,0.237155356597823], + [48323,-0.573873045078197], + [41065,-0.0729403215550913], + [6113,-0.370081967213115], + [21115,0.423818073010174], + [48399,0.62480458572173], + [26043,0.0808034345292854], + [29145,0.406066887232431], + [28155,0.502305847629589], + [48239,0.482085987261147], + [49005,0.477740290707998], + [17075,0.303793672214725], + [13207,0.317883545144946], + [55065,-0.226542249870399], + [13149,0.500838323353293], + [18089,-0.345623855913989], + [48435,0.514649681528663], + [8009,0.49146110056926], + [37043,0.362617165962139], + [48433,0.435616438356165], + [28025,-0.189767779390421], + [8083,0.197900533471003], + [13243,-0.144551982516391], + [27063,0.043827611395179], + [31115,0.556701030927835], + [48309,0.240960502011589], + [28095,0.173745173745174], + [45027,-0.124100835979522], + [46099,-0.00742201823262401], + [48095,0.516917293233083], + [27071,-0.103917712902738], + [29061,0.235599235599236], + [26101,-0.135347194978423], + [48083,0.648056923918993], + [29085,0.13523202549293], + [46085,0.114713216957606], + [39169,0.149449602381792], + [36065,0.0619865893361506], + [46063,0.619718309859155], + [18029,0.352719342087328], + [1051,0.512823522507189], + [51105,0.288146837682441], + [19007,0.0191545574636725], + [51149,0.10212819544138], + [12105,0.0618473035267753], + [39073,0.00831814940980746], + [19127,-0.095349980875362], + [13237,0.315835906484341], + [28045,0.551107934238742], + [13135,0.103280038641837], + [53021,0.241055778946283], + [40091,0.192508816733552], + [17005,0.0133504492939667], + [19137,0.107615576443507], + [13163,-0.150901525658807], + [55135,-0.0285895806861499], + [13175,0.216083951364714], + [36123,0.0373068215375529], + [8125,0.492618669089257], + [40053,0.562553191489362], + [48103,0.556328233657858], + [17121,0.0203099319088989], + [27135,0.177969475779695], + [30099,0.183080808080808], + [33003,-0.0641079418344519], + [54053,0.132436877237109], + [47113,0.219864559819413], + [47103,0.428284078601269], + [29087,0.382126348228043], + [28063,-0.751465944970681], + [17171,0.143418467583497], + [47139,0.335315287122516], + [46073,0.00367647058823528], + [36105,-0.0959349593495935], + [21043,0.0978260869565217], + [45003,0.242900652646846], + [46013,-0.0569324292728548], + [31075,0.77158774373259], + [49041,0.649426028634077], + [29049,0.113516676418958], + [23025,-0.0582493452900563], + [12027,0.124712930604094], + [53065,0.214183347972817], + [27101,-0.00535905680600213], + [45031,0.00134255912423842], + [5129,0.478708977488473], + [51127,0.292771816157117], + [12083,0.117089495036363], + [28101,0.343064203327549], + [21067,-0.0489017359401553], + [21021,0.235124298315958], + [51045,0.318040435458787], + [48047,-0.517151541467651], + [39105,0.190028687308339], + [28021,-0.724493554327809], + [35013,-0.178697878566203], + [17141,0.0775095298602286], + [51067,0.231543624161074], + [48091,0.479849633534242], + [4013,0.106985393893286], + [30105,0.12639405204461], + [37003,0.390576163236422], + [26053,-0.176456040558922], + [28069,-0.254478905798497], + [24039,0.0262836185819071], + [13071,0.378715100570399], + [12109,0.318351061297173], + [12049,0.299413449734006], + [36053,-0.00885806495914299], + [54065,0.238774653797734], + [6097,-0.507827600830302], + [53073,-0.183165550939141], + [50011,-0.253233168505135], + [55133,0.259502540229337], + [19027,-0.0371674491392802], + [47111,0.199075719872023], + [48167,0.196544400987863], + [35017,-0.201948627103631], + [38035,-0.0517241379310345], + [8011,0.14818763326226], + [20009,0.440945609012836], + [39159,0.28496225260151], + [54033,0.135069731898363], + [1059,0.397586176955804], + [42101,-0.671282008858653], + [41071,0.0140564628914119], + [30077,0.244822485207101], + [27027,-0.163664292696551], + [5113,0.47321668909825], + [29229,0.386884066658674], + [48489,-0.401438848920863], + [17137,0.00823482534201081], + [4001,-0.285660582264734], + [49023,0.567172897196262], + [42113,0.197787898503578], + [37015,-0.30684734626835], + [5051,0.255734481790095], + [40085,0.346333853354134], + [20209,-0.414379734260524], + [48025,0.101774273040907], + [30061,0.10958904109589], + [16033,0.653116531165312], + [39069,0.131808503331273], + [31009,0.72168284789644], + [8019,-0.183238636363636], + [54049,-0.00506077252476322], + [34023,-0.220836076055016], + [25025,-0.567238320072942], + [19129,0.168598966336081], + [17203,0.270557582073997], + [46057,0.228550295857988], + [18075,0.0801325315989692], + [39101,0.0912300522525067], + [36027,-0.087475514201763], + [8033,0.378264532434709], + [51021,0.403108808290156], + [48029,-0.0560595781541657], + [51117,0.0461723768736617], + [27141,0.185568179241218], + [19197,0.0152380952380953], + [6035,0.352064323787153], + [54095,0.321115973741794], + [20015,0.329354909570184], + [37053,0.318749430316288], + [38017,-0.0720351057160769], + [26153,-0.0297029702970297], + [46065,0.27126574685063], + [48119,0.456892577224527], + [48049,0.620545919053382], + [51143,0.24266047437386], + [30055,0.274328290810567], + [55137,-0.00842069084035058], + [56021,0.208685162846803], + [13305,0.453485036810402], + [21137,0.390138504155125], + [36033,-0.225836377340987], + [21191,0.289146063475364], + [28093,-0.183406647116324], + [24003,0.0183237336914059], + [18181,0.0843897824030275], + [51163,0.137414426034329], + [38033,0.507042253521127], + [26023,0.0624616927620214], + [27089,-0.00565709312445606], + [13263,-0.291008174386921], + [29177,0.0324903082887207], + [51069,0.217094533373603], + [30057,0.386819484240688], + [26129,-0.0245153933865451], + [18049,0.163295287603119], + [40089,0.469778916405731], + [51735,0.498925039415221], + [12003,0.576870624602237], + [6089,0.264113185902747], + [17133,0.108108108108108], + [35011,0.306280193236715], + [47129,0.411008076577924], + [54003,0.131586806026877], + [5127,0.45213319458897], + [31037,0.284123448934139], + [29179,0.11375], + [17149,0.191551931559952], + [47175,0.207652823145124], + [13033,-0.0928265636420591], + [20199,0.755725190839695], + [28147,0.103385653132702], + [48321,0.276578411405295], + [36093,-0.129488510874812], + [21219,0.367493338798934], + [6091,0.218306154655445], + [35028,-0.0698016164584864], + [13275,0.159132992048797], + [48157,0.0240011112544276], + [18173,0.129983769670454], + [31001,0.275720800803896], + [54019,0.0279194630872484], + [31061,0.418803418803419], + [18141,-0.172325541716431], + [31033,0.505584826132771], + [10005,0.0865840114236496], + [20057,0.3140694874441], + [20139,0.310851237421811], + [13295,0.474682180564534], + [39035,-0.392740717786062], + [27043,0.0579929399899142], + [32009,0.488943488943489], + [29107,0.155408712677435], + [48477,0.432230823363828], + [48081,0.614442295293359], + [27031,-0.239030377416385], + [29089,0.141652613827993], + [29131,0.373920704845815], + [29069,0.216160220994475], + [21001,0.535376044568245], + [31107,0.369821742405222], + [23021,0.0385241454150842], + [25003,-0.538256200142782], + [12073,-0.244432086373871], + [48155,0.245714285714286], + [31129,0.390255220417634], + [26039,0.0171379605826907], + [37025,0.185594423647864], + [16021,0.349408154318281], + [28031,0.17824], + [48299,0.527856468366383], + [11001,-0.868015366668313], + [38073,-0.157450401013086], + [46105,0.376639600249844], + [18123,-0.23241040393144], + [41069,0.278562259306804], + [45047,0.158368265003578], + [30091,0.0175257731958762], + [30013,-0.0233770748240202], + [19185,0.0711841204654347], + [19171,-0.123752723936231], + [13235,0.299236641221374], + [40095,0.388423599478876], + [53037,0.0823381521055939], + [48251,0.479323346170131], + [53063,0.0118075665576833], + [39171,0.0944942948930985], + [48463,0.0532354290959156], + [48283,-0.191392978482446], + [55063,-0.238216151064685], + [53015,-0.114221648433784], + [53033,-0.427904302678794], + [16065,0.744944348643988], + [37169,0.356363806581473], + [48217,0.417055449330784], + [18103,0.198039780916691], + [51520,0.264218663721701], + [48425,0.540276179516686], + [50023,-0.419514831653578], + [36085,0.0408228670943867], + [17067,0.109653837884326], + [47053,0.292037090144346], + [13047,0.502949304954007], + [40023,0.334525939177102], + [51147,-0.0999460916442049], + [5083,0.401257202723939], + [48371,0.253791708796765], + [55057,-0.0915828480677607], + [21071,0.0138170388317727], + [29093,-0.0285847083430165], + [48249,-0.161513813111631], + [12057,-0.0718765093713554], + [55033,-0.15225097483162], + [21129,0.449084249084249], + [31015,0.540863177226814], + [5019,0.0384225352112677], + [12085,0.136958957386254], + [31045,0.29800600928708], + [28157,-0.387514723203769], + [19141,0.353429203539823], + [54023,0.521018496276724], + [37093,-0.189046391752577], + [51087,-0.123236870868683], + [5071,0.237305178481649], + [36077,-0.0603219253008283], + [37165,-0.151596496185363], + [13313,0.403803336131693], + [20093,0.579019073569482], + [18101,0.293289146644573], + [28061,-0.0971615720524017], + [27003,0.0245664010586937], + [47043,0.217432101339728], + [39009,-0.360425420168067], + [16043,0.63052905464007], + [22011,0.554572485314381], + [30075,0.588118811881188], + [35006,-0.300960035722259], + [46027,-0.247706422018349], + [13245,-0.319956423703479], + [48137,0.32090284592738], + [29159,0.227632311977716], + [51181,-0.224527861972488], + [15003,-0.416910546522356], + [39129,0.221025531001931], + [29203,0.117995689655172], + [27123,-0.345812677444505], + [53061,-0.192894629573015], + [21045,0.586639538826721], + [12053,0.0360730435983292], + [22069,0.074339958469297], + [47137,0.353030303030303], + [18007,0.165509877202349], + [13269,0.136350857464155], + [8093,0.0706319702602229], + [37115,0.0162458406733217], + [23009,-0.196605553972325], + [50019,-0.281730769230769], + [19013,-0.227453560129061], + [26115,-0.0442709027426104], + [27049,0.0140900972415161], + [54031,0.279514875876445], + [8027,0.294117647058824], + [48121,0.243783570791597], + [53025,0.28227554758167], + [17041,0.215838697922993], + [16073,0.524193548387097], + [31127,0.264967397747481], + [48355,0.0446546962703009], + [19035,0.0769722133503672], + [42089,-0.164732973164467], + [20023,0.560842963970089], + [20203,0.674975074775673], + [13121,-0.352776175224302], + [6017,0.107713307574607], + [19045,-0.233916687207296], + [18019,0.071342456481736], + [19125,0.110031780296216], + [21197,0.157486740106079], + [20087,0.191508787947957], + [13127,0.235349117780124], + [21109,0.711456310679612], + [28055,-0.227995758218452], + [31183,0.553488372093023], + [38067,0.0708955223880596], + [23013,-0.217885024840312], + [21215,0.362036216284665], + [8045,8.80436696601983e-05], + [20081,0.642443729903537], + [21003,0.444108761329305], + [42107,0.0880822337151788], + [13153,0.203618930901489], + [29029,0.288414885338948], + [1025,0.115994020926756], + [41005,-0.106275157560498], + [36025,0.053137196037226], + [48207,0.330138955438428], + [39103,0.0815257033205032], + [37185,-0.396393733372746], + [29067,0.346065699006876], + [18157,-0.117731461621526], + [41041,-0.237190333637034], + [13315,0.376474338540006], + [30059,0.353579175704989], + [20055,0.357906087638467], + [36041,0.272133095662507], + [17165,0.0908603112144517], + [31135,0.557774607703281], + [5099,0.166289592760181], + [16045,0.441104373629209], + [53067,-0.22146030519606], + [42115,0.118439044914274], + [37085,0.168318303438708], + [20035,0.257701421800948], + [37077,-0.0663512907303944], + [26017,-0.155966231555051], + [34027,0.0819930827534894], + [26103,-0.206785286254264], + [31073,0.498069498069498], + [51173,0.296781685467817], + [48327,0.414101290963257], + [19189,-0.0875668449197861], + [13091,0.362251167362988], + [18009,0.00242220980063346], + [54029,0.154661342343726], + [37111,0.274123170394919], + [50007,-0.456626918189815], + [32029,0.0617283950617285], + [18119,0.105823418910457], + [48011,0.739837398373984], + [20169,0.267504809628205], + [48127,-0.509814918676388], + [46015,0.186340640809443], + [20115,0.395637583892617], + [17119,-0.0935508418148958], + [45019,-0.0844217151848938], + [19017,-0.0945509029256367], + [13265,-0.309572301425662], + [18151,0.0995844676887807], + [47055,0.198680097255992], + [45051,0.248627860235003], + [12023,0.341187457347078], + [32510,-0.0088533981425224], + [40037,0.416383090685845], + [27137,-0.332569577838457], + [47145,0.36858666200507], + [46137,-0.279445727482679], + [18167,-0.160306758416163], + [48123,0.480314960629921], + [31165,0.675], + [48221,0.545519521129277], + [41047,-0.0228086866597725], + [39167,0.864380785452155], + [21113,0.374743069133203], + [13169,0.259834871296746], + [19059,0.0548687033820374], + [37055,0.0937763061900219], + [23011,-0.150741656365884], + [48243,0.230895645028759], + [25027,-0.14117693558587], + [48505,-0.356892932120364], + [24041,0.0978532201697453], + [37131,-0.305655381123511], + [22079,0.290528393669146], + [29209,0.378214638971315], + [25011,-0.490444159726671], + [51685,-0.202343177935074], + [28123,0.134292359376346], + [30103,0.336170212765957], + [20183,0.587990762124711], + [26035,-0.0491986843026104], + [31153,0.161703528566725], + [55017,-0.0923951431166123], + [39043,-0.140857565303105], + [19181,-0.00634128380313381], + [16049,0.490141557128412], + [22077,0.0970698968734653], + [19193,0.00533912492647382], + [6115,0.150481483255881], + [6059,0.0261433854736131], + [13239,-0.0795660036166366], + [13131,0.240068713764226], + [26011,-0.0437076111529766], + [46047,0.274009766684753], + [29171,0.391951006124234], + [21239,0.172986756601135], + [26165,0.0431174220320301], + [29201,0.297682509399024], + [44001,-0.271497128471403], + [49043,-0.156234837457545], + [13165,0.132826214160328], + [19033,-0.211522287636669], + [26091,-0.0515309932785661], + [13171,0.278163934426229], + [31163,0.237785016286645], + [12097,-0.198664640972333], + [53045,-0.0886075949367089], + [38097,-0.0730972117558403], + [24510,-0.764006483835666], + [54061,-0.0391350692858231], + [17191,0.358195791860905], + [47179,0.339671098960275], + [13051,-0.145331435246021], + [36107,0.104104280429804], + [30083,0.451561431502165], + [50017,-0.320086218510036], + [17161,-0.249297066919229], + [12061,0.149758177603526], + [8077,0.299915434636806], + [31149,0.643132220795892], + [54067,0.0487937998035148], + [54089,0.116000772051728], + [21053,0.63120911073419], + [13055,0.364348677766895], + [28159,0.0831527093596058], + [4011,0.190128606187], + [25013,-0.259870127175785], + [21099,0.315088978615224], + [5047,0.404777070063694], + [6101,0.170126535284472], + [17065,0.134249216678718], + [40111,0.169995978013139], + [27119,-0.0468062408321109], + [36035,0.0940945617641562], + [48135,0.483438083913708], + [47155,0.486726719560938], + [20153,0.640789473684211], + [45023,-0.0840823427080313], + [48139,0.425848607964652], + [26107,0.0074704182343639], + [54105,0.313432835820896], + [28135,-0.191409084312872], + [21073,0.00608159472928449], + [27047,-0.175459395376408], + [34019,0.135273276412848], + [5131,0.35367525407705], + [30033,0.689265536723164], + [42079,-0.0850552690859833], + [42061,0.278993792878144], + [13093,-0.03560184063938], + [48199,0.616493038652517], + [19043,-0.174542165950712], + [12099,-0.230260783098476], + [46093,0.334102609621871], + [20071,0.592991913746631], + [28139,0.451255230125523], + [27115,-0.015918542951384], + [5005,0.325563405703677], + [1113,-0.0734433209153805], + [51157,0.028162511542013], + [21187,0.273429122882265], + [12041,0.478306325143753], + [13089,-0.590342781291481], + [18047,0.346766455574746], + [48457,0.445326504481434], + [47117,0.401942795466811], + [51029,-0.00881885210351308], + [48453,-0.299326339265163], + [18163,-0.0248391499317606], + [13187,0.526026392961877], + [38005,-0.363162467419635], + [20133,0.271461057418988], + [46043,0.506115317414094], + [47101,0.241219768664564], + [29227,0.246913580246914], + [26045,-0.0854842696232477], + [21123,0.369271348499835], + [5107,-0.295495905368517], + [6039,0.135572408811846], + [26109,-0.10391288298265], + [34039,-0.284528918863683], + [45045,0.242869120796373], + [53057,-0.0980270369017172], + [21027,0.258729591228697], + [30019,0.33847637415622], + [19039,-0.0230627306273062], + [37191,0.0862704794147875], + [8123,0.0889441137375022], + [18113,0.155882177212165], + [21013,0.412025784634894], + [4007,0.282587924837345], + [31023,0.364825193488124], + [30043,0.156209150326797], + [47157,-0.275887045587485], + [45015,0.132113821138211], + [26061,0.0401232586505746], + [18115,0.193312434691745], + [28097,0.0813380281690141], + [21185,0.310273476566541], + [1033,0.206038785696752], + [1103,0.443186599611293], + [50005,-0.23851934316727], + [13287,0.189894975872836], + [48491,0.132244542156473], + [42023,0.201634877384196], + [1063,-0.668433005299016], + [42091,-0.209671913974388], + [37087,0.0788712011577424], + [55071,-0.0766645864336806], + [33009,-0.280035821138542], + [48013,0.106003847322061], + [19117,0.0690525349850883], + [29113,0.116158562915623], + [40139,0.705064706822176], + [31057,0.564435564435565], + [29109,0.376894865525672], + [51185,0.333690539977377], + [48235,0.594059405940594], + [39003,0.210626339412074], + [51810,0.00719865062950542], + [13147,0.32033932538881], + [39079,0.207256169212691], + [20123,0.553645335880293], + [21221,0.301942501942502], + [31087,0.48626577579807], + [27083,0.0164989939637827], + [42083,0.175855695072981], + [21065,0.406488549618321], + [51199,0.182894462171592], + [13077,0.415316808558728], + [26155,-0.0877330716388617], + [55101,-0.0750186187878666], + [42033,0.123641508865942], + [19159,0.0625711035267349], + [18135,0.0893008374894138], + [26139,0.242266581195307], + [38049,0.16687898089172], + [26161,-0.415295571307797], + [9011,-0.21323630817656], + [31167,0.456850715746421], + [48133,0.605034182722188], + [36021,-0.136568154598129], + [26135,0.102923698597575], + [49013,0.674642857142857], + [12011,-0.349016729899544], + [19111,-0.163418823668779], + [26083,0.10688140556369], + [1083,0.424397899438643], + [48015,0.513914017403291], + [31017,0.590520078999342], + [53041,0.196271606394903], + [46067,0.295718741139779], + [5101,0.372944297082228], + [42031,0.227576744983708], + [40125,0.383548299107665], + [26015,0.0997991967871486], + [27095,0.0744607880496913], + [19079,-0.0132391879964695], + [29027,0.200801307396278], + [46083,0.154609929078014], + [35007,-0.108816521048451], + [8037,-0.234391088645512], + [40065,0.495936769453412], + [48507,-0.691111686965535], + [32013,0.305186533212011], + [55083,-0.0627341826356921], + [42025,-0.0191892812535484], + [8099,0.343487858719647], + [28121,0.540184284617354], + [28131,0.441287613715885], + [18037,0.0425741490642442], + [19157,-0.119586164925449], + [26027,-0.0417726430141828], + [21061,0.366321442270809], + [40153,0.651792623162239], + [41057,-0.102502143580949], + [28019,0.285329414646094], + [37137,0.147875694340189], + [29003,0.224257884972171], + [45033,-0.115494654419515], + [6073,-0.103964597929966], + [48161,0.438043928719436], + [18159,0.156063360166191], + [16051,0.677634809940084], + [54011,0.102713803725979], + [12065,-0.0369055168040583], + [27117,0.134545454545455], + [37027,0.301817551362441], + [12067,0.613369467028004], + [39121,0.164753544902093], + [37197,0.465399149740198], + [8121,0.573042776432607], + [17081,0.109759007396803], + [13297,0.525838418901517], + [16079,0.0789185239313117], + [27017,-0.274349030470914], + [42041,0.137739301173636], + [29125,0.28167115902965], + [20107,0.36821103968078], + [26051,-0.0153300978352977], + [31125,0.340540540540541], + [13219,0.430510475066391], + [39053,0.266431203931204], + [39045,0.174078780177891], + [24035,0.275209196179528], + [56005,0.62627335791513], + [51177,0.0693927897284468], + [51023,0.336634817058961], + [37155,-0.138919759946655], + [21199,0.560741788464561], + [51043,0.0524873235576264], + [18125,0.0879918932612733], + [13079,0.294026974951831], + [27059,0.15716329450235], + [1001,0.481358529111338], + [19085,0.047427652733119], + [55047,0.14830192696689], + [39113,-0.0630488284378686], + [29197,0.190177638453501], + [8021,-0.131599684791174], + [20005,0.0782138794084186], + [8119,0.286989493640888], + [48383,0.602822580645161], + [48403,0.553667633651057], + [24037,0.129939626783754], + [27129,0.00661577608142494], + [17157,0.00957610660952257], + [21133,0.34342928660826], + [55077,-0.0536130536130536], + [26099,-0.0877901649544169], + [30037,0.468950749464668], + [27109,-0.0334921842670831], + [40035,0.30096105209914], + [33017,-0.205821205821206], + [6047,-0.0849127281421854], + [29011,0.504174476060658], + [28067,0.389994138537393], + [26075,-0.0244355764500082], + [13279,0.38391186863438], + [19003,-0.033271719038817], + [6029,0.181099671412925], + [13083,0.489469517022961], + [35039,-0.513252724998511], + [22099,0.210543961109714], + [16009,0.305699481865285], + [56003,0.569959247040559], + [6067,-0.19416173510486], + [40003,0.662284305669679], + [1091,-0.0358328963467925], + [28059,0.338676683899282], + [29121,0.244504748982361], + [48413,0.499227202472952], + [38021,0.187232386142468], + [40101,0.150284016100515], + [36003,0.221698374840535], + [1111,0.401504053130189], + [19167,0.63317191283293], + [31049,0.501538461538462], + [42069,-0.261961722488038], + [19119,0.454930035795639], + [42093,0.152431342907533], + [48449,0.314291943747956], + [25021,-0.18912881167115], + [54035,0.190440502956116], + [47035,0.376979269496545], + [48347,0.277119848413074], + [13299,0.34645605508303], + [8087,0.243827466534457], + [39081,-0.00215945899869296], + [48375,0.398047138047138], + [46123,0.340786152181753], + [31171,0.732984293193717], + [54015,0.105163727959698], + [47167,0.36794708320051], + [47011,0.503475723003449], + [39131,0.0105781057810579], + [48215,-0.389389589698989], + [36047,-0.597901500800242], + [6045,-0.443989212737268], + [21189,0.540963855421687], + [22049,0.357572586973581], + [27121,-0.0388349514563107], + [48353,0.392329204954055], + [13249,0.446562680531485], + [5125,0.41867387123363], + [46111,0.144568006843456], + [31071,0.58102766798419], + [29217,0.224096385542169], + [6093,0.10705362290986], + [27039,0.101198268049542], + [38013,0.382289416846652], + [29175,0.236854707403505], + [6023,-0.292793746437587], + [1095,0.570395238821914], + [30009,0.119798234552333], + [18005,0.114252138147157], + [20191,0.335381565906838], + [39175,0.168577019849036], + [42049,-0.201576201576202], + [13059,-0.31738046478497], + [38065,0.345167652859961], + [51103,0.0598663179308341], + [20019,0.559098405717427], + [40021,0.121611721611722], + [48277,0.423687826325914], + [20117,0.277878971868043], + [31111,0.363802559414991], + [24011,0.234406283690128], + [17111,-0.0542757760714051], + [17019,-0.178566231750497], + [40143,0.244522507229976], + [31029,0.624862486248625], + [48073,0.434529285495247], + [46007,0.0486763450042698], + [17033,0.13258125767899], + [1053,0.287509441735906], + [18133,0.121497919556172], + [39077,0.032371794871795], + [26081,-0.00527418732920926], + [37089,0.212655845683369], + [53011,-0.062060055243696], + [42055,0.328767340467697], + [1037,0.176598442311176], + [54069,0.10893347850884], + [32011,0.593220338983051], + [51800,-0.133321552094115], + [32017,0.486111111111111], + [1071,0.376839223737596], + [53059,-0.0548586407039881], + [48069,0.36957474791758], + [51007,0.229482812016104], + [37195,-0.0614956653253032], + [37149,0.153475832851916], + [6055,-0.33197332556186], + [13069,0.296791639260396], + [38061,-0.0246271245230663], + [19031,-0.0980021030494217], + [27163,-0.0441494380102666], + [49045,0.307107202281911], + [30047,-0.020205066344994], + [55061,-0.112220861207953], + [17143,-0.140734298316456], + [17115,-0.0106870229007634], + [29215,0.358117647058823], + [46051,0.0441530639550443], + [17103,0.0307682706109966], + [20063,0.626342161775233] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-dem.json b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-dem.json new file mode 100644 index 0000000..6806309 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-dem.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2008 Presidential Election | Democrat Votes", + "description" : "Votes cast for Democrat party (dem) candidates in the 2008 presidential election.", + "units" : "votes", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "GitHub user @wboykinm" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2008.votes.dem"], + [26041,9974], + [48295,155], + [1127,7420], + [48389,1606], + [56017,619], + [20043,1115], + [37183,250891], + [37147,40501], + [48497,4471], + [21207,1569], + [5053,1562], + [31147,1513], + [47123,5053], + [36059,342185], + [1011,4011], + [42057,1576], + [20031,1121], + [31151,2674], + [31035,780], + [28033,19627], + [22061,8292], + [40129,287], + [22057,9662], + [40135,4454], + [51153,93435], + [23031,64799], + [23015,11886], + [47025,3078], + [29063,1692], + [42045,178870], + [12119,17655], + [36055,207371], + [18045,3094], + [39063,13870], + [34009,22893], + [28047,22673], + [5141,2151], + [48343,2055], + [30073,1223], + [47181,1355], + [48153,730], + [46119,233], + [19097,6102], + [28087,13209], + [17155,1900], + [45073,9481], + [36101,17148], + [37143,2772], + [28035,11622], + [31027,1190], + [13141,3535], + [39091,7936], + [39059,7625], + [48297,1048], + [47151,1720], + [30027,1933], + [35021,260], + [23027,11967], + [49007,3468], + [20053,851], + [27113,3394], + [27159,2882], + [18131,2466], + [38041,406], + [28003,4130], + [19143,1037], + [50009,1733], + [1015,16334], + [13253,1660], + [6105,3233], + [17181,3918], + [31055,116810], + [51670,5285], + [20095,963], + [21209,7712], + [48467,4505], + [31177,3711], + [29199,793], + [47027,1248], + [55111,18167], + [48045,205], + [45007,24132], + [48125,234], + [19173,1347], + [37193,8934], + [27081,1517], + [48369,719], + [1005,5697], + [42125,46122], + [51035,4109], + [47033,1967], + [39021,7385], + [36049,4986], + [29143,3370], + [51135,3413], + [26089,7355], + [48275,367], + [51073,6916], + [35051,2352], + [6069,11917], + [41051,279696], + [51610,4695], + [48195,240], + [13025,1119], + [27079,6994], + [36061,572126], + [18073,5044], + [21183,4059], + [21081,3112], + [5025,911], + [27055,5906], + [37129,49145], + [26013,1725], + [48189,2708], + [20171,321], + [48211,216], + [15007,20416], + [54047,3430], + [22043,1474], + [39143,15601], + [48465,6982], + [48279,1156], + [37041,3688], + [38085,1145], + [39115,2966], + [1057,1994], + [22017,55536], + [13191,2905], + [51109,6978], + [46121,2208], + [31085,85], + [55113,4765], + [6083,105614], + [51820,3906], + [28049,75401], + [44003,48406], + [21229,1890], + [37065,17403], + [27029,1877], + [17061,2619], + [21029,10177], + [51071,3192], + [20083,211], + [20045,34398], + [40097,5749], + [22105,16438], + [36013,29129], + [25007,7913], + [20127,907], + [48141,122021], + [30025,318], + [55019,7454], + [19165,2863], + [13103,4936], + [55011,3949], + [31051,946], + [41023,1006], + [24033,332396], + [29219,6705], + [36051,13655], + [48391,1382], + [22013,3589], + [22023,613], + [17045,3743], + [21047,8880], + [13193,3251], + [1003,19386], + [38105,2921], + [19105,5446], + [22095,12424], + [32031,99671], + [20187,188], + [18139,3229], + [29037,19844], + [38057,1476], + [55035,33146], + [29079,1580], + [47077,3021], + [35029,4311], + [47173,1829], + [48005,9379], + [46061,961], + [48271,633], + [39031,7689], + [40043,346], + [6065,325017], + [30109,146], + [48325,5147], + [9005,51041], + [20039,343], + [13015,9662], + [8051,5556], + [30045,397], + [17099,27443], + [40103,1174], + [53001,1552], + [19109,4625], + [51001,7607], + [19075,2790], + [23005,105218], + [37099,8766], + [39119,17730], + [17177,11349], + [8053,240], + [40093,515], + [48171,2576], + [6061,75112], + [27153,5277], + [39041,36653], + [16071,381], + [21035,6165], + [12013,1821], + [36009,14307], + [18069,5843], + [39099,79173], + [48059,1063], + [47165,21487], + [46109,2672], + [17185,2462], + [20121,5742], + [27147,9016], + [51063,2937], + [16027,20147], + [45041,28012], + [29073,2899], + [16013,6947], + [31141,3796], + [42027,41950], + [13123,2614], + [12039,15582], + [48175,1329], + [5143,29021], + [41019,20298], + [19179,8820], + [29151,1907], + [28009,2227], + [48179,1153], + [13009,8587], + [13023,1380], + [47071,2794], + [32023,7226], + [39057,33540], + [47081,3563], + [48473,7153], + [55117,30395], + [8015,4861], + [21161,2891], + [41039,114037], + [13003,938], + [9013,45053], + [40045,282], + [13053,830], + [22085,2245], + [55099,4559], + [20175,1493], + [28141,1962], + [18083,7569], + [37011,2178], + [22015,12703], + [39085,60155], + [5069,18465], + [30035,3423], + [31143,668], + [55093,11803], + [51057,2934], + [48051,2053], + [13221,2232], + [5031,11294], + [21041,1716], + [13273,2501], + [42011,97047], + [18013,3854], + [38077,3513], + [42017,179031], + [16015,1240], + [36111,54320], + [29095,210824], + [49055,335], + [20165,504], + [41061,4613], + [29186,4979], + [30101,737], + [37157,17255], + [5137,1598], + [39123,12064], + [29081,1287], + [27173,2816], + [5041,2569], + [27023,3280], + [47095,1024], + [22025,1659], + [48021,11687], + [39161,5178], + [12123,2803], + [13133,3339], + [56013,6016], + [36113,16281], + [19049,15149], + [8111,264], + [53007,13781], + [51093,8573], + [18105,41450], + [51077,2480], + [48429,626], + [8007,2836], + [8001,93443], + [26001,2896], + [37119,253958], + [21165,1276], + [54083,4539], + [48411,487], + [54077,4205], + [1039,3240], + [15001,50819], + [5061,1746], + [35023,993], + [26151,9047], + [46031,837], + [42121,9238], + [39163,2463], + [13241,2001], + [48337,1597], + [13281,1391], + [19021,4075], + [29169,5249], + [5057,2869], + [27067,10125], + [39027,6558], + [41031,3682], + [38089,3802], + [54017,735], + [21127,2036], + [26047,8515], + [53009,19470], + [45021,7215], + [27145,35690], + [51570,2562], + [28023,3121], + [24017,43635], + [5117,1048], + [48031,1467], + [21169,1350], + [36091,56645], + [17015,3965], + [42065,6447], + [28015,2037], + [12019,26697], + [12115,102686], + [12071,119701], + [29205,1114], + [51099,4473], + [5023,2951], + [27011,1552], + [5079,1710], + [21225,2804], + [37033,5545], + [42035,7097], + [31031,599], + [6021,3734], + [56033,4458], + [31003,757], + [20109,225], + [21227,17669], + [16059,1061], + [29141,3565], + [47091,1837], + [13081,3085], + [16031,1332], + [38083,229], + [17087,1871], + [9007,52983], + [12069,62948], + [35037,1547], + [48129,291], + [5059,4288], + [1105,4457], + [47187,27886], + [32021,1082], + [47073,5930], + [18175,4562], + [51013,78994], + [37103,2378], + [8081,1582], + [51121,21031], + [48483,314], + [20033,194], + [47109,20209], + [26071,3080], + [46011,7207], + [18171,1755], + [21057,697], + [29031,12208], + [38043,422], + [4012,1929], + [37007,6456], + [48205,250], + [12095,273009], + [21091,2135], + [41035,9370], + [54057,3750], + [22113,6266], + [26113,2898], + [5037,2580], + [9015,28673], + [29075,1235], + [28091,4422], + [33011,104820], + [19145,2900], + [37135,53806], + [47067,604], + [20011,2394], + [8085,6495], + [18107,6013], + [13011,1027], + [35025,5108], + [54041,2109], + [29065,2056], + [28115,2982], + [48071,3188], + [37059,6178], + [35001,171556], + [12035,24726], + [29123,2042], + [35041,2303], + [48231,8594], + [18095,30152], + [48361,7646], + [30039,601], + [48035,1797], + [21111,196435], + [6001,489106], + [40105,1411], + [48169,375], + [20185,542], + [26025,34561], + [19051,1680], + [29157,3005], + [47177,5515], + [42003,373153], + [36073,6614], + [4027,18559], + [28111,1533], + [9009,233589], + [35045,18028], + [42127,9892], + [21177,6221], + [49037,2406], + [26037,20005], + [51590,12352], + [20067,635], + [12087,20907], + [29035,984], + [5001,2619], + [40069,1249], + [37107,13378], + [48209,28431], + [4005,31433], + [20143,704], + [48437,813], + [41063,1492], + [19091,2160], + [22091,3567], + [48185,2704], + [40051,5520], + [31095,1520], + [39127,7261], + [48233,1322], + [13099,2603], + [16057,9195], + [56045,658], + [46053,771], + [49029,689], + [22021,1118], + [46017,454], + [19133,2295], + [16017,7840], + [42095,75255], + [51690,4139], + [40131,10772], + [55119,4563], + [17145,4701], + [27021,7276], + [48417,208], + [48339,36703], + [6099,80279], + [47013,3867], + [27085,7505], + [30017,2267], + [48165,650], + [35057,3087], + [33007,9532], + [47135,1329], + [6111,187601], + [40099,1592], + [20201,659], + [48245,44888], + [18057,49704], + [19041,3925], + [47015,2011], + [1049,5658], + [42067,3068], + [26105,7817], + [34003,225367], + [48017,682], + [17013,1423], + [40061,1474], + [27015,5809], + [45057,12139], + [21149,1963], + [22107,1646], + [28113,9276], + [25019,4073], + [13321,2542], + [26097,3027], + [51089,11118], + [1009,3522], + [13303,4607], + [4019,206254], + [38025,527], + [21019,8886], + [8069,89822], + [51037,2705], + [29117,2435], + [48315,1644], + [51101,3344], + [28077,2587], + [45077,11691], + [21025,2205], + [51540,15705], + [17189,3342], + [29135,2084], + [24001,10693], + [27025,12783], + [29181,1795], + [48419,2548], + [17183,16246], + [48067,3490], + [26067,12565], + [26085,2919], + [17071,2215], + [39033,8288], + [21101,10049], + [13283,1112], + [22035,2267], + [49011,30477], + [13271,1862], + [51195,4995], + [48037,10815], + [48241,3658], + [47075,4893], + [1045,5270], + [40123,4512], + [22027,3025], + [29041,1799], + [45055,11226], + [51015,9825], + [6085,462241], + [29055,3911], + [39007,25027], + [13173,1062], + [13161,1356], + [18033,7175], + [42081,18381], + [48225,2656], + [38059,5079], + [42063,17065], + [39165,33398], + [31137,1050], + [42043,69975], + [20091,127091], + [25001,74264], + [19073,2371], + [6025,24162], + [19065,5908], + [37001,28918], + [18065,10059], + [26079,3780], + [16077,1027], + [46029,5595], + [46117,510], + [40115,4268], + [39097,6532], + [45083,41632], + [8091,1636], + [37081,142101], + [16075,2415], + [17011,8889], + [5049,1819], + [30063,36531], + [1065,4982], + [48105,512], + [13125,210], + [1099,5025], + [30001,1617], + [17163,76160], + [29147,4493], + [5135,2436], + [54009,4717], + [21117,26480], + [48257,11161], + [16085,2405], + [26021,40381], + [36089,23706], + [37189,14558], + [36117,18184], + [8023,1245], + [17049,5262], + [51059,310359], + [39001,4170], + [17135,6491], + [36031,10390], + [12037,2134], + [39109,18372], + [53039,4965], + [41009,13390], + [1101,62166], + [29039,2060], + [17097,177242], + [5017,3043], + [13107,3068], + [27093,5380], + [17043,228698], + [26121,53821], + [36109,29826], + [21083,5843], + [48317,314], + [6053,88453], + [13247,20526], + [13109,1374], + [29097,15730], + [40039,2660], + [22001,7028], + [42123,8537], + [54091,2462], + [48493,5362], + [55051,1914], + [37113,6620], + [5115,6002], + [1131,4612], + [13137,2900], + [8095,622], + [42013,19813], + [5045,14955], + [5139,6190], + [20003,1175], + [30005,1702], + [31093,1083], + [55059,45836], + [48291,5991], + [45037,5075], + [38053,933], + [34035,79321], + [32007,4541], + [55045,11502], + [12051,4998], + [36069,25103], + [20007,598], + [35015,7351], + [16061,479], + [24045,19436], + [48187,16156], + [51720,743], + [46003,655], + [8067,16057], + [51710,62819], + [16035,1211], + [36045,18166], + [33005,26971], + [48481,4937], + [26065,93994], + [19099,10250], + [6033,14854], + [22125,2415], + [38051,579], + [55041,2673], + [53055,7374], + [27007,12019], + [51053,6246], + [38063,907], + [20065,325], + [36043,12094], + [13113,20313], + [23007,10113], + [38037,280], + [40017,11426], + [13061,879], + [51770,24934], + [13201,818], + [48163,2405], + [17175,1357], + [48269,8], + [30111,32038], + [31119,4142], + [44009,116156], + [31133,483], + [46037,1785], + [17093,24742], + [19029,3211], + [4017,15579], + [16005,14792], + [47099,5161], + [8101,41097], + [8043,6844], + [12043,1381], + [13095,26135], + [13155,1197], + [31063,349], + [36039,9850], + [22055,32145], + [39065,5013], + [56043,1042], + [55107,3855], + [27045,5921], + [29051,13959], + [13087,4424], + [17057,9732], + [22045,12492], + [46023,1807], + [46069,226], + [13291,2486], + [17117,12090], + [21063,1535], + [35055,13816], + [46039,1054], + [19023,3364], + [37173,2806], + [48307,728], + [40079,5136], + [28043,5029], + [48223,3530], + [21049,5749], + [42131,5985], + [20111,5924], + [47069,5919], + [54043,3029], + [13151,40567], + [20101,193], + [48173,52], + [6081,222826], + [38011,478], + [51027,4063], + [56011,612], + [17201,70034], + [51630,6155], + [48289,1418], + [55123,8463], + [17129,2706], + [48333,398], + [21005,3462], + [37121,2238], + [19183,5170], + [31059,962], + [16025,187], + [17199,12589], + [45039,7591], + [1079,5164], + [12055,18135], + [19077,2625], + [31157,4745], + [29221,4711], + [53077,33792], + [29119,2454], + [21077,1278], + [48501,450], + [42103,11493], + [29057,1184], + [48401,4983], + [20141,403], + [19187,9917], + [42075,23310], + [20099,3839], + [48079,284], + [24025,48552], + [12015,39031], + [13027,2669], + [29071,21256], + [41055,385], + [6057,28617], + [47041,2832], + [26111,20701], + [34013,240306], + [21159,808], + [19093,1454], + [39093,85276], + [45009,4426], + [47147,9318], + [47169,1475], + [29183,84183], + [54021,1004], + [37095,1241], + [47107,2060], + [21163,4343], + [20079,6318], + [55049,7987], + [36103,346549], + [51740,32327], + [46045,819], + [16081,2302], + [13233,4052], + [39153,155105], + [53043,2032], + [51840,5268], + [53005,26288], + [13129,4268], + [27151,2907], + [19089,2941], + [19139,10920], + [49047,1462], + [18121,2924], + [4009,3487], + [21037,15622], + [8005,148218], + [37187,3748], + [55097,24817], + [29007,4434], + [27033,2759], + [51107,74845], + [51137,7107], + [31101,974], + [8047,1954], + [21153,2105], + [39071,6856], + [55025,205984], + [51111,2703], + [53049,6094], + [27009,8454], + [42099,6396], + [5013,691], + [20137,497], + [40147,6308], + [23019,41514], + [39005,9300], + [27073,2160], + [8107,8270], + [29139,2347], + [54087,2511], + [5055,4541], + [27013,19325], + [40019,5603], + [20073,622], + [17059,1587], + [42059,7829], + [28007,3849], + [51183,3301], + [55131,25719], + [27099,11605], + [1119,5264], + [1085,5449], + [48109,492], + [17063,11063], + [47023,1797], + [46071,435], + [24005,214151], + [48439,274880], + [38071,2314], + [20113,4218], + [20089,313], + [41067,141544], + [40049,3028], + [13189,3989], + [47021,5498], + [36067,129317], + [8014,16168], + [18025,2286], + [28041,1366], + [39089,33932], + [19019,6050], + [37181,13166], + [22065,3100], + [13185,17597], + [8013,124159], + [20163,468], + [37021,69716], + [48177,2167], + [12081,70034], + [46081,4932], + [21181,1272], + [38029,546], + [20125,4338], + [27035,15859], + [36071,78326], + [36081,480692], + [31181,552], + [20173,82337], + [13301,1554], + [55007,5972], + [36079,21613], + [28153,3890], + [27091,4413], + [51036,2838], + [55069,8424], + [48097,3051], + [23029,8246], + [47163,18354], + [19061,28611], + [21155,3596], + [51191,8063], + [35009,4670], + [6049,1313], + [51033,7163], + [51141,2879], + [19161,2256], + [17131,4887], + [55005,12078], + [26127,6405], + [16063,545], + [29053,2996], + [53047,7613], + [1107,4594], + [41017,38819], + [46035,3554], + [41033,17412], + [17035,2055], + [40067,805], + [17123,3081], + [35031,16572], + [28127,4817], + [31039,1274], + [51640,1052], + [46095,373], + [19121,3733], + [18015,3736], + [51165,10453], + [47085,3600], + [12113,19470], + [46089,441], + [18043,16263], + [51009,6094], + [12017,31460], + [30093,11676], + [16003,728], + [31099,876], + [39037,7964], + [24021,54013], + [51510,50473], + [48101,187], + [27037,116778], + [46059,718], + [47063,6807], + [40013,4426], + [13075,2075], + [54097,2925], + [54045,5873], + [48385,375], + [51003,29729], + [51011,2641], + [47079,5153], + [21033,2212], + [48131,3298], + [19103,51027], + [29043,11883], + [21237,1493], + [49051,2892], + [38045,868], + [29001,5735], + [40127,1265], + [29017,1690], + [1121,13779], + [28085,5505], + [18145,6987], + [31019,5867], + [30023,3402], + [26005,24165], + [6079,68176], + [47185,3372], + [48281,1903], + [26117,13208], + [39087,11262], + [5063,3688], + [46033,1475], + [12121,4916], + [37133,19499], + [54025,5881], + [48261,108], + [1089,64117], + [22059,860], + [13205,3872], + [5133,1291], + [55125,6491], + [48159,1036], + [41059,9484], + [51051,3278], + [8057,277], + [31155,3767], + [8079,270], + [47161,2470], + [32003,380765], + [36057,9080], + [29129,519], + [38079,3403], + [34017,154140], + [41021,430], + [37075,1265], + [16053,1794], + [13005,817], + [37063,103456], + [28105,9326], + [17027,7657], + [51161,19812], + [38099,2325], + [20207,512], + [40071,5463], + [34033,16044], + [28029,7710], + [48423,23726], + [39151,96990], + [19153,120984], + [21007,1427], + [28027,7597], + [28079,4151], + [41053,17536], + [22117,6122], + [26145,60276], + [48313,1146], + [28129,1968], + [18063,24548], + [29225,5685], + [6095,102095], + [37005,2021], + [47061,1971], + [46113,2971], + [31081,1332], + [25015,56869], + [13143,2248], + [40055,566], + [37049,19352], + [36099,7422], + [45001,4593], + [42037,13230], + [56029,3757], + [26137,5634], + [15009,39727], + [13049,1197], + [21175,1879], + [35027,3535], + [30071,638], + [35003,664], + [13217,20827], + [26009,6079], + [37067,91085], + [12033,61572], + [5147,1412], + [28081,12021], + [10001,36392], + [48359,102], + [46125,1681], + [37117,6539], + [18129,5828], + [26095,1191], + [6015,4323], + [27169,16308], + [8017,198], + [29161,7394], + [30053,3025], + [1093,2600], + [13293,4061], + [42053,1038], + [16069,7123], + [55105,50529], + [27057,4872], + [46101,1663], + [47093,70215], + [21151,12392], + [48267,342], + [17159,3181], + [6075,322220], + [26157,13503], + [48407,2721], + [39061,225213], + [30087,1919], + [54101,1552], + [13157,4950], + [13317,2315], + [20025,245], + [37139,10272], + [37097,27318], + [21119,2612], + [49015,973], + [48293,2516], + [40109,116182], + [48181,13900], + [48183,13166], + [48055,5403], + [12086,499831], + [54109,2735], + [22073,24813], + [51187,6997], + [45089,11279], + [30021,1593], + [31109,65734], + [6031,14747], + [20179,254], + [39067,3683], + [55027,19183], + [33019,13249], + [13111,2611], + [48447,166], + [17009,986], + [48009,740], + [39145,14926], + [26073,16679], + [26057,9105], + [48085,109047], + [18027,3370], + [35019,1557], + [21087,1204], + [47115,13058], + [1075,1614], + [1073,166121], + [13231,1575], + [12107,13236], + [35033,2168], + [37017,7853], + [5009,4435], + [56039,7472], + [1021,3674], + [20181,688], + [48387,1539], + [48311,132], + [46135,4838], + [1007,2299], + [49027,758], + [21205,4074], + [21125,4618], + [28125,1907], + [17167,51300], + [21235,3484], + [13035,3065], + [27065,3743], + [19053,1986], + [8035,61960], + [8109,1730], + [17069,892], + [40133,2977], + [48377,1252], + [34011,34919], + [40121,5457], + [24027,87120], + [46009,1367], + [12089,10618], + [40027,39681], + [51017,1043], + [26163,660085], + [38069,792], + [20129,229], + [29091,5736], + [28083,8914], + [48475,899], + [19135,1798], + [6103,8945], + [5039,1471], + [48089,2508], + [18003,71263], + [1043,5864], + [18127,39178], + [37127,23099], + [51081,3122], + [39015,7503], + [18169,5456], + [29005,1000], + [21009,5434], + [39025,31611], + [45063,33303], + [48259,3599], + [56037,5762], + [27069,1492], + [47003,5027], + [26055,23258], + [31053,6689], + [17079,2063], + [21075,1238], + [12129,5311], + [12133,2863], + [40087,3551], + [13067,141216], + [19071,1848], + [24019,6912], + [51095,17352], + [30065,636], + [19057,12462], + [27157,5646], + [39051,9900], + [51133,3312], + [28037,1733], + [47189,15886], + [47045,4411], + [37105,10784], + [37123,4926], + [22041,2961], + [48229,430], + [36083,39753], + [1087,9450], + [19107,2518], + [20051,4010], + [13039,6482], + [55031,15830], + [20037,7957], + [21143,1577], + [13257,2705], + [48003,790], + [13267,1932], + [51061,14616], + [40033,690], + [13229,1253], + [42133,82839], + [46107,482], + [48247,1336], + [18147,5039], + [1077,13329], + [42097,14329], + [19169,26548], + [45079,105656], + [48443,186], + [36011,18128], + [39083,11014], + [13159,1935], + [13021,38987], + [37009,4872], + [47087,2224], + [56025,10475], + [19047,3715], + [39141,14455], + [46103,17802], + [42001,17633], + [54063,2014], + [6071,315720], + [31161,454], + [36075,24777], + [20069,436], + [48409,8854], + [37167,8878], + [17173,4245], + [42117,6390], + [41015,5230], + [8029,5084], + [51750,2930], + [28053,3634], + [20059,4433], + [41025,950], + [29133,2247], + [28117,3020], + [23003,19345], + [17077,15248], + [27155,1043], + [49019,2067], + [40025,152], + [29173,2041], + [19015,7356], + [34001,67830], + [46041,1328], + [27139,29208], + [29101,9480], + [17109,6783], + [20049,363], + [55053,5572], + [39075,3141], + [37069,13085], + [5123,5486], + [48305,627], + [21107,7104], + [27131,17381], + [5077,2263], + [1061,2134], + [6009,9813], + [18079,5312], + [21023,1241], + [5065,1792], + [20027,1009], + [54007,2704], + [12005,23653], + [21015,16292], + [55009,67269], + [6063,4715], + [8113,3349], + [36015,18888], + [19115,2523], + [51775,5164], + [28103,5030], + [36019,20216], + [17091,24750], + [45059,10578], + [28051,7765], + [31069,283], + [51113,2862], + [56001,8644], + [31123,557], + [29013,3271], + [13057,22350], + [31077,458], + [18051,6455], + [51830,4328], + [28143,3279], + [48191,324], + [45071,6708], + [17001,11794], + [8073,546], + [42005,11138], + [31025,4753], + [37045,17363], + [1097,82181], + [37051,74693], + [17085,6403], + [51065,6185], + [48115,1152], + [48039,36480], + [36017,10100], + [37177,933], + [48471,7334], + [26131,1966], + [12091,25872], + [12007,3430], + [6041,109320], + [20177,41235], + [23017,17940], + [19101,5070], + [17017,2690], + [39049,334709], + [27143,2998], + [36115,12741], + [20147,525], + [47141,9739], + [13119,1914], + [19095,4202], + [33013,45078], + [51171,6912], + [47131,4308], + [20013,1317], + [16007,502], + [34021,107926], + [55109,21177], + [55075,11195], + [56007,2336], + [18111,2625], + [34005,131219], + [18011,9752], + [49021,3258], + [48113,422989], + [22071,117102], + [27077,971], + [17083,5042], + [45067,6794], + [47127,881], + [1069,12225], + [8117,9802], + [18117,3390], + [37035,25656], + [45029,8616], + [19155,20436], + [38101,10144], + [6011,2569], + [21095,2586], + [1115,6091], + [6107,43634], + [48147,3464], + [55095,10876], + [55139,48167], + [39055,21250], + [20001,2189], + [8055,1989], + [18041,4389], + [20103,13255], + [53029,22058], + [20097,200], + [48043,1970], + [12093,5108], + [22039,5853], + [19005,3971], + [17031,1629024], + [48265,5570], + [46129,923], + [34007,159259], + [51700,51972], + [48373,6230], + [54081,10237], + [16037,611], + [17051,3967], + [51041,74310], + [21055,1254], + [48341,1123], + [1019,2306], + [55127,24177], + [45085,25431], + [48303,30486], + [31185,1607], + [20017,383], + [21147,1258], + [53053,181824], + [40083,5717], + [37071,31384], + [47133,3419], + [53069,1121], + [36121,6379], + [37091,7513], + [21213,2775], + [29137,1703], + [28161,3151], + [13001,1846], + [12079,4270], + [29019,47062], + [21121,3074], + [27053,420958], + [38009,1387], + [38103,841], + [19067,4822], + [13223,17229], + [16011,4424], + [46055,187], + [18053,11293], + [30085,2564], + [6077,113974], + [27161,4401], + [34041,20628], + [1041,1938], + [56041,2317], + [18155,1638], + [18097,241987], + [39125,4165], + [21085,3154], + [48345,67], + [49001,542], + [55067,5182], + [12009,127620], + [8031,204882], + [13115,10691], + [28109,4320], + [27105,4244], + [26159,18588], + [40151,873], + [22101,9345], + [53031,13252], + [48041,20502], + [26031,6720], + [16019,11417], + [41037,957], + [5015,4172], + [20077,736], + [13215,44158], + [39149,7317], + [41043,22163], + [47171,2107], + [45091,37918], + [18023,5307], + [24047,11374], + [13181,1650], + [13063,82527], + [53017,5848], + [39117,6177], + [13199,4465], + [13101,201], + [42071,99586], + [10003,178768], + [47057,2066], + [19163,48927], + [37083,16047], + [19063,2570], + [29047,53761], + [51005,3553], + [17021,6918], + [18061,7288], + [42087,5375], + [49049,29567], + [37175,7275], + [55115,10259], + [51145,4237], + [13019,1471], + [26141,3722], + [41003,29901], + [18091,28258], + [21193,3444], + [12075,6711], + [48263,99], + [28163,6116], + [5035,10330], + [13105,3366], + [27097,6547], + [55085,11907], + [46079,3033], + [54027,2983], + [45017,3970], + [34015,77267], + [18077,6255], + [47083,1678], + [40145,8810], + [21211,6871], + [22083,3311], + [31047,2399], + [54099,6137], + [22033,99652], + [30029,16138], + [31083,402], + [48151,687], + [24015,17665], + [51031,8091], + [40015,3404], + [27041,9256], + [25009,208976], + [51197,4107], + [34037,28840], + [31089,1089], + [53071,10081], + [26087,21457], + [18021,4954], + [13117,15406], + [13073,15703], + [13029,3636], + [27111,13856], + [40007,265], + [1017,6799], + [5091,4869], + [5043,2598], + [38031,687], + [48459,3790], + [5033,5238], + [12077,895], + [51760,73623], + [8003,3521], + [38019,930], + [39047,4401], + [55089,20579], + [18093,7208], + [21105,812], + [40137,4538], + [13177,3100], + [30031,24205], + [48077,1085], + [55121,8321], + [26147,40677], + [40031,14120], + [17139,2668], + [48023,366], + [32027,673], + [17195,15607], + [20149,2599], + [37109,11713], + [48255,1760], + [5075,2138], + [45043,14199], + [27001,4595], + [12059,1446], + [6019,136706], + [31079,7855], + [37031,11130], + [36097,3933], + [31113,81], + [17101,3016], + [5097,1092], + [12125,1300], + [38093,4056], + [29015,3629], + [48065,406], + [37153,9713], + [48485,13868], + [27107,2129], + [54075,1548], + [16023,318], + [54059,3582], + [35061,15366], + [20029,1233], + [19001,1924], + [36037,10762], + [28005,3348], + [27061,13460], + [50013,2694], + [18183,5862], + [19131,3179], + [17023,3742], + [29213,6683], + [34029,110189], + [50015,8914], + [24023,3736], + [37151,16414], + [29059,2656], + [5087,2144], + [22115,3534], + [16083,8621], + [42015,10306], + [29510,132925], + [18059,11874], + [48487,1196], + [42007,40499], + [18165,4003], + [27165,2562], + [51091,590], + [13277,4749], + [51790,5569], + [48445,1379], + [48455,1925], + [8105,2448], + [50027,21444], + [51175,4402], + [13319,2298], + [16047,1489], + [39137,5281], + [17003,2189], + [21131,766], + [1035,3429], + [20041,2422], + [48503,1303], + [1013,4188], + [39017,66030], + [55029,10142], + [31139,783], + [31011,742], + [42119,7333], + [36023,11861], + [42077,87089], + [55129,4693], + [47017,3980], + [51179,25716], + [5029,3149], + [6037,2295853], + [5109,1089], + [13031,9586], + [27103,9887], + [31043,2994], + [30015,1122], + [5149,2003], + [39147,13087], + [31097,914], + [37079,3796], + [30003,3516], + [42039,16780], + [13179,10474], + [20157,640], + [1081,21498], + [53051,2562], + [51660,8444], + [29025,1814], + [29033,1535], + [24043,26245], + [17095,14191], + [54005,4529], + [17029,11716], + [29149,1811], + [22047,9023], + [8039,3819], + [8089,3546], + [47009,15253], + [30079,211], + [21201,451], + [55023,4987], + [26069,7309], + [50003,12524], + [31065,556], + [37029,1597], + [31067,4473], + [29021,19164], + [54093,1288], + [29105,5218], + [17037,25784], + [28065,4454], + [38047,299], + [31131,2915], + [48335,586], + [54037,11687], + [22111,3103], + [12131,7174], + [38027,583], + [37037,17862], + [17187,4286], + [27171,26343], + [54103,2942], + [49031,141], + [36063,47303], + [48379,1048], + [26049,143927], + [19025,2341], + [8103,655], + [46049,426], + [36119,261810], + [20145,882], + [31121,986], + [17127,2693], + [50025,17585], + [22119,6610], + [45013,30396], + [35049,55567], + [45069,2755], + [5011,1680], + [56019,908], + [18039,31398], + [45035,21806], + [19081,2805], + [31041,1192], + [17073,13181], + [21097,2916], + [22075,3380], + [18001,4928], + [21157,5683], + [53019,1467], + [56035,936], + [17179,29384], + [40077,1313], + [37047,11076], + [53023,385], + [55015,13295], + [5067,2207], + [48397,8492], + [17055,8880], + [40107,1480], + [22063,6681], + [21141,3811], + [48319,546], + [54079,9334], + [5145,6732], + [48351,1751], + [40001,2052], + [12001,75565], + [37159,23391], + [23001,31017], + [20189,283], + [39023,31958], + [6027,3743], + [51047,8802], + [26019,5451], + [49003,3311], + [40059,221], + [48405,1328], + [51075,4813], + [30069,68], + [21223,1484], + [40047,5545], + [56027,244], + [55073,36367], + [35043,32669], + [31103,115], + [1123,6063], + [32001,3494], + [54039,40594], + [51620,2819], + [22127,2047], + [37141,9907], + [36087,69543], + [26133,4855], + [18085,9236], + [22005,14625], + [13097,27825], + [41049,1410], + [29187,11540], + [29103,759], + [20085,2308], + [40119,10601], + [28089,19831], + [13197,1381], + [17107,5250], + [20161,10495], + [48107,684], + [46127,3244], + [42085,26411], + [13045,14334], + [13289,2402], + [55003,5818], + [56009,1380], + [1067,3018], + [27167,1550], + [51155,5918], + [47051,6613], + [16055,22120], + [17025,2425], + [18149,4778], + [40005,1370], + [45025,7842], + [48063,1734], + [16067,1630], + [12021,54450], + [26143,7082], + [6007,49013], + [29223,2243], + [47065,64246], + [19037,3923], + [42105,2300], + [22009,6327], + [26149,12322], + [29009,4630], + [47149,40460], + [40057,333], + [22121,5043], + [21217,3165], + [47005,2645], + [30097,541], + [29045,1572], + [1117,20625], + [32005,10672], + [29207,3899], + [48075,497], + [28071,7997], + [20205,1170], + [5003,2976], + [37013,9454], + [48203,8887], + [22003,2891], + [38095,621], + [17113,37689], + [21171,1067], + [27149,2781], + [16029,553], + [18179,4403], + [18177,13459], + [36029,256299], + [8049,4037], + [46087,1219], + [19175,3000], + [22051,65096], + [32033,1230], + [48149,3014], + [30107,289], + [33001,16796], + [31169,860], + [48381,9468], + [46115,1550], + [55001,5806], + [33015,83723], + [18017,7011], + [17169,1900], + [48111,302], + [12045,2149], + [31007,62], + [21103,2725], + [13043,1209], + [22093,6994], + [49025,856], + [1029,1168], + [13311,2174], + [51025,4973], + [29023,5316], + [40073,1009], + [48393,41], + [35047,10320], + [42009,6059], + [20151,1294], + [48219,1797], + [55141,21710], + [21135,1510], + [37163,11836], + [26033,8184], + [49039,1631], + [36007,47204], + [20131,1432], + [20047,333], + [41027,6302], + [27019,20654], + [45061,5960], + [45049,5816], + [18071,7354], + [28039,1532], + [42029,137833], + [21059,19282], + [48415,1088], + [54055,7450], + [22019,30244], + [18143,4271], + [47029,3340], + [45005,3029], + [48349,5400], + [48479,33452], + [30051,367], + [19055,4649], + [31159,2703], + [29189,333123], + [48427,8274], + [51169,2725], + [40149,1052], + [28017,4588], + [55081,10198], + [44007,167704], + [4021,44254], + [42019,32260], + [46005,3493], + [6051,3093], + [51115,1934], + [17153,1638], + [29111,1837], + [29195,4712], + [51125,4391], + [27075,4174], + [1055,13497], + [28151,13148], + [23023,12152], + [16039,2591], + [37039,3785], + [37019,21331], + [56015,1832], + [25017,464484], + [38003,2741], + [51049,2255], + [21233,2390], + [48287,2000], + [19149,4629], + [51530,1108], + [49017,405], + [46077,1277], + [36005,338261], + [13307,515], + [22109,11581], + [48007,3006], + [21173,4234], + [1047,13986], + [30095,1512], + [22053,3923], + [39039,8399], + [38001,435], + [56023,1823], + [26077,77051], + [40075,1226], + [38039,598], + [16087,1241], + [18031,3892], + [51680,16269], + [38087,106], + [24029,4953], + [24031,314444], + [38081,1115], + [19083,4393], + [20105,347], + [41029,49090], + [42021,32451], + [51139,4235], + [21167,3159], + [8025,552], + [21203,1410], + [48087,234], + [48451,11158], + [47001,11396], + [13259,1305], + [21017,3385], + [29153,1661], + [5095,1615], + [48469,9832], + [19195,2567], + [55037,1134], + [50001,13202], + [47089,5178], + [45011,4931], + [54001,2419], + [47047,6892], + [48057,2729], + [30067,4173], + [37061,8958], + [48237,470], + [39135,6999], + [35005,8197], + [34031,113257], + [47119,3131], + [30081,8400], + [21089,6621], + [5121,2469], + [20159,1163], + [47153,1717], + [39157,21498], + [21079,2012], + [5027,3554], + [28073,5159], + [16001,82236], + [55055,21448], + [39111,3705], + [28119,2803], + [26059,8765], + [18087,3663], + [21179,7654], + [26029,6817], + [21139,1622], + [47019,5587], + [45053,5389], + [39133,41856], + [19147,2428], + [29167,4553], + [38055,1867], + [26063,8367], + [19191,6829], + [8097,7349], + [28013,2522], + [48253,1528], + [17125,3542], + [13183,1288], + [51083,8126], + [17053,2227], + [21093,15650], + [51580,1304], + [20021,3594], + [48099,6619], + [36095,6009], + [4025,36889], + [48093,1334], + [35059,492], + [5111,2742], + [38015,15600], + [49053,10826], + [13007,846], + [51595,1702], + [5103,4346], + [48421,127], + [30007,365], + [20119,357], + [40041,5085], + [35035,8610], + [24009,20299], + [27051,1850], + [19151,1800], + [1109,5879], + [8059,158153], + [4003,18943], + [48365,2586], + [31173,1120], + [6005,7813], + [47125,25716], + [28011,10334], + [22031,5242], + [46019,1306], + [47097,4322], + [48301,12], + [13017,2590], + [32015,577], + [12029,1925], + [28107,8690], + [4023,8683], + [40063,1709], + [20193,787], + [48357,243], + [55078,1257], + [17197,160406], + [48461,288], + [12101,102417], + [12117,99335], + [21145,11285], + [13261,6454], + [22037,4383], + [47105,6058], + [48197,373], + [22087,3491], + [49009,131], + [54085,998], + [6087,98745], + [22029,3766], + [29165,21495], + [19123,4464], + [6003,422], + [19177,1546], + [13195,2965], + [22089,8522], + [19087,4349], + [28133,7838], + [51683,7518], + [48027,40413], + [51119,2391], + [13227,2595], + [1023,3636], + [41007,10701], + [39107,5853], + [50021,19355], + [37101,26795], + [21195,9525], + [16041,600], + [17105,6189], + [42109,5382], + [28137,5003], + [37199,4486], + [47007,1517], + [13065,989], + [40081,3504], + [1129,3067], + [48227,2545], + [48273,5256], + [30049,17114], + [17007,11333], + [44005,25479], + [28001,9021], + [13285,10455], + [48019,2250], + [53035,68624], + [53027,16354], + [9001,242936], + [51131,3800], + [20075,233], + [27127,3250], + [21231,2201], + [6013,306983], + [37145,8446], + [48143,3128], + [40011,1011], + [17151,845], + [5021,2244], + [48117,1247], + [28149,10489], + [5081,1753], + [45065,9608], + [12031,202618], + [42111,12878], + [31117,45], + [55087,50294], + [46075,147], + [41011,14401], + [18099,7889], + [5093,6667], + [1031,5079], + [22123,878], + [19009,1739], + [47037,158423], + [48001,4630], + [49057,25666], + [22081,2080], + [41045,2949], + [31175,706], + [45075,27263], + [1125,32796], + [46021,243], + [13255,10141], + [18137,4187], + [20197,1036], + [20155,9916], + [13225,5927], + [13209,1045], + [55103,5041], + [19011,7058], + [40009,1625], + [9003,268721], + [38007,114], + [55013,4337], + [51730,13774], + [37057,22433], + [48053,4608], + [20135,289], + [28075,13332], + [27125,1120], + [13213,3026], + [48499,4010], + [27087,1436], + [17089,106756], + [55043,14875], + [51550,53994], + [53075,9070], + [26123,10790], + [31179,1249], + [49033,154], + [29077,56181], + [54013,993], + [47039,1566], + [42129,72721], + [12111,67125], + [40141,1042], + [13167,1198], + [36001,93937], + [18153,4284], + [37171,10475], + [46091,1261], + [13251,3024], + [26003,2472], + [49035,176988], + [48331,3044], + [17047,1140], + [45087,5935], + [48495,477], + [55021,16661], + [54107,12573], + [48367,10502], + [5119,88854], + [48395,2675], + [25023,131817], + [29127,4703], + [55091,2102], + [54071,1310], + [39011,6727], + [39013,16302], + [1027,1760], + [17147,3859], + [29099,53467], + [47159,2992], + [26007,7705], + [51019,11017], + [27005,7687], + [8115,468], + [13211,3091], + [12063,7671], + [6043,4100], + [47049,1831], + [19113,68037], + [51097,1918], + [47143,2907], + [48285,1869], + [38075,505], + [42047,7290], + [40117,2063], + [47059,7110], + [48201,590982], + [30089,1970], + [8065,1859], + [40029,600], + [27133,2079], + [39095,142852], + [4015,22092], + [31091,75], + [25005,146861], + [13085,1632], + [5073,1133], + [17039,3308], + [28057,2084], + [18161,1224], + [19069,2575], + [6109,11532], + [55079,319819], + [18067,17871], + [48213,7913], + [39155,64145], + [18055,5709], + [48431,97], + [51167,4932], + [37125,17624], + [13139,14457], + [26093,42349], + [35053,4696], + [22007,4756], + [8041,108899], + [12127,127795], + [42051,25866], + [48193,863], + [51193,4577], + [31005,39], + [39029,21882], + [45081,3323], + [48145,2225], + [5089,2384], + [22067,5792], + [51600,6575], + [26125,372566], + [48441,12690], + [30011,111], + [8063,912], + [51650,46917], + [37161,9641], + [28145,2985], + [5105,1352], + [13145,4184], + [56031,1407], + [39019,6423], + [20061,3491], + [48033,40], + [48363,2499], + [22097,20268], + [55039,23463], + [48061,48480], + [26119,2403], + [32019,8405], + [8075,2846], + [20195,420], + [29155,3029], + [51678,1543], + [29185,1886], + [29163,3487], + [21011,2210], + [31105,439], + [8071,3562], + [18035,28384], + [37179,31189], + [46097,605], + [42073,19711], + [29211,1173], + [18081,21553], + [20167,736], + [51159,1618], + [37023,14901], + [54051,5996], + [21069,2279], + [1133,1757], + [41013,3632], + [37073,2830], + [30041,3596], + [31145,1216], + [21039,879], + [31013,1886], + [22103,24596], + [53003,4139], + [46025,830], + [29083,4869], + [5007,23331], + [54073,1142], + [17193,3315], + [41001,2805], + [47121,1372], + [47183,4596], + [28099,3114], + [13309,794], + [12047,2364], + [8061,178], + [53013,686], + [51079,3174], + [39173,34285], + [51085,18447], + [48329,9691], + [13037,1342], + [39139,25727], + [13013,6657], + [24013,28060], + [21031,1555], + [47031,7132], + [31021,1413], + [34025,148737], + [18109,10330], + [5085,5968], + [38091,614], + [21051,1552], + [12103,248299], + [29115,2638], + [38023,464], + [40113,7498], + [48323,8554], + [41065,5906], + [6113,53488], + [21115,2407], + [48399,720], + [26043,5995], + [29145,7450], + [28155,1349], + [48239,1301], + [49005,10294], + [17075,4643], + [13207,4106], + [55065,4732], + [13149,1042], + [18089,139301], + [48435,381], + [8009,536], + [37043,1734], + [48433,206], + [28025,6558], + [8083,4661], + [13243,1833], + [27063,2618], + [31115,86], + [48309,29998], + [28095,7169], + [45027,8673], + [46099,39838], + [48095,257], + [27071,3649], + [29061,1400], + [26101,7235], + [48083,643], + [29085,2171], + [46085,710], + [39169,21712], + [36065,43506], + [46063,135], + [18029,7123], + [1051,8301], + [51105,3219], + [19007,2970], + [51149,7130], + [12105,113865], + [39073,6259], + [19127,10023], + [13237,3102], + [28045,3768], + [13135,129025], + [53021,7361], + [40091,3320], + [17005,3843], + [19137,2326], + [13163,4149], + [55135,12952], + [13175,7769], + [36123,4890], + [8125,1117], + [40053,514], + [48103,319], + [17121,8345], + [27135,3097], + [30099,1294], + [33003,15221], + [54053,4484], + [47113,4320], + [47103,3695], + [29087,802], + [28063,3883], + [17171,1090], + [47139,2124], + [46073,542], + [36105,16850], + [21043,4316], + [45003,26101], + [46013,9041], + [31075,41], + [49041,1359], + [29049,4545], + [23025,13335], + [12027,4383], + [53065,8499], + [27101,2345], + [45031,14505], + [5129,961], + [51127,3493], + [12083,70839], + [28101,3218], + [21067,66042], + [21021,4769], + [51045,877], + [48047,1747], + [39105,4094], + [28021,4682], + [35013,40282], + [17141,11253], + [51067,9618], + [48091,12384], + [4013,602166], + [30105,1645], + [37003,5167], + [26053,4757], + [28069,3256], + [24039,4779], + [13071,4139], + [12109,35791], + [12049,2568], + [36053,14692], + [54065,2721], + [6097,168888], + [53073,58236], + [50011,13179], + [55133,85339], + [19027,5302], + [47111,4506], + [48167,41805], + [35017,8142], + [38035,16104], + [8011,799], + [20009,3027], + [39159,8761], + [54033,13582], + [1059,3469], + [42101,595980], + [41071,20797], + [30077,1021], + [27027,16666], + [5113,1957], + [29229,2557], + [48489,3409], + [17137,7467], + [4001,15390], + [49023,741], + [42113,1233], + [37015,6365], + [5051,15899], + [40085,1257], + [20209,39865], + [48025,3645], + [30061,845], + [16033,64], + [39069,6320], + [31009,43], + [8019,3332], + [54049,11618], + [34023,193812], + [25025,207127], + [19129,2976], + [17203,6999], + [46057,1043], + [18075,3748], + [39101,12870], + [36027,71060], + [8033,369], + [51021,864], + [48029,275527], + [51117,7127], + [27141,17957], + [19197,3102], + [6035,3586], + [54095,1241], + [20015,9159], + [37053,3737], + [38017,37622], + [26153,2184], + [46065,3037], + [48119,589], + [48049,2822], + [51143,11415], + [30055,1607], + [55137,5868], + [56021,16072], + [13305,2858], + [21137,2752], + [36033,10571], + [21191,2027], + [28093,9685], + [24003,125015], + [18181,4839], + [51163,4347], + [38033,210], + [26023,8413], + [27089,2311], + [13263,2369], + [29177,5241], + [51069,12961], + [30057,321], + [26129,5391], + [18049,3702], + [40089,2794], + [51735,1748], + [12003,2327], + [6089,28867], + [17133,7953], + [35011,359], + [47129,1969], + [54003,15994], + [5127,1053], + [31037,1125], + [29179,1418], + [17149,3024], + [47175,849], + [13033,5233], + [20199,96], + [28147,3456], + [48321,4440], + [36093,38611], + [21219,1543], + [6091,743], + [35028,5824], + [13275,7720], + [48157,98368], + [18173,12329], + [31001,4685], + [54019,7242], + [31061,442], + [18141,68710], + [31033,1173], + [10005,40299], + [20057,2991], + [20139,2534], + [13295,6095], + [39035,458422], + [27043,3736], + [32009,104], + [29107,6902], + [48477,4034], + [48081,299], + [27031,2019], + [29089,2036], + [29131,3553], + [29069,4540], + [21001,1668], + [31107,1255], + [23021,4430], + [25003,49558], + [12073,91747], + [48155,198], + [31129,657], + [26039,3441], + [37025,31546], + [16021,1484], + [28031,3852], + [48299,2250], + [11001,245800], + [38073,1371], + [46105,499], + [18123,5141], + [41069,281], + [45047,12348], + [30091,953], + [30013,17664], + [19185,1357], + [19171,4899], + [13235,1377], + [40095,1643], + [53037,8030], + [48251,12912], + [53063,105786], + [39171,8174], + [48463,4126], + [48283,1052], + [55063,38524], + [53015,24597], + [53033,648230], + [16065,1627], + [37169,6875], + [48217,3811], + [18103,5564], + [51520,2665], + [48425,799], + [50023,22324], + [36085,79311], + [17067,4141], + [47053,7406], + [13047,6025], + [40023,1860], + [51147,5101], + [5083,2286], + [48371,1476], + [55057,6186], + [21071,7530], + [29093,2213], + [48249,6706], + [12057,272963], + [55033,13002], + [21129,752], + [31015,250], + [5019,4267], + [12085,33508], + [31045,1285], + [28157,3534], + [19141,2338], + [54023,997], + [37093,9227], + [51087,86323], + [5071,3034], + [36077,13570], + [37165,8151], + [13313,8167], + [20093,309], + [18101,1706], + [28061,5025], + [27003,86976], + [47043,7506], + [39009,20722], + [16043,1065], + [22011,3071], + [30075,208], + [35006,5827], + [46027,3808], + [13245,52100], + [48137,346], + [29159,6932], + [51181,2626], + [15003,214239], + [39129,9077], + [29203,1637], + [27123,182974], + [53061,187294], + [21045,1219], + [12053,41886], + [22069,7801], + [47137,854], + [18007,1563], + [13269,1536], + [8093,4250], + [37115,5026], + [23009,18895], + [50019,7998], + [19013,39184], + [26115,39180], + [27049,12420], + [54031,1901], + [8027,912], + [48121,91160], + [53025,9601], + [17041,3228], + [16073,944], + [31127,1240], + [48355,47912], + [19035,2890], + [42089,39453], + [20023,323], + [20203,163], + [13121,272000], + [6017,40529], + [19045,15018], + [18019,21953], + [19125,7421], + [21197,2065], + [20087,3542], + [13127,12676], + [21109,743], + [28055,579], + [31183,96], + [38067,1494], + [23013,13728], + [21215,2519], + [8045,11357], + [20081,278], + [21003,2024], + [42107,28300], + [13153,22094], + [29029,7773], + [1025,5914], + [41005,103476], + [36025,9462], + [48207,699], + [39103,40924], + [37185,7086], + [29067,2140], + [18157,37781], + [41041,14258], + [13315,978], + [30059,298], + [20055,3275], + [36041,1225], + [17165,5083], + [31135,310], + [5099,1474], + [16045,2166], + [53067,75882], + [42115,8381], + [37085,16785], + [20035,5012], + [37077,13074], + [26017,32589], + [34027,112275], + [26103,19635], + [31073,260], + [51173,4239], + [48327,295], + [19189,3254], + [13091,2595], + [18009,2677], + [54029,5504], + [37111,6571], + [50007,59611], + [32029,1102], + [18119,3570], + [48011,128], + [20169,8186], + [48127,2692], + [46015,965], + [20115,1801], + [17119,68979], + [45019,82698], + [19017,6940], + [13265,643], + [18151,6284], + [47055,4614], + [45051,38879], + [12023,9171], + [32510,11623], + [40037,8318], + [27137,77351], + [47145,7224], + [46137,554], + [18167,25040], + [48123,1716], + [31165,117], + [48221,5087], + [41047,61816], + [39167,1238], + [21113,6236], + [13169,4572], + [19059,4625], + [37055,8074], + [23011,37238], + [48243,468], + [25027,202107], + [48505,1939], + [24041,9035], + [37131,6903], + [22079,20127], + [29209,5029], + [25011,27919], + [51685,2463], + [28123,5025], + [30103,156], + [20183,446], + [26035,7496], + [31153,28010], + [55017,16239], + [39043,23148], + [19181,12299], + [16049,2017], + [22077,5516], + [19193,21983], + [6115,8866], + [6059,549558], + [13239,597], + [13131,3539], + [26011,4155], + [46047,1338], + [29171,695], + [21239,5027], + [26165,7379], + [29201,6258], + [44001,16162], + [49043,9532], + [13165,1482], + [19033,14405], + [26091,24640], + [13171,2752], + [31163,585], + [12097,59962], + [53045,15050], + [38097,2136], + [24510,214385], + [54061,17060], + [17191,2547], + [47179,15941], + [13051,62755], + [36107,10172], + [30083,1203], + [50017,9799], + [17161,42210], + [12061,29710], + [8077,24008], + [31149,139], + [54067,4357], + [54089,2290], + [21053,761], + [13055,2596], + [28159,4653], + [4011,1165], + [25013,121454], + [21099,2290], + [5047,1869], + [6101,13412], + [17065,1796], + [40111,6191], + [27119,7850], + [36035,9695], + [48135,9123], + [47155,8604], + [20153,273], + [45023,7478], + [48139,15333], + [26107,9101], + [54105,782], + [28135,4105], + [21073,11767], + [27047,9915], + [34019,29776], + [5131,13673], + [30033,110], + [42079,72492], + [42061,6621], + [13093,2138], + [48199,3939], + [19043,5195], + [12099,361271], + [46093,3751], + [20071,151], + [28139,2623], + [27115,7084], + [5005,6539], + [1113,10085], + [51157,2105], + [21187,1694], + [12041,1996], + [13089,254594], + [18047,3404], + [48457,2166], + [47117,5541], + [51029,3489], + [48453,254017], + [18163,39423], + [13187,2586], + [38005,1569], + [20133,2563], + [46043,424], + [47101,1804], + [29227,427], + [26045,30742], + [21123,1913], + [5107,5695], + [6039,17952], + [26109,5981], + [34039,141417], + [45045,70886], + [53057,30053], + [21027,3110], + [30019,343], + [19039,2218], + [37191,22671], + [8123,47292], + [18113,7064], + [21013,2782], + [4007,7884], + [31023,1190], + [30043,2582], + [47157,256297], + [45015,27755], + [26061,7476], + [18115,1158], + [28097,2609], + [21185,10000], + [1033,9703], + [1103,13895], + [50005,8900], + [13287,1427], + [48491,67691], + [42023,879], + [1063,4408], + [42091,253393], + [37087,12730], + [55071,22428], + [33009,31446], + [48013,4415], + [19117,2029], + [29113,10234], + [40139,923], + [31057,218], + [29109,5097], + [51185,5596], + [48235,164], + [39003,19522], + [51810,98885], + [13147,3365], + [39079,5397], + [20123,701], + [21221,2246], + [31087,346], + [27083,6110], + [42083,6465], + [21065,1555], + [51199,13700], + [13077,15521], + [26155,19397], + [55101,53408], + [42033,14555], + [19159,1236], + [18135,4839], + [26139,50828], + [38049,981], + [26161,130578], + [9011,74776], + [31167,664], + [48133,1271], + [36021,17556], + [26135,1887], + [49013,911], + [12011,492640], + [19111,9821], + [26083,610], + [1083,9536], + [48015,2821], + [31017,311], + [53041,13624], + [46067,1242], + [5101,1182], + [42031,6756], + [40125,7910], + [26015,13449], + [27095,6072], + [19079,4018], + [29027,7580], + [46083,8642], + [35007,3490], + [8037,13187], + [40065,2264], + [48507,3263], + [32013,1909], + [55083,9927], + [42025,13464], + [8099,1487], + [28121,14372], + [28131,1996], + [18037,8748], + [19157,5519], + [26027,12083], + [21061,1652], + [40153,1350], + [41057,7072], + [28019,1459], + [37137,2838], + [29003,3345], + [45033,7408], + [6073,666581], + [48161,2034], + [18159,3250], + [16051,1641], + [54011,15292], + [12065,4088], + [27117,2023], + [37027,12081], + [12067,642], + [39121,2474], + [37197,4527], + [8121,529], + [17081,7462], + [13297,8469], + [16079,2521], + [27017,11501], + [42041,48306], + [29125,1599], + [20107,1425], + [26051,6590], + [31125,549], + [13219,4825], + [39053,4777], + [39045,29250], + [24035,8575], + [56005,2990], + [51177,24897], + [51023,5693], + [37155,23058], + [21199,5590], + [51043,3457], + [18125,2700], + [13079,1832], + [27059,8248], + [1001,6093], + [19085,3555], + [55047,4000], + [39113,145997], + [29197,775], + [8021,2154], + [20005,3241], + [8119,4513], + [48383,197], + [48403,1077], + [24037,19023], + [27129,3904], + [17157,7395], + [21133,2623], + [55077,4068], + [26099,223784], + [30037,124], + [27109,38711], + [40035,2073], + [33017,37990], + [6047,34031], + [29011,1455], + [28067,8846], + [26075,37480], + [13279,2964], + [19003,1118], + [6029,93457], + [13083,1612], + [35039,12703], + [22099,9419], + [16009,1407], + [56003,1108], + [6067,316506], + [40003,411], + [1091,5926], + [28059,17781], + [29121,2784], + [48413,324], + [38021,1044], + [40101,11294], + [36003,7016], + [1111,3064], + [19167,3030], + [31049,243], + [42069,67520], + [19119,1675], + [42093,3364], + [48449,3145], + [25021,200675], + [54035,4861], + [47035,7889], + [48347,8393], + [13299,4034], + [8087,3813], + [39081,17635], + [48375,8939], + [46123,914], + [31171,51], + [54015,1421], + [47167,7931], + [47011,9357], + [39131,6033], + [48215,90261], + [36047,603525], + [6045,27843], + [21189,381], + [22049,2456], + [27121,3317], + [48353,1521], + [13249,479], + [5125,12695], + [46111,500], + [31071,212], + [29217,3381], + [6093,9292], + [27039,4463], + [38013,286], + [29175,3984], + [6023,39692], + [1095,7038], + [30009,2443], + [18005,13567], + [20191,3353], + [39175,4461], + [42049,75775], + [13059,29591], + [38065,332], + [51103,3235], + [20019,401], + [40021,7194], + [48277,5243], + [20117,1784], + [31111,5046], + [24011,4971], + [17111,72288], + [17019,48597], + [40143,96133], + [31029,341], + [48073,4610], + [46007,557], + [17033,3883], + [1053,5188], + [18133,6334], + [39077,12076], + [26081,149909], + [37089,20082], + [53011,95356], + [42055,21169], + [1037,2273], + [54069,8593], + [32011,144], + [51800,22446], + [32017,518], + [1071,6374], + [53059,2817], + [48069,719], + [51007,2488], + [37195,19652], + [37149,4396], + [6055,38849], + [13069,4811], + [38061,1477], + [19031,5221], + [27163,70277], + [49045,5830], + [30047,6766], + [55061,5902], + [17143,45906], + [17115,25487], + [29215,3410], + [46051,1786], + [17103,7765], + [20063,261] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-gop.json b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-gop.json new file mode 100644 index 0000000..099d343 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-gop.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2008 Presidential Election | Republican Votes", + "description" : "Votes cast for Republican party (gop) candidates in the 2008 presidential election.", + "units" : "votes", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "GitHub user @wboykinm" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2008.votes.gop"], + [26041,8763], + [48295,1093], + [1127,20722], + [48389,1445], + [56017,1834], + [20043,2372], + [37183,187001], + [37147,33927], + [48497,15973], + [21207,5779], + [5053,5023], + [31147,2342], + [47123,11484], + [36059,288776], + [1011,1391], + [42057,4642], + [20031,3054], + [31151,2434], + [31035,2177], + [28033,44222], + [22061,10680], + [40129,1502], + [22057,27089], + [40135,9466], + [51153,67621], + [23031,42389], + [23015,9287], + [47025,7175], + [29063,2889], + [42045,115273], + [12119,30866], + [36055,144262], + [18045,4158], + [39063,22420], + [34009,27288], + [28047,38757], + [5141,4276], + [48343,3158], + [30073,1588], + [47181,4076], + [48153,1784], + [46119,581], + [19097,3673], + [28087,13994], + [17155,1378], + [45073,21164], + [36101,24203], + [37143,3678], + [28035,15296], + [31027,2912], + [13141,795], + [39091,13848], + [39059,9197], + [48297,3095], + [47151,4931], + [30027,4108], + [35021,358], + [23027,9423], + [49007,4091], + [20053,2021], + [27113,3248], + [27159,4128], + [18131,3388], + [38041,893], + [28003,10805], + [19143,2027], + [50009,1284], + [1015,32348], + [13253,2315], + [6105,2940], + [17181,5003], + [31055,106291], + [51670,4149], + [20095,2603], + [21209,11782], + [48467,15734], + [31177,6425], + [29199,1249], + [47027,1676], + [55111,11562], + [48045,617], + [45007,48690], + [48125,730], + [19173,1607], + [37193,20288], + [27081,1491], + [48369,2969], + [1005,5866], + [42125,50752], + [51035,8187], + [47033,3994], + [39021,11141], + [36049,5969], + [29143,4593], + [51135,3499], + [26089,6938], + [48275,986], + [51073,12089], + [35051,3017], + [6069,7425], + [41051,75171], + [51610,1970], + [48195,1847], + [13025,5080], + [27079,7636], + [36061,89906], + [18073,7669], + [21183,5687], + [21081,5510], + [5025,2451], + [27055,4743], + [37129,50544], + [26013,1846], + [48189,7171], + [20171,1823], + [48211,1345], + [15007,6245], + [54047,2882], + [22043,6907], + [39143,14190], + [48465,5752], + [48279,3344], + [37041,3773], + [38085,215], + [39115,3440], + [1057,5883], + [22017,52228], + [13191,3282], + [51109,8182], + [46121,571], + [31085,461], + [55113,4199], + [6083,65585], + [51820,4815], + [28049,32949], + [44003,33780], + [21229,3305], + [37065,8445], + [27029,2291], + [17061,3053], + [21029,20102], + [51071,4462], + [20083,865], + [20045,17929], + [40097,10234], + [22105,31434], + [36013,28579], + [25007,2442], + [20127,1875], + [48141,61783], + [30025,1064], + [55019,6383], + [19165,3488], + [13103,15230], + [55011,2923], + [31051,1785], + [41023,2785], + [24033,38833], + [29219,8675], + [36051,16030], + [48391,1855], + [22013,3776], + [22023,3089], + [17045,4398], + [21047,13699], + [13193,1712], + [1003,61271], + [38105,6291], + [19105,4405], + [22095,8912], + [32031,76880], + [20187,628], + [18139,4271], + [29037,29695], + [38057,2789], + [55035,20959], + [29079,3006], + [47077,7669], + [35029,3870], + [47173,4467], + [48005,19569], + [46061,1426], + [48271,907], + [39031,8675], + [40043,1857], + [6065,310041], + [30109,379], + [48325,10480], + [9005,46173], + [20039,1189], + [13015,25976], + [8051,3131], + [30045,801], + [17099,21872], + [40103,3881], + [53001,3222], + [19109,4329], + [51001,7833], + [19075,3945], + [23005,56186], + [37099,7854], + [39119,20549], + [17177,9909], + [8053,344], + [40093,2956], + [48171,9563], + [6061,94647], + [27153,6637], + [39041,54778], + [16071,1724], + [21035,8991], + [12013,4345], + [36009,17770], + [18069,10291], + [39099,45319], + [48059,4589], + [47165,44949], + [46109,1781], + [17185,3254], + [20121,9382], + [27147,10068], + [51063,4441], + [16027,42752], + [45041,29861], + [29073,4763], + [16013,3439], + [31141,9373], + [42027,32992], + [13123,8408], + [12039,6811], + [48175,2298], + [5143,37963], + [41019,30919], + [19179,6663], + [29151,5062], + [28009,2329], + [48179,6924], + [13009,7823], + [13023,3657], + [47071,7077], + [32023,9537], + [39057,48936], + [47081,4784], + [48473,8265], + [55117,30801], + [8015,4873], + [21161,4102], + [41039,63835], + [13003,1941], + [9013,29266], + [40045,1627], + [13053,811], + [22085,7226], + [55099,3461], + [20175,3791], + [28141,6249], + [18083,8639], + [37011,5681], + [22015,32713], + [39085,59142], + [5069,10655], + [30035,1451], + [31143,1822], + [55093,9812], + [51057,2379], + [48051,4547], + [13221,4144], + [5031,18881], + [21041,2032], + [13273,1890], + [42011,80513], + [18013,4060], + [38077,3900], + [42017,150248], + [16015,2433], + [36111,33300], + [29095,124687], + [49055,940], + [20165,1225], + [41061,7581], + [29186,3732], + [30101,1317], + [37157,23899], + [5137,3534], + [39123,10618], + [29081,2512], + [27173,2579], + [5041,1999], + [27023,2907], + [47095,1175], + [22025,3486], + [48021,13817], + [39161,9168], + [12123,6457], + [13133,4532], + [56013,11083], + [36113,15429], + [19049,16954], + [8111,218], + [53007,17605], + [51093,11258], + [18105,21118], + [51077,4540], + [48429,2869], + [8007,3638], + [8001,63976], + [26001,3404], + [37119,153848], + [21165,1155], + [54083,6060], + [48411,1941], + [54077,7325], + [1039,12444], + [15001,14866], + [5061,2957], + [35023,936], + [26151,10679], + [46031,535], + [42121,13718], + [39163,3021], + [13241,5487], + [48337,6245], + [13281,4292], + [19021,4223], + [29169,9552], + [5057,4273], + [27067,11319], + [39027,12409], + [41031,4402], + [38089,7024], + [54017,2218], + [21127,3503], + [26047,9314], + [53009,18199], + [45021,13305], + [27145,41194], + [51570,6161], + [28023,5229], + [24017,25732], + [5117,2223], + [48031,3418], + [21169,2734], + [36091,52855], + [17015,3596], + [42065,12057], + [28015,3902], + [12019,67203], + [12115,102897], + [12071,147608], + [29205,2166], + [51099,5888], + [5023,7962], + [27011,1362], + [5079,2513], + [21225,3120], + [37033,5208], + [42035,7504], + [31031,2360], + [6021,5910], + [56033,10177], + [31003,2383], + [20109,1187], + [21227,25993], + [16059,2938], + [29141,5451], + [47091,4621], + [13081,4424], + [16031,6309], + [38083,555], + [17087,3912], + [9007,32918], + [12069,82802], + [35037,2367], + [48129,1374], + [5059,7209], + [1105,1679], + [47187,64858], + [32021,1131], + [47073,14756], + [18175,6519], + [51013,29876], + [37103,2817], + [8081,4135], + [51121,19028], + [48483,1918], + [20033,765], + [47109,23290], + [26071,2947], + [46011,6431], + [18171,2166], + [21057,2056], + [29031,24768], + [38043,752], + [4012,3509], + [37007,4207], + [48205,1711], + [12095,186832], + [21091,1928], + [41035,19113], + [54057,7616], + [22113,18069], + [26113,4469], + [5037,4393], + [9015,21210], + [29075,1964], + [28091,8513], + [33011,97178], + [19145,4351], + [37135,20266], + [47067,1588], + [20011,4240], + [8085,12199], + [18107,9060], + [13011,5120], + [35025,13347], + [54041,4335], + [29065,4655], + [28115,9727], + [48071,9988], + [37059,13981], + [35001,110521], + [12035,23951], + [29123,2897], + [35041,4311], + [48231,20573], + [18095,26403], + [48361,21509], + [30039,1013], + [48035,5762], + [21111,153957], + [6001,119555], + [40105,3031], + [48169,1356], + [20185,1495], + [26025,28553], + [19051,2029], + [29157,5527], + [47177,8562], + [42003,272347], + [36073,9708], + [4027,24577], + [28111,4067], + [9009,144650], + [35045,27869], + [42127,12702], + [21177,6447], + [49037,2638], + [26037,19726], + [51590,8361], + [20067,1995], + [12087,18933], + [29035,1840], + [5001,4185], + [40069,2708], + [37107,13401], + [48209,29638], + [4005,22186], + [20143,2323], + [48437,1683], + [41063,2836], + [19091,2895], + [22091,2522], + [48185,5562], + [40051,15195], + [31095,2103], + [39127,7721], + [48233,7361], + [13099,2711], + [16057,7988], + [56045,2618], + [46053,1423], + [49029,3311], + [22021,3696], + [46017,156], + [19133,2411], + [16017,11145], + [42095,58551], + [51690,2311], + [40131,27743], + [55119,4586], + [17145,5086], + [27021,8660], + [48417,1284], + [48339,119884], + [6099,77497], + [47013,8535], + [27085,10993], + [30017,3047], + [48165,3385], + [35057,3735], + [33007,6558], + [47135,1596], + [6111,145853], + [40099,3746], + [20201,2248], + [48245,42905], + [18057,78401], + [19041,4355], + [47015,3322], + [1049,17957], + [42067,6484], + [26105,7147], + [34003,186118], + [48017,1618], + [17013,1221], + [40061,3207], + [27015,7456], + [45057,16441], + [21149,2386], + [22107,1367], + [28113,8651], + [25019,1863], + [13321,5780], + [26097,3268], + [51089,13758], + [1009,20389], + [13303,4216], + [4019,182406], + [38025,1080], + [21019,11430], + [8069,73641], + [51037,3372], + [29117,3993], + [48315,2567], + [51101,4966], + [28077,4369], + [45077,32552], + [21025,2671], + [51540,4078], + [17189,4473], + [29135,4467], + [24001,18405], + [27025,15789], + [29181,3407], + [48419,6630], + [17183,16054], + [48067,8279], + [26067,14156], + [26085,2269], + [17071,1541], + [39033,12316], + [21101,9523], + [13283,1826], + [22035,1254], + [49011,77341], + [13271,2486], + [51195,8914], + [48037,24162], + [48241,9022], + [47075,3165], + [1045,13886], + [40123,9750], + [22027,3750], + [29041,2339], + [45055,16466], + [51015,23120], + [6085,190039], + [29055,6007], + [39007,18949], + [13173,1787], + [13161,3867], + [18033,9780], + [42081,30280], + [48225,5872], + [38059,7869], + [42063,19727], + [39165,71691], + [31137,3360], + [42043,58238], + [20091,152627], + [25001,55694], + [19073,2349], + [6025,14008], + [19065,4205], + [37001,34859], + [18065,10896], + [26079,4527], + [16077,1754], + [46029,6374], + [46117,1017], + [40115,6905], + [39097,10606], + [45083,65042], + [8091,1367], + [37081,97718], + [16075,5988], + [17011,7911], + [5049,2702], + [30063,20743], + [1065,3200], + [48105,1026], + [13125,1202], + [1099,6175], + [30001,3008], + [17163,47958], + [29147,5568], + [5135,4535], + [54009,4961], + [21117,40714], + [48257,23735], + [16085,2772], + [26021,36130], + [36089,16956], + [37189,13344], + [36117,22239], + [8023,415], + [17049,11323], + [51059,200994], + [39001,6914], + [17135,6150], + [36031,7913], + [12037,3818], + [39109,33417], + [53039,4944], + [41009,10413], + [1101,42031], + [29039,4194], + [17097,118545], + [5017,2119], + [13107,5110], + [27093,6737], + [17043,183626], + [26121,29145], + [36109,11927], + [21083,10056], + [48317,1389], + [6053,38797], + [13247,16921], + [13109,2462], + [29097,31667], + [40039,7842], + [22001,19229], + [42123,9685], + [54091,3605], + [48493,10904], + [55051,1464], + [37113,10317], + [5115,15568], + [1131,1868], + [13137,11766], + [8095,1612], + [42013,32708], + [5045,25362], + [5139,10677], + [20003,2362], + [30005,1139], + [31093,1847], + [55059,31609], + [48291,15448], + [45037,6334], + [38053,1740], + [34035,70085], + [32007,10969], + [55045,6730], + [12051,5780], + [36069,25171], + [20007,1833], + [35015,12500], + [16061,1275], + [24045,21849], + [48187,30869], + [51720,744], + [46003,794], + [8067,11503], + [51710,24814], + [16035,2569], + [36045,20220], + [33005,15205], + [48481,9431], + [26065,46483], + [19099,8794], + [6033,9935], + [22125,3150], + [38051,916], + [55041,1963], + [53055,2958], + [27007,9762], + [51053,6526], + [38063,800], + [20065,1060], + [36043,14619], + [13113,38501], + [23007,6627], + [38037,587], + [40017,36428], + [13061,558], + [51770,15394], + [13201,1899], + [48163,1644], + [17175,1513], + [48269,151], + [30111,36483], + [31119,9655], + [44009,49810], + [31133,859], + [46037,1372], + [17093,21380], + [19029,4006], + [4017,19761], + [16005,19356], + [47099,10566], + [8101,30257], + [8043,12668], + [12043,1938], + [13095,12547], + [13155,2605], + [31063,1034], + [36039,12059], + [22055,62055], + [39065,7749], + [56043,2956], + [55107,3253], + [27045,4993], + [29051,24385], + [13087,5890], + [17057,6251], + [22045,20127], + [46023,2109], + [46069,547], + [13291,8013], + [17117,9891], + [21063,902], + [35055,2866], + [46039,1088], + [19023,3700], + [37173,2900], + [48307,2263], + [40079,11605], + [28043,6234], + [48223,9299], + [21049,9664], + [42131,6983], + [20111,6698], + [47069,5225], + [54043,3637], + [13151,47157], + [20101,814], + [48173,502], + [6081,75057], + [38011,1107], + [51027,4541], + [56011,2967], + [17201,53886], + [51630,3413], + [48289,5566], + [55123,5367], + [17129,3672], + [48333,1753], + [21005,6885], + [37121,5499], + [19183,5247], + [31059,1913], + [16025,422], + [17199,17039], + [45039,3912], + [1079,9277], + [12055,26221], + [19077,3074], + [31157,9708], + [29221,4706], + [53077,41946], + [29119,5499], + [21077,1840], + [48501,1989], + [42103,12518], + [29057,2864], + [48401,13646], + [20141,1490], + [19187,8337], + [42075,34314], + [20099,5001], + [48079,758], + [24025,71751], + [12015,45205], + [13027,3507], + [29071,27355], + [41055,634], + [6057,25663], + [47041,4085], + [26111,22263], + [34013,74063], + [21159,2824], + [19093,2036], + [39093,59068], + [45009,2309], + [47147,17903], + [47169,1688], + [29183,102550], + [54021,1445], + [37095,1212], + [47107,5145], + [21163,6691], + [20079,9006], + [55049,3829], + [36103,307021], + [51740,13984], + [46045,1213], + [16081,2263], + [13233,9850], + [39153,110499], + [53043,3803], + [51840,4725], + [53005,45345], + [13129,13113], + [27151,2184], + [19089,1722], + [19139,7929], + [49047,8441], + [18121,3909], + [4009,8376], + [21037,24046], + [8005,113866], + [37187,2670], + [55097,13810], + [29007,6167], + [27033,3157], + [51107,63336], + [51137,8506], + [31101,2942], + [8047,1253], + [21153,2434], + [39071,11907], + [55025,73065], + [51111,2900], + [53049,4555], + [27009,10338], + [42099,13058], + [5013,1462], + [20137,1878], + [40147,16457], + [23019,37495], + [39005,15158], + [27073,1912], + [8107,4725], + [29139,3428], + [54087,2943], + [5055,8578], + [27013,14782], + [40019,13241], + [20073,1619], + [17059,1212], + [42059,7889], + [28007,5273], + [51183,2026], + [55131,47729], + [27099,7075], + [1119,1731], + [1085,1809], + [48109,257], + [17063,10687], + [47023,4587], + [46071,668], + [24005,158714], + [48439,348420], + [38071,2361], + [20113,8937], + [20089,1231], + [41067,89185], + [40049,7710], + [13189,5400], + [47021,10702], + [36067,84972], + [8014,12757], + [18025,2393], + [28041,4361], + [39089,46918], + [19019,4139], + [37181,7606], + [22065,2152], + [13185,21269], + [8013,44904], + [20163,2068], + [37021,52494], + [48177,4076], + [12081,80721], + [46081,6787], + [21181,1634], + [38029,1230], + [20125,9309], + [27035,18567], + [36071,72042], + [36081,155221], + [31181,1233], + [20173,106849], + [13301,1087], + [55007,3365], + [36079,25145], + [28153,6070], + [27091,6053], + [51036,1288], + [55069,6519], + [48097,11871], + [23029,8077], + [47163,44808], + [19061,18651], + [21155,3842], + [51191,16077], + [35009,9599], + [6049,2981], + [51033,5617], + [51141,5491], + [19161,2705], + [17131,3833], + [55005,10457], + [26127,5860], + [16063,1232], + [29053,4902], + [53047,8798], + [1107,5434], + [41017,39064], + [46035,4731], + [41033,22973], + [17035,3156], + [40067,1652], + [17123,3145], + [35031,6382], + [28127,7641], + [31039,2732], + [51640,1317], + [46095,445], + [19121,4579], + [18015,4858], + [51165,22468], + [47085,3818], + [12113,55972], + [46089,915], + [18043,19957], + [51009,8470], + [12017,43706], + [30093,4818], + [16003,1517], + [31099,2224], + [39037,17290], + [24021,55170], + [51510,19181], + [48101,509], + [27037,104364], + [46059,1247], + [47063,15508], + [40013,9307], + [13075,3782], + [54097,5911], + [54045,7326], + [48385,1238], + [51003,20576], + [51011,4903], + [47079,8182], + [21033,3866], + [48131,1076], + [19103,20732], + [29043,25382], + [21237,1408], + [49051,5430], + [38045,1310], + [29001,5891], + [40127,3208], + [29017,3972], + [1121,20112], + [28085,10781], + [18145,10333], + [31019,13097], + [30023,1502], + [26005,30061], + [6079,61055], + [47185,6103], + [48281,5651], + [26117,13291], + [39087,15415], + [5063,8255], + [46033,2909], + [12121,12534], + [37133,30278], + [54025,7567], + [48261,94], + [1089,86965], + [22059,5602], + [13205,4201], + [5133,3125], + [55125,7055], + [48159,3392], + [41059,15254], + [51051,3324], + [8057,624], + [31155,6188], + [8079,334], + [47161,2956], + [32003,257078], + [36057,10711], + [29129,1169], + [38079,1045], + [34017,55360], + [41021,648], + [37075,2824], + [16053,4897], + [13005,3089], + [37063,32353], + [28105,9320], + [17027,9357], + [51161,30571], + [38099,2415], + [20207,1055], + [40071,13230], + [34033,14816], + [28029,6701], + [48423,55187], + [39151,86743], + [19153,89668], + [21007,2537], + [28027,2917], + [28079,5148], + [41053,17714], + [22117,12215], + [26145,42225], + [48313,2891], + [28129,6265], + [18063,39728], + [29225,10431], + [6095,56035], + [37005,3124], + [47061,2563], + [46113,331], + [31081,3389], + [25015,20618], + [13143,8658], + [40055,1548], + [37049,24901], + [36099,7038], + [45001,6264], + [42037,14477], + [56029,10839], + [26137,6752], + [15009,11154], + [13049,2466], + [21175,2396], + [35027,6001], + [30071,1423], + [35003,1398], + [13217,20337], + [26009,7506], + [37067,73674], + [12033,91411], + [5147,1206], + [28081,22694], + [10001,29827], + [48359,813], + [46125,2538], + [37117,5957], + [18129,6804], + [26095,1490], + [6015,4967], + [27169,10975], + [8017,890], + [29161,11706], + [30053,5704], + [1093,9536], + [13293,7291], + [42053,1366], + [16069,10357], + [55105,27364], + [27057,6558], + [46101,1508], + [47093,113015], + [21151,19694], + [48267,1487], + [17159,4329], + [6075,52292], + [26157,13740], + [48407,6151], + [39061,195530], + [30087,1768], + [54101,1386], + [13157,17776], + [13317,2705], + [20025,897], + [37139,7778], + [37097,45148], + [21119,3070], + [49015,3358], + [48293,5079], + [40109,163172], + [48181,31136], + [48183,29203], + [48055,6107], + [12086,360551], + [54109,4621], + [22073,41741], + [51187,8879], + [45089,5004], + [30021,2639], + [31109,59398], + [6031,19710], + [20179,1108], + [39067,3872], + [55027,23015], + [33019,9169], + [13111,7807], + [48447,671], + [17009,1544], + [48009,3595], + [39145,16994], + [26073,11220], + [26057,8322], + [48085,184897], + [18027,7098], + [35019,620], + [21087,3785], + [47115,20288], + [1075,5419], + [1073,149921], + [13231,6547], + [12107,19637], + [35033,569], + [37017,7532], + [5009,10575], + [56039,4565], + [1021,13960], + [20181,1959], + [48387,3461], + [48311,400], + [46135,5039], + [1007,6262], + [49027,3653], + [21205,3907], + [21125,17660], + [28125,873], + [17167,46945], + [21235,10015], + [13035,5947], + [27065,4479], + [19053,2020], + [8035,88108], + [8109,953], + [17069,1330], + [40133,5600], + [48377,489], + [34011,22360], + [40121,11752], + [24027,55393], + [46009,1712], + [12089,27403], + [40027,64749], + [51017,1349], + [26163,219582], + [38069,1301], + [20129,1153], + [29091,10982], + [28083,4105], + [48475,2667], + [19135,2000], + [6103,14843], + [5039,1757], + [48089,5795], + [18003,77793], + [1043,28896], + [18127,33857], + [37127,23728], + [51081,1729], + [39015,12192], + [18169,8238], + [29005,1936], + [21009,11133], + [39025,62559], + [45063,74960], + [48259,12971], + [56037,10360], + [27069,1016], + [47003,10217], + [26055,24716], + [31053,8557], + [17079,2964], + [21075,1530], + [12129,8877], + [12133,8178], + [40087,11193], + [13067,170957], + [19071,1989], + [24019,8168], + [51095,20912], + [30065,1581], + [19057,7721], + [27157,5935], + [39051,11689], + [51133,4041], + [28037,2909], + [47189,34595], + [47045,9859], + [37105,12775], + [37123,6155], + [22041,6278], + [48229,458], + [36083,32840], + [1087,1396], + [19107,2712], + [20051,8207], + [13039,10502], + [55031,7835], + [20037,7735], + [21143,2220], + [13257,7689], + [48003,3816], + [13267,4730], + [51061,19227], + [40033,1793], + [13229,5500], + [42133,109268], + [46107,937], + [48247,472], + [18147,5001], + [1077,24068], + [42097,19018], + [19169,18995], + [45079,57941], + [48443,323], + [36011,15243], + [39083,16640], + [13159,3916], + [13021,27037], + [37009,7916], + [47087,2185], + [56025,21906], + [19047,3345], + [39141,16759], + [46103,27603], + [42001,26349], + [54063,3397], + [6071,277408], + [31161,1941], + [36075,23571], + [20069,1643], + [48409,12404], + [37167,19329], + [17173,6396], + [42117,11326], + [41015,6646], + [8029,10067], + [51750,2418], + [28053,1462], + [20059,7079], + [41025,2595], + [29133,3034], + [28117,7703], + [23003,15898], + [17077,9687], + [27155,933], + [49019,1871], + [40025,1119], + [29173,2987], + [19015,6293], + [34001,49902], + [46041,659], + [27139,36724], + [29101,12183], + [17109,6055], + [20049,1042], + [55053,3552], + [39075,7720], + [37069,13273], + [5123,3917], + [48305,1473], + [21107,11916], + [27131,13723], + [5077,1454], + [1061,9417], + [6009,12835], + [18079,6261], + [21023,2066], + [5065,3193], + [20027,2998], + [54007,2629], + [12005,56683], + [21015,33812], + [55009,55854], + [6063,6035], + [8113,933], + [36015,19364], + [19115,2314], + [51775,7088], + [28103,1525], + [36019,12579], + [17091,22527], + [45059,15334], + [28051,1714], + [31069,844], + [51113,3758], + [56001,7936], + [31123,1725], + [29013,4833], + [13057,70279], + [31077,715], + [18051,8449], + [51830,2353], + [28143,1017], + [48191,930], + [45071,9616], + [17001,18711], + [8073,1717], + [42005,18542], + [31025,7120], + [37045,26078], + [1097,98049], + [37051,52151], + [17085,5170], + [51065,6420], + [48115,2906], + [48039,67515], + [36017,10337], + [37177,960], + [48471,11623], + [26131,1823], + [12091,68789], + [12007,8136], + [6041,28384], + [20177,41476], + [23017,12863], + [19101,3324], + [17017,2617], + [39049,218486], + [27143,4492], + [36115,12533], + [20147,2105], + [47141,17101], + [13119,6069], + [19095,4188], + [33013,34010], + [51171,12005], + [47131,8873], + [20013,2985], + [16007,2377], + [34021,50223], + [55109,22837], + [55075,9726], + [56007,4331], + [18111,3301], + [34005,89626], + [18011,16622], + [49021,12518], + [48113,310000], + [22071,28130], + [27077,1278], + [17083,5329], + [45067,3996], + [47127,2010], + [1069,29254], + [8117,4883], + [18117,4536], + [37035,42993], + [45029,8525], + [19155,21237], + [38101,15061], + [6011,3733], + [21095,7165], + [1115,27649], + [6107,59765], + [48147,8092], + [55095,11282], + [55139,37946], + [39055,29096], + [20001,3552], + [8055,1580], + [18041,4917], + [20103,16791], + [53029,19426], + [20097,912], + [48043,1855], + [12093,7561], + [22039,9793], + [19005,2965], + [17031,487736], + [48265,16752], + [46129,1668], + [34007,73819], + [51700,28667], + [48373,13731], + [54081,17548], + [16037,1694], + [17051,5499], + [51041,86413], + [21055,2604], + [48341,4282], + [1019,7298], + [55127,25485], + [45085,18581], + [48303,66304], + [31185,4848], + [20017,976], + [21147,4078], + [53053,141673], + [40083,12556], + [37071,52507], + [47133,4497], + [53069,1105], + [36121,10998], + [37091,3089], + [21213,4437], + [29137,2533], + [28161,3628], + [13001,5085], + [12079,4544], + [29019,36849], + [21121,8150], + [27053,231054], + [38009,2059], + [38103,1468], + [19067,3051], + [13223,39192], + [16011,12230], + [46055,939], + [18053,14734], + [30085,1473], + [6077,91607], + [27161,5211], + [34041,27500], + [1041,4319], + [56041,5763], + [18155,1940], + [18097,134313], + [39125,5317], + [21085,6605], + [48345,522], + [49001,1902], + [55067,5081], + [12009,157589], + [8031,62567], + [13115,23132], + [28109,17881], + [27105,4368], + [26159,15534], + [40151,3043], + [22101,13183], + [53031,6330], + [48041,37465], + [26031,6920], + [16019,29334], + [41037,2638], + [5015,6083], + [20077,1999], + [13215,29568], + [39149,15924], + [41043,28071], + [47171,5011], + [45091,54500], + [18023,6919], + [24047,15607], + [13181,2731], + [13063,16506], + [53017,9098], + [39117,10067], + [13199,4982], + [13101,981], + [42071,126568], + [10003,74608], + [47057,5297], + [19163,36365], + [37083,8961], + [19063,2373], + [29047,54516], + [51005,3715], + [17021,7872], + [18061,10551], + [42087,10929], + [49049,122224], + [37175,9401], + [55115,9538], + [51145,10088], + [13019,4901], + [26141,3606], + [41003,15264], + [18091,17918], + [21193,6762], + [12075,11754], + [48263,342], + [28163,5290], + [5035,7650], + [13105,4868], + [27097,9735], + [55085,9630], + [46079,2993], + [54027,5222], + [45017,3695], + [34015,60315], + [18077,7053], + [47083,1608], + [40145,21441], + [21211,11451], + [22083,5751], + [31047,5460], + [54099,8947], + [22033,95390], + [30029,25559], + [31083,1329], + [48151,1083], + [24015,23855], + [51031,17444], + [40015,6413], + [27041,11241], + [25009,137129], + [51197,8207], + [34037,44184], + [31089,3746], + [53071,14182], + [26087,22831], + [18021,6267], + [13117,59166], + [13073,39322], + [13029,9112], + [27111,18077], + [40007,2199], + [1017,8067], + [5091,9913], + [5043,3860], + [38031,914], + [48459,11222], + [5033,14688], + [12077,2339], + [51760,18649], + [8003,2635], + [38019,1128], + [39047,7102], + [55089,32172], + [18093,11018], + [21105,1406], + [40137,14394], + [13177,9925], + [30031,22578], + [48077,4213], + [55121,4808], + [26147,38536], + [40031,20127], + [17139,3471], + [48023,1262], + [32027,1075], + [17195,10883], + [20149,6929], + [37109,23631], + [48255,2736], + [5075,3357], + [45043,15790], + [27001,4589], + [12059,7033], + [6019,131015], + [31079,12977], + [37031,23131], + [36097,4542], + [31113,327], + [17101,3403], + [5097,2365], + [12125,3940], + [38093,5499], + [29015,5759], + [48065,2548], + [37153,9424], + [48485,31731], + [27107,1204], + [54075,2011], + [16023,1056], + [54059,4587], + [35061,13136], + [20029,3121], + [19001,2060], + [36037,15705], + [28005,4245], + [27061,10309], + [50013,1490], + [18183,9124], + [19131,2469], + [17023,4409], + [29213,14736], + [34029,160677], + [50015,3515], + [24023,8903], + [37151,40998], + [29059,4895], + [5087,3972], + [22115,11946], + [16083,19032], + [42015,15057], + [29510,24662], + [18059,22008], + [48487,3283], + [42007,42895], + [18165,3010], + [27165,2526], + [51091,930], + [13277,9431], + [51790,5330], + [48445,2879], + [48455,4095], + [8105,2930], + [50027,9084], + [51175,4583], + [13319,2349], + [16047,3765], + [39137,13072], + [17003,1692], + [21131,3574], + [1035,3470], + [20041,6081], + [48503,5942], + [1013,5485], + [39017,105341], + [55029,7112], + [31139,2385], + [31011,2042], + [42119,9859], + [36023,9678], + [42077,63382], + [55129,4303], + [47017,7455], + [51179,29221], + [5029,4691], + [6037,956425], + [5109,2727], + [13031,14174], + [27103,7968], + [31043,3292], + [30015,1634], + [5149,3808], + [39147,13823], + [31097,1142], + [37079,4272], + [30003,1628], + [42039,20750], + [13179,5828], + [20157,1978], + [1081,32230], + [53051,3717], + [51660,6048], + [29025,2654], + [29033,2955], + [24043,34169], + [17095,9419], + [54005,3632], + [17029,10978], + [29149,2652], + [22047,7185], + [8039,9108], + [8089,4393], + [47009,35571], + [30079,503], + [21201,533], + [55023,2830], + [26069,6583], + [50003,6133], + [31065,1725], + [37029,3140], + [31067,5435], + [29021,19110], + [54093,2123], + [29105,10875], + [17037,18266], + [28065,2871], + [38047,726], + [31131,4033], + [48335,1815], + [54037,10600], + [22111,7619], + [12131,19561], + [38027,548], + [37037,14668], + [17187,3637], + [27171,37779], + [54103,3342], + [49031,635], + [36063,46348], + [48379,3146], + [26049,72451], + [19025,2741], + [8103,2437], + [46049,739], + [36119,147824], + [20145,1946], + [31121,2375], + [17127,4371], + [50025,5997], + [22119,11417], + [45013,37821], + [35049,15807], + [45069,2437], + [5011,2262], + [56019,3334], + [18039,39396], + [45035,29929], + [19081,3016], + [31041,4301], + [17073,11263], + [21097,4520], + [22075,6894], + [18001,8404], + [21157,9512], + [53019,1916], + [56035,3316], + [17179,33247], + [40077,2860], + [37047,12994], + [53023,968], + [55015,12722], + [5067,3118], + [48397,23300], + [17055,9404], + [40107,2643], + [22063,43269], + [21141,6925], + [48319,1544], + [54079,15162], + [5145,19467], + [48351,3446], + [40001,4638], + [12001,48513], + [37159,37451], + [23001,22671], + [20189,1815], + [39023,33634], + [6027,4523], + [51047,10711], + [26019,4687], + [49003,15228], + [40059,1342], + [48405,2342], + [51075,7643], + [30069,227], + [21223,2239], + [40047,17067], + [56027,1017], + [55073,30345], + [35043,25193], + [31103,409], + [1123,13116], + [32001,6832], + [54039,40952], + [51620,1576], + [22127,4632], + [37141,13618], + [36087,61752], + [26133,5973], + [18085,20488], + [22005,31239], + [13097,26812], + [41049,2509], + [29187,12660], + [29103,1212], + [20085,3811], + [40119,18435], + [28089,27203], + [13197,1772], + [17107,7429], + [20161,12111], + [48107,1221], + [46127,4310], + [42085,26565], + [13045,28661], + [13289,2087], + [55003,2634], + [56009,4922], + [1067,5585], + [27167,1786], + [51155,8857], + [47051,10539], + [16055,38387], + [17025,3926], + [18149,4473], + [40005,3511], + [45025,8325], + [48063,2798], + [16067,5087], + [12021,86379], + [26143,6727], + [6007,46706], + [29223,3784], + [47065,81702], + [19037,2557], + [42105,5109], + [22009,10236], + [26149,12886], + [29009,9758], + [47149,59892], + [40057,757], + [22121,6654], + [21217,7568], + [47005,3696], + [30097,1494], + [29045,1782], + [1117,69060], + [32005,14648], + [29207,9172], + [48075,1782], + [28071,10278], + [20205,2850], + [5003,5406], + [37013,13460], + [48203,17103], + [22003,6333], + [38095,536], + [17113,36767], + [21171,3537], + [27149,2710], + [16029,2656], + [18179,8504], + [18177,14558], + [36029,178815], + [8049,4128], + [46087,1646], + [19175,2781], + [22051,113191], + [32033,2440], + [48149,7582], + [30107,657], + [33001,16402], + [31169,1749], + [48381,41948], + [46115,1660], + [55001,3974], + [33015,81917], + [18017,8346], + [17169,1833], + [48111,1269], + [12045,4980], + [31007,348], + [21103,4081], + [13043,2286], + [22093,5432], + [49025,2212], + [1029,5216], + [13311,8467], + [51025,2877], + [29023,11805], + [40073,5372], + [48393,477], + [35047,2478], + [42009,16124], + [20151,2822], + [48219,5795], + [55141,16581], + [21135,3213], + [37163,14038], + [26033,8267], + [49039,6664], + [36007,40077], + [20131,3817], + [20047,995], + [41027,3265], + [27019,28156], + [45061,3074], + [45049,3439], + [18071,9726], + [28039,7700], + [42029,114421], + [21059,23692], + [48415,4414], + [54055,13246], + [22019,50449], + [18143,4445], + [47029,8945], + [45005,947], + [48349,10810], + [48479,13119], + [30051,594], + [19055,4113], + [31159,4647], + [29189,221705], + [48427,1492], + [51169,6980], + [40149,3724], + [28017,4395], + [55081,8666], + [44007,80748], + [4021,59421], + [42019,57074], + [46005,4054], + [6051,2354], + [51115,3456], + [17153,1593], + [29111,2594], + [29195,4962], + [51125,3647], + [27075,2636], + [1055,30595], + [28151,6347], + [23023,8721], + [16039,5665], + [37039,8643], + [37019,30753], + [56015,3942], + [25017,245766], + [38003,2826], + [51049,2418], + [21233,3037], + [48287,4312], + [19149,7765], + [51530,1282], + [49017,1710], + [46077,1435], + [36005,41683], + [13307,588], + [22109,28210], + [48007,6693], + [21173,5947], + [1047,6798], + [30095,2991], + [22053,9278], + [39039,10407], + [38001,788], + [56023,6485], + [26077,51554], + [40075,2537], + [38039,682], + [16087,3168], + [18031,6449], + [51680,17638], + [38087,297], + [24029,4905], + [24031,118608], + [38081,778], + [19083,4315], + [20105,1204], + [41029,49043], + [42021,31995], + [51139,6041], + [21167,6781], + [8025,976], + [21203,4757], + [48087,943], + [48451,27362], + [47001,19675], + [13259,783], + [21017,4820], + [29153,2918], + [5095,1754], + [48469,19878], + [19195,1612], + [55037,1512], + [50001,5667], + [47089,13092], + [45011,4769], + [54001,3685], + [47047,12173], + [48057,4106], + [30067,4376], + [37061,10834], + [48237,2528], + [39135,13562], + [35005,13651], + [34031,72552], + [47119,7135], + [30081,13002], + [21089,8849], + [5121,3615], + [20159,2780], + [47153,3610], + [39157,20454], + [21079,5118], + [5027,5861], + [28073,18497], + [16001,93328], + [55055,21096], + [39111,3066], + [28119,1334], + [26059,11221], + [18087,5702], + [21179,10139], + [26029,7306], + [21139,2890], + [47019,15852], + [45053,3365], + [39133,34822], + [19147,2294], + [29167,8956], + [38055,2767], + [26063,8434], + [19191,4273], + [8097,2484], + [28013,4467], + [48253,4203], + [17125,3141], + [13183,2119], + [51083,8600], + [17053,4079], + [21093,23896], + [51580,1020], + [20021,5886], + [48099,11550], + [36095,8071], + [4025,61192], + [48093,3813], + [35059,1227], + [5111,4903], + [38015,25443], + [49053,37311], + [13007,828], + [51595,897], + [5103,5427], + [48421,884], + [30007,756], + [20119,1540], + [40041,10277], + [35035,12806], + [24009,23095], + [27051,1646], + [19151,2138], + [1109,8004], + [8059,131627], + [4003,29026], + [48365,7582], + [31173,972], + [6005,10561], + [47125,30175], + [28011,4891], + [22031,6883], + [46019,2821], + [47097,4933], + [48301,67], + [13017,3417], + [32015,1466], + [12029,5194], + [28107,7620], + [4023,4518], + [40063,3134], + [20193,2837], + [48357,2851], + [55078,185], + [17197,122597], + [48461,898], + [12101,110104], + [12117,105070], + [21145,19043], + [13261,5717], + [22037,5432], + [47105,15815], + [48197,1199], + [22087,9643], + [49009,297], + [54085,2781], + [6087,25244], + [22029,5668], + [29165,24460], + [19123,6271], + [6003,252], + [19177,1986], + [13195,8226], + [22089,16457], + [19087,4822], + [28133,3245], + [51683,5975], + [48027,49242], + [51119,3545], + [13227,10004], + [1023,4223], + [41007,7192], + [39107,15100], + [50021,11584], + [37101,43622], + [21195,12655], + [16041,4246], + [17105,9191], + [42109,9900], + [28137,7678], + [37199,5045], + [47007,3166], + [13065,1678], + [40081,10470], + [1129,5654], + [48227,7029], + [48273,4540], + [30049,14966], + [17007,10403], + [44005,15717], + [28001,6566], + [13285,15391], + [48019,6935], + [53035,53297], + [53027,12104], + [9001,167736], + [51131,2713], + [20075,844], + [27127,4308], + [21231,4868], + [6013,136436], + [37145,10030], + [48143,10768], + [40011,3101], + [17151,1343], + [5021,3032], + [48117,3466], + [28149,11152], + [5081,3247], + [45065,5416], + [12031,210537], + [42111,21686], + [31117,240], + [55087,39677], + [46075,463], + [41011,15354], + [18099,10406], + [5093,6976], + [1031,14919], + [22123,4045], + [19009,1634], + [47037,102915], + [48001,11884], + [49057,45885], + [22081,2484], + [41045,7157], + [31175,1657], + [45075,12115], + [1125,45405], + [46021,591], + [13255,14885], + [18137,7794], + [20197,2395], + [20155,16112], + [13225,5173], + [13209,2521], + [55103,3298], + [19011,6447], + [40009,5772], + [9003,138984], + [38007,375], + [55013,4200], + [51730,1583], + [37057,45419], + [48053,12059], + [20135,1207], + [28075,19582], + [27125,983], + [13213,8180], + [48499,13658], + [27087,843], + [17089,83963], + [55043,9068], + [51550,52625], + [53075,8104], + [26123,11862], + [31179,2503], + [49033,831], + [29077,77683], + [54013,1366], + [47039,3101], + [42129,102294], + [12111,52512], + [40141,2195], + [13167,2426], + [36001,50586], + [18153,4343], + [37171,18730], + [46091,900], + [13251,3423], + [26003,2188], + [49035,176692], + [48331,5217], + [17047,2137], + [45087,7449], + [48495,1529], + [55021,12193], + [54107,22896], + [48367,36974], + [5119,70212], + [48395,3980], + [25023,112904], + [29127,7705], + [55091,1616], + [54071,2035], + [39011,16395], + [39013,15422], + [1027,4984], + [17147,4991], + [29099,50804], + [47159,4563], + [26007,7125], + [51019,24420], + [27005,8851], + [8115,857], + [13211,5987], + [12063,13717], + [6043,5298], + [47049,4789], + [19113,43626], + [51097,1763], + [47143,8042], + [48285,6293], + [38075,799], + [42047,6676], + [40117,4533], + [47059,17151], + [48201,571883], + [30089,3563], + [8065,1078], + [40029,1672], + [27133,2775], + [39095,73706], + [4015,44333], + [31091,355], + [25005,90531], + [13085,8242], + [5073,1685], + [17039,4348], + [28057,7663], + [18161,2061], + [19069,2501], + [6109,14988], + [55079,149445], + [18067,20248], + [48213,20857], + [39155,40164], + [18055,7691], + [48431,520], + [51167,6389], + [37125,27314], + [13139,44962], + [26093,55592], + [35053,3032], + [22007,5981], + [8041,160318], + [12127,113938], + [42051,26081], + [48193,2876], + [51193,3719], + [31005,217], + [39029,25585], + [45081,5191], + [48145,3328], + [5089,4524], + [22067,7258], + [51600,4691], + [26125,276956], + [48441,34317], + [30011,573], + [8063,2455], + [51650,20476], + [37161,18769], + [28145,9072], + [5105,2743], + [13145,10648], + [56031,3002], + [39019,7097], + [20061,4492], + [48033,316], + [48363,7264], + [22097,21650], + [55039,28164], + [48061,26671], + [26119,2841], + [32019,12154], + [8075,6002], + [20195,1225], + [29155,3954], + [51678,914], + [29185,2981], + [29163,4268], + [21011,2234], + [31105,1346], + [8071,3086], + [18035,20916], + [37179,54123], + [46097,577], + [42073,21851], + [29211,1607], + [18081,36487], + [20167,2509], + [51159,2092], + [37023,22102], + [54051,7759], + [21069,3432], + [1133,8103], + [41013,6371], + [37073,2547], + [30041,2787], + [31145,3735], + [21039,1699], + [31013,2932], + [22103,83078], + [53003,5451], + [46025,1065], + [29083,6095], + [5007,51124], + [54073,1772], + [17193,3987], + [41001,5650], + [47121,2797], + [47183,8855], + [28099,8209], + [13309,1408], + [12047,3179], + [8061,650], + [53013,1499], + [51079,4980], + [39173,29648], + [51085,37344], + [48329,36155], + [13037,862], + [39139,34034], + [13013,17625], + [24013,54503], + [21031,3696], + [47031,13250], + [31021,1907], + [34025,160433], + [18109,18129], + [5085,17242], + [38091,404], + [21051,5710], + [12103,210066], + [29115,3140], + [38023,630], + [40113,12160], + [48323,2316], + [41065,5103], + [6113,24592], + [21115,5948], + [48399,3118], + [26043,7049], + [29145,17637], + [28155,4072], + [48239,3723], + [49005,29127], + [17075,8695], + [13207,7933], + [55065,2984], + [13149,3133], + [18089,67742], + [48435,1189], + [8009,1572], + [37043,3707], + [48433,524], + [28025,4466], + [8083,6961], + [13243,1370], + [27063,2858], + [31115,302], + [48309,49044], + [28095,10184], + [45027,6758], + [46099,39251], + [48095,807], + [27071,2962], + [29061,2263], + [26101,5510], + [48083,3011], + [29085,2850], + [46085,894], + [39169,29342], + [36065,49256], + [46063,575], + [18029,14886], + [1051,25777], + [51105,5825], + [19007,3086], + [51149,8752], + [12105,128878], + [39073,6364], + [19127,8278], + [13237,5966], + [28045,13020], + [13135,158746], + [53021,12037], + [40091,4903], + [17005,3947], + [19137,2887], + [13163,3061], + [55135,12232], + [13175,12052], + [36123,5269], + [8125,3286], + [40053,1836], + [48103,1119], + [17121,8691], + [27135,4438], + [30099,1874], + [33003,13387], + [54053,5853], + [47113,6755], + [47103,9231], + [29087,1794], + [28063,551], + [17171,1455], + [47139,4267], + [46073,546], + [36105,13900], + [21043,5252], + [45003,42849], + [46013,8067], + [31075,318], + [49041,6394], + [29049,5709], + [23025,11867], + [12027,5632], + [53065,13132], + [27101,2320], + [45031,14544], + [5129,2726], + [51127,6385], + [12083,89628], + [28101,6579], + [21067,59884], + [21021,7701], + [51045,1695], + [48047,556], + [39105,6015], + [28021,748], + [35013,28068], + [17141,13144], + [51067,15414], + [48091,35233], + [4013,746448], + [30105,2121], + [37003,11790], + [26053,3330], + [28069,1935], + [24039,5037], + [13071,9185], + [12109,69222], + [12049,4763], + [36053,14434], + [54065,4428], + [6097,55127], + [53073,40205], + [50011,7853], + [55133,145152], + [19027,4922], + [47111,6746], + [48167,62258], + [35017,5406], + [38035,14520], + [8011,1077], + [20009,7802], + [39159,15744], + [54033,17824], + [1059,8048], + [42101,117221], + [41071,21390], + [30077,1683], + [27027,11978], + [5113,5473], + [29229,5784], + [48489,1456], + [17137,7591], + [4001,8551], + [49023,2683], + [42113,1841], + [37015,3376], + [5051,26825], + [40085,2589], + [20209,16506], + [48025,4471], + [30061,1053], + [16033,305], + [39069,8239], + [31009,266], + [8019,2300], + [54049,11501], + [34023,123695], + [25025,57194], + [19129,4183], + [17203,12191], + [46057,1661], + [18075,4401], + [39101,15454], + [36027,59628], + [8033,818], + [51021,2031], + [48029,246275], + [51117,7817], + [27141,26140], + [19197,3198], + [6035,7483], + [54095,2415], + [20015,18155], + [37053,7234], + [38017,32566], + [26153,2058], + [46065,5298], + [48119,1580], + [48049,12052], + [51143,18730], + [30055,2822], + [55137,5770], + [56021,24549], + [13305,7601], + [21137,6273], + [36033,6676], + [21191,3676], + [28093,6683], + [24003,129682], + [18181,5731], + [51163,5732], + [38033,642], + [26023,9534], + [27089,2285], + [13263,1301], + [29177,5593], + [51069,20149], + [30057,726], + [26129,5133], + [18049,5147], + [40089,7745], + [51735,5229], + [12003,8672], + [6089,49588], + [17133,9881], + [35011,676], + [47129,4717], + [54003,20841], + [5127,2791], + [31037,2018], + [29179,1782], + [17149,4457], + [47175,1294], + [13033,4344], + [20199,690], + [28147,4253], + [48321,7835], + [36093,29758], + [21219,3336], + [6091,1158], + [35028,5064], + [13275,10642], + [48157,103206], + [18173,16013], + [31001,8252], + [54019,7658], + [31061,1079], + [18141,48510], + [31033,3572], + [10005,47939], + [20057,5730], + [20139,4820], + [13295,17110], + [39035,199880], + [27043,4196], + [32009,303], + [29107,9442], + [48477,10176], + [48081,1252], + [27031,1240], + [29089,2708], + [29131,7797], + [29069,7044], + [21001,5512], + [31107,2728], + [23021,4785], + [25003,14876], + [12073,55705], + [48155,327], + [31129,1498], + [26039,3561], + [37025,45924], + [16021,3078], + [28031,5523], + [48299,7281], + [11001,17367], + [38073,998], + [46105,1102], + [18123,3202], + [41069,498], + [45047,16995], + [30091,987], + [30013,16857], + [19185,1565], + [19171,3820], + [13235,2553], + [40095,3730], + [53037,9471], + [48251,36685], + [53063,108314], + [39171,9880], + [48463,4590], + [48283,714], + [55063,23701], + [53015,19554], + [53033,259716], + [16065,11131], + [37169,14488], + [48217,9264], + [18103,8312], + [51520,4579], + [48425,2677], + [50023,9129], + [36085,86062], + [17067,5161], + [47053,13516], + [13047,18218], + [40023,3730], + [51147,4174], + [5083,5350], + [48371,2480], + [55057,5148], + [21071,7741], + [29093,2090], + [48249,4841], + [12057,236355], + [55033,9566], + [21129,1978], + [31015,839], + [5019,4608], + [12085,44143], + [31045,2376], + [28157,1560], + [19141,4894], + [54023,3166], + [37093,6293], + [51087,67381], + [5071,4922], + [36077,12026], + [37165,6005], + [13313,19230], + [20093,1159], + [18101,3122], + [28061,4135], + [27003,91357], + [47043,11677], + [39009,9742], + [16043,4700], + [22011,10718], + [30075,802], + [35006,3131], + [46027,2296], + [13245,26842], + [48137,673], + [29159,11018], + [51181,1663], + [15003,88164], + [39129,14228], + [29203,2075], + [27123,88942], + [53061,126722], + [21045,4679], + [12053,45021], + [22069,9054], + [47137,1786], + [18007,2183], + [13269,2021], + [8093,4896], + [37115,5192], + [23009,12686], + [50019,4482], + [19013,24662], + [26115,35858], + [27049,12775], + [54031,3376], + [8027,1672], + [48121,149935], + [53025,17153], + [17041,5005], + [16073,3024], + [31127,2134], + [48355,52391], + [19035,3372], + [42089,28293], + [20023,1148], + [20203,840], + [13121,130136], + [6017,50314], + [19045,9324], + [18019,25326], + [19125,9256], + [21197,2837], + [20087,5220], + [13127,20479], + [21109,4407], + [28055,364], + [31183,334], + [38067,1722], + [23013,8816], + [21215,5378], + [8045,11359], + [20081,1277], + [21003,5258], + [42107,33767], + [13153,33392], + [29029,14074], + [1025,7466], + [41005,83595], + [36025,10524], + [48207,1388], + [39103,48189], + [37185,3063], + [29067,4405], + [18157,29822], + [41041,8791], + [13315,2159], + [30059,624], + [20055,6926], + [36041,2141], + [17165,6099], + [31135,1092], + [5099,2062], + [16045,5585], + [53067,48366], + [42115,10633], + [37085,23579], + [20035,8492], + [37077,11447], + [26017,23795], + [34027,132331], + [26103,12906], + [31073,776], + [51173,7817], + [48327,712], + [19189,2730], + [13091,5543], + [18009,2690], + [54029,7518], + [37111,11534], + [50007,22237], + [32029,1247], + [18119,4415], + [48011,856], + [20169,14165], + [48127,874], + [46015,1407], + [20115,4159], + [17119,57177], + [45019,69822], + [19017,5741], + [13265,339], + [18151,7674], + [47055,6902], + [45051,64609], + [12023,18670], + [32510,11419], + [40037,20187], + [27137,38742], + [47145,15658], + [46137,312], + [18167,18121], + [48123,4888], + [31165,603], + [48221,17299], + [41047,59059], + [39167,17019], + [21113,13711], + [13169,7782], + [19059,5162], + [37055,9745], + [23011,27482], + [48243,749], + [25027,152101], + [48505,919], + [24041,10995], + [37131,3671], + [22079,36611], + [29209,11147], + [25011,9545], + [51685,1634], + [28123,6584], + [30103,314], + [20183,1719], + [26035,6793], + [31153,38816], + [55017,13492], + [39043,17432], + [19181,12144], + [16049,5895], + [22077,6702], + [19193,22219], + [6115,12007], + [6059,579064], + [13239,509], + [13131,5775], + [26011,3807], + [46047,2348], + [29171,1591], + [21239,7130], + [26165,8044], + [29201,11563], + [44001,9260], + [49043,6956], + [13165,1936], + [19033,9375], + [26091,22225], + [13171,4873], + [31163,950], + [12097,40086], + [53045,12600], + [38097,1845], + [24510,28681], + [54061,15775], + [17191,5390], + [47179,32341], + [13051,46829], + [36107,12536], + [30083,3184], + [50017,5047], + [17161,25364], + [12061,40176], + [8077,44578], + [31149,640], + [54067,4804], + [54089,2891], + [21053,3366], + [13055,5572], + [28159,5497], + [4011,1712], + [25013,71350], + [21099,4397], + [5047,4411], + [6101,18911], + [17065,2353], + [40111,8727], + [27119,7148], + [36035,11709], + [48135,26199], + [47155,24922], + [20153,1247], + [45023,6318], + [48139,38078], + [26107,9238], + [54105,1496], + [28135,2786], + [21073,11911], + [27047,6955], + [34019,39092], + [5131,28637], + [30033,598], + [42079,61127], + [42061,11745], + [13093,1991], + [48199,16603], + [19043,3651], + [12099,226037], + [46093,7515], + [20071,591], + [28139,6937], + [27115,6862], + [5005,12852], + [1113,8705], + [51157,2227], + [21187,2969], + [12041,5656], + [13089,65581], + [18047,7018], + [48457,5644], + [47117,12989], + [51029,3428], + [48453,136981], + [18163,37512], + [13187,8326], + [38005,733], + [20133,4473], + [46043,1293], + [47101,2951], + [29227,707], + [26045,25900], + [21123,4153], + [5107,3097], + [6039,23583], + [26109,4855], + [34039,78768], + [45045,116363], + [53057,24687], + [21027,5281], + [30019,694], + [19039,2118], + [37191,26952], + [8123,56526], + [18113,9673], + [21013,6681], + [4007,14095], + [31023,2557], + [30043,3538], + [47157,145458], + [45015,36205], + [26061,8101], + [18115,1713], + [28097,3071], + [21185,18997], + [1033,14739], + [1103,36014], + [50005,5472], + [13287,2096], + [48491,88323], + [42023,1323], + [1063,876], + [42091,165552], + [37087,14910], + [55071,19234], + [33009,17687], + [48013,5462], + [19117,2330], + [29113,12924], + [40139,5336], + [31057,783], + [29109,11263], + [51185,11201], + [48235,644], + [39003,29940], + [51810,100319], + [13147,6537], + [39079,8219], + [20123,2440], + [21221,4189], + [31087,1001], + [27083,6315], + [42083,9224], + [21065,3685], + [51199,19833], + [13077,37571], + [26155,16268], + [55101,45954], + [42033,18662], + [19159,1401], + [18135,5788], + [26139,83330], + [38049,1374], + [26161,53946], + [9011,48491], + [31167,1781], + [48133,5165], + [36021,13337], + [26135,2320], + [49013,4689], + [12011,237729], + [19111,7062], + [26083,756], + [1083,23598], + [48015,8786], + [31017,1208], + [53041,20278], + [46067,2285], + [5101,2588], + [42031,10737], + [40125,17753], + [26015,16431], + [27095,7049], + [19079,3913], + [29027,11389], + [46083,11803], + [35007,2805], + [8037,8179], + [40065,6719], + [48507,596], + [32013,3586], + [55083,8755], + [42025,12957], + [8099,3043], + [28121,48140], + [28131,5149], + [18037,9526], + [19157,4340], + [26027,11114], + [21061,3562], + [40153,6404], + [41057,5757], + [28019,2624], + [37137,3823], + [29003,5279], + [45033,5874], + [6073,541032], + [48161,5205], + [18159,4452], + [16051,8540], + [54011,18793], + [12065,3797], + [27117,2652], + [37027,22526], + [12067,2679], + [39121,3450], + [37197,12409], + [8121,1949], + [17081,9302], + [13297,27253], + [16079,2953], + [27017,6549], + [42041,63739], + [29125,2853], + [20107,3086], + [26051,6391], + [31125,1116], + [13219,12120], + [39053,8247], + [39045,41580], + [24035,15087], + [56005,13011], + [51177,28610], + [51023,11471], + [37155,17433], + [21199,19862], + [51043,3840], + [18125,3221], + [13079,3358], + [27059,11324], + [1001,17403], + [19085,3909], + [55047,5393], + [39113,128679], + [29197,1139], + [8021,1653], + [20005,3791], + [8119,8146], + [48383,795], + [48403,3749], + [24037,24705], + [27129,3956], + [17157,7538], + [21133,5367], + [55077,3654], + [26099,187663], + [30037,343], + [27109,36202], + [40035,3858], + [33017,25021], + [6047,28704], + [29011,4414], + [28067,20157], + [26075,35692], + [13279,6658], + [19003,1046], + [6029,134793], + [13083,4703], + [35039,4086], + [22099,14443], + [16009,2646], + [56003,4045], + [6067,213583], + [40003,2023], + [1091,5516], + [28059,35993], + [29121,4586], + [48413,970], + [38021,1525], + [40101,15289], + [36003,11013], + [1111,7175], + [19167,13490], + [31049,732], + [42069,39488], + [19119,4471], + [42093,4574], + [48449,6028], + [25021,136841], + [54035,7148], + [47035,17436], + [48347,14828], + [13299,8311], + [8087,6272], + [39081,17559], + [48375,20761], + [46123,1859], + [31171,331], + [54015,1755], + [47167,17165], + [47011,28333], + [39131,6162], + [48215,39668], + [36047,151872], + [6045,10721], + [21189,1279], + [22049,5190], + [27121,3069], + [48353,3485], + [13249,1252], + [5125,30981], + [46111,669], + [31071,800], + [29217,5334], + [6093,11520], + [27039,5468], + [38013,640], + [29175,6457], + [6023,21713], + [1095,25727], + [30009,3108], + [18005,17067], + [20191,6737], + [39175,6270], + [42049,50351], + [13059,15333], + [38065,682], + [51103,3647], + [20019,1418], + [40021,9186], + [48277,12952], + [20117,3157], + [31111,10817], + [24011,8015], + [17111,64845], + [17019,33871], + [40143,158363], + [31029,1477], + [48073,11695], + [46007,614], + [17033,5070], + [1053,9375], + [18133,8086], + [39077,12884], + [26081,148336], + [37089,30930], + [53011,84212], + [42055,41906], + [1037,3248], + [54069,10694], + [32011,564], + [51800,17165], + [32017,1498], + [1071,14083], + [53059,2524], + [48069,1562], + [51007,3970], + [37195,17375], + [37149,5990], + [6055,19484], + [13069,8872], + [38061,1406], + [19031,4289], + [27163,64334], + [49045,10998], + [30047,6498], + [55061,4711], + [17143,34579], + [17115,24948], + [29215,7215], + [46051,1951], + [17103,8258], + [20063,1136] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-other.json b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-other.json new file mode 100644 index 0000000..a8c538d --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes-other.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2008 Presidential Election | Other Votes", + "description" : "Votes cast for 3rd party candidates in the 2008 presidential election.", + "units" : "votes", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "GitHub user @wboykinm" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2008.votes.other"], + [26041,327], + [48295,8], + [1127,510], + [48389,26], + [56017,93], + [20043,77], + [37183,4353], + [37147,456], + [48497,195], + [21207,127], + [5053,208], + [31147,113], + [47123,240], + [36059,4657], + [1011,13], + [42057,88], + [20031,57], + [31151,143], + [31035,76], + [28033,474], + [22061,207], + [40129,0], + [22057,1142], + [40135,0], + [51153,1390], + [23031,1973], + [23015,411], + [47025,167], + [29063,102], + [42045,2861], + [12119,347], + [36055,4791], + [18045,158], + [39063,691], + [34009,654], + [28047,527], + [5141,276], + [48343,35], + [30073,74], + [47181,96], + [48153,7], + [46119,19], + [19097,180], + [28087,262], + [17155,59], + [45073,487], + [36101,560], + [37143,51], + [28035,266], + [31027,72], + [13141,14], + [39091,433], + [39059,503], + [48297,33], + [47151,132], + [30027,191], + [35021,8], + [23027,460], + [49007,218], + [20053,66], + [27113,180], + [27159,159], + [18131,110], + [38041,49], + [28003,247], + [19143,63], + [50009,84], + [1015,560], + [13253,21], + [6105,201], + [17181,195], + [31055,3600], + [51670,90], + [20095,98], + [21209,236], + [48467,156], + [31177,184], + [29199,56], + [47027,70], + [55111,447], + [48045,8], + [45007,965], + [48125,8], + [19173,72], + [37193,502], + [27081,118], + [48369,25], + [1005,67], + [42125,1173], + [51035,283], + [47033,76], + [39021,361], + [36049,183], + [29143,129], + [51135,76], + [26089,171], + [48275,15], + [51073,217], + [35051,116], + [6069,363], + [41051,9843], + [51610,85], + [48195,15], + [13025,78], + [27079,379], + [36061,5562], + [18073,162], + [21183,192], + [21081,132], + [5025,143], + [27055,234], + [37129,976], + [26013,73], + [48189,64], + [20171,35], + [48211,9], + [15007,563], + [54047,118], + [22043,177], + [39143,582], + [48465,86], + [48279,25], + [37041,51], + [38085,18], + [39115,202], + [1057,80], + [22017,896], + [13191,42], + [51109,193], + [46121,49], + [31085,7], + [55113,121], + [6083,3713], + [51820,139], + [28049,552], + [44003,1492], + [21229,80], + [37065,82], + [27029,93], + [17061,135], + [21029,447], + [51071,141], + [20083,20], + [20045,1071], + [40097,0], + [22105,730], + [36013,1094], + [25007,198], + [20127,59], + [48141,1429], + [30025,50], + [55019,350], + [19165,102], + [13103,150], + [55011,128], + [31051,63], + [41023,118], + [24033,2797], + [29219,196], + [36051,464], + [48391,24], + [22013,65], + [22023,91], + [17045,114], + [21047,199], + [13193,18], + [1003,756], + [38105,161], + [19105,153], + [22095,320], + [32031,2624], + [20187,11], + [18139,129], + [29037,640], + [38057,132], + [55035,905], + [29079,154], + [47077,144], + [35029,159], + [47173,103], + [48005,205], + [46061,44], + [48271,11], + [39031,499], + [40043,0], + [6065,12241], + [30109,36], + [48325,110], + [9005,1752], + [20039,16], + [13015,455], + [8051,183], + [30045,38], + [17099,870], + [40103,0], + [53001,84], + [19109,143], + [51001,183], + [19075,93], + [23005,2747], + [37099,246], + [39119,792], + [17177,347], + [8053,15], + [40093,0], + [48171,199], + [6061,3348], + [27153,343], + [39041,985], + [16071,57], + [21035,248], + [12013,78], + [36009,540], + [18069,194], + [39099,2540], + [48059,64], + [47165,792], + [46109,83], + [17185,66], + [20121,253], + [27147,572], + [51063,138], + [16027,1347], + [45041,500], + [29073,109], + [16013,185], + [31141,251], + [42027,821], + [13123,127], + [12039,117], + [48175,28], + [5143,1396], + [41019,1720], + [19179,448], + [29151,110], + [28009,82], + [48179,56], + [13009,127], + [13023,34], + [47071,164], + [32023,505], + [39057,1113], + [47081,151], + [48473,90], + [55117,911], + [8015,186], + [21161,128], + [41039,5038], + [13003,25], + [9013,1182], + [40045,0], + [13053,1], + [22085,181], + [55099,174], + [20175,52], + [28141,208], + [18083,216], + [37011,84], + [22015,419], + [39085,2038], + [5069,569], + [30035,96], + [31143,53], + [55093,492], + [51057,51], + [48051,65], + [13221,71], + [5031,793], + [21041,87], + [13273,25], + [42011,2440], + [18013,141], + [38077,150], + [42017,3645], + [16015,100], + [36111,1529], + [29095,3755], + [49055,39], + [20165,52], + [41061,400], + [29186,114], + [30101,67], + [37157,458], + [5137,192], + [39123,402], + [29081,116], + [27173,174], + [5041,110], + [27023,169], + [47095,39], + [22025,80], + [48021,414], + [39161,306], + [12123,106], + [13133,48], + [56013,493], + [36113,535], + [19049,537], + [8111,14], + [53007,572], + [51093,166], + [18105,647], + [51077,200], + [48429,31], + [8007,151], + [8001,3080], + [26001,120], + [37119,3011], + [21165,58], + [54083,232], + [48411,29], + [54077,264], + [1039,103], + [15001,1231], + [5061,143], + [35023,22], + [26151,443], + [46031,34], + [42121,351], + [39163,162], + [13241,111], + [48337,108], + [13281,56], + [19021,120], + [29169,199], + [5057,207], + [27067,451], + [39027,338], + [41031,234], + [38089,244], + [54017,65], + [21127,110], + [26047,320], + [53009,850], + [45021,246], + [27145,1872], + [51570,126], + [28023,47], + [24017,759], + [5117,110], + [48031,54], + [21169,115], + [36091,1887], + [17015,113], + [42065,298], + [28015,26], + [12019,677], + [12115,1770], + [12071,1967], + [29205,36], + [51099,113], + [5023,425], + [27011,76], + [5079,183], + [21225,110], + [37033,109], + [42035,190], + [31031,100], + [6021,235], + [56033,346], + [31003,45], + [20109,28], + [21227,483], + [16059,106], + [29141,133], + [47091,133], + [13081,41], + [16031,201], + [38083,19], + [17087,118], + [9007,1351], + [12069,1176], + [35037,82], + [48129,25], + [5059,458], + [1105,23], + [47187,902], + [32021,60], + [47073,354], + [18175,224], + [51013,1283], + [37103,32], + [8081,154], + [51121,594], + [48483,13], + [20033,15], + [47109,347], + [26071,135], + [46011,307], + [18171,77], + [21057,44], + [29031,379], + [38043,54], + [4012,114], + [37007,70], + [48205,24], + [12095,2870], + [21091,81], + [41035,916], + [54057,181], + [22113,498], + [26113,125], + [5037,157], + [9015,961], + [29075,93], + [28091,75], + [33011,1801], + [19145,105], + [37135,838], + [47067,49], + [20011,147], + [8085,459], + [18107,212], + [13011,94], + [35025,190], + [54041,159], + [29065,157], + [28115,159], + [48071,116], + [37059,209], + [35001,3701], + [12035,354], + [29123,89], + [35041,106], + [48231,357], + [18095,785], + [48361,251], + [30039,101], + [48035,87], + [21111,3500], + [6001,12368], + [40105,0], + [48169,19], + [20185,37], + [26025,1082], + [19051,106], + [29157,115], + [47177,323], + [42003,5936], + [36073,262], + [4027,479], + [28111,64], + [9009,4647], + [35045,614], + [42127,241], + [21177,221], + [49037,86], + [26037,650], + [51590,177], + [20067,31], + [12087,432], + [29035,74], + [5001,174], + [40069,0], + [37107,118], + [48209,983], + [4005,725], + [20143,59], + [48437,39], + [41063,137], + [19091,67], + [22091,95], + [48185,56], + [40051,0], + [31095,74], + [39127,422], + [48233,78], + [13099,21], + [16057,531], + [56045,117], + [46053,53], + [49029,161], + [22021,79], + [46017,9], + [19133,90], + [16017,562], + [42095,1781], + [51690,70], + [40131,0], + [55119,197], + [17145,208], + [27021,371], + [48417,13], + [48339,1260], + [6099,3239], + [47013,226], + [27085,531], + [30017,138], + [48165,32], + [35057,119], + [33007,169], + [47135,75], + [6111,6346], + [40099,0], + [20201,73], + [48245,503], + [18057,959], + [19041,118], + [47015,124], + [1049,400], + [42067,159], + [26105,259], + [34003,3248], + [48017,16], + [17013,55], + [40061,0], + [27015,355], + [45057,341], + [21149,73], + [22107,27], + [28113,128], + [25019,116], + [13321,48], + [26097,101], + [51089,339], + [1009,356], + [13303,40], + [4019,4768], + [38025,37], + [21019,354], + [8069,2910], + [51037,80], + [29117,124], + [48315,41], + [51101,78], + [28077,53], + [45077,885], + [21025,154], + [51540,261], + [17189,117], + [29135,114], + [24001,644], + [27025,733], + [29181,161], + [48419,42], + [17183,572], + [48067,77], + [26067,598], + [26085,104], + [17071,58], + [39033,569], + [21101,289], + [13283,16], + [22035,38], + [49011,3084], + [13271,26], + [51195,229], + [48037,209], + [48241,96], + [47075,63], + [1045,164], + [40123,0], + [22027,66], + [29041,76], + [45055,293], + [51015,393], + [6085,13309], + [29055,167], + [39007,898], + [13173,24], + [13161,55], + [18033,194], + [42081,576], + [48225,96], + [38059,316], + [42063,510], + [39165,1127], + [31137,63], + [42043,1316], + [20091,3714], + [25001,2312], + [19073,84], + [6025,650], + [19065,146], + [37001,576], + [18065,364], + [26079,192], + [16077,61], + [46029,216], + [46117,26], + [40115,0], + [39097,316], + [45083,1654], + [8091,57], + [37081,1952], + [16075,210], + [17011,313], + [5049,155], + [30063,1801], + [1065,32], + [48105,7], + [13125,16], + [1099,52], + [30001,138], + [17163,1626], + [29147,158], + [5135,281], + [54009,177], + [21117,1019], + [48257,249], + [16085,119], + [26021,1155], + [36089,664], + [37189,470], + [36117,622], + [8023,37], + [17049,250], + [51059,4901], + [39001,304], + [17135,230], + [36031,292], + [12037,77], + [39109,1018], + [53039,255], + [41009,965], + [1101,546], + [29039,100], + [17097,3318], + [5017,46], + [13107,64], + [27093,428], + [17043,5649], + [26121,1305], + [36109,799], + [21083,256], + [48317,12], + [6053,2533], + [13247,259], + [13109,19], + [29097,628], + [40039,0], + [22001,454], + [42123,295], + [54091,136], + [48493,100], + [55051,54], + [37113,301], + [5115,509], + [1131,14], + [13137,142], + [8095,26], + [42013,581], + [5045,862], + [5139,312], + [20003,89], + [30005,83], + [31093,66], + [55059,1344], + [48291,187], + [45037,111], + [38053,42], + [34035,1672], + [32007,377], + [55045,302], + [12051,101], + [36069,746], + [20007,31], + [35015,242], + [16061,50], + [24045,567], + [48187,436], + [51720,25], + [46003,46], + [8067,419], + [51710,813], + [16035,126], + [36045,500], + [33005,425], + [48481,50], + [26065,2252], + [19099,377], + [6033,753], + [22125,55], + [38051,37], + [55041,47], + [53055,199], + [27007,455], + [51053,120], + [38063,45], + [20065,38], + [36043,471], + [13113,507], + [23007,438], + [38037,462], + [40017,0], + [13061,3], + [51770,444], + [13201,21], + [48163,13], + [17175,37], + [48269,4], + [30111,1895], + [31119,248], + [44009,2667], + [31133,42], + [46037,48], + [17093,509], + [19029,133], + [4017,460], + [16005,957], + [47099,293], + [8101,1073], + [8043,407], + [12043,39], + [13095,164], + [13155,26], + [31063,21], + [36039,426], + [22055,1442], + [39065,352], + [56043,91], + [55107,164], + [27045,320], + [29051,401], + [13087,60], + [17057,340], + [22045,549], + [46023,62], + [46069,12], + [13291,135], + [17117,392], + [21063,78], + [35055,204], + [46039,76], + [19023,102], + [37173,92], + [48307,19], + [40079,0], + [28043,58], + [48223,90], + [21049,215], + [42131,170], + [20111,289], + [47069,93], + [54043,169], + [13151,587], + [20101,20], + [48173,3], + [6081,5409], + [38011,55], + [51027,130], + [56011,104], + [17201,2111], + [51630,109], + [48289,57], + [55123,245], + [17129,86], + [48333,26], + [21005,205], + [37121,109], + [19183,209], + [31059,72], + [16025,9], + [17199,513], + [45039,116], + [1079,239], + [12055,427], + [19077,148], + [31157,277], + [29221,197], + [53077,1324], + [29119,182], + [21077,75], + [48501,19], + [42103,273], + [29057,64], + [48401,93], + [20141,37], + [19187,300], + [42075,673], + [20099,191], + [48079,15], + [24025,2992], + [12015,922], + [13027,25], + [29071,682], + [41055,28], + [6057,1367], + [47041,148], + [26111,743], + [34013,1814], + [21159,60], + [19093,57], + [39093,2515], + [45009,79], + [47147,393], + [47169,76], + [29183,1796], + [54021,72], + [37095,16], + [47107,155], + [21163,172], + [20079,289], + [55049,153], + [36103,6209], + [51740,354], + [46045,44], + [16081,93], + [13233,211], + [39153,3455], + [53043,142], + [51840,133], + [53005,1278], + [13129,226], + [27151,153], + [19089,65], + [19139,270], + [49047,248], + [18121,131], + [4009,144], + [21037,629], + [8005,4064], + [37187,36], + [55097,795], + [29007,180], + [27033,120], + [51107,1278], + [51137,188], + [31101,52], + [8047,94], + [21153,112], + [39071,423], + [55025,3890], + [51111,47], + [53049,288], + [27009,547], + [42099,291], + [5013,64], + [20137,40], + [40147,0], + [23019,1358], + [39005,710], + [27073,120], + [8107,204], + [29139,81], + [54087,109], + [5055,493], + [27013,963], + [40019,0], + [20073,38], + [17059,60], + [42059,258], + [28007,61], + [51183,36], + [55131,963], + [27099,507], + [1119,25], + [1085,20], + [48109,10], + [17063,421], + [47023,75], + [46071,30], + [24005,8073], + [48439,5253], + [38071,87], + [20113,230], + [20089,40], + [41067,5903], + [40049,0], + [13189,51], + [47021,228], + [36067,3950], + [8014,528], + [18025,65], + [28041,62], + [39089,1506], + [19019,149], + [37181,99], + [22065,48], + [13185,212], + [8013,2700], + [20163,52], + [37021,1585], + [48177,44], + [12081,1239], + [46081,336], + [21181,64], + [38029,61], + [20125,260], + [27035,739], + [36071,1614], + [36081,4224], + [31181,32], + [20173,3530], + [13301,19], + [55007,131], + [36079,486], + [28153,62], + [27091,288], + [51036,27], + [55069,325], + [48097,110], + [23029,331], + [47163,835], + [19061,691], + [21155,177], + [51191,360], + [35009,169], + [6049,126], + [51033,139], + [51141,161], + [19161,92], + [17131,128], + [55005,351], + [26127,244], + [16063,93], + [29053,128], + [53047,459], + [1107,39], + [41017,1899], + [46035,170], + [41033,1664], + [17035,110], + [40067,0], + [17123,107], + [35031,253], + [28127,152], + [31039,81], + [51640,33], + [46095,25], + [19121,168], + [18015,142], + [51165,413], + [47085,162], + [12113,743], + [46089,19], + [18043,307], + [51009,136], + [12017,992], + [30093,471], + [16003,75], + [31099,50], + [39037,539], + [24021,2003], + [51510,710], + [48101,9], + [27037,4330], + [46059,46], + [47063,354], + [40013,0], + [13075,46], + [54097,134], + [54045,265], + [48385,15], + [51003,616], + [51011,86], + [47079,210], + [21033,121], + [48131,35], + [19103,1216], + [29043,432], + [21237,67], + [49051,209], + [38045,63], + [29001,245], + [40127,0], + [29017,122], + [1121,313], + [28085,116], + [18145,254], + [31019,329], + [30023,170], + [26005,1053], + [6079,3422], + [47185,172], + [48281,80], + [26117,552], + [39087,517], + [5063,356], + [46033,123], + [12121,212], + [37133,426], + [54025,278], + [48261,0], + [1089,1817], + [22059,91], + [13205,47], + [5133,164], + [55125,204], + [48159,63], + [41059,785], + [51051,151], + [8057,12], + [31155,257], + [8079,19], + [47161,81], + [32003,9647], + [36057,384], + [29129,60], + [38079,86], + [34017,1812], + [41021,32], + [37075,82], + [16053,156], + [13005,32], + [37063,1088], + [28105,146], + [17027,300], + [51161,592], + [38099,142], + [20207,32], + [40071,0], + [34033,503], + [28029,91], + [48423,648], + [39151,3812], + [19153,3734], + [21007,96], + [28027,54], + [28079,60], + [41053,957], + [22117,287], + [26145,1589], + [48313,37], + [28129,72], + [18063,679], + [29225,240], + [6095,2843], + [37005,118], + [47061,98], + [46113,48], + [31081,78], + [25015,2083], + [13143,191], + [40055,0], + [37049,345], + [36099,281], + [45001,144], + [42037,356], + [56029,389], + [26137,230], + [15009,908], + [13049,22], + [21175,104], + [35027,160], + [30071,62], + [35003,50], + [13217,271], + [26009,267], + [37067,1374], + [12033,1464], + [5147,143], + [28081,245], + [10001,706], + [48359,5], + [46125,133], + [37117,45], + [18129,139], + [26095,59], + [6015,241], + [27169,652], + [8017,23], + [29161,338], + [30053,498], + [1093,219], + [13293,69], + [42053,40], + [16069,343], + [55105,1276], + [27057,208], + [46101,83], + [47093,2856], + [21151,451], + [48267,14], + [17159,140], + [6075,8353], + [26157,555], + [48407,86], + [39061,4343], + [30087,123], + [54101,114], + [13157,234], + [13317,32], + [20025,17], + [37139,130], + [37097,696], + [21119,138], + [49015,117], + [48293,57], + [40109,0], + [48181,441], + [48183,241], + [48055,138], + [12086,3104], + [54109,174], + [22073,690], + [51187,250], + [45089,160], + [30021,200], + [31109,2358], + [6031,651], + [20179,14], + [39067,232], + [55027,625], + [33019,196], + [13111,166], + [48447,1], + [17009,39], + [48009,30], + [39145,651], + [26073,451], + [26057,311], + [48085,2639], + [18027,118], + [35019,19], + [21087,90], + [47115,421], + [1075,42], + [1073,2482], + [13231,81], + [12107,298], + [35033,23], + [37017,95], + [5009,464], + [56039,279], + [1021,151], + [20181,57], + [48387,52], + [48311,5], + [46135,257], + [1007,83], + [49027,328], + [21205,173], + [21125,222], + [28125,15], + [17167,1583], + [21235,205], + [13035,79], + [27065,277], + [19053,96], + [8035,1751], + [8109,64], + [17069,33], + [40133,0], + [48377,16], + [34011,786], + [40121,0], + [24027,2720], + [46009,96], + [12089,283], + [40027,0], + [51017,40], + [26163,10659], + [38069,46], + [20129,20], + [29091,311], + [28083,62], + [48475,36], + [19135,75], + [6103,648], + [5039,90], + [48089,50], + [18003,1268], + [1043,545], + [18127,881], + [37127,291], + [51081,36], + [39015,418], + [18169,177], + [29005,40], + [21009,240], + [39025,1310], + [45063,1249], + [48259,176], + [56037,581], + [27069,60], + [47003,263], + [26055,759], + [31053,304], + [17079,104], + [21075,57], + [12129,188], + [12133,90], + [40087,0], + [13067,3271], + [19071,57], + [24019,194], + [51095,339], + [30065,89], + [19057,387], + [27157,312], + [39051,384], + [51133,53], + [28037,43], + [47189,678], + [47045,180], + [37105,229], + [37123,129], + [22041,119], + [48229,10], + [36083,1393], + [1087,31], + [19107,131], + [20051,230], + [13039,100], + [55031,401], + [20037,383], + [21143,58], + [13257,123], + [48003,23], + [13267,52], + [51061,376], + [40033,0], + [13229,38], + [42133,2103], + [46107,21], + [48247,7], + [18147,141], + [1077,707], + [42097,592], + [19169,1032], + [45079,1440], + [48443,10], + [36011,651], + [39083,577], + [13159,53], + [13021,344], + [37009,281], + [47087,92], + [56025,886], + [19047,131], + [39141,626], + [46103,875], + [42001,509], + [54063,164], + [6071,13206], + [31161,67], + [36075,1001], + [20069,40], + [48409,138], + [37167,299], + [17173,227], + [42117,268], + [41015,456], + [8029,283], + [51750,81], + [28053,30], + [20059,227], + [41025,138], + [29133,75], + [28117,221], + [23003,751], + [17077,597], + [27155,59], + [49019,139], + [40025,0], + [29173,56], + [19015,280], + [34001,1310], + [46041,32], + [27139,1200], + [29101,417], + [17109,204], + [20049,29], + [55053,127], + [39075,252], + [37069,281], + [5123,102], + [48305,16], + [21107,328], + [27131,695], + [5077,46], + [1061,106], + [6009,658], + [18079,266], + [21023,92], + [5065,233], + [20027,47], + [54007,75], + [12005,791], + [21015,670], + [55009,1631], + [6063,278], + [8113,68], + [36015,443], + [19115,83], + [51775,154], + [28103,34], + [36019,542], + [17091,739], + [45059,370], + [28051,64], + [31069,11], + [51113,79], + [56001,537], + [31123,69], + [29013,179], + [13057,1143], + [31077,26], + [18051,191], + [51830,106], + [28143,36], + [48191,10], + [45071,200], + [17001,318], + [8073,41], + [42005,401], + [31025,249], + [37045,394], + [1097,1194], + [37051,731], + [17085,177], + [51065,130], + [48115,38], + [48039,945], + [36017,410], + [37177,17], + [48471,189], + [26131,96], + [12091,868], + [12007,110], + [6041,2493], + [20177,1466], + [23017,847], + [19101,237], + [17017,101], + [39049,7130], + [27143,239], + [36115,456], + [20147,37], + [47141,476], + [13119,90], + [19095,156], + [33013,631], + [51171,306], + [47131,211], + [20013,74], + [16007,64], + [34021,1890], + [55109,807], + [55075,334], + [56007,187], + [18111,119], + [34005,2329], + [18011,273], + [49021,674], + [48113,5474], + [22071,2207], + [27077,64], + [17083,212], + [45067,86], + [47127,61], + [1069,256], + [8117,214], + [18117,160], + [37035,802], + [45029,180], + [19155,647], + [38101,416], + [6011,127], + [21095,163], + [1115,348], + [6107,1807], + [48147,138], + [55095,485], + [55139,1564], + [39055,756], + [20001,118], + [8055,74], + [18041,156], + [20103,541], + [53029,675], + [20097,23], + [48043,75], + [12093,117], + [22039,330], + [19005,123], + [17031,20706], + [48265,234], + [46129,59], + [34007,2626], + [51700,656], + [48373,188], + [54081,472], + [16037,47], + [17051,214], + [51041,1365], + [21055,72], + [48341,32], + [1019,141], + [55127,760], + [45085,346], + [48303,744], + [31185,113], + [20017,25], + [21147,71], + [53053,6023], + [40083,0], + [37071,511], + [47133,176], + [53069,68], + [36121,290], + [37091,48], + [21213,97], + [29137,78], + [28161,47], + [13001,65], + [12079,93], + [29019,1340], + [21121,165], + [27053,11768], + [38009,70], + [38103,68], + [19067,218], + [13223,564], + [16011,501], + [46055,27], + [18053,272], + [30085,113], + [6077,3768], + [27161,276], + [34041,811], + [1041,34], + [56041,303], + [18155,62], + [18097,3062], + [39125,287], + [21085,144], + [48345,5], + [49001,65], + [55067,139], + [12009,2650], + [8031,4084], + [13115,390], + [28109,242], + [27105,201], + [26159,644], + [40151,0], + [22101,375], + [53031,409], + [48041,706], + [26031,261], + [16019,952], + [41037,93], + [5015,324], + [20077,61], + [13215,339], + [39149,427], + [41043,1748], + [47171,105], + [45091,1278], + [18023,166], + [24047,365], + [13181,35], + [13063,405], + [53017,263], + [39117,399], + [13199,57], + [13101,5], + [42071,1983], + [10003,3041], + [47057,140], + [19163,1079], + [37083,83], + [19063,72], + [29047,1329], + [51005,101], + [17021,310], + [18061,252], + [42087,198], + [49049,5488], + [37175,233], + [55115,292], + [51145,131], + [13019,77], + [26141,177], + [41003,1313], + [18091,743], + [21193,169], + [12075,260], + [48263,7], + [28163,71], + [5035,275], + [13105,83], + [27097,461], + [55085,390], + [46079,131], + [54027,141], + [45017,73], + [34015,1848], + [18077,182], + [47083,68], + [40145,0], + [21211,218], + [22083,119], + [31047,127], + [54099,342], + [22033,2307], + [30029,2017], + [31083,35], + [48151,14], + [24015,974], + [51031,279], + [40015,0], + [27041,421], + [25009,7357], + [51197,177], + [34037,1130], + [31089,139], + [53071,464], + [26087,1074], + [18021,174], + [13117,804], + [13073,326], + [13029,97], + [27111,754], + [40007,0], + [1017,90], + [5091,281], + [5043,152], + [38031,50], + [48459,152], + [5033,606], + [12077,44], + [51760,813], + [8003,130], + [38019,72], + [39047,191], + [55089,614], + [18093,308], + [21105,32], + [40137,0], + [13177,62], + [30031,1372], + [48077,41], + [55121,185], + [26147,1687], + [40031,0], + [17139,121], + [48023,15], + [32027,53], + [17195,416], + [20149,309], + [37109,454], + [48255,31], + [5075,335], + [45043,301], + [27001,226], + [12059,110], + [6019,4568], + [31079,439], + [37031,336], + [36097,125], + [31113,8], + [17101,117], + [5097,165], + [12125,53], + [38093,229], + [29015,179], + [48065,26], + [37153,190], + [48485,383], + [27107,101], + [54075,82], + [16023,36], + [54059,169], + [35061,397], + [20029,97], + [19001,69], + [36037,406], + [28005,57], + [27061,626], + [50013,85], + [18183,202], + [19131,118], + [17023,137], + [29213,245], + [34029,3432], + [50015,239], + [24023,233], + [37151,735], + [29059,132], + [5087,212], + [22115,289], + [16083,691], + [42015,424], + [29510,1271], + [18059,371], + [48487,30], + [42007,1094], + [18165,122], + [27165,170], + [51091,34], + [13277,77], + [51790,116], + [48445,22], + [48455,57], + [8105,66], + [50027,637], + [51175,82], + [13319,26], + [16047,137], + [39137,327], + [17003,56], + [21131,57], + [1035,44], + [20041,164], + [48503,60], + [1013,36], + [39017,2406], + [55029,227], + [31139,58], + [31011,52], + [42119,208], + [36023,381], + [42077,2002], + [55129,116], + [47017,211], + [51179,518], + [5029,298], + [6037,65970], + [5109,150], + [13031,160], + [27103,390], + [31043,110], + [30015,105], + [5149,225], + [39147,539], + [31097,54], + [37079,35], + [30003,74], + [42039,604], + [13179,74], + [20157,53], + [1081,597], + [53051,273], + [51660,183], + [29025,96], + [29033,48], + [24043,1186], + [17095,378], + [54005,205], + [17029,382], + [29149,128], + [22047,213], + [8039,279], + [8089,125], + [47009,821], + [30079,21], + [21201,31], + [55023,164], + [26069,295], + [50003,472], + [31065,47], + [37029,84], + [31067,252], + [29021,766], + [54093,96], + [29105,230], + [17037,768], + [28065,45], + [38047,32], + [31131,144], + [48335,30], + [54037,253], + [22111,146], + [12131,311], + [38027,34], + [37037,350], + [17187,106], + [27171,1456], + [54103,168], + [49031,22], + [36063,1621], + [48379,42], + [26049,3518], + [19025,113], + [8103,55], + [46049,27], + [36119,3410], + [20145,39], + [31121,70], + [17127,122], + [50025,499], + [22119,243], + [45013,653], + [35049,849], + [45069,40], + [5011,99], + [56019,112], + [18039,664], + [45035,670], + [19081,109], + [31041,85], + [17073,341], + [21097,154], + [22075,175], + [18001,181], + [21157,292], + [53019,118], + [56035,104], + [17179,1223], + [40077,0], + [37047,212], + [53023,20], + [55015,457], + [5067,257], + [48397,274], + [17055,357], + [40107,0], + [22063,942], + [21141,154], + [48319,31], + [54079,282], + [5145,756], + [48351,63], + [40001,0], + [12001,1441], + [37159,718], + [23001,1162], + [20189,29], + [39023,1178], + [6027,267], + [51047,228], + [26019,171], + [49003,519], + [40059,0], + [48405,45], + [51075,106], + [30069,5], + [21223,89], + [40047,0], + [56027,32], + [55073,1228], + [35043,768], + [31103,9], + [1123,132], + [32001,168], + [54039,934], + [51620,32], + [22127,93], + [37141,224], + [36087,898], + [26133,198], + [18085,410], + [22005,707], + [13097,446], + [41049,139], + [29187,350], + [29103,53], + [20085,134], + [40119,0], + [28089,235], + [13197,31], + [17107,217], + [20161,391], + [48107,9], + [46127,147], + [42085,845], + [13045,503], + [13289,30], + [55003,122], + [56009,149], + [1067,45], + [27167,78], + [51155,275], + [47051,280], + [16055,1425], + [17025,103], + [18149,215], + [40005,0], + [45025,192], + [48063,35], + [16067,173], + [12021,1159], + [26143,242], + [6007,2606], + [29223,127], + [47065,1572], + [19037,103], + [42105,98], + [22009,375], + [26149,494], + [29009,256], + [47149,1385], + [40057,0], + [22121,169], + [21217,127], + [47005,138], + [30097,48], + [29045,102], + [1117,958], + [32005,407], + [29207,191], + [48075,17], + [28071,185], + [20205,101], + [5003,260], + [37013,96], + [48203,168], + [22003,243], + [38095,40], + [17113,1294], + [21171,61], + [27149,143], + [16029,93], + [18179,166], + [18177,545], + [36029,6871], + [8049,143], + [46087,80], + [19175,128], + [22051,2833], + [32033,103], + [48149,118], + [30107,35], + [33001,267], + [31169,50], + [48381,416], + [46115,59], + [55001,206], + [33015,1453], + [18017,296], + [17169,90], + [48111,18], + [12045,76], + [31007,6], + [21103,113], + [13043,23], + [22093,138], + [49025,86], + [1029,108], + [13311,120], + [51025,64], + [29023,217], + [40073,0], + [48393,0], + [35047,143], + [42009,260], + [20151,74], + [48219,53], + [55141,761], + [21135,68], + [37163,164], + [26033,257], + [49039,476], + [36007,1556], + [20131,110], + [20047,29], + [41027,263], + [27019,873], + [45061,119], + [45049,95], + [18071,294], + [28039,103], + [42029,2100], + [21059,648], + [48415,67], + [54055,326], + [22019,1438], + [18143,161], + [47029,196], + [45005,48], + [48349,111], + [48479,250], + [30051,40], + [19055,139], + [31159,179], + [29189,5026], + [48427,26], + [51169,170], + [40149,0], + [28017,75], + [55081,288], + [44007,4101], + [4021,1208], + [42019,1091], + [46005,167], + [6051,124], + [51115,50], + [17153,39], + [29111,71], + [29195,174], + [51125,95], + [27075,159], + [1055,645], + [28151,88], + [23023,428], + [16039,180], + [37039,158], + [37019,524], + [56015,138], + [25017,15781], + [38003,127], + [51049,51], + [21233,113], + [48287,65], + [19149,118], + [51530,33], + [49017,44], + [46077,72], + [36005,1378], + [13307,8], + [22109,905], + [48007,79], + [21173,150], + [1047,68], + [30095,164], + [22053,300], + [39039,389], + [38001,48], + [56023,260], + [26077,2176], + [40075,0], + [38039,34], + [16087,97], + [18031,147], + [51680,434], + [38087,8], + [24029,162], + [24031,6209], + [38081,34], + [19083,151], + [20105,35], + [41029,2914], + [42021,1224], + [51139,113], + [21167,120], + [8025,30], + [21203,107], + [48087,18], + [48451,341], + [47001,499], + [13259,17], + [21017,125], + [29153,107], + [5095,80], + [48469,221], + [19195,78], + [55037,39], + [50001,369], + [47089,262], + [45011,98], + [54001,128], + [47047,189], + [48057,44], + [30067,343], + [37061,112], + [48237,25], + [39135,441], + [35005,264], + [34031,1586], + [47119,156], + [30081,681], + [21089,328], + [5121,235], + [20159,78], + [47153,110], + [39157,998], + [21079,80], + [5027,143], + [28073,254], + [16001,3838], + [55055,622], + [39111,211], + [28119,31], + [26059,463], + [18087,126], + [21179,353], + [26029,244], + [21139,81], + [47019,330], + [45053,100], + [39133,1528], + [19147,84], + [29167,188], + [38055,102], + [26063,334], + [19191,178], + [8097,133], + [28013,45], + [48253,77], + [17125,125], + [13183,43], + [51083,124], + [17053,80], + [21093,444], + [51580,30], + [20021,185], + [48099,163], + [36095,322], + [4025,1567], + [48093,70], + [35059,23], + [5111,283], + [38015,729], + [49053,1392], + [13007,13], + [51595,18], + [5103,187], + [48421,9], + [30007,28], + [20119,34], + [40041,0], + [35035,350], + [24009,663], + [27051,109], + [19151,73], + [1109,72], + [8059,5282], + [4003,851], + [48365,48], + [31173,34], + [6005,436], + [47125,627], + [28011,156], + [22031,132], + [46019,129], + [47097,83], + [48301,0], + [13017,29], + [32015,38], + [12029,145], + [28107,106], + [4023,102], + [40063,0], + [20193,49], + [48357,15], + [55078,6], + [17197,3417], + [48461,11], + [12101,2345], + [12117,1490], + [21145,426], + [13261,64], + [22037,132], + [47105,311], + [48197,23], + [22087,407], + [49009,11], + [54085,66], + [6087,3494], + [22029,93], + [29165,561], + [19123,197], + [6003,18], + [19177,76], + [13195,143], + [22089,418], + [19087,206], + [28133,110], + [51683,134], + [48027,679], + [51119,70], + [13227,187], + [1023,35], + [41007,655], + [39107,318], + [50021,678], + [37101,600], + [21195,463], + [16041,227], + [17105,245], + [42109,197], + [28137,97], + [37199,186], + [47007,101], + [13065,29], + [40081,0], + [1129,54], + [48227,115], + [48273,80], + [30049,793], + [17007,421], + [44005,645], + [28001,109], + [13285,182], + [48019,112], + [53035,2416], + [53027,726], + [9001,3069], + [51131,73], + [20075,19], + [27127,248], + [21231,127], + [6013,8231], + [37145,156], + [48143,123], + [40011,0], + [17151,43], + [5021,235], + [48117,31], + [28149,123], + [5081,152], + [45065,150], + [12031,2606], + [42111,604], + [31117,8], + [55087,1592], + [46075,17], + [41011,1196], + [18099,255], + [5093,367], + [1031,130], + [22123,64], + [19009,62], + [47037,3148], + [48001,141], + [49057,1843], + [22081,65], + [41045,327], + [31175,60], + [45075,376], + [1125,711], + [46021,20], + [13255,229], + [18137,207], + [20197,90], + [20155,484], + [13225,65], + [13209,24], + [55103,111], + [19011,207], + [40009,0], + [9003,5023], + [38007,10], + [55013,151], + [51730,183], + [37057,729], + [48053,226], + [20135,29], + [28075,200], + [27125,88], + [13213,176], + [48499,116], + [27087,64], + [17089,2580], + [55043,377], + [51550,902], + [53075,415], + [26123,453], + [31179,56], + [49033,21], + [29077,1831], + [54013,70], + [47039,96], + [42129,1858], + [12111,942], + [40141,0], + [13167,20], + [36001,2743], + [18153,155], + [37171,320], + [46091,30], + [13251,34], + [26003,90], + [49035,10069], + [48331,96], + [17047,73], + [45087,167], + [48495,26], + [55021,418], + [54107,521], + [48367,475], + [5119,2277], + [48395,55], + [25023,5096], + [29127,145], + [55091,53], + [54071,50], + [39011,364], + [39013,687], + [1027,75], + [17147,149], + [29099,1433], + [47159,186], + [26007,255], + [51019,393], + [27005,427], + [8115,26], + [13211,73], + [12063,177], + [6043,253], + [47049,119], + [19113,1692], + [51097,24], + [47143,157], + [48285,61], + [38075,42], + [42047,305], + [40117,0], + [47059,409], + [48201,8607], + [30089,316], + [8065,65], + [40029,0], + [27133,121], + [39095,3272], + [4015,1180], + [31091,8], + [25005,5728], + [13085,100], + [5073,84], + [17039,145], + [28057,204], + [18161,63], + [19069,72], + [6109,661], + [55079,5928], + [18067,505], + [48213,223], + [39155,2602], + [18055,229], + [48431,2], + [51167,173], + [37125,390], + [13139,509], + [26093,1697], + [35053,167], + [22007,223], + [8041,3958], + [12127,2091], + [42051,613], + [48193,39], + [51193,81], + [31005,7], + [39029,1020], + [45081,89], + [48145,46], + [5089,254], + [22067,150], + [51600,132], + [26125,9546], + [48441,432], + [30011,31], + [8063,75], + [51650,550], + [37161,310], + [28145,138], + [5105,184], + [13145,76], + [56031,151], + [39019,433], + [20061,111], + [48033,5], + [48363,127], + [22097,575], + [55039,696], + [48061,506], + [26119,116], + [32019,372], + [8075,129], + [20195,26], + [29155,64], + [51678,22], + [29185,121], + [29163,126], + [21011,99], + [31105,26], + [8071,113], + [18035,563], + [37179,777], + [46097,36], + [42073,541], + [29211,89], + [18081,604], + [20167,48], + [51159,35], + [37023,440], + [54051,245], + [21069,121], + [1133,171], + [41013,349], + [37073,43], + [30041,241], + [31145,93], + [21039,39], + [31013,161], + [22103,1868], + [53003,190], + [46025,45], + [29083,195], + [5007,1618], + [54073,60], + [17193,151], + [41001,322], + [47121,68], + [47183,239], + [28099,79], + [13309,8], + [12047,44], + [8061,24], + [53013,43], + [51079,106], + [39173,1089], + [51085,457], + [48329,370], + [13037,7], + [39139,1361], + [13013,300], + [24013,2197], + [21031,56], + [47031,408], + [31021,67], + [34025,3446], + [18109,352], + [5085,531], + [38091,14], + [21051,102], + [12103,4917], + [29115,153], + [38023,37], + [40113,0], + [48323,69], + [41065,371], + [6113,1669], + [21115,162], + [48399,29], + [26043,267], + [29145,319], + [28155,36], + [48239,33], + [49005,1911], + [17075,258], + [13207,92], + [55065,115], + [13149,50], + [18089,1714], + [48435,8], + [8009,67], + [37043,102], + [48433,5], + [28025,68], + [8083,203], + [13243,12], + [27063,147], + [31115,5], + [48309,632], + [28095,143], + [45027,121], + [46099,1463], + [48095,13], + [27071,191], + [29061,123], + [26101,264], + [48083,48], + [29085,94], + [46085,37], + [39169,1088], + [36065,1603], + [46063,24], + [18029,208], + [1051,237], + [51105,183], + [19007,120], + [51149,124], + [12105,2090], + [39073,338], + [19127,356], + [13237,64], + [28045,268], + [13135,2500], + [53021,298], + [40091,0], + [17005,134], + [19137,74], + [13163,24], + [55135,327], + [13175,116], + [36123,121], + [8125,80], + [40053,0], + [48103,16], + [17121,328], + [27135,165], + [30099,104], + [33003,302], + [54053,266], + [47113,214], + [47103,204], + [29087,37], + [28063,44], + [17171,55], + [47139,110], + [46073,17], + [36105,433], + [21043,245], + [45003,820], + [46013,318], + [31075,8], + [49041,254], + [29049,200], + [23025,556], + [12027,116], + [53065,710], + [27101,148], + [45031,285], + [5129,160], + [51127,113], + [12083,1555], + [28101,58], + [21067,1713], + [21021,165], + [51045,49], + [48047,6], + [39105,245], + [28021,23], + [35013,930], + [17141,453], + [51067,369], + [48091,541], + [4013,16348], + [30105,145], + [37003,297], + [26053,177], + [28069,32], + [24039,108], + [13071,111], + [12109,831], + [12049,81], + [36053,676], + [54065,127], + [6097,5336], + [53073,1898], + [50011,428], + [55133,2406], + [19027,163], + [47111,185], + [48167,941], + [35017,207], + [38035,529], + [8011,44], + [20009,194], + [39159,423], + [54033,464], + [1059,176], + [42101,4128], + [41071,1339], + [30077,110], + [27027,615], + [5113,251], + [29229,173], + [48489,38], + [17137,295], + [4001,321], + [49023,192], + [42113,46], + [37015,22], + [5051,995], + [40085,0], + [20209,798], + [48025,41], + [30061,97], + [16033,6], + [39069,281], + [31009,7], + [8019,135], + [54049,484], + [34023,3508], + [25025,4900], + [19129,123], + [17203,293], + [46057,83], + [18075,166], + [39101,693], + [36027,1614], + [8033,30], + [51021,64], + [48029,3913], + [51117,138], + [27141,893], + [19197,95], + [6035,318], + [54095,85], + [20015,559], + [37053,131], + [38017,1231], + [26153,84], + [46065,133], + [48119,18], + [48049,141], + [51143,288], + [30055,138], + [55137,211], + [56021,1004], + [13305,101], + [21137,126], + [36033,273], + [21191,99], + [28093,110], + [24003,4922], + [18181,197], + [51163,116], + [38033,23], + [26023,338], + [27089,143], + [13263,30], + [29177,219], + [51069,502], + [30057,44], + [26129,244], + [18049,157], + [40089,0], + [51735,88], + [12003,60], + [6089,1935], + [17133,249], + [35011,9], + [47129,136], + [54003,456], + [5127,151], + [31037,60], + [29179,87], + [17149,135], + [47175,37], + [13033,49], + [20199,18], + [28147,71], + [48321,98], + [36093,1473], + [21219,62], + [6091,90], + [35028,181], + [13275,97], + [48157,1248], + [18173,323], + [31001,273], + [54019,292], + [31061,31], + [18141,1169], + [31033,94], + [10005,832], + [20057,143], + [20139,190], + [13295,337], + [39035,7050], + [27043,220], + [32009,20], + [29107,256], + [48477,167], + [48081,18], + [27031,89], + [29089,111], + [29131,185], + [29069,180], + [21001,118], + [31107,101], + [23021,219], + [25003,1696], + [12073,1156], + [48155,13], + [31129,66], + [26039,176], + [37025,524], + [16021,171], + [28031,86], + [48299,98], + [11001,2686], + [38073,64], + [46105,85], + [18123,147], + [41069,33], + [45047,324], + [30091,66], + [30013,867], + [19185,58], + [19171,131], + [13235,23], + [40095,0], + [53037,367], + [48251,453], + [53063,5411], + [39171,343], + [48463,50], + [48283,10], + [55063,993], + [53015,1078], + [53033,14086], + [16065,299], + [37169,380], + [48217,113], + [18103,237], + [51520,115], + [48425,57], + [50023,747], + [36085,1205], + [17067,167], + [47053,331], + [13047,253], + [40023,0], + [51147,113], + [5083,271], + [48371,54], + [55057,196], + [21071,388], + [29093,111], + [48249,65], + [12057,3994], + [55033,421], + [21129,43], + [31015,21], + [5019,219], + [12085,643], + [31045,114], + [28157,45], + [19141,101], + [54023,55], + [37093,107], + [51087,1262], + [5071,224], + [36077,525], + [37165,61], + [13313,280], + [20093,14], + [18101,75], + [28061,50], + [27003,3891], + [47043,336], + [39009,634], + [16043,115], + [22011,285], + [30075,28], + [35006,139], + [46027,138], + [13245,391], + [48137,16], + [29159,258], + [51181,36], + [15003,4410], + [39129,421], + [29203,126], + [27123,5470], + [53061,6317], + [21045,59], + [12053,994], + [22069,212], + [47137,31], + [18007,68], + [13269,26], + [8093,237], + [37115,161], + [23009,584], + [50019,291], + [19013,929], + [26115,1384], + [27049,600], + [54031,129], + [8027,45], + [48121,2168], + [53025,684], + [17041,123], + [16073,90], + [31127,100], + [48355,927], + [19035,103], + [42089,697], + [20023,27], + [20203,16], + [13121,2805], + [6017,2083], + [19045,377], + [18019,446], + [19125,353], + [21197,70], + [20087,188], + [13127,186], + [21109,74], + [28055,7], + [31183,10], + [38067,91], + [23013,436], + [21215,152], + [8045,366], + [20081,15], + [21003,108], + [42107,990], + [13153,445], + [29029,286], + [1025,55], + [41005,4807], + [36025,403], + [48207,29], + [39103,1338], + [37185,46], + [29067,167], + [18157,833], + [41041,840], + [13315,26], + [30059,44], + [20055,153], + [36041,45], + [17165,246], + [31135,18], + [5099,99], + [16045,196], + [53067,2461], + [42115,272], + [37085,341], + [20035,283], + [37077,204], + [26017,1044], + [34027,2310], + [26103,644], + [31073,12], + [51173,246], + [48327,11], + [19189,98], + [13091,74], + [18009,74], + [54029,198], + [37111,281], + [50007,1592], + [32029,43], + [18119,185], + [48011,6], + [20169,437], + [48127,21], + [46015,67], + [20115,99], + [17119,2178], + [45019,1914], + [19017,190], + [13265,8], + [18151,188], + [47055,173], + [45051,1310], + [12023,287], + [32510,421], + [40037,0], + [27137,2721], + [47145,394], + [46137,25], + [18167,545], + [48123,22], + [31165,12], + [48221,210], + [41047,3688], + [39167,545], + [21113,267], + [13169,84], + [19059,119], + [37055,229], + [23011,1266], + [48243,19], + [25027,9386], + [48505,8], + [24041,298], + [37131,44], + [22079,783], + [29209,211], + [25011,1065], + [51685,43], + [28123,62], + [30103,16], + [20183,39], + [26035,278], + [31153,1196], + [55017,500], + [39043,649], + [19181,437], + [16049,298], + [22077,217], + [19193,599], + [6115,528], + [6059,25065], + [13239,8], + [13131,51], + [26011,166], + [46047,123], + [29171,53], + [21239,140], + [26165,281], + [29201,205], + [44001,385], + [49043,321], + [13165,22], + [19033,360], + [26091,869], + [13171,63], + [31163,37], + [12097,622], + [53045,656], + [38097,60], + [24510,2902], + [54061,542], + [17191,134], + [47179,700], + [13051,654], + [36107,423], + [30083,129], + [50017,333], + [17161,827], + [12061,705], + [8077,1045], + [31149,22], + [54067,200], + [54089,135], + [21053,45], + [13055,139], + [28159,71], + [4011,36], + [25013,4916], + [21099,131], + [5047,195], + [6101,618], + [17065,115], + [40111,0], + [27119,336], + [36035,420], + [48135,284], + [47155,415], + [20153,29], + [45023,185], + [48139,442], + [26107,325], + [54105,46], + [28135,52], + [21073,401], + [27047,410], + [34019,981], + [5131,902], + [30033,19], + [42079,1556], + [42061,266], + [13093,31], + [48199,160], + [19043,143], + [12099,3192], + [46093,340], + [20071,3], + [28139,165], + [27115,437], + [5005,590], + [1113,125], + [51157,73], + [21187,88], + [12041,167], + [13089,2126], + [18047,188], + [48457,100], + [47117,259], + [51029,77], + [48453,6716], + [18163,721], + [13187,163], + [38005,32], + [20133,156], + [46043,39], + [47101,79], + [29227,40], + [26045,974], + [21123,112], + [5107,177], + [6039,820], + [26109,236], + [34039,1912], + [45045,3408], + [53057,1146], + [21027,131], + [30019,36], + [19039,107], + [37191,259], + [8123,2048], + [18113,237], + [21013,135], + [4007,354], + [31023,92], + [30043,220], + [47157,2425], + [45015,821], + [26061,395], + [18115,47], + [28097,32], + [21185,319], + [1033,401], + [1103,633], + [50005,356], + [13287,30], + [48491,2389], + [42023,43], + [1063,21], + [42091,3474], + [37087,427], + [55071,752], + [33009,469], + [48013,61], + [19117,112], + [29113,392], + [40139,0], + [31057,18], + [29109,277], + [51185,264], + [48235,9], + [39003,801], + [51810,2045], + [13147,100], + [39079,377], + [20123,62], + [21221,92], + [31087,32], + [27083,283], + [42083,258], + [21065,74], + [51199,364], + [13077,457], + [26155,750], + [55101,1280], + [42033,596], + [19159,52], + [18135,181], + [26139,2110], + [38049,61], + [26161,2591], + [9011,1607], + [31167,50], + [48133,73], + [36021,540], + [26135,121], + [49013,144], + [12011,3530], + [19111,341], + [26083,44], + [1083,417], + [48015,114], + [31017,48], + [53041,803], + [46067,81], + [5101,190], + [42031,273], + [40125,0], + [26015,685], + [27095,423], + [19079,147], + [29027,352], + [46083,322], + [35007,89], + [8037,286], + [40065,0], + [48507,17], + [32013,104], + [55083,286], + [42025,502], + [8099,85], + [28121,591], + [28131,101], + [18037,291], + [19157,172], + [26027,379], + [21061,56], + [40153,0], + [41057,468], + [28019,45], + [37137,51], + [29003,166], + [45033,135], + [6073,23434], + [48161,49], + [18159,125], + [16051,260], + [54011,506], + [12065,72], + [27117,126], + [37027,548], + [12067,38], + [39121,248], + [37197,211], + [8121,35], + [17081,377], + [13297,304], + [16079,192], + [27017,399], + [42041,1259], + [29125,96], + [20107,106], + [26051,260], + [31125,42], + [13219,187], + [39053,294], + [39045,1115], + [24035,383], + [56005,319], + [51177,562], + [51023,242], + [37155,343], + [21199,314], + [51043,134], + [18125,107], + [13079,50], + [27059,481], + [1001,145], + [19085,114], + [55047,143], + [39113,3835], + [29197,69], + [8021,67], + [20005,159], + [8119,247], + [48383,2], + [48403,48], + [24037,681], + [27129,275], + [17157,269], + [21133,245], + [55077,124], + [26099,7769], + [30037,24], + [27109,1557], + [40035,0], + [33017,538], + [6047,1073], + [29011,79], + [28067,270], + [26075,1331], + [13279,66], + [19003,42], + [6029,4600], + [13083,93], + [35039,151], + [22099,390], + [16009,111], + [56003,157], + [6067,11012], + [40003,0], + [1091,29], + [28059,522], + [29121,104], + [48413,10], + [38021,51], + [40101,0], + [36003,377], + [1111,145], + [19167,144], + [31049,18], + [42069,868], + [19119,71], + [42093,85], + [48449,72], + [25021,7400], + [54035,216], + [47035,387], + [48347,170], + [13299,71], + [8087,149], + [39081,745], + [48375,313], + [46123,66], + [31171,8], + [54015,89], + [47167,220], + [47011,501], + [39131,311], + [48215,855], + [36047,4451], + [6045,1452], + [21189,26], + [22049,90], + [27121,150], + [48353,57], + [13249,7], + [5125,977], + [46111,38], + [31071,18], + [29217,163], + [6093,658], + [27039,283], + [38013,17], + [29175,183], + [6023,2322], + [1095,401], + [30009,195], + [18005,409], + [20191,247], + [39175,246], + [42049,1565], + [13059,586], + [38065,26], + [51103,56], + [20019,33], + [40021,0], + [48277,167], + [20117,95], + [31111,414], + [24011,232], + [17111,2135], + [17019,1675], + [40143,0], + [31029,26], + [48073,112], + [46007,37], + [17033,176], + [1053,111], + [18133,226], + [39077,622], + [26081,4990], + [37089,602], + [53011,3196], + [42055,566], + [1037,42], + [54069,253], + [32011,20], + [51800,297], + [32017,56], + [1071,417], + [53059,149], + [48069,10], + [51007,71], + [37195,164], + [37149,176], + [6055,1309], + [13069,64], + [38061,55], + [19031,155], + [27163,2448], + [49045,509], + [30047,649], + [55061,174], + [17143,1219], + [17115,781], + [29215,226], + [46051,93], + [17103,295], + [20063,21] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes.json b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes.json new file mode 100644 index 0000000..dd1d939 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2008/us-election-presidential-2008-votes.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2008 Presidential Election | Total Votes", + "description" : "Total votes cast in the 2008 presidential election.", + "units" : "votes", + "year" : "2008", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "GitHub user @wboykinm" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2008.votes"], + [26041,19064], + [48295,1256], + [1127,28652], + [48389,3077], + [56017,2546], + [20043,3564], + [37183,442245], + [37147,74884], + [48497,20639], + [21207,7475], + [5053,6793], + [31147,3968], + [47123,16777], + [36059,635618], + [1011,5415], + [42057,6306], + [20031,4232], + [31151,5251], + [31035,3033], + [28033,64323], + [22061,19179], + [40129,1789], + [22057,37893], + [40135,13920], + [51153,162446], + [23031,109161], + [23015,21584], + [47025,10420], + [29063,4683], + [42045,297004], + [12119,48868], + [36055,356424], + [18045,7410], + [39063,36981], + [34009,50835], + [28047,61957], + [5141,6703], + [48343,5248], + [30073,2885], + [47181,5527], + [48153,2521], + [46119,833], + [19097,9955], + [28087,27465], + [17155,3337], + [45073,31132], + [36101,41911], + [37143,6501], + [28035,27184], + [31027,4174], + [13141,4344], + [39091,22217], + [39059,17325], + [48297,4176], + [47151,6783], + [30027,6232], + [35021,626], + [23027,21850], + [49007,7777], + [20053,2938], + [27113,6822], + [27159,7169], + [18131,5964], + [38041,1348], + [28003,15182], + [19143,3127], + [50009,3101], + [1015,49242], + [13253,3996], + [6105,6374], + [17181,9116], + [31055,226701], + [51670,9524], + [20095,3664], + [21209,19730], + [48467,20395], + [31177,10320], + [29199,2098], + [47027,2994], + [55111,30626], + [48045,830], + [45007,73787], + [48125,972], + [19173,3026], + [37193,29724], + [27081,3126], + [48369,3713], + [1005,11630], + [42125,98047], + [51035,12579], + [47033,6037], + [39021,18887], + [36049,11138], + [29143,8092], + [51135,6988], + [26089,14464], + [48275,1368], + [51073,19222], + [35051,5485], + [6069,19705], + [41051,364710], + [51610,6750], + [48195,2102], + [13025,6277], + [27079,15009], + [36061,667594], + [18073,12875], + [21183,9938], + [21081,8754], + [5025,3505], + [27055,10883], + [37129,100665], + [26013,3644], + [48189,9943], + [20171,2179], + [48211,1570], + [15007,27224], + [54047,6430], + [22043,8558], + [39143,30373], + [48465,12820], + [48279,4525], + [37041,7512], + [38085,1378], + [39115,6608], + [1057,7957], + [22017,108660], + [13191,6229], + [51109,15353], + [46121,2828], + [31085,553], + [55113,9085], + [6083,174912], + [51820,8860], + [28049,108902], + [44003,83678], + [21229,5275], + [37065,25930], + [27029,4261], + [17061,5807], + [21029,30726], + [51071,7795], + [20083,1096], + [20045,53398], + [40097,15983], + [22105,48602], + [36013,58802], + [25007,10553], + [20127,2841], + [48141,185233], + [30025,1432], + [55019,14187], + [19165,6453], + [13103,20316], + [55011,7000], + [31051,2794], + [41023,3909], + [24033,374026], + [29219,15576], + [36051,30149], + [48391,3261], + [22013,7430], + [22023,3793], + [17045,8255], + [21047,22778], + [13193,4981], + [1003,81413], + [38105,9373], + [19105,10004], + [22095,21656], + [32031,179175], + [20187,827], + [18139,7629], + [29037,50179], + [38057,4397], + [55035,55010], + [29079,4740], + [47077,10834], + [35029,8340], + [47173,6399], + [48005,29153], + [46061,2431], + [48271,1551], + [39031,16863], + [40043,2203], + [6065,647299], + [30109,561], + [48325,15737], + [9005,98966], + [20039,1548], + [13015,36093], + [8051,8870], + [30045,1236], + [17099,50185], + [40103,5055], + [53001,4858], + [19109,9097], + [51001,15623], + [19075,6828], + [23005,164151], + [37099,16866], + [39119,39071], + [17177,21605], + [8053,599], + [40093,3471], + [48171,12338], + [6061,173107], + [27153,12257], + [39041,92416], + [16071,2162], + [21035,15404], + [12013,6244], + [36009,32617], + [18069,16328], + [39099,127032], + [48059,5716], + [47165,67228], + [46109,4536], + [17185,5782], + [20121,15377], + [27147,19656], + [51063,7516], + [16027,64246], + [45041,58373], + [29073,7771], + [16013,10571], + [31141,13420], + [42027,75763], + [13123,11149], + [12039,22510], + [48175,3655], + [5143,68380], + [41019,52937], + [19179,15931], + [29151,7079], + [28009,4638], + [48179,8133], + [13009,16537], + [13023,5071], + [47071,10035], + [32023,17268], + [39057,83589], + [47081,8498], + [48473,15508], + [55117,62107], + [8015,9920], + [21161,7121], + [41039,182910], + [13003,2904], + [9013,75501], + [40045,1909], + [13053,1642], + [22085,9652], + [55099,8194], + [20175,5336], + [28141,8419], + [18083,16424], + [37011,7943], + [22015,45835], + [39085,121335], + [5069,29689], + [30035,4970], + [31143,2543], + [55093,22107], + [51057,5364], + [48051,6665], + [13221,6447], + [5031,30968], + [21041,3835], + [13273,4416], + [42011,180000], + [18013,8055], + [38077,7563], + [42017,332924], + [16015,3773], + [36111,89149], + [29095,339266], + [49055,1314], + [20165,1781], + [41061,12594], + [29186,8825], + [30101,2121], + [37157,41612], + [5137,5324], + [39123,23069], + [29081,3915], + [27173,5569], + [5041,4678], + [27023,6356], + [47095,2238], + [22025,5225], + [48021,25918], + [39161,14652], + [12123,9366], + [13133,7919], + [56013,17592], + [36113,32245], + [19049,32640], + [8111,496], + [53007,31958], + [51093,19997], + [18105,63215], + [51077,7220], + [48429,3526], + [8007,6625], + [8001,160499], + [26001,6420], + [37119,410817], + [21165,2489], + [54083,10831], + [48411,2457], + [54077,11794], + [1039,15787], + [15001,66916], + [5061,4846], + [35023,1951], + [26151,20169], + [46031,1406], + [42121,23307], + [39163,5646], + [13241,7599], + [48337,7950], + [13281,5739], + [19021,8418], + [29169,15000], + [5057,7349], + [27067,21895], + [39027,19305], + [41031,8318], + [38089,11070], + [54017,3018], + [21127,5649], + [26047,18149], + [53009,38519], + [45021,20766], + [27145,78756], + [51570,8849], + [28023,8397], + [24017,70126], + [5117,3381], + [48031,4939], + [21169,4199], + [36091,111387], + [17015,7674], + [42065,18802], + [28015,5965], + [12019,94577], + [12115,207353], + [12071,269276], + [29205,3316], + [51099,10474], + [5023,11338], + [27011,2990], + [5079,4406], + [21225,6034], + [37033,10862], + [42035,14791], + [31031,3059], + [6021,9879], + [56033,14981], + [31003,3185], + [20109,1440], + [21227,44145], + [16059,4105], + [29141,9149], + [47091,6591], + [13081,7550], + [16031,7842], + [38083,803], + [17087,5901], + [9007,87252], + [12069,146926], + [35037,3996], + [48129,1690], + [5059,11955], + [1105,6159], + [47187,93646], + [32021,2273], + [47073,21040], + [18175,11305], + [51013,110153], + [37103,5227], + [8081,5871], + [51121,40653], + [48483,2245], + [20033,974], + [47109,43846], + [26071,6162], + [46011,13945], + [18171,3998], + [21057,2797], + [29031,37355], + [38043,1228], + [4012,5552], + [37007,10733], + [48205,1985], + [12095,462711], + [21091,4144], + [41035,29399], + [54057,11547], + [22113,24833], + [26113,7492], + [5037,7130], + [9015,50844], + [29075,3292], + [28091,13010], + [33011,203799], + [19145,7356], + [37135,74910], + [47067,2241], + [20011,6781], + [8085,19153], + [18107,15285], + [13011,6241], + [35025,18645], + [54041,6603], + [29065,6868], + [28115,12868], + [48071,13292], + [37059,20368], + [35001,285778], + [12035,49031], + [29123,5028], + [35041,6720], + [48231,29524], + [18095,57340], + [48361,29406], + [30039,1715], + [48035,7646], + [21111,353892], + [6001,621029], + [40105,4442], + [48169,1750], + [20185,2074], + [26025,64196], + [19051,3815], + [29157,8647], + [47177,14400], + [42003,651436], + [36073,16584], + [4027,43615], + [28111,5664], + [9009,382886], + [35045,46511], + [42127,22835], + [21177,12889], + [49037,5130], + [26037,40381], + [51590,20890], + [20067,2661], + [12087,40272], + [29035,2898], + [5001,6978], + [40069,3957], + [37107,26897], + [48209,59052], + [4005,54344], + [20143,3086], + [48437,2535], + [41063,4465], + [19091,5122], + [22091,6184], + [48185,8322], + [40051,20715], + [31095,3697], + [39127,15404], + [48233,8761], + [13099,5335], + [16057,17714], + [56045,3393], + [46053,2247], + [49029,4161], + [22021,4893], + [46017,619], + [19133,4796], + [16017,19547], + [42095,135587], + [51690,6520], + [40131,38515], + [55119,9346], + [17145,9995], + [27021,16307], + [48417,1505], + [48339,157847], + [6099,161015], + [47013,12628], + [27085,19029], + [30017,5452], + [48165,4067], + [35057,6941], + [33007,16259], + [47135,3000], + [6111,339800], + [40099,5338], + [20201,2980], + [48245,88296], + [18057,129064], + [19041,8398], + [47015,5457], + [1049,24015], + [42067,9711], + [26105,15223], + [34003,414733], + [48017,2316], + [17013,2699], + [40061,4681], + [27015,13620], + [45057,28921], + [21149,4422], + [22107,3040], + [28113,18055], + [25019,6052], + [13321,8370], + [26097,6396], + [51089,25215], + [1009,24267], + [13303,8863], + [4019,393428], + [38025,1644], + [21019,20670], + [8069,166373], + [51037,6157], + [29117,6552], + [48315,4252], + [51101,8388], + [28077,7009], + [45077,45128], + [21025,5030], + [51540,20044], + [17189,7932], + [29135,6665], + [24001,29742], + [27025,29305], + [29181,5363], + [48419,9220], + [17183,32872], + [48067,11846], + [26067,27319], + [26085,5292], + [17071,3814], + [39033,21173], + [21101,19861], + [13283,2954], + [22035,3559], + [49011,110902], + [13271,4374], + [51195,14138], + [48037,35186], + [48241,12776], + [47075,8121], + [1045,19320], + [40123,14262], + [22027,6841], + [29041,4214], + [45055,27985], + [51015,33338], + [6085,665589], + [29055,10085], + [39007,44874], + [13173,2873], + [13161,5278], + [18033,17149], + [42081,49237], + [48225,8624], + [38059,13264], + [42063,37302], + [39165,106216], + [31137,4473], + [42043,129529], + [20091,283432], + [25001,132270], + [19073,4804], + [6025,38820], + [19065,10259], + [37001,64353], + [18065,21319], + [26079,8499], + [16077,2842], + [46029,12185], + [46117,1553], + [40115,11173], + [39097,17454], + [45083,108328], + [8091,3060], + [37081,241771], + [16075,8613], + [17011,17113], + [5049,4676], + [30063,59075], + [1065,8214], + [48105,1545], + [13125,1428], + [1099,11252], + [30001,4763], + [17163,125744], + [29147,10219], + [5135,7252], + [54009,9855], + [21117,68213], + [48257,35145], + [16085,5296], + [26021,77666], + [36089,41326], + [37189,28372], + [36117,41045], + [8023,1697], + [17049,16835], + [51059,516254], + [39001,11388], + [17135,12871], + [36031,18595], + [12037,6029], + [39109,52807], + [53039,10164], + [41009,24768], + [1101,104743], + [29039,6354], + [17097,299105], + [5017,5208], + [13107,8242], + [27093,12545], + [17043,417973], + [26121,84271], + [36109,42552], + [21083,16155], + [48317,1715], + [6053,129783], + [13247,37706], + [13109,3855], + [29097,48025], + [40039,10502], + [22001,26711], + [42123,18517], + [54091,6203], + [48493,16366], + [55051,3432], + [37113,17238], + [5115,22079], + [1131,6494], + [13137,14808], + [8095,2260], + [42013,53102], + [5045,41179], + [5139,17179], + [20003,3626], + [30005,2924], + [31093,2996], + [55059,78789], + [48291,21626], + [45037,11520], + [38053,2715], + [34035,151078], + [32007,15887], + [55045,18534], + [12051,10879], + [36069,51020], + [20007,2462], + [35015,20093], + [16061,1804], + [24045,41852], + [48187,47461], + [51720,1512], + [46003,1495], + [8067,27979], + [51710,88446], + [16035,3906], + [36045,38886], + [33005,42601], + [48481,14418], + [26065,142729], + [19099,19421], + [6033,25542], + [22125,5620], + [38051,1532], + [55041,4683], + [53055,10531], + [27007,22236], + [51053,12892], + [38063,1752], + [20065,1423], + [36043,27184], + [13113,59321], + [23007,17178], + [38037,1329], + [40017,47854], + [13061,1440], + [51770,40772], + [13201,2738], + [48163,4062], + [17175,2907], + [48269,163], + [30111,70416], + [31119,14045], + [44009,168633], + [31133,1384], + [46037,3205], + [17093,46631], + [19029,7350], + [4017,35800], + [16005,35105], + [47099,16020], + [8101,72427], + [8043,19919], + [12043,3358], + [13095,38846], + [13155,3828], + [31063,1404], + [36039,22335], + [22055,95642], + [39065,13114], + [56043,4089], + [55107,7272], + [27045,11234], + [29051,38745], + [13087,10374], + [17057,16323], + [22045,33168], + [46023,3978], + [46069,785], + [13291,10634], + [17117,22373], + [21063,2515], + [35055,16886], + [46039,2218], + [19023,7166], + [37173,5798], + [48307,3010], + [40079,16741], + [28043,11321], + [48223,12919], + [21049,15628], + [42131,13138], + [20111,12911], + [47069,11237], + [54043,6835], + [13151,88311], + [20101,1027], + [48173,557], + [6081,303292], + [38011,1640], + [51027,8734], + [56011,3683], + [17201,126031], + [51630,9677], + [48289,7041], + [55123,14075], + [17129,6464], + [48333,2177], + [21005,10552], + [37121,7846], + [19183,10626], + [31059,2947], + [16025,618], + [17199,30141], + [45039,11619], + [1079,14680], + [12055,44783], + [19077,5847], + [31157,14730], + [29221,9614], + [53077,77062], + [29119,8135], + [21077,3193], + [48501,2458], + [42103,24284], + [29057,4112], + [48401,18722], + [20141,1930], + [19187,18554], + [42075,58297], + [20099,9031], + [48079,1057], + [24025,123295], + [12015,85158], + [13027,6201], + [29071,49293], + [41055,1047], + [6057,55647], + [47041,7065], + [26111,43707], + [34013,316183], + [21159,3692], + [19093,3547], + [39093,146859], + [45009,6814], + [47147,27614], + [47169,3239], + [29183,188529], + [54021,2521], + [37095,2469], + [47107,7360], + [21163,11206], + [20079,15613], + [55049,11969], + [36103,659779], + [51740,46665], + [46045,2076], + [16081,4658], + [13233,14113], + [39153,269059], + [53043,5977], + [51840,10126], + [53005,72911], + [13129,17607], + [27151,5244], + [19089,4728], + [19139,19119], + [49047,10151], + [18121,6964], + [4009,12007], + [21037,40297], + [8005,266148], + [37187,6454], + [55097,39422], + [29007,10781], + [27033,6036], + [51107,139459], + [51137,15801], + [31101,3968], + [8047,3301], + [21153,4651], + [39071,19186], + [55025,282939], + [51111,5650], + [53049,10937], + [27009,19339], + [42099,19745], + [5013,2217], + [20137,2415], + [40147,22765], + [23019,80367], + [39005,25168], + [27073,4192], + [8107,13199], + [29139,5856], + [54087,5563], + [5055,13612], + [27013,35070], + [40019,18844], + [20073,2279], + [17059,2859], + [42059,15976], + [28007,9183], + [51183,5363], + [55131,74411], + [27099,19187], + [1119,7020], + [1085,7278], + [48109,759], + [17063,22171], + [47023,6459], + [46071,1133], + [24005,380938], + [48439,628553], + [38071,4762], + [20113,13385], + [20089,1584], + [41067,236632], + [40049,10738], + [13189,9440], + [47021,16428], + [36067,218239], + [8014,29453], + [18025,4744], + [28041,5789], + [39089,82356], + [19019,10338], + [37181,20871], + [22065,5300], + [13185,39078], + [8013,171763], + [20163,2588], + [37021,123795], + [48177,6287], + [12081,151994], + [46081,12055], + [21181,2970], + [38029,1837], + [20125,13907], + [27035,35165], + [36071,151982], + [36081,640137], + [31181,1817], + [20173,192716], + [13301,2660], + [55007,9468], + [36079,47244], + [28153,10022], + [27091,10754], + [51036,4153], + [55069,15268], + [48097,15032], + [23029,16654], + [47163,63997], + [19061,47953], + [21155,7615], + [51191,24500], + [35009,14438], + [6049,4420], + [51033,12919], + [51141,8531], + [19161,5053], + [17131,8848], + [55005,22886], + [26127,12509], + [16063,1870], + [29053,8026], + [53047,16870], + [1107,10067], + [41017,79782], + [46035,8455], + [41033,42049], + [17035,5321], + [40067,2457], + [17123,6333], + [35031,23207], + [28127,12610], + [31039,4087], + [51640,2402], + [46095,843], + [19121,8480], + [18015,8736], + [51165,33334], + [47085,7580], + [12113,76185], + [46089,1375], + [18043,36527], + [51009,14700], + [12017,76158], + [30093,16965], + [16003,2320], + [31099,3150], + [39037,25793], + [24021,111186], + [51510,70364], + [48101,705], + [27037,225472], + [46059,2011], + [47063,22669], + [40013,13733], + [13075,5903], + [54097,8970], + [54045,13464], + [48385,1628], + [51003,50921], + [51011,7630], + [47079,13545], + [21033,6199], + [48131,4409], + [19103,72975], + [29043,37697], + [21237,2968], + [49051,8531], + [38045,2241], + [29001,11871], + [40127,4473], + [29017,5784], + [1121,34204], + [28085,16402], + [18145,17574], + [31019,19293], + [30023,5074], + [26005,55279], + [6079,132653], + [47185,9647], + [48281,7634], + [26117,27051], + [39087,27194], + [5063,12299], + [46033,4507], + [12121,17662], + [37133,50203], + [54025,13726], + [48261,202], + [1089,152899], + [22059,6553], + [13205,8120], + [5133,4580], + [55125,13750], + [48159,4491], + [41059,25523], + [51051,6753], + [8057,913], + [31155,10212], + [8079,623], + [47161,5507], + [32003,647490], + [36057,20175], + [29129,1748], + [38079,4534], + [34017,211312], + [41021,1110], + [37075,4171], + [16053,6847], + [13005,3938], + [37063,136897], + [28105,18792], + [17027,17314], + [51161,50975], + [38099,4882], + [20207,1599], + [40071,18693], + [34033,31363], + [28029,14502], + [48423,79561], + [39151,187545], + [19153,214386], + [21007,4060], + [28027,10568], + [28079,9359], + [41053,36207], + [22117,18624], + [26145,104090], + [48313,4074], + [28129,8305], + [18063,64955], + [29225,16356], + [6095,160973], + [37005,5263], + [47061,4632], + [46113,3350], + [31081,4799], + [25015,79570], + [13143,11097], + [40055,2114], + [37049,44598], + [36099,14741], + [45001,11001], + [42037,28063], + [56029,14985], + [26137,12616], + [15009,51789], + [13049,3685], + [21175,4379], + [35027,9696], + [30071,2123], + [35003,2112], + [13217,41435], + [26009,13852], + [37067,166133], + [12033,154447], + [5147,2761], + [28081,34960], + [10001,66925], + [48359,920], + [46125,4352], + [37117,12541], + [18129,12771], + [26095,2740], + [6015,9531], + [27169,27935], + [8017,1111], + [29161,19438], + [30053,9227], + [1093,12355], + [13293,11421], + [42053,2444], + [16069,17823], + [55105,79169], + [27057,11638], + [46101,3254], + [47093,186086], + [21151,32537], + [48267,1843], + [17159,7650], + [6075,382865], + [26157,27798], + [48407,8958], + [39061,425086], + [30087,3810], + [54101,3052], + [13157,22960], + [13317,5052], + [20025,1159], + [37139,18180], + [37097,73162], + [21119,5820], + [49015,4448], + [48293,7652], + [40109,279354], + [48181,45477], + [48183,42610], + [48055,11648], + [12086,863486], + [54109,7530], + [22073,67244], + [51187,16126], + [45089,16443], + [30021,4432], + [31109,127490], + [6031,35108], + [20179,1376], + [39067,7787], + [55027,42823], + [33019,22614], + [13111,10584], + [48447,838], + [17009,2569], + [48009,4365], + [39145,32571], + [26073,28350], + [26057,17738], + [48085,296583], + [18027,10586], + [35019,2196], + [21087,5079], + [47115,33767], + [1075,7075], + [1073,318524], + [13231,8203], + [12107,33171], + [35033,2760], + [37017,15480], + [5009,15474], + [56039,12316], + [1021,17785], + [20181,2704], + [48387,5052], + [48311,537], + [46135,10134], + [1007,8644], + [49027,4739], + [21205,8154], + [21125,22500], + [28125,2795], + [17167,99828], + [21235,13704], + [13035,9091], + [27065,8499], + [19053,4102], + [8035,151819], + [8109,2747], + [17069,2255], + [40133,8577], + [48377,1757], + [34011,58065], + [40121,17209], + [24027,145233], + [46009,3175], + [12089,38304], + [40027,104430], + [51017,2432], + [26163,890326], + [38069,2139], + [20129,1402], + [29091,17029], + [28083,13081], + [48475,3602], + [19135,3873], + [6103,24436], + [5039,3318], + [48089,8353], + [18003,150324], + [1043,35305], + [18127,73916], + [37127,47118], + [51081,4887], + [39015,20113], + [18169,13871], + [29005,2976], + [21009,16807], + [39025,95480], + [45063,109512], + [48259,16746], + [56037,16703], + [27069,2568], + [47003,15507], + [26055,48733], + [31053,15550], + [17079,5131], + [21075,2825], + [12129,14376], + [12133,11131], + [40087,14744], + [13067,315444], + [19071,3894], + [24019,15274], + [51095,38603], + [30065,2306], + [19057,20570], + [27157,11893], + [39051,21973], + [51133,7406], + [28037,4685], + [47189,51159], + [47045,14450], + [37105,23788], + [37123,11210], + [22041,9358], + [48229,898], + [36083,73986], + [1087,10877], + [19107,5361], + [20051,12447], + [13039,17084], + [55031,24066], + [20037,16075], + [21143,3855], + [13257,10517], + [48003,4629], + [13267,6714], + [51061,34219], + [40033,2483], + [13229,6791], + [42133,194210], + [46107,1440], + [48247,1815], + [18147,10181], + [1077,38104], + [42097,33939], + [19169,46575], + [45079,165037], + [48443,519], + [36011,34022], + [39083,28231], + [13159,5904], + [13021,66368], + [37009,13069], + [47087,4501], + [56025,33267], + [19047,7191], + [39141,31840], + [46103,46280], + [42001,44491], + [54063,5575], + [6071,606334], + [31161,2462], + [36075,49349], + [20069,2119], + [48409,21396], + [37167,28506], + [17173,10868], + [42117,17984], + [41015,12332], + [8029,15434], + [51750,5429], + [28053,5126], + [20059,11739], + [41025,3683], + [29133,5356], + [28117,10944], + [23003,35994], + [17077,25532], + [27155,2035], + [49019,4077], + [40025,1271], + [29173,5084], + [19015,13929], + [34001,119042], + [46041,2019], + [27139,67132], + [29101,22080], + [17109,13042], + [20049,1434], + [55053,9251], + [39075,11113], + [37069,26639], + [5123,9505], + [48305,2116], + [21107,19348], + [27131,31799], + [5077,3763], + [1061,11657], + [6009,23306], + [18079,11839], + [21023,3399], + [5065,5218], + [20027,4054], + [54007,5408], + [12005,81127], + [21015,50774], + [55009,124754], + [6063,11028], + [8113,4350], + [36015,38695], + [19115,4920], + [51775,12406], + [28103,6589], + [36019,33337], + [17091,48016], + [45059,26282], + [28051,9543], + [31069,1138], + [51113,6699], + [56001,17117], + [31123,2351], + [29013,8283], + [13057,93772], + [31077,1199], + [18051,15095], + [51830,6787], + [28143,4332], + [48191,1264], + [45071,16524], + [17001,30823], + [8073,2304], + [42005,30081], + [31025,12122], + [37045,43835], + [1097,181424], + [37051,127575], + [17085,11750], + [51065,12735], + [48115,4096], + [48039,104940], + [36017,20847], + [37177,1910], + [48471,19146], + [26131,3885], + [12091,95529], + [12007,11676], + [6041,140197], + [20177,84177], + [23017,31650], + [19101,8631], + [17017,5408], + [39049,560325], + [27143,7729], + [36115,25730], + [20147,2667], + [47141,27316], + [13119,8073], + [19095,8546], + [33013,79719], + [51171,19223], + [47131,13392], + [20013,4376], + [16007,2943], + [34021,160039], + [55109,44821], + [55075,21255], + [56007,6854], + [18111,6045], + [34005,223174], + [18011,26647], + [49021,16450], + [48113,738463], + [22071,147439], + [27077,2313], + [17083,10583], + [45067,10876], + [47127,2952], + [1069,41735], + [8117,14899], + [18117,8086], + [37035,69451], + [45029,17321], + [19155,42320], + [38101,25621], + [6011,6429], + [21095,9914], + [1115,34088], + [6107,105206], + [48147,11694], + [55095,22643], + [55139,87677], + [39055,51102], + [20001,5859], + [8055,3643], + [18041,9462], + [20103,30587], + [53029,42159], + [20097,1135], + [48043,3900], + [12093,12786], + [22039,15976], + [19005,7059], + [17031,2137466], + [48265,22556], + [46129,2650], + [34007,235704], + [51700,81295], + [48373,20149], + [54081,28257], + [16037,2352], + [17051,9680], + [51041,162088], + [21055,3930], + [48341,5437], + [1019,9745], + [55127,50422], + [45085,44358], + [48303,97534], + [31185,6568], + [20017,1384], + [21147,5407], + [53053,329520], + [40083,18273], + [37071,84402], + [47133,8092], + [53069,2294], + [36121,17667], + [37091,10650], + [21213,7309], + [29137,4314], + [28161,6826], + [13001,6996], + [12079,8907], + [29019,85251], + [21121,11389], + [27053,663780], + [38009,3516], + [38103,2377], + [19067,8091], + [13223,56985], + [16011,17155], + [46055,1153], + [18053,26299], + [30085,4150], + [6077,209349], + [27161,9888], + [34041,48939], + [1041,6291], + [56041,8383], + [18155,3640], + [18097,379362], + [39125,9769], + [21085,9903], + [48345,594], + [49001,2509], + [55067,10402], + [12009,287859], + [8031,271533], + [13115,34213], + [28109,22443], + [27105,8813], + [26159,34766], + [40151,3916], + [22101,22903], + [53031,19991], + [48041,58673], + [26031,13901], + [16019,41703], + [41037,3688], + [5015,10579], + [20077,2796], + [13215,74065], + [39149,23668], + [41043,51982], + [47171,7223], + [45091,93696], + [18023,12392], + [24047,27346], + [13181,4416], + [13063,99438], + [53017,15209], + [39117,16643], + [13199,9504], + [13101,1187], + [42071,228137], + [10003,256417], + [47057,7503], + [19163,86371], + [37083,25091], + [19063,5015], + [29047,109606], + [51005,7369], + [17021,15100], + [18061,18091], + [42087,16502], + [49049,157279], + [37175,16909], + [55115,20089], + [51145,14456], + [13019,6449], + [26141,7505], + [41003,46478], + [18091,208757], + [21193,10375], + [12075,18725], + [48263,448], + [28163,11477], + [5035,18255], + [13105,8317], + [27097,16743], + [55085,21927], + [46079,6157], + [54027,8346], + [45017,7738], + [34015,139430], + [18077,13490], + [47083,3354], + [40145,30251], + [21211,18540], + [22083,9181], + [31047,7986], + [54099,15426], + [22033,197349], + [30029,43714], + [31083,1766], + [48151,1784], + [24015,42494], + [51031,25814], + [40015,9817], + [27041,20918], + [25009,353462], + [51197,12491], + [34037,74154], + [31089,4974], + [53071,24727], + [26087,45362], + [18021,11395], + [13117,75376], + [13073,55351], + [13029,12845], + [27111,32687], + [40007,2464], + [1017,14956], + [5091,15063], + [5043,6610], + [38031,1651], + [48459,15164], + [5033,20532], + [12077,3278], + [51760,93085], + [8003,6286], + [38019,2130], + [39047,11694], + [55089,53365], + [18093,18534], + [21105,2250], + [40137,18932], + [13177,13087], + [30031,48155], + [48077,5339], + [55121,13314], + [26147,80900], + [40031,34247], + [17139,6260], + [48023,1643], + [32027,1801], + [17195,26906], + [20149,9837], + [37109,35798], + [48255,4527], + [5075,5830], + [45043,30290], + [27001,9410], + [12059,8589], + [6019,272289], + [31079,21271], + [37031,34597], + [36097,8600], + [31113,416], + [17101,6536], + [5097,3622], + [12125,5293], + [38093,9784], + [29015,9567], + [48065,2980], + [37153,19327], + [48485,45982], + [27107,3434], + [54075,3641], + [16023,1410], + [54059,8338], + [35061,28899], + [20029,4451], + [19001,4053], + [36037,26873], + [28005,7650], + [27061,24395], + [50013,4269], + [18183,15188], + [19131,5766], + [17023,8288], + [29213,21664], + [34029,274298], + [50015,12668], + [24023,12872], + [37151,58147], + [29059,7683], + [5087,6328], + [22115,15769], + [16083,28344], + [42015,25787], + [29510,158858], + [18059,34253], + [48487,4509], + [42007,84488], + [18165,7135], + [27165,5258], + [51091,1554], + [13277,14257], + [51790,11015], + [48445,4280], + [48455,6077], + [8105,5444], + [50027,31165], + [51175,9067], + [13319,4673], + [16047,5391], + [39137,18680], + [17003,3937], + [21131,4397], + [1035,6943], + [20041,8667], + [48503,7305], + [1013,9709], + [39017,173777], + [55029,17481], + [31139,3226], + [31011,2836], + [42119,17400], + [36023,21920], + [42077,152473], + [55129,9112], + [47017,11646], + [51179,55455], + [5029,8138], + [6037,3318248], + [5109,3966], + [13031,23920], + [27103,18245], + [31043,6396], + [30015,2861], + [5149,6036], + [39147,27449], + [31097,2110], + [37079,8103], + [30003,5218], + [42039,38134], + [13179,16376], + [20157,2671], + [1081,54325], + [53051,6552], + [51660,14675], + [29025,4564], + [29033,4538], + [24043,61600], + [17095,23988], + [54005,8366], + [17029,23076], + [29149,4591], + [22047,16421], + [8039,13206], + [8089,8064], + [47009,51645], + [30079,735], + [21201,1015], + [55023,7981], + [26069,14187], + [50003,19129], + [31065,2328], + [37029,4821], + [31067,10160], + [29021,39040], + [54093,3507], + [29105,2024], + [17037,44818], + [28065,7370], + [38047,1057], + [31131,7092], + [48335,2431], + [54037,22540], + [22111,10868], + [12131,27046], + [38027,1165], + [37037,32880], + [17187,8029], + [27171,65578], + [54103,6452], + [49031,798], + [36063,95272], + [48379,4236], + [26049,219896], + [19025,5195], + [8103,3147], + [46049,1192], + [36119,413044], + [20145,2867], + [31121,3431], + [17127,7186], + [50025,24081], + [22119,18270], + [45013,68870], + [35049,72223], + [45069,5232], + [5011,4041], + [56019,4354], + [18039,71458], + [45035,52405], + [19081,5930], + [31041,5578], + [17073,24785], + [21097,7590], + [22075,10449], + [18001,13513], + [21157,15487], + [53019,3501], + [56035,4356], + [17179,63854], + [40077,4173], + [37047,24282], + [53023,1373], + [55015,26474], + [5067,5582], + [48397,32066], + [17055,18641], + [40107,4123], + [22063,50892], + [21141,10890], + [48319,2121], + [54079,24778], + [5145,26955], + [48351,5260], + [40001,6690], + [12001,125519], + [37159,61560], + [23001,54850], + [20189,2127], + [39023,66770], + [6027,8533], + [51047,19741], + [26019,10309], + [49003,19058], + [40059,1563], + [48405,3715], + [51075,12562], + [30069,300], + [21223,3812], + [40047,22612], + [56027,1293], + [55073,67940], + [35043,58630], + [31103,533], + [1123,19311], + [32001,10494], + [54039,82480], + [51620,4427], + [22127,6772], + [37141,23749], + [36087,132193], + [26133,11026], + [18085,30134], + [22005,46571], + [13097,55083], + [41049,4058], + [29187,24550], + [29103,2024], + [20085,6253], + [40119,29036], + [28089,47269], + [13197,3184], + [17107,12896], + [20161,22997], + [48107,1914], + [46127,7701], + [42085,53821], + [13045,43498], + [13289,4519], + [55003,8574], + [56009,6451], + [1067,8648], + [27167,3414], + [51155,15050], + [47051,17432], + [16055,61932], + [17025,6454], + [18149,9466], + [40005,4881], + [45025,16359], + [48063,4567], + [16067,6890], + [12021,141988], + [26143,14051], + [6007,98325], + [29223,6154], + [47065,147520], + [19037,6583], + [42105,7507], + [22009,16938], + [26149,25702], + [29009,14644], + [47149,101737], + [40057,1090], + [22121,11866], + [21217,10860], + [47005,6479], + [30097,2083], + [29045,3456], + [1117,90643], + [32005,25727], + [29207,13262], + [48075,2296], + [28071,18460], + [20205,4121], + [5003,8642], + [37013,23010], + [48203,26158], + [22003,9467], + [38095,1197], + [17113,75750], + [21171,4665], + [27149,5634], + [16029,3302], + [18179,13073], + [18177,28562], + [36029,441985], + [8049,8308], + [46087,2945], + [19175,5909], + [22051,181120], + [32033,3773], + [48149,10714], + [30107,981], + [33001,33465], + [31169,2659], + [48381,51832], + [46115,3269], + [55001,9986], + [33015,167093], + [18017,15653], + [17169,3823], + [48111,1589], + [12045,7205], + [31007,416], + [21103,6919], + [13043,3518], + [22093,12564], + [49025,3154], + [1029,6492], + [13311,10761], + [51025,7914], + [29023,17338], + [40073,6381], + [48393,518], + [35047,12941], + [42009,22443], + [20151,4190], + [48219,7645], + [55141,39052], + [21135,4791], + [37163,26038], + [26033,16708], + [49039,8771], + [36007,88837], + [20131,5359], + [20047,1357], + [41027,9830], + [27019,49683], + [45061,9153], + [45049,9350], + [18071,17374], + [28039,9335], + [42029,254354], + [21059,43622], + [48415,5569], + [54055,21022], + [22019,82131], + [18143,8877], + [47029,12481], + [45005,4024], + [48349,16321], + [48479,46821], + [30051,1001], + [19055,8901], + [31159,7529], + [29189,559854], + [48427,9792], + [51169,9875], + [40149,4776], + [28017,9058], + [55081,19152], + [44007,252553], + [4021,104883], + [42019,90425], + [46005,7714], + [6051,5571], + [51115,5440], + [17153,3270], + [29111,4502], + [29195,9848], + [51125,8133], + [27075,6969], + [1055,44737], + [28151,19583], + [23023,21301], + [16039,8436], + [37039,12586], + [37019,52608], + [56015,5912], + [25017,726031], + [38003,5694], + [51049,4724], + [21233,5540], + [48287,6377], + [19149,12512], + [51530,2423], + [49017,2159], + [46077,2784], + [36005,381322], + [13307,1111], + [22109,40696], + [48007,9778], + [21173,10331], + [1047,20852], + [30095,4667], + [22053,13501], + [39039,19195], + [38001,1271], + [56023,8568], + [26077,130781], + [40075,3763], + [38039,1314], + [16087,4506], + [18031,10488], + [51680,34341], + [38087,411], + [24029,10020], + [24031,439261], + [38081,1927], + [19083,8859], + [20105,1586], + [41029,101047], + [42021,65670], + [51139,10389], + [21167,10060], + [8025,1558], + [21203,6274], + [48087,1195], + [48451,38861], + [47001,31570], + [13259,2105], + [21017,8330], + [29153,4686], + [5095,3449], + [48469,29931], + [19195,4257], + [55037,2685], + [50001,19238], + [47089,18532], + [45011,9798], + [54001,6232], + [47047,19254], + [48057,6879], + [30067,8892], + [37061,19904], + [48237,3023], + [39135,21002], + [35005,22112], + [34031,187395], + [47119,10422], + [30081,22083], + [21089,15798], + [5121,6319], + [20159,4021], + [47153,5437], + [39157,42950], + [21079,7210], + [5027,9558], + [28073,23910], + [16001,179402], + [55055,43166], + [39111,6982], + [28119,4168], + [26059,20449], + [18087,9491], + [21179,18146], + [26029,14367], + [21139,4593], + [47019,21769], + [45053,8854], + [39133,78206], + [19147,4806], + [29167,13697], + [38055,4736], + [26063,17135], + [19191,11280], + [8097,9966], + [28013,7034], + [48253,5808], + [17125,6808], + [13183,3450], + [51083,16850], + [17053,6386], + [21093,39990], + [51580,2354], + [20021,9665], + [48099,18332], + [36095,14402], + [4025,99648], + [48093,5217], + [35059,1742], + [5111,7928], + [38015,41772], + [49053,49529], + [13007,1687], + [51595,2617], + [5103,9960], + [48421,1020], + [30007,1149], + [20119,1931], + [40041,15362], + [35035,21766], + [24009,44057], + [27051,3605], + [19151,4011], + [1109,13955], + [8059,295062], + [4003,48820], + [48365,10216], + [31173,2126], + [6005,18810], + [47125,56518], + [28011,15381], + [22031,12257], + [46019,4256], + [47097,9338], + [48301,79], + [13017,6036], + [32015,2081], + [12029,7264], + [28107,16416], + [4023,13303], + [40063,4843], + [20193,3673], + [48357,3109], + [55078,1448], + [17197,286420], + [48461,1197], + [12101,214866], + [12117,205895], + [21145,30754], + [13261,12235], + [22037,9947], + [47105,22184], + [48197,1595], + [22087,13541], + [49009,439], + [54085,3845], + [6087,127483], + [22029,9527], + [29165,46480], + [19123,10932], + [6003,692], + [19177,3608], + [13195,11334], + [22089,25397], + [19087,9377], + [28133,11193], + [51683,13627], + [48027,90334], + [51119,6006], + [13227,12786], + [1023,7894], + [41007,18548], + [39107,21271], + [50021,31617], + [37101,71017], + [21195,22643], + [16041,5073], + [17105,15625], + [42109,15479], + [28137,12778], + [37199,9717], + [47007,4784], + [13065,2696], + [40081,13974], + [1129,8775], + [48227,9689], + [48273,9876], + [30049,32873], + [17007,22157], + [44005,41841], + [28001,15696], + [13285,26028], + [48019,9297], + [53035,124337], + [53027,29184], + [9001,413741], + [51131,6586], + [20075,1096], + [27127,7806], + [21231,7196], + [6013,451650], + [37145,18632], + [48143,14019], + [40011,4112], + [17151,2231], + [5021,5511], + [48117,4744], + [28149,21764], + [5081,5152], + [45065,15174], + [12031,415761], + [42111,35168], + [31117,293], + [55087,91563], + [46075,627], + [41011,30951], + [18099,18550], + [5093,14010], + [1031,20128], + [22123,4987], + [19009,3435], + [47037,264486], + [48001,16655], + [49057,73394], + [22081,4629], + [41045,10433], + [31175,2423], + [45075,39754], + [1125,78912], + [46021,854], + [13255,25255], + [18137,12188], + [20197,3521], + [20155,26512], + [13225,11165], + [13209,3590], + [55103,8450], + [19011,13712], + [40009,7397], + [9003,412728], + [38007,499], + [55013,8688], + [51730,15540], + [37057,68581], + [48053,16893], + [20135,1525], + [28075,33114], + [27125,2191], + [13213,11382], + [48499,17784], + [27087,2343], + [17089,193299], + [55043,24320], + [51550,107521], + [53075,17589], + [26123,23105], + [31179,3808], + [49033,1006], + [29077,135695], + [54013,2429], + [47039,4763], + [42129,176873], + [12111,120579], + [40141,3237], + [13167,3644], + [36001,147266], + [18153,8782], + [37171,29525], + [46091,2191], + [13251,6481], + [26003,4750], + [49035,363749], + [48331,8357], + [17047,3350], + [45087,13551], + [48495,2032], + [55021,29272], + [54107,35990], + [48367,47951], + [5119,161343], + [48395,6710], + [25023,249817], + [29127,12553], + [55091,3771], + [54071,3395], + [39011,23486], + [39013,32411], + [1027,6819], + [17147,8999], + [29099,105704], + [47159,7741], + [26007,15085], + [51019,35830], + [27005,16965], + [8115,1351], + [13211,9151], + [12063,21565], + [6043,9651], + [47049,6739], + [19113,113355], + [51097,3705], + [47143,11106], + [48285,8223], + [38075,1346], + [42047,14271], + [40117,6596], + [47059,24670], + [48201,1171472], + [30089,5849], + [8065,3002], + [40029,2272], + [27133,4975], + [39095,219830], + [4015,67605], + [31091,438], + [25005,243120], + [13085,9974], + [5073,2902], + [17039,7801], + [28057,9951], + [18161,3348], + [19069,5148], + [6109,27181], + [55079,475192], + [18067,38624], + [48213,28993], + [39155,106911], + [18055,13629], + [48431,619], + [51167,11494], + [37125,45328], + [13139,59928], + [26093,99638], + [35053,7895], + [22007,10960], + [8041,273175], + [12127,243824], + [42051,52560], + [48193,3778], + [51193,8377], + [31005,263], + [39029,48487], + [45081,8603], + [48145,5599], + [5089,7162], + [22067,13200], + [51600,11398], + [26125,659068], + [48441,47439], + [30011,715], + [8063,3442], + [51650,67943], + [37161,28720], + [28145,12195], + [5105,4279], + [13145,14908], + [56031,4560], + [39019,13953], + [20061,8094], + [48033,361], + [48363,9890], + [22097,42493], + [55039,52323], + [48061,75657], + [26119,5360], + [32019,20931], + [8075,8977], + [20195,1671], + [29155,7047], + [51678,2479], + [29185,4988], + [29163,7881], + [21011,4543], + [31105,1811], + [8071,6761], + [18035,49863], + [37179,86089], + [46097,1218], + [42073,42103], + [29211,2869], + [18081,58644], + [20167,3293], + [51159,3745], + [37023,37443], + [54051,14000], + [21069,5832], + [1133,10031], + [41013,10352], + [37073,5420], + [30041,6624], + [31145,5044], + [21039,2617], + [31013,4979], + [22103,109542], + [53003,9780], + [46025,1940], + [29083,11159], + [5007,76073], + [54073,2974], + [17193,7453], + [41001,8777], + [47121,4237], + [47183,13690], + [28099,11402], + [13309,2210], + [12047,5587], + [8061,852], + [53013,2228], + [51079,8260], + [39173,65022], + [51085,56248], + [48329,46216], + [13037,2211], + [39139,61122], + [13013,24582], + [24013,84760], + [21031,5307], + [47031,20790], + [31021,3387], + [34025,312616], + [18109,28811], + [5085,23741], + [38091,1032], + [21051,7364], + [12103,463282], + [29115,5931], + [38023,1131], + [40113,19658], + [48323,10939], + [41065,11380], + [6113,79749], + [21115,8517], + [48399,3867], + [26043,13311], + [29145,25406], + [28155,5457], + [48239,5057], + [49005,41332], + [17075,13596], + [13207,12131], + [55065,7831], + [13149,4225], + [18089,208757], + [48435,1578], + [8009,2175], + [37043,5543], + [48433,735], + [28025,11092], + [8083,11825], + [13243,3215], + [27063,5623], + [31115,393], + [48309,79674], + [28095,17496], + [45027,15552], + [46099,80552], + [48095,1077], + [27071,6802], + [29061,3786], + [26101,13009], + [48083,3702], + [29085,5115], + [46085,1641], + [39169,52142], + [36065,94365], + [46063,734], + [18029,22217], + [1051,34315], + [51105,9227], + [19007,6176], + [51149,16006], + [12105,244833], + [39073,12961], + [19127,18657], + [13237,9132], + [28045,17056], + [13135,290271], + [53021,19696], + [40091,8223], + [17005,7924], + [19137,5287], + [13163,7234], + [55135,25511], + [13175,19937], + [36123,10280], + [8125,4483], + [40053,2350], + [48103,1454], + [17121,17364], + [27135,7700], + [30099,3272], + [33003,28910], + [54053,10603], + [47113,11289], + [47103,13130], + [29087,2633], + [28063,4478], + [17171,2600], + [47139,6501], + [46073,1105], + [36105,31183], + [21043,9813], + [45003,69770], + [46013,17426], + [31075,367], + [49041,8007], + [29049,10454], + [23025,25758], + [12027,10131], + [53065,22341], + [27101,4813], + [45031,29334], + [5129,3847], + [51127,9991], + [12083,162022], + [28101,9855], + [21067,127639], + [21021,12635], + [51045,2621], + [48047,2309], + [39105,10354], + [28021,5453], + [35013,69280], + [17141,24850], + [51067,25401], + [48091,48158], + [4013,1364962], + [30105,3911], + [37003,17254], + [26053,8264], + [28069,5223], + [24039,9924], + [13071,13435], + [12109,105844], + [12049,7412], + [36053,29802], + [54065,7276], + [6097,229351], + [53073,100339], + [50011,21460], + [55133,232897], + [19027,10387], + [47111,11437], + [48167,105004], + [35017,13755], + [38035,31153], + [8011,1920], + [20009,11023], + [39159,24928], + [54033,31870], + [1059,11693], + [42101,717329], + [41071,43526], + [30077,2814], + [27027,29259], + [5113,7681], + [29229,8514], + [48489,4903], + [17137,15353], + [4001,24262], + [49023,3616], + [42113,3120], + [37015,9763], + [5051,43719], + [40085,3846], + [20209,57169], + [48025,8157], + [30061,1995], + [16033,375], + [39069,14840], + [31009,316], + [8019,5767], + [54049,23603], + [34023,321015], + [25025,269221], + [19129,7282], + [17203,19483], + [46057,2787], + [18075,8315], + [39101,29017], + [36027,132302], + [8033,1217], + [51021,2959], + [48029,525715], + [51117,15082], + [27141,44990], + [19197,6395], + [6035,11387], + [54095,3741], + [20015,27873], + [37053,11102], + [38017,71419], + [26153,4326], + [46065,8468], + [48119,2187], + [48049,15015], + [51143,30433], + [30055,4567], + [55137,11849], + [56021,41625], + [13305,10560], + [21137,9151], + [36033,17520], + [21191,5802], + [28093,16478], + [24003,259619], + [18181,10767], + [51163,10195], + [38033,875], + [26023,18285], + [27089,4739], + [13263,3700], + [29177,11053], + [51069,33612], + [30057,1091], + [26129,10768], + [18049,9006], + [40089,10539], + [51735,7065], + [12003,11059], + [6089,80390], + [17133,18083], + [35011,1044], + [47129,6822], + [54003,37291], + [5127,3995], + [31037,3203], + [29179,3287], + [17149,7616], + [47175,2180], + [13033,9626], + [20199,804], + [28147,7780], + [48321,12373], + [36093,69842], + [21219,4941], + [6091,1991], + [35028,11069], + [13275,18459], + [48157,202822], + [18173,28665], + [31001,13210], + [54019,15192], + [31061,1552], + [18141,118389], + [31033,4839], + [10005,89070], + [20057,8864], + [20139,7544], + [13295,23542], + [39035,665352], + [27043,8152], + [32009,427], + [29107,16600], + [48477,14377], + [48081,1569], + [27031,3348], + [29089,4855], + [29131,11535], + [29069,11764], + [21001,7298], + [31107,4084], + [23021,9434], + [25003,66130], + [12073,148608], + [48155,538], + [31129,2221], + [26039,7178], + [37025,77994], + [16021,4733], + [28031,9461], + [48299,9629], + [11001,265853], + [38073,2433], + [46105,1686], + [18123,8490], + [41069,812], + [45047,29667], + [30091,2006], + [30013,35388], + [19185,2980], + [19171,8850], + [13235,3953], + [40095,5373], + [53037,17868], + [48251,50050], + [53063,219511], + [39171,18397], + [48463,8766], + [48283,1776], + [55063,63218], + [53015,45229], + [53033,922032], + [16065,13057], + [37169,21743], + [48217,13188], + [18103,14113], + [51520,7359], + [48425,3533], + [50023,32200], + [36085,166578], + [17067,9469], + [47053,21253], + [13047,24496], + [40023,5590], + [51147,9388], + [5083,7907], + [48371,4010], + [55057,11530], + [21071,15659], + [29093,4414], + [48249,11612], + [12057,513312], + [55033,22989], + [21129,2773], + [31015,1110], + [5019,9094], + [12085,78294], + [31045,3775], + [28157,5139], + [19141,7333], + [54023,4218], + [37093,15627], + [51087,154966], + [5071,8180], + [36077,26121], + [37165,14217], + [13313,27677], + [20093,1482], + [18101,4903], + [28061,9210], + [27003,182224], + [47043,19519], + [39009,31098], + [16043,5880], + [22011,14074], + [30075,1038], + [35006,9097], + [46027,6242], + [13245,79333], + [48137,1035], + [29159,18208], + [51181,4325], + [15003,306813], + [39129,23726], + [29203,3838], + [27123,277386], + [53061,320333], + [21045,5957], + [12053,87901], + [22069,17067], + [47137,2671], + [18007,3814], + [13269,3583], + [8093,9383], + [37115,10379], + [23009,32165], + [50019,12771], + [19013,64775], + [26115,76422], + [27049,25795], + [54031,5406], + [8027,2629], + [48121,243263], + [53025,27438], + [17041,8356], + [16073,4058], + [31127,3474], + [48355,101230], + [19035,6365], + [42089,68443], + [20023,1498], + [20203,1019], + [13121,404941], + [6017,92926], + [19045,24719], + [18019,47725], + [19125,17030], + [21197,4972], + [20087,8950], + [13127,33341], + [21109,5224], + [28055,950], + [31183,440], + [38067,3307], + [23013,22980], + [21215,8049], + [8045,23082], + [20081,1570], + [21003,7390], + [42107,63057], + [13153,55931], + [29029,22133], + [1025,13435], + [41005,191878], + [36025,20389], + [48207,2116], + [39103,90451], + [37185,10195], + [29067,6712], + [18157,68436], + [41041,23889], + [13315,3163], + [30059,966], + [20055,10354], + [36041,3411], + [17165,11428], + [31135,1420], + [5099,3635], + [16045,7947], + [53067,126709], + [42115,19286], + [37085,40705], + [20035,13787], + [37077,24725], + [26017,57428], + [34027,246916], + [26103,33185], + [31073,1048], + [51173,12302], + [48327,1018], + [19189,6082], + [13091,8212], + [18009,5441], + [54029,13220], + [37111,18386], + [50007,83440], + [32029,2392], + [18119,8170], + [48011,990], + [20169,22788], + [48127,3587], + [46015,2439], + [20115,6059], + [17119,128334], + [45019,154434], + [19017,12871], + [13265,990], + [18151,14146], + [47055,11689], + [45051,104798], + [12023,28128], + [32510,23463], + [40037,28505], + [27137,118814], + [47145,23276], + [46137,891], + [18167,43706], + [48123,6626], + [31165,732], + [48221,22596], + [41047,124563], + [39167,18802], + [21113,20214], + [13169,12438], + [19059,9906], + [37055,18048], + [23011,65986], + [48243,1236], + [25027,363594], + [48505,2866], + [24041,20328], + [37131,10618], + [22079,57521], + [29209,16387], + [25011,38529], + [51685,4140], + [28123,11671], + [30103,486], + [20183,2204], + [26035,14567], + [31153,68022], + [55017,30231], + [39043,41229], + [19181,24880], + [16049,8210], + [22077,12435], + [19193,44801], + [6115,21401], + [6059,1153687], + [13239,1114], + [13131,9365], + [26011,8128], + [46047,3809], + [29171,2339], + [21239,12297], + [26165,15704], + [29201,18026], + [44001,25807], + [49043,16809], + [13165,3440], + [19033,24140], + [26091,47734], + [13171,7688], + [31163,1572], + [12097,100670], + [53045,28306], + [38097,4041], + [24510,245968], + [54061,33377], + [17191,8071], + [47179,48982], + [13051,110238], + [36107,23131], + [30083,4516], + [50017,15179], + [17161,68401], + [12061,70591], + [8077,69631], + [31149,801], + [54067,9361], + [54089,5316], + [21053,4172], + [13055,8307], + [28159,10221], + [4011,2913], + [25013,197720], + [21099,6818], + [5047,6475], + [6101,32941], + [17065,4264], + [40111,14918], + [27119,15334], + [36035,21824], + [48135,35606], + [47155,33941], + [20153,1549], + [45023,13981], + [48139,53853], + [26107,18664], + [54105,2324], + [28135,6943], + [21073,24079], + [27047,17280], + [34019,69849], + [5131,43212], + [30033,727], + [42079,135175], + [42061,18632], + [13093,4160], + [48199,20702], + [19043,8989], + [12099,590500], + [46093,11606], + [20071,745], + [28139,9725], + [27115,14383], + [5005,19981], + [1113,18915], + [51157,4405], + [21187,4751], + [12041,7819], + [13089,322301], + [18047,10610], + [48457,7910], + [47117,18789], + [51029,6994], + [48453,397714], + [18163,77656], + [13187,11075], + [38005,2334], + [20133,7192], + [46043,1756], + [47101,4834], + [29227,1174], + [26045,57616], + [21123,6178], + [5107,8969], + [6039,42355], + [26109,11072], + [34039,222097], + [45045,190657], + [53057,55886], + [21027,8522], + [30019,1073], + [19039,4443], + [37191,49882], + [8123,105866], + [18113,16974], + [21013,9598], + [4007,22333], + [31023,3839], + [30043,6340], + [47157,404180], + [45015,64781], + [26061,15972], + [18115,2918], + [28097,5712], + [21185,29316], + [1033,24843], + [1103,50542], + [50005,14728], + [13287,3553], + [48491,158403], + [42023,2245], + [1063,5305], + [42091,422419], + [37087,28067], + [55071,42414], + [33009,49602], + [48013,9938], + [19117,4471], + [29113,23550], + [40139,6259], + [31057,1019], + [29109,16637], + [51185,17061], + [48235,817], + [39003,50263], + [51810,201249], + [13147,10002], + [39079,13993], + [20123,3203], + [21221,6527], + [31087,1379], + [27083,12708], + [42083,15947], + [21065,5314], + [51199,33897], + [13077,53549], + [26155,36415], + [55101,100642], + [42033,33813], + [19159,2689], + [18135,10808], + [26139,136268], + [38049,2416], + [26161,187115], + [9011,124874], + [31167,2495], + [48133,6509], + [36021,31433], + [26135,4328], + [49013,5744], + [12011,733899], + [19111,17224], + [26083,1410], + [1083,33551], + [48015,11721], + [31017,1567], + [53041,34705], + [46067,3608], + [5101,3960], + [42031,17766], + [40125,25663], + [26015,30565], + [27095,13544], + [19079,8078], + [29027,19321], + [46083,20767], + [35007,6384], + [8037,21652], + [40065,8983], + [48507,3876], + [32013,5599], + [55083,18968], + [42025,26923], + [8099,4615], + [28121,63103], + [28131,7246], + [18037,18565], + [19157,10031], + [26027,23576], + [21061,5270], + [40153,7754], + [41057,13297], + [28019,4128], + [37137,6712], + [29003,8790], + [45033,13417], + [6073,1231047], + [48161,7288], + [18159,7827], + [16051,10441], + [54011,34591], + [12065,7957], + [27117,4801], + [37027,35155], + [12067,3359], + [39121,6172], + [37197,17147], + [8121,2513], + [17081,17141], + [13297,36026], + [16079,5666], + [27017,18449], + [42041,113304], + [29125,4548], + [20107,4617], + [26051,13241], + [31125,1707], + [13219,17132], + [39053,13318], + [39045,71945], + [24035,24045], + [56005,16320], + [51177,54069], + [51023,17406], + [37155,40834], + [21199,25766], + [51043,7431], + [18125,6028], + [13079,5240], + [27059,20053], + [1001,23641], + [19085,7578], + [55047,9536], + [39113,278511], + [29197,1983], + [8021,3874], + [20005,7191], + [8119,12906], + [48383,994], + [48403,4874], + [24037,44409], + [27129,8135], + [17157,15202], + [21133,8235], + [55077,7846], + [26099,419216], + [30037,491], + [27109,76470], + [40035,5931], + [33017,63549], + [6047,63808], + [29011,5948], + [28067,29273], + [26075,74503], + [13279,9688], + [19003,2206], + [6029,232850], + [13083,6408], + [35039,16940], + [22099,24252], + [16009,4164], + [56003,5310], + [6067,541101], + [40003,2434], + [1091,11471], + [28059,54296], + [29121,7474], + [48413,1304], + [38021,2620], + [40101,26583], + [36003,18406], + [1111,10384], + [19167,16664], + [31049,993], + [42069,107876], + [19119,6217], + [42093,8023], + [48449,9245], + [25021,344916], + [54035,12225], + [47035,25712], + [48347,23391], + [13299,12416], + [8087,10234], + [39081,35939], + [48375,30013], + [46123,2839], + [31171,390], + [54015,3265], + [47167,25316], + [47011,38191], + [39131,12506], + [48215,130784], + [36047,759848], + [6045,40016], + [21189,1686], + [22049,7736], + [27121,6536], + [48353,5063], + [13249,1738], + [5125,44653], + [46111,1207], + [31071,1030], + [29217,8878], + [6093,21470], + [27039,10214], + [38013,943], + [29175,10624], + [6023,63727], + [1095,33166], + [30009,5746], + [18005,31043], + [20191,10337], + [39175,10977], + [42049,127691], + [13059,45510], + [38065,1040], + [51103,6938], + [20019,1852], + [40021,16380], + [48277,18362], + [20117,5036], + [31111,16277], + [24011,13218], + [17111,139268], + [17019,84143], + [40143,254496], + [31029,1844], + [48073,16417], + [46007,1208], + [17033,9129], + [1053,14674], + [18133,14646], + [39077,25582], + [26081,303235], + [37089,51614], + [53011,182764], + [42055,63641], + [1037,5563], + [54069,19540], + [32011,728], + [51800,39908], + [32017,2072], + [1071,20874], + [53059,5490], + [48069,2291], + [51007,6529], + [37195,37191], + [37149,10562], + [6055,59642], + [13069,13747], + [38061,2938], + [19031,9665], + [27163,137059], + [49045,17337], + [30047,13913], + [55061,10787], + [17143,81704], + [17115,51216], + [29215,10851], + [46051,3830], + [17103,16318], + [20063,1418] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-swing.json b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-swing.json new file mode 100644 index 0000000..6cbdcdb --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-swing.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2012 Presidential Election | Swing", + "description" : "Democrat/Republican swing (-dem/gop+) in the 2012 presidential election.", + "units" : "-dem/gop+", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "The Guardian" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2012.swing"], + [26041,0.0673459105413425], + [48295,0.795356835769562], + [1127,0.53512631280159], + [48389,-0.163726182074806], + [56017,0.567232105916425], + [20043,0.460694698354662], + [37183,-0.103883263572572], + [37147,-0.0677772676592117], + [48497,0.684365347845271], + [21207,0.629059170838147], + [5053,0.533989834815756], + [31147,0.342068580986897], + [47123,0.456885296860429], + [36059,-0.0673930138369574], + [1011,-0.529012810851545], + [42057,0.573144643738687], + [20031,0.527777777777778], + [31151,0.0602105263157895], + [31035,0.539478260869565], + [28033,0.337972166998012], + [22061,0.149052361066495], + [40129,0.675029868578256], + [22057,0.496079207920792], + [40135,0.390817957286067], + [51153,-0.162167947186986], + [23031,-0.167152252517296], + [23015,-0.119611535031216], + [47025,0.515820895522388], + [29063,0.438117647058824], + [42045,-0.220438767009164], + [12119,0.35112943171052], + [36055,-0.177148321572248], + [18045,0.352096329609749], + [39063,0.288453120896437], + [34009,0.0900925945726323], + [28047,0.26941269215609], + [5141,0.409825468648998], + [48343,0.269578905942542], + [30073,0.264516129032258], + [47181,0.570373106760251], + [48153,0.468659594985535], + [46119,0.533249686323714], + [19097,-0.169785031847134], + [28087,0.01481420854477], + [17155,-0.0189666448659255], + [45073,0.432945865161076], + [36101,0.166776156065237], + [37143,0.162627648224356], + [28035,0.118899992705522], + [31027,0.544824288787951], + [13141,-0.624108241082411], + [39091,0.324880668257757], + [39059,0.0988339464987218], + [48297,0.550147492625369], + [47151,0.557923580453646], + [30027,0.44540964060637], + [35021,0.112627986348123], + [23027,-0.109942497665504], + [49007,0.373685706166525], + [20053,0.46482122260669], + [27113,0.0442477876106195], + [27159,0.248831951770912], + [18131,0.278632478632479], + [38041,0.522501906941266], + [28003,0.523487151146726], + [19143,0.419910657306956], + [50009,-0.136632200886263], + [1015,0.322730053307699], + [13253,0.206776015057811], + [6105,0.0114846523282524], + [17181,0.224585703685382], + [31055,0.0436361884574621], + [51670,-0.161637689287717], + [20095,0.528691166989039], + [21209,0.254663302162189], + [48467,0.67328988502093], + [31177,0.376907630522088], + [29199,0.31921651667549], + [47027,0.255028735632184], + [55111,-0.186673851713317], + [48045,0.662337662337662], + [45007,0.369703988249915], + [48125,0.57185332011893], + [19173,0.142468548112887], + [37193,0.432330958981017], + [27081,0.0549305095962938], + [48369,0.583103039873668], + [1005,-0.0292674377847879], + [42125,0.134355538568763], + [51035,0.409332545776728], + [47033,0.387635296275913], + [39021,0.204593962801098], + [36049,0.0877380697624652], + [29143,0.207100591715976], + [51135,0.00962535169554268], + [26089,0.0645138345543779], + [48275,0.554959785522788], + [51073,0.284270673509338], + [35051,0.197301165405847], + [6069,-0.17485854523144], + [41051,-0.568105075802371], + [51610,-0.400867496851826], + [48195,0.837532133676093], + [13025,0.681802778719078], + [27079,0.0664270408515932], + [36061,-0.704994889434288], + [18073,0.2599984160925], + [21183,0.368298614782701], + [21081,0.33679490205334], + [5025,0.464851171627612], + [27055,-0.0322517591868647], + [37129,0.0471486660716056], + [26013,0.0848837209302327], + [48189,0.484557547715442], + [20171,0.725291434363913], + [48211,0.742281879194631], + [15007,-0.505553536087887], + [54047,0.306631211567226], + [22043,0.665765024109138], + [39143,-0.0197631330378552], + [48465,-0.0551393214917081], + [48279,0.507646768623582], + [37041,0.04946469711343], + [38085,-0.602849510240427], + [39115,0.061611374407583], + [1057,0.539874952150057], + [22017,-0.0498925238306865], + [13191,0.0869912210694335], + [51109,0.139762317405298], + [46121,-0.597413096200485], + [31085,0.808795411089866], + [55113,-0.00515810719892351], + [6083,-0.175644289450741], + [51820,0.110492753623188], + [28049,-0.454425445019698], + [44003,-0.1871897771676], + [21229,0.353601859024012], + [37065,-0.364768350596418], + [27029,0.147373540856031], + [17061,0.260193819711099], + [21029,0.362406880455287], + [51071,0.261163734776725], + [20083,0.656038647342995], + [20045,-0.243872113676732], + [40097,0.332872163807416], + [22105,0.281179644240716], + [36013,0.0835958832178114], + [25007,-0.480826507818317], + [20127,0.425661914460285], + [48141,-0.330327626044197], + [30025,0.652685798381163], + [55019,0.0899977887521191], + [19165,0.225239365876629], + [13103,0.518702513150205], + [55011,-0.0313538505996244], + [31051,0.334608030592734], + [41023,0.546985334057577], + [24033,-0.815571918141302], + [29219,0.273575057415269], + [36051,0.0963110502510478], + [48391,0.248776815957847], + [22013,0.0211751507502453], + [22023,0.777535441657579], + [17045,0.33324661810614], + [21047,0.240392138813458], + [13193,-0.350294365012616], + [1003,0.564119332707102], + [38105,0.511893333333333], + [19105,-0.0784275376491297], + [22095,-0.267237234349457], + [32031,-0.0363746672715447], + [20187,0.617563739376771], + [18139,0.35191129267581], + [29037,0.289181749937443], + [38057,0.459119496855346], + [55035,-0.137454491418382], + [29079,0.428571428571429], + [47077,0.493456814978861], + [35029,0.0112079701120797], + [47173,0.487482614742698], + [48005,0.443164853913414], + [46061,0.363217427733557], + [48271,0.255349500713267], + [39031,0.0970764865043226], + [40043,0.709178743961353], + [6065,0.00427868736169534], + [30109,0.887892376681614], + [48325,0.396551724137931], + [9005,0.0371745578380753], + [20039,0.641750841750842], + [13015,0.524098779449333], + [8051,-0.189985656539314], + [30045,0.434343434343434], + [17099,0.00398009950248746], + [40103,0.506268914829226], + [53001,0.34471579857359], + [19109,0.124742504005493], + [51001,0.0352347935707533], + [19075,0.233137829912023], + [23005,-0.278311232078995], + [37099,0.0105677070533301], + [39119,0.0710892384718231], + [17177,0.0471969333972209], + [8053,0.213793103448276], + [40093,0.716465352828989], + [48171,0.66747572815534], + [6061,0.204990856569514], + [27153,0.164673253596811], + [39041,0.240235093732586], + [16071,0.788807785888078], + [21035,0.279555314533623], + [12013,0.448092868988391], + [36009,0.136932216523376], + [18069,0.405356449734765], + [39099,-0.281], + [48059,0.707041154671348], + [47165,0.424601084430674], + [46109,-0.100119474313023], + [17185,0.372456036356451], + [20121,0.354501775642365], + [27147,0.064323714331775], + [51063,0.261920842901527], + [16027,0.381458706312758], + [45041,0.00552910191338318], + [29073,0.399771232484987], + [16013,-0.206726412244487], + [31141,0.525961096645734], + [42027,0.000296850417074834], + [13123,0.640459770114943], + [12039,-0.408108590819789], + [48175,0.341128325051155], + [5143,0.168877204383659], + [41019,0.284670306593868], + [19179,-0.119469888910544], + [29151,0.567186121728903], + [28009,0.000986193293885496], + [48179,0.757965267332148], + [13009,-0.05506415846518], + [13023,0.478153338829349], + [47071,0.523423162368396], + [32023,0.251450906076039], + [39057,0.221487624041851], + [47081,0.276949926164586], + [48473,0.177196477922746], + [55117,0.0946071075066253], + [8015,-0.00181524808390476], + [21161,0.236411842686699], + [41039,-0.241884751662833], + [13003,0.351464435146444], + [9013,-0.12762292964377], + [40045,0.749028317601333], + [13053,0.00411522633744865], + [22085,0.558062241917615], + [55099,-0.000386548125241637], + [20175,0.430032733224223], + [28141,0.57805797478227], + [18083,0.295417789757412], + [37011,0.508257365570089], + [22015,0.459544022861434], + [39085,0.0171844547873523], + [5069,-0.294427347892181], + [30035,-0.333652694610778], + [31143,0.56319933692499], + [55093,0.00825402990872015], + [51057,-0.0725360898235609], + [48051,0.465181932245922], + [13221,0.379198442317053], + [5031,0.318901135055108], + [21041,0.101984564498346], + [13273,-0.162174508908177], + [42011,0.00598437344480929], + [18013,0.172488491741132], + [38077,0.138187221396731], + [42017,-0.0117981196548685], + [16015,0.411183194315725], + [36111,-0.224441166458641], + [29095,-0.192750777341047], + [49055,0.672307692307692], + [20165,0.522486772486773], + [41061,0.317288546446195], + [29186,0.0307574987290289], + [30101,0.42433234421365], + [37157,0.21518188657267], + [5137,0.471241957496588], + [39123,-0.041370664437944], + [29081,0.454545454545455], + [27173,0.0646936065262758], + [5041,-0.13125], + [27023,-0.0191735537190083], + [47095,0.136297020029311], + [22025,0.321772639691715], + [48021,0.174169772603543], + [39161,0.412548667265648], + [12123,0.387125416204218], + [13133,0.226579520697168], + [56013,0.349832368180433], + [36113,-0.0210645173850407], + [19049,0.119159065985503], + [8111,-0.112970711297071], + [53007,0.172571050892267], + [51093,0.14807065349618], + [18105,-0.169421804338384], + [51077,0.392603335750544], + [48429,0.717765894236482], + [8007,0.184601113172542], + [8001,-0.15448549315643], + [26001,0.183822310624896], + [37119,-0.227144459932683], + [21165,0.17219589257504], + [54083,0.298153034300792], + [48411,0.710053859964093], + [54077,0.457841405596356], + [1039,0.587662549826831], + [15001,-0.524889317279574], + [5061,0.324386857936141], + [35023,-0.0524086818422446], + [26151,0.206295053100754], + [46031,-0.113597246127367], + [42121,0.267637397656518], + [39163,0.0803088803088803], + [13241,0.573792914785939], + [48337,0.70842586544742], + [13281,0.585177898016068], + [19021,0.105090511480987], + [29169,0.368143856745166], + [5057,0.269333333333333], + [27067,0.0680921834164885], + [39027,0.359268264443673], + [41031,0.171231123624264], + [38089,0.5041541453067], + [54017,0.573721537887271], + [21127,0.448776065276519], + [26047,0.173246366861197], + [53009,-0.00419604872078794], + [45021,0.296565164433618], + [27145,0.12359110321679], + [51570,0.400566171266808], + [28023,0.241912798874824], + [24017,-0.317421814086459], + [5117,0.420356906807667], + [48031,0.49763228330245], + [21169,0.3050475493782], + [36091,-0.0213886421817042], + [17015,-0.0148425579137189], + [42065,0.460857159840694], + [28015,0.330304559986539], + [12019,0.462194879936495], + [12115,0.074910739476014], + [12071,0.166666666666667], + [29205,0.387444514901712], + [51099,0.19198483617655], + [5023,0.537005924484924], + [27011,0.0146520146520146], + [5079,0.213911123378416], + [21225,0.341252333276769], + [37033,0.0270321006194856], + [42035,0.115557698489232], + [31031,0.708653524891413], + [6021,0.262494371904548], + [56033,0.478862081382787], + [31003,0.638149556400507], + [20109,0.696400625978091], + [21227,0.221792586075158], + [16059,0.518676359989972], + [29141,0.347989654361627], + [47091,0.513291762389235], + [13081,0.138847254394332], + [16031,0.734805289336407], + [38083,0.596491228070176], + [17087,0.431826401446655], + [9007,-0.161657603418139], + [12069,0.172974094373841], + [35037,0.227069351230425], + [48129,0.701058201058201], + [5059,0.29905599853359], + [1105,-0.501986754966888], + [47187,0.473522473976931], + [32021,0.111682964487905], + [47073,0.477340458329052], + [18175,0.251221147399674], + [51013,-0.404330037799171], + [37103,0.0949612403100775], + [8081,0.562891484679194], + [51121,0.00258087148262298], + [48483,0.780094786729858], + [20033,0.68561872909699], + [47109,0.452398218170517], + [26071,0.090847572322788], + [46011,0.0326276463262765], + [18171,0.284517697919481], + [21057,0.574422735346359], + [29031,0.445858055682337], + [38043,0.377672209026128], + [4012,0.3287728026534], + [37007,-0.251293220800436], + [48205,0.805629314922995], + [12095,-0.183839718185821], + [21091,0.0936959208899877], + [41035,0.392401283869523], + [54057,0.460990211916754], + [22113,0.535631623827506], + [26113,0.344574146130566], + [5037,0.303803268672675], + [9015,-0.135525365885673], + [29075,0.358877865206979], + [28091,0.29997260524153], + [33011,-0.0170138575765774], + [19145,0.252671094426798], + [37135,-0.427876259993048], + [47067,0.525474525474525], + [20011,0.346726937887159], + [8085,0.372136687945926], + [18107,0.394233514130745], + [13011,0.745923026744945], + [35025,0.508339376359681], + [54041,0.433421226104153], + [29065,0.509894867037724], + [28115,0.542993107975057], + [48071,0.617632900075648], + [37059,0.440949554896142], + [35001,-0.170790494183156], + [12035,0.0749850508271877], + [29123,0.340394600207684], + [35041,0.402190923317684], + [48231,0.51812984005211], + [18095,0.0459547684669364], + [48361,0.549240665826646], + [30039,0.35], + [48035,0.622599806603122], + [21111,-0.112825371586382], + [6001,-0.61531725357241], + [40105,0.389597644749755], + [48169,0.64109232769831], + [20185,0.548459383753502], + [26025,-0.0161783085682544], + [19051,0.168447000821693], + [29157,0.443779447344964], + [47177,0.255507644061153], + [42003,-0.146261039912421], + [36073,0.197597686661229], + [4027,0.16331096196868], + [28111,0.460294901403447], + [9009,-0.25027854623324], + [35045,0.294398092967819], + [42127,0.212540519618753], + [21177,0.23864996409479], + [49037,0.186266771902131], + [26037,0.0629363423242393], + [51590,-0.223273746933053], + [20067,0.59889857732905], + [12087,-0.00409050898358621], + [29035,0.448023426061494], + [5001,0.22659943271352], + [40069,0.399682371625199], + [37107,0.0152325452734849], + [48209,0.107479175800088], + [4005,-0.152088258471237], + [20143,0.60968660968661], + [48437,0.48141513658755], + [41063,0.381422924901186], + [19091,0.223450454007106], + [22091,-0.211332093289455], + [48185,0.448349056603774], + [40051,0.51219512195122], + [31095,0.290631547440886], + [39127,0.0446534308603275], + [48233,0.73414976400051], + [13099,-0.0387363670552839], + [16057,-0.0451085246932997], + [56045,0.739747147702744], + [46053,0.431149097815764], + [49029,0.820297951582868], + [22021,0.563573883161512], + [46017,-0.479623824451411], + [19133,0.0982162045991832], + [16017,0.272401634297868], + [42095,-0.046452485191862], + [51690,-0.250202691746392], + [40131,0.50126782452218], + [55119,0.196195768326566], + [17145,0.180880773361976], + [27021,0.132722099272842], + [48417,0.805782060785767], + [48339,0.615032166586592], + [6099,-0.00756289330612592], + [47013,0.442199681448571], + [27085,0.227229890792173], + [30017,0.295344794282403], + [48165,0.733764618064195], + [35057,0.186520640269587], + [33007,-0.178124797511825], + [47135,0.228015564202335], + [6111,-0.0541906135751303], + [40099,0.401476875242907], + [20201,0.634103019538188], + [48245,-0.0160746812386157], + [18057,0.348952681106635], + [19041,0.189345546583102], + [47015,0.359079704190633], + [1049,0.555432890323129], + [42067,0.458413512935643], + [26105,0.0501523967858133], + [34003,-0.109546735792302], + [48017,0.482796892341842], + [17013,0.142970611596505], + [40061,0.446277097078228], + [27015,0.170106132075472], + [45057,0.181740143479061], + [21149,0.307710901619531], + [22107,-0.119541875447387], + [28113,-0.0762290341237709], + [25019,-0.27324131049393], + [13321,0.404550898203593], + [26097,0.123015873015873], + [51089,0.150996212744937], + [1009,0.750147666863556], + [13303,-0.0769054703593499], + [4019,-0.0593047861269006], + [38025,0.503774534474082], + [21019,0.166514818586205], + [8069,-0.0538977591214032], + [51037,0.139170824015139], + [29117,0.355209742895805], + [48315,0.294759307564619], + [51101,0.241591608710523], + [28077,0.268672674507408], + [45077,0.500213449569731], + [21025,0.35983606557377], + [51540,-0.544237706474274], + [17189,0.323289564616448], + [29135,0.490413563619078], + [24001,0.337162634854008], + [27025,0.128795520155821], + [29181,0.456703638840241], + [48419,0.495428820200261], + [17183,0.160360079498071], + [48067,0.499314364072677], + [26067,0.130373001776199], + [26085,-0.0505821721702615], + [17071,-0.124893314366999], + [39033,0.231990622335891], + [21101,0.119921683798336], + [13283,0.212969786293294], + [22035,-0.333333333333333], + [49011,0.630284208715493], + [13271,0.157599813215036], + [51195,0.49283396430503], + [48037,0.418455915943353], + [48241,0.489419180549302], + [47075,-0.213498073601701], + [1045,0.425386121383511], + [40123,0.387942434850253], + [22027,0.0953024163289808], + [29041,0.284148623362737], + [45055,0.188435144560693], + [51015,0.428467727300224], + [6085,-0.431397079981484], + [29055,0.371124134256793], + [39007,-0.124198364909189], + [13173,0.241095890410959], + [13161,0.517188983855651], + [18033,0.322836613558263], + [42081,0.337456682896872], + [48225,0.446371067624474], + [38059,0.319884287454324], + [42063,0.19061534138803], + [39165,0.400993119502877], + [31137,0.587944431363315], + [42043,-0.0608937024461573], + [20091,0.181650595036736], + [25001,-0.077426273458445], + [19073,0.000843525938422518], + [6025,-0.293198563441816], + [19065,-0.12018051604042], + [37001,0.141870921835496], + [18065,0.174697815599762], + [26079,0.199510104102878], + [16077,0.311360448807854], + [46029,0.186813186813187], + [46117,0.419225634178905], + [40115,0.29650055148902], + [39097,0.207803724504877], + [45083,0.234216953149124], + [8091,-0.0546623794212219], + [37081,-0.166444174514025], + [16075,0.451117824773414], + [17011,0.00202839756592299], + [5049,0.340149965916837], + [30063,-0.192404404751582], + [1065,-0.25517081106205], + [48105,0.331941544885177], + [13125,0.731502669717773], + [1099,0.0783852451303284], + [30001,0.414093083949543], + [17163,-0.147294150001289], + [29147,0.276212207644039], + [5135,0.403308613804906], + [54009,0.114469882196043], + [21117,0.248401303088803], + [48257,0.448197343453511], + [16085,0.119562933389368], + [26021,0.066188576052683], + [36089,-0.169015766841854], + [37189,0.0273867975995636], + [36117,0.0950345281157514], + [8023,-0.499146272054639], + [17049,0.528324972470329], + [51059,-0.20028714673244], + [39001,0.268676526355707], + [17135,0.145297699594046], + [36031,-0.152641878669276], + [12037,0.318559556786704], + [39109,0.362872359814504], + [53039,0.0804331826306381], + [41009,-0.0532728566346496], + [1101,-0.243986729333702], + [29039,0.480290982913213], + [17097,-0.0818921977006079], + [5017,-0.226672840935402], + [13107,0.270705808869457], + [27093,0.163608820063962], + [17043,-0.0104365006244498], + [26121,-0.179956982394647], + [36109,-0.411122976132067], + [21083,0.403515676242949], + [48317,0.688328075709779], + [6053,-0.346684201617209], + [13247,-0.165304002769714], + [13109,0.283328615907161], + [29097,0.419835571761828], + [40039,0.518775510204082], + [22001,0.504794261985655], + [42123,0.163566705802385], + [54091,0.328819444444445], + [48493,0.433858082706767], + [55051,0.00140016802016252], + [37113,0.310436731479799], + [5115,0.485106597449725], + [1131,-0.487696775179581], + [13137,0.681966078227761], + [8095,0.471460674157303], + [42013,0.339969372128637], + [5045,0.325624191783547], + [5139,0.267448749851878], + [20003,0.411247251021049], + [30005,-0.15504156125768], + [31093,0.348074179743224], + [55059,-0.124041113060917], + [48291,0.538133333333333], + [45037,0.134715928895085], + [38053,0.451421800947867], + [34035,-0.0525699970748611], + [32007,0.547767828383689], + [55045,-0.175803402646503], + [12051,0.0597664753611715], + [36069,0.016472980153871], + [20007,0.575022461814915], + [35015,0.344982847341338], + [16061,0.495219885277247], + [24045,0.0705797910519179], + [48187,0.355974739267274], + [51720,0.225188227241615], + [46003,0.182352941176471], + [8067,-0.0908498388673643], + [51710,-0.445183069332641], + [16035,0.422334172963896], + [36045,0.0295345307361499], + [33005,-0.251927639383155], + [48481,0.394351090454058], + [26065,-0.281448981531346], + [19099,-0.071802386435001], + [6033,-0.171752062943773], + [22125,0.143208143208143], + [38051,0.38544474393531], + [55041,-0.05421293272371], + [53055,-0.388044782087165], + [27007,-0.101654625961314], + [51053,0.0260724571775048], + [38063,0.058968058968059], + [20065,0.61609907120743], + [36043,0.0857067741652791], + [13113,0.317633205769797], + [23007,-0.191511188048984], + [38037,0.507073715562174], + [40017,0.54351217820924], + [13061,-0.232308791994282], + [51770,-0.22215181154429], + [13201,0.383720930232558], + [48163,-0.207623888182973], + [17175,0.164759725400458], + [48269,0.930555555555556], + [30111,0.212096677461917], + [31119,0.491315511252077], + [44009,-0.171865032734598], + [31133,0.387470997679814], + [46037,-0.0628328008519702], + [17093,0.0419234676600069], + [19029,0.191850594227504], + [4017,0.0849003171726326], + [16005,0.227793361383824], + [47099,0.435330179249684], + [8101,-0.134004215110193], + [8043,0.326541989762303], + [12043,0.187737522168736], + [13095,-0.392244355909695], + [13155,0.379140432521216], + [31063,0.45021645021645], + [36039,0.11341477081699], + [22055,0.343372435533047], + [39065,0.241035182679296], + [56043,0.58287365379564], + [55107,0.0399207248018121], + [27045,-0.0752870318087709], + [29051,0.342139157600504], + [13087,0.118891881492882], + [17057,-0.113876622507694], + [22045,0.265332081528817], + [46023,0.201293451899758], + [46069,0.475], + [13291,0.608177484415108], + [17117,0.0721902796206202], + [21063,-0.0259515570934256], + [35055,-0.627875042911088], + [46039,0.110586011342155], + [19023,0.105454545454545], + [37173,0.0639971397926349], + [48307,0.636671177266577], + [40079,0.411497157296273], + [28043,0.0622613020694556], + [48223,0.559838210801808], + [21049,0.310244739098885], + [42131,0.125170439050995], + [20111,0.122330097087379], + [47069,-0.0594605046891618], + [54043,0.325993883792049], + [13151,0.0326185139339601], + [20101,0.623059866962306], + [48173,0.845614035087719], + [6081,-0.457313778463914], + [38011,0.512137359384251], + [51027,0.350682056663169], + [56011,0.758981612446959], + [17201,-0.0579715227607491], + [51630,-0.273997134670487], + [48289,0.691255638003783], + [55123,-0.150078762709437], + [17129,0.306176519291273], + [48333,0.741786210087922], + [21005,0.345960343296833], + [37121,0.52293094359515], + [19183,0.0432162696544582], + [31059,0.42588575560376], + [16025,0.433155080213904], + [17199,0.254648796575679], + [45039,-0.319192435471505], + [1079,0.273184759166068], + [12055,0.232173851018807], + [19077,0.104555768895095], + [31157,0.384287812041116], + [29221,0.190963139120095], + [53077,0.153866223135375], + [29119,0.495665878644602], + [21077,0.173564753004005], + [48501,0.611770289511153], + [42103,0.111130533583883], + [29057,0.510172143974961], + [48401,0.515537414965986], + [20141,0.638009049773756], + [19187,-0.0561107699179275], + [42075,0.283759554590922], + [20099,0.205889950917076], + [48079,0.433628318584071], + [24025,0.199385603092695], + [12015,0.14415144723666], + [13027,0.0635663596557452], + [29071,0.284801931306924], + [41055,0.362173038229376], + [6057,0.0479019928564275], + [47041,0.31196445572834], + [26111,0.15600405581575], + [34013,-0.55931960864977], + [21159,0.694192860948322], + [19093,0.266907876426385], + [39093,-0.14696014154926], + [45009,-0.354933726067747], + [47147,0.360663324334747], + [47169,0.13061797752809], + [29183,0.213301922971566], + [54021,0.311203319502075], + [37095,0.0111111111111111], + [47107,0.475770172541427], + [21163,0.231543624161074], + [20079,0.236051502145923], + [55049,-0.306184985081848], + [36103,-0.0289828484138246], + [51740,-0.400642496558054], + [46045,0.340402969247084], + [16081,0.121350364963504], + [13233,0.461733552140833], + [39153,-0.150270084347615], + [53043,0.418649744403314], + [51840,-0.0145534290271132], + [53005,0.276266715182389], + [13129,0.586273329319687], + [27151,-0.100620124024805], + [19089,-0.21359649122807], + [19139,-0.158068680609347], + [49047,0.824500592903402], + [18121,0.33501736659299], + [4009,0.382403286545703], + [21037,0.232960325534079], + [8005,-0.0849177898383834], + [37187,-0.186118892001245], + [55097,-0.141083025018758], + [29007,0.272315919374743], + [27033,0.153591929031136], + [51107,-0.0453495347620202], + [51137,0.147325307186298], + [31101,0.534883720930233], + [8047,-0.168241965973535], + [21153,0.405887230514096], + [39071,0.313020709354916], + [55025,-0.441461880286969], + [51111,0.050415708473377], + [53049,-0.11801730920535], + [27009,0.140679213542214], + [42099,0.394682570648236], + [5013,0.376770538243626], + [20137,0.650355871886121], + [40147,0.478088589084391], + [23019,-0.0294928920008487], + [39005,0.30641839711687], + [27073,-0.00920245398773001], + [8107,-0.159058823529412], + [29139,0.335632183908046], + [54087,0.213221791471128], + [5055,0.387936313533374], + [27013,-0.0981862152357921], + [40019,0.426752336448598], + [20073,0.505115574081091], + [17059,0.184126984126984], + [42059,0.178684773784043], + [28007,0.138618925831202], + [51183,-0.247439955315584], + [55131,0.405588027490526], + [27099,-0.231969889854431], + [1119,-0.547466095645967], + [1085,-0.53232902279696], + [48109,-0.316279069767442], + [17063,0.0915825900472778], + [47023,0.484588496981252], + [46071,0.216191352345906], + [24005,-0.167080672041541], + [48439,0.159436385552184], + [38071,0.103090645094379], + [20113,0.425613171518289], + [20089,0.688581314878893], + [41067,-0.179541382677195], + [40049,0.460645705845115], + [13189,0.150693568726356], + [47021,0.375954965822276], + [36067,-0.214896129314017], + [8014,-0.0600929403526641], + [18025,0.0847913862718708], + [28041,0.547240731248932], + [39089,0.149470132335108], + [19019,-0.141117340034796], + [37181,-0.284167794316644], + [22065,-0.223903764066744], + [13185,0.105969603593252], + [8013,-0.425765186881327], + [20163,0.688697692608526], + [37021,-0.125603437889072], + [48177,0.407617774807885], + [12081,0.125844883360072], + [46081,0.277505000909256], + [21181,0.250888976689056], + [38029,0.577495863210149], + [20125,0.423834898080014], + [27035,0.136210680321873], + [36071,-0.0522561444678421], + [36081,-0.589822781086845], + [31181,0.480825958702065], + [20173,0.201618100630668], + [13301,-0.21272365805169], + [55007,-0.252338391186863], + [36079,0.113808424553826], + [28153,0.192624558650451], + [27091,0.243021193165904], + [51036,-0.330134357005758], + [55069,-0.00660572496163336], + [48097,0.683190722014002], + [23029,-0.0168231611893583], + [47163,0.479764069963115], + [19061,-0.147097162338314], + [21155,0.0529232474369632], + [51191,0.438791291589007], + [35009,0.396307034945826], + [6049,0.428057553956835], + [51033,-0.0827987468297777], + [51141,0.398681428038313], + [19161,0.18623870843744], + [17131,-0.075086546496359], + [55005,0.0237710800143522], + [26127,0.104052380109715], + [16063,0.453503184713376], + [29053,0.327808721641081], + [53047,0.15245769540693], + [1107,0.0701369290268632], + [41017,0.0751437446302294], + [46035,0.219599794766547], + [41033,0.225774666148062], + [17035,0.362611737271667], + [40067,0.461056401074306], + [17123,0.145495730963582], + [35031,-0.478419862387528], + [28127,0.222359430312011], + [31039,0.475858507616834], + [51640,0.193548387096774], + [46095,0.00793650793650791], + [19121,0.123], + [18015,0.309811122770199], + [51165,0.412304276700164], + [47085,0.137383038764295], + [12113,0.532255090482839], + [46089,0.544006705783739], + [18043,0.14602139993655], + [51009,0.200975411501727], + [12017,0.22163862672685], + [30093,-0.334736320871503], + [16003,0.420100502512563], + [31099,0.509348807221148], + [39037,0.457195647710942], + [24021,0.0403816951313249], + [51510,-0.443687275430554], + [48101,0.508867667121419], + [27037,-0.0298450608151803], + [46059,0.367088607594937], + [47063,0.470320097244733], + [40013,0.444540523543747], + [13075,0.316599732262383], + [54097,0.465652661762872], + [54045,0.405683867090238], + [48385,0.633840052875083], + [51003,-0.121736668239736], + [51011,0.3704606698319], + [47079,0.307409773235388], + [21033,0.356497567755386], + [48131,-0.545707656612529], + [19103,-0.360291122396328], + [29043,0.473681386489242], + [21237,0.224781572676728], + [49051,0.531344284277573], + [38045,0.30175272382757], + [29001,0.144942225826069], + [40127,0.494915254237288], + [29017,0.542867910307141], + [1121,0.161323462758725], + [28085,0.313397129186603], + [18145,0.343866740155552], + [31019,0.435099763999142], + [30023,-0.328169014084507], + [26005,0.193944505008536], + [6079,-0.010117822259209], + [47185,0.378297161936561], + [48281,0.586079545454546], + [26117,0.0875274396328079], + [39087,0.157784491440081], + [5063,0.453636590852287], + [46033,0.392767796224699], + [12121,0.454795935939384], + [37133,0.272636016864084], + [54025,0.254261589931496], + [48261,0.0060606060606061], + [1089,0.189380972055535], + [22059,0.764560862865948], + [13205,0.00874423123633705], + [5133,0.501077328226], + [55125,0.132006439338504], + [48159,0.642516682554814], + [41059,0.289500083598061], + [51051,0.26712125704121], + [8057,0.470588235294118], + [31155,0.344462215113955], + [8079,0.0834645669291338], + [47161,0.177662957074722], + [32003,-0.147522704048057], + [36057,0.0449009271041629], + [29129,0.560945273631841], + [38079,-0.50911956766494], + [34017,-0.563081900631594], + [41021,0.263888888888889], + [37075,0.421980300673924], + [16053,0.477471936029525], + [13005,0.592583054339428], + [37063,-0.532302769610767], + [28105,-0.019164868638152], + [17027,0.305911636589919], + [51161,0.259856800105794], + [38099,0.140247615181652], + [20207,0.46410803127221], + [40071,0.426373899019973], + [34033,-0.00844087896756196], + [28029,-0.115137437088657], + [48423,0.473528746173728], + [39151,0.00371669975529798], + [19153,-0.143718261381318], + [21007,0.380083420229406], + [28027,-0.505042016806723], + [28079,0.0867800050748542], + [41053,0.0487657673969462], + [22117,0.287245384658549], + [26145,-0.120056031641397], + [48313,0.517034068136273], + [28129,0.506975585450922], + [18063,0.354818982387475], + [29225,0.416639089284532], + [6095,-0.286608795698766], + [37005,0.364297253634895], + [47061,0.208987678183136], + [46113,-0.879099678456592], + [31081,0.518440016956338], + [25015,-0.451577299211992], + [13143,0.650498728730687], + [40055,0.467248908296943], + [37049,0.179119663791197], + [36099,-0.0939569189506329], + [45001,0.135762224352828], + [42037,0.126565838535339], + [56029,0.586611115034249], + [26137,0.199076054410129], + [15009,-0.513121372697452], + [13049,0.357142857142857], + [21175,0.376309794988611], + [35027,0.339195130199527], + [30071,0.563686892079667], + [35003,0.45150172328902], + [13217,-0.0201994255423488], + [26009,0.215755528255528], + [37067,-0.0727765644121488], + [12033,0.207846075259663], + [5147,-0.0440202571094663], + [28081,0.29256615854554], + [10001,-0.0501189789976204], + [48359,0.834305717619603], + [46125,0.316044595249636], + [37117,-0.0441612567123507], + [18129,0.242180966716842], + [26095,0.224306688417618], + [6015,0.112388917929953], + [27169,-0.132275132275132], + [8017,0.682352941176471], + [29161,0.344525464925668], + [30053,0.407614390499476], + [1093,0.623440770196735], + [13293,0.292739628040057], + [42053,0.214065934065934], + [16069,0.214155195517115], + [55105,-0.234350282485876], + [27057,0.172242874845105], + [46101,0.0357624831309042], + [47093,0.297655559281729], + [21151,0.294607843137255], + [48267,0.76963906581741], + [17159,0.336146272855134], + [6075,-0.725265771582971], + [26157,0.109862385321101], + [48407,0.493431424067262], + [39061,-0.0499923204947113], + [30087,0.158553942499288], + [54101,0.290517567057046], + [13157,0.637297713845364], + [13317,0.116397621070518], + [20025,0.644490644490644], + [37139,-0.160246712440358], + [37097,0.308158831291737], + [21119,0.488288288288288], + [49015,0.7360853432282], + [48293,0.410885805763074], + [40109,0.16662830570694], + [48181,0.486914269219667], + [48183,0.398258579059047], + [48055,0.113928736695974], + [12086,-0.238354984897719], + [54109,0.57002457002457], + [22073,0.211646633903724], + [51187,0.209390707367905], + [45089,-0.402739046910826], + [30021,0.425406551967947], + [31109,0.00996310267691314], + [6031,0.166361229892079], + [20179,0.746348962336664], + [39067,0.152393500219587], + [55027,0.146693979742802], + [33019,-0.135152787497084], + [13111,0.589676113360324], + [48447,0.73053152039555], + [17009,0.315056570931245], + [48009,0.745392822502425], + [39145,0.0200645051773893], + [26073,-0.0938837150767682], + [26057,0.0397677060977149], + [48085,0.320806102053679], + [18027,0.516228287841191], + [35019,-0.456453305351522], + [21087,0.514482183788289], + [47115,0.226614481409002], + [1075,0.536922209695603], + [1073,-0.0606003235117298], + [13231,0.661883967560824], + [12107,0.247160557563242], + [35033,-0.535194651985844], + [37017,-0.0203402366863905], + [5009,0.49520295202952], + [56039,-0.122233264070828], + [1021,0.607999537598983], + [20181,0.547600314712825], + [48387,0.410852713178295], + [48311,0.733598409542744], + [46135,0.129769413711095], + [1007,0.471852118593206], + [49027,0.824974200206398], + [21205,0.0798875953432356], + [21125,0.645901342038448], + [28125,-0.39893143365984], + [17167,0.0887156321938931], + [21235,0.584514130855594], + [13035,0.360224331320103], + [27065,0.0927261227071474], + [19053,0.0414993306559572], + [8035,0.269127095113597], + [8109,-0.305668766209707], + [17069,0.34826526130874], + [40133,0.302725198013156], + [48377,-0.432751828925155], + [34011,-0.233045219559043], + [40121,0.382869598666496], + [24027,-0.216659064086134], + [46009,0.221221221221221], + [12089,0.489782202862477], + [40027,0.259475032010243], + [51017,0.175276752767528], + [26163,-0.471870174410482], + [38069,0.380547686496695], + [20129,0.707317073170732], + [29091,0.448600476967491], + [28083,-0.460045068469405], + [48475,0.4775], + [19135,0.0781125033324446], + [6103,0.282886524401118], + [5039,0.108963678773742], + [48089,0.496454782933201], + [18003,0.170193881230411], + [1043,0.703827970108281], + [18127,-0.0386945338524464], + [37127,-0.00927411791676214], + [51081,-0.27933074882677], + [39015,0.255351188555448], + [18169,0.369190013646946], + [29005,0.431151241534989], + [21009,0.338316382796226], + [39025,0.361339414985685], + [45063,0.383925579036042], + [48259,0.653182493429322], + [56037,0.410740740740741], + [27069,-0.0625], + [47003,0.408838614487459], + [26055,0.119328369228173], + [31053,0.230567986230637], + [17079,0.420020222446916], + [21075,0.164691458929301], + [12129,0.284558467602517], + [12133,0.480519480519481], + [40087,0.553675082173579], + [13067,0.128089739794072], + [19071,0.0928749653451622], + [24019,0.0670264129508662], + [51095,0.122308524235572], + [30065,0.576077396657872], + [19057,-0.187121931710244], + [27157,0.0553035589672017], + [39051,0.134459160061051], + [51133,0.149719775820657], + [28037,0.226479256404443], + [47189,0.421854369888659], + [47045,0.450650679923966], + [37105,0.102769648386139], + [37123,0.153457302762231], + [22041,0.366033640803038], + [48229,0.108235294117647], + [36083,-0.120623698610237], + [1087,-0.744959969132825], + [19107,0.105488516932659], + [20051,0.446689561536618], + [13039,0.280606472052501], + [55031,-0.317341373653173], + [20037,0.0666666666666667], + [21143,0.274504623513871], + [13257,0.544908896034298], + [48003,0.641534988713318], + [13267,0.425712553062462], + [51061,0.202720541812547], + [40033,0.464329392580514], + [13229,0.668924889543446], + [42133,0.214749975503805], + [46107,0.504385964912281], + [48247,-0.570307785153893], + [18147,0.156063305733152], + [1077,0.313080261495358], + [42097,0.198136404814288], + [19169,-0.140294964503154], + [45079,-0.337586390217969], + [48443,0.321033210332103], + [36011,-0.110005094642787], + [39083,0.248603248603249], + [13159,0.382885906040269], + [13021,-0.201608880019955], + [37009,0.333712521329325], + [47087,0.156462585034014], + [56025,0.42359033741838], + [19047,0.0829430427557032], + [39141,0.0241247322400533], + [46103,0.302345966644368], + [42001,0.280235845637097], + [54063,0.424980047885076], + [6071,-0.0552945998525991], + [31161,0.675698207586494], + [36075,-0.0802763694204195], + [20069,0.675213675213675], + [48409,0.208585247883918], + [37167,0.407754154011077], + [17173,0.34414626953701], + [42117,0.354331714796831], + [41015,0.175723989989274], + [8029,0.4064296915839], + [51750,-0.0403655750190404], + [28053,-0.52148612354521], + [20059,0.312452399086062], + [41025,0.516336056009335], + [29133,0.234700185452298], + [28117,0.430448847553579], + [23003,-0.0790675173101926], + [17077,-0.106478762967313], + [27155,-0.0455049944506104], + [49019,0.066481223922114], + [40025,0.807852965747703], + [29173,0.300986510972418], + [19015,-0.0655140387225834], + [34001,-0.173435081388585], + [46041,-0.290909090909091], + [27139,0.151452845006068], + [29101,0.249326343638234], + [17109,0.0152905198776758], + [20049,0.579347000759301], + [55053,-0.151897357834076], + [39075,0.538585931183182], + [37069,0.0418390473792136], + [5123,-0.171936012092203], + [48305,0.495926127104834], + [21107,0.405341551104263], + [27131,-0.0850671247693581], + [5077,-0.244168881015648], + [1061,0.636282554405994], + [6009,0.174627947160136], + [18079,0.231017119838872], + [21023,0.277707808564232], + [5065,0.391118036618621], + [20027,0.539988655700511], + [54007,0.151165276886893], + [12005,0.441394169835234], + [21015,0.393652518041437], + [55009,0.0181252015003421], + [6063,0.176206509539843], + [8113,-0.442630937880633], + [36015,0.0292772767687031], + [19115,-0.00678314491264132], + [51775,0.210294728102947], + [28103,-0.575660528422738], + [36019,-0.260109651543585], + [17091,0.0344827586206897], + [45059,0.176997162610398], + [28051,-0.685533026495833], + [31069,0.548085901027078], + [51113,0.188740193816336], + [56001,0.0265428870292888], + [31123,0.573055028462998], + [29013,0.325062689718886], + [13057,0.588455227135825], + [31077,0.413793103448276], + [18051,0.316267776621575], + [51830,-0.293310463121784], + [28143,-0.590844738084002], + [48191,0.516864175022789], + [45071,0.144453411136632], + [17001,0.358157210480699], + [8073,0.511818181818182], + [42005,0.377332139659803], + [31025,0.268487788273339], + [37045,0.20643050220515], + [1097,0.0933559945196927], + [37051,-0.198111549583806], + [17085,-0.0117079274287246], + [51065,0.0631218657963861], + [48115,0.436252771618625], + [48039,0.346220872099113], + [36017,0.0343310368783651], + [37177,0.0532879818594105], + [48471,0.288580662537032], + [26131,0.0919507304497278], + [12091,0.499855665914704], + [12007,0.423916811091855], + [6041,-0.517609016808372], + [20177,0.0173122907699665], + [23017,-0.154072902437271], + [19101,-0.163760517010121], + [17017,0.138112255623292], + [39049,-0.220603641338468], + [27143,0.233539229859377], + [36115,-0.0164028776978418], + [20147,0.698234349919743], + [47141,0.377431595765928], + [13119,0.606096439364078], + [19095,0.0499480908986043], + [33013,-0.128771211086665], + [51171,0.319359595534021], + [47131,0.452777319927477], + [20013,0.449827905745301], + [16007,0.783590111071301], + [34021,-0.37208540977047], + [55109,0.123508787404353], + [55075,0.036186941446501], + [56007,0.326305701964542], + [18111,0.19607486825368], + [34005,-0.188869122992295], + [18011,0.386282386761508], + [49021,0.73316785603475], + [48113,-0.156028094261149], + [22071,-0.637183295927766], + [27077,0.206466512702079], + [17083,0.245251857968621], + [45067,-0.30098414434117], + [47127,0.488759970993474], + [1069,0.405803378085752], + [8117,-0.250545553737043], + [18117,0.221869208366428], + [37035,0.29897570968686], + [45029,-0.00183334319001716], + [19155,0.0584943306243613], + [38101,0.315763787213275], + [6011,0.220662159819726], + [21095,0.650863302489745], + [1115,0.667155298784168], + [6107,0.18206144836572], + [48147,0.5328], + [55095,0.0913281214695649], + [55139,-0.0381445537990238], + [39055,0.218810097370392], + [20001,0.278071722516167], + [8055,-0.0802961275626424], + [18041,0.173432592764918], + [20103,0.206222891350324], + [53029,-0.0453497309761721], + [20097,0.716814159292035], + [48043,0.0561497326203209], + [12093,0.202692718167638], + [22039,0.312524184186766], + [19005,-0.041685209909509], + [17031,-0.500393832751142], + [48265,0.59860788863109], + [46129,0.441298917568693], + [34007,-0.370249199498817], + [51700,-0.30385864423249], + [48373,0.48703261734288], + [54081,0.45400699350603], + [16037,0.533861037818822], + [17051,0.352580131848147], + [51041,0.0718282704786983], + [21055,0.49460384311661], + [48341,0.609330628803245], + [1019,0.558004158004158], + [55127,0.125305979717916], + [45085,-0.176948051948052], + [48303,0.415204940540904], + [31185,0.561466104443724], + [20017,0.428333333333333], + [21147,0.620450914255281], + [53053,-0.112331435051648], + [40083,0.448154036389331], + [37071,0.258273219116321], + [47133,0.260100343279641], + [53069,0.0108794197642792], + [36121,0.301137123745819], + [37091,-0.445081360946746], + [21213,0.243397573162027], + [29137,0.29429581019687], + [28161,0.04435548438751], + [13001,0.497352225561758], + [12079,0.0346901017576318], + [29019,-0.0316239870340357], + [21121,0.546342799744316], + [27053,-0.276945178992007], + [38009,0.317688471692579], + [38103,0.42080276219249], + [19067,-0.148402948402948], + [13223,0.441945181255526], + [16011,0.557177615571776], + [46055,0.743970315398887], + [18053,0.224724097505761], + [30085,-0.152523259092191], + [6077,-0.090380041840719], + [27161,0.0786422095720007], + [34041,0.160370265952448], + [1041,0.35738939441481], + [56041,0.604902317679893], + [18155,0.131459655485041], + [18097,-0.225659475832255], + [39125,0.208798802257284], + [21085,0.40008745080892], + [48345,0.814502529510961], + [49001,0.72654370489174], + [55067,0.11956835918682], + [12009,0.128605948087102], + [8031,-0.500883676667358], + [13115,0.404610468182805], + [28109,0.611888645732607], + [27105,0.0941007881538094], + [26159,-0.00456395707413348], + [40151,0.605301914580265], + [22101,0.19009043761519], + [53031,-0.324455740965853], + [48041,0.361078546307151], + [26031,0.110958590711508], + [16019,0.530154974565243], + [41037,0.569187675070028], + [5015,0.247655931512434], + [20077,0.525453740593183], + [13215,-0.214352110057632], + [39149,0.467164506918515], + [41043,0.177550387596899], + [47171,0.449617990485801], + [45091,0.208281412783691], + [18023,0.314256091238984], + [24047,0.185853154084798], + [13181,0.277777777777778], + [13063,-0.703798236346329], + [53017,0.295800195339752], + [39117,0.251392306696024], + [13199,0.0573886529456604], + [13101,0.68256880733945], + [42071,0.195203074762556], + [10003,-0.345682443399912], + [47057,0.532576712904582], + [19163,-0.139160398180262], + [37083,-0.321856579615099], + [19063,0.0898386393371129], + [29047,0.085905533898879], + [51005,0.0274364104029723], + [17021,0.235793871866295], + [18061,0.233849904231238], + [42087,0.472634967805845], + [49049,0.800275725994131], + [37175,0.17107366867544], + [55115,0.101314539911031], + [51145,0.467033687246035], + [13019,0.584602784602785], + [26141,0.0861723446893787], + [41003,-0.299173398459515], + [18091,-0.128649357338515], + [21193,0.594131059779915], + [12075,0.326582278481013], + [48263,0.67], + [28163,-0.153988868274583], + [5035,-0.189740905522115], + [13105,0.208810353409657], + [27097,0.245586071603727], + [55085,0.0218328335832083], + [46079,0.113136903792935], + [54027,0.412397540983607], + [45017,-0.0436241610738255], + [34015,-0.106502369668246], + [18077,0.106674984404242], + [47083,0.0600872776099362], + [40145,0.456832395793299], + [21211,0.279852366478506], + [22083,0.284635645302897], + [31047,0.426863292148266], + [54099,0.276567559611422], + [22033,-0.0525180410385475], + [30029,0.34345590375473], + [31083,0.601026298909557], + [48151,0.36239103362391], + [24015,0.208715420572684], + [51031,0.399398686604953], + [40015,0.284757689252071], + [27041,0.157510938259601], + [25009,-0.164323308165821], + [51197,0.375185858252106], + [34037,0.227792349185926], + [31089,0.629327026445926], + [53071,0.228546350685301], + [26087,0.11618169414975], + [18021,0.321178120617111], + [13117,0.638195455054293], + [13073,0.435195376995047], + [13029,0.441505441354293], + [27111,0.215793714746172], + [40007,0.788695652173913], + [1017,0.0514222437538929], + [5091,0.403170409511229], + [5043,0.192933947772658], + [38031,0.259803921568627], + [48459,0.603650761693846], + [5033,0.512726909036356], + [12077,0.419056429232192], + [51760,-0.565226013286475], + [8003,-0.168185328185328], + [38019,0.186069651741294], + [39047,0.226094387997341], + [55089,0.307195002360803], + [18093,0.33578529969542], + [21105,0.351913084553614], + [40137,0.532351893624599], + [13177,0.527746906720012], + [30031,0.0552155314248108], + [48077,0.704354774270875], + [55121,-0.142663860493085], + [26147,0.0717351654530245], + [40031,0.170345330416915], + [17139,0.27671787945298], + [48023,0.658567774936061], + [32027,0.297387437465259], + [17195,-0.176420333190944], + [20149,0.489925414672159], + [37109,0.392766286915164], + [48255,0.36146612008681], + [5075,0.328697613230596], + [45043,0.0770387318189247], + [27001,0.0135271101173839], + [12059,0.691066845900037], + [6019,0.0298353153865709], + [31079,0.28070990042821], + [37031,0.41388130478517], + [36097,0.080592105263158], + [31113,0.679245283018868], + [17101,0.314344192392973], + [5097,0.440389294403893], + [12125,0.496521902613273], + [38093,0.226037817865681], + [29015,0.349566377585057], + [48065,0.787016776075857], + [37153,-0.0269188221039878], + [48485,0.47870595835611], + [27107,-0.111111111111111], + [54075,0.250793650793651], + [16023,0.590150913423352], + [54059,0.435927306616962], + [35061,-0.0260843075282738], + [20029,0.504300234558249], + [19001,0.0826064648537712], + [36037,0.213175720547217], + [28005,0.154381815792931], + [27061,-0.100719424460432], + [50013,-0.264867566216892], + [18183,0.397697077059345], + [19131,-0.0343441724515894], + [17023,0.330226537216829], + [29213,0.484108618654073], + [34029,0.179051783541902], + [50015,-0.428132730529728], + [24023,0.530519589709097], + [37151,0.507451164664026], + [29059,0.403429856620748], + [5087,0.340040874076403], + [22115,0.585743194725504], + [16083,0.447828952185692], + [42015,0.250293878289176], + [29510,-0.67520876564396], + [18059,0.419523913518235], + [48487,0.505474917239623], + [42007,0.0669402540816455], + [18165,0.0697892271662763], + [27165,0.00458990221512678], + [51091,0.336225596529284], + [13277,0.328071826804721], + [51790,-0.0413057353879821], + [48445,0.421469543840481], + [48455,0.475207283368558], + [8105,0.087218045112782], + [50027,-0.387431752489027], + [51175,0.0322791712104689], + [13319,0.0146892655367232], + [16047,0.483443708609272], + [39137,0.523846974889051], + [17003,-0.138131166569936], + [21131,0.822249589490969], + [1035,-0.0167501789549034], + [20041,0.48846304262808], + [48503,0.725093529167244], + [1013,0.075571549534293], + [39017,0.26589394952572], + [55029,-0.070441909783917], + [31139,0.619019138755981], + [31011,0.55288985823337], + [42119,0.238603541378877], + [36023,-0.089954416940742], + [42077,-0.0764253773057574], + [55129,0.028158211898762], + [47017,0.350102861417617], + [51179,0.0889706005809365], + [5029,0.200692041522491], + [6037,-0.410059348231949], + [5109,0.540167703543414], + [13031,0.193291475285492], + [27103,-0.080488077913355], + [31043,0.0369110392923966], + [30015,0.2875], + [5149,0.402881444193716], + [39147,0.0860049193313044], + [31097,0.215101838052658], + [37079,0.0775079715477067], + [30003,-0.261984392419175], + [42039,0.199040619907137], + [13179,-0.304598060681889], + [20157,0.633956386292835], + [1081,0.202264886755662], + [53051,0.223653577525997], + [51660,-0.137110556066781], + [29025,0.349516968045578], + [29033,0.453857075248462], + [24043,0.188709817928391], + [17095,-0.174455391846696], + [54005,0.321938713221829], + [17029,0.113580838323353], + [29149,0.340766550522648], + [22047,-0.135382603008502], + [8039,0.48254200146092], + [8089,0.0950387006725035], + [47009,0.465268296719209], + [30079,0.512408759124088], + [21201,0.26006528835691], + [55023,-0.202706219099662], + [26069,0.0505019774870703], + [50003,-0.338874680306905], + [31065,0.614435815440841], + [37029,0.345764996629971], + [31067,0.171306209850107], + [29021,0.0895077947101068], + [54093,0.422924901185771], + [29105,0.455247221667665], + [17037,-0.056516206302867], + [28065,-0.253329251492423], + [38047,0.566666666666667], + [31131,0.248817966903073], + [48335,0.531877729257642], + [54037,0.041070171321286], + [22111,0.421775103422339], + [12131,0.526431718061674], + [38027,0.131838565022421], + [37037,-0.048062015503876], + [17187,-0.0588875288997688], + [27171,0.218623243783434], + [54103,0.222399432925749], + [49031,0.807792207792208], + [36063,-0.00572244305246183], + [48379,0.624782284150286], + [26049,-0.284716031059025], + [19025,0.128465443186255], + [8103,0.65348980852378], + [46049,0.395985401459854], + [36119,-0.225223170536144], + [20145,0.439490445859873], + [31121,0.457916421424367], + [17127,0.343171114599686], + [50025,-0.501120238984317], + [22119,0.252486400351668], + [45013,0.176974638933038], + [35049,-0.532655485782173], + [45069,-0.306468350051885], + [5011,0.188218793828892], + [56019,0.63561177329117], + [18039,0.269348360410047], + [45035,0.162534237992087], + [19081,0.137646249139711], + [31041,0.599022004889976], + [17073,-0.0314907872696818], + [21097,0.296712679664153], + [22075,0.28531690840453], + [18001,0.403266331658291], + [21157,0.348807053941909], + [53019,0.212831585441086], + [56035,0.638122198631753], + [17179,0.182411024123653], + [40077,0.382950646608604], + [37047,0.0792918274878336], + [53023,0.46271050521251], + [55015,0.117018002769657], + [5067,0.18844513377278], + [48397,0.539221811985231], + [17055,0.171905360612642], + [40107,0.30092204526404], + [22063,0.718603596796131], + [21141,0.330825617283951], + [48319,0.6086508753862], + [54079,0.377443348901574], + [5145,0.552580519984478], + [48351,0.437581699346405], + [40001,0.34796044499382], + [12001,-0.176259934627826], + [37159,0.263168222923583], + [23001,-0.131098157349086], + [20189,0.75470737913486], + [39023,0.017893944846086], + [6027,0.12127929069031], + [51047,0.165859075307894], + [26019,0.0397785523887635], + [49003,0.794370470251138], + [40059,0.758716875871688], + [48405,0.348443473511742], + [51075,0.287412374276135], + [30069,0.660899653979239], + [21223,0.223050458715596], + [40047,0.524613220815753], + [56027,0.672667757774141], + [55073,0.0615112194838747], + [35043,-0.0531253066431164], + [31103,0.661016949152542], + [1123,0.326111560226354], + [32001,0.409099980043903], + [54039,0.120816092424925], + [51620,-0.308368007397134], + [22127,0.405698358624961], + [37141,0.206229274230785], + [36087,-0.0662362632516625], + [26133,0.213318842011659], + [18085,0.533435322114567], + [22005,0.348741756161709], + [13097,-0.0399736437513727], + [41049,0.35954753568543], + [29187,0.199728322390763], + [29103,0.266421439831845], + [20085,0.300411522633745], + [40119,0.283476227591582], + [28089,0.158138495602186], + [13197,0.101845957988542], + [17107,0.326954018121772], + [20161,0.130166126418152], + [48107,0.278373800112931], + [46127,0.256149732620321], + [42085,0.0257882074874436], + [13045,0.381909793562274], + [13289,-0.0872065165309056], + [55003,-0.313421918810191], + [56009,0.64481409001957], + [1067,0.295803953300197], + [27167,0.199236155315086], + [51155,0.255561813573641], + [47051,0.293954310236022], + [16055,0.352804662116862], + [17025,0.451517779705117], + [18149,0.108693108693109], + [40005,0.48020942408377], + [45025,0.0332318928788802], + [48063,0.336739433348816], + [16067,0.593091334894614], + [12021,0.302525204810171], + [26143,0.0389952709512365], + [6007,0.040439605769089], + [29223,0.353329762542403], + [47065,0.152036114256045], + [19037,-0.112085159674389], + [42105,0.466365815822874], + [22009,0.274280253255286], + [26149,0.124301373424028], + [29009,0.456700496333062], + [47149,0.251252198418168], + [40057,0.42795232936078], + [22121,0.0973675864256265], + [21217,0.393816335948316], + [47005,0.261261261261261], + [30097,0.540106951871658], + [29045,0.10613810741688], + [1117,0.562569225876496], + [32005,0.273011897307452], + [29207,0.501462566210768], + [48075,0.677581863979849], + [28071,0.15850622406639], + [20205,0.551448275862069], + [5003,0.260458489832923], + [37013,0.193807093536905], + [48203,0.349007798625589], + [22003,0.425749094501152], + [38095,0.095575221238938], + [17113,0.112989273881058], + [21171,0.601532567049808], + [27149,0.00435729847494559], + [16029,0.742733043768794], + [18179,0.458743793837182], + [18177,0.149727039177906], + [36029,-0.15928416109008], + [8049,0.0743138270326256], + [46087,0.29296875], + [19175,-0.0392863269857608], + [22051,0.187581604526331], + [32033,0.451450892857143], + [48149,0.555961187433951], + [30107,0.434511434511435], + [33001,0.0503407867989956], + [31169,0.438106325184323], + [48381,0.691203826733989], + [46115,0.124579124579125], + [55001,-0.0878192534381139], + [33015,0.0459366903903993], + [18017,0.222294701746756], + [17169,0.0887011615628299], + [48111,0.662891405729514], + [12045,0.425513698630137], + [31007,0.720812182741117], + [21103,0.218117174215489], + [13043,0.33981137467848], + [22093,-0.150521852576647], + [49025,0.548569632191135], + [1029,0.688782051282051], + [13311,0.676262479402927], + [51025,-0.25483789896959], + [29023,0.474685449400999], + [40073,0.684721703399328], + [48393,0.884526558891455], + [35047,-0.586588128681468], + [42009,0.554592965770516], + [20151,0.474082073434125], + [48219,0.578078291814947], + [55141,0.0297925767047684], + [21135,0.425021422450728], + [37163,0.110698537943839], + [26033,0.0766029392638834], + [49039,0.794593345656192], + [36007,-0.0469580424357521], + [20131,0.593916974928072], + [20047,0.565347274085138], + [41027,-0.274821371440759], + [27019,0.200578034682081], + [45061,-0.357118509260311], + [45049,-0.274441034633932], + [18071,0.281786307436797], + [28039,0.721380731581659], + [42029,0.00426863045390857], + [21059,0.215108958837772], + [48415,0.662363856393707], + [54055,0.47978100086447], + [22019,0.292851710078428], + [18143,0.0633712076841981], + [47029,0.50208647784782], + [45005,-0.577205013005439], + [48349,0.427367311997893], + [48479,-0.54489787531336], + [30051,0.461780104712042], + [19055,0.00249106465937388], + [31159,0.353673553153646], + [29189,-0.138331173709102], + [48427,-0.738717339667459], + [51169,0.512914378686191], + [40149,0.618405763420869], + [28017,-0.0416500332667997], + [55081,0.00689583115661896], + [44007,-0.354557530191087], + [4021,0.174535491905355], + [42019,0.353424220680858], + [46005,0.189706089157643], + [6051,-0.0778894472361809], + [51115,0.317469310670444], + [17153,0.0586241951880719], + [29111,0.279636711281071], + [29195,0.147618511428893], + [51125,-0.0279728897104128], + [27075,-0.215391552683], + [1055,0.389315892490572], + [28151,-0.429006917575331], + [23023,-0.167506172839506], + [16039,0.350645994832041], + [37039,0.467464114832536], + [37019,0.223907004724075], + [56015,0.482611781405252], + [25017,-0.273853411135955], + [38003,0.105578435043055], + [51049,0.0233870967741936], + [21233,0.34288905435592], + [48287,0.468536028692534], + [19149,0.348055009823183], + [51530,0.259766411598872], + [49017,0.710911667453944], + [46077,0.141171844278411], + [36005,-0.832821705721967], + [13307,0.0213492741246797], + [22109,0.419258617786438], + [48007,0.432857742341586], + [21173,0.26705614417269], + [1047,-0.398170760906], + [30095,0.456140350877193], + [22053,0.483885307846188], + [39039,0.143728774535198], + [38001,0.472668810289389], + [56023,0.694698137824695], + [26077,-0.134628815578653], + [40075,0.35425219941349], + [38039,0.18007662835249], + [16087,0.478260869565217], + [18031,0.415308151093439], + [51680,0.107889054042684], + [38087,0.608490566037736], + [24029,0.00890273759180937], + [24031,-0.441717220261025], + [38081,-0.101077475628527], + [19083,0.0722196585140749], + [20105,0.603351955307263], + [41029,0.0518725857918603], + [42021,0.181534115985524], + [51139,0.260230433055225], + [21167,0.393827917433068], + [8025,0.266620973269363], + [21203,0.641795918367347], + [48087,0.689201053555751], + [48451,0.486261980830671], + [47001,0.303892885416308], + [13259,-0.276990718124084], + [21017,0.208188489764388], + [29153,0.419027873761806], + [5095,0.000631313131313149], + [48469,0.382351908423751], + [19195,-0.146842878120411], + [55037,0.266281310211946], + [50001,-0.404250457038391], + [47089,0.510048068570105], + [45011,-0.0535732438751652], + [54001,0.36711590296496], + [47047,0.309785695843016], + [48057,0.245679939894816], + [30067,0.108667065152421], + [37061,0.118846590628549], + [48237,0.789802289281998], + [39135,0.374707138022596], + [35005,0.334305248341042], + [34031,-0.274911478944854], + [47119,0.273057170095642], + [30081,0.329357465124721], + [21089,0.19002822201317], + [5121,0.289074751698902], + [20159,0.490651558073654], + [47153,0.408232252932989], + [39157,0.100267104992809], + [21079,0.523454310715823], + [5027,0.238900181876538], + [28073,0.55244568839131], + [16001,0.11705651122546], + [55055,0.0768595988538683], + [39111,0.0814113334351612], + [28119,-0.435365545155578], + [26059,0.245367174640259], + [18087,0.364971503726436], + [21179,0.167468825202363], + [26029,0.147922199095672], + [21139,0.393010146561443], + [47019,0.528054432501726], + [45053,-0.157437348423605], + [39133,-0.0498573338663212], + [19147,0.109993714644878], + [29167,0.442019950124688], + [38055,0.306889352818372], + [26063,0.149093795475592], + [19191,-0.149774463776121], + [8097,-0.386588799666284], + [28013,0.275478988890678], + [48253,0.553164326098851], + [17125,0.0649054142204828], + [13183,0.231922870915908], + [51083,0.0570508536363084], + [17053,0.437319271985031], + [21093,0.211117160561043], + [51580,-0.149956408020924], + [20021,0.30159503226592], + [48099,0.370515489163708], + [36095,0.16966954145675], + [4025,0.313244008462356], + [48093,0.631469979296066], + [35059,0.446533490011751], + [5111,0.3508294805548], + [38015,0.329175329175329], + [49053,0.682314901976835], + [13007,-0.00381194409148666], + [51595,-0.338559163867115], + [5103,0.0877538946953265], + [48421,0.764820213799806], + [30007,0.477155616626589], + [20119,0.691747572815534], + [40041,0.413153456998314], + [35035,0.290693989648252], + [24009,0.0833816705336428], + [27051,0.0297496318114874], + [19151,0.222734254992319], + [1109,0.138371092629768], + [8059,-0.044736186520788], + [4003,0.244827184917956], + [48365,0.564420803782506], + [31173,-0.167004048582996], + [6005,0.1947128287708], + [47125,0.106589858369414], + [28011,-0.384332058365208], + [22031,0.139558310732274], + [46019,0.508357915437562], + [47097,0.0702527243218178], + [48301,0.714285714285714], + [13017,0.150262578349992], + [32015,0.494796594134342], + [12029,0.475036496350365], + [28107,-0.0867847737610725], + [4023,-0.382698054077691], + [40063,0.348549690917737], + [20193,0.65143721633888], + [48357,0.8296869740828], + [55078,-0.738686131386861], + [17197,-0.0372364653826133], + [48461,0.482866043613707], + [12101,0.0674021179857756], + [12117,0.0654345993196817], + [21145,0.330115508804634], + [13261,-0.084994038494294], + [22037,0.0745644599303137], + [47105,0.535159481569997], + [48197,0.591339648173207], + [22087,0.254262307181342], + [49009,0.628571428571429], + [54085,0.582580115036976], + [6087,-0.562054244740408], + [22029,0.174189378433696], + [29165,0.14392247923551], + [19123,0.208243154229792], + [6003,-0.2448], + [19177,0.190972222222222], + [13195,0.544980323968152], + [22089,0.2836085380588], + [19087,0.0605740818910934], + [28133,-0.466409691629956], + [51683,-0.134863797603909], + [48027,0.165958150299939], + [51119,0.208549006511939], + [13227,0.684555182878134], + [1023,0.0459987397605546], + [41007,-0.150445654124544], + [39107,0.55716756341276], + [50021,-0.223953296801691], + [37101,0.281086396130644], + [21195,0.514074201601102], + [16041,0.882246376811594], + [17105,0.320550172775933], + [42109,0.365303627224562], + [28137,0.186332087560064], + [37199,0.140714984244268], + [47007,0.409186290510609], + [13065,0.304489795918367], + [40081,0.490122589209026], + [1129,0.318577981651376], + [48227,0.589278675601104], + [48273,-0.0790190735694822], + [30049,0.0371361035083355], + [17007,0.0580374188621611], + [44005,-0.179774153074028], + [28001,-0.181448932870541], + [13285,0.179856115107914], + [48019,0.599439775910364], + [53035,-0.114146814843845], + [53027,-0.143940222343722], + [9001,-0.109869636558612], + [51131,-0.165445189458912], + [20075,0.620071684587814], + [27127,0.206122987595672], + [21231,0.480683090705487], + [6013,-0.34446214466484], + [37145,0.110498116810779], + [48143,0.680227827502034], + [40011,0.480471821756225], + [17151,0.399074074074074], + [5021,0.299617167036067], + [48117,0.421163279607568], + [28149,-0.0263880968427601], + [5081,0.371278104111809], + [45065,-0.0347263095938788], + [12031,0.0364910217780063], + [42111,0.435167141358117], + [31117,0.705035971223022], + [55087,0.018619627607448], + [46075,0.638795986622074], + [41011,0.0654924887145711], + [18099,0.294550471372729], + [5093,0.0118061944188899], + [1031,0.49849004453089], + [22123,0.619281410399464], + [19009,0.056338028169014], + [47037,-0.190411504822958], + [48001,0.526417565965941], + [49057,0.471664636805148], + [22081,0.0485641891891893], + [41045,0.428480744815912], + [31175,0.537669630322883], + [45075,-0.438477162155779], + [1125,0.176305561990065], + [46021,0.602080624187256], + [13255,0.202420819043776], + [18137,0.395617715617716], + [20197,0.421287444231995], + [20155,0.322511380228463], + [13225,-0.0753874441817705], + [13209,0.402159599683961], + [55103,-0.162665417496194], + [19011,0.00616612259702576], + [40009,0.590968302214503], + [9003,-0.259473865997185], + [38007,0.68270944741533], + [55013,0.0657122741140577], + [51730,-0.808086524555115], + [37057,0.413775171178459], + [48053,0.554909090909091], + [20135,0.698786581013562], + [28075,0.156187424909892], + [27125,0.0262329485834207], + [13213,0.537018486476641], + [48499,0.648569290114572], + [27087,-0.188635305076851], + [17089,-0.00895793424942704], + [55043,-0.139284065634311], + [51550,-0.0106023299400978], + [53075,0.0382741823242867], + [26123,0.176337283414381], + [31179,0.397813288477712], + [49033,0.832323232323232], + [29077,0.249406098473755], + [54013,0.233125897558641], + [47039,0.376287425149701], + [42129,0.240088964024723], + [12111,-0.0791916179928075], + [40141,0.333578521515263], + [13167,0.303070761014686], + [36001,-0.316156849983729], + [18153,0.21141727418757], + [37171,0.373739481187843], + [46091,-0.0882051282051282], + [13251,0.0852329038652131], + [26003,0.0257652499449461], + [49035,0.199299992456815], + [48331,0.350924784217016], + [17047,0.522179974651458], + [45087,0.066428455416599], + [48495,0.539618276460382], + [55021,-0.137345883600689], + [54107,0.330226646896844], + [48367,0.666381668946648], + [5119,-0.116726850575008], + [48395,0.225305216426193], + [25023,-0.0381296167913748], + [29127,0.325418060200669], + [55091,-0.0223555070883316], + [54071,0.323398858592264], + [39011,0.497170862107374], + [39013,0.0857029493453247], + [1027,0.461351186853317], + [17147,0.274461321087955], + [29099,0.129815894414034], + [47159,0.290990084782296], + [26007,0.0540911388748466], + [51019,0.456548773814854], + [27005,0.148131977795796], + [8115,0.355384615384615], + [13211,0.383805577332288], + [12063,0.292644154342695], + [6043,0.180196965664094], + [47049,0.541403147521694], + [19113,-0.178433155774977], + [51097,0.0332778702163061], + [47143,0.496064503743521], + [48285,0.652586731588558], + [38075,0.362179487179487], + [42047,0.159683084211386], + [40117,0.399768250289687], + [47059,0.469850746268657], + [48201,-0.000499864566608888], + [30089,0.39651837524178], + [8065,-0.248790601243953], + [40029,0.450148493848112], + [27133,0.181913774973712], + [39095,-0.309782140486193], + [4015,0.434147546552203], + [31091,0.696658097686375], + [25005,-0.207829474121452], + [13085,0.75386751289171], + [5073,0.18682842287695], + [17039,0.275717870086423], + [28057,0.624824026278742], + [18161,0.330263157894737], + [19069,0.110760741032716], + [6109,0.164163555864224], + [55079,-0.348721532516649], + [18067,0.146604109550324], + [48213,0.553487690504103], + [39155,-0.225804456083554], + [18055,0.321716027193874], + [48431,0.873469387755102], + [51167,0.375094593458337], + [37125,0.283654582449078], + [13139,0.572345780471519], + [26093,0.234745745271953], + [35053,-0.192336476575363], + [22007,0.122554448135843], + [8041,0.218855093598405], + [12127,0.0118739475168936], + [42051,0.0839659438829006], + [48193,0.663151895126817], + [51193,-0.00471527022125495], + [31005,0.766536964980545], + [39029,0.122980353055814], + [45081,0.213913866540464], + [48145,0.245500092781592], + [5089,0.404267844002943], + [22067,0.0564192979644174], + [51600,-0.164414809615722], + [26125,-0.0813586416062306], + [48441,0.543191319460754], + [30011,0.751937984496124], + [8063,0.543006081668115], + [51650,-0.458788032597355], + [37161,0.339103797107644], + [28145,0.5154296875], + [5105,0.36979028404566], + [13145,0.459893048128342], + [56031,0.438862124340445], + [39019,0.14165274795196], + [20061,0.146486486486487], + [48033,0.820224719101124], + [48363,0.606607259291458], + [22097,0.0439199863889361], + [55039,0.151333396602449], + [48061,-0.32657797447176], + [26119,0.176612417118746], + [32019,0.29377990430622], + [8075,0.391976360950108], + [20195,0.619486504279131], + [29155,0.147598531992979], + [51678,-0.12851711026616], + [29185,0.348068765349408], + [29163,0.278748078803968], + [21011,0.124845488257108], + [31105,0.515189088654681], + [8071,-0.0277125410991076], + [18035,-0.0318962175964981], + [37179,0.307416216216216], + [46097,0.140807174887892], + [42073,0.0909707370507538], + [29211,0.278792692613185], + [18081,0.392343816706987], + [20167,0.621884104888314], + [51159,0.156936261381896], + [37023,0.239085355601637], + [54051,0.292929292929293], + [21069,0.328413284132841], + [1133,0.73197165485619], + [41013,0.374416243654822], + [37073,-0.0403638430926663], + [30041,-0.0367409684857801], + [31145,0.607924921793535], + [21039,0.419729206963249], + [31013,0.262135922330097], + [22103,0.534142873959776], + [53003,0.171576763485477], + [46025,0.198876404494382], + [29083,0.266958201972948], + [5007,0.41434257679745], + [54073,0.314160902803058], + [17193,0.367553499132447], + [41001,0.413108242303873], + [47121,0.402210228732974], + [47183,0.416035561409285], + [28099,0.438992779114979], + [13309,0.277829747427502], + [12047,0.169867611411523], + [8061,0.70314465408805], + [53013,0.418081688848095], + [51079,0.25718163311468], + [39173,-0.0428927433861998], + [51085,0.371750597048262], + [48329,0.623445907269605], + [13037,-0.189908256880734], + [39139,0.205535903139929], + [13013,0.513380224755437], + [24013,0.348544866107689], + [21031,0.483729287282891], + [47031,0.378641805275983], + [31021,0.223300970873786], + [34025,0.0560660831229993], + [18109,0.421698113207547], + [5085,0.521874334398296], + [38091,-0.0198019801980198], + [21051,0.695073418416358], + [12103,-0.0570021983465957], + [29115,0.242446848190974], + [38023,0.313566936208446], + [40113,0.252498185675208], + [48323,-0.585410102167478], + [41065,0.00841651986690151], + [6113,-0.341342170671085], + [21115,0.609208437287367], + [48399,0.714364640883978], + [26043,0.216455696202532], + [29145,0.477727198829459], + [28155,0.544330329071473], + [48239,0.570307785153893], + [49005,0.70020964360587], + [17075,0.455721472490617], + [13207,0.376968098260654], + [55065,-0.155600866573213], + [13149,0.538274012676743], + [18089,-0.313355519749424], + [48435,0.501014198782962], + [8009,0.541666666666667], + [37043,0.430588235294118], + [48433,0.52023988005997], + [28025,-0.22146951537259], + [8083,0.24337999662675], + [13243,-0.166777851901267], + [27063,0.146084337349398], + [31115,0.647727272727273], + [48309,0.301700352031316], + [28095,0.160410786138971], + [45027,-0.130983162010469], + [46099,0.0754953465425745], + [48095,0.606889564336373], + [27071,-0.0969485060394152], + [29061,0.33998825601879], + [26101,-0.0599033024666066], + [48083,0.744199535962877], + [29085,0.241243432574431], + [46085,0.213263979193758], + [39169,0.217394898929354], + [36065,0.0537917420628393], + [46063,0.772222222222222], + [18029,0.404416461355963], + [1051,0.491510963228393], + [51105,0.450519177791905], + [19007,0.0359783144406112], + [51149,0.0986428529463603], + [12105,0.0688775510204083], + [39073,0.0115131578947369], + [19127,-0.0905060553633218], + [13237,0.36079763339542], + [28045,0.536503763890549], + [13135,0.0949897406688123], + [53021,0.257972265688232], + [40091,0.23826565726084], + [17005,0.151259321795413], + [19137,0.21960146400976], + [13163,-0.172337482710927], + [55135,0.0948579478750879], + [13175,0.22816756617836], + [36123,0.0300325654323965], + [8125,0.566506958704084], + [40053,0.619738751814223], + [48103,0.563492063492064], + [17121,0.195543752833733], + [27135,0.227962679292578], + [30099,0.321744627054362], + [33003,0.0081606585296623], + [54053,0.208386277001271], + [47113,0.0899402711343529], + [47103,0.497781857121004], + [29087,0.515817223198594], + [28063,-0.781162731657781], + [17171,0.270833333333333], + [47139,0.377598926894702], + [46073,0.0868686868686868], + [36105,-0.105619960688355], + [21043,0.218887093050104], + [45003,0.264229765013055], + [46013,0.0687905453144069], + [31075,0.829545454545455], + [49041,0.817019055077003], + [29049,0.231410991761393], + [23025,-0.0172018826273481], + [12027,0.144759758221494], + [53065,0.284388386482627], + [27101,0.0737564322469984], + [45031,-0.0342358020146581], + [5129,0.536578423000285], + [51127,0.341727617813165], + [12083,0.163975753632889], + [28101,0.316328803742482], + [21067,-0.0104581227466204], + [21021,0.265483817972729], + [51045,0.358330112098956], + [48047,-0.576264103635604], + [39105,0.193025894975756], + [28021,-0.7679832093112], + [35013,-0.153530094407678], + [17141,0.170427268362938], + [51067,0.295067334187139], + [48091,0.549085317773222], + [4013,0.122404642269783], + [30105,0.255439161966156], + [37003,0.453387308012859], + [26053,-0.0818448413756332], + [28069,-0.288385043754972], + [24039,0.0248257839721255], + [13071,0.398834304746045], + [12109,0.381319019754499], + [12049,0.312089447938505], + [36053,-0.00343751234738632], + [54065,0.312563691949338], + [6097,-0.463289651524946], + [53073,-0.124046685572893], + [50011,-0.239029904429144], + [55133,0.350985015720115], + [19027,0.0633997521212699], + [47111,0.544266627514315], + [48167,0.273135602657857], + [35017,-0.140138267588451], + [38035,0.0356601955114966], + [8011,0.150191152375751], + [20009,0.544524312896406], + [39159,0.302167966357735], + [54033,0.239819004524887], + [1059,0.409387222946545], + [42101,-0.716920649011195], + [41071,0.0690597533052664], + [30077,0.340790454884415], + [27027,-0.0814077497333807], + [5113,0.585398347988276], + [29229,0.498201438848921], + [48489,-0.435129740518962], + [17137,0.157772284426349], + [4001,-0.344972234429308], + [49023,0.772679874869656], + [42113,0.287842050571528], + [37015,-0.320072697899839], + [5051,0.305465734849275], + [40085,0.404034582132565], + [20209,-0.370678643537023], + [48025,0.115695067264574], + [30061,0.269109947643979], + [16033,0.561461794019934], + [39069,0.190692894891368], + [31009,0.804713804713805], + [8019,-0.121726300258207], + [54049,0.147275687063104], + [34023,-0.27321472266452], + [25025,-0.576582278481013], + [19129,0.194101800652205], + [17203,0.398843930635838], + [46057,0.323788546255507], + [18075,0.205035037633013], + [39101,0.0774999033667041], + [36027,-0.067421237912749], + [8033,0.436161096829477], + [51021,0.489406043765196], + [48029,-0.0462975078808066], + [51117,0.0730141383785261], + [27141,0.225569369567609], + [19197,0.0843847288218909], + [6035,0.409218825812712], + [54095,0.444970040996531], + [20015,0.427515268402443], + [37053,0.357012417823229], + [38017,0.030241935483871], + [26153,0.0691290242076366], + [46065,0.303935040599625], + [48119,0.540950455005056], + [48049,0.724017973619365], + [51143,0.279455692001328], + [30055,0.541017653167186], + [55137,0.103297442799462], + [56021,0.254763318400173], + [13305,0.488715876613778], + [21137,0.42609468770838], + [36033,-0.266680639977643], + [21191,0.313388734995383], + [28093,-0.195756630265211], + [24003,0.00941804591564344], + [18181,0.243102550754815], + [51163,0.181372058087131], + [38033,0.642619311875694], + [26023,0.189367120054655], + [27089,0.124232404345772], + [13263,-0.306405077899596], + [29177,0.15304399642467], + [51069,0.286148477514493], + [30057,0.415909090909091], + [26129,0.063159953070004], + [18049,0.339465725806452], + [40089,0.515536582944505], + [51735,0.519668144757546], + [12003,0.590570719602978], + [6089,0.310493885676368], + [17133,0.273589323343479], + [35011,0.342497136311569], + [47129,0.461032863849765], + [54003,0.21714063972504], + [5127,0.492198581560284], + [31037,0.361517976031957], + [29179,0.250486696950032], + [17149,0.361481273670922], + [47175,0.225320938468349], + [13033,-0.113905782908978], + [20199,0.823376623376623], + [28147,0.0846174641795079], + [48321,0.337889648274712], + [36093,-0.157043761240045], + [21219,0.396559139784946], + [6091,0.236533957845433], + [35028,-0.0395514168418945], + [13275,0.186236970857264], + [48157,0.069032712799038], + [18173,0.271695455863469], + [31001,0.347129069196794], + [54019,0.214745465184318], + [31061,0.488933601609658], + [18141,-0.0356130712720002], + [31033,0.522467816371144], + [10005,0.131886151139683], + [20057,0.377318026996342], + [20139,0.32114564290067], + [13295,0.510179418053361], + [39035,-0.390596404527045], + [27043,0.0927972307282652], + [32009,0.550122249388753], + [29107,0.268608414239482], + [48477,0.525161653078437], + [48081,0.74336917562724], + [27031,-0.24019912881145], + [29089,0.272496831432193], + [29131,0.506790697674419], + [29069,0.306562380770698], + [21001,0.557392347686975], + [31107,0.463513857106535], + [23021,0.0467695826186392], + [25003,-0.547520101902715], + [12073,-0.239021197390042], + [48155,0.423868312757202], + [31129,0.467605633802817], + [26039,0.111308993766696], + [37025,0.20436882492829], + [16021,0.43845977538391], + [28031,0.163179916317992], + [48299,0.612284069097889], + [11001,-0.855325469710309], + [38073,-0.14176245210728], + [46105,0.581364829396325], + [18123,-0.118051056109887], + [41069,0.348258706467662], + [45047,0.156385319798396], + [30091,0.290772532188841], + [30013,0.0936704256093124], + [19185,0.117148906139732], + [19171,-0.0750028367184841], + [13235,0.334425334425335], + [40095,0.456809338521401], + [53037,0.128758258055818], + [48251,0.564108962362238], + [53063,0.0651508837549677], + [39171,0.166666666666667], + [48463,0.0840718562874252], + [48283,-0.181150550795594], + [55063,-0.175176042218052], + [53015,-0.0447455254474553], + [53033,-0.408160246793585], + [16065,0.883448903831337], + [37169,0.434512813225333], + [48217,0.537606333698307], + [18103,0.318420415085198], + [51520,0.3151590251962], + [48425,0.648687626189789], + [50023,-0.430962343096234], + [36085,-0.00824225049274319], + [17067,0.194141012909633], + [47053,0.324934437188255], + [13047,0.538289161818574], + [40023,0.410185550730359], + [51147,-0.129898723029502], + [5083,0.43304642302808], + [48371,0.224469900073117], + [55057,-0.0719257540603249], + [21071,0.347936901563684], + [29093,0.148686559551135], + [48249,-0.171101289798864], + [12057,-0.067630236800967], + [55033,-0.0508064890996142], + [21129,0.537325038880249], + [31015,0.641618497109827], + [5019,0.0656361182676972], + [12085,0.231012941221559], + [31045,0.376873056262369], + [28157,-0.395017793594306], + [19141,0.456181641977018], + [54023,0.682263814616756], + [37093,-0.191993267612407], + [51087,-0.118486862335348], + [5071,0.288633461047254], + [36077,-0.0208352711375686], + [37165,-0.167408470926059], + [13313,0.456783597024506], + [20093,0.604844814534444], + [18101,0.414264036418816], + [28061,-0.0973089343379978], + [27003,0.0264720584923177], + [47043,0.288838138738224], + [39009,-0.360434885369889], + [16043,0.716634598565681], + [22011,0.594346391160855], + [30075,0.661016949152542], + [35006,-0.246538803505652], + [46027,-0.158596353656146], + [13245,-0.340308116808462], + [48137,0.468499427262314], + [29159,0.294946840281926], + [51181,-0.212720848056537], + [15003,-0.396280331282995], + [39129,0.189951405761888], + [29203,0.269662921348315], + [27123,-0.361149649474672], + [53061,-0.165604025119269], + [21045,0.637395659432387], + [12053,0.0860369783668089], + [22069,0.0667528499236103], + [47137,0.411910669975186], + [18007,0.335435779816514], + [13269,0.107132708155726], + [8093,0.154894390188508], + [37115,0.0927374301675978], + [23009,-0.171561257559053], + [50019,-0.246016459464192], + [19013,-0.202702702702703], + [26115,-0.00997176752013129], + [27049,0.0307167235494881], + [54031,0.4092], + [8027,0.34647460197119], + [48121,0.322800416910288], + [53025,0.33530931752546], + [17041,0.374500451205363], + [16073,0.540667218086573], + [31127,0.290091264667536], + [48355,0.0329609825824555], + [19035,0.164516642777512], + [42089,-0.142334831115136], + [20023,0.667146974063401], + [20203,0.678936605316973], + [13121,-0.299861894349177], + [6017,0.186727841900256], + [19045,-0.23221706184307], + [18019,0.100590947464121], + [19125,0.134891254049051], + [21197,0.254486884491487], + [20087,0.234262948207171], + [13127,0.272494279176201], + [21109,0.754068716094033], + [28055,-0.22663252240717], + [31183,0.575342465753425], + [38067,0.206500956022945], + [23013,-0.231048443389641], + [21215,0.38392749244713], + [8045,0.0505443234836702], + [20081,0.696924231057764], + [21003,0.482837528604119], + [42107,0.136073769188645], + [13153,0.209309634389077], + [29029,0.400566204111941], + [1025,0.0831640058055152], + [41005,-0.0355907558767157], + [36025,0.0976199105956264], + [48207,0.441459706031424], + [39103,0.133130977607239], + [37185,-0.361584239688077], + [29067,0.462409562755584], + [18157,0.0373261065943993], + [41041,-0.212511415525114], + [13315,0.318752010292699], + [30059,0.427050053248136], + [20055,0.377747808496291], + [36041,0.267357115458381], + [17165,0.295809523809524], + [31135,0.654014598540146], + [5099,0.206042296072507], + [16045,0.46147495872317], + [53067,-0.195023116170268], + [42115,0.218086917054352], + [37085,0.195859568784583], + [20035,0.30557155789647], + [37077,-0.0462859131510769], + [26017,-0.0605952663658672], + [34027,0.117080037931742], + [26103,-0.142334961399086], + [31073,0.521829521829522], + [51173,0.335352730171383], + [48327,0.591836734693878], + [19189,0.000345303867403279], + [13091,0.362424875881892], + [18009,0.168859176191503], + [54029,0.220630861040068], + [37111,0.322809786898185], + [50007,-0.426272246016334], + [32029,0.178937974118697], + [18119,0.283956880152188], + [48011,0.788336933045357], + [20169,0.329354102974717], + [48127,-0.475025835342749], + [46015,0.290572535514421], + [20115,0.476317799847212], + [17119,0.0139822623099233], + [45019,-0.0238761649028589], + [19017,-0.0249751775758039], + [13265,-0.329153605015674], + [18151,0.276068120705109], + [47055,0.295605734095381], + [45051,0.290811732011271], + [12023,0.37064445353464], + [32510,0.0927526009522131], + [40037,0.454406012731038], + [27137,-0.30304254646383], + [47145,0.419862055660059], + [46137,-0.166002656042497], + [18167,-0.00867562380038389], + [48123,0.555116314429071], + [31165,0.720994475138122], + [48221,0.654578258908435], + [41047,0.0363388075054092], + [39167,0.197777305868196], + [21113,0.40681065585924], + [13169,0.288711288711289], + [19059,0.182318231823182], + [37055,0.163824884792627], + [23011,-0.138408529450006], + [48243,0.239412273120138], + [25027,-0.0940621601447067], + [48505,-0.434188034188034], + [24041,0.133459972862958], + [37131,-0.349681767128416], + [22079,0.299631292921174], + [29209,0.500636942675159], + [25011,-0.486386887409933], + [51685,-0.257605602976581], + [28123,0.0908398400304704], + [30103,0.470997679814385], + [20183,0.644879053010808], + [26035,0.0488555347091932], + [31153,0.240038753133314], + [55017,0.00523183572035846], + [39043,-0.114660854773549], + [19181,0.0199592986850345], + [16049,0.543417738300411], + [22077,0.0927903871829106], + [19193,0.00249082921969124], + [6115,0.201126141591705], + [6059,0.0846276393880254], + [13239,-0.0909090909090909], + [13131,0.267958462691361], + [26011,0.0498510941344037], + [46047,0.329796640141468], + [29171,0.480530973451327], + [21239,0.192959259565325], + [26165,0.164730805756447], + [29201,0.388235294117647], + [44001,-0.237054513845772], + [49043,0.0501240694789082], + [13165,0.117769207950163], + [19033,-0.133974579182412], + [26091,0.0130764872521247], + [13171,0.305948252867431], + [31163,0.252043596730245], + [12097,-0.246980015215899], + [53045,-0.070979599338357], + [38097,0.0477715505737923], + [24510,-0.774868347289477], + [54061,0.0991561181434599], + [17191,0.596158975726861], + [47179,0.392081520008492], + [13051,-0.121257932064203], + [36107,0.15429097794381], + [30083,0.556251397897562], + [50017,-0.328405181878065], + [17161,-0.221873094780284], + [12061,0.225001409959957], + [8077,0.335218775449767], + [31149,0.733160621761658], + [54067,0.37692125798061], + [54089,0.296069868995633], + [21053,0.65193242305022], + [13055,0.419911157564672], + [28159,0.0607996702390767], + [4011,0.096551724137931], + [25013,-0.257854471006573], + [21099,0.301728092980578], + [5047,0.457205789804909], + [6101,0.222157434402332], + [17065,0.339248434237996], + [40111,0.174893357708714], + [27119,0.0585209897136503], + [36035,0.106899080498674], + [48135,0.494552152602167], + [47155,0.555908246990477], + [20153,0.735442127965492], + [45023,-0.106031746031746], + [48139,0.480660696816916], + [26107,0.0994607549430797], + [54105,0.357517899761336], + [28135,-0.214941437163659], + [21073,-0.00830419580419584], + [27047,-0.144627845615757], + [34019,0.190432501166965], + [5131,0.380554437631685], + [30033,0.808139534883721], + [42079,-0.0492443190671051], + [42061,0.378980156898939], + [13093,-0.0692325745130251], + [48199,0.681736328310113], + [19043,-0.0697778774960736], + [12099,-0.171217161771484], + [46093,0.441647597254005], + [20071,0.655913978494624], + [28139,0.492285167248564], + [27115,0.00698786318499445], + [5005,0.451537645811241], + [1113,-0.118214266687976], + [51157,0.0785413744740533], + [21187,0.32871198568873], + [12041,0.516790566521405], + [13089,-0.57413612704131], + [18047,0.437064291247095], + [48457,0.560413354531002], + [47117,0.29407302038881], + [51029,-0.0243302351011482], + [48453,-0.248049417452964], + [18163,0.110239871843514], + [13187,0.616363976783374], + [38005,-0.1738923296808], + [20133,0.351490733279613], + [46043,0.601440576230492], + [47101,0.366367024775269], + [29227,0.321393034825871], + [26045,-0.0317715553091211], + [21123,0.385896527285613], + [5107,-0.333075933075933], + [6039,0.198560969452159], + [26109,0.0296974743269498], + [34039,-0.337671980346527], + [45045,0.282800757882188], + [53057,-0.0595016104424478], + [21027,0.280254777070064], + [30019,0.513903192584964], + [19039,-0.0146137787056367], + [37191,0.0864470309725784], + [8123,0.136032359157496], + [18113,0.342636243635678], + [21013,0.524328948775532], + [4007,0.268225584594223], + [31023,0.452754857599148], + [30043,0.283582089552239], + [47157,-0.262864492830474], + [45015,0.192073729646851], + [26061,0.103637611530542], + [18115,0.278283012004365], + [28097,0.0622389306599833], + [21185,0.371834528705938], + [1033,0.206617296782296], + [1103,0.449763908848286], + [50005,-0.233734939759036], + [13287,0.146817538896747], + [48491,0.221128766018573], + [42023,0.302421432251417], + [1063,-0.69922830792396], + [42091,-0.145064710263068], + [37087,0.139622641509434], + [55071,0.0285727903152777], + [33009,-0.241896196364999], + [48013,0.184672867477542], + [19117,0.0641420118343195], + [29113,0.299007387934551], + [40139,0.703575147518223], + [31057,0.635987590486039], + [29109,0.479748558097337], + [51185,0.581695612431444], + [48235,0.712820512820513], + [39003,0.261281776181822], + [51810,0.0255807937082837], + [13147,0.388598827916889], + [39079,0.21290424857324], + [20123,0.598466364586964], + [21221,0.362471740768651], + [31087,0.634433962264151], + [27083,0.093698175787728], + [42083,0.286973024264606], + [21065,0.468756121449559], + [51199,0.210423726272228], + [13077,0.446750260088704], + [26155,-0.0372447902530233], + [55101,-0.0363903586125809], + [42033,0.293349471270226], + [19159,0.0726344719277581], + [18135,0.245343480873222], + [26139,0.345326857742208], + [38049,0.282330097087379], + [26161,-0.363391123752765], + [9011,-0.185297393628871], + [31167,0.524294670846395], + [48133,0.697489474504912], + [36021,-0.119899363157481], + [26135,0.165068147400303], + [49013,0.815474263515701], + [12011,-0.351053434545411], + [19111,-0.162873882207832], + [26083,0.141592920353982], + [1083,0.440636405109489], + [48015,0.608756080611536], + [31017,0.706771860618014], + [53041,0.240301640363834], + [46067,0.452874925903972], + [5101,0.432733504712939], + [42031,0.367471087639548], + [40125,0.386730424387328], + [26015,0.183145628308523], + [27095,0.0877934272300469], + [19079,0.0270548827621746], + [29027,0.318437008758141], + [46083,0.260686333534016], + [35007,-0.0205600850762141], + [8037,-0.149714807209674], + [40065,0.506506632975363], + [48507,-0.682522123893805], + [32013,0.373715521903732], + [55083,0.0964565919696425], + [42025,0.0703157894736841], + [8099,0.362281822051937], + [28121,0.525048153696722], + [28131,0.46591247395058], + [18037,0.282350352112676], + [19157,-0.0924248662000824], + [26027,0.138130983952893], + [21061,0.403386886669561], + [40153,0.680396319886766], + [41057,-0.0485779008306066], + [28019,0.327568134171908], + [37137,0.210084033613445], + [29003,0.34641006661732], + [45033,-0.16381679389313], + [6073,-0.05205446916317], + [48161,0.506673785371063], + [18159,0.324913254684247], + [16051,0.767279871405608], + [54011,0.141179113578741], + [12065,-0.0176705791306591], + [27117,0.2414398595259], + [37027,0.362449799196787], + [12067,0.590461997019374], + [39121,0.253763440860215], + [37197,0.521792062332603], + [8121,0.634126984126984], + [17081,0.234497954044696], + [13297,0.561912963909896], + [16079,0.084807073954984], + [27017,-0.267204450625869], + [42041,0.188116070439694], + [29125,0.418010752688172], + [20107,0.470742775256747], + [26051,0.072538442959504], + [31125,0.394285714285714], + [13219,0.493949394939494], + [39053,0.267309753483387], + [39045,0.163894729210469], + [24035,0.306493392457303], + [56005,0.747239263803681], + [51177,0.11704816739222], + [51023,0.391852678571428], + [37155,-0.16721071863581], + [21199,0.612611911249513], + [51043,0.140467339352098], + [18125,0.261126564673157], + [13079,0.329121421520237], + [27059,0.185339357327783], + [1001,0.46424957841484], + [19085,0.129068150208623], + [55047,0.207858710419061], + [39113,-0.0311586874577788], + [29197,0.254943880277926], + [8021,-0.0971313537996981], + [20005,0.213540018981335], + [8119,0.340167753960857], + [48383,0.621103117505995], + [48403,0.644307149161518], + [24037,0.165142300013928], + [27129,0.100092801272703], + [17157,0.180309182873833], + [21133,0.600140960883355], + [55077,-0.0449809402795426], + [26099,-0.0402512703556996], + [30037,0.522776572668113], + [27109,-0.032900091899698], + [40035,0.340883352208381], + [33017,-0.147233500517475], + [6047,-0.0550160505541983], + [29011,0.563739376770538], + [28067,0.385782881703099], + [26075,0.0582661554833162], + [13279,0.408143428015984], + [19003,0.0400754361150402], + [6029,0.21363885005774], + [13083,0.520982599795292], + [35039,-0.543015851510635], + [22099,0.24864390555201], + [16009,0.380851063829787], + [56003,0.662059567841153], + [6067,-0.167326290887681], + [40003,0.694001100715465], + [1091,-0.0725925925925925], + [28059,0.365603317321509], + [29121,0.341132829219575], + [48413,0.56043956043956], + [38021,0.306938775510204], + [40101,0.147803728305121], + [36003,0.258793476124976], + [1111,0.402428363283147], + [19167,0.685167800985684], + [31049,0.560327198364008], + [42069,-0.27675215277127], + [19119,0.55618241654913], + [42093,0.21012790394153], + [48449,0.393563218390805], + [25021,-0.162748701326889], + [54035,0.316165951359084], + [47035,0.497410782385292], + [48347,0.367008992187116], + [13299,0.341733615221987], + [8087,0.26413617687341], + [39081,0.0558237874341254], + [48375,0.453168838156732], + [46123,0.442089326267979], + [31171,0.791044776119403], + [54015,0.359499826328586], + [47167,0.400384368994235], + [47011,0.546711045921246], + [39131,0.00408163265306127], + [48215,-0.42198815966295], + [36047,-0.644954168920498], + [6045,-0.396517237322038], + [21189,0.63764404609475], + [22049,0.380126395051768], + [27121,0.0262943001796505], + [48353,0.458713554417983], + [13249,0.483275663206459], + [5125,0.438446432467816], + [46111,0.277623026926648], + [31071,0.676567656765677], + [29217,0.380998080614204], + [6093,0.161259879674413], + [27039,0.103406933759616], + [38013,0.538152610441767], + [29175,0.3749226644669], + [6023,-0.278829762727482], + [1095,0.608747192413277], + [30009,0.24596559673701], + [18005,0.259919874586309], + [20191,0.403804533545962], + [39175,0.208865814696486], + [42049,-0.171110591704274], + [13059,-0.295534575146721], + [38065,0.42299794661191], + [51103,0.0877702016538517], + [20019,0.645205479452055], + [40021,0.140957446808511], + [48277,0.508683110613999], + [20117,0.365544381285527], + [31111,0.415911379657603], + [24011,0.248312322082147], + [17111,0.089930552908621], + [17019,-0.0701261528675925], + [40143,0.2736869399361], + [31029,0.723835616438356], + [48073,0.514975964501418], + [46007,0.0664395229982964], + [17033,0.322817836812144], + [1053,0.256937377026935], + [18133,0.333135919455138], + [39077,0.0914275985357964], + [26081,0.0794941869811636], + [37089,0.279121820198914], + [53011,-0.00108762418921282], + [42055,0.389822851795683], + [1037,0.161042944785276], + [54069,0.229883720930232], + [32011,0.722077922077922], + [51800,-0.152863813971219], + [32017,0.61740793878527], + [1071,0.425169227728643], + [53059,0.0135187331015836], + [48069,0.4], + [51007,0.26952436876101], + [37195,-0.0735077233563611], + [37149,0.217144534690283], + [6055,-0.263104615481953], + [13069,0.293491952414276], + [38061,0.166319547753645], + [19031,-0.0445927338205698], + [27163,-0.00765035165781547], + [49045,0.526755644255956], + [30047,0.106961481365732], + [55061,0.0546021840873634], + [17143,-0.0447780661823209], + [17115,0.0534242860420968], + [29215,0.452569358375441], + [46051,0.153388148568188], + [17103,0.0743757511016157], + [20063,0.738148984198646] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-dem.json b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-dem.json new file mode 100644 index 0000000..af1733c --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-dem.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2012 Presidential Election | Democrat Votes", + "description" : "Votes cast for Democrat party (dem) candidates in the 2012 presidential election.", + "units" : "votes", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "The Guardian" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2012.votes.den"], + [26041,8330], + [48295,119], + [1127,6551], + [48389,1649], + [56017,523], + [20043,885], + [37183,286939], + [37147,40701], + [48497,3219], + [21207,1445], + [5053,1467], + [31147,1180], + [47123,4368], + [36059,243649], + [1011,4058], + [42057,1297], + [20031,884], + [31151,2232], + [31035,662], + [28033,20979], + [22061,7947], + [40129,272], + [22057,9543], + [40135,4193], + [51153,103161], + [23031,61492], + [23015,11298], + [47025,2433], + [29063,1194], + [42045,164805], + [12119,19519], + [36055,178491], + [18045,2233], + [39063,12192], + [34009,21275], + [28047,22242], + [5141,1826], + [48343,1856], + [30073,969], + [47181,1163], + [48153,551], + [46119,186], + [19097,5877], + [28087,12037], + [17155,1558], + [45073,8537], + [36101,14586], + [37143,2747], + [28035,12079], + [31027,952], + [13141,3301], + [39091,6789], + [39059,7226], + [48297,915], + [47151,1452], + [30027,1628], + [35021,260], + [23027,11292], + [49007,2204], + [20053,696], + [27113,3024], + [27159,2492], + [18131,1899], + [38041,313], + [28003,3449], + [19143,909], + [50009,1539], + [1015,15500], + [13253,1475], + [6105,2367], + [17181,3135], + [31055,99261], + [51670,5178], + [20095,731], + [21209,7532], + [48467,3083], + [31177,3103], + [29199,643], + [47027,1037], + [55111,18718], + [48045,117], + [45007,22315], + [48125,216], + [19173,1261], + [37193,8089], + [27081,1428], + [48369,528], + [1005,5873], + [42125,38503], + [51035,3500], + [47033,1669], + [39021,7826], + [36049,4263], + [29143,2814], + [51135,3344], + [26089,6576], + [48275,332], + [51073,6764], + [35051,1963], + [6069,8617], + [41051,261222], + [51610,5006], + [48195,158], + [13025,939], + [27079,6753], + [36061,417861], + [18073,4672], + [21183,2987], + [21081,2810], + [5025,845], + [27055,5281], + [37129,48038], + [26013,1574], + [48189,2228], + [20171,271], + [48211,192], + [15007,18638], + [54047,2086], + [22043,1421], + [39143,14035], + [48465,6267], + [48279,998], + [37041,3507], + [38085,900], + [39115,2772], + [1057,1803], + [22017,57879], + [13191,2860], + [51109,6949], + [46121,1976], + [31085,50], + [55113,4482], + [6083,84279], + [51820,3836], + [28049,70512], + [44003,44966], + [21229,1669], + [37065,18249], + [27029,1753], + [17061,2023], + [21029,9971], + [51071,2730], + [20083,178], + [20045,28012], + [40097,4822], + [22105,17720], + [36013,21815], + [25007,7955], + [20127,705], + [48141,112273], + [30025,236], + [55019,6173], + [19165,2468], + [13103,4941], + [55011,3569], + [31051,870], + [41023,834], + [24033,317342], + [29219,5219], + [36051,10889], + [48391,998], + [22013,3490], + [22023,408], + [17045,2563], + [21047,8252], + [13193,3211], + [1003,18329], + [38105,2288], + [19105,5514], + [22095,13178], + [32031,94806], + [20187,135], + [18139,2221], + [29037,17044], + [38057,1161], + [55035,30618], + [29079,1212], + [47077,2516], + [35029,3573], + [47173,1474], + [48005,7833], + [46061,760], + [48271,522], + [39031,6841], + [40043,301], + [6065,287754], + [30109,25], + [48325,4760], + [9005,43823], + [20039,266], + [13015,8383], + [8051,4563], + [30045,336], + [17099,23023], + [40103,1142], + [53001,1516], + [19109,3824], + [51001,7653], + [19075,2615], + [23005,100977], + [37099,8052], + [39119,16327], + [17177,7954], + [8053,228], + [40093,446], + [48171,2055], + [6061,49126], + [27153,4819], + [39041,36131], + [16071,217], + [21035,5314], + [12013,1664], + [36009,11695], + [18069,4596], + [39099,74298], + [48059,751], + [47165,18571], + [46109,2302], + [17185,1588], + [20121,4635], + [27147,8706], + [51063,2732], + [16027,19866], + [45041,28508], + [29073,2099], + [16013,5992], + [31141,3095], + [42027,33677], + [13123,1955], + [12039,15768], + [48175,1127], + [5143,28136], + [41019,17032], + [19179,8616], + [29151,1472], + [28009,2026], + [48179,885], + [13009,8469], + [13023,1266], + [47071,2467], + [32023,6320], + [39057,31028], + [47081,2693], + [48473,6401], + [55117,28356], + [8015,4967], + [21161,2592], + [41039,99891], + [13003,930], + [9013,39283], + [40045,226], + [13053,726], + [22085,2194], + [55099,3882], + [20175,1393], + [28141,1623], + [18083,5228], + [37011,1861], + [22015,12955], + [39085,55219], + [5069,17456], + [30035,2784], + [31143,527], + [55093,10213], + [51057,3009], + [48051,1705], + [13221,1913], + [5031,10351], + [21041,1629], + [13273,2544], + [42011,79895], + [18013,3056], + [38077,3190], + [42017,159598], + [16015,953], + [36111,43164], + [29095,180100], + [49055,213], + [20165,361], + [41061,3943], + [29186,3813], + [30101,582], + [37157,16170], + [5137,1356], + [39123,11214], + [29081,984], + [27173,2465], + [5041,2353], + [27023,3083], + [47095,884], + [22025,1408], + [48021,9860], + [39161,3923], + [12123,2761], + [13133,3195], + [56013,5333], + [36113,13112], + [19049,16466], + [8111,266], + [53007,12519], + [51093,8754], + [18105,22885], + [51077,2094], + [48429,475], + [8007,2637], + [8001,90843], + [26001,2462], + [37119,270705], + [21165,1048], + [54083,3325], + [48411,323], + [54077,2916], + [1039,3155], + [15001,46670], + [5061,1460], + [35023,994], + [26151,7212], + [46031,647], + [42121,7469], + [39163,2382], + [13241,1558], + [48337,1116], + [13281,1265], + [19021,3683], + [29169,4199], + [5057,2466], + [27067,9806], + [39027,5534], + [41031,3238], + [38089,2805], + [54017,571], + [21127,1520], + [26047,7225], + [53009,17231], + [45021,7219], + [27145,33552], + [51570,2541], + [28023,2695], + [24017,45621], + [5117,877], + [48031,1220], + [21169,1425], + [36091,48876], + [17015,3658], + [42065,4535], + [28015,1990], + [12019,25745], + [12115,95089], + [12071,110080], + [29205,966], + [51099,4476], + [5023,2618], + [27011,1345], + [5079,1424], + [21225,1941], + [37033,5183], + [42035,5503], + [31031,436], + [6021,3276], + [56033,3618], + [31003,571], + [20109,194], + [21227,16805], + [16059,960], + [29141,2773], + [47091,1483], + [13081,3160], + [16031,1093], + [38083,161], + [17087,1571], + [9007,47851], + [12069,61790], + [35037,1382], + [48129,226], + [5059,3824], + [1105,4536], + [47187,24328], + [32021,863], + [47073,5086], + [18175,3909], + [51013,81178], + [37103,2335], + [8081,1291], + [51121,19903], + [48483,232], + [20033,141], + [47109,2643], + [26071,2687], + [46011,5826], + [18171,1324], + [21057,599], + [29031,9713], + [38043,393], + [4012,1619], + [37007,6894], + [48205,183], + [12095,274227], + [21091,1833], + [41035,8140], + [54057,2836], + [22113,5718], + [26113,2274], + [5037,2279], + [9015,25953], + [29075,937], + [28091,3833], + [33011,101499], + [19145,2588], + [37135,53404], + [47067,475], + [20011,1951], + [8085,5852], + [18107,4244], + [13011,779], + [35025,4068], + [54041,1719], + [29065,1585], + [28115,2785], + [48071,2780], + [37059,5652], + [35001,147183], + [12035,23204], + [29123,1588], + [35041,1719], + [48231,6658], + [18095,24404], + [48361,6797], + [30039,533], + [48035,1366], + [21111,186164], + [6001,438091], + [40105,1244], + [48169,276], + [20185,403], + [26025,29270], + [19051,1518], + [29157,2184], + [47177,4748], + [42003,348151], + [36073,5411], + [4027,14025], + [28111,1519], + [9009,230040], + [35045,15688], + [42127,8138], + [21177,4771], + [49037,2062], + [26037,18187], + [51590,12215], + [20067,437], + [12087,19392], + [29035,754], + [5001,2454], + [40069,1134], + [37107,13350], + [48209,25448], + [4005,26316], + [20143,548], + [48437,579], + [41063,1252], + [19091,1967], + [22091,4233], + [48185,2339], + [40051,4780], + [31095,1185], + [39127,6857], + [48233,1042], + [13099,2762], + [16057,8306], + [56045,422], + [46053,599], + [49029,386], + [22021,1016], + [46017,472], + [19133,2098], + [16017,6500], + [42095,65014], + [51690,3855], + [40131,9146], + [55119,3761], + [17145,3813], + [27021,6858], + [48417,131], + [48339,32852], + [6099,70609], + [47013,3327], + [27085,6970], + [30017,1824], + [48165,535], + [35057,2414], + [33007,9091], + [47135,992], + [6111,138119], + [40099,1540], + [20201,515], + [48245,44626], + [18057,43794], + [19041,3363], + [47015,1560], + [1049,5235], + [42067,2533], + [26105,6856], + [34003,193470], + [48017,466], + [17013,1079], + [40061,1175], + [27015,5630], + [45057,13345], + [21149,1432], + [22107,1564], + [28113,9304], + [25019,3828], + [13321,2486], + [26097,2652], + [51089,10312], + [1009,2961], + [13303,4705], + [4019,183470], + [38025,493], + [21019,7776], + [8069,83103], + [51037,2502], + [29117,1906], + [48315,1487], + [51101,3326], + [28077,2394], + [45077,11122], + [21025,1562], + [51540,16267], + [17189,2448], + [29135,1608], + [24001,9001], + [27025,12524], + [29181,1396], + [48419,2318], + [17183,10773], + [48067,2921], + [26067,11016], + [26085,2752], + [17071,1977], + [39033,7207], + [21101,8091], + [13283,1068], + [22035,2244], + [49011,20417], + [13271,1804], + [51195,3751], + [48037,10184], + [48241,3402], + [47075,4567], + [1045,5283], + [40123,3934], + [22027,3014], + [29041,1339], + [45055,10821], + [51015,9448], + [6085,343239], + [29055,2951], + [39007,22964], + [13173,1108], + [13161,1271], + [18033,5419], + [42081,15104], + [48225,2235], + [38059,4467], + [42063,14403], + [39165,31907], + [31137,875], + [42043,64209], + [20091,107651], + [25001,70329], + [19073,2369], + [6025,17464], + [19065,5709], + [37001,28341], + [18065,7613], + [26079,3268], + [16077,982], + [46029,4588], + [46117,435], + [40115,3508], + [39097,6700], + [45083,40920], + [8091,1640], + [37081,145483], + [16075,2271], + [17011,8118], + [5049,1452], + [30063,34380], + [1065,5401], + [48105,480], + [13125,176], + [1099,4897], + [30001,1347], + [17163,66749], + [29147,3172], + [5135,2092], + [54009,3984], + [21117,24917], + [48257,9451], + [16085,2095], + [26021,33465], + [36089,19574], + [37189,13371], + [36117,15136], + [8023,1317], + [17049,3855], + [51059,260835], + [39001,3857], + [17135,5053], + [36031,8835], + [12037,1845], + [39109,15731], + [53039,4373], + [41009,11843], + [1101,62993], + [29039,1536], + [17097,151552], + [5017,2649], + [13107,2919], + [27093,4969], + [17043,197411], + [26121,44436], + [36109,24447], + [21083,4547], + [48317,247], + [6053,51712], + [13247,21878], + [13109,1266], + [29097,12808], + [40039,2358], + [22001,6559], + [42123,6768], + [54091,1933], + [48493,4819], + [55051,1783], + [37113,5692], + [5115,5108], + [1131,4867], + [13137,2297], + [8095,588], + [42013,15516], + [5045,13559], + [5139,6182], + [20003,937], + [30005,1598], + [31093,914], + [55059,44838], + [48291,5196], + [45037,4965], + [38053,926], + [34035,70168], + [32007,3510], + [55045,11196], + [12051,4751], + [36069,21285], + [20007,473], + [35015,6110], + [16061,396], + [24045,17481], + [48187,15654], + [51720,566], + [46003,556], + [8067,15063], + [51710,55654], + [16035,1032], + [36045,15345], + [33005,25329], + [48481,4235], + [26065,80903], + [19099,10240], + [6033,9159], + [22125,2441], + [38051,456], + [55041,2421], + [53055,6943], + [27007,11818], + [51053,6425], + [38063,766], + [20065,248], + [36043,10433], + [13113,19703], + [23007,9292], + [38037,331], + [40017,10533], + [13061,862], + [51770,22179], + [13201,848], + [48163,2376], + [17175,1095], + [48269,5], + [30111,26275], + [31119,3368], + [44009,34904], + [31133,396], + [46037,1497], + [17093,21219], + [19029,2856], + [4017,16157], + [16005,13214], + [47099,4237], + [8101,40624], + [8043,6644], + [12043,1603], + [13095,26209], + [13155,1134], + [31063,381], + [36039,7911], + [22055,31766], + [39065,4487], + [56043,794], + [55107,3391], + [27045,5713], + [29051,12003], + [13087,4580], + [17057,8324], + [22045,12129], + [46023,1482], + [46069,189], + [13291,2137], + [17117,9440], + [21063,1186], + [35055,11855], + [46039,941], + [19023,3321], + [37173,2618], + [48307,537], + [40079,4658], + [28043,5279], + [48223,2775], + [21049,5228], + [42131,4812], + [20111,4972], + [47069,5479], + [54043,2204], + [13151,43374], + [20101,170], + [48173,44], + [6081,151036], + [38011,412], + [51027,3094], + [56011,426], + [17201,60334], + [51630,7114], + [48289,1061], + [55123,8031], + [17129,2095], + [48333,279], + [21005,3315], + [37121,1810], + [19183,5081], + [31059,794], + [16025,159], + [17199,10622], + [45039,7743], + [1079,5055], + [12055,16147], + [19077,2565], + [31157,4193], + [29221,3402], + [53077,25945], + [29119,1920], + [21077,1238], + [48501,409], + [42103,10170], + [29057,939], + [48401,4451], + [20141,320], + [19187,9458], + [42075,18975], + [20099,3074], + [48079,256], + [24025,46390], + [12015,35896], + [13027,3101], + [29071,16294], + [41055,317], + [6057,14261], + [47041,2168], + [26111,17480], + [34013,217950], + [21159,574], + [19093,1317], + [39093,78112], + [45009,4600], + [47147,8289], + [47169,1238], + [29183,71798], + [54021,830], + [37095,1157], + [47107,4603], + [21163,4122], + [20079,5162], + [55049,8099], + [36103,274830], + [51740,28994], + [46045,622], + [16081,1926], + [13233,3608], + [39153,147146], + [53043,1649], + [51840,5089], + [53005,27846], + [13129,3436], + [27151,2751], + [19089,2767], + [19139,11213], + [49047,962], + [18121,2106], + [4009,3608], + [21037,15080], + [8005,135433], + [37187,3811], + [55097,22052], + [29007,3538], + [27033,2433], + [51107,81900], + [51137,6870], + [31101,920], + [8047,1854], + [21153,1433], + [39071,5772], + [55025,215389], + [51111,2684], + [53049,5684], + [27009,8173], + [42099,5430], + [5013,660], + [20137,393], + [40147,5532], + [23019,38816], + [39005,8083], + [27073,1974], + [8107,7389], + [29139,1734], + [54087,1928], + [5055,3998], + [27013,18164], + [40019,4907], + [20073,653], + [17059,1028], + [42059,5564], + [28007,3368], + [51183,3350], + [55131,23136], + [27099,11129], + [1119,5420], + [1085,5747], + [48109,566], + [17063,9319], + [47023,1622], + [46071,426], + [24005,202733], + [48439,252789], + [38071,2162], + [20113,3384], + [20089,225], + [41067,124431], + [40049,2556], + [13189,4041], + [47021,4656], + [36067,112664], + [8014,16653], + [18025,2040], + [28041,1325], + [39089,32264], + [19019,5903], + [37181,13286], + [22065,3154], + [13185,17118], + [8013,120485], + [20163,398], + [37021,70066], + [48177,1773], + [12081,66476], + [46081,3973], + [21181,948], + [38029,383], + [20125,3406], + [27035,14760], + [36071,67709], + [36081,399970], + [31181,440], + [20173,69373], + [13301,1525], + [55007,6025], + [36079,17851], + [28153,4116], + [27091,4054], + [51036,2772], + [55069,7543], + [48097,2240], + [23029,7797], + [47163,15303], + [19061,28600], + [21155,3418], + [51191,7076], + [35009,3956], + [6049,1113], + [51033,7258], + [51141,2417], + [19161,2117], + [17131,4503], + [55005,10883], + [26127,5063], + [16063,429], + [29053,2474], + [53047,5259], + [1107,4448], + [41017,34985], + [46035,3042], + [41033,14929], + [17035,1640], + [40067,602], + [17123,2452], + [35031,15363], + [28127,4723], + [31039,1015], + [51640,900], + [46095,375], + [19121,3508], + [18015,2631], + [51165,10059], + [47085,2904], + [12113,17757], + [46089,272], + [18043,14805], + [51009,5898], + [12017,28453], + [30093,10782], + [16003,577], + [31099,761], + [39037,6610], + [24021,51187], + [51510,52434], + [48101,180], + [27037,116252], + [46059,575], + [47063,5229], + [40013,3533], + [13075,2042], + [54097,2143], + [54045,3461], + [48385,277], + [51003,29712], + [51011,2453], + [47079,4337], + [21033,1852], + [48131,3331], + [19103,50090], + [29043,9809], + [21237,976], + [49051,2097], + [38045,737], + [29001,4218], + [40127,1043], + [29017,1213], + [1121,13878], + [28085,4879], + [18145,5357], + [31019,5266], + [30023,2829], + [26005,19594], + [6079,57655], + [47185,2793], + [48281,1457], + [26117,11431], + [39087,10454], + [5063,3279], + [46033,1335], + [12121,4749], + [37133,18115], + [54025,4681], + [48261,82], + [1089,61802], + [22059,764], + [13205,4081], + [5133,1042], + [55125,5931], + [48159,750], + [41059,8499], + [51051,2472], + [8057,216], + [31155,3279], + [8079,291], + [47161,2069], + [32003,387978], + [36057,7881], + [29129,353], + [38079,3351], + [34017,136239], + [41021,371], + [37075,1115], + [16053,1699], + [13005,791], + [37063,109185], + [28105,8030], + [17027,5577], + [51161,19589], + [38099,2118], + [20207,377], + [40071,4624], + [34033,14456], + [28029,7201], + [48423,22101], + [39151,86314], + [19153,128264], + [21007,1189], + [28027,7164], + [28079,3599], + [41053,15761], + [22117,6351], + [26145,54372], + [48313,964], + [28129,1979], + [18063,21100], + [29225,4407], + [6095,87225], + [37005,1574], + [47061,1637], + [46113,2922], + [31081,1136], + [25015,56552], + [13143,1787], + [40055,488], + [37049,18556], + [36099,6526], + [45001,4507], + [42037,10424], + [56029,2927], + [26137,4681], + [15009,35979], + [13049,1197], + [21175,1369], + [35027,2931], + [30071,471], + [35003,557], + [13217,21844], + [26009,5107], + [37067,91606], + [12033,58154], + [5147,1340], + [28081,12043], + [10001,35525], + [48359,71], + [46125,1411], + [37117,6514], + [18129,4531], + [26095,951], + [6015,3396], + [27169,14980], + [8017,162], + [29161,5798], + [30053,2544], + [1093,2249], + [13293,3955], + [42053,894], + [16069,6451], + [55105,49158], + [27057,4676], + [46101,1429], + [47093,57594], + [21151,11512], + [48267,217], + [17159,2360], + [6075,267857], + [26157,11643], + [48407,2410], + [39061,208508], + [30087,1478], + [54101,939], + [13157,4236], + [13317,2080], + [20025,171], + [37139,9970], + [37097,25952], + [21119,1420], + [49015,569], + [48293,2208], + [40109,106812], + [48181,10665], + [48183,12336], + [48055,4787], + [12086,540776], + [54109,1575], + [22073,26629], + [51187,6449], + [45089,11318], + [30021,1219], + [31109,59970], + [6031,12282], + [20179,165], + [39067,2895], + [55027,18745], + [33019,12166], + [13111,2027], + [48447,109], + [17009,787], + [48009,525], + [39145,14432], + [26073,13038], + [26057,7606], + [48085,100754], + [18027,2437], + [35019,1388], + [21087,1165], + [47115,3952], + [1075,1643], + [1073,159658], + [13231,1355], + [12107,11666], + [35033,1952], + [37017,8277], + [5009,3762], + [56039,6211], + [1021,3391], + [20181,575], + [48387,1482], + [48311,67], + [46135,4208], + [1007,2200], + [49027,424], + [21205,3438], + [21125,3905], + [28125,1571], + [17167,41961], + [21235,2683], + [13035,2966], + [27065,3586], + [19053,1790], + [8035,54093], + [8109,1762], + [17069,742], + [40133,2597], + [48377,1273], + [34011,30172], + [40121,4813], + [24027,84017], + [46009,1167], + [12089,10249], + [40027,34701], + [51017,894], + [26163,595253], + [38069,656], + [20129,180], + [29091,4393], + [28083,8423], + [48475,836], + [19135,1729], + [6103,6032], + [5039,1337], + [48089,2024], + [18003,59834], + [1043,4855], + [18127,36950], + [37127,24214], + [51081,3135], + [39015,6923], + [18169,3929], + [29005,756], + [21009,5400], + [39025,29334], + [45063,34007], + [48259,3035], + [56037,4773], + [27069,1241], + [47003,4207], + [26055,20875], + [31053,5588], + [17079,1434], + [21075,1022], + [12129,5173], + [12133,2820], + [40087,3191], + [13067,132526], + [19071,1636], + [24019,6570], + [51095,17854], + [30065,482], + [19057,11873], + [27157,5415], + [39051,8790], + [51133,3186], + [28037,1706], + [47189,14669], + [47045,3757], + [37105,10577], + [37123,4689], + [22041,2921], + [48229,379], + [36083,34713], + [1087,9045], + [19107,2298], + [20051,3464], + [13039,6358], + [55031,14855], + [20037,6545], + [21143,1373], + [13257,2123], + [48003,794], + [13267,1894], + [51061,13891], + [40033,657], + [13229,1124], + [42133,72126], + [46107,339], + [48247,1301], + [18147,4026], + [1077,12504], + [42097,12392], + [19169,25940], + [45079,94350], + [48443,184], + [36011,14162], + [39083,10154], + [13159,1839], + [13021,38538], + [37009,4100], + [47087,1736], + [56025,8960], + [19047,3035], + [39141,13895], + [46103,15122], + [42001,14893], + [54063,1441], + [6071,274203], + [31161,389], + [36075,21733], + [20069,304], + [48409,7854], + [37167,8287], + [17173,3336], + [42117,5053], + [41015,4611], + [8029,4542], + [51750,2732], + [28053,3399], + [20059,3611], + [41025,829], + [29133,1857], + [28117,2817], + [23003,17844], + [17077,11306], + [27155,942], + [49019,1678], + [40025,115], + [29173,1736], + [19015,7457], + [34001,59509], + [46041,1207], + [27139,29714], + [29101,7661], + [17109,5957], + [20049,277], + [55053,5297], + [39075,2568], + [37069,13317], + [5123,4652], + [48305,464], + [21107,5789], + [27131,17054], + [5077,2107], + [1061,2039], + [6009,7404], + [18079,3818], + [21023,1147], + [5065,1563], + [20027,811], + [54007,1985], + [12005,22037], + [21015,15628], + [55009,62433], + [6063,3670], + [8113,2961], + [36015,15285], + [19115,2449], + [51775,4756], + [28103,4920], + [36019,17123], + [17091,21574], + [45059,10297], + [28051,6775], + [31069,242], + [51113,2637], + [56001,7445], + [31123,450], + [29013,2557], + [13057,19813], + [31077,340], + [18051,4928], + [51830,4901], + [28143,3371], + [48191,265], + [45071,6891], + [17001,9627], + [8073,537], + [42005,8694], + [31025,4298], + [37045,16734], + [1097,78417], + [37051,74991], + [17085,5660], + [51065,5885], + [48115,1017], + [48039,34327], + [36017,8340], + [37177,835], + [48471,5283], + [26131,1585], + [12091,23390], + [12007,3324], + [6041,73450], + [20177,35959], + [23017,16052], + [19101,4772], + [17017,2050], + [39049,325654], + [27143,2916], + [36115,10596], + [20147,376], + [47141,7793], + [13119,1499], + [19095,4118], + [33013,44635], + [51171,6462], + [47131,3320], + [20013,1039], + [16007,302], + [34021,94300], + [55109,19874], + [55075,9868], + [56007,2109], + [18111,2212], + [34005,115951], + [18011,8326], + [49021,1720], + [48113,403170], + [22071,126199], + [27077,859], + [17083,3656], + [45067,9518], + [47127,705], + [1069,12348], + [8117,9169], + [18117,2939], + [37035,23954], + [45029,8470], + [19155,19347], + [38101,8412], + [6011,2248], + [21095,1830], + [1115,5790], + [6107,29191], + [48147,2482], + [55095,10054], + [55139,45410], + [39055,19295], + [20001,1842], + [8055,1897], + [18041,3553], + [20103,11072], + [53029,21080], + [20097,160], + [48043,1765], + [12093,4856], + [22039,5330], + [19005,3511], + [17031,1439123], + [48265,4325], + [46129,671], + [34007,137795], + [51700,50990], + [48373,4836], + [54081,7651], + [16037,530], + [17051,2848], + [51041,78954], + [21055,960], + [48341,963], + [1019,2126], + [55127,22512], + [45085,27550], + [48303,26088], + [31185,1352], + [20017,343], + [21147,1069], + [53053,180478], + [40083,4686], + [37071,32903], + [47133,2802], + [53069,1091], + [36121,5224], + [37091,7815], + [21213,2650], + [29137,1398], + [28161,2984], + [13001,1756], + [12079,4174], + [29019,39782], + [21121,2484], + [27053,423979], + [38009,1163], + [38103,671], + [19067,4674], + [13223,15779], + [16011,3822], + [46055,138], + [18053,9589], + [30085,2044], + [6077,80005], + [27161,4370], + [34041,17869], + [1041,2048], + [56041,1628], + [18155,1437], + [18097,215474], + [39125,3435], + [21085,2744], + [48345,55], + [49001,341], + [55067,4569], + [12009,122972], + [8031,209759], + [13115,9595], + [28109,3813], + [27105,3793], + [26159,16288], + [40151,670], + [22101,9448], + [53031,11985], + [48041,17440], + [26031,5829], + [16019,9929], + [41037,769], + [5015,3691], + [20077,536], + [13215,42458], + [39149,6065], + [41043,19893], + [47171,1909], + [45091,38757], + [18023,3307], + [24047,9841], + [13181,1586], + [13063,81439], + [53017,5047], + [39117,5780], + [13199,4328], + [13101,173], + [42071,87108], + [10003,167051], + [47057,1668], + [19163,50581], + [37083,16931], + [19063,2087], + [29047,47250], + [51005,3403], + [17021,5487], + [18061,6600], + [42087,4259], + [49049,15791], + [37175,6740], + [55115,8990], + [51145,4066], + [13019,1268], + [26141,3192], + [41003,27662], + [18091,24104], + [21193,2047], + [12075,6118], + [48263,66], + [28163,6220], + [5035,9092], + [13105,3179], + [27097,6153], + [55085,10439], + [46079,2724], + [54027,2294], + [45017,4043], + [34015,72960], + [18077,5728], + [47083,1400], + [40145,7773], + [21211,6634], + [22083,4074], + [31047,2157], + [54099,4915], + [22033,102460], + [30029,13534], + [31083,311], + [48151,512], + [24015,15489], + [51031,7591], + [40015,3151], + [27041,8665], + [25009,208723], + [51197,3782], + [34037,23406], + [31089,862], + [53071,5713], + [26087,18786], + [18021,3630], + [13117,14544], + [13073,16420], + [13029,3695], + [27111,12165], + [40007,243], + [1017,6853], + [5091,4518], + [5043,2627], + [38031,604], + [48459,2953], + [5033,4872], + [12077,942], + [51760,71037], + [8003,3782], + [38019,818], + [39047,4075], + [55089,19075], + [18093,5779], + [21105,686], + [40137,3939], + [13177,3187], + [30031,21534], + [48077,740], + [55121,7601], + [26147,33845], + [40031,12517], + [17139,2142], + [48023,267], + [32027,632], + [17195,12393], + [20149,2291], + [37109,10980], + [48255,1324], + [5075,1786], + [45043,14119], + [27001,4412], + [12059,1264], + [6019,85862], + [31079,6971], + [37031,10197], + [36097,3354], + [31113,68], + [17101,2010], + [5097,920], + [12125,1339], + [38093,3561], + [29015,2925], + [48065,292], + [37153,9747], + [48485,10490], + [27107,1730], + [54075,1298], + [16023,258], + [54059,2421], + [35061,13473], + [20029,951], + [19001,1788], + [36037,8886], + [28005,3218], + [27061,12852], + [50013,2531], + [18183,4420], + [19131,2831], + [17023,2587], + [29213,5462], + [34029,96500], + [50015,8371], + [24023,2792], + [37151,14675], + [29059,2122], + [5087,2099], + [22115,3173], + [16083,7541], + [42015,8291], + [29510,116654], + [18059,9303], + [48487,971], + [42007,36833], + [18165,2979], + [27165,2494], + [51091,459], + [13277,4640], + [51790,5710], + [48445,1059], + [48455,1614], + [8105,2428], + [50027,19440], + [51175,4437], + [13319,2180], + [16047,1287], + [39137,4238], + [17003,1961], + [21131,433], + [1035,3551], + [20041,1962], + [48503,992], + [1013,4367], + [39017,59282], + [55029,9338], + [31139,637], + [31011,615], + [42119,6063], + [36023,9445], + [42077,77029], + [55129,4435], + [47017,3475], + [51179,27130], + [5029,3003], + [6037,1672164], + [5109,850], + [13031,9572], + [27103,9652], + [31043,2831], + [30015,969], + [5149,1720], + [39147,10962], + [31097,790], + [37079,3761], + [30003,2830], + [42039,13024], + [13179,10427], + [20157,470], + [1081,21274], + [53051,2501], + [51660,8650], + [29025,1313], + [29033,1154], + [24043,23282], + [17095,12993], + [54005,2777], + [17029,9252], + [29149,1419], + [22047,9548], + [8039,3542], + [8089,3566], + [47009,12925], + [30079,167], + [21201,340], + [55023,4622], + [26069,6242], + [50003,11517], + [31065,422], + [37029,1456], + [31067,3870], + [29021,15594], + [54093,876], + [29105,4093], + [17037,21171], + [28065,4094], + [38047,221], + [31131,2542], + [48335,536], + [54037,10215], + [22111,3075], + [12131,6665], + [38027,484], + [37037,18252], + [17187,3893], + [27171,26584], + [54103,2194], + [49031,74], + [36063,40862], + [48379,754], + [26049,128972], + [19025,2232], + [8103,561], + [46049,331], + [36119,171908], + [20145,704], + [31121,921], + [17127,2092], + [50025,16080], + [22119,6802], + [45013,29775], + [35049,49668], + [45069,7554], + [5011,1447], + [56019,749], + [18039,24376], + [45035,23390], + [19081,2506], + [31041,1066], + [17073,12316], + [21097,2471], + [22075,3597], + [18001,3800], + [21157,5022], + [53019,1276], + [56035,767], + [17179,24385], + [40077,1169], + [37047,10973], + [53023,335], + [55015,11477], + [5067,2093], + [48397,8112], + [17055,7245], + [40107,1251], + [22063,7448], + [21141,3469], + [48319,380], + [54079,7198], + [5145,5765], + [48351,1721], + [40001,2110], + [12001,69634], + [37159,22529], + [23001,28912], + [20189,241], + [39023,30022], + [6027,2775], + [51047,8263], + [26019,4683], + [49003,1830], + [40059,173], + [48405,1193], + [51075,4676], + [30069,49], + [21223,1355], + [40047,4732], + [56027,200], + [55073,32330], + [35043,26831], + [31103,80], + [1123,6252], + [32001,2961], + [54039,32190], + [51620,2830], + [22127,1919], + [37141,9455], + [36087,60446], + [26133,3981], + [18085,6862], + [22005,16343], + [13097,28410], + [41049,1189], + [29187,8837], + [29103,698], + [20085,1870], + [40119,9193], + [28089,20722], + [13197,1411], + [17107,3974], + [20161,8587], + [48107,639], + [46127,2782], + [42085,23082], + [13045,12635], + [13289,2269], + [55003,5387], + [56009,1089], + [1067,3046], + [27167,1258], + [51155,5287], + [47051,5594], + [16055,18824], + [17025,1581], + [18149,3809], + [40005,1241], + [45025,7942], + [48063,1428], + [16067,1390], + [12021,51678], + [26143,6198], + [6007,32567], + [29223,1811], + [47065,58794], + [19037,3552], + [42105,1892], + [22009,6075], + [26149,10106], + [29009,3667], + [47149,36400], + [40057,264], + [22121,5692], + [21217,3284], + [47005,2255], + [30097,473], + [29045,1398], + [1117,19944], + [32005,9288], + [29207,3153], + [48075,320], + [28071,7098], + [20205,813], + [5003,2855], + [37013,9399], + [48203,8431], + [22003,2616], + [38095,511], + [17113,31590], + [21171,936], + [27149,2742], + [16029,385], + [18179,3434], + [18177,10591], + [36029,220184], + [8049,3575], + [46087,905], + [19175,3029], + [22051,70000], + [32033,983], + [48149,2311], + [30107,272], + [33001,15884], + [31169,724], + [48381,7553], + [46115,1300], + [55001,5537], + [33015,80096], + [18017,5365], + [17169,1726], + [48111,253], + [12045,2013], + [31007,55], + [21103,2529], + [13043,1155], + [22093,7055], + [49025,718], + [1029,971], + [13311,1670], + [51025,4993], + [29023,4363], + [40073,844], + [48393,25], + [35047,8754], + [42009,4730], + [20151,974], + [48219,1482], + [55141,18546], + [21135,1342], + [37163,11496], + [26033,7100], + [49039,889], + [36007,38315], + [20131,988], + [20047,291], + [41027,5977], + [27019,20745], + [45061,5972], + [45049,5814], + [18071,5838], + [28039,1352], + [42029,122232], + [21059,16208], + [48415,837], + [54055,5416], + [22019,28357], + [18143,3998], + [47029,2804], + [45005,3335], + [48349,4348], + [48479,37592], + [30051,257], + [19055,4605], + [31159,2362], + [29189,294735], + [48427,10248], + [51169,2395], + [40149,821], + [28017,3914], + [55081,9505], + [44007,156022], + [4021,41428], + [42019,28385], + [46005,2881], + [6051,2574], + [51115,1807], + [17153,1389], + [29111,1507], + [29195,3785], + [51125,4171], + [27075,4043], + [1055,12792], + [28151,12188], + [23023,11821], + [16039,2513], + [37039,3339], + [37019,21932], + [56015,1458], + [25017,467173], + [38003,2389], + [51049,2422], + [21233,1765], + [48287,1630], + [19149,4148], + [51530,919], + [49017,306], + [46077,1092], + [36005,288378], + [13307,573], + [22109,12071], + [48007,2703], + [21173,3701], + [1047,14599], + [30095,1209], + [22053,3483], + [39039,7438], + [38001,328], + [56023,1287], + [26077,69045], + [40075,1101], + [38039,535], + [16087,1104], + [18031,2941], + [51680,15905], + [38087,83], + [24029,4453], + [24031,286493], + [38081,1073], + [19083,4021], + [20105,284], + [41029,42341], + [42021,23181], + [51139,3724], + [21167,2966], + [8025,535], + [21203,1097], + [48087,177], + [48451,9246], + [47001,10112], + [13259,1307], + [21017,3075], + [29153,1261], + [5095,1583], + [48469,8795], + [19195,2343], + [55037,952], + [50001,12290], + [47089,4230], + [45011,5182], + [54001,1761], + [47047,6683], + [48057,2510], + [30067,3728], + [37061,8923], + [48237,303], + [39135,6005], + [35005,6621], + [34031,104057], + [47119,11819], + [30081,6466], + [21089,6027], + [5121,2040], + [20159,899], + [47153,1488], + [39157,17516], + [21079,1661], + [5027,3557], + [28073,5037], + [16001,77043], + [55055,20136], + [39111,3007], + [28119,2837], + [26059,7106], + [18087,2897], + [21179,7611], + [26029,5936], + [21139,1346], + [47019,4786], + [45053,5727], + [39133,38082], + [19147,2124], + [29167,3580], + [38055,1660], + [26063,6432], + [19191,6245], + [8097,6648], + [28013,2250], + [48253,1225], + [17125,2867], + [13183,1434], + [51083,7760], + [17053,1654], + [21093,15214], + [51580,1319], + [20021,2868], + [48099,5141], + [36095,4862], + [4025,32624], + [48093,890], + [35059,471], + [5111,2387], + [38015,14036], + [49053,7762], + [13007,790], + [51595,1793], + [5103,4626], + [48421,121], + [30007,761], + [20119,254], + [40041,4176], + [35035,6715], + [24009,18963], + [27051,1647], + [19151,1518], + [1109,6009], + [8059,153069], + [4003,16223], + [48365,2211], + [31173,1153], + [6005,6001], + [47125,24349], + [28011,9772], + [22031,5552], + [46019,1000], + [47097,4010], + [48301,9], + [13017,2508], + [32015,534], + [12029,1798], + [28107,9079], + [4023,9486], + [40063,1370], + [20193,576], + [48357,253], + [55078,1191], + [17197,127522], + [48461,332], + [12101,98148], + [12117,96435], + [21145,10062], + [13261,6370], + [22037,4648], + [47105,5057], + [48197,302], + [22087,5052], + [49009,91], + [54085,762], + [6087,61106], + [22029,3833], + [29165,19171], + [19123,4207], + [6003,389], + [19177,1398], + [13195,2486], + [22089,8894], + [19087,4451], + [28133,7989], + [51683,8478], + [48027,35315], + [51119,2370], + [13227,1975], + [1023,3785], + [41007,9616], + [39107,4609], + [50021,17087], + [37101,27052], + [21195,5645], + [16041,325], + [17105,5014], + [42109,4672], + [28137,4572], + [37199,3954], + [47007,1267], + [13065,852], + [40081,3265], + [1129,2971], + [48227,1042], + [48273,4752], + [30049,15479], + [17007,9868], + [44005,23507], + [28001,7999], + [13285,10545], + [48019,1859], + [53035,59701], + [53027,15692], + [9001,214757], + [51131,3737], + [20075,159], + [27127,3008], + [21231,1855], + [6013,230826], + [37145,8384], + [48143,1965], + [40011,991], + [17151,649], + [5021,1738], + [48117,1239], + [28149,9899], + [5081,1552], + [45065,2637], + [12031,196657], + [42111,9420], + [31117,41], + [55087,45565], + [46075,108], + [41011,12628], + [18099,6136], + [5093,6445], + [1031,4899], + [22123,853], + [19009,1608], + [47037,138899], + [48001,3796], + [49057,17569], + [22081,2253], + [41045,2701], + [31175,494], + [45075,30454], + [1125,32003], + [46021,153], + [13255,9884], + [18137,3241], + [20197,908], + [20155,7888], + [13225,6141], + [13209,1135], + [55103,4964], + [19011,6850], + [40009,1413], + [9003,244314], + [38007,89], + [55013,3981], + [51730,14377], + [37057,20291], + [48053,3672], + [20135,211], + [28075,12642], + [27125,928], + [13213,2542], + [48499,3052], + [27087,1276], + [17089,91120], + [55043,13574], + [51550,54999], + [53075,6910], + [26123,8723], + [31179,1074], + [49033,83], + [29077,46130], + [54013,801], + [47039,1302], + [42129,63380], + [12111,65869], + [40141,906], + [13167,1305], + [36001,80891], + [18153,3191], + [37171,9005], + [46091,1061], + [13251,2769], + [26003,2212], + [49035,132686], + [48331,2632], + [17047,754], + [45087,5748], + [48495,398], + [55021,17158], + [54107,11067], + [48367,7804], + [5119,87055], + [48395,2792], + [25023,130278], + [29127,4034], + [55091,1875], + [54071,1067], + [39011,5643], + [39013,13826], + [1027,1770], + [17147,3081], + [29099,41570], + [47159,2467], + [26007,6549], + [51019,10925], + [27005,6829], + [8115,419], + [13211,2751], + [12063,7342], + [6043,3080], + [47049,1559], + [19113,68028], + [51097,1743], + [47143,2625], + [48285,1427], + [38075,398], + [42047,5144], + [40117,1813], + [47059,6216], + [48201,585451], + [30089,1716], + [8065,1807], + [40029,648], + [27133,1945], + [39095,129229], + [4015,18324], + [31091,59], + [25005,142481], + [13085,1241], + [5073,1173], + [17039,2598], + [28057,1599], + [18161,1018], + [19069,2256], + [6109,9628], + [55079,328090], + [18067,15097], + [48213,6094], + [39155,59446], + [18055,4340], + [48431,31], + [51167,3716], + [37125,16371], + [13139,12489], + [26093,37186], + [35053,3983], + [22007,4754], + [8041,104989], + [12127,114716], + [42051,21841], + [48193,591], + [51193,4155], + [31005,30], + [39029,19351], + [45081,3322], + [48145,2033], + [5089,2024], + [22067,5887], + [51600,6636], + [26125,349055], + [48441,9725], + [30011,96], + [8063,789], + [51650,51733], + [37161,9277], + [28145,2481], + [5105,1187], + [13145,4141], + [56031,1223], + [39019,5396], + [20061,3158], + [48033,32], + [48363,1810], + [22097,19668], + [55039,22356], + [48061,49159], + [26119,2049], + [32019,7380], + [8075,2675], + [20195,289], + [29155,2671], + [51678,1484], + [29185,1460], + [29163,2581], + [21011,1770], + [31105,391], + [8071,3282], + [18035,22630], + [37179,32032], + [46097,479], + [42073,17427], + [29211,908], + [18081,17080], + [20167,584], + [51159,1574], + [37023,13577], + [54051,3395], + [21069,1911], + [1133,1286], + [41013,3081], + [37073,2745], + [30041,3372], + [31145,940], + [21039,750], + [31013,1634], + [22103,25723], + [53003,3993], + [46025,713], + [29083,3604], + [5007,22144], + [54073,942], + [17193,2187], + [41001,2364], + [47121,1163], + [47183,3547], + [28099,3030], + [13309,772], + [12047,2226], + [8061,118], + [53013,634], + [51079,3284], + [39173,31596], + [51085,18283], + [48329,8223], + [13037,1297], + [39139,21785], + [13013,6019], + [24013,26067], + [21031,1293], + [47031,5865], + [31021,1280], + [34025,125471], + [18109,7969], + [5085,5612], + [38091,515], + [21051,1111], + [12103,238966], + [29115,2031], + [38023,382], + [40113,6695], + [48323,8302], + [41065,5066], + [6113,38856], + [21115,1723], + [48399,517], + [26043,4952], + [29145,6425], + [28155,1087], + [48239,1068], + [49005,5434], + [17075,3408], + [13207,3779], + [55065,4534], + [13149,947], + [18089,130824], + [48435,369], + [8009,462], + [37043,1573], + [48433,160], + [28025,5860], + [8083,4486], + [13243,1749], + [27063,2268], + [31115,62], + [48309,25688], + [28095,6990], + [45027,8967], + [46099,34668], + [48095,194], + [27071,3451], + [29061,1124], + [26101,6467], + [48083,441], + [29085,1733], + [46085,605], + [39169,18932], + [36065,37388], + [46063,82], + [18029,6527], + [1051,8940], + [51105,2593], + [19007,2934], + [51149,7671], + [12105,114610], + [39073,6010], + [19127,10085], + [13237,2917], + [28045,3879], + [13135,131879], + [53021,6876], + [40091,2767], + [17005,3016], + [19137,1919], + [13163,4238], + [55135,11565], + [13175,7508], + [36123,4021], + [8125,950], + [40053,393], + [48103,275], + [17121,6210], + [27135,2772], + [30099,1073], + [33003,13977], + [54053,3738], + [47113,18360], + [47103,3283], + [29087,551], + [28063,3508], + [17171,910], + [47139,1856], + [46073,452], + [36105,13781], + [21043,3383], + [45003,23953], + [46013,7249], + [31075,30], + [49041,701], + [29049,3685], + [23025,12211], + [12027,4174], + [53065,6014], + [27101,2160], + [45031,15452], + [5129,814], + [51127,3555], + [12083,66823], + [28101,3069], + [21067,62078], + [21021,4471], + [51045,830], + [48047,1886], + [39105,3911], + [28021,4633], + [35013,36778], + [17141,9504], + [51067,9082], + [48091,11437], + [4013,512008], + [30105,1386], + [37003,4591], + [26053,4058], + [28069,3239], + [24039,4478], + [13071,3971], + [12109,35155], + [12049,2461], + [36053,12698], + [54065,2361], + [6097,124504], + [53073,49743], + [50011,12057], + [55133,77617], + [19027,4912], + [47111,1552], + [48167,39162], + [35017,7009], + [38035,14008], + [8011,778], + [20009,2693], + [39159,8546], + [54033,9660], + [1059,3171], + [42101,557024], + [41071,18906], + [30077,884], + [27027,15210], + [5113,1556], + [29229,1953], + [48489,3595], + [17137,5792], + [4001,16833], + [49023,436], + [42113,1028], + [37015,6537], + [5051,13317], + [40085,1034], + [20209,33265], + [48025,3451], + [30061,698], + [16033,66], + [39069,5513], + [31009,29], + [8019,3041], + [54049,8905], + [34023,179515], + [25025,219208], + [19129,2842], + [17203,5564], + [46057,921], + [18075,3063], + [39101,11933], + [36027,59885], + [8033,329], + [51021,735], + [48029,263871], + [51117,6786], + [27141,17597], + [19197,2794], + [6035,3044], + [54095,880], + [20015,7124], + [37053,3521], + [38017,34632], + [26153,1865], + [46065,2786], + [48119,454], + [48049,1904], + [51143,10855], + [30055,221], + [55137,5330], + [56021,13807], + [13305,2594], + [21137,2582], + [36033,9065], + [21191,1859], + [28093,9581], + [24003,115960], + [18181,3635], + [51163,4087], + [38033,161], + [26023,6526], + [27089,1854], + [13263,2264], + [29177,4264], + [51069,12683], + [30057,1285], + [26129,4791], + [18049,2621], + [40089,2440], + [51735,1679], + [12003,2310], + [6089,18184], + [17133,6205], + [35011,287], + [47129,1722], + [54003,14122], + [5127,895], + [31037,959], + [29179,1155], + [17149,2276], + [47175,875], + [13033,5403], + [20199,68], + [28147,3386], + [48321,3972], + [36093,33777], + [21219,1403], + [6091,652], + [35028,5191], + [13275,7651], + [48157,101043], + [18173,8791], + [31001,3991], + [54019,5368], + [31061,381], + [18141,56458], + [31033,983], + [10005,39971], + [20057,2468], + [20139,2228], + [13295,5269], + [39035,420953], + [27043,3407], + [32009,92], + [29107,5650], + [48477,3378], + [48081,179], + [27031,1993], + [29089,1722], + [29131,2651], + [29069,3635], + [21001,1660], + [31107,1055], + [23021,4168], + [25003,48596], + [12073,90863], + [48155,140], + [31129,567], + [26039,2994], + [37025,32453], + [16021,1225], + [28031,3800], + [48299,1818], + [11001,222332], + [38073,1341], + [46105,319], + [18123,4314], + [41069,262], + [45047,11884], + [30091,661], + [30013,14949], + [19185,1251], + [19171,4737], + [13235,1219], + [40095,1396], + [53037,6462], + [48251,10481], + [53063,91977], + [39171,7045], + [48463,3824], + [48283,965], + [55063,36632], + [53015,20897], + [53033,599796], + [16065,832], + [37169,5969], + [48217,2745], + [18103,4220], + [51520,2487], + [48425,609], + [50023,20349], + [36085,67524], + [17067,3246], + [47053,6564], + [13047,5357], + [40023,1494], + [51147,5132], + [5083,2009], + [48371,1591], + [55057,6237], + [21071,4733], + [29093,1669], + [48249,6492], + [12057,286158], + [55033,11303], + [21129,595], + [31015,186], + [5019,3808], + [12085,30097], + [31045,1102], + [28157,2940], + [19141,1964], + [54023,713], + [37093,9915], + [51087,89116], + [5071,2785], + [36077,10975], + [37165,8131], + [13313,7193], + [20093,261], + [18101,1351], + [28061,5097], + [27003,88611], + [47043,6228], + [39009,17268], + [16043,810], + [22011,2827], + [30075,170], + [35006,4907], + [46027,2955], + [13245,52461], + [48137,232], + [29159,5902], + [51181,2574], + [15003,201803], + [39129,9335], + [29203,1300], + [27123,184936], + [53061,169927], + [21045,1086], + [12053,37791], + [22069,7941], + [47137,711], + [18007,1159], + [13269,1571], + [8093,3721], + [37115,4466], + [23009,17533], + [50019,7116], + [19013,39338], + [26115,36310], + [27049,12212], + [54031,1477], + [8027,862], + [48121,79917], + [53025,8746], + [17041,2426], + [16073,833], + [31127,1089], + [48355,45666], + [19035,2623], + [42089,33431], + [20023,231], + [20203,157], + [13121,248479], + [6017,34033], + [19045,15123], + [18019,20775], + [19125,7478], + [21197,1620], + [20087,2883], + [13127,11922], + [21109,612], + [28055,479], + [31183,93], + [38067,1245], + [23013,13227], + [21215,2549], + [8045,10989], + [20081,202], + [21003,1808], + [42107,24453], + [13153,22643], + [29029,6458], + [1025,6317], + [41005,94013], + [36025,7469], + [48207,551], + [39103,37841], + [37185,6635], + [29067,1709], + [18157,26642], + [41041,13277], + [13315,1059], + [30059,269], + [20055,2307], + [36041,955], + [17165,3697], + [31135,237], + [5099,1314], + [16045,1957], + [53067,64879], + [42115,6891], + [37085,16858], + [20035,4219], + [37077,13529], + [26017,26797], + [34027,90313], + [26103,18126], + [31073,230], + [51173,4169], + [48327,170], + [19189,2895], + [13091,2440], + [18009,1927], + [54029,4571], + [37111,6006], + [50007,53615], + [32029,920], + [18119,2823], + [48011,98], + [20169,6910], + [48127,2141], + [46015,824], + [20115,1371], + [17119,58813], + [45019,81027], + [19017,6710], + [13265,636], + [18151,4846], + [47055,3759], + [45051,36620], + [12023,8462], + [32510,10290], + [40037,7114], + [27137,74177], + [47145,6014], + [46137,439], + [18167,19707], + [48123,1463], + [31165,101], + [48221,3829], + [41047,54337], + [39167,11333], + [21113,6001], + [13169,4272], + [19059,4088], + [37055,7258], + [23011,35022], + [48243,440], + [25027,195667], + [48505,2517], + [24041,7983], + [37131,7210], + [22079,20040], + [29209,3920], + [25011,27024], + [51685,2873], + [28123,4774], + [30103,114], + [20183,345], + [26035,6337], + [31153,24709], + [55017,15211], + [39043,20969], + [19181,12521], + [16049,1722], + [22077,5436], + [19193,22026], + [6115,5817], + [6059,457077], + [13239,612], + [13131,3419], + [26011,3669], + [46047,1137], + [29171,587], + [21239,4883], + [26165,5717], + [29201,5122], + [44001,14943], + [49043,7656], + [13165,1487], + [19033,13204], + [26091,21774], + [13171,2602], + [31163,549], + [12097,67201], + [53045,14568], + [38097,1784], + [24510,201042], + [54061,13664], + [17191,1514], + [47179,14318], + [13051,60077], + [36107,8263], + [30083,992], + [50017,9075], + [17161,39081], + [12061,27483], + [8077,22448], + [31149,103], + [54067,2635], + [54089,1612], + [21053,752], + [13055,2220], + [28159,4557], + [4011,1310], + [25013,122571], + [21099,2283], + [5047,1725], + [6101,8004], + [17065,1266], + [40111,5416], + [27119,6773], + [36035,7916], + [48135,8095], + [47155,7415], + [20153,184], + [45023,7839], + [48139,13803], + [26107,7515], + [54105,673], + [28135,3838], + [21073,11535], + [27047,9327], + [34019,25148], + [5131,13083], + [30033,66], + [42079,63974], + [42061,5383], + [13093,2278], + [48199,3358], + [19043,4768], + [12099,349418], + [46093,2928], + [20071,112], + [28139,2254], + [27115,6750], + [5005,5172], + [1113,10495], + [51157,1971], + [21187,1501], + [12041,1885], + [13089,237704], + [18047,2907], + [48457,1659], + [47117,3722], + [51029,3747], + [48453,231540], + [18163,31659], + [13187,2049], + [38005,1232], + [20133,2012], + [46043,332], + [47101,1445], + [29227,341], + [26045,27912], + [21123,1733], + [5107,5179], + [6039,12698], + [26109,5244], + [34039,134220], + [45045,67378], + [53057,21875], + [21027,2825], + [30019,236], + [19039,2187], + [37191,23154], + [8123,47418], + [18113,5229], + [21013,2224], + [4007,6650], + [31023,1028], + [30043,2256], + [47157,232201], + [45015,24239], + [26061,6530], + [18115,992], + [28097,2245], + [21185,9240], + [1033,9160], + [1103,13401], + [50005,8192], + [13287,1508], + [48491,61812], + [42023,677], + [1063,4514], + [42091,227561], + [37087,11742], + [55071,20382], + [33009,29826], + [48013,5128], + [19117,1977], + [29113,7733], + [40139,854], + [31057,176], + [29109,4014], + [51185,3661], + [48235,112], + [39003,16869], + [51810,94163], + [13147,2869], + [39079,4965], + [20123,576], + [21221,2115], + [31087,310], + [27083,5465], + [42083,5260], + [21065,1356], + [51199,13165], + [13077,15156], + [26155,17197], + [55101,52887], + [42033,11093], + [19159,1181], + [18135,3768], + [26139,43068], + [38049,924], + [26161,120791], + [9011,66510], + [31167,607], + [48133,970], + [36021,14244], + [26135,1654], + [49013,570], + [12011,507430], + [19111,9428], + [26083,582], + [1083,9809], + [48015,2252], + [31017,223], + [53041,9772], + [46067,923], + [5101,993], + [42031,4731], + [40125,7182], + [26015,11496], + [27095,5829], + [19079,3776], + [29027,6070], + [46083,7982], + [35007,2879], + [8037,12598], + [40065,1953], + [48507,3042], + [32013,1737], + [55083,8810], + [42025,11040], + [8099,1498], + [28121,14425], + [28131,1794], + [18037,6522], + [19157,5307], + [26027,9587], + [21061,1374], + [40153,1129], + [41057,6249], + [28019,1283], + [37137,2632], + [29003,2649], + [45033,7623], + [6073,478386], + [48161,1848], + [18159,2432], + [16051,1303], + [54011,13380], + [12065,3945], + [27117,1728], + [37027,10795], + [12067,687], + [39121,2082], + [37197,3928], + [8121,461], + [17081,6080], + [13297,8139], + [16079,2277], + [27017,11389], + [42041,43983], + [29125,1299], + [20107,1108], + [26051,5760], + [31125,477], + [13219,4140], + [39053,3418], + [39045,28831], + [24035,7898], + [56005,2163], + [51177,25150], + [51023,5449], + [37155,23957], + [21199,4976], + [51043,3237], + [18125,2125], + [13079,1699], + [27059,8024], + [1001,6354], + [19085,3131], + [55047,3790], + [39113,128983], + [29197,697], + [8021,2180], + [20005,2486], + [8119,3894], + [48383,158], + [48403,806], + [24037,17982], + [27129,3394], + [17157,5753], + [21133,1702], + [55077,4112], + [26099,207992], + [30037,110], + [27109,39338], + [40035,1746], + [33017,36026], + [6047,26128], + [29011,1232], + [28067,9146], + [26075,32301], + [13279,2740], + [19003,1018], + [6029,64690], + [13083,1404], + [35039,11389], + [22099,9419], + [16009,1164], + [56003,868], + [6067,221063], + [40003,278], + [1091,6154], + [28059,15452], + [29121,2309], + [48413,220], + [38021,849], + [40101,9943], + [36003,5658], + [1111,3076], + [19167,2683], + [31049,215], + [42069,61309], + [19119,1416], + [42093,3026], + [48449,2638], + [25021,200891], + [54035,3824], + [47035,6260], + [48347,6441], + [13299,3892], + [8087,3761], + [39081,14960], + [48375,7114], + [46123,737], + [31171,42], + [54015,922], + [47167,7020], + [47011,8035], + [39131,5490], + [48215,97879], + [36047,503291], + [6045,11869], + [21189,283], + [22049,2305], + [27121,2981], + [48353,1216], + [13249,448], + [5125,12868], + [46111,389], + [31071,147], + [29217,2580], + [6093,7110], + [27039,4487], + [38013,230], + [29175,3031], + [6023,27757], + [1095,6271], + [30009,2126], + [18005,10622], + [20191,2617], + [39175,3962], + [42049,65136], + [13059,25386], + [38065,281], + [51103,3144], + [20019,259], + [40021,6137], + [48277,4173], + [20117,1451], + [31111,4350], + [24011,4621], + [17111,59691], + [17019,40378], + [40143,82633], + [31029,252], + [48073,3935], + [46007,548], + [17033,2855], + [1053,5476], + [18133,4504], + [39077,10673], + [26081,134560], + [37089,18519], + [53011,88822], + [42055,18910], + [1037,2188], + [54069,6623], + [32011,107], + [51800,24194], + [32017,400], + [1071,5817], + [53059,2554], + [48069,630], + [51007,2488], + [37195,20745], + [37149,4000], + [6055,19964], + [13069,5048], + [38061,1401], + [19031,4931], + [27163,70203], + [49045,3794], + [30047,5715], + [55061,5151], + [17143,40050], + [17115,22688], + [29215,2871], + [46051,1493], + [17103,6932], + [20063,174] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-gop.json b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-gop.json new file mode 100644 index 0000000..2d06771 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-gop.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2012 Presidential Election | Republican Votes", + "description" : "Votes cast for Republican party (gop) candidates in the 2012 presidential election.", + "units" : "votes", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "The Guardian" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2012.votes.gop"], + [26041,9533], + [48295,1044], + [1127,21633], + [48389,1185], + [56017,1894], + [20043,2397], + [37183,232933], + [37147,35534], + [48497,17178], + [21207,6346], + [5053,4829], + [31147,2407], + [47123,11717], + [36059,212882], + [1011,1250], + [42057,4780], + [20031,2860], + [31151,2518], + [31035,2213], + [28033,42399], + [22061,10731], + [40129,1402], + [22057,28332], + [40135,9573], + [51153,74371], + [23031,43879], + [23015,8884], + [47025,7617], + [29063,3056], + [42045,105270], + [12119,40644], + [36055,124769], + [18045,4660], + [39063,22077], + [34009,25488], + [28047,38646], + [5141,4362], + [48343,3226], + [30073,1666], + [47181,4251], + [48153,1523], + [46119,611], + [19097,4171], + [28087,12399], + [17155,1500], + [45073,21573], + [36101,20425], + [37143,3814], + [28035,15339], + [31027,3231], + [13141,764], + [39091,13323], + [39059,8811], + [48297,3153], + [47151,5117], + [30027,4243], + [35021,326], + [23027,9055], + [49007,4834], + [20053,1905], + [27113,3304], + [27159,4143], + [18131,3366], + [38041,998], + [28003,11027], + [19143,2225], + [50009,1169], + [1015,30272], + [13253,2244], + [6105,2422], + [17181,4951], + [31055,108319], + [51670,3737], + [20095,2371], + [21209,12679], + [48467,15790], + [31177,6857], + [29199,1246], + [47027,1747], + [55111,12829], + [48045,576], + [45007,48493], + [48125,793], + [19173,1680], + [37193,20410], + [27081,1594], + [48369,2005], + [1005,5539], + [42125,50455], + [51035,8351], + [47033,3782], + [39021,11852], + [36049,5083], + [29143,4284], + [51135,3409], + [26089,7483], + [48275,1160], + [51073,12137], + [35051,2928], + [6069,6052], + [41051,71947], + [51610,2141], + [48195,1787], + [13025,4963], + [27079,7714], + [36061,72300], + [18073,7955], + [21183,6470], + [21081,5664], + [5025,2313], + [27055,4951], + [37129,52792], + [26013,1866], + [48189,6417], + [20171,1702], + [48211,1298], + [15007,6121], + [54047,3931], + [22043,7082], + [39143,13491], + [48465,5612], + [48279,3056], + [37041,3872], + [38085,223], + [39115,3136], + [1057,6034], + [22017,52378], + [13191,3405], + [51109,9207], + [46121,498], + [31085,473], + [55113,4436], + [6083,59096], + [51820,4789], + [28049,26450], + [44003,30786], + [21229,3495], + [37065,8494], + [27029,2359], + [17061,3446], + [21029,21306], + [51071,4660], + [20083,857], + [20045,17028], + [40097,9634], + [22105,31583], + [36013,25795], + [25007,2789], + [20127,1750], + [48141,56517], + [30025,1123], + [55019,7394], + [19165,3903], + [13103,15591], + [55011,3352], + [31051,1745], + [41023,2848], + [24033,32236], + [29219,9150], + [36051,13210], + [48391,1659], + [22013,3641], + [22023,3260], + [17045,5125], + [21047,13475], + [13193,1545], + [1003,65772], + [38105,7087], + [19105,4712], + [22095,7620], + [32031,88151], + [20187,571], + [18139,4633], + [29037,30912], + [38057,3132], + [55035,23218], + [29079,3030], + [47077,7418], + [35029,3654], + [47173,4278], + [48005,20301], + [46061,1627], + [48271,880], + [39031,8312], + [40043,1769], + [6065,290227], + [30109,421], + [48325,11016], + [9005,47207], + [20039,1219], + [13015,26847], + [8051,3106], + [30045,852], + [17099,23207], + [40103,3484], + [53001,3111], + [19109,4914], + [51001,8212], + [19075,4205], + [23005,57008], + [37099,8224], + [39119,18826], + [17177,8742], + [8053,352], + [40093,2700], + [48171,10305], + [6061,74460], + [27153,6719], + [39041,58980], + [16071,1838], + [21035,9438], + [12013,4366], + [36009,15406], + [18069,10862], + [39099,41702], + [48059,4376], + [47165,45979], + [46109,1883], + [17185,3473], + [20121,9726], + [27147,9903], + [51063,4671], + [16027,44369], + [45041,28825], + [29073,4895], + [16013,3939], + [31141,9963], + [42027,33697], + [13123,8920], + [12039,6628], + [48175,2294], + [5143,39570], + [41019,30588], + [19179,6777], + [29151,5330], + [28009,2030], + [48179,6428], + [13009,7585], + [13023,3586], + [47071,7886], + [32023,10566], + [39057,48683], + [47081,4756], + [48473,9158], + [55117,34282], + [8015,4949], + [21161,4197], + [41039,60979], + [13003,1938], + [9013,30391], + [40045,1575], + [13053,732], + [22085,7735], + [55099,3879], + [20175,3495], + [28141,6070], + [18083,9612], + [37011,5708], + [22015,34986], + [39085,57150], + [5069,9515], + [30035,1391], + [31143,1886], + [55093,10383], + [51057,2602], + [48051,4671], + [13221,4250], + [5031,20044], + [21041,1999], + [13273,1834], + [42011,80857], + [18013,4330], + [38077,4213], + [42017,155876], + [16015,2284], + [36111,27340], + [29095,121891], + [49055,1087], + [20165,1151], + [41061,7608], + [29186,4055], + [30101,1440], + [37157,25037], + [5137,3773], + [39123,10323], + [29081,2624], + [27173,2806], + [5041,1807], + [27023,2967], + [47095,1163], + [22025,2744], + [48021,14019], + [39161,9433], + [12123,6249], + [13133,5067], + [56013,11072], + [36113,12571], + [19049,20921], + [8111,212], + [53007,17741], + [51093,11797], + [18105,16254], + [51077,4801], + [48429,2891], + [8007,3831], + [8001,66531], + [26001,3571], + [37119,170490], + [21165,1484], + [54083,6150], + [48411,1905], + [54077,7841], + [1039,12148], + [15001,14541], + [5061,2862], + [35023,895], + [26151,10961], + [46031,515], + [42121,12928], + [39163,2798], + [13241,5753], + [48337,6539], + [13281,4834], + [19021,4548], + [29169,9092], + [5057,4284], + [27067,11239], + [39027,11740], + [41031,4576], + [38089,8509], + [54017,2108], + [21127,3995], + [26047,10253], + [53009,17087], + [45021,13306], + [27145,43015], + [51570,5937], + [28023,4415], + [24017,23637], + [5117,2149], + [48031,3637], + [21169,2676], + [36091,46829], + [17015,3551], + [42065,12288], + [28015,3953], + [12019,69996], + [12115,110489], + [12071,154112], + [29205,2188], + [51099,6603], + [5023,8691], + [27011,1385], + [5079,2199], + [21225,3952], + [37033,5471], + [42035,6941], + [31031,2557], + [6021,5608], + [56033,10267], + [31003,2585], + [20109,1084], + [21227,26384], + [16059,3029], + [29141,5733], + [47091,4611], + [13081,4179], + [16031,7150], + [38083,637], + [17087,3959], + [9007,34533], + [12069,87637], + [35037,2194], + [48129,1286], + [5059,7087], + [1105,1504], + [47187,68090], + [32021,1080], + [47073,14376], + [18175,6532], + [51013,34433], + [37103,2825], + [8081,4616], + [51121,20006], + [48483,1878], + [20033,756], + [47109,7010], + [26071,3224], + [46011,6219], + [18171,2377], + [21057,2216], + [29031,25343], + [38043,870], + [4012,3205], + [37007,4125], + [48205,1700], + [12095,189057], + [21091,2212], + [41035,18654], + [54057,7687], + [22113,18909], + [26113,4665], + [5037,4268], + [9015,19758], + [29075,1986], + [28091,7118], + [33011,98103], + [19145,4338], + [37135,21398], + [47067,1527], + [20011,4022], + [8085,12789], + [18107,9768], + [13011,5353], + [35025,12480], + [54041,4349], + [29065,4883], + [28115,9403], + [48071,11761], + [37059,14568], + [35001,104242], + [12035,26966], + [29123,3227], + [35041,4032], + [48231,20976], + [18095,26755], + [48361,23361], + [30039,1107], + [48035,5873], + [21111,148415], + [6001,104330], + [40105,2832], + [48169,1262], + [20185,1382], + [26025,28338], + [19051,2133], + [29157,5669], + [47177,8007], + [42003,259304], + [36073,8076], + [4027,19500], + [28111,4110], + [9009,137942], + [35045,28779], + [42127,12531], + [21177,7762], + [49037,3006], + [26037,20630], + [51590,7756], + [20067,1742], + [12087,19234], + [29035,1978], + [5001,3892], + [40069,2644], + [37107,13763], + [48209,31577], + [4005,19368], + [20143,2260], + [48437,1654], + [41063,2796], + [19091,3099], + [22091,2756], + [48185,6141], + [40051,14818], + [31095,2156], + [39127,7498], + [48233,6797], + [13099,2556], + [16057,7589], + [56045,2821], + [46053,1507], + [49029,3910], + [22021,3640], + [46017,166], + [19133,2555], + [16017,11367], + [42095,59242], + [51690,2312], + [40131,27531], + [55119,5597], + [17145,5497], + [27021,8957], + [48417,1218], + [48339,137822], + [6099,69549], + [47013,8602], + [27085,11069], + [30017,3353], + [48165,3484], + [35057,3521], + [33007,6342], + [47135,1578], + [6111,123919], + [40099,3606], + [20201,2300], + [48245,43214], + [18057,90740], + [19041,4934], + [47015,3308], + [1049,18316], + [42067,6821], + [26105,7580], + [34003,155267], + [48017,1336], + [17013,1439], + [40061,3069], + [27015,7938], + [45057,19273], + [21149,2705], + [22107,1230], + [28113,7986], + [25019,2185], + [13321,5864], + [26097,3396], + [51089,13980], + [1009,20741], + [13303,4033], + [4019,162927], + [38025,1494], + [21019,10883], + [8069,74603], + [51037,3311], + [29117,4006], + [48315,2730], + [51101,5445], + [28077,4153], + [45077,33385], + [21025,3318], + [51540,4801], + [17189,4787], + [29135,4703], + [24001,18158], + [27025,16227], + [29181,3743], + [48419,6870], + [17183,14888], + [48067,8747], + [26067,14319], + [26085,2487], + [17071,1538], + [39033,11561], + [21101,10296], + [13283,1646], + [22035,1122], + [49011,90030], + [13271,2479], + [51195,11041], + [48037,24840], + [48241,9924], + [47075,2960], + [1045,13105], + [40123,8921], + [22027,3649], + [29041,2402], + [45055,15846], + [51015,23614], + [6085,136347], + [29055,6434], + [39007,17890], + [13173,1812], + [13161,3994], + [18033,10586], + [42081,30490], + [48225,5839], + [38059,8669], + [42063,21187], + [39165,74626], + [31137,3372], + [42043,56838], + [20091,155442], + [25001,60221], + [19073,2373], + [6025,9545], + [19065,4484], + [37001,37712], + [18065,10836], + [26079,4897], + [16077,1870], + [46029,6696], + [46117,1063], + [40115,6465], + [39097,10215], + [45083,65951], + [8091,1470], + [37081,103964], + [16075,6004], + [17011,8151], + [5049,2949], + [30063,23285], + [1065,3205], + [48105,957], + [13125,1135], + [1099,5730], + [30001,3251], + [17163,49610], + [29147,5593], + [5135,4920], + [54009,5014], + [21117,41387], + [48257,24804], + [16085,2664], + [26021,38209], + [36089,13914], + [37189,14124], + [36117,18315], + [8023,440], + [17049,12491], + [51059,173786], + [39001,6691], + [17135,6771], + [36031,6495], + [12037,3570], + [39109,33650], + [53039,5138], + [41009,10645], + [1101,38283], + [29039,4375], + [17097,128609], + [5017,1670], + [13107,5086], + [27093,6913], + [17043,193333], + [26121,30882], + [36109,10202], + [21083,10699], + [48317,1338], + [6053,25087], + [13247,15671], + [13109,2267], + [29097,31345], + [40039,7442], + [22001,19931], + [42123,9415], + [54091,3827], + [48493,12205], + [55051,1788], + [37113,10817], + [5115,14733], + [1131,1676], + [13137,12148], + [8095,1637], + [42013,31500], + [5045,26653], + [5139,10696], + [20003,2246], + [30005,1169], + [31093,1890], + [55059,34942], + [48291,17304], + [45037,6511], + [38053,2450], + [34035,63159], + [32007,12013], + [55045,7848], + [12051,5355], + [36069,21998], + [20007,1753], + [35015,12546], + [16061,1173], + [24045,20136], + [48187,32959], + [51720,895], + [46003,804], + [8067,12554], + [51710,21366], + [16035,2541], + [36045,16279], + [33005,15135], + [48481,9750], + [26065,45365], + [19099,8868], + [6033,6474], + [22125,3257], + [38051,1028], + [55041,2172], + [53055,3061], + [27007,9637], + [51053,6769], + [38063,862], + [20065,1044], + [36043,12389], + [13113,38046], + [23007,6305], + [38037,1012], + [40017,35615], + [13061,537], + [51770,14116], + [13201,1904], + [48163,1559], + [17175,1527], + [48269,139], + [30111,40421], + [31119,9874], + [44009,24666], + [31133,897], + [46037,1320], + [17093,23076], + [19029,4212], + [4017,19155], + [16005,21010], + [47099,10770], + [8101,31023], + [8043,13087], + [12043,2344], + [13095,11441], + [13155,2519], + [31063,1005], + [36039,9935], + [22055,64989], + [39065,7337], + [56043,3013], + [55107,3673], + [27045,4913], + [29051,24488], + [13087,5816], + [17057,6622], + [22045,20890], + [46023,2229], + [46069,531], + [13291,8771], + [17117,10909], + [21063,1126], + [35055,2710], + [46039,1175], + [19023,4104], + [37173,2976], + [48307,2419], + [40079,11172], + [28043,5980], + [48223,9834], + [21049,9931], + [42131,6189], + [20111,6358], + [47069,4864], + [54043,4336], + [13151,46299], + [20101,732], + [48173,526], + [6081,56244], + [38011,1277], + [51027,6436], + [56011,3109], + [17201,53722], + [51630,4054], + [48289,5812], + [55123,5935], + [17129,3944], + [48333,1882], + [21005,6822], + [37121,5778], + [19183,5540], + [31059,1972], + [16025,402], + [17199,17880], + [45039,3996], + [1079,8855], + [12055,25912], + [19077,3164], + [31157,9427], + [29221,5008], + [53077,35381], + [29119,5694], + [21077,1758], + [48501,1698], + [42103,12713], + [29057,2895], + [48401,13924], + [20141,1448], + [19187,8453], + [42075,34010], + [20099,4668], + [48079,648], + [24025,69496], + [12015,47988], + [13027,3522], + [29071,29271], + [41055,677], + [6057,15696], + [47041,4134], + [26111,23942], + [34013,61595], + [21159,3180], + [19093,2276], + [39093,58095], + [45009,2190], + [47147,17641], + [47169,1610], + [29183,110732], + [54021,1580], + [37095,1183], + [47107,12958], + [21163,6606], + [20079,8352], + [55049,4302], + [36103,259348], + [51740,12407], + [46045,1264], + [16081,2458], + [13233,9798], + [39153,108700], + [53043,4024], + [51840,4943], + [53005,49105], + [13129,13174], + [27151,2248], + [19089,1793], + [19139,8152], + [49047,10001], + [18121,4228], + [4009,8076], + [21037,24240], + [8005,114232], + [37187,2615], + [55097,16599], + [29007,6186], + [27033,3316], + [51107,74794], + [51137,9244], + [31101,3036], + [8047,1320], + [21153,3391], + [39071,11032], + [55025,83459], + [51111,2969], + [53049,4484], + [27009,10849], + [42099,12511], + [5013,1458], + [20137,1855], + [40147,15667], + [23019,36592], + [39005,15225], + [27073,1938], + [8107,5361], + [29139,3486], + [54087,2973], + [5055,9066], + [27013,14916], + [40019,12213], + [20073,1986], + [17059,1492], + [42059,7985], + [28007,4452], + [51183,2021], + [55131,54709], + [27099,6938], + [1119,1585], + [1085,1754], + [48109,294], + [17063,11198], + [47023,4672], + [46071,661], + [24005,144686], + [48439,348686], + [38071,2659], + [20113,8399], + [20089,1220], + [41067,86551], + [40049,6922], + [13189,5475], + [47021,10266], + [36067,72807], + [8014,14765], + [18025,2418], + [28041,4528], + [39089,43604], + [19019,4443], + [37181,7406], + [22065,2000], + [13185,21176], + [8013,48526], + [20163,2159], + [37021,54429], + [48177,4213], + [12081,85616], + [46081,7025], + [21181,1583], + [38029,1430], + [20125,8417], + [27035,19415], + [36071,60984], + [36081,103193], + [31181,1255], + [20173,104411], + [13301,990], + [55007,3597], + [36079,22436], + [28153,6080], + [27091,6657], + [51036,1396], + [55069,7444], + [48097,11901], + [23029,7539], + [47163,43528], + [19061,21265], + [21155,3800], + [51191,18141], + [35009,9150], + [6049,2779], + [51033,6148], + [51141,5622], + [19161,3086], + [17131,3874], + [55005,11413], + [26127,6239], + [16063,1141], + [29053,4887], + [53047,7151], + [1107,5119], + [41017,40670], + [46035,4754], + [41033,23636], + [17035,3506], + [40067,1632], + [17123,3287], + [35031,5420], + [28127,7424], + [31039,2858], + [51640,1332], + [46095,381], + [19121,4492], + [18015,4993], + [51165,24173], + [47085,3829], + [12113,58169], + [46089,921], + [18043,19868], + [51009,8865], + [12017,44657], + [30093,5374], + [16003,1413], + [31099,2341], + [39037,17745], + [24021,55495], + [51510,20205], + [48101,553], + [27037,109514], + [46059,1242], + [47063,14515], + [40013,9188], + [13075,3934], + [54097,5878], + [54045,8186], + [48385,1236], + [51003,23263], + [51011,5340], + [47079,8187], + [21033,3904], + [48131,979], + [19103,23556], + [29043,27465], + [21237,1542], + [49051,6852], + [38045,1374], + [29001,5648], + [40127,3087], + [29017,4094], + [1121,19217], + [28085,9333], + [18145,10972], + [31019,13378], + [30023,1431], + [26005,29023], + [6079,56500], + [47185,6192], + [48281,5583], + [26117,13624], + [39087,14371], + [5063,8724], + [46033,3062], + [12121,12672], + [37133,31695], + [54025,7873], + [48261,83], + [1089,90679], + [22059,5726], + [13205,4153], + [5133,3135], + [55125,7735], + [48159,3446], + [41059,15425], + [51051,4274], + [8057,600], + [31155,6725], + [8079,344], + [47161,2963], + [32003,288223], + [36057,8622], + [29129,1255], + [38079,1090], + [34017,38082], + [41021,637], + [37075,2743], + [16053,4804], + [13005,3092], + [37063,33326], + [28105,7728], + [17027,10493], + [51161,33344], + [38099,2809], + [20207,1030], + [40071,11498], + [34033,14214], + [28029,5714], + [48423,61858], + [39151,86958], + [19153,96029], + [21007,2647], + [28027,2356], + [28079,4283], + [41053,17377], + [22117,11470], + [26145,42716], + [48313,3028], + [28129,6049], + [18063,44308], + [29225,10702], + [6095,48364], + [37005,3378], + [47061,2502], + [46113,188], + [31081,3582], + [25015,21366], + [13143,8439], + [40055,1344], + [37049,26654], + [36099,5405], + [45001,5923], + [42037,13445], + [56029,11234], + [26137,7008], + [15009,11577], + [13049,2527], + [21175,3021], + [35027,5940], + [30071,1688], + [35003,1474], + [13217,20979], + [26009,7917], + [37067,79177], + [12033,88671], + [5147,1227], + [28081,22004], + [10001,32134], + [48359,786], + [46125,2715], + [37117,5963], + [18129,7427], + [26095,1501], + [6015,4256], + [27169,11480], + [8017,858], + [29161,11893], + [30053,6045], + [1093,9696], + [13293,7229], + [42053,1381], + [16069,9967], + [55105,30492], + [27057,6622], + [46101,1535], + [47093,106411], + [21151,21128], + [48267,1667], + [17159,4750], + [6075,42654], + [26157,14517], + [48407,7105], + [39061,188653], + [30087,2035], + [54101,1708], + [13157,19122], + [13317,2628], + [20025,791], + [37139,7216], + [37097,49071], + [21119,4130], + [49015,3743], + [48293,5288], + [40109,149525], + [48181,30907], + [48183,28665], + [48055,6018], + [12086,332602], + [54109,5751], + [22073,40927], + [51187,9865], + [45089,4819], + [30021,3024], + [31109,61177], + [6031,17184], + [20179,1136], + [39067,3936], + [55027,25190], + [33019,9269], + [13111,7853], + [48447,700], + [17009,1511], + [48009,3599], + [39145,15023], + [26073,10800], + [26057,8236], + [48085,195933], + [18027,7638], + [35019,518], + [21087,3634], + [47115,6268], + [1075,5453], + [1073,141413], + [13231,6660], + [12107,19326], + [35033,591], + [37017,7947], + [5009,11143], + [56039,4858], + [1021,13910], + [20181,1967], + [48387,3549], + [48311,436], + [46135,5463], + [1007,6131], + [49027,4421], + [21205,4035], + [21125,18151], + [28125,675], + [17167,50131], + [21235,10232], + [13035,6306], + [27065,4319], + [19053,1945], + [8035,93930], + [8109,937], + [17069,1535], + [40133,4852], + [48377,504], + [34011,18767], + [40121,10785], + [24027,54094], + [46009,1830], + [12089,29926], + [40027,59019], + [51017,1274], + [26163,213586], + [38069,1462], + [20129,1050], + [29091,11541], + [28083,3115], + [48475,2364], + [19135,2022], + [6103,10791], + [5039,1664], + [48089,6015], + [18003,84378], + [1043,27930], + [18127,34197], + [37127,23769], + [51081,1766], + [39015,11671], + [18169,8528], + [29005,1902], + [21009,10922], + [39025,62527], + [45063,76392], + [48259,14467], + [56037,11427], + [27069,1095], + [47003,10026], + [26055,26532], + [31053,8937], + [17079,3511], + [21075,1425], + [12129,9288], + [12133,8037], + [40087,11108], + [13067,171464], + [19071,1971], + [24019,7514], + [51095,22830], + [30065,1792], + [19057,8130], + [27157,6049], + [39051,11521], + [51133,4308], + [28037,2705], + [47189,36076], + [47045,9921], + [37105,13000], + [37123,6389], + [22041,6294], + [48229,471], + [36083,27240], + [1087,1322], + [19107,2840], + [20051,9057], + [13039,11318], + [55031,7698], + [20037,7480], + [21143,2412], + [13257,7207], + [48003,3636], + [13267,4702], + [51061,20955], + [40033,1796], + [13229,5666], + [42133,111576], + [46107,1029], + [48247,356], + [18147,5515], + [1077,23902], + [42097,18516], + [19169,19557], + [45079,46725], + [48443,358], + [36011,11355], + [39083,16873], + [13159,4121], + [13021,25606], + [37009,8207], + [47087,2380], + [56025,22129], + [19047,3584], + [39141,14582], + [46103,28229], + [42001,26490], + [54063,3571], + [6071,245468], + [31161,2010], + [36075,18503], + [20069,1568], + [48409,11994], + [37167,19698], + [17173,6837], + [42117,10599], + [41015,6577], + [8029,10762], + [51750,2520], + [28053,1069], + [20059,6893], + [41025,2599], + [29133,2996], + [28117,7075], + [23003,15229], + [17077,9130], + [27155,860], + [49019,1917], + [40025,1082], + [29173,3231], + [19015,6540], + [34001,41918], + [46041,663], + [27139,40321], + [29101,12750], + [17109,6142], + [20049,1040], + [55053,3900], + [39075,8563], + [37069,14480], + [5123,3287], + [48305,1377], + [21107,13681], + [27131,14380], + [5077,1280], + [1061,9173], + [6009,10537], + [18079,6112], + [21023,2029], + [5065,3571], + [20027,2715], + [54007,2692], + [12005,56863], + [21015,35920], + [55009,64738], + [6063,5240], + [8113,1144], + [36015,16207], + [19115,2416], + [51775,7289], + [28103,1325], + [36019,10054], + [17091,23115], + [45059,14726], + [28051,1264], + [31069,829], + [51113,3864], + [56001,7851], + [31123,1658], + [29013,5020], + [13057,76473], + [31077,820], + [18051,9487], + [51830,2678], + [28143,867], + [48191,832], + [45071,9218], + [17001,20371], + [8073,1663], + [42005,19231], + [31025,7453], + [37045,25440], + [1097,94566], + [37051,50191], + [17085,5529], + [51065,6678], + [48115,2591], + [48039,70684], + [36017,8933], + [37177,929], + [48471,9569], + [26131,1906], + [12091,70143], + [12007,8216], + [6041,23347], + [20177,37226], + [23017,11766], + [19101,3429], + [17017,2707], + [39049,207941], + [27143,4693], + [36115,10254], + [20147,2116], + [47141,17242], + [13119,6112], + [19095,4551], + [33013,34451], + [51171,12526], + [47131,8814], + [20013,2738], + [16007,2489], + [34021,43155], + [55109,25475], + [55075,10609], + [56007,4152], + [18111,3291], + [34005,79110], + [18011,18807], + [49021,11172], + [48113,294339], + [22071,27967], + [27077,1306], + [17083,6032], + [45067,5114], + [47127,2053], + [1069,29214], + [8117,5495], + [18117,4615], + [37035,44386], + [45029,8439], + [19155,21751], + [38101,16176], + [6011,3521], + [21095,8653], + [1115,29001], + [6107,42186], + [48147,8143], + [55095,12075], + [55139,42073], + [39055,30104], + [20001,3261], + [8055,1615], + [18041,5044], + [20103,16825], + [53029,19251], + [20097,970], + [48043,1975], + [12093,7325], + [22039,10176], + [19005,3230], + [17031,479204], + [48265,17225], + [46129,1731], + [34007,63329], + [51700,27224], + [48373,14019], + [54081,20375], + [16037,1744], + [17051,5950], + [51041,91174], + [21055,2839], + [48341,3967], + [1019,7494], + [55127,28962], + [45085,19266], + [48303,63133], + [31185,4814], + [20017,857], + [21147,4564], + [53053,144026], + [40083,12297], + [37071,55817], + [47133,4772], + [53069,1115], + [36121,9726], + [37091,3001], + [21213,4355], + [29137,2564], + [28161,3261], + [13001,5231], + [12079,4474], + [29019,37343], + [21121,8467], + [27053,240073], + [38009,2246], + [38103,1646], + [19067,3466], + [13223,40771], + [16011,13440], + [46055,940], + [18053,15148], + [30085,1503], + [6077,66742], + [27161,5116], + [34041,24695], + [1041,4326], + [56041,6613], + [18155,1872], + [18097,136131], + [39125,5248], + [21085,6404], + [48345,538], + [49001,2153], + [55067,5810], + [12009,159270], + [8031,69755], + [13115,22636], + [28109,15836], + [27105,4581], + [26159,16140], + [40151,2725], + [22101,13883], + [53031,6113], + [48041,37152], + [26031,7284], + [16019,32336], + [41037,2801], + [5015,6121], + [20077,1723], + [13215,27469], + [39149,16700], + [41043,28482], + [47171,5028], + [45091,59149], + [18023,6338], + [24047,14334], + [13181,2806], + [13063,14158], + [53017,9287], + [39117,9662], + [13199,4855], + [13101,917], + [42071,129364], + [10003,81226], + [47057,5469], + [19163,38223], + [37083,8686], + [19063,2499], + [29047,56131], + [51005,3595], + [17021,8873], + [18061,10629], + [42087,11893], + [49049,142337], + [37175,9522], + [55115,11017], + [51145,11192], + [13019,4837], + [26141,3794], + [41003,14922], + [18091,18609], + [21193,8040], + [12075,12052], + [48263,334], + [28163,4560], + [5035,6192], + [13105,4857], + [27097,10159], + [55085,10905], + [46079,3419], + [54027,5514], + [45017,3705], + [34015,58915], + [18077,7096], + [47083,1579], + [40145,20848], + [21211,11790], + [22083,7316], + [31047,5370], + [54099,8673], + [22033,92235], + [30029,27694], + [31083,1248], + [48151,1094], + [24015,23660], + [51031,17687], + [40015,5660], + [27041,11905], + [25009,149808], + [51197,8324], + [34037,37215], + [31089,3789], + [53071,9098], + [26087,23725], + [18021,7065], + [13117,65853], + [13073,41724], + [13029,9537], + [27111,18860], + [40007,2057], + [1017,7596], + [5091,10622], + [5043,3883], + [38031,1028], + [48459,11948], + [5033,15125], + [12077,2301], + [51760,19732], + [8003,2693], + [38019,1192], + [39047,6456], + [55089,35991], + [18093,11622], + [21105,1431], + [40137,12907], + [13177,10310], + [30031,24051], + [48077,4266], + [55121,5703], + [26147,39076], + [40031,17657], + [17139,3781], + [48023,1297], + [32027,1167], + [17195,8676], + [20149,6692], + [37109,25184], + [48255,2823], + [5075,3535], + [45043,16476], + [27001,4533], + [12059,6919], + [6019,91143], + [31079,12412], + [37031,24598], + [36097,3942], + [31113,356], + [17101,3853], + [5097,2368], + [12125,3980], + [38093,5641], + [29015,6069], + [48065,2450], + [37153,9236], + [48485,29756], + [27107,1384], + [54075,2167], + [16023,1001], + [54059,6163], + [35061,12788], + [20029,2886], + [19001,2110], + [36037,13701], + [28005,4393], + [27061,10500], + [50013,1471], + [18183,10257], + [19131,2643], + [17023,5138], + [29213,15713], + [34029,138594], + [50015,3352], + [24023,9102], + [37151,44913], + [29059,4992], + [5087,4262], + [22115,12146], + [16083,19773], + [42015,13827], + [29510,22617], + [18059,22750], + [48487,2956], + [42007,42118], + [18165,3426], + [27165,2517], + [51091,924], + [13277,9171], + [51790,5257], + [48445,2602], + [48455,4537], + [8105,2892], + [50027,8583], + [51175,4733], + [13319,2245], + [16047,3696], + [39137,13563], + [17003,1485], + [21131,4439], + [1035,3434], + [20041,5709], + [48503,6225], + [1013,5081], + [39017,102226], + [55029,8109], + [31139,2707], + [31011,2136], + [42119,9863], + [36023,7886], + [42077,66091], + [55129,4692], + [47017,7219], + [51179,32429], + [5029,4511], + [6037,699600], + [5109,2847], + [13031,14159], + [27103,8214], + [31043,3048], + [30015,1751], + [5149,4041], + [39147,13025], + [31097,1223], + [37079,4393], + [30003,1655], + [42039,19497], + [13179,5558], + [20157,2098], + [1081,32062], + [53051,3942], + [51660,6564], + [29025,2724], + [29033,3072], + [24043,34113], + [17095,9133], + [54005,5414], + [17029,11623], + [29149,2886], + [22047,7271], + [8039,10148], + [8089,4315], + [47009,35417], + [30079,518], + [21201,579], + [55023,3064], + [26069,6906], + [50003,5687], + [31065,1767], + [37029,2995], + [31067,5470], + [29021,18660], + [54093,2160], + [29105,10934], + [17037,18906], + [28065,2439], + [38047,799], + [31131,4226], + [48335,1754], + [54037,11090], + [22111,7561], + [12131,21483], + [38027,631], + [37037,16578], + [17187,3460], + [27171,41460], + [54103,3449], + [49031,696], + [36063,40397], + [48379,3265], + [26049,71807], + [19025,2890], + [8103,2677], + [46049,765], + [36119,108707], + [20145,1808], + [31121,2477], + [17127,4278], + [50025,5344], + [22119,11397], + [45013,42580], + [35049,15145], + [45069,4010], + [5011,2118], + [56019,3362], + [18039,42348], + [45035,32469], + [19081,3306], + [31041,4251], + [17073,11564], + [21097,4556], + [22075,6469], + [18001,8936], + [21157,10402], + [53019,1966], + [56035,3472], + [17179,35266], + [40077,2620], + [37047,12863], + [53023,912], + [55015,14519], + [5067,3065], + [48397,27098], + [17055,10253], + [40107,2328], + [22063,45488], + [21141,6899], + [48319,1562], + [54079,15926], + [5145,20005], + [48351,4399], + [40001,4362], + [12001,48765], + [37159,38622], + [23001,22210], + [20189,1724], + [39023,31116], + [6027,3541], + [51047,11549], + [26019,5071], + [49003,15969], + [40059,1261], + [48405,2469], + [51075,8448], + [30069,240], + [21223,2133], + [40047,15176], + [56027,1022], + [55073,36568], + [35043,24124], + [31103,392], + [1123,12303], + [32001,7061], + [54039,41037], + [51620,1496], + [22127,4539], + [37141,14368], + [36087,52936], + [26133,6140], + [18085,22553], + [22005,33846], + [13097,26226], + [41049,2524], + [29187,13248], + [29103,1205], + [20085,3476], + [40119,16467], + [28089,28507], + [13197,1731], + [17107,7835], + [20161,11157], + [48107,1132], + [46127,4698], + [42085,24304], + [13045,28249], + [13289,1905], + [55003,2816], + [56009,5043], + [1067,5605], + [27167,1884], + [51155,8917], + [47051,10252], + [16055,39347], + [17025,4184], + [18149,4738], + [40005,3534], + [45025,8488], + [48063,2878], + [16067,5442], + [12021,96508], + [26143,6701], + [6007,35312], + [29223,3790], + [47065,79877], + [19037,2836], + [42105,5199], + [22009,10667], + [26149,12975], + [29009,9832], + [47149,60829], + [40057,659], + [22121,6920], + [21217,7551], + [47005,3850], + [30097,1584], + [29045,1730], + [1117,71243], + [32005,16264], + [29207,9496], + [48075,1665], + [28071,9772], + [20205,2812], + [5003,4866], + [37013,13918], + [48203,17471], + [22003,6495], + [38095,619], + [17113,39638], + [21171,3762], + [27149,2766], + [16029,2608], + [18179,9255], + [18177,14321], + [36029,159678], + [8049,4149], + [46087,1655], + [19175,2800], + [22051,102325], + [32033,2601], + [48149,8098], + [30107,690], + [33001,17568], + [31169,1853], + [48381,41366], + [46115,1670], + [55001,4643], + [33015,87809], + [18017,8432], + [17169,2062], + [48111,1248], + [12045,4995], + [31007,339], + [21103,3940], + [13043,2344], + [22093,5209], + [49025,2463], + [1029,5269], + [13311,8647], + [51025,2965], + [29023,12248], + [40073,4510], + [48393,408], + [35047,2281], + [42009,16509], + [20151,2730], + [48219,5543], + [55141,19685], + [21135,3326], + [37163,14358], + [26033,8278], + [49039,7767], + [36007,34878], + [20131,3878], + [20047,1048], + [41027,3400], + [27019,31155], + [45061,2829], + [45049,3310], + [18071,10419], + [28039,8353], + [42029,123280], + [21059,25092], + [48415,4121], + [54055,15406], + [22019,51844], + [18143,4539], + [47029,8459], + [45005,894], + [48349,10838], + [48479,11074], + [30051,698], + [19055,4628], + [31159,4947], + [29189,223102], + [48427,1540], + [51169,7439], + [40149,3482], + [28017,3601], + [55081,9637], + [44007,74344], + [4021,58947], + [42019,59416], + [46005,4230], + [6051,2202], + [51115,3488], + [17153,1562], + [29111,2677], + [29195,5096], + [51125,3944], + [27075,2610], + [1055,29102], + [28151,4870], + [23023,8429], + [16039,5227], + [37039,9201], + [37019,34587], + [56015,4178], + [25017,266307], + [38003,2953], + [51049,2538], + [21233,3607], + [48287,4504], + [19149,8577], + [51530,1564], + [49017,1811], + [46077,1451], + [36005,26304], + [13307,598], + [22109,29500], + [48007,6829], + [21173,6398], + [1047,6284], + [30095,3237], + [22053,10014], + [39039,9935], + [38001,916], + [56023,7144], + [26077,52660], + [40075,2309], + [38039,770], + [16087,3128], + [18031,7119], + [51680,19752], + [38087,341], + [24029,4533], + [24031,110940], + [38081,876], + [19083,4647], + [20105,1148], + [41029,46974], + [42021,33464], + [51139,6344], + [21167,6820], + [8025,924], + [21203,5028], + [48087,962], + [48451,26749], + [47001,18941], + [13259,740], + [21017,4692], + [29153,3080], + [5095,1585], + [48469,19684], + [19195,1743], + [55037,1643], + [50001,5214], + [47089,13037], + [45011,4655], + [54001,3804], + [47047,12682], + [48057,4145], + [30067,4637], + [37061,11330], + [48237,2580], + [39135,13202], + [35005,13271], + [34031,59181], + [47119,20698], + [30081,12817], + [21089,8855], + [5121,3699], + [20159,2631], + [47153,3541], + [39157,21420], + [21079,5310], + [5027,5790], + [28073,17472], + [16001,97471], + [55055,23489], + [39111,3540], + [28119,1116], + [26059,11727], + [18087,6227], + [21179,10673], + [26029,7997], + [21139,3089], + [47019,15496], + [45053,4169], + [39133,34465], + [19147,2649], + [29167,9252], + [38055,3130], + [26063,8686], + [19191,4618], + [8097,2941], + [28013,3961], + [48253,4258], + [17125,3265], + [13183,2300], + [51083,8699], + [17053,4225], + [21093,23357], + [51580,975], + [20021,5345], + [48099,11193], + [36095,6849], + [4025,62385], + [48093,3940], + [35059,1231], + [5111,4967], + [38015,27811], + [49053,41104], + [13007,784], + [51595,886], + [5103,5516], + [48421,908], + [30007,2150], + [20119,1394], + [40041,10056], + [35035,12219], + [24009,22413], + [27051,1748], + [19151,2388], + [1109,7939], + [8059,139960], + [4003,26742], + [48365,7941], + [31173,823], + [6005,8903], + [47125,30159], + [28011,4346], + [22031,7353], + [46019,3068], + [47097,4616], + [48301,54], + [13017,3395], + [32015,1580], + [12029,5052], + [28107,7629], + [4023,4235], + [40063,2836], + [20193,2729], + [48357,2718], + [55078,179], + [17197,118366], + [48461,952], + [12101,112335], + [12117,109939], + [21145,19979], + [13261,5372], + [22037,5397], + [47105,16701], + [48197,1176], + [22087,8497], + [49009,399], + [54085,2889], + [6087,17132], + [22029,5450], + [29165,25617], + [19123,6420], + [6003,236], + [19177,2058], + [13195,8441], + [22089,15936], + [19087,5025], + [28133,2907], + [51683,6463], + [48027,49369], + [51119,3619], + [13227,10547], + [1023,4150], + [41007,7101], + [39107,16207], + [50021,10834], + [37101,48206], + [21195,17589], + [16041,5195], + [17105,9745], + [42109,10050], + [28137,6666], + [37199,5249], + [47007,3022], + [13065,1598], + [40081,9542], + [1129,5749], + [48227,4032], + [48273,4056], + [30049,16673], + [17007,11084], + [44005,16343], + [28001,5542], + [13285,15170], + [48019,7423], + [53035,47468], + [53027,11743], + [9001,172238], + [51131,2676], + [20075,678], + [27127,4570], + [21231,5289], + [6013,112547], + [37145,10467], + [48143,10325], + [40011,2824], + [17151,1511], + [5021,3225], + [48117,3042], + [28149,9390], + [5081,3385], + [45065,2460], + [12031,211553], + [42111,23935], + [31117,237], + [55087,47294], + [46075,490], + [41011,14398], + [18099,11260], + [5093,6599], + [1031,14638], + [22123,3628], + [19009,1800], + [47037,94464], + [48001,12235], + [49057,48938], + [22081,2483], + [41045,6751], + [31175,1643], + [45075,11888], + [1125,45703], + [46021,616], + [13255,14901], + [18137,7484], + [20197,2230], + [20155,15398], + [13225,5280], + [13209,2662], + [55103,3575], + [19011,6935], + [40009,5496], + [9003,143648], + [38007,472], + [55013,4541], + [51730,1526], + [37057,48935], + [48053,12828], + [20135,1190], + [28075,17322], + [27125,978], + [13213,8439], + [48499,14317], + [27087,871], + [17089,89502], + [55043,10255], + [51550,53845], + [53075,7460], + [26123,12458], + [31179,2493], + [49033,907], + [29077,76786], + [54013,1288], + [47039,2873], + [42129,103429], + [12111,56202], + [40141,1813], + [13167,2440], + [36001,42029], + [18153,4902], + [37171,19753], + [46091,889], + [13251,3285], + [26003,2329], + [49035,198739], + [48331,5478], + [17047,2402], + [45087,6566], + [48495,1331], + [55021,13014], + [54107,21980], + [48367,38980], + [5119,68856], + [48395,4416], + [25023,120708], + [29127,7926], + [55091,1793], + [54071,2087], + [39011,16802], + [39013,16418], + [1027,4802], + [17147,5412], + [29099,53973], + [47159,4492], + [26007,7298], + [51019,29281], + [27005,9204], + [8115,881], + [13211,6178], + [12063,13417], + [6043,4434], + [47049,5240], + [19113,47427], + [51097,1863], + [47143,7793], + [48285,6788], + [38075,850], + [42047,7099], + [40117,4228], + [47059,17234], + [48201,584866], + [30089,3971], + [8065,1087], + [40029,1709], + [27133,2810], + [39095,68100], + [4015,46442], + [31091,330], + [25005,93448], + [13085,8843], + [5073,1712], + [17039,4576], + [28057,6925], + [18161,2022], + [19069,2818], + [6109,13410], + [55079,158430], + [18067,20284], + [48213,21202], + [39155,37545], + [18055,8457], + [48431,459], + [51167,8177], + [37125,29336], + [13139,45918], + [26093,60000], + [35053,2698], + [22007,6082], + [8041,163819], + [12127,117473], + [42051,25845], + [48193,2918], + [51193,4116], + [31005,227], + [39029,24778], + [45081,5130], + [48145,3356], + [5089,4771], + [22067,6591], + [51600,4762], + [26125,296531], + [48441,32853], + [30011,678], + [8063,2664], + [51650,19193], + [37161,18797], + [28145,7759], + [5105,2580], + [13145,11193], + [56031,3136], + [39019,7177], + [20061,4242], + [48033,324], + [48363,7392], + [22097,21475], + [55039,30329], + [48061,24955], + [26119,2928], + [32019,13520], + [8075,6124], + [20195,1230], + [29155,3596], + [51678,1146], + [29185,3019], + [29163,4576], + [21011,2275], + [31105,1222], + [8071,3105], + [18035,21231], + [37179,60468], + [46097,636], + [42073,20915], + [29211,1610], + [18081,39136], + [20167,2505], + [51159,2160], + [37023,22109], + [54051,6208], + [21069,3780], + [1133,8310], + [41013,6769], + [37073,2532], + [30041,3133], + [31145,3855], + [21039,1835], + [31013,2795], + [22103,84710], + [53003,5647], + [46025,1067], + [29083,6229], + [5007,53477], + [54073,1805], + [17193,4729], + [41001,5692], + [47121,2728], + [47183,8601], + [28099,7772], + [13309,1366], + [12047,3137], + [8061,677], + [53013,1545], + [51079,5558], + [39173,28997], + [51085,39920], + [48329,35452], + [13037,883], + [39139,33057], + [13013,18719], + [24013,53960], + [21031,3716], + [47031,13013], + [31021,2016], + [34025,140376], + [18109,19591], + [5085,17863], + [38091,495], + [21051,6176], + [12103,213192], + [29115,3331], + [38023,731], + [40113,11218], + [48323,2171], + [41065,5152], + [6113,19080], + [21115,7095], + [48399,3103], + [26043,7688], + [29145,18179], + [28155,3684], + [48239,3903], + [49005,30818], + [17075,9115], + [13207,8352], + [55065,3313], + [13149,3155], + [18089,68397], + [48435,1110], + [8009,1554], + [37043,3952], + [48433,507], + [28025,3735], + [8083,7372], + [13243,1249], + [27063,3044], + [31115,290], + [48309,47885], + [28095,9661], + [45027,6890], + [46099,40330], + [48095,793], + [27071,2841], + [29061,2282], + [26101,5736], + [48083,3007], + [29085,2835], + [46085,933], + [39169,29450], + [36065,41639], + [46063,638], + [18029,15391], + [1051,26223], + [51105,6845], + [19007,3153], + [51149,9350], + [12105,131566], + [39073,6150], + [19127,8411], + [13237,6210], + [28045,12859], + [13135,159563], + [53021,11657], + [40091,4498], + [17005,4091], + [19137,2999], + [13163,2992], + [55135,13989], + [13175,11947], + [36123,4270], + [8125,3433], + [40053,1674], + [48103,985], + [17121,9229], + [27135,4409], + [30099,2091], + [33003,14207], + [54053,5706], + [47113,21989], + [47103,9791], + [29087,1725], + [28063,431], + [17171,1586], + [47139,4108], + [46073,538], + [36105,11148], + [21043,5279], + [45003,41157], + [46013,8320], + [31075,322], + [49041,6961], + [29049,5904], + [23025,11798], + [12027,5587], + [53065,10794], + [27101,2504], + [45031,14429], + [5129,2699], + [51127,7246], + [12083,93036], + [28101,5909], + [21067,60793], + [21021,7703], + [51045,1757], + [48047,507], + [39105,5782], + [28021,608], + [35013,26988], + [17141,13409], + [51067,16685], + [48091,39291], + [4013,654835], + [30105,2337], + [37003,12207], + [26053,3444], + [28069,1789], + [24039,4706], + [13071,9240], + [12109,78490], + [12049,4694], + [36053,12611], + [54065,4508], + [6097,45666], + [53073,38764], + [50011,7405], + [55133,161567], + [19027,5577], + [47111,5259], + [48167,68594], + [35017,5286], + [38035,15044], + [8011,1053], + [20009,9132], + [39159,15947], + [54033,15755], + [1059,7567], + [42101,91840], + [41071,21711], + [30077,1798], + [27027,12920], + [5113,5950], + [29229,5831], + [48489,1415], + [17137,7962], + [4001,8198], + [49023,3400], + [42113,1859], + [37015,3367], + [5051,25031], + [40085,2436], + [20209,15273], + [48025,4354], + [30061,1212], + [16033,235], + [39069,8111], + [31009,268], + [8019,2381], + [54049,11981], + [34023,102472], + [25025,58872], + [19129,4211], + [17203,12947], + [46057,1803], + [18075,4643], + [39101,13938], + [36027,52320], + [8033,838], + [51021,2144], + [48029,240519], + [51117,7855], + [27141,27848], + [19197,3309], + [6035,7261], + [54095,2291], + [20015,17764], + [37053,7431], + [38017,36792], + [26153,2142], + [46065,5219], + [48119,1524], + [48049,11894], + [51143,19275], + [30055,742], + [55137,6558], + [56021,23247], + [13305,7553], + [21137,6416], + [36033,5248], + [21191,3556], + [28093,6444], + [24003,118165], + [18181,5970], + [51163,5898], + [38033,740], + [26023,9575], + [27089,2380], + [13263,1202], + [29177,5805], + [51069,22851], + [30057,3115], + [26129,5437], + [18049,5315], + [40089,7633], + [51735,5312], + [12003,8974], + [6089,34561], + [17133,10879], + [35011,586], + [47129,4668], + [54003,21956], + [5127,2630], + [31037,2045], + [29179,1927], + [17149,4853], + [47175,1384], + [13033,4298], + [20199,702], + [28147,4012], + [48321,8026], + [36093,24608], + [21219,3247], + [6091,1056], + [35028,4796], + [13275,11153], + [48157,116028], + [18173,15350], + [31001,8235], + [54019,8304], + [31061,1110], + [18141,52575], + [31033,3134], + [10005,52116], + [20057,5459], + [20139,4336], + [13295,16245], + [39035,184475], + [27043,4104], + [32009,317], + [29107,9800], + [48477,10850], + [48081,1216], + [27031,1221], + [29089,3012], + [29131,8099], + [29069,6849], + [21001,5841], + [31107,2878], + [23021,4577], + [25003,14209], + [12073,55806], + [48155,346], + [31129,1563], + [26039,3744], + [37025,49125], + [16021,3138], + [28031,5282], + [48299,7560], + [11001,17337], + [38073,1008], + [46105,1205], + [18123,3403], + [41069,542], + [45047,16290], + [30091,1203], + [30013,18039], + [19185,1583], + [19171,4076], + [13235,2444], + [40095,3744], + [53037,8372], + [48251,37609], + [53063,104797], + [39171,9863], + [48463,4526], + [48283,669], + [55063,25711], + [53015,19107], + [53033,252090], + [16065,13445], + [37169,15142], + [48217,9128], + [18103,8163], + [51520,4776], + [48425,2858], + [50023,8092], + [36085,66420], + [17067,4810], + [47053,12883], + [13047,17848], + [40023,3572], + [51147,3952], + [5083,5078], + [48371,2512], + [55057,5400], + [21071,9784], + [29093,2252], + [48249,4595], + [12057,249904], + [55033,10210], + [21129,1977], + [31015,852], + [5019,4343], + [12085,48180], + [31045,2435], + [28157,1275], + [19141,5259], + [54023,3775], + [37093,6721], + [51087,70235], + [5071,5045], + [36077,10527], + [37165,5799], + [13313,19290], + [20093,1060], + [18101,3262], + [28061,4193], + [27003,93430], + [47043,11287], + [39009,8118], + [16043,4907], + [22011,11111], + [30075,833], + [35006,2966], + [46027,2146], + [13245,25821], + [48137,641], + [29159,10840], + [51181,1671], + [15003,87255], + [39129,13713], + [29203,2260], + [27123,86799], + [53061,121642], + [21045,4904], + [12053,44906], + [22069,9077], + [47137,1707], + [18007,2329], + [13269,1948], + [8093,5085], + [37115,5379], + [23009,12398], + [50019,4306], + [19013,26078], + [26115,35593], + [27049,12986], + [54031,3523], + [8027,1776], + [48121,156105], + [53025,17570], + [17041,5331], + [16073,2794], + [31127,1979], + [48355,48779], + [19035,3656], + [42089,25100], + [20023,1157], + [20203,821], + [13121,133837], + [6017,49661], + [19045,9423], + [18019,25422], + [19125,9810], + [21197,2726], + [20087,4647], + [13127,20853], + [21109,4365], + [28055,302], + [31183,345], + [38067,1893], + [23013,8262], + [21215,5726], + [8045,12159], + [20081,1131], + [21003,5184], + [42107,32156], + [13153,34631], + [29029,15089], + [1025,7463], + [41005,87551], + [36025,9085], + [48207,1422], + [39103,49464], + [37185,3111], + [29067,4649], + [18157,28708], + [41041,8623], + [13315,2050], + [30059,670], + [20055,5108], + [36041,1652], + [17165,6803], + [31135,1133], + [5099,1996], + [16045,5311], + [53067,43703], + [42115,10735], + [37085,25070], + [20035,7932], + [37077,12332], + [26017,23735], + [34027,114265], + [26103,13609], + [31073,732], + [51173,8376], + [48327,663], + [19189,2897], + [13091,5214], + [18009,2710], + [54029,7159], + [37111,11732], + [50007,21567], + [32029,1321], + [18119,5062], + [48011,828], + [20169,13697], + [48127,762], + [46015,1499], + [20115,3865], + [17119,60481], + [45019,77248], + [19017,6383], + [13265,321], + [18151,8542], + [47055,6914], + [45051,66653], + [12023,18429], + [32510,12394], + [40037,18964], + [27137,39675], + [47145,14719], + [46137,314], + [18167,19368], + [48123,5114], + [31165,623], + [48221,18341], + [41047,58435], + [39167,16921], + [21113,14232], + [13169,7740], + [19059,5911], + [37055,10102], + [23011,26506], + [48243,717], + [25027,162022], + [48505,993], + [24041,10442], + [37131,3474], + [22079,37187], + [29209,11780], + [25011,9338], + [51685,1696], + [28123,5728], + [30103,317], + [20183,1598], + [26035,6988], + [31153,40318], + [55017,15371], + [39043,16655], + [19181,13031], + [16049,5821], + [22077,6548], + [19193,22136], + [6115,8746], + [6059,541592], + [13239,510], + [13131,5922], + [26011,4054], + [46047,2256], + [29171,1673], + [21239,7218], + [26165,7972], + [29201,11623], + [44001,9216], + [49043,8464], + [13165,1884], + [19033,10084], + [26091,22351], + [13171,4896], + [31163,919], + [12097,40581], + [53045,12637], + [38097,1963], + [24510,25501], + [54061,16672], + [17191,5984], + [47179,32787], + [13051,47083], + [36107,11278], + [30083,3479], + [50017,4588], + [17161,24888], + [12061,43441], + [8077,45087], + [31149,669], + [54067,5823], + [54089,2968], + [21053,3569], + [13055,5434], + [28159,5147], + [4011,1590], + [25013,72318], + [21099,4256], + [5047,4631], + [6101,12576], + [17065,2566], + [40111,7712], + [27119,7615], + [36035,9811], + [48135,23936], + [47155,25979], + [20153,1207], + [45023,6336], + [48139,39353], + [26107,9175], + [54105,1422], + [28135,2480], + [21073,11345], + [27047,6970], + [34019,36979], + [5131,29158], + [30033,622], + [42079,57969], + [42061,11953], + [13093,1983], + [48199,17744], + [19043,4146], + [12099,247257], + [46093,7560], + [20071,539], + [28139,6625], + [27115,6845], + [5005,13688], + [1113,8276], + [51157,2307], + [21187,2971], + [12041,5917], + [13089,64308], + [18047,7421], + [48457,5889], + [47117,6823], + [51029,3569], + [48453,139503], + [18163,39504], + [13187,8633], + [38005,867], + [20133,4193], + [46043,1334], + [47101,3116], + [29227,664], + [26045,26193], + [21123,3911], + [5107,2591], + [6039,18990], + [26109,5565], + [34039,66457], + [45045,120514], + [53057,19418], + [21027,5025], + [30019,735], + [19039,2124], + [37191,27536], + [8123,62350], + [18113,10680], + [21013,7127], + [4007,11525], + [31023,2729], + [30043,4042], + [47157,135536], + [45015,35764], + [26061,8040], + [18115,1757], + [28097,2543], + [21185,20179], + [1033,13931], + [1103,35309], + [50005,5088], + [13287,2027], + [48491,96910], + [42023,1264], + [1063,799], + [42091,169903], + [37087,15553], + [55071,21581], + [33009,18207], + [48013,7451], + [19117,2248], + [29113,14330], + [40139,4908], + [31057,791], + [29109,11417], + [51185,13843], + [48235,668], + [39003,28802], + [51810,99107], + [13147,6516], + [39079,7651], + [20123,2293], + [21221,4520], + [31087,1386], + [27083,6595], + [42083,9494], + [21065,3749], + [51199,20182], + [13077,39633], + [26155,15962], + [55101,49173], + [42033,20303], + [19159,1366], + [18135,6218], + [26139,88503], + [38049,1651], + [26161,56401], + [9011,45715], + [31167,1945], + [48133,5443], + [36021,11194], + [26135,2308], + [49013,5608], + [12011,243732], + [19111,6787], + [26083,774], + [1083,25263], + [48015,9260], + [31017,1298], + [53041,15954], + [46067,2451], + [5101,2508], + [42031,10228], + [40125,16240], + [26015,16651], + [27095,6951], + [19079,3986], + [29027,11742], + [46083,13611], + [35007,2763], + [8037,9317], + [40065,5962], + [48507,574], + [32013,3810], + [55083,10691], + [42025,12710], + [8099,3200], + [28121,46318], + [28131,4924], + [18037,11654], + [19157,4409], + [26027,12660], + [21061,3232], + [40153,5936], + [41057,5670], + [28019,2533], + [37137,4032], + [29003,5457], + [45033,5477], + [6073,431046], + [48161,5644], + [18159,4773], + [16051,9895], + [54011,17779], + [12065,3808], + [27117,2828], + [37027,23069], + [12067,2668], + [39121,3498], + [37197,12500], + [8121,2059], + [17081,9805], + [13297,29018], + [16079,2699], + [27017,6586], + [42041,64365], + [29125,3165], + [20107,3079], + [26051,6661], + [31125,1098], + [13219,12222], + [39053,5912], + [39045,40134], + [24035,14879], + [56005,14952], + [51177,31818], + [51023,12471], + [37155,17093], + [21199,20714], + [51043,4295], + [18125,3627], + [13079,3366], + [27059,11675], + [1001,17366], + [19085,4059], + [55047,5779], + [39113,121188], + [29197,1174], + [8021,1794], + [20005,3836], + [8119,7909], + [48383,676], + [48403,3726], + [24037,25096], + [27129,4149], + [17157,8284], + [21133,6811], + [55077,3758], + [26099,191896], + [30037,351], + [27109,36832], + [40035,3552], + [33017,26779], + [6047,23403], + [29011,4416], + [28067,20635], + [26075,36298], + [13279,6519], + [19003,1103], + [6029,99840], + [13083,4458], + [35039,3373], + [22099,15653], + [16009,2596], + [56003,4269], + [6067,157688], + [40003,1539], + [1091,5321], + [28059,33262], + [29121,4700], + [48413,781], + [38021,1601], + [40101,13392], + [36003,9609], + [1111,7219], + [19167,14361], + [31049,763], + [42069,34730], + [19119,4965], + [42093,4636], + [48449,6062], + [25021,144654], + [54035,7360], + [47035,18651], + [48347,13910], + [13299,7933], + [8087,6461], + [39081,16729], + [48375,18905], + [46123,1905], + [31171,360], + [54015,1957], + [47167,16395], + [47011,27417], + [39131,5535], + [48215,39786], + [36047,108630], + [6045,5129], + [21189,1279], + [22049,5132], + [27121,3142], + [48353,3277], + [13249,1286], + [5125,32962], + [46111,688], + [31071,762], + [29217,5756], + [6093,9844], + [27039,5522], + [38013,766], + [29175,6667], + [6023,15653], + [1095,25785], + [30009,3513], + [18005,18083], + [20191,6162], + [39175,6054], + [42049,46102], + [13059,13804], + [38065,693], + [51103,3749], + [20019,1201], + [40021,8151], + [48277,12814], + [20117,3123], + [31111,10545], + [24011,7674], + [17111,71488], + [17019,35086], + [40143,144908], + [31029,1573], + [48073,12291], + [46007,626], + [17033,5577], + [1053,9263], + [18133,9004], + [39077,12821], + [26081,157801], + [37089,32860], + [53011,88629], + [42055,43072], + [1037,3028], + [54069,10577], + [32011,663], + [51800,17778], + [32017,1691], + [1071,14422], + [53059,2624], + [48069,1470], + [51007,4324], + [37195,17904], + [37149,6219], + [6055,11647], + [13069,9242], + [38061,1960], + [19031,4510], + [27163,69137], + [49045,12240], + [30047,7084], + [55061,5746], + [17143,36617], + [17115,25249], + [29215,7618], + [46051,2034], + [17103,8046], + [20063,1155] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-other.json b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-other.json new file mode 100644 index 0000000..96422c6 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes-other.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2012 Presidential Election | Other Votes", + "description" : "Votes cast for 3rd party candidates in the 2012 presidential election.", + "units" : "votes", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "The Guardian" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2012.votes.other"], + [26041,180], + [48295,5], + [1127,313], + [48389,33], + [56017,78], + [20043,87], + [37183,6933], + [37147,579], + [48497,295], + [21207,116], + [5053,182], + [31147,93], + [47123,235], + [36059,4293], + [1011,10], + [42057,71], + [20031,95], + [31151,82], + [31035,41], + [28033,648], + [22061,296], + [40129,0], + [22057,850], + [40135,0], + [51153,2116], + [23031,2256], + [23015,486], + [47025,128], + [29063,100], + [42045,2778], + [12119,308], + [36055,5665], + [18045,210], + [39063,671], + [34009,480], + [28047,714], + [5141,233], + [48343,47], + [30073,69], + [47181,70], + [48153,11], + [46119,19], + [19097,118], + [28087,238], + [17155,74], + [45073,503], + [36101,648], + [37143,60], + [28035,371], + [31027,77], + [13141,11], + [39091,423], + [39059,366], + [48297,40], + [47151,99], + [30027,173], + [35021,14], + [23027,629], + [49007,193], + [20053,76], + [27113,165], + [27159,137], + [18131,134], + [38041,40], + [28003,206], + [19143,45], + [50009,61], + [1015,468], + [13253,46], + [6105,241], + [17181,188], + [31055,2921], + [51670,96], + [20095,97], + [21209,354], + [48467,208], + [31177,161], + [29199,47], + [47027,36], + [55111,285], + [48045,7], + [45007,1093], + [48125,10], + [19173,37], + [37193,353], + [27081,91], + [48369,12], + [1005,47], + [42125,1120], + [51035,464], + [47033,46], + [39021,338], + [36049,135], + [29143,152], + [51135,91], + [26089,105], + [48275,18], + [51073,345], + [35051,210], + [6069,303], + [41051,11445], + [51610,97], + [48195,15], + [13025,99], + [27079,263], + [36061,6132], + [18073,264], + [21183,189], + [21081,132], + [5025,108], + [27055,190], + [37129,1237], + [26013,50], + [48189,120], + [20171,46], + [48211,19], + [15007,610], + [54047,119], + [22043,163], + [39143,666], + [48465,161], + [48279,35], + [37041,45], + [38085,15], + [39115,134], + [1057,75], + [22017,1259], + [13191,68], + [51109,248], + [46121,23], + [31085,12], + [55113,85], + [6083,3874], + [51820,147], + [28049,677], + [44003,1495], + [21229,54], + [37065,83], + [27029,71], + [17061,145], + [21029,498], + [51071,154], + [20083,15], + [20045,1243], + [40097,0], + [22105,787], + [36013,824], + [25007,170], + [20127,71], + [48141,2263], + [30025,40], + [55019,173], + [19165,85], + [13103,247], + [55011,87], + [31051,51], + [41023,96], + [24033,2714], + [29219,307], + [36051,507], + [48391,16], + [22013,72], + [22023,76], + [17045,122], + [21047,226], + [13193,25], + [1003,887], + [38105,225], + [19105,145], + [22095,324], + [32031,3960], + [20187,7], + [18139,172], + [29037,957], + [38057,101], + [55035,759], + [29079,132], + [47077,117], + [35029,245], + [47173,68], + [48005,269], + [46061,29], + [48271,23], + [39031,402], + [40043,0], + [6065,11740], + [30109,98], + [48325,172], + [9005,1374], + [20039,48], + [13015,508], + [8051,243], + [30045,24], + [17099,916], + [40103,0], + [53001,80], + [19109,95], + [51001,155], + [19075,70], + [23005,8910], + [37099,280], + [39119,801], + [17177,333], + [8053,18], + [40093,0], + [48171,175], + [6061,2739], + [27153,224], + [39041,1219], + [16071,34], + [21035,312], + [12013,122], + [36009,507], + [18069,295], + [39099,1571], + [48059,68], + [47165,784], + [46109,71], + [17185,66], + [20121,281], + [27147,425], + [51063,223], + [16027,1855], + [45041,544], + [29073,140], + [16013,263], + [31141,191], + [42027,1427], + [13123,133], + [12039,99], + [48175,31], + [5143,2525], + [41019,1442], + [19179,237], + [29151,116], + [28009,24], + [48179,60], + [13009,160], + [13023,51], + [47071,142], + [32023,636], + [39057,1364], + [47081,146], + [48473,140], + [55117,634], + [8015,301], + [21161,90], + [41039,5306], + [13003,34], + [9013,1106], + [40045,0], + [13053,25], + [22085,121], + [55099,109], + [20175,67], + [28141,157], + [18083,305], + [37011,88], + [22015,618], + [39085,1895], + [5069,393], + [30035,112], + [31143,33], + [55093,324], + [51057,55], + [48051,79], + [13221,95], + [5031,812], + [21041,52], + [13273,20], + [42011,2501], + [18013,204], + [38077,146], + [42017,3933], + [16015,108], + [36111,1689], + [29095,4863], + [49055,23], + [20165,37], + [41061,354], + [29186,202], + [30101,80], + [37157,342], + [5137,222], + [39123,399], + [29081,87], + [27173,126], + [5041,80], + [27023,126], + [47095,40], + [22025,41], + [48021,578], + [39161,230], + [12123,107], + [13133,51], + [56013,412], + [36113,537], + [19049,412], + [8111,28], + [53007,692], + [51093,221], + [18105,1061], + [51077,251], + [48429,41], + [8007,178], + [8001,4121], + [26001,53], + [37119,3867], + [21165,66], + [54083,252], + [48411,28], + [54077,332], + [1039,112], + [15001,1442], + [5061,97], + [35023,40], + [26151,186], + [46031,37], + [42121,378], + [39163,172], + [13241,127], + [48337,82], + [13281,60], + [19021,91], + [29169,280], + [5057,169], + [27067,358], + [39027,374], + [41031,164], + [38089,225], + [54017,64], + [21127,77], + [26047,194], + [53009,924], + [45021,228], + [27145,1611], + [51570,115], + [28023,89], + [24017,909], + [5117,108], + [48031,114], + [21169,83], + [36091,1797], + [17015,161], + [42065,249], + [28015,25], + [12019,808], + [12115,1856], + [12071,1842], + [29205,78], + [51099,208], + [5023,334], + [27011,53], + [5079,102], + [21225,82], + [37033,82], + [42035,219], + [31031,59], + [6021,258], + [56033,340], + [31003,53], + [20109,24], + [21227,700], + [16059,120], + [29141,182], + [47091,100], + [13081,47], + [16031,144], + [38083,10], + [17087,136], + [9007,1063], + [12069,1369], + [35037,120], + [48129,21], + [5059,328], + [1105,25], + [47187,1188], + [32021,92], + [47073,327], + [18175,284], + [51013,1668], + [37103,32], + [8081,135], + [51121,1029], + [48483,18], + [20033,18], + [47109,156], + [26071,76], + [46011,353], + [18171,97], + [21057,38], + [29031,616], + [38043,47], + [4012,98], + [37007,53], + [48205,21], + [12095,4101], + [21091,88], + [41035,736], + [54057,261], + [22113,357], + [26113,85], + [5037,133], + [9015,923], + [29075,74], + [28091,90], + [33011,3163], + [19145,88], + [37135,1046], + [47067,44], + [20011,145], + [8085,413], + [18107,337], + [13011,59], + [35025,385], + [54041,175], + [29065,175], + [28115,160], + [48071,151], + [37059,198], + [35001,13517], + [12035,419], + [29123,115], + [35041,198], + [48231,350], + [18095,1181], + [48361,344], + [30039,65], + [48035,97], + [21111,4921], + [6001,15965], + [40105,0], + [48169,18], + [20185,48], + [26025,623], + [19051,87], + [29157,134], + [47177,253], + [42003,7216], + [36073,269], + [4027,410], + [28111,57], + [9009,3801], + [35045,1527], + [42127,297], + [21177,204], + [49037,91], + [26037,308], + [51590,198], + [20067,36], + [12087,419], + [29035,67], + [5001,142], + [40069,0], + [37107,134], + [48209,1783], + [4005,1062], + [20143,80], + [48437,32], + [41063,104], + [19091,58], + [22091,104], + [48185,118], + [40051,0], + [31095,75], + [39127,318], + [48233,77], + [13099,31], + [16057,864], + [56045,80], + [46053,45], + [49029,74], + [22021,60], + [46017,3], + [19133,54], + [16017,669], + [42095,1627], + [51690,110], + [40131,0], + [55119,128], + [17145,223], + [27021,265], + [48417,14], + [48339,2146], + [6099,3462], + [47013,168], + [27085,416], + [30017,159], + [48165,47], + [35057,441], + [33007,181], + [47135,51], + [6111,5869], + [40099,0], + [20201,48], + [48245,708], + [18057,2269], + [19041,103], + [47015,100], + [1049,291], + [42067,126], + [26105,152], + [34003,3286], + [48017,11], + [17013,56], + [40061,0], + [27015,314], + [45057,392], + [21149,63], + [22107,18], + [28113,139], + [25019,84], + [13321,60], + [26097,49], + [51089,635], + [1009,278], + [13303,58], + [4019,5420], + [38025,15], + [21019,381], + [8069,4117], + [51037,84], + [29117,142], + [48315,54], + [51101,94], + [28077,37], + [45077,915], + [21025,128], + [51540,387], + [17189,163], + [29135,131], + [24001,658], + [27025,580], + [29181,124], + [48419,73], + [17183,492], + [48067,96], + [26067,395], + [26085,48], + [17071,48], + [39033,424], + [21101,227], + [13283,24], + [22035,18], + [49011,2121], + [13271,51], + [51195,145], + [48037,333], + [48241,140], + [47075,40], + [1045,163], + [40123,0], + [22027,69], + [29041,80], + [45055,359], + [51015,552], + [6085,12101], + [29055,194], + [39007,927], + [13173,38], + [13161,65], + [18033,309], + [42081,620], + [48225,55], + [38059,374], + [42063,590], + [39165,1475], + [31137,89], + [42043,1578], + [20091,5052], + [25001,1662], + [19073,62], + [6025,444], + [19065,116], + [37001,585], + [18065,547], + [26079,116], + [16077,51], + [46029,240], + [46117,42], + [40115,0], + [39097,325], + [45083,1456], + [8091,73], + [37081,2082], + [16075,220], + [17011,330], + [5049,121], + [30063,1709], + [1065,22], + [48105,20], + [13125,22], + [1099,53], + [30001,151], + [17163,2020], + [29147,211], + [5135,270], + [54009,226], + [21117,1375], + [48257,349], + [16085,160], + [26021,648], + [36089,535], + [37189,673], + [36117,676], + [8023,47], + [17049,249], + [51059,5553], + [39001,239], + [17135,296], + [36031,247], + [12037,59], + [39109,900], + [53039,350], + [41009,810], + [1101,505], + [29039,132], + [17097,3871], + [5017,42], + [13107,55], + [27093,285], + [17043,6429], + [26121,736], + [36109,1176], + [21083,247], + [48317,8], + [6053,1723], + [13247,330], + [13109,27], + [29097,1060], + [40039,0], + [22001,344], + [42123,279], + [54091,127], + [48493,162], + [55051,49], + [37113,241], + [5115,549], + [1131,4], + [13137,155], + [8095,40], + [42013,615], + [5045,1110], + [5139,282], + [20003,91], + [30005,65], + [31093,52], + [55059,881], + [48291,211], + [45037,107], + [38053,47], + [34035,1605], + [32007,461], + [55045,258], + [12051,79], + [36069,861], + [20007,56], + [35015,539], + [16061,43], + [24045,639], + [48187,634], + [51720,25], + [46003,40], + [8067,858], + [51710,905], + [16035,123], + [36045,427], + [33005,607], + [48481,102], + [26065,1311], + [19099,277], + [6033,641], + [22125,79], + [38051,26], + [55041,50], + [53055,341], + [27007,494], + [51053,145], + [38063,40], + [20065,27], + [36043,468], + [13113,724], + [23007,515], + [38037,40], + [40017,0], + [13061,3], + [51770,1184], + [13201,18], + [48163,33], + [17175,39], + [48269,1], + [30111,1865], + [31119,270], + [44009,1363], + [31133,37], + [46037,56], + [17093,747], + [19029,99], + [4017,463], + [16005,1036], + [47099,212], + [8101,1659], + [8043,527], + [12043,42], + [13095,172], + [13155,30], + [31063,36], + [36039,417], + [22055,1882], + [39065,323], + [56043,104], + [55107,107], + [27045,228], + [29051,567], + [13087,69], + [17057,391], + [22045,373], + [46023,51], + [46069,13], + [13291,164], + [17117,598], + [21063,87], + [35055,623], + [46039,55], + [19023,85], + [37173,111], + [48307,37], + [40079,0], + [28043,61], + [48223,133], + [21049,251], + [42131,213], + [20111,284], + [47069,92], + [54043,207], + [13151,796], + [20101,15], + [48173,8], + [6081,4534], + [38011,39], + [51027,106], + [56011,122], + [17201,2045], + [51630,228], + [48289,68], + [55123,249], + [17129,103], + [48333,36], + [21005,181], + [37121,85], + [19183,259], + [31059,49], + [16025,17], + [17199,577], + [45039,119], + [1079,169], + [12055,381], + [19077,114], + [31157,247], + [29221,206], + [53077,1123], + [29119,203], + [21077,64], + [48501,21], + [42103,281], + [29057,62], + [48401,162], + [20141,34], + [19187,207], + [42075,786], + [20099,165], + [48079,12], + [24025,2531], + [12015,780], + [13027,48], + [29071,1008], + [41055,25], + [6057,907], + [47041,104], + [26111,386], + [34013,2088], + [21159,70], + [19093,33], + [39093,2306], + [45009,64], + [47147,355], + [47169,53], + [29183,3067], + [54021,72], + [37095,18], + [47107,257], + [21163,187], + [20079,291], + [55049,114], + [36103,6475], + [51740,459], + [46045,50], + [16081,139], + [13233,174], + [39153,3543], + [53043,131], + [51840,222], + [53005,1923], + [13129,247], + [27151,88], + [19089,65], + [19139,361], + [49047,153], + [18121,170], + [4009,170], + [21037,853], + [8005,5081], + [37187,30], + [55097,535], + [29007,227], + [27033,99], + [51107,1954], + [51137,216], + [31101,70], + [8047,97], + [21153,81], + [39071,357], + [55025,3997], + [51111,73], + [53049,309], + [27009,499], + [42099,299], + [5013,56], + [20137,48], + [40147,0], + [23019,1763], + [39005,518], + [27073,62], + [8107,288], + [29139,97], + [54087,126], + [5055,690], + [27013,959], + [40019,0], + [20073,67], + [17059,49], + [42059,177], + [28007,33], + [51183,50], + [55131,713], + [27099,404], + [1119,20], + [1085,18], + [48109,16], + [17063,439], + [47023,102], + [46071,19], + [24005,7236], + [48439,8674], + [38071,150], + [20113,277], + [20089,32], + [41067,5491], + [40049,0], + [13189,69], + [47021,255], + [36067,3316], + [8014,773], + [18025,128], + [28041,66], + [39089,1555], + [19019,132], + [37181,78], + [22065,33], + [13185,316], + [8013,4196], + [20163,68], + [37021,1706], + [48177,53], + [12081,1359], + [46081,361], + [21181,49], + [38029,49], + [20125,270], + [27035,625], + [36071,1801], + [36081,4559], + [31181,35], + [20173,4068], + [13301,7], + [55007,137], + [36079,596], + [28153,73], + [27091,216], + [51036,45], + [55069,165], + [48097,150], + [23029,420], + [47163,1002], + [19061,651], + [21155,98], + [51191,365], + [35009,344], + [6049,94], + [51033,184], + [51141,202], + [19161,53], + [17131,148], + [55005,287], + [26127,136], + [16063,52], + [29053,150], + [53047,371], + [1107,32], + [41017,1786], + [46035,172], + [41033,1114], + [17035,144], + [40067,0], + [17123,103], + [35031,530], + [28127,102], + [31039,55], + [51640,41], + [46095,13], + [19121,140], + [18015,169], + [51165,551], + [47085,127], + [12113,890], + [46089,22], + [18043,610], + [51009,174], + [12017,813], + [30093,461], + [16003,70], + [31099,54], + [39037,452], + [24021,2445], + [51510,831], + [48101,6], + [27037,4257], + [46059,31], + [47063,276], + [40013,0], + [13075,51], + [54097,174], + [54045,254], + [48385,20], + [51003,757], + [51011,131], + [47079,207], + [21033,104], + [48131,33], + [19103,1282], + [29043,678], + [21237,41], + [49051,160], + [38045,68], + [29001,255], + [40127,0], + [29017,148], + [1121,222], + [28085,91], + [18145,414], + [31019,413], + [30023,148], + [26005,582], + [6079,3442], + [47185,148], + [48281,98], + [26117,328], + [39087,427], + [5063,387], + [46033,123], + [12121,206], + [37133,543], + [54025,318], + [48261,1], + [1089,2151], + [22059,82], + [13205,39], + [5133,151], + [55125,116], + [48159,59], + [41059,699], + [51051,132], + [8057,32], + [31155,199], + [8079,15], + [47161,83], + [32003,12138], + [36057,281], + [29129,47], + [38079,87], + [34017,1783], + [41021,36], + [37075,52], + [16053,178], + [13005,46], + [37063,1317], + [28105,243], + [17027,324], + [51161,860], + [38099,134], + [20207,28], + [40071,0], + [34033,446], + [28029,87], + [48423,835], + [39151,3348], + [19153,3270], + [21007,59], + [28027,43], + [28079,39], + [41053,858], + [22117,279], + [26145,815], + [48313,33], + [28129,71], + [18063,1182], + [29225,312], + [6095,2976], + [37005,73], + [47061,78], + [46113,20], + [31081,106], + [25015,2488], + [13143,136], + [40055,0], + [37049,375], + [36099,217], + [45001,147], + [42037,436], + [56029,331], + [26137,140], + [15009,991], + [13049,39], + [21175,82], + [35027,338], + [30071,69], + [35003,69], + [13217,393], + [26009,160], + [37067,1549], + [12033,1605], + [5147,118], + [28081,316], + [10001,1010], + [48359,8], + [46125,84], + [37117,64], + [18129,258], + [26095,25], + [6015,288], + [27169,643], + [8017,25], + [29161,497], + [30053,280], + [1093,159], + [13293,73], + [42053,33], + [16069,430], + [55105,812], + [27057,184], + [46101,69], + [47093,3325], + [21151,677], + [48267,7], + [17159,164], + [6075,10512], + [26157,322], + [48407,95], + [39061,5411], + [30087,97], + [54101,97], + [13157,312], + [13317,38], + [20025,38], + [37139,157], + [37097,739], + [21119,143], + [49015,102], + [48293,67], + [40109,0], + [48181,635], + [48183,355], + [48055,250], + [12086,3867], + [54109,170], + [22073,881], + [51187,322], + [45089,145], + [30021,174], + [31109,2059], + [6031,673], + [20179,19], + [39067,168], + [55027,444], + [33019,379], + [13111,127], + [48447,4], + [17009,64], + [48009,39], + [39145,568], + [26073,281], + [26057,169], + [48085,4414], + [18027,171], + [35019,72], + [21087,57], + [47115,184], + [1075,63], + [1073,2353], + [13231,84], + [12107,331], + [35033,61], + [37017,127], + [5009,458], + [56039,287], + [1021,133], + [20181,64], + [48387,43], + [48311,5], + [46135,253], + [1007,60], + [49027,113], + [21205,168], + [21125,352], + [28125,12], + [17167,1940], + [21235,153], + [13035,100], + [27065,202], + [19053,77], + [8035,2137], + [8109,97], + [17069,53], + [40133,0], + [48377,31], + [34011,533], + [40121,0], + [24027,3056], + [46009,77], + [12089,348], + [40027,0], + [51017,50], + [26163,5269], + [38069,44], + [20129,17], + [29091,407], + [28083,62], + [48475,38], + [19135,51], + [6103,533], + [5039,82], + [48089,56], + [18003,2193], + [1043,393], + [18127,1340], + [37127,252], + [51081,24], + [39015,361], + [18169,245], + [29005,51], + [21009,243], + [39025,1531], + [45063,1805], + [48259,227], + [56037,550], + [27069,69], + [47003,200], + [26055,494], + [31053,234], + [17079,93], + [21075,34], + [12129,195], + [12133,141], + [40087,0], + [13067,4999], + [19071,48], + [24019,165], + [51095,450], + [30065,79], + [19057,261], + [27157,258], + [39051,446], + [51133,48], + [28037,32], + [47189,692], + [47045,122], + [37105,223], + [37123,100], + [22041,121], + [48229,11], + [36083,1379], + [1087,18], + [19107,83], + [20051,258], + [13039,262], + [55031,309], + [20037,360], + [21143,53], + [13257,137], + [48003,46], + [13267,62], + [51061,493], + [40033,0], + [13229,55], + [42133,2692], + [46107,13], + [48247,10], + [18147,184], + [1077,502], + [42097,604], + [19169,1032], + [45079,1941], + [48443,11], + [36011,556], + [39083,591], + [13159,50], + [13021,481], + [37009,179], + [47087,62], + [56025,968], + [19047,67], + [39141,484], + [46103,1107], + [42001,590], + [54063,140], + [6071,12021], + [31161,51], + [36075,897], + [20069,29], + [48409,216], + [37167,291], + [17173,210], + [42117,291], + [41015,341], + [8029,377], + [51750,130], + [28053,13], + [20059,302], + [41025,107], + [29133,65], + [28117,141], + [23003,793], + [17077,754], + [27155,38], + [49019,217], + [40025,0], + [29173,69], + [19015,240], + [34001,978], + [46041,25], + [27139,1376], + [29101,590], + [17109,340], + [20049,39], + [55053,93], + [39075,224], + [37069,262], + [5123,82], + [48305,11], + [21107,295], + [27131,726], + [5077,37], + [1061,106], + [6009,528], + [18079,307], + [21023,54], + [5065,179], + [20027,58], + [54007,79], + [12005,934], + [21015,947], + [55009,1343], + [6063,218], + [8113,110], + [36015,489], + [19115,56], + [51775,225], + [28103,19], + [36019,445], + [17091,763], + [45059,350], + [28051,37], + [31069,17], + [51113,96], + [56001,756], + [31123,44], + [29013,194], + [13057,1755], + [31077,21], + [18051,303], + [51830,143], + [28143,24], + [48191,11], + [45071,178], + [17001,540], + [8073,48], + [42005,397], + [31025,201], + [37045,368], + [1097,1206], + [37051,910], + [17085,222], + [51065,161], + [48115,32], + [48039,1411], + [36017,382], + [37177,11], + [48471,214], + [26131,44], + [12091,1206], + [12007,91], + [6041,2489], + [20177,1659], + [23017,916], + [19101,204], + [17017,101], + [39049,8156], + [27143,176], + [36115,413], + [20147,45], + [47141,444], + [13119,146], + [19095,119], + [33013,968], + [51171,301], + [47131,162], + [20013,88], + [16007,31], + [34021,1609], + [55109,660], + [55075,235], + [56007,200], + [18111,149], + [34005,1998], + [18011,592], + [49021,276], + [48113,8432], + [22071,3067], + [27077,55], + [17083,252], + [45067,134], + [47127,41], + [1069,281], + [8117,374], + [18117,199], + [37035,762], + [45029,168], + [19155,581], + [38101,643], + [6011,96], + [21095,175], + [1115,314], + [6107,1455], + [48147,156], + [55095,365], + [55139,1331], + [39055,726], + [20001,118], + [8055,111], + [18041,219], + [20103,635], + [53029,988], + [20097,3], + [48043,126], + [12093,140], + [22039,259], + [19005,83], + [17031,26074], + [48265,261], + [46129,60], + [34007,2077], + [51700,955], + [48373,203], + [54081,473], + [16037,78], + [17051,165], + [51041,2095], + [21055,55], + [48341,53], + [1019,141], + [55127,641], + [45085,445], + [48303,1394], + [31185,80], + [20017,33], + [21147,71], + [53053,7630], + [40083,0], + [37071,918], + [47133,83], + [53069,79], + [36121,280], + [37091,56], + [21213,84], + [29137,95], + [28161,48], + [13001,92], + [12079,64], + [29019,2171], + [21121,149], + [27053,13913], + [38009,75], + [38103,42], + [19067,88], + [13223,704], + [16011,341], + [46055,14], + [18053,521], + [30085,71], + [6077,2840], + [27161,220], + [34041,748], + [1041,37], + [56041,212], + [18155,88], + [18097,6140], + [39125,229], + [21085,121], + [48345,6], + [49001,40], + [55067,103], + [12009,3262], + [8031,6050], + [13115,454], + [28109,289], + [27105,119], + [26159,370], + [40151,0], + [22101,305], + [53031,619], + [48041,1253], + [26031,175], + [16019,1037], + [41037,106], + [5015,360], + [20077,76], + [13215,483], + [39149,364], + [41043,1612], + [47171,141], + [45091,1522], + [18023,234], + [24047,351], + [13181,33], + [13063,423], + [53017,344], + [39117,371], + [13199,76], + [13101,12], + [42071,3205], + [10003,3683], + [47057,113], + [19163,1022], + [37083,107], + [19063,60], + [29047,2084], + [51005,164], + [17021,322], + [18061,417], + [42087,159], + [49049,3150], + [37175,207], + [55115,215], + [51145,208], + [13019,82], + [26141,91], + [41003,1678], + [18091,944], + [21193,153], + [12075,226], + [48263,4], + [28163,73], + [5035,229], + [13105,103], + [27097,350], + [55085,233], + [46079,142], + [54027,164], + [45017,82], + [34015,1693], + [18077,296], + [47083,48], + [40145,0], + [21211,235], + [22083,117], + [31047,153], + [54099,335], + [22033,3217], + [30029,1237], + [31083,25], + [48151,22], + [24015,888], + [51031,354], + [40015,0], + [27041,347], + [25009,4715], + [51197,230], + [34037,1083], + [31089,98], + [53071,344], + [26087,514], + [18021,227], + [13117,1201], + [13073,698], + [13029,171], + [27111,537], + [40007,0], + [1017,113], + [5091,189], + [5043,116], + [38031,42], + [48459,148], + [5033,565], + [12077,41], + [51760,1406], + [8003,196], + [38019,44], + [39047,146], + [55089,499], + [18093,421], + [21105,22], + [40137,0], + [13177,110], + [30031,1528], + [48077,50], + [55121,152], + [26147,819], + [40031,0], + [17139,129], + [48023,28], + [32027,85], + [17195,423], + [20149,320], + [37109,368], + [48255,33], + [5075,216], + [45043,275], + [27001,164], + [12059,91], + [6019,3239], + [31079,338], + [37031,329], + [36097,168], + [31113,7], + [17101,121], + [5097,115], + [12125,74], + [38093,229], + [29015,163], + [48065,33], + [37153,144], + [48485,677], + [27107,85], + [54075,88], + [16023,27], + [54059,210], + [35061,1386], + [20029,120], + [19001,61], + [36037,492], + [28005,50], + [27061,481], + [50013,62], + [18183,328], + [19131,106], + [17023,118], + [29213,433], + [34029,2338], + [50015,201], + [24023,219], + [37151,614], + [29059,165], + [5087,206], + [22115,287], + [16083,828], + [42015,383], + [29510,1864], + [18059,705], + [48487,53], + [42007,1064], + [18165,173], + [27165,104], + [51091,28], + [13277,82], + [51790,187], + [48445,46], + [48455,83], + [8105,133], + [50027,445], + [51175,91], + [13319,23], + [16047,135], + [39137,325], + [17003,49], + [21131,78], + [1035,28], + [20041,183], + [48503,99], + [1013,35], + [39017,2512], + [55029,160], + [31139,70], + [31011,48], + [42119,261], + [36023,367], + [42077,1802], + [55129,115], + [47017,151], + [51179,779], + [5029,210], + [6037,56105], + [5109,90], + [13031,301], + [27103,419], + [31043,98], + [30015,84], + [5149,210], + [39147,646], + [31097,44], + [37079,40], + [30003,76], + [42039,568], + [13179,147], + [20157,72], + [1081,779], + [53051,206], + [51660,327], + [29025,134], + [29033,78], + [24043,1258], + [17095,391], + [54005,243], + [17029,463], + [29149,116], + [22047,195], + [8039,303], + [8089,158], + [47009,858], + [30079,16], + [21201,16], + [55023,105], + [26069,182], + [50003,308], + [31065,26], + [37029,69], + [31067,212], + [29021,852], + [54093,82], + [29105,334], + [17037,943], + [28065,85], + [38047,22], + [31131,137], + [48335,22], + [54037,471], + [22111,130], + [12131,332], + [38027,32], + [37037,327], + [17187,123], + [27171,1506], + [54103,165], + [49031,11], + [36063,1461], + [48379,46], + [26049,1920], + [19025,68], + [8103,73], + [46049,31], + [36119,4116], + [20145,53], + [31121,59], + [17127,122], + [50025,381], + [22119,214], + [45013,760], + [35049,2811], + [45069,93], + [5011,69], + [56019,106], + [18039,1044], + [45035,876], + [19081,69], + [31041,97], + [17073,399], + [21097,136], + [22075,169], + [18001,262], + [21157,290], + [53019,149], + [56035,98], + [17179,1252], + [40077,0], + [37047,181], + [53023,28], + [55015,340], + [5067,180], + [48397,441], + [17055,393], + [40107,0], + [22063,1097], + [21141,141], + [48319,23], + [54079,377], + [5145,738], + [48351,68], + [40001,0], + [12001,1919], + [37159,652], + [23001,1417], + [20189,33], + [39023,998], + [6027,185], + [51047,319], + [26019,93], + [49003,293], + [40059,0], + [48405,28], + [51075,163], + [30069,9], + [21223,52], + [40047,0], + [56027,46], + [55073,739], + [35043,2406], + [31103,9], + [1123,113], + [32001,243], + [54039,1224], + [51620,25], + [22127,74], + [37141,213], + [36087,1118], + [26133,144], + [18085,624], + [22005,867], + [13097,565], + [41049,125], + [29187,505], + [29103,54], + [20085,128], + [40119,0], + [28089,342], + [13197,25], + [17107,228], + [20161,522], + [48107,16], + [46127,116], + [42085,679], + [13045,561], + [13289,25], + [55003,139], + [56009,155], + [1067,49], + [27167,70], + [51155,453], + [47051,253], + [16055,1593], + [17025,134], + [18149,205], + [40005,0], + [45025,146], + [48063,26], + [16067,141], + [12021,894], + [26143,133], + [6007,2284], + [29223,117], + [47065,3649], + [19037,74], + [42105,114], + [22009,285], + [26149,233], + [29009,307], + [47149,1587], + [40057,0], + [22121,160], + [21217,111], + [47005,118], + [30097,48], + [29045,97], + [1117,1017], + [32005,502], + [29207,217], + [48075,11], + [28071,321], + [20205,74], + [5003,194], + [37013,151], + [48203,197], + [22003,195], + [38095,34], + [17113,1528], + [21171,48], + [27149,113], + [16029,57], + [18179,233], + [18177,546], + [36029,6803], + [8049,237], + [46087,53], + [19175,70], + [22051,3408], + [32033,120], + [48149,125], + [30107,27], + [33001,319], + [31169,50], + [48381,669], + [46115,71], + [55001,83], + [33015,1889], + [18017,340], + [17169,94], + [48111,31], + [12045,99], + [31007,8], + [21103,115], + [13043,27], + [22093,127], + [49025,100], + [1029,62], + [13311,154], + [51025,71], + [29023,278], + [40073,0], + [48393,6], + [35047,353], + [42009,205], + [20151,48], + [48219,94], + [55141,531], + [21135,101], + [37163,151], + [26033,186], + [49039,148], + [36007,2051], + [20131,93], + [20047,26], + [41027,285], + [27019,847], + [45061,97], + [45049,60], + [18071,447], + [28039,121], + [42029,2783], + [21059,779], + [48415,64], + [54055,394], + [22019,1517], + [18143,179], + [47029,187], + [45005,28], + [48349,130], + [48479,435], + [30051,28], + [19055,90], + [31159,136], + [29189,6791], + [48427,71], + [51169,130], + [40149,0], + [28017,126], + [55081,247], + [44007,3726], + [4021,1764], + [42019,1123], + [46005,152], + [6051,141], + [51115,69], + [17153,50], + [29111,94], + [29195,214], + [51125,110], + [27075,144], + [1055,596], + [28151,79], + [23023,484], + [16039,261], + [37039,155], + [37019,466], + [56015,122], + [25017,13376], + [38003,129], + [51049,80], + [21233,98], + [48287,77], + [19149,184], + [51530,43], + [49017,40], + [46077,65], + [36005,1365], + [13307,4], + [22109,764], + [48007,114], + [21173,149], + [1047,53], + [30095,114], + [22053,236], + [39039,371], + [38001,37], + [56023,142], + [26077,1175], + [40075,0], + [38039,30], + [16087,98], + [18031,243], + [51680,585], + [38087,10], + [24029,157], + [24031,6781], + [38081,38], + [19083,107], + [20105,27], + [41029,2640], + [42021,1073], + [51139,137], + [21167,150], + [8025,43], + [21203,91], + [48087,11], + [48451,532], + [47001,568], + [13259,8], + [21017,142], + [29153,112], + [5095,62], + [48469,348], + [19195,57], + [55037,20], + [50001,339], + [47089,298], + [45011,76], + [54001,168], + [47047,197], + [48057,91], + [30067,269], + [37061,122], + [48237,24], + [39135,412], + [35005,606], + [34031,1391], + [47119,472], + [30081,514], + [21089,277], + [5121,209], + [20159,92], + [47153,112], + [39157,919], + [21079,106], + [5027,108], + [28073,271], + [16001,5847], + [55055,511], + [39111,196], + [28119,26], + [26059,248], + [18087,187], + [21179,248], + [26029,131], + [21139,76], + [47019,325], + [45053,95], + [39133,1482], + [19147,84], + [29167,287], + [38055,104], + [26063,156], + [19191,153], + [8097,190], + [28013,62], + [48253,79], + [17125,140], + [13183,52], + [51083,204], + [17053,121], + [21093,641], + [51580,35], + [20021,183], + [48099,217], + [36095,232], + [4025,1781], + [48093,67], + [35059,51], + [5111,196], + [38015,1029], + [49053,867], + [13007,10], + [51595,12], + [5103,161], + [48421,9], + [30007,94], + [20119,0], + [40041,0], + [35035,709], + [24009,792], + [27051,76], + [19151,86], + [1109,109], + [8059,7122], + [4003,811], + [48365,69], + [31173,17], + [6005,399], + [47125,916], + [28011,140], + [22031,145], + [46019,133], + [47097,62], + [48301,1], + [13017,44], + [32015,51], + [12029,91], + [28107,118], + [4023,173], + [40063,0], + [20193,83], + [48357,19], + [55078,6], + [17197,3820], + [48461,14], + [12101,2875], + [12117,2231], + [21145,499], + [13261,78], + [22037,164], + [47105,308], + [48197,17], + [22087,395], + [49009,19], + [54085,98], + [6087,3056], + [22029,97], + [29165,759], + [19123,150], + [6003,22], + [19177,84], + [13195,152], + [22089,500], + [19087,137], + [28133,99], + [51683,213], + [48027,1081], + [51119,78], + [13227,151], + [1023,30], + [41007,489], + [39107,345], + [50021,493], + [37101,763], + [21195,398], + [16041,80], + [17105,260], + [42109,240], + [28137,136], + [37199,141], + [47007,70], + [13065,22], + [40081,0], + [1129,41], + [48227,65], + [48273,94], + [30049,880], + [17007,381], + [44005,695], + [28001,80], + [13285,260], + [48019,152], + [53035,2750], + [53027,789], + [9001,3616], + [51131,68], + [20075,20], + [27127,183], + [21231,66], + [6013,7884], + [37145,157], + [48143,177], + [40011,0], + [17151,59], + [5021,147], + [48117,28], + [28149,140], + [5081,114], + [45065,40], + [12031,3492], + [42111,520], + [31117,12], + [55087,1378], + [46075,11], + [41011,900], + [18099,355], + [5093,305], + [1031,178], + [22123,67], + [19009,31], + [47037,4009], + [48001,136], + [49057,1636], + [22081,71], + [41045,259], + [31175,31], + [45075,295], + [1125,789], + [46021,18], + [13255,272], + [18137,257], + [20197,91], + [20155,583], + [13225,78], + [13209,34], + [55103,97], + [19011,174], + [40009,0], + [9003,4523], + [38007,16], + [55013,112], + [51730,74], + [37057,768], + [48053,270], + [20135,16], + [28075,249], + [27125,57], + [13213,228], + [48499,172], + [27087,32], + [17089,3009], + [55043,331], + [51550,1261], + [53075,481], + [26123,243], + [31179,92], + [49033,9], + [29077,2723], + [54013,68], + [47039,73], + [42129,1900], + [12111,955], + [40141,0], + [13167,27], + [36001,2611], + [18153,196], + [37171,338], + [46091,37], + [13251,39], + [26003,62], + [49035,10239], + [48331,110], + [17047,69], + [45087,161], + [48495,16], + [55021,288], + [54107,553], + [48367,562], + [5119,3144], + [48395,70], + [25023,3007], + [29127,204], + [55091,28], + [54071,70], + [39011,393], + [39013,632], + [1027,68], + [17147,204], + [29099,2070], + [47159,122], + [26007,167], + [51019,544], + [27005,296], + [8115,37], + [13211,87], + [12063,181], + [6043,291], + [47049,91], + [19113,1667], + [51097,39], + [47143,160], + [48285,64], + [38075,24], + [42047,182], + [40117,0], + [47059,487], + [48201,15161], + [30089,201], + [8065,99], + [40029,0], + [27133,75], + [39095,3521], + [4015,1183], + [31091,5], + [25005,3636], + [13085,150], + [5073,43], + [17039,164], + [28057,205], + [18161,59], + [19069,59], + [6109,692], + [55079,4424], + [18067,813], + [48213,286], + [39155,1712], + [18055,304], + [48431,4], + [51167,170], + [37125,337], + [13139,834], + [26093,773], + [35053,406], + [22007,155], + [8041,6796], + [12127,2294], + [42051,510], + [48193,42], + [51193,418], + [31005,4], + [39029,949], + [45081,101], + [48145,43], + [5089,234], + [22067,135], + [51600,179], + [26125,4720], + [48441,592], + [30011,20], + [8063,72], + [51650,787], + [37161,299], + [28145,119], + [5105,170], + [13145,145], + [56031,141], + [39019,392], + [20061,126], + [48033,6], + [48363,133], + [22097,504], + [55039,587], + [48061,688], + [26119,74], + [32019,565], + [8075,231], + [20195,25], + [29155,66], + [51678,47], + [29185,147], + [29163,162], + [21011,77], + [31105,52], + [8071,145], + [18035,1063], + [37179,889], + [46097,25], + [42073,474], + [29211,77], + [18081,1146], + [20167,51], + [51159,34], + [37023,430], + [54051,246], + [21069,91], + [1133,116], + [41013,259], + [37073,33], + [30041,252], + [31145,73], + [21039,34], + [31013,112], + [22103,2451], + [53003,243], + [46025,41], + [29083,288], + [5007,1904], + [54073,60], + [17193,143], + [41001,295], + [47121,67], + [47183,184], + [28099,88], + [13309,22], + [12047,41], + [8061,26], + [53013,43], + [51079,151], + [39173,1374], + [51085,733], + [48329,602], + [13037,7], + [39139,1112], + [13013,433], + [24013,2144], + [21031,49], + [47031,364], + [31021,47], + [34025,3096], + [18109,691], + [5085,608], + [38091,18], + [21051,96], + [12103,5326], + [29115,165], + [38023,38], + [40113,0], + [48323,89], + [41065,332], + [6113,1677], + [21115,217], + [48399,45], + [26043,145], + [29145,476], + [28155,49], + [48239,47], + [49005,847], + [17075,247], + [13207,128], + [55065,81], + [13149,60], + [18089,2427], + [48435,10], + [8009,80], + [37043,67], + [48433,8], + [28025,64], + [8083,374], + [13243,17], + [27063,103], + [31115,4], + [48309,920], + [28095,138], + [45027,128], + [46099,1567], + [48095,14], + [27071,140], + [29061,106], + [26101,182], + [48083,35], + [29085,112], + [46085,31], + [39169,974], + [36065,1402], + [46063,19], + [18029,434], + [1051,277], + [51105,150], + [19007,89], + [51149,159], + [12105,2482], + [39073,282], + [19127,231], + [13237,78], + [28045,285], + [13135,4118], + [53021,407], + [40091,0], + [17005,209], + [19137,82], + [13163,38], + [55135,247], + [13175,136], + [36123,146], + [8125,98], + [40053,0], + [48103,23], + [17121,289], + [27135,149], + [30099,86], + [33003,280], + [54053,269], + [47113,342], + [47103,175], + [29087,34], + [28063,14], + [17171,58], + [47139,95], + [46073,16], + [36105,393], + [21043,244], + [45003,939], + [46013,497], + [31075,11], + [49041,119], + [29049,241], + [23025,696], + [12027,102], + [53065,473], + [27101,90], + [45031,259], + [5129,181], + [51127,140], + [12083,1509], + [28101,61], + [21067,2950], + [21021,194], + [51045,77], + [48047,10], + [39105,286], + [28021,17], + [35013,1946], + [17141,429], + [51067,866], + [48091,747], + [4013,20165], + [30105,137], + [37003,262], + [26053,74], + [28069,24], + [24039,88], + [13071,108], + [12109,1088], + [12049,67], + [36053,556], + [54065,168], + [6097,5568], + [53073,2651], + [50011,293], + [55133,1900], + [19027,92], + [47111,93], + [48167,1471], + [35017,449], + [38035,744], + [8011,50], + [20009,185], + [39159,454], + [54033,533], + [1059,121], + [42101,4734], + [41071,1133], + [30077,81], + [27027,641], + [5113,215], + [29229,172], + [48489,48], + [17137,317], + [4001,434], + [49023,71], + [42113,47], + [37015,37], + [5051,893], + [40085,0], + [20209,884], + [48025,68], + [30061,99], + [16033,27], + [39069,313], + [31009,4], + [8019,188], + [54049,528], + [34023,3245], + [25025,4569], + [19129,116], + [17203,337], + [46057,69], + [18075,191], + [39101,562], + [36027,1937], + [8033,51], + [51021,58], + [48029,7015], + [51117,172], + [27141,875], + [19197,71], + [6035,298], + [54095,74], + [20015,564], + [37053,201], + [38017,1851], + [26153,39], + [46065,150], + [48119,40], + [48049,138], + [51143,448], + [30055,25], + [55137,129], + [56021,1003], + [13305,111], + [21137,154], + [36033,224], + [21191,119], + [28093,116], + [24003,5064], + [18181,296], + [51163,170], + [38033,23], + [26023,177], + [27089,101], + [13263,24], + [29177,277], + [51069,738], + [30057,111], + [26129,133], + [18049,184], + [40089,0], + [51735,107], + [12003,82], + [6089,1376], + [17133,323], + [35011,27], + [47129,110], + [54003,726], + [5127,112], + [31037,43], + [29179,114], + [17149,146], + [47175,39], + [13033,72], + [20199,11], + [28147,78], + [48321,112], + [36093,1229], + [21219,68], + [6091,71], + [35028,667], + [13275,139], + [48157,2179], + [18173,486], + [31001,225], + [54019,299], + [31061,36], + [18141,1611], + [31033,80], + [10005,1128], + [20057,155], + [20139,207], + [13295,365], + [39035,6084], + [27043,178], + [32009,26], + [29107,336], + [48477,145], + [48081,11], + [27031,90], + [29089,127], + [29131,269], + [29069,165], + [21001,99], + [31107,82], + [23021,245], + [25003,1273], + [12073,1666], + [48155,7], + [31129,40], + [26039,76], + [37025,867], + [16021,181], + [28031,63], + [48299,124], + [11001,3679], + [38073,63], + [46105,66], + [18123,149], + [41069,37], + [45047,351], + [30091,56], + [30013,964], + [19185,52], + [19171,117], + [13235,18], + [40095,0], + [53037,318], + [48251,663], + [53063,5314], + [39171,378], + [48463,81], + [48283,12], + [55063,869], + [53015,972], + [53033,19768], + [16065,135], + [37169,285], + [48217,159], + [18103,375], + [51520,93], + [48425,40], + [50023,608], + [36085,1339], + [17067,173], + [47053,220], + [13047,434], + [40023,0], + [51147,140], + [5083,243], + [48371,44], + [55057,144], + [21071,373], + [29093,110], + [48249,76], + [12057,5441], + [55033,386], + [21129,51], + [31015,9], + [5019,255], + [12085,583], + [31045,97], + [28157,23], + [19141,72], + [54023,84], + [37093,164], + [51087,1844], + [5071,234], + [36077,436], + [37165,90], + [13313,345], + [20093,20], + [18101,129], + [28061,50], + [27003,3673], + [47043,306], + [39009,726], + [16043,85], + [22011,285], + [30075,16], + [35006,281], + [46027,132], + [13245,583], + [48137,10], + [29159,429], + [51181,57], + [15003,3867], + [39129,395], + [29203,128], + [27123,6047], + [53061,7190], + [21045,101], + [12053,896], + [22069,239], + [47137,28], + [18007,89], + [13269,18], + [8093,248], + [37115,178], + [23009,807], + [50019,209], + [19013,789], + [26115,779], + [27049,503], + [54031,149], + [8027,59], + [48121,4103], + [53025,725], + [17041,132], + [16073,96], + [31127,58], + [48355,1336], + [19035,88], + [42089,781], + [20023,34], + [20203,9], + [13121,4529], + [6017,2229], + [19045,327], + [18019,865], + [19125,248], + [21197,95], + [20087,195], + [13127,279], + [21109,84], + [28055,6], + [31183,8], + [38067,88], + [23013,513], + [21215,156], + [8045,547], + [20081,22], + [21003,107], + [42107,896], + [13153,638], + [29029,395], + [1025,47], + [41005,4000], + [36025,362], + [48207,33], + [39103,1544], + [37185,31], + [29067,198], + [18157,1346], + [41041,712], + [13315,15], + [30059,33], + [20055,178], + [36041,48], + [17165,213], + [31135,21], + [5099,74], + [16045,222], + [53067,3070], + [42115,304], + [37085,415], + [20035,293], + [37077,207], + [26017,545], + [34027,2002], + [26103,409], + [31073,13], + [51173,206], + [48327,13], + [19189,86], + [13091,77], + [18009,103], + [54029,261], + [37111,215], + [50007,1349], + [32029,73], + [18119,222], + [48011,9], + [20169,495], + [48127,14], + [46015,56], + [20115,132], + [17119,2909], + [45019,2579], + [19017,125], + [13265,4], + [18151,289], + [47055,124], + [45051,1311], + [12023,272], + [32510,634], + [40037,0], + [27137,2608], + [47145,348], + [46137,8], + [18167,768], + [48123,47], + [31165,11], + [48221,275], + [41047,2747], + [39167,544], + [21113,387], + [13169,87], + [19059,119], + [37055,254], + [23011,1697], + [48243,31], + [25027,6404], + [48505,19], + [24041,246], + [37131,35], + [22079,781], + [29209,274], + [25011,1238], + [51685,58], + [28123,82], + [30103,22], + [20183,40], + [26035,167], + [31153,1139], + [55017,332], + [39043,638], + [19181,323], + [16049,206], + [22077,163], + [19193,540], + [6115,446], + [6059,22646], + [13239,6], + [13131,50], + [26011,103], + [46047,118], + [29171,49], + [21239,230], + [26165,170], + [29201,254], + [44001,404], + [49043,496], + [13165,15], + [19033,260], + [26091,494], + [13171,91], + [31163,40], + [12097,865], + [53045,692], + [38097,94], + [24510,3354], + [54061,804], + [17191,178], + [47179,898], + [13051,1107], + [36107,436], + [30083,131], + [50017,301], + [17161,911], + [12061,521], + [8077,1498], + [31149,12], + [54067,218], + [54089,132], + [21053,72], + [13055,137], + [28159,54], + [4011,72], + [25013,2938], + [21099,82], + [5047,183], + [6101,408], + [17065,103], + [40111,0], + [27119,256], + [36035,313], + [48135,377], + [47155,462], + [20153,29], + [45023,149], + [48139,600], + [26107,189], + [54105,68], + [28135,45], + [21073,457], + [27047,348], + [34019,694], + [5131,1099], + [30033,12], + [42079,1798], + [42061,251], + [13093,28], + [48199,191], + [19043,121], + [12099,3666], + [46093,323], + [20071,14], + [28139,129], + [27115,309], + [5005,479], + [1113,100], + [51157,53], + [21187,83], + [12041,106], + [13089,3287], + [18047,221], + [48457,75], + [47117,184], + [51029,131], + [48453,13847], + [18163,1253], + [13187,196], + [38005,49], + [20133,154], + [46043,24], + [47101,130], + [29227,43], + [26045,602], + [21123,120], + [5107,130], + [6039,684], + [26109,113], + [34039,1676], + [45045,3390], + [53057,980], + [21027,117], + [30019,30], + [19039,87], + [37191,298], + [8123,2927], + [18113,335], + [21013,131], + [4007,302], + [31023,61], + [30043,192], + [47157,3012], + [45015,1108], + [26061,234], + [18115,63], + [28097,19], + [21185,454], + [1033,283], + [1103,488], + [50005,265], + [13287,21], + [48491,4214], + [42023,26], + [1063,15], + [42091,4323], + [37087,384], + [55071,525], + [33009,732], + [48013,125], + [19117,48], + [29113,586], + [40139,0], + [31057,14], + [29109,317], + [51185,208], + [48235,8], + [39003,787], + [51810,2553], + [13147,116], + [39079,300], + [20123,54], + [21221,105], + [31087,43], + [27083,274], + [42083,260], + [21065,79], + [51199,501], + [13077,723], + [26155,431], + [55101,877], + [42033,498], + [19159,31], + [18135,202], + [26139,1124], + [38049,78], + [26161,1824], + [9011,1818], + [31167,71], + [48133,81], + [36021,570], + [26135,65], + [49013,95], + [12011,4004], + [19111,273], + [26083,32], + [1083,334], + [48015,116], + [31017,24], + [53041,622], + [46067,51], + [5101,160], + [42031,268], + [40125,0], + [26015,336], + [27095,267], + [19079,110], + [29027,416], + [46083,359], + [35007,254], + [8037,459], + [40065,0], + [48507,37], + [32013,197], + [55083,226], + [42025,482], + [8099,111], + [28121,695], + [28131,102], + [18037,366], + [19157,142], + [26027,214], + [21061,58], + [40153,0], + [41057,427], + [28019,31], + [37137,48], + [29003,200], + [45033,86], + [6073,18824], + [48161,70], + [18159,159], + [16051,183], + [54011,585], + [12065,55], + [27117,81], + [37027,474], + [12067,44], + [39121,175], + [37197,229], + [8121,47], + [17081,418], + [13297,413], + [16079,172], + [27017,381], + [42041,1616], + [29125,74], + [20107,107], + [26051,131], + [31125,29], + [13219,281], + [39053,204], + [39045,1114], + [24035,376], + [56005,362], + [51177,829], + [51023,288], + [37155,330], + [21199,313], + [51043,199], + [18125,172], + [13079,58], + [27059,432], + [1001,189], + [19085,92], + [55047,88], + [39113,4095], + [29197,68], + [8021,53], + [20005,177], + [8119,341], + [48383,9], + [48403,40], + [24037,998], + [27129,141], + [17157,343], + [21133,245], + [55077,74], + [26099,3500], + [30037,18], + [27109,1781], + [40035,0], + [33017,957], + [6047,1007], + [29011,98], + [28067,257], + [26075,724], + [13279,74], + [19003,37], + [6029,3586], + [13083,135], + [35039,477], + [22099,358], + [16009,124], + [56003,125], + [6067,9339], + [40003,0], + [1091,34], + [28059,576], + [29121,150], + [48413,9], + [38021,63], + [40101,0], + [36003,334], + [1111,96], + [19167,137], + [31049,34], + [42069,1077], + [19119,85], + [42093,125], + [48449,90], + [25021,4650], + [54035,281], + [47035,333], + [48347,250], + [13299,98], + [8087,256], + [39081,638], + [48375,399], + [46123,49], + [31171,6], + [54015,110], + [47167,267], + [47011,504], + [39131,208], + [48215,1301], + [36047,6114], + [6045,930], + [21189,18], + [22049,92], + [27121,101], + [48353,74], + [13249,14], + [5125,1229], + [46111,38], + [31071,19], + [29217,183], + [6093,551], + [27039,263], + [38013,19], + [29175,246], + [6023,2859], + [1095,399], + [30009,167], + [18005,608], + [20191,210], + [39175,238], + [42049,1494], + [13059,948], + [38065,36], + [51103,159], + [20019,42], + [40021,0], + [48277,186], + [20117,105], + [31111,371], + [24011,231], + [17111,2410], + [17019,2156], + [40143,0], + [31029,24], + [48073,161], + [46007,29], + [17033,166], + [1053,93], + [18133,305], + [39077,583], + [26081,3057], + [37089,582], + [53011,4116], + [42055,820], + [1037,27], + [54069,341], + [32011,38], + [51800,409], + [32017,61], + [1071,316], + [53059,148], + [48069,19], + [51007,73], + [37195,241], + [37149,104], + [6055,721], + [13069,144], + [38061,83], + [19031,107], + [27163,2371], + [49045,388], + [30047,357], + [55061,121], + [17143,1393], + [17115,805], + [29215,275], + [46051,79], + [17103,297], + [20063,39] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes.json b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes.json new file mode 100644 index 0000000..76fe988 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2012/us-election-presidential-2012-votes.json @@ -0,0 +1,3134 @@ +{ + "metadata" : { + "name" : "2012 Presidential Election | Total Votes", + "description" : "Total votes cast in the 2012 presidential election.", + "units" : "votes", + "year" : "2012", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "The Guardian" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2012.votes"], + [26041,18043], + [48295,1168], + [1127,28497], + [48389,2867], + [56017,2495], + [20043,3369], + [37183,526805], + [37147,76814], + [48497,20692], + [21207,7907], + [5053,6478], + [31147,3680], + [47123,16320], + [36059,460824], + [1011,5318], + [42057,6148], + [20031,3839], + [31151,4832], + [31035,2916], + [28033,64026], + [22061,18974], + [40129,1674], + [22057,38725], + [40135,13766], + [51153,179648], + [23031,107627], + [23015,20668], + [47025,10178], + [29063,4350], + [42045,272853], + [12119,60471], + [36055,308925], + [18045,7103], + [39063,34940], + [34009,47243], + [28047,61602], + [5141,6421], + [48343,5129], + [30073,2704], + [47181,5484], + [48153,2085], + [46119,816], + [19097,10166], + [28087,24674], + [17155,3132], + [45073,30613], + [36101,35659], + [37143,6621], + [28035,27789], + [31027,4260], + [13141,4076], + [39091,20535], + [39059,16403], + [48297,4108], + [47151,6668], + [30027,6044], + [35021,600], + [23027,20976], + [49007,7231], + [20053,2677], + [27113,6493], + [27159,6772], + [18131,5399], + [38041,1351], + [28003,14682], + [19143,3179], + [50009,2769], + [1015,46240], + [13253,3765], + [6105,5030], + [17181,8274], + [31055,210501], + [51670,9011], + [20095,3199], + [21209,20565], + [48467,19081], + [31177,10121], + [29199,1936], + [47027,2820], + [55111,31832], + [48045,700], + [45007,71901], + [48125,1019], + [19173,2978], + [37193,28852], + [27081,3113], + [48369,2545], + [1005,11459], + [42125,90078], + [51035,12315], + [47033,5497], + [39021,20016], + [36049,9481], + [29143,7250], + [51135,6844], + [26089,14164], + [48275,1510], + [51073,19246], + [35051,5101], + [6069,14972], + [41051,344614], + [51610,7244], + [48195,1960], + [13025,6001], + [27079,14730], + [36061,496293], + [18073,12891], + [21183,9646], + [21081,8606], + [5025,3266], + [27055,10422], + [37129,102067], + [26013,3490], + [48189,8765], + [20171,2019], + [48211,1509], + [15007,25369], + [54047,6136], + [22043,8666], + [39143,28192], + [48465,12040], + [48279,4089], + [37041,7424], + [38085,1138], + [39115,6042], + [1057,7912], + [22017,111516], + [13191,6333], + [51109,16404], + [46121,2497], + [31085,535], + [55113,9003], + [6083,147249], + [51820,8772], + [28049,97639], + [44003,77247], + [21229,5218], + [37065,26826], + [27029,4183], + [17061,5614], + [21029,31775], + [51071,7544], + [20083,1050], + [20045,46283], + [40097,14456], + [22105,50090], + [36013,48434], + [25007,10914], + [20127,2526], + [48141,171053], + [30025,1399], + [55019,13740], + [19165,6456], + [13103,20779], + [55011,7008], + [31051,2666], + [41023,3778], + [24033,352292], + [29219,14676], + [36051,24606], + [48391,2673], + [22013,7203], + [22023,3744], + [17045,7810], + [21047,21953], + [13193,4781], + [1003,84988], + [38105,9600], + [19105,10371], + [22095,21122], + [32031,186917], + [20187,713], + [18139,7026], + [29037,48913], + [38057,4394], + [55035,54595], + [29079,4374], + [47077,10051], + [35029,7472], + [47173,5820], + [48005,28403], + [46061,2416], + [48271,1425], + [39031,15555], + [40043,2070], + [6065,589721], + [30109,544], + [48325,15948], + [9005,92404], + [20039,1533], + [13015,35738], + [8051,7912], + [30045,1212], + [17099,47146], + [40103,4626], + [53001,4707], + [19109,8833], + [51001,16020], + [19075,6890], + [23005,166895], + [37099,16556], + [39119,35954], + [17177,17029], + [8053,598], + [40093,3146], + [48171,12535], + [6061,126325], + [27153,11762], + [39041,96330], + [16071,2089], + [21035,15064], + [12013,6152], + [36009,27608], + [18069,15753], + [39099,117571], + [48059,5195], + [47165,65334], + [46109,4256], + [17185,5127], + [20121,14642], + [27147,19034], + [51063,7626], + [16027,66090], + [45041,57877], + [29073,7134], + [16013,10194], + [31141,13249], + [42027,68801], + [13123,11008], + [12039,22495], + [48175,3452], + [5143,70231], + [41019,49062], + [19179,15630], + [29151,6918], + [28009,4080], + [48179,7373], + [13009,16214], + [13023,4903], + [47071,10495], + [32023,17522], + [39057,81075], + [47081,7595], + [48473,15699], + [55117,63272], + [8015,10217], + [21161,6879], + [41039,166176], + [13003,2902], + [9013,70780], + [40045,1801], + [13053,1483], + [22085,10050], + [55099,7870], + [20175,4955], + [28141,7850], + [18083,15145], + [37011,7657], + [22015,48559], + [39085,114264], + [5069,27364], + [30035,4287], + [31143,2446], + [55093,20920], + [51057,5666], + [48051,6455], + [13221,6258], + [5031,31207], + [21041,3680], + [13273,4398], + [42011,163253], + [18013,7590], + [38077,7549], + [42017,319407], + [16015,3345], + [36111,72193], + [29095,306854], + [49055,1323], + [20165,1549], + [41061,11905], + [29186,8070], + [30101,2102], + [37157,41549], + [5137,5351], + [39123,21936], + [29081,3695], + [27173,5397], + [5041,4240], + [27023,6176], + [47095,2087], + [22025,4193], + [48021,24457], + [39161,13586], + [12123,9117], + [13133,8313], + [56013,16817], + [36113,26220], + [19049,37799], + [8111,506], + [53007,30952], + [51093,20772], + [18105,40200], + [51077,7146], + [48429,3407], + [8007,6646], + [8001,161495], + [26001,6086], + [37119,445062], + [21165,2598], + [54083,9727], + [48411,2256], + [54077,11089], + [1039,15415], + [15001,62653], + [5061,4419], + [35023,1929], + [26151,18359], + [46031,1199], + [42121,20775], + [39163,5352], + [13241,7438], + [48337,7737], + [13281,6159], + [19021,8322], + [29169,13571], + [5057,6919], + [27067,21403], + [39027,17648], + [41031,7978], + [38089,11539], + [54017,2743], + [21127,5592], + [26047,17672], + [53009,35242], + [45021,20753], + [27145,78178], + [51570,8593], + [28023,7199], + [24017,70167], + [5117,3134], + [48031,4971], + [21169,4184], + [36091,97502], + [17015,7370], + [42065,17072], + [28015,5968], + [12019,96549], + [12115,207434], + [12071,266034], + [29205,3232], + [51099,11287], + [5023,11643], + [27011,2783], + [5079,3725], + [21225,5975], + [37033,10736], + [42035,12663], + [31031,3052], + [6021,9142], + [56033,14225], + [31003,3209], + [20109,1302], + [21227,43889], + [16059,4109], + [29141,8688], + [47091,6194], + [13081,7386], + [16031,8387], + [38083,808], + [17087,5666], + [9007,83447], + [12069,150796], + [35037,3696], + [48129,1533], + [5059,11239], + [1105,6065], + [47187,93606], + [32021,2035], + [47073,19789], + [18175,10725], + [51013,117279], + [37103,5192], + [8081,6042], + [51121,40938], + [48483,2128], + [20033,915], + [47109,9809], + [26071,5987], + [46011,12398], + [18171,3798], + [21057,2853], + [29031,35672], + [38043,1310], + [4012,4922], + [37007,11072], + [48205,1904], + [12095,467385], + [21091,4133], + [41035,27530], + [54057,10784], + [22113,24984], + [26113,7024], + [5037,6680], + [9015,46634], + [29075,2997], + [28091,11041], + [33011,202765], + [19145,7014], + [37135,75848], + [47067,2046], + [20011,6118], + [8085,19054], + [18107,14349], + [13011,6191], + [35025,16933], + [54041,6243], + [29065,6643], + [28115,12348], + [48071,14692], + [37059,20418], + [35001,264942], + [12035,50589], + [29123,4930], + [35041,5949], + [48231,27984], + [18095,52340], + [48361,30502], + [30039,1705], + [48035,7336], + [21111,339500], + [6001,558386], + [40105,4076], + [48169,1556], + [20185,1833], + [26025,58231], + [19051,3738], + [29157,7987], + [47177,13008], + [42003,614671], + [36073,13756], + [4027,33935], + [28111,5686], + [9009,371783], + [35045,45994], + [42127,20966], + [21177,12737], + [49037,5159], + [26037,39125], + [51590,20169], + [20067,2215], + [12087,39045], + [29035,2799], + [5001,6488], + [40069,3778], + [37107,27247], + [48209,58808], + [4005,46746], + [20143,2888], + [48437,2265], + [41063,4152], + [19091,5124], + [22091,7093], + [48185,8598], + [40051,19598], + [31095,3416], + [39127,14673], + [48233,7916], + [13099,5349], + [16057,16759], + [56045,3323], + [46053,2151], + [49029,4370], + [22021,4716], + [46017,641], + [19133,4707], + [16017,18536], + [42095,125883], + [51690,6277], + [40131,36677], + [55119,9486], + [17145,9533], + [27021,16080], + [48417,1363], + [48339,172820], + [6099,143620], + [47013,12097], + [27085,18455], + [30017,5336], + [48165,4066], + [35057,6376], + [33007,15614], + [47135,2621], + [6111,267907], + [40099,5146], + [20201,2863], + [48245,88548], + [18057,136803], + [19041,8400], + [47015,4968], + [1049,23842], + [42067,9480], + [26105,14588], + [34003,352023], + [48017,1813], + [17013,2574], + [40061,4244], + [27015,13882], + [45057,33010], + [21149,4200], + [22107,2812], + [28113,17429], + [25019,6097], + [13321,8410], + [26097,6097], + [51089,24927], + [1009,23980], + [13303,8796], + [4019,351817], + [38025,2002], + [21019,19040], + [8069,161823], + [51037,5897], + [29117,6054], + [48315,4271], + [51101,8865], + [28077,6584], + [45077,45422], + [21025,5008], + [51540,21455], + [17189,7398], + [29135,6442], + [24001,27817], + [27025,29331], + [29181,5263], + [48419,9261], + [17183,26153], + [48067,11764], + [26067,25730], + [26085,5287], + [17071,3563], + [39033,19192], + [21101,18614], + [13283,2738], + [22035,3384], + [49011,112568], + [13271,4334], + [51195,14937], + [48037,35357], + [48241,13466], + [47075,7567], + [1045,18551], + [40123,12855], + [22027,6732], + [29041,3821], + [45055,27026], + [51015,33614], + [6085,491687], + [29055,9579], + [39007,41781], + [13173,2958], + [13161,5330], + [18033,16314], + [42081,46214], + [48225,8129], + [38059,13510], + [42063,36180], + [39165,108008], + [31137,4336], + [42043,122625], + [20091,268145], + [25001,132212], + [19073,4804], + [6025,27453], + [19065,10309], + [37001,66638], + [18065,18996], + [26079,8281], + [16077,2903], + [46029,11524], + [46117,1540], + [40115,9973], + [39097,17240], + [45083,108327], + [8091,3183], + [37081,251529], + [16075,8495], + [17011,16599], + [5049,4522], + [30063,59374], + [1065,8628], + [48105,1457], + [13125,1333], + [1099,10680], + [30001,4749], + [17163,118379], + [29147,8976], + [5135,7282], + [54009,9224], + [21117,67679], + [48257,34604], + [16085,4919], + [26021,72322], + [36089,34023], + [37189,28168], + [36117,34127], + [8023,1804], + [17049,16595], + [51059,440174], + [39001,10787], + [17135,12120], + [36031,15577], + [12037,5474], + [39109,50281], + [53039,9861], + [41009,23298], + [1101,101781], + [29039,6043], + [17097,284032], + [5017,4361], + [13107,8060], + [27093,12167], + [17043,397173], + [26121,76054], + [36109,35825], + [21083,15493], + [48317,1593], + [6053,78522], + [13247,37879], + [13109,3560], + [29097,45213], + [40039,9800], + [22001,26834], + [42123,16462], + [54091,5887], + [48493,17186], + [55051,3620], + [37113,16750], + [5115,20390], + [1131,6547], + [13137,14600], + [8095,2265], + [42013,47631], + [5045,41322], + [5139,17160], + [20003,3274], + [30005,2832], + [31093,2856], + [55059,80661], + [48291,22711], + [45037,11583], + [38053,3423], + [34035,134932], + [32007,15984], + [55045,19302], + [12051,10185], + [36069,44144], + [20007,2282], + [35015,19195], + [16061,1612], + [24045,38256], + [48187,49247], + [51720,1486], + [46003,1400], + [8067,28475], + [51710,77925], + [16035,3696], + [36045,32051], + [33005,41071], + [48481,14087], + [26065,127579], + [19099,19385], + [6033,16274], + [22125,5777], + [38051,1510], + [55041,4643], + [53055,10345], + [27007,21949], + [51053,13339], + [38063,1668], + [20065,1319], + [36043,23290], + [13113,58473], + [23007,16112], + [38037,1383], + [40017,46148], + [13061,1402], + [51770,37479], + [13201,2770], + [48163,3968], + [17175,2661], + [48269,145], + [30111,68561], + [31119,13512], + [44009,60933], + [31133,1330], + [46037,2873], + [17093,45042], + [19029,7167], + [4017,35775], + [16005,35260], + [47099,15219], + [8101,73306], + [8043,20258], + [12043,3989], + [13095,37822], + [13155,3683], + [31063,1422], + [36039,18263], + [22055,98637], + [39065,12147], + [56043,3911], + [55107,7171], + [27045,10854], + [29051,37058], + [13087,10465], + [17057,15337], + [22045,33392], + [46023,3762], + [46069,733], + [13291,11072], + [17117,20947], + [21063,2399], + [35055,15188], + [46039,2171], + [19023,7510], + [37173,5705], + [48307,2993], + [40079,15830], + [28043,11320], + [48223,12742], + [21049,15410], + [42131,11214], + [20111,11614], + [47069,10435], + [54043,6747], + [13151,90469], + [20101,917], + [48173,578], + [6081,211814], + [38011,1728], + [51027,9636], + [56011,3657], + [17201,116101], + [51630,11396], + [48289,6941], + [55123,14215], + [17129,6142], + [48333,2197], + [21005,10318], + [37121,7673], + [19183,10880], + [31059,2815], + [16025,578], + [17199,29079], + [45039,11858], + [1079,14079], + [12055,42440], + [19077,5843], + [31157,13867], + [29221,8616], + [53077,62449], + [29119,7817], + [21077,3060], + [48501,2128], + [42103,23164], + [29057,3896], + [48401,18537], + [20141,1802], + [19187,18118], + [42075,53771], + [20099,7907], + [48079,916], + [24025,118417], + [12015,84664], + [13027,6671], + [29071,46573], + [41055,1019], + [6057,30864], + [47041,6406], + [26111,41808], + [34013,281633], + [21159,3824], + [19093,3626], + [39093,138513], + [45009,6854], + [47147,26285], + [47169,2901], + [29183,185597], + [54021,2482], + [37095,2358], + [47107,17818], + [21163,10915], + [20079,13805], + [55049,12515], + [36103,540653], + [51740,41860], + [46045,1936], + [16081,4523], + [13233,13580], + [39153,259389], + [53043,5804], + [51840,10254], + [53005,78874], + [13129,16857], + [27151,5087], + [19089,4625], + [19139,19726], + [49047,11116], + [18121,6504], + [4009,11854], + [21037,40173], + [8005,254746], + [37187,6456], + [55097,39186], + [29007,9951], + [27033,5848], + [51107,158648], + [51137,16330], + [31101,4026], + [8047,3271], + [21153,4905], + [39071,17161], + [55025,302845], + [51111,5726], + [53049,10477], + [27009,19521], + [42099,18240], + [5013,2174], + [20137,2296], + [40147,21199], + [23019,77171], + [39005,23826], + [27073,3974], + [8107,13038], + [29139,5317], + [54087,5027], + [5055,13754], + [27013,34039], + [40019,17120], + [20073,2706], + [17059,2569], + [42059,13726], + [28007,7853], + [51183,5421], + [55131,78558], + [27099,18471], + [1119,7025], + [1085,7519], + [48109,876], + [17063,20956], + [47023,6396], + [46071,1106], + [24005,354655], + [48439,610149], + [38071,4971], + [20113,12060], + [20089,1477], + [41067,216473], + [40049,9478], + [13189,9585], + [47021,15177], + [36067,188787], + [8014,32191], + [18025,4586], + [28041,5919], + [39089,77423], + [19019,10478], + [37181,20770], + [22065,5187], + [13185,38610], + [8013,173207], + [20163,2625], + [37021,126201], + [48177,6039], + [12081,153451], + [46081,11359], + [21181,2580], + [38029,1862], + [20125,12093], + [27035,34800], + [36071,130494], + [36081,507722], + [31181,1730], + [20173,177852], + [13301,2522], + [55007,9759], + [36079,40883], + [28153,10269], + [27091,10927], + [51036,4213], + [55069,15152], + [48097,14291], + [23029,15756], + [47163,59833], + [19061,50516], + [21155,7316], + [51191,25582], + [35009,13450], + [6049,3986], + [51033,13590], + [51141,8241], + [19161,5256], + [17131,8525], + [55005,22583], + [26127,11438], + [16063,1622], + [29053,7511], + [53047,12781], + [1107,9599], + [41017,77441], + [46035,7968], + [41033,39679], + [17035,5290], + [40067,2234], + [17123,5842], + [35031,21313], + [28127,12249], + [31039,3928], + [51640,2273], + [46095,769], + [19121,8140], + [18015,7793], + [51165,34783], + [47085,6860], + [12113,76816], + [46089,1215], + [18043,35283], + [51009,14937], + [12017,73923], + [30093,16617], + [16003,2060], + [31099,3156], + [39037,24807], + [24021,109127], + [51510,73470], + [48101,739], + [27037,230023], + [46059,1848], + [47063,20020], + [40013,12721], + [13075,6027], + [54097,8195], + [54045,11901], + [48385,1533], + [51003,53732], + [51011,7924], + [47079,12731], + [21033,5860], + [48131,4343], + [19103,74928], + [29043,37952], + [21237,2559], + [49051,9109], + [38045,2179], + [29001,10121], + [40127,4130], + [29017,5455], + [1121,33317], + [28085,14303], + [18145,16743], + [31019,19057], + [30023,4408], + [26005,49199], + [6079,117597], + [47185,9133], + [48281,7138], + [26117,25383], + [39087,25252], + [5063,12390], + [46033,4520], + [12121,17627], + [37133,50353], + [54025,12872], + [48261,166], + [1089,154632], + [22059,6572], + [13205,8273], + [5133,4328], + [55125,13782], + [48159,4255], + [41059,24623], + [51051,6878], + [8057,848], + [31155,10203], + [8079,650], + [47161,5115], + [32003,688339], + [36057,16784], + [29129,1655], + [38079,4528], + [34017,176104], + [41021,1044], + [37075,3910], + [16053,6681], + [13005,3929], + [37063,143828], + [28105,16001], + [17027,16394], + [51161,53793], + [38099,5061], + [20207,1435], + [40071,16122], + [34033,29116], + [28029,13002], + [48423,84794], + [39151,176620], + [19153,227563], + [21007,3895], + [28027,9563], + [28079,7921], + [41053,33996], + [22117,18100], + [26145,97903], + [48313,4025], + [28129,8099], + [18063,66590], + [29225,15421], + [6095,138565], + [37005,5025], + [47061,4217], + [46113,3130], + [31081,4824], + [25015,80406], + [13143,10362], + [40055,1832], + [37049,45585], + [36099,12148], + [45001,10577], + [42037,24305], + [56029,14492], + [26137,11829], + [15009,48547], + [13049,3763], + [21175,4472], + [35027,9209], + [30071,2228], + [35003,2100], + [13217,43216], + [26009,13184], + [37067,172332], + [12033,148430], + [5147,2685], + [28081,34363], + [10001,68669], + [48359,865], + [46125,4210], + [37117,12541], + [18129,12216], + [26095,2477], + [6015,7940], + [27169,27103], + [8017,1045], + [29161,18188], + [30053,8869], + [1093,12104], + [13293,11257], + [42053,2308], + [16069,16848], + [55105,80462], + [27057,11482], + [46101,3033], + [47093,167330], + [21151,33317], + [48267,1891], + [17159,7274], + [6075,321023], + [26157,26482], + [48407,9610], + [39061,402572], + [30087,3610], + [54101,2744], + [13157,23670], + [13317,4746], + [20025,1000], + [37139,17343], + [37097,75762], + [21119,5693], + [49015,4414], + [48293,7563], + [40109,256337], + [48181,42207], + [48183,41356], + [48055,11055], + [12086,877245], + [54109,7496], + [22073,68437], + [51187,16636], + [45089,16282], + [30021,4417], + [31109,123206], + [6031,30139], + [20179,1320], + [39067,6999], + [55027,44379], + [33019,21814], + [13111,10007], + [48447,813], + [17009,2362], + [48009,4163], + [39145,30023], + [26073,24119], + [26057,16011], + [48085,301101], + [18027,10246], + [35019,1978], + [21087,4856], + [47115,10404], + [1075,7159], + [1073,303424], + [13231,8099], + [12107,31323], + [35033,2604], + [37017,16351], + [5009,15363], + [56039,11356], + [1021,17434], + [20181,2606], + [48387,5074], + [48311,508], + [46135,9924], + [1007,8391], + [49027,4958], + [21205,7641], + [21125,22408], + [28125,2258], + [17167,94032], + [21235,13068], + [13035,9372], + [27065,8107], + [19053,3812], + [8035,150160], + [8109,2796], + [17069,2330], + [40133,7449], + [48377,1808], + [34011,49472], + [40121,15598], + [24027,141167], + [46009,3074], + [12089,40523], + [40027,93720], + [51017,2218], + [26163,814108], + [38069,2162], + [20129,1247], + [29091,16341], + [28083,11600], + [48475,3238], + [19135,3802], + [6103,17356], + [5039,3083], + [48089,8095], + [18003,146405], + [1043,33178], + [18127,72487], + [37127,48235], + [51081,4925], + [39015,18955], + [18169,12702], + [29005,2709], + [21009,16565], + [39025,93392], + [45063,112204], + [48259,17729], + [56037,16750], + [27069,2405], + [47003,14433], + [26055,47901], + [31053,14759], + [17079,5038], + [21075,2481], + [12129,14656], + [12133,10998], + [40087,14299], + [13067,308989], + [19071,3655], + [24019,14249], + [51095,41134], + [30065,2353], + [19057,20264], + [27157,11722], + [39051,20757], + [51133,7542], + [28037,4443], + [47189,51437], + [47045,13800], + [37105,23800], + [37123,11178], + [22041,9336], + [48229,861], + [36083,63332], + [1087,10385], + [19107,5221], + [20051,12779], + [13039,17938], + [55031,22862], + [20037,14385], + [21143,3838], + [13257,9467], + [48003,4476], + [13267,6658], + [51061,35339], + [40033,2453], + [13229,6845], + [42133,186394], + [46107,1381], + [48247,1667], + [18147,9725], + [1077,36908], + [42097,31512], + [19169,46529], + [45079,143016], + [48443,553], + [36011,26073], + [39083,27618], + [13159,6010], + [13021,64625], + [37009,12486], + [47087,4178], + [56025,32057], + [19047,6686], + [39141,28961], + [46103,44458], + [42001,41973], + [54063,5152], + [6071,531692], + [31161,2450], + [36075,41133], + [20069,1901], + [48409,20064], + [37167,28276], + [17173,10383], + [42117,15943], + [41015,11529], + [8029,15681], + [51750,5382], + [28053,4481], + [20059,10806], + [41025,3535], + [29133,4918], + [28117,10033], + [23003,33866], + [17077,21190], + [27155,1840], + [49019,3812], + [40025,1197], + [29173,5036], + [19015,14237], + [34001,102405], + [46041,1895], + [27139,71411], + [29101,21001], + [17109,12439], + [20049,1356], + [55053,9290], + [39075,11355], + [37069,28059], + [5123,8021], + [48305,1852], + [21107,19765], + [27131,32160], + [5077,3424], + [1061,11318], + [6009,18469], + [18079,10237], + [21023,3230], + [5065,5313], + [20027,3584], + [54007,4756], + [12005,79834], + [21015,52495], + [55009,128514], + [6063,9128], + [8113,4215], + [36015,31981], + [19115,4921], + [51775,12270], + [28103,6264], + [36019,27622], + [17091,45452], + [45059,25373], + [28051,8076], + [31069,1088], + [51113,6597], + [56001,16052], + [31123,2152], + [29013,7771], + [13057,98041], + [31077,1181], + [18051,14718], + [51830,7722], + [28143,4262], + [48191,1108], + [45071,16287], + [17001,30538], + [8073,2248], + [42005,28322], + [31025,11952], + [37045,42542], + [1097,174189], + [37051,126092], + [17085,11411], + [51065,12724], + [48115,3640], + [48039,106422], + [36017,17655], + [37177,1775], + [48471,15066], + [26131,3535], + [12091,94739], + [12007,11631], + [6041,99286], + [20177,74844], + [23017,28734], + [19101,8405], + [17017,4858], + [39049,541751], + [27143,7785], + [36115,21263], + [20147,2537], + [47141,25479], + [13119,7757], + [19095,8788], + [33013,80054], + [51171,19289], + [47131,12296], + [20013,3865], + [16007,2822], + [34021,139064], + [55109,46009], + [55075,20712], + [56007,6461], + [18111,5652], + [34005,197059], + [18011,27725], + [49021,13168], + [48113,705941], + [22071,157233], + [27077,2220], + [17083,9940], + [45067,14766], + [47127,2799], + [1069,41843], + [8117,15038], + [18117,7753], + [37035,69102], + [45029,17077], + [19155,41679], + [38101,25231], + [6011,5865], + [21095,10658], + [1115,35105], + [6107,72832], + [48147,10781], + [55095,22494], + [55139,88814], + [39055,50125], + [20001,5221], + [8055,3623], + [18041,8816], + [20103,28532], + [53029,41319], + [20097,1133], + [48043,3866], + [12093,12321], + [22039,15765], + [19005,6824], + [17031,1944401], + [48265,21811], + [46129,2462], + [34007,203201], + [51700,79169], + [48373,19058], + [54081,28499], + [16037,2352], + [17051,8963], + [51041,172223], + [21055,3854], + [48341,4983], + [1019,9761], + [55127,52115], + [45085,47261], + [48303,90615], + [31185,6246], + [20017,1233], + [21147,5704], + [53053,332134], + [40083,16983], + [37071,89638], + [47133,7657], + [53069,2285], + [36121,15230], + [37091,10872], + [21213,7089], + [29137,4057], + [28161,6293], + [13001,7079], + [12079,8712], + [29019,79296], + [21121,11100], + [27053,677965], + [38009,3484], + [38103,2359], + [19067,8228], + [13223,57254], + [16011,17603], + [46055,1092], + [18053,25258], + [30085,3618], + [6077,149587], + [27161,9706], + [34041,43312], + [1041,6411], + [56041,8453], + [18155,3397], + [18097,357745], + [39125,8912], + [21085,9269], + [48345,599], + [49001,2534], + [55067,10482], + [12009,285504], + [8031,285564], + [13115,32685], + [28109,19938], + [27105,8493], + [26159,32798], + [40151,3395], + [22101,23636], + [53031,18717], + [48041,55845], + [26031,13288], + [16019,43302], + [41037,3676], + [5015,10172], + [20077,2335], + [13215,70410], + [39149,23129], + [41043,49987], + [47171,7078], + [45091,99428], + [18023,9879], + [24047,24526], + [13181,4425], + [13063,96020], + [53017,14678], + [39117,15813], + [13199,9259], + [13101,1102], + [42071,219677], + [10003,251960], + [47057,7250], + [19163,89826], + [37083,25724], + [19063,4646], + [29047,105465], + [51005,7162], + [17021,14682], + [18061,17646], + [42087,16311], + [49049,161278], + [37175,16469], + [55115,20222], + [51145,15466], + [13019,6187], + [26141,7077], + [41003,44262], + [18091,43657], + [21193,10240], + [12075,18396], + [48263,404], + [28163,10853], + [5035,15513], + [13105,8139], + [27097,16662], + [55085,21577], + [46079,6285], + [54027,7972], + [45017,7830], + [34015,133568], + [18077,13120], + [47083,3027], + [40145,28621], + [21211,18659], + [22083,11507], + [31047,7680], + [54099,13923], + [22033,197912], + [30029,42465], + [31083,1584], + [48151,1628], + [24015,40037], + [51031,25632], + [40015,8811], + [27041,20917], + [25009,363246], + [51197,12336], + [34037,61704], + [31089,4749], + [53071,15155], + [26087,43025], + [18021,10922], + [13117,81598], + [13073,58842], + [13029,13403], + [27111,31562], + [40007,2300], + [1017,14562], + [5091,15329], + [5043,6626], + [38031,1674], + [48459,15049], + [5033,20562], + [12077,3284], + [51760,92175], + [8003,6671], + [38019,2054], + [39047,10677], + [55089,55565], + [18093,17822], + [21105,2139], + [40137,16846], + [13177,13607], + [30031,47113], + [48077,5056], + [55121,13456], + [26147,73740], + [40031,30174], + [17139,6052], + [48023,1592], + [32027,1884], + [17195,21492], + [20149,9303], + [37109,36532], + [48255,4180], + [5075,5537], + [45043,30870], + [27001,9109], + [12059,8274], + [6019,180244], + [31079,19721], + [37031,35124], + [36097,7464], + [31113,431], + [17101,5984], + [5097,3403], + [12125,5393], + [38093,9431], + [29015,9157], + [48065,2775], + [37153,19127], + [48485,40923], + [27107,3199], + [54075,3553], + [16023,1286], + [54059,8794], + [35061,27647], + [20029,3957], + [19001,3959], + [36037,23079], + [28005,7661], + [27061,23833], + [50013,4064], + [18183,15005], + [19131,5580], + [17023,7843], + [29213,21608], + [34029,237432], + [50015,11924], + [24023,12113], + [37151,60202], + [29059,7279], + [5087,6567], + [22115,15606], + [16083,28142], + [42015,22501], + [29510,141135], + [18059,32758], + [48487,3980], + [42007,80015], + [18165,6578], + [27165,5115], + [51091,1411], + [13277,13893], + [51790,11154], + [48445,3707], + [48455,6234], + [8105,5453], + [50027,28468], + [51175,9261], + [13319,4448], + [16047,5118], + [39137,18126], + [17003,3495], + [21131,4950], + [1035,7013], + [20041,7854], + [48503,7316], + [1013,9483], + [39017,164020], + [55029,17607], + [31139,3414], + [31011,2799], + [42119,16187], + [36023,17698], + [42077,144922], + [55129,9242], + [47017,10845], + [51179,60338], + [5029,7724], + [6037,2427869], + [5109,3787], + [13031,24032], + [27103,18285], + [31043,5977], + [30015,2804], + [5149,5971], + [39147,24633], + [31097,2057], + [37079,8194], + [30003,4561], + [42039,33089], + [13179,16132], + [20157,2640], + [1081,54115], + [53051,6649], + [51660,15541], + [29025,4171], + [29033,4304], + [24043,58653], + [17095,22517], + [54005,8434], + [17029,21338], + [29149,4421], + [22047,17014], + [8039,13993], + [8089,8039], + [47009,49200], + [30079,701], + [21201,935], + [55023,7791], + [26069,13330], + [50003,17512], + [31065,2215], + [37029,4520], + [31067,9552], + [29021,35106], + [54093,3118], + [29105,15361], + [17037,41020], + [28065,6618], + [38047,1042], + [31131,6905], + [48335,2312], + [54037,21776], + [22111,10766], + [12131,28480], + [38027,1147], + [37037,35157], + [17187,7476], + [27171,69550], + [54103,5808], + [49031,781], + [36063,82720], + [48379,4065], + [26049,202699], + [19025,5190], + [8103,3311], + [46049,1127], + [36119,284731], + [20145,2565], + [31121,3457], + [17127,6492], + [50025,21805], + [22119,18413], + [45013,73115], + [35049,67624], + [45069,11657], + [5011,3634], + [56019,4217], + [18039,67768], + [45035,56735], + [19081,5881], + [31041,5414], + [17073,24279], + [21097,7163], + [22075,10235], + [18001,12998], + [21157,15714], + [53019,3391], + [56035,4337], + [17179,60903], + [40077,3789], + [37047,24017], + [53023,1275], + [55015,26336], + [5067,5338], + [48397,35651], + [17055,17891], + [40107,3579], + [22063,54033], + [21141,10509], + [48319,1965], + [54079,23501], + [5145,26508], + [48351,6188], + [40001,6472], + [12001,120318], + [37159,61803], + [23001,52539], + [20189,1998], + [39023,62136], + [6027,6501], + [51047,20131], + [26019,9847], + [49003,18092], + [40059,1434], + [48405,3690], + [51075,13287], + [30069,298], + [21223,3540], + [40047,19908], + [56027,1268], + [55073,69637], + [35043,53361], + [31103,481], + [1123,18668], + [32001,10265], + [54039,74451], + [51620,4351], + [22127,6532], + [37141,24036], + [36087,114500], + [26133,10265], + [18085,30039], + [22005,51056], + [13097,55201], + [41049,3838], + [29187,22590], + [29103,1957], + [20085,5474], + [40119,25660], + [28089,49571], + [13197,3167], + [17107,12037], + [20161,20266], + [48107,1787], + [46127,7596], + [42085,48065], + [13045,41445], + [13289,4199], + [55003,8342], + [56009,6287], + [1067,8700], + [27167,3212], + [51155,14657], + [47051,16099], + [16055,59764], + [17025,5899], + [18149,8752], + [40005,4775], + [45025,16576], + [48063,4332], + [16067,6973], + [12021,149080], + [26143,13032], + [6007,70163], + [29223,5718], + [47065,142320], + [19037,6462], + [42105,7205], + [22009,17027], + [26149,23314], + [29009,13806], + [47149,98816], + [40057,923], + [22121,12772], + [21217,10946], + [47005,6223], + [30097,2105], + [29045,3225], + [1117,92204], + [32005,26054], + [29207,12866], + [48075,1996], + [28071,17191], + [20205,3699], + [5003,7915], + [37013,23468], + [48203,26099], + [22003,9306], + [38095,1164], + [17113,72756], + [21171,4746], + [27149,5621], + [16029,3050], + [18179,12922], + [18177,25458], + [36029,386665], + [8049,7961], + [46087,2613], + [19175,5899], + [22051,175733], + [32033,3704], + [48149,10534], + [30107,989], + [33001,33771], + [31169,2627], + [48381,49588], + [46115,3041], + [55001,10263], + [33015,169794], + [18017,14137], + [17169,3882], + [48111,1532], + [12045,7107], + [31007,402], + [21103,6584], + [13043,3526], + [22093,12391], + [49025,3281], + [1029,6302], + [13311,10471], + [51025,8029], + [29023,16889], + [40073,5354], + [48393,439], + [35047,11388], + [42009,21444], + [20151,3752], + [48219,7119], + [55141,38762], + [21135,4769], + [37163,26005], + [26033,15564], + [49039,8804], + [36007,75244], + [20131,4959], + [20047,1365], + [41027,9662], + [27019,52747], + [45061,8898], + [45049,9184], + [18071,16704], + [28039,9826], + [42029,248295], + [21059,42079], + [48415,5022], + [54055,21216], + [22019,81718], + [18143,8716], + [47029,11450], + [45005,4257], + [48349,15316], + [48479,49101], + [30051,983], + [19055,9323], + [31159,7445], + [29189,524628], + [48427,11859], + [51169,9964], + [40149,4303], + [28017,7641], + [55081,19389], + [44007,234092], + [4021,102139], + [42019,88924], + [46005,7263], + [6051,4917], + [51115,5364], + [17153,3001], + [29111,4278], + [29195,9095], + [51125,8225], + [27075,6797], + [1055,42490], + [28151,17137], + [23023,20734], + [16039,8001], + [37039,12695], + [37019,56985], + [56015,5758], + [25017,746856], + [38003,5471], + [51049,5040], + [21233,5470], + [48287,6211], + [19149,12909], + [51530,2526], + [49017,2157], + [46077,2608], + [36005,316047], + [13307,1175], + [22109,42335], + [48007,9646], + [21173,10248], + [1047,20936], + [30095,4560], + [22053,13733], + [39039,17744], + [38001,1281], + [56023,8573], + [26077,122880], + [40075,3410], + [38039,1335], + [16087,4330], + [18031,10303], + [51680,36242], + [38087,434], + [24029,9143], + [24031,404214], + [38081,1987], + [19083,8775], + [20105,1459], + [41029,91955], + [42021,57718], + [51139,10205], + [21167,9936], + [8025,1502], + [21203,6216], + [48087,1150], + [48451,36527], + [47001,29621], + [13259,2055], + [21017,7909], + [29153,4453], + [5095,3230], + [48469,28827], + [19195,4143], + [55037,2615], + [50001,17843], + [47089,17565], + [45011,9913], + [54001,5733], + [47047,19562], + [48057,6746], + [30067,8634], + [37061,20375], + [48237,2907], + [39135,19619], + [35005,20498], + [34031,164629], + [47119,32989], + [30081,19797], + [21089,15159], + [5121,5948], + [20159,3622], + [47153,5141], + [39157,39855], + [21079,7077], + [5027,9455], + [28073,22780], + [16001,180361], + [55055,44136], + [39111,6743], + [28119,3979], + [26059,19081], + [18087,9311], + [21179,18532], + [26029,14064], + [21139,4511], + [47019,20607], + [45053,9991], + [39133,74029], + [19147,4857], + [29167,13119], + [38055,4894], + [26063,15274], + [19191,11016], + [8097,9779], + [28013,6273], + [48253,5562], + [17125,6272], + [13183,3786], + [51083,16663], + [17053,6000], + [21093,39212], + [51580,2329], + [20021,8396], + [48099,16551], + [36095,11943], + [4025,96790], + [48093,4897], + [35059,1753], + [5111,7550], + [38015,42876], + [49053,49733], + [13007,1584], + [51595,2691], + [5103,10303], + [48421,1038], + [30007,3005], + [20119,1648], + [40041,14232], + [35035,19643], + [24009,42168], + [27051,3471], + [19151,3992], + [1109,14057], + [8059,300151], + [4003,43776], + [48365,10221], + [31173,1993], + [6005,15303], + [47125,55424], + [28011,14258], + [22031,13050], + [46019,4201], + [47097,8688], + [48301,64], + [13017,5947], + [32015,2165], + [12029,6941], + [28107,16826], + [4023,13894], + [40063,4206], + [20193,3388], + [48357,2990], + [55078,1376], + [17197,249708], + [48461,1298], + [12101,213358], + [12117,208605], + [21145,30540], + [13261,11820], + [22037,10209], + [47105,22066], + [48197,1495], + [22087,13944], + [49009,509], + [54085,3749], + [6087,81294], + [22029,9380], + [29165,45547], + [19123,10777], + [6003,647], + [19177,3540], + [13195,11079], + [22089,25330], + [19087,9613], + [28133,10995], + [51683,15154], + [48027,85765], + [51119,6067], + [13227,12673], + [1023,7965], + [41007,17206], + [39107,21161], + [50021,28414], + [37101,76021], + [21195,23632], + [16041,5600], + [17105,15019], + [42109,14962], + [28137,11374], + [37199,9344], + [47007,4359], + [13065,2472], + [40081,12807], + [1129,8761], + [48227,5139], + [48273,8902], + [30049,33032], + [17007,21333], + [44005,40545], + [28001,13621], + [13285,25975], + [48019,9434], + [53035,109919], + [53027,28224], + [9001,390611], + [51131,6481], + [20075,857], + [27127,7761], + [21231,7210], + [6013,351257], + [37145,19008], + [48143,12467], + [40011,3815], + [17151,2219], + [5021,5110], + [48117,4309], + [28149,19429], + [5081,5051], + [45065,5137], + [12031,411702], + [42111,33875], + [31117,290], + [55087,94237], + [46075,609], + [41011,27926], + [18099,17751], + [5093,13349], + [1031,19715], + [22123,4548], + [19009,3439], + [47037,237372], + [48001,16167], + [49057,68143], + [22081,4807], + [41045,9711], + [31175,2168], + [45075,42637], + [1125,78495], + [46021,787], + [13255,25057], + [18137,10982], + [20197,3229], + [20155,23869], + [13225,11499], + [13209,3831], + [55103,8636], + [19011,13959], + [40009,6909], + [9003,392485], + [38007,577], + [55013,8634], + [51730,15977], + [37057,69994], + [48053,16770], + [20135,1417], + [28075,30213], + [27125,1963], + [13213,11209], + [48499,17541], + [27087,2179], + [17089,183631], + [55043,24160], + [51550,110105], + [53075,14851], + [26123,21424], + [31179,3659], + [49033,999], + [29077,125639], + [54013,2157], + [47039,4248], + [42129,168709], + [12111,123026], + [40141,2719], + [13167,3772], + [36001,125531], + [18153,8289], + [37171,29096], + [46091,1987], + [13251,6093], + [26003,4603], + [49035,341664], + [48331,8220], + [17047,3225], + [45087,12475], + [48495,1745], + [55021,30460], + [54107,33600], + [48367,47346], + [5119,159055], + [48395,7278], + [25023,253993], + [29127,12164], + [55091,3696], + [54071,3224], + [39011,22838], + [39013,30876], + [1027,6640], + [17147,8697], + [29099,97613], + [47159,7081], + [26007,14014], + [51019,40750], + [27005,16329], + [8115,1337], + [13211,9016], + [12063,20940], + [6043,7805], + [47049,6890], + [19113,117122], + [51097,3645], + [47143,10578], + [48285,8279], + [38075,1272], + [42047,12425], + [40117,6041], + [47059,23937], + [48201,1185478], + [30089,5888], + [8065,2993], + [40029,2357], + [27133,4830], + [39095,200850], + [4015,65949], + [31091,394], + [25005,239565], + [13085,10234], + [5073,2928], + [17039,7338], + [28057,8729], + [18161,3099], + [19069,5133], + [6109,23730], + [55079,490944], + [18067,36194], + [48213,27582], + [39155,98703], + [18055,13101], + [48431,494], + [51167,12063], + [37125,46044], + [13139,59241], + [26093,97959], + [35053,7087], + [22007,10991], + [8041,275604], + [12127,234483], + [42051,48196], + [48193,3551], + [51193,8689], + [31005,261], + [39029,45078], + [45081,8553], + [48145,5432], + [5089,7029], + [22067,12613], + [51600,11577], + [26125,650306], + [48441,43170], + [30011,794], + [8063,3525], + [51650,71713], + [37161,28373], + [28145,10359], + [5105,3937], + [13145,15479], + [56031,4500], + [39019,12965], + [20061,7526], + [48033,362], + [48363,9335], + [22097,41647], + [55039,53272], + [48061,74802], + [26119,5051], + [32019,21465], + [8075,9030], + [20195,1544], + [29155,6333], + [51678,2677], + [29185,4626], + [29163,7319], + [21011,4122], + [31105,1665], + [8071,6532], + [18035,44924], + [37179,93389], + [46097,1140], + [42073,38816], + [29211,2595], + [18081,57362], + [20167,3140], + [51159,3768], + [37023,36116], + [54051,9849], + [21069,5782], + [1133,9712], + [41013,10109], + [37073,5310], + [30041,6757], + [31145,4868], + [21039,2619], + [31013,4541], + [22103,112884], + [53003,9883], + [46025,1821], + [29083,10121], + [5007,77525], + [54073,2807], + [17193,7059], + [41001,8351], + [47121,3958], + [47183,12332], + [28099,10890], + [13309,2160], + [12047,5404], + [8061,821], + [53013,2222], + [51079,8993], + [39173,61967], + [51085,58936], + [48329,44277], + [13037,2187], + [39139,55954], + [13013,25171], + [24013,82171], + [21031,5058], + [47031,19242], + [31021,3343], + [34025,268943], + [18109,28251], + [5085,24083], + [38091,1028], + [21051,7383], + [12103,457484], + [29115,5527], + [38023,1151], + [40113,17913], + [48323,10562], + [41065,10550], + [6113,59613], + [21115,9035], + [48399,3665], + [26043,12785], + [29145,25080], + [28155,4820], + [48239,5018], + [49005,37099], + [17075,12770], + [13207,12259], + [55065,7928], + [13149,4162], + [18089,201648], + [48435,1489], + [8009,2096], + [37043,5592], + [48433,675], + [28025,9659], + [8083,12232], + [13243,3015], + [27063,5415], + [31115,356], + [48309,74493], + [28095,16789], + [45027,15985], + [46099,76565], + [48095,1001], + [27071,6432], + [29061,3512], + [26101,12385], + [48083,3483], + [29085,4680], + [46085,1569], + [39169,49356], + [36065,80429], + [46063,739], + [18029,22352], + [1051,35440], + [51105,9588], + [19007,6176], + [51149,17180], + [12105,248658], + [39073,12442], + [19127,18727], + [13237,9205], + [28045,17023], + [13135,295560], + [53021,18940], + [40091,7265], + [17005,7316], + [19137,5000], + [13163,7268], + [55135,25801], + [13175,19591], + [36123,8437], + [8125,4481], + [40053,2067], + [48103,1283], + [17121,15728], + [27135,7330], + [30099,3250], + [33003,28464], + [54053,9713], + [47113,40691], + [47103,13249], + [29087,2310], + [28063,3953], + [17171,2554], + [47139,6059], + [46073,1006], + [36105,25322], + [21043,8906], + [45003,66049], + [46013,16066], + [31075,363], + [49041,7781], + [29049,9830], + [23025,24705], + [12027,9863], + [53065,17281], + [27101,4754], + [45031,30140], + [5129,3694], + [51127,10941], + [12083,161368], + [28101,9039], + [21067,125821], + [21021,12368], + [51045,2664], + [48047,2403], + [39105,9979], + [28021,5258], + [35013,65712], + [17141,23342], + [51067,26633], + [48091,51475], + [4013,1187008], + [30105,3860], + [37003,17060], + [26053,7576], + [28069,5052], + [24039,9272], + [13071,13319], + [12109,114733], + [12049,7222], + [36053,25865], + [54065,7037], + [6097,175738], + [53073,91158], + [50011,19755], + [55133,241084], + [19027,10581], + [47111,6904], + [48167,109227], + [35017,12744], + [38035,29796], + [8011,1881], + [20009,12010], + [39159,24947], + [54033,25948], + [1059,10859], + [42101,653598], + [41071,41750], + [30077,2763], + [27027,28771], + [5113,7721], + [29229,7956], + [48489,5058], + [17137,14071], + [4001,25465], + [49023,3907], + [42113,2934], + [37015,9941], + [5051,39241], + [40085,3470], + [20209,49422], + [48025,7873], + [30061,2009], + [16033,328], + [39069,13937], + [31009,301], + [8019,5610], + [54049,21414], + [34023,285232], + [25025,282649], + [19129,7169], + [17203,18848], + [46057,2793], + [18075,7897], + [39101,26433], + [36027,114142], + [8033,1218], + [51021,2937], + [48029,511405], + [51117,14813], + [27141,46320], + [19197,6174], + [6035,10603], + [54095,3245], + [20015,25452], + [37053,11153], + [38017,73275], + [26153,4046], + [46065,8155], + [48119,2018], + [48049,13936], + [51143,30578], + [30055,988], + [55137,12017], + [56021,38057], + [13305,10258], + [21137,9152], + [36033,14537], + [21191,5534], + [28093,16141], + [24003,239189], + [18181,9901], + [51163,10155], + [38033,924], + [26023,16278], + [27089,4335], + [13263,3490], + [29177,10346], + [51069,36272], + [30057,4511], + [26129,10361], + [18049,8120], + [40089,10073], + [51735,7098], + [12003,11366], + [6089,54121], + [17133,17407], + [35011,900], + [47129,6500], + [54003,36804], + [5127,3637], + [31037,3047], + [29179,3196], + [17149,7275], + [47175,2298], + [13033,9773], + [20199,781], + [28147,7476], + [48321,12110], + [36093,59614], + [21219,4718], + [6091,1779], + [35028,10654], + [13275,18943], + [48157,219250], + [18173,24627], + [31001,12451], + [54019,13971], + [31061,1527], + [18141,110644], + [31033,4197], + [10005,93215], + [20057,8082], + [20139,6771], + [13295,21879], + [39035,611512], + [27043,7689], + [32009,435], + [29107,15786], + [48477,14373], + [48081,1406], + [27031,3304], + [29089,4861], + [29131,11019], + [29069,10649], + [21001,7600], + [31107,4015], + [23021,8990], + [25003,64078], + [12073,148335], + [48155,493], + [31129,2170], + [26039,6814], + [37025,82445], + [16021,4544], + [28031,9145], + [48299,9502], + [11001,243348], + [38073,2412], + [46105,1590], + [18123,7866], + [41069,841], + [45047,28525], + [30091,1920], + [30013,33952], + [19185,2886], + [19171,8930], + [13235,3681], + [40095,5140], + [53037,15152], + [48251,48753], + [53063,202088], + [39171,17286], + [48463,8431], + [48283,1646], + [55063,63212], + [53015,40976], + [53033,871654], + [16065,14412], + [37169,21396], + [48217,12032], + [18103,12758], + [51520,7356], + [48425,3507], + [50023,29049], + [36085,135283], + [17067,8229], + [47053,19667], + [13047,23639], + [40023,5066], + [51147,9224], + [5083,7330], + [48371,4147], + [55057,11781], + [21071,14890], + [29093,4031], + [48249,11163], + [12057,541503], + [55033,21899], + [21129,2623], + [31015,1047], + [5019,8406], + [12085,78860], + [31045,3634], + [28157,4238], + [19141,7295], + [54023,4572], + [37093,16800], + [51087,161195], + [5071,8064], + [36077,21938], + [37165,14020], + [13313,26828], + [20093,1341], + [18101,4742], + [28061,9340], + [27003,185714], + [47043,17821], + [39009,26112], + [16043,5802], + [22011,14223], + [30075,1019], + [35006,8154], + [46027,5233], + [13245,78865], + [48137,883], + [29159,17171], + [51181,4302], + [15003,292925], + [39129,23443], + [29203,3688], + [27123,277782], + [53061,298759], + [21045,6091], + [12053,83593], + [22069,17257], + [47137,2446], + [18007,3577], + [13269,3537], + [8093,9054], + [37115,10023], + [23009,30738], + [50019,11631], + [19013,66205], + [26115,72682], + [27049,25701], + [54031,5149], + [8027,2697], + [48121,240125], + [53025,27041], + [17041,7889], + [16073,3723], + [31127,3126], + [48355,95781], + [19035,6367], + [42089,59312], + [20023,1422], + [20203,987], + [13121,386845], + [6017,85923], + [19045,24873], + [18019,47062], + [19125,17536], + [21197,4441], + [20087,7725], + [13127,33054], + [21109,5061], + [28055,787], + [31183,446], + [38067,3226], + [23013,22002], + [21215,8431], + [8045,23695], + [20081,1355], + [21003,7099], + [42107,57505], + [13153,57912], + [29029,21942], + [1025,13827], + [41005,185564], + [36025,16916], + [48207,2006], + [39103,88849], + [37185,9777], + [29067,6556], + [18157,56696], + [41041,22612], + [13315,3124], + [30059,972], + [20055,7593], + [36041,2655], + [17165,10713], + [31135,1391], + [5099,3384], + [16045,7490], + [53067,111652], + [42115,17930], + [37085,42343], + [20035,12444], + [37077,26068], + [26017,51077], + [34027,206580], + [26103,32144], + [31073,975], + [51173,12751], + [48327,846], + [19189,5878], + [13091,7731], + [18009,4740], + [54029,11991], + [37111,17953], + [50007,76531], + [32029,2314], + [18119,8107], + [48011,935], + [20169,21102], + [48127,2917], + [46015,2379], + [20115,5368], + [17119,122203], + [45019,160854], + [19017,13218], + [13265,961], + [18151,13677], + [47055,10797], + [45051,104584], + [12023,27163], + [32510,23318], + [40037,26078], + [27137,116460], + [47145,21081], + [46137,761], + [18167,39843], + [48123,6624], + [31165,735], + [48221,22445], + [41047,115519], + [39167,28798], + [21113,20620], + [13169,12099], + [19059,10118], + [37055,17614], + [23011,63225], + [48243,1188], + [25027,364093], + [48505,3529], + [24041,18671], + [37131,10719], + [22079,58008], + [29209,15974], + [25011,37600], + [51685,4627], + [28123,10584], + [30103,453], + [20183,1983], + [26035,13492], + [31153,66166], + [55017,30914], + [39043,38262], + [19181,25875], + [16049,7749], + [22077,12147], + [19193,44702], + [6115,15009], + [6059,1021315], + [13239,1128], + [13131,9391], + [26011,7826], + [46047,3511], + [29171,2309], + [21239,12331], + [26165,13859], + [29201,16999], + [44001,24563], + [49043,16616], + [13165,3386], + [19033,23548], + [26091,44619], + [13171,7589], + [31163,1508], + [12097,108647], + [53045,27897], + [38097,3841], + [24510,229897], + [54061,31140], + [17191,7676], + [47179,48003], + [13051,108267], + [36107,19977], + [30083,4602], + [50017,13964], + [17161,64880], + [12061,71445], + [8077,69033], + [31149,784], + [54067,8676], + [54089,4712], + [21053,4393], + [13055,7791], + [28159,9758], + [4011,2972], + [25013,197827], + [21099,6621], + [5047,6539], + [6101,20988], + [17065,3935], + [40111,13128], + [27119,14644], + [36035,18040], + [48135,32408], + [47155,33856], + [20153,1420], + [45023,14324], + [48139,53756], + [26107,16879], + [54105,2163], + [28135,6363], + [21073,23337], + [27047,16645], + [34019,62821], + [5131,43340], + [30033,700], + [42079,123741], + [42061,17587], + [13093,4289], + [48199,21293], + [19043,9035], + [12099,600341], + [46093,10811], + [20071,665], + [28139,9008], + [27115,13904], + [5005,19339], + [1113,18871], + [51157,4331], + [21187,4555], + [12041,7908], + [13089,305299], + [18047,10549], + [48457,7623], + [47117,10729], + [51029,7447], + [48453,384890], + [18163,72416], + [13187,10878], + [38005,2148], + [20133,6359], + [46043,1690], + [47101,4691], + [29227,1048], + [26045,54707], + [21123,5764], + [5107,7900], + [6039,32372], + [26109,10922], + [34039,202353], + [45045,191282], + [53057,42273], + [21027,7967], + [30019,1001], + [19039,4398], + [37191,50988], + [8123,112695], + [18113,16244], + [21013,9482], + [4007,18477], + [31023,3818], + [30043,6490], + [47157,370749], + [45015,61111], + [26061,14804], + [18115,2812], + [28097,4807], + [21185,29873], + [1033,23374], + [1103,49198], + [50005,13545], + [13287,3556], + [48491,162936], + [42023,1967], + [1063,5328], + [42091,401787], + [37087,27679], + [55071,42488], + [33009,48765], + [48013,12704], + [19117,4273], + [29113,22649], + [40139,5762], + [31057,981], + [29109,15748], + [51185,17712], + [48235,788], + [39003,46458], + [51810,195823], + [13147,9501], + [39079,12916], + [20123,2923], + [21221,6740], + [31087,1739], + [27083,12334], + [42083,15014], + [21065,5184], + [51199,33848], + [13077,55512], + [26155,33590], + [55101,102937], + [42033,31894], + [19159,2578], + [18135,10188], + [26139,132695], + [38049,2653], + [26161,179016], + [9011,114043], + [31167,2623], + [48133,6494], + [36021,26008], + [26135,4027], + [49013,6273], + [12011,755166], + [19111,16488], + [26083,1388], + [1083,35406], + [48015,11628], + [31017,1545], + [53041,26348], + [46067,3425], + [5101,3661], + [42031,15227], + [40125,23422], + [26015,28483], + [27095,13047], + [19079,7872], + [29027,18228], + [46083,21952], + [35007,5896], + [8037,22374], + [40065,7915], + [48507,3653], + [32013,5744], + [55083,19727], + [42025,24232], + [8099,4809], + [28121,61438], + [28131,6820], + [18037,18542], + [19157,9858], + [26027,22461], + [21061,4664], + [40153,7065], + [41057,12346], + [28019,3847], + [37137,6712], + [29003,8306], + [45033,13186], + [6073,928256], + [48161,7562], + [18159,7364], + [16051,11381], + [54011,31744], + [12065,7808], + [27117,4637], + [37027,34338], + [12067,3399], + [39121,5755], + [37197,16657], + [8121,2567], + [17081,16303], + [13297,37570], + [16079,5148], + [27017,18356], + [42041,109964], + [29125,4538], + [20107,4294], + [26051,12552], + [31125,1604], + [13219,16643], + [39053,9534], + [39045,70079], + [24035,23153], + [56005,17477], + [51177,57797], + [51023,18208], + [37155,41380], + [21199,26003], + [51043,7731], + [18125,5924], + [13079,5123], + [27059,20131], + [1001,23909], + [19085,7282], + [55047,9657], + [39113,254266], + [29197,1939], + [8021,4027], + [20005,6499], + [8119,12144], + [48383,843], + [48403,4572], + [24037,44076], + [27129,7684], + [17157,14380], + [21133,8758], + [55077,7944], + [26099,403388], + [30037,479], + [27109,77951], + [40035,5298], + [33017,63762], + [6047,50538], + [29011,5746], + [28067,30038], + [26075,69323], + [13279,9333], + [19003,2158], + [6029,168116], + [13083,5997], + [35039,15239], + [22099,25430], + [16009,3884], + [56003,5262], + [6067,388090], + [40003,1817], + [1091,11509], + [28059,49290], + [29121,7159], + [48413,1010], + [38021,2513], + [40101,23335], + [36003,15601], + [1111,10391], + [19167,17181], + [31049,1012], + [42069,97116], + [19119,6466], + [42093,7787], + [48449,8790], + [25021,350195], + [54035,11465], + [47035,25244], + [48347,20601], + [13299,11923], + [8087,10478], + [39081,32327], + [48375,26418], + [46123,2691], + [31171,408], + [54015,2989], + [47167,23682], + [47011,35956], + [39131,11233], + [48215,138966], + [36047,618035], + [6045,17928], + [21189,1580], + [22049,7529], + [27121,6224], + [48353,4567], + [13249,1748], + [5125,47059], + [46111,1115], + [31071,928], + [29217,8519], + [6093,17505], + [27039,10272], + [38013,1015], + [29175,9944], + [6023,46269], + [1095,32455], + [30009,5806], + [18005,29313], + [20191,8989], + [39175,10254], + [42049,112732], + [13059,40138], + [38065,1010], + [51103,7052], + [20019,1502], + [40021,14288], + [48277,17173], + [20117,4679], + [31111,15266], + [24011,12526], + [17111,133589], + [17019,77620], + [40143,227541], + [31029,1849], + [48073,16387], + [46007,1203], + [17033,8598], + [1053,14832], + [18133,13813], + [39077,24077], + [26081,295418], + [37089,51961], + [53011,181567], + [42055,62802], + [1037,5243], + [54069,17541], + [32011,808], + [51800,42381], + [32017,2152], + [1071,20555], + [53059,5326], + [48069,2119], + [51007,6885], + [37195,38890], + [37149,10323], + [6055,32332], + [13069,14434], + [38061,3444], + [19031,9548], + [27163,141711], + [49045,16422], + [30047,13156], + [55061,11018], + [17143,78060], + [17115,48742], + [29215,10764], + [46051,3606], + [17103,15275], + [20063,1368] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-swing.json b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-swing.json new file mode 100644 index 0000000..fbab6da --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-swing.json @@ -0,0 +1,3163 @@ +{ + "metadata" : { + "name" : "2016 Presidential Election | Swing", + "description" : "Democrat/Republican swing (-dem/gop+) in the 2016 presidential election.", + "units" : "-dem/gop+", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Townhall.com" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.elections.presidential.2016.swing"], + [2013,0.167445482866044], + [2016,0.167445482866044], + [2020,0.167445482866044], + [2050,0.167445482866044], + [2060,0.167445482866044], + [2068,0.167445482866044], + [2070,0.167445482866044], + [2090,0.167445482866044], + [2100,0.167445482866044], + [2105,0.167445482866044], + [2110,0.167445482866044], + [2122,0.167445482866044], + [2130,0.167445482866044], + [2150,0.167445482866044], + [2164,0.167445482866044], + [2170,0.167445482866044], + [2180,0.167445482866044], + [2185,0.167445482866044], + [2188,0.167445482866044], + [2195,0.167445482866044], + [2198,0.167445482866044], + [2220,0.167445482866044], + [2230,0.167445482866044], + [2240,0.167445482866044], + [2261,0.167445482866044], + [2270,0.167445482866044], + [2275,0.167445482866044], + [2282,0.167445482866044], + [2290,0.167445482866044], + [1001,0.508035639936714], + [1003,0.596245161148823], + [1005,0.0567175795310828], + [1007,0.564540490298594], + [1009,0.827710553730267], + [1011,-0.512101092310987], + [1013,0.136516788660393], + [1015,0.426217391304348], + [1017,0.150375939849624], + [1019,0.705022742669119], + [1021,0.676364243199644], + [1023,0.137706282069061], + [1025,0.108961859449341], + [1027,0.618193069306931], + [1029,0.78698224852071], + [1031,0.580998051850742], + [1033,0.392354459898393], + [1035,0.0530700401110769], + [1037,0.309542280837859], + [1039,0.695019550028844], + [1041,0.461289277615808], + [1043,0.79541465555068], + [1045,0.515764033834999], + [1047,-0.378398710370768], + [1049,0.710773339617454], + [1051,0.532048259603384], + [1053,0.372763684913218], + [1055,0.512734805329316], + [1057,0.663152672702468], + [1059,0.623253022378462], + [1061,0.735050918269649], + [1063,-0.654004954582989], + [1065,-0.201409869083585], + [1067,0.421924389935517], + [1069,0.486938755655008], + [1071,0.639219934994583], + [1073,-0.0742996863870727], + [1075,0.697986577181208], + [1077,0.474795278102733], + [1079,0.496479118733877], + [1081,0.241086280465755], + [1083,0.510533487055864], + [1085,-0.472033770541233], + [1087,-0.676978333912641], + [1089,0.176503950301384], + [1091,-0.0353614624688394], + [1093,0.774576938213302], + [1095,0.71210079109288], + [1097,0.142042177587201], + [1099,0.144926098601329], + [1101,-0.267190081752109], + [1103,0.538512179065175], + [1105,-0.463069269039418], + [1107,0.157224697644812], + [1109,0.207704402515723], + [1111,0.541403824972464], + [1113,-0.019534784691542], + [1117,0.521222056320675], + [1115,0.701042311939454], + [1119,-0.499683544303797], + [1121,0.25954011741683], + [1123,0.421976093869942], + [1125,0.200825707704507], + [1127,0.687321391231616], + [1129,0.436465404311063], + [1131,-0.427299703264095], + [1133,0.827456418383518], + [5001,0.327203331020125], + [5003,0.378259746966176], + [5005,0.557551280688702], + [5007,0.370658243555756], + [5009,0.613861386138614], + [5011,0.243103448275862], + [5013,0.419178082191781], + [5015,0.340259226278817], + [5017,-0.155927201180521], + [5019,0.0989505247376312], + [5021,0.308065074420215], + [5023,0.636347901341411], + [5025,0.545711592836946], + [5027,0.269427640763146], + [5029,0.291905587411655], + [5031,0.37040153883145], + [5033,0.576357011026454], + [5035,-0.0923568957639841], + [5037,0.392878880097383], + [5039,0.127994011976048], + [5041,-0.0753259295026557], + [5043,0.253198546833044], + [5045,0.335164206430942], + [5047,0.570670826833073], + [5049,0.529645139960326], + [5051,0.359192404006678], + [5053,0.571493832800365], + [5055,0.555620183219427], + [5057,0.298728186926945], + [5059,0.444286979627989], + [5061,0.400665926748058], + [5063,0.550417870811529], + [5065,0.568794876770813], + [5067,0.346542827657379], + [5069,-0.260099390830394], + [5071,0.429883433415754], + [5073,0.259899208063355], + [5075,0.52581190163319], + [5077,-0.170715249662618], + [5079,0.324521176153224], + [5081,0.44131173765247], + [5083,0.540340985367164], + [5085,0.558496476115897], + [5087,0.511992619926199], + [5089,0.573287883483111], + [5091,0.450982911473725], + [5093,0.108414624474582], + [5095,0.0378057820607858], + [5097,0.555622732769045], + [5099,0.267659170098195], + [5101,0.608841634023503], + [5103,0.10623771594083], + [5105,0.484304932735426], + [5107,-0.274536005939124], + [5109,0.643192488262911], + [5111,0.252834692659638], + [5113,0.690378710337769], + [5115,0.530226209048362], + [5117,0.510105580693816], + [5119,-0.187268778352672], + [5121,0.519635934603068], + [5125,0.46039634208436], + [5127,0.648526863084922], + [5129,0.661979752530934], + [5131,0.404976436402706], + [5133,0.506427915518825], + [5135,0.57190635451505], + [5123,-0.115693329642956], + [5137,0.54876660341556], + [5139,0.285732291404084], + [5141,0.553470919324578], + [5143,0.111697884863988], + [5145,0.606260736781829], + [5147,0.0922389272653392], + [5149,0.515151515151515], + [4001,-0.392953000970818], + [4003,0.241649515213133], + [4005,-0.208567130679783], + [4007,0.33921050053874], + [4009,0.417093413385132], + [4011,0.268096514745308], + [4012,0.439029580761864], + [4013,0.0363535043725127], + [4015,0.536554167076651], + [4017,0.0836042592537358], + [4019,-0.141915790210933], + [4021,0.202245686095051], + [4023,-0.490721361797126], + [4025,0.329208395903666], + [4027,0.0578079235393865], + [6001,-0.684215811891817], + [6003,-0.20226843100189], + [6005,0.268537446571269], + [6007,0.0434900889092236], + [6009,0.256319077366651], + [6011,0.143639291465378], + [6013,-0.460763305875249], + [6015,0.191321499013807], + [6017,0.149500458516338], + [6019,-0.0408696640278777], + [6021,0.307579351632215], + [6023,-0.285868958955346], + [6025,-0.431869624264373], + [6027,0.147642847494259], + [6029,0.158929222689586], + [6031,0.149729800975353], + [6033,-0.0406937958639093], + [6035,0.546029802000408], + [6037,-0.506546197278898], + [6039,0.182685207974403], + [6041,-0.663451109127384], + [6043,0.24834476947153], + [6045,-0.318251240931653], + [6047,-0.083535769173566], + [6049,0.502958579881657], + [6051,-0.128978224455611], + [6053,-0.420970025573202], + [6055,-0.373028577426719], + [6057,-0.0489881819653554], + [6059,-0.081494306815013], + [6061,0.120670327643211], + [6063,0.223413224135854], + [6065,-0.0456803960170136], + [6067,-0.253539442114324], + [6069,-0.21663337570365], + [6071,-0.103366585522147], + [6073,-0.189126356061003], + [6075,-0.801156409251274], + [6077,-0.135825738265858], + [6079,-0.0892948224736974], + [6081,-0.606814215307836], + [6083,-0.301442870141687], + [6085,-0.557266267691376], + [6087,-0.617288286834436], + [6089,0.398424872902524], + [6091,0.27107337780473], + [6093,0.224151108199585], + [6095,-0.324107009008272], + [6097,-0.512264741150097], + [6099,-0.00666444291656176], + [6101,0.172975429030792], + [6103,0.390219005196734], + [6105,0.12438739789965], + [6107,0.127127819884582], + [6109,0.222333000997009], + [6111,-0.178822691553761], + [6113,-0.446744195810068], + [6115,0.259835268839208], + [8001,-0.0790127154069804], + [8003,-0.0221003387643168], + [8005,-0.150102905780165], + [8007,0.259556745500521], + [8009,0.721163490471414], + [8011,0.334859759587865], + [8013,-0.525743052709489], + [8014,-0.155552925862375], + [8015,0.0507159904534606], + [8017,0.753875968992248], + [8019,-0.0317301935741369], + [8021,0.0362836723474436], + [8023,-0.312426035502959], + [8025,0.521708185053381], + [8027,0.44187675070028], + [8029,0.482088024564995], + [8031,-0.600115464975624], + [8033,0.609630266552021], + [8035,0.198136619962565], + [8037,-0.216246094688777], + [8039,0.581140350877193], + [8041,0.250427716754099], + [8043,0.481343100142569], + [8045,0.0768660405338606], + [8047,-0.0218886804252658], + [8049,0.147444130490624], + [8051,-0.21856215436403], + [8053,0.264925373134328], + [8055,0.069594980034227], + [8057,0.571964956195244], + [8059,-0.0767480274211501], + [8061,0.777233782129743], + [8063,0.692397660818714], + [8065,-0.11731843575419], + [8067,-0.101868856000864], + [8069,-0.0546128585649393], + [8071,0.166188197767145], + [8073,0.648767605633803], + [8075,0.595611629182666], + [8077,0.39328672543315], + [8079,0.184165232358003], + [8081,0.716555861845306], + [8083,0.329398682747412], + [8085,0.449065396889722], + [8087,0.443019943019943], + [8089,0.269598470363289], + [8091,-0.116617112652792], + [8093,0.287324542747767], + [8095,0.608441850022452], + [8097,-0.483249667042311], + [8099,0.498825037385174], + [8101,-0.00357328832306836], + [8103,0.730637636080871], + [8105,0.213082259663033], + [8107,-0.18502690724913], + [8109,-0.0961695191524042], + [8111,-0.104166666666667], + [8113,-0.483709273182957], + [8115,0.583463338533541], + [8117,-0.304682136482219], + [8119,0.459587110535537], + [8121,0.775359502526234], + [8123,0.246511322288934], + [8125,0.685368043087971], + [9001,-0.21123852047288], + [9003,-0.224985001349224], + [9005,0.145260266918422], + [9007,-0.0767530569320167], + [9009,-0.124948200699498], + [9011,-0.0712784513933206], + [9013,-0.0615828490177943], + [9015,0.083385949404386], + [11001,-0.914981455316143], + [10001,0.0517800272975433], + [10003,-0.311571099624817], + [10005,0.228358970334327], + [12001,-0.236039818292143], + [12003,0.659519587296469], + [12005,0.48173813307208], + [12007,0.505955900988426], + [12009,0.206196350595228], + [12011,-0.358092161539063], + [12013,0.579806221315655], + [12015,0.286005746819488], + [12017,0.409789738404501], + [12019,0.459061422476769], + [12021,0.266822266870391], + [12023,0.456398884040346], + [12027,0.283960019038553], + [12029,0.64184997179921], + [12031,0.0155527837404035], + [12033,0.214841494597344], + [12035,0.211851798741687], + [12037,0.406522110295373], + [12039,-0.380980888786553], + [12041,0.644504086861047], + [12043,0.40426529177408], + [12045,0.512437810945274], + [12047,0.288497564630948], + [12049,0.418551117129316], + [12051,0.146454360303647], + [12053,0.299525575968386], + [12055,0.328934924566539], + [12057,-0.0707504149558836], + [12059,0.795389048991354], + [12061,0.252278851484638], + [12063,0.380712137382361], + [12065,0.0526315789473684], + [12067,0.688821752265861], + [12069,0.238872845548226], + [12071,0.210266378780875], + [12073,-0.261877800882557], + [12075,0.459812191628203], + [12077,0.592233009708738], + [12079,0.157970149253731], + [12081,0.177224495939148], + [12083,0.269656034137256], + [12085,0.276265898728102], + [12086,-0.302444306930693], + [12087,0.0719008669246217], + [12089,0.518571111604171], + [12091,0.503429355281207], + [12093,0.40534035351636], + [12095,-0.256328739969886], + [12097,-0.258486487284103], + [12099,-0.156731908691272], + [12101,0.223957816858598], + [12103,0.0114791568253214], + [12105,0.145897564851056], + [12107,0.375963262353348], + [12113,0.559455964752646], + [12115,0.11913930397612], + [12117,0.0170051564623317], + [12109,0.346289967342599], + [12111,0.0250693127097621], + [12119,0.399333802237469], + [12121,0.566242597060759], + [12123,0.526234567901235], + [12125,0.636624260885146], + [12127,0.135039514064463], + [12129,0.414607876135981], + [12131,0.578510873571692], + [12133,0.584794784684602], + [13001,0.585908172105111], + [13003,0.458154924094979], + [13005,0.693666414332576], + [13007,0.0877192982456141], + [13009,-0.0175012774655084], + [13011,0.79923686527737], + [13013,0.524652338811631], + [13015,0.569151589948271], + [13017,0.280521262002744], + [13019,0.677159249496046], + [13021,-0.207013971775609], + [13023,0.54520889627936], + [13025,0.799676375404531], + [13027,0.190037198770823], + [13029,0.447772498795015], + [13031,0.243215389900378], + [13033,-0.0259190977117449], + [13035,0.447161477970484], + [13037,-0.173891380169407], + [13039,0.350145596395802], + [13043,0.444625407166124], + [13045,0.414125692724915], + [13047,0.627843458582075], + [13049,0.492159838138594], + [13051,-0.149531890849221], + [13053,0.114264376400299], + [13055,0.600446151939522], + [13057,0.523635813786455], + [13059,-0.398602061367137], + [13061,-0.103721298495645], + [13063,-0.732110259218693], + [13065,0.431299294312993], + [13067,-0.0218384836772237], + [13069,0.401390413465057], + [13071,0.481725584182145], + [13073,0.390759491626698], + [13075,0.408807153703391], + [13077,0.439045443005839], + [13079,0.438131063155811], + [13081,0.231082180634662], + [13083,0.678975382568197], + [13085,0.74496644295302], + [13087,0.188371403144467], + [13089,-0.668382973676316], + [13091,0.464488843517573], + [13093,0.021310181531176], + [13095,-0.388538459238887], + [13097,-0.110589163409474], + [13099,0.0820436718253128], + [13101,0.731497418244406], + [13103,0.572900158478605], + [13105,0.355195473251029], + [13107,0.373180471467216], + [13109,0.360498019241653], + [13111,0.667302027378271], + [13113,0.202079294549572], + [13115,0.449716628481852], + [13117,0.497425666108894], + [13119,0.700373629022538], + [13121,-0.437232152189819], + [13123,0.685185185185185], + [13125,0.798980335032775], + [13127,0.293317278747742], + [13129,0.65378536000436], + [13131,0.336058329650906], + [13133,0.264224832987791], + [13135,-0.0597060919473816], + [13137,0.683028020680411], + [13139,0.523749152342483], + [13141,-0.524321266968326], + [13143,0.733285080973491], + [13145,0.490164241553738], + [13147,0.476489663558979], + [13149,0.638706540238269], + [13151,-0.0445977203981454], + [13153,0.222985245022574], + [13155,0.505692863093585], + [13157,0.659154177630325], + [13159,0.476343903679837], + [13161,0.6398161103338], + [13163,-0.109525196621031], + [13165,0.261333333333333], + [13167,0.378385772913817], + [13169,0.354207436399217], + [13171,0.391409395973154], + [13173,0.422732162065256], + [13175,0.295955690249765], + [13177,0.541392047512131], + [13179,-0.217552376085846], + [13181,0.369230769230769], + [13183,0.318421713998492], + [13185,0.186348198875341], + [13187,0.625327584749345], + [13193,-0.274440518256773], + [13195,0.582888621105182], + [13197,0.22590938098277], + [13189,0.189793012813493], + [13191,0.204844290657439], + [13199,0.157054125998225], + [13201,0.504382470119522], + [13205,0.100463678516229], + [13207,0.423775320797353], + [13209,0.518065433854908], + [13211,0.42323966583487], + [13213,0.703599967048357], + [13215,-0.190983865389531], + [13217,-0.0240179259155522], + [13219,0.42077406549785], + [13221,0.432956130832429], + [13223,0.425251396648045], + [13225,0.0307017543859649], + [13227,0.709862048723217], + [13229,0.749305941143809], + [13231,0.708881578947368], + [13233,0.587136779868772], + [13235,0.376271186440678], + [13237,0.407191448007775], + [13239,0.11003861003861], + [13241,0.626649417852523], + [13243,-0.114056505057552], + [13245,-0.331738393394215], + [13247,-0.265701273555319], + [13249,0.571809930592632], + [13251,0.179304192685103], + [13253,0.327854916406914], + [13255,0.251731177200496], + [13257,0.61437427760849], + [13259,-0.204938271604938], + [13261,-0.0226956924502084], + [13263,-0.251798561151079], + [13265,-0.21923937360179], + [13267,0.504283604135894], + [13269,0.228477807566279], + [13271,0.301967038809144], + [13273,-0.0954336796327615], + [13275,0.222567118662528], + [13277,0.380846325167038], + [13279,0.477541899441341], + [13281,0.633601701351967], + [13283,0.355322338830585], + [13285,0.239540412044374], + [13287,0.255019478573569], + [13289,0.0159840159840159], + [13291,0.667767335534671], + [13293,0.354772748396691], + [13295,0.636041639669993], + [13297,0.579447322970639], + [13299,0.424648359008707], + [13301,-0.139756944444444], + [13303,-0.0058858858858859], + [13305,0.599646573728647], + [13307,0.14441416893733], + [13309,0.374939525882922], + [13311,0.707257287927865], + [13313,0.461598559733687], + [13315,0.421981004070556], + [13317,0.164287332880127], + [13319,0.103905325443787], + [13321,0.506066919965682], + [15001,-0.404336430783893], + [15003,-0.320903997292521], + [15007,-0.369621306699958], + [15009,-0.426945699428864], + [19001,0.370918224951158], + [19003,0.422880490296221], + [19005,0.256596204289461], + [19007,0.379534565366187], + [19009,0.328562538892346], + [19011,0.27554659637153], + [19013,-0.0778608473092207], + [19015,0.149595375722543], + [19017,0.147433854000637], + [19019,0.162407602956705], + [19021,0.263878130648076], + [19023,0.389069340488632], + [19025,0.425750719868367], + [19027,0.334474426097463], + [19029,0.419191165497687], + [19031,0.191686433977183], + [19033,0.0813611539000141], + [19035,0.42837653478854], + [19037,0.245710478094286], + [19039,0.298153034300792], + [19041,0.446525381961557], + [19043,0.242598010532475], + [19045,0.0548574643660915], + [19047,0.397846200515698], + [19049,0.103748211731044], + [19051,0.472004327833378], + [19053,0.313125536173863], + [19055,0.316057380842203], + [19057,0.0736818259047403], + [19059,0.376965489074944], + [19061,0.0132154772737121], + [19063,0.394237212419031], + [19065,0.207950739980555], + [19067,0.15818759936407], + [19069,0.358173594658626], + [19071,0.429166666666667], + [19073,0.250942977590415], + [19075,0.41945623133742], + [19077,0.353747886530152], + [19079,0.242149337055129], + [19081,0.430320489737126], + [19083,0.306933166770768], + [19085,0.394725588025659], + [19087,0.331024131162683], + [19089,0.218669778296383], + [19091,0.480373831775701], + [19093,0.540469973890339], + [19095,0.256928476340312], + [19097,0.205425553944916], + [19099,0.195199275362319], + [19101,0.0048387096774194], + [19103,-0.408106012546698], + [19105,0.204169737811941], + [19107,0.455913978494624], + [19109,0.380602498163115], + [19111,0.171625325934345], + [19113,-0.0965461636540913], + [19115,0.301297044439719], + [19117,0.398393769773667], + [19119,0.6995904995905], + [19121,0.333666583354161], + [19123,0.479320679320679], + [19125,0.333414589554513], + [19127,0.0896823501313591], + [19129,0.416549789621318], + [19131,0.25716544771694], + [19133,0.429226886900665], + [19135,0.428958785249458], + [19137,0.446763651697238], + [19139,0.0709359053440251], + [19141,0.627181160448291], + [19143,0.641558441558442], + [19145,0.460455362492511], + [19147,0.376396960214573], + [19149,0.54087899816543], + [19151,0.473453749315818], + [19153,-0.123186229422034], + [19155,0.228746669347946], + [19157,0.0721112076455257], + [19159,0.414691022153129], + [19161,0.48840959483975], + [19163,-0.0153555457580148], + [19165,0.449323760227083], + [19167,0.731495601173021], + [19169,-0.135170603674541], + [19171,0.217348689046802], + [19173,0.472581208522529], + [19175,0.29424738099614], + [19177,0.499257499257499], + [19179,0.218096636598839], + [19181,0.175071587655107], + [19183,0.220815195884448], + [19185,0.484218077474892], + [19187,0.229837229225309], + [19189,0.283180884823595], + [19191,0.00889309366130564], + [19193,0.209310319428417], + [19195,0.231971759959657], + [19197,0.334507042253521], + [16001,0.106667296250826], + [16003,0.578893962455606], + [16005,0.248455780829882], + [16007,0.792514239218877], + [16009,0.598041741819119], + [16011,0.577181693297665], + [16013,-0.315293152931529], + [16015,0.549565217391304], + [16017,0.330729166666667], + [16019,0.498722950405569], + [16021,0.604828462515883], + [16023,0.702048417132216], + [16025,0.576923076923077], + [16027,0.47403764305306], + [16029,0.787117046347211], + [16031,0.70336435218325], + [16033,0.643724696356275], + [16035,0.604049493813273], + [16037,0.612522686025408], + [16039,0.524508519003932], + [16041,0.820345310312646], + [16043,0.725432307043442], + [16045,0.659037314468026], + [16047,0.601968756687353], + [16049,0.686788005761425], + [16051,0.792605184870378], + [16053,0.55262045646661], + [16055,0.464233360235864], + [16057,-0.0545999478759448], + [16059,0.608440170940171], + [16061,0.633152173913044], + [16063,0.533678756476684], + [16065,0.763163084204299], + [16067,0.614469772051536], + [16069,0.378115540671089], + [16071,0.785422740524781], + [16073,0.675542135602525], + [16075,0.656791073489804], + [16077,0.408879492600423], + [16079,0.408673360393078], + [16081,0.000926354793886031], + [16083,0.509513742071882], + [16085,0.206059348412534], + [16087,0.617639812761764], + [17001,0.497250123497448], + [17003,0.0848440899202321], + [17005,0.405467625899281], + [17007,0.155989251873851], + [17009,0.577965348733896], + [17011,0.213041770328663], + [17013,0.398698128559805], + [17015,0.290021849963583], + [17017,0.330850403476102], + [17019,-0.198470981200786], + [17021,0.450910093767237], + [17023,0.500066728947017], + [17025,0.663290718910842], + [17027,0.517663625788281], + [17029,0.281203749383325], + [17031,-0.552809713555754], + [17033,0.514725816389402], + [17035,0.606732976281561], + [17037,-0.0329196172491688], + [17039,0.453503367244591], + [17041,0.490642586048947], + [17043,-0.150299596230102], + [17045,0.520237452779277], + [17047,0.730757245247741], + [17049,0.631862862622872], + [17051,0.604663833496786], + [17053,0.520734194425561], + [17055,0.471030765775881], + [17057,0.161917808219178], + [17059,0.494996150885296], + [17061,0.549897023029395], + [17063,0.251702584196287], + [17065,0.600499375780275], + [17067,0.532251575700684], + [17069,0.594973417109715], + [17071,0.303268765133172], + [17073,0.224898012896434], + [17075,0.591623036649215], + [17077,-0.0324329127421361], + [17079,0.622626097610782], + [17081,0.452047983094039], + [17083,0.486455331412104], + [17085,0.157217226691907], + [17087,0.607198477245198], + [17089,-0.0953404306905596], + [17091,0.140330537179749], + [17093,0.0159851926636379], + [17095,0.0349079963101422], + [17097,-0.215243104980599], + [17099,0.153515127563343], + [17101,0.556244616709733], + [17103,0.21977866061294], + [17105,0.435994930291508], + [17107,0.424311126613185], + [17115,0.190496299424355], + [17117,0.369680594422465], + [17119,0.165454982550091], + [17121,0.468066381694745], + [17123,0.358273381294964], + [17125,0.337184353853771], + [17127,0.513986560400062], + [17109,0.125217535427198], + [17111,0.0862200635386119], + [17113,0.0159317250921245], + [17129,0.401126200728718], + [17131,0.221218674468897], + [17133,0.391045434494927], + [17135,0.423426400132166], + [17137,0.317530720570058], + [17139,0.502108281329061], + [17141,0.282489159104117], + [17143,-0.0293806283082423], + [17145,0.47388906908855], + [17147,0.362160852713178], + [17149,0.605641670157799], + [17151,0.635477582846004], + [17153,0.319166666666667], + [17155,0.213080895008606], + [17157,0.489897860284798], + [17159,0.568284347231716], + [17161,-0.0893004879531295], + [17165,0.527548847115474], + [17167,0.100404178722088], + [17169,0.402835696413678], + [17171,0.576413959085439], + [17173,0.565408085430969], + [17163,-0.0589570557544937], + [17175,0.407524752475247], + [17177,0.180343926861123], + [17179,0.30499425559235], + [17181,0.4151058881136], + [17183,0.305924520345773], + [17185,0.557955641272903], + [17187,0.177103448275862], + [17189,0.587564175698802], + [17191,0.738359755336413], + [17193,0.599489434122819], + [17195,0.0674519108550122], + [17197,-0.0598066358404963], + [17199,0.431529192463884], + [17201,0.0124581052789696], + [17203,0.444541867601929], + [18001,0.549662487945998], + [18003,0.205570301317048], + [18005,0.354222718026117], + [18007,0.499854608897935], + [18009,0.458623693379791], + [18011,0.317512988101223], + [18013,0.331474844019647], + [18015,0.536746692797648], + [18017,0.441397250092902], + [18019,0.229924389894064], + [18021,0.574303119808012], + [18023,0.5032161423914], + [18025,0.389760147601476], + [18027,0.652005799903335], + [18029,0.575262036271909], + [18031,0.600150815345461], + [18033,0.507221006564552], + [18035,0.144551834959945], + [18037,0.425295936866802], + [18039,0.338412535813179], + [18041,0.504564954350457], + [18043,0.211728779053328], + [18045,0.586380832282472], + [18047,0.629984951091046], + [18049,0.508155583437892], + [18051,0.497263328603284], + [18053,0.415175971378651], + [18055,0.556346561647986], + [18057,0.208181962868393], + [18059,0.475656092604047], + [18061,0.462434577072429], + [18063,0.362812143088789], + [18065,0.46117040853883], + [18067,0.357122384637432], + [18069,0.537314417683933], + [18071,0.539760479041916], + [18073,0.476201715049957], + [18075,0.501977326654363], + [18077,0.327528570317966], + [18079,0.553372378613263], + [18081,0.448242903112754], + [18083,0.49195232002155], + [18085,0.582329583057578], + [18087,0.543108182317408], + [18089,-0.214750001298965], + [18091,0.067878416876604], + [18093,0.538478403858803], + [18095,0.270369425751898], + [18097,-0.240440473135338], + [18099,0.438304846640131], + [18101,0.614947552447553], + [18103,0.565811160819402], + [18105,-0.24960701882654], + [18107,0.533476722403386], + [18109,0.593577487545442], + [18111,0.487675734891364], + [18113,0.51509129300708], + [18115,0.510699001426534], + [18117,0.478083588175331], + [18119,0.519328146226998], + [18121,0.542829949238579], + [18123,0.196114465739039], + [18125,0.544512730465321], + [18127,0.0718062283737024], + [18129,0.409640577762848], + [18131,0.487743678826481], + [18133,0.520331594368613], + [18135,0.508884650135529], + [18137,0.597458662539709], + [18139,0.552589115446677], + [18143,0.393758604864617], + [18145,0.499322133804892], + [18147,0.393406127424997], + [18141,-0.00218671474881549], + [18149,0.437895212285456], + [18151,0.460484568791462], + [18153,0.487819658223246], + [18155,0.466743119266055], + [18157,0.0604993266342069], + [18159,0.557692307692308], + [18161,0.54746835443038], + [18163,0.176460316074391], + [18165,0.368628640776699], + [18167,0.158590075569413], + [18169,0.529796681467633], + [18171,0.550736278447122], + [18173,0.356036712853042], + [18175,0.513742851872348], + [18177,0.3164681724846], + [18179,0.589160839160839], + [18181,0.453284982935154], + [18183,0.541395222584148], + [20001,0.437763925196059], + [20003,0.564077351687971], + [20005,0.342900557150093], + [20007,0.732762719923918], + [20009,0.619772656168526], + [20011,0.535231316725979], + [20013,0.541902452169227], + [20015,0.486426592797784], + [20017,0.509788566953798], + [20019,0.736017897091723], + [20021,0.508776328986961], + [20023,0.723529411764706], + [20025,0.746509129967777], + [20027,0.619565217391304], + [20029,0.586666666666667], + [20031,0.612294418980858], + [20033,0.747211895910781], + [20035,0.399930143206427], + [20037,0.247436469014712], + [20039,0.745350500715308], + [20041,0.577400828102044], + [20043,0.633281004709576], + [20045,-0.355451944951235], + [20047,0.664786462530218], + [20049,0.735099337748344], + [20051,0.51384335154827], + [20053,0.579248366013072], + [20055,0.343739766401048], + [20057,0.421576999715343], + [20059,0.425816927136188], + [20061,0.231413612565445], + [20063,0.766457680250784], + [20065,0.691151919866444], + [20067,0.608615948670944], + [20069,0.730607966457023], + [20071,0.726072607260726], + [20073,0.631939163498099], + [20075,0.716417910447761], + [20077,0.668092386655261], + [20079,0.258864460729884], + [20081,0.631961259079903], + [20083,0.74406604747162], + [20085,0.446159568532639], + [20087,0.346148782093483], + [20089,0.739884393063584], + [20091,0.0291394952945652], + [20093,0.647798742138365], + [20095,0.616897774911319], + [20097,0.770186335403727], + [20099,0.401553710152692], + [20101,0.736040609137056], + [20103,0.266766238024116], + [20105,0.690303907380608], + [20107,0.648121034651049], + [20109,0.765907305577376], + [20111,0.175578168362627], + [20115,0.538883447600392], + [20117,0.508120649651972], + [20113,0.450733390854185], + [20119,0.741854636591479], + [20121,0.427183057731361], + [20123,0.650651769087523], + [20125,0.53606096344008], + [20127,0.506734006734007], + [20129,0.739910313901345], + [20131,0.701255230125523], + [20133,0.495520330806341], + [20135,0.767441860465116], + [20137,0.734292565947242], + [20139,0.462983082415024], + [20141,0.723021582733813], + [20143,0.684171322160149], + [20145,0.535055350553506], + [20147,0.762820512820513], + [20149,0.54552997303464], + [20151,0.57194544948511], + [20153,0.766252739225712], + [20155,0.387230133210841], + [20157,0.686838764282691], + [20159,0.597590361445783], + [20161,0.0494414452937089], + [20163,0.759683098591549], + [20165,0.676638176638177], + [20167,0.697131420947298], + [20169,0.374428049971724], + [20171,0.775193798449612], + [20173,0.205927336566787], + [20175,0.339681133746679], + [20177,0.0302977309491541], + [20179,0.807926829268293], + [20181,0.714645404951741], + [20183,0.694300518134715], + [20185,0.661073825503356], + [20187,0.629213483146067], + [20189,0.758291174817313], + [20191,0.540920860069796], + [20193,0.716883904213398], + [20195,0.725071225071225], + [20197,0.506228042159055], + [20199,0.880952380952381], + [20201,0.699284009546539], + [20203,0.692477876106195], + [20205,0.666363360630877], + [20207,0.59489872468117], + [20209,-0.308162082646102], + [21001,0.667587939698493], + [21003,0.654766474728087], + [21005,0.515630746598014], + [21007,0.589640432486799], + [21009,0.518526861133011], + [21011,0.387350889038938], + [21013,0.637283846478279], + [21015,0.444592296887706], + [21017,0.332296650717703], + [21019,0.385988170507852], + [21021,0.30508887265644], + [21023,0.587236533957845], + [21025,0.443921852387844], + [21027,0.535765040265277], + [21029,0.52096329609749], + [21031,0.647627906976744], + [21033,0.563031038668285], + [21035,0.371659169092353], + [21037,0.261710486551828], + [21039,0.657957244655582], + [21041,0.401191120736329], + [21043,0.538477136773801], + [21045,0.754520723315731], + [21047,0.324943651389932], + [21049,0.389465490399585], + [21051,0.772569181914411], + [21053,0.748852157943067], + [21055,0.684156641924751], + [21057,0.689969604863222], + [21059,0.34232644532157], + [21061,0.617129448572546], + [21063,0.45985401459854], + [21065,0.585329341317365], + [21067,-0.101732114379549], + [21069,0.555848434925865], + [21071,0.498375812093953], + [21073,0.0488995385161519], + [21075,0.333620318553594], + [21077,0.530701754385965], + [21079,0.605002038874541], + [21081,0.583787317498366], + [21083,0.585956567995494], + [21085,0.615052073098841], + [21087,0.680245964642583], + [21089,0.471577874075962], + [21091,0.382936507936508], + [21093,0.318375128317935], + [21095,0.738691553185411], + [21097,0.455933565496919], + [21099,0.509219858156028], + [21101,0.288985476518605], + [21103,0.460129946839929], + [21105,0.573599240265907], + [21107,0.559912186654414], + [21109,0.820517594488922], + [21111,-0.140671046260707], + [21113,0.431584790452401], + [21115,0.730980307758528], + [21117,0.279063881734677], + [21119,0.555515887183149], + [21121,0.697578567748583], + [21123,0.579397729142669], + [21125,0.713715046604527], + [21127,0.643405562190752], + [21129,0.657803468208092], + [21131,0.818799546998868], + [21133,0.650933786078098], + [21135,0.695027195027195], + [21137,0.59469738128871], + [21139,0.601974422257124], + [21141,0.476882179815817], + [21143,0.454877412623892], + [21151,0.330399727458551], + [21153,0.530824659727782], + [21155,0.313164978848866], + [21157,0.540827810428911], + [21159,0.812209001551992], + [21161,0.430141741394273], + [21145,0.389193526815568], + [21147,0.766032417195208], + [21149,0.547722590981918], + [21163,0.482115351702892], + [21165,0.483394833948339], + [21167,0.527380365071534], + [21169,0.56301768524737], + [21171,0.753638040582086], + [21173,0.42654802978028], + [21175,0.565817867932672], + [21177,0.483300434267667], + [21179,0.352194925493355], + [21181,0.426384839650146], + [21183,0.584913190979844], + [21185,0.331880144451313], + [21187,0.558144372789682], + [21189,0.704046242774566], + [21191,0.596393897364771], + [21193,0.585000971439674], + [21195,0.643835616438356], + [21197,0.468338557993731], + [21199,0.689538143721411], + [21201,0.547400611620795], + [21203,0.719497240956468], + [21205,0.221867989136852], + [21207,0.725238813474108], + [21209,0.322380847792664], + [21211,0.355382087099425], + [21213,0.40617642985736], + [21215,0.578589448283427], + [21217,0.530396394739263], + [21219,0.552213149978513], + [21221,0.512816577129701], + [21223,0.518356164383562], + [21225,0.55868700265252], + [21227,0.256513069962094], + [21229,0.477268544082459], + [21231,0.633123958466863], + [21233,0.560049671811247], + [21235,0.691008296584199], + [21237,0.411028549080954], + [21239,0.216436191228763], + [22001,0.579206627607568], + [22003,0.530591775325978], + [22005,0.373797665665514], + [22007,0.261437294504462], + [22009,0.378573633837604], + [22011,0.672886337229171], + [22013,0.0910675381263617], + [22015,0.47439123292229], + [22017,-0.0436514522821577], + [22019,0.346554830692762], + [22021,0.658134490238612], + [22023,0.81950265437273], + [22025,0.449281399708394], + [22027,0.137734052681688], + [22029,0.251772238737709], + [22031,0.219501133786848], + [22033,-0.0965723772360154], + [22035,-0.268898860890576], + [22037,0.136066911464708], + [22039,0.422176450394782], + [22041,0.444345898004435], + [22043,0.72493303831373], + [22045,0.32293281858169], + [22047,-0.0641779596011251], + [22049,0.414614121510673], + [22051,0.153895715403378], + [22053,0.55539516420065], + [22055,0.351427410644391], + [22057,0.582823605160843], + [22059,0.812111801242236], + [22061,0.204836813525164], + [22063,0.750659228299281], + [22065,-0.174909013059302], + [22067,0.115552886677533], + [22069,0.1131114973926], + [22071,-0.693017077798862], + [22073,0.261477045908184], + [22075,0.34673562994047], + [22077,0.175279148273176], + [22079,0.335485743306972], + [22081,0.104643104643105], + [22083,0.331356560415122], + [22085,0.64446764091858], + [22087,0.34729080255448], + [22089,0.320200174755739], + [22091,-0.146324786324786], + [22093,-0.0810173488293751], + [22095,-0.251594403520047], + [22097,0.121458109970899], + [22099,0.342350226748349], + [22101,0.281346248270321], + [22103,0.532732023939982], + [22105,0.335892287705208], + [22107,-0.059386209645277], + [22109,0.498919274504276], + [22111,0.495263996998969], + [22113,0.613473444118605], + [22115,0.669682697074864], + [22117,0.376164894200197], + [22119,0.296623026352756], + [22121,0.125446863828404], + [22123,0.694770544290288], + [22125,0.202767429483768], + [22127,0.474071702944942], + [25001,-0.141782361286004], + [25003,-0.443179369893435], + [25005,-0.098298579137155], + [25007,-0.54236034036256], + [25009,-0.238082108532715], + [25011,-0.404715240949965], + [25013,-0.170162774539495], + [25015,-0.423722622976481], + [25017,-0.403755713146927], + [25019,-0.373094764744864], + [25021,-0.29547147502217], + [25023,-0.0768698451015892], + [25025,-0.656368667898123], + [25027,-0.112876273061897], + [24001,0.500562008242788], + [24003,-0.00678714389178736], + [24005,-0.182333372861574], + [24510,-0.774194189420134], + [24009,0.193741082009238], + [24011,0.412050839479052], + [24013,0.391442551966661], + [24015,0.371066368381805], + [24017,-0.311850311850312], + [24019,0.164527250055014], + [24021,0.0422745771158053], + [24023,0.637971224178121], + [24025,0.257978723404255], + [24027,-0.353650793650794], + [24029,0.0478577939835916], + [24031,-0.577411354921501], + [24033,-0.829171490477288], + [24035,0.378076252815914], + [24039,0.184074941451991], + [24037,0.260175746924429], + [24041,0.124311083894672], + [24043,0.338571551649866], + [24045,0.12123577060739], + [24047,0.288624306483619], + [23001,0.101907591275115], + [23003,0.184229784120015], + [23005,-0.281625080930325], + [23007,0.0603315213744045], + [23009,-0.0814058880794925], + [23011,0.0402463594817277], + [23013,-0.152492125254771], + [23015,-0.0257411858974359], + [23017,0.14239413795533], + [23019,0.11781064850268], + [23021,0.271144571226915], + [23023,-0.068808487214132], + [23025,0.24516396845164], + [23027,-0.00307396733909704], + [23029,0.174017538161741], + [23031,-0.0512163892445583], + [26001,0.416146974549132], + [26003,0.217043314500942], + [26005,0.306895485466914], + [26007,0.301639579007661], + [26009,0.311295192382132], + [26011,0.355229040622299], + [26013,0.302353651176826], + [26015,0.356390871193387], + [26017,0.133805635606788], + [26019,0.148336270343112], + [26021,0.13427841859646], + [26023,0.398667935299714], + [26025,0.131822511367108], + [26027,0.324066756543164], + [26029,0.256100209977554], + [26031,0.337236173162841], + [26033,0.258104566147055], + [26035,0.33369914556714], + [26037,0.134950819672131], + [26039,0.347153465346535], + [26041,0.266830074673659], + [26043,0.372470607054307], + [26045,0.0589543937708565], + [26047,0.207186718216966], + [26049,-0.0993483773633358], + [26051,0.363315992616211], + [26053,0.157546082949309], + [26055,0.133289234331073], + [26057,0.27105449398443], + [26059,0.491981157042291], + [26061,0.169530117987994], + [26063,0.397816938453446], + [26065,-0.293838560738736], + [26067,0.332302685109845], + [26069,0.315258511979823], + [26071,0.294241944004226], + [26073,0.0393395670120462], + [26075,0.213423187168385], + [26077,-0.136334018769093], + [26079,0.463259538389072], + [26081,0.0327788752155127], + [26083,0.214019388516033], + [26085,0.239309533150255], + [26087,0.404549811788361], + [26089,0.0331834724898308], + [26091,0.224141924128028], + [26093,0.312735523724798], + [26095,0.4411161263849], + [26097,0.28412017167382], + [26099,0.120628101400355], + [26101,0.162771145115184], + [26103,-0.045490093847758], + [26105,0.233860438125635], + [26107,0.277584924373915], + [26109,0.308991506394611], + [26111,0.207983405848427], + [26113,0.549705078405985], + [26115,0.233847733690846], + [26117,0.364513135063153], + [26119,0.462374581939799], + [26121,-0.00933858571389223], + [26123,0.41905919760591], + [26125,-0.0851902300732634], + [26127,0.290599053655924], + [26129,0.385208481282338], + [26131,0.275585696670777], + [26133,0.461209042924012], + [26135,0.462824800617443], + [26137,0.39840974454407], + [26139,0.323113828511248], + [26141,0.302933488237003], + [26143,0.310106211779852], + [26145,0.0119513932164159], + [26151,0.467984060265298], + [26153,0.302420382165605], + [26155,0.210359042134743], + [26147,0.332980168432491], + [26149,0.328217711354004], + [26157,0.39849080838083], + [26159,0.148709387440606], + [26161,-0.435579726396053], + [26163,-0.386921995313023], + [26165,0.385425325574952], + [27001,0.275375722543353], + [27003,0.105674010897892], + [27005,0.352560914967678], + [27007,0.107595911868933], + [27009,0.39066551426102], + [27011,0.271360759493671], + [27013,0.0411696295065624], + [27015,0.396519926228851], + [27017,-0.0180505415162455], + [27019,0.149292989221794], + [27021,0.3370839193624], + [27023,0.311041448972484], + [27025,0.33051948051948], + [27027,0.021679297213739], + [27029,0.453416149068323], + [27031,-0.246414602346806], + [27033,0.373529960798955], + [27035,0.339805825242719], + [27037,-0.0506349017272186], + [27039,0.355696333991069], + [27041,0.383251621849156], + [27043,0.367880211391662], + [27045,0.236517795524007], + [27047,0.186342514647451], + [27049,0.195640141354792], + [27051,0.302810230502052], + [27053,-0.382440411495996], + [27055,0.150701772359389], + [27057,0.35856462012896], + [27059,0.413612565445026], + [27061,0.178025985867335], + [27063,0.415016663399334], + [27065,0.384147148339288], + [27067,0.275248117300883], + [27069,0.242173112338858], + [27071,0.214978723404255], + [27073,0.276216968011127], + [27075,-0.0241304709602264], + [27077,0.471571906354515], + [27079,0.330242665700833], + [27081,0.383512544802867], + [27083,0.309629094847036], + [27087,0.0317542946382092], + [27089,0.447326866681705], + [27091,0.441960183767228], + [27085,0.418899200373548], + [27093,0.434794156706507], + [27095,0.384347248734335], + [27097,0.56080183552711], + [27099,0.084941610325753], + [27101,0.393300538767861], + [27103,0.0336968508761182], + [27105,0.319472111553785], + [27107,0.146810664866689], + [27109,-0.00831317596685854], + [27111,0.383116454191162], + [27113,0.301659616010413], + [27115,0.282749980424399], + [27117,0.49518477043673], + [27119,0.31166459718063], + [27121,0.285980674690626], + [27123,-0.428534518604642], + [27125,0.357525282569899], + [27127,0.462699316628702], + [27129,0.395747110032824], + [27131,0.0332150271211411], + [27133,0.384856630824373], + [27135,0.491993978376899], + [27139,0.167216946676406], + [27141,0.400243528456751], + [27143,0.45319714565552], + [27137,-0.12830078125], + [27145,0.301162679491208], + [27147,0.284395251476745], + [27149,0.139137510170871], + [27151,0.276449041154923], + [27153,0.506034788782393], + [27155,0.249256395002974], + [27157,0.287701520036849], + [27159,0.483514798343812], + [27161,0.355366269165247], + [27163,-0.0202030186670722], + [27165,0.208206023570493], + [27167,0.409000661813369], + [27169,0.0321866485013624], + [27171,0.360603678666876], + [27173,0.378719934773746], + [29001,0.265293252049611], + [29003,0.530424799081515], + [29005,0.583846153846154], + [29007,0.462295768747382], + [29009,0.616608898634788], + [29011,0.723622457848079], + [29013,0.575423395037416], + [29015,0.561715028150715], + [29017,0.745119305856833], + [29019,-0.0637934160428916], + [29021,0.279219804951238], + [29023,0.636036684049631], + [29025,0.588495575221239], + [29027,0.447006651884701], + [29029,0.560741121015541], + [29031,0.521676504645974], + [29033,0.647337278106509], + [29035,0.683943457774556], + [29037,0.380368867885074], + [29039,0.664952728479018], + [29041,0.537017726798749], + [29043,0.568777569335294], + [29045,0.544940289126336], + [29047,0.118486001365721], + [29049,0.465835929387331], + [29051,0.385815243404567], + [29053,0.4885506287227], + [29055,0.617930456640134], + [29057,0.666579429468726], + [29059,0.645269327379291], + [29061,0.582021185227598], + [29063,0.622364802933089], + [29065,0.702599969590999], + [29067,0.695826893353941], + [29069,0.545542075871365], + [29071,0.483280638204318], + [29073,0.577409931840312], + [29075,0.584049501546923], + [29077,0.292076769599372], + [29079,0.632248939179632], + [29081,0.675614580389941], + [29083,0.500212134068731], + [29085,0.553896816684962], + [29087,0.695422535211268], + [29089,0.438542581211589], + [29091,0.656488549618321], + [29093,0.545543107647345], + [29095,-0.175748653500898], + [29097,0.536856410144006], + [29099,0.372337568021966], + [29101,0.396311015999185], + [29103,0.577008928571429], + [29105,0.669246276907069], + [29107,0.461261980830671], + [29109,0.637342009760981], + [29111,0.563610851262863], + [29113,0.530162216965191], + [29115,0.534473041517941], + [29117,0.588216145833333], + [29121,0.584792122538293], + [29123,0.606422557274329], + [29125,0.635194118998392], + [29127,0.517685923777294], + [29119,0.664732593340061], + [29129,0.746180963572268], + [29131,0.68282736746715], + [29133,0.423487544483986], + [29135,0.624069290381401], + [29137,0.574775672981057], + [29139,0.573445249904617], + [29141,0.585219941348974], + [29143,0.463279189226711], + [29145,0.609305240072061], + [29147,0.432195779074989], + [29149,0.618354290756673], + [29151,0.708315066491305], + [29153,0.668118267247307], + [29155,0.341455160744501], + [29157,0.639254776314228], + [29159,0.494916442678509], + [29161,0.454639175257732], + [29163,0.489830508474576], + [29165,0.138072453861928], + [29167,0.597397627248373], + [29169,0.543634657491398], + [29171,0.692307692307692], + [29173,0.554337184256902], + [29175,0.534651447207501], + [29177,0.393975076047493], + [29179,0.632902787219579], + [29181,0.689719626168224], + [29195,0.363989046097672], + [29197,0.619150080688542], + [29199,0.613756613756614], + [29201,0.573049814836937], + [29203,0.585248530197755], + [29205,0.612779552715655], + [29183,0.278515682832427], + [29185,0.578093306288033], + [29187,0.472951891048615], + [29189,-0.170404232133965], + [29510,-0.666891137244596], + [29186,0.367766023646546], + [29207,0.710733590733591], + [29209,0.640037418147802], + [29211,0.563485477178423], + [29213,0.613659485999912], + [29215,0.674054512873715], + [29217,0.585519922254616], + [29219,0.478833865814696], + [29221,0.570712136409228], + [29223,0.661296097386323], + [29225,0.603424571928509], + [29227,0.611166500498505], + [29229,0.70364722328123], + [28001,-0.149095135314627], + [28003,0.629818633197711], + [28005,0.228694404591105], + [28007,0.201962158374212], + [28009,0.133316468504933], + [28011,-0.328489060895664], + [28013,0.39654067905189], + [28015,0.392106233862044], + [28017,0.0614711934156378], + [28019,0.395102246907347], + [28021,-0.718079673135853], + [28023,0.331240188383046], + [28025,-0.158580002034381], + [28027,-0.448886869604725], + [28029,-0.0532303251549368], + [28031,0.248101265822785], + [28033,0.35880864505939], + [28035,0.146782740348221], + [28037,0.292107795957652], + [28039,0.790377651319193], + [28041,0.63684710351377], + [28043,0.150493898895991], + [28045,0.610328638497653], + [28047,0.315140174535097], + [28049,-0.445264411571554], + [28051,-0.669774781236551], + [28053,-0.483221476510067], + [28055,-0.13997113997114], + [28057,0.768054823405377], + [28059,0.40904472691969], + [28061,-0.0398857006786523], + [28063,-0.744380554103502], + [28065,-0.202715809893308], + [28067,0.443070730304773], + [28069,-0.227795874049946], + [28071,0.154140127388535], + [28073,0.571398224072736], + [28075,0.233955905069513], + [28077,0.302414840876379], + [28079,0.143164950921714], + [28081,0.384934567507182], + [28083,-0.415518337926648], + [28085,0.40591684434968], + [28087,0.0640074587539017], + [28089,0.164881155464574], + [28091,0.366048451504126], + [28093,-0.0980717395811735], + [28095,0.296434068753207], + [28097,0.136042832806035], + [28099,0.480984340044743], + [28101,0.398678933710781], + [28103,-0.571402649246961], + [28105,-0.0115964437572478], + [28107,0.00483947924476857], + [28109,0.683560084557429], + [28111,0.544351073762839], + [28113,0.00728029121164853], + [28115,0.63285776048422], + [28117,0.574428659666461], + [28119,-0.39533474704635], + [28121,0.541270927573486], + [28123,0.178934400985525], + [28125,-0.351492928234678], + [28127,0.312677556818182], + [28129,0.572441471571906], + [28131,0.549114331723027], + [28133,-0.406518010291595], + [28135,-0.15088808415244], + [28137,0.320046474215748], + [28139,0.597775305895439], + [28141,0.755766621438263], + [28143,-0.508340649692713], + [28145,0.64618149146451], + [28147,0.153701487433749], + [28149,0.0502843126324004], + [28151,-0.368779538504309], + [28153,0.260740740740741], + [28155,0.595555555555556], + [28157,-0.368191721132898], + [28159,0.12667591308368], + [28161,0.133333333333333], + [28163,-0.0667075288589233], + [30001,0.488297384121156], + [30003,-0.0585516178736518], + [30005,0.0294358135731807], + [30007,0.608981001727116], + [30009,0.343057806591032], + [30011,0.812583668005355], + [30013,0.232195184099885], + [30015,0.393762993762994], + [30017,0.512681912681913], + [30019,0.627232142857143], + [30021,0.615083251714006], + [30023,-0.0751198721363878], + [30025,0.784615384615385], + [30027,0.559565457558461], + [30029,0.388945326930181], + [30031,-0.0109866847308369], + [30033,0.901018922852984], + [30035,-0.316217372700043], + [30037,0.674311926605505], + [30039,0.432889963724305], + [30041,0.189095928226363], + [30043,0.349687191307211], + [30045,0.577797998180164], + [30047,0.226225732148733], + [30049,0.075300038714673], + [30051,0.544444444444445], + [30053,0.534246575342466], + [30057,0.472502805836139], + [30055,0.695652173913044], + [30059,0.584330794341676], + [30061,0.439303211758302], + [30063,-0.172409847632487], + [30065,0.711169284467714], + [30067,0.160967472894078], + [30069,0.803921568627451], + [30071,0.689655172413793], + [30073,0.415774871185097], + [30075,0.747765640516385], + [30077,0.572096648480125], + [30079,0.694656488549618], + [30081,0.408224962810116], + [30083,0.706192358366272], + [30085,0.0675759454432734], + [30087,0.390566037735849], + [30089,0.557948530753787], + [30091,0.44424985405721], + [30093,-0.154963844022437], + [30095,0.601235112483458], + [30097,0.597573306370071], + [30099,0.456514382402707], + [30101,0.578669482576558], + [30103,0.711491442542787], + [30105,0.505442366731789], + [30107,0.591790193842645], + [30109,0.786407766990291], + [30111,0.293651324591919], + [37001,0.132838540509311], + [37003,0.573281747837961], + [37005,0.489094124582433], + [37007,-0.127131027764247], + [37009,0.458102735988776], + [37011,0.577001013171226], + [37013,0.24934202010614], + [37015,-0.253516589713304], + [37017,0.095930981200103], + [37019,0.294751132602163], + [37021,-0.150434462218674], + [37023,0.403888631343569], + [37025,0.205909008519123], + [37027,0.518480316314251], + [37029,0.471729605674943], + [37031,0.455736249098074], + [37033,0.117298923061997], + [37035,0.390843847667554], + [37037,-0.103806137231661], + [37039,0.584467455621302], + [37041,0.146516983304548], + [37043,0.529493648860275], + [37045,0.311804111804112], + [37047,0.223843232044199], + [37049,0.223704953704732], + [37051,-0.164552990521484], + [37053,0.518118671018495], + [37055,0.228951094651999], + [37057,0.506310721103165], + [37059,0.495610226724554], + [37061,0.194377549515899], + [37063,-0.619819721536594], + [37065,-0.325509827253703], + [37067,-0.10578009457141], + [37069,0.120455871751742], + [37071,0.329749375331264], + [37073,0.0919188050555342], + [37075,0.621487192240736], + [37077,0.025563110115091], + [37079,0.0993945509586276], + [37081,-0.205729187889654], + [37083,-0.271914132379249], + [37085,0.247564600960439], + [37087,0.288126324424089], + [37089,0.287523324697911], + [37091,-0.381759807364302], + [37093,-0.111779680629484], + [37095,0.142985208426714], + [37097,0.378131162139813], + [37099,0.124030110017371], + [37101,0.315303702802943], + [37103,0.180650341228422], + [37105,0.13518017079775], + [37107,0.0638094479407314], + [37109,0.48889293044766], + [37113,0.426285849727424], + [37115,0.26669174346436], + [37117,0.00513347022587274], + [37111,0.515186306231082], + [37119,-0.308927559728682], + [37121,0.594110115236876], + [37123,0.26498479155484], + [37125,0.304280390340579], + [37127,0.00255599358835501], + [37129,0.042389687654933], + [37131,-0.264453407798118], + [37133,0.358630229167445], + [37135,-0.525723431167557], + [37137,0.270294648226098], + [37139,-0.0225554816472153], + [37141,0.311744877476044], + [37143,0.287845819086105], + [37145,0.17704362558238], + [37147,-0.0758423277922214], + [37149,0.289199272935999], + [37151,0.579816808613209], + [37153,0.103250581426794], + [37155,0.0495720307206951], + [37157,0.306169792694965], + [37159,0.376323137866095], + [37161,0.488694458740779], + [37163,0.169327048758268], + [37165,-0.0790897635460678], + [37167,0.513265731351577], + [37169,0.570325146847972], + [37171,0.519089645362558], + [37173,0.238725404840676], + [37175,0.231177406992512], + [37177,0.157202630005977], + [37179,0.321125244228239], + [37181,-0.249794576828266], + [37183,-0.212915684201968], + [37185,-0.337612838515547], + [37187,-0.153719008264463], + [37189,-0.0157239571958943], + [37191,0.119476268412439], + [37193,0.563308947664603], + [37195,-0.0573138045861873], + [37197,0.629607785314067], + [37199,0.333682446585673], + [38001,0.614285714285714], + [38003,0.328003366294972], + [38005,0.0480497456189939], + [38007,0.789090909090909], + [38009,0.543532338308458], + [38011,0.728468899521531], + [38013,0.763289869608826], + [38015,0.498893091043262], + [38017,0.118923256697968], + [38019,0.480349344978166], + [38021,0.500679655641142], + [38023,0.559383499546691], + [38025,0.66239924134661], + [38027,0.381118881118881], + [38029,0.772125066242713], + [38031,0.562855337965888], + [38033,0.778026905829596], + [38035,0.202445401981365], + [38037,0.708949416342412], + [38039,0.479475982532751], + [38041,0.72], + [38043,0.721400778210117], + [38045,0.493670886075949], + [38047,0.771195097037794], + [38049,0.615415821501014], + [38051,0.649096385542169], + [38053,0.680514115216892], + [38055,0.562997753726771], + [38057,0.715539136458093], + [38059,0.572520144484579], + [38061,0.356193514088251], + [38063,0.313260730301089], + [38065,0.748414376321353], + [38067,0.52790294627383], + [38069,0.53755364806867], + [38071,0.362423215420462], + [38073,0.18239608801956], + [38075,0.66044142614601], + [38077,0.39498754213689], + [38079,-0.268218929543393], + [38081,0.221785513756317], + [38083,0.745257452574526], + [38085,-0.495069033530572], + [38087,0.791563275434243], + [38089,0.695542179185205], + [38091,0.195991091314031], + [38093,0.459412404787813], + [38095,0.41233140655106], + [38097,0.292404340376927], + [38099,0.439018522973298], + [38101,0.525109662608125], + [38103,0.621157323688969], + [38105,0.707018290089324], + [31001,0.475514947503406], + [31003,0.754034861200775], + [31005,0.873517786561265], + [31007,0.903485254691689], + [31009,0.801980198019802], + [31011,0.694802801326944], + [31013,0.576726626693316], + [31015,0.768535262206148], + [31017,0.800391389432485], + [31019,0.509260228105054], + [31021,0.435523114355231], + [31023,0.632783395423098], + [31025,0.415815680648156], + [31027,0.721315468940317], + [31029,0.809151785714286], + [31031,0.784353741496599], + [31033,0.674397031539889], + [31035,0.669363348575448], + [31037,0.433949801849405], + [31039,0.62595219332808], + [31041,0.758141306417825], + [31043,0.162146566647432], + [31045,0.530502392344498], + [31047,0.474351012296609], + [31049,0.741657696447793], + [31051,0.571813631112823], + [31053,0.372524141819976], + [31055,-0.0147377964679444], + [31057,0.804824561403509], + [31059,0.549815498154982], + [31061,0.686520376175549], + [31063,0.74585635359116], + [31065,0.726002703920685], + [31067,0.367375580265573], + [31069,0.700587084148728], + [31071,0.742553191489362], + [31073,0.655172413793103], + [31075,0.896640826873385], + [31077,0.625334522747547], + [31079,0.394309945268971], + [31081,0.623382226056946], + [31083,0.712031558185404], + [31085,0.880239520958084], + [31087,0.770014556040757], + [31089,0.782363977485929], + [31091,0.79746835443038], + [31093,0.615275813295615], + [31095,0.483530142945929], + [31097,0.412997903563941], + [31099,0.6415770609319], + [31101,0.702365134201435], + [31103,0.843058350100604], + [31105,0.705958549222798], + [31107,0.632956878850103], + [31109,-0.000636421492863026], + [31111,0.612911903160726], + [31113,0.851851851851852], + [31115,0.741239892183288], + [31119,0.595933540702526], + [31117,0.896678966789668], + [31121,0.658036984352774], + [31123,0.727536231884058], + [31125,0.635653871177619], + [31127,0.459936463113307], + [31129,0.66164316966456], + [31131,0.411094890510949], + [31133,0.55324259407526], + [31135,0.765051395007342], + [31137,0.740631387690211], + [31139,0.777518928363425], + [31141,0.612347877708519], + [31143,0.661728395061728], + [31145,0.736907216494845], + [31147,0.541642734060885], + [31149,0.815059445178336], + [31151,0.272158964054476], + [31153,0.234198996586182], + [31155,0.497948974487244], + [31157,0.519041440891399], + [31159,0.486906710310966], + [31161,0.769168684422922], + [31163,0.543551654287644], + [31165,0.77319587628866], + [31167,0.677992277992278], + [31169,0.605316149818768], + [31171,0.839572192513369], + [31173,0.0530145530145529], + [31175,0.680113906027527], + [31177,0.477755511022044], + [31179,0.527262346560091], + [31181,0.623616236162362], + [31183,0.71753986332574], + [31185,0.597409238111471], + [33001,0.176596003898635], + [33003,0.0596625877923394], + [33005,-0.133230611196713], + [33007,0.0960093734923151], + [33009,-0.199915824915825], + [33011,0.00212422721215222], + [33013,-0.0324121635504417], + [33015,0.061329140289015], + [33017,-0.0910171028358816], + [33019,0.0278967913929353], + [34001,-0.0643843914258359], + [34003,-0.123582775571789], + [34005,-0.153390101117616], + [34007,-0.334379905808477], + [34009,0.205087168981926], + [34011,-0.0552499122088259], + [34013,-0.576519157937835], + [34015,0.00445598031566941], + [34017,-0.533577034177765], + [34019,0.145007571034114], + [34021,-0.374964239867963], + [34023,-0.204134838681409], + [34025,0.0978979178427921], + [34027,0.0456147081267488], + [34029,0.350302443361328], + [34031,-0.223361724317747], + [34033,0.160231246877453], + [34035,-0.129304480768324], + [34037,0.316548188847036], + [34039,-0.365409354254111], + [34041,0.26737668161435], + [35001,-0.203897656826412], + [35003,0.546567323044172], + [35005,0.398880373933366], + [35006,-0.0785507246376812], + [35007,0.0962235971836996], + [35009,0.462848297213622], + [35011,0.525339925834363], + [35013,-0.198729205913343], + [35015,0.447606441650121], + [35017,-0.0849525137230984], + [35019,-0.238892466194462], + [35021,0.331905781584583], + [35023,0.0747330960854094], + [35025,0.520855218439103], + [35027,0.433195424677537], + [35028,-0.240994072047424], + [35029,0.0424097107747641], + [35031,-0.45798947659928], + [35033,-0.396810933940775], + [35035,0.321715666985216], + [35037,0.369727047146402], + [35039,-0.453686056262865], + [35041,0.455743879472693], + [35043,-0.0311741576204542], + [35045,0.369807148998895], + [35047,-0.51795623494922], + [35049,-0.557377560245659], + [35051,0.304045237059591], + [35053,-0.11641384012272], + [35055,-0.591732045866023], + [35057,0.35224153705398], + [35059,0.584856396866841], + [35061,0.098603293725245], + [32510,0.154607433472619], + [32001,0.55967324168161], + [32003,-0.113089910482225], + [32005,0.346223751885224], + [32007,0.598630622122536], + [32009,0.67005076142132], + [32011,0.814303638644919], + [32013,0.53072625698324], + [32015,0.638727028238458], + [32017,0.708588957055215], + [32019,0.445081486163153], + [32021,0.298458149779736], + [32023,0.446646755362476], + [32027,0.530823786142935], + [32029,0.364864864864865], + [32031,-0.0130663339615057], + [32033,0.587755102040816], + [36001,-0.256701568040873], + [36003,0.447265987025023], + [36005,-0.804867541316283], + [36007,0.0390918145970063], + [36009,0.363374109914187], + [36011,0.14058318072968], + [36013,0.259898498897193], + [36015,0.211050638148891], + [36017,0.299463664761007], + [36019,-0.00995230405227776], + [36021,-0.0141813825881989], + [36023,0.0716405749869056], + [36025,0.308071509176219], + [36027,0.0112050905360883], + [36029,-0.0498740030938937], + [36031,0.0366939793373708], + [36033,0.0790645092913163], + [36035,0.374595992243051], + [36037,0.394208965637537], + [36039,0.288903773163653], + [36041,0.409501374165685], + [36043,0.364876051060864], + [36045,0.237560491376101], + [36047,-0.633193777195951], + [36049,0.419540229885057], + [36051,0.294149348243457], + [36053,0.17104797830956], + [36055,-0.149181009724891], + [36057,0.279201934703748], + [36059,-0.0546443493106614], + [36061,-0.794800284114649], + [36063,0.198938022920193], + [36065,0.223892275268492], + [36067,-0.135977305841318], + [36069,0.0922020818377602], + [36071,0.0672654365742864], + [36073,0.456031177321013], + [36075,0.247227846880725], + [36077,0.139042143817516], + [36079,0.18491221481551], + [36081,-0.547177087912357], + [36083,0.0305621893758472], + [36085,0.171909568372219], + [36087,-0.0522876900880582], + [36091,0.0465206792715653], + [36093,-0.0619560356393409], + [36095,0.367866108786611], + [36097,0.304534005037783], + [36099,0.129813351269548], + [36089,0.114500588963726], + [36101,0.382195780311794], + [36103,0.08499131089805], + [36105,0.142254676090437], + [36107,0.292879256965944], + [36109,-0.451906141696495], + [36111,-0.0965849915035905], + [36113,0.113762183235868], + [36115,0.215727341964966], + [36117,0.278524174511118], + [36119,-0.337660251611024], + [36121,0.536492339517745], + [36123,0.233480176211454], + [39001,0.572918606816912], + [39003,0.399386028636374], + [39005,0.504205361836341], + [39007,0.199335898381911], + [39009,-0.179611650485437], + [39011,0.651560009109542], + [39013,0.411047956162146], + [39015,0.539051114589518], + [39017,0.29626848536375], + [39019,0.487490771880896], + [39021,0.465777883585288], + [39023,0.204380715025361], + [39025,0.4330407577996], + [39027,0.547015911310242], + [39029,0.433889157960285], + [39031,0.453005808664007], + [39033,0.491874261935557], + [39035,-0.361928678343158], + [39037,0.635163740505541], + [39039,0.369689737470167], + [39041,0.168787535172819], + [39043,0.103134912696825], + [39045,0.282456583423707], + [39047,0.487877335888836], + [39049,-0.271883382012497], + [39051,0.38340206185567], + [39053,0.577281345313659], + [39055,0.265542766676651], + [39057,0.257953898502562], + [39059,0.445177993527508], + [39061,-0.0996268132927569], + [39063,0.432521990601277], + [39065,0.496976601524844], + [39067,0.502393776181927], + [39069,0.424606268517075], + [39071,0.582020558360197], + [39073,0.380908711963318], + [39075,0.658546017014695], + [39077,0.384615384615385], + [39079,0.507523510971787], + [39081,0.37096613710988], + [39083,0.399819018173592], + [39085,0.163173388557154], + [39087,0.454023675714456], + [39089,0.303621905793464], + [39091,0.5490731998211], + [39093,0.00297765225933211], + [39095,-0.183291543823878], + [39097,0.416557161629435], + [39099,-0.0310103123050387], + [39101,0.362593064867755], + [39103,0.260314077266286], + [39105,0.52204741856858], + [39107,0.675188702215729], + [39109,0.477768959973954], + [39111,0.487554449284381], + [39113,0.0130228539552988], + [39115,0.432127447726518], + [39117,0.519082485582842], + [39119,0.366865619748508], + [39121,0.574264445232187], + [39123,0.20721071863581], + [39125,0.509196629880147], + [39127,0.420355871886121], + [39129,0.445345727189021], + [39131,0.380309575233981], + [39133,0.106685027185872], + [39135,0.561094471800599], + [39137,0.673000341335761], + [39139,0.392269704864487], + [39141,0.285817290359795], + [39143,0.24485995810381], + [39145,0.381380540880943], + [39147,0.335933198752065], + [39149,0.628280471939348], + [39151,0.182684163362508], + [39153,-0.0851565860523778], + [39155,0.066702111162801], + [39157,0.373947368421053], + [39159,0.400740121761967], + [39161,0.589534436321662], + [39163,0.4808029623855], + [39165,0.39374030812145], + [39167,0.434719919256002], + [39169,0.366197183098592], + [39171,0.463890452072782], + [39173,0.0910028535084402], + [39175,0.494608341810783], + [40001,0.551493389913498], + [40003,0.798789007918025], + [40005,0.673041332510796], + [40007,0.837263060564031], + [40009,0.735541752933057], + [40011,0.604450625869263], + [40013,0.57816039873131], + [40015,0.456079181194466], + [40017,0.548135954294568], + [40019,0.549146623105954], + [40021,0.293713989771477], + [40023,0.59589821496392], + [40025,0.864341085271318], + [40027,0.23384588036619], + [40029,0.643074250976987], + [40031,0.252157426778243], + [40033,0.657788539144471], + [40035,0.548118668596237], + [40037,0.573740547254594], + [40039,0.576209677419355], + [40041,0.5621771950735], + [40043,0.796889295516926], + [40045,0.824362606232295], + [40047,0.569277551620972], + [40049,0.63308568598316], + [40051,0.633649803977139], + [40053,0.728476821192053], + [40055,0.642105263157895], + [40057,0.522388059701493], + [40059,0.817802503477052], + [40061,0.61476304870059], + [40063,0.557957681692732], + [40065,0.604138672399893], + [40067,0.6784140969163], + [40069,0.595133316075589], + [40071,0.530373537919759], + [40073,0.736097067745197], + [40075,0.543911878535278], + [40077,0.590336674376767], + [40079,0.608824061238021], + [40081,0.634567528843979], + [40083,0.525095227425499], + [40085,0.59781121751026], + [40093,0.809230769230769], + [40095,0.586558429299604], + [40097,0.542776998597476], + [40087,0.639366741460982], + [40089,0.655396992625227], + [40091,0.443263806900171], + [40099,0.586993725042784], + [40101,0.30698321593182], + [40103,0.608940972222222], + [40105,0.634752645828206], + [40107,0.494911622924478], + [40109,0.113219725294187], + [40111,0.341751221345359], + [40113,0.383759365359189], + [40115,0.493879149936343], + [40117,0.557206537890045], + [40119,0.309056588933894], + [40121,0.549501337873997], + [40123,0.482957375649328], + [40125,0.496034576811716], + [40127,0.654423654423654], + [40129,0.82203889216264], + [40131,0.592915334639579], + [40133,0.461648652168251], + [40135,0.561115492149975], + [40137,0.642434782608696], + [40139,0.687385740402194], + [40141,0.494809688581315], + [40143,0.243136137588065], + [40145,0.547745804973381], + [40147,0.516037781080692], + [40149,0.735075467447623], + [40151,0.699365262550491], + [40153,0.758055555555556], + [41001,0.551441883893716], + [41003,-0.371457514290538], + [41005,-0.0657315552824537], + [41007,-0.0661954112502247], + [41009,0.131204745703568], + [41011,0.261780851215513], + [41013,0.52800801530194], + [41015,0.254513584574934], + [41017,0.0410661707732838], + [41019,0.421244505551736], + [41021,0.481828839390387], + [41023,0.626435315131411], + [41025,0.619631901840491], + [41027,-0.327280317261532], + [41029,0.0986515993501185], + [41031,0.297119941669705], + [41033,0.335611104132647], + [41035,0.480366972477064], + [41037,0.653899145770185], + [41039,-0.205614371832169], + [41041,-0.108058195576776], + [41043,0.303695725882048], + [41045,0.52683344023947], + [41047,0.0536460504755718], + [41049,0.457590491626148], + [41051,-0.623337484954108], + [41053,0.0760697305863709], + [41055,0.564655172413793], + [41057,0.0644128989907278], + [41059,0.384018811105152], + [41061,0.444607293732218], + [41063,0.440591534931158], + [41065,0.104973442781265], + [41067,-0.289700123057631], + [41069,0.584239130434783], + [41071,0.0959150009703085], + [42001,0.37885540307991], + [42003,-0.170069540132634], + [42005,0.536054191363252], + [42007,0.207794930935968], + [42009,0.686752210854864], + [42011,0.106529658926799], + [42013,0.479579466184391], + [42015,0.482824112303881], + [42017,-0.00602910224605291], + [42019,0.391671011765773], + [42021,0.389517733415655], + [42023,0.522403258655805], + [42025,0.354565524230031], + [42027,-0.0203198704887375], + [42029,-0.0962036204402392], + [42031,0.493363490268437], + [42033,0.512796988199563], + [42035,0.363074329071238], + [42037,0.343195951948704], + [42039,0.401353766812202], + [42041,0.194367375899428], + [42043,-0.0293578422346226], + [42045,-0.227071606800905], + [42047,0.454763510981186], + [42049,0.0209665321284422], + [42051,0.317194622131995], + [42053,0.457068516912402], + [42055,0.481966624798134], + [42057,0.725227963525836], + [42059,0.428630334684901], + [42061,0.524077216801018], + [42063,0.36968231285039], + [42065,0.617473567056205], + [42067,0.639585822381521], + [42069,-0.0350168012437936], + [42071,0.207203876572877], + [42073,0.290146729162421], + [42075,0.369617393759706], + [42077,-0.0461553076568141], + [42079,0.202028504520712], + [42081,0.465878804156939], + [42083,0.49174520419758], + [42085,0.260211895520822], + [42087,0.595412479418611], + [42089,-0.00352002011440067], + [42091,-0.219148946502018], + [42093,0.298215384615385], + [42095,0.0396737547334693], + [42097,0.453365871079102], + [42099,0.542557921256731], + [42101,-0.683410415039942], + [42103,0.26849141681829], + [42105,0.655492248575593], + [42107,0.448607836995763], + [42109,0.49162473727788], + [42111,0.575560292677306], + [42113,0.508132726089785], + [42115,0.448257080610022], + [42117,0.56041038020519], + [42119,0.266798064862928], + [42121,0.442936196377052], + [42123,0.427283511269276], + [42125,0.262430791308352], + [42127,0.409424470392763], + [42129,0.323537937737662], + [42131,0.401908269166388], + [42133,0.306157099418093], + [44001,-0.239825953416944], + [44003,0.00738216922203283], + [44005,-0.204620900278847], + [44007,-0.221095387162704], + [44009,-0.10624742097879], + [45001,0.289841209106562], + [45003,0.287856932793704], + [45005,-0.550997150997151], + [45007,0.454561951548303], + [45009,-0.277659049810949], + [45011,0.0531078315199827], + [45013,0.149634144588359], + [45015,0.183778357759486], + [45017,0.0293717704650531], + [45019,-0.0840937174718927], + [45021,0.427025501082149], + [45023,0.0498051104374189], + [45025,0.146757679180887], + [45027,-0.0261407163497077], + [45029,0.0878495718306485], + [45031,0.0383855196088629], + [45033,-0.0170023541721162], + [45035,0.185300804180381], + [45037,0.207447277861114], + [45039,-0.265693430656934], + [45041,0.0510974914481186], + [45043,0.134127191834598], + [45045,0.262686432115335], + [45047,0.227084393399724], + [45049,-0.194309507286607], + [45051,0.390609705516383], + [45053,-0.121607027143783], + [45055,0.258349245235436], + [45057,0.264765784114053], + [45059,0.309389029865313], + [45061,-0.299158185701721], + [45063,0.388865219243711], + [45067,-0.221266838635712], + [45069,-0.164064801178203], + [45065,0.0335282651072124], + [45071,0.234173704000493], + [45073,0.502478565861263], + [45075,-0.375953048444992], + [45077,0.555091226331775], + [45079,-0.345309455551832], + [45081,0.325893928485721], + [45083,0.312210640664201], + [45085,-0.123745819397993], + [45087,0.197793805685193], + [45089,-0.343370240345666], + [45091,0.232751802744824], + [46003,0.482496194824962], + [46005,0.399403172608764], + [46007,0.235621521335807], + [46009,0.49875400498398], + [46011,0.160746538229982], + [46013,0.276203119814139], + [46015,0.465355805243446], + [46017,-0.267665952890792], + [46019,0.657608695652174], + [46021,0.740420271940667], + [46023,0.436237564063913], + [46025,0.482108002602472], + [46027,-0.105787576849693], + [46029,0.41963795940757], + [46031,0.0471950133570793], + [46033,0.492063492063492], + [46035,0.373003194888179], + [46037,0.251057285659362], + [46039,0.411157024793388], + [46041,-0.101863354037267], + [46043,0.724226804123711], + [46045,0.580805295091009], + [46047,0.507202881152461], + [46049,0.615819209039548], + [46051,0.421068337809609], + [46053,0.607232546459066], + [46055,0.847976307996051], + [46057,0.574059861857253], + [46059,0.612753623188406], + [46061,0.558563248308173], + [46063,0.896174863387978], + [46065,0.357470812016267], + [46067,0.568712994702399], + [46069,0.625748502994012], + [46071,0.381818181818182], + [46073,0.421052631578947], + [46075,0.734104046242775], + [46077,0.409987410826689], + [46079,0.271410579345088], + [46081,0.376613727129191], + [46083,0.314867444326617], + [46085,0.451708766716196], + [46091,0.166850828729282], + [46087,0.484484898634671], + [46089,0.645756457564576], + [46093,0.583083270817705], + [46095,0.25625], + [46097,0.430597771023303], + [46099,0.157364458453195], + [46101,0.247924936845904], + [46113,-0.824408014571949], + [46103,0.358494006107845], + [46105,0.752794214332676], + [46107,0.665109034267913], + [46109,0.163814180929095], + [46111,0.545283018867925], + [46115,0.337179949513163], + [46117,0.554502369668247], + [46119,0.66421568627451], + [46121,-0.511044176706827], + [46123,0.634926906361122], + [46125,0.506926629040534], + [46127,0.407318695941451], + [46129,0.611559711007225], + [46135,0.262758235622557], + [46137,0.0222222222222221], + [47001,0.361242068696608], + [47003,0.543904575780039], + [47005,0.523671029245435], + [47007,0.603276510958601], + [47009,0.511421063270669], + [47011,0.616084276832017], + [47013,0.628675256029072], + [47015,0.561184723304754], + [47017,0.537895365028844], + [47019,0.660638820638821], + [47021,0.488926970735565], + [47023,0.618524000845845], + [47025,0.648560460652591], + [47027,0.503336845802599], + [47029,0.663579984708181], + [47031,0.504856396866841], + [47033,0.506724758476984], + [47035,0.593784163673278], + [47037,-0.275333064190553], + [47039,0.600357621814931], + [47041,0.534621099554235], + [47043,0.473760526462551], + [47045,0.566589684372594], + [47047,0.379726085347152], + [47049,0.691531127313517], + [47051,0.449993709900616], + [47053,0.447830198591993], + [47055,0.464105156723964], + [47057,0.703036541430777], + [47059,0.629785924656029], + [47061,0.568339100346021], + [47063,0.59074018278598], + [47065,0.174737345151246], + [47067,0.702402957486137], + [47069,0.0812238608848779], + [47071,0.66327589786174], + [47073,0.651767513548451], + [47075,-0.103366100685136], + [47077,0.637684083114787], + [47079,0.511957908163265], + [47081,0.514384656366542], + [47083,0.431855500821018], + [47085,0.429441624365482], + [47087,0.481872418540615], + [47089,0.617534246575342], + [47091,0.690670006261741], + [47093,0.254251564492689], + [47095,0.403309203722854], + [47097,0.143793911007026], + [47099,0.629790026246719], + [47101,0.601700604162005], + [47103,0.60541586073501], + [47105,0.563099893352293], + [47111,0.707816123311963], + [47113,0.160042438586469], + [47115,0.461604339137882], + [47117,0.482886972310486], + [47119,0.406868400035496], + [47107,0.614191419141914], + [47109,0.618624819326864], + [47121,0.591700453136179], + [47123,0.615110305228166], + [47125,0.196904047698404], + [47127,0.648351648351648], + [47129,0.67510027769207], + [47131,0.594142259414226], + [47133,0.514128532133033], + [47135,0.568017366136035], + [47137,0.580430528375734], + [47139,0.605607182233423], + [47141,0.469800216818956], + [47143,0.633308157099698], + [47145,0.532953227676846], + [47147,0.490221692857417], + [47149,0.275107614665281], + [47151,0.732301519059903], + [47153,0.616773017319964], + [47155,0.639400624588144], + [47157,-0.285122579200717], + [47159,0.529346159208142], + [47161,0.519465198584349], + [47163,0.585645450275715], + [47165,0.468106302557942], + [47167,0.490208186309104], + [47169,0.380013149243919], + [47171,0.636153624025412], + [47173,0.665230361286046], + [47175,0.543026706231454], + [47177,0.459066564651875], + [47179,0.448815226145564], + [47181,0.750652060511216], + [47183,0.529351796788718], + [47185,0.612169702073903], + [47187,0.374858802646442], + [47189,0.464927320163996], + [48001,0.593536282757369], + [48003,0.648813274522159], + [48005,0.483769346664841], + [48007,0.51747153513938], + [48009,0.811438143096435], + [48011,0.859154929577465], + [48013,0.299478576286556], + [48015,0.612077617932419], + [48017,0.54367816091954], + [48019,0.650784016186141], + [48021,0.21433622390115], + [48023,0.737997256515775], + [48025,0.158807720498412], + [48027,0.158544771110216], + [48029,-0.14128849096812], + [48031,0.543988269794721], + [48033,0.828254847645429], + [48035,0.66403578005788], + [48037,0.476588430535799], + [48039,0.255582054472556], + [48041,0.253164351814337], + [48043,0.0517503805175039], + [48045,0.745810055865922], + [48047,-0.51921568627451], + [48049,0.76215978284792], + [48051,0.561921551344204], + [48053,0.588139281828074], + [48055,0.165757223365238], + [48057,0.373001776198934], + [48059,0.790637670475489], + [48061,-0.336751135198477], + [48063,0.435104236718225], + [48065,0.826238660153524], + [48067,0.606368089573128], + [48069,0.457452294997421], + [48071,0.637540852192144], + [48073,0.57633541131891], + [48075,0.753771289537713], + [48077,0.781758957654723], + [48079,0.562715765247411], + [48081,0.800711743772242], + [48083,0.782828282828283], + [48085,0.177990312492652], + [48087,0.74290780141844], + [48089,0.523614457831325], + [48091,0.52111152428924], + [48093,0.690251572327044], + [48095,0.713455953533398], + [48097,0.697789806044204], + [48099,0.414326249348544], + [48101,0.705263157894737], + [48103,0.555720653789005], + [48105,0.449704142011834], + [48107,0.432038834951456], + [48109,-0.237057220708447], + [48111,0.7], + [48113,-0.273313815543006], + [48115,0.518870642466148], + [48117,0.42138671875], + [48119,0.64221824686941], + [48121,0.211963821975463], + [48123,0.65192624793884], + [48125,0.710079275198188], + [48127,-0.380997775659358], + [48129,0.731448763250884], + [48131,-0.357892168821664], + [48133,0.77122641509434], + [48135,0.419050595153547], + [48137,0.420901246404602], + [48139,0.468985640285883], + [48141,-0.454537275835183], + [48143,0.676893145764741], + [48145,0.34296875], + [48147,0.635817823140921], + [48149,0.605197215777262], + [48151,0.516786570743405], + [48153,0.544025157232704], + [48155,0.544354838709678], + [48157,-0.0685891603459853], + [48159,0.686911487758945], + [48161,0.608100858369099], + [48163,-0.0641853399164452], + [48165,0.734902309058615], + [48167,0.235686870638034], + [48169,0.69039391845197], + [48171,0.640876600424162], + [48173,0.884156729131175], + [48175,0.458089668615984], + [48177,0.490157800553115], + [48179,0.805671392827356], + [48181,0.548803512623491], + [48183,0.423405099712273], + [48185,0.526082730316449], + [48187,0.331861394449209], + [48189,0.504563233376793], + [48191,0.689099526066351], + [48193,0.728995756718529], + [48195,0.820094687006838], + [48197,0.657967032967033], + [48199,0.751642164529246], + [48201,-0.12906105090892], + [48203,0.448185124990326], + [48205,0.818852027382833], + [48207,0.634245777518928], + [48209,0.0091701946235434], + [48211,0.7794028031688], + [48213,0.613386715942922], + [48215,-0.419075334484634], + [48217,0.597938144329897], + [48219,0.643404255319149], + [48221,0.684563229265216], + [48223,0.620345140781108], + [48225,0.516558719296102], + [48227,0.579197905509937], + [48229,0.216444981862152], + [48231,0.582258759571718], + [48233,0.783605726593184], + [48235,0.76], + [48237,0.808944326133252], + [48239,0.650290135396519], + [48241,0.607598784194529], + [48243,0.243727598566308], + [48245,0.00497465740566927], + [48247,-0.583535108958838], + [48249,-0.105545912885362], + [48251,0.603367903732881], + [48253,0.674782608695652], + [48255,0.442359249329759], + [48257,0.484196774031456], + [48259,0.623445273631841], + [48261,-0.0819672131147541], + [48263,0.718377088305489], + [48265,0.58204542400215], + [48267,0.783499737256963], + [48269,0.935064935064935], + [48271,0.343862167982771], + [48273,-0.0384488267048584], + [48275,0.627169811320755], + [48277,0.605075862068966], + [48279,0.595800524934383], + [48281,0.623184713375796], + [48283,-0.127819548872181], + [48285,0.724997061934422], + [48287,0.569095477386935], + [48289,0.750958904109589], + [48291,0.590753785801662], + [48293,0.533555703802535], + [48295,0.791344667697064], + [48297,0.647171162568632], + [48299,0.638899881282153], + [48301,0.868852459016394], + [48303,0.402151365454118], + [48305,0.586454592098512], + [48313,0.583451536643026], + [48315,0.439379243452958], + [48317,0.690517742873764], + [48319,0.648581383773021], + [48321,0.416376912378303], + [48323,-0.573753121925377], + [48307,0.682749504296101], + [48309,0.281560877130069], + [48311,0.838056680161943], + [48325,0.445497061997842], + [48327,0.633093525179856], + [48329,0.573759303887905], + [48331,0.512765449773324], + [48333,0.779096303057964], + [48335,0.669010782934834], + [48337,0.789561288788491], + [48339,0.53306249106833], + [48341,0.567652859960552], + [48343,0.414543960558751], + [48345,0.869067103109656], + [48347,0.367542761785565], + [48349,0.499687148041547], + [48351,0.503427265803504], + [48353,0.550655021834061], + [48355,0.0160511392100675], + [48357,0.811164713990352], + [48359,0.831896551724138], + [48361,0.63242339474615], + [48363,0.657327151783915], + [48365,0.642996108949416], + [48367,0.69581096380702], + [48369,0.385284523378036], + [48371,0.227204783258595], + [48373,0.577395431622664], + [48375,0.438032375825067], + [48377,-0.381990521327014], + [48379,0.727192595857206], + [48381,0.677487963804405], + [48383,0.618721461187215], + [48385,0.681265206812652], + [48387,0.547318611987382], + [48389,-0.0786736020806242], + [48391,0.277932960893855], + [48393,0.926470588235294], + [48395,0.358474082702388], + [48397,0.493386625995951], + [48399,0.755212564310859], + [48401,0.577109081139173], + [48403,0.733391228831958], + [48405,0.48568188261979], + [48407,0.596588655295518], + [48409,0.248643717893322], + [48411,0.747195858498706], + [48413,0.593385214007782], + [48415,0.714563862928349], + [48417,0.860904794058069], + [48419,0.606406810035842], + [48421,0.787375415282392], + [48423,0.451999157988583], + [48425,0.711692471970101], + [48427,-0.613049546406141], + [48429,0.794143744454303], + [48431,0.773828756058158], + [48433,0.608695652173913], + [48435,0.548991354466859], + [48437,0.566807313642757], + [48439,0.0910264422014757], + [48441,0.535065596149842], + [48443,0.344262295081967], + [48445,0.506689936009308], + [48447,0.78973717146433], + [48449,0.43240523314324], + [48451,0.500342531444387], + [48453,-0.414853713428357], + [48455,0.608215922593787], + [48457,0.683069862315145], + [48459,0.694658448895737], + [48461,0.543775100401607], + [48463,0.111034403405822], + [48465,-0.0832811521603005], + [48467,0.736951196532881], + [48469,0.412347155768208], + [48471,0.358223909718926], + [48473,0.293871780687196], + [48475,0.53026196928636], + [48477,0.527958115183246], + [48479,-0.531307133935521], + [48481,0.410857023701953], + [48483,0.829899167032004], + [48485,0.518605098869668], + [48487,0.593757865592751], + [48489,-0.378252975590075], + [48491,0.105039807521736], + [48493,0.489910015441137], + [48495,0.539221064179923], + [48497,0.716458220800266], + [48499,0.713302376399891], + [48501,0.616734143049933], + [48503,0.765951742627346], + [48505,-0.333333333333333], + [48507,-0.583759398496241], + [49001,0.748810656517602], + [49003,0.701103971000165], + [49005,0.425646736337159], + [49007,0.506833381797034], + [49009,0.622828784119107], + [49011,0.350920069005176], + [49013,0.833472106577852], + [49015,0.799523935466808], + [49017,0.635044064282011], + [49019,0.000517330574236974], + [49021,0.6530629070822], + [49023,0.727073552425665], + [49025,0.505189152996317], + [49027,0.799114425541832], + [49029,0.6931330472103], + [49031,0.890845070422535], + [49033,0.766292134831461], + [49035,-0.135407652934016], + [49037,0.137737478411053], + [49039,0.725006700616457], + [49041,0.811167227833895], + [49043,-0.177531445637815], + [49045,0.414210679894952], + [49047,0.815774958632102], + [49049,0.570049154232337], + [49051,0.332534321202876], + [49053,0.610042930680177], + [49055,0.559349593495935], + [49057,0.268166375300986], + [51001,0.120438670931523], + [51003,-0.267756858116469], + [51510,-0.623771097346139], + [51005,0.384768400113669], + [51007,0.37262912168077], + [51009,0.318340282999521], + [51011,0.477058291327388], + [51013,-0.640198511166253], + [51015,0.526678342089901], + [51017,0.439330543933054], + [51019,0.517104512415966], + [51021,0.700495867768595], + [51023,0.497004646996249], + [51520,0.454437164979154], + [51025,-0.189944134078212], + [51027,0.618107178519916], + [51029,0.118500774975342], + [51530,0.347764705882353], + [51031,0.49329851376781], + [51033,0.0529186320754718], + [51035,0.612869038607116], + [51036,-0.238068965517241], + [51037,0.235440340909091], + [51540,-0.716468101460415], + [51550,0.0134594807681478], + [51041,0.0237749425966214], + [51043,0.208982346832814], + [51570,0.411779324055666], + [51580,0.19222271321255], + [51045,0.596268656716418], + [51047,0.265449371591179], + [51049,0.13989417989418], + [51590,-0.204009369722722], + [51051,0.573958831977023], + [51053,0.127308507417499], + [51595,-0.318123116659492], + [51057,0.0223162754905732], + [51059,-0.383836727682981], + [51600,-0.331705552541147], + [51610,-0.629048086359176], + [51061,0.260906757912746], + [51063,0.39385953353538], + [51065,0.0992246847834599], + [51067,0.437979391028124], + [51620,-0.278130556261113], + [51069,0.372449919713601], + [51630,-0.283945878514538], + [51640,0.404292597459483], + [51071,0.505267165883995], + [51073,0.415882289300011], + [51075,0.263237290692412], + [51077,0.598], + [51079,0.340627114820663], + [51081,-0.191152502910361], + [51083,0.169278996865204], + [51650,-0.39481914604297], + [51085,0.34319446329217], + [51660,-0.236835660053882], + [51087,-0.221418366614695], + [51089,0.299410407587798], + [51091,0.441685477802859], + [51670,-0.0972464273265946], + [51093,0.218794542862961], + [51095,0.0543157894736843], + [51097,0.173219373219373], + [51099,0.294179894179894], + [51101,0.368445209409065], + [51103,0.103102475712943], + [51105,0.645108517831825], + [51678,-0.328070175438597], + [51107,-0.178575220299395], + [51109,0.257194137002692], + [51111,0.180412371134021], + [51680,0.0974180553012269], + [51113,0.334743202416918], + [51683,-0.171749598715891], + [51685,-0.30020202020202], + [51690,-0.24330985915493], + [51115,0.38440330838913], + [51117,0.115255150127912], + [51119,0.27030303030303], + [51121,-0.0141879908791487], + [51125,0.0604318385077296], + [51127,0.392042531298234], + [51700,-0.268334184107538], + [51710,-0.442527768428139], + [51131,-0.0957751220333277], + [51133,0.285263290819548], + [51720,0.454415954415955], + [51135,0.134994649136218], + [51137,0.276691364022835], + [51139,0.513639001741149], + [51141,0.569934322549258], + [51730,-0.784732030030477], + [51143,0.40556615056405], + [51735,0.52183014354067], + [51740,-0.380477749484661], + [51145,0.490710519708762], + [51147,-0.0565082287950282], + [51149,0.175783256291731], + [51153,-0.211639131512562], + [51155,0.424192212096106], + [51750,-0.0514388489208633], + [51157,0.185115843669553], + [51159,0.243258426966292], + [51760,-0.679303440052197], + [51161,0.295315254806481], + [51770,-0.186524031636585], + [51163,0.310995381743146], + [51165,0.459370488016171], + [51167,0.606889564336373], + [51775,0.263443210632159], + [51169,0.678444150290195], + [51171,0.455316069674885], + [51173,0.571083172147002], + [51175,0.166859791425261], + [51177,0.177056593509342], + [51179,0.0965828999173675], + [51790,-0.0191241155096576], + [51800,-0.144363220448555], + [51181,-0.0736896730669434], + [51183,-0.1661594643944], + [51185,0.67931320963722], + [51810,0.0474452781242825], + [51187,0.389732380220949], + [51191,0.553606629923161], + [51820,0.121028037383178], + [51193,0.0754904395331513], + [51830,-0.460393258426966], + [51840,-0.0376998089876345], + [51195,0.633674164962509], + [51197,0.568272308533063], + [51199,0.183389915755061], + [50001,-0.358483710790844], + [50003,-0.233704086911536], + [50005,-0.0761395892469527], + [50007,-0.497038248512252], + [50009,0.192871287128713], + [50011,-0.0330884383803789], + [50013,-0.169505724657917], + [50015,-0.339561557672741], + [50017,-0.201693425992491], + [50019,-0.00222458651707125], + [50021,-0.0443678160919541], + [50023,-0.398728701997217], + [50025,-0.448338551661448], + [50027,-0.341899954107389], + [53001,0.420425090720581], + [53003,0.293771234428086], + [53005,0.288566704820043], + [53007,0.16640866873065], + [53009,0.017218457148416], + [53011,-0.000590224340410561], + [53013,0.480635551142006], + [53015,0.148515796506634], + [53017,0.333826794966691], + [53019,0.332517589476904], + [53021,0.183309892170652], + [53023,0.505819158460161], + [53025,0.408152380952381], + [53027,0.0767233334685764], + [53029,-0.0642408712363869], + [53031,-0.354330708661417], + [53033,-0.53731650544489], + [53035,-0.128574490090661], + [53037,0.15585559142941], + [53039,0.175444335405081], + [53041,0.384405972180867], + [53043,0.53572098256141], + [53045,0.0656015111565858], + [53047,0.226057365094798], + [53049,0.0745848012078509], + [53051,0.386277001270648], + [53053,-0.0818621099233344], + [53055,-0.453627370156636], + [53057,-0.0346387334841091], + [53059,0.137385186632793], + [53061,-0.181133428981349], + [53063,0.0906131193681867], + [53065,0.435581229311352], + [53067,-0.168977111314886], + [53069,0.234200743494424], + [53071,0.175989085948158], + [53073,-0.192224708727634], + [53075,-0.00537193845033235], + [53077,0.163182866460038], + [55001,0.225647854143194], + [55003,-0.0936012691697514], + [55005,0.266064444030546], + [55007,-0.0912095175148712], + [55009,0.114757362090419], + [55011,0.230699088145897], + [55013,0.294736842105263], + [55015,0.228632050922775], + [55017,0.202672306710981], + [55019,0.343434343434343], + [55021,0.0229366082716271], + [55023,0.0574965612104539], + [55025,-0.506399423774829], + [55027,0.31210755706582], + [55029,0.0335942203491872], + [55031,-0.0802419162817277], + [55033,0.120027301092044], + [55035,-0.078501937831211], + [55037,0.480296527506828], + [55039,0.281882935893465], + [55041,0.275514874141877], + [55043,0.102706081986246], + [55045,-0.0240260469293814], + [55047,0.393939393939394], + [55049,-0.162049137480397], + [55051,0.242937853107345], + [55053,0.124427131072411], + [55055,0.17138710968775], + [55057,0.273564847625797], + [55059,0.00355177937182249], + [55061,0.292313702510011], + [55063,-0.102371312897629], + [55065,0.0948382656572608], + [55067,0.327557755775578], + [55069,0.220043572984749], + [55071,0.229409741513877], + [55073,0.191399688483034], + [55075,0.350972034515022], + [55077,0.253191489361702], + [55078,-0.577044025157233], + [55079,-0.39244525714506], + [55081,0.237708907999351], + [55083,0.384985110495794], + [55085,0.180687563195147], + [55087,0.134101010560298], + [55089,0.203279012345679], + [55091,0.247131262244612], + [55093,0.146639511201629], + [55095,0.293766330720418], + [55097,-0.0338784394708935], + [55099,0.261440619383382], + [55101,0.0461593698808429], + [55103,0.0584364306396421], + [55105,-0.110888320930824], + [55107,0.355308092056422], + [55111,0.00335786724553122], + [55113,0.238120733502878], + [55115,0.355676135759123], + [55117,0.176932586720966], + [55109,0.197780783603476], + [55119,0.466340269277846], + [55121,0.132539377641183], + [55123,0.0481828400149869], + [55125,0.26279177616324], + [55127,0.213273331370652], + [55129,0.244157937147462], + [55131,0.425375087830484], + [55133,0.285588645189224], + [55135,0.317075176838296], + [55137,0.337110975503443], + [55139,0.0794151625445647], + [55141,0.203447696871327], + [54001,0.576022369800769], + [54003,0.393189618984122], + [54005,0.568594241471086], + [54007,0.455599254812668], + [54009,0.441192590156747], + [54011,0.269496672481747], + [54013,0.63210972166196], + [54015,0.603502626970228], + [54017,0.734022903583303], + [54019,0.414708112206217], + [54021,0.557295960428689], + [54023,0.78960396039604], + [54025,0.434677541156925], + [54027,0.616638287521284], + [54029,0.464058760419246], + [54031,0.568789918867599], + [54033,0.417722479326303], + [54035,0.543723615059878], + [54037,0.163082913016547], + [54039,0.216644039804616], + [54041,0.59398267740465], + [54043,0.571129707112971], + [54045,0.65148978908604], + [54049,0.356259875453109], + [54051,0.535436230837146], + [54053,0.571901510448996], + [54047,0.527056097964587], + [54055,0.574713164935831], + [54057,0.632106413994169], + [54059,0.704577426685424], + [54061,0.112951348718261], + [54063,0.598599336527829], + [54065,0.569585506450727], + [54067,0.594883203559511], + [54069,0.340310968600641], + [54071,0.533718689788054], + [54073,0.581363943281567], + [54075,0.456150676868746], + [54077,0.588397559140684], + [54079,0.502216102241921], + [54081,0.548746320530553], + [54083,0.471427185407975], + [54085,0.746508018623901], + [54087,0.511217948717949], + [54089,0.48768898488121], + [54091,0.520375161707633], + [54093,0.546416691865739], + [54095,0.709101382488479], + [54097,0.596290359514541], + [54099,0.537297897439456], + [54101,0.609584214235377], + [54103,0.535892580478568], + [54105,0.664916885389326], + [54107,0.502791461412151], + [54109,0.720347917764892], + [56001,0.049209745324039], + [56003,0.745119073160266], + [56005,0.845164308268039], + [56007,0.55028129395218], + [56009,0.78409825468649], + [56011,0.850193477059149], + [56013,0.453374113359797], + [56015,0.654062149007862], + [56017,0.657973492945703], + [56019,0.689914945321993], + [56021,0.364455184534271], + [56023,0.719685438863521], + [56025,0.563197767145136], + [56027,0.813160032493907], + [56029,0.628571428571429], + [56031,0.653994225216555], + [56033,0.556397816858702], + [56035,0.682210708117444], + [56037,0.579747822695957], + [56039,-0.302056440843942], + [56041,0.673191952147906], + [56043,0.690967179785071], + [56045,0.815789473684211] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes-dem.json b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes-dem.json new file mode 100644 index 0000000..4ae382b --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes-dem.json @@ -0,0 +1,3163 @@ +{ + "metadata" : { + "name" : "2016 Presidential Election | Democrat Votes", + "description" : "Votes cast for Democrat party (dem) candidates in the 2016 presidential election.", + "units" : "votes", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Townhall.com" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.elections.presidential.2016.votes.dem"], + [2013,93003], + [2016,93003], + [2020,93003], + [2050,93003], + [2060,93003], + [2068,93003], + [2070,93003], + [2090,93003], + [2100,93003], + [2105,93003], + [2110,93003], + [2122,93003], + [2130,93003], + [2150,93003], + [2164,93003], + [2170,93003], + [2180,93003], + [2185,93003], + [2188,93003], + [2195,93003], + [2198,93003], + [2220,93003], + [2230,93003], + [2240,93003], + [2261,93003], + [2270,93003], + [2275,93003], + [2282,93003], + [2290,93003], + [1001,5908], + [1003,18409], + [1005,4848], + [1007,1874], + [1009,2150], + [1011,3530], + [1013,3716], + [1015,13197], + [1017,5763], + [1019,1524], + [1021,2909], + [1023,3109], + [1025,5712], + [1027,1234], + [1029,684], + [1031,4194], + [1033,7296], + [1035,3069], + [1037,1780], + [1039,2379], + [1041,1663], + [1043,3730], + [1045,4408], + [1047,12826], + [1049,3682], + [1051,8436], + [1053,4698], + [1055,10350], + [1057,1358], + [1059,2197], + [1061,1522], + [1063,4006], + [1065,4772], + [1067,2286], + [1069,10547], + [1071,3663], + [1073,151581], + [1075,1035], + [1077,9877], + [1079,3611], + [1081,20987], + [1083,9340], + [1085,4882], + [1087,7237], + [1089,62435], + [1091,5607], + [1093,1432], + [1095,4913], + [1097,68429], + [1099,4310], + [1101,58669], + [1103,11216], + [1105,3823], + [1107,3972], + [1109,5039], + [1111,2290], + [1113,9577], + [1117,22927], + [1115,5550], + [1119,4739], + [1121,12108], + [1123,5271], + [1125,31746], + [1127,4486], + [1129,2366], + [1131,4329], + [1133,871], + [5001,1939], + [5003,2408], + [5005,4163], + [5007,27894], + [5009,2925], + [5011,1317], + [5013,636], + [5015,3334], + [5017,2350], + [5019,3606], + [5021,1999], + [5023,2101], + [5025,723], + [5027,3140], + [5029,2655], + [5031,10474], + [5033,4476], + [5035,8368], + [5037,1995], + [5039,1165], + [5041,2227], + [5043,2364], + [5045,14525], + [5047,1376], + [5049,1067], + [5051,12283], + [5053,1407], + [5055,3056], + [5057,2371], + [5059,3137], + [5061,1350], + [5063,2878], + [5065,1111], + [5067,1583], + [5069,15721], + [5071,2421], + [5073,1028], + [5075,1263], + [5077,1735], + [5079,1252], + [5081,1397], + [5083,1712], + [5085,5638], + [5087,1587], + [5089,1377], + [5091,4273], + [5093,5621], + [5095,1298], + [5097,735], + [5099,1156], + [5101,699], + [5103,4320], + [5105,1035], + [5107,4292], + [5109,684], + [5111,1878], + [5113,1210], + [5115,4818], + [5117,812], + [5119,89377], + [5121,1425], + [5125,13247], + [5127,507], + [5129,601], + [5131,12184], + [5133,1075], + [5135,1472], + [5123,4031], + [5137,1189], + [5139,5667], + [5141,1547], + [5143,32296], + [5145,5157], + [5147,1117], + [5149,1472], + [4001,12196], + [4003,15291], + [4005,25308], + [4007,6746], + [4009,3301], + [4011,1092], + [4012,1318], + [4013,549040], + [4015,16485], + [4017,15362], + [4019,195649], + [4021,35737], + [4023,10684], + [4025,29705], + [4027,18336], + [6001,486351], + [6003,318], + [6005,5904], + [6007,38676], + [6009,7738], + [6011,2659], + [6013,286658], + [6015,3485], + [6017,35243], + [6019,123660], + [6021,3065], + [6023,19596], + [6025,28467], + [6027,3155], + [6029,86481], + [6031,12902], + [6033,6240], + [6035,2224], + [6037,1893770], + [6039,13283], + [6041,86650], + [6043,3122], + [6045,6905], + [6047,21856], + [6049,798], + [6051,2696], + [6053,64733], + [6055,26161], + [6057,16199], + [6059,556544], + [6061,61969], + [6063,3224], + [6065,339145], + [6067,273768], + [6069,10050], + [6071,312517], + [6073,567243], + [6075,312443], + [6077,89791], + [6079,63001], + [6081,219580], + [6083,100120], + [6085,483472], + [6087,85185], + [6089,20471], + [6091,601], + [6093,7106], + [6095,97159], + [6097,116027], + [6099,73939], + [6101,11831], + [6103,6571], + [6105,1876], + [6107,39099], + [6109,8580], + [6111,170489], + [6113,34460], + [6115,7234], + [8001,86471], + [8003,3168], + [8005,148365], + [8007,2489], + [8009,278], + [8011,581], + [8013,124715], + [8014,19530], + [8015,4773], + [8017,127], + [8019,2585], + [8021,1753], + [8023,1109], + [8025,336], + [8027,797], + [8029,4048], + [8031,174611], + [8033,227], + [8035,67045], + [8037,12652], + [8039,3056], + [8041,105807], + [8043,5275], + [8045,11205], + [8047,1634], + [8049,3319], + [8051,5068], + [8053,197], + [8055,1631], + [8057,171], + [8059,151885], + [8061,91], + [8063,526], + [8065,1600], + [8067,15300], + [8069,92170], + [8071,2614], + [8073,399], + [8075,1843], + [8077,20958], + [8079,237], + [8081,874], + [8083,3920], + [8085,5438], + [8087,3128], + [8089,1719], + [8091,1690], + [8093,3351], + [8095,436], + [8097,7239], + [8099,1173], + [8101,27945], + [8103,433], + [8105,1985], + [8107,7487], + [8109,1345], + [8111,265], + [8113,2960], + [8115,267], + [8117,9502], + [8119,3547], + [8121,289], + [8123,45869], + [8125,701], + [9001,238723], + [9003,233789], + [9005,39836], + [9007,45306], + [9009,203601], + [9011,62951], + [9013,38450], + [9015,21776], + [11001,260223], + [10001,33347], + [10003,162905], + [10005,39329], + [12001,75370], + [12003,2112], + [12005,21689], + [12007,2924], + [12009,119525], + [12011,546956], + [12013,1236], + [12015,33421], + [12017,22765], + [12019,27768], + [12021,60941], + [12023,7599], + [12027,3761], + [12029,1270], + [12031,203627], + [12033,57114], + [12035,21985], + [12037,1738], + [12039,14994], + [12041,1457], + [12043,1271], + [12045,1715], + [12047,1899], + [12049,2147], + [12051,4610], + [12053,31818], + [12055,14901], + [12057,306422], + [12059,852], + [12061,28997], + [12063,6383], + [12065,3537], + [12067,515], + [12069,62597], + [12071,124725], + [12073,91936], + [12075,5091], + [12077,651], + [12079,3526], + [12081,71066], + [12083,61958], + [12085,30158], + [12086,623006], + [12087,18949], + [12089,10849], + [12091,23711], + [12093,3953], + [12095,329579], + [12097,85287], + [12099,371411], + [12101,89998], + [12103,233327], + [12105,117182], + [12107,9920], + [12113,18398], + [12115,97676], + [12117,105611], + [12109,43037], + [12111,66812], + [12119,22631], + [12121,3955], + [12123,2149], + [12125,1014], + [12127,108793], + [12129,4348], + [12131,6861], + [12133,2261], + [13001,1434], + [13003,696], + [13005,607], + [13007,650], + [13009,7965], + [13011,684], + [13013,6580], + [13015,8204], + [13017,2098], + [13019,1041], + [13021,34383], + [13023,1094], + [13025,619], + [13027,2504], + [13029,4010], + [13031,8812], + [13033,4730], + [13035,2566], + [13037,1178], + [13039,5914], + [13043,1023], + [13045,12422], + [13047,4769], + [13049,1004], + [13051,58998], + [13053,593], + [13055,1612], + [13057,25203], + [13059,29514], + [13061,697], + [13063,75908], + [13065,685], + [13067,159416], + [13069,4090], + [13071,3460], + [13073,18863], + [13075,1752], + [13077,16572], + [13079,1419], + [13081,2835], + [13083,965], + [13085,1444], + [13087,4104], + [13089,239131], + [13091,1836], + [13093,1860], + [13095,23224], + [13097,30971], + [13099,2165], + [13101,156], + [13103,4851], + [13105,2507], + [13107,2433], + [13109,1130], + [13111,1920], + [13113,23255], + [13115,9127], + [13117,23427], + [13119,1243], + [13121,281875], + [13123,1955], + [13125,138], + [13127,11738], + [13129,3176], + [13131,3005], + [13133,3194], + [13135,165063], + [13137,2483], + [13139,16153], + [13141,2695], + [13143,1474], + [13145,4082], + [13147,2583], + [13149,743], + [13151,49902], + [13153,22460], + [13155,890], + [13157,4469], + [13159,1544], + [13161,901], + [13163,3809], + [13165,1108], + [13167,1136], + [13169,3960], + [13171,2267], + [13173,805], + [13175,6737], + [13177,3166], + [13179,9531], + [13181,1271], + [13183,1356], + [13185,14614], + [13187,2216], + [13193,2705], + [13195,2423], + [13197,1213], + [13189,3699], + [13191,2298], + [13199,3800], + [13201,622], + [13205,3492], + [13207,3570], + [13209,847], + [13211,2658], + [13213,1799], + [13215,39602], + [13217,21936], + [13219,5253], + [13221,1829], + [13223,18004], + [13225,5083], + [13227,1977], + [13229,903], + [13231,1239], + [13233,2863], + [13235,1104], + [13237,2745], + [13239,461], + [13241,1443], + [13243,1597], + [13245,48707], + [13247,23206], + [13249,401], + [13251,2300], + [13253,1186], + [13255,9347], + [13257,1835], + [13259,1220], + [13261,5520], + [13263,2001], + [13265,545], + [13267,1678], + [13269,1295], + [13271,1313], + [13273,2267], + [13275,7138], + [13277,3892], + [13279,2338], + [13281,1206], + [13283,860], + [13285,9597], + [13287,1243], + [13289,1970], + [13291,1962], + [13293,3471], + [13295,4213], + [13297,8279], + [13299,3436], + [13301,1313], + [13303,4187], + [13305,2039], + [13307,471], + [13309,646], + [13311,1672], + [13313,7925], + [13315,852], + [13317,1844], + [13319,1893], + [13321,2015], + [15001,41258], + [15003,175634], + [15007,16456], + [15009,33479], + [19001,1127], + [19003,565], + [19005,2409], + [19007,1813], + [19009,1079], + [19011,4672], + [19013,32006], + [19015,5517], + [19017,5349], + [19019,3966], + [19021,2851], + [19023,2163], + [19025,1396], + [19027,3305], + [19029,1946], + [19031,3578], + [19033,9840], + [19035,1676], + [19037,2264], + [19039,1463], + [19041,2246], + [19043,3236], + [19045,10079], + [19047,1985], + [19049,15662], + [19051,976], + [19053,1201], + [19055,2956], + [19057,8178], + [19059,3051], + [19061,22774], + [19063,1356], + [19065,3666], + [19067,3177], + [19069,1490], + [19071,959], + [19073,1688], + [19075,1847], + [19077,1720], + [19079,2715], + [19081,1582], + [19083,2774], + [19085,2123], + [19087,2897], + [19089,1674], + [19091,1251], + [19093,792], + [19095,3070], + [19097,3837], + [19099,7108], + [19101,3702], + [19103,49942], + [19105,3779], + [19107,1265], + [19109,2529], + [19111,6195], + [19113,58481], + [19115,1643], + [19117,1236], + [19119,917], + [19121,2666], + [19123,2606], + [19125,5469], + [19127,7623], + [19129,2080], + [19131,1879], + [19133,1244], + [19135,1053], + [19137,1312], + [19139,8284], + [19141,1314], + [19143,552], + [19145,1801], + [19147,1395], + [19149,2878], + [19151,962], + [19153,119671], + [19155,15341], + [19157,4272], + [19159,753], + [19161,1269], + [19163,40302], + [19165,1649], + [19167,2289], + [19169,25085], + [19171,3194], + [19173,755], + [19175,1920], + [19177,843], + [19179,5591], + [19181,10371], + [19183,3938], + [19185,719], + [19187,6293], + [19189,1920], + [19191,5238], + [19193,16102], + [19195,1523], + [19197,1890], + [16001,75676], + [16003,415], + [16005,10342], + [16007,255], + [16009,780], + [16011,2924], + [16013,6416], + [16015,777], + [16017,5140], + [16019,8930], + [16021,933], + [16023,160], + [16025,110], + [16027,16683], + [16029,271], + [16031,1036], + [16033,44], + [16035,704], + [16037,427], + [16039,1814], + [16041,385], + [16043,651], + [16045,1229], + [16047,930], + [16049,1196], + [16051,976], + [16053,2117], + [16055,16264], + [16057,8093], + [16059,733], + [16061,270], + [16063,360], + [16065,1201], + [16067,1167], + [16069,4828], + [16071,184], + [16073,591], + [16075,892], + [16077,699], + [16079,1384], + [16081,2157], + [16083,6844], + [16085,1913], + [16087,776], + [17001,7633], + [17003,1262], + [17005,2066], + [17007,8952], + [17009,475], + [17011,6010], + [17013,739], + [17015,2437], + [17017,1617], + [17019,49694], + [17021,3982], + [17023,1873], + [17025,1014], + [17027,3939], + [17029,7285], + [17031,1528582], + [17033,1969], + [17035,1028], + [17037,20348], + [17039,1907], + [17041,1946], + [17043,222499], + [17045,1778], + [17047,432], + [17049,3071], + [17051,1814], + [17053,1410], + [17055,4711], + [17057,6118], + [17059,656], + [17061,1202], + [17063,8021], + [17065,800], + [17067,1744], + [17069,419], + [17071,1151], + [17073,8835], + [17075,2496], + [17077,11619], + [17079,924], + [17081,4408], + [17083,2673], + [17085,4452], + [17087,1135], + [17089,99389], + [17091,18908], + [17093,23392], + [17095,9939], + [17097,168186], + [17099,19277], + [17101,1288], + [17103,5499], + [17105,4005], + [17107,3301], + [17115,18211], + [17117,6532], + [17119,50336], + [17121,4231], + [17123,1784], + [17125,2008], + [17127,1555], + [17109,5278], + [17111,59827], + [17113,35918], + [17129,1808], + [17131,3061], + [17133,5522], + [17135,3490], + [17137,4693], + [17139,1476], + [17141,8025], + [17143,37436], + [17145,2433], + [17147,2633], + [17149,1412], + [17151,374], + [17153,817], + [17155,1143], + [17157,3421], + [17159,1579], + [17161,32258], + [17165,2551], + [17167,40731], + [17169,1074], + [17171,528], + [17173,2279], + [17163,60180], + [17175,748], + [17177,7531], + [17179,20568], + [17181,2389], + [17183,9876], + [17185,1146], + [17187,2983], + [17189,1446], + [17191,1048], + [17193,1412], + [17195,11005], + [17197,146230], + [17199,8539], + [17201,52595], + [17203,5068], + [18001,2802], + [18003,55222], + [18005,9841], + [18007,860], + [18009,1243], + [18011,10181], + [18013,2518], + [18015,1891], + [18017,3758], + [18019,18791], + [18021,2306], + [18023,2819], + [18025,1323], + [18027,1800], + [18029,4883], + [18031,2121], + [18033,3941], + [18035,18100], + [18037,5389], + [18039,20667], + [18041,2252], + [18043,13939], + [18045,1476], + [18047,1967], + [18049,1960], + [18051,3720], + [18053,7029], + [18055,2929], + [18057,57214], + [18059,8901], + [18061,4776], + [18063,22595], + [18065,5124], + [18067,11215], + [18069,3506], + [18071,3843], + [18073,3329], + [18075,1889], + [18077,4325], + [18079,2364], + [18081,17318], + [18083,3772], + [18085,6311], + [18087,2080], + [18089,116896], + [18091,19795], + [18093,4210], + [18095,18595], + [18097,212676], + [18099,4798], + [18101,881], + [18103,2766], + [18105,34183], + [18107,3362], + [18109,6037], + [18111,1403], + [18113,3904], + [18115,686], + [18117,2048], + [18119,1946], + [18121,1441], + [18123,3062], + [18125,1297], + [18127,33531], + [18129,3515], + [18131,1327], + [18133,3356], + [18135,2446], + [18137,2471], + [18139,1525], + [18143,2642], + [18145,4247], + [18147,2861], + [18141,52247], + [18149,2489], + [18151,3741], + [18153,2113], + [18155,930], + [18157,27207], + [18159,1587], + [18161,715], + [18163,28296], + [18165,2081], + [18167,15922], + [18169,3018], + [18171,839], + [18173,9086], + [18175,2636], + [18177,8322], + [18179,2585], + [18181,2563], + [18183,3379], + [20001,1398], + [20003,665], + [20005,1946], + [20007,281], + [20009,1823], + [20011,1306], + [20013,850], + [20015,6489], + [20017,313], + [20019,236], + [20021,1959], + [20023,188], + [20025,118], + [20027,665], + [20029,744], + [20031,719], + [20033,102], + [20035,3436], + [20037,5064], + [20039,178], + [20041,1582], + [20043,584], + [20045,30089], + [20047,208], + [20049,160], + [20051,2669], + [20053,515], + [20055,3006], + [20057,2032], + [20059,2829], + [20061,2569], + [20063,149], + [20065,185], + [20067,427], + [20069,257], + [20071,83], + [20073,484], + [20075,114], + [20077,388], + [20079,5006], + [20081,228], + [20083,124], + [20085,1489], + [20087,2483], + [20089,180], + [20091,126324], + [20093,224], + [20095,594], + [20097,111], + [20099,2234], + [20101,104], + [20103,10064], + [20105,214], + [20107,721], + [20109,149], + [20111,4456], + [20115,1177], + [20117,1060], + [20113,3183], + [20119,206], + [20121,3949], + [20123,469], + [20125,2557], + [20127,586], + [20129,145], + [20131,714], + [20133,1464], + [20135,160], + [20137,277], + [20139,1730], + [20141,231], + [20143,424], + [20145,567], + [20147,296], + [20149,2191], + [20151,769], + [20153,160], + [20155,6670], + [20157,370], + [20159,668], + [20161,8892], + [20163,273], + [20165,227], + [20167,454], + [20169,6084], + [20171,232], + [20173,66716], + [20175,1491], + [20177,33270], + [20179,126], + [20181,340], + [20183,295], + [20185,303], + [20187,132], + [20189,215], + [20191,2039], + [20193,467], + [20195,193], + [20197,773], + [20199,45], + [20201,378], + [20203,139], + [20205,550], + [20207,270], + [20209,29346], + [21001,1323], + [21003,1349], + [21005,2634], + [21007,816], + [21009,4275], + [21011,1361], + [21013,1720], + [21015,15026], + [21017,2791], + [21019,6021], + [21021,4281], + [21023,705], + [21025,1537], + [21027,1960], + [21029,8255], + [21031,947], + [21033,1260], + [21035,4749], + [21037,14658], + [21039,432], + [21041,1106], + [21043,2276], + [21045,767], + [21047,7188], + [21049,4706], + [21051,752], + [21053,547], + [21055,617], + [21057,459], + [21059,14163], + [21061,979], + [21063,740], + [21065,1108], + [21067,69776], + [21069,1348], + [21071,4015], + [21073,10717], + [21075,774], + [21077,749], + [21079,1453], + [21081,1910], + [21083,3308], + [21085,1959], + [21087,832], + [21089,4146], + [21091,1244], + [21093,13944], + [21095,1372], + [21097,2031], + [21099,1730], + [21101,6707], + [21103,1828], + [21105,449], + [21107,4310], + [21109,482], + [21111,190824], + [21113,6144], + [21115,1250], + [21117,24213], + [21119,1245], + [21121,1761], + [21123,1278], + [21125,3440], + [21127,1045], + [21129,444], + [21131,400], + [21133,1542], + [21135,785], + [21137,1865], + [21139,887], + [21141,2755], + [21143,1045], + [21151,11793], + [21153,1172], + [21155,2679], + [21157,3672], + [21159,363], + [21161,1970], + [21145,9134], + [21147,664], + [21149,988], + [21163,3026], + [21165,700], + [21167,2395], + [21169,976], + [21171,601], + [21173,3158], + [21175,1006], + [21177,3272], + [21179,6434], + [21181,787], + [21183,2080], + [21185,10268], + [21187,1062], + [21189,256], + [21191,1164], + [21193,2136], + [21195,4277], + [21197,1272], + [21199,4208], + [21201,222], + [21203,915], + [21205,3295], + [21207,1093], + [21209,7713], + [21211,6276], + [21213,2144], + [21215,1921], + [21217,2553], + [21219,1042], + [21221,1587], + [21223,879], + [21225,1331], + [21227,16966], + [21229,1420], + [21231,1431], + [21233,1240], + [21235,2067], + [21237,753], + [21239,4958], + [22001,5638], + [22003,2106], + [22005,16471], + [22007,3931], + [22009,5032], + [22011,2393], + [22013,3129], + [22015,12638], + [22017,53448], + [22019,26293], + [22021,788], + [22023,323], + [22025,1322], + [22027,2717], + [22029,3272], + [22031,5163], + [22033,102711], + [22035,1838], + [22037,4235], + [22039,4208], + [22041,2506], + [22043,1181], + [22045,10698], + [22047,8324], + [22049,2139], + [22051,73540], + [22053,3080], + [22055,32726], + [22057,8423], + [22059,605], + [22061,7102], + [22063,6950], + [22065,2744], + [22067,5155], + [22069,7143], + [22071,133833], + [22073,24420], + [22075,3347], + [22077,4764], + [22079,18318], + [22081,1938], + [22083,3157], + [22085,1703], + [22087,4957], + [22089,8558], + [22091,3353], + [22093,6418], + [22095,12658], + [22097,17208], + [22099,8266], + [22101,8050], + [22103,27716], + [22105,16869], + [22107,1329], + [22109,10664], + [22111,2691], + [22113,4745], + [22115,2665], + [22117,5690], + [22119,6259], + [22121,5382], + [22123,715], + [22125,2247], + [22127,1643], + [25001,71632], + [25003,43540], + [25005,127619], + [25007,8338], + [25009,220027], + [25011,24369], + [25013,110313], + [25015,54572], + [25017,508919], + [25019,4144], + [25021,219129], + [25023,133828], + [25025,241212], + [25027,197126], + [24001,6665], + [24003,116074], + [24005,189437], + [24510,178562], + [24009,16669], + [24011,3747], + [24013,24314], + [24015,12651], + [24017,46063], + [24019,5695], + [24021,51891], + [24023,2252], + [24025,43803], + [24027,93808], + [24029,4178], + [24031,309761], + [24033,313627], + [24035,7316], + [24039,3484], + [24037,15786], + [24041,7865], + [24043,19193], + [24045,16327], + [24047,8783], + [23001,22975], + [23003,13377], + [23005,102935], + [23007,7001], + [23009,16107], + [23011,29296], + [23013,12440], + [23015,10241], + [23017,12172], + [23019,32832], + [23021,3098], + [23023,10679], + [23025,9092], + [23027,10442], + [23029,6358], + [23031,55828], + [26001,1732], + [26003,1663], + [26005,17932], + [26007,4877], + [26009,4448], + [26011,2238], + [26013,1156], + [26015,9109], + [26017,21641], + [26019,4108], + [26021,29496], + [26023,4740], + [26025,24154], + [26027,7270], + [26029,5137], + [26031,4302], + [26033,5378], + [26035,4250], + [26037,16490], + [26039,2110], + [26041,6431], + [26043,3923], + [26045,24534], + [26047,6972], + [26049,102744], + [26051,3794], + [26053,2925], + [26055,20964], + [26057,5665], + [26059,4799], + [26061,6018], + [26063,4579], + [26065,81266], + [26067,8206], + [26069,4344], + [26071,2004], + [26073,11404], + [26075,25795], + [26077,67142], + [26079,2279], + [26081,138567], + [26083,527], + [26085,1939], + [26087,12734], + [26089,6774], + [26091,16750], + [26093,34378], + [26095,681], + [26097,2085], + [26099,176238], + [26101,4979], + [26103,16042], + [26105,5281], + [26107,5827], + [26109,3539], + [26111,15655], + [26113,1565], + [26115,26859], + [26117,7874], + [26119,1286], + [26121,36640], + [26123,6212], + [26125,342976], + [26127,3973], + [26129,3030], + [26131,1175], + [26133,2705], + [26135,1044], + [26137,3556], + [26139,46276], + [26141,2400], + [26143,4287], + [26145,44395], + [26151,4873], + [26153,1369], + [26155,12547], + [26147,24553], + [26149,7529], + [26157,7493], + [26159,13258], + [26161,128025], + [26163,517842], + [26165,4436], + [27001,3134], + [27003,75499], + [27005,5208], + [27007,8688], + [27009,5640], + [27011,921], + [27013,14428], + [27015,3763], + [27017,8460], + [27019,21508], + [27021,4949], + [27023,1978], + [27025,9279], + [27027,12974], + [27029,1100], + [27031,1912], + [27033,1678], + [27035,10982], + [27037,110251], + [27039,3102], + [27041,6227], + [27043,2153], + [27045,3872], + [27047,6041], + [27049,9446], + [27051,1104], + [27053,429283], + [27055,4145], + [27057,3432], + [27059,5656], + [27061,9015], + [27063,1492], + [27065,2327], + [27067,7266], + [27069,823], + [27071,2306], + [27073,1301], + [27075,3077], + [27077,553], + [27079,4623], + [27081,860], + [27083,3825], + [27087,930], + [27089,1225], + [27091,2733], + [27085,4978], + [27093,3192], + [27095,3709], + [27097,3637], + [27099,7444], + [27101,1295], + [27103,7886], + [27105,2733], + [27107,1264], + [27109,36266], + [27111,9339], + [27113,2146], + [27115,4580], + [27117,1127], + [27119,4712], + [27121,2106], + [27123,176929], + [27125,540], + [27127,1887], + [27129,2117], + [27131,14437], + [27133,1373], + [27135,1856], + [27139,28502], + [27141,13299], + [27143,1954], + [27137,57769], + [27145,25575], + [27147,6239], + [27149,2116], + [27151,1679], + [27153,2783], + [27155,631], + [27157,3866], + [27159,1684], + [27161,2838], + [27163,67086], + [27165,1814], + [27167,893], + [27169,11366], + [27171,20336], + [27173,1524], + [29001,3495], + [29003,2045], + [29005,541], + [29007,2567], + [29009,2710], + [29011,795], + [29013,1617], + [29015,2024], + [29017,705], + [29019,41072], + [29021,12010], + [29023,3036], + [29025,837], + [29027,4988], + [29029,4706], + [29031,8468], + [29033,745], + [29035,436], + [29037,14816], + [29039,1010], + [29041,888], + [29043,8505], + [29045,724], + [29047,45182], + [29049,2572], + [29051,10907], + [29053,1932], + [29055,1824], + [29057,637], + [29059,1271], + [29061,730], + [29063,824], + [29065,978], + [29067,984], + [29069,2360], + [29071,12339], + [29073,1519], + [29075,605], + [29077,42400], + [29079,780], + [29081,574], + [29083,2356], + [29085,1016], + [29087,346], + [29089,1279], + [29091,2880], + [29093,933], + [29095,163723], + [29097,10565], + [29099,31546], + [29101,5924], + [29103,379], + [29105,2543], + [29107,4047], + [29109,2898], + [29111,933], + [29113,5561], + [29115,1239], + [29117,1265], + [29121,1518], + [29123,1005], + [29125,794], + [29127,2993], + [29119,1329], + [29129,216], + [29131,1750], + [29133,1458], + [29135,1237], + [29137,853], + [29139,1118], + [29141,1768], + [29143,1933], + [29145,4988], + [29147,2529], + [29149,865], + [29151,998], + [29153,724], + [29155,1946], + [29157,1520], + [29159,4322], + [29161,4761], + [29163,1806], + [29165,18915], + [29167,2630], + [29169,2918], + [29171,352], + [29173,1138], + [29175,2283], + [29177,3088], + [29179,540], + [29181,830], + [29195,2787], + [29197,354], + [29199,365], + [29201,3574], + [29203,776], + [29205,606], + [29183,68225], + [29185,936], + [29187,6250], + [29189,280866], + [29510,101487], + [29186,2540], + [29207,1873], + [29209,2886], + [29211,526], + [29213,4367], + [29215,1728], + [29217,1706], + [29219,3915], + [29221,1926], + [29223,946], + [29225,3173], + [29227,195], + [29229,1166], + [28001,6921], + [28003,2684], + [28005,2688], + [28007,2847], + [28009,1713], + [28011,8410], + [28013,1884], + [28015,1648], + [28017,3649], + [28019,1198], + [28021,2523], + [28023,2556], + [28025,5695], + [28027,6378], + [28029,6203], + [28031,3267], + [28033,19892], + [28035,11271], + [28037,1471], + [28039,1013], + [28041,956], + [28043,4386], + [28045,3320], + [28047,20679], + [28049,64922], + [28051,5820], + [28053,2652], + [28055,395], + [28057,1100], + [28059,13087], + [28061,4367], + [28063,3337], + [28065,3720], + [28067,7748], + [28069,2827], + [28071,7968], + [28073,5044], + [28075,10910], + [28077,2181], + [28079,3579], + [28081,9635], + [28083,6677], + [28085,4458], + [28087,11545], + [28089,18358], + [28091,3572], + [28093,7944], + [28095,5485], + [28097,1775], + [28099,2668], + [28101,2549], + [28103,4330], + [28105,7851], + [28107,7300], + [28109,2919], + [28111,1220], + [28113,7636], + [28115,2123], + [28117,2067], + [28119,2303], + [28121,13741], + [28123,3999], + [28125,1290], + [28127,3871], + [28129,1598], + [28131,1400], + [28133,6560], + [28135,3337], + [28137,3804], + [28139,1808], + [28141,990], + [28143,2577], + [28145,1969], + [28147,2475], + [28149,8518], + [28151,9847], + [28153,3493], + [28155,1001], + [28157,2826], + [28159,3778], + [28161,2574], + [28163,5221], + [30001,1115], + [30003,2061], + [30005,1187], + [30007,566], + [30009,1824], + [30011,70], + [30013,12053], + [30015,729], + [30017,1172], + [30019,167], + [30021,786], + [30023,2018], + [30025,154], + [30027,1196], + [30029,13233], + [30031,23879], + [30033,34], + [30035,3076], + [30037,71], + [30039,469], + [30041,2350], + [30043,1975], + [30045,232], + [30047,4703], + [30049,14331], + [30051,205], + [30053,2040], + [30057,1175], + [30055,154], + [30059,191], + [30061,515], + [30063,30740], + [30065,331], + [30067,3521], + [30069,30], + [30071,315], + [30073,737], + [30075,127], + [30077,549], + [30079,100], + [30081,6166], + [30083,669], + [30085,1504], + [30087,969], + [30089,1211], + [30091,476], + [30093,8545], + [30095,904], + [30097,398], + [30099,803], + [30101,399], + [30103,59], + [30105,886], + [30107,179], + [30109,55], + [30111,21117], + [37001,29268], + [37003,3750], + [37005,1300], + [37007,5785], + [37009,3476], + [37011,1670], + [37013,8699], + [37015,5837], + [37017,7021], + [37019,23117], + [37021,74937], + [37023,10930], + [37025,35048], + [37027,8403], + [37029,1266], + [37031,9806], + [37033,4549], + [37035,21050], + [37037,20953], + [37039,2809], + [37041,2965], + [37043,1352], + [37045,14896], + [37047,8991], + [37049,17481], + [37051,70523], + [37053,2879], + [37055,7079], + [37057,17328], + [37059,5228], + [37061,8196], + [37063,118783], + [37065,16152], + [37067,92488], + [37069,12811], + [37071,30982], + [37073,2371], + [37075,761], + [37077,12827], + [37079,3570], + [37081,147949], + [37083,15642], + [37085,16452], + [37087,10414], + [37089,19664], + [37091,6886], + [37093,9608], + [37095,956], + [37097,24441], + [37099,7564], + [37101,28153], + [37103,2041], + [37105,10380], + [37107,11752], + [37109,9836], + [37113,4841], + [37115,3899], + [37117,5814], + [37111,4645], + [37119,292258], + [37121,1585], + [37123,4108], + [37125,16148], + [37127,23024], + [37129,50219], + [37131,6113], + [37133,17156], + [37135,59105], + [37137,2427], + [37139,8455], + [37141,9086], + [37143,2291], + [37145,7772], + [37147,40967], + [37149,3715], + [37151,13074], + [37153,8290], + [37155,18377], + [37157,14057], + [37159,19208], + [37161,7451], + [37163,10486], + [37165,7279], + [37167,7008], + [37169,4645], + [37171,7438], + [37173,2186], + [37175,6520], + [37177,705], + [37179,34051], + [37181,12168], + [37183,298353], + [37185,6668], + [37187,3490], + [37189,13953], + [37191,21520], + [37193,6596], + [37195,19527], + [37197,3140], + [37199,3181], + [38001,216], + [38003,1597], + [38005,842], + [38007,58], + [38009,734], + [38011,227], + [38013,118], + [38015,10865], + [38017,31291], + [38019,476], + [38021,551], + [38023,243], + [38025,356], + [38027,354], + [38029,215], + [38031,346], + [38033,99], + [38035,10828], + [38037,187], + [38039,298], + [38041,168], + [38043,179], + [38045,500], + [38047,112], + [38049,474], + [38051,233], + [38053,696], + [38055,1070], + [38057,616], + [38059,3077], + [38061,1211], + [38063,536], + [38065,119], + [38067,681], + [38069,431], + [38071,1505], + [38073,836], + [38075,200], + [38077,2064], + [38079,2097], + [38081,693], + [38083,94], + [38085,758], + [38087,42], + [38089,1745], + [38091,361], + [38093,2484], + [38095,305], + [38097,1239], + [38099,1166], + [38101,5792], + [38103,419], + [38105,1722], + [31001,3272], + [31003,381], + [31005,16], + [31007,18], + [31009,30], + [31011,414], + [31013,953], + [31015,128], + [31017,153], + [31019,4690], + [31021,928], + [31023,690], + [31025,3461], + [31027,572], + [31029,171], + [31031,317], + [31033,702], + [31035,470], + [31037,857], + [31039,712], + [31041,635], + [31043,2904], + [31045,785], + [31047,2116], + [31049,120], + [31051,556], + [31053,4451], + [31055,105207], + [31057,89], + [31059,610], + [31061,250], + [31063,161], + [31065,304], + [31067,2930], + [31069,153], + [31071,121], + [31073,165], + [31075,20], + [31077,210], + [31079,6142], + [31081,873], + [31083,219], + [31085,30], + [31087,158], + [31089,522], + [31091,40], + [31093,544], + [31095,831], + [31097,560], + [31099,550], + [31101,560], + [31103,39], + [31105,227], + [31107,715], + [31109,60533], + [31111,2878], + [31113,32], + [31115,48], + [31119,2663], + [31117,14], + [31121,601], + [31123,282], + [31125,280], + [31127,765], + [31129,348], + [31131,2017], + [31133,279], + [31135,160], + [31137,571], + [31139,382], + [31141,2612], + [31143,411], + [31145,638], + [31147,798], + [31149,70], + [31151,1630], + [31153,27704], + [31155,2509], + [31157,3151], + [31159,1881], + [31161,286], + [31163,338], + [31165,77], + [31167,417], + [31169,490], + [31171,30], + [31173,911], + [31175,337], + [31177,2606], + [31179,828], + [31181,306], + [31183,62], + [31185,1181], + [33001,13517], + [33003,12987], + [33005,22064], + [33007,6558], + [33009,28510], + [33011,99589], + [33013,40198], + [33015,79994], + [33017,34894], + [33019,10210], + [34001,54472], + [34003,209251], + [34005,108361], + [34007,142375], + [34009,18626], + [34011,27045], + [34013,231031], + [34015,66355], + [34017,149980], + [34019,28797], + [34021,93721], + [34023,164887], + [34025,135825], + [34027,114437], + [34029,81845], + [34031,112608], + [34033,11766], + [34035,83839], + [34037,24132], + [34039,145412], + [34041,16991], + [35001,141960], + [35003,426], + [35005,5530], + [35006,3721], + [35007,2118], + [35009,2776], + [35011,192], + [35013,37543], + [35015,5008], + [35017,6226], + [35019,962], + [35021,156], + [35023,780], + [35025,3877], + [35027,2329], + [35028,5443], + [35029,3195], + [35031,13162], + [35033,1533], + [35035,6033], + [35037,1016], + [35039,9534], + [35041,1445], + [35043,27405], + [35045,12826], + [35047,7249], + [35049,49956], + [35051,1600], + [35053,3275], + [35055,10550], + [35057,1770], + [35059,318], + [35061,10810], + [32510,9610], + [32001,2210], + [32003,401068], + [32005,8453], + [32007,3400], + [32009,65], + [32011,74], + [32013,1386], + [32015,403], + [32017,285], + [32019,6146], + [32021,637], + [32023,5095], + [32027,430], + [32029,752], + [32031,97032], + [32033,707], + [36001,74775], + [36003,4473], + [36005,318403], + [36007,35212], + [36009,8717], + [36011,12202], + [36013,17281], + [36015,12394], + [36017,5943], + [36019,13446], + [36021,13123], + [36023,7976], + [36025,5825], + [36027,56874], + [36029,192065], + [36031,6760], + [36033,6517], + [36035,5805], + [36037,6946], + [36039,6370], + [36041,752], + [36043,7289], + [36045,12289], + [36047,595086], + [36049,2828], + [36051,10478], + [36053,10548], + [36055,174063], + [36057,5961], + [36059,307326], + [36061,515481], + [36063,32888], + [36065,30749], + [36067,102915], + [36069,20233], + [36071,63037], + [36073,4327], + [36075,15614], + [36077,9285], + [36079,17363], + [36081,473389], + [36083,30039], + [36085,67561], + [36087,63454], + [36091,46546], + [36093,30870], + [36095,3777], + [36097,2761], + [36099,5175], + [36089,14659], + [36101,11215], + [36103,276953], + [36105,10983], + [36107,6852], + [36109,25555], + [36111,40010], + [36113,11366], + [36115,8238], + [36117,12378], + [36119,245670], + [36121,3585], + [36123,3219], + [39001,2293], + [39003,12815], + [39005,5659], + [39007,15191], + [39009,15552], + [39011,3825], + [39013,8652], + [39015,4270], + [39017,56700], + [39019,3124], + [39021,4488], + [39023,22666], + [39025,26096], + [39027,3943], + [39029,12273], + [39031,3908], + [39033,4518], + [39035,383974], + [39037,4395], + [39039,5282], + [39041,39584], + [39043,15692], + [39045,24150], + [39047,2672], + [39049,335961], + [39051,5981], + [39053,2564], + [39055,17165], + [39057,28023], + [39059,4286], + [39061,207587], + [39063,9419], + [39065,2870], + [39067,1663], + [39069,3690], + [39071,3436], + [39073,3713], + [39075,1766], + [39077,7080], + [39079,3142], + [39081,9483], + [39083,7959], + [39085,45056], + [39087,6849], + [39089,26360], + [39091,4537], + [39093,64958], + [39095,107363], + [39097,4662], + [39099,56188], + [39101,7748], + [39103,31582], + [39105,2157], + [39107,3335], + [39109,12832], + [39111,1647], + [39113,117661], + [39115,1711], + [39117,3711], + [39119,10926], + [39121,1201], + [39123,8136], + [39125,2068], + [39127,4072], + [39129,6325], + [39131,3443], + [39133,31463], + [39135,4323], + [39137,2874], + [39139,15629], + [39141,9905], + [39143,9733], + [39145,8841], + [39147,7237], + [39149,4143], + [39151,66581], + [39153,129922], + [39155,42130], + [39157,11895], + [39159,7530], + [39161,2667], + [39163,1332], + [39165,33036], + [39167,7841], + [39169,14670], + [39171,4287], + [39173,26440], + [39175,2484], + [40001,1374], + [40003,216], + [40005,795], + [40007,176], + [40009,958], + [40011,711], + [40013,2793], + [40015,2418], + [40017,11666], + [40019,4002], + [40021,5455], + [40023,1064], + [40025,70], + [40027,38790], + [40029,411], + [40031,11439], + [40033,424], + [40035,1249], + [40037,5834], + [40039,2102], + [40041,3306], + [40043,222], + [40045,155], + [40047,4391], + [40049,1852], + [40051,3878], + [40053,287], + [40055,323], + [40057,224], + [40059,131], + [40061,882], + [40063,961], + [40065,1473], + [40067,365], + [40069,782], + [40071,3734], + [40073,783], + [40075,766], + [40077,797], + [40079,3245], + [40081,2423], + [40083,4239], + [40085,735], + [40093,310], + [40095,1095], + [40097,3423], + [40087,2893], + [40089,1799], + [40091,2122], + [40099,1086], + [40101,7969], + [40103,901], + [40105,742], + [40107,943], + [40109,112661], + [40111,4379], + [40113,5593], + [40115,2584], + [40117,1341], + [40119,8785], + [40121,3704], + [40123,3633], + [40125,6005], + [40127,748], + [40129,151], + [40131,7895], + [40133,2067], + [40135,3061], + [40137,3084], + [40139,855], + [40141,657], + [40143,87663], + [40145,6711], + [40147,5047], + [40149,588], + [40151,521], + [40153,871], + [41001,1781], + [41003,28431], + [41005,90187], + [41007,8899], + [41009,9959], + [41011,10355], + [41013,2591], + [41015,4253], + [41017,40222], + [41019,13891], + [41021,221], + [41023,732], + [41025,682], + [41027,6359], + [41029,43550], + [41031,2892], + [41033,13223], + [41035,7080], + [41037,628], + [41039,100497], + [41041,12300], + [41043,17456], + [41045,2213], + [41047,48803], + [41049,1004], + [41051,271754], + [41053,15741], + [41055,202], + [41057,5701], + [41059,7466], + [41061,3221], + [41063,1097], + [41065,4634], + [41067,137818], + [41069,153], + [41071,18635], + [42001,14077], + [42003,363017], + [42005,6849], + [42007,30225], + [42009,3613], + [42011,75169], + [42013,13093], + [42015,6263], + [42017,165861], + [42019,26834], + [42021,17798], + [42023,469], + [42025,8917], + [42027,36555], + [42029,140188], + [42031,4256], + [42033,7700], + [42035,4533], + [42037,8502], + [42039,10215], + [42041,44282], + [42043,64287], + [42045,169169], + [42047,3637], + [42049,54820], + [42051,17826], + [42053,626], + [42055,17322], + [42057,904], + [42059,4157], + [42061,4487], + [42063,11468], + [42065,3437], + [42067,1810], + [42069,51593], + [42071,90066], + [42073,13933], + [42075,17860], + [42077,77087], + [42079,51454], + [42081,12926], + [42083,3802], + [42085,17631], + [42087,3563], + [42089,31930], + [42091,251063], + [42093,2851], + [42095,65936], + [42097,9184], + [42099,4630], + [42101,560542], + [42103,9247], + [42105,1300], + [42107,16724], + [42109,3991], + [42111,7367], + [42113,756], + [42115,5065], + [42117,3642], + [42119,6138], + [42121,5889], + [42123,4828], + [42125,34436], + [42127,6398], + [42129,59506], + [42131,3573], + [42133,67428], + [44001,14532], + [44003,37582], + [44005,22680], + [44007,141597], + [44009,33511], + [45001,3712], + [45003,25426], + [45005,2722], + [45007,21040], + [45009,3886], + [45011,4395], + [45013,29577], + [45015,30492], + [45017,3569], + [45019,89048], + [45021,6089], + [45023,6582], + [45025,7125], + [45027,7635], + [45029,7616], + [45031,13866], + [45033,5832], + [45035,24010], + [45037,4491], + [45039,6936], + [45041,26630], + [45043,13234], + [45045,73338], + [45047,10633], + [45049,5163], + [45051,36731], + [45053,7789], + [45055,10293], + [45057,13718], + [45059,8845], + [45061,5170], + [45063,35143], + [45067,8522], + [45069,5928], + [45065,2479], + [45071,6212], + [45073,7979], + [45075,26258], + [45077,10327], + [45079,108401], + [45081,2809], + [45083,39888], + [45085,24024], + [45087,4727], + [45089,9949], + [45091,41230], + [46003,340], + [46005,1912], + [46007,412], + [46009,704], + [46011,4879], + [46013,5452], + [46015,571], + [46017,296], + [46019,693], + [46021,105], + [46023,935], + [46025,398], + [46027,2608], + [46029,3174], + [46031,535], + [46033,1120], + [46035,2355], + [46037,974], + [46039,570], + [46041,887], + [46043,214], + [46045,380], + [46047,821], + [46049,204], + [46051,970], + [46053,391], + [46055,77], + [46057,555], + [46059,334], + [46061,424], + [46063,38], + [46065,2449], + [46067,692], + [46069,125], + [46071,323], + [46073,264], + [46075,69], + [46077,703], + [46079,2314], + [46081,3356], + [46083,8076], + [46085,369], + [46091,754], + [46087,623], + [46089,192], + [46093,2223], + [46095,238], + [46097,281], + [46099,30610], + [46101,1042], + [46113,2504], + [46103,14074], + [46105,188], + [46107,215], + [46109,1539], + [46111,241], + [46115,919], + [46117,329], + [46119,137], + [46121,1505], + [46123,462], + [46125,961], + [46127,2227], + [46129,457], + [46135,3301], + [46137,352], + [47001,9010], + [47003,3384], + [47005,1474], + [47007,896], + [47009,12085], + [47011,7070], + [47013,2248], + [47015,1126], + [47017,2323], + [47019,3453], + [47021,3877], + [47023,902], + [47025,1831], + [47027,707], + [47029,1980], + [47031,4741], + [47033,1302], + [47035,5202], + [47037,148473], + [47039,894], + [47041,1566], + [47043,4718], + [47045,2815], + [47047,5865], + [47049,1100], + [47051,4372], + [47053,5255], + [47055,2915], + [47057,1154], + [47059,4211], + [47061,998], + [47063,4075], + [47065,55260], + [47067,322], + [47069,4174], + [47071,1622], + [47073,3502], + [47075,3704], + [47077,1796], + [47079,3061], + [47081,1823], + [47083,865], + [47085,1967], + [47087,1129], + [47089,3490], + [47091,988], + [47093,62861], + [47095,577], + [47097,3656], + [47099,2821], + [47101,890], + [47103,2550], + [47105,4916], + [47111,1071], + [47113,15438], + [47115,2829], + [47117,2848], + [47119,10026], + [47107,3507], + [47109,1847], + [47121,856], + [47123,3184], + [47125,21686], + [47127,496], + [47129,1053], + [47131,2425], + [47133,1943], + [47135,597], + [47137,536], + [47139,1252], + [47141,6847], + [47143,1942], + [47145,4833], + [47147,6634], + [47149,36627], + [47151,934], + [47153,1051], + [47155,6293], + [47157,206640], + [47159,1688], + [47161,1222], + [47163,11910], + [47165,18153], + [47167,5779], + [47169,943], + [47171,1260], + [47173,1010], + [47175,539], + [47177,3535], + [47179,13003], + [47181,717], + [47183,2770], + [47185,1842], + [47187,30992], + [47189,14356], + [48001,3358], + [48003,836], + [48005,7538], + [48007,2458], + [48009,394], + [48011,70], + [48013,4635], + [48015,2319], + [48017,397], + [48019,1726], + [48021,10555], + [48023,191], + [48025,3443], + [48027,37608], + [48029,319191], + [48031,1244], + [48033,31], + [48035,1277], + [48037,8831], + [48039,43075], + [48041,23041], + [48043,1869], + [48045,91], + [48047,1937], + [48049,1621], + [48051,1491], + [48053,3785], + [48055,4663], + [48057,2118], + [48059,568], + [48061,59319], + [48063,1260], + [48065,249], + [48067,2250], + [48069,526], + [48071,2939], + [48073,3466], + [48075,253], + [48077,536], + [48079,190], + [48081,140], + [48083,387], + [48085,139837], + [48087,145], + [48089,1977], + [48091,14166], + [48093,788], + [48095,148], + [48097,2345], + [48099,5057], + [48101,84], + [48103,299], + [48105,372], + [48107,468], + [48109,454], + [48111,222], + [48113,458845], + [48115,835], + [48117,1185], + [48119,400], + [48121,110000], + [48123,1161], + [48125,128], + [48127,2173], + [48129,190], + [48131,2783], + [48133,776], + [48135,10225], + [48137,302], + [48139,16197], + [48141,145509], + [48143,2159], + [48145,1682], + [48147,2123], + [48149,2127], + [48151,403], + [48153,435], + [48155,113], + [48157,134475], + [48159,665], + [48161,1461], + [48163,1401], + [48165,597], + [48167,45503], + [48169,224], + [48171,2286], + [48173,34], + [48175,973], + [48177,1567], + [48179,699], + [48181,10276], + [48183,11623], + [48185,2194], + [48187,18308], + [48189,2090], + [48191,164], + [48193,479], + [48195,171], + [48197,249], + [48199,2779], + [48201,706471], + [48203,7130], + [48205,172], + [48207,314], + [48209,33117], + [48211,181], + [48213,5649], + [48215,118739], + [48217,2535], + [48219,1257], + [48221,4001], + [48223,2508], + [48225,1978], + [48227,1768], + [48229,324], + [48231,6301], + [48233,854], + [48235,90], + [48237,314], + [48239,904], + [48241,2582], + [48243,422], + [48245,42404], + [48247,1635], + [48249,6688], + [48251,10976], + [48253,935], + [48255,1144], + [48257,10265], + [48259,3633], + [48261,99], + [48263,59], + [48265,4665], + [48267,206], + [48269,5], + [48271,457], + [48273,4713], + [48275,247], + [48277,3579], + [48279,770], + [48281,1479], + [48283,1125], + [48285,1170], + [48287,1372], + [48289,909], + [48291,4851], + [48293,1748], + [48295,135], + [48297,739], + [48299,1825], + [48301,4], + [48303,27956], + [48305,403], + [48313,881], + [48315,1156], + [48317,266], + [48319,353], + [48321,3357], + [48323,10397], + [48307,480], + [48309,27046], + [48311,40], + [48325,4624], + [48327,153], + [48329,9993], + [48331,2042], + [48333,242], + [48335,353], + [48337,885], + [48339,45744], + [48341,1096], + [48343,1425], + [48345,40], + [48347,6822], + [48349,3998], + [48351,978], + [48353,1029], + [48355,49102], + [48357,274], + [48359,78], + [48361,5716], + [48363,1700], + [48365,1835], + [48367,8329], + [48369,848], + [48371,1551], + [48373,7123], + [48375,7620], + [48377,1458], + [48379,619], + [48381,8340], + [48383,167], + [48385,262], + [48387,1148], + [48389,1659], + [48391,1034], + [48393,20], + [48395,2203], + [48397,9633], + [48399,452], + [48401,3935], + [48403,614], + [48405,907], + [48407,2034], + [48409,7825], + [48411,293], + [48413,209], + [48415,733], + [48417,103], + [48419,1757], + [48421,96], + [48423,22128], + [48425,540], + [48427,9246], + [48429,348], + [48431,70], + [48433,135], + [48435,313], + [48437,462], + [48439,288001], + [48441,10047], + [48443,140], + [48445,424], + [48447,84], + [48449,2538], + [48451,9117], + [48453,306475], + [48455,1154], + [48457,1243], + [48459,2378], + [48461,284], + [48463,3863], + [48465,6920], + [48467,2792], + [48469,8843], + [48471,6085], + [48473,5744], + [48475,780], + [48477,3381], + [48479,42297], + [48481,4238], + [48483,194], + [48485,8752], + [48487,807], + [48489,3416], + [48491,84252], + [48493,4790], + [48495,420], + [48497,3412], + [48499,2624], + [48501,426], + [48503,873], + [48505,2056], + [48507,2633], + [49001,264], + [49003,1814], + [49005,6705], + [49007,1696], + [49009,76], + [49011,22575], + [49013,500], + [49015,379], + [49017,352], + [49019,1932], + [49021,2104], + [49023,436], + [49025,739], + [49027,431], + [49029,572], + [49031,31], + [49033,104], + [49035,154831], + [49037,1997], + [49039,1026], + [49041,673], + [49043,10251], + [49045,4015], + [49047,1002], + [49049,24579], + [49051,3063], + [49053,9583], + [49055,271], + [49057,22187], + [51001,6737], + [51003,33297], + [51510,57147], + [51005,2165], + [51007,2150], + [51009,4986], + [51011,2023], + [51013,91879], + [51015,8108], + [51017,603], + [51019,9733], + [51021,453], + [51023,4492], + [51520,1832], + [51025,4473], + [51027,1721], + [51029,3128], + [51530,693], + [51031,6597], + [51033,6425], + [51035,2557], + [51036,2244], + [51037,2153], + [51540,17865], + [51550,52554], + [51041,80993], + [51043,3047], + [51570,2367], + [51580,914], + [51045,541], + [51047,7744], + [51049,2032], + [51590,11051], + [51051,1335], + [51053,5765], + [51595,1531], + [51057,2541], + [51059,354485], + [51600,7363], + [51610,5810], + [51061,12960], + [51063,2300], + [51065,5751], + [51067,7254], + [51620,2516], + [51069,11920], + [51630,6690], + [51640,680], + [51071,1949], + [51073,5399], + [51075,4884], + [51077,1407], + [51079,2923], + [51081,2558], + [51083,6890], + [51650,41030], + [51085,19360], + [51660,10100], + [51087,93615], + [51089,8199], + [51091,371], + [51670,4722], + [51093,7673], + [51095,19091], + [51097,1451], + [51099,4002], + [51101,2752], + [51103,2862], + [51105,1627], + [51678,1514], + [51107,99909], + [51109,6208], + [51111,2226], + [51680,14787], + [51113,2202], + [51683,8395], + [51685,3218], + [51690,3531], + [51115,1563], + [51117,6571], + [51119,2107], + [51121,20015], + [51125,3677], + [51127,3545], + [51700,40997], + [51710,51429], + [51131,3255], + [51133,2830], + [51720,383], + [51135,2829], + [51137,5955], + [51139,2514], + [51141,1768], + [51730,12005], + [51143,9195], + [51735,1599], + [51740,28462], + [51145,4057], + [51147,4590], + [51149,6419], + [51153,83093], + [51155,4170], + [51750,2923], + [51157,1741], + [51159,1347], + [51760,74640], + [51161,16787], + [51770,23403], + [51163,3506], + [51165,9361], + [51167,2328], + [51775,4212], + [51169,1579], + [51171,5269], + [51173,2661], + [51175,3595], + [51177,24204], + [51179,27879], + [51790,5329], + [51800,23012], + [51181,2069], + [51183,2874], + [51185,2895], + [51810,76744], + [51187,5165], + [51191,5548], + [51820,3762], + [51193,3723], + [51830,5199], + [51840,5161], + [51195,2687], + [51197,2765], + [51199,12989], + [50001,11217], + [50003,9539], + [50005,6445], + [50007,54463], + [50009,1019], + [50011,9351], + [50013,2094], + [50015,7241], + [50017,7522], + [50019,5181], + [50021,13629], + [50023,18594], + [50025,14340], + [50027,17544], + [53001,1118], + [53003,3118], + [53005,25173], + [53007,10770], + [53009,15154], + [53011,90697], + [53013,523], + [53015,17842], + [53017,3600], + [53019,1091], + [53021,7839], + [53023,276], + [53025,7768], + [53027,11378], + [53029,20766], + [53031,12556], + [53033,657149], + [53035,60561], + [53037,7190], + [53039,3781], + [53041,7236], + [53043,1238], + [53045,11872], + [53047,3980], + [53049,4597], + [53051,1932], + [53053,160306], + [53055,7053], + [53057,26076], + [53059,2207], + [53061,167943], + [53063,86590], + [53065,4348], + [53067,65015], + [53069,824], + [53071,7550], + [53073,59402], + [53075,5521], + [53077,28484], + [55001,3780], + [55003,4136], + [55005,7881], + [55007,4953], + [55009,53358], + [55011,2531], + [55013,2948], + [55015,9634], + [55017,11875], + [55019,4225], + [55021,13525], + [55023,3426], + [55025,217506], + [55027,13968], + [55029,8026], + [55031,11342], + [55033,9025], + [55035,27271], + [55037,666], + [55039,17391], + [55041,1583], + [55043,10047], + [55045,9121], + [55047,2700], + [55049,6669], + [55051,1273], + [55053,3821], + [55055,16559], + [55057,4100], + [55059,35770], + [55061,3623], + [55063,32402], + [55065,3288], + [55067,3260], + [55069,5370], + [55071,14563], + [55073,26476], + [55075,6243], + [55077,2808], + [55078,1003], + [55079,288986], + [55081,7047], + [55083,5886], + [55085,8103], + [55087,38087], + [55089,20167], + [55091,1345], + [55093,8380], + [55095,7568], + [55097,18524], + [55099,2671], + [55101,42506], + [55103,3577], + [55105,39336], + [55107,2171], + [55111,14692], + [55113,2846], + [55115,6056], + [55117,22636], + [55109,17496], + [55119,2398], + [55121,5645], + [55123,6351], + [55125,4769], + [55127,18706], + [55129,3283], + [55131,20854], + [55133,79200], + [55135,8303], + [55137,3802], + [55139,37054], + [55141,14232], + [54001,1213], + [54003,12287], + [54005,1783], + [54007,1315], + [54009,2549], + [54011,11306], + [54013,456], + [54015,566], + [54017,360], + [54019,4246], + [54021,537], + [54023,510], + [54025,3743], + [54027,1576], + [54029,3247], + [54031,1249], + [54033,7675], + [54035,2648], + [54037,9458], + [54039,27985], + [54041,1336], + [54043,1435], + [54045,2082], + [54049,6926], + [54051,2894], + [54053,2069], + [54047,1429], + [54055,4689], + [54057,2019], + [54059,1365], + [54061,14568], + [54063,1089], + [54065,1568], + [54067,1821], + [54069,5452], + [54071,726], + [54073,620], + [54075,924], + [54077,2462], + [54079,5784], + [54081,6362], + [54083,2724], + [54085,490], + [54087,1220], + [54089,1186], + [54091,1483], + [54093,750], + [54095,505], + [54097,1763], + [54099,3334], + [54101,554], + [54103,1348], + [54105,383], + [54107,8327], + [54109,1061], + [56001,6888], + [56003,594], + [56005,1324], + [56007,1279], + [56009,668], + [56011,271], + [56013,4200], + [56015,924], + [56017,400], + [56019,638], + [56021,11572], + [56023,1105], + [56025,6573], + [56027,115], + [56029,2535], + [56031,719], + [56033,2926], + [56035,644], + [56037,3233], + [56039,7313], + [56041,1202], + [56043,532], + [56045,294] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes-gop.json b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes-gop.json new file mode 100644 index 0000000..6e695af --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes-gop.json @@ -0,0 +1,3163 @@ +{ + "metadata" : { + "name" : "2016 Presidential Election | Republican Votes", + "description" : "Votes cast for Republican party (gop) candidates in the 2016 presidential election.", + "units" : "votes", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Townhall.com" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.elections.presidential.2016.votes.gop"], + [2013,130413], + [2016,130413], + [2020,130413], + [2050,130413], + [2060,130413], + [2068,130413], + [2070,130413], + [2090,130413], + [2100,130413], + [2105,130413], + [2110,130413], + [2122,130413], + [2130,130413], + [2150,130413], + [2164,130413], + [2170,130413], + [2180,130413], + [2185,130413], + [2188,130413], + [2195,130413], + [2198,130413], + [2220,130413], + [2230,130413], + [2240,130413], + [2261,130413], + [2270,130413], + [2275,130413], + [2282,130413], + [2290,130413], + [1001,18110], + [1003,72780], + [1005,5431], + [1007,6733], + [1009,22808], + [1011,1139], + [1013,4891], + [1015,32803], + [1017,7803], + [1019,8809], + [1021,15068], + [1023,4102], + [1025,7109], + [1027,5230], + [1029,5738], + [1031,15825], + [1033,16718], + [1035,3413], + [1037,3376], + [1039,13222], + [1041,4511], + [1043,32734], + [1045,13798], + [1047,5784], + [1049,21779], + [1051,27619], + [1053,10282], + [1055,32132], + [1057,6705], + [1059,9466], + [1061,9967], + [1063,838], + [1065,3172], + [1067,5623], + [1069,30567], + [1071,16643], + [1073,130614], + [1075,5819], + [1077,27735], + [1079,10732], + [1081,34321], + [1083,28824], + [1085,1751], + [1087,1394], + [1089,89199], + [1091,5224], + [1093,11273], + [1095,29217], + [1097,91087], + [1099,5771], + [1101,33928], + [1103,37392], + [1105,1403], + [1107,5454], + [1109,7681], + [1111,7697], + [1113,9210], + [1117,72846], + [1115,31579], + [1119,1581], + [1121,20596], + [1123,12967], + [1125,47701], + [1127,24208], + [1129,6031], + [1131,1737], + [1133,9225], + [5001,3825], + [5003,5338], + [5005,14655], + [5007,60751], + [5009,12225], + [5011,2163], + [5013,1554], + [5015,6773], + [5017,1716], + [5019,4398], + [5021,3779], + [5023,9454], + [5025,2460], + [5027,5456], + [5029,4844], + [5031,22798], + [5033,16655], + [5035,6953], + [5037,4577], + [5039,1507], + [5041,1915], + [5043,3967], + [5045,29170], + [5047,5034], + [5049,3470], + [5051,26053], + [5053,5160], + [5055,10698], + [5057,4391], + [5059,8153], + [5061,3155], + [5063,9925], + [5065,4042], + [5067,3262], + [5069,9231], + [5071,6072], + [5073,1750], + [5075,4064], + [5077,1229], + [5079,2455], + [5081,3604], + [5083,5737], + [5085,19902], + [5087,4917], + [5089,5077], + [5091,11293], + [5093,6988], + [5095,1400], + [5097,2573], + [5099,2001], + [5101,2875], + [5103,5347], + [5105,2979], + [5107,2443], + [5109,3150], + [5111,3149], + [5113,6606], + [5115,15694], + [5117,2503], + [5119,61182], + [5121,4508], + [5125,35852], + [5127,2378], + [5129,2955], + [5131,28769], + [5133,3281], + [5135,5405], + [5123,3195], + [5137,4081], + [5139,10201], + [5141,5382], + [5143,40418], + [5145,21038], + [5147,1344], + [5149,4600], + [4001,5315], + [4003,25036], + [4005,16573], + [4007,13672], + [4009,8025], + [4011,1892], + [4012,3381], + [4013,590465], + [4015,54656], + [4017,18165], + [4019,147019], + [4021,53857], + [4023,3650], + [4025,58862], + [4027,20586], + [6001,91189], + [6003,211], + [6005,10239], + [6007,42193], + [6009,13072], + [6011,3551], + [6013,105819], + [6015,5134], + [6017,47633], + [6019,113949], + [6021,5788], + [6023,10883], + [6025,11295], + [6027,4248], + [6029,119164], + [6031,17446], + [6033,5752], + [6035,7574], + [6037,620285], + [6039,19221], + [6041,17531], + [6043,5185], + [6045,3571], + [6047,18486], + [6049,2413], + [6051,2080], + [6053,26378], + [6055,11946], + [6057,14686], + [6059,472669], + [6061,78977], + [6063,5079], + [6065,309514], + [6067,163024], + [6069,6471], + [6071,253962], + [6073,386807], + [6075,34493], + [6077,68316], + [6079,52672], + [6081,53731], + [6083,53740], + [6085,137452], + [6087,20158], + [6089,47587], + [6091,1048], + [6093,11212], + [6095,49595], + [6097,37421], + [6099,72960], + [6101,16780], + [6103,14981], + [6105,2409], + [6107,50488], + [6109,13486], + [6111,118764], + [6113,13178], + [6115,12313], + [8001,73807], + [8003,3031], + [8005,109638], + [8007,4234], + [8009,1716], + [8011,1166], + [8013,38766], + [8014,14272], + [8015,5283], + [8017,905], + [8019,2426], + [8021,1885], + [8023,581], + [8025,1069], + [8027,2059], + [8029,11584], + [8031,43637], + [8033,936], + [8035,100178], + [8037,8153], + [8039,11536], + [8041,176506], + [8043,15066], + [8045,13071], + [8047,1564], + [8049,4467], + [8051,3250], + [8053,339], + [8055,1875], + [8057,628], + [8059,130233], + [8061,726], + [8063,2894], + [8065,1264], + [8067,12471], + [8069,82624], + [8071,3656], + [8073,1873], + [8075,7272], + [8077,48129], + [8079,344], + [8081,5293], + [8083,7771], + [8085,14303], + [8087,8104], + [8089,2988], + [8091,1337], + [8093,6053], + [8095,1791], + [8097,2522], + [8099,3508], + [8101,27746], + [8103,2782], + [8105,3060], + [8107,5149], + [8109,1109], + [8111,215], + [8113,1030], + [8115,1015], + [8117,5064], + [8119,9580], + [8121,2284], + [8123,75882], + [8125,3755], + [9001,155457], + [9003,147912], + [9005,53376], + [9007,38847], + [9009,158373], + [9011,54574], + [9013,33989], + [9015,25738], + [11001,11553], + [10001,36989], + [10003,85507], + [10005,62607], + [12001,46584], + [12003,10294], + [12005,62010], + [12007,8913], + [12009,181620], + [12011,258521], + [12013,4647], + [12015,60196], + [12017,54377], + [12019,74898], + [12021,105297], + [12023,20359], + [12027,6744], + [12029,5822], + [12031,210061], + [12033,88370], + [12035,33804], + [12037,4119], + [12039,6721], + [12041,6740], + [12043,2996], + [12045,5320], + [12047,3439], + [12049,5238], + [12051,6192], + [12053,59029], + [12055,29509], + [12057,265928], + [12059,7476], + [12061,48564], + [12063,14231], + [12065,3930], + [12067,2795], + [12069,101888], + [12071,191141], + [12073,53777], + [12075,13758], + [12077,2542], + [12079,4849], + [12081,101681], + [12083,107710], + [12085,53182], + [12086,333666], + [12087,21885], + [12089,34221], + [12091,71788], + [12093,9342], + [12095,195091], + [12097,50252], + [12099,270762], + [12101,141943], + [12103,238746], + [12105,157216], + [12107,21873], + [12113,65126], + [12115,124098], + [12117,109265], + [12109,88633], + [12111,70248], + [12119,52722], + [12121,14281], + [12123,6923], + [12125,4567], + [12127,142763], + [12129,10507], + [12131,25695], + [12133,8630], + [13001,5492], + [13003,1873], + [13005,3356], + [13007,775], + [13009,7691], + [13011,6130], + [13013,21105], + [13015,29879], + [13017,3734], + [13019,5408], + [13021,22589], + [13023,3717], + [13025,5561], + [13027,3679], + [13029,10513], + [13031,14476], + [13033,4491], + [13035,6717], + [13037,829], + [13039,12287], + [13043,2661], + [13045,29983], + [13047,20860], + [13049,2950], + [13051,43649], + [13053,746], + [13055,6457], + [13057,80611], + [13059,12691], + [13061,566], + [13063,11740], + [13065,1724], + [13067,152602], + [13069,9575], + [13071,9892], + [13073,43060], + [13075,4175], + [13077,42513], + [13079,3632], + [13081,4539], + [13083,5047], + [13085,9880], + [13087,6009], + [13089,47531], + [13091,5021], + [13093,1941], + [13095,10227], + [13097,24803], + [13099,2552], + [13101,1006], + [13103,17865], + [13105,5269], + [13107,5330], + [13109,2404], + [13111,9622], + [13113,35034], + [13115,24045], + [13117,69801], + [13119,7054], + [13121,110372], + [13123,10465], + [13125,1235], + [13127,21482], + [13129,15171], + [13131,6047], + [13133,5488], + [13135,146463], + [13137,13184], + [13139,51681], + [13141,841], + [13143,9579], + [13145,11931], + [13147,7285], + [13149,3370], + [13151,45641], + [13153,35351], + [13155,2711], + [13157,21754], + [13159,4353], + [13161,4102], + [13163,3057], + [13165,1892], + [13167,2519], + [13169,8304], + [13171,5183], + [13173,1984], + [13175,12401], + [13177,10641], + [13179,6125], + [13181,2759], + [13183,2623], + [13185,21308], + [13187,9613], + [13193,1540], + [13195,9195], + [13197,1921], + [13189,5432], + [13191,3482], + [13199,5216], + [13201,1888], + [13205,4272], + [13207,8821], + [13209,2668], + [13211,6559], + [13213,10340], + [13215,26901], + [13217,20907], + [13219,12885], + [13221,4622], + [13223,44646], + [13225,5405], + [13227,11651], + [13229,6301], + [13231,7273], + [13233,11006], + [13235,2436], + [13237,6516], + [13239,575], + [13241,6287], + [13243,1270], + [13245,24441], + [13247,13463], + [13249,1472], + [13251,3305], + [13253,2343], + [13255,15636], + [13257,7682], + [13259,805], + [13261,5275], + [13263,1196], + [13265,349], + [13267,5092], + [13269,2062], + [13271,2449], + [13273,1872], + [13275,11225], + [13277,8680], + [13279,6612], + [13281,5377], + [13283,1808], + [13285,15643], + [13287,2094], + [13289,2034], + [13291,9849], + [13293,7288], + [13295,18938], + [13297,31093], + [13299,8508], + [13301,991], + [13303,4138], + [13305,8147], + [13307,630], + [13309,1421], + [13311,9751], + [13313,21514], + [13315,2096], + [13317,2569], + [13319,2332], + [13321,6144], + [15001,17500], + [15003,90296], + [15007,7574], + [15009,13445], + [19001,2456], + [19003,1393], + [19005,4072], + [19007,4031], + [19009,2135], + [19011,8226], + [19013,27382], + [19015,7458], + [19017,7199], + [19019,5504], + [19021,4895], + [19023,4918], + [19025,3466], + [19027,6627], + [19029,4755], + [19031,5275], + [19033,11583], + [19035,4188], + [19037,3739], + [19039,2706], + [19041,5870], + [19043,5309], + [19045,11249], + [19047,4608], + [19049,19288], + [19051,2721], + [19053,2296], + [19055,5688], + [19057,9479], + [19059,6743], + [19061,23384], + [19063,3121], + [19065,5591], + [19067,4371], + [19069,3153], + [19071,2401], + [19073,2819], + [19075,4516], + [19077,3603], + [19079,4450], + [19081,3972], + [19083,5231], + [19085,4892], + [19087,5764], + [19089,2611], + [19091,3564], + [19093,2655], + [19095,5193], + [19097,5821], + [19099,10556], + [19101,3738], + [19103,20993], + [19105,5718], + [19107,3385], + [19109,5637], + [19111,8762], + [19113,48183], + [19115,3060], + [19117,2873], + [19119,5188], + [19121,5336], + [19123,7404], + [19125,10940], + [19127,9125], + [19129,5050], + [19131,3180], + [19133,3115], + [19135,2635], + [19137,3431], + [19139,9549], + [19141,5735], + [19143,2528], + [19145,4875], + [19147,3079], + [19149,9659], + [19151,2692], + [19153,93421], + [19155,24441], + [19157,4936], + [19159,1820], + [19161,3692], + [19163,39083], + [19165,4340], + [19167,14761], + [19169,19111], + [19171,4968], + [19173,2108], + [19175,3521], + [19177,2524], + [19179,8710], + [19181,14773], + [19183,6170], + [19185,2069], + [19187,10049], + [19189,3437], + [19191,5332], + [19193,24627], + [19195,2443], + [19197,3790], + [16001,93748], + [16003,1556], + [16005,17180], + [16007,2203], + [16009,3101], + [16011,10907], + [16013,3340], + [16015,2673], + [16017,10220], + [16019,26699], + [16021,3789], + [16023,914], + [16025,410], + [16027,46755], + [16029,2275], + [16031,5949], + [16033,203], + [16035,2852], + [16037,1777], + [16039,5816], + [16041,3901], + [16043,4091], + [16045,5980], + [16047,3743], + [16049,6441], + [16051,8436], + [16053,7347], + [16055,44449], + [16057,7255], + [16059,3011], + [16061,1202], + [16063,1184], + [16065,8941], + [16067,4887], + [16069,10699], + [16071,1531], + [16073,3052], + [16075,4306], + [16077,1666], + [16079,3297], + [16081,2161], + [16083,21063], + [16085,2906], + [16087,3283], + [17001,22732], + [17003,1496], + [17005,4884], + [17007,12261], + [17009,1776], + [17011,9264], + [17013,1719], + [17015,4428], + [17017,3216], + [17019,33235], + [17021,10522], + [17023,5620], + [17025,5009], + [17027,12394], + [17029,12985], + [17031,440213], + [17033,6146], + [17035,4200], + [17037,19051], + [17039,5072], + [17041,5695], + [17043,164355], + [17045,5634], + [17047,2777], + [17049,13613], + [17051,7363], + [17053,4474], + [17055,13101], + [17057,8482], + [17059,1942], + [17061,4139], + [17063,13417], + [17065,3205], + [17067,5713], + [17069,1650], + [17071,2153], + [17073,13962], + [17075,9728], + [17077,10889], + [17079,3973], + [17081,11681], + [17083,7737], + [17085,6113], + [17087,4644], + [17089,82087], + [17091,25081], + [17093,24152], + [17095,10658], + [17097,108608], + [17099,26269], + [17101,4517], + [17103,8597], + [17105,10197], + [17107,8167], + [17115,26782], + [17117,14194], + [17119,70295], + [17121,11677], + [17123,3776], + [17125,4051], + [17127,4844], + [17109,6789], + [17111,71117], + [17113,37081], + [17129,4230], + [17131,4800], + [17133,12614], + [17135,8616], + [17137,9060], + [17139,4453], + [17141,14344], + [17143,35299], + [17145,6816], + [17147,5623], + [17149,5749], + [17151,1678], + [17153,1583], + [17155,1762], + [17157,9992], + [17159,5736], + [17161,26969], + [17165,8248], + [17167,49823], + [17169,2523], + [17171,1965], + [17173,8209], + [17163,53479], + [17175,1777], + [17177,10845], + [17179,38620], + [17181,5780], + [17183,18582], + [17185,4039], + [17187,4267], + [17189,5566], + [17191,6963], + [17193,5639], + [17195,12597], + [17197,129726], + [17199,21503], + [17201,53922], + [17203,13180], + [18001,9642], + [18003,83801], + [18005,20637], + [18007,2579], + [18009,3349], + [18011,19654], + [18013,5015], + [18015,6273], + [18017,9697], + [18019,30012], + [18021,8528], + [18023,8530], + [18025,3013], + [18027,8545], + [18029,18110], + [18031,8488], + [18033,12054], + [18035,24217], + [18037,13365], + [18039,41810], + [18041,6839], + [18043,21427], + [18045,5661], + [18047,8665], + [18049,6010], + [18051,11079], + [18053,17009], + [18055,10275], + [18057,87299], + [18059,25050], + [18061,12993], + [18063,48326], + [18065,13895], + [18067,23675], + [18069,11649], + [18071,12857], + [18073,9382], + [18075,5697], + [18077,8538], + [18079,8222], + [18081,45456], + [18083,11077], + [18085,23909], + [18087,7025], + [18089,75565], + [18091,22678], + [18093,14034], + [18095,32376], + [18097,130228], + [18099,12286], + [18101,3695], + [18103,9975], + [18105,20527], + [18107,11051], + [18109,23671], + [18111,4074], + [18113,12198], + [18115,2118], + [18117,5800], + [18119,6151], + [18121,4863], + [18123,4556], + [18125,4398], + [18127,38719], + [18129,8393], + [18131,3854], + [18133,10637], + [18135,7515], + [18137,9806], + [18139,5292], + [18143,6074], + [18145,12718], + [18147,6572], + [18141,52019], + [18149,6367], + [18151,10127], + [18153,6138], + [18155,2558], + [18157,30711], + [18159,5589], + [18161,2445], + [18163,40422], + [18165,4511], + [18167,21924], + [18169,9819], + [18171,2896], + [18173,19133], + [18175,8206], + [18177,16028], + [18179,9999], + [18181,6813], + [18183,11357], + [20001,3575], + [20003,2386], + [20005,3977], + [20007,1822], + [20009,7766], + [20011,4314], + [20013,2861], + [20015,18781], + [20017,964], + [20019,1552], + [20021,6017], + [20023,1172], + [20025,813], + [20027,2831], + [20029,2856], + [20031,2990], + [20033,705], + [20035,8016], + [20037,8394], + [20039,1220], + [20041,5905], + [20043,2601], + [20045,14308], + [20047,1033], + [20049,1048], + [20051,8311], + [20053,1933], + [20055,6155], + [20057,4994], + [20059,7025], + [20061,4116], + [20063,1127], + [20065,1013], + [20067,1755], + [20069,1651], + [20071,523], + [20073,2146], + [20075,690], + [20077,1950], + [20079,8503], + [20081,1011], + [20083,845], + [20085,3888], + [20087,5112], + [20089,1204], + [20091,133907], + [20093,1048], + [20095,2507], + [20097,855], + [20099,5232], + [20101,684], + [20103,17387], + [20105,1168], + [20107,3377], + [20109,1124], + [20111,6354], + [20115,3928], + [20117,3250], + [20113,8407], + [20119,1390], + [20121,9839], + [20123,2216], + [20125,8466], + [20127,1790], + [20129,970], + [20131,4066], + [20133,4340], + [20135,1216], + [20137,1808], + [20139,4713], + [20141,1437], + [20143,2261], + [20145,1872], + [20147,2200], + [20149,7451], + [20151,2824], + [20153,1209], + [20155,15100], + [20157,1993], + [20159,2652], + [20161,9817], + [20163,1999], + [20165,1177], + [20167,2544], + [20169,13367], + [20171,1832], + [20173,101319], + [20175,3025], + [20177,35349], + [20179,1186], + [20181,2043], + [20183,1635], + [20185,1485], + [20187,580], + [20189,1564], + [20191,6844], + [20193,2832], + [20195,1211], + [20197,2358], + [20199,711], + [20201,2136], + [20203,765], + [20205,2747], + [20207,1063], + [20209,15520], + [21001,6637], + [21003,6466], + [21005,8242], + [21007,3161], + [21009,13483], + [21011,3082], + [21013,7764], + [21015,39082], + [21017,5569], + [21019,13591], + [21021,8040], + [21023,2711], + [21025,3991], + [21027,6484], + [21029,26210], + [21031,4428], + [21033,4507], + [21035,10367], + [21037,25050], + [21039,2094], + [21041,2588], + [21043,7587], + [21045,5482], + [21047,14108], + [21049,10710], + [21051,5861], + [21053,3809], + [21055,3290], + [21057,2502], + [21059,28907], + [21061,4135], + [21063,2000], + [21065,4236], + [21067,56890], + [21069,4722], + [21071,11993], + [21073,11819], + [21075,1549], + [21077,2443], + [21079,5904], + [21081,7268], + [21083,12671], + [21085,8219], + [21087,4372], + [21089,11546], + [21091,2788], + [21093,26970], + [21095,9129], + [21097,5435], + [21099,5320], + [21101,12159], + [21103,4944], + [21105,1657], + [21107,15277], + [21109,4889], + [21111,143758], + [21113,15474], + [21115,8043], + [21117,42958], + [21119,4357], + [21121,9885], + [21123,4799], + [21125,20592], + [21127,4816], + [21129,2151], + [21131,4015], + [21133,7293], + [21135,4363], + [21137,7338], + [21139,3570], + [21141,7778], + [21143,2789], + [21151,23431], + [21153,3824], + [21155,5122], + [21157,12322], + [21159,3503], + [21161,4944], + [21145,20774], + [21147,5012], + [21149,3381], + [21163,8660], + [21165,2010], + [21167,7740], + [21169,3491], + [21171,4278], + [21173,7856], + [21175,3628], + [21177,9393], + [21179,13430], + [21181,1957], + [21183,7942], + [21185,20469], + [21187,3745], + [21189,1474], + [21191,4604], + [21193,8158], + [21195,19740], + [21197,3513], + [21199,22900], + [21201,759], + [21203,5609], + [21205,5174], + [21207,6863], + [21209,15052], + [21211,13196], + [21213,5077], + [21215,7196], + [21217,8320], + [21219,3612], + [21221,4928], + [21223,2771], + [21225,4701], + [21227,28673], + [21229,4013], + [21231,6370], + [21233,4397], + [21235,11312], + [21237,1804], + [21239,7697], + [22001,21159], + [22003,6867], + [22005,36135], + [22007,6714], + [22009,11163], + [22011,12238], + [22013,3756], + [22015,35451], + [22017,48977], + [22019,54182], + [22021,3822], + [22023,3256], + [22025,3479], + [22027,3585], + [22029,5474], + [22031,8067], + [22033,84620], + [22035,1059], + [22037,5569], + [22039,10357], + [22041,6514], + [22043,7406], + [22045,20903], + [22047,7320], + [22049,5169], + [22051,100292], + [22053,10775], + [22055,68191], + [22057,31958], + [22059,5835], + [22061,10761], + [22063,48797], + [22065,1927], + [22067,6502], + [22069,8965], + [22071,24267], + [22073,41712], + [22075,6900], + [22077,6789], + [22079,36814], + [22081,2391], + [22083,6286], + [22085,7877], + [22087,10232], + [22089,16620], + [22091,2497], + [22093,5456], + [22095,7569], + [22097,21966], + [22099,16872], + [22101,14353], + [22103,90914], + [22105,33933], + [22107,1180], + [22109,31900], + [22111,7972], + [22113,19807], + [22115,13471], + [22117,12552], + [22119,11538], + [22121,6926], + [22123,3970], + [22125,3390], + [22127,4605], + [25001,53842], + [25003,16799], + [25005,104775], + [25007,2474], + [25009,135405], + [25011,10327], + [25013,78230], + [25015,22089], + [25017,216163], + [25019,1892], + [25021,119171], + [25023,114722], + [25025,50042], + [25027,157138], + [24001,20025], + [24003,114509], + [24005,131009], + [24510,22726], + [24009,24680], + [24011,8999], + [24013,55593], + [24015,27579], + [24017,24163], + [24019,7938], + [24021,56472], + [24023,10189], + [24025,74261], + [24027,44792], + [24029,4598], + [24031,82985], + [24033,29290], + [24035,16211], + [24039,5056], + [24037,26889], + [24041,10098], + [24043,38842], + [24045,20832], + [24047,15910], + [23001,28189], + [23003,19419], + [23005,57697], + [23007,7900], + [23009,13682], + [23011,31753], + [23013,9148], + [23015,9727], + [23017,16214], + [23019,41601], + [23021,5403], + [23023,9304], + [23025,14998], + [23027,10378], + [23029,9037], + [23031,50388], + [26001,4201], + [26003,2585], + [26005,33812], + [26007,9090], + [26009,8469], + [26011,4704], + [26013,2158], + [26015,19197], + [26017,28327], + [26019,5539], + [26021,38646], + [26023,11025], + [26025,31489], + [26027,14241], + [26029,8674], + [26031,8680], + [26033,9120], + [26035,8507], + [26037,21635], + [26039,4354], + [26041,11112], + [26043,8580], + [26045,27608], + [26047,10616], + [26049,84174], + [26051,8124], + [26053,4019], + [26055,27412], + [26057,9878], + [26059,14094], + [26061,8475], + [26063,10629], + [26065,44354], + [26067,16374], + [26069,8344], + [26071,3675], + [26073,12338], + [26075,39793], + [26077,51031], + [26079,6213], + [26081,147959], + [26083,814], + [26085,3159], + [26087,30037], + [26089,7239], + [26091,26428], + [26093,65665], + [26095,1756], + [26097,3740], + [26099,224589], + [26101,6915], + [26103,14646], + [26105,8505], + [26107,10305], + [26109,6704], + [26111,23877], + [26113,5386], + [26115,43255], + [26117,16907], + [26119,3498], + [26121,35962], + [26123,15174], + [26125,289127], + [26127,7228], + [26129,6827], + [26131,2069], + [26133,7336], + [26135,2843], + [26137,8266], + [26139,90456], + [26141,4486], + [26143,8141], + [26145,45469], + [26151,13446], + [26153,2556], + [26155,19232], + [26147,49067], + [26149,14886], + [26157,17421], + [26159,17890], + [26161,50335], + [26163,228908], + [26165,10000], + [27001,5516], + [27003,93341], + [27005,10880], + [27007,10783], + [27009,12872], + [27011,1607], + [27013,15667], + [27015,8708], + [27017,8160], + [27019,29057], + [27021,9982], + [27023,3764], + [27025,18441], + [27027,13549], + [27029,2925], + [27031,1156], + [27033,3679], + [27035,22287], + [27037,99624], + [27039,6527], + [27041,13966], + [27043,4659], + [27045,6271], + [27047,8808], + [27049,14041], + [27051,2063], + [27053,191768], + [27055,5616], + [27057,7269], + [27059,13635], + [27061,12920], + [27063,3609], + [27065,5230], + [27067,12785], + [27069,1349], + [27071,3569], + [27073,2294], + [27075,2932], + [27077,1540], + [27079,9182], + [27081,1930], + [27083,7256], + [27087,991], + [27089,3208], + [27091,7062], + [27085,12155], + [27093,8103], + [27095,8340], + [27097,12925], + [27099,8826], + [27101,2974], + [27103,8436], + [27105,5299], + [27107,1699], + [27109,35668], + [27111,20939], + [27113,4000], + [27115,8191], + [27117,3338], + [27119,8979], + [27121,3793], + [27123,70778], + [27125,1141], + [27127,5137], + [27129,4890], + [27131,15429], + [27133,3091], + [27135,5451], + [27139,39948], + [27141,31049], + [27143,5193], + [27137,44631], + [27145,47618], + [27147,11198], + [27149,2800], + [27151,2962], + [27153,8485], + [27155,1050], + [27157,6989], + [27159,4837], + [27161,5967], + [27163,64429], + [27165,2768], + [27167,2129], + [27169,12122], + [27171,43274], + [27173,3382], + [29001,6019], + [29003,6665], + [29005,2059], + [29007,6981], + [29009,11427], + [29011,4958], + [29013,6000], + [29015,7212], + [29017,4827], + [29019,36146], + [29021,21315], + [29023,13647], + [29025,3231], + [29027,13052], + [29029,16721], + [29031,26939], + [29033,3480], + [29035,2323], + [29037,33006], + [29039,5019], + [29041,2948], + [29043,30941], + [29045,2458], + [29047,57328], + [29049,7058], + [29051,24610], + [29053,5623], + [29055,7724], + [29057,3184], + [29059,5895], + [29061,2763], + [29063,3540], + [29065,5599], + [29067,5486], + [29069,8026], + [29071,35420], + [29073,5670], + [29075,2304], + [29077,77387], + [29079,3462], + [29081,2965], + [29083,7072], + [29085,3539], + [29087,1926], + [29089,3277], + [29091,13888], + [29093,3173], + [29095,114777], + [29097,35058], + [29099,68973], + [29101,13702], + [29103,1413], + [29105,12834], + [29107,10977], + [29109,13084], + [29111,3343], + [29113,18111], + [29115,4084], + [29117,4879], + [29121,5794], + [29123,4102], + [29125,3559], + [29127,9418], + [29119,6599], + [29129,1486], + [29131,9285], + [29133,3600], + [29135,5344], + [29137,3159], + [29139,4124], + [29141,6757], + [29143,5270], + [29145,20546], + [29147,6379], + [29149,3668], + [29151,5845], + [29153,3639], + [29155,3964], + [29157,6907], + [29159,12792], + [29161,12699], + [29163,5274], + [29165,24975], + [29167,10435], + [29169,9870], + [29171,1936], + [29173,3969], + [29175,7529], + [29177,7103], + [29179,2402], + [29181,4520], + [29195,5977], + [29197,1505], + [29199,1525], + [29201,13168], + [29203,2966], + [29205,2524], + [29183,120899], + [29185,3501], + [29187,17467], + [29189,199081], + [29510,20281], + [29186,5495], + [29207,11077], + [29209,13149], + [29211,1884], + [29213,18240], + [29215,8875], + [29217,6526], + [29219,11109], + [29221,7047], + [29223,4640], + [29225,12829], + [29227,808], + [29229,6703], + [28001,5125], + [28003,11817], + [28005,4282], + [28007,4288], + [28009,2240], + [28011,4251], + [28013,4360], + [28015,3774], + [28017,4127], + [28019,2763], + [28021,414], + [28023,5088], + [28025,4136], + [28027,2426], + [28029,5576], + [28031,5423], + [28033,42155], + [28035,15149], + [28037,2685], + [28039,8652], + [28041,4309], + [28043,5940], + [28045,13720], + [28047,39710], + [28049,24919], + [28051,1151], + [28053,924], + [28055,298], + [28057,8385], + [28059,31204], + [28061,4032], + [28063,489], + [28065,2466], + [28067,20076], + [28069,1778], + [28071,10872], + [28073,18493], + [28075,17574], + [28077,4072], + [28079,4775], + [28081,21695], + [28083,2757], + [28085,10550], + [28087,13124], + [28089,25607], + [28091,7697], + [28093,6525], + [28095,10107], + [28097,2334], + [28099,7613], + [28101,5929], + [28103,1181], + [28105,7671], + [28107,7371], + [28109,15530], + [28111,4135], + [28113,7748], + [28115,9442], + [28117,7647], + [28119,998], + [28121,46168], + [28123,5742], + [28125,619], + [28127,7393], + [28129,5877], + [28131,4810], + [28133,2768], + [28135,2462], + [28137,7385], + [28139,7182], + [28141,7117], + [28143,840], + [28145,9161], + [28147,3374], + [28149,9420], + [28151,4541], + [28153,5957], + [28155,3949], + [28157,1305], + [28159,4874], + [28161,3366], + [28163,4568], + [30001,3243], + [30003,1833], + [30005,1259], + [30007,2329], + [30009,3729], + [30011,677], + [30013,19343], + [30015,1676], + [30017,3638], + [30019,729], + [30021,3298], + [30023,1736], + [30025,1276], + [30027,4235], + [30029,30079], + [30031,23360], + [30033,653], + [30035,1598], + [30037,365], + [30039,1185], + [30041,3446], + [30043,4099], + [30045,867], + [30047,7453], + [30049,16665], + [30051,695], + [30053,6720], + [30057,3280], + [30055,858], + [30059,728], + [30061,1322], + [30063,21699], + [30065,1961], + [30067,4872], + [30069,276], + [30071,1715], + [30073,1786], + [30075,880], + [30077,2017], + [30079,555], + [30081,14673], + [30083,3885], + [30085,1722], + [30087,2211], + [30089,4268], + [30091,1237], + [30093,6252], + [30095,3630], + [30097,1580], + [30099,2152], + [30101,1495], + [30103,350], + [30105,2697], + [30107,698], + [30109,460], + [30111,38675], + [37001,38235], + [37003,13826], + [37005,3789], + [37007,4480], + [37009,9353], + [37011,6226], + [37013,14478], + [37015,3476], + [37017,8511], + [37019,42440], + [37021,55339], + [37023,25741], + [37025,53224], + [37027,26499], + [37029,3527], + [37031,26228], + [37033,5758], + [37035,48062], + [37037,17012], + [37039,10711], + [37041,3983], + [37043,4395], + [37045,28394], + [37047,14177], + [37049,27556], + [37051,50593], + [37053,9070], + [37055,11283], + [37057,52870], + [37059,15502], + [37061,12151], + [37063,27879], + [37065,8219], + [37067,74793], + [37069,16320], + [37071,61467], + [37073,2851], + [37075,3260], + [37077,13500], + [37079,4358], + [37081,97461], + [37083,8954], + [37085,27278], + [37087,18844], + [37089,35535], + [37091,3081], + [37093,7676], + [37095,1275], + [37097,54164], + [37099,9706], + [37101,54082], + [37103,2941], + [37105,13625], + [37107,13354], + [37109,28653], + [37113,12035], + [37115,6735], + [37117,5874], + [37111,14517], + [37119,154303], + [37121,6225], + [37123,7070], + [37125,30273], + [37127,23142], + [37129,54665], + [37131,3556], + [37133,36342], + [37135,18373], + [37137,4225], + [37139,8082], + [37141,17317], + [37143,4143], + [37145,11116], + [37147,35191], + [37149,6738], + [37151,49156], + [37153,10199], + [37155,20294], + [37157,26463], + [37159,42388], + [37161,21694], + [37163,14761], + [37165,6212], + [37167,21788], + [37169,16976], + [37171,23495], + [37173,3557], + [37175,10441], + [37177,968], + [37179,66265], + [37181,7304], + [37183,193607], + [37185,3302], + [37187,2560], + [37189,13521], + [37191,27360], + [37193,23613], + [37195,17410], + [37197,13815], + [37199,6367], + [38001,904], + [38003,3156], + [38005,927], + [38007,492], + [38009,2482], + [38011,1445], + [38013,879], + [38015,32499], + [38017,39738], + [38019,1356], + [38021,1656], + [38023,860], + [38025,1753], + [38027,790], + [38029,1672], + [38031,1237], + [38033,793], + [38035,16325], + [38037,1098], + [38039,847], + [38041,1032], + [38043,1106], + [38045,1475], + [38047,867], + [38049,1991], + [38051,1095], + [38053,3661], + [38055,3827], + [38057,3715], + [38059,11319], + [38061,2551], + [38063,1025], + [38065,827], + [38067,2204], + [38069,1433], + [38071,3216], + [38073,1209], + [38075,978], + [38077,4759], + [38079,1210], + [38081,1088], + [38083,644], + [38085,256], + [38087,361], + [38089,9718], + [38091,537], + [38093,6706], + [38095,733], + [38097,2263], + [38099,2991], + [38101,18601], + [38103,1793], + [38105,10033], + [31001,9205], + [31003,2717], + [31005,237], + [31007,355], + [31009,273], + [31011,2299], + [31013,3550], + [31015,978], + [31017,1380], + [31019,14424], + [31021,2360], + [31023,3068], + [31025,8388], + [31027,3533], + [31029,1621], + [31031,2623], + [31033,3610], + [31035,2373], + [31037,2171], + [31039,3095], + [31041,4616], + [31043,4028], + [31045,2559], + [31047,5935], + [31049,809], + [31051,2041], + [31053,9736], + [31055,102151], + [31057,823], + [31059,2100], + [31061,1345], + [31063,1106], + [31065,1915], + [31067,6333], + [31069,869], + [31071,819], + [31073,792], + [31075,367], + [31077,911], + [31079,14139], + [31081,3763], + [31083,1302], + [31085,471], + [31087,1216], + [31089,4275], + [31091,355], + [31093,2284], + [31095,2387], + [31097,1348], + [31099,2519], + [31101,3203], + [31103,458], + [31105,1317], + [31107,3181], + [31109,60456], + [31111,11992], + [31113,400], + [31115,323], + [31119,10518], + [31117,257], + [31121,2914], + [31123,1788], + [31125,1257], + [31127,2068], + [31129,1709], + [31131,4833], + [31133,970], + [31135,1202], + [31137,3832], + [31139,3052], + [31141,10864], + [31143,2019], + [31145,4212], + [31147,2684], + [31149,687], + [31151,2849], + [31153,44649], + [31155,7486], + [31157,9952], + [31159,5451], + [31161,2192], + [31163,1143], + [31165,602], + [31167,2173], + [31169,1993], + [31171,344], + [31173,1013], + [31175,1770], + [31177,7374], + [31179,2675], + [31181,1320], + [31183,377], + [31185,4686], + [33001,19315], + [33003,14635], + [33005,16876], + [33007,7951], + [33009,19010], + [33011,100013], + [33013,37674], + [33015,90447], + [33017,29072], + [33019,10796], + [34001,47882], + [34003,163220], + [34005,79539], + [34007,71020], + [34009,28237], + [34011,24213], + [34013,62059], + [34015,66949], + [34017,45615], + [34019,38565], + [34021,42604], + [34023,108981], + [34025,165305], + [34027,125376], + [34029,170103], + [34031,71488], + [34033,16256], + [34035,64640], + [34037,46486], + [34039,67582], + [34041,29393], + [35001,93874], + [35003,1453], + [35005,12869], + [35006,3179], + [35007,2569], + [35009,7560], + [35011,617], + [35013,25095], + [35015,13124], + [35017,5251], + [35019,591], + [35021,311], + [35023,906], + [35025,12306], + [35027,5889], + [35028,3329], + [35029,3478], + [35031,4893], + [35033,662], + [35035,11756], + [35037,2208], + [35039,3583], + [35041,3865], + [35043,25748], + [35045,27879], + [35047,2302], + [35049,14198], + [35051,2998], + [35053,2592], + [35055,2706], + [35057,3695], + [35059,1214], + [35061,13175], + [32510,13125], + [32001,7828], + [32003,319571], + [32005,17406], + [32007,13542], + [32009,329], + [32011,723], + [32013,4521], + [32015,1828], + [32017,1671], + [32019,16005], + [32021,1179], + [32023,13320], + [32027,1403], + [32029,1616], + [32031,94529], + [32033,2723], + [36001,44227], + [36003,11712], + [36005,34424], + [36007,38077], + [36009,18668], + [36011,16194], + [36013,29418], + [36015,19025], + [36017,11024], + [36019,13181], + [36021,12756], + [36023,9207], + [36025,11012], + [36027,58163], + [36029,173817], + [36031,7275], + [36033,7636], + [36035,12759], + [36037,15986], + [36039,11546], + [36041,1795], + [36043,15664], + [36045,19947], + [36047,133653], + [36049,6916], + [36051,19211], + [36053,14901], + [36055,128871], + [36057,10579], + [36059,275479], + [36061,58935], + [36063,49223], + [36065,48490], + [36067,78277], + [36069,24343], + [36071,72129], + [36073,11582], + [36075,25870], + [36077,12284], + [36079,25241], + [36081,138550], + [36083,31933], + [36085,95612], + [36087,57148], + [36091,51088], + [36093,27268], + [36095,8173], + [36097,5179], + [36099,6719], + [36089,18450], + [36101,25091], + [36103,328403], + [36105,14626], + [36107,12528], + [36109,9647], + [36111,32962], + [36113,14284], + [36115,12770], + [36117,21935], + [36119,121643], + [36121,11884], + [36123,5180], + [39001,8445], + [39003,29858], + [39005,17169], + [39007,22755], + [39009,10816], + [39011,18130], + [39013,20729], + [39015,14257], + [39017,104441], + [39019,9067], + [39021,12314], + [39023,34311], + [39025,65960], + [39027,13466], + [39029,31086], + [39031,10381], + [39033,13265], + [39035,179894], + [39037,19698], + [39039,11478], + [39041,55660], + [39043,19301], + [39045,43163], + [39047,7763], + [39049,192328], + [39051,13419], + [39053,9567], + [39055,29577], + [39057,47506], + [39059,11164], + [39061,169972], + [39063,23777], + [39065,8541], + [39067,5021], + [39069,9136], + [39071,13005], + [39073,8282], + [39075,8578], + [39077,15930], + [39079,9618], + [39081,20668], + [39083,18563], + [39085,62627], + [39087,18240], + [39089,49346], + [39091,15586], + [39093,65346], + [39095,74102], + [39097,11319], + [39099,52808], + [39101,16563], + [39103,53811], + [39105,6869], + [39107,17200], + [39109,36311], + [39111,4781], + [39113,120766], + [39115,4315], + [39117,11722], + [39119,23588], + [39121,4441], + [39123,12389], + [39125,6359], + [39127,9978], + [39129,16482], + [39131,7669], + [39133,38978], + [39135,15376], + [39137,14704], + [39139,35805], + [39141,17833], + [39143,16045], + [39145,19742], + [39147,14559], + [39149,18148], + [39151,96345], + [39153,109531], + [39155,48152], + [39157,26105], + [39159,17601], + [39161,10328], + [39163,3799], + [39165,75947], + [39167,19901], + [39169,31622], + [39171,11706], + [39173,31734], + [39175,7346], + [40001,4753], + [40003,1931], + [40005,4068], + [40007,1987], + [40009,6287], + [40011,2884], + [40013,10449], + [40015,6473], + [40017,39969], + [40019,13751], + [40021,9992], + [40023,4202], + [40025,962], + [40027,62469], + [40029,1892], + [40031,19153], + [40033,2054], + [40035,4279], + [40037,21539], + [40039,7818], + [40041,11796], + [40043,1964], + [40045,1610], + [40047,15998], + [40049,8243], + [40051,17293], + [40053,1827], + [40055,1482], + [40057,714], + [40059,1307], + [40061,3697], + [40063,3387], + [40065,5969], + [40067,1905], + [40069,3081], + [40071,12168], + [40073,5151], + [40075,2593], + [40077,3094], + [40079,13346], + [40081,10838], + [40083,13613], + [40085,2920], + [40093,2940], + [40095,4202], + [40097,11550], + [40087,13151], + [40089,8642], + [40091,5501], + [40099,4173], + [40101,15029], + [40103,3707], + [40105,3321], + [40107,2791], + [40109,141429], + [40111,8926], + [40113,12559], + [40115,7627], + [40117,4716], + [40119,16644], + [40121,12740], + [40123,10420], + [40125,17826], + [40127,3581], + [40129,1546], + [40131,30893], + [40133,5612], + [40135,10888], + [40137,14166], + [40139,4615], + [40141,1944], + [40143,143985], + [40145,22967], + [40147,15810], + [40149,3851], + [40151,2945], + [40153,6329], + [41001,6160], + [41003,13030], + [41005,79062], + [41007,7794], + [41009,12967], + [41011,17699], + [41013,8388], + [41015,7157], + [41017,43667], + [41019,34112], + [41021,632], + [41023,3187], + [41025,2904], + [41027,3223], + [41029,53083], + [41031,5337], + [41033,26582], + [41035,20170], + [41037,3001], + [41039,66218], + [41041,9901], + [41043,32683], + [41045,7141], + [41047,54336], + [41049,2698], + [41051,63055], + [41053,18333], + [41055,726], + [41057,6486], + [41059,16775], + [41061,8378], + [41063,2825], + [41065,5721], + [41067,75903], + [41069,583], + [41071,22589], + [42001,31249], + [42003,257488], + [42005,22676], + [42007,46081], + [42009,19455], + [42011,93094], + [42013,37224], + [42015,17957], + [42017,163873], + [42019,61388], + [42021,40510], + [42023,1495], + [42025,18714], + [42027,35099], + [42029,115582], + [42031,12545], + [42033,23909], + [42035,9701], + [42037,17387], + [42039,23912], + [42041,65649], + [42043,60620], + [42045,106559], + [42047,9704], + [42049,57168], + [42051,34388], + [42053,1680], + [42055,49554], + [42057,5676], + [42059,10394], + [42061,14369], + [42063,24920], + [42065,14533], + [42067,8234], + [42069,48102], + [42071,137145], + [42073,25323], + [42075,38804], + [42077,70285], + [42079,77508], + [42081,35475], + [42083,11159], + [42085,30034], + [42087,14050], + [42089,31706], + [42091,160803], + [42093,5274], + [42095,71384], + [42097,24418], + [42099,15613], + [42101,105418], + [42103,16035], + [42105,6247], + [42107,43937], + [42109,11710], + [42111,27347], + [42113,2318], + [42115,13295], + [42117,12928], + [42119,10605], + [42121,15254], + [42123,12032], + [42125,58941], + [42127,15269], + [42129,116427], + [42131,8375], + [42133,126933], + [44001,8910], + [44003,38141], + [44005,14975], + [44007,90321], + [44009,27074], + [45001,6742], + [45003,45981], + [45005,788], + [45007,56109], + [45009,2197], + [45011,4888], + [45013,39986], + [45015,44223], + [45017,3785], + [45019,75233], + [45021,15165], + [45023,7272], + [45025,9576], + [45027,7246], + [45029,9083], + [45031,14973], + [45033,5637], + [45035,34932], + [45037,6842], + [45039,4024], + [45041,29498], + [45043,17334], + [45045,125595], + [45047,16881], + [45049,3483], + [45051,83819], + [45053,6100], + [45055,17464], + [45057,23598], + [45059,16770], + [45061,2789], + [45063,79866], + [45067,5434], + [45069,4257], + [45065,2651], + [45071,10011], + [45073,24096], + [45075,11909], + [45077,36096], + [45079,52753], + [45081,5525], + [45083,76101], + [45085,18733], + [45087,7058], + [45089,4863], + [45091,66245], + [46003,974], + [46005,4455], + [46007,666], + [46009,2105], + [46011,6748], + [46013,9613], + [46015,1565], + [46017,171], + [46019,3355], + [46021,704], + [46023,2382], + [46025,1139], + [46027,2109], + [46029,7764], + [46031,588], + [46033,3290], + [46035,5157], + [46037,1627], + [46039,1366], + [46041,723], + [46043,1338], + [46045,1433], + [46047,2511], + [46049,858], + [46051,2381], + [46053,1600], + [46055,936], + [46057,2051], + [46059,1391], + [46061,1497], + [46063,694], + [46065,5174], + [46067,2517], + [46069,543], + [46071,722], + [46073,648], + [46075,450], + [46077,1680], + [46079,4038], + [46081,7411], + [46083,15499], + [46085,977], + [46091,1056], + [46087,1794], + [46089,892], + [46093,8441], + [46095,402], + [46097,706], + [46099,42043], + [46101,1729], + [46113,241], + [46103,29804], + [46105,1333], + [46107,1069], + [46109,2142], + [46111,819], + [46115,1854], + [46117,1148], + [46119,679], + [46121,487], + [46123,2069], + [46125,2937], + [46127,5288], + [46129,1896], + [46135,5654], + [46137,368], + [47001,19201], + [47003,11455], + [47005,4715], + [47007,3621], + [47009,37385], + [47011,29761], + [47013,9860], + [47015,4006], + [47017,7731], + [47019,16897], + [47021,11295], + [47023,3827], + [47025,8589], + [47027,2140], + [47029,9791], + [47031,14409], + [47033,3977], + [47035,20410], + [47037,84365], + [47039,3580], + [47041,5164], + [47043,13213], + [47045,10175], + [47047,13046], + [47049,6032], + [47051,11526], + [47053,13779], + [47055,7964], + [47057,6618], + [47059,18538], + [47061,3626], + [47063,15839], + [47065,78661], + [47067,1842], + [47069,4912], + [47071,8012], + [47073,16611], + [47075,3010], + [47077,8118], + [47079,9483], + [47081,5685], + [47083,2180], + [47085,4928], + [47087,3229], + [47089,14760], + [47091,5400], + [47093,105724], + [47095,1357], + [47097,4884], + [47099,12419], + [47101,3579], + [47103,10375], + [47105,17588], + [47111,6260], + [47113,21321], + [47115,7680], + [47117,8167], + [47119,23781], + [47107,14673], + [47109,7839], + [47121,3337], + [47123,13361], + [47125,32320], + [47127,2325], + [47129,5429], + [47131,9525], + [47133,6055], + [47135,2167], + [47137,2019], + [47139,5097], + [47141,18981], + [47143,8650], + [47145,15863], + [47147,19393], + [47149,64428], + [47151,6044], + [47153,4434], + [47155,28610], + [47157,114948], + [47159,5485], + [47161,3864], + [47163,45577], + [47165,50105], + [47167,16893], + [47169,2099], + [47171,5666], + [47173,5024], + [47175,1820], + [47177,9535], + [47179,34179], + [47181,5034], + [47183,9001], + [47185,7657], + [47187,68160], + [47189,39304], + [48001,13165], + [48003,3925], + [48005,21666], + [48007,7730], + [48009,3785], + [48011,924], + [48013,8598], + [48015,9637], + [48017,1343], + [48019,8159], + [48021,16314], + [48023,1267], + [48025,4743], + [48027,51780], + [48029,240161], + [48031,4212], + [48033,330], + [48035,6325], + [48037,24913], + [48039,72653], + [48041,38662], + [48043,2073], + [48045,625], + [48047,613], + [48049,12010], + [48051,5316], + [48053,14595], + [48055,6516], + [48057,4638], + [48059,4858], + [48061,29432], + [48063,3201], + [48065,2617], + [48067,9182], + [48069,1413], + [48071,13278], + [48073,12896], + [48075,1802], + [48077,4376], + [48079,679], + [48081,1265], + [48083,3177], + [48085,200395], + [48087,983], + [48089,6323], + [48091,44996], + [48093,4300], + [48095,885], + [48097,13174], + [48099,12212], + [48101,486], + [48103,1047], + [48105,980], + [48107,1180], + [48109,280], + [48111,1258], + [48113,261865], + [48115,2636], + [48117,2911], + [48119,1836], + [48121,169175], + [48123,5510], + [48125,755], + [48127,974], + [48129,1225], + [48131,1316], + [48133,6008], + [48135,24976], + [48137,741], + [48139,44807], + [48141,54567], + [48143,11205], + [48145,3438], + [48147,9536], + [48149,8648], + [48151,1265], + [48153,1473], + [48155,383], + [48157,117212], + [48159,3583], + [48161,5995], + [48163,1232], + [48165,3907], + [48167,73566], + [48169,1223], + [48171,10445], + [48173,553], + [48175,2618], + [48177,4580], + [48179,6495], + [48181,35274], + [48183,28693], + [48185,7065], + [48187,36495], + [48189,6347], + [48191,891], + [48193,3056], + [48195,1730], + [48197,1207], + [48199,19600], + [48201,544960], + [48203,18712], + [48205,1727], + [48207,1403], + [48209,33730], + [48211,1460], + [48213,23574], + [48215,48608], + [48217,10075], + [48219,5793], + [48221,21367], + [48223,10704], + [48225,6205], + [48227,6635], + [48229,503], + [48231,23866], + [48233,7039], + [48235,660], + [48237,2973], + [48239,4266], + [48241,10578], + [48243,694], + [48245,42828], + [48247,430], + [48249,5411], + [48251,44370], + [48253,4815], + [48255,2959], + [48257,29537], + [48259,15663], + [48261,84], + [48263,360], + [48265,17658], + [48267,1697], + [48269,149], + [48271,936], + [48273,4364], + [48275,1078], + [48277,14546], + [48279,3040], + [48281,6371], + [48283,870], + [48285,7339], + [48287,4996], + [48289,6391], + [48291,18856], + [48293,5747], + [48295,1159], + [48297,3450], + [48299,8283], + [48301,57], + [48303,65566], + [48305,1546], + [48313,3349], + [48315,2968], + [48317,1453], + [48319,1656], + [48321,8147], + [48323,2816], + [48307,2546], + [48309,48245], + [48311,454], + [48325,12054], + [48327,681], + [48329,36896], + [48331,6340], + [48333,1949], + [48335,1780], + [48337,7526], + [48339,150188], + [48341,3974], + [48343,3443], + [48345,571], + [48347,14751], + [48349,11984], + [48351,2961], + [48353,3551], + [48355,50704], + [48357,2628], + [48359,850], + [48361,25385], + [48363,8222], + [48365,8445], + [48367,46433], + [48369,1911], + [48371,2463], + [48373,26587], + [48375,19499], + [48377,652], + [48379,3919], + [48381,43379], + [48383,709], + [48385,1382], + [48387,3924], + [48389,1417], + [48391,1830], + [48393,524], + [48395,4665], + [48397,28396], + [48399,3241], + [48401,14675], + [48403,3992], + [48405,2620], + [48407,8050], + [48409,13004], + [48411,2025], + [48413,819], + [48415,4403], + [48417,1378], + [48419,7171], + [48421,807], + [48423,58631], + [48425,3206], + [48427,2218], + [48429,3033], + [48431,549], + [48433,555], + [48435,1075], + [48437,1671], + [48439,345683], + [48441,33172], + [48443,287], + [48445,1295], + [48447,715], + [48449,6405], + [48451,27376], + [48453,126750], + [48455,4737], + [48457,6601], + [48459,13198], + [48461,961], + [48463,4828], + [48465,5856], + [48467,18436], + [48469,21253], + [48471,12878], + [48473,10525], + [48475,2541], + [48477,10944], + [48479,12946], + [48481,10149], + [48483,2087], + [48485,27609], + [48487,3166], + [48489,1541], + [48491,104029], + [48493,13991], + [48495,1403], + [48497,20655], + [48499,15681], + [48501,1797], + [48503,6587], + [48505,1028], + [48507,692], + [49001,1838], + [49003,10324], + [49005,16643], + [49007,5182], + [49009,327], + [49011,46985], + [49013,5505], + [49015,3402], + [49017,1577], + [49019,1934], + [49021,10025], + [49023,2759], + [49025,2248], + [49027,3860], + [49029,3156], + [49031,537], + [49033,786], + [49035,117901], + [49037,2635], + [49039,6436], + [49041,6455], + [49043,7160], + [49045,9693], + [49047,9876], + [49049,89755], + [49051,6115], + [49053,39566], + [49055,959], + [49057,38447], + [51001,8582], + [51003,19232], + [51510,13241], + [51005,4873], + [51007,4704], + [51009,9643], + [51011,5714], + [51013,20155], + [51015,26152], + [51017,1548], + [51019,30578], + [51021,2572], + [51023,13369], + [51520,4884], + [51025,3045], + [51027,7292], + [51029,3969], + [51530,1432], + [51031,19442], + [51033,7143], + [51035,10653], + [51036,1381], + [51037,3479], + [51540,2951], + [51550,53988], + [51041,84938], + [51043,4657], + [51570,5681], + [51580,1349], + [51045,2139], + [51047,13341], + [51049,2693], + [51590,7306], + [51051,4932], + [51053,7447], + [51595,792], + [51057,2657], + [51059,157837], + [51600,3695], + [51610,1323], + [51061,22110], + [51063,5289], + [51065,7018], + [51067,18560], + [51620,1421], + [51069,26069], + [51630,3731], + [51640,1603], + [51071,5930], + [51073,13087], + [51075,8374], + [51077,5593], + [51079,5943], + [51081,1737], + [51083,9698], + [51650,17802], + [51085,39592], + [51660,6232], + [51087,59674], + [51089,15207], + [51091,958], + [51670,3885], + [51093,11971], + [51095,21284], + [51097,2059], + [51099,7338], + [51101,5963], + [51103,3520], + [51105,7542], + [51678,766], + [51107,69633], + [51109,10507], + [51111,3206], + [51680,17979], + [51113,4418], + [51683,5934], + [51685,1732], + [51690,2149], + [51115,3515], + [51117,8283], + [51119,3668], + [51121,19455], + [51125,4150], + [51127,8117], + [51700,23650], + [51710,19875], + [51131,2686], + [51133,5089], + [51720,1021], + [51135,3712], + [51137,10511], + [51139,7824], + [51141,6454], + [51730,1448], + [51143,21742], + [51735,5089], + [51740,12773], + [51145,11875], + [51147,4099], + [51149,9157], + [51153,54065], + [51155,10314], + [51750,2637], + [51157,2532], + [51159,2213], + [51760,14254], + [51161,30857], + [51770,16045], + [51163,6671], + [51165,25269], + [51167,9516], + [51775,7225], + [51169,8242], + [51171,14078], + [51173,9747], + [51175,5035], + [51177,34619], + [51179,33840], + [51790,5129], + [51800,17206], + [51181,1785], + [51183,2055], + [51185,15160], + [51810,84389], + [51187,11762], + [51191,19309], + [51820,4798], + [51193,4331], + [51830,1921], + [51840,4786], + [51195,11983], + [51197,10044], + [51199,18823], + [50001,5297], + [50003,5925], + [50005,5533], + [50007,18298], + [50009,1506], + [50011,8752], + [50013,1487], + [50015,3570], + [50017,4997], + [50019,5158], + [50021,12471], + [50023,7993], + [50025,5462], + [50027,8604], + [53001,2740], + [53003,5712], + [53005,45594], + [53007,15070], + [53009,15685], + [53011,90590], + [53013,1491], + [53015,24066], + [53017,7208], + [53019,2178], + [53021,11358], + [53023,841], + [53025,18482], + [53027,13269], + [53029,18259], + [53031,5986], + [53033,197781], + [53035,46762], + [53037,9845], + [53039,5390], + [53041,16273], + [53043,4095], + [53045,13539], + [53047,6305], + [53049,5338], + [53051,4364], + [53053,136046], + [53055,2651], + [53057,24330], + [53059,2910], + [53061,116433], + [53063,103846], + [53065,11059], + [53067,46219], + [53069,1328], + [53071,10775], + [53073,40247], + [53075,5462], + [53077,39593], + [55001,5983], + [55003,3428], + [55005,13595], + [55007,4125], + [55009,67192], + [55011,4049], + [55013,5412], + [55015,15345], + [55017,17912], + [55019,8645], + [55021,14160], + [55023,3844], + [55025,71270], + [55027,26643], + [55029,8584], + [55031,9657], + [55033,11487], + [55035,23301], + [55037,1897], + [55039,31044], + [55041,2787], + [55043,12347], + [55045,8693], + [55047,6210], + [55049,4809], + [55051,2090], + [55053,4907], + [55055,23409], + [55057,7188], + [55059,36025], + [55061,6616], + [55063,26384], + [55065,3977], + [55067,6436], + [55069,8400], + [55071,23234], + [55073,39010], + [55075,12995], + [55077,4712], + [55078,269], + [55079,126091], + [55081,11442], + [55083,13255], + [55085,11677], + [55087,49884], + [55089,30458], + [55091,2228], + [55093,11260], + [55095,13864], + [55097,17310], + [55099,4562], + [55101,46620], + [55103,4021], + [55105,31483], + [55107,4564], + [55111,14791], + [55113,4625], + [55115,12742], + [55117,32368], + [55109,26123], + [55119,6589], + [55121,7370], + [55123,6994], + [55125,8169], + [55127,28848], + [55129,5404], + [55131,51729], + [55133,142521], + [55135,16013], + [55137,7669], + [55139,43447], + [55141,21502], + [54001,4509], + [54003,28210], + [54005,6483], + [54007,3516], + [54009,6574], + [54011,19648], + [54013,2023], + [54015,2289], + [54017,2347], + [54019,10263], + [54021,1889], + [54023,4338], + [54025,9499], + [54027,6646], + [54029,8870], + [54031,4544], + [54033,18687], + [54035,8959], + [54037,13144], + [54039,43464], + [54041,5245], + [54043,5257], + [54045,9866], + [54049,14592], + [54051,9565], + [54053,7597], + [54047,4614], + [54055,17362], + [54057,8957], + [54059,7876], + [54061,18278], + [54063,4337], + [54065,5718], + [54067,7169], + [54069,11077], + [54071,2388], + [54073,2342], + [54075,2474], + [54077,9501], + [54079,17455], + [54081,21835], + [54083,7583], + [54085,3376], + [54087,3772], + [54089,3444], + [54091,4701], + [54093,2557], + [54095,2967], + [54097,6971], + [54099,11077], + [54101,2284], + [54103,4461], + [54105,1903], + [54107,25168], + [54109,6527], + [56001,7601], + [56003,4067], + [56005,15778], + [56007,4409], + [56009,5520], + [56011,3347], + [56013,11167], + [56015,4418], + [56017,1939], + [56019,3477], + [56021,24844], + [56023,6779], + [56025,23523], + [56027,1116], + [56029,11115], + [56031,3437], + [56033,10266], + [56035,3409], + [56037,12153], + [56039,3920], + [56041,6154], + [56043,2911], + [56045,2898] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes.json b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes.json new file mode 100644 index 0000000..4ae974d --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2016/us-election-presidential-2016-votes.json @@ -0,0 +1,3163 @@ +{ + "metadata" : { + "name" : "2016 Presidential Election | Total Votes", + "description" : "Total votes cast in the 2016 presidential election.", + "units" : "votes", + "year" : "2016", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Townhall.com" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.elections.presidential.2016.votes"], + [2013,246588], + [2016,246588], + [2020,246588], + [2050,246588], + [2060,246588], + [2068,246588], + [2070,246588], + [2090,246588], + [2100,246588], + [2105,246588], + [2110,246588], + [2122,246588], + [2130,246588], + [2150,246588], + [2164,246588], + [2170,246588], + [2180,246588], + [2185,246588], + [2188,246588], + [2195,246588], + [2198,246588], + [2220,246588], + [2230,246588], + [2240,246588], + [2261,246588], + [2270,246588], + [2275,246588], + [2282,246588], + [2290,246588], + [1001,24661], + [1003,94090], + [1005,10390], + [1007,8748], + [1009,25384], + [1011,4701], + [1013,8685], + [1015,47376], + [1017,13778], + [1019,10503], + [1021,18255], + [1023,7268], + [1025,12936], + [1027,6572], + [1029,6532], + [1031,20513], + [1033,24626], + [1035,6543], + [1037,5223], + [1039,15818], + [1041,6252], + [1043,37278], + [1045,18617], + [1047,18730], + [1049,26086], + [1051,36905], + [1053,15213], + [1055,43474], + [1057,8196], + [1059,11955], + [1061,11659], + [1063,4862], + [1065,8010], + [1067,8017], + [1069,42030], + [1071,20785], + [1073,290111], + [1075,6931], + [1077,38813], + [1079,14623], + [1081,57668], + [1083,39400], + [1085,6676], + [1087,8748], + [1089,159473], + [1091,10948], + [1093,12912], + [1095,34965], + [1097,163387], + [1099,10185], + [1101,94572], + [1103,49991], + [1105,5255], + [1107,9494], + [1109,13025], + [1111,10130], + [1113,19136], + [1117,99208], + [1115,37937], + [1119,6391], + [1121,33218], + [1123,18504], + [1125,81708], + [1127,29243], + [1129,8492], + [1131,6095], + [1133,10255], + [5001,6167], + [5003,8027], + [5005,19572], + [5007,94262], + [5009,15912], + [5011,3617], + [5013,2250], + [5015,10656], + [5017,4149], + [5019,8365], + [5021,5978], + [5023,11968], + [5025,3299], + [5027,8837], + [5029,7837], + [5031,34968], + [5033,22155], + [5035,15798], + [5037,6831], + [5039,2741], + [5041,4226], + [5043,6552], + [5045,46364], + [5047,6698], + [5049,4744], + [5051,40337], + [5053,6855], + [5055,14422], + [5057,6984], + [5059,11815], + [5061,4634], + [5063,13443], + [5065,5396], + [5067,5093], + [5069,25683], + [5071,8997], + [5073,2835], + [5075,5629], + [5077,3004], + [5079,3814], + [5081,5192], + [5083,7839], + [5085,26766], + [5087,6782], + [5089,6718], + [5091,16015], + [5093,12995], + [5095,2766], + [5097,3445], + [5099,3233], + [5101,3731], + [5103,9881], + [5105,4213], + [5107,6894], + [5109,3956], + [5111,5283], + [5113,8121], + [5115,21545], + [5117,3404], + [5119,157728], + [5121,6313], + [5125,51971], + [5127,3017], + [5129,3698], + [5131,43557], + [5133,4517], + [5135,7190], + [5123,7412], + [5137,5527], + [5139,16338], + [5141,7111], + [5143,78153], + [5145,27451], + [5147,2550], + [5149,6389], + [4001,18659], + [4003,43147], + [4005,44929], + [4007,21398], + [4009,11939], + [4011,3243], + [4012,4931], + [4013,1201934], + [4015,74189], + [4017,35409], + [4019,360762], + [4021,93805], + [4023,14926], + [4025,92780], + [4027,40759], + [6001,613195], + [6003,575], + [6005,17186], + [6007,87847], + [6009,22334], + [6011,6594], + [6013,415972], + [6015,9361], + [6017,89228], + [6019,250264], + [6021,9379], + [6023,33636], + [6025,41751], + [6027,7996], + [6029,217725], + [6031,32250], + [6033,13045], + [6035,10422], + [6037,2652072], + [6039,34263], + [6041,109941], + [6043,8877], + [6045,11435], + [6047,42523], + [6049,3359], + [6051,5154], + [6053,96676], + [6055,40393], + [6057,33258], + [6059,1092116], + [6061,150532], + [6063,8830], + [6065,683612], + [6067,467526], + [6069,17572], + [6071,598783], + [6073,1011651], + [6075,365295], + [6077,166647], + [6079,124575], + [6081,287499], + [6083,164224], + [6085,659148], + [6087,113509], + [6089,72554], + [6091,1804], + [6093,19836], + [6095,156067], + [6097,164060], + [6099,156141], + [6101,30429], + [6103,22875], + [6105,4716], + [6107,94571], + [6109,23472], + [6111,307881], + [6113,50623], + [6115,21058], + [8001,175125], + [8003,6897], + [8005,281658], + [8007,7290], + [8009,2107], + [8011,1892], + [8013,176735], + [8014,37342], + [8015,10999], + [8017,1076], + [8019,5532], + [8021,3970], + [8023,1820], + [8025,1511], + [8027,3064], + [8029,16661], + [8031,232291], + [8033,1230], + [8035,182918], + [8037,22611], + [8039,15689], + [8041,313273], + [8043,21880], + [8045,26328], + [8047,3574], + [8049,8513], + [8051,9299], + [8053,589], + [8055,3772], + [8057,862], + [8059,309529], + [8061,853], + [8063,3613], + [8065,3175], + [8067,30722], + [8069,193897], + [8071,6693], + [8073,2402], + [8075,9702], + [8077,74876], + [8079,652], + [8081,6510], + [8083,12706], + [8085,21070], + [8087,11888], + [8089,5038], + [8091,3287], + [8093,10245], + [8095,2332], + [8097,10387], + [8099,4978], + [8101,60112], + [8103,3436], + [8105,5488], + [8107,13772], + [8109,2707], + [8111,506], + [8113,4311], + [8115,1364], + [8117,16061], + [8119,14203], + [8121,2708], + [8123,133790], + [8125,4664], + [9001,410279], + [9003,399219], + [9005,97434], + [9007,88402], + [9009,375909], + [9011,124527], + [9013,77069], + [9015,50703], + [11001,280272], + [10001,74253], + [10003,261468], + [10005,105814], + [12001,127827], + [12003,12634], + [12005,87151], + [12007,12098], + [12009,314337], + [12011,822837], + [12013,6067], + [12015,96323], + [12017,79590], + [12019,106363], + [12021,170505], + [12023,28696], + [12027,10761], + [12029,7202], + [12031,428734], + [12033,151609], + [12035,57413], + [12037,6003], + [12039,22079], + [12041,8418], + [12043,4355], + [12045,7279], + [12047,5451], + [12049,7577], + [12051,11106], + [12053,93878], + [12055,45589], + [12057,595072], + [12059,8506], + [12061,79897], + [12063,20997], + [12065,7641], + [12067,3375], + [12069,169898], + [12071,325797], + [12073,151925], + [12075,19367], + [12077,3295], + [12079,8503], + [12081,178521], + [12083,174485], + [12085,85741], + [12086,978670], + [12087,42434], + [12089,46537], + [12091,100657], + [12093,13632], + [12095,545800], + [12097,139981], + [12099,657235], + [12101,240814], + [12103,491520], + [12105,283828], + [12107,32652], + [12113,87432], + [12115,228509], + [12117,224377], + [12109,136392], + [12111,140731], + [12119,76649], + [12121,18675], + [12123,9279], + [12125,5693], + [12127,260304], + [12129,15344], + [12131,33559], + [12133,11144], + [13001,7003], + [13003,2604], + [13005,4010], + [13007,1440], + [13009,16075], + [13011,6946], + [13013,28828], + [13015,39263], + [13017,5923], + [13019,6563], + [13021,58327], + [13023,4934], + [13025,6285], + [13027,6268], + [13029,15063], + [13031,24151], + [13033,9350], + [13035,9477], + [13037,2023], + [13039,18825], + [13043,3757], + [13045,43744], + [13047,26510], + [13049,4008], + [13051,106013], + [13053,1384], + [13055,8246], + [13057,110825], + [13059,44221], + [13061,1271], + [13063,89236], + [13065,2443], + [13067,326424], + [13069,13896], + [13071,13592], + [13073,64190], + [13075,6038], + [13077,61315], + [13079,5157], + [13081,7500], + [13083,6238], + [13085,11680], + [13087,10238], + [13089,295871], + [13091,6995], + [13093,3836], + [13095,33925], + [13097,57365], + [13099,4782], + [13101,1175], + [13103,23395], + [13105,7912], + [13107,7838], + [13109,3602], + [13111,11764], + [13113,60387], + [13115,34250], + [13117,97314], + [13119,8474], + [13121,407173], + [13123,12713], + [13125,1390], + [13127,34041], + [13129,18850], + [13131,9187], + [13133,8831], + [13135,323931], + [13137,16128], + [13139,70133], + [13141,3572], + [13143,11317], + [13145,16392], + [13147,10077], + [13149,4206], + [13151,98037], + [13153,59559], + [13155,3659], + [13157,27057], + [13159,6016], + [13161,5089], + [13163,6934], + [13165,3034], + [13167,3682], + [13169,12524], + [13171,7575], + [13173,2861], + [13175,19448], + [13177,14106], + [13179,16082], + [13181,4100], + [13183,4109], + [13185,36813], + [13187,12324], + [13193,4287], + [13195,11945], + [13197,3183], + [13189,9268], + [13191,5893], + [13199,9181], + [13201,2540], + [13205,7857], + [13207,12675], + [13209,3560], + [13211,9435], + [13213,12422], + [13215,68320], + [13217,43787], + [13219,19030], + [13221,6650], + [13223,64601], + [13225,10699], + [13227,13982], + [13229,7297], + [13231,8675], + [13233,14158], + [13235,3598], + [13237,9431], + [13239,1044], + [13241,7949], + [13243,2895], + [13245,74952], + [13247,37589], + [13249,1909], + [13251,5699], + [13253,3577], + [13255,25940], + [13257,9760], + [13259,2053], + [13261,10973], + [13263,3243], + [13265,897], + [13267,6879], + [13269,3402], + [13271,3794], + [13273,4179], + [13275,18730], + [13277,12796], + [13279,9108], + [13281,6726], + [13283,2700], + [13285,25793], + [13287,3390], + [13289,4053], + [13291,12039], + [13293,10924], + [13295,23939], + [13297,40425], + [13299,12150], + [13301,2332], + [13303,8422], + [13305,10376], + [13307,1114], + [13309,2102], + [13311,11771], + [13313,30362], + [13315,2973], + [13317,4470], + [13319,4276], + [13321,8266], + [15001,64865], + [15003,285683], + [15007,26335], + [15009,51942], + [19001,3759], + [19003,2082], + [19005,6837], + [19007,6096], + [19009,3379], + [19011,13690], + [19013,63221], + [19015,13984], + [19017,13350], + [19019,10137], + [19021,8179], + [19023,7457], + [19025,5105], + [19027,10435], + [19029,7055], + [19031,9386], + [19033,22633], + [19035,6186], + [19037,6367], + [19039,4405], + [19041,8542], + [19043,9098], + [19045,22748], + [19047,6862], + [19049,37617], + [19051,3858], + [19053,3703], + [19055,9165], + [19057,18713], + [19059,10247], + [19061,49037], + [19063,4707], + [19065,9813], + [19067,7985], + [19069,4915], + [19071,3554], + [19073,4762], + [19075,6766], + [19077,5654], + [19079,7589], + [19081,5815], + [19083,8423], + [19085,7378], + [19087,9286], + [19089,4507], + [19091,5033], + [19093,3590], + [19095,8789], + [19097,10204], + [19099,18776], + [19101,8001], + [19103,75637], + [19105,10011], + [19107,4858], + [19109,8505], + [19111,15893], + [19113,114664], + [19115,4943], + [19117,4297], + [19119,6336], + [19121,8523], + [19123,10494], + [19125,17554], + [19127,17700], + [19129,7608], + [19131,5360], + [19133,4525], + [19135,3844], + [19137,4998], + [19139,19086], + [19141,7348], + [19143,3197], + [19145,6968], + [19147,4674], + [19149,13057], + [19151,3831], + [19153,228420], + [19155,42226], + [19157,9693], + [19159,2684], + [19161,5158], + [19163,84878], + [19165,6270], + [19167,17989], + [19169,48910], + [19171,8636], + [19173,3003], + [19175,5768], + [19177,3526], + [19179,14996], + [19181,26916], + [19183,10824], + [19185,2921], + [19187,17239], + [19189,5717], + [19191,11217], + [19193,42933], + [19195,4216], + [19197,5949], + [16001,195587], + [16003,2183], + [16005,33405], + [16007,2928], + [16009,4192], + [16011,16625], + [16013,10723], + [16015,3812], + [16017,16815], + [16019,44212], + [16021,5150], + [16023,1230], + [16025,599], + [16027,72007], + [16029,3035], + [16031,8178], + [16033,283], + [16035,3801], + [16037,2413], + [16039,8519], + [16041,5499], + [16043,5714], + [16045,7952], + [16047,5191], + [16049,8223], + [16051,11471], + [16053,10667], + [16055,66286], + [16057,18146], + [16059,4068], + [16061,1590], + [16063,1748], + [16065,15687], + [16067,6870], + [16069,17195], + [16071,2068], + [16073,3920], + [16075,5703], + [16077,2758], + [16079,5120], + [16081,4966], + [16083,31893], + [16085,5349], + [16087,4454], + [17001,31770], + [17003,2820], + [17005,7462], + [17007,22604], + [17009,2336], + [17011,16303], + [17013,2556], + [17015,7354], + [17017,5054], + [17019,89196], + [17021,15310], + [17023,7819], + [17025,6278], + [17027,17268], + [17029,21580], + [17031,2055215], + [17033,8507], + [17035,5513], + [17037,42605], + [17039,7469], + [17041,8089], + [17043,412929], + [17045,7783], + [17047,3312], + [17049,17428], + [17051,9515], + [17053,6289], + [17055,18533], + [17057,15609], + [17059,2691], + [17061,5542], + [17063,22891], + [17065,4143], + [17067,7818], + [17069,2133], + [17071,3480], + [17073,24232], + [17075,12923], + [17077,24509], + [17079,5104], + [17081,16818], + [17083,10909], + [17085,11177], + [17087,6017], + [17089,193500], + [17091,46556], + [17093,50815], + [17095,21964], + [17097,293574], + [17099,48447], + [17101,6039], + [17103,15215], + [17105,15096], + [17107,12130], + [17115,47283], + [17117,21881], + [17119,127902], + [17121,16600], + [17123,5903], + [17125,6433], + [17127,6633], + [17109,12910], + [17111,140145], + [17113,78995], + [17129,6423], + [17131,8417], + [17133,19074], + [17135,12829], + [17137,14607], + [17139,6209], + [17141,23798], + [17143,77465], + [17145,9706], + [17147,8899], + [17149,7458], + [17151,2132], + [17153,2473], + [17155,3076], + [17157,14032], + [17159,7630], + [17161,62971], + [17165,11234], + [17167,96472], + [17169,3792], + [17171,2583], + [17173,10912], + [17163,119201], + [17175,2707], + [17177,19525], + [17179,63347], + [17181,8514], + [17183,29799], + [17185,5402], + [17187,7700], + [17189,7376], + [17191,8256], + [17193,7289], + [17195,25210], + [17197,291010], + [17199,31422], + [17201,113027], + [17203,19389], + [18001,13039], + [18003,145787], + [18005,32389], + [18007,3654], + [18009,4822], + [18011,32061], + [18013,7908], + [18015,8609], + [18017,14135], + [18019,51104], + [18021,11259], + [18023,11896], + [18025,4591], + [18027,10736], + [18029,23910], + [18031,11095], + [18033,16816], + [18035,44699], + [18037,19917], + [18039,65187], + [18041,9530], + [18043,37225], + [18045,7474], + [18047,10990], + [18049,8374], + [18051,15472], + [18053,25239], + [18055,13763], + [18057,153630], + [18059,36027], + [18061,18528], + [18063,75258], + [18065,20075], + [18067,36754], + [18069,15974], + [18071,17532], + [18073,13331], + [18075,7962], + [18077,13461], + [18079,11115], + [18081,66229], + [18083,15483], + [18085,31907], + [18087,9552], + [18089,200247], + [18091,44994], + [18093,19076], + [18095,53660], + [18097,361070], + [18099,18008], + [18101,4807], + [18103,13440], + [18105,57623], + [18107,15101], + [18109,31180], + [18111,5791], + [18113,16890], + [18115,2917], + [18117,8189], + [18119,8520], + [18121,6576], + [18123,8025], + [18125,5977], + [18127,76492], + [18129,12448], + [18131,5437], + [18133,14680], + [18135,10456], + [18137,12790], + [18139,7214], + [18143,9060], + [18145,17935], + [18147,9959], + [18141,109452], + [18149,9226], + [18151,14530], + [18153,8559], + [18155,3639], + [18157,61916], + [18159,7510], + [18161,3286], + [18163,71957], + [18165,6913], + [18167,39569], + [18169,13415], + [18171,3919], + [18173,29609], + [18175,11333], + [18177,25575], + [18179,13123], + [18181,9902], + [18183,15535], + [20001,5314], + [20003,3277], + [20005,6393], + [20007,2209], + [20009,10088], + [20011,5918], + [20013,3960], + [20015,27051], + [20017,1342], + [20019,1845], + [20021,8386], + [20023,1409], + [20025,983], + [20027,3727], + [20029,3831], + [20031,3962], + [20033,857], + [20035,12171], + [20037,14404], + [20039,1460], + [20041,8008], + [20043,3366], + [20045,48231], + [20047,1308], + [20049,1259], + [20051,11660], + [20053,2626], + [20055,9731], + [20057,7425], + [20059,10658], + [20061,7129], + [20063,1328], + [20065,1265], + [20067,2311], + [20069,2011], + [20071,639], + [20073,2811], + [20075,847], + [20077,2513], + [20079,14540], + [20081,1300], + [20083,1006], + [20085,5727], + [20087,8151], + [20089,1483], + [20091,279753], + [20093,1325], + [20095,3281], + [20097,1023], + [20099,7919], + [20101,831], + [20103,29676], + [20105,1448], + [20107,4279], + [20109,1348], + [20111,11745], + [20115,5465], + [20117,4578], + [20113,12443], + [20119,1675], + [20121,14712], + [20123,2824], + [20125,11623], + [20127,2568], + [20129,1160], + [20131,5025], + [20133,6151], + [20135,1435], + [20137,2190], + [20139,6894], + [20141,1753], + [20143,2866], + [20145,2602], + [20147,2611], + [20149,10359], + [20151,3806], + [20153,1448], + [20155,23448], + [20157,2484], + [20159,3567], + [20161,20475], + [20163,2378], + [20165,1474], + [20167,3148], + [20169,21206], + [20171,2159], + [20173,180750], + [20175,4743], + [20177,73648], + [20179,1362], + [20181,2537], + [20183,2014], + [20185,1884], + [20187,742], + [20189,1853], + [20191,9494], + [20193,3483], + [20195,1459], + [20197,3340], + [20199,779], + [20201,2677], + [20203,934], + [20205,3482], + [20207,1420], + [20209,47467], + [21001,8228], + [21003,8085], + [21005,11414], + [21007,4097], + [21009,18473], + [21011,4577], + [21013,9714], + [21015,57550], + [21017,8791], + [21019,20443], + [21021,12928], + [21023,3522], + [21025,5728], + [21027,8765], + [21029,36036], + [21031,5575], + [21033,5972], + [21035,16039], + [21037,42471], + [21039,2599], + [21041,3851], + [21043,10267], + [21045,6438], + [21047,22069], + [21049,16193], + [21051,6762], + [21053,4454], + [21055,4036], + [21057,3061], + [21059,45752], + [21061,5239], + [21063,2847], + [21065,5538], + [21067,136112], + [21069,6250], + [21071,16521], + [21073,23840], + [21075,2381], + [21077,3334], + [21079,7613], + [21081,9551], + [21083,16582], + [21085,10564], + [21087,5331], + [21089,16265], + [21091,4292], + [21093,43113], + [21095,10744], + [21097,7774], + [21099,7261], + [21101,19692], + [21103,7142], + [21105,2157], + [21107,20325], + [21109,5497], + [21111,352778], + [21113,23292], + [21115,9560], + [21117,71905], + [21119,5756], + [21121,12001], + [21123,6359], + [21125,24811], + [21127,6037], + [21129,2663], + [21131,4487], + [21133,9131], + [21135,5293], + [21137,9555], + [21139,4642], + [21141,10896], + [21143,3959], + [21151,37318], + [21153,5113], + [21155,8108], + [21157,16678], + [21159,3951], + [21161,7212], + [21145,31284], + [21147,5772], + [21149,4565], + [21163,12223], + [21165,2779], + [21167,10579], + [21169,4616], + [21171,4991], + [21173,11437], + [21175,4766], + [21177,13046], + [21179,20761], + [21181,2837], + [21183,10398], + [21185,32838], + [21187,4997], + [21189,1757], + [21191,6006], + [21193,10566], + [21195,24637], + [21197,4952], + [21199,28015], + [21201,1013], + [21203,6686], + [21205,8829], + [21207,8171], + [21209,24159], + [21211,20563], + [21213,7524], + [21215,9509], + [21217,11301], + [21219,4771], + [21221,6740], + [21223,3786], + [21225,6209], + [21227,48416], + [21229,5621], + [21231,7988], + [21233,5804], + [21235,13765], + [21237,2634], + [21239,13547], + [22001,27386], + [22003,9245], + [22005,54663], + [22007,10904], + [22009,16581], + [22011,15078], + [22013,7005], + [22015,49818], + [22017,105737], + [22019,83773], + [22021,4692], + [22023,3692], + [22025,4856], + [22027,6421], + [22029,8869], + [22031,13497], + [22033,196332], + [22035,2939], + [22037,10042], + [22039,14879], + [22041,9162], + [22043,8819], + [22045,32454], + [22047,16043], + [22049,7464], + [22051,181388], + [22053,14277], + [22055,105599], + [22057,41644], + [22059,6568], + [22061,18664], + [22063,57700], + [22065,4732], + [22067,11852], + [22069,16617], + [22071,165619], + [22073,67987], + [22075,10572], + [22077,11761], + [22079,56838], + [22081,4422], + [22083,9596], + [22085,9785], + [22087,15807], + [22089,26190], + [22091,5964], + [22093,12085], + [22095,20740], + [22097,39970], + [22099,25749], + [22101,22871], + [22103,124389], + [22105,52381], + [22107,2543], + [22109,43893], + [22111,10894], + [22113,25253], + [22115,16633], + [22117,18622], + [22119,18140], + [22121,12710], + [22123,4759], + [22125,5798], + [22127,6368], + [25001,132667], + [25003,64507], + [25005,246068], + [25007,11434], + [25009,376140], + [25011,37987], + [25013,200220], + [25015,82329], + [25017,767337], + [25019,6404], + [25021,357781], + [25023,264168], + [25025,303517], + [25027,380972], + [24001,27804], + [24003,242939], + [24005,335017], + [24510,208980], + [24009,43445], + [24011,13282], + [24013,84879], + [24015,42309], + [24017,72480], + [24019,14034], + [24021,114962], + [24023,12905], + [24025,124224], + [24027,146401], + [24029,9166], + [24031,408300], + [24033,351091], + [24035,24633], + [24039,8768], + [24037,45169], + [24041,18731], + [24043,60731], + [24045,38722], + [24047,25571], + [23001,55340], + [23003,34963], + [23005,171249], + [23007,16382], + [23009,31983], + [23011,65999], + [23013,23021], + [23015,21432], + [23017,31094], + [23019,80228], + [23021,9144], + [23023,21596], + [23025,25968], + [23027,22630], + [23029,16559], + [23031,113962], + [26001,6179], + [26003,4513], + [26005,55153], + [26007,14688], + [26009,13572], + [26011,7457], + [26013,3486], + [26015,30265], + [26017,52932], + [26019,10221], + [26021,71882], + [26023,16490], + [26025,58786], + [26027,23272], + [26029,14567], + [26031,13647], + [26033,15434], + [26035,13385], + [26037,40564], + [26039,6833], + [26041,18467], + [26043,13140], + [26045,55686], + [26047,18774], + [26049,196135], + [26051,12472], + [26053,7313], + [26055,51460], + [26057,16442], + [26059,19880], + [26061,15623], + [26063,15848], + [26065,133478], + [26067,26364], + [26069,13349], + [26071,5910], + [26073,25344], + [26075,69567], + [26077,125966], + [26079,8920], + [26081,306270], + [26083,1429], + [26085,5328], + [26087,45126], + [26089,14757], + [26091,45895], + [26093,105577], + [26095,2576], + [26097,6088], + [26099,418773], + [26101,12598], + [26103,32897], + [26105,14658], + [26107,17149], + [26109,10765], + [26111,42379], + [26113,7301], + [26115,74101], + [26117,26556], + [26119,5008], + [26121,77114], + [26123,22605], + [26125,663255], + [26127,11903], + [26129,10386], + [26131,3420], + [26133,10597], + [26135,4062], + [26137,12529], + [26139,145405], + [26141,7215], + [26143,13036], + [26145,94198], + [26151,19243], + [26153,4151], + [26155,34044], + [26147,77994], + [26149,23765], + [26157,26157], + [26159,33213], + [26161,187201], + [26163,775450], + [26165,15279], + [27001,9185], + [27003,184084], + [27005,17090], + [27007,21316], + [27009,19911], + [27011,2729], + [27013,33256], + [27015,13663], + [27017,18059], + [27019,55102], + [27021,15885], + [27023,6182], + [27025,30009], + [27027,29108], + [27029,4225], + [27031,3360], + [27033,5697], + [27035,35568], + [27037,228659], + [27039,10564], + [27041,21623], + [27043,7355], + [27045,10976], + [27047,15929], + [27049,25538], + [27051,3453], + [27053,672644], + [27055,10515], + [27057,11423], + [27059,20875], + [27061,23650], + [27063,5453], + [27065,8125], + [27067,21648], + [27069,2363], + [27071,6313], + [27073,3835], + [27075,6472], + [27077,2230], + [27079,14867], + [27081,3002], + [27083,12129], + [27087,2074], + [27089,4794], + [27091,10469], + [27085,18684], + [27093,12198], + [27095,12948], + [27097,17534], + [27099,17587], + [27101,4642], + [27103,17914], + [27105,8592], + [27107,3232], + [27109,79277], + [27111,32284], + [27113,6671], + [27115,13729], + [27117,4779], + [27119,14698], + [27121,6294], + [27123,269161], + [27125,1871], + [27127,7566], + [27129,7563], + [27131,32217], + [27133,4807], + [27135,7767], + [27139,74390], + [27141,47938], + [27143,7727], + [27137,111260], + [27145,78985], + [27147,19040], + [27149,5350], + [27151,4968], + [27153,11944], + [27155,1791], + [27157,11764], + [27159,6894], + [27161,9579], + [27163,142843], + [27165,4971], + [27167,3279], + [27169,25852], + [27171,69154], + [27173,5253], + [29001,10137], + [29003,9140], + [29005,2723], + [29007,10043], + [29009,14604], + [29011,5932], + [29013,8021], + [29015,9584], + [29017,5669], + [29019,83312], + [29021,35563], + [29023,17232], + [29025,4309], + [29027,19127], + [29029,22182], + [29031,36875], + [29033,4361], + [29035,2842], + [29037,50715], + [29039,6278], + [29041,3962], + [29043,41394], + [29045,3316], + [29047,109237], + [29049,10197], + [29051,37261], + [29053,7976], + [29055,9920], + [29057,3951], + [29059,7440], + [29061,3689], + [29063,4590], + [29065,6778], + [29067,6664], + [29069,10574], + [29071,50045], + [29073,7444], + [29075,3033], + [29077,127609], + [29079,4413], + [29081,3682], + [29083,9855], + [29085,4717], + [29087,2348], + [29089,4851], + [29091,17415], + [29093,4260], + [29095,294063], + [29097,48179], + [29099,105969], + [29101,21087], + [29103,1867], + [29105,15959], + [29107,15815], + [29109,16674], + [29111,4452], + [29113,24857], + [29115,5572], + [29117,6408], + [29121,7579], + [29123,5318], + [29125,4498], + [29127,12902], + [29119,8233], + [29129,1739], + [29131,11414], + [29133,5165], + [29135,6808], + [29137,4147], + [29139,5424], + [29141,8815], + [29143,7352], + [29145,26506], + [29147,9439], + [29149,4664], + [29151,7078], + [29153,4501], + [29155,6025], + [29157,8732], + [29159,18045], + [29161,18499], + [29163,7375], + [29165,46641], + [29167,13709], + [29169,13443], + [29171,2342], + [29173,5266], + [29175,10309], + [29177,10835], + [29179,3032], + [29181,5518], + [29195,9245], + [29197,1933], + [29199,1968], + [29201,17244], + [29203,3904], + [29205,3252], + [29183,199513], + [29185,4630], + [29187,24714], + [29189,503493], + [29510,127403], + [29186,8459], + [29207,13278], + [29209,16538], + [29211,2484], + [29213,23399], + [29215,10935], + [29217,8576], + [29219,15766], + [29221,9279], + [29223,5738], + [29225,16690], + [29227,1046], + [29229,8086], + [28001,12214], + [28003,14781], + [28005,7033], + [28007,7242], + [28009,3996], + [28011,12831], + [28013,6339], + [28015,5470], + [28017,7890], + [28019,4020], + [28021,2954], + [28023,7713], + [28025,9960], + [28027,8912], + [28029,11906], + [28031,8790], + [28033,64022], + [28035,27284], + [28037,4219], + [28039,9831], + [28041,5325], + [28043,10442], + [28045,17517], + [28047,62076], + [28049,91536], + [28051,7045], + [28053,3599], + [28055,699], + [28057,9634], + [28059,45465], + [28061,8468], + [28063,3859], + [28065,6237], + [28067,28250], + [28069,4639], + [28071,19642], + [28073,24179], + [28075,28967], + [28077,6329], + [28079,8436], + [28081,31974], + [28083,9566], + [28085,15193], + [28087,25139], + [28089,45048], + [28091,11443], + [28093,14698], + [28095,15781], + [28097,4162], + [28099,10438], + [28101,8594], + [28103,5538], + [28105,16151], + [28107,14854], + [28109,18893], + [28111,5432], + [28113,15633], + [28115,11811], + [28117,9871], + [28119,3353], + [28121,61356], + [28123,9867], + [28125,1926], + [28127,11416], + [28129,7556], + [28131,6368], + [28133,9406], + [28135,5870], + [28137,11389], + [28139,9143], + [28141,8310], + [28143,3463], + [28145,11374], + [28147,5909], + [28149,18287], + [28151,14571], + [28153,9534], + [28155,5024], + [28157,4174], + [28159,8771], + [28161,6058], + [28163,9892], + [30001,4676], + [30003,4148], + [30005,2621], + [30007,3097], + [30009,5923], + [30011,777], + [30013,33791], + [30015,2571], + [30017,5145], + [30019,952], + [30021,4297], + [30023,4099], + [30025,1474], + [30027,5782], + [30029,46144], + [30031,52169], + [30033,715], + [30035,4969], + [30037,468], + [30039,1762], + [30041,6347], + [30043,6535], + [30045,1189], + [30047,12898], + [30049,33697], + [30051,949], + [30053,9250], + [30057,4708], + [30055,1056], + [30059,970], + [30061,1974], + [30063,57271], + [30065,2404], + [30067,9056], + [30069,319], + [30071,2147], + [30073,2692], + [30075,1047], + [30077,2768], + [30079,686], + [30081,22063], + [30083,4812], + [30085,3486], + [30087,3357], + [30089,5871], + [30091,1825], + [30093,16122], + [30095,4816], + [30097,2077], + [30099,3143], + [30101,2018], + [30103,441], + [30105,3860], + [30107,932], + [30109,533], + [30111,64675], + [37001,69264], + [37003,18011], + [37005,5214], + [37007,10394], + [37009,13160], + [37011,8060], + [37013,23599], + [37015,9380], + [37017,15743], + [37019,67255], + [37021,134507], + [37023,37638], + [37025,91002], + [37027,35747], + [37029,4939], + [37031,36919], + [37033,10515], + [37035,71065], + [37037,39080], + [37039,13860], + [37041,7108], + [37043,5885], + [37045,44137], + [37047,23472], + [37049,46231], + [37051,124402], + [37053,12423], + [37055,19009], + [37057,72013], + [37059,21350], + [37061,20601], + [37063,150543], + [37065,24653], + [37067,172509], + [37069,29902], + [37071,94872], + [37073,5328], + [37075,4094], + [37077,26920], + [37079,8013], + [37081,252087], + [37083,24881], + [37085,44955], + [37087,30156], + [37089,56810], + [37091,10100], + [37093,17847], + [37095,2273], + [37097,80727], + [37099,18004], + [37101,84553], + [37103,5039], + [37105,24676], + [37107,25500], + [37109,39449], + [37113,17336], + [37115,10966], + [37117,11852], + [37111,19557], + [37119,461834], + [37121,7948], + [37123,11449], + [37125,47746], + [37127,46903], + [37129,108737], + [37131,9761], + [37133,55364], + [37135,79830], + [37137,6772], + [37139,16964], + [37141,27072], + [37143,6595], + [37145,19303], + [37147,78264], + [37149,10723], + [37151,63615], + [37153,18813], + [37155,39454], + [37157,41374], + [37159,63078], + [37161,29764], + [37163,25638], + [37165,13743], + [37167,29451], + [37169,22182], + [37171,31663], + [37173,5982], + [37175,17440], + [37177,1700], + [37179,103596], + [37181,19762], + [37183,510940], + [37185,10123], + [37187,6115], + [37189,28769], + [37191,49824], + [37193,30844], + [37195,37593], + [37197,17350], + [37199,9808], + [38001,1206], + [38003,5253], + [38005,1940], + [38007,592], + [38009,3437], + [38011,1769], + [38013,1031], + [38015,46874], + [38017,78807], + [38019,1969], + [38021,2372], + [38023,1187], + [38025,2199], + [38027,1219], + [38029,1959], + [38031,1699], + [38033,942], + [38035,29711], + [38037,1361], + [38039,1247], + [38041,1261], + [38043,1358], + [38045,2115], + [38047,1030], + [38049,2687], + [38051,1423], + [38053,4594], + [38055,5206], + [38057,4564], + [38059,15547], + [38061,4009], + [38063,1694], + [38065,1002], + [38067,3093], + [38069,2020], + [38071,5218], + [38073,2317], + [38075,1255], + [38077,7460], + [38079,3662], + [38081,1978], + [38083,774], + [38085,1177], + [38087,427], + [38089,12115], + [38091,984], + [38093,9938], + [38095,1137], + [38097,3864], + [38099,4543], + [38101,26861], + [38103,2352], + [38105,12529], + [31001,13172], + [31003,3220], + [31005,263], + [31007,390], + [31009,313], + [31011,2867], + [31013,4761], + [31015,1142], + [31017,1579], + [31019,20477], + [31021,3523], + [31023,3914], + [31025,12609], + [31027,4360], + [31029,1851], + [31031,3082], + [31033,4569], + [31035,2973], + [31037,3172], + [31039,3988], + [31041,5489], + [31043,7259], + [31045,3578], + [31047,8486], + [31049,977], + [31051,2744], + [31053,14959], + [31055,219531], + [31057,949], + [31059,2879], + [31061,1656], + [31063,1310], + [31065,2315], + [31067,9854], + [31069,1063], + [31071,968], + [31073,1000], + [31075,394], + [31077,1165], + [31079,21331], + [31081,4902], + [31083,1582], + [31085,510], + [31087,1440], + [31089,4979], + [31091,414], + [31093,2958], + [31095,3430], + [31097,2051], + [31099,3242], + [31101,3945], + [31103,514], + [31105,1636], + [31107,4061], + [31109,129803], + [31111,15674], + [31113,451], + [31115,382], + [31119,13956], + [31117,286], + [31121,3707], + [31123,2166], + [31125,1599], + [31127,3035], + [31129,2153], + [31131,7279], + [31133,1314], + [31135,1418], + [31137,4609], + [31139,3580], + [31141,14047], + [31143,2538], + [31145,5061], + [31147,3666], + [31149,793], + [31151,4795], + [31153,77781], + [31155,10598], + [31157,13895], + [31159,7754], + [31161,2565], + [31163,1553], + [31165,709], + [31167,2748], + [31169,2613], + [31171,387], + [31173,2029], + [31175,2172], + [31177,10584], + [31179,3740], + [31181,1687], + [31183,459], + [31185,6256], + [33001,34462], + [33003,29063], + [33005,41080], + [33007,15255], + [33009,50065], + [33011,210622], + [33013,81982], + [33015,179005], + [33017,67918], + [33019,22101], + [34001,105738], + [34003,383965], + [34005,194988], + [34007,220437], + [34009,48375], + [34011,53018], + [34013,299808], + [34015,138388], + [34017,201425], + [34019,70582], + [34021,141332], + [34023,282668], + [34025,311474], + [34027,248848], + [34029,259592], + [34031,189099], + [34033,29220], + [34035,154249], + [34037,73860], + [34039,219385], + [34041,48442], + [35001,269861], + [35003,2024], + [35005,20159], + [35006,7975], + [35007,5271], + [35009,11292], + [35011,903], + [35013,69324], + [35015,19523], + [35017,12633], + [35019,1809], + [35021,527], + [35023,1836], + [35025,17369], + [35027,8856], + [35028,10430], + [35029,7245], + [35031,20791], + [35033,2429], + [35035,19636], + [35037,3550], + [35039,14767], + [35041,5855], + [35043,60597], + [35045,45476], + [35047,10662], + [35049,70082], + [35051,5129], + [35053,6756], + [35055,15072], + [35057,6250], + [35059,1688], + [35061,27350], + [32510,25016], + [32001,10936], + [32003,765421], + [32005,27871], + [32007,18545], + [32009,423], + [32011,854], + [32013,6433], + [32015,2413], + [32017,2132], + [32019,23762], + [32021,1997], + [32023,19592], + [32027,1982], + [32029,2558], + [32031,209282], + [32033,3773], + [36001,125644], + [36003,17111], + [36005,358857], + [36007,77657], + [36009,28961], + [36011,30124], + [36013,49381], + [36015,33195], + [36017,18113], + [36019,28378], + [36021,27255], + [36023,18424], + [36025,17778], + [36027,120199], + [36029,383248], + [36031,15079], + [36033,15148], + [36035,19563], + [36037,24463], + [36039,18869], + [36041,2688], + [36043,24261], + [36045,34263], + [36047,746295], + [36049,10312], + [36051,31363], + [36053,27392], + [36055,320164], + [36057,17438], + [36059,599649], + [36061,591368], + [36063,86000], + [36065,83876], + [36067,191962], + [36069,47664], + [36071,140753], + [36073,16722], + [36075,44122], + [36077,23024], + [36079,44186], + [36081,627021], + [36083,65991], + [36085,167209], + [36087,123943], + [36091,104089], + [36093,61629], + [36095,12673], + [36097,8423], + [36099,12727], + [36089,35154], + [36101,38373], + [36103,625720], + [36105,26509], + [36107,20556], + [36109,37747], + [36111,77134], + [36113,27568], + [36115,22401], + [36117,36598], + [36119,378506], + [36121,16280], + [36123,8975], + [39001,11063], + [39003,44636], + [39005,24074], + [39007,39809], + [39009,27941], + [39011,22860], + [39013,30537], + [39015,19139], + [39017,168422], + [39019,12807], + [39021,17597], + [39023,59620], + [39025,96455], + [39027,18100], + [39029,45261], + [39031,14961], + [39033,18702], + [39035,583230], + [39037,25000], + [39039,17795], + [39041,100101], + [39043,36730], + [39045,70542], + [39047,10817], + [39049,554711], + [39051,20693], + [39053,12588], + [39055,48736], + [39057,79633], + [39059,16156], + [39061,395000], + [39063,35216], + [39065,12014], + [39067,6956], + [39069,13671], + [39071,17048], + [39073,12513], + [39075,10823], + [39077,24332], + [39079,13239], + [39081,31346], + [39083,27768], + [39085,112790], + [39087,25949], + [39089,79399], + [39091,21007], + [39093,136654], + [39095,191684], + [39097,16754], + [39099,112827], + [39101,25648], + [39103,89360], + [39105,9410], + [39107,21315], + [39109,51467], + [39111,6686], + [39113,249560], + [39115,6290], + [39117,16186], + [39119,36217], + [39121,5875], + [39123,21742], + [39125,8842], + [39127,14647], + [39129,23814], + [39131,11513], + [39133,73968], + [39135,20475], + [39137,18387], + [39139,53739], + [39141,28955], + [39143,27491], + [39145,29618], + [39147,23481], + [39149,23110], + [39151,170868], + [39153,249937], + [39155,94073], + [39157,40088], + [39159,26533], + [39161,13584], + [39163,5393], + [39165,114254], + [39167,28992], + [39169,48550], + [39171,16938], + [39173,62287], + [39175,10396], + [40001,6468], + [40003,2256], + [40005,5002], + [40007,2237], + [40009,7529], + [40011,3793], + [40013,13775], + [40015,9336], + [40017,55250], + [40019,18533], + [40021,16487], + [40023,5419], + [40025,1077], + [40027,109326], + [40029,2393], + [40031,32504], + [40033,2602], + [40035,5778], + [40037,28786], + [40039,10531], + [40041,15680], + [40043,2246], + [40045,1826], + [40047,21692], + [40049,10531], + [40051,22257], + [40053,2200], + [40055,1896], + [40057,975], + [40059,1485], + [40061,4734], + [40063,4525], + [40065,7806], + [40067,2345], + [40069,4001], + [40071,16795], + [40073,6123], + [40075,3489], + [40077,4050], + [40079,17199], + [40081,14001], + [40083,18948], + [40085,3787], + [40093,3399], + [40095,5487], + [40097,15712], + [40087,16839], + [40089,10709], + [40091,7958], + [40099,5525], + [40101,24193], + [40103,4870], + [40105,4237], + [40107,3933], + [40109,273609], + [40111,13924], + [40113,18942], + [40115,10686], + [40117,6346], + [40119,27749], + [40121,17250], + [40123,14814], + [40125,25417], + [40127,4483], + [40129,1758], + [40131,40834], + [40133,8032], + [40135,14437], + [40137,17886], + [40139,5771], + [40141,2706], + [40143,246557], + [40145,31246], + [40147,22208], + [40149,4628], + [40151,3665], + [40153,7573], + [41001,8479], + [41003,45577], + [41005,182136], + [41007,18158], + [41009,25077], + [41011,30181], + [41013,11638], + [41015,12163], + [41017,90584], + [41019,51350], + [41021,937], + [41023,4171], + [41025,3850], + [41027,10383], + [41029,103789], + [41031,8874], + [41033,42613], + [41035,29240], + [41037,3814], + [41039,181072], + [41041,24035], + [41043,54724], + [41045,9950], + [41047,110804], + [41049,3989], + [41051,357762], + [41053,37030], + [41055,983], + [41057,13261], + [41059,26116], + [41061,12465], + [41063,4177], + [41065,11251], + [41067,232034], + [41069,792], + [41071,45116], + [42001,47138], + [42003,643173], + [42005,30446], + [42007,79036], + [42009,23504], + [42011,175934], + [42013,52029], + [42015,25399], + [42017,342572], + [42019,92027], + [42021,60167], + [42023,2024], + [42025,28721], + [42027,75394], + [42029,266637], + [42031,17481], + [42033,32692], + [42035,14839], + [42037,27127], + [42039,35563], + [42041,115068], + [42043,130160], + [42045,284832], + [42047,13854], + [42049,117240], + [42051,53426], + [42053,2398], + [42055,69345], + [42057,6743], + [42059,14955], + [42061,19496], + [42063,37728], + [42065,18551], + [42067,10402], + [42069,102740], + [42071,239151], + [42073,40555], + [42075,58906], + [42077,153031], + [42079,132731], + [42081,50294], + [42083,15572], + [42085,49594], + [42087,18239], + [42089,65944], + [42091,427489], + [42093,8535], + [42095,142775], + [42097,34971], + [42099,21153], + [42101,680227], + [42103,26066], + [42105,7777], + [42107,62750], + [42109,16333], + [42111,35730], + [42113,3168], + [42115,19200], + [42117,17334], + [42119,17400], + [42121,22096], + [42123,17624], + [42125,96945], + [42127,22365], + [42129,181740], + [42131,12418], + [42133,203153], + [44001,24691], + [44003,79691], + [44005,39761], + [44007,241818], + [44009,64160], + [45001,10724], + [45003,74773], + [45005,3578], + [45007,80296], + [45009,6195], + [45011,9479], + [45013,72770], + [45015,78919], + [45017,7553], + [45019,175850], + [45021,21754], + [45023,14202], + [45025,17128], + [45027,15156], + [45029,17231], + [45031,29636], + [45033,11696], + [45035,62463], + [45037,11644], + [45039,11252], + [45041,57770], + [45043,31519], + [45045,211572], + [45047,28600], + [45049,8794], + [45051,124503], + [45053,14216], + [45055,28875], + [45057,38717], + [45059,26474], + [45061,8110], + [45063,121829], + [45067,14217], + [45069,10353], + [45065,5215], + [45071,16795], + [45073,33530], + [45075,38824], + [45077,48871], + [45079,169400], + [45081,8559], + [45083,120793], + [45085,44048], + [45087,12087], + [45089,15049], + [45091,113425], + [46003,1407], + [46005,6772], + [46007,1149], + [46009,2974], + [46011,12680], + [46013,16113], + [46015,2288], + [46017,490], + [46019,4346], + [46021,831], + [46023,3433], + [46025,1657], + [46027,5069], + [46029,11669], + [46031,1175], + [46033,4716], + [46035,7952], + [46037,2747], + [46039,2080], + [46041,1707], + [46043,1605], + [46045,1918], + [46047,3563], + [46049,1118], + [46051,3562], + [46053,2091], + [46055,1044], + [46057,2762], + [46059,1818], + [46061,2006], + [46063,769], + [46065,8173], + [46067,3365], + [46069,690], + [46071,1095], + [46073,967], + [46075,558], + [46077,2551], + [46079,6786], + [46081,11842], + [46083,25231], + [46085,1421], + [46091,1947], + [46087,2587], + [46089,1137], + [46093,11621], + [46095,683], + [46097,1064], + [46099,78263], + [46101,2930], + [46113,2896], + [46103,47741], + [46105,1606], + [46107,1335], + [46109,3886], + [46111,1123], + [46115,2951], + [46117,1567], + [46119,861], + [46121,2125], + [46123,2630], + [46125,4150], + [46127,7895], + [46129,2477], + [46135,9616], + [46137,766], + [47001,29723], + [47003,15300], + [47005,6322], + [47007,4650], + [47009,51849], + [47011,38392], + [47013,12504], + [47015,5299], + [47017,10333], + [47019,20993], + [47021,15823], + [47023,4850], + [47025,10706], + [47027,2919], + [47029,12108], + [47031,19895], + [47033,5386], + [47035,26298], + [47037,246199], + [47039,4577], + [47041,6940], + [47043,18619], + [47045,13290], + [47047,19306], + [47049,7311], + [47051,16363], + [47053,19484], + [47055,11120], + [47057,7985], + [47059,23491], + [47061,4750], + [47063,20579], + [47065,141088], + [47067,2229], + [47069,9242], + [47071,9949], + [47073,20694], + [47075,6824], + [47077,10172], + [47079,12887], + [47081,7762], + [47083,3165], + [47085,7139], + [47087,4447], + [47089,18994], + [47091,6556], + [47093,179266], + [47095,1970], + [47097,8678], + [47099,15658], + [47101,4601], + [47103,13270], + [47105,23304], + [47111,7490], + [47113,37764], + [47115,10832], + [47117,11402], + [47119,35068], + [47107,18694], + [47109,10035], + [47121,4311], + [47123,17050], + [47125,57278], + [47127,2926], + [47129,6664], + [47131,12223], + [47133,8195], + [47135,2855], + [47137,2609], + [47139,6520], + [47141,26958], + [47143,10946], + [47145,21580], + [47147,27042], + [47149,106518], + [47151,7123], + [47153,5667], + [47155,36180], + [47157,331861], + [47159,7410], + [47161,5283], + [47163,59860], + [47165,71080], + [47167,23372], + [47169,3142], + [47171,7166], + [47173,6204], + [47175,2417], + [47177,13565], + [47179,49411], + [47181,5842], + [47183,12127], + [47185,9776], + [47187,104700], + [47189,56286], + [48001,16887], + [48003,4926], + [48005,29870], + [48007,10467], + [48009,4269], + [48011,1017], + [48013,13605], + [48015,12255], + [48017,1784], + [48019,10213], + [48021,28250], + [48023,1492], + [48025,8458], + [48027,93999], + [48029,586038], + [48031,5669], + [48033,365], + [48035,7797], + [48037,34470], + [48039,120296], + [48041,66036], + [48043,4226], + [48045,734], + [48047,2596], + [48049,13949], + [48051,6945], + [48053,19046], + [48055,11709], + [48057,6957], + [48059,5556], + [48061,91804], + [48063,4542], + [48065,2945], + [48067,11606], + [48069,1996], + [48071,16661], + [48073,16701], + [48075,2084], + [48077,5011], + [48079,901], + [48081,1423], + [48083,3635], + [48085,356545], + [48087,1154], + [48089,8480], + [48091,61567], + [48093,5208], + [48095,1067], + [48097,15894], + [48099,18127], + [48101,583], + [48103,1381], + [48105,1395], + [48107,1712], + [48109,762], + [48111,1535], + [48113,750649], + [48115,3562], + [48117,4201], + [48119,2279], + [48121,293287], + [48123,6822], + [48125,909], + [48127,3225], + [48129,1460], + [48131,4159], + [48133,6935], + [48135,36373], + [48137,1065], + [48139,63064], + [48141,210458], + [48143,13810], + [48145,5232], + [48147,11972], + [48149,11029], + [48151,1722], + [48153,1958], + [48155,511], + [48157,260367], + [48159,4356], + [48161,7608], + [48163,2683], + [48165,4609], + [48167,123994], + [48169,1475], + [48171,13123], + [48173,602], + [48175,3713], + [48177,6304], + [48179,7360], + [48181,47068], + [48183,41365], + [48185,9528], + [48187,57220], + [48189,8802], + [48191,1089], + [48193,3609], + [48195,1947], + [48197,1511], + [48199,22768], + [48201,1302887], + [48203,26364], + [48205,1945], + [48207,1765], + [48209,71524], + [48211,1687], + [48213,29855], + [48215,172990], + [48217,12906], + [48219,7282], + [48221,26120], + [48223,13476], + [48225,8302], + [48227,8692], + [48229,871], + [48231,31185], + [48233,8126], + [48235,760], + [48237,3339], + [48239,5275], + [48241,13351], + [48243,1175], + [48245,87363], + [48247,2119], + [48249,12346], + [48251,57270], + [48253,5932], + [48255,4185], + [48257,40979], + [48259,19936], + [48261,186], + [48263,433], + [48265,23090], + [48267,1945], + [48269,159], + [48271,1424], + [48273,9483], + [48275,1358], + [48277,18537], + [48279,3905], + [48281,8149], + [48283,2049], + [48285,8633], + [48287,6522], + [48289,7407], + [48291,24155], + [48293,7648], + [48295,1322], + [48297,4267], + [48299,10377], + [48301,64], + [48303,98060], + [48305,1997], + [48313,4283], + [48315,4206], + [48317,1755], + [48319,2053], + [48321,11779], + [48323,13588], + [48307,3086], + [48309,78255], + [48311,497], + [48325,17187], + [48327,860], + [48329,48753], + [48331,8607], + [48333,2238], + [48335,2190], + [48337,8604], + [48339,203083], + [48341,5262], + [48343,4964], + [48345,620], + [48347,22430], + [48349,16382], + [48351,4010], + [48353,4744], + [48355,103958], + [48357,2981], + [48359,945], + [48361,31761], + [48363,10175], + [48365,10413], + [48367,56413], + [48369,2818], + [48371,4167], + [48373,34444], + [48375,28330], + [48377,2203], + [48379,4630], + [48381,53813], + [48383,900], + [48385,1678], + [48387,5147], + [48389,3184], + [48391,2945], + [48393,550], + [48395,7010], + [48397,39529], + [48399,3765], + [48401,18994], + [48403,4642], + [48405,3563], + [48407,10305], + [48409,21513], + [48411,2354], + [48413,1054], + [48415,5261], + [48417,1502], + [48419,9072], + [48421,933], + [48423,83161], + [48425,3876], + [48427,11691], + [48429,3453], + [48431,633], + [48433,701], + [48435,1415], + [48437,2190], + [48439,662832], + [48441,45266], + [48443,437], + [48445,1763], + [48447,808], + [48449,9176], + [48451,38104], + [48453,462511], + [48455,5982], + [48457,7969], + [48459,15918], + [48461,1296], + [48463,8936], + [48465,13476], + [48467,21689], + [48469,31032], + [48471,19683], + [48473,16715], + [48475,3413], + [48477,14747], + [48479,56867], + [48481,14707], + [48483,2306], + [48485,37913], + [48487,4101], + [48489,5082], + [48491,200524], + [48493,19255], + [48495,1873], + [48497,24661], + [48499,18646], + [48501,2299], + [48503,7658], + [48505,3134], + [48507,3390], + [49001,2490], + [49003,16548], + [49005,35879], + [49007,7818], + [49009,465], + [49011,104661], + [49013,6932], + [49015,4263], + [49017,2294], + [49019,4456], + [49021,15354], + [49023,4076], + [49025,3482], + [49027,5234], + [49029,5136], + [49031,617], + [49033,1096], + [49035,361347], + [49037,5385], + [49039,9778], + [49041,8308], + [49043,20133], + [49045,18905], + [49047,12883], + [49049,174942], + [49051,12120], + [49053,57494], + [49055,1410], + [49057,81451], + [51001,15755], + [51003,56134], + [51510,74384], + [51005,7306], + [51007,7035], + [51009,15164], + [51011,7954], + [51013,119344], + [51015,36661], + [51017,2243], + [51019,42186], + [51021,3124], + [51023,18641], + [51520,6966], + [51025,7645], + [51027,9220], + [51029,7284], + [51530,2395], + [51031,27218], + [51033,14189], + [51035,13587], + [51036,3745], + [51037,5792], + [51540,22211], + [51550,111827], + [51041,175288], + [51043,8131], + [51570,8427], + [51580,2369], + [51045,2784], + [51047,22087], + [51049,4875], + [51590,18862], + [51051,6405], + [51053,13533], + [51595,2367], + [51057,5354], + [51059,542858], + [51600,11854], + [51610,7667], + [51061,37124], + [51063,7972], + [51065,13492], + [51067,26805], + [51620,4040], + [51069,40133], + [51630,11135], + [51640,2363], + [51071,8196], + [51073,19524], + [51075,13930], + [51077,7258], + [51079,9503], + [51081,4363], + [51083,16946], + [51650,61489], + [51085,62313], + [51660,17693], + [51087,161966], + [51089,24029], + [51091,1391], + [51670,8968], + [51093,20481], + [51095,42737], + [51097,3615], + [51099,11967], + [51101,9088], + [51103,6599], + [51105,9353], + [51678,2448], + [51107,180265], + [51109,17507], + [51111,5577], + [51680,35349], + [51113,6934], + [51683,15210], + [51685,5214], + [51690,5873], + [51115,5292], + [51117,15177], + [51119,5994], + [51121,42695], + [51125,8247], + [51127,12163], + [51700,68432], + [51710,75172], + [51131,6134], + [51133,8176], + [51720,1456], + [51135,6717], + [51137,17157], + [51139,10663], + [51141,8489], + [51730,13717], + [51143,31687], + [51735,7114], + [51740,43000], + [51145,16794], + [51147,9113], + [51149,16140], + [51153,144854], + [51155,15112], + [51750,6032], + [51157,4444], + [51159,3651], + [51760,94724], + [51161,50149], + [51770,41728], + [51163,10685], + [51165,36536], + [51167,12195], + [51775,12129], + [51169,10055], + [51171,20335], + [51173,12825], + [51175,8872], + [51177,62083], + [51179,65350], + [51790,11144], + [51800,41929], + [51181,3976], + [51183,5036], + [51185,18495], + [51810,171876], + [51187,17791], + [51191,25715], + [51820,9114], + [51193,8291], + [51830,7534], + [51840,10574], + [51195,14991], + [51197,13250], + [51199,34062], + [50001,17592], + [50003,16345], + [50005,12966], + [50007,77263], + [50009,2706], + [50011,19373], + [50013,3778], + [50015,11641], + [50017,13464], + [50019,10988], + [50021,27660], + [50023,28654], + [50025,21151], + [50027,27832], + [53001,4081], + [53003,9684], + [53005,76907], + [53007,27415], + [53009,32985], + [53011,195784], + [53013,2171], + [53015,45485], + [53017,11467], + [53019,3560], + [53021,20584], + [53023,1232], + [53025,28260], + [53027,26736], + [53029,42425], + [53031,20100], + [53033,910823], + [53035,118625], + [53037,18334], + [53039,9859], + [53041,24995], + [53043,5692], + [53045,27767], + [53047,10893], + [53049,10667], + [53051,6788], + [53053,322592], + [53055,10589], + [53057,54831], + [53059,5587], + [53061,309496], + [53063,208081], + [53065,16438], + [53067,122301], + [53069,2333], + [53071,19718], + [53073,108223], + [53075,12128], + [53077,72306], + [55001,10107], + [55003,7926], + [55005,22514], + [55007,9491], + [55009,127497], + [55011,6921], + [55013,8719], + [55015,26429], + [55017,31471], + [55019,13548], + [55021,29287], + [55023,7678], + [55025,304729], + [55027,42818], + [55029,17398], + [55031,22185], + [55033,22029], + [55035,54080], + [55037,2651], + [55039,51094], + [55041,4507], + [55043,24051], + [55045,18791], + [55047,9315], + [55049,12123], + [55051,3477], + [55053,9202], + [55055,42324], + [55057,11736], + [55059,75825], + [55061,10742], + [55063,62785], + [55065,7602], + [55067,10093], + [55069,14563], + [55071,39991], + [55073,68849], + [55075,19979], + [55077,7813], + [55078,1279], + [55079,434970], + [55081,19554], + [55083,19924], + [55085,20837], + [55087,93474], + [55089,53368], + [55091,3746], + [55093,21089], + [55095,22691], + [55097,38123], + [55099,7560], + [55101,93678], + [55103,7962], + [55105,75043], + [55107,7029], + [55111,31238], + [55113,7767], + [55115,19697], + [55117,58290], + [55109,46819], + [55119,9417], + [55121,13581], + [55123,14193], + [55125,13453], + [55127,50570], + [55129,9059], + [55131,76246], + [55133,233273], + [55135,25491], + [55137,11961], + [55139,85892], + [55141,37712], + [54001,6024], + [54003,42770], + [54005,8654], + [54007,5063], + [54009,9540], + [54011,32701], + [54013,2604], + [54015,2958], + [54017,2826], + [54019,15187], + [54021,2528], + [54023,4945], + [54025,13984], + [54027,8557], + [54029,12642], + [54031,6022], + [54033,27868], + [54035,12108], + [54037,24007], + [54039,74996], + [54041,6885], + [54043,6988], + [54045,12315], + [54049,22910], + [54051,13083], + [54053,10115], + [54047,6179], + [54055,22919], + [54057,11410], + [54059,9469], + [54061,35733], + [54063,5670], + [54065,7635], + [54067,9385], + [54069,17819], + [54071,3212], + [54073,3130], + [54075,3619], + [54077,12611], + [54079,24443], + [54081,29311], + [54083,10816], + [54085,4040], + [54087,5234], + [54089,4847], + [54091,6498], + [54093,3464], + [54095,3621], + [54097,9180], + [54099,15080], + [54101,2955], + [54103,6191], + [54105,2410], + [54107,35256], + [54109,7809], + [56001,16420], + [56003,5079], + [56005,17935], + [56007,6200], + [56009,6552], + [56011,3771], + [56013,16543], + [56015,5708], + [56017,2535], + [56019,4349], + [56021,39945], + [56023,8398], + [56025,32493], + [56027,1297], + [56029,14634], + [56031,4460], + [56033,14187], + [56035,4297], + [56037,16661], + [56039,12176], + [56041,8053], + [56043,3715], + [56045,3334] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-swing.json b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-swing.json new file mode 100644 index 0000000..777dd9f --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-swing.json @@ -0,0 +1,3174 @@ +{ + "metadata" : { + "name" : "2020 Presidential Election | Swing", + "description" : "Democrat/Republican swing (-dem/gop+) in the 2020 presidential election.", + "units" : "-dem/gop+", + "year" : "2020", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Fox News, Politico, and the New York Time" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2020.swing"], + [1001,0.451153944625288], + [1003,0.54536542054346], + [1005,0.0772178578271701], + [1007,0.582378298811902], + [1009,0.806954041899748], + [1011,-0.500871080139373], + [1013,0.158442109731508], + [1015,0.395194467078721], + [1017,0.157957401772721], + [1019,0.733923158843287], + [1021,0.679194070362251], + [1023,0.157483497238313], + [1025,0.119963299946479], + [1027,0.631042516016308], + [1029,0.811426176840341], + [1031,0.5380204778157], + [1033,0.394249618819429], + [1035,0.0742821473158553], + [1037,0.338124193845587], + [1039,0.685560755763564], + [1041,0.482023156611822], + [1043,0.783451811016007], + [1045,0.469008370564371], + [1047,-0.3777176974203], + [1049,0.705246488570642], + [1051,0.488440946436061], + [1053,0.37695572306328], + [1055,0.508780125278692], + [1057,0.679125934445083], + [1059,0.665222275718183], + [1061,0.743630957164671], + [1063,-0.632275688169784], + [1065,-0.190046972197537], + [1067,0.434277651145121], + [1069,0.432656198528604], + [1071,0.682131098473511], + [1073,-0.133668818304626], + [1075,0.726510067114094], + [1077,0.453891282427354], + [1079,0.551498363132712], + [1081,0.20492002111842], + [1083,0.434012253684385], + [1085,-0.460634547591069], + [1087,-0.643658226384553], + [1089,0.0815190512769248], + [1091,-0.0133874988459053], + [1093,0.785923324553702], + [1095,0.696274339449073], + [1097,0.120459060298699], + [1099,0.159592529711375], + [1101,-0.319071954210957], + [1103,0.499640818178381], + [1105,-0.48490094248894], + [1107,0.163477537437604], + [1109,0.175902909782132], + [1111,0.590596543393421], + [1113,-0.0646690688412669], + [1115,0.647278524254156], + [1117,0.411019049642377], + [1119,-0.488312520012808], + [1121,0.257173550448082], + [1123,0.437229853040054], + [1125,0.150221642177269], + [1127,0.686470359320275], + [1129,0.488097936975743], + [1131,-0.376636626424078], + [1133,0.825588682961769], + [2901,0.00486548368631934], + [2902,0.27172031844929], + [2903,0.522997869407194], + [2904,-0.0652715495764823], + [2905,-0.0153363120396087], + [2906,0.276266312762663], + [2907,0.520666522397749], + [2908,0.59189217427646], + [2909,0.475369458128079], + [2910,0.495373797187269], + [2911,0.387834930569138], + [2912,0.454930875576037], + [2913,0.271385624487565], + [2914,0.223507972665148], + [2915,0.00925750991876062], + [2916,-0.0973042362002567], + [2917,-0.190901238122661], + [2918,-0.258164225238543], + [2919,-0.224425682309052], + [2920,-0.343887665198238], + [2921,-0.189367311072056], + [2922,0.0141820937533832], + [2923,-0.0207635632953784], + [2924,0.0634763693889657], + [2925,-0.021427778394582], + [2926,0.069890827466585], + [2927,-0.0567190226876091], + [2928,-0.00820859488169967], + [2929,0.428653459661212], + [2930,0.462619678142188], + [2931,0.161059293804131], + [2932,0.117543418071986], + [2933,-0.422503303756844], + [2934,-0.118377644090821], + [2935,-0.0247443762781187], + [2936,0.147923681257015], + [2937,-0.0410736071573811], + [2938,-0.296618748734562], + [2939,-0.297336473998913], + [2940,-0.075139146567718], + [4001,-0.341183244566], + [4003,0.199446777648468], + [4005,-0.245937282229965], + [4007,0.345314787701318], + [4009,0.454237976053575], + [4011,0.346058091286307], + [4012,0.392803801765105], + [4013,-0.0221509212895648], + [4015,0.519551883598088], + [4017,0.0837382445141066], + [4019,-0.18961498930255], + [4021,0.175488382560393], + [4023,-0.359197186012828], + [4025,0.297068639329975], + [4027,0.0629000349121378], + [5001,0.406076445606011], + [5003,0.446109735435944], + [5005,0.547164281178252], + [5007,0.272910320615416], + [5009,0.633405120842307], + [5011,0.315863623555931], + [5013,0.547044917257683], + [5015,0.297108412684546], + [5017,-0.126620139581256], + [5019,0.146262726595481], + [5021,0.618858954041204], + [5023,0.67716791165963], + [5025,0.629903354178511], + [5027,0.323069521289392], + [5029,0.370562041160188], + [5031,0.363857093305584], + [5033,0.57913943817364], + [5035,-0.0745251467154666], + [5037,0.472462042274487], + [5039,0.240536277602524], + [5041,-0.0241300482600966], + [5043,0.283837638376384], + [5045,0.304616434202547], + [5047,0.627346997276767], + [5049,0.585668534827862], + [5051,0.348471494178225], + [5053,0.685437856611263], + [5055,0.611139369277721], + [5057,0.352905569007264], + [5059,0.49820905242592], + [5061,0.430635224134268], + [5063,0.600739897552647], + [5065,0.638711960368011], + [5067,0.449374747882211], + [5069,-0.222838951922292], + [5071,0.504825940787333], + [5073,0.353620955315871], + [5075,0.617631439192778], + [5077,-0.0505721668512367], + [5079,0.451209784631747], + [5081,0.50374418133981], + [5083,0.613274890419537], + [5085,0.547784917145756], + [5087,0.567095970087246], + [5089,0.581350834016954], + [5091,0.474791215589236], + [5093,0.230976885439514], + [5095,0.147845468053492], + [5097,0.612920307122055], + [5099,0.32938610158928], + [5101,0.636503460651115], + [5103,0.139842824846593], + [5105,0.549320863950122], + [5107,-0.199668874172185], + [5109,0.69060773480663], + [5111,0.612094797058022], + [5113,0.699070160608622], + [5115,0.516035718777512], + [5117,0.619767441860465], + [5119,-0.23099122160909], + [5121,0.63013698630137], + [5123,-0.0528775927548933], + [5125,0.42246835443038], + [5127,0.719593613933237], + [5129,0.702504427017455], + [5131,0.365787457590019], + [5133,0.5536], + [5135,0.61886586695747], + [5137,0.592822636300897], + [5139,0.304694309550492], + [5141,0.582273502032254], + [5143,0.0402943237561317], + [5145,0.603580901856764], + [5147,0.286369320550229], + [5149,0.605529953917051], + [6001,-0.638422320310676], + [6003,-0.322222222222222], + [6005,0.249884994019689], + [6007,-0.0171043608051958], + [6009,0.243638006324349], + [6011,0.169491525423729], + [6013,-0.462895006350316], + [6015,0.160172382833543], + [6017,0.0900501502745486], + [6019,-0.0798933673483659], + [6021,0.277446192801592], + [6023,-0.345637079563558], + [6025,-0.249095002251238], + [6027,-0.00151285930408474], + [6029,0.104475407084103], + [6031,0.125622501227467], + [6033,-0.0647805017103763], + [6035,0.524343614580678], + [6037,-0.451166211313442], + [6039,0.118182164198988], + [6041,-0.678064094179202], + [6043,0.185495118549512], + [6045,-0.368974291897548], + [6047,-0.108544146264199], + [6049,0.459967128433905], + [6051,-0.229849831443457], + [6053,-0.422172578189352], + [6055,-0.413388563403459], + [6057,-0.151731128638855], + [6059,-0.0922578693021905], + [6061,0.068099076984788], + [6063,0.171179356714519], + [6065,-0.0811378113074632], + [6067,-0.259068312070756], + [6069,-0.249415266850946], + [6071,-0.108989485668689], + [6073,-0.232981241659978], + [6075,-0.740356625929361], + [6077,-0.141864049462327], + [6079,-0.13402591398816], + [6081,-0.588182236840313], + [6083,-0.328192785859918], + [6085,-0.484464537299163], + [6087,-0.618410148530631], + [6089,0.339126986749496], + [6091,0.22008547008547], + [6093,0.161560984136695], + [6095,-0.310199308268432], + [6097,-0.527626135091667], + [6099,-0.0080767289247855], + [6101,0.167888457668535], + [6103,0.364679880222444], + [6105,0.0558039410498428], + [6107,0.079855794660505], + [6109,0.192503455017359], + [6111,-0.215623979980416], + [6113,-0.424765517968174], + [6115,0.222998685394036], + [8001,-0.167689757634028], + [8003,0.00713153724247229], + [8005,-0.253084210835069], + [8007,0.162540607146858], + [8009,0.70970695970696], + [8011,0.34496644295302], + [8013,-0.578342179671611], + [8014,-0.281715595521467], + [8015,-0.0700941563293978], + [8017,0.766903914590747], + [8019,-0.133689839572193], + [8021,0.0770318021201413], + [8023,-0.277777777777778], + [8025,0.488290398126464], + [8027,0.379810373675404], + [8029,0.379270350063264], + [8031,-0.627872417260094], + [8033,0.523076923076923], + [8035,0.0735516082913206], + [8037,-0.305337078651685], + [8039,0.515040233299131], + [8041,0.112090117307118], + [8043,0.407779474403279], + [8045,-0.0235536093418259], + [8047,-0.0961538461538462], + [8049,0.0180339831126863], + [8051,-0.312597773074446], + [8053,0.161184210526316], + [8055,0.0296798317363871], + [8057,0.591121495327103], + [8059,-0.190775681341719], + [8061,0.780515117581187], + [8063,0.652128218602207], + [8065,-0.212105263157895], + [8067,-0.181564647364941], + [8069,-0.159143233965507], + [8071,0.101143811849377], + [8073,0.63915547024952], + [8075,0.569529354682193], + [8077,0.286757887594708], + [8079,0.147849462365592], + [8081,0.649934526407682], + [8083,0.229163914938581], + [8085,0.371386515108149], + [8087,0.424456158586384], + [8089,0.229783142826621], + [8091,-0.199898528665652], + [8093,0.175550697830839], + [8095,0.602291325695581], + [8097,-0.527572436060838], + [8099,0.466520307354555], + [8101,-0.0176694875848601], + [8103,0.690226394257316], + [8105,0.18927701056052], + [8107,-0.282122735809051], + [8109,-0.142857142857143], + [8111,-0.257352941176471], + [8113,-0.55098814229249], + [8115,0.576652601969058], + [8117,-0.407118587422715], + [8119,0.360978267449604], + [8121,0.751012145748988], + [8123,0.185475170309177], + [8125,0.679067865903516], + [9001,-0.275356665180562], + [9003,-0.281071990451907], + [9005,0.0514064198931594], + [9007,-0.16595735953155], + [9009,-0.176323144761115], + [9011,-0.163646215466175], + [9013,-0.116549318109737], + [9015,0.0436947100748542], + [10001,-0.0414090531901217], + [10003,-0.376396445987622], + [10005,0.11373444242917], + [11001,-0.889339076952389], + [12001,-0.275327703375131], + [12003,0.707915113277889], + [12005,0.441419240876231], + [12007,0.531643693493405], + [12009,0.166466534991247], + [12011,-0.299679360948411], + [12013,0.627024525682554], + [12015,0.268101388552235], + [12017,0.413872182077798], + [12019,0.375929379382233], + [12021,0.248481151758959], + [12023,0.45563358778626], + [12027,0.322462615335667], + [12029,0.663958641063515], + [12031,-0.0386454953343286], + [12033,0.153607035673586], + [12035,0.209005112072356], + [12037,0.376011773362767], + [12039,-0.367855025827759], + [12041,0.645648775403856], + [12043,0.463905554480356], + [12045,0.509755495183996], + [12047,0.320526133610246], + [12049,0.454156769596199], + [12051,0.23194390338917], + [12053,0.304759522287387], + [12055,0.346162011927969], + [12057,-0.0695814654039345], + [12059,0.794757885384274], + [12061,0.21742007527193], + [12063,0.391929540756718], + [12065,0.069484240687679], + [12067,0.719626168224299], + [12069,0.202298389407921], + [12071,0.193256288656629], + [12073,-0.286165123936137], + [12075,0.459353489587872], + [12077,0.607909604519774], + [12079,0.19618148664593], + [12081,0.161842967562618], + [12083,0.26133291231671], + [12085,0.247549994391246], + [12086,-0.0738952130752058], + [12087,0.0801278008996511], + [12089,0.464510579735077], + [12091,0.399400242007611], + [12093,0.44640605296343], + [12095,-0.233624604161071], + [12097,-0.139462574000012], + [12099,-0.128677843971557], + [12101,0.202709127066496], + [12103,-0.00224145186838831], + [12105,0.145853636992654], + [12107,0.41583196914625], + [12109,0.269434083159798], + [12111,0.0157573347059099], + [12113,0.474042115489014], + [12115,0.105259237187127], + [12117,-0.0282694971078756], + [12119,0.362858569846475], + [12121,0.570710696338837], + [12123,0.542487562189055], + [12125,0.659553831231814], + [12127,0.142071512109226], + [12129,0.41278463648834], + [12131,0.522328751299527], + [12133,0.615969892825002], + [13001,0.572899209959301], + [13003,0.472], + [13005,0.730719517449375], + [13007,0.158166559070368], + [13009,-0.0131352879232943], + [13011,0.786409991978916], + [13013,0.438870547816518], + [13015,0.514056628418705], + [13017,0.264145141451414], + [13019,0.669875130072841], + [13021,-0.240813526376721], + [13023,0.534834249246587], + [13025,0.818016378525933], + [13027,0.208451503119682], + [13029,0.357612737153208], + [13031,0.2408975873123], + [13033,0.0180995475113122], + [13035,0.439383561643836], + [13037,-0.155535224153705], + [13039,0.313662991040662], + [13043,0.4234438891413], + [13045,0.39544235924933], + [13047,0.568086233215988], + [13049,0.511494252873563], + [13051,-0.190258520372075], + [13053,0.137685843568196], + [13055,0.626134301270418], + [13057,0.399019415020651], + [13059,-0.427779427779428], + [13061,-0.107843137254902], + [13063,-0.715826271376834], + [13065,0.477711477711478], + [13067,-0.145658342865553], + [13069,0.40208098614885], + [13071,0.475167533036889], + [13073,0.262237365133447], + [13075,0.408248311539014], + [13077,0.360462812537148], + [13079,0.465497269568095], + [13081,0.251412074808586], + [13083,0.655793639961785], + [13085,0.686980609418283], + [13087,0.17101499523273], + [13089,-0.681469093329769], + [13091,0.458016219588272], + [13093,0.060933660933661], + [13095,-0.403524807906538], + [13097,-0.254291908361165], + [13099,0.0503875968992249], + [13101,0.765284609978918], + [13103,0.503330222980147], + [13105,0.367600219659528], + [13107,0.38849454391355], + [13109,0.371320037986705], + [13111,0.65126535043083], + [13113,0.068912106789828], + [13115,0.416162457438209], + [13117,0.337034971845034], + [13119,0.701181767023073], + [13121,-0.469534784398378], + [13123,0.641586700079457], + [13125,0.800899165061015], + [13127,0.234583965878696], + [13129,0.631426289461516], + [13131,0.320566976438562], + [13133,0.267103021608536], + [13135,-0.185100662595435], + [13137,0.647309272736274], + [13139,0.438822632711621], + [13141,-0.441162227602906], + [13143,0.746335245379223], + [13145,0.448118932038835], + [13147,0.499762319759151], + [13149,0.691559049223283], + [13151,-0.206931685592677], + [13153,0.126065682646824], + [13155,0.513278609367455], + [13157,0.588520353219901], + [13159,0.535540023737307], + [13161,0.640747859514241], + [13163,-0.0685977616853193], + [13165,0.261161365625912], + [13167,0.399803536345776], + [13169,0.341249493995412], + [13171,0.414590548542062], + [13173,0.422335600907029], + [13175,0.284441884167147], + [13177,0.449683066706912], + [13179,-0.244267198404786], + [13181,0.378067318132465], + [13183,0.268248831355628], + [13185,0.121725462801257], + [13187,0.591078553208189], + [13189,0.193576472864468], + [13191,0.211828605914303], + [13193,-0.231631113984055], + [13195,0.537083531247879], + [13197,0.268469473097296], + [13199,0.206918878919619], + [13201,0.468372423596304], + [13205,0.105510752688172], + [13207,0.432068384924233], + [13209,0.50253807106599], + [13211,0.421098066298343], + [13213,0.698130534601509], + [13215,-0.24309579777004], + [13217,-0.110328376011033], + [13219,0.340630932665509], + [13221,0.392603660814344], + [13223,0.294756091768394], + [13225,0.0469906662375281], + [13227,0.666469824022676], + [13229,0.755501222493888], + [13231,0.716892400300978], + [13233,0.575852470424495], + [13235,0.391841779975278], + [13237,0.41255643581225], + [13239,0.0971843778383288], + [13241,0.580460985409177], + [13243,-0.0918000653381248], + [13245,-0.376477025343718], + [13247,-0.411809902601071], + [13249,0.591511936339523], + [13251,0.190693430656934], + [13253,0.350736624450762], + [13255,0.209675263931578], + [13257,0.593976006126096], + [13259,-0.192133131618759], + [13261,-0.0482277745496804], + [13263,-0.20593268682259], + [13265,-0.218241042345277], + [13267,0.491867915229177], + [13269,0.271008403361344], + [13271,0.309993044284721], + [13273,-0.0849315068493151], + [13275,0.196567790745952], + [13277,0.339460936529624], + [13279,0.456479511608547], + [13281,0.609276531383917], + [13283,0.37635113003603], + [13285,0.22090245297621], + [13287,0.250133049494412], + [13289,0.0738559130040779], + [13291,0.637540453074434], + [13293,0.343742680927473], + [13295,0.601285284870262], + [13297,0.497921697478326], + [13299,0.407475838544628], + [13301,-0.114654517843584], + [13303,-0.00796939751354797], + [13305,0.575857988165681], + [13307,0.0778097982708934], + [13309,0.393485915492958], + [13311,0.670470853550195], + [13313,0.41195903534853], + [13315,0.472264787005823], + [13317,0.133052378085491], + [13319,0.124709854399662], + [13321,0.480758807588076], + [15001,-0.371770916055496], + [15003,-0.273533300633384], + [15007,-0.293931173225226], + [15009,-0.362647808615748], + [16001,0.0404397423956566], + [16003,0.533175355450237], + [16005,0.227527424828348], + [16007,0.785539215686275], + [16009,0.597528321318229], + [16011,0.575261341984654], + [16013,-0.377451737451737], + [16015,0.486457666879932], + [16017,0.37703811986956], + [16019,0.452390556868169], + [16021,0.603703102160143], + [16023,0.729496402877698], + [16025,0.545731707317073], + [16027,0.409379278868097], + [16029,0.741684147437818], + [16031,0.687546686586277], + [16033,0.731147540983607], + [16035,0.594919168591224], + [16037,0.552005943536404], + [16039,0.47171727429674], + [16041,0.797908335896647], + [16043,0.695080965475099], + [16045,0.630305515685873], + [16047,0.575316990701606], + [16049,0.667412378821775], + [16051,0.758575581395349], + [16053,0.503605611642848], + [16055,0.442059002398192], + [16057,-0.0387659833570124], + [16059,0.55363321799308], + [16061,0.620239390642002], + [16063,0.560276155071694], + [16065,0.671371340523883], + [16067,0.603326935380678], + [16069,0.345280062671367], + [16071,0.792240300375469], + [16073,0.64789644012945], + [16075,0.607910732105597], + [16077,0.419657832941966], + [16079,0.426975799627687], + [16081,-0.0744818652849741], + [16083,0.467751076853321], + [16085,0.140257113967933], + [16087,0.589439449014731], + [17001,0.474446778072018], + [17003,0.143076923076923], + [17005,0.421711108302793], + [17007,0.136786079836233], + [17009,0.597848572610674], + [17011,0.219086651053864], + [17013,0.502754315093647], + [17015,0.300140073857125], + [17017,0.383587786259542], + [17019,-0.235858454608455], + [17021,0.454648383444458], + [17023,0.51502615890011], + [17025,0.665877478543948], + [17027,0.521944991222004], + [17029,0.270086862106406], + [17031,-0.511199776556074], + [17033,0.523634396971336], + [17035,0.602298450287306], + [17037,-0.0588210019764545], + [17039,0.439856832417231], + [17041,0.454566690025695], + [17043,-0.184509080034454], + [17045,0.532920792079208], + [17047,0.706112616681722], + [17049,0.603033863903429], + [17051,0.630401781196235], + [17053,0.48426933254925], + [17055,0.482102056359482], + [17057,0.205497861942578], + [17059,0.528966300643696], + [17061,0.559078280764831], + [17063,0.263757696279016], + [17065,0.612781954887218], + [17067,0.49788526190218], + [17069,0.580373831775701], + [17071,0.337056688075956], + [17073,0.219269235366777], + [17075,0.578092129125861], + [17077,-0.0131847220334376], + [17079,0.633884748227595], + [17081,0.4605478810583], + [17083,0.492675404780262], + [17085,0.167576374745418], + [17087,0.59589905362776], + [17089,-0.147135158477314], + [17091,0.169272380796263], + [17093,-0.0586658155122886], + [17095,0.0575026417752731], + [17097,-0.245517755001129], + [17099,0.145961373798877], + [17101,0.549881046788263], + [17103,0.200972750514435], + [17105,0.451346371039648], + [17107,0.408138101109741], + [17109,0.169315250852816], + [17111,0.0255962696522747], + [17113,-0.0406348078403506], + [17115,0.18048558923115], + [17117,0.373671230546815], + [17119,0.135918486258749], + [17121,0.474014649459365], + [17123,0.353434376007739], + [17125,0.402018376261485], + [17127,0.486759892889021], + [17129,0.404067197170646], + [17131,0.245803633019085], + [17133,0.365651103278451], + [17135,0.419287679381367], + [17137,0.324371090110475], + [17139,0.498339873226683], + [17141,0.265617697460664], + [17143,-0.0650861542221679], + [17145,0.473652392947103], + [17147,0.304792732588493], + [17149,0.620266120777891], + [17151,0.598143851508121], + [17153,0.311969111969112], + [17155,0.196637646352447], + [17157,0.510226343059722], + [17159,0.537820431872711], + [17161,-0.123870493460349], + [17163,-0.0890615660490137], + [17165,0.487881013587955], + [17167,0.0446085037401613], + [17169,0.443894819057537], + [17171,0.574087862993299], + [17173,0.580217937971501], + [17175,0.421780773323874], + [17177,0.160641453466815], + [17179,0.262787381928355], + [17181,0.409839816933638], + [17183,0.335029631538263], + [17185,0.543533697632058], + [17187,0.204223538501159], + [17189,0.576843733883445], + [17191,0.716130575152457], + [17193,0.584838533114395], + [17195,0.0849141150112025], + [17197,-0.0849450345248665], + [17199,0.381585724240313], + [17201,-0.0255769831167896], + [17203,0.412185695882437], + [18001,0.535124263755208], + [18003,0.114320635074302], + [18005,0.268107741059303], + [18007,0.497509960159362], + [18009,0.472493770366111], + [18011,0.189041095890411], + [18013,0.31101781459208], + [18015,0.522234156820623], + [18017,0.420570813139472], + [18019,0.186307499867867], + [18021,0.5764666832628], + [18023,0.470500196927924], + [18025,0.439851178172799], + [18027,0.630651340996169], + [18029,0.563866421077921], + [18031,0.593973697353088], + [18033,0.482789147529032], + [18035,0.134310056869834], + [18037,0.40989449003517], + [18039,0.285495347564313], + [18041,0.552241793434748], + [18043,0.143946615824595], + [18045,0.581395348837209], + [18047,0.638654041258032], + [18049,0.49186538890127], + [18051,0.492045454545454], + [18053,0.396415392725356], + [18055,0.532293679271322], + [18057,0.0694663038157251], + [18059,0.38435463464706], + [18061,0.463230861965039], + [18063,0.245330185403791], + [18065,0.461407684461068], + [18067,0.330700342121151], + [18069,0.510975749913803], + [18071,0.543723816089516], + [18073,0.499637705026019], + [18075,0.535175576203693], + [18077,0.342642767819925], + [18079,0.579955048697245], + [18081,0.348666973866105], + [18083,0.482635796972395], + [18085,0.520178986317873], + [18087,0.549928332537028], + [18089,-0.152841250057702], + [18091,0.073723773335536], + [18093,0.517459391109814], + [18095,0.230414474073198], + [18097,-0.297415610019191], + [18099,0.415831458375946], + [18101,0.598809523809524], + [18103,0.543079096045198], + [18105,-0.287250532842472], + [18107,0.500592697961119], + [18109,0.559062703652282], + [18111,0.532165555727794], + [18113,0.505701405462742], + [18115,0.522597071928708], + [18117,0.486136783733826], + [18119,0.501339377704513], + [18121,0.564410954934068], + [18123,0.250584932147871], + [18125,0.53659734730637], + [18127,0.0620855652830545], + [18129,0.41445801644004], + [18131,0.48747591522158], + [18133,0.513560157790927], + [18135,0.535704387990762], + [18137,0.604702529390809], + [18139,0.549621260752343], + [18141,-0.0595436051653989], + [18143,0.461799321763415], + [18145,0.487213516410597], + [18147,0.39205298013245], + [18149,0.476077500988533], + [18151,0.430176767676768], + [18153,0.513116236996834], + [18155,0.529411764705882], + [18157,-0.00626454783183428], + [18159,0.538267875125881], + [18161,0.570093457943925], + [18163,0.0974180096775463], + [18165,0.414654113794515], + [18167,0.150510921533702], + [18169,0.509820426487093], + [18171,0.554742857142857], + [18173,0.282805497909712], + [18175,0.532022188603127], + [18177,0.296888265475619], + [18179,0.575128781832692], + [18181,0.448175448175448], + [18183,0.504679457182967], + [19001,0.417739975698664], + [19003,0.443396226415094], + [19005,0.295308439337984], + [19007,0.409339372169296], + [19009,0.363636363636364], + [19011,0.280735991078896], + [19013,-0.0920091289230628], + [19015,0.15948793172423], + [19017,0.163906820095425], + [19019,0.212579091510058], + [19021,0.261319695646751], + [19023,0.391413507406478], + [19025,0.430122116689281], + [19027,0.382718255741221], + [19029,0.3860529986053], + [19031,0.17374738045342], + [19033,0.0641919343112518], + [19035,0.397916342714974], + [19037,0.317229781378994], + [19039,0.363991323210412], + [19041,0.394931242186612], + [19043,0.292822358670337], + [19045,0.105448227361105], + [19047,0.372349448685327], + [19049,0.0201946560711552], + [19051,0.499134734239802], + [19053,0.400267737617135], + [19055,0.357222844344905], + [19057,0.0871952784192969], + [19059,0.340300928011533], + [19061,0.0294490363337179], + [19063,0.364681295715779], + [19065,0.231462925851703], + [19067,0.197368421052632], + [19069,0.355784469096672], + [19071,0.430229490899499], + [19073,0.291266025641026], + [19075,0.381639803784163], + [19077,0.365510628096532], + [19079,0.270932170791127], + [19081,0.445743454635271], + [19083,0.3256288239293], + [19085,0.390685478836309], + [19087,0.330402780617461], + [19089,0.276587058583384], + [19091,0.451815244250143], + [19093,0.516987095075059], + [19095,0.257639179573043], + [19097,0.265384264746103], + [19099,0.219312850007568], + [19101,0.0141520200867382], + [19103,-0.44154831794597], + [19105,0.218729717199815], + [19107,0.457301861446939], + [19109,0.398952179244231], + [19111,0.198112050999142], + [19113,-0.140939165150759], + [19115,0.33945656333716], + [19117,0.438197330999781], + [19119,0.684971951579569], + [19121,0.349859973031843], + [19123,0.482798677508712], + [19125,0.344196167931639], + [19127,0.0786048346199357], + [19129,0.380205115531941], + [19131,0.283420593368237], + [19133,0.395488721804511], + [19135,0.468048359240069], + [19137,0.396032048836322], + [19139,0.0718494676900223], + [19141,0.577658142664872], + [19143,0.634761470677606], + [19145,0.436596893990547], + [19147,0.378605031703825], + [19149,0.5003575003575], + [19151,0.503591380686353], + [19153,-0.155898043864849], + [19155,0.171165945294721], + [19157,0.135601726387634], + [19159,0.470302577512141], + [19161,0.490275229357798], + [19163,-0.0357911465748436], + [19165,0.411358173076923], + [19167,0.677095031819883], + [19169,-0.178430778551954], + [19171,0.194369369369369], + [19173,0.535057650358367], + [19175,0.32103442595948], + [19177,0.531333690412426], + [19179,0.240920649409924], + [19181,0.171564105942812], + [19183,0.208983697537288], + [19185,0.525611745513866], + [19187,0.246424705145006], + [19189,0.269085929476207], + [19191,0.0521430982112723], + [19193,0.158235823582358], + [19195,0.263497923396401], + [19197,0.348988910632746], + [20001,0.454322716135807], + [20003,0.579554822753504], + [20005,0.351820728291317], + [20007,0.750439367311072], + [20009,0.572992023743276], + [20011,0.53078721745908], + [20013,0.493246390312063], + [20015,0.423863309122324], + [20017,0.53127147766323], + [20019,0.736482287134866], + [20021,0.507569721115538], + [20023,0.680696661828737], + [20025,0.721789883268483], + [20027,0.559820538384845], + [20029,0.561717791411043], + [20031,0.571856978085352], + [20033,0.710677382319173], + [20035,0.387203408506575], + [20037,0.238288954635109], + [20039,0.711111111111111], + [20041,0.550908090258668], + [20043,0.626137303556658], + [20045,-0.404090933366564], + [20047,0.616929698708752], + [20049,0.710825132475397], + [20051,0.449628844114528], + [20053,0.530523255813953], + [20055,0.260281288944276], + [20057,0.326504776153758], + [20059,0.39358942170893], + [20061,0.151696606786427], + [20063,0.770260747004933], + [20065,0.65149136577708], + [20067,0.587037806398006], + [20069,0.694746376811594], + [20071,0.749185667752443], + [20073,0.621038435603506], + [20075,0.672371638141809], + [20077,0.648973266175901], + [20079,0.20177596448071], + [20081,0.617302052785924], + [20083,0.703048180924287], + [20085,0.410847781135677], + [20087,0.331971179696742], + [20089,0.732911392405063], + [20091,-0.0842272499926446], + [20093,0.632829373650108], + [20095,0.612685209253964], + [20097,0.724324324324324], + [20099,0.367693427116178], + [20101,0.738231917336395], + [20103,0.217044775269705], + [20105,0.654320987654321], + [20107,0.640641265875495], + [20109,0.738700564971752], + [20111,0.113356965080323], + [20113,0.412512002363542], + [20115,0.498972602739726], + [20117,0.494388900224444], + [20119,0.704918032786885], + [20121,0.404835062902197], + [20123,0.635454848383872], + [20125,0.512659698025552], + [20127,0.486101211689237], + [20129,0.744569939183319], + [20131,0.667389732465654], + [20133,0.470407850352653], + [20135,0.79890560875513], + [20137,0.691189050470488], + [20139,0.454096228868661], + [20141,0.705093833780161], + [20143,0.673257698541329], + [20145,0.523094254600075], + [20147,0.764966740576497], + [20149,0.479046705054383], + [20151,0.539267015706806], + [20153,0.70824812542604], + [20155,0.352015065913371], + [20157,0.675925925925926], + [20159,0.539613526570048], + [20161,-0.0331400882581985], + [20163,0.747143945163747], + [20165,0.660839160839161], + [20167,0.647794994040525], + [20169,0.312449110777802], + [20171,0.745725558965366], + [20173,0.128712111400517], + [20175,0.308504282015535], + [20177,-0.0308178964269453], + [20179,0.79145546705286], + [20181,0.70398773006135], + [20183,0.681862269641125], + [20185,0.642497482376637], + [20187,0.610079575596817], + [20189,0.762729124236253], + [20191,0.516352260877808], + [20193,0.666309012875537], + [20195,0.69854338188727], + [20197,0.492703634916424], + [20199,0.890818858560794], + [20201,0.666309396212933], + [20203,0.690526315789474], + [20205,0.627943485086342], + [20207,0.615489130434783], + [20209,-0.315359295831946], + [21001,0.678818643285648], + [21003,0.644165131650233], + [21005,0.485279421938658], + [21007,0.60535756995934], + [21009,0.481623780395329], + [21011,0.434070876056845], + [21013,0.639641454325713], + [21015,0.363889522939968], + [21017,0.305081172253848], + [21019,0.337356160538872], + [21021,0.252223006351447], + [21023,0.618866126727013], + [21025,0.532518864534675], + [21027,0.532384837329619], + [21029,0.488511875908871], + [21031,0.642656068885577], + [21033,0.547878214229374], + [21035,0.323925593329057], + [21037,0.190320962888666], + [21039,0.646834477498093], + [21041,0.451597051597052], + [21043,0.537181396163616], + [21045,0.741299140481894], + [21047,0.290212183436003], + [21049,0.325961268593882], + [21051,0.778636121470432], + [21053,0.753020684005734], + [21055,0.650406504065041], + [21057,0.689960329569728], + [21059,0.284386578625986], + [21061,0.594715111478117], + [21063,0.518593644354293], + [21065,0.580170410534469], + [21067,-0.212364512244079], + [21069,0.579337899543379], + [21071,0.518532292054047], + [21073,0.00970569818409528], + [21075,0.338333333333333], + [21077,0.564733915806196], + [21079,0.573625349487418], + [21081,0.596523330283623], + [21083,0.575331027078611], + [21085,0.595039230574538], + [21087,0.680444598819034], + [21089,0.456653844009589], + [21091,0.399021352313167], + [21093,0.244737446018401], + [21095,0.724887211122364], + [21097,0.450423631783833], + [21099,0.537622682660851], + [21101,0.249938632235259], + [21103,0.463494051346274], + [21105,0.578268876611418], + [21107,0.486789960369881], + [21109,0.800264113568835], + [21111,-0.205042690842313], + [21113,0.332346179324319], + [21115,0.680254523762179], + [21117,0.197238805970149], + [21119,0.543927648578811], + [21121,0.677891208288892], + [21123,0.581582973988037], + [21125,0.677035219399538], + [21127,0.639644884296318], + [21129,0.650689905591867], + [21131,0.812880218166562], + [21133,0.601329639889197], + [21135,0.716646582888621], + [21137,0.580377920506376], + [21139,0.620529399878763], + [21141,0.491160266425458], + [21143,0.479007633587786], + [21145,0.321823413599879], + [21147,0.773047425262169], + [21149,0.543658381134481], + [21151,0.274239001327526], + [21153,0.549368968077209], + [21155,0.383814374646293], + [21157,0.531206817134961], + [21159,0.793280328289305], + [21161,0.397372113790024], + [21163,0.474270825794311], + [21165,0.509964064031362], + [21167,0.474304532455152], + [21169,0.604783137413863], + [21171,0.751371807000946], + [21173,0.424859383664739], + [21175,0.570854638422206], + [21177,0.495086170061245], + [21179,0.371980254248395], + [21181,0.432054713053821], + [21183,0.562352084471145], + [21185,0.21930084232622], + [21187,0.592578849721707], + [21189,0.771065182829889], + [21191,0.613280678660231], + [21193,0.550596089651884], + [21195,0.613041749502982], + [21197,0.494452662721894], + [21199,0.635720714928636], + [21201,0.554969217238347], + [21203,0.70587472441966], + [21205,0.214097630139761], + [21207,0.699209039548023], + [21209,0.254111667960754], + [21211,0.301660038042539], + [21213,0.37425603921111], + [21215,0.550900860921274], + [21217,0.519734176189318], + [21219,0.542434023163091], + [21221,0.507831821929101], + [21223,0.522528898325077], + [21225,0.529103788112104], + [21227,0.171586511885019], + [21229,0.463271302644466], + [21231,0.627601314348302], + [21233,0.522811760729976], + [21235,0.662411535154442], + [21237,0.428474114441417], + [21239,0.123019070641955], + [22001,0.611755055458469], + [22003,0.56455277835158], + [22005,0.332121926464329], + [22007,0.309618155619597], + [22009,0.414476392073852], + [22011,0.684556679282745], + [22013,0.118424834722622], + [22015,0.417076075629001], + [22017,-0.0687378188905373], + [22019,0.358849077090119], + [22021,0.684388900656641], + [22023,0.837797246558198], + [22025,0.472349272349272], + [22027,0.159821565912937], + [22029,0.271914747335854], + [22031,0.250875145857643], + [22033,-0.133124506732942], + [22035,-0.275167785234899], + [22037,0.17246713070379], + [22039,0.453290381960424], + [22041,0.447860407145825], + [22043,0.750485227517792], + [22045,0.316748249581758], + [22047,-0.0378496982995064], + [22049,0.431338728937243], + [22051,0.112757711657022], + [22053,0.561479051329369], + [22055,0.292627713806994], + [22057,0.611956327188115], + [22059,0.818129988597492], + [22061,0.198834128245893], + [22063,0.711536662196301], + [22065,-0.157940663176265], + [22067,0.136522346368715], + [22069,0.151470407284361], + [22071,-0.69442693590346], + [22073,0.239731252200446], + [22075,0.369296138924811], + [22077,0.231413096996553], + [22079,0.326380962263498], + [22081,0.189548927779147], + [22083,0.343978844589097], + [22085,0.670505377367469], + [22087,0.290132717830352], + [22089,0.300824028823173], + [22091,-0.104290429042904], + [22093,-0.0446084724005135], + [22095,-0.286174242424242], + [22097,0.143033322645093], + [22099,0.366489002327153], + [22101,0.295460509052742], + [22103,0.450615666753995], + [22105,0.333709629054733], + [22107,-0.0522565320665083], + [22109,0.508180161187606], + [22111,0.520115721905795], + [22113,0.628122795946397], + [22115,0.659159070861511], + [22117,0.380609015925715], + [22119,0.314298411287635], + [22121,0.106885623739556], + [22123,0.717525363039586], + [22125,0.254017204999188], + [22127,0.499188575137942], + [23001,0.0290234684011603], + [23003,0.20333371389428], + [23005,-0.367282033311565], + [23007,0.0407180645544789], + [23009,-0.127710983668598], + [23011,-0.00259971561122041], + [23013,-0.204367926032202], + [23015,-0.105841325196164], + [23017,0.0906849906017935], + [23019,0.0861663718529646], + [23021,0.27184265010352], + [23023,-0.162049564059614], + [23025,0.240099839809261], + [23027,-0.0488084618325475], + [23029,0.202477145384842], + [23031,-0.129930320778376], + [24001,0.390360804153908], + [24003,-0.149685342132223], + [24005,-0.277320685794504], + [24009,0.0575595101495838], + [24011,0.337365066978801], + [24013,0.245795146575087], + [24015,0.273092890503373], + [24017,-0.417002849002849], + [24019,0.122079252288586], + [24021,-0.0989904992324399], + [24023,0.5706340378198], + [24025,0.123832667939594], + [24027,-0.455750943353784], + [24029,-0.0127328012162676], + [24031,-0.611275924507144], + [24033,-0.821810337786874], + [24035,0.272733446519525], + [24037,0.142465347268549], + [24039,0.150100200400802], + [24041,-0.00527081061432211], + [24043,0.213979597996016], + [24045,0.0197786568291924], + [24047,0.193087276348334], + [24510,-0.781854758977622], + [25001,-0.249027527918265], + [25003,-0.482176898049277], + [25005,-0.122617100154072], + [25007,-0.580550019928258], + [25009,-0.296967490625796], + [25011,-0.456670951468555], + [25013,-0.181135295827746], + [25015,-0.47967726492533], + [25017,-0.462286412873511], + [25019,-0.464989517819707], + [25021,-0.371339116822125], + [25023,-0.177723438819496], + [25025,-0.643836115879502], + [25027,-0.183348554902297], + [26001,0.387124463519313], + [26003,0.189658575093744], + [26005,0.25733205753254], + [26007,0.280834232290543], + [26009,0.241151005856888], + [26011,0.362445414847162], + [26013,0.259147869674186], + [26015,0.331008279460134], + [26017,0.117653013023821], + [26019,0.0927903319261652], + [26021,0.0751139493805353], + [26023,0.390891559115858], + [26025,0.112814525791883], + [26027,0.293042703937435], + [26029,0.172943980929678], + [26031,0.303974908788325], + [26033,0.232731259738011], + [26035,0.352552926525529], + [26037,0.0665023583903455], + [26039,0.311251449929115], + [26041,0.269110651996348], + [26043,0.339321774249704], + [26045,0.0079084584053124], + [26047,0.113455980180759], + [26049,-0.0947988115761288], + [26051,0.372407574391344], + [26053,0.126070991432069], + [26055,0.0307341387175806], + [26057,0.287789305666401], + [26059,0.486649214659686], + [26061,0.144969108561342], + [26063,0.397398606004061], + [26065,-0.328323381576443], + [26067,0.309145066227264], + [26069,0.2898493259318], + [26071,0.256819198092115], + [26073,0.0257209125212032], + [26075,0.193745511358625], + [26077,-0.191183482908568], + [26079,0.424794021843265], + [26081,-0.0626993462573801], + [26083,0.123859191655802], + [26085,0.265960859801091], + [26087,0.368666705240217], + [26089,-0.0526000837771528], + [26091,0.202501000781563], + [26093,0.229724764780115], + [26095,0.429345984412064], + [26097,0.241061130334487], + [26099,0.0818158523210644], + [26101,0.15345162184641], + [26103,-0.113711191532203], + [26105,0.200188135692869], + [26107,0.285437457610697], + [26109,0.305718651974584], + [26111,0.149103139013453], + [26113,0.54335461404527], + [26115,0.230320359456148], + [26117,0.384288343168983], + [26119,0.438523883428177], + [26121,-0.00561822508151932], + [26123,0.4109240553685], + [26125,-0.142315874224957], + [26127,0.285342584562012], + [26129,0.407401091405184], + [26131,0.257935449453188], + [26133,0.470597924559381], + [26135,0.441763727121464], + [26137,0.346784189505578], + [26139,0.218623579562608], + [26141,0.294559554101539], + [26143,0.30358587220275], + [26145,-0.00297429151983353], + [26147,0.307262446437249], + [26149,0.323670086531089], + [26151,0.461552346570397], + [26153,0.320795041675572], + [26155,0.202670407315046], + [26157,0.399358819676652], + [26159,0.124706985466479], + [26161,-0.47284852631727], + [26163,-0.385990625757929], + [26165,0.349163879598662], + [27001,0.268727825646224], + [27003,0.0194805510337959], + [27005,0.307405266200662], + [27007,0.032268992970272], + [27009,0.327855230357308], + [27011,0.277777777777778], + [27013,-0.0456062291434928], + [27015,0.335477105907026], + [27017,-0.0154356679571622], + [27019,0.0499359399842552], + [27021,0.293842556508184], + [27023,0.312538604076591], + [27025,0.299804282071052], + [27027,-0.0418471337579618], + [27029,0.455958549222798], + [27031,-0.349553933495539], + [27033,0.388564760793465], + [27035,0.303284097253947], + [27037,-0.142759966066311], + [27039,0.312257629404822], + [27041,0.335107956225969], + [27043,0.344470344470345], + [27045,0.232028349645629], + [27047,0.163296289548795], + [27049,0.152415823102879], + [27051,0.271504623143738], + [27053,-0.442258013853311], + [27055,0.132385804952177], + [27057,0.295325331648768], + [27059,0.395827161538787], + [27061,0.171104707012488], + [27063,0.386966450026348], + [27065,0.387096774193549], + [27067,0.262141014993225], + [27069,0.211598746081505], + [27071,0.216789396170839], + [27073,0.272269753397081], + [27075,-0.0360795454545455], + [27077,0.434947368421053], + [27079,0.310269350033441], + [27081,0.387181164159582], + [27083,0.265202568778245], + [27085,0.371243688416099], + [27087,0.0133096716947649], + [27089,0.483652312599681], + [27091,0.387111729253593], + [27093,0.415242703765311], + [27095,0.386458623572026], + [27097,0.544819678966021], + [27099,0.0595011625449164], + [27101,0.397755610972569], + [27103,-0.0324034334763949], + [27105,0.312551271534044], + [27107,0.163538873994638], + [27109,-0.109875200430575], + [27111,0.331170647127915], + [27113,0.276619718309859], + [27115,0.308580542264753], + [27117,0.4624408314468], + [27119,0.289205436487193], + [27121,0.281404119524224], + [27123,-0.464518540048997], + [27125,0.355710955710956], + [27127,0.420379030273197], + [27129,0.373100590229813], + [27131,0.0017782366775656], + [27133,0.394434714925083], + [27135,0.46976856900521], + [27137,-0.160099724985221], + [27139,0.0678834155880437], + [27141,0.334463131136368], + [27143,0.416254075594735], + [27145,0.23032907602791], + [27147,0.230350459339912], + [27149,0.225936367297624], + [27151,0.300392156862745], + [27153,0.495973617608712], + [27155,0.278777959629023], + [27157,0.269048174955249], + [27159,0.463608643775686], + [27161,0.309090909090909], + [27163,-0.0945258364072694], + [27165,0.219253438113949], + [27167,0.388193202146691], + [27169,-0.00399096385542164], + [27171,0.29281245724662], + [27173,0.377351530800443], + [28001,-0.163152868581503], + [28003,0.643333333333333], + [28005,0.26435490664046], + [28007,0.187614678899083], + [28009,0.209696399152742], + [28011,-0.31182320441989], + [28013,0.417190133292477], + [28015,0.388289403856359], + [28017,0.0457107075767063], + [28019,0.433827042522695], + [28021,-0.724342857142857], + [28023,0.312416717141127], + [28025,-0.165885286783042], + [28027,-0.434187016081001], + [28029,-0.0172955974842768], + [28031,0.262998921251348], + [28033,0.243513054183896], + [28035,0.113866967305524], + [28037,0.327731092436975], + [28039,0.777147561979691], + [28041,0.664583333333333], + [28043,0.124549237170596], + [28045,0.563481294824578], + [28047,0.256123407109323], + [28049,-0.490510786191243], + [28051,-0.655900464999372], + [28053,-0.459119496855346], + [28055,-0.0708898944193062], + [28057,0.766258070553008], + [28059,0.352524687907583], + [28061,-0.00451232211037833], + [28063,-0.724727838258165], + [28065,-0.173650741888146], + [28067,0.427293817032579], + [28069,-0.235344458707745], + [28071,0.125070593857248], + [28073,0.476536870631864], + [28075,0.161897371229023], + [28077,0.309396485867074], + [28079,0.14586301369863], + [28081,0.330201121002308], + [28083,-0.419318919922056], + [28085,0.394085116614571], + [28087,0.0265183917878529], + [28089,0.11977093875493], + [28091,0.371973466003317], + [28093,-0.0314280227869167], + [28095,0.311008152014545], + [28097,0.157999206034141], + [28099,0.436960276338515], + [28101,0.389396346306593], + [28103,-0.53030303030303], + [28105,-0.0670880174066207], + [28107,0.0424885209855785], + [28109,0.650591753358885], + [28111,0.535312180143296], + [28113,-0.00975182481751824], + [28115,0.63089522733691], + [28117,0.59080110234724], + [28119,-0.353904282115869], + [28121,0.459522239109862], + [28123,0.184173339613754], + [28125,-0.360891778913145], + [28127,0.308259081562714], + [28129,0.565765547339072], + [28131,0.535925830543394], + [28133,-0.415657620041754], + [28135,-0.110316467012337], + [28137,0.350969743987587], + [28139,0.612251025923331], + [28141,0.764457295373666], + [28143,-0.471762692527096], + [28145,0.655309981648448], + [28147,0.196314670446492], + [28149,-0.0037006776565579], + [28151,-0.404594731225074], + [28153,0.270164132514349], + [28155,0.608923884514436], + [28157,-0.349864964399705], + [28159,0.117132867132867], + [28161,0.13723667905824], + [28163,-0.064291247095275], + [29001,0.267015706806283], + [29003,0.510514261919634], + [29005,0.591748099891422], + [29007,0.481793790724415], + [29009,0.61647043517856], + [29011,0.719228210246174], + [29013,0.595598016688838], + [29015,0.576246476819905], + [29017,0.746493155315193], + [29019,-0.128711531958066], + [29021,0.250870594790361], + [29023,0.631234988549405], + [29025,0.611856339247079], + [29027,0.432438965433889], + [29029,0.538649906130112], + [29031,0.457483550558399], + [29033,0.650044523597507], + [29035,0.708609271523179], + [29037,0.322583512595779], + [29039,0.669695658445118], + [29041,0.545070772287062], + [29043,0.516579444528892], + [29045,0.595223880597015], + [29047,0.0419741139470182], + [29049,0.458438522674147], + [29051,0.345332645693657], + [29053,0.472127684544068], + [29055,0.610075659715815], + [29057,0.677641277641278], + [29059,0.654956869608701], + [29061,0.612266112266112], + [29063,0.609079445145019], + [29065,0.700127786454636], + [29067,0.706103557998264], + [29069,0.57426221577165], + [29071,0.446329830695271], + [29073,0.590694107120031], + [29075,0.616155291170946], + [29077,0.205929429407778], + [29079,0.635492700729927], + [29081,0.685375494071146], + [29083,0.507984219425136], + [29085,0.579450418160096], + [29087,0.707865168539326], + [29089,0.430930326218284], + [29091,0.650198380346758], + [29093,0.583792116273949], + [29095,-0.224608351691449], + [29097,0.471536946389219], + [29099,0.344971152755108], + [29101,0.379067800382852], + [29103,0.627601314348302], + [29105,0.663885866279773], + [29107,0.465870409077336], + [29109,0.635600907029478], + [29111,0.566233193740357], + [29113,0.535617641890705], + [29115,0.547711954593828], + [29117,0.577654635315261], + [29119,0.676774483378257], + [29121,0.570431636081675], + [29123,0.636266285918258], + [29125,0.654058648533787], + [29127,0.511778607913395], + [29129,0.748156551332955], + [29131,0.666284591452432], + [29133,0.500318133616119], + [29135,0.629041406693137], + [29137,0.575798776342624], + [29139,0.57412303895646], + [29141,0.589152252829383], + [29143,0.51410701876303], + [29145,0.583506335457084], + [29147,0.412842148590245], + [29149,0.647537473233405], + [29151,0.722058429375503], + [29153,0.687707641196013], + [29155,0.450704225352113], + [29157,0.642956764295676], + [29159,0.486719965659709], + [29161,0.410263116597793], + [29163,0.546965699208443], + [29165,0.0309826012549914], + [29167,0.60841533763149], + [29169,0.468334636434715], + [29171,0.692110874200427], + [29173,0.56971969291198], + [29175,0.526801866133486], + [29177,0.457132879343461], + [29179,0.675659104843654], + [29181,0.706276445698167], + [29183,0.178318549552815], + [29185,0.598373983739837], + [29186,0.419244354061864], + [29187,0.488731627653783], + [29189,-0.243834858351464], + [29195,0.379155531801176], + [29197,0.623041940373926], + [29199,0.601642710472279], + [29201,0.571624243807785], + [29203,0.635236373030225], + [29205,0.640340218712029], + [29207,0.726527850860708], + [29209,0.616956189227576], + [29211,0.610114192495922], + [29213,0.586876620110651], + [29215,0.693407182419153], + [29217,0.579818944579377], + [29219,0.469846034128175], + [29221,0.633742767231753], + [29223,0.710219478737997], + [29225,0.612745894976427], + [29227,0.606227106227106], + [29229,0.729033754784828], + [29510,-0.673555634942955], + [30001,0.418549990960043], + [30003,-0.0604512558535547], + [30005,-0.039241334205363], + [30007,0.583333333333333], + [30009,0.297140368703731], + [30011,0.825677267373381], + [30013,0.202703051249645], + [30015,0.312283136710618], + [30017,0.470536807134114], + [30019,0.607645875251509], + [30021,0.592372881355932], + [30023,-0.0791912384161753], + [30025,0.777634130575307], + [30027,0.529929300864101], + [30029,0.307995562761328], + [30031,-0.0778004073319756], + [30033,0.898136645962733], + [30035,-0.314160902803058], + [30037,0.682926829268293], + [30039,0.379679144385027], + [30041,0.140674545978668], + [30043,0.341279799247177], + [30045,0.581749049429658], + [30047,0.148170957014411], + [30049,0.0404840590979783], + [30051,0.534579439252336], + [30053,0.507256452594073], + [30055,0.720972097209721], + [30057,0.40590405904059], + [30059,0.527039413382218], + [30061,0.454256165473349], + [30063,-0.244031906346838], + [30065,0.708744710860367], + [30067,0.0659000442282176], + [30069,0.768545994065282], + [30071,0.646258503401361], + [30073,0.384458077709611], + [30075,0.725978647686833], + [30077,0.515931766977792], + [30079,0.654320987654321], + [30081,0.371309681816551], + [30083,0.691629955947137], + [30085,0.0220174091141834], + [30087,0.349253731343284], + [30089,0.513368983957219], + [30091,0.419322205361659], + [30093,-0.145944753818162], + [30095,0.588465646137415], + [30097,0.54039347007116], + [30099,0.442876901798064], + [30101,0.547261269995153], + [30103,0.65410199556541], + [30105,0.505402160864346], + [30107,0.570610687022901], + [30109,0.740303541315346], + [30111,0.246688192901253], + [31001,0.410686809343964], + [31003,0.744992947813822], + [31005,0.850533807829182], + [31007,0.787654320987654], + [31009,0.777777777777778], + [31011,0.683375634517766], + [31013,0.584009499307342], + [31015,0.764192139737991], + [31017,0.77001806140879], + [31019,0.44758590691605], + [31021,0.416415042547351], + [31023,0.604530011325028], + [31025,0.362363709785974], + [31027,0.704021228822209], + [31029,0.770091556459817], + [31031,0.768106931924153], + [31033,0.633676092544987], + [31035,0.636781609195402], + [31037,0.440043703906037], + [31039,0.602467443454421], + [31041,0.732471068754255], + [31043,0.177211394302849], + [31045,0.460752554198854], + [31047,0.446402837822858], + [31049,0.721343873517787], + [31051,0.563965170797053], + [31053,0.329138431752178], + [31055,-0.115732684251732], + [31057,0.787449392712551], + [31059,0.545871559633028], + [31061,0.677758318739054], + [31063,0.73342736248237], + [31065,0.688524590163935], + [31067,0.374884579870729], + [31069,0.72642310960068], + [31071,0.75046904315197], + [31073,0.611913357400722], + [31075,0.89873417721519], + [31077,0.632128514056225], + [31079,0.356430666108085], + [31081,0.587985995946195], + [31083,0.702688455455983], + [31085,0.871212121212121], + [31087,0.75677553856845], + [31089,0.748487626031164], + [31091,0.728735632183908], + [31093,0.622597553873034], + [31095,0.440528634361234], + [31097,0.402309468822171], + [31099,0.60204371274482], + [31101,0.645693057812863], + [31103,0.813333333333333], + [31105,0.707263790278536], + [31107,0.608733246865543], + [31109,-0.0800669357220198], + [31111,0.559506055002088], + [31113,0.829213483146067], + [31115,0.662921348314607], + [31117,0.883561643835616], + [31119,0.548839019328058], + [31121,0.642960115329169], + [31123,0.691076430572229], + [31125,0.600222717149221], + [31127,0.4499850701702], + [31129,0.63901147396293], + [31131,0.388131220051603], + [31133,0.537688442211055], + [31135,0.738157894736842], + [31137,0.693623955999185], + [31139,0.756468797564688], + [31141,0.577884241874919], + [31143,0.624246721020915], + [31145,0.696026986506747], + [31147,0.510444826738757], + [31149,0.797101449275362], + [31151,0.292860957806658], + [31153,0.115608735311477], + [31155,0.46442640083608], + [31157,0.445999471877476], + [31159,0.453853046594982], + [31161,0.741641337386018], + [31163,0.587987987987988], + [31165,0.798319327731093], + [31167,0.655997413514387], + [31169,0.574351978171896], + [31171,0.786729857819905], + [31173,0.0251954821894005], + [31175,0.643752702118461], + [31177,0.414352805470874], + [31179,0.498650968849644], + [31181,0.637053087757313], + [31183,0.762575452716298], + [31185,0.532079804794029], + [32001,0.508814296063753], + [32003,-0.0954279153048652], + [32005,0.302972802024035], + [32007,0.57207249506996], + [32009,0.687763713080169], + [32011,0.79], + [32013,0.553528945281523], + [32015,0.63177431328879], + [32017,0.724655819774718], + [32019,0.423350461088236], + [32021,0.263765541740675], + [32023,0.412637008381689], + [32027,0.519754170324846], + [32029,0.358007117437722], + [32031,-0.0464212211296593], + [32033,0.596902862505866], + [32510,0.117096505823627], + [33001,0.105972005397825], + [33003,-0.0152138784719046], + [33005,-0.175445873081709], + [33007,0.0600971889032418], + [33009,-0.250070641424131], + [33011,-0.0780679299816275], + [33013,-0.0999728026834685], + [33015,-0.0214677269525627], + [33017,-0.15554632322393], + [33019,-0.0369068541300527], + [34001,-0.0677777295545622], + [34003,-0.166298247903684], + [34005,-0.19868961774056], + [34007,-0.34009767598518], + [34009,0.161421390917529], + [34011,-0.0614322300385775], + [34013,-0.559006120451657], + [34015,-0.0197715858434975], + [34017,-0.46835524984827], + [34019,0.04474034620506], + [34021,-0.407014864531242], + [34023,-0.223909098039852], + [34025,0.0281882288615085], + [34027,-0.0432079724759759], + [34029,0.291474394714053], + [34031,-0.167738550740369], + [34033,0.130547048579835], + [34035,-0.213884445512068], + [34037,0.199781849406468], + [34039,-0.360615711676863], + [34041,0.165376235964471], + [35001,-0.250480812670221], + [35003,0.481029219363279], + [35005,0.420883060307664], + [35006,-0.088302752293578], + [35007,0.112206732403944], + [35009,0.416039590536235], + [35011,0.479143179255919], + [35013,-0.187657103233076], + [35015,0.525832677681616], + [35017,-0.0733224916920031], + [35019,-0.147373314737332], + [35021,0.281124497991968], + [35023,0.152856407617087], + [35025,0.605574980574981], + [35027,0.369771112865036], + [35028,-0.276876267748479], + [35029,0.106009283653243], + [35031,-0.395973674022455], + [35033,-0.31797583081571], + [35035,0.262366339215857], + [35037,0.384858044164038], + [35039,-0.340407366752043], + [35041,0.440024860161591], + [35043,-0.085792247398411], + [35045,0.290264340522401], + [35047,-0.394995136616854], + [35049,-0.546642921629009], + [35051,0.219907008782504], + [35053,-0.0669342124122115], + [35055,-0.558683772867665], + [35057,0.341202922990444], + [35059,0.567476002258611], + [35061,0.0980491352325545], + [36001,-0.32143070638637], + [36003,0.400683743744736], + [36005,-0.679802606389767], + [36007,-0.0353485298975884], + [36009,0.30193336075689], + [36011,0.0943047026163035], + [36013,0.203072143596824], + [36015,0.137092172830541], + [36017,0.238471431196032], + [36019,-0.0530420322266185], + [36021,-0.169928263988522], + [36023,0.0198506475092164], + [36025,0.188371060807812], + [36027,-0.0982436031419613], + [36029,-0.149874865773906], + [36031,-0.0513132167203931], + [36033,0.0219333016225358], + [36035,0.319490325625295], + [36037,0.324585102277113], + [36039,0.159442661575334], + [36041,0.307669703203056], + [36043,0.310098240011108], + [36045,0.193823365008384], + [36047,-0.552420200379215], + [36049,0.398647586098443], + [36051,0.186079128477772], + [36053,0.108414872798434], + [36055,-0.215625984432173], + [36057,0.23009362030692], + [36059,-0.0964962252150107], + [36061,-0.752450143485052], + [36063,0.0983280605698502], + [36065,0.158111132490101], + [36067,-0.210336669382562], + [36069,0.000241113254340064], + [36071,0.00183875530410194], + [36073,0.369163890927567], + [36075,0.206358739513147], + [36077,0.0514310779690756], + [36079,0.0798362711114389], + [36081,-0.455893094947826], + [36083,-0.0576875911654985], + [36085,0.150818647144184], + [36087,-0.0175584610841142], + [36089,0.119334076281016], + [36091,-0.055218222167427], + [36093,-0.160150807310876], + [36095,0.29892444910808], + [36097,0.180386392272154], + [36099,0.092829495506134], + [36101,0.302315305761753], + [36103,0.000304352503168071], + [36105,0.0929905721145401], + [36107,0.211136131013306], + [36109,-0.50370121883037], + [36111,-0.21326915027208], + [36113,0.00161285758750451], + [36115,0.159092561622919], + [36117,0.200366468163078], + [36119,-0.366799100384175], + [36121,0.465183701439039], + [36123,0.190754771266903], + [37001,0.0851898540309375], + [37003,0.586182798382669], + [37005,0.505737568601364], + [37007,-0.0421242124212421], + [37009,0.466666666666667], + [37011,0.531987610808502], + [37013,0.260989643268124], + [37015,-0.217507175071751], + [37017,0.138219033054935], + [37019,0.252803947958726], + [37021,-0.214582795874836], + [37023,0.40557808641276], + [37025,0.0959713689026769], + [37027,0.516334623737135], + [37029,0.474440075226535], + [37031,0.425797108330761], + [37033,0.18654280692945], + [37035,0.375548452179832], + [37037,-0.116753173660184], + [37039,0.55795447535624], + [37041,0.158590308370044], + [37043,0.501101159888416], + [37045,0.331862155931669], + [37047,0.281071618844661], + [37049,0.189421234189345], + [37051,-0.169113016518917], + [37053,0.47072924552107], + [37055,0.167630057803468], + [37057,0.481384745801544], + [37059,0.461689587426326], + [37061,0.222783687943262], + [37063,-0.633535989884108], + [37065,-0.272109112472821], + [37067,-0.141188407699258], + [37069,0.136541598694943], + [37071,0.281370622499825], + [37073,0.138846609166244], + [37075,0.607800650054171], + [37077,0.0667051134179162], + [37079,0.11968757178957], + [37081,-0.234652970967972], + [37083,-0.213268292682927], + [37085,0.228461672778069], + [37087,0.269331257990995], + [37089,0.190666686495249], + [37091,-0.342095310136157], + [37093,-0.110598861551489], + [37095,0.150974025974026], + [37097,0.328272116394775], + [37099,0.0842602759345013], + [37101,0.247203722288113], + [37103,0.197735986854117], + [37105,0.151195302670208], + [37107,0.0349352722113849], + [37109,0.464919883099869], + [37111,0.486506713625358], + [37113,0.390440780783719], + [37115,0.238975155279503], + [37117,0.0499075785582255], + [37119,-0.356880631883413], + [37121,0.583119347995981], + [37123,0.320615481237243], + [37125,0.277792259701441], + [37127,-0.00231776567389042], + [37129,-0.0216808656898563], + [37131,-0.20680055677073], + [37133,0.310076196974866], + [37135,-0.51830010743703], + [37137,0.282464956360751], + [37139,-0.00316294255688199], + [37141,0.303839187624336], + [37143,0.326031102096011], + [37145,0.21797773569218], + [37147,-0.0959018484588445], + [37149,0.259768985008602], + [37151,0.569229920564872], + [37153,0.149436455499417], + [37155,0.187630803399821], + [37157,0.323705410948766], + [37159,0.361588708897819], + [37161,0.463057661788044], + [37163,0.227120555379357], + [37165,0.0195784159901766], + [37167,0.515943668681335], + [37169,0.584237848041529], + [37171,0.518960809729998], + [37173,0.198962685492004], + [37175,0.158964143426295], + [37177,0.158712541620422], + [37179,0.245199718063312], + [37181,-0.194025549899145], + [37183,-0.269782239202754], + [37185,-0.260835303388495], + [37187,-0.0995628946090336], + [37189,-0.0845975992145187], + [37191,0.118236108076615], + [37193,0.572059368145173], + [37195,-0.029081442915582], + [37197,0.617891957757921], + [37199,0.341663691538736], + [38001,0.583535108958838], + [38003,0.324424647364514], + [38005,0.1419624217119], + [38007,0.765089722675367], + [38009,0.516489988221437], + [38011,0.719038817005545], + [38013,0.757736516357206], + [38015,0.41546484152204], + [38017,0.0278307005908598], + [38019,0.519513431322859], + [38021,0.482553191489362], + [38023,0.546621043627032], + [38025,0.701700828608809], + [38027,0.380759902991108], + [38029,0.76], + [38031,0.570028818443804], + [38033,0.728174603174603], + [38035,0.137509626008638], + [38037,0.693786982248521], + [38039,0.493004115226337], + [38041,0.695415695415695], + [38043,0.692200557103064], + [38045,0.514732965009208], + [38047,0.758034026465028], + [38049,0.614754098360656], + [38051,0.630834512022631], + [38053,0.692598187311178], + [38055,0.546794399410464], + [38057,0.691228070175439], + [38059,0.519453924914676], + [38061,0.384313725490196], + [38063,0.321366531557614], + [38065,0.753581661891118], + [38067,0.515711645101664], + [38069,0.522574447646494], + [38071,0.371549079754601], + [38073,0.200169276343631], + [38075,0.657587548638132], + [38077,0.33790556581377], + [38079,-0.3276277079433], + [38081,0.263473053892216], + [38083,0.737373737373738], + [38085,-0.514124293785311], + [38087,0.792452830188679], + [38089,0.657882127455678], + [38091,0.24904214559387], + [38093,0.446535677352637], + [38095,0.447253705318222], + [38097,0.256288916562889], + [38099,0.427528451793], + [38101,0.465067664209484], + [38103,0.621413276231263], + [38105,0.68809318377912], + [39001,0.641443538998836], + [39003,0.401290595578123], + [39005,0.495837829505164], + [39007,0.239541798234494], + [39009,-0.152531793711477], + [39011,0.634484655585681], + [39013,0.441066731910209], + [39015,0.580057526366251], + [39017,0.243357517458765], + [39019,0.535438696770506], + [39021,0.484809933336726], + [39023,0.236990555872473], + [39025,0.372512930003129], + [39027,0.534604904632153], + [39029,0.455678924314964], + [39031,0.498480243161094], + [39033,0.516902515723271], + [39035,-0.34494364774793], + [39037,0.646081915092575], + [39039,0.37105000262895], + [39041,0.0694732091771362], + [39043,0.117696012912012], + [39045,0.238634008363712], + [39047,0.522011568123393], + [39049,-0.319008802655143], + [39051,0.404867157847734], + [39053,0.561422808947562], + [39055,0.233846487424111], + [39057,0.198848854610337], + [39059,0.490991992882562], + [39061,-0.161215790565646], + [39063,0.382299629600441], + [39065,0.529321343478595], + [39067,0.532275132275132], + [39069,0.441303899319166], + [39071,0.609898855059814], + [39073,0.430124109568921], + [39075,0.688193901485536], + [39077,0.419127830806663], + [39079,0.547058823529412], + [39081,0.390001826706448], + [39083,0.444598920107343], + [39085,0.137927821603826], + [39087,0.461126101816874], + [39089,0.285830029491514], + [39091,0.560797601980972], + [39093,0.0248281106020478], + [39095,-0.17065130291012], + [39097,0.416577074694107], + [39099,0.0192438576192744], + [39101,0.394034882016708], + [39103,0.237533286078277], + [39105,0.538860103626943], + [39107,0.656758368111745], + [39109,0.450748676228215], + [39111,0.545840407470289], + [39113,-0.0228324334148687], + [39115,0.490097546556311], + [39117,0.553324137931035], + [39119,0.399016014860184], + [39121,0.628865979381443], + [39123,0.237772888813674], + [39125,0.524034842456178], + [39127,0.501914311759344], + [39129,0.476359465175467], + [39131,0.492948561180403], + [39133,0.126501818716243], + [39135,0.582337903788055], + [39137,0.674095986127403], + [39139,0.403166869671133], + [39141,0.356966651439013], + [39143,0.281432252814323], + [39145,0.426930480608413], + [39147,0.347901546229094], + [39149,0.641178125125568], + [39151,0.188196854562275], + [39153,-0.0970520902275218], + [39155,0.107057254319898], + [39157,0.405310632800425], + [39159,0.320877781164279], + [39161,0.583203098457566], + [39163,0.553580412544022], + [39165,0.312695346009533], + [39167,0.414072900158479], + [39169,0.376251895393025], + [39171,0.470646113479829], + [39173,0.0774399614306807], + [39175,0.511746315319339], + [40001,0.602122776821572], + [40003,0.790045248868778], + [40005,0.712514092446449], + [40007,0.823911028730306], + [40009,0.731797824696097], + [40011,0.640167364016737], + [40013,0.57579625965405], + [40015,0.448518021274398], + [40017,0.444636104292443], + [40019,0.533621993844228], + [40021,0.301217391304348], + [40023,0.62560553633218], + [40025,0.865384615384615], + [40027,0.144630227288334], + [40029,0.696551724137931], + [40031,0.206568163453769], + [40033,0.686852589641434], + [40035,0.587667287819753], + [40037,0.55963978440628], + [40039,0.545689903154665], + [40041,0.592225027893593], + [40043,0.8169375534645], + [40045,0.824864864864865], + [40047,0.550550504819773], + [40049,0.652797170250396], + [40051,0.634600123445904], + [40053,0.744990892531876], + [40055,0.660631143300569], + [40057,0.616883116883117], + [40059,0.814080656185919], + [40061,0.683508488278092], + [40063,0.616604088443888], + [40065,0.590445384423986], + [40067,0.727931769722815], + [40069,0.646805455850682], + [40071,0.521156809292403], + [40073,0.732078431372549], + [40075,0.585409252669039], + [40077,0.637056442010002], + [40079,0.643582541054451], + [40081,0.643140473259472], + [40083,0.482030100175664], + [40085,0.645916334661355], + [40087,0.620490544048313], + [40089,0.672397073084722], + [40091,0.504815311471413], + [40093,0.811985898942421], + [40095,0.632782507093974], + [40097,0.561420698101653], + [40099,0.599167822468793], + [40101,0.346149146743779], + [40103,0.584162520729685], + [40105,0.670522906062008], + [40107,0.546788062721295], + [40109,0.0115979830807535], + [40111,0.378680926916221], + [40113,0.403468667693684], + [40115,0.521681061348055], + [40117,0.588838612368024], + [40119,0.240589198036007], + [40121,0.572279925080879], + [40123,0.448197292588125], + [40125,0.471197528620752], + [40127,0.714773697694279], + [40129,0.813021702838064], + [40131,0.56033929390188], + [40133,0.473103786300698], + [40135,0.599287034592025], + [40137,0.662926151544298], + [40139,0.668827560659381], + [40141,0.55331088664422], + [40143,0.160180298185461], + [40145,0.511161165497127], + [40147,0.493571241144057], + [40149,0.74466268146883], + [40151,0.670200892857143], + [40153,0.736081932773109], + [41001,0.516188904928851], + [41003,-0.41315452125037], + [41005,-0.114340898890812], + [41007,-0.116624881127345], + [41009,0.106987251896079], + [41011,0.210301618984254], + [41013,0.496155885471898], + [41015,0.166827121441342], + [41017,-0.0848299453983291], + [41019,0.386467706298633], + [41021,0.440414507772021], + [41023,0.584711667411712], + [41025,0.590753032730602], + [41027,-0.37809576224546], + [41029,0.0355987579754675], + [41031,0.24140908305992], + [41033,0.264929684076332], + [41035,0.417974002689377], + [41037,0.628343500703895], + [41039,-0.251651125746383], + [41041,-0.165019266208745], + [41043,0.242492642646933], + [41045,0.430418450248974], + [41047,-0.0116967111600386], + [41049,0.446842848497075], + [41051,-0.631333232647187], + [41053,0.0174708996977426], + [41055,0.55969517358171], + [41057,0.0175395858708891], + [41059,0.330331175532414], + [41061,0.415338097855965], + [41063,0.353748260091469], + [41065,0.0316005572256031], + [41067,-0.358777786047836], + [41069,0.532327586206897], + [41071,0.0419039224327897], + [42001,0.346599677014176], + [42003,-0.207162393928864], + [42005,0.529460857953597], + [42007,0.179121671816626], + [42009,0.681147780373832], + [42011,0.0831116660333315], + [42013,0.439611070509358], + [42015,0.457194899817851], + [42017,-0.0442385335608385], + [42019,0.32941796955313], + [42021,0.377497672419967], + [42023,0.472765072765073], + [42025,0.324496927340644], + [42027,-0.0481897758645505], + [42029,-0.173047916458961], + [42031,0.514125467386789], + [42033,0.502366498610968], + [42035,0.367731555964146], + [42037,0.312308194580477], + [42039,0.376901381288721], + [42041,0.10732340434686], + [42043,-0.0864909107166193], + [42045,-0.270471296025604], + [42047,0.457208018245109], + [42049,-0.0104842588139543], + [42051,0.336997940685249], + [42053,0.442145593869732], + [42055,0.437106957711474], + [42057,0.725629030218738], + [42059,0.438421955403088], + [42061,0.516129032258065], + [42063,0.379515261645753], + [42065,0.597367367812514], + [42067,0.621408166694673], + [42069,-0.084469713535972], + [42071,0.16069927840728], + [42073,0.298826110806363], + [42075,0.322644099457991], + [42077,-0.0768514409987565], + [42079,0.145294528398835], + [42081,0.419129601423853], + [42083,0.468432302799646], + [42085,0.263520363572802], + [42087,0.567244864382081], + [42089,-0.0644311840166212], + [42091,-0.26546276914912], + [42093,0.215600624024961], + [42095,-0.00729840595237385], + [42097,0.390953421893392], + [42099,0.509136658004372], + [42101,-0.639553039251626], + [42103,0.1921692727724], + [42105,0.61494701617401], + [42107,0.404379436190695], + [42109,0.480230773302281], + [42111,0.568594217347956], + [42113,0.479661016949153], + [42115,0.41836496758849], + [42117,0.521186645407547], + [42119,0.246129796782815], + [42121,0.41997400015294], + [42123,0.40245283948185], + [42125,0.230370066912468], + [42127,0.339442288342676], + [42129,0.287076161247758], + [42131,0.357377049180328], + [42133,0.249605062019102], + [44001,-0.298794747256701], + [44003,-0.07805606163707], + [44005,-0.304459387718988], + [44007,-0.233444086065712], + [44009,-0.198085172186588], + [45001,0.33403702500812], + [45003,0.230301440427359], + [45005,-0.529974669293555], + [45007,0.426415014672662], + [45009,-0.247860588143768], + [45011,0.0755973364669016], + [45013,0.101176860256901], + [45015,0.118631845644124], + [45017,0.0487210718635811], + [45019,-0.131240048048719], + [45021,0.441940382002717], + [45023,0.110185244535607], + [45025,0.206428876548484], + [45027,0.00668231894527716], + [45029,0.0965234744249555], + [45031,0.0502932734306751], + [45033,0.0112152404363191], + [45035,0.10680380791423], + [45037,0.24594656314227], + [45039,-0.229616057299908], + [45041,0.022926859867018], + [45043,0.128480542014377], + [45045,0.185697744723396], + [45047,0.230744869521155], + [45049,-0.153537761404269], + [45051,0.335059915393734], + [45053,-0.00750192806562433], + [45055,0.234308109737715], + [45057,0.230969156734147], + [45059,0.326393263269569], + [45061,-0.278397505097757], + [45063,0.306196259446376], + [45065,0.0480070859167405], + [45067,-0.216759240211205], + [45069,-0.109934709722957], + [45071,0.243736753437313], + [45073,0.480753889110491], + [45075,-0.334784097021859], + [45077,0.517435280803508], + [45079,-0.389018403943777], + [45081,0.353973618227407], + [45083,0.277391696134784], + [45085,-0.131854730358213], + [45087,0.247598719316969], + [45089,-0.300676316288477], + [45091,0.16734751472819], + [46003,0.536888239590942], + [46005,0.39060014461316], + [46007,0.196551724137931], + [46009,0.512178619756428], + [46011,0.133947554925585], + [46013,0.236125715620984], + [46015,0.444490301279406], + [46017,-0.31588785046729], + [46019,0.597858672376874], + [46021,0.729166666666667], + [46023,0.368731563421829], + [46025,0.517127071823204], + [46027,-0.113197328037552], + [46029,0.400234466588511], + [46031,0.0197005516154452], + [46033,0.43356903609974], + [46035,0.358915385546544], + [46037,0.27969873331051], + [46039,0.472270363951473], + [46041,-0.177511712649662], + [46043,0.743467933491687], + [46045,0.573401534526854], + [46047,0.46425845840753], + [46049,0.6592082616179], + [46051,0.425149700598802], + [46053,0.591194968553459], + [46055,0.814323607427056], + [46057,0.571381252070222], + [46059,0.586932447397564], + [46061,0.525957446808511], + [46063,0.877038895859473], + [46065,0.303126843657817], + [46067,0.588774959525094], + [46069,0.611428571428571], + [46071,0.345487693710119], + [46073,0.455095862764884], + [46075,0.693877551020408], + [46077,0.398457583547558], + [46079,0.280570534005914], + [46081,0.317231000752446], + [46083,0.241660864611684], + [46085,0.329929802169751], + [46087,0.457878040183292], + [46089,0.657671549730146], + [46091,0.2], + [46093,0.500759878419453], + [46095,0.202141900937082], + [46097,0.421860885275519], + [46099,0.0977031349254995], + [46101,0.246645367412141], + [46102,-0.809980806142035], + [46103,0.259695701377787], + [46105,0.708536585365854], + [46107,0.667642752562226], + [46109,0.136105860113422], + [46111,0.557659208261618], + [46115,0.356544165054803], + [46117,0.481527093596059], + [46119,0.593852908891328], + [46121,-0.573547094188377], + [46123,0.627259036144578], + [46125,0.485662677805374], + [46127,0.371323105317799], + [46129,0.553536151718688], + [46135,0.242049636689629], + [46137,-0.0870056497175141], + [47001,0.327644953471725], + [47003,0.526452916467273], + [47005,0.575100736417952], + [47007,0.659058988764045], + [47009,0.450789421295233], + [47011,0.562712240594829], + [47013,0.669509883563499], + [47015,0.609052860021702], + [47017,0.564943896633798], + [47019,0.624352009289595], + [47021,0.447273456295108], + [47023,0.616512764801738], + [47025,0.656098703732625], + [47027,0.576124567474049], + [47029,0.655256890098673], + [47031,0.516279464134306], + [47033,0.543517753922378], + [47035,0.578128918986707], + [47037,-0.33170401539072], + [47039,0.647769335671148], + [47041,0.584421752552838], + [47043,0.485788875321066], + [47045,0.576845772477556], + [47047,0.38134436765418], + [47049,0.71946851530907], + [47051,0.483953105936025], + [47053,0.476078075351793], + [47055,0.495795749885339], + [47057,0.707535885167464], + [47059,0.621312550076481], + [47061,0.658721934369603], + [47063,0.547529924725433], + [47065,0.0989441030841736], + [47067,0.735186539868325], + [47069,0.158953722334004], + [47071,0.686783130404094], + [47073,0.666530545573342], + [47075,-0.0909585316111489], + [47077,0.648078055345277], + [47079,0.520119023466559], + [47081,0.561141444318533], + [47083,0.514628030091948], + [47085,0.504239891852034], + [47087,0.567865981343994], + [47089,0.600600729457198], + [47091,0.676950998185118], + [47093,0.153351052499977], + [47095,0.478691774033697], + [47097,0.279801511221383], + [47099,0.65513519348049], + [47101,0.613415073927155], + [47103,0.615921052631579], + [47105,0.515159973483131], + [47107,0.613369386940911], + [47109,0.64787966654585], + [47111,0.722003615867277], + [47113,0.131174261214655], + [47115,0.514517114914425], + [47117,0.507782632441289], + [47119,0.371518242448019], + [47121,0.631780821917808], + [47123,0.633620479875408], + [47125,0.130124968188698], + [47127,0.668881826061832], + [47129,0.711745090774361], + [47131,0.612975558711413], + [47133,0.591397849462366], + [47135,0.637168141592921], + [47137,0.638678596008259], + [47139,0.639787542250121], + [47141,0.442387081107334], + [47143,0.646918548326999], + [47145,0.521782139041665], + [47147,0.476826772601421], + [47149,0.157213767832923], + [47151,0.780645161290323], + [47153,0.637075352998742], + [47155,0.589638622247318], + [47157,-0.309347733560332], + [47159,0.596777802640412], + [47161,0.601423487544484], + [47163,0.527648635344309], + [47165,0.392542848991595], + [47167,0.491805106477868], + [47169,0.487335359675785], + [47171,0.606768931093255], + [47173,0.68976651763537], + [47175,0.623007623007623], + [47177,0.502472422974515], + [47179,0.369080261331709], + [47181,0.752078609221466], + [47183,0.54979129397734], + [47185,0.63520299599966], + [47187,0.265739588670131], + [47189,0.386519641626464], + [48001,0.585103592971414], + [48003,0.706542378732954], + [48005,0.465618516029107], + [48007,0.520197449609214], + [48009,0.812052254530131], + [48011,0.864864864864865], + [48013,0.344013396595032], + [48015,0.590081955827198], + [48017,0.55615843733044], + [48019,0.601178156344531], + [48021,0.140094470686302], + [48023,0.78175313059034], + [48025,0.29244673983215], + [48027,0.0870968000192143], + [48029,-0.184704188516253], + [48031,0.480282839271145], + [48033,0.922518159806296], + [48035,0.654263565891473], + [48037,0.43232179172279], + [48039,0.184755766043718], + [48041,0.146973298423002], + [48043,0.043017588472134], + [48045,0.782426778242678], + [48047,-0.191247974068071], + [48049,0.733375514077824], + [48051,0.580822881256594], + [48053,0.537900516266492], + [48055,0.0924301163027954], + [48057,0.448452946462961], + [48059,0.782389564186184], + [48061,-0.132905964012556], + [48063,0.444621513944223], + [48065,0.806892067620286], + [48067,0.595747758171825], + [48069,0.549323017408124], + [48071,0.625573770491803], + [48073,0.563979079281239], + [48075,0.724811362627608], + [48077,0.783916945275383], + [48079,0.640973630831643], + [48081,0.798185941043084], + [48083,0.779569892473118], + [48085,0.0442264357089204], + [48087,0.742310889443059], + [48089,0.510715729882734], + [48091,0.432976269328278], + [48093,0.717081260364842], + [48095,0.68605577689243], + [48097,0.658619589492715], + [48099,0.342259705255836], + [48101,0.653905053598775], + [48103,0.676075268817204], + [48105,0.560102301790281], + [48107,0.451898075923037], + [48109,-0.0269636576787807], + [48111,0.751576292559899], + [48113,-0.321867560608269], + [48115,0.570098430433626], + [48117,0.445370776656428], + [48119,0.685769980506823], + [48121,0.082166960539916], + [48123,0.629326386304429], + [48125,0.735503560528993], + [48127,-0.241228070175439], + [48129,0.757946210268949], + [48131,-0.0263053009166999], + [48133,0.760827250608273], + [48135,0.48406862745098], + [48137,0.683317624882187], + [48139,0.345886428893477], + [48141,-0.357372826786864], + [48143,0.648674698795181], + [48145,0.374917709019092], + [48147,0.641845406717928], + [48149,0.585255610972569], + [48151,0.608888888888889], + [48153,0.566765578635015], + [48155,0.636029411764706], + [48157,-0.107096555042885], + [48159,0.676132930513595], + [48161,0.62091351727336], + [48163,0.0764537654909439], + [48165,0.805766312594841], + [48167,0.229579779120541], + [48169,0.718978102189781], + [48171,0.595156150414277], + [48173,0.88], + [48175,0.557294295810197], + [48177,0.485676567656766], + [48179,0.783804928934672], + [48181,0.505496940462595], + [48183,0.374230793630654], + [48185,0.538035059111292], + [48187,0.245527646088164], + [48189,0.517978003384095], + [48191,0.711092003439381], + [48193,0.698848954662908], + [48195,0.835235732009926], + [48197,0.693189051559516], + [48199,0.745792477681838], + [48201,-0.134395792498624], + [48203,0.461564649009328], + [48205,0.810954920019389], + [48207,0.678066575467396], + [48209,-0.110480952203276], + [48211,0.756501182033097], + [48213,0.607461566261711], + [48215,-0.172233753646114], + [48217,0.613147572027594], + [48219,0.630331753554502], + [48221,0.648581383773021], + [48223,0.613574373612433], + [48225,0.506294004693834], + [48227,0.591227896868517], + [48229,0.354782608695652], + [48231,0.532112742651501], + [48233,0.77677538746241], + [48235,0.726962457337884], + [48237,0.823419578554281], + [48239,0.670178799489144], + [48241,0.618740320082602], + [48243,0.22023346303502], + [48245,0.0159862456350182], + [48247,-0.179310344827586], + [48249,0.0982905982905984], + [48251,0.536825521859], + [48253,0.699954948190419], + [48255,0.52556708958093], + [48257,0.343018793838905], + [48259,0.538750335210512], + [48261,0.322916666666667], + [48263,0.794759825327511], + [48265,0.523847753895559], + [48267,0.749889916336416], + [48269,0.89937106918239], + [48271,0.438993710691824], + [48273,0.0175633203919394], + [48275,0.633217993079585], + [48277,0.579790743708172], + [48279,0.614767255216693], + [48281,0.580840664711632], + [48283,0.118558860494344], + [48285,0.737003058103976], + [48287,0.562773266708307], + [48289,0.750552646887726], + [48291,0.602227799360539], + [48293,0.508331481892913], + [48295,0.803892215568862], + [48297,0.673575129533679], + [48299,0.606983418367347], + [48301,0.875], + [48303,0.326755160753041], + [48305,0.624725997369575], + [48307,0.711255156157926], + [48309,0.237501428853488], + [48311,0.793372319688109], + [48313,0.586075708579038], + [48315,0.443127469328343], + [48317,0.731468531468531], + [48319,0.626633986928105], + [48321,0.450139932243335], + [48323,-0.0953789522119241], + [48325,0.395672540709346], + [48327,0.613725490196079], + [48329,0.574517281245147], + [48331,0.523664122137405], + [48333,0.782154340836013], + [48335,0.690689520841449], + [48337,0.774093904448105], + [48339,0.444448179146173], + [48341,0.608190370780299], + [48343,0.397581663959574], + [48345,0.858461538461538], + [48347,0.317613162483888], + [48349,0.460240198931273], + [48351,0.612551610239472], + [48353,0.560929529567353], + [48355,0.0294084848098644], + [48357,0.806037251123956], + [48359,0.837675350701403], + [48361,0.642292434515938], + [48363,0.64748725418791], + [48365,0.638583853114293], + [48367,0.653166715515174], + [48369,0.627906976744186], + [48371,0.398738307591908], + [48373,0.550333889816361], + [48375,0.393970862221679], + [48377,-0.33974358974359], + [48379,0.719192929798233], + [48381,0.597408723544766], + [48383,0.691202872531418], + [48385,0.67396841569027], + [48387,0.567586326566025], + [48389,0.235406960811181], + [48391,0.33212778782399], + [48393,0.937728937728938], + [48395,0.407980049875312], + [48397,0.382287628439158], + [48399,0.746730901582932], + [48401,0.562538392477437], + [48403,0.754630478635614], + [48405,0.508402307499373], + [48407,0.626020163226116], + [48409,0.295169385194479], + [48411,0.778805394990366], + [48413,0.633362293657689], + [48415,0.717979658679538], + [48417,0.838909541511772], + [48419,0.588170865279299], + [48421,0.813715455475947], + [48423,0.399868281067937], + [48425,0.684793761543197], + [48427,-0.0504317789291883], + [48429,0.790058170280275], + [48431,0.839370078740158], + [48433,0.682626538987688], + [48435,0.582901554404145], + [48437,0.588463194145501], + [48439,-0.00222328286099738], + [48441,0.461051076013669], + [48443,0.474613686534216], + [48445,0.575791538246007], + [48447,0.815315315315315], + [48449,0.45213888356033], + [48451,0.450574609445143], + [48453,-0.45968583231329], + [48455,0.616632860040568], + [48457,0.707616963634469], + [48459,0.692068928609654], + [48461,0.747774480712166], + [48463,0.205035620181516], + [48465,0.100498173364331], + [48467,0.727293880400217], + [48469,0.384670104926196], + [48471,0.322068876563911], + [48473,0.270322034653245], + [48475,0.618476903870162], + [48477,0.505110336817654], + [48479,-0.235122124102897], + [48481,0.435138387484958], + [48483,0.855608079071766], + [48485,0.418041123148353], + [48487,0.573214285714286], + [48489,-0.12020183816904], + [48491,-0.0143409376278552], + [48493,0.48817152299198], + [48495,0.6608242539081], + [48497,0.689236056866115], + [48499,0.688890859118716], + [48501,0.676175790285274], + [48503,0.746070726915521], + [48505,0.0536408395957502], + [48507,-0.315571887919155], + [49001,0.76605504587156], + [49003,0.656200760923869], + [49005,0.391024468746571], + [49007,0.473417721518987], + [49009,0.634266886326194], + [49011,0.289230312109244], + [49013,0.798228817616084], + [49015,0.760619376438586], + [49017,0.615269461077844], + [49019,-0.110407597942224], + [49021,0.590301913655207], + [49023,0.774947662247034], + [49025,0.469247733398677], + [49027,0.792966157929662], + [49029,0.653422690282432], + [49031,0.79976717112922], + [49033,0.730740463724757], + [49035,-0.114851561298262], + [49037,0.0634777376654634], + [49039,0.707173753366523], + [49041,0.786108918705604], + [49043,-0.195795418889238], + [49045,0.402944220048737], + [49047,0.777137496649692], + [49049,0.434372965835333], + [49051,0.271346131197739], + [49053,0.532474038987065], + [49055,0.542032622333752], + [49057,0.236806571396422], + [50001,-0.408062467660756], + [50003,-0.282103032443615], + [50005,-0.158077367947565], + [50007,-0.562045468753256], + [50009,0.115796098174953], + [50011,-0.093911995177818], + [50013,-0.232237539766702], + [50015,-0.421925987641464], + [50017,-0.249651324965133], + [50019,-0.04648949410645], + [50021,-0.108139322837517], + [50023,-0.476655236085466], + [50025,-0.489030824770897], + [50027,-0.40198518607371], + [51001,0.0951641791044777], + [51003,-0.342373952900269], + [51005,0.446309553196742], + [51007,0.38187411870273], + [51009,0.321246933524801], + [51011,0.469736842105263], + [51013,-0.650357976531779], + [51015,0.478269240025028], + [51017,0.479032258064516], + [51019,0.490288010716678], + [51021,0.690247452692868], + [51023,0.451896725804125], + [51025,-0.151093690732077], + [51027,0.679329157405537], + [51029,0.133873986275733], + [51031,0.449428620160328], + [51033,0.0424560745326079], + [51035,0.633313979743242], + [51036,-0.196807297605473], + [51037,0.244292237442922], + [51041,-0.0679563170063068], + [51043,0.139596136962248], + [51045,0.624079410822927], + [51047,0.202598670622254], + [51049,0.150972169271826], + [51051,0.585436491518411], + [51053,0.165627723037737], + [51057,0.0060526746278422], + [51059,-0.427542390166297], + [51061,0.176724238944482], + [51063,0.349008559973995], + [51065,0.0475945789710321], + [51067,0.427449105068999], + [51069,0.279514288705119], + [51071,0.522586359610275], + [51073,0.362241860891066], + [51075,0.197045222509159], + [51077,0.619295634920635], + [51079,0.245081149696255], + [51081,-0.157013873596124], + [51083,0.152178721521787], + [51085,0.273048473967684], + [51087,-0.295158100571073], + [51089,0.29390375986384], + [51091,0.447316103379722], + [51093,0.186445079200208], + [51095,-0.0492752432965138], + [51097,0.212871287128713], + [51099,0.219638989169675], + [51101,0.383742911153119], + [51103,0.0465675866949753], + [51105,0.697787700426223], + [51107,-0.255302549215277], + [51109,0.233038074479432], + [51111,0.187909319899244], + [51113,0.325331332833208], + [51115,0.362556758644778], + [51117,0.153276495114817], + [51119,0.254972334380141], + [51121,-0.0590462289324241], + [51125,0.0530692635955794], + [51127,0.351529609879315], + [51131,-0.107520386590154], + [51133,0.159364094610314], + [51135,0.150900257216348], + [51137,0.21698251799618], + [51139,0.513115284974093], + [51141,0.585973090369743], + [51143,0.402645721372468], + [51145,0.450838709677419], + [51147,-0.0572977569894759], + [51149,0.174357782169011], + [51153,-0.275078653189638], + [51155,0.422355148956134], + [51157,0.145884270578647], + [51159,0.254679802955665], + [51161,0.222351031764433], + [51163,0.328733366190241], + [51165,0.411811225083153], + [51167,0.641865378810746], + [51169,0.685355648535565], + [51171,0.413193699300399], + [51173,0.569393744184382], + [51175,0.181565109805135], + [51177,0.0692368214004722], + [51179,-0.0334998266586202], + [51181,-0.0841248303934871], + [51183,-0.120491478398732], + [51185,0.678471107544141], + [51187,0.361164860681115], + [51191,0.53230138535482], + [51193,0.0832060291272023], + [51195,0.622481184753581], + [51197,0.577440172089271], + [51199,0.0674506908553949], + [51510,-0.639928698752228], + [51520,0.396083550913838], + [51530,0.386160714285714], + [51540,-0.739890710382514], + [51550,-0.0658092279036907], + [51570,0.338010914355719], + [51580,0.242138364779874], + [51590,-0.223743337861846], + [51595,-0.362637362637363], + [51600,-0.392003641605341], + [51610,-0.654932839277443], + [51620,-0.258723828514457], + [51630,-0.356858371833679], + [51640,0.405736137667304], + [51650,-0.42985305491106], + [51660,-0.326912658761211], + [51670,-0.149206349206349], + [51678,-0.328142380422692], + [51680,-0.027059325650875], + [51683,-0.246809535275704], + [51685,-0.337129459052085], + [51690,-0.269937615916372], + [51700,-0.336227288741255], + [51710,-0.466495226608104], + [51720,0.410044500953592], + [51730,-0.773277034280398], + [51735,0.463637550594072], + [51740,-0.416287211404251], + [51750,-0.0930989583333334], + [51760,-0.694736067954917], + [51770,-0.263473336479471], + [51775,0.197568389057751], + [51790,-0.101451562006942], + [51800,-0.176258255055581], + [51810,-0.0553128371089536], + [51820,0.0521589606419564], + [51830,-0.41862875758922], + [51840,-0.117403431662581], + [53001,0.365845131969935], + [53003,0.265277897830409], + [53005,0.218620988987696], + [53007,0.0806984202399335], + [53009,-0.0347194608961346], + [53011,-0.0525865722526225], + [53013,0.448389760528489], + [53015,0.179671704191083], + [53017,0.247712607146297], + [53019,0.301855766972046], + [53021,0.149749832690653], + [53023,0.489895470383275], + [53025,0.353852882486401], + [53027,0.0677661088877548], + [53029,-0.124463519313305], + [53031,-0.425647400041434], + [53033,-0.542418593818664], + [53035,-0.189106954689147], + [53037,0.105147692548774], + [53039,0.0968475295544105], + [53041,0.338662294185967], + [53043,0.500801398805187], + [53045,0.040051140943328], + [53047,0.14175506268081], + [53049,0.0115661598894303], + [53051,0.37675760124985], + [53053,-0.115768855816616], + [53055,-0.521671099984353], + [53057,-0.0773086996930182], + [53059,0.0979228486646884], + [53061,-0.213396477894677], + [53063,0.0450550571321056], + [53065,0.432922197706804], + [53067,-0.193538623096643], + [53069,0.198210598761184], + [53071,0.0900631439016284], + [53073,-0.247269826834341], + [53075,-0.104538047503827], + [53077,0.0786907632235903], + [54001,0.556671230792637], + [54003,0.318894283166551], + [54005,0.539121598735463], + [54007,0.477496862112247], + [54009,0.438238658025162], + [54011,0.183222116301239], + [54013,0.612551159618008], + [54015,0.613855421686747], + [54017,0.715127701375246], + [54019,0.391576037973923], + [54021,0.541171964764458], + [54023,0.778386272362176], + [54025,0.402439024390244], + [54027,0.611111111111111], + [54029,0.442483083259782], + [54031,0.557371794871795], + [54033,0.383570807411867], + [54035,0.517744360902256], + [54037,0.10699558173785], + [54039,0.149290332169131], + [54041,0.579781420765027], + [54043,0.556907937330053], + [54045,0.637366907593068], + [54047,0.588643727819781], + [54049,0.293599460338875], + [54051,0.502519798416127], + [54053,0.541435962603249], + [54055,0.551808978340661], + [54057,0.581102362204724], + [54059,0.718941756362539], + [54061,0.0126810271388584], + [54063,0.580539529081553], + [54065,0.531810193321617], + [54067,0.576201808662542], + [54069,0.262093272717985], + [54071,0.544697390338701], + [54073,0.593722755013078], + [54075,0.468797564687976], + [54077,0.559255904688915], + [54079,0.435511607910576], + [54081,0.51113152656561], + [54083,0.441296219360199], + [54085,0.723258559622196], + [54087,0.486591390261115], + [54089,0.475552336110105], + [54091,0.506118520555479], + [54093,0.503572373643821], + [54095,0.672802696396163], + [54097,0.550014959609056], + [54099,0.509626341990044], + [54101,0.637874740279015], + [54103,0.52878138395591], + [54105,0.641538461538462], + [54107,0.426877885018884], + [54109,0.728084606345476], + [55001,0.259430331023865], + [55003,-0.111085396898866], + [55005,0.264391727007241], + [55007,-0.142140468227425], + [55009,0.0732766547368122], + [55011,0.256563556017676], + [55013,0.288405941581099], + [55015,0.199524312896406], + [55017,0.207762039660057], + [55019,0.377116893845518], + [55021,0.0155082940876503], + [55023,0.0778024028928031], + [55025,-0.535082673274629], + [55027,0.314371947768858], + [55029,-0.0147504546373005], + [55031,-0.0950664844041258], + [55033,0.142002600780234], + [55035,-0.110233317533049], + [55037,0.463967055593686], + [55039,0.26917752298463], + [55041,0.312425089892129], + [55043,0.125059665871122], + [55045,-0.0324452901998097], + [55047,0.363774733637747], + [55049,-0.13969571230982], + [55051,0.227902291614203], + [55053,0.152781924952722], + [55055,0.15503481066395], + [55057,0.296628380881808], + [55059,0.031882062754546], + [55061,0.331933126102663], + [55063,-0.137712310235984], + [55065,0.13863958431743], + [55067,0.328620627152438], + [55069,0.230740877257648], + [55071,0.236170406031429], + [55073,0.183158341287517], + [55075,0.350154389060432], + [55077,0.276847510605046], + [55078,-0.648323845667299], + [55079,-0.405009000790475], + [55081,0.240543948126801], + [55083,0.414585240399285], + [55085,0.149983176312248], + [55087,0.101063629163052], + [55089,0.122375018616889], + [55091,0.268843604222931], + [55093,0.133519083631861], + [55095,0.278703668065125], + [55097,-0.0284189593978906], + [55099,0.28032281034892], + [55101,0.0412851927598004], + [55103,0.0988044213850665], + [55105,-0.113609241491241], + [55107,0.352456907640854], + [55109,0.162649623571467], + [55111,-0.0172747956518076], + [55113,0.135581819928894], + [55115,0.3605631276901], + [55117,0.16238602997991], + [55119,0.479613526570048], + [55121,0.168540812276756], + [55123,0.048548644338118], + [55125,0.221445528884199], + [55127,0.195303672316384], + [55129,0.241839035388687], + [55131,0.386559554363714], + [55133,0.211504240101686], + [55135,0.32277089513174], + [55137,0.345270068636228], + [55139,0.0406723567322767], + [55141,0.195289258230276], + [56001,-0.0290306151321375], + [56003,0.718269574544155], + [56005,0.795346377578001], + [56007,0.556901102313306], + [56009,0.745942755975214], + [56011,0.812360387192852], + [56013,0.370192856327742], + [56015,0.60434139121855], + [56017,0.611446997178557], + [56019,0.624529091670155], + [56021,0.294005752992484], + [56023,0.702718676122931], + [56025,0.495281204698086], + [56027,0.756480754124116], + [56029,0.579609196819331], + [56031,0.628237259816207], + [56033,0.490998363338789], + [56035,0.635461872287663], + [56037,0.523673062546723], + [56039,-0.388117555853126], + [56041,0.649829426653461], + [56043,0.665811088295688], + [56045,0.792327660801846] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes-dem.json b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes-dem.json new file mode 100644 index 0000000..440ff44 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes-dem.json @@ -0,0 +1,3174 @@ +{ + "metadata" : { + "name" : "2020 Presidential Election | Democrat Votes", + "description" : "Votes cast for Democrat party (dem) candidates in the 2020 presidential election.", + "units" : "votes", + "year" : "2020", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Fox News, Politico, and the New York Times" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2020.votes.dem"], + [1001,7503], + [1003,24578], + [1005,4816], + [1007,1986], + [1009,2640], + [1011,3446], + [1013,3965], + [1015,15216], + [1017,6365], + [1019,1624], + [1021,3073], + [1023,3127], + [1025,5755], + [1027,1267], + [1029,675], + [1031,5076], + [1033,8343], + [1035,2966], + [1037,1796], + [1039,2721], + [1041,1700], + [1043,4478], + [1045,5170], + [1047,12230], + [1049,4281], + [1051,10367], + [1053,4918], + [1055,11567], + [1057,1395], + [1059,2086], + [1061,1595], + [1063,3884], + [1065,4687], + [1067,2606], + [1069,12917], + [1071,3717], + [1073,181688], + [1075,978], + [1077,11915], + [1079,3562], + [1081,27860], + [1083,13672], + [1085,4972], + [1087,7108], + [1089,87286], + [1091,5488], + [1093,1463], + [1095,5943], + [1097,79474], + [1099,4455], + [1101,64529], + [1103,13234], + [1105,3860], + [1107,4022], + [1109,5636], + [1111,2203], + [1113,11228], + [1115,7744], + [1117,33268], + [1119,4648], + [1121,13138], + [1123,5859], + [1125,37765], + [1127,4834], + [1129,2258], + [1131,4048], + [1133,974], + [2901,3477], + [2902,2104], + [2903,1903], + [2904,5345], + [2905,4204], + [2906,3272], + [2907,2215], + [2908,1953], + [2909,2769], + [2910,2727], + [2911,3130], + [2912,2957], + [2913,2666], + [2914,4261], + [2915,2622], + [2916,4274], + [2917,4136], + [2918,4681], + [2919,3118], + [2920,4881], + [2921,5414], + [2922,4553], + [2923,3810], + [2924,4736], + [2925,4600], + [2926,4558], + [2927,4844], + [2928,6264], + [2929,2985], + [2930,2638], + [2931,5037], + [2932,3506], + [2933,7535], + [2934,5763], + [2935,5011], + [2936,3796], + [2937,2560], + [2938,3202], + [2939,3580], + [2940,2318], + [4001,23293], + [4003,23732], + [4005,44698], + [4007,8943], + [4009,4034], + [4011,1182], + [4012,2236], + [4013,1040774], + [4015,24831], + [4017,23383], + [4019,304981], + [4021,75106], + [4023,13138], + [4025,49602], + [4027,32210], + [5001,1818], + [5003,2125], + [5005,4635], + [5007,42249], + [5009,3064], + [5011,1214], + [5013,479], + [5015,4023], + [5017,2260], + [5019,3438], + [5021,962], + [5023,1988], + [5025,651], + [5027,2814], + [5029,2615], + [5031,11921], + [5033,4959], + [5035,8514], + [5037,1772], + [5039,963], + [5041,2016], + [5043,2426], + [5045,18347], + [5047,1300], + [5049,1035], + [5051,14045], + [5053,1268], + [5055,3058], + [5057,2138], + [5059,3082], + [5061,1340], + [5063,2806], + [5065,1021], + [5067,1365], + [5069,14981], + [5071,2283], + [5073,839], + [5075,1080], + [5077,1423], + [5079,1032], + [5081,1226], + [5083,1544], + [5085,6686], + [5087,1563], + [5089,1531], + [5091,4245], + [5093,4558], + [5095,1147], + [5097,731], + [5099,1076], + [5101,709], + [5103,3995], + [5105,1012], + [5107,3623], + [5109,644], + [5111,1424], + [5113,1246], + [5115,5772], + [5117,654], + [5119,101947], + [5121,1215], + [5123,3604], + [5125,16060], + [5127,483], + [5129,588], + [5131,14487], + [5133,1116], + [5135,1398], + [5137,1180], + [5139,5584], + [5141,1593], + [5143,43824], + [5145,5978], + [5147,856], + [5149,1284], + [6001,617659], + [6003,476], + [6005,8153], + [6007,50426], + [6009,10046], + [6011,3234], + [6013,416386], + [6015,4677], + [6017,51621], + [6019,193025], + [6021,3995], + [6023,44768], + [6025,34678], + [6027,4634], + [6029,133366], + [6031,18699], + [6033,14941], + [6035,2799], + [6037,3028885], + [6039,23168], + [6041,128288], + [6043,4088], + [6045,28782], + [6047,48991], + [6049,1150], + [6051,4013], + [6053,113953], + [6055,49817], + [6057,36359], + [6059,814009], + [6061,106869], + [6063,4561], + [6065,527945], + [6067,440808], + [6069,17628], + [6071,455859], + [6073,964650], + [6075,378156], + [6077,161137], + [6079,88310], + [6081,291410], + [6083,129963], + [6085,617967], + [6087,114246], + [6089,30000], + [6091,730], + [6093,9593], + [6095,131639], + [6097,199938], + [6099,105841], + [6101,17367], + [6103,8911], + [6105,2851], + [6107,66105], + [6109,11978], + [6111,251388], + [6113,67598], + [6115,11230], + [8001,134202], + [8003,3759], + [8005,213607], + [8007,3738], + [8009,317], + [8011,732], + [8013,159089], + [8014,29077], + [8015,7160], + [8017,131], + [8019,3604], + [8021,1959], + [8023,1311], + [8025,437], + [8027,1112], + [8029,5887], + [8031,313293], + [8033,341], + [8035,104653], + [8037,18588], + [8039,4490], + [8041,161941], + [8043,7369], + [8045,15427], + [8047,2223], + [8049,4710], + [8051,7132], + [8053,255], + [8055,2076], + [8057,175], + [8059,218396], + [8061,98], + [8063,662], + [8065,2303], + [8067,20548], + [8069,126120], + [8071,3497], + [8073,470], + [8075,2218], + [8077,31536], + [8079,317], + [8081,1203], + [8083,5836], + [8085,7687], + [8087,3876], + [8089,3605], + [8091,2365], + [8093,4903], + [8095,486], + [8097,8989], + [8099,1458], + [8101,43772], + [8103,561], + [8105,2495], + [8107,10582], + [8109,1884], + [8111,342], + [8113,3924], + [8115,301], + [8117,12631], + [8119,5278], + [8121,369], + [8123,66060], + [8125,785], + [9001,297505], + [9003,283368], + [9005,50164], + [9007,56848], + [9009,242629], + [9011,79459], + [9013,44006], + [9015,26701], + [10001,44552], + [10003,195034], + [10005,56682], + [11001,317323], + [12001,89704], + [12003,2037], + [12005,25614], + [12007,3160], + [12009,148549], + [12011,618752], + [12013,1209], + [12015,42273], + [12017,27092], + [12019,38317], + [12021,77621], + [12023,8914], + [12027,4259], + [12029,1365], + [12031,252556], + [12033,70929], + [12035,28161], + [12037,2120], + [12039,16153], + [12041,1700], + [12043,1385], + [12045,1985], + [12047,1963], + [12049,2298], + [12051,4929], + [12053,37519], + [12055,16938], + [12057,376367], + [12059,924], + [12061,37844], + [12063,6766], + [12065,3897], + [12067,510], + [12069,83505], + [12071,157695], + [12073,103517], + [12075,6205], + [12077,694], + [12079,3747], + [12081,90166], + [12083,74858], + [12085,36893], + [12086,617864], + [12087,21881], + [12089,15564], + [12091,34248], + [12093,4390], + [12095,395014], + [12097,97297], + [12099,433572], + [12101,119073], + [12103,277450], + [12105,145049], + [12107,10527], + [12109,63850], + [12111,84137], + [12113,27612], + [12115,120110], + [12117,132528], + [12119,29341], + [12121,4485], + [12123,2299], + [12125,1053], + [12127,130575], + [12129,5351], + [12131,10338], + [12133,2347], + [13001,1784], + [13003,825], + [13005,625], + [13007,652], + [13009,9140], + [13011,932], + [13013,10453], + [13015,12091], + [13017,2393], + [13019,1269], + [13021,43408], + [13023,1312], + [13025,700], + [13027,2791], + [13029,6738], + [13031,11248], + [13033,5208], + [13035,3274], + [13037,1263], + [13039,7967], + [13043,1269], + [13045,16236], + [13047,6932], + [13049,1105], + [13051,78247], + [13053,667], + [13055,1854], + [13057,42779], + [13059,36055], + [13061,791], + [13063,95466], + [13065,744], + [13067,221847], + [13069,4511], + [13071,4190], + [13073,29232], + [13075,2059], + [13077,24210], + [13079,1615], + [13081,2982], + [13083,1261], + [13085,2486], + [13087,4782], + [13089,308162], + [13091,2172], + [13093,1911], + [13095,24568], + [13097,42814], + [13099,2450], + [13101,167], + [13103,7718], + [13105,2879], + [13107,2886], + [13109,1324], + [13111,2570], + [13113,33062], + [13115,11917], + [13117,42208], + [13119,1593], + [13121,380212], + [13123,2932], + [13125,155], + [13127,15882], + [13129,4384], + [13131,3619], + [13133,4087], + [13135,241994], + [13137,3562], + [13139,25033], + [13141,2976], + [13143,1791], + [13145,5457], + [13147,3157], + [13149,824], + [13151,73443], + [13153,32239], + [13155,1008], + [13157,7642], + [13159,1761], + [13161,1028], + [13163,4058], + [13165,1266], + [13167,1222], + [13169,4882], + [13171,2620], + [13173,1019], + [13175,8074], + [13177,4558], + [13179,13104], + [13181,1432], + [13183,2035], + [13185,20116], + [13187,3126], + [13189,4168], + [13191,2612], + [13193,2858], + [13195,3411], + [13197,1312], + [13199,4287], + [13201,748], + [13205,3993], + [13207,4385], + [13209,980], + [13211,3353], + [13213,2301], + [13215,49446], + [13217,29789], + [13219,8162], + [13221,2439], + [13223,29695], + [13225,5922], + [13227,2824], + [13229,1100], + [13231,1505], + [13233,3657], + [13235,1230], + [13237,3448], + [13239,497], + [13241,1984], + [13243,1671], + [13245,59119], + [13247,31237], + [13249,462], + [13251,2661], + [13253,1256], + [13255,11828], + [13257,2386], + [13259,1182], + [13261,6314], + [13263,2114], + [13265,561], + [13267,2062], + [13269,1388], + [13271,1488], + [13273,2376], + [13275,8708], + [13277,5318], + [13279,2938], + [13281,1550], + [13283,952], + [13285,11577], + [13287,1409], + [13289,2044], + [13291,2800], + [13293,4203], + [13295,5770], + [13297,12683], + [13299,4169], + [13301,1468], + [13303,4743], + [13305,2688], + [13307,640], + [13309,689], + [13311,2411], + [13313,10680], + [13315,861], + [13317,2160], + [13319,2074], + [13321,2395], + [15001,58731], + [15003,238869], + [15007,21225], + [15009,47305], + [16001,120539], + [16003,591], + [16005,14682], + [16007,350], + [16009,977], + [16011,4124], + [16013,8919], + [16015,1204], + [16017,8310], + [16019,14254], + [16021,1220], + [16023,188], + [16025,149], + [16027,25881], + [16029,431], + [16031,1464], + [16033,41], + [16035,877], + [16037,603], + [16039,2601], + [16041,657], + [16043,998], + [16045,1803], + [16047,1256], + [16049,1561], + [16051,1661], + [16053,1893], + [16055,24312], + [16057,10236], + [16059,1032], + [16061,349], + [16063,414], + [16065,2666], + [16067,1550], + [16069,6686], + [16071,249], + [16073,816], + [16075,2161], + [16077,865], + [16079,1693], + [16081,3318], + [16083,9391], + [16085,2976], + [16087,1073], + [17001,8633], + [17003,1114], + [17005,2288], + [17007,10542], + [17009,486], + [17011,6669], + [17013,677], + [17015,2748], + [17017,1615], + [17019,57067], + [17021,4335], + [17023,1993], + [17025,1129], + [17027,4493], + [17029,8067], + [17031,1725973], + [17033,2202], + [17035,1142], + [17037,24643], + [17039,2191], + [17041,2335], + [17043,281222], + [17045,1887], + [17047,488], + [17049,3716], + [17051,1826], + [17053,1754], + [17055,4760], + [17057,6503], + [17059,622], + [17061,1349], + [17063,9626], + [17065,824], + [17067,2315], + [17069,449], + [17071,1187], + [17073,9797], + [17075,2908], + [17077,11181], + [17079,1007], + [17081,4608], + [17083,2961], + [17085,5109], + [17087,1281], + [17089,130166], + [17091,20271], + [17093,33168], + [17095,10703], + [17097,204032], + [17099,22442], + [17101,1419], + [17103,6407], + [17105,4615], + [17107,3840], + [17109,4992], + [17111,78154], + [17113,43933], + [17115,19847], + [17117,7365], + [17119,57836], + [17121,4524], + [17123,2005], + [17125,1985], + [17127,1725], + [17129,2022], + [17131,3280], + [17133,6569], + [17135,3905], + [17137,5076], + [17139,1662], + [17141,9428], + [17143,43578], + [17145,2612], + [17147,3329], + [17149,1484], + [17151,433], + [17153,891], + [17155,1338], + [17157,3592], + [17159,1830], + [17161,36691], + [17163,68325], + [17165,2789], + [17167,48917], + [17169,1068], + [17171,572], + [17173,2504], + [17175,815], + [17177,9055], + [17179,24819], + [17181,2579], + [17183,10323], + [17185,1253], + [17187,3090], + [17189,1641], + [17191,1187], + [17193,1517], + [17195,12253], + [17197,183915], + [17199,10206], + [17201,64056], + [17203,6160], + [18001,3236], + [18003,73189], + [18005,12934], + [18007,1009], + [18009,1376], + [18011,15244], + [18013,3036], + [18015,2224], + [18017,4304], + [18019,23093], + [18021,2552], + [18023,3361], + [18025,1355], + [18027,2169], + [18029,5446], + [18031,2439], + [18033,4966], + [18035,20474], + [18037,6292], + [18039,26108], + [18041,2237], + [18043,17511], + [18045,1629], + [18047,2137], + [18049,2280], + [18051,4023], + [18053,8015], + [18055,3389], + [18057,88390], + [18059,12895], + [18061,5343], + [18063,32604], + [18065,5544], + [18067,13303], + [18069,4255], + [18071,4302], + [18073,3798], + [18075,1926], + [18077,4731], + [18079,2523], + [18081,24736], + [18083,4067], + [18085,8364], + [18087,2355], + [18089,124870], + [18091,22427], + [18093,4961], + [18095,19524], + [18097,247772], + [18099,5712], + [18101,1011], + [18103,3235], + [18105,39861], + [18107,4213], + [18109,7781], + [18111,1509], + [18113,4660], + [18115,750], + [18117,2224], + [18119,2420], + [18121,1503], + [18123,3203], + [18125,1415], + [18127,39746], + [18129,3811], + [18131,1463], + [18133,3946], + [18135,2513], + [18137,2774], + [18139,1754], + [18141,59896], + [18143,2698], + [18145,5023], + [18147,3213], + [18149,2650], + [18151,4513], + [18153,2153], + [18155,964], + [18157,35017], + [18159,1834], + [18161,736], + [18163,34415], + [18165,2145], + [18167,18123], + [18169,3494], + [18171,974], + [18173,11923], + [18175,2784], + [18177,9524], + [18179,2928], + [18181,3032], + [18183,4234], + [19001,1198], + [19003,590], + [19005,2576], + [19007,1891], + [19009,1071], + [19011,5160], + [19013,35647], + [19015,6303], + [19017,5958], + [19019,4169], + [19021,2961], + [19023,2424], + [19025,1470], + [19027,3454], + [19029,2201], + [19031,4337], + [19033,10941], + [19035,1936], + [19037,2233], + [19039,1466], + [19041,2662], + [19043,3340], + [19045,10812], + [19047,2220], + [19049,26879], + [19051,1013], + [19053,1120], + [19055,3157], + [19057,8893], + [19059,3661], + [19061,25657], + [19063,1520], + [19065,3835], + [19067,3172], + [19069,1626], + [19071,1080], + [19073,1769], + [19075,2206], + [19077,1985], + [19079,2843], + [19081,1683], + [19083,2976], + [19085,2440], + [19087,3275], + [19089,1772], + [19091,1442], + [19093,917], + [19095,3547], + [19097,4029], + [19099,7737], + [19101,4319], + [19103,59177], + [19105,4213], + [19107,1414], + [19109,2696], + [19111,6541], + [19113,70874], + [19115,1726], + [19117,1284], + [19119,1067], + [19121,3134], + [19123,2894], + [19125,6178], + [19127,8176], + [19129,2508], + [19131,2053], + [19133,1407], + [19135,1078], + [19137,1583], + [19139,9372], + [19141,1569], + [19143,601], + [19145,2086], + [19147,1519], + [19149,3494], + [19151,933], + [19153,146250], + [19155,18575], + [19157,4306], + [19159,709], + [19161,1389], + [19163,46926], + [19165,1959], + [19167,3019], + [19169,29175], + [19171,3577], + [19173,746], + [19175,2061], + [19177,875], + [19179,5821], + [19181,12574], + [19183,4561], + [19185,727], + [19187,6613], + [19189,2135], + [19191,5617], + [19193,18704], + [19195,1596], + [19197,1996], + [20001,1559], + [20003,765], + [20005,2314], + [20007,284], + [20009,2302], + [20011,1505], + [20013,1088], + [20015,9003], + [20017,341], + [20019,212], + [20021,2163], + [20023,220], + [20025,143], + [20027,883], + [20029,893], + [20031,928], + [20033,126], + [20035,4171], + [20037,6179], + [20039,208], + [20041,2040], + [20043,678], + [20045,39436], + [20047,267], + [20049,191], + [20051,3633], + [20053,646], + [20055,4155], + [20057,2926], + [20059,3623], + [20061,3825], + [20063,163], + [20065,222], + [20067,497], + [20069,337], + [20071,77], + [20073,562], + [20075,134], + [20077,453], + [20079,6652], + [20081,261], + [20083,151], + [20085,1852], + [20087,3106], + [20089,211], + [20091,184259], + [20093,255], + [20095,745], + [20097,153], + [20099,2607], + [20101,114], + [20103,13753], + [20105,266], + [20107,863], + [20109,185], + [20111,5878], + [20113,3977], + [20115,1463], + [20117,1239], + [20119,261], + [20121,5133], + [20123,547], + [20125,3147], + [20127,721], + [20129,147], + [20131,920], + [20133,1727], + [20135,147], + [20137,361], + [20139,2099], + [20141,275], + [20143,504], + [20145,635], + [20147,318], + [20149,3257], + [20151,924], + [20153,214], + [20155,8602], + [20157,420], + [20159,953], + [20161,11940], + [20163,332], + [20165,291], + [20167,591], + [20169,8022], + [20171,290], + [20173,90820], + [20175,1736], + [20177,43015], + [20179,144], + [20181,386], + [20183,328], + [20185,355], + [20187,147], + [20189,233], + [20191,2551], + [20193,622], + [20195,238], + [20197,956], + [20199,44], + [20201,467], + [20203,147], + [20205,711], + [20207,283], + [20209,35566], + [21001,1392], + [21003,1642], + [21005,3348], + [21007,825], + [21009,5127], + [21011,1573], + [21013,1789], + [21015,20901], + [21017,3296], + [21019,7083], + [21021,5298], + [21023,800], + [21025,1301], + [21027,2350], + [21029,10552], + [21031,1079], + [21033,1433], + [21035,5797], + [21037,19374], + [21039,463], + [21041,1116], + [21043,2642], + [21045,918], + [21047,8296], + [21049,6004], + [21051,831], + [21053,603], + [21055,731], + [21057,508], + [21059,17286], + [21061,1227], + [21063,712], + [21065,1355], + [21067,90600], + [21069,1474], + [21071,3884], + [21073,12652], + [21075,794], + [21077,822], + [21079,1830], + [21081,2205], + [21083,3560], + [21085,2400], + [21087,920], + [21089,4873], + [21091,1351], + [21093,18101], + [21095,1494], + [21097,2400], + [21099,1908], + [21101,7639], + [21103,2142], + [21105,458], + [21107,5439], + [21109,605], + [21111,228358], + [21113,8567], + [21115,1608], + [21117,32271], + [21119,1412], + [21121,2114], + [21123,1504], + [21125,4475], + [21127,1238], + [21129,481], + [21131,446], + [21133,1799], + [21135,823], + [21137,2254], + [21139,939], + [21141,3094], + [21143,1092], + [21145,11195], + [21147,725], + [21149,1074], + [21151,15581], + [21153,1214], + [21155,2722], + [21157,4071], + [21159,403], + [21161,2362], + [21163,3632], + [21165,750], + [21167,3033], + [21169,975], + [21171,657], + [21173,3630], + [21175,1175], + [21177,3545], + [21179,7188], + [21181,955], + [21183,2404], + [21185,14505], + [21187,1098], + [21189,216], + [21191,1322], + [21193,2356], + [21195,4866], + [21197,1367], + [21199,5666], + [21201,253], + [21203,1134], + [21205,3880], + [21207,1331], + [21209,10567], + [21211,8077], + [21213,2681], + [21215,2530], + [21217,2963], + [21219,1205], + [21221,1791], + [21223,1012], + [21225,1529], + [21227,22479], + [21229,1644], + [21231,1700], + [21233,1412], + [21235,2552], + [21237,839], + [21239,6530], + [22001,5443], + [22003,2108], + [22005,20399], + [22007,3833], + [22009,4979], + [22011,2542], + [22013,3067], + [22015,15662], + [22017,55110], + [22019,25982], + [22021,745], + [22023,324], + [22025,1269], + [22027,2731], + [22029,3177], + [22031,5457], + [22033,115577], + [22035,1900], + [22037,4280], + [22039,4158], + [22041,2658], + [22043,1157], + [22045,11027], + [22047,8514], + [22049,2143], + [22051,84477], + [22053,3208], + [22055,39685], + [22057,8672], + [22059,638], + [22061,7559], + [22063,9249], + [22065,2654], + [22067,4946], + [22069,6896], + [22071,147854], + [22073,25913], + [22075,3414], + [22077,4683], + [22079,19475], + [22081,1644], + [22083,3225], + [22085,1731], + [22087,6151], + [22089,9800], + [22091,3346], + [22093,6510], + [22095,13582], + [22097,17372], + [22099,8439], + [22101,8055], + [22103,37746], + [22105,18887], + [22107,1329], + [22109,11198], + [22111,2654], + [22113,5009], + [22115,2898], + [22117,5970], + [22119,6172], + [22121,6200], + [22123,710], + [22125,2298], + [22127,1543], + [23001,27617], + [23003,13956], + [23005,128759], + [23007,8069], + [23009,19369], + [23011,34902], + [23013,15110], + [23015,12684], + [23017,14755], + [23019,37713], + [23021,3517], + [23023,13528], + [23025,10199], + [23027,12345], + [23029,6761], + [23031,71189], + [24001,9158], + [24003,172823], + [24005,258409], + [24009,22587], + [24011,5095], + [24013,36456], + [24015,16809], + [24017,62171], + [24019,6857], + [24021,77675], + [24023,3281], + [24025,63095], + [24027,129433], + [24029,5329], + [24031,419569], + [24033,379208], + [24035,10709], + [24037,23138], + [24039,4241], + [24041,11062], + [24043,26044], + [24045,22054], + [24047,12560], + [24510,207260], + [25001,91994], + [25003,51705], + [25005,153377], + [25007,9914], + [25009,267198], + [25011,30030], + [25013,125948], + [25015,63362], + [25017,617196], + [25019,5241], + [25021,273312], + [25023,173630], + [25025,270522], + [25027,248773], + [26001,2142], + [26003,2053], + [26005,24449], + [26007,6000], + [26009,5960], + [26011,2774], + [26013,1478], + [26015,11797], + [26017,26151], + [26019,5480], + [26021,37438], + [26023,6159], + [26025,28877], + [26027,9130], + [26029,6939], + [26031,5437], + [26033,6648], + [26035,5199], + [26037,21968], + [26039,2672], + [26041,7606], + [26043,4744], + [26045,31299], + [26047,9662], + [26049,119390], + [26051,4524], + [26053,3570], + [26055,28683], + [26057,6693], + [26059,5883], + [26061,7750], + [26063,5490], + [26065,94212], + [26067,10901], + [26069,5373], + [26071,2493], + [26073,14072], + [26075,31995], + [26077,83686], + [26079,3002], + [26081,187915], + [26083,672], + [26085,2288], + [26087,16367], + [26089,8795], + [26091,20918], + [26093,48220], + [26095,842], + [26097,2632], + [26099,223952], + [26101,6107], + [26103,20465], + [26105,6802], + [26107,7375], + [26109,4316], + [26111,20493], + [26113,1967], + [26115,32975], + [26117,9703], + [26119,1628], + [26121,45643], + [26123,7873], + [26125,434148], + [26127,4944], + [26129,3475], + [26131,1391], + [26133,3214], + [26135,1342], + [26137,4743], + [26139,64705], + [26141,2911], + [26143,5166], + [26145,51088], + [26147,31363], + [26149,9262], + [26151,5966], + [26153,1589], + [26155,15347], + [26157,8712], + [26159,16803], + [26161,157136], + [26163,597170], + [26165,5838], + [27001,3607], + [27003,100893], + [27005,6589], + [27007,11426], + [27009,7280], + [27011,1053], + [27013,18330], + [27015,4753], + [27017,10098], + [27019,30774], + [27021,6342], + [27023,2226], + [27025,11806], + [27027,16357], + [27029,1260], + [27031,2496], + [27033,1834], + [27035,13726], + [27037,146155], + [27039,4079], + [27041,7868], + [27043,2531], + [27045,4551], + [27047,6889], + [27049,11806], + [27051,1300], + [27053,532623], + [27055,4853], + [27057,4462], + [27059,7138], + [27061,10786], + [27063,1745], + [27065,2774], + [27067,8440], + [27069,1006], + [27071,2659], + [27073,1446], + [27075,3647], + [27077,671], + [27079,5672], + [27081,937], + [27083,4634], + [27085,6413], + [27087,1112], + [27089,1295], + [27091,3305], + [27093,3867], + [27095,4404], + [27097,4367], + [27099,8899], + [27101,1449], + [27103,9622], + [27105,2933], + [27107,1404], + [27109,49491], + [27111,11958], + [27113,2568], + [27115,5419], + [27117,1306], + [27119,5439], + [27121,2477], + [27123,211620], + [27125,691], + [27127,2355], + [27129,2496], + [27131,17402], + [27133,1556], + [27135,2188], + [27137,67704], + [27139,40040], + [27141,18065], + [27143,2417], + [27145,31879], + [27147,7917], + [27149,1922], + [27151,1784], + [27153,3286], + [27155,661], + [27157,4696], + [27159,2023], + [27161,3496], + [27163,89165], + [27165,1987], + [27167,1026], + [27169,13333], + [27171,28430], + [27173,1688], + [28001,7917], + [28003,2782], + [28005,2620], + [28007,3542], + [28009,1679], + [28011,8904], + [28013,1902], + [28015,1729], + [28017,3810], + [28019,1185], + [28021,3772], + [28023,2838], + [28025,5844], + [28027,6020], + [28029,6470], + [28031,3416], + [28033,28265], + [28035,13755], + [28037,1480], + [28039,1218], + [28041,966], + [28043,4734], + [28045,4504], + [28047,27728], + [28049,73550], + [28051,6588], + [28053,3016], + [28055,355], + [28057,1249], + [28059,17375], + [28061,4341], + [28063,3327], + [28065,3599], + [28067,8517], + [28069,2887], + [28071,10070], + [28073,7340], + [28075,12960], + [28077,2260], + [28079,3897], + [28081,12189], + [28083,7648], + [28085,5040], + [28087,13087], + [28089,24440], + [28091,3787], + [28093,8057], + [28095,5874], + [28097,2121], + [28099,3260], + [28101,3075], + [28103,4040], + [28105,10299], + [28107,7403], + [28109,4148], + [28111,1362], + [28113,8646], + [28115,2614], + [28117,2153], + [28119,2150], + [28121,18847], + [28123,4330], + [28125,1465], + [28127,4037], + [28129,1791], + [28131,1802], + [28133,6781], + [28135,3105], + [28137,4183], + [28139,1937], + [28141,1059], + [28143,2580], + [28145,2160], + [28147,2835], + [28149,10442], + [28151,12503], + [28153,3624], + [28155,1043], + [28157,2749], + [28159,4040], + [28161,2785], + [28163,5496], + [29001,3710], + [29003,2351], + [29005,564], + [29007,2704], + [29009,2948], + [29011,844], + [29013,1672], + [29015,2180], + [29017,750], + [29019,50064], + [29021,13445], + [29023,3301], + [29025,897], + [29027,5870], + [29029,5652], + [29031,10760], + [29033,786], + [29035,418], + [29037,19052], + [29039,1145], + [29041,916], + [29043,11131], + [29045,678], + [29047,59400], + [29049,2896], + [29051,12694], + [29053,2249], + [29055,2113], + [29057,656], + [29059,1380], + [29061,746], + [29063,930], + [29065,1056], + [29067,1016], + [29069,2200], + [29071,14569], + [29073,1601], + [29075,613], + [29077,55068], + [29079,799], + [29081,597], + [29083,2619], + [29085,1056], + [29087,338], + [29089,1413], + [29091,3218], + [29093,945], + [29095,199842], + [29097,13549], + [29099,37523], + [29101,6974], + [29103,340], + [29105,2780], + [29107,4472], + [29109,3214], + [29111,984], + [29113,6607], + [29115,1275], + [29117,1410], + [29119,1439], + [29121,1662], + [29123,1019], + [29125,814], + [29127,3202], + [29129,222], + [29131,2038], + [29133,1178], + [29135,1308], + [29137,936], + [29139,1208], + [29141,1924], + [29143,1748], + [29145,5818], + [29147,2853], + [29149,823], + [29151,1037], + [29153,752], + [29155,1560], + [29157,1664], + [29159,4783], + [29161,5637], + [29163,1717], + [29165,27179], + [29167,2885], + [29169,3740], + [29171,361], + [29173,1205], + [29175,2485], + [29177,3109], + [29179,529], + [29181,833], + [29183,89530], + [29185,988], + [29186,2713], + [29187,7044], + [29189,328151], + [29195,2904], + [29197,373], + [29199,388], + [29201,3753], + [29203,706], + [29205,592], + [29207,1819], + [29209,3506], + [29211,478], + [29213,5339], + [29215,1716], + [29217,1903], + [29219,4769], + [29221,1804], + [29223,845], + [29225,3573], + [29227,215], + [29229,1168], + [29510,110089], + [30001,1608], + [30003,2491], + [30005,1589], + [30007,835], + [30009,2421], + [30011,74], + [30013,15456], + [30015,991], + [30017,1514], + [30019,195], + [30021,962], + [30023,2562], + [30025,172], + [30027,1496], + [30029,20274], + [30031,37044], + [30033,41], + [30035,3610], + [30037,78], + [30039,638], + [30041,2981], + [30043,2625], + [30045,275], + [30047,6916], + [30049,19743], + [30051,249], + [30053,2835], + [30055,155], + [30057,1771], + [30059,258], + [30061,686], + [30063,43357], + [30065,413], + [30067,5280], + [30069,39], + [30071,416], + [30073,903], + [30075,154], + [30077,752], + [30079,126], + [30081,8763], + [30083,875], + [30085,1910], + [30087,1199], + [30089,1820], + [30091,574], + [30093,10392], + [30095,1156], + [30097,549], + [30099,1007], + [30101,467], + [30103,78], + [30105,1030], + [30107,225], + [30109,77], + [30111,30679], + [31001,4213], + [31003,452], + [31005,21], + [31007,43], + [31009,35], + [31011,499], + [31013,1051], + [31015,135], + [31017,191], + [31019,6350], + [31021,1063], + [31023,873], + [31025,4737], + [31027,725], + [31029,226], + [31031,373], + [31033,855], + [31035,632], + [31037,1025], + [31039,870], + [31041,786], + [31043,2744], + [31045,1082], + [31047,2497], + [31049,141], + [31051,651], + [31053,5544], + [31055,150350], + [31057,105], + [31059,693], + [31061,276], + [31063,189], + [31065,399], + [31067,3385], + [31069,161], + [31071,133], + [31073,215], + [31075,20], + [31077,229], + [31079,7681], + [31081,1118], + [31083,282], + [31085,34], + [31087,175], + [31089,686], + [31091,59], + [31093,648], + [31095,1016], + [31097,647], + [31099,701], + [31101,763], + [31103,49], + [31105,268], + [31107,905], + [31109,82293], + [31111,3692], + [31113,38], + [31115,75], + [31117,17], + [31119,3478], + [31121,743], + [31123,386], + [31125,359], + [31127,921], + [31129,409], + [31131,2490], + [31133,322], + [31135,199], + [31137,752], + [31139,480], + [31141,3260], + [31143,530], + [31145,811], + [31147,996], + [31149,84], + [31151,1986], + [31153,41206], + [31155,3331], + [31157,4196], + [31159,2438], + [31161,340], + [31163,343], + [31165,72], + [31167,532], + [31169,624], + [31171,45], + [31173,1122], + [31175,412], + [31177,3554], + [31179,1022], + [31181,335], + [31183,59], + [31185,1630], + [32001,3051], + [32003,521852], + [32005,11571], + [32007,4557], + [32009,74], + [32011,105], + [32013,1689], + [32015,496], + [32017,330], + [32019,8473], + [32021,829], + [32023,7288], + [32027,547], + [32029,902], + [32031,128128], + [32033,859], + [32510,12735], + [33001,16894], + [33003,16649], + [33005,25506], + [33007,7640], + [33009,33180], + [33011,122344], + [33013,48533], + [33015,100064], + [33017,41721], + [33019,12390], + [34001,73808], + [34003,285967], + [34005,154595], + [34007,175065], + [34009,23941], + [34011,32742], + [34013,266820], + [34015,86702], + [34017,181452], + [34019,39457], + [34021,122532], + [34023,226250], + [34025,181291], + [34027,153881], + [34029,119456], + [34031,129097], + [34033,14479], + [34035,111173], + [34037,34481], + [34039,170245], + [34041,24901], + [35001,193757], + [35003,595], + [35005,6381], + [35006,4745], + [35007,2611], + [35009,4307], + [35011,231], + [35013,47957], + [35015,5424], + [35017,7590], + [35019,1234], + [35021,179], + [35023,823], + [35025,4061], + [35027,3194], + [35028,7554], + [35029,3563], + [35031,18029], + [35033,1745], + [35035,8485], + [35037,1170], + [35039,10990], + [35041,1802], + [35043,40588], + [35045,18083], + [35047,7888], + [35049,62530], + [35051,2265], + [35053,3722], + [35055,13121], + [35057,2344], + [35059,383], + [35061,14263], + [36001,99474], + [36003,6048], + [36005,355374], + [36007,47010], + [36009,11879], + [36011,16149], + [36013,23087], + [36015,16636], + [36017,8290], + [36019,18364], + [36021,20386], + [36023,10369], + [36025,9143], + [36027,81443], + [36029,267174], + [36031,9947], + [36033,9253], + [36035,7931], + [36037,9625], + [36039,10346], + [36041,1178], + [36043,9937], + [36045,17307], + [36047,703310], + [36049,3824], + [36051,12477], + [36053,14807], + [36055,225746], + [36057,7977], + [36059,396504], + [36061,603040], + [36063,46029], + [36065,41567], + [36067,138894], + [36069,29025], + [36071,84684], + [36073,5587], + [36075,21143], + [36077,12975], + [36079,24953], + [36081,569038], + [36083,40969], + [36085,90997], + [36087,75802], + [36089,19361], + [36091,68471], + [36093,42465], + [36095,5345], + [36097,3903], + [36099,6914], + [36101,15790], + [36103,381021], + [36105,15489], + [36107,9634], + [36109,33619], + [36111,57970], + [36113,17642], + [36115,11565], + [36117,17456], + [36119,312371], + [36121,5073], + [36123,4219], + [37001,38825], + [37003,4145], + [37005,1486], + [37007,5789], + [37009,4164], + [37011,2191], + [37013,9633], + [37015,5939], + [37017,7326], + [37019,33310], + [37021,96515], + [37023,13118], + [37025,52162], + [37027,10245], + [37029,1537], + [37031,12093], + [37033,4860], + [37035,25689], + [37037,26787], + [37039,3583], + [37041,3247], + [37043,1699], + [37045,16955], + [37047,9446], + [37049,21148], + [37051,84469], + [37053,4195], + [37055,9936], + [37057,22636], + [37059,6713], + [37061,8767], + [37063,144688], + [37065,16089], + [37067,113033], + [37069,15879], + [37071,40959], + [37073,2546], + [37075,905], + [37077,14565], + [37079,3832], + [37081,173086], + [37083,15545], + [37085,22093], + [37087,13144], + [37089,27211], + [37091,7097], + [37093,11804], + [37095,1046], + [37097,33888], + [37099,9591], + [37101,41257], + [37103,2197], + [37105,12143], + [37107,13605], + [37109,13274], + [37111,5832], + [37113,6230], + [37115,4901], + [37117,5911], + [37119,378107], + [37121,1867], + [37123,4327], + [37125,20779], + [37127,25947], + [37129,66138], + [37131,6069], + [37133,24266], + [37135,63594], + [37137,2713], + [37139,9832], + [37141,11723], + [37143,2492], + [37145,8465], + [37147,47252], + [37149,4518], + [37151,15618], + [37153,8754], + [37155,19020], + [37157,15992], + [37159,23114], + [37161,9135], + [37163,10966], + [37165,7186], + [37167,8129], + [37169,5286], + [37171,8721], + [37173,2780], + [37175,8444], + [37177,758], + [37179,48725], + [37181,12431], + [37183,393336], + [37185,6400], + [37187,3396], + [37189,17122], + [37191,24215], + [37193,7511], + [37195,20754], + [37197,3763], + [37199,3688], + [38001,258], + [38003,1820], + [38005,822], + [38007,72], + [38009,821], + [38011,228], + [38013,137], + [38015,14348], + [38017,40311], + [38019,474], + [38021,608], + [38023,265], + [38025,342], + [38027,383], + [38029,237], + [38031,373], + [38033,137], + [38035,12880], + [38037,207], + [38039,308], + [38041,196], + [38043,221], + [38045,527], + [38047,128], + [38049,564], + [38051,261], + [38053,814], + [38055,1230], + [38057,704], + [38059,3872], + [38061,1256], + [38063,586], + [38065,129], + [38067,786], + [38069,497], + [38071,1639], + [38073,945], + [38075,220], + [38077,2510], + [38079,2482], + [38081,738], + [38083,104], + [38085,804], + [38087,44], + [38089,2499], + [38091,392], + [38093,2676], + [38095,317], + [38097,1493], + [38099,1333], + [38101,7293], + [38103,442], + [38105,2169], + [39001,2156], + [39003,14149], + [39005,6541], + [39007,16497], + [39009,14772], + [39011,4651], + [39013,9138], + [39015,4380], + [39017,69613], + [39019,3251], + [39021,5062], + [39023,24076], + [39025,34092], + [39027,4697], + [39029,13359], + [39031,4125], + [39033,4916], + [39035,416176], + [39037,4731], + [39039,5981], + [39041,57735], + [39043,17493], + [39045,31224], + [39047,2975], + [39049,409144], + [39051,6664], + [39053,2990], + [39055,21201], + [39057,34798], + [39059,4577], + [39061,246266], + [39063,11757], + [39065,3062], + [39067,1768], + [39069,4062], + [39071,3799], + [39073,3880], + [39075,1994], + [39077,7759], + [39079,3311], + [39081,10018], + [39083,8589], + [39085,55514], + [39087,7489], + [39089,33055], + [39091,5055], + [39093,75667], + [39095,115411], + [39097,5698], + [39099,57641], + [39101,8269], + [39103,39800], + [39105,2492], + [39107,4030], + [39109,15663], + [39111,1605], + [39113,135064], + [39115,1725], + [39117,4048], + [39119,11971], + [39121,1170], + [39123,9008], + [39125,2213], + [39127,4098], + [39129,7304], + [39131,3110], + [39133,35661], + [39135,4493], + [39137,3195], + [39139,17640], + [39141,10557], + [39143,10596], + [39145,9080], + [39147,8266], + [39149,4465], + [39151,75904], + [39153,151668], + [39155,44519], + [39157,12889], + [39159,11141], + [39161,3067], + [39163,1331], + [39165,46069], + [39167,9243], + [39169,16660], + [39171,4842], + [39173,30617], + [39175,2733], + [40001,1387], + [40003,232], + [40005,765], + [40007,190], + [40009,1048], + [40011,688], + [40013,3323], + [40015,2670], + [40017,16742], + [40019,4470], + [40021,6027], + [40023,1082], + [40025,70], + [40027,49827], + [40029,374], + [40031,13747], + [40033,393], + [40035,1217], + [40037,6577], + [40039,2369], + [40041,3472], + [40043,214], + [40045,162], + [40047,4919], + [40049,1865], + [40051,4144], + [40053,280], + [40055,328], + [40057,177], + [40059,136], + [40061,783], + [40063,919], + [40065,1646], + [40067,319], + [40069,738], + [40071,4040], + [40073,854], + [40075,699], + [40077,762], + [40079,3299], + [40081,2609], + [40083,5455], + [40085,711], + [40087,3582], + [40089,1858], + [40091,2031], + [40093,320], + [40095,1100], + [40097,3581], + [40099,1156], + [40101,8027], + [40103,1003], + [40105,712], + [40107,896], + [40109,141724], + [40111,4357], + [40113,6002], + [40115,2686], + [40117,1363], + [40119,10904], + [40121,3768], + [40123,4117], + [40125,7275], + [40127,668], + [40129,168], + [40131,9589], + [40133,2150], + [40135,3035], + [40137,3154], + [40139,894], + [40141,597], + [40143,108996], + [40145,8464], + [40147,5790], + [40149,598], + [40151,591], + [40153,1005], + [41001,2346], + [41003,35827], + [41005,139043], + [41007,12916], + [41009,13835], + [41011,14243], + [41013,3801], + [41015,6058], + [41017,65962], + [41019,19160], + [41021,324], + [41023,929], + [41025,894], + [41027,8764], + [41029,59478], + [41031,4393], + [41033,18451], + [41035,10388], + [41037,792], + [41039,134366], + [41041,17385], + [41043,26512], + [41045,3260], + [41047,80872], + [41049,1371], + [41051,367249], + [41053,22917], + [41055,260], + [41057,8066], + [41059,10707], + [41061,4254], + [41063,1625], + [41065,6604], + [41067,209940], + [41069,217], + [41071,27174], + [42001,18207], + [42003,430759], + [42005,8457], + [42007,38122], + [42009,4367], + [42011,92895], + [42013,17636], + [42015,8046], + [42017,204712], + [42019,37508], + [42021,21730], + [42023,634], + [42025,11212], + [42027,40055], + [42029,182372], + [42031,4678], + [42033,9673], + [42035,5502], + [42037,10532], + [42039,12924], + [42041,62245], + [42043,78983], + [42045,206423], + [42047,4522], + [42049,68286], + [42051,20444], + [42053,728], + [42055,22422], + [42057,1085], + [42059,4911], + [42061,5445], + [42063,12634], + [42065,4527], + [42067,2253], + [42069,61991], + [42071,115847], + [42073,15978], + [42075,23932], + [42077,98288], + [42079,64873], + [42081,16971], + [42083,5098], + [42085,21067], + [42087,4603], + [42089,44060], + [42091,319511], + [42093,3771], + [42095,85087], + [42097,12677], + [42099,5950], + [42101,603790], + [42103,13019], + [42105,1726], + [42107,20727], + [42109,4910], + [42111,8654], + [42113,921], + [42115,6236], + [42117,4955], + [42119,7475], + [42121,7585], + [42123,6066], + [42125,45088], + [42127,9191], + [42129,72129], + [42131,4704], + [42133,88114], + [44001,18050], + [44003,49113], + [44005,29486], + [44007,165012], + [44009,44549], + [45001,4101], + [45003,32275], + [45005,2718], + [45007,27169], + [45009,4010], + [45011,4720], + [45013,43419], + [45015,45223], + [45017,3905], + [45019,121485], + [45021,6983], + [45023,6941], + [45025,7431], + [45027,8250], + [45029,8602], + [45031,15220], + [45033,6436], + [45035,33824], + [45037,4953], + [45039,7382], + [45041,31153], + [45043,15822], + [45045,103030], + [45047,12145], + [45049,5323], + [45051,59180], + [45053,7185], + [45055,12699], + [45057,18937], + [45059,10159], + [45061,5329], + [45063,49301], + [45065,2687], + [45067,8872], + [45069,6290], + [45071,6958], + [45073,10414], + [45075,27295], + [45077,13645], + [45079,132570], + [45081,2963], + [45083,52926], + [45085,27379], + [45087,4935], + [45089,10289], + [45091,59008], + [46003,317], + [46005,2107], + [46007,466], + [46009,721], + [46011,6110], + [46013,6538], + [46015,673], + [46017,352], + [46019,939], + [46021,117], + [46023,1177], + [46025,437], + [46027,3083], + [46029,3837], + [46031,622], + [46033,1522], + [46035,2648], + [46037,1052], + [46039,609], + [46041,1131], + [46043,216], + [46045,417], + [46047,1053], + [46049,198], + [46051,1056], + [46053,455], + [46055,105], + [46057,647], + [46059,373], + [46061,557], + [46063,49], + [46065,2953], + [46067,762], + [46069,136], + [46071,359], + [46073,270], + [46075,90], + [46077,819], + [46079,2068], + [46081,4537], + [46083,11981], + [46085,525], + [46087,769], + [46089,222], + [46091,858], + [46093,3285], + [46095,298], + [46097,320], + [46099,40482], + [46101,1179], + [46102,2829], + [46103,20606], + [46105,239], + [46107,227], + [46109,1828], + [46111,257], + [46115,998], + [46117,421], + [46119,185], + [46121,1963], + [46123,495], + [46125,1139], + [46127,2725], + [46129,565], + [46135,4016], + [46137,481], + [47001,11741], + [47003,4453], + [47005,1529], + [47007,971], + [47009,17932], + [47011,9851], + [47013,2441], + [47015,1261], + [47017,2559], + [47019,4529], + [47021,5514], + [47023,1412], + [47025,2202], + [47027,735], + [47029,2533], + [47031,5705], + [47033,1382], + [47035,6728], + [47037,199703], + [47039,904], + [47041,1750], + [47043,6106], + [47045,3158], + [47047,7027], + [47049,1214], + [47051,4864], + [47053,5771], + [47055,3298], + [47057,1467], + [47059,5199], + [47061,988], + [47063,5500], + [47065,75522], + [47067,362], + [47069,4180], + [47071,1775], + [47073,4083], + [47075,4012], + [47077,2092], + [47079,3548], + [47081,2130], + [47083,871], + [47085,2017], + [47087,1135], + [47089,4654], + [47091,1246], + [47093,91422], + [47095,526], + [47097,3193], + [47099,3195], + [47101,1072], + [47103,2919], + [47105,6948], + [47107,4361], + [47109,1943], + [47111,1307], + [47113,18390], + [47115,3177], + [47117,3605], + [47119,14418], + [47121,1008], + [47123,3764], + [47125,32472], + [47127,573], + [47129,1167], + [47131,2589], + [47133,2033], + [47135,615], + [47137,525], + [47139,1492], + [47141,9185], + [47143,2369], + [47145,6043], + [47147,8692], + [47149,59341], + [47151,986], + [47153,1298], + [47155,8721], + [47157,246105], + [47159,1802], + [47161,1232], + [47163,17272], + [47165,27680], + [47167,6837], + [47169,1012], + [47171,1615], + [47173,1249], + [47175,544], + [47177,3924], + [47179,18638], + [47181,820], + [47183,3020], + [47185,2143], + [47187,50161], + [47189,22254], + [48001,3955], + [48003,850], + [48005,9143], + [48007,2916], + [48009,446], + [48011,75], + [48013,5876], + [48015,2951], + [48017,409], + [48019,2505], + [48021,15474], + [48023,183], + [48025,3288], + [48027,57014], + [48029,448452], + [48031,1911], + [48033,16], + [48035,1561], + [48037,10747], + [48039,62228], + [48041,35349], + [48043,2258], + [48045,78], + [48047,1470], + [48049,2107], + [48051,1788], + [48053,5639], + [48055,6672], + [48057,2148], + [48059,734], + [48061,64063], + [48063,1394], + [48065,297], + [48067,2795], + [48069,466], + [48071,3997], + [48073,4210], + [48075,310], + [48077,614], + [48079,177], + [48081,178], + [48083,451], + [48085,230945], + [48087,155], + [48089,2420], + [48091,24826], + [48093,853], + [48095,197], + [48097,3210], + [48099,7565], + [48101,113], + [48103,241], + [48105,344], + [48107,527], + [48109,438], + [48111,197], + [48113,598576], + [48115,808], + [48117,1264], + [48119,403], + [48121,188695], + [48123,1494], + [48125,130], + [48127,2264], + [48129,198], + [48131,2575], + [48133,983], + [48135,11367], + [48137,168], + [48139,27565], + [48141,178126], + [48143,2916], + [48145,1899], + [48147,2655], + [48149,2661], + [48151,352], + [48153,438], + [48155,99], + [48157,195552], + [48159,804], + [48161,1635], + [48163,2422], + [48165,576], + [48167,58842], + [48169,231], + [48171,3176], + [48173,39], + [48175,877], + [48177,1948], + [48179,829], + [48181,14506], + [48183,14796], + [48185,2833], + [48187,28805], + [48189,2279], + [48191,168], + [48193,641], + [48195,166], + [48197,241], + [48199,3474], + [48201,918193], + [48203,7908], + [48205,195], + [48207,353], + [48209,59524], + [48211,206], + [48213,7060], + [48215,128199], + [48217,2860], + [48219,1482], + [48221,5648], + [48223,3046], + [48225,2314], + [48227,2069], + [48229,371], + [48231,8906], + [48233,965], + [48235,120], + [48237,331], + [48239,1033], + [48241,2954], + [48243,501], + [48245,46073], + [48247,1197], + [48249,6119], + [48251,16464], + [48253,999], + [48255,1234], + [48257,18405], + [48259,6020], + [48261,65], + [48263,47], + [48265,6524], + [48267,284], + [48269,8], + [48271,446], + [48273,5314], + [48275,265], + [48277,4458], + [48279,840], + [48281,2144], + [48283,1052], + [48285,1333], + [48287,1750], + [48289,1072], + [48291,5785], + [48293,2213], + [48295,131], + [48297,819], + [48299,2465], + [48301,4], + [48303,40017], + [48305,428], + [48307,490], + [48309,36688], + [48311,53], + [48313,1088], + [48315,1339], + [48317,288], + [48319,457], + [48321,3733], + [48323,8332], + [48325,6773], + [48327,197], + [48329,12329], + [48331,2496], + [48333,271], + [48335,397], + [48337,1097], + [48339,74377], + [48341,1062], + [48343,1669], + [48345,46], + [48347,9000], + [48349,5101], + [48351,1173], + [48353,1162], + [48355,60925], + [48357,302], + [48359,81], + [48361,6357], + [48363,2178], + [48365,2057], + [48367,13017], + [48369,488], + [48371,1382], + [48373,5387], + [48375,9921], + [48377,1463], + [48379,842], + [48381,12802], + [48383,172], + [48385,320], + [48387,1246], + [48389,1395], + [48391,1108], + [48393,17], + [48395,2374], + [48397,16412], + [48399,552], + [48401,4629], + [48403,669], + [48405,980], + [48407,2337], + [48409,8988], + [48411,287], + [48413,211], + [48415,818], + [48417,130], + [48419,2068], + [48421,91], + [48423,29615], + [48425,768], + [48427,9123], + [48429,397], + [48431,51], + [48433,116], + [48435,322], + [48437,478], + [48439,411567], + [48441,14588], + [48443,119], + [48445,757], + [48447,82], + [48449,2856], + [48451,12239], + [48453,435860], + [48455,1323], + [48457,1403], + [48459,2877], + [48461,170], + [48463,4073], + [48465,6771], + [48467,3516], + [48469,10380], + [48471,7884], + [48473,8191], + [48475,764], + [48477,4261], + [48479,41820], + [48481,4694], + [48483,168], + [48485,13161], + [48487,956], + [48489,3108], + [48491,143795], + [48493,6350], + [48495,358], + [48497,4973], + [48499,3509], + [48501,420], + [48503,1034], + [48505,1826], + [48507,2864], + [49001,357], + [49003,4473], + [49005,16650], + [49007,2392], + [49009,111], + [49011,57411], + [49013,843], + [49015,572], + [49017,514], + [49019,2806], + [49021,4892], + [49023,645], + [49025,1083], + [49027,624], + [49029,1086], + [49031,86], + [49033,180], + [49035,289906], + [49037,3113], + [49039,1794], + [49041,1084], + [49043,15244], + [49045,8943], + [49047,1663], + [49049,76033], + [49051,6187], + [49053,20530], + [49055,365], + [49057,40695], + [50001,14967], + [50003,12705], + [50005,9011], + [50007,74961], + [50009,1405], + [50011,13611], + [50013,2905], + [50015,10240], + [50017,10304], + [50019,7147], + [50021,18230], + [50023,25191], + [50025,18767], + [50027,23376], + [51001,7578], + [51003,42466], + [51005,2243], + [51007,2411], + [51009,5672], + [51011,2418], + [51013,105344], + [51015,10840], + [51017,646], + [51019,12176], + [51021,532], + [51023,5700], + [51025,4552], + [51027,1587], + [51029,3471], + [51031,8070], + [51033,7657], + [51035,2842], + [51036,2624], + [51037,2317], + [51041,106935], + [51043,3920], + [51045,587], + [51047,10617], + [51049,2227], + [51051,1503], + [51053,6224], + [51057,3038], + [51059,419943], + [51061,17565], + [51063,3004], + [51065,7414], + [51067,8381], + [51069,17207], + [51071,2156], + [51073,6964], + [51075,6685], + [51077,1535], + [51079,4163], + [51081,2627], + [51083,7666], + [51085,25307], + [51087,116572], + [51089,9127], + [51091,417], + [51093,9399], + [51095,25553], + [51097,1590], + [51099,5404], + [51101,3260], + [51103,3368], + [51105,1489], + [51107,138372], + [51109,8269], + [51111,2418], + [51113,2698], + [51115,1825], + [51117,6803], + [51119,2491], + [51121,23218], + [51125,4327], + [51127,4621], + [51131,3667], + [51133,3252], + [51135,2971], + [51137,7995], + [51139,3007], + [51141,1954], + [51143,10115], + [51145,5320], + [51147,4973], + [51149,7103], + [51153,142863], + [51155,4925], + [51157,2096], + [51159,1513], + [51161,21801], + [51163,4086], + [51165,12644], + [51167,2373], + [51169,1692], + [51171,6836], + [51173,3008], + [51175,3969], + [51177,34307], + [51179,40245], + [51181,2397], + [51183,2827], + [51185,3205], + [51187,6603], + [51191,6617], + [51193,4501], + [51195,3110], + [51197,3143], + [51199,17683], + [51510,66240], + [51520,2313], + [51530,825], + [51540,20696], + [51550,66377], + [51570,2972], + [51580,964], + [51590,11710], + [51595,1612], + [51600,9174], + [51610,7146], + [51620,2525], + [51630,8517], + [51640,777], + [51650,46220], + [51660,11022], + [51670,5430], + [51678,1791], + [51680,18048], + [51683,10356], + [51685,3992], + [51690,3766], + [51700,53099], + [51710,64440], + [51720,464], + [51730,12389], + [51735,2054], + [51740,30948], + [51750,3358], + [51760,92175], + [51770,26773], + [51775,5148], + [51790,6981], + [51800,28676], + [51810,117393], + [51820,4961], + [51830,4790], + [51840,6610], + [53001,1814], + [53003,4250], + [53005,38706], + [53007,19349], + [53009,24721], + [53011,140324], + [53013,668], + [53015,23938], + [53017,7811], + [53019,1486], + [53021,13340], + [53023,366], + [53025,11819], + [53027,17354], + [53029,29213], + [53031,17204], + [53033,907310], + [53035,90277], + [53037,11421], + [53039,5959], + [53041,14520], + [53043,1713], + [53045,17269], + [53047,8900], + [53049,6794], + [53051,2593], + [53053,249506], + [53055,9725], + [53057,38252], + [53059,3192], + [53061,256728], + [53063,135765], + [53065,7839], + [53067,96608], + [53069,1165], + [53071,13690], + [53073,83660], + [53075,11184], + [53077,43179], + [54001,1457], + [54003,17186], + [54005,2041], + [54007,1457], + [54009,2947], + [54011,14994], + [54013,568], + [54015,641], + [54017,435], + [54019,5063], + [54021,599], + [54023,607], + [54025,4655], + [54027,1939], + [54029,3790], + [54031,1381], + [54033,9215], + [54035,3207], + [54037,12127], + [54039,34344], + [54041,1538], + [54043,1711], + [54045,2333], + [54047,1333], + [54049,8901], + [54051,3455], + [54053,2526], + [54055,5556], + [54057,2660], + [54059,1397], + [54061,20282], + [54063,1345], + [54065,1998], + [54067,2226], + [54069,7223], + [54071,820], + [54073,699], + [54075,1047], + [54077,3163], + [54079,7878], + [54081,7982], + [54083,3362], + [54085,586], + [54087,1455], + [54089,1448], + [54091,1796], + [54093,938], + [54095,631], + [54097,2256], + [54099,4088], + [54101,610], + [54103,1539], + [54105,466], + [54107,10926], + [54109,1157], + [55001,4329], + [55003,4801], + [55005,9194], + [55007,6147], + [55009,65511], + [55011,2860], + [55013,3569], + [55015,12116], + [55017,13983], + [55019,4524], + [55021,16410], + [55023,3953], + [55025,260185], + [55027,16356], + [55029,10044], + [55031,13218], + [55033,9897], + [55035,31620], + [55037,781], + [55039,20588], + [55041,1721], + [55043,10998], + [55045,10851], + [55047,3344], + [55049,7828], + [55051,1533], + [55053,4256], + [55055,19904], + [55057,4746], + [55059,42193], + [55061,3976], + [55063,37846], + [55065,3647], + [55067,3704], + [55069,6261], + [55071,16818], + [55073,30808], + [55075,7366], + [55077,3239], + [55078,1303], + [55079,317270], + [55081,8433], + [55083,6715], + [55085,10105], + [55087,47667], + [55089,26517], + [55091,1489], + [55093,9796], + [55095,9370], + [55097,20428], + [55099,3032], + [55101,50159], + [55103,3995], + [55105,46658], + [55107,2517], + [55109,23190], + [55111,18108], + [55113,4498], + [55115,7131], + [55117,27101], + [55119,2693], + [55121,6285], + [55123,7457], + [55125,5903], + [55127,22789], + [55129,3867], + [55131,26650], + [55133,103906], + [55135,9703], + [55137,4388], + [55139,44060], + [55141,16365], + [56001,9092], + [56003,788], + [56005,1935], + [56007,1427], + [56009,861], + [56011,378], + [56013,5519], + [56015,1203], + [56017,482], + [56019,897], + [56021,15217], + [56023,1509], + [56025,8530], + [56027,155], + [56029,3410], + [56031,890], + [56033,4043], + [56035,882], + [56037,3823], + [56039,9848], + [56041,1591], + [56043,651], + [56045,360] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes-gop.json b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes-gop.json new file mode 100644 index 0000000..7466c06 --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes-gop.json @@ -0,0 +1,3174 @@ +{ + "metadata" : { + "name" : "2020 Presidential Election | Republican Votes", + "description" : "Votes cast for Republican party (gop) candidates in the 2020 presidential election.", + "units" : "votes", + "year" : "2020", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Fox News, Politico, and the New York Times" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2020.votes.gop"], + [1001,19838], + [1003,83544], + [1005,5622], + [1007,7525], + [1009,24711], + [1011,1146], + [1013,5458], + [1015,35101], + [1017,8753], + [1019,10583], + [1021,16085], + [1023,4296], + [1025,7324], + [1027,5601], + [1029,6484], + [1031,16899], + [1033,19203], + [1035,3442], + [1037,3631], + [1039,14586], + [1041,4864], + [1043,36880], + [1045,14303], + [1047,5524], + [1049,24767], + [1051,30164], + [1053,10869], + [1055,35528], + [1057,7300], + [1059,10376], + [1061,10848], + [1063,875], + [1065,3190], + [1067,6607], + [1069,32618], + [1071,19670], + [1073,138843], + [1075,6174], + [1077,31721], + [1079,12322], + [1081,42221], + [1083,34640], + [1085,1836], + [1087,1541], + [1089,102780], + [1091,5343], + [1093,12205], + [1095,33191], + [1097,101243], + [1099,6147], + [1101,33311], + [1103,39664], + [1105,1339], + [1107,5594], + [1109,8042], + [1111,8559], + [1113,9864], + [1115,36166], + [1117,79700], + [1119,1598], + [1121,22235], + [1123,14963], + [1125,51117], + [1127,26002], + [1129,6564], + [1131,1833], + [1133,10195], + [2901,3511], + [2902,3674], + [2903,6076], + [2904,4690], + [2905,4077], + [2906,5770], + [2907,7027], + [2908,7618], + [2909,7787], + [2910,8081], + [2911,7096], + [2912,7893], + [2913,4652], + [2914,6714], + [2915,2671], + [2916,3516], + [2917,2810], + [2918,2760], + [2919,1975], + [2920,2383], + [2921,3690], + [2922,4684], + [2923,3655], + [2924,5378], + [2925,4407], + [2926,5243], + [2927,4324], + [2928,6162], + [2929,7464], + [2930,7180], + [2931,6971], + [2932,4440], + [2933,3059], + [2934,4543], + [2935,4769], + [2936,5114], + [2937,2358], + [2938,1737], + [2939,1939], + [2940,1994], + [4001,11442], + [4003,35557], + [4005,27052], + [4007,18377], + [4009,10749], + [4011,2433], + [4012,5129], + [4013,995665], + [4015,78535], + [4017,27657], + [4019,207758], + [4021,107077], + [4023,6194], + [4025,91527], + [4027,36534], + [5001,4304], + [5003,5548], + [5005,15836], + [5007,73965], + [5009,13652], + [5011,2335], + [5013,1636], + [5015,7424], + [5017,1752], + [5019,4616], + [5021,4086], + [5023,10328], + [5025,2867], + [5027,5500], + [5029,5694], + [5031,25558], + [5033,18607], + [5035,7333], + [5037,4946], + [5039,1573], + [5041,1921], + [5043,4349], + [5045,34421], + [5047,5677], + [5049,3961], + [5051,29069], + [5053,6794], + [5055,12670], + [5057,4470], + [5059,9202], + [5061,3367], + [5063,11250], + [5065,4631], + [5067,3593], + [5069,9521], + [5071,6938], + [5073,1757], + [5075,4569], + [5077,1286], + [5079,2729], + [5081,3715], + [5083,6441], + [5085,22884], + [5087,5658], + [5089,5783], + [5091,11920], + [5093,7296], + [5095,1545], + [5097,3046], + [5099,2133], + [5101,3192], + [5103,5294], + [5105,3479], + [5107,2417], + [5109,3519], + [5111,5918], + [5113,7035], + [5115,18081], + [5117,2786], + [5119,63687], + [5121,5355], + [5123,3242], + [5125,39556], + [5127,2962], + [5129,3365], + [5131,31198], + [5133,3884], + [5135,5938], + [5137,4616], + [5139,10478], + [5141,6034], + [5143,47504], + [5145,24182], + [5147,1543], + [5149,5226], + [6001,136309], + [6003,244], + [6005,13585], + [6007,48730], + [6009,16518], + [6011,4554], + [6013,152877], + [6015,6461], + [6017,61838], + [6019,164464], + [6021,7063], + [6023,21770], + [6025,20847], + [6027,4620], + [6029,164484], + [6031,24072], + [6033,13123], + [6035,8970], + [6037,1145530], + [6039,29378], + [6041,24612], + [6043,5950], + [6045,13267], + [6047,39397], + [6049,3109], + [6051,2513], + [6053,46299], + [6055,20676], + [6057,26779], + [6059,676498], + [6061,122488], + [6063,6445], + [6065,448702], + [6067,259405], + [6069,10590], + [6071,366257], + [6073,600094], + [6075,56417], + [6077,121098], + [6079,67436], + [6081,75563], + [6083,65736], + [6085,214612], + [6087,26937], + [6089,60789], + [6091,1142], + [6093,13290], + [6095,69306], + [6097,61825], + [6099,104145], + [6101,24375], + [6103,19141], + [6105,3188], + [6107,77579], + [6109,17689], + [6111,162207], + [6113,27292], + [6115,17676], + [8001,95657], + [8003,3813], + [8005,127323], + [8007,5189], + [8009,1867], + [8011,1503], + [8013,42501], + [8014,16295], + [8015,6222], + [8017,993], + [8019,2754], + [8021,2286], + [8023,741], + [8025,1271], + [8027,2474], + [8029,13081], + [8031,71618], + [8033,1089], + [8035,121270], + [8037,9892], + [8039,14027], + [8041,202828], + [8043,17517], + [8045,14717], + [8047,1833], + [8049,4883], + [8051,3735], + [8053,353], + [8055,2203], + [8057,681], + [8059,148417], + [8061,795], + [8063,3144], + [8065,1497], + [8067,14233], + [8069,91489], + [8071,4284], + [8073,2135], + [8075,8087], + [8077,56894], + [8079,427], + [8081,5670], + [8083,9306], + [8085,16770], + [8087,9593], + [8089,5756], + [8091,1577], + [8093,6991], + [8095,1958], + [8097,2780], + [8099,4008], + [8101,42252], + [8103,3061], + [8105,3660], + [8107,5925], + [8109,1413], + [8111,202], + [8113,1136], + [8115,1121], + [8117,5322], + [8119,11241], + [8121,2595], + [8123,96145], + [8125,4107], + [9001,169039], + [9003,159024], + [9005,55601], + [9007,40665], + [9009,169892], + [9011,57110], + [9013,34819], + [9015,29141], + [10001,41009], + [10003,88364], + [10005,71230], + [11001,18586], + [12001,50972], + [12003,11911], + [12005,66097], + [12007,10334], + [12009,207883], + [12011,333409], + [12013,5274], + [12015,73243], + [12017,65352], + [12019,84480], + [12021,128950], + [12023,23836], + [12027,8313], + [12029,6759], + [12031,233762], + [12033,96674], + [12035,43043], + [12037,4675], + [12039,7465], + [12041,7895], + [12043,3782], + [12045,6113], + [12047,3815], + [12049,6122], + [12051,7906], + [12053,70412], + [12055,34873], + [12057,327398], + [12059,8080], + [12061,58872], + [12063,15488], + [12065,4479], + [12067,3128], + [12069,125859], + [12071,233247], + [12073,57453], + [12075,16749], + [12077,2846], + [12079,5576], + [12081,124987], + [12083,127826], + [12085,61168], + [12086,532833], + [12087,25693], + [12089,42566], + [12091,79798], + [12093,11470], + [12095,245398], + [12097,73480], + [12099,334711], + [12101,179621], + [12103,276209], + [12105,194586], + [12107,25514], + [12109,110946], + [12111,86831], + [12113,77385], + [12115,148370], + [12117,125241], + [12119,62761], + [12121,16410], + [12123,7751], + [12125,5133], + [12127,173821], + [12129,12874], + [12131,32947], + [12133,9876], + [13001,6570], + [13003,2300], + [13005,4017], + [13007,897], + [13009,8903], + [13011,7795], + [13013,26804], + [13015,37672], + [13017,4111], + [13019,6419], + [13021,26559], + [13023,4329], + [13025,6993], + [13027,4261], + [13029,14240], + [13031,18387], + [13033,5400], + [13035,8406], + [13037,923], + [13039,15249], + [13043,3133], + [13045,37476], + [13047,25167], + [13049,3419], + [13051,53232], + [13053,880], + [13055,8064], + [13057,99585], + [13059,14450], + [13061,637], + [13063,15811], + [13065,2105], + [13067,165436], + [13069,10578], + [13071,11777], + [13073,50013], + [13075,4900], + [13077,51501], + [13079,4428], + [13081,4985], + [13083,6066], + [13085,13398], + [13087,6755], + [13089,58377], + [13091,5843], + [13093,2159], + [13095,10441], + [13097,25454], + [13099,2710], + [13101,1256], + [13103,23361], + [13105,6226], + [13107,6553], + [13109,2888], + [13111,12169], + [13113,37956], + [13115,28906], + [13117,85123], + [13119,9069], + [13121,137247], + [13123,13429], + [13125,1402], + [13127,25617], + [13129,19405], + [13131,7034], + [13133,7066], + [13135,166400], + [13137,16637], + [13139,64183], + [13141,1154], + [13143,12330], + [13145,14319], + [13147,9465], + [13149,4519], + [13151,48259], + [13153,41540], + [13155,3134], + [13157,29502], + [13159,5822], + [13161,4695], + [13163,3537], + [13165,2161], + [13167,2850], + [13169,9940], + [13171,6331], + [13173,2509], + [13175,14493], + [13177,12007], + [13179,7959], + [13181,3173], + [13183,3527], + [13185,25692], + [13187,12163], + [13189,6169], + [13191,4016], + [13193,1783], + [13195,11326], + [13197,2275], + [13199,6524], + [13201,2066], + [13205,4935], + [13207,11057], + [13209,2960], + [13211,8231], + [13213,12944], + [13215,30107], + [13217,23869], + [13219,16595], + [13221,5592], + [13223,54517], + [13225,6506], + [13227,14110], + [13229,7898], + [13231,9127], + [13233,13587], + [13235,2815], + [13237,8291], + [13239,604], + [13241,7474], + [13243,1390], + [13245,26780], + [13247,13014], + [13249,1800], + [13251,3915], + [13253,2613], + [13255,18104], + [13257,9367], + [13259,801], + [13261,5733], + [13263,1392], + [13265,360], + [13267,6054], + [13269,2420], + [13271,2825], + [13273,2004], + [13275,12969], + [13277,10784], + [13279,7873], + [13281,6384], + [13283,2101], + [13285,18142], + [13287,2349], + [13289,2370], + [13291,12650], + [13293,8606], + [13295,23173], + [13297,37839], + [13299,9903], + [13301,1166], + [13303,4668], + [13305,9987], + [13307,748], + [13309,1583], + [13311,12222], + [13313,25644], + [13315,2402], + [13317,2823], + [13319,2665], + [13321,6830], + [15001,26897], + [15003,136259], + [15007,11582], + [15009,22126], + [16001,130699], + [16003,1941], + [16005,23331], + [16007,2914], + [16009,3878], + [16011,15295], + [16013,4031], + [16015,3485], + [16017,18369], + [16019,37805], + [16021,4937], + [16023,1202], + [16025,507], + [16027,61759], + [16029,2906], + [16031,7907], + [16033,264], + [16035,3453], + [16037,2089], + [16039,7246], + [16041,5845], + [16043,5548], + [16045,7951], + [16047,4659], + [16049,7826], + [16051,12099], + [16053,5734], + [16055,62837], + [16057,9472], + [16059,3592], + [16061,1489], + [16063,1469], + [16065,13559], + [16067,6265], + [16069,13738], + [16071,2148], + [16073,3819], + [16075,8862], + [16077,2116], + [16079,4216], + [16081,2858], + [16083,25897], + [16085,3947], + [16087,4154], + [17001,24220], + [17003,1486], + [17005,5625], + [17007,13883], + [17009,1931], + [17011,10411], + [17013,2046], + [17015,5105], + [17017,3625], + [17019,35285], + [17021,11563], + [17023,6226], + [17025,5629], + [17027,14304], + [17029,14037], + [17031,558269], + [17033,7043], + [17035,4601], + [17037,21905], + [17039,5632], + [17041,6227], + [17043,193611], + [17045,6193], + [17047,2833], + [17049,15006], + [17051,8055], + [17053,5048], + [17055,13622], + [17057,9867], + [17059,2019], + [17061,4770], + [17063,16523], + [17065,3432], + [17067,6906], + [17069,1691], + [17071,2394], + [17073,15300], + [17075,10877], + [17077,10890], + [17079,4494], + [17081,12476], + [17083,8712], + [17085,7166], + [17087,5059], + [17089,96775], + [17091,28532], + [17093,29492], + [17095,12009], + [17097,123594], + [17099,30113], + [17101,4886], + [17103,9630], + [17105,12208], + [17107,9136], + [17109,7027], + [17111,82260], + [17113,40502], + [17115,28589], + [17117,16153], + [17119,76031], + [17121,12678], + [17123,4197], + [17125,4654], + [17127,4997], + [17129,4764], + [17131,5418], + [17133,14142], + [17135,9544], + [17137,9950], + [17139,4964], + [17141,16248], + [17143,38252], + [17145,7313], + [17147,6248], + [17149,6332], + [17151,1722], + [17153,1699], + [17155,1993], + [17157,11076], + [17159,6089], + [17161,28603], + [17163,57150], + [17165,8103], + [17167,53485], + [17169,2773], + [17171,2114], + [17173,9426], + [17175,2004], + [17177,12521], + [17179,42513], + [17181,6161], + [17183,20725], + [17185,4237], + [17187,4676], + [17189,6115], + [17191,7176], + [17193,5791], + [17195,14527], + [17197,155116], + [17199,22801], + [17201,60861], + [17203,14799], + [18001,10686], + [18003,92083], + [18005,22410], + [18007,3007], + [18009,3841], + [18011,22351], + [18013,5777], + [18015,7086], + [18017,10552], + [18019,33668], + [18021,9499], + [18023,9334], + [18025,3483], + [18027,9576], + [18029,19528], + [18031,9575], + [18033,14237], + [18035,26827], + [18037,15033], + [18039,46972], + [18041,7755], + [18043,23400], + [18045,6154], + [18047,9691], + [18049,6694], + [18051,11817], + [18053,18543], + [18055,11103], + [18057,101587], + [18059,28996], + [18061,14565], + [18063,53802], + [18065,15043], + [18067,26449], + [18069,13147], + [18071,14555], + [18073,11383], + [18075,6361], + [18077,9663], + [18079,9490], + [18081,51219], + [18083,11655], + [18085,26499], + [18087,8110], + [18089,91760], + [18091,25997], + [18093,15601], + [18095,31215], + [18097,134175], + [18099,13844], + [18101,4029], + [18103,10925], + [18105,22071], + [18107,12659], + [18109,27512], + [18111,4942], + [18113,14195], + [18115,2392], + [18117,6432], + [18119,7286], + [18121,5398], + [18123,5345], + [18125,4692], + [18127,45008], + [18129,9206], + [18131,4246], + [18133,12278], + [18135,8312], + [18137,11261], + [18139,6035], + [18141,53164], + [18143,7328], + [18145,14568], + [18147,7357], + [18149,7466], + [18151,11327], + [18153,6691], + [18155,3133], + [18157,34581], + [18159,6110], + [18161,2688], + [18163,41844], + [18165,5184], + [18167,24545], + [18169,10762], + [18171,3401], + [18173,21326], + [18175,9114], + [18177,17567], + [18179,10855], + [18181,7957], + [18183,12862], + [19001,2917], + [19003,1530], + [19005,4735], + [19007,4512], + [19009,2295], + [19011,9188], + [19013,29640], + [19015,8695], + [19017,8294], + [19019,6420], + [19021,5056], + [19023,5542], + [19025,3689], + [19027,7737], + [19029,4969], + [19031,6161], + [19033,12442], + [19035,4495], + [19037,4308], + [19039,3144], + [19041,6137], + [19043,6106], + [19045,13361], + [19047,4854], + [19049,27987], + [19051,3032], + [19053,2615], + [19055,6666], + [19057,10592], + [19059,7438], + [19061,27214], + [19063,3265], + [19065,6145], + [19067,4732], + [19069,3422], + [19071,2711], + [19073,3223], + [19075,4929], + [19077,4272], + [19079,4956], + [19081,4390], + [19083,5850], + [19085,5569], + [19087,6507], + [19089,3127], + [19091,3819], + [19093,2880], + [19095,6009], + [19097,6940], + [19099,12084], + [19101,4443], + [19103,22925], + [19105,6572], + [19107,3797], + [19109,6275], + [19111,9773], + [19113,53364], + [19115,3500], + [19117,3287], + [19119,5707], + [19121,6507], + [19123,8297], + [19125,12663], + [19127,9571], + [19129,5585], + [19131,3677], + [19133,3248], + [19135,2975], + [19137,3659], + [19139,10823], + [19141,5861], + [19143,2690], + [19145,5319], + [19147,3370], + [19149,10492], + [19151,2826], + [19153,106800], + [19155,26247], + [19157,5657], + [19159,1968], + [19161,4061], + [19163,43683], + [19165,4697], + [19167,15680], + [19169,20340], + [19171,5303], + [19173,2463], + [19175,4010], + [19177,2859], + [19179,9516], + [19181,17782], + [19183,6971], + [19185,2338], + [19187,10938], + [19189,3707], + [19191,6235], + [19193,25736], + [19195,2738], + [19197,4136], + [20001,4155], + [20003,2874], + [20005,4826], + [20007,1992], + [20009,8480], + [20011,4910], + [20013,3206], + [20015,22250], + [20017,1114], + [20019,1397], + [20021,6622], + [20023,1158], + [20025,885], + [20027,3129], + [20029,3182], + [20031,3407], + [20033,745], + [20035,9442], + [20037,10045], + [20039,1232], + [20041,7045], + [20043,2949], + [20045,16737], + [20047,1127], + [20049,1130], + [20051,9569], + [20053,2106], + [20055,7079], + [20057,5763], + [20059,8326], + [20061,5193], + [20063,1256], + [20065,1052], + [20067,1910], + [20069,1871], + [20071,537], + [20073,2404], + [20075,684], + [20077,2128], + [20079,10015], + [20081,1103], + [20083,866], + [20085,4435], + [20087,6193], + [20089,1369], + [20091,155631], + [20093,1134], + [20095,3102], + [20097,957], + [20099,5639], + [20101,757], + [20103,21378], + [20105,1273], + [20107,3940], + [20109,1231], + [20111,7381], + [20113,9562], + [20115,4377], + [20117,3662], + [20119,1508], + [20121,12116], + [20123,2454], + [20125,9768], + [20127,2085], + [20129,1004], + [20131,4612], + [20133,4795], + [20135,1315], + [20137,1977], + [20139,5591], + [20141,1590], + [20143,2581], + [20145,2028], + [20147,2388], + [20149,9247], + [20151,3087], + [20153,1253], + [20155,17948], + [20157,2172], + [20159,3187], + [20161,11174], + [20163,2294], + [20165,1425], + [20167,2765], + [20169,15313], + [20171,1991], + [20173,117653], + [20175,3285], + [20177,40443], + [20179,1237], + [20181,2222], + [20183,1734], + [20185,1631], + [20187,607], + [20189,1731], + [20191,7998], + [20193,3106], + [20195,1341], + [20197,2813], + [20199,762], + [20201,2332], + [20203,803], + [20205,3111], + [20207,1189], + [20209,18512], + [21001,7276], + [21003,7587], + [21005,9661], + [21007,3356], + [21009,14654], + [21011,3986], + [21013,8140], + [21015,44814], + [21017,6190], + [21019,14295], + [21021,8872], + [21023,3398], + [21025,4265], + [21027,7701], + [21029,30708], + [21031,4960], + [21033,4906], + [21035,11352], + [21037,28482], + [21039,2159], + [21041,2954], + [21043,8775], + [21045,6179], + [21047,15080], + [21049,11811], + [21051,6677], + [21053,4280], + [21055,3451], + [21057,2769], + [21059,31025], + [21061,4828], + [21063,2246], + [21065,5100], + [21067,58860], + [21069,5534], + [21071,12250], + [21073,12900], + [21075,1606], + [21077,2955], + [21079,6754], + [21081,8725], + [21083,13206], + [21085,9453], + [21087,4838], + [21089,13064], + [21091,3145], + [21093,29832], + [21095,9367], + [21097,6334], + [21099,6345], + [21101,12730], + [21103,5843], + [21105,1714], + [21107,15757], + [21109,5453], + [21111,150646], + [21113,17096], + [21115,8450], + [21117,48129], + [21119,4780], + [21121,11012], + [21123,5685], + [21125,23237], + [21127,5633], + [21129,2273], + [21131,4321], + [21133,7226], + [21135,4986], + [21137,8489], + [21139,4010], + [21141,9067], + [21143,3100], + [21145,21820], + [21147,5664], + [21149,3633], + [21151,27356], + [21153,4174], + [21155,6113], + [21157,13297], + [21159,3496], + [21161,5477], + [21163,10185], + [21165,2311], + [21167,8506], + [21169,3959], + [21171,4628], + [21173,8993], + [21175,4301], + [21177,10497], + [21179,15703], + [21181,2408], + [21183,8582], + [21185,22654], + [21187,4292], + [21189,1671], + [21191,5515], + [21193,8129], + [21195,20284], + [21197,4041], + [21199,25442], + [21201,884], + [21203,6577], + [21205,5994], + [21207,7519], + [21209,17767], + [21211,15055], + [21213,5888], + [21215,8737], + [21217,9376], + [21219,4062], + [21221,5487], + [21223,3227], + [21225,4965], + [21227,31791], + [21229,4482], + [21231,7430], + [21233,4506], + [21235,12567], + [21237,2097], + [21239,8362], + [22001,22596], + [22003,7574], + [22005,40687], + [22007,7271], + [22009,12028], + [22011,13575], + [22013,3891], + [22015,38074], + [22017,48021], + [22019,55066], + [22021,3976], + [22023,3671], + [22025,3541], + [22027,3770], + [22029,5550], + [22031,9112], + [22033,88420], + [22035,1080], + [22037,6064], + [22039,11053], + [22041,6970], + [22043,8117], + [22045,21251], + [22047,7893], + [22049,5394], + [22051,105949], + [22053,11423], + [22055,72519], + [22057,36024], + [22059,6378], + [22061,11311], + [22063,54877], + [22065,1930], + [22067,6510], + [22069,9358], + [22071,26664], + [22073,42255], + [22075,7412], + [22077,7503], + [22079,38347], + [22081,2413], + [22083,6607], + [22085,8776], + [22087,11179], + [22089,18233], + [22091,2714], + [22093,5954], + [22095,7538], + [22097,23171], + [22099,18203], + [22101,14811], + [22103,99666], + [22105,37806], + [22107,1197], + [22109,34339], + [22111,8407], + [22113,21930], + [22115,14107], + [22117,13307], + [22119,11830], + [22121,7684], + [22123,4317], + [22125,3863], + [22127,4619], + [23001,29268], + [23003,21080], + [23005,59584], + [23007,8754], + [23009,14982], + [23011,34721], + [23013,9982], + [23015,10256], + [23017,17698], + [23019,44825], + [23021,6143], + [23023,9755], + [23025,16644], + [23027,11196], + [23029,10194], + [23031,54817], + [24001,20886], + [24003,127821], + [24005,146202], + [24009,25346], + [24011,10283], + [24013,60218], + [24015,29439], + [24017,25579], + [24019,8764], + [24021,63682], + [24023,12002], + [24025,80930], + [24027,48390], + [24029,5195], + [24031,101222], + [24033,37090], + [24035,18741], + [24037,30826], + [24039,5739], + [24041,10946], + [24043,40224], + [24045,22944], + [24047,18571], + [24510,25374], + [25001,55311], + [25003,18064], + [25005,119872], + [25007,2631], + [25009,144837], + [25011,11201], + [25013,87318], + [25015,22281], + [25017,226956], + [25019,1914], + [25021,125294], + [25023,121227], + [25025,58613], + [25027,171683], + [26001,4848], + [26003,3014], + [26005,41392], + [26007,10686], + [26009,9748], + [26011,5928], + [26013,2512], + [26015,23471], + [26017,33125], + [26019,6601], + [26021,43519], + [26023,14064], + [26025,36221], + [26027,16699], + [26029,9841], + [26031,10186], + [26033,10681], + [26035,10861], + [26037,25098], + [26039,5087], + [26041,13207], + [26043,9617], + [26045,31798], + [26047,12135], + [26049,98714], + [26051,9893], + [26053,4600], + [26055,30502], + [26057,12102], + [26059,17037], + [26061,10378], + [26063,12731], + [26065,47639], + [26067,20657], + [26069,9759], + [26071,4216], + [26073,14815], + [26075,47372], + [26077,56823], + [26079,7436], + [26081,165741], + [26083,862], + [26085,3946], + [26087,35482], + [26089,7916], + [26091,31541], + [26093,76982], + [26095,2109], + [26097,4304], + [26099,263863], + [26101,8321], + [26103,16286], + [26105,10207], + [26107,13267], + [26109,8117], + [26111,27675], + [26113,6648], + [26115,52710], + [26117,21815], + [26119,4171], + [26121,45133], + [26123,18857], + [26125,325971], + [26127,8892], + [26129,8253], + [26131,2358], + [26133,8928], + [26135,3466], + [26137,9779], + [26139,100913], + [26141,5342], + [26143,9670], + [26145,50785], + [26147,59185], + [26149,18127], + [26151,16194], + [26153,3090], + [26155,23149], + [26157,20297], + [26159,21591], + [26161,56241], + [26163,264553], + [26165,12102], + [27001,6258], + [27003,104902], + [27005,12438], + [27007,12188], + [27009,14382], + [27011,1863], + [27013,16731], + [27015,9552], + [27017,9791], + [27019,34009], + [27021,11620], + [27023,4250], + [27025,21916], + [27027,15043], + [27029,3372], + [27031,1203], + [27033,4165], + [27035,25676], + [27037,109638], + [27039,7783], + [27041,15799], + [27043,5191], + [27045,7301], + [27047,9578], + [27049,16052], + [27051,2269], + [27053,205973], + [27055,6334], + [27057,8202], + [27059,16491], + [27061,15239], + [27063,3948], + [27065,6278], + [27067,14437], + [27069,1546], + [27071,4131], + [27073,2528], + [27075,3393], + [27077,1704], + [27079,10775], + [27081,2121], + [27083,7979], + [27085,13986], + [27087,1142], + [27089,3721], + [27091,7480], + [27093,9359], + [27095,9952], + [27097,14821], + [27099,10025], + [27101,3363], + [27103,9018], + [27105,5600], + [27107,1953], + [27109,39692], + [27111,23800], + [27113,4532], + [27115,10256], + [27117,3553], + [27119,9865], + [27121,4417], + [27123,77376], + [27125,1454], + [27127,5771], + [27129,5467], + [27131,17464], + [27133,3583], + [27135,6065], + [27137,49017], + [27139,45872], + [27141,36222], + [27143,5864], + [27145,50959], + [27147,12656], + [27149,3044], + [27151,3316], + [27153,9753], + [27155,1172], + [27157,8153], + [27159,5520], + [27161,6624], + [27163,73764], + [27165,3103], + [27167,2328], + [27169,13227], + [27171,51973], + [27173,3734], + [28001,5696], + [28003,12818], + [28005,4503], + [28007,5178], + [28009,2570], + [28011,4671], + [28013,4625], + [28015,3924], + [28017,4175], + [28019,3001], + [28021,603], + [28023,5417], + [28025,4181], + [28027,2375], + [28029,6250], + [28031,5854], + [28033,46462], + [28035,17290], + [28037,2923], + [28039,9713], + [28041,4794], + [28043,6081], + [28045,16132], + [28047,46822], + [28049,25141], + [28051,1369], + [28053,1118], + [28055,308], + [28057,9438], + [28059,36295], + [28061,4302], + [28063,531], + [28065,2534], + [28067,21226], + [28069,1787], + [28071,12949], + [28073,20704], + [28075,17967], + [28077,4285], + [28079,5228], + [28081,24207], + [28083,3129], + [28085,11596], + [28087,13800], + [28089,31091], + [28091,8273], + [28093,7566], + [28095,11177], + [28097,2917], + [28099,8320], + [28101,6997], + [28103,1240], + [28105,9004], + [28107,8060], + [28109,19595], + [28111,4500], + [28113,8479], + [28115,11550], + [28117,8370], + [28119,1026], + [28121,50895], + [28123,6285], + [28125,688], + [28127,7635], + [28129,6458], + [28131,5964], + [28133,2799], + [28135,2488], + [28137,8707], + [28139,8054], + [28141,7933], + [28143,926], + [28145,10373], + [28147,4220], + [28149,10365], + [28151,5300], + [28153,6307], + [28155,4291], + [28157,1324], + [28159,5112], + [28161,3671], + [28163,4832], + [29001,6413], + [29003,7255], + [29005,2199], + [29007,7732], + [29009,12425], + [29011,5168], + [29013,6597], + [29015,8109], + [29017,5167], + [29019,38646], + [29021,22450], + [29023,14602], + [29025,3725], + [29027,14815], + [29029,18850], + [29031,28907], + [29033,3706], + [29035,2451], + [29037,37197], + [29039,5788], + [29041,3111], + [29043,34920], + [29045,2672], + [29047,64605], + [29049,7799], + [29051,26086], + [29053,6272], + [29055,8725], + [29057,3414], + [29059,6619], + [29061,3102], + [29063,3828], + [29065,5987], + [29067,5898], + [29069,8135], + [29071,38058], + [29073,6222], + [29075,2581], + [29077,83630], + [29079,3585], + [29081,3198], + [29083,8027], + [29085,3966], + [29087,1976], + [29089,3553], + [29091,15181], + [29093,3596], + [29095,126535], + [29097,37728], + [29099,77046], + [29101,15489], + [29103,1486], + [29105,13762], + [29107,12273], + [29109,14426], + [29111,3553], + [29113,21848], + [29115,4363], + [29117,5267], + [29119,7465], + [29121,6076], + [29123,4584], + [29125,3892], + [29127,9915], + [29129,1541], + [29131,10176], + [29133,3537], + [29135,5744], + [29137,3477], + [29139,4465], + [29141,7442], + [29143,5447], + [29145,22120], + [29147,6865], + [29149,3847], + [29151,6425], + [29153,4064], + [29155,4120], + [29157,7657], + [29159,13854], + [29161,13480], + [29163,5863], + [29165,28917], + [29167,11850], + [29169,10329], + [29171,1984], + [29173,4396], + [29175,8018], + [29177,8345], + [29179,2733], + [29181,4839], + [29183,128389], + [29185,3932], + [29186,6630], + [29187,20511], + [29189,199493], + [29195,6451], + [29197,1606], + [29199,1560], + [29201,13769], + [29203,3165], + [29205,2700], + [29207,11484], + [29209,14800], + [29211,1974], + [29213,20508], + [29215,9478], + [29217,7155], + [29219,13222], + [29221,8047], + [29223,4987], + [29225,14880], + [29227,877], + [29229,7453], + [29510,21474], + [30001,3923], + [30003,2207], + [30005,1469], + [30007,3173], + [30009,4468], + [30011,775], + [30013,23315], + [30015,1891], + [30017,4205], + [30019,799], + [30021,3758], + [30023,2186], + [30025,1375], + [30027,4869], + [30029,38321], + [30031,31696], + [30033,764], + [30035,1884], + [30037,414], + [30039,1419], + [30041,3957], + [30043,5345], + [30045,1040], + [30047,9322], + [30049,21409], + [30051,821], + [30053,8672], + [30055,956], + [30057,4191], + [30059,833], + [30061,1828], + [30063,26347], + [30065,2423], + [30067,6025], + [30069,298], + [30071,1936], + [30073,2031], + [30075,970], + [30077,2355], + [30079,603], + [30081,19114], + [30083,4800], + [30085,1996], + [30087,2486], + [30089,5660], + [30091,1403], + [30093,7745], + [30095,4462], + [30097,1840], + [30099,2608], + [30101,1596], + [30103,373], + [30105,3135], + [30107,823], + [30109,516], + [30111,50772], + [31001,10085], + [31003,3093], + [31005,260], + [31007,362], + [31009,280], + [31011,2653], + [31013,4002], + [31015,1010], + [31017,1470], + [31019,16640], + [31021,2580], + [31023,3542], + [31025,10121], + [31027,4174], + [31029,1740], + [31031,2844], + [31033,3813], + [31035,2848], + [31037,2636], + [31039,3507], + [31041,5090], + [31043,3926], + [31045,2931], + [31047,6524], + [31049,871], + [31051,2335], + [31053,10984], + [31055,119159], + [31057,883], + [31059,2359], + [31061,1437], + [31063,1229], + [31065,2163], + [31067,7445], + [31069,1016], + [31071,933], + [31073,893], + [31075,375], + [31077,1016], + [31079,16189], + [31081,4309], + [31083,1615], + [31085,494], + [31087,1264], + [31089,4769], + [31091,376], + [31093,2786], + [31095,2616], + [31097,1518], + [31099,2822], + [31101,3544], + [31103,476], + [31105,1563], + [31107,3721], + [31109,70092], + [31111,13071], + [31113,407], + [31115,370], + [31117,275], + [31119,11940], + [31121,3419], + [31123,2113], + [31125,1437], + [31127,2428], + [31129,1857], + [31131,5649], + [31133,1071], + [31135,1321], + [31137,4157], + [31139,3462], + [31141,12186], + [31143,2291], + [31145,4525], + [31147,3073], + [31149,744], + [31151,3631], + [31153,51979], + [31155,9108], + [31157,10952], + [31159,6490], + [31161,2292], + [31163,1322], + [31165,642], + [31167,2561], + [31169,2308], + [31171,377], + [31173,1180], + [31175,1901], + [31177,8583], + [31179,3055], + [31181,1511], + [31183,438], + [31185,5337], + [32001,9372], + [32003,430930], + [32005,21630], + [32007,16741], + [32009,400], + [32011,895], + [32013,5877], + [32015,2198], + [32017,2067], + [32019,20914], + [32021,1423], + [32023,17528], + [32027,1731], + [32029,1908], + [32031,116760], + [32033,3403], + [32510,16113], + [33001,20899], + [33003,16150], + [33005,17892], + [33007,8617], + [33009,19905], + [33011,104625], + [33013,39711], + [33015,95858], + [33017,30489], + [33019,11508], + [34001,64438], + [34003,204417], + [34005,103345], + [34007,86207], + [34009,33158], + [34011,28952], + [34013,75475], + [34015,83340], + [34017,65698], + [34019,43153], + [34021,51641], + [34023,143467], + [34025,191808], + [34027,141134], + [34029,217740], + [34031,92009], + [34033,18827], + [34035,71996], + [34037,51698], + [34039,80002], + [34041,34769], + [35001,116135], + [35003,1698], + [35005,15656], + [35006,3975], + [35007,3271], + [35009,10444], + [35011,656], + [35013,32802], + [35015,17454], + [35017,6553], + [35019,917], + [35021,319], + [35023,1120], + [35025,16531], + [35027,6942], + [35028,4278], + [35029,4408], + [35031,7801], + [35033,903], + [35035,14521], + [35037,2634], + [35039,5408], + [35041,4634], + [35043,34174], + [35045,32874], + [35047,3421], + [35049,18329], + [35051,3542], + [35053,3255], + [35055,3715], + [35057,4772], + [35059,1388], + [35061,17364], + [36001,51081], + [36003,14135], + [36005,67740], + [36007,43800], + [36009,22155], + [36011,19512], + [36013,34853], + [36015,21922], + [36017,13482], + [36019,16514], + [36021,14464], + [36023,10789], + [36025,13387], + [36027,66872], + [36029,197527], + [36031,8976], + [36033,9668], + [36035,15378], + [36037,18876], + [36039,14271], + [36041,2225], + [36043,18870], + [36045,25629], + [36047,202772], + [36049,8894], + [36051,18182], + [36053,18408], + [36055,145661], + [36057,12745], + [36059,326716], + [36061,85185], + [36063,56068], + [36065,57180], + [36067,90619], + [36069,29039], + [36071,84996], + [36073,12126], + [36075,32138], + [36077,14382], + [36079,29283], + [36081,212665], + [36083,36500], + [36085,123320], + [36087,73186], + [36089,24608], + [36091,61305], + [36093,30741], + [36095,9903], + [36097,5621], + [36099,8329], + [36101,29474], + [36103,381253], + [36105,18665], + [36107,14791], + [36109,11096], + [36111,37590], + [36113,17699], + [36115,15941], + [36117,26204], + [36119,144713], + [36121,13898], + [36123,6208], + [37001,46056], + [37003,15888], + [37005,4527], + [37007,5321], + [37009,11451], + [37011,7172], + [37013,16437], + [37015,3817], + [37017,9676], + [37019,55850], + [37021,62412], + [37023,31019], + [37025,63237], + [37027,32119], + [37029,4312], + [37031,30028], + [37033,7089], + [37035,56588], + [37037,21186], + [37039,12628], + [37041,4471], + [37043,5112], + [37045,33798], + [37047,16832], + [37049,31032], + [37051,60032], + [37053,11657], + [37055,13938], + [37057,64658], + [37059,18228], + [37061,13793], + [37063,32459], + [37065,9206], + [37067,85064], + [37069,20901], + [37071,73033], + [37073,3367], + [37075,3710], + [37077,16647], + [37079,4874], + [37081,107294], + [37083,10080], + [37085,35177], + [37087,22834], + [37089,40032], + [37091,3479], + [37093,9453], + [37095,1418], + [37097,67010], + [37099,11356], + [37101,68353], + [37103,3280], + [37105,16469], + [37107,14590], + [37109,36341], + [37111,16883], + [37113,14211], + [37115,7979], + [37117,6532], + [37119,179211], + [37121,7090], + [37123,8411], + [37125,36764], + [37127,25827], + [37129,63331], + [37131,3989], + [37133,46078], + [37135,20176], + [37137,4849], + [37139,9770], + [37141,21956], + [37143,4903], + [37145,13184], + [37147,38982], + [37149,7689], + [37151,56894], + [37153,11830], + [37155,27806], + [37157,31301], + [37159,49297], + [37161,24891], + [37163,17411], + [37165,7473], + [37167,25458], + [37169,20142], + [37171,27538], + [37173,4161], + [37175,11636], + [37177,1044], + [37179,80382], + [37181,8391], + [37183,226197], + [37185,3752], + [37187,2781], + [37189,14451], + [37191,30709], + [37193,27592], + [37195,19581], + [37197,15933], + [37199,7516], + [38001,981], + [38003,3568], + [38005,1094], + [38007,541], + [38009,2575], + [38011,1395], + [38013,994], + [38015,34744], + [38017,42619], + [38019,1499], + [38021,1742], + [38023,904], + [38025,1951], + [38027,854], + [38029,1738], + [38031,1362], + [38033,871], + [38035,16987], + [38037,1145], + [38039,907], + [38041,1091], + [38043,1215], + [38045,1645], + [38047,930], + [38049,2364], + [38051,1153], + [38053,4482], + [38055,4198], + [38057,3856], + [38059,12243], + [38061,2824], + [38063,1141], + [38065,918], + [38067,2460], + [38069,1585], + [38071,3577], + [38073,1418], + [38075,1065], + [38077,5072], + [38079,1257], + [38081,1266], + [38083,688], + [38085,258], + [38087,380], + [38089,12110], + [38091,652], + [38093,6994], + [38095,830], + [38097,2522], + [38099,3324], + [38101,19974], + [38103,1893], + [38105,11739], + [39001,9870], + [39003,33116], + [39005,19407], + [39007,26890], + [39009,10862], + [39011,20798], + [39013,23560], + [39015,16480], + [39017,114392], + [39019,10745], + [39021,14589], + [39023,39032], + [39025,74570], + [39027,15488], + [39029,35726], + [39031,12325], + [39033,15436], + [39035,202699], + [39037,22004], + [39039,13038], + [39041,66356], + [39043,22160], + [39045,50797], + [39047,9473], + [39049,211237], + [39051,15731], + [39053,10645], + [39055,34143], + [39057,52072], + [39059,13407], + [39061,177886], + [39063,26310], + [39065,9949], + [39067,5792], + [39069,10479], + [39071,15678], + [39073,9737], + [39075,10796], + [39077,18956], + [39079,11309], + [39081,22828], + [39083,22340], + [39085,73278], + [39087,20306], + [39089,59514], + [39091,17964], + [39093,79520], + [39095,81763], + [39097,13835], + [39099,59903], + [39101,19023], + [39103,64598], + [39105,8316], + [39107,19452], + [39109,41371], + [39111,5463], + [39113,129034], + [39115,5041], + [39117,14077], + [39119,27867], + [39121,5135], + [39123,14628], + [39125,7086], + [39127,12357], + [39129,20593], + [39131,9157], + [39133,45990], + [39135,17022], + [39137,16412], + [39139,41472], + [39141,22278], + [39143,18896], + [39145,22609], + [39147,17086], + [39149,20422], + [39151,111097], + [39153,124833], + [39155,55194], + [39157,30458], + [39159,21669], + [39161,11650], + [39163,4632], + [39165,87988], + [39167,22307], + [39169,36759], + [39171,13452], + [39173,35757], + [39175,8462], + [40001,5585], + [40003,1978], + [40005,4557], + [40007,1968], + [40009,6767], + [40011,3136], + [40013,12344], + [40015,7013], + [40017,43550], + [40019,14699], + [40021,11223], + [40023,4698], + [40025,970], + [40027,66677], + [40029,2091], + [40031,20905], + [40033,2117], + [40035,4686], + [40037,23294], + [40039,8060], + [40041,13557], + [40043,2124], + [40045,1688], + [40047,16970], + [40049,8878], + [40051,18538], + [40053,1916], + [40055,1605], + [40057,747], + [40059,1327], + [40061,4165], + [40063,3875], + [40065,6392], + [40067,2026], + [40069,3441], + [40071,12834], + [40073,5521], + [40075,2673], + [40077,3437], + [40079,15213], + [40081,12013], + [40083,15608], + [40085,3305], + [40087,15295], + [40089,9485], + [40091,6172], + [40093,3084], + [40095,4891], + [40097,12749], + [40099,4612], + [40101,16526], + [40103,3821], + [40105,3610], + [40107,3058], + [40109,145050], + [40111,9668], + [40113,14121], + [40115,8545], + [40117,5267], + [40119,17813], + [40121,13851], + [40123,10805], + [40125,20240], + [40127,4016], + [40129,1629], + [40131,34031], + [40133,6011], + [40135,12113], + [40137,15560], + [40139,4505], + [40141,2076], + [40143,150574], + [40145,26165], + [40147,17076], + [40149,4086], + [40151,2993], + [40153,6611], + [41001,7352], + [41003,14878], + [41005,110509], + [41007,10218], + [41009,17150], + [41011,21829], + [41013,11287], + [41015,8484], + [41017,55646], + [41019,43298], + [41021,834], + [41023,3545], + [41025,3475], + [41027,3955], + [41029,63869], + [41031,7189], + [41033,31751], + [41035,25308], + [41037,3470], + [41039,80336], + [41041,12460], + [41043,43486], + [41045,8187], + [41047,79002], + [41049,3586], + [41051,82995], + [41053,23732], + [41055,921], + [41057,8354], + [41059,21270], + [41061,10298], + [41063,3404], + [41065,7035], + [41067,99073], + [41069,711], + [41071,29551], + [42001,37523], + [42003,282913], + [42005,27489], + [42007,54759], + [42009,23025], + [42011,109736], + [42013,45306], + [42015,21600], + [42017,187367], + [42019,74359], + [42021,48085], + [42023,1771], + [42025,21984], + [42027,36372], + [42029,128565], + [42031,14578], + [42033,29203], + [42035,11902], + [42037,20098], + [42039,28559], + [42041,77212], + [42043,66408], + [42045,118532], + [42047,12140], + [42049,66869], + [42051,41227], + [42053,1882], + [42055,57245], + [42057,6824], + [42059,12579], + [42061,17061], + [42063,28089], + [42065,17960], + [42067,9649], + [42069,52334], + [42071,160209], + [42073,29597], + [42075,46731], + [42077,84259], + [42079,86929], + [42081,41462], + [42083,14083], + [42085,36143], + [42087,16670], + [42089,38726], + [42091,185460], + [42093,5844], + [42095,83854], + [42097,28952], + [42099,18293], + [42101,132740], + [42103,19213], + [42105,7239], + [42107,48871], + [42109,13983], + [42111,31466], + [42113,2619], + [42115,15207], + [42117,15742], + [42119,12356], + [42121,18569], + [42123,14237], + [42125,72080], + [42127,18637], + [42129,130218], + [42131,9936], + [42133,146733], + [44001,9745], + [44003,42001], + [44005,15722], + [44007,102551], + [44009,29818], + [45001,8215], + [45003,51589], + [45005,835], + [45007,67565], + [45009,2417], + [45011,5492], + [45013,53194], + [45015,57397], + [45017,4305], + [45019,93297], + [45021,18043], + [45023,8660], + [45025,11297], + [45027,8361], + [45029,10440], + [45031,16832], + [45033,6582], + [45035,41913], + [45037,8184], + [45039,4625], + [45041,32615], + [45043,20487], + [45045,150021], + [45047,19431], + [45049,3906], + [45051,118821], + [45053,7078], + [45055,20471], + [45057,30312], + [45059,20004], + [45061,3008], + [45063,92817], + [45065,2958], + [45067,5711], + [45069,5044], + [45071,11443], + [45073,29698], + [45075,13603], + [45077,42907], + [45079,58313], + [45081,6210], + [45083,93560], + [45085,21000], + [45087,8183], + [45089,5532], + [45091,82727], + [46003,1052], + [46005,4808], + [46007,694], + [46009,2235], + [46011,8000], + [46013,10580], + [46015,1750], + [46017,183], + [46019,3731], + [46021,747], + [46023,2552], + [46025,1373], + [46027,2456], + [46029,8958], + [46031,647], + [46033,3852], + [46035,5613], + [46037,1869], + [46039,1699], + [46041,790], + [46043,1468], + [46045,1538], + [46047,2878], + [46049,964], + [46051,2618], + [46053,1771], + [46055,1026], + [46057,2372], + [46059,1433], + [46061,1793], + [46063,748], + [46065,5522], + [46067,2944], + [46069,564], + [46071,738], + [46073,721], + [46075,498], + [46077,1904], + [46079,3681], + [46081,8753], + [46083,19617], + [46085,1042], + [46087,2068], + [46089,1075], + [46091,1287], + [46093,9875], + [46095,449], + [46097,787], + [46099,49249], + [46101,1951], + [46102,297], + [46103,35063], + [46105,1401], + [46107,1139], + [46109,2404], + [46111,905], + [46115,2104], + [46117,1203], + [46119,726], + [46121,532], + [46123,2161], + [46125,3290], + [46127,5944], + [46129,1966], + [46135,6581], + [46137,404], + [47001,23184], + [47003,14354], + [47005,5668], + [47007,4725], + [47009,47369], + [47011,35204], + [47013,12331], + [47015,5190], + [47017,9205], + [47019,19584], + [47021,14438], + [47023,5952], + [47025,10604], + [47027,2733], + [47029,12162], + [47031,17883], + [47033,4673], + [47035,25168], + [47037,100218], + [47039,4229], + [47041,6672], + [47043,17643], + [47045,11768], + [47047,15690], + [47049,7441], + [47051,13987], + [47053,16259], + [47055,9784], + [47057,8565], + [47059,22259], + [47061,4802], + [47063,18811], + [47065,92108], + [47067,2372], + [47069,5760], + [47071,9559], + [47073,20405], + [47075,3343], + [47077,9797], + [47079,11239], + [47081,7577], + [47083,2718], + [47085,6120], + [47087,4118], + [47089,18651], + [47091,6468], + [47093,124540], + [47095,1492], + [47097,5674], + [47099,15334], + [47101,4474], + [47103,12281], + [47105,21713], + [47107,18198], + [47109,9093], + [47111,8096], + [47113,23943], + [47115,9911], + [47117,11043], + [47119,31464], + [47121,4467], + [47123,16783], + [47125,42187], + [47127,2888], + [47129,6930], + [47131,10790], + [47133,7918], + [47135,2775], + [47137,2381], + [47139,6792], + [47141,23759], + [47143,11050], + [47145,19230], + [47147,24536], + [47149,81480], + [47151,8004], + [47153,5855], + [47155,33783], + [47157,129815], + [47159,7136], + [47161,4950], + [47163,55860], + [47165,63454], + [47167,20070], + [47169,2936], + [47171,6599], + [47173,6803], + [47175,2342], + [47177,11850], + [47179,40444], + [47181,5795], + [47183,10396], + [47185,9606], + [47187,86469], + [47189,50296], + [48001,15110], + [48003,4943], + [48005,25076], + [48007,9239], + [48009,4300], + [48011,1035], + [48013,12039], + [48015,11447], + [48017,1434], + [48019,10057], + [48021,20516], + [48023,1494], + [48025,6006], + [48027,67893], + [48029,308618], + [48031,5443], + [48033,397], + [48035,7469], + [48037,27116], + [48039,90433], + [48041,47530], + [48043,2461], + [48045,639], + [48047,998], + [48049,13698], + [48051,6743], + [48053,18767], + [48055,8031], + [48057,5641], + [48059,6012], + [48061,49032], + [48063,3626], + [48065,2779], + [48067,11033], + [48069,1602], + [48071,17353], + [48073,15101], + [48075,1943], + [48077,5069], + [48079,809], + [48081,1586], + [48083,3641], + [48085,252318], + [48087,1048], + [48089,7472], + [48091,62740], + [48093,5177], + [48095,1058], + [48097,15596], + [48099,15438], + [48101,540], + [48103,1247], + [48105,1220], + [48107,1396], + [48109,415], + [48111,1389], + [48113,307076], + [48115,2951], + [48117,3294], + [48119,2162], + [48121,222480], + [48123,6567], + [48125,853], + [48127,1384], + [48129,1438], + [48131,2443], + [48133,7237], + [48135,32697], + [48137,893], + [48139,56717], + [48141,84331], + [48143,13684], + [48145,4177], + [48147,12171], + [48149,10171], + [48151,1448], + [48153,1584], + [48155,445], + [48157,157718], + [48159,4161], + [48161,6991], + [48163,2823], + [48165,5355], + [48167,93911], + [48169,1413], + [48171,12514], + [48173,611], + [48175,3085], + [48177,5627], + [48179,6840], + [48181,44163], + [48183,32493], + [48185,9432], + [48187,47553], + [48189,7177], + [48191,995], + [48193,3616], + [48195,1849], + [48197,1330], + [48199,23858], + [48201,700630], + [48203,21466], + [48205,1868], + [48207,1840], + [48209,47680], + [48211,1486], + [48213,28911], + [48215,90527], + [48217,11926], + [48219,6536], + [48221,26496], + [48223,12719], + [48225,7060], + [48227,8054], + [48229,779], + [48231,29163], + [48233,7681], + [48235,759], + [48237,3418], + [48239,5231], + [48241,12542], + [48243,784], + [48245,47570], + [48247,833], + [48249,7453], + [48251,54628], + [48253,5660], + [48255,3968], + [48257,37624], + [48259,20083], + [48261,127], + [48263,411], + [48265,20879], + [48267,1987], + [48269,151], + [48271,1144], + [48273,5504], + [48275,1180], + [48277,16760], + [48279,3521], + [48281,8086], + [48283,1335], + [48285,8804], + [48287,6255], + [48289,7523], + [48291,23302], + [48293,6789], + [48295,1205], + [48297,4199], + [48299,10079], + [48301,60], + [48303,78861], + [48305,1853], + [48307,2904], + [48309,59543], + [48311,460], + [48313,4169], + [48315,3470], + [48317,1857], + [48319,1991], + [48321,9845], + [48323,6881], + [48325,15642], + [48327,823], + [48329,45624], + [48331,7984], + [48333,2217], + [48335,2170], + [48337,8615], + [48339,193382], + [48341,4359], + [48343,3872], + [48345,604], + [48347,17378], + [48349,13800], + [48351,4882], + [48353,4131], + [48355,64617], + [48357,2812], + [48359,917], + [48361,29186], + [48363,10179], + [48365,9326], + [48367,62045], + [48369,2135], + [48371,3215], + [48373,18573], + [48375,22820], + [48377,721], + [48379,5155], + [48381,50796], + [48383,942], + [48385,1643], + [48387,4517], + [48389,2254], + [48391,2210], + [48393,529], + [48395,5646], + [48397,36726], + [48399,3807], + [48401,16534], + [48403,4784], + [48405,3007], + [48407,10161], + [48409,16516], + [48411,2308], + [48413,940], + [48415,4983], + [48417,1484], + [48419,7975], + [48421,886], + [48423,69080], + [48425,4105], + [48427,8247], + [48429,3385], + [48431,584], + [48433,615], + [48435,1222], + [48437,1845], + [48439,409741], + [48441,39547], + [48443,334], + [48445,2812], + [48447,806], + [48449,7570], + [48451,32313], + [48453,161337], + [48455,5579], + [48457,8194], + [48459,15809], + [48461,1178], + [48463,6174], + [48465,8284], + [48467,22270], + [48469,23358], + [48471,15375], + [48473,14260], + [48475,3241], + [48477,12959], + [48479,25898], + [48481,11926], + [48483,2159], + [48485,32069], + [48487,3524], + [48489,2441], + [48491,139729], + [48493,18463], + [48495,1753], + [48497,27032], + [48499,19049], + [48501,2174], + [48503,7110], + [48505,2033], + [48507,1490], + [49001,2695], + [49003,21548], + [49005,38032], + [49007,6693], + [49009,496], + [49011,104135], + [49013,7513], + [49015,4207], + [49017,2158], + [49019,2248], + [49021,18989], + [49023,5087], + [49025,2998], + [49027,5404], + [49029,5181], + [49031,773], + [49033,1157], + [49035,230174], + [49037,3535], + [49039,10459], + [49041,9052], + [49043,10252], + [49045,21014], + [49047,13261], + [49049,192812], + [49051,10795], + [49053,67294], + [49055,1229], + [49057,65949], + [50001,6292], + [50003,7114], + [50005,6551], + [50007,21017], + [50009,1773], + [50011,11274], + [50013,1810], + [50015,4163], + [50017,6187], + [50019,6512], + [50021,14672], + [50023,8928], + [50025,6440], + [50027,9971], + [51001,9172], + [51003,20804], + [51005,5859], + [51007,5390], + [51009,11041], + [51011,6702], + [51013,22318], + [51015,30714], + [51017,1834], + [51019,35600], + [51021,2903], + [51023,15099], + [51025,3357], + [51027,8311], + [51029,4544], + [51031,21245], + [51033,8336], + [51035,12659], + [51036,1761], + [51037,3815], + [51041,93326], + [51043,5192], + [51045,2536], + [51047,16012], + [51049,3019], + [51051,5748], + [51053,8695], + [51057,3075], + [51059,168401], + [51061,25106], + [51063,6225], + [51065,8155], + [51067,20895], + [51069,30558], + [51071,6876], + [51073,14875], + [51075,9966], + [51077,6529], + [51079,6866], + [51081,1914], + [51083,10418], + [51085,44318], + [51087,63440], + [51089,16725], + [51091,1092], + [51093,13707], + [51095,23153], + [51097,2450], + [51099,8446], + [51101,7320], + [51103,3697], + [51105,8365], + [51107,82088], + [51109,13294], + [51111,3537], + [51113,5300], + [51115,3901], + [51117,9266], + [51119,4196], + [51121,20629], + [51125,4812], + [51127,9631], + [51131,2955], + [51133,4485], + [51135,4027], + [51137,12426], + [51139,9345], + [51141,7485], + [51143,23751], + [51145,14055], + [51147,4434], + [51149,10103], + [51153,81222], + [51155,12127], + [51157,2812], + [51159,2547], + [51161,34268], + [51163,8088], + [51165,30349], + [51167,10879], + [51169,9063], + [51171,16463], + [51173,10963], + [51175,5730], + [51177,39411], + [51179,37636], + [51181,2025], + [51183,2219], + [51185,16731], + [51187,14069], + [51191,21679], + [51193,5318], + [51195,13366], + [51197,11733], + [51199,20241], + [51510,14544], + [51520,5347], + [51530,1863], + [51540,3094], + [51550,58180], + [51570,6007], + [51580,1580], + [51590,7428], + [51595,754], + [51600,4007], + [51610,1490], + [51620,1487], + [51630,4037], + [51640,1838], + [51650,18430], + [51660,5591], + [51670,4020], + [51678,906], + [51680,17097], + [51683,6256], + [51685,1979], + [51690,2165], + [51700,26377], + [51710,23443], + [51720,1109], + [51730,1584], + [51735,5605], + [51740,12755], + [51750,2786], + [51760,16603], + [51770,15607], + [51775,7683], + [51790,5695], + [51800,20082], + [51810,105087], + [51820,5507], + [51830,1963], + [51840,5221], + [53001,3907], + [53003,7319], + [53005,60365], + [53007,22746], + [53009,23062], + [53011,126303], + [53013,1754], + [53015,34424], + [53017,12955], + [53019,2771], + [53021,18039], + [53023,1069], + [53025,24764], + [53027,19877], + [53029,22746], + [53031,6931], + [53033,269167], + [53035,61563], + [53037,14105], + [53039,7237], + [53041,29391], + [53043,5150], + [53045,18710], + [53047,11840], + [53049,6953], + [53051,5728], + [53053,197730], + [53055,3057], + [53057,32762], + [53059,3885], + [53061,166428], + [53063,148576], + [53065,19808], + [53067,65277], + [53069,1741], + [53071,16400], + [53073,50489], + [53075,9067], + [53077,50555], + [54001,5116], + [54003,33279], + [54005,6816], + [54007,4120], + [54009,7545], + [54011,21721], + [54013,2364], + [54015,2679], + [54017,2619], + [54019,11580], + [54021,2012], + [54023,4871], + [54025,10925], + [54027,8033], + [54029,9806], + [54031,4859], + [54033,20683], + [54035,10093], + [54037,15033], + [54039,46398], + [54041,5782], + [54043,6012], + [54045,10534], + [54047,5148], + [54049,16300], + [54051,10435], + [54053,8491], + [54055,19237], + [54057,10040], + [54059,8544], + [54061,20803], + [54063,5068], + [54065,6537], + [54067,8279], + [54069,12354], + [54071,2782], + [54073,2742], + [54075,2895], + [54077,11190], + [54079,20034], + [54081,24673], + [54083,8673], + [54085,3649], + [54087,4213], + [54089,4074], + [54091,5477], + [54093,2841], + [54095,3226], + [54097,7771], + [54099,12585], + [54101,2759], + [54103,4993], + [54105,2134], + [54107,27202], + [54109,7353], + [55001,7362], + [55003,3841], + [55005,15803], + [55007,4617], + [55009,75871], + [55011,4834], + [55013,6462], + [55015,18156], + [55017,21317], + [55019,10002], + [55021,16927], + [55023,4620], + [55025,78800], + [55027,31355], + [55029,9752], + [55031,10923], + [55033,13173], + [55035,25341], + [55037,2133], + [55039,35754], + [55041,3285], + [55043,14142], + [55045,10169], + [55047,7168], + [55049,5909], + [55051,2438], + [55053,5791], + [55055,27208], + [55057,8749], + [55059,44972], + [55061,7927], + [55063,28684], + [55065,4821], + [55067,7330], + [55069,10017], + [55071,27218], + [55073,44624], + [55075,15304], + [55077,5719], + [55078,278], + [55079,134357], + [55081,13775], + [55083,16226], + [55085,13671], + [55087,58385], + [55089,33912], + [55091,2584], + [55093,12815], + [55095,16611], + [55097,19299], + [55099,5394], + [55101,54479], + [55103,4871], + [55105,37138], + [55107,5257], + [55109,32199], + [55111,17493], + [55113,5909], + [55115,15173], + [55117,37609], + [55119,7657], + [55121,8833], + [55123,8218], + [55125,9261], + [55127,33851], + [55129,6334], + [55131,60237], + [55133,159649], + [55135,18952], + [55137,9016], + [55139,47796], + [55141,24308], + [56001,8579], + [56003,4806], + [56005,16975], + [56007,5014], + [56009,5917], + [56011,3651], + [56013,12007], + [56015,4878], + [56017,1999], + [56019,3881], + [56021,27891], + [56023,8643], + [56025,25271], + [56027,1118], + [56029,12813], + [56031,3898], + [56033,11843], + [56035,3957], + [56037,12229], + [56039,4341], + [56041,7496], + [56043,3245], + [56045,3107] + ] +} diff --git a/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes.json b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes.json new file mode 100644 index 0000000..2dd3b5a --- /dev/null +++ b/data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-votes.json @@ -0,0 +1,3174 @@ +{ + "metadata" : { + "name" : "2020 Presidential Election | Total Votes", + "description" : "Total votes cast in the 2020 presidential election.", + "units" : "votes", + "year" : "2020", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "politics", + "tags" : ["regional","us","counties","politics","elections"], + "authors" : [ + "Fox News, Politico, and the New York Times" + ], + "sources" : [ + "https://github.com/tonmcg/US_County_Level_Election_Results_08-20" + ] + }, + "data" : [ + ["us.county.fips","us.election.presidential.2020.votes"], + [1001,27770], + [1003,109679], + [1005,10518], + [1007,9595], + [1009,27588], + [1011,4613], + [1013,9488], + [1015,50983], + [1017,15284], + [1019,12301], + [1021,19310], + [1023,7464], + [1025,13135], + [1027,6930], + [1029,7227], + [1031,22275], + [1033,27886], + [1035,6441], + [1037,5479], + [1039,17430], + [1041,6617], + [1043,41851], + [1045,19738], + [1047,17864], + [1049,29356], + [1051,41030], + [1053,15910], + [1055,47728], + [1057,8766], + [1059,12578], + [1061,12545], + [1063,4775], + [1065,7922], + [1067,9298], + [1069,46173], + [1071,23636], + [1073,325848], + [1075,7193], + [1077,44339], + [1079,16031], + [1081,71449], + [1083,49235], + [1085,6835], + [1087,8723], + [1089,194767], + [1091,10900], + [1093,13807], + [1095,39655], + [1097,183164], + [1099,10668], + [1101,99139], + [1103,53722], + [1105,5230], + [1107,9668], + [1109,13841], + [1111,10837], + [1113,21329], + [1115,44441], + [1117,114950], + [1119,6291], + [1121,35663], + [1123,20991], + [1125,90172], + [1127,31170], + [1129,8876], + [1131,5903], + [1133,11284], + [2901,7360], + [2902,6161], + [2903,8385], + [2904,10587], + [2905,8706], + [2906,9518], + [2907,9664], + [2908,9957], + [2909,11047], + [2910,11256], + [2911,10686], + [2912,11280], + [2913,7765], + [2914,11534], + [2915,5593], + [2916,8170], + [2917,7271], + [2918,7759], + [2919,5338], + [2920,7544], + [2921,9482], + [2922,9597], + [2923,7796], + [2924,10484], + [2925,9369], + [2926,20292], + [2927,19037], + [2928,25580], + [2929,10784], + [2930,10226], + [2931,12481], + [2932,8361], + [2933,11016], + [2934,10794], + [2935,10149], + [2936,9292], + [2937,5168], + [2938,5299], + [2939,5930], + [2940,4628], + [4001,35183], + [4003,60473], + [4005,73346], + [4007,27678], + [4009,14996], + [4011,3688], + [4012,7460], + [4013,2069475], + [4015,104705], + [4017,51783], + [4019,520735], + [4021,185037], + [4023,19561], + [4025,143280], + [4027,69926], + [5001,6292], + [5003,7926], + [5005,21007], + [5007,119912], + [5009,17114], + [5011,3654], + [5013,2182], + [5015,11797], + [5017,4103], + [5019,8395], + [5021,5183], + [5023,12680], + [5025,3600], + [5027,8616], + [5029,8685], + [5031,38511], + [5033,24091], + [5035,16367], + [5037,6942], + [5039,2649], + [5041,4164], + [5043,6908], + [5045,54428], + [5047,7129], + [5049,5119], + [5051,44199], + [5053,8200], + [5055,16100], + [5057,6848], + [5059,12557], + [5061,4834], + [5063,14512], + [5065,5810], + [5067,5091], + [5069,25158], + [5071,9498], + [5073,2679], + [5075,5857], + [5077,2848], + [5079,3875], + [5081,5177], + [5083,8225], + [5085,30662], + [5087,7351], + [5089,7503], + [5091,16529], + [5093,12342], + [5095,2816], + [5097,3873], + [5099,3358], + [5101,3998], + [5103,9629], + [5105,4627], + [5107,6242], + [5109,4246], + [5111,7521], + [5113,8490], + [5115,24432], + [5117,3495], + [5119,169956], + [5121,6812], + [5123,7108], + [5125,56959], + [5127,3551], + [5129,4019], + [5131,47140], + [5133,5202], + [5135,7566], + [5137,5938], + [5139,16607], + [5141,7807], + [5143,94266], + [5145,30885], + [5147,2476], + [5149,6741], + [6001,769864], + [6003,741], + [6005,22302], + [6007,102042], + [6009,27164], + [6011,7951], + [6013,581230], + [6015,11452], + [6017,116138], + [6019,364809], + [6021,11292], + [6023,68828], + [6025,56718], + [6027,9481], + [6029,305226], + [6031,43858], + [6033,28800], + [6035,11985], + [6037,4263443], + [6039,53722], + [6041,155801], + [6043,10280], + [6045,43336], + [6047,90541], + [6049,4338], + [6051,6737], + [6053,163883], + [6055,72122], + [6057,64738], + [6059,1521725], + [6061,235017], + [6063,11256], + [6065,996156], + [6067,718290], + [6069,28821], + [6071,840931], + [6073,1601722], + [6075,443458], + [6077,288443], + [6079,159681], + [6081,374138], + [6083,200288], + [6085,850522], + [6087,144796], + [6089,92900], + [6091,1930], + [6093,23450], + [6095,205831], + [6097,268252], + [6099,214876], + [6101,42640], + [6103,28721], + [6105,6258], + [6107,146832], + [6109,30401], + [6111,422698], + [6113,97264], + [6115,29787], + [8001,236735], + [8003,7808], + [8005,350183], + [8007,9144], + [8009,2225], + [8011,2274], + [8013,206111], + [8014,46632], + [8015,13717], + [8017,1136], + [8019,6548], + [8021,4333], + [8023,2094], + [8025,1750], + [8027,3634], + [8029,19370], + [8031,393827], + [8033,1449], + [8035,231599], + [8037,29140], + [8039,18983], + [8041,378849], + [8043,25557], + [8045,30904], + [8047,4186], + [8049,9870], + [8051,11190], + [8053,632], + [8055,4406], + [8057,876], + [8059,377357], + [8061,903], + [8063,3871], + [8065,3961], + [8067,35667], + [8069,224338], + [8071,7961], + [8073,2651], + [8075,10532], + [8077,90622], + [8079,756], + [8081,7026], + [8083,15500], + [8085,24922], + [8087,13744], + [8089,9576], + [8091,4020], + [8093,12290], + [8095,2485], + [8097,11957], + [8099,5561], + [8101,88299], + [8103,3691], + [8105,6305], + [8107,16876], + [8109,3389], + [8111,563], + [8113,5147], + [8115,1446], + [8117,18479], + [8119,16939], + [8121,3008], + [8123,166968], + [8125,4981], + [9001,472990], + [9003,449336], + [9005,107544], + [9007,99203], + [9009,417980], + [9011,139604], + [9013,80546], + [9015,57077], + [10001,87025], + [10003,287633], + [10005,129352], + [11001,344356], + [12001,142604], + [12003,14059], + [12005,93024], + [12007,13632], + [12009,360764], + [12011,957672], + [12013,6526], + [12015,116340], + [12017,93208], + [12019,124405], + [12021,207818], + [12023,33042], + [12027,12659], + [12029,8167], + [12031,492820], + [12033,170372], + [12035,71716], + [12037,6849], + [12039,23762], + [12041,9685], + [12043,5193], + [12045,8163], + [12047,5830], + [12049,8485], + [12051,12940], + [12053,108922], + [12055,52170], + [12057,712063], + [12059,9068], + [12061,97484], + [12063,22419], + [12065,8451], + [12067,3658], + [12069,211314], + [12071,393899], + [12073,162929], + [12075,23145], + [12077,3561], + [12079,9380], + [12081,216958], + [12083,204376], + [12085,98726], + [12086,1156816], + [12087,48029], + [12089,58811], + [12091,116373], + [12093,15954], + [12095,647403], + [12097,172436], + [12099,773158], + [12101,301970], + [12103,559715], + [12105,343256], + [12107,36373], + [12109,176622], + [12111,172169], + [12113,106928], + [12115,270575], + [12117,260815], + [12119,92485], + [12121,21057], + [12123,10127], + [12125,6245], + [12127,307439], + [12129,18404], + [12131,43711], + [12133,12327], + [13001,8390], + [13003,3155], + [13005,4667], + [13007,1555], + [13009,18251], + [13011,8801], + [13013,37921], + [13015,50464], + [13017,6564], + [13019,7743], + [13021,70714], + [13023,5708], + [13025,7749], + [13027,7101], + [13029,21335], + [13031,30090], + [13033,10683], + [13035,11771], + [13037,2198], + [13039,23686], + [13043,4431], + [13045,54472], + [13047,32593], + [13049,4568], + [13051,133408], + [13053,1582], + [13055,10050], + [13057,144815], + [13059,51346], + [13061,1435], + [13063,112330], + [13065,2861], + [13067,393728], + [13069,15214], + [13071,16086], + [13073,80575], + [13075,7035], + [13077,76799], + [13079,6102], + [13081,8033], + [13083,7434], + [13085,16081], + [13087,11625], + [13089,370746], + [13091,8071], + [13093,4105], + [13095,35287], + [13097,69106], + [13099,5188], + [13101,1441], + [13103,31571], + [13105,9171], + [13107,9505], + [13109,4247], + [13111,14849], + [13113,71994], + [13115,41341], + [13117,129311], + [13119,10765], + [13121,523779], + [13123,16525], + [13125,1565], + [13127,41988], + [13129,24033], + [13131,10707], + [13133,11244], + [13135,414023], + [13137,20431], + [13139,90537], + [13141,4153], + [13143,14246], + [13145,19991], + [13147,12728], + [13149,5394], + [13151,122998], + [13153,74838], + [13155,4168], + [13157,37675], + [13159,7644], + [13161,5771], + [13163,7639], + [13165,3455], + [13167,4100], + [13169,14934], + [13171,9045], + [13173,3576], + [13175,22731], + [13177,16714], + [13179,21394], + [13181,4641], + [13183,5657], + [13185,46355], + [13187,15531], + [13189,10455], + [13191,6696], + [13193,4663], + [13195,14937], + [13197,3625], + [13199,10877], + [13201,2834], + [13205,8962], + [13207,15590], + [13209,3967], + [13211,11706], + [13213,15389], + [13215,80514], + [13217,54234], + [13219,25168], + [13221,8133], + [13223,85372], + [13225,12553], + [13227,17167], + [13229,9047], + [13231,10720], + [13233,17396], + [13235,4081], + [13237,11855], + [13239,1106], + [13241,9568], + [13243,3073], + [13245,87009], + [13247,44681], + [13249,2275], + [13251,6627], + [13253,3888], + [13255,30211], + [13257,11885], + [13259,1990], + [13261,12148], + [13263,3522], + [13265,928], + [13267,8185], + [13269,3842], + [13271,4334], + [13273,4416], + [13275,21872], + [13277,16279], + [13279,10914], + [13281,7979], + [13283,3077], + [13285,30047], + [13287,3791], + [13289,4444], + [13291,15558], + [13293,12905], + [13295,29354], + [13297,51093], + [13299,14189], + [13301,2650], + [13303,9477], + [13305,12779], + [13307,1391], + [13309,2285], + [13311,14816], + [13313,36766], + [13315,3279], + [13317,5030], + [13319,4770], + [13321,9285], + [15001,87814], + [15003,382114], + [15007,33497], + [15009,71044], + [16001,259389], + [16003,2586], + [16005,39553], + [16007,3315], + [16009,4973], + [16011,20094], + [16013,13288], + [16015,4820], + [16017,27352], + [16019,53995], + [16021,6313], + [16023,1415], + [16025,754], + [16027,90438], + [16029,3416], + [16031,9629], + [16033,311], + [16035,4419], + [16037,2739], + [16039,10205], + [16041,6664], + [16043,6719], + [16045,9958], + [16047,6050], + [16049,9602], + [16051,14173], + [16053,7812], + [16055,89878], + [16057,20570], + [16059,4738], + [16061,1870], + [16063,1940], + [16065,17112], + [16067,7993], + [16069,20967], + [16071,2451], + [16073,4742], + [16075,11293], + [16077,3086], + [16079,6049], + [16081,6347], + [16083,36680], + [16085,7063], + [16087,5344], + [17001,33527], + [17003,2625], + [17005,8144], + [17007,24979], + [17009,2525], + [17011,17434], + [17013,2773], + [17015,8024], + [17017,5326], + [17019,95568], + [17021,16204], + [17023,8355], + [17025,6899], + [17027,19214], + [17029,22606], + [17031,2321399], + [17033,9441], + [17035,5850], + [17037,47989], + [17039,8024], + [17041,8760], + [17043,485064], + [17045,8196], + [17047,3368], + [17049,19083], + [17051,10076], + [17053,6967], + [17055,18669], + [17057,16724], + [17059,2675], + [17061,6227], + [17063,26753], + [17065,4323], + [17067,9383], + [17069,2162], + [17071,3656], + [17073,25700], + [17075,14044], + [17077,22716], + [17079,5586], + [17081,17436], + [17083,11960], + [17085,12495], + [17087,6450], + [17089,231876], + [17091,50039], + [17093,64205], + [17095,23205], + [17097,334156], + [17099,53683], + [17101,6422], + [17103,16440], + [17105,17174], + [17107,13294], + [17109,12285], + [17111,164578], + [17113,87389], + [17115,49387], + [17117,24070], + [17119,137558], + [17121,17492], + [17123,6345], + [17125,6766], + [17127,6818], + [17129,6954], + [17131,8914], + [17133,21206], + [17135,13761], + [17137,15333], + [17139,6744], + [17141,26340], + [17143,83973], + [17145,10071], + [17147,9851], + [17149,7965], + [17151,2175], + [17153,2631], + [17155,3390], + [17157,14910], + [17159,8063], + [17161,66817], + [17163,128104], + [17165,11089], + [17167,104751], + [17169,3918], + [17171,2741], + [17173,12097], + [17175,2886], + [17177,22048], + [17179,69051], + [17181,8904], + [17183,31642], + [17185,5607], + [17187,7924], + [17189,7921], + [17191,8499], + [17193,7431], + [17195,27375], + [17197,346266], + [17199,33729], + [17201,127710], + [17203,21498], + [18001,14209], + [18003,169082], + [18005,36235], + [18007,4114], + [18009,5350], + [18011,38520], + [18013,8981], + [18015,9495], + [18017,15198], + [18019,57869], + [18021,12267], + [18023,12949], + [18025,4944], + [18027,11954], + [18029,25383], + [18031,12287], + [18033,19628], + [18035,48191], + [18037,21770], + [18039,74387], + [18041,10136], + [18043,41802], + [18045,7986], + [18047,12000], + [18049,9147], + [18051,16161], + [18053,27159], + [18055,14784], + [18057,193999], + [18059,42911], + [18061,20236], + [18063,88505], + [18065,21030], + [18067,40630], + [18069,17829], + [18071,19238], + [18073,15475], + [18075,8461], + [18077,14697], + [18079,12251], + [18081,77618], + [18083,16011], + [18085,35787], + [18087,10633], + [18089,219956], + [18091,49392], + [18093,21025], + [18095,51793], + [18097,389619], + [18099,19927], + [18101,5144], + [18103,14473], + [18105,63151], + [18107,17198], + [18109,36159], + [18111,6591], + [18113,19190], + [18115,3164], + [18117,8832], + [18119,9904], + [18121,7011], + [18123,8722], + [18125,6220], + [18127,86509], + [18129,13236], + [18131,5806], + [18133,16597], + [18135,11070], + [18137,14271], + [18139,7932], + [18141,115238], + [18143,10161], + [18145,19991], + [18147,10769], + [18149,10290], + [18151,16162], + [18153,8994], + [18155,4154], + [18157,71448], + [18159,8116], + [18161,3483], + [18163,77662], + [18165,7481], + [18167,43594], + [18169,14573], + [18171,4472], + [18173,33829], + [18175,12139], + [18177,27679], + [18179,14050], + [18181,11166], + [18183,17556], + [19001,4177], + [19003,2160], + [19005,7422], + [19007,6516], + [19009,3420], + [19011,14642], + [19013,66593], + [19015,15340], + [19017,14546], + [19019,10774], + [19021,8167], + [19023,8098], + [19025,5258], + [19027,11335], + [19029,7276], + [19031,10703], + [19033,23801], + [19035,6518], + [19037,6631], + [19039,4670], + [19041,8969], + [19043,9594], + [19045,24687], + [19047,7154], + [19049,56022], + [19051,4102], + [19053,3804], + [19055,10003], + [19057,19956], + [19059,11244], + [19061,53926], + [19063,4853], + [19065,10186], + [19067,8032], + [19069,5130], + [19071,3857], + [19073,5057], + [19075,7276], + [19077,6371], + [19079,7943], + [19081,6172], + [19083,8989], + [19085,8155], + [19087,9982], + [19089,4958], + [19091,5327], + [19093,3849], + [19095,9742], + [19097,11135], + [19099,20184], + [19101,8959], + [19103,83851], + [19105,10989], + [19107,5303], + [19109,9090], + [19111,16734], + [19113,127458], + [19115,5332], + [19117,4630], + [19119,6863], + [19121,9824], + [19123,11404], + [19125,19232], + [19127,18136], + [19129,8268], + [19131,5822], + [19133,4728], + [19135,4088], + [19137,5327], + [19139,20671], + [19141,7551], + [19143,3328], + [19145,7528], + [19147,4958], + [19149,14188], + [19151,3823], + [19153,258755], + [19155,45744], + [19157,10140], + [19159,2714], + [19161,5535], + [19163,92599], + [19165,6795], + [19167,19051], + [19169,51038], + [19171,9048], + [19173,3249], + [19175,6185], + [19177,3791], + [19179,15633], + [19181,31039], + [19183,11765], + [19185,3109], + [19187,17822], + [19189,5970], + [19191,12064], + [19193,45362], + [19195,4418], + [19197,6254], + [20001,5842], + [20003,3720], + [20005,7312], + [20007,2313], + [20009,10961], + [20011,6550], + [20013,4396], + [20015,31946], + [20017,1478], + [20019,1634], + [20021,8945], + [20023,1400], + [20025,1048], + [20027,4134], + [20029,4174], + [20031,4448], + [20033,904], + [20035,13911], + [20037,16718], + [20039,1458], + [20041,9246], + [20043,3674], + [20045,57540], + [20047,1413], + [20049,1347], + [20051,13501], + [20053,2806], + [20055,11466], + [20057,8850], + [20059,12247], + [20061,9311], + [20063,1433], + [20065,1302], + [20067,2452], + [20069,2240], + [20071,629], + [20073,3030], + [20075,837], + [20077,2626], + [20079,17034], + [20081,1383], + [20083,1033], + [20085,6468], + [20087,9581], + [20089,1608], + [20091,349386], + [20093,1413], + [20095,3929], + [20097,1139], + [20099,8414], + [20101,888], + [20103,36115], + [20105,1570], + [20107,4903], + [20109,1437], + [20111,13622], + [20113,13868], + [20115,5969], + [20117,5023], + [20119,1807], + [20121,17624], + [20123,3039], + [20125,13177], + [20127,2849], + [20129,1163], + [20131,5625], + [20133,6629], + [20135,1487], + [20137,2390], + [20139,7893], + [20141,1899], + [20143,3159], + [20145,2712], + [20147,2752], + [20149,12815], + [20151,4107], + [20153,1496], + [20155,27245], + [20157,2643], + [20159,4230], + [20161,23855], + [20163,2661], + [20165,1748], + [20167,3429], + [20169,23911], + [20171,2322], + [20173,213552], + [20175,5099], + [20177,86122], + [20179,1397], + [20181,2673], + [20183,2092], + [20185,2017], + [20187,767], + [20189,1997], + [20191,10779], + [20193,3794], + [20195,1603], + [20197,3861], + [20199,817], + [20201,2843], + [20203,961], + [20205,3899], + [20207,1495], + [20209,55107], + [21001,8768], + [21003,9364], + [21005,13254], + [21007,4225], + [21009,20064], + [21011,5627], + [21013,10044], + [21015,66998], + [21017,9648], + [21019,21751], + [21021,14478], + [21023,4246], + [21025,5661], + [21027,10201], + [21029,41998], + [21031,6125], + [21033,6434], + [21035,17457], + [21037,48878], + [21039,2638], + [21041,4136], + [21043,11586], + [21045,7171], + [21047,23863], + [21049,18139], + [21051,7591], + [21053,4932], + [21055,4242], + [21057,3309], + [21059,49287], + [21061,6132], + [21063,2995], + [21065,6540], + [21067,152912], + [21069,7068], + [21071,16353], + [21073,26072], + [21075,2426], + [21077,3849], + [21079,8706], + [21081,11108], + [21083,17019], + [21085,11985], + [21087,5812], + [21089,18176], + [21091,4587], + [21093,48941], + [21095,10971], + [21097,8859], + [21099,8370], + [21101,20697], + [21103,8110], + [21105,2199], + [21107,21512], + [21109,6113], + [21111,386629], + [21113,26280], + [21115,10192], + [21117,82198], + [21119,6252], + [21121,13273], + [21123,7301], + [21125,28111], + [21127,6955], + [21129,2801], + [21131,4813], + [21133,9135], + [21135,5883], + [21137,10914], + [21139,5004], + [21141,12350], + [21143,4228], + [21145,33549], + [21147,6438], + [21149,4782], + [21151,43957], + [21153,5447], + [21155,8928], + [21157,17603], + [21159,3936], + [21161,7958], + [21163,14113], + [21165,3102], + [21167,11735], + [21169,5012], + [21171,5330], + [21173,12842], + [21175,5544], + [21177,14235], + [21179,23256], + [21181,3396], + [21183,11129], + [21185,37976], + [21187,5458], + [21189,1896], + [21191,6925], + [21193,10626], + [21195,25395], + [21197,5505], + [21199,31557], + [21201,1146], + [21203,7784], + [21205,10065], + [21207,8955], + [21209,28969], + [21211,23550], + [21213,8732], + [21215,11433], + [21217,12517], + [21219,5363], + [21221,7376], + [21223,4320], + [21225,6577], + [21227,55401], + [21229,6225], + [21231,9240], + [21233,5993], + [21235,15356], + [21237,2979], + [21239,15211], + [22001,28425], + [22003,9810], + [22005,62325], + [22007,11235], + [22009,17292], + [22011,16357], + [22013,7050], + [22015,54655], + [22017,104912], + [22019,82663], + [22021,4762], + [22023,4039], + [22025,4858], + [22027,6580], + [22029,8828], + [22031,14736], + [22033,208182], + [22035,3036], + [22037,10509], + [22039,15412], + [22041,9720], + [22043,9392], + [22045,32713], + [22047,16719], + [22049,7632], + [22051,193733], + [22053,14841], + [22055,114521], + [22057,45388], + [22059,7077], + [22061,19275], + [22063,65230], + [22065,4670], + [22067,11574], + [22069,16554], + [22071,177819], + [22073,69166], + [22075,11014], + [22077,12371], + [22079,58865], + [22081,4132], + [22083,9940], + [22085,10596], + [22087,17650], + [22089,28517], + [22091,6158], + [22093,12590], + [22095,21432], + [22097,41154], + [22099,27038], + [22101,23186], + [22103,140110], + [22105,57661], + [22107,2554], + [22109,46240], + [22111,11201], + [22113,27324], + [22115,17268], + [22117,19513], + [22119,18216], + [22121,14097], + [22123,5052], + [22125,6268], + [22127,6225], + [23001,58707], + [23003,35746], + [23005,193765], + [23007,17390], + [23009,35325], + [23011,71858], + [23013,25734], + [23015,23594], + [23017,33492], + [23019,85269], + [23021,9908], + [23023,24038], + [23025,27578], + [23027,24320], + [23029,17357], + [23031,129659], + [24001,30641], + [24003,309617], + [24005,414932], + [24009,49112], + [24011,15794], + [24013,100327], + [24015,47462], + [24017,89498], + [24019,15977], + [24021,145615], + [24023,15611], + [24025,148186], + [24027,183062], + [24029,10794], + [24031,533743], + [24033,424855], + [24035,30290], + [24037,55665], + [24039,10147], + [24041,22555], + [24043,67779], + [24045,46216], + [24047,31691], + [24510,237461], + [25001,150325], + [25003,71375], + [25005,279279], + [25007,12798], + [25009,421210], + [25011,42458], + [25013,218177], + [25015,87854], + [25017,863577], + [25019,7306], + [25021,407751], + [25023,301816], + [25025,335462], + [25027,432014], + [26001,7064], + [26003,5128], + [26005,67094], + [26007,16969], + [26009,15949], + [26011,8831], + [26013,4038], + [26015,35905], + [26017,60255], + [26019,12262], + [26021,82391], + [26023,20536], + [26025,66281], + [26027,26216], + [26029,17000], + [26031,15868], + [26033,17642], + [26035,16281], + [26037,47927], + [26039,7861], + [26041,21151], + [26043,14589], + [26045,64327], + [26047,22177], + [26049,221360], + [26051,14603], + [26053,8266], + [26055,60236], + [26057,19127], + [26059,23302], + [26061,18501], + [26063,18437], + [26065,144550], + [26067,32209], + [26069,15363], + [26071,6789], + [26073,29421], + [26075,80861], + [26077,143414], + [26079,10631], + [26081,361048], + [26083,1557], + [26085,6323], + [26087,52650], + [26089,16900], + [26091,53375], + [26093,127197], + [26095,3001], + [26097,7015], + [26099,494256], + [26101,14655], + [26103,37462], + [26105,17254], + [26107,21049], + [26109,12607], + [26111,49088], + [26113,8755], + [26115,87148], + [26117,32100], + [26119,5859], + [26121,92444], + [26123,27161], + [26125,770351], + [26127,14062], + [26129,11907], + [26131,3804], + [26133,12329], + [26135,4874], + [26137,14757], + [26139,168713], + [26141,8344], + [26143,15018], + [26145,103349], + [26147,92064], + [26149,27936], + [26151,22446], + [26153,4745], + [26155,39224], + [26157,29445], + [26159,39066], + [26161,216418], + [26163,872469], + [26165,18265], + [27001,10025], + [27003,211132], + [27005,19401], + [27007,24189], + [27009,22260], + [27011,2974], + [27013,36051], + [27015,14635], + [27017,20369], + [27019,66361], + [27021,18289], + [27023,6611], + [27025,34570], + [27027,32239], + [27029,4708], + [27031,3806], + [27033,6107], + [27035,40173], + [27037,262259], + [27039,12187], + [27041,24165], + [27043,7914], + [27045,12141], + [27047,16818], + [27049,28636], + [27051,3654], + [27053,755969], + [27055,11440], + [27057,12965], + [27059,24235], + [27061,26561], + [27063,5819], + [27065,9242], + [27067,23367], + [27069,2639], + [27071,6922], + [27073,4040], + [27075,7202], + [27077,2408], + [27079,16818], + [27081,3115], + [27083,12893], + [27085,20933], + [27087,2304], + [27089,5113], + [27091,11009], + [27093,13529], + [27095,14689], + [27097,19558], + [27099,19345], + [27101,4896], + [27103,19125], + [27105,8715], + [27107,3441], + [27109,91385], + [27111,36399], + [27113,7277], + [27115,16001], + [27117,4940], + [27119,15594], + [27121,7022], + [27123,295977], + [27125,2196], + [27127,8284], + [27129,8128], + [27131,35686], + [27133,5240], + [27135,8421], + [27137,119531], + [27139,87965], + [27141,55612], + [27143,8452], + [27145,84835], + [27147,21128], + [27149,5085], + [27151,5193], + [27153,13257], + [27155,1864], + [27157,13123], + [27159,7677], + [27161,10389], + [27163,166786], + [27165,5201], + [27167,3430], + [27169,27173], + [27171,82426], + [27173,5528], + [28001,13759], + [28003,15811], + [28005,7207], + [28007,8832], + [28009,4292], + [28011,13755], + [28013,6595], + [28015,5705], + [28017,8148], + [28019,4225], + [28021,4453], + [28023,8347], + [28025,10206], + [28027,8507], + [28029,12897], + [28031,9371], + [28033,76248], + [28035,31725], + [28037,4464], + [28039,11064], + [28041,5816], + [28043,10919], + [28045,20957], + [28047,75865], + [28049,100191], + [28051,8115], + [28053,4189], + [28055,676], + [28057,10826], + [28059,54623], + [28061,8742], + [28063,3911], + [28065,6213], + [28067,30091], + [28069,4732], + [28071,23481], + [28073,28526], + [28075,31266], + [28077,6617], + [28079,9204], + [28081,37003], + [28083,10893], + [28085,16818], + [28087,27273], + [28089,56335], + [28091,12194], + [28093,15830], + [28095,17279], + [28097,5078], + [28099,11720], + [28101,10189], + [28103,5341], + [28105,19812], + [28107,15635], + [28109,24056], + [28111,5922], + [28113,17360], + [28115,14377], + [28117,10661], + [28119,3229], + [28121,70655], + [28123,10744], + [28125,2183], + [28127,11820], + [28129,8327], + [28131,7878], + [28133,9683], + [28135,5691], + [28137,13101], + [28139,10102], + [28141,9147], + [28143,3565], + [28145,12683], + [28147,7122], + [28149,21056], + [28151,18025], + [28153,10065], + [28155,5402], + [28157,4130], + [28159,9244], + [28161,6538], + [28163,10441], + [29001,10336], + [29003,9752], + [29005,2814], + [29007,10656], + [29009,15598], + [29011,6077], + [29013,8416], + [29015,10476], + [29017,5983], + [29019,91168], + [29021,36598], + [29023,18141], + [29025,4682], + [29027,21144], + [29029,24812], + [29031,40328], + [29033,4532], + [29035,2897], + [29037,57408], + [29039,7044], + [29041,4077], + [29043,46839], + [29045,3394], + [29047,126569], + [29049,10888], + [29051,39529], + [29053,8693], + [29055,10973], + [29057,4119], + [29059,8104], + [29061,3911], + [29063,4843], + [29065,7142], + [29067,7000], + [29069,10419], + [29071,53685], + [29073,7923], + [29075,3237], + [29077,141800], + [29079,4437], + [29081,3826], + [29083,10788], + [29085,5080], + [29087,2343], + [29089,5092], + [29091,18650], + [29093,4592], + [29095,333063], + [29097,52352], + [29099,116688], + [29101,23123], + [29103,1854], + [29105,16793], + [29107,17055], + [29109,17905], + [29111,4609], + [29113,29018], + [29115,5726], + [29117,6758], + [29119,9053], + [29121,7836], + [29123,5676], + [29125,4771], + [29127,13348], + [29129,1779], + [29131,12382], + [29133,4756], + [29135,7157], + [29137,4483], + [29139,5772], + [29141,9487], + [29143,7250], + [29145,28405], + [29147,9893], + [29149,4739], + [29151,7539], + [29153,4864], + [29155,5735], + [29157,9447], + [29159,19097], + [29161,19568], + [29163,7695], + [29165,57270], + [29167,15064], + [29169,14414], + [29171,2361], + [29173,5662], + [29175,10744], + [29177,11649], + [29179,3298], + [29181,5717], + [29183,222017], + [29185,4974], + [29186,9484], + [29187,28001], + [29189,536446], + [29195,9519], + [29197,2003], + [29199,1984], + [29201,17719], + [29203,3906], + [29205,3350], + [29207,13426], + [29209,18483], + [29211,2471], + [29213,26288], + [29215,11315], + [29217,9185], + [29219,18375], + [29221,9976], + [29223,5878], + [29225,18779], + [29227,1107], + [29229,8739], + [29510,133867], + [30001,5661], + [30003,4784], + [30005,3117], + [30007,4097], + [30009,7101], + [30011,864], + [30013,39885], + [30015,2974], + [30017,5883], + [30019,1014], + [30021,4837], + [30023,4891], + [30025,1575], + [30027,6531], + [30029,60258], + [30031,71507], + [30033,813], + [30035,5639], + [30037,503], + [30039,2102], + [30041,7182], + [30043,8191], + [30045,1344], + [30047,16626], + [30049,42485], + [30051,1083], + [30053,11747], + [30055,1128], + [30057,6113], + [30059,1110], + [30061,2563], + [30063,71986], + [30065,2881], + [30067,11618], + [30069,351], + [30071,2386], + [30073,2995], + [30075,1136], + [30077,3195], + [30079,744], + [30081,28507], + [30083,5798], + [30085,4028], + [30087,3784], + [30089,7652], + [30091,2030], + [30093,18827], + [30095,5741], + [30097,2446], + [30099,3695], + [30101,2123], + [30103,460], + [30105,4272], + [30107,1068], + [30109,598], + [30111,83821], + [31001,14653], + [31003,3583], + [31005,285], + [31007,411], + [31009,317], + [31011,3226], + [31013,5200], + [31015,1155], + [31017,1684], + [31019,23711], + [31021,3739], + [31023,4518], + [31025,15326], + [31027,5015], + [31029,2000], + [31031,3269], + [31033,4776], + [31035,3570], + [31037,3726], + [31039,4459], + [31041,6010], + [31043,6817], + [31045,4151], + [31047,9191], + [31049,1034], + [31051,3094], + [31053,16938], + [31055,276540], + [31057,1003], + [31059,3148], + [31061,1728], + [31063,1446], + [31065,2602], + [31067,11119], + [31069,1200], + [31071,1076], + [31073,1121], + [31075,402], + [31077,1259], + [31079,24450], + [31081,5566], + [31083,1934], + [31085,536], + [31087,1470], + [31089,5550], + [31091,442], + [31093,3511], + [31095,3730], + [31097,2233], + [31099,3617], + [31101,4369], + [31103,530], + [31105,1877], + [31107,4708], + [31109,157215], + [31111,17163], + [31113,450], + [31115,454], + [31117,302], + [31119,15819], + [31121,4282], + [31123,2558], + [31125,1832], + [31127,3432], + [31129,2305], + [31131,8355], + [31133,1429], + [31135,1545], + [31137,5021], + [31139,4012], + [31141,15721], + [31143,2887], + [31145,5470], + [31147,4134], + [31149,842], + [31151,5780], + [31153,96193], + [31155,12786], + [31157,15524], + [31159,9199], + [31161,2684], + [31163,1700], + [31165,731], + [31167,3165], + [31169,2989], + [31171,427], + [31173,2379], + [31175,2344], + [31177,12467], + [31179,4218], + [31181,1876], + [31183,503], + [31185,7161], + [32001,12890], + [32003,972510], + [32005,34125], + [32007,21967], + [32009,487], + [32011,1017], + [32013,7771], + [32015,2765], + [32017,2446], + [32019,30238], + [32021,2335], + [32023,25378], + [32027,2320], + [32029,2877], + [32031,252142], + [32033,4369], + [32510,29739], + [33001,38453], + [33003,33272], + [33005,44206], + [33007,16528], + [33009,53989], + [33011,231040], + [33013,89887], + [33015,198943], + [33017,73729], + [33019,24383], + [34001,140441], + [34003,497460], + [34005,262650], + [34007,265599], + [34009,57933], + [34011,62575], + [34013,345311], + [34015,173453], + [34017,250458], + [34019,84673], + [34021,177223], + [34023,375692], + [34025,378390], + [34027,300917], + [34029,342746], + [34031,224330], + [34033,34042], + [34035,186891], + [34037,88352], + [34039,254041], + [34041,61057], + [35001,317590], + [35003,2326], + [35005,22443], + [35006,8903], + [35007,6016], + [35009,15101], + [35011,901], + [35013,82641], + [35015,23222], + [35017,14435], + [35019,2189], + [35021,505], + [35023,1974], + [35025,20918], + [35027,10306], + [35028,12293], + [35029,8103], + [35031,26486], + [35033,2686], + [35035,23571], + [35037,3873], + [35039,16628], + [35041,6608], + [35043,76562], + [35045,52294], + [35047,11531], + [35049,82227], + [35051,5945], + [35053,7160], + [35055,17181], + [35057,7281], + [35059,1789], + [35061,32277], + [36001,154101], + [36003,20782], + [36005,425715], + [36007,92794], + [36009,34845], + [36011,36421], + [36013,59304], + [36015,39410], + [36017,22282], + [36019,35437], + [36021,35522], + [36023,21678], + [36025,23025], + [36027,151122], + [36029,473021], + [36031,19259], + [36033,19268], + [36035,23744], + [36037,29217], + [36039,25194], + [36041,3460], + [36043,29319], + [36045,43848], + [36047,913246], + [36049,12944], + [36051,31401], + [36053,34038], + [36055,380983], + [36057,21134], + [36059,732756], + [36061,694904], + [36063,104080], + [36065,100746], + [36067,234735], + [36069,59674], + [36071,172099], + [36073,18154], + [36075,54491], + [36077,28008], + [36079,54989], + [36081,787860], + [36083,79409], + [36085,216153], + [36087,150369], + [36089,44907], + [36091,132655], + [36093,74826], + [36095,15710], + [36097,9766], + [36099,15630], + [36101,46178], + [36103,771541], + [36105,34647], + [36107,25044], + [36109,45735], + [36111,97420], + [36113,36131], + [36115,28138], + [36117,44714], + [36119,462122], + [36121,19399], + [36123,10701], + [37001,86091], + [37003,20236], + [37005,6076], + [37007,11194], + [37009,15814], + [37011,9458], + [37013,26315], + [37015,9815], + [37017,17125], + [37019,90175], + [37021,161569], + [37023,44602], + [37025,117227], + [37027,42829], + [37029,5953], + [37031,42695], + [37033,12051], + [37035,83425], + [37037,48599], + [37039,16423], + [37041,7784], + [37043,6893], + [37045,51308], + [37047,26446], + [37049,53065], + [37051,147150], + [37053,16147], + [37055,24232], + [37057,88514], + [37059,25311], + [37061,22715], + [37063,179914], + [37065,25477], + [37067,201270], + [37069,37351], + [37071,115498], + [37073,5971], + [37075,4665], + [37077,31598], + [37079,8753], + [37081,284486], + [37083,25759], + [37085,58293], + [37087,36542], + [37089,68371], + [37091,10634], + [37093,21639], + [37095,2492], + [37097,102371], + [37099,21428], + [37101,111357], + [37103,5525], + [37105,29008], + [37107,28409], + [37109,50217], + [37111,23003], + [37113,20743], + [37115,13076], + [37117,12540], + [37119,567053], + [37121,9041], + [37123,12849], + [37125,58339], + [37127,52271], + [37129,131830], + [37131,10109], + [37133,72235], + [37135,84997], + [37137,7631], + [37139,19897], + [37141,34169], + [37143,7484], + [37145,21894], + [37147,87573], + [37149,12358], + [37151,73316], + [37153,20763], + [37155,47188], + [37157,47809], + [37159,73408], + [37161,34429], + [37163,28618], + [37165,14775], + [37167,33939], + [37169,25701], + [37171,36638], + [37173,7068], + [37175,20404], + [37177,1817], + [37179,131011], + [37181,20999], + [37183,631830], + [37185,10293], + [37187,6205], + [37189,32220], + [37191,55537], + [37193,35466], + [37195,40735], + [37197,19923], + [37199,11352], + [38001,1269], + [38003,5565], + [38005,1961], + [38007,635], + [38009,3471], + [38011,1657], + [38013,1155], + [38015,50753], + [38017,86053], + [38019,2020], + [38021,2424], + [38023,1202], + [38025,2338], + [38027,1261], + [38029,2009], + [38031,1778], + [38033,1026], + [38035,30970], + [38037,1381], + [38039,1250], + [38041,1312], + [38043,1460], + [38045,2219], + [38047,1076], + [38049,3003], + [38051,1455], + [38053,5419], + [38055,5536], + [38057,4675], + [38059,16619], + [38061,4165], + [38063,1777], + [38065,1066], + [38067,3331], + [38069,2128], + [38071,5372], + [38073,2454], + [38075,1319], + [38077,7812], + [38079,3804], + [38081,2070], + [38083,812], + [38085,1186], + [38087,427], + [38089,15050], + [38091,1088], + [38093,9959], + [38095,1174], + [38097,4136], + [38099,4783], + [38101,28246], + [38103,2374], + [38105,14334], + [39001,12145], + [39003,48006], + [39005,26405], + [39007,44147], + [39009,26059], + [39011,25777], + [39013,33088], + [39015,21096], + [39017,186737], + [39019,14212], + [39021,19972], + [39023,64212], + [39025,110480], + [39027,20527], + [39029,49860], + [39031,16739], + [39033,20686], + [39035,625670], + [39037,27134], + [39039,19381], + [39041,126070], + [39043,40335], + [39045,83311], + [39047,12612], + [39049,630577], + [39051,22770], + [39053,13799], + [39055,56021], + [39057,88643], + [39059,18230], + [39061,430929], + [39063,38771], + [39065,13247], + [39067,7655], + [39069,14764], + [39071,19676], + [39073,13824], + [39075,12947], + [39077,27190], + [39079,14794], + [39081,33362], + [39083,31398], + [39085,130509], + [39087,28127], + [39089,94210], + [39091,23368], + [39093,157437], + [39095,200623], + [39097,19855], + [39099,118966], + [39101,27818], + [39103,105825], + [39105,10951], + [39107,23761], + [39109,57972], + [39111,7148], + [39113,268505], + [39115,6847], + [39117,18457], + [39119,40465], + [39121,6343], + [39123,24007], + [39125,9467], + [39127,16675], + [39129,28271], + [39131,12412], + [39133,82872], + [39135,21809], + [39137,19921], + [39139,59975], + [39141,33299], + [39143,30074], + [39145,32047], + [39147,25810], + [39149,25258], + [39151,189879], + [39153,280473], + [39155,101001], + [39157,44015], + [39159,33445], + [39161,14965], + [39163,6030], + [39165,136100], + [39167,32031], + [39169,54283], + [39171,18651], + [39173,67597], + [39175,11390], + [40001,7108], + [40003,2262], + [40005,5389], + [40007,2178], + [40009,7948], + [40011,3901], + [40013,15976], + [40015,9859], + [40017,61940], + [40019,19479], + [40021,17714], + [40023,5832], + [40025,1054], + [40027,119778], + [40029,2524], + [40031,35631], + [40033,2572], + [40035,6032], + [40037,30505], + [40039,10691], + [40041,17245], + [40043,2359], + [40045,1873], + [40047,22430], + [40049,10922], + [40051,23101], + [40053,2226], + [40055,1973], + [40057,933], + [40059,1487], + [40061,5014], + [40063,4857], + [40065,8221], + [40067,2385], + [40069,4251], + [40071,17249], + [40073,6465], + [40075,3427], + [40077,4249], + [40079,18805], + [40081,14888], + [40083,21574], + [40085,4076], + [40087,19236], + [40089,11467], + [40091,8335], + [40093,3467], + [40095,6064], + [40097,16626], + [40099,5894], + [40101,25081], + [40103,4938], + [40105,4391], + [40107,4038], + [40109,294740], + [40111,14313], + [40113,20538], + [40115,11438], + [40117,6786], + [40119,29643], + [40121,17924], + [40123,15320], + [40125,28185], + [40127,4739], + [40129,1834], + [40131,44553], + [40133,8337], + [40135,15386], + [40137,19057], + [40139,5521], + [40141,2708], + [40143,266678], + [40145,35338], + [40147,23501], + [40149,4777], + [40151,3678], + [40153,7785], + [41001,9932], + [41003,52799], + [41005,257679], + [41007,23910], + [41009,32221], + [41011,37075], + [41013,15448], + [41015,14925], + [41017,125234], + [41019,64349], + [41021,1178], + [41023,4596], + [41025,4481], + [41027,13090], + [41029,127165], + [41031,11913], + [41033,51641], + [41035,36726], + [41037,4363], + [41039,222253], + [41041,30726], + [41043,72640], + [41045,11804], + [41047,165534], + [41049,5118], + [41051,463659], + [41053,48291], + [41055,1208], + [41057,16888], + [41059,33038], + [41061,14944], + [41063,5149], + [41065,14130], + [41067,320326], + [41069,965], + [41071,58923], + [42001,56714], + [42003,724800], + [42005,36370], + [42007,94122], + [42009,27574], + [42011,205540], + [42013,63595], + [42015,30159], + [42017,396234], + [42019,113305], + [42021,70574], + [42023,2434], + [42025,33629], + [42027,77493], + [42029,315753], + [42031,19493], + [42033,39496], + [42035,17625], + [42037,31171], + [42039,42004], + [42041,141595], + [42043,147368], + [42045,329006], + [42047,16906], + [42049,137083], + [42051,62139], + [42053,2646], + [42055,80783], + [42057,7977], + [42059,17669], + [42061,22792], + [42063,41198], + [42065,22824], + [42067,12043], + [42069,115410], + [42071,281375], + [42073,46076], + [42075,71858], + [42077,184713], + [42079,153321], + [42081,59254], + [42083,19466], + [42085,57954], + [42087,21502], + [42089,83829], + [42091,510157], + [42093,9817], + [42095,171399], + [42097,42283], + [42099,24652], + [42101,741377], + [42103,32554], + [42105,9064], + [42107,70603], + [42109,19140], + [42111,40543], + [42113,3595], + [42115,21752], + [42117,21075], + [42119,20115], + [42121,26528], + [42123,20650], + [42125,118478], + [42127,28089], + [42129,205183], + [42131,14858], + [42133,238471], + [44001,28415], + [44003,93093], + [44005,46148], + [44007,272667], + [44009,76060], + [45001,12433], + [45003,85185], + [45005,3593], + [45007,96093], + [45009,6482], + [45011,10321], + [45013,97835], + [45015,104458], + [45017,8291], + [45019,218857], + [45021,25270], + [45023,15757], + [45025,18876], + [45027,16733], + [45029,19283], + [45031,32417], + [45033,13101], + [45035,77278], + [45037,13304], + [45039,12136], + [45041,64510], + [45043,36668], + [45045,258155], + [45047,32006], + [45049,9305], + [45051,179744], + [45053,14394], + [45055,33629], + [45057,49868], + [45059,30488], + [45061,8431], + [45063,144568], + [45065,5697], + [45067,14704], + [45069,11446], + [45071,18631], + [45073,40668], + [45075,41205], + [45077,57546], + [45079,193822], + [45081,9274], + [45083,148655], + [45085,48920], + [45087,13257], + [45089,15985], + [45091,144050], + [46003,1405], + [46005,7081], + [46007,1183], + [46009,3001], + [46011,14567], + [46013,17547], + [46015,2490], + [46017,549], + [46019,4802], + [46021,873], + [46023,3783], + [46025,1850], + [46027,5698], + [46029,13161], + [46031,1283], + [46033,5494], + [46035,8454], + [46037,2964], + [46039,2350], + [46041,1966], + [46043,1707], + [46045,1985], + [46047,4042], + [46049,1182], + [46051,3745], + [46053,2258], + [46055,1137], + [46057,3083], + [46059,1836], + [46061,2388], + [46063,813], + [46065,8723], + [46067,3767], + [46069,710], + [46071,1115], + [46073,1006], + [46075,599], + [46077,2779], + [46079,5873], + [46081,13828], + [46083,32396], + [46085,1597], + [46087,2900], + [46089,1324], + [46091,2178], + [46093,13670], + [46095,769], + [46097,1138], + [46099,92326], + [46101,3206], + [46102,3200], + [46103,57518], + [46105,1669], + [46107,1380], + [46109,4307], + [46111,1185], + [46115,3163], + [46117,1652], + [46119,930], + [46121,2539], + [46123,2696], + [46125,4548], + [46127,8855], + [46129,2580], + [46135,10900], + [46137,906], + [47001,35570], + [47003,19088], + [47005,7260], + [47007,5758], + [47009,66609], + [47011,45865], + [47013,14933], + [47015,6557], + [47017,11905], + [47019,24492], + [47021,20260], + [47023,7584], + [47025,12945], + [47027,3506], + [47029,14859], + [47031,24282], + [47033,6114], + [47035,32279], + [47037,309658], + [47039,5241], + [47041,8513], + [47043,24323], + [47045,15079], + [47047,22984], + [47049,8729], + [47051,19132], + [47053,22335], + [47055,13203], + [47057,10134], + [47059,28087], + [47061,5855], + [47063,24631], + [47065,171113], + [47067,2744], + [47069,10063], + [47071,11538], + [47073,24824], + [47075,7439], + [47077,12020], + [47079,15047], + [47081,9832], + [47083,3686], + [47085,8236], + [47087,5323], + [47089,23616], + [47091,7801], + [47093,220556], + [47095,2034], + [47097,8965], + [47099,18718], + [47101,5609], + [47103,15608], + [47105,29347], + [47107,22844], + [47109,11275], + [47111,9487], + [47113,42950], + [47115,13256], + [47117,14878], + [47119,46657], + [47121,5532], + [47123,20797], + [47125,76758], + [47127,3539], + [47129,8228], + [47131,13521], + [47133,10037], + [47135,3428], + [47137,2931], + [47139,8360], + [47141,33593], + [47143,13637], + [47145,25917], + [47147,33717], + [47149,143878], + [47151,9052], + [47153,7252], + [47155,43535], + [47157,382055], + [47159,9051], + [47161,6296], + [47163,74357], + [47165,92630], + [47167,27308], + [47169,3998], + [47171,8307], + [47173,8123], + [47175,2921], + [47177,16009], + [47179,60203], + [47181,6669], + [47183,13735], + [47185,11895], + [47187,139016], + [47189,74330], + [48001,19227], + [48003,5863], + [48005,34574], + [48007,12290], + [48009,4796], + [48011,1112], + [48013,18118], + [48015,14554], + [48017,1860], + [48019,12715], + [48021,36665], + [48023,1702], + [48025,9420], + [48027,127375], + [48029,768952], + [48031,7441], + [48033,416], + [48035,9126], + [48037,38261], + [48039,154984], + [48041,85061], + [48043,4822], + [48045,725], + [48047,2484], + [48049,15969], + [48051,8609], + [48053,24717], + [48055,14973], + [48057,7856], + [48059,6832], + [48061,114174], + [48063,5060], + [48065,3122], + [48067,13927], + [48069,2083], + [48071,21652], + [48073,19508], + [48075,2279], + [48077,5741], + [48079,1000], + [48081,1779], + [48083,4124], + [48085,492216], + [48087,1218], + [48089,9975], + [48091,88863], + [48093,6086], + [48095,1268], + [48097,18988], + [48099,23490], + [48101,662], + [48103,1503], + [48105,1574], + [48107,1953], + [48109,864], + [48111,1609], + [48113,921638], + [48115,3789], + [48117,4610], + [48119,2592], + [48121,417964], + [48123,8118], + [48125,988], + [48127,3666], + [48129,1648], + [48131,5053], + [48133,8292], + [48135,44581], + [48137,1066], + [48139,85493], + [48141,267215], + [48143,16853], + [48145,6133], + [48147,15004], + [48149,12941], + [48151,1826], + [48153,2039], + [48155,551], + [48157,357514], + [48159,5009], + [48161,8711], + [48163,5279], + [48165,5995], + [48167,155060], + [48169,1653], + [48171,15846], + [48173,653], + [48175,3988], + [48177,7647], + [48179,7782], + [48181,59439], + [48183,47982], + [48185,12413], + [48187,77592], + [48189,9584], + [48191,1168], + [48193,4349], + [48195,2047], + [48197,1580], + [48199,27635], + [48201,1640818], + [48203,29710], + [48205,2078], + [48207,2214], + [48209,109357], + [48211,1720], + [48213,36310], + [48215,220884], + [48217,14931], + [48219,8095], + [48221,32541], + [48223,15939], + [48225,9437], + [48227,10240], + [48229,1165], + [48231,38574], + [48233,8771], + [48235,889], + [48237,3782], + [48239,6340], + [48241,15608], + [48243,1305], + [48245,94739], + [48247,2036], + [48249,13669], + [48251,72005], + [48253,6741], + [48255,5249], + [48257,56703], + [48259,26438], + [48261,194], + [48263,462], + [48265,27745], + [48267,2292], + [48269,159], + [48271,1603], + [48273,10944], + [48275,1456], + [48277,21418], + [48279,4408], + [48281,10399], + [48283,2406], + [48285,10197], + [48287,8086], + [48289,8674], + [48291,29334], + [48293,9095], + [48295,1353], + [48297,5054], + [48299,12660], + [48301,66], + [48303,120771], + [48305,2293], + [48307,3436], + [48309,97771], + [48311,516], + [48313,5297], + [48315,4864], + [48317,2160], + [48319,2474], + [48321,13726], + [48323,15346], + [48325,22644], + [48327,1028], + [48329,58856], + [48331,10576], + [48333,2505], + [48335,2579], + [48337,9814], + [48339,271451], + [48341,5508], + [48343,5587], + [48345,652], + [48347,26763], + [48349,19121], + [48351,6094], + [48353,5356], + [48355,127314], + [48357,3156], + [48359,1009], + [48361,35994], + [48363,12485], + [48365,11451], + [48367,76128], + [48369,2650], + [48371,4668], + [48373,24181], + [48375,33321], + [48377,2217], + [48379,6053], + [48381,64674], + [48383,1124], + [48385,1982], + [48387,5806], + [48389,3687], + [48391,3366], + [48393,550], + [48395,8099], + [48397,53891], + [48399,4409], + [48401,21368], + [48403,5487], + [48405,4002], + [48407,12638], + [48409,25888], + [48411,2602], + [48413,1159], + [48415,5869], + [48417,1628], + [48419,10084], + [48421,991], + [48423,100075], + [48425,4947], + [48427,17525], + [48429,3800], + [48431,639], + [48433,736], + [48435,1557], + [48437,2355], + [48439,834697], + [48441,55112], + [48443,458], + [48445,3612], + [48447,899], + [48449,10539], + [48451,45210], + [48453,610349], + [48455,6938], + [48457,9660], + [48459,18887], + [48461,1368], + [48463,10342], + [48465,15272], + [48467,25994], + [48469,34188], + [48471,23612], + [48473,22734], + [48475,4060], + [48477,17418], + [48479,68397], + [48481,16761], + [48483,2337], + [48485,46030], + [48487,4524], + [48489,5549], + [48491,289312], + [48493,25013], + [48495,2126], + [48497,32362], + [48499,22779], + [48501,2631], + [48503,8239], + [48505,3874], + [48507,4379], + [49001,3100], + [49003,27027], + [49005,57571], + [49007,9369], + [49009,619], + [49011,169895], + [49013,8524], + [49015,4865], + [49017,2732], + [49019,5185], + [49021,24890], + [49023,5866], + [49025,4180], + [49027,6160], + [49029,6512], + [49031,871], + [49033,1363], + [49035,541175], + [49037,6878], + [49039,12631], + [49041,10363], + [49043,26088], + [49045,31518], + [49047,15307], + [49049,284480], + [49051,17581], + [49053,90476], + [49055,1621], + [49057,111442], + [50001,22022], + [50003,20462], + [50005,16169], + [50007,98915], + [50009,3288], + [50011,25830], + [50013,4851], + [50015,14915], + [50017,17122], + [50019,14096], + [50021,33970], + [50023,35307], + [50025,26035], + [50027,34446], + [51001,16962], + [51003,64657], + [51005,8203], + [51007,7893], + [51009,17005], + [51011,9268], + [51013,130699], + [51015,42278], + [51017,2501], + [51019,48669], + [51021,3479], + [51023,21120], + [51025,7948], + [51027,9953], + [51029,8126], + [51031,29892], + [51033,16288], + [51035,15651], + [51036,4441], + [51037,6191], + [51041,203884], + [51043,9337], + [51045,3169], + [51047,27116], + [51049,5310], + [51051,7303], + [51053,15092], + [51057,6178], + [51059,600823], + [51061,43661], + [51063,9408], + [51065,15840], + [51067,29702], + [51069,48703], + [51071,9176], + [51073,22282], + [51075,16950], + [51077,8131], + [51079,11311], + [51081,4574], + [51083,18248], + [51085,70967], + [51087,183152], + [51089,26105], + [51091,1533], + [51093,23456], + [51095,49622], + [51097,4115], + [51099,14224], + [51101,10736], + [51103,7152], + [51105,9946], + [51107,224862], + [51109,21915], + [51111,6000], + [51113,8129], + [51115,5826], + [51117,16204], + [51119,6785], + [51121,45037], + [51125,9316], + [51127,14463], + [51131,6732], + [51133,7815], + [51135,7078], + [51137,20742], + [51139,12514], + [51141,9534], + [51143,34227], + [51145,19730], + [51147,9574], + [51149,17432], + [51153,228056], + [51155,17376], + [51157,4978], + [51159,4102], + [51161,57184], + [51163,12373], + [51165,43811], + [51167,13386], + [51169,10869], + [51171,23684], + [51173,14136], + [51175,9786], + [51177,75317], + [51179,79625], + [51181,4471], + [51183,5088], + [51185,20134], + [51187,21147], + [51191,28685], + [51193,9933], + [51195,16615], + [51197,15072], + [51199,38787], + [51510,82508], + [51520,7806], + [51530,2776], + [51540,24205], + [51550,127108], + [51570,9146], + [51580,2603], + [51590,19389], + [51595,2381], + [51600,13483], + [51610,8819], + [51620,4058], + [51630,12862], + [51640,2638], + [51650,65901], + [51660,17086], + [51670,9608], + [51678,2762], + [51680,36363], + [51683,16968], + [51685,6087], + [51690,6013], + [51700,81203], + [51710,89881], + [51720,1601], + [51730,14118], + [51735,7857], + [51740,44582], + [51750,6320], + [51760,111159], + [51770,43323], + [51775,13051], + [51790,12990], + [51800,49642], + [51810,227561], + [51820,10717], + [51830,6883], + [51840,12106], + [53001,5862], + [53003,11951], + [53005,103033], + [53007,43306], + [53009,49264], + [53011,275403], + [53013,2495], + [53015,60280], + [53017,21308], + [53019,4367], + [53021,32404], + [53023,1489], + [53025,37680], + [53027,38441], + [53029,53925], + [53031,24792], + [53033,1210507], + [53035,158672], + [53037,26364], + [53039,13560], + [53041,45309], + [53043,7033], + [53045,37303], + [53047,21282], + [53049,14064], + [53051,8553], + [53053,464081], + [53055,13197], + [53057,73423], + [53059,7312], + [53061,438796], + [53063,295430], + [53065,28430], + [53067,168134], + [53069,2981], + [53071,31261], + [53073,138620], + [53075,21126], + [53077,96193], + [54001,6677], + [54003,51535], + [54005,9012], + [54007,5664], + [54009,10656], + [54011,37360], + [54013,2971], + [54015,3365], + [54017,3101], + [54019,16862], + [54021,2662], + [54023,5509], + [54025,15850], + [54027,10086], + [54029,13800], + [54031,6331], + [54033,30465], + [54035,13508], + [54037,27703], + [54039,82244], + [54041,7457], + [54043,7830], + [54045,13026], + [54047,6527], + [54049,25794], + [54051,14080], + [54053,11203], + [54055,25134], + [54057,12872], + [54059,10022], + [54061,42072], + [54063,6490], + [54065,8695], + [54067,10630], + [54069,19898], + [54071,3659], + [54073,3491], + [54075,4008], + [54077,14572], + [54079,28501], + [54081,33106], + [54083,12200], + [54085,4283], + [54087,5763], + [54089,5585], + [54091,7383], + [54093,3844], + [54095,3922], + [54097,10221], + [54099,16947], + [54101,3402], + [54103,6667], + [54105,2653], + [54107,38762], + [54109,8592], + [55001,11818], + [55003,8757], + [55005,25346], + [55007,10880], + [55009,144017], + [55011,7816], + [55013,10141], + [55015,30774], + [55017,35938], + [55019,14898], + [55021,33869], + [55023,8695], + [55025,344791], + [55027,48436], + [55029,20117], + [55031,24677], + [55033,23524], + [55035,58275], + [55037,2940], + [55039,57251], + [55041,5053], + [55043,25608], + [55045,21406], + [55047,10671], + [55049,13992], + [55051,4010], + [55053,10184], + [55055,47979], + [55057,13709], + [55059,88738], + [55061,12095], + [55063,67884], + [55065,8555], + [55067,11165], + [55069,16497], + [55071,44829], + [55073,76751], + [55075,22979], + [55077,9065], + [55078,1590], + [55079,458971], + [55081,22611], + [55083,23215], + [55085,24159], + [55087,108022], + [55089,61486], + [55091,4144], + [55093,23317], + [55095,26371], + [55097,40603], + [55099,8546], + [55101,106451], + [55103,9014], + [55105,85360], + [55107,7886], + [55109,56707], + [55111,36203], + [55113,10510], + [55115,22615], + [55117,66011], + [55119,10686], + [55121,15380], + [55123,15923], + [55125,15369], + [55127,57600], + [55129,10378], + [55131,88070], + [55133,267996], + [55135,29130], + [55137,13568], + [55139,94032], + [55141,41298], + [56001,18617], + [56003,5752], + [56005,19566], + [56007,6664], + [56009,6970], + [56011,4119], + [56013,18111], + [56015,6241], + [56017,2577], + [56019,4914], + [56021,44982], + [56023,10468], + [56025,35202], + [56027,1308], + [56029,16717], + [56031,4923], + [56033,16428], + [56035,4970], + [56037,16603], + [56039,14677], + [56041,9402], + [56043,4012], + [56045,3542] + ] +} diff --git a/data/regional/united-states/technology/us-technology-broadband-2017.json b/data/regional/united-states/technology/us-technology-broadband-2017.json new file mode 100644 index 0000000..11c11b8 --- /dev/null +++ b/data/regional/united-states/technology/us-technology-broadband-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Home Broadband Access", + "description" : "Percent of households that have access to broadband.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "technology", + "tags" : ["regional","us","counties","technology","broadband","internet"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.technology.broadband.2017"], + [1001,0.766], + [1003,0.745], + [1005,0.572], + [1007,0.62], + [1009,0.658], + [1011,0.494], + [1013,0.582], + [1015,0.71], + [1017,0.628], + [1019,0.675], + [1021,0.566], + [1023,0.523], + [1025,0.473], + [1027,0.66], + [1029,0.578], + [1031,0.753], + [1033,0.659], + [1035,0.407], + [1037,0.582], + [1039,0.647], + [1041,0.571], + [1043,0.652], + [1045,0.698], + [1047,0.577], + [1049,0.61], + [1051,0.782], + [1053,0.549], + [1055,0.684], + [1057,0.641], + [1059,0.603], + [1061,0.643], + [1063,0.42], + [1065,0.507], + [1067,0.683], + [1069,0.676], + [1071,0.627], + [1073,0.73], + [1075,0.583], + [1077,0.654], + [1079,0.557], + [1081,0.782], + [1083,0.725], + [1085,0.471], + [1087,0.522], + [1089,0.813], + [1091,0.512], + [1093,0.658], + [1095,0.702], + [1097,0.694], + [1099,0.389], + [1101,0.756], + [1103,0.701], + [1105,0.398], + [1107,0.609], + [1109,0.602], + [1111,0.648], + [1113,0.63], + [1115,0.723], + [1117,0.845], + [1119,0.504], + [1121,0.655], + [1123,0.679], + [1125,0.757], + [1127,0.625], + [1129,0.535], + [1131,0.416], + [1133,0.562], + [2013,0.682], + [2016,0.741], + [2020,0.874], + [2050,0.706], + [2060,0.813], + [2068,0.897], + [2070,0.722], + [2090,0.82], + [2100,0.772], + [2105,0.721], + [2110,0.878], + [2122,0.758], + [2130,0.818], + [2150,0.824], + [2158,null], + [2164,0.603], + [2170,0.852], + [2180,0.676], + [2185,0.679], + [2188,0.668], + [2195,0.759], + [2198,0.679], + [2220,0.804], + [2230,0.842], + [2240,0.749], + [2261,0.805], + [2275,0.744], + [2282,0.698], + [2290,0.437], + [4001,0.386], + [4003,0.762], + [4005,0.753], + [4007,0.616], + [4009,0.698], + [4011,0.757], + [4012,0.577], + [4013,0.817], + [4015,0.759], + [4017,0.595], + [4019,0.806], + [4021,0.773], + [4023,0.682], + [4025,0.782], + [4027,0.731], + [5001,0.601], + [5003,0.594], + [5005,0.687], + [5007,0.596], + [5009,0.741], + [5011,0.555], + [5013,0.533], + [5015,0.627], + [5017,0.563], + [5019,0.615], + [5021,0.596], + [5023,0.677], + [5025,0.529], + [5027,0.585], + [5029,0.541], + [5031,0.777], + [5033,0.68], + [5035,0.669], + [5037,0.622], + [5039,0.531], + [5041,0.461], + [5043,0.633], + [5045,0.745], + [5047,0.531], + [5049,0.604], + [5051,0.726], + [5053,0.687], + [5055,0.72], + [5057,0.61], + [5059,0.623], + [5061,0.608], + [5063,0.632], + [5065,0.576], + [5067,0.572], + [5069,0.538], + [5071,0.595], + [5073,0.503], + [5075,0.597], + [5077,0.453], + [5079,0.561], + [5081,0.614], + [5083,0.661], + [5085,0.745], + [5087,0.587], + [5089,0.701], + [5091,0.705], + [5093,0.608], + [5095,0.473], + [5097,0.566], + [5099,0.467], + [5101,0.547], + [5103,0.533], + [5105,0.62], + [5107,0.559], + [5109,0.579], + [5111,0.647], + [5113,0.596], + [5115,0.678], + [5117,0.488], + [5119,0.73], + [5121,0.622], + [5123,0.483], + [5125,0.774], + [5127,0.532], + [5129,0.525], + [5131,0.687], + [5133,0.657], + [5135,0.584], + [5137,0.503], + [5139,0.6], + [5141,0.582], + [5143,0.753], + [5145,0.693], + [5147,0.508], + [5149,0.609], + [6001,0.857], + [6003,0.875], + [6005,0.791], + [6007,0.809], + [6009,0.749], + [6011,0.745], + [6013,0.882], + [6015,0.733], + [6017,0.835], + [6019,0.748], + [6021,0.64], + [6023,0.794], + [6025,0.698], + [6027,0.757], + [6029,0.739], + [6031,0.738], + [6033,0.706], + [6035,0.729], + [6037,0.799], + [6039,0.722], + [6041,0.889], + [6043,0.711], + [6045,0.738], + [6047,0.752], + [6049,0.682], + [6051,0.72], + [6053,0.783], + [6055,0.859], + [6057,0.825], + [6059,0.877], + [6061,0.87], + [6063,0.704], + [6065,0.826], + [6067,0.828], + [6069,0.871], + [6071,0.793], + [6073,0.869], + [6075,0.845], + [6077,0.775], + [6079,0.85], + [6081,0.883], + [6083,0.823], + [6085,0.894], + [6087,0.85], + [6089,0.753], + [6091,0.69], + [6093,0.746], + [6095,0.861], + [6097,0.851], + [6099,0.793], + [6101,0.788], + [6103,0.703], + [6105,0.64], + [6107,0.696], + [6109,0.759], + [6111,0.851], + [6113,0.835], + [6115,0.8], + [8001,0.798], + [8003,0.668], + [8005,0.864], + [8007,0.79], + [8009,0.69], + [8011,0.706], + [8013,0.885], + [8014,0.911], + [8015,0.803], + [8017,0.756], + [8019,0.81], + [8021,0.616], + [8023,0.524], + [8025,0.759], + [8027,0.763], + [8029,0.7], + [8031,0.811], + [8033,0.638], + [8035,0.946], + [8037,0.87], + [8039,0.879], + [8041,0.878], + [8043,0.766], + [8045,0.825], + [8047,0.808], + [8049,0.861], + [8051,0.799], + [8053,0.679], + [8055,0.606], + [8057,0.709], + [8059,0.869], + [8061,0.771], + [8063,0.732], + [8065,0.765], + [8067,0.771], + [8069,0.866], + [8071,0.653], + [8073,0.747], + [8075,0.772], + [8077,0.827], + [8079,0.787], + [8081,0.76], + [8083,0.679], + [8085,0.721], + [8087,0.745], + [8089,0.719], + [8091,0.817], + [8093,0.821], + [8095,0.776], + [8097,0.881], + [8099,0.755], + [8101,0.704], + [8103,0.724], + [8105,0.63], + [8107,0.884], + [8109,0.672], + [8111,0.788], + [8113,0.795], + [8115,0.643], + [8117,0.82], + [8119,0.865], + [8121,0.731], + [8123,0.81], + [8125,0.678], + [9001,0.856], + [9003,0.805], + [9005,0.835], + [9007,0.836], + [9009,0.789], + [9011,0.83], + [9013,0.858], + [9015,0.787], + [10001,0.808], + [10003,0.808], + [10005,0.758], + [11001,0.776], + [12001,0.814], + [12003,0.705], + [12005,0.804], + [12007,0.654], + [12009,0.83], + [12011,0.809], + [12013,0.601], + [12015,0.799], + [12017,0.785], + [12019,0.86], + [12021,0.814], + [12023,0.731], + [12027,0.5], + [12029,0.444], + [12031,0.784], + [12033,0.805], + [12035,0.787], + [12037,0.689], + [12039,0.579], + [12041,0.625], + [12043,0.486], + [12045,0.764], + [12047,0.616], + [12049,0.549], + [12051,0.616], + [12053,0.788], + [12055,0.676], + [12057,0.825], + [12059,0.653], + [12061,0.785], + [12063,0.645], + [12065,0.668], + [12067,0.67], + [12069,0.804], + [12071,0.798], + [12073,0.842], + [12075,0.593], + [12077,0.593], + [12079,0.568], + [12081,0.776], + [12083,0.748], + [12085,0.816], + [12086,0.732], + [12087,0.776], + [12089,0.808], + [12091,0.803], + [12093,0.581], + [12095,0.833], + [12097,0.721], + [12099,0.808], + [12101,0.786], + [12103,0.787], + [12105,0.648], + [12107,0.627], + [12109,0.852], + [12111,0.792], + [12113,0.845], + [12115,0.815], + [12117,0.887], + [12119,0.816], + [12121,0.734], + [12123,0.647], + [12125,0.576], + [12127,0.757], + [12129,0.752], + [12131,0.77], + [12133,0.662], + [13001,0.496], + [13003,0.509], + [13005,0.611], + [13007,0.447], + [13009,0.678], + [13011,0.607], + [13013,0.787], + [13015,0.783], + [13017,0.595], + [13019,0.599], + [13021,0.677], + [13023,0.633], + [13025,0.593], + [13027,0.702], + [13029,0.827], + [13031,0.687], + [13033,0.621], + [13035,0.644], + [13037,0.607], + [13039,0.823], + [13043,0.525], + [13045,0.753], + [13047,0.779], + [13049,0.604], + [13051,0.806], + [13053,0.752], + [13055,0.679], + [13057,0.904], + [13059,0.762], + [13061,0.546], + [13063,0.752], + [13065,0.452], + [13067,0.876], + [13069,0.593], + [13071,0.678], + [13073,0.802], + [13075,0.598], + [13077,0.815], + [13079,0.648], + [13081,0.551], + [13083,0.686], + [13085,0.81], + [13087,0.527], + [13089,0.81], + [13091,0.53], + [13093,0.537], + [13095,0.687], + [13097,0.777], + [13099,0.52], + [13101,0.477], + [13103,0.803], + [13105,0.528], + [13107,0.594], + [13109,0.637], + [13111,0.746], + [13113,0.887], + [13115,0.755], + [13117,0.912], + [13119,0.595], + [13121,0.809], + [13123,0.717], + [13125,0.619], + [13127,0.759], + [13129,0.686], + [13131,0.679], + [13133,0.649], + [13135,0.858], + [13137,0.625], + [13139,0.788], + [13141,0.436], + [13143,0.686], + [13145,0.769], + [13147,0.611], + [13149,0.599], + [13151,0.873], + [13153,0.769], + [13155,0.59], + [13157,0.748], + [13159,0.63], + [13161,0.521], + [13163,0.442], + [13165,0.466], + [13167,0.548], + [13169,0.777], + [13171,0.675], + [13173,0.501], + [13175,0.545], + [13177,0.83], + [13179,0.802], + [13181,0.537], + [13183,0.767], + [13185,0.662], + [13187,0.751], + [13189,0.575], + [13191,0.69], + [13193,0.567], + [13195,0.669], + [13197,0.524], + [13199,0.544], + [13201,0.447], + [13205,0.584], + [13207,0.701], + [13209,0.688], + [13211,0.715], + [13213,0.736], + [13215,0.724], + [13217,0.802], + [13219,0.834], + [13221,0.616], + [13223,0.829], + [13225,0.722], + [13227,0.808], + [13229,0.61], + [13231,0.748], + [13233,0.692], + [13235,0.588], + [13237,0.759], + [13239,0.455], + [13241,0.69], + [13243,0.607], + [13245,0.692], + [13247,0.765], + [13249,0.697], + [13251,0.653], + [13253,0.559], + [13255,0.656], + [13257,0.666], + [13259,0.517], + [13261,0.667], + [13263,0.505], + [13265,0.354], + [13267,0.652], + [13269,0.549], + [13271,0.249], + [13273,0.655], + [13275,0.743], + [13277,0.628], + [13279,0.632], + [13281,0.7], + [13283,0.586], + [13285,0.694], + [13287,0.675], + [13289,0.485], + [13291,0.707], + [13293,0.627], + [13295,0.706], + [13297,0.773], + [13299,0.648], + [13301,0.407], + [13303,0.616], + [13305,0.634], + [13307,0.484], + [13309,0.245], + [13311,0.672], + [13313,0.737], + [13315,0.499], + [13317,0.418], + [13319,0.553], + [13321,0.669], + [15001,0.745], + [15003,0.838], + [15005,0.604], + [15007,0.78], + [15009,0.815], + [16001,0.79], + [16003,0.661], + [16005,0.805], + [16007,0.766], + [16009,0.626], + [16011,0.783], + [16013,0.857], + [16015,0.725], + [16017,0.725], + [16019,0.826], + [16021,0.667], + [16023,0.728], + [16025,0.668], + [16027,0.739], + [16029,0.829], + [16031,0.796], + [16033,0.518], + [16035,0.683], + [16037,0.748], + [16039,0.769], + [16041,0.796], + [16043,0.754], + [16045,0.722], + [16047,0.7], + [16049,0.643], + [16051,0.788], + [16053,0.687], + [16055,0.807], + [16057,0.818], + [16059,0.731], + [16061,0.63], + [16063,0.641], + [16065,0.759], + [16067,0.768], + [16069,0.757], + [16071,0.789], + [16073,0.612], + [16075,0.711], + [16077,0.8], + [16079,0.669], + [16081,0.8], + [16083,0.776], + [16085,0.728], + [16087,0.656], + [17001,0.727], + [17003,0.454], + [17005,0.745], + [17007,0.822], + [17009,0.698], + [17011,0.749], + [17013,0.631], + [17015,0.74], + [17017,0.674], + [17019,0.808], + [17021,0.726], + [17023,0.681], + [17025,0.735], + [17027,0.745], + [17029,0.756], + [17031,0.767], + [17033,0.72], + [17035,0.702], + [17037,0.842], + [17039,0.736], + [17041,0.711], + [17043,0.869], + [17045,0.715], + [17047,0.724], + [17049,0.769], + [17051,0.645], + [17053,0.752], + [17055,0.649], + [17057,0.705], + [17059,0.64], + [17061,0.67], + [17063,0.813], + [17065,0.678], + [17067,0.673], + [17069,0.631], + [17071,0.701], + [17073,0.726], + [17075,0.739], + [17077,0.721], + [17079,0.688], + [17081,0.73], + [17083,0.706], + [17085,0.751], + [17087,0.607], + [17089,0.853], + [17091,0.744], + [17093,0.923], + [17095,0.693], + [17097,0.869], + [17099,0.775], + [17101,0.678], + [17103,0.764], + [17105,0.757], + [17107,0.75], + [17109,0.727], + [17111,0.889], + [17113,0.802], + [17115,0.745], + [17117,0.758], + [17119,0.791], + [17121,0.733], + [17123,0.723], + [17125,0.701], + [17127,0.603], + [17129,0.772], + [17131,0.747], + [17133,0.802], + [17135,0.692], + [17137,0.741], + [17139,0.689], + [17141,0.764], + [17143,0.731], + [17145,0.685], + [17147,0.82], + [17149,0.637], + [17151,0.562], + [17153,0.519], + [17155,0.729], + [17157,0.682], + [17159,0.709], + [17161,0.759], + [17163,0.698], + [17165,0.651], + [17167,0.787], + [17169,0.756], + [17171,0.724], + [17173,0.664], + [17175,0.706], + [17177,0.754], + [17179,0.786], + [17181,0.613], + [17183,0.68], + [17185,0.706], + [17187,0.714], + [17189,0.708], + [17191,0.644], + [17193,0.712], + [17195,0.758], + [17197,0.857], + [17199,0.719], + [17201,0.772], + [17203,0.79], + [18001,0.637], + [18003,0.784], + [18005,0.755], + [18007,0.699], + [18009,0.657], + [18011,0.834], + [18013,0.66], + [18015,0.711], + [18017,0.7], + [18019,0.736], + [18021,0.711], + [18023,0.72], + [18025,0.557], + [18027,0.603], + [18029,0.775], + [18031,0.661], + [18033,0.749], + [18035,0.737], + [18037,0.766], + [18039,0.739], + [18041,0.621], + [18043,0.745], + [18045,0.709], + [18047,0.65], + [18049,0.658], + [18051,0.751], + [18053,0.653], + [18055,0.668], + [18057,0.919], + [18059,0.829], + [18061,0.689], + [18063,0.854], + [18065,0.68], + [18067,0.744], + [18069,0.722], + [18071,0.714], + [18073,0.769], + [18075,0.614], + [18077,0.726], + [18079,0.672], + [18081,0.815], + [18083,0.74], + [18085,0.742], + [18087,0.54], + [18089,0.746], + [18091,0.742], + [18093,0.698], + [18095,0.74], + [18097,0.743], + [18099,0.675], + [18101,0.679], + [18103,0.707], + [18105,0.801], + [18107,0.763], + [18109,0.753], + [18111,0.741], + [18113,0.747], + [18115,0.72], + [18117,0.619], + [18119,0.64], + [18121,0.631], + [18123,0.664], + [18125,0.64], + [18127,0.81], + [18129,0.743], + [18131,0.694], + [18133,0.76], + [18135,0.695], + [18137,0.727], + [18139,0.587], + [18141,0.739], + [18143,0.668], + [18145,0.711], + [18147,0.68], + [18149,0.664], + [18151,0.767], + [18153,0.633], + [18155,0.633], + [18157,0.799], + [18159,0.74], + [18161,0.639], + [18163,0.75], + [18165,0.726], + [18167,0.726], + [18169,0.694], + [18171,0.714], + [18173,0.814], + [18175,0.627], + [18177,0.653], + [18179,0.737], + [18181,0.741], + [18183,0.746], + [19001,0.704], + [19003,0.681], + [19005,0.666], + [19007,0.655], + [19009,0.678], + [19011,0.73], + [19013,0.776], + [19015,0.756], + [19017,0.77], + [19019,0.741], + [19021,0.772], + [19023,0.703], + [19025,0.707], + [19027,0.732], + [19029,0.698], + [19031,0.763], + [19033,0.73], + [19035,0.777], + [19037,0.721], + [19039,0.741], + [19041,0.763], + [19043,0.685], + [19045,0.73], + [19047,0.662], + [19049,0.869], + [19051,0.619], + [19053,0.639], + [19055,0.727], + [19057,0.74], + [19059,0.783], + [19061,0.793], + [19063,0.708], + [19065,0.712], + [19067,0.721], + [19069,0.668], + [19071,0.735], + [19073,0.712], + [19075,0.77], + [19077,0.73], + [19079,0.712], + [19081,0.693], + [19083,0.692], + [19085,0.701], + [19087,0.732], + [19089,0.703], + [19091,0.728], + [19093,0.732], + [19095,0.708], + [19097,0.714], + [19099,0.728], + [19101,0.792], + [19103,0.865], + [19105,0.716], + [19107,0.691], + [19109,0.737], + [19111,0.707], + [19113,0.808], + [19115,0.752], + [19117,0.715], + [19119,0.794], + [19121,0.754], + [19123,0.761], + [19125,0.748], + [19127,0.7], + [19129,0.77], + [19131,0.715], + [19133,0.707], + [19135,0.696], + [19137,0.721], + [19139,0.752], + [19141,0.709], + [19143,0.762], + [19145,0.732], + [19147,0.743], + [19149,0.785], + [19151,0.738], + [19153,0.814], + [19155,0.744], + [19157,0.723], + [19159,0.673], + [19161,0.726], + [19163,0.763], + [19165,0.744], + [19167,0.819], + [19169,0.818], + [19171,0.715], + [19173,0.696], + [19175,0.707], + [19177,0.617], + [19179,0.71], + [19181,0.812], + [19183,0.73], + [19185,0.657], + [19187,0.724], + [19189,0.713], + [19191,0.755], + [19193,0.717], + [19195,0.69], + [19197,0.692], + [20001,0.7], + [20003,0.651], + [20005,0.685], + [20007,0.692], + [20009,0.707], + [20011,0.637], + [20013,0.72], + [20015,0.789], + [20017,0.685], + [20019,0.641], + [20021,0.652], + [20023,0.725], + [20025,0.616], + [20027,0.7], + [20029,0.677], + [20031,0.762], + [20033,0.729], + [20035,0.701], + [20037,0.725], + [20039,0.731], + [20041,0.719], + [20043,0.62], + [20045,0.853], + [20047,0.632], + [20049,0.643], + [20051,0.802], + [20053,0.73], + [20055,0.765], + [20057,0.711], + [20059,0.678], + [20061,0.83], + [20063,0.754], + [20065,0.746], + [20067,0.782], + [20069,0.725], + [20071,0.771], + [20073,0.624], + [20075,0.719], + [20077,0.7], + [20079,0.757], + [20081,0.735], + [20083,0.726], + [20085,0.733], + [20087,0.741], + [20089,0.656], + [20091,0.902], + [20093,0.697], + [20095,0.692], + [20097,0.663], + [20099,0.704], + [20101,0.755], + [20103,0.798], + [20105,0.704], + [20107,0.551], + [20109,0.761], + [20111,0.774], + [20113,0.783], + [20115,0.685], + [20117,0.697], + [20119,0.746], + [20121,0.71], + [20123,0.737], + [20125,0.698], + [20127,0.766], + [20129,0.696], + [20131,0.71], + [20133,0.651], + [20135,0.703], + [20137,0.698], + [20139,0.699], + [20141,0.71], + [20143,0.66], + [20145,0.725], + [20147,0.767], + [20149,0.798], + [20151,0.704], + [20153,0.759], + [20155,0.738], + [20157,0.633], + [20159,0.744], + [20161,0.844], + [20163,0.732], + [20165,0.686], + [20167,0.739], + [20169,0.747], + [20171,0.859], + [20173,0.764], + [20175,0.723], + [20177,0.727], + [20179,0.756], + [20181,0.803], + [20183,0.732], + [20185,0.674], + [20187,0.634], + [20189,0.702], + [20191,0.705], + [20193,0.852], + [20195,0.832], + [20197,0.731], + [20199,0.715], + [20201,0.652], + [20203,0.703], + [20205,0.596], + [20207,0.596], + [20209,0.678], + [21001,0.636], + [21003,0.617], + [21005,0.702], + [21007,0.7], + [21009,0.731], + [21011,0.663], + [21013,0.571], + [21015,0.875], + [21017,0.646], + [21019,0.754], + [21021,0.723], + [21023,0.628], + [21025,0.566], + [21027,0.645], + [21029,0.794], + [21031,0.624], + [21033,0.646], + [21035,0.737], + [21037,0.779], + [21039,0.669], + [21041,0.559], + [21043,0.628], + [21045,0.627], + [21047,0.679], + [21049,0.718], + [21051,0.679], + [21053,0.546], + [21055,0.603], + [21057,0.604], + [21059,0.753], + [21061,0.719], + [21063,0.587], + [21065,0.585], + [21067,0.817], + [21069,0.685], + [21071,0.656], + [21073,0.771], + [21075,0.583], + [21077,0.597], + [21079,0.711], + [21081,0.67], + [21083,0.669], + [21085,0.627], + [21087,0.617], + [21089,0.739], + [21091,0.738], + [21093,0.774], + [21095,0.579], + [21097,0.594], + [21099,0.643], + [21101,0.711], + [21103,0.651], + [21105,0.545], + [21107,0.677], + [21109,0.58], + [21111,0.777], + [21113,0.795], + [21115,0.697], + [21117,0.808], + [21119,0.612], + [21121,0.48], + [21123,0.731], + [21125,0.7], + [21127,0.651], + [21129,0.502], + [21131,0.591], + [21133,0.644], + [21135,0.597], + [21137,0.621], + [21139,0.604], + [21141,0.594], + [21143,0.656], + [21145,0.716], + [21147,0.441], + [21149,0.675], + [21151,0.752], + [21153,0.653], + [21155,0.628], + [21157,0.769], + [21159,0.645], + [21161,0.664], + [21163,0.802], + [21165,0.637], + [21167,0.707], + [21169,0.696], + [21171,0.606], + [21173,0.674], + [21175,0.665], + [21177,0.644], + [21179,0.749], + [21181,0.587], + [21183,0.652], + [21185,0.887], + [21187,0.558], + [21189,0.606], + [21191,0.638], + [21193,0.695], + [21195,0.678], + [21197,0.563], + [21199,0.649], + [21201,0.407], + [21203,0.634], + [21205,0.766], + [21207,0.602], + [21209,0.811], + [21211,0.76], + [21213,0.647], + [21215,0.836], + [21217,0.701], + [21219,0.529], + [21221,0.673], + [21223,0.655], + [21225,0.691], + [21227,0.789], + [21229,0.631], + [21231,0.58], + [21233,0.591], + [21235,0.594], + [21237,0.552], + [21239,0.81], + [22001,0.66], + [22003,0.649], + [22005,0.822], + [22007,0.665], + [22009,0.607], + [22011,0.691], + [22013,0.586], + [22015,0.675], + [22017,0.681], + [22019,0.708], + [22021,0.58], + [22023,0.661], + [22025,0.54], + [22027,0.447], + [22029,0.565], + [22031,0.642], + [22033,0.771], + [22035,0.334], + [22037,0.562], + [22039,0.582], + [22041,0.441], + [22043,0.58], + [22045,0.684], + [22047,0.657], + [22049,0.673], + [22051,0.729], + [22053,0.64], + [22055,0.805], + [22057,0.727], + [22059,0.649], + [22061,0.761], + [22063,0.756], + [22065,0.425], + [22067,0.506], + [22069,0.538], + [22071,0.661], + [22073,0.678], + [22075,0.748], + [22077,0.626], + [22079,0.726], + [22081,0.6], + [22083,0.478], + [22085,0.543], + [22087,0.684], + [22089,0.782], + [22091,0.488], + [22093,0.68], + [22095,0.701], + [22097,0.627], + [22099,0.68], + [22101,0.663], + [22103,0.836], + [22105,0.723], + [22107,0.42], + [22109,0.698], + [22111,0.482], + [22113,0.7], + [22115,0.708], + [22117,0.535], + [22119,0.491], + [22121,0.724], + [22123,0.438], + [22125,0.659], + [22127,0.645], + [23001,0.771], + [23003,0.682], + [23005,0.839], + [23007,0.753], + [23009,0.756], + [23011,0.77], + [23013,0.773], + [23015,0.754], + [23017,0.711], + [23019,0.764], + [23021,0.647], + [23023,0.791], + [23025,0.702], + [23027,0.759], + [23029,0.686], + [23031,0.815], + [24001,0.704], + [24003,0.879], + [24005,0.83], + [24009,0.879], + [24011,0.728], + [24013,0.833], + [24015,0.781], + [24017,0.846], + [24019,0.705], + [24021,0.853], + [24023,0.689], + [24025,0.852], + [24027,0.928], + [24029,0.726], + [24031,0.896], + [24033,0.832], + [24035,0.846], + [24037,0.785], + [24039,0.638], + [24041,0.793], + [24043,0.724], + [24045,0.756], + [24047,0.769], + [24510,0.695], + [25001,0.835], + [25003,0.782], + [25005,0.779], + [25007,0.77], + [25009,0.826], + [25011,0.78], + [25013,0.755], + [25015,0.855], + [25017,0.867], + [25019,0.903], + [25021,0.873], + [25023,0.856], + [25025,0.807], + [25027,0.822], + [26001,0.651], + [26003,0.684], + [26005,0.721], + [26007,0.704], + [26009,0.726], + [26011,0.618], + [26013,0.691], + [26015,0.76], + [26017,0.747], + [26019,0.772], + [26021,0.724], + [26023,0.727], + [26025,0.719], + [26027,0.723], + [26029,0.755], + [26031,0.684], + [26033,0.71], + [26035,0.632], + [26037,0.822], + [26039,0.726], + [26041,0.721], + [26043,0.73], + [26045,0.79], + [26047,0.765], + [26049,0.721], + [26051,0.594], + [26053,0.593], + [26055,0.821], + [26057,0.667], + [26059,0.665], + [26061,0.728], + [26063,0.67], + [26065,0.788], + [26067,0.74], + [26069,0.715], + [26071,0.576], + [26073,0.705], + [26075,0.747], + [26077,0.823], + [26079,0.653], + [26081,0.818], + [26083,0.615], + [26085,0.568], + [26087,0.763], + [26089,0.815], + [26091,0.769], + [26093,0.839], + [26095,0.614], + [26097,0.657], + [26099,0.811], + [26101,0.722], + [26103,0.754], + [26105,0.71], + [26107,0.701], + [26109,0.68], + [26111,0.768], + [26113,0.682], + [26115,0.776], + [26117,0.668], + [26119,0.658], + [26121,0.735], + [26123,0.642], + [26125,0.855], + [26127,0.653], + [26129,0.657], + [26131,0.576], + [26133,0.586], + [26135,0.584], + [26137,0.753], + [26139,0.831], + [26141,0.627], + [26143,0.718], + [26145,0.722], + [26147,0.776], + [26149,0.708], + [26151,0.665], + [26153,0.622], + [26155,0.747], + [26157,0.696], + [26159,0.701], + [26161,0.854], + [26163,0.689], + [26165,0.67], + [27001,0.665], + [27003,0.857], + [27005,0.73], + [27007,0.765], + [27009,0.78], + [27011,0.695], + [27013,0.826], + [27015,0.757], + [27017,0.69], + [27019,0.87], + [27021,0.723], + [27023,0.72], + [27025,0.824], + [27027,0.748], + [27029,0.685], + [27031,0.704], + [27033,0.72], + [27035,0.795], + [27037,0.867], + [27039,0.829], + [27041,0.752], + [27043,0.705], + [27045,0.71], + [27047,0.731], + [27049,0.791], + [27051,0.705], + [27053,0.836], + [27055,0.781], + [27057,0.747], + [27059,0.771], + [27061,0.75], + [27063,0.739], + [27065,0.674], + [27067,0.771], + [27069,0.555], + [27071,0.698], + [27073,0.715], + [27075,0.746], + [27077,0.421], + [27079,0.771], + [27081,0.682], + [27083,0.797], + [27085,0.787], + [27087,0.613], + [27089,0.688], + [27091,0.748], + [27093,0.717], + [27095,0.715], + [27097,0.71], + [27099,0.755], + [27101,0.732], + [27103,0.814], + [27105,0.728], + [27107,0.598], + [27109,0.857], + [27111,0.703], + [27113,0.725], + [27115,0.646], + [27117,0.704], + [27119,0.757], + [27121,0.734], + [27123,0.821], + [27125,0.699], + [27127,0.669], + [27129,0.637], + [27131,0.802], + [27133,0.77], + [27135,0.556], + [27137,0.739], + [27139,0.877], + [27141,0.856], + [27143,0.695], + [27145,0.787], + [27147,0.791], + [27149,0.754], + [27151,0.688], + [27153,0.674], + [27155,0.685], + [27157,0.757], + [27159,0.693], + [27161,0.793], + [27163,0.891], + [27165,0.626], + [27167,0.72], + [27169,0.797], + [27171,0.83], + [27173,0.729], + [28001,0.677], + [28003,0.594], + [28005,0.51], + [28007,0.571], + [28009,0.526], + [28011,0.544], + [28013,0.532], + [28015,0.579], + [28017,0.514], + [28019,0.516], + [28021,0.551], + [28023,0.511], + [28025,0.6], + [28027,0.512], + [28029,0.446], + [28031,0.522], + [28033,0.795], + [28035,0.699], + [28037,0.673], + [28039,0.609], + [28041,0.621], + [28043,0.571], + [28045,0.732], + [28047,0.746], + [28049,0.698], + [28051,0.324], + [28053,0.526], + [28055,0.492], + [28057,0.67], + [28059,0.72], + [28061,0.455], + [28063,0.565], + [28065,0.408], + [28067,0.489], + [28069,0.385], + [28071,0.76], + [28073,0.785], + [28075,0.604], + [28077,0.446], + [28079,0.502], + [28081,0.691], + [28083,0.399], + [28085,0.535], + [28087,0.64], + [28089,0.778], + [28091,0.502], + [28093,0.487], + [28095,0.559], + [28097,0.596], + [28099,0.566], + [28101,0.568], + [28103,0.461], + [28105,0.717], + [28107,0.486], + [28109,0.692], + [28111,0.585], + [28113,0.483], + [28115,0.562], + [28117,0.632], + [28119,0.473], + [28121,0.801], + [28123,0.471], + [28125,0.603], + [28127,0.52], + [28129,0.432], + [28131,0.641], + [28133,0.539], + [28135,0.482], + [28137,0.645], + [28139,0.599], + [28141,0.592], + [28143,0.603], + [28145,0.625], + [28147,0.454], + [28149,0.699], + [28151,0.607], + [28153,0.566], + [28155,0.59], + [28157,0.456], + [28159,0.548], + [28161,0.441], + [28163,0.515], + [29001,0.727], + [29003,0.738], + [29005,0.695], + [29007,0.68], + [29009,0.573], + [29011,0.578], + [29013,0.681], + [29015,0.602], + [29017,0.616], + [29019,0.818], + [29021,0.712], + [29023,0.665], + [29025,0.671], + [29027,0.68], + [29029,0.725], + [29031,0.77], + [29033,0.646], + [29035,0.599], + [29037,0.812], + [29039,0.635], + [29041,0.643], + [29043,0.789], + [29045,0.667], + [29047,0.841], + [29049,0.749], + [29051,0.687], + [29053,0.694], + [29055,0.644], + [29057,0.629], + [29059,0.601], + [29061,0.679], + [29063,0.665], + [29065,0.656], + [29067,0.543], + [29069,0.631], + [29071,0.737], + [29073,0.713], + [29075,0.725], + [29077,0.738], + [29079,0.668], + [29081,0.725], + [29083,0.692], + [29085,0.632], + [29087,0.68], + [29089,0.666], + [29091,0.648], + [29093,0.595], + [29095,0.761], + [29097,0.675], + [29099,0.797], + [29101,0.816], + [29103,0.596], + [29105,0.654], + [29107,0.708], + [29109,0.708], + [29111,0.692], + [29113,0.764], + [29115,0.679], + [29117,0.665], + [29119,0.516], + [29121,0.64], + [29123,0.618], + [29125,0.575], + [29127,0.726], + [29129,0.644], + [29131,0.65], + [29133,0.661], + [29135,0.595], + [29137,0.632], + [29139,0.615], + [29141,0.582], + [29143,0.623], + [29145,0.662], + [29147,0.73], + [29149,0.535], + [29151,0.599], + [29153,0.554], + [29155,0.624], + [29157,0.72], + [29159,0.714], + [29161,0.76], + [29163,0.661], + [29165,0.875], + [29167,0.718], + [29169,0.772], + [29171,0.63], + [29173,0.758], + [29175,0.698], + [29177,0.71], + [29179,0.632], + [29181,0.643], + [29183,0.866], + [29185,0.6], + [29186,0.688], + [29187,0.713], + [29189,0.824], + [29195,0.697], + [29197,0.567], + [29199,0.693], + [29201,0.711], + [29203,0.494], + [29205,0.695], + [29207,0.687], + [29209,0.729], + [29211,0.627], + [29213,0.745], + [29215,0.579], + [29217,0.716], + [29219,0.74], + [29221,0.59], + [29223,0.617], + [29225,0.642], + [29227,0.684], + [29229,0.614], + [29510,0.678], + [30001,0.726], + [30003,0.591], + [30005,0.637], + [30007,0.679], + [30009,0.721], + [30011,0.704], + [30013,0.729], + [30015,0.675], + [30017,0.759], + [30019,0.725], + [30021,0.75], + [30023,0.701], + [30025,0.743], + [30027,0.726], + [30029,0.799], + [30031,0.852], + [30033,0.701], + [30035,0.537], + [30037,0.702], + [30039,0.739], + [30041,0.715], + [30043,0.778], + [30045,0.708], + [30047,0.685], + [30049,0.783], + [30051,0.619], + [30053,0.696], + [30055,0.663], + [30057,0.673], + [30059,0.642], + [30061,0.638], + [30063,0.814], + [30065,0.739], + [30067,0.752], + [30069,0.738], + [30071,0.674], + [30073,0.663], + [30075,0.686], + [30077,0.658], + [30079,0.69], + [30081,0.741], + [30083,0.747], + [30085,0.647], + [30087,0.565], + [30089,0.652], + [30091,0.76], + [30093,0.71], + [30095,0.77], + [30097,0.705], + [30099,0.722], + [30101,0.704], + [30103,0.644], + [30105,0.713], + [30107,0.643], + [30109,0.537], + [30111,0.803], + [31001,0.76], + [31003,0.703], + [31005,0.695], + [31007,0.793], + [31009,0.784], + [31011,0.756], + [31013,0.764], + [31015,0.652], + [31017,0.678], + [31019,0.801], + [31021,0.649], + [31023,0.713], + [31025,0.82], + [31027,0.745], + [31029,0.754], + [31031,0.768], + [31033,0.728], + [31035,0.745], + [31037,0.68], + [31039,0.653], + [31041,0.65], + [31043,0.723], + [31045,0.693], + [31047,0.73], + [31049,0.694], + [31051,0.702], + [31053,0.741], + [31055,0.803], + [31057,0.729], + [31059,0.703], + [31061,0.698], + [31063,0.678], + [31065,0.706], + [31067,0.745], + [31069,0.681], + [31071,0.606], + [31073,0.742], + [31075,0.715], + [31077,0.636], + [31079,0.756], + [31081,0.796], + [31083,0.738], + [31085,0.735], + [31087,0.63], + [31089,0.663], + [31091,0.611], + [31093,0.701], + [31095,0.687], + [31097,0.688], + [31099,0.761], + [31101,0.785], + [31103,0.787], + [31105,0.704], + [31107,0.661], + [31109,0.84], + [31111,0.752], + [31113,0.664], + [31115,0.673], + [31117,0.62], + [31119,0.724], + [31121,0.685], + [31123,0.704], + [31125,0.71], + [31127,0.706], + [31129,0.704], + [31131,0.728], + [31133,0.655], + [31135,0.823], + [31137,0.767], + [31139,0.741], + [31141,0.754], + [31143,0.789], + [31145,0.705], + [31147,0.71], + [31149,0.689], + [31151,0.72], + [31153,0.884], + [31155,0.752], + [31157,0.74], + [31159,0.768], + [31161,0.647], + [31163,0.688], + [31165,0.661], + [31167,0.741], + [31169,0.736], + [31171,0.775], + [31173,0.59], + [31175,0.656], + [31177,0.777], + [31179,0.803], + [31181,0.688], + [31183,0.683], + [31185,0.77], + [32001,0.78], + [32003,0.793], + [32005,0.845], + [32007,0.813], + [32009,0.577], + [32011,0.723], + [32013,0.716], + [32015,0.691], + [32017,0.743], + [32019,0.787], + [32021,0.666], + [32023,0.716], + [32027,0.621], + [32029,0.786], + [32031,0.808], + [32033,0.735], + [32510,0.779], + [33001,0.825], + [33003,0.825], + [33005,0.808], + [33007,0.734], + [33009,0.802], + [33011,0.87], + [33013,0.83], + [33015,0.882], + [33017,0.83], + [33019,0.781], + [34001,0.784], + [34003,0.874], + [34005,0.863], + [34007,0.806], + [34009,0.799], + [34011,0.714], + [34013,0.762], + [34015,0.845], + [34017,0.815], + [34019,0.882], + [34021,0.805], + [34023,0.834], + [34025,0.862], + [34027,0.893], + [34029,0.792], + [34031,0.767], + [34033,0.744], + [34035,0.894], + [34037,0.863], + [34039,0.794], + [34041,0.828], + [35001,0.757], + [35003,0.551], + [35005,0.679], + [35006,0.522], + [35007,0.626], + [35009,0.737], + [35011,0.649], + [35013,0.702], + [35015,0.762], + [35017,0.651], + [35019,0.323], + [35021,0.473], + [35023,0.611], + [35025,0.734], + [35027,0.647], + [35028,0.863], + [35029,0.511], + [35031,0.396], + [35033,0.453], + [35035,0.729], + [35037,0.556], + [35039,0.491], + [35041,0.715], + [35043,0.784], + [35045,0.584], + [35047,0.471], + [35049,0.762], + [35051,0.579], + [35053,0.539], + [35055,0.566], + [35057,0.592], + [35059,0.551], + [35061,0.633], + [36001,0.807], + [36003,0.694], + [36005,0.704], + [36007,0.776], + [36009,0.666], + [36011,0.745], + [36013,0.715], + [36015,0.749], + [36017,0.752], + [36019,0.76], + [36021,0.749], + [36023,0.703], + [36025,0.719], + [36027,0.843], + [36029,0.76], + [36031,0.752], + [36033,0.708], + [36035,0.733], + [36037,0.754], + [36039,0.718], + [36041,0.732], + [36043,0.731], + [36045,0.807], + [36047,0.754], + [36049,0.724], + [36051,0.784], + [36053,0.785], + [36055,0.794], + [36057,0.719], + [36059,0.876], + [36061,0.819], + [36063,0.732], + [36065,0.757], + [36067,0.778], + [36069,0.805], + [36071,0.756], + [36073,0.749], + [36075,0.795], + [36077,0.754], + [36079,0.899], + [36081,0.797], + [36083,0.813], + [36085,0.799], + [36087,0.789], + [36089,0.755], + [36091,0.857], + [36093,0.802], + [36095,0.711], + [36097,0.722], + [36099,0.754], + [36101,0.716], + [36103,0.857], + [36105,0.76], + [36107,0.771], + [36109,0.829], + [36111,0.818], + [36113,0.81], + [36115,0.736], + [36117,0.73], + [36119,0.834], + [36121,0.731], + [36123,0.696], + [37001,0.735], + [37003,0.668], + [37005,0.686], + [37007,0.619], + [37009,0.661], + [37011,0.628], + [37013,0.608], + [37015,0.52], + [37017,0.605], + [37019,0.776], + [37021,0.793], + [37023,0.658], + [37025,0.854], + [37027,0.704], + [37029,0.796], + [37031,0.794], + [37033,0.607], + [37035,0.75], + [37037,0.762], + [37039,0.656], + [37041,0.638], + [37043,0.737], + [37045,0.618], + [37047,0.576], + [37049,0.784], + [37051,0.789], + [37053,0.801], + [37055,0.848], + [37057,0.732], + [37059,0.77], + [37061,0.577], + [37063,0.838], + [37065,0.58], + [37067,0.779], + [37069,0.719], + [37071,0.747], + [37073,0.636], + [37075,0.49], + [37077,0.733], + [37079,0.689], + [37081,0.709], + [37083,0.563], + [37085,0.75], + [37087,0.677], + [37089,0.767], + [37091,0.568], + [37093,0.756], + [37095,0.475], + [37097,0.774], + [37099,0.648], + [37101,0.75], + [37103,0.555], + [37105,0.737], + [37107,0.712], + [37109,0.754], + [37111,0.673], + [37113,0.677], + [37115,0.67], + [37117,0.575], + [37119,0.842], + [37121,0.626], + [37123,0.612], + [37125,0.785], + [37127,0.687], + [37129,0.815], + [37131,0.528], + [37133,0.833], + [37135,0.87], + [37137,0.683], + [37139,0.692], + [37141,0.709], + [37143,0.672], + [37145,0.699], + [37147,0.759], + [37149,0.744], + [37151,0.684], + [37153,0.652], + [37155,0.502], + [37157,0.665], + [37159,0.733], + [37161,0.632], + [37163,0.583], + [37165,0.546], + [37167,0.727], + [37169,0.674], + [37171,0.623], + [37173,0.449], + [37175,0.746], + [37177,0.554], + [37179,0.871], + [37181,0.612], + [37183,0.883], + [37185,0.538], + [37187,0.561], + [37189,0.787], + [37191,0.728], + [37193,0.665], + [37195,0.712], + [37197,0.655], + [37199,0.591], + [38001,0.761], + [38003,0.725], + [38005,0.548], + [38007,0.646], + [38009,0.767], + [38011,0.753], + [38013,0.692], + [38015,0.806], + [38017,0.825], + [38019,0.79], + [38021,0.782], + [38023,0.637], + [38025,0.748], + [38027,0.658], + [38029,0.555], + [38031,0.738], + [38033,0.654], + [38035,0.792], + [38037,0.676], + [38039,0.673], + [38041,0.69], + [38043,0.651], + [38045,0.691], + [38047,0.676], + [38049,0.758], + [38051,0.624], + [38053,0.775], + [38055,0.631], + [38057,0.769], + [38059,0.762], + [38061,0.671], + [38063,0.674], + [38065,0.737], + [38067,0.69], + [38069,0.727], + [38071,0.707], + [38073,0.732], + [38075,0.73], + [38077,0.736], + [38079,0.643], + [38081,0.778], + [38083,0.629], + [38085,0.542], + [38087,0.683], + [38089,0.781], + [38091,0.773], + [38093,0.722], + [38095,0.685], + [38097,0.776], + [38099,0.686], + [38101,0.848], + [38103,0.723], + [38105,0.757], + [39001,0.548], + [39003,0.741], + [39005,0.752], + [39007,0.718], + [39009,0.71], + [39011,0.802], + [39013,0.696], + [39015,0.688], + [39017,0.821], + [39019,0.693], + [39021,0.799], + [39023,0.762], + [39025,0.813], + [39027,0.731], + [39029,0.721], + [39031,0.664], + [39033,0.728], + [39035,0.746], + [39037,0.719], + [39039,0.775], + [39041,0.904], + [39043,0.768], + [39045,0.817], + [39047,0.671], + [39049,0.831], + [39051,0.78], + [39053,0.639], + [39055,0.798], + [39057,0.826], + [39059,0.703], + [39061,0.778], + [39063,0.794], + [39065,0.698], + [39067,0.684], + [39069,0.778], + [39071,0.634], + [39073,0.694], + [39075,0.524], + [39077,0.747], + [39079,0.675], + [39081,0.714], + [39083,0.743], + [39085,0.825], + [39087,0.666], + [39089,0.811], + [39091,0.76], + [39093,0.778], + [39095,0.756], + [39097,0.783], + [39099,0.733], + [39101,0.734], + [39103,0.851], + [39105,0.642], + [39107,0.796], + [39109,0.787], + [39111,0.605], + [39113,0.776], + [39115,0.637], + [39117,0.715], + [39119,0.73], + [39121,0.591], + [39123,0.771], + [39125,0.707], + [39127,0.666], + [39129,0.778], + [39131,0.652], + [39133,0.777], + [39135,0.749], + [39137,0.771], + [39139,0.701], + [39141,0.723], + [39143,0.714], + [39145,0.671], + [39147,0.738], + [39149,0.746], + [39151,0.787], + [39153,0.774], + [39155,0.708], + [39157,0.701], + [39159,0.838], + [39161,0.717], + [39163,0.556], + [39165,0.882], + [39167,0.676], + [39169,0.75], + [39171,0.754], + [39173,0.812], + [39175,0.714], + [40001,0.491], + [40003,0.741], + [40005,0.642], + [40007,0.705], + [40009,0.723], + [40011,0.595], + [40013,0.657], + [40015,0.569], + [40017,0.82], + [40019,0.607], + [40021,0.589], + [40023,0.53], + [40025,0.627], + [40027,0.844], + [40029,0.602], + [40031,0.764], + [40033,0.661], + [40035,0.604], + [40037,0.721], + [40039,0.743], + [40041,0.659], + [40043,0.636], + [40045,0.612], + [40047,0.741], + [40049,0.668], + [40051,0.645], + [40053,0.691], + [40055,0.697], + [40057,0.703], + [40059,0.634], + [40061,0.602], + [40063,0.512], + [40065,0.74], + [40067,0.549], + [40069,0.582], + [40071,0.624], + [40073,0.646], + [40075,0.675], + [40077,0.59], + [40079,0.618], + [40081,0.594], + [40083,0.738], + [40085,0.614], + [40087,0.793], + [40089,0.537], + [40091,0.562], + [40093,0.657], + [40095,0.57], + [40097,0.688], + [40099,0.642], + [40101,0.625], + [40103,0.65], + [40105,0.587], + [40107,0.578], + [40109,0.768], + [40111,0.617], + [40113,0.67], + [40115,0.593], + [40117,0.595], + [40119,0.783], + [40121,0.671], + [40123,0.64], + [40125,0.663], + [40127,0.598], + [40129,0.618], + [40131,0.755], + [40133,0.592], + [40135,0.634], + [40137,0.672], + [40139,0.613], + [40141,0.652], + [40143,0.788], + [40145,0.82], + [40147,0.738], + [40149,0.668], + [40151,0.733], + [40153,0.733], + [41001,0.7], + [41003,0.873], + [41005,0.854], + [41007,0.798], + [41009,0.814], + [41011,0.7], + [41013,0.777], + [41015,0.723], + [41017,0.83], + [41019,0.756], + [41021,0.671], + [41023,0.731], + [41025,0.709], + [41027,0.779], + [41029,0.812], + [41031,0.756], + [41033,0.765], + [41035,0.743], + [41037,0.621], + [41039,0.808], + [41041,0.768], + [41043,0.783], + [41045,0.679], + [41047,0.81], + [41049,0.727], + [41051,0.841], + [41053,0.824], + [41055,0.759], + [41057,0.747], + [41059,0.752], + [41061,0.754], + [41063,0.723], + [41065,0.73], + [41067,0.879], + [41069,0.703], + [41071,0.812], + [42001,0.765], + [42003,0.79], + [42005,0.718], + [42007,0.761], + [42009,0.69], + [42011,0.786], + [42013,0.723], + [42015,0.738], + [42017,0.864], + [42019,0.813], + [42021,0.718], + [42023,0.718], + [42025,0.744], + [42027,0.81], + [42029,0.862], + [42031,0.737], + [42033,0.682], + [42035,0.719], + [42037,0.734], + [42039,0.729], + [42041,0.805], + [42043,0.781], + [42045,0.822], + [42047,0.745], + [42049,0.764], + [42051,0.679], + [42053,0.6], + [42055,0.747], + [42057,0.671], + [42059,0.734], + [42061,0.701], + [42063,0.697], + [42065,0.697], + [42067,0.686], + [42069,0.733], + [42071,0.748], + [42073,0.71], + [42075,0.754], + [42077,0.789], + [42079,0.718], + [42081,0.723], + [42083,0.711], + [42085,0.732], + [42087,0.638], + [42089,0.806], + [42091,0.866], + [42093,0.731], + [42095,0.79], + [42097,0.679], + [42099,0.732], + [42101,0.696], + [42103,0.846], + [42105,0.699], + [42107,0.711], + [42109,0.704], + [42111,0.677], + [42113,0.678], + [42115,0.756], + [42117,0.723], + [42119,0.706], + [42121,0.729], + [42123,0.7], + [42125,0.772], + [42127,0.746], + [42129,0.748], + [42131,0.786], + [42133,0.764], + [44001,0.816], + [44003,0.834], + [44005,0.828], + [44007,0.773], + [44009,0.856], + [45001,0.627], + [45003,0.727], + [45005,0.406], + [45007,0.689], + [45009,0.536], + [45011,0.546], + [45013,0.822], + [45015,0.785], + [45017,0.621], + [45019,0.746], + [45021,0.586], + [45023,0.517], + [45025,0.584], + [45027,0.609], + [45029,0.736], + [45031,0.641], + [45033,0.498], + [45035,0.779], + [45037,0.626], + [45039,0.495], + [45041,0.69], + [45043,0.705], + [45045,0.767], + [45047,0.652], + [45049,0.609], + [45051,0.794], + [45053,0.616], + [45055,0.641], + [45057,0.723], + [45059,0.648], + [45061,0.492], + [45063,0.777], + [45065,0.656], + [45067,0.46], + [45069,0.531], + [45071,0.59], + [45073,0.691], + [45075,0.59], + [45077,0.721], + [45079,0.772], + [45081,0.551], + [45083,0.741], + [45085,0.702], + [45087,0.567], + [45089,0.462], + [45091,0.8], + [46003,0.694], + [46005,0.685], + [46007,0.624], + [46009,0.689], + [46011,0.803], + [46013,0.754], + [46015,0.686], + [46017,0.504], + [46019,0.754], + [46021,0.687], + [46023,0.583], + [46025,0.622], + [46027,0.845], + [46029,0.737], + [46031,0.525], + [46033,0.742], + [46035,0.796], + [46037,0.609], + [46039,0.714], + [46041,0.514], + [46043,0.677], + [46045,0.712], + [46047,0.762], + [46049,0.625], + [46051,0.756], + [46053,0.639], + [46055,0.59], + [46057,0.7], + [46059,0.691], + [46061,0.804], + [46063,0.786], + [46065,0.764], + [46067,0.668], + [46069,0.732], + [46071,0.508], + [46073,0.715], + [46075,0.723], + [46077,0.675], + [46079,0.769], + [46081,0.792], + [46083,0.875], + [46085,0.674], + [46087,0.753], + [46089,0.577], + [46091,0.729], + [46093,0.8], + [46095,0.407], + [46097,0.732], + [46099,0.794], + [46101,0.741], + [46102,null], + [46103,0.789], + [46105,0.722], + [46107,0.729], + [46109,0.641], + [46111,0.761], + [46115,0.771], + [46117,0.844], + [46119,0.76], + [46121,0.47], + [46123,0.688], + [46125,0.69], + [46127,0.774], + [46129,0.637], + [46135,0.743], + [46137,0.473], + [47001,0.714], + [47003,0.683], + [47005,0.579], + [47007,0.586], + [47009,0.744], + [47011,0.724], + [47013,0.551], + [47015,0.612], + [47017,0.657], + [47019,0.605], + [47021,0.767], + [47023,0.695], + [47025,0.588], + [47027,0.508], + [47029,0.532], + [47031,0.671], + [47033,0.603], + [47035,0.708], + [47037,0.792], + [47039,0.644], + [47041,0.658], + [47043,0.666], + [47045,0.718], + [47047,0.701], + [47049,0.626], + [47051,0.659], + [47053,0.651], + [47055,0.623], + [47057,0.672], + [47059,0.647], + [47061,0.593], + [47063,0.659], + [47065,0.752], + [47067,0.399], + [47069,0.541], + [47071,0.624], + [47073,0.595], + [47075,0.547], + [47077,0.626], + [47079,0.672], + [47081,0.537], + [47083,0.624], + [47085,0.633], + [47087,0.598], + [47089,0.686], + [47091,0.56], + [47093,0.786], + [47095,0.603], + [47097,0.599], + [47099,0.629], + [47101,0.557], + [47103,0.614], + [47105,0.755], + [47107,0.644], + [47109,0.598], + [47111,0.614], + [47113,0.702], + [47115,0.643], + [47117,0.677], + [47119,0.768], + [47121,0.577], + [47123,0.659], + [47125,0.808], + [47127,0.562], + [47129,0.652], + [47131,0.684], + [47133,0.605], + [47135,0.52], + [47137,0.649], + [47139,0.645], + [47141,0.684], + [47143,0.622], + [47145,0.693], + [47147,0.768], + [47149,0.805], + [47151,0.605], + [47153,0.701], + [47155,0.727], + [47157,0.705], + [47159,0.669], + [47161,0.602], + [47163,0.73], + [47165,0.805], + [47167,0.717], + [47169,0.581], + [47171,0.624], + [47173,0.583], + [47175,0.657], + [47177,0.67], + [47179,0.78], + [47181,0.584], + [47183,0.691], + [47185,0.629], + [47187,0.903], + [47189,0.817], + [48001,0.642], + [48003,0.815], + [48005,0.76], + [48007,0.757], + [48009,0.7], + [48011,0.731], + [48013,0.737], + [48015,0.709], + [48017,0.565], + [48019,0.718], + [48021,0.768], + [48023,0.699], + [48025,0.629], + [48027,0.796], + [48029,0.765], + [48031,0.77], + [48033,0.762], + [48035,0.675], + [48037,0.661], + [48039,0.813], + [48041,0.783], + [48043,0.67], + [48045,0.685], + [48047,0.546], + [48049,0.684], + [48051,0.612], + [48053,0.714], + [48055,0.604], + [48057,0.752], + [48059,0.573], + [48061,0.53], + [48063,0.564], + [48065,0.726], + [48067,0.56], + [48069,0.64], + [48071,0.791], + [48073,0.666], + [48075,0.673], + [48077,0.66], + [48079,0.563], + [48081,0.658], + [48083,0.624], + [48085,0.901], + [48087,0.656], + [48089,0.615], + [48091,0.856], + [48093,0.602], + [48095,0.698], + [48097,0.722], + [48099,0.827], + [48101,0.59], + [48103,0.687], + [48105,0.665], + [48107,0.605], + [48109,0.493], + [48111,0.682], + [48113,0.765], + [48115,0.611], + [48117,0.689], + [48119,0.647], + [48121,0.888], + [48123,0.6], + [48125,0.713], + [48127,0.573], + [48129,0.586], + [48131,0.552], + [48133,0.57], + [48135,0.8], + [48137,0.438], + [48139,0.81], + [48141,0.714], + [48143,0.721], + [48145,0.544], + [48147,0.69], + [48149,0.593], + [48151,0.654], + [48153,0.703], + [48155,0.681], + [48157,0.908], + [48159,0.705], + [48161,0.683], + [48163,0.54], + [48165,0.683], + [48167,0.805], + [48169,0.705], + [48171,0.759], + [48173,0.739], + [48175,0.613], + [48177,0.67], + [48179,0.673], + [48181,0.727], + [48183,0.719], + [48185,0.655], + [48187,0.803], + [48189,0.736], + [48191,0.565], + [48193,0.636], + [48195,0.697], + [48197,0.643], + [48199,0.759], + [48201,0.784], + [48203,0.631], + [48205,0.766], + [48207,0.554], + [48209,0.805], + [48211,0.717], + [48213,0.667], + [48215,0.624], + [48217,0.683], + [48219,0.72], + [48221,0.813], + [48223,0.727], + [48225,0.544], + [48227,0.684], + [48229,0.437], + [48231,0.704], + [48233,0.744], + [48235,0.69], + [48237,0.65], + [48239,0.649], + [48241,0.52], + [48243,0.663], + [48245,0.661], + [48247,0.486], + [48249,0.531], + [48251,0.794], + [48253,0.631], + [48255,0.55], + [48257,0.748], + [48259,0.826], + [48261,0.362], + [48263,0.622], + [48265,0.749], + [48267,0.618], + [48269,0.733], + [48271,0.547], + [48273,0.734], + [48275,0.669], + [48277,0.654], + [48279,0.61], + [48281,0.701], + [48283,0.545], + [48285,0.701], + [48287,0.705], + [48289,0.729], + [48291,0.726], + [48293,0.585], + [48295,0.793], + [48297,0.55], + [48299,0.72], + [48301,0.645], + [48303,0.747], + [48305,0.647], + [48307,0.701], + [48309,0.701], + [48311,0.562], + [48313,0.647], + [48315,0.557], + [48317,0.644], + [48319,0.583], + [48321,0.601], + [48323,0.555], + [48325,0.686], + [48327,0.56], + [48329,0.819], + [48331,0.617], + [48333,0.706], + [48335,0.619], + [48337,0.657], + [48339,0.85], + [48341,0.726], + [48343,0.721], + [48345,0.689], + [48347,0.729], + [48349,0.67], + [48351,0.545], + [48353,0.679], + [48355,0.761], + [48357,0.701], + [48359,0.752], + [48361,0.739], + [48363,0.684], + [48365,0.653], + [48367,0.812], + [48369,0.557], + [48371,0.582], + [48373,0.629], + [48375,0.672], + [48377,0.431], + [48379,0.674], + [48381,0.838], + [48383,0.659], + [48385,0.596], + [48387,0.6], + [48389,0.539], + [48391,0.648], + [48393,0.834], + [48395,0.701], + [48397,0.893], + [48399,0.637], + [48401,0.594], + [48403,0.681], + [48405,0.559], + [48407,0.689], + [48409,0.67], + [48411,0.639], + [48413,0.632], + [48415,0.729], + [48417,0.663], + [48419,0.543], + [48421,0.743], + [48423,0.769], + [48425,0.646], + [48427,0.494], + [48429,0.624], + [48431,0.697], + [48433,0.614], + [48435,0.552], + [48437,0.718], + [48439,0.816], + [48441,0.716], + [48443,0.426], + [48445,0.629], + [48447,0.596], + [48449,0.646], + [48451,0.729], + [48453,0.848], + [48455,0.566], + [48457,0.615], + [48459,0.708], + [48461,0.499], + [48463,0.615], + [48465,0.676], + [48467,0.616], + [48469,0.682], + [48471,0.746], + [48473,0.65], + [48475,0.671], + [48477,0.608], + [48479,0.575], + [48481,0.62], + [48483,0.695], + [48485,0.718], + [48487,0.674], + [48489,0.502], + [48491,0.897], + [48493,0.777], + [48495,0.677], + [48497,0.726], + [48499,0.738], + [48501,0.672], + [48503,0.687], + [48505,0.544], + [48507,0.437], + [49001,0.753], + [49003,0.813], + [49005,0.844], + [49007,0.756], + [49009,0.905], + [49011,0.888], + [49013,0.804], + [49015,0.76], + [49017,0.752], + [49019,0.799], + [49021,0.807], + [49023,0.773], + [49025,0.735], + [49027,0.787], + [49029,0.918], + [49031,0.7], + [49033,0.72], + [49035,0.83], + [49037,0.488], + [49039,0.764], + [49041,0.772], + [49043,0.912], + [49045,0.871], + [49047,0.795], + [49049,0.855], + [49051,0.885], + [49053,0.833], + [49055,0.747], + [49057,0.818], + [50001,0.783], + [50003,0.772], + [50005,0.7], + [50007,0.85], + [50009,0.675], + [50011,0.777], + [50013,0.807], + [50015,0.788], + [50017,0.735], + [50019,0.712], + [50021,0.758], + [50023,0.797], + [50025,0.751], + [50027,0.797], + [51001,0.619], + [51003,0.826], + [51005,0.649], + [51007,0.693], + [51009,0.607], + [51011,0.593], + [51013,0.898], + [51015,0.699], + [51017,0.61], + [51019,0.715], + [51021,0.681], + [51023,0.751], + [51025,0.569], + [51027,0.573], + [51029,0.575], + [51031,0.695], + [51033,0.666], + [51035,0.623], + [51036,0.542], + [51037,0.499], + [51041,0.871], + [51043,0.72], + [51045,0.603], + [51047,0.769], + [51049,0.542], + [51051,0.561], + [51053,0.684], + [51057,0.54], + [51059,0.921], + [51061,0.835], + [51063,0.668], + [51065,0.815], + [51067,0.661], + [51069,0.757], + [51071,0.708], + [51073,0.793], + [51075,0.788], + [51077,0.611], + [51079,0.788], + [51081,0.531], + [51083,0.524], + [51085,0.831], + [51087,0.833], + [51089,0.648], + [51091,0.653], + [51093,0.727], + [51095,0.853], + [51097,0.517], + [51099,0.828], + [51101,0.662], + [51103,0.699], + [51105,0.488], + [51107,0.93], + [51109,0.717], + [51111,0.529], + [51113,0.67], + [51115,0.722], + [51117,0.549], + [51119,0.646], + [51121,0.841], + [51125,0.602], + [51127,0.75], + [51131,0.619], + [51133,0.698], + [51135,0.574], + [51137,0.744], + [51139,0.603], + [51141,0.615], + [51143,0.616], + [51145,0.837], + [51147,0.622], + [51149,0.788], + [51153,0.916], + [51155,0.64], + [51157,0.702], + [51159,0.619], + [51161,0.804], + [51163,0.658], + [51165,0.717], + [51167,0.565], + [51169,0.599], + [51171,0.709], + [51173,0.642], + [51175,0.649], + [51177,0.858], + [51179,0.915], + [51181,0.588], + [51183,0.597], + [51185,0.67], + [51187,0.783], + [51191,0.705], + [51193,0.712], + [51195,0.651], + [51197,0.644], + [51199,0.895], + [51510,0.885], + [51520,0.717], + [51530,0.614], + [51540,0.782], + [51550,0.862], + [51570,0.716], + [51580,0.598], + [51590,0.637], + [51595,0.56], + [51600,0.926], + [51610,0.917], + [51620,0.661], + [51630,0.801], + [51640,0.631], + [51650,0.791], + [51660,0.723], + [51670,0.622], + [51678,0.658], + [51680,0.705], + [51683,0.869], + [51685,0.887], + [51690,0.634], + [51700,0.774], + [51710,0.789], + [51720,0.631], + [51730,0.616], + [51735,0.87], + [51740,0.736], + [51750,0.757], + [51760,0.706], + [51770,0.698], + [51775,0.761], + [51790,0.721], + [51800,0.769], + [51810,0.866], + [51820,0.673], + [51830,0.821], + [51840,0.711], + [53001,0.631], + [53003,0.763], + [53005,0.802], + [53007,0.737], + [53009,0.8], + [53011,0.869], + [53013,0.758], + [53015,0.777], + [53017,0.775], + [53019,0.608], + [53021,0.733], + [53023,0.722], + [53025,0.748], + [53027,0.781], + [53029,0.871], + [53031,0.84], + [53033,0.885], + [53035,0.88], + [53037,0.815], + [53039,0.733], + [53041,0.738], + [53043,0.754], + [53045,0.788], + [53047,0.688], + [53049,0.75], + [53051,0.666], + [53053,0.835], + [53055,0.835], + [53057,0.831], + [53059,0.714], + [53061,0.87], + [53063,0.824], + [53065,0.697], + [53067,0.85], + [53069,0.771], + [53071,0.796], + [53073,0.848], + [53075,0.823], + [53077,0.724], + [54001,0.66], + [54003,0.783], + [54005,0.704], + [54007,0.596], + [54009,0.672], + [54011,0.675], + [54013,0.645], + [54015,0.659], + [54017,0.624], + [54019,0.698], + [54021,0.593], + [54023,0.648], + [54025,0.681], + [54027,0.543], + [54029,0.693], + [54031,0.693], + [54033,0.727], + [54035,0.638], + [54037,0.79], + [54039,0.743], + [54041,0.671], + [54043,0.69], + [54045,0.729], + [54047,0.594], + [54049,0.75], + [54051,0.682], + [54053,0.628], + [54055,0.641], + [54057,0.615], + [54059,0.667], + [54061,0.818], + [54063,0.579], + [54065,0.726], + [54067,0.677], + [54069,0.664], + [54071,0.559], + [54073,0.724], + [54075,0.674], + [54077,0.718], + [54079,0.72], + [54081,0.734], + [54083,0.653], + [54085,0.66], + [54087,0.592], + [54089,0.544], + [54091,0.707], + [54093,0.705], + [54095,0.642], + [54097,0.693], + [54099,0.628], + [54101,0.644], + [54103,0.644], + [54105,0.653], + [54107,0.762], + [54109,0.636], + [55001,0.688], + [55003,0.687], + [55005,0.74], + [55007,0.761], + [55009,0.811], + [55011,0.742], + [55013,0.701], + [55015,0.843], + [55017,0.776], + [55019,0.641], + [55021,0.768], + [55023,0.689], + [55025,0.855], + [55027,0.755], + [55029,0.758], + [55031,0.734], + [55033,0.786], + [55035,0.811], + [55037,0.681], + [55039,0.776], + [55041,0.626], + [55043,0.734], + [55045,0.746], + [55047,0.693], + [55049,0.764], + [55051,0.693], + [55053,0.706], + [55055,0.779], + [55057,0.705], + [55059,0.799], + [55061,0.719], + [55063,0.812], + [55065,0.707], + [55067,0.7], + [55069,0.711], + [55071,0.737], + [55073,0.785], + [55075,0.725], + [55077,0.711], + [55078,0.649], + [55079,0.737], + [55081,0.737], + [55083,0.752], + [55085,0.773], + [55087,0.825], + [55089,0.854], + [55091,0.772], + [55093,0.775], + [55095,0.722], + [55097,0.812], + [55099,0.7], + [55101,0.781], + [55103,0.682], + [55105,0.744], + [55107,0.66], + [55109,0.833], + [55111,0.763], + [55113,0.721], + [55115,0.728], + [55117,0.797], + [55119,0.675], + [55121,0.718], + [55123,0.668], + [55125,0.688], + [55127,0.795], + [55129,0.719], + [55131,0.837], + [55133,0.875], + [55135,0.735], + [55137,0.689], + [55139,0.788], + [55141,0.758], + [56001,0.81], + [56003,0.72], + [56005,0.864], + [56007,0.725], + [56009,0.762], + [56011,0.7], + [56013,0.719], + [56015,0.713], + [56017,0.744], + [56019,0.692], + [56021,0.824], + [56023,0.762], + [56025,0.785], + [56027,0.678], + [56029,0.804], + [56031,0.684], + [56033,0.809], + [56035,0.829], + [56037,0.822], + [56039,0.835], + [56041,0.838], + [56043,0.764], + [56045,0.711] + ] +} diff --git a/data/regional/united-states/technology/us-technology-broadband-2019.json b/data/regional/united-states/technology/us-technology-broadband-2019.json new file mode 100644 index 0000000..116cb4c --- /dev/null +++ b/data/regional/united-states/technology/us-technology-broadband-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Home Broadband Access", + "description" : "Percent of households that have access to broadband.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "technology", + "tags" : ["regional","us","counties","technology","broadband","internet"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.technology.broadband.2019"], + [1001,0.806], + [1003,0.818], + [1005,0.605], + [1007,0.692], + [1009,0.73], + [1011,0.601], + [1013,0.646], + [1015,0.751], + [1017,0.694], + [1019,0.707], + [1021,0.687], + [1023,0.613], + [1025,0.575], + [1027,0.701], + [1029,0.643], + [1031,0.8], + [1033,0.701], + [1035,0.527], + [1037,0.695], + [1039,0.707], + [1041,0.651], + [1043,0.741], + [1045,0.77], + [1047,0.697], + [1049,0.72], + [1051,0.815], + [1053,0.61], + [1055,0.765], + [1057,0.703], + [1059,0.619], + [1061,0.671], + [1063,0.513], + [1065,0.615], + [1067,0.751], + [1069,0.749], + [1071,0.709], + [1073,0.794], + [1075,0.629], + [1077,0.723], + [1079,0.62], + [1081,0.82], + [1083,0.801], + [1085,0.526], + [1087,0.602], + [1089,0.864], + [1091,0.597], + [1093,0.656], + [1095,0.795], + [1097,0.746], + [1099,0.398], + [1101,0.795], + [1103,0.751], + [1105,0.539], + [1107,0.661], + [1109,0.663], + [1111,0.698], + [1113,0.713], + [1115,0.782], + [1117,0.883], + [1119,0.631], + [1121,0.735], + [1123,0.749], + [1125,0.804], + [1127,0.72], + [1129,0.618], + [1131,0.537], + [1133,0.658], + [2013,0.624], + [2016,0.772], + [2020,0.9], + [2050,0.733], + [2060,0.783], + [2068,0.899], + [2070,0.759], + [2090,0.858], + [2100,0.838], + [2105,0.641], + [2110,0.907], + [2122,0.795], + [2130,0.848], + [2150,0.838], + [2158,0.653], + [2164,0.653], + [2170,0.866], + [2180,0.741], + [2185,0.698], + [2188,0.767], + [2195,0.821], + [2198,0.658], + [2220,0.842], + [2230,0.843], + [2240,0.716], + [2261,0.804], + [2275,0.738], + [2282,0.717], + [2290,0.429], + [4001,0.379], + [4003,0.799], + [4005,0.782], + [4007,0.662], + [4009,0.759], + [4011,0.822], + [4012,0.618], + [4013,0.863], + [4015,0.801], + [4017,0.625], + [4019,0.854], + [4021,0.84], + [4023,0.737], + [4025,0.822], + [4027,0.783], + [5001,0.677], + [5003,0.613], + [5005,0.746], + [5007,0.701], + [5009,0.81], + [5011,0.673], + [5013,0.634], + [5015,0.688], + [5017,0.622], + [5019,0.686], + [5021,0.668], + [5023,0.753], + [5025,0.606], + [5027,0.625], + [5029,0.654], + [5031,0.816], + [5033,0.726], + [5035,0.763], + [5037,0.706], + [5039,0.584], + [5041,0.55], + [5043,0.695], + [5045,0.804], + [5047,0.623], + [5049,0.579], + [5051,0.786], + [5053,0.74], + [5055,0.765], + [5057,0.729], + [5059,0.648], + [5061,0.661], + [5063,0.6], + [5065,0.537], + [5067,0.655], + [5069,0.604], + [5071,0.645], + [5073,0.61], + [5075,0.692], + [5077,0.587], + [5079,0.542], + [5081,0.67], + [5083,0.708], + [5085,0.802], + [5087,0.647], + [5089,0.775], + [5091,0.74], + [5093,0.726], + [5095,0.57], + [5097,0.605], + [5099,0.616], + [5101,0.596], + [5103,0.673], + [5105,0.678], + [5107,0.654], + [5109,0.67], + [5111,0.74], + [5113,0.693], + [5115,0.749], + [5117,0.579], + [5119,0.784], + [5121,0.681], + [5123,0.579], + [5125,0.834], + [5127,0.581], + [5129,0.604], + [5131,0.758], + [5133,0.756], + [5135,0.583], + [5137,0.506], + [5139,0.627], + [5141,0.64], + [5143,0.792], + [5145,0.759], + [5147,0.534], + [5149,0.705], + [6001,0.889], + [6003,0.826], + [6005,0.846], + [6007,0.854], + [6009,0.823], + [6011,0.81], + [6013,0.917], + [6015,0.797], + [6017,0.872], + [6019,0.802], + [6021,0.716], + [6023,0.835], + [6025,0.775], + [6027,0.803], + [6029,0.797], + [6031,0.804], + [6033,0.766], + [6035,0.788], + [6037,0.843], + [6039,0.799], + [6041,0.913], + [6043,0.749], + [6045,0.811], + [6047,0.839], + [6049,0.697], + [6051,0.841], + [6053,0.842], + [6055,0.891], + [6057,0.857], + [6059,0.907], + [6061,0.896], + [6063,0.779], + [6065,0.866], + [6067,0.879], + [6069,0.902], + [6071,0.844], + [6073,0.902], + [6075,0.876], + [6077,0.829], + [6079,0.88], + [6081,0.91], + [6083,0.878], + [6085,0.918], + [6087,0.873], + [6089,0.803], + [6091,0.748], + [6093,0.802], + [6095,0.905], + [6097,0.895], + [6099,0.848], + [6101,0.827], + [6103,0.757], + [6105,0.678], + [6107,0.777], + [6109,0.82], + [6111,0.882], + [6113,0.883], + [6115,0.831], + [8001,0.85], + [8003,0.754], + [8005,0.898], + [8007,0.831], + [8009,0.712], + [8011,0.73], + [8013,0.911], + [8014,0.929], + [8015,0.812], + [8017,0.822], + [8019,0.841], + [8021,0.673], + [8023,0.682], + [8025,0.767], + [8027,0.842], + [8029,0.737], + [8031,0.866], + [8033,0.647], + [8035,0.96], + [8037,0.897], + [8039,0.907], + [8041,0.907], + [8043,0.827], + [8045,0.864], + [8047,0.895], + [8049,0.894], + [8051,0.85], + [8053,0.737], + [8055,0.645], + [8057,0.789], + [8059,0.902], + [8061,0.846], + [8063,0.809], + [8065,0.809], + [8067,0.777], + [8069,0.893], + [8071,0.703], + [8073,0.762], + [8075,0.837], + [8077,0.857], + [8079,0.828], + [8081,0.8], + [8083,0.704], + [8085,0.774], + [8087,0.831], + [8089,0.717], + [8091,0.859], + [8093,0.839], + [8095,0.79], + [8097,0.929], + [8099,0.772], + [8101,0.762], + [8103,0.815], + [8105,0.638], + [8107,0.919], + [8109,0.664], + [8111,0.768], + [8113,0.845], + [8115,0.739], + [8117,0.835], + [8119,0.893], + [8121,0.818], + [8123,0.86], + [8125,0.756], + [9001,0.885], + [9003,0.839], + [9005,0.867], + [9007,0.864], + [9009,0.832], + [9011,0.864], + [9013,0.882], + [9015,0.836], + [10001,0.852], + [10003,0.866], + [10005,0.811], + [11001,0.826], + [12001,0.854], + [12003,0.776], + [12005,0.853], + [12007,0.71], + [12009,0.872], + [12011,0.845], + [12013,0.678], + [12015,0.847], + [12017,0.821], + [12019,0.905], + [12021,0.852], + [12023,0.786], + [12027,0.573], + [12029,0.584], + [12031,0.84], + [12033,0.83], + [12035,0.768], + [12037,0.771], + [12039,0.604], + [12041,0.661], + [12043,0.602], + [12045,0.75], + [12047,0.649], + [12049,0.595], + [12051,0.665], + [12053,0.843], + [12055,0.743], + [12057,0.875], + [12059,0.724], + [12061,0.821], + [12063,0.713], + [12065,0.733], + [12067,0.777], + [12069,0.856], + [12071,0.852], + [12073,0.879], + [12075,0.672], + [12077,0.672], + [12079,0.592], + [12081,0.834], + [12083,0.807], + [12085,0.856], + [12086,0.769], + [12087,0.836], + [12089,0.867], + [12091,0.837], + [12093,0.615], + [12095,0.873], + [12097,0.824], + [12099,0.85], + [12101,0.825], + [12103,0.829], + [12105,0.702], + [12107,0.722], + [12109,0.873], + [12111,0.847], + [12113,0.89], + [12115,0.851], + [12117,0.901], + [12119,0.86], + [12121,0.781], + [12123,0.687], + [12125,0.673], + [12127,0.802], + [12129,0.794], + [12131,0.819], + [12133,0.75], + [13001,0.604], + [13003,0.62], + [13005,0.664], + [13007,0.506], + [13009,0.748], + [13011,0.66], + [13013,0.842], + [13015,0.798], + [13017,0.555], + [13019,0.629], + [13021,0.752], + [13023,0.694], + [13025,0.661], + [13027,0.672], + [13029,0.872], + [13031,0.774], + [13033,0.723], + [13035,0.695], + [13037,0.632], + [13039,0.843], + [13043,0.634], + [13045,0.818], + [13047,0.829], + [13049,0.652], + [13051,0.852], + [13053,0.781], + [13055,0.697], + [13057,0.923], + [13059,0.824], + [13061,0.666], + [13063,0.802], + [13065,0.469], + [13067,0.916], + [13069,0.662], + [13071,0.72], + [13073,0.84], + [13075,0.644], + [13077,0.855], + [13079,0.724], + [13081,0.606], + [13083,0.753], + [13085,0.852], + [13087,0.554], + [13089,0.85], + [13091,0.606], + [13093,0.592], + [13095,0.734], + [13097,0.803], + [13099,0.491], + [13101,0.474], + [13103,0.807], + [13105,0.6], + [13107,0.693], + [13109,0.691], + [13111,0.832], + [13113,0.901], + [13115,0.778], + [13117,0.938], + [13119,0.68], + [13121,0.856], + [13123,0.768], + [13125,0.656], + [13127,0.779], + [13129,0.723], + [13131,0.703], + [13133,0.715], + [13135,0.886], + [13137,0.71], + [13139,0.858], + [13141,0.477], + [13143,0.769], + [13145,0.832], + [13147,0.701], + [13149,0.715], + [13151,0.884], + [13153,0.836], + [13155,0.62], + [13157,0.793], + [13159,0.733], + [13161,0.613], + [13163,0.603], + [13165,0.573], + [13167,0.6], + [13169,0.79], + [13171,0.71], + [13173,0.568], + [13175,0.602], + [13177,0.84], + [13179,0.87], + [13181,0.532], + [13183,0.808], + [13185,0.661], + [13187,0.813], + [13189,0.648], + [13191,0.723], + [13193,0.593], + [13195,0.737], + [13197,0.559], + [13199,0.6], + [13201,0.48], + [13205,0.685], + [13207,0.776], + [13209,0.757], + [13211,0.765], + [13213,0.775], + [13215,0.784], + [13217,0.855], + [13219,0.895], + [13221,0.657], + [13223,0.856], + [13225,0.742], + [13227,0.857], + [13229,0.641], + [13231,0.771], + [13233,0.745], + [13235,0.706], + [13237,0.757], + [13239,0.545], + [13241,0.737], + [13243,0.709], + [13245,0.758], + [13247,0.817], + [13249,0.725], + [13251,0.711], + [13253,0.627], + [13255,0.695], + [13257,0.692], + [13259,0.616], + [13261,0.675], + [13263,0.56], + [13265,0.491], + [13267,0.728], + [13269,0.614], + [13271,0.348], + [13273,0.721], + [13275,0.79], + [13277,0.647], + [13279,0.712], + [13281,0.768], + [13283,0.639], + [13285,0.731], + [13287,0.629], + [13289,0.598], + [13291,0.753], + [13293,0.691], + [13295,0.775], + [13297,0.822], + [13299,0.674], + [13301,0.465], + [13303,0.631], + [13305,0.737], + [13307,0.637], + [13309,0.399], + [13311,0.746], + [13313,0.802], + [13315,0.55], + [13317,0.477], + [13319,0.589], + [13321,0.699], + [15001,0.775], + [15003,0.866], + [15005,0.667], + [15007,0.846], + [15009,0.84], + [16001,0.844], + [16003,0.739], + [16005,0.85], + [16007,0.854], + [16009,0.718], + [16011,0.854], + [16013,0.87], + [16015,0.794], + [16017,0.757], + [16019,0.882], + [16021,0.74], + [16023,0.808], + [16025,0.726], + [16027,0.82], + [16029,0.871], + [16031,0.854], + [16033,0.666], + [16035,0.733], + [16037,0.764], + [16039,0.829], + [16041,0.865], + [16043,0.802], + [16045,0.781], + [16047,0.736], + [16049,0.694], + [16051,0.864], + [16053,0.755], + [16055,0.842], + [16057,0.855], + [16059,0.767], + [16061,0.663], + [16063,0.704], + [16065,0.76], + [16067,0.813], + [16069,0.79], + [16071,0.877], + [16073,0.735], + [16075,0.801], + [16077,0.803], + [16079,0.724], + [16081,0.904], + [16083,0.83], + [16085,0.85], + [16087,0.743], + [17001,0.782], + [17003,0.566], + [17005,0.777], + [17007,0.856], + [17009,0.75], + [17011,0.789], + [17013,0.701], + [17015,0.803], + [17017,0.762], + [17019,0.826], + [17021,0.773], + [17023,0.755], + [17025,0.778], + [17027,0.77], + [17029,0.791], + [17031,0.814], + [17033,0.776], + [17035,0.762], + [17037,0.882], + [17039,0.793], + [17041,0.737], + [17043,0.907], + [17045,0.782], + [17047,0.784], + [17049,0.812], + [17051,0.721], + [17053,0.794], + [17055,0.728], + [17057,0.778], + [17059,0.661], + [17061,0.733], + [17063,0.855], + [17065,0.732], + [17067,0.727], + [17069,0.726], + [17071,0.809], + [17073,0.762], + [17075,0.793], + [17077,0.776], + [17079,0.753], + [17081,0.803], + [17083,0.762], + [17085,0.802], + [17087,0.691], + [17089,0.879], + [17091,0.778], + [17093,0.922], + [17095,0.73], + [17097,0.898], + [17099,0.821], + [17101,0.747], + [17103,0.807], + [17105,0.792], + [17107,0.77], + [17109,0.752], + [17111,0.919], + [17113,0.823], + [17115,0.777], + [17117,0.791], + [17119,0.834], + [17121,0.782], + [17123,0.762], + [17125,0.78], + [17127,0.674], + [17129,0.833], + [17131,0.817], + [17133,0.841], + [17135,0.749], + [17137,0.752], + [17139,0.758], + [17141,0.815], + [17143,0.78], + [17145,0.748], + [17147,0.822], + [17149,0.724], + [17151,0.606], + [17153,0.511], + [17155,0.803], + [17157,0.765], + [17159,0.766], + [17161,0.812], + [17163,0.768], + [17165,0.716], + [17167,0.802], + [17169,0.807], + [17171,0.801], + [17173,0.721], + [17175,0.768], + [17177,0.786], + [17179,0.816], + [17181,0.646], + [17183,0.766], + [17185,0.766], + [17187,0.821], + [17189,0.761], + [17191,0.701], + [17193,0.746], + [17195,0.797], + [17197,0.891], + [17199,0.762], + [17201,0.827], + [17203,0.829], + [18001,0.711], + [18003,0.842], + [18005,0.814], + [18007,0.78], + [18009,0.731], + [18011,0.867], + [18013,0.775], + [18015,0.773], + [18017,0.76], + [18019,0.768], + [18021,0.764], + [18023,0.763], + [18025,0.636], + [18027,0.688], + [18029,0.826], + [18031,0.768], + [18033,0.781], + [18035,0.783], + [18037,0.81], + [18039,0.805], + [18041,0.707], + [18043,0.783], + [18045,0.789], + [18047,0.759], + [18049,0.762], + [18051,0.791], + [18053,0.719], + [18055,0.719], + [18057,0.942], + [18059,0.853], + [18061,0.706], + [18063,0.892], + [18065,0.744], + [18067,0.79], + [18069,0.788], + [18071,0.739], + [18073,0.801], + [18075,0.681], + [18077,0.761], + [18079,0.757], + [18081,0.858], + [18083,0.794], + [18085,0.798], + [18087,0.588], + [18089,0.799], + [18091,0.793], + [18093,0.758], + [18095,0.792], + [18097,0.792], + [18099,0.704], + [18101,0.713], + [18103,0.763], + [18105,0.854], + [18107,0.817], + [18109,0.823], + [18111,0.814], + [18113,0.797], + [18115,0.752], + [18117,0.698], + [18119,0.732], + [18121,0.685], + [18123,0.739], + [18125,0.67], + [18127,0.839], + [18129,0.787], + [18131,0.76], + [18133,0.787], + [18135,0.745], + [18137,0.747], + [18139,0.677], + [18141,0.783], + [18143,0.659], + [18145,0.774], + [18147,0.712], + [18149,0.739], + [18151,0.795], + [18153,0.702], + [18155,0.717], + [18157,0.838], + [18159,0.771], + [18161,0.697], + [18163,0.809], + [18165,0.803], + [18167,0.81], + [18169,0.747], + [18171,0.82], + [18173,0.85], + [18175,0.683], + [18177,0.737], + [18179,0.792], + [18181,0.812], + [18183,0.811], + [19001,0.718], + [19003,0.755], + [19005,0.717], + [19007,0.696], + [19009,0.753], + [19011,0.798], + [19013,0.814], + [19015,0.807], + [19017,0.833], + [19019,0.787], + [19021,0.841], + [19023,0.752], + [19025,0.798], + [19027,0.793], + [19029,0.738], + [19031,0.807], + [19033,0.79], + [19035,0.795], + [19037,0.761], + [19039,0.768], + [19041,0.813], + [19043,0.737], + [19045,0.771], + [19047,0.757], + [19049,0.887], + [19051,0.645], + [19053,0.737], + [19055,0.787], + [19057,0.781], + [19059,0.825], + [19061,0.825], + [19063,0.776], + [19065,0.764], + [19067,0.767], + [19069,0.721], + [19071,0.772], + [19073,0.777], + [19075,0.815], + [19077,0.756], + [19079,0.757], + [19081,0.771], + [19083,0.727], + [19085,0.737], + [19087,0.768], + [19089,0.734], + [19091,0.77], + [19093,0.772], + [19095,0.778], + [19097,0.779], + [19099,0.8], + [19101,0.789], + [19103,0.88], + [19105,0.794], + [19107,0.76], + [19109,0.777], + [19111,0.753], + [19113,0.848], + [19115,0.781], + [19117,0.762], + [19119,0.849], + [19121,0.795], + [19123,0.806], + [19125,0.786], + [19127,0.765], + [19129,0.847], + [19131,0.804], + [19133,0.753], + [19135,0.728], + [19137,0.794], + [19139,0.792], + [19141,0.797], + [19143,0.836], + [19145,0.789], + [19147,0.772], + [19149,0.843], + [19151,0.787], + [19153,0.848], + [19155,0.781], + [19157,0.781], + [19159,0.749], + [19161,0.789], + [19163,0.813], + [19165,0.764], + [19167,0.876], + [19169,0.781], + [19171,0.754], + [19173,0.752], + [19175,0.764], + [19177,0.673], + [19179,0.752], + [19181,0.844], + [19183,0.798], + [19185,0.713], + [19187,0.759], + [19189,0.774], + [19191,0.817], + [19193,0.784], + [19195,0.781], + [19197,0.715], + [20001,0.749], + [20003,0.7], + [20005,0.729], + [20007,0.774], + [20009,0.776], + [20011,0.744], + [20013,0.751], + [20015,0.817], + [20017,0.708], + [20019,0.626], + [20021,0.724], + [20023,0.785], + [20025,0.749], + [20027,0.667], + [20029,0.738], + [20031,0.825], + [20033,0.739], + [20035,0.756], + [20037,0.77], + [20039,0.793], + [20041,0.763], + [20043,0.713], + [20045,0.877], + [20047,0.742], + [20049,0.695], + [20051,0.813], + [20053,0.765], + [20055,0.8], + [20057,0.783], + [20059,0.703], + [20061,0.833], + [20063,0.769], + [20065,0.774], + [20067,0.784], + [20069,0.802], + [20071,0.813], + [20073,0.665], + [20075,0.719], + [20077,0.73], + [20079,0.815], + [20081,0.811], + [20083,0.804], + [20085,0.806], + [20087,0.826], + [20089,0.718], + [20091,0.926], + [20093,0.736], + [20095,0.752], + [20097,0.733], + [20099,0.748], + [20101,0.851], + [20103,0.824], + [20105,0.732], + [20107,0.596], + [20109,0.806], + [20111,0.817], + [20113,0.81], + [20115,0.741], + [20117,0.788], + [20119,0.806], + [20121,0.743], + [20123,0.771], + [20125,0.748], + [20127,0.791], + [20129,0.733], + [20131,0.791], + [20133,0.706], + [20135,0.768], + [20137,0.799], + [20139,0.776], + [20141,0.743], + [20143,0.704], + [20145,0.743], + [20147,0.82], + [20149,0.859], + [20151,0.788], + [20153,0.825], + [20155,0.796], + [20157,0.702], + [20159,0.773], + [20161,0.881], + [20163,0.76], + [20165,0.792], + [20167,0.729], + [20169,0.804], + [20171,0.823], + [20173,0.823], + [20175,0.823], + [20177,0.729], + [20179,0.825], + [20181,0.845], + [20183,0.801], + [20185,0.727], + [20187,0.705], + [20189,0.733], + [20191,0.788], + [20193,0.819], + [20195,0.859], + [20197,0.767], + [20199,0.81], + [20201,0.695], + [20203,0.801], + [20205,0.649], + [20207,0.665], + [20209,0.763], + [21001,0.691], + [21003,0.693], + [21005,0.776], + [21007,0.754], + [21009,0.793], + [21011,0.739], + [21013,0.632], + [21015,0.899], + [21017,0.74], + [21019,0.811], + [21021,0.779], + [21023,0.677], + [21025,0.624], + [21027,0.702], + [21029,0.823], + [21031,0.69], + [21033,0.748], + [21035,0.819], + [21037,0.818], + [21039,0.8], + [21041,0.642], + [21043,0.596], + [21045,0.69], + [21047,0.762], + [21049,0.782], + [21051,0.686], + [21053,0.557], + [21055,0.659], + [21057,0.644], + [21059,0.827], + [21061,0.779], + [21063,0.658], + [21065,0.67], + [21067,0.867], + [21069,0.74], + [21071,0.719], + [21073,0.808], + [21075,0.654], + [21077,0.699], + [21079,0.77], + [21081,0.702], + [21083,0.735], + [21085,0.656], + [21087,0.693], + [21089,0.79], + [21091,0.781], + [21093,0.781], + [21095,0.668], + [21097,0.666], + [21099,0.678], + [21101,0.756], + [21103,0.725], + [21105,0.676], + [21107,0.727], + [21109,0.669], + [21111,0.835], + [21113,0.841], + [21115,0.748], + [21117,0.857], + [21119,0.653], + [21121,0.58], + [21123,0.716], + [21125,0.739], + [21127,0.616], + [21129,0.597], + [21131,0.658], + [21133,0.695], + [21135,0.688], + [21137,0.685], + [21139,0.72], + [21141,0.66], + [21143,0.722], + [21145,0.802], + [21147,0.572], + [21149,0.744], + [21151,0.807], + [21153,0.7], + [21155,0.716], + [21157,0.793], + [21159,0.727], + [21161,0.745], + [21163,0.858], + [21165,0.678], + [21167,0.77], + [21169,0.75], + [21171,0.702], + [21173,0.767], + [21175,0.699], + [21177,0.736], + [21179,0.822], + [21181,0.637], + [21183,0.709], + [21185,0.909], + [21187,0.617], + [21189,0.626], + [21191,0.714], + [21193,0.735], + [21195,0.732], + [21197,0.647], + [21199,0.715], + [21201,0.497], + [21203,0.663], + [21205,0.817], + [21207,0.656], + [21209,0.855], + [21211,0.819], + [21213,0.751], + [21215,0.853], + [21217,0.768], + [21219,0.562], + [21221,0.7], + [21223,0.666], + [21225,0.735], + [21227,0.852], + [21229,0.727], + [21231,0.633], + [21233,0.685], + [21235,0.656], + [21237,0.608], + [21239,0.833], + [22001,0.767], + [22003,0.708], + [22005,0.868], + [22007,0.72], + [22009,0.676], + [22011,0.769], + [22013,0.65], + [22015,0.667], + [22017,0.696], + [22019,0.752], + [22021,0.637], + [22023,0.745], + [22025,0.595], + [22027,0.476], + [22029,0.642], + [22031,0.682], + [22033,0.836], + [22035,0.402], + [22037,0.634], + [22039,0.663], + [22041,0.516], + [22043,0.64], + [22045,0.765], + [22047,0.74], + [22049,0.717], + [22051,0.78], + [22053,0.695], + [22055,0.85], + [22057,0.775], + [22059,0.746], + [22061,0.826], + [22063,0.805], + [22065,0.507], + [22067,0.53], + [22069,0.598], + [22071,0.734], + [22073,0.717], + [22075,0.81], + [22077,0.707], + [22079,0.783], + [22081,0.662], + [22083,0.478], + [22085,0.586], + [22087,0.776], + [22089,0.821], + [22091,0.644], + [22093,0.721], + [22095,0.751], + [22097,0.626], + [22099,0.755], + [22101,0.729], + [22103,0.864], + [22105,0.784], + [22107,0.472], + [22109,0.756], + [22111,0.547], + [22113,0.8], + [22115,0.749], + [22117,0.673], + [22119,0.494], + [22121,0.829], + [22123,0.423], + [22125,0.715], + [22127,0.737], + [23001,0.817], + [23003,0.692], + [23005,0.872], + [23007,0.775], + [23009,0.822], + [23011,0.819], + [23013,0.848], + [23015,0.802], + [23017,0.773], + [23019,0.816], + [23021,0.689], + [23023,0.834], + [23025,0.76], + [23027,0.803], + [23029,0.743], + [23031,0.854], + [24001,0.754], + [24003,0.91], + [24005,0.863], + [24009,0.902], + [24011,0.801], + [24013,0.867], + [24015,0.845], + [24017,0.875], + [24019,0.771], + [24021,0.888], + [24023,0.769], + [24025,0.886], + [24027,0.939], + [24029,0.746], + [24031,0.919], + [24033,0.872], + [24035,0.867], + [24037,0.835], + [24039,0.737], + [24041,0.861], + [24043,0.782], + [24045,0.805], + [24047,0.827], + [24510,0.745], + [25001,0.877], + [25003,0.824], + [25005,0.821], + [25007,0.79], + [25009,0.858], + [25011,0.819], + [25013,0.789], + [25015,0.878], + [25017,0.897], + [25019,0.917], + [25021,0.901], + [25023,0.882], + [25025,0.849], + [25027,0.856], + [26001,0.716], + [26003,0.744], + [26005,0.794], + [26007,0.768], + [26009,0.798], + [26011,0.716], + [26013,0.744], + [26015,0.801], + [26017,0.817], + [26019,0.835], + [26021,0.751], + [26023,0.776], + [26025,0.794], + [26027,0.784], + [26029,0.795], + [26031,0.75], + [26033,0.792], + [26035,0.728], + [26037,0.854], + [26039,0.825], + [26041,0.762], + [26043,0.768], + [26045,0.836], + [26047,0.828], + [26049,0.772], + [26051,0.706], + [26053,0.682], + [26055,0.855], + [26057,0.725], + [26059,0.738], + [26061,0.784], + [26063,0.723], + [26065,0.823], + [26067,0.808], + [26069,0.789], + [26071,0.682], + [26073,0.767], + [26075,0.815], + [26077,0.868], + [26079,0.738], + [26081,0.863], + [26083,0.722], + [26085,0.636], + [26087,0.813], + [26089,0.847], + [26091,0.816], + [26093,0.872], + [26095,0.729], + [26097,0.744], + [26099,0.86], + [26101,0.778], + [26103,0.804], + [26105,0.762], + [26107,0.771], + [26109,0.739], + [26111,0.83], + [26113,0.763], + [26115,0.814], + [26117,0.734], + [26119,0.723], + [26121,0.789], + [26123,0.729], + [26125,0.892], + [26127,0.737], + [26129,0.736], + [26131,0.701], + [26133,0.7], + [26135,0.653], + [26137,0.828], + [26139,0.864], + [26141,0.72], + [26143,0.788], + [26145,0.787], + [26147,0.825], + [26149,0.774], + [26151,0.706], + [26153,0.754], + [26155,0.796], + [26157,0.737], + [26159,0.778], + [26161,0.889], + [26163,0.755], + [26165,0.744], + [27001,0.737], + [27003,0.891], + [27005,0.804], + [27007,0.797], + [27009,0.831], + [27011,0.772], + [27013,0.849], + [27015,0.812], + [27017,0.767], + [27019,0.905], + [27021,0.774], + [27023,0.745], + [27025,0.86], + [27027,0.807], + [27029,0.768], + [27031,0.812], + [27033,0.759], + [27035,0.83], + [27037,0.894], + [27039,0.868], + [27041,0.789], + [27043,0.761], + [27045,0.768], + [27047,0.773], + [27049,0.831], + [27051,0.771], + [27053,0.872], + [27055,0.828], + [27057,0.799], + [27059,0.827], + [27061,0.786], + [27063,0.795], + [27065,0.761], + [27067,0.815], + [27069,0.661], + [27071,0.766], + [27073,0.79], + [27075,0.799], + [27077,0.506], + [27079,0.819], + [27081,0.726], + [27083,0.836], + [27085,0.83], + [27087,0.702], + [27089,0.768], + [27091,0.789], + [27093,0.782], + [27095,0.775], + [27097,0.76], + [27099,0.793], + [27101,0.747], + [27103,0.847], + [27105,0.762], + [27107,0.695], + [27109,0.871], + [27111,0.749], + [27113,0.802], + [27115,0.742], + [27117,0.784], + [27119,0.815], + [27121,0.763], + [27123,0.862], + [27125,0.774], + [27127,0.72], + [27129,0.707], + [27131,0.843], + [27133,0.803], + [27135,0.634], + [27137,0.794], + [27139,0.911], + [27141,0.892], + [27143,0.756], + [27145,0.823], + [27147,0.847], + [27149,0.808], + [27151,0.743], + [27153,0.718], + [27155,0.764], + [27157,0.816], + [27159,0.759], + [27161,0.827], + [27163,0.908], + [27165,0.693], + [27167,0.784], + [27169,0.835], + [27171,0.868], + [27173,0.794], + [28001,0.732], + [28003,0.707], + [28005,0.605], + [28007,0.682], + [28009,0.592], + [28011,0.608], + [28013,0.643], + [28015,0.623], + [28017,0.611], + [28019,0.663], + [28021,0.653], + [28023,0.63], + [28025,0.719], + [28027,0.617], + [28029,0.495], + [28031,0.516], + [28033,0.864], + [28035,0.751], + [28037,0.699], + [28039,0.645], + [28041,0.647], + [28043,0.669], + [28045,0.77], + [28047,0.798], + [28049,0.782], + [28051,0.426], + [28053,0.609], + [28055,0.41], + [28057,0.717], + [28059,0.786], + [28061,0.452], + [28063,0.682], + [28065,0.515], + [28067,0.564], + [28069,0.518], + [28071,0.831], + [28073,0.832], + [28075,0.709], + [28077,0.472], + [28079,0.607], + [28081,0.749], + [28083,0.435], + [28085,0.622], + [28087,0.772], + [28089,0.85], + [28091,0.556], + [28093,0.654], + [28095,0.701], + [28097,0.669], + [28099,0.661], + [28101,0.646], + [28103,0.568], + [28105,0.764], + [28107,0.598], + [28109,0.76], + [28111,0.692], + [28113,0.565], + [28115,0.639], + [28117,0.716], + [28119,0.586], + [28121,0.833], + [28123,0.602], + [28125,0.603], + [28127,0.595], + [28129,0.508], + [28131,0.691], + [28133,0.592], + [28135,0.536], + [28137,0.701], + [28139,0.648], + [28141,0.661], + [28143,0.708], + [28145,0.661], + [28147,0.508], + [28149,0.746], + [28151,0.624], + [28153,0.61], + [28155,0.684], + [28157,0.525], + [28159,0.635], + [28161,0.558], + [28163,0.667], + [29001,0.747], + [29003,0.759], + [29005,0.75], + [29007,0.738], + [29009,0.668], + [29011,0.684], + [29013,0.696], + [29015,0.713], + [29017,0.711], + [29019,0.834], + [29021,0.761], + [29023,0.725], + [29025,0.723], + [29027,0.751], + [29029,0.781], + [29031,0.836], + [29033,0.704], + [29035,0.659], + [29037,0.842], + [29039,0.744], + [29041,0.729], + [29043,0.827], + [29045,0.688], + [29047,0.883], + [29049,0.794], + [29051,0.713], + [29053,0.751], + [29055,0.701], + [29057,0.716], + [29059,0.672], + [29061,0.745], + [29063,0.713], + [29065,0.675], + [29067,0.623], + [29069,0.739], + [29071,0.804], + [29073,0.779], + [29075,0.745], + [29077,0.765], + [29079,0.733], + [29081,0.766], + [29083,0.787], + [29085,0.635], + [29087,0.706], + [29089,0.764], + [29091,0.722], + [29093,0.641], + [29095,0.814], + [29097,0.777], + [29099,0.854], + [29101,0.861], + [29103,0.633], + [29105,0.729], + [29107,0.746], + [29109,0.771], + [29111,0.758], + [29113,0.807], + [29115,0.701], + [29117,0.677], + [29119,0.545], + [29121,0.664], + [29123,0.687], + [29125,0.647], + [29127,0.79], + [29129,0.653], + [29131,0.729], + [29133,0.684], + [29135,0.678], + [29137,0.706], + [29139,0.679], + [29141,0.654], + [29143,0.723], + [29145,0.75], + [29147,0.792], + [29149,0.594], + [29151,0.661], + [29153,0.676], + [29155,0.726], + [29157,0.797], + [29159,0.768], + [29161,0.807], + [29163,0.755], + [29165,0.9], + [29167,0.783], + [29169,0.819], + [29171,0.65], + [29173,0.771], + [29175,0.765], + [29177,0.772], + [29179,0.733], + [29181,0.675], + [29183,0.896], + [29185,0.675], + [29186,0.766], + [29187,0.794], + [29189,0.867], + [29195,0.78], + [29197,0.617], + [29199,0.752], + [29201,0.772], + [29203,0.621], + [29205,0.734], + [29207,0.746], + [29209,0.806], + [29211,0.694], + [29213,0.803], + [29215,0.657], + [29217,0.783], + [29219,0.801], + [29221,0.666], + [29223,0.679], + [29225,0.698], + [29227,0.746], + [29229,0.677], + [29510,0.744], + [30001,0.76], + [30003,0.663], + [30005,0.701], + [30007,0.731], + [30009,0.784], + [30011,0.779], + [30013,0.77], + [30015,0.712], + [30017,0.765], + [30019,0.743], + [30021,0.776], + [30023,0.741], + [30025,0.806], + [30027,0.786], + [30029,0.84], + [30031,0.871], + [30033,0.76], + [30035,0.66], + [30037,0.712], + [30039,0.747], + [30041,0.786], + [30043,0.811], + [30045,0.759], + [30047,0.773], + [30049,0.828], + [30051,0.694], + [30053,0.745], + [30055,0.728], + [30057,0.734], + [30059,0.621], + [30061,0.666], + [30063,0.858], + [30065,0.764], + [30067,0.802], + [30069,0.843], + [30071,0.706], + [30073,0.742], + [30075,0.78], + [30077,0.737], + [30079,0.749], + [30081,0.806], + [30083,0.781], + [30085,0.647], + [30087,0.58], + [30089,0.713], + [30091,0.833], + [30093,0.763], + [30095,0.811], + [30097,0.752], + [30099,0.753], + [30101,0.774], + [30103,0.667], + [30105,0.793], + [30107,0.716], + [30109,0.639], + [30111,0.843], + [31001,0.787], + [31003,0.761], + [31005,0.741], + [31007,0.777], + [31009,0.864], + [31011,0.795], + [31013,0.814], + [31015,0.726], + [31017,0.787], + [31019,0.84], + [31021,0.724], + [31023,0.79], + [31025,0.843], + [31027,0.81], + [31029,0.826], + [31031,0.792], + [31033,0.789], + [31035,0.778], + [31037,0.769], + [31039,0.676], + [31041,0.749], + [31043,0.767], + [31045,0.829], + [31047,0.79], + [31049,0.724], + [31051,0.735], + [31053,0.788], + [31055,0.854], + [31057,0.71], + [31059,0.76], + [31061,0.736], + [31063,0.735], + [31065,0.752], + [31067,0.794], + [31069,0.733], + [31071,0.631], + [31073,0.823], + [31075,0.75], + [31077,0.731], + [31079,0.815], + [31081,0.865], + [31083,0.765], + [31085,0.804], + [31087,0.693], + [31089,0.748], + [31091,0.645], + [31093,0.735], + [31095,0.735], + [31097,0.736], + [31099,0.811], + [31101,0.817], + [31103,0.776], + [31105,0.748], + [31107,0.748], + [31109,0.877], + [31111,0.825], + [31113,0.741], + [31115,0.69], + [31117,0.628], + [31119,0.776], + [31121,0.738], + [31123,0.757], + [31125,0.765], + [31127,0.763], + [31129,0.723], + [31131,0.803], + [31133,0.708], + [31135,0.819], + [31137,0.795], + [31139,0.812], + [31141,0.791], + [31143,0.848], + [31145,0.79], + [31147,0.779], + [31149,0.713], + [31151,0.799], + [31153,0.909], + [31155,0.813], + [31157,0.777], + [31159,0.833], + [31161,0.733], + [31163,0.754], + [31165,0.717], + [31167,0.82], + [31169,0.767], + [31171,0.877], + [31173,0.67], + [31175,0.737], + [31177,0.846], + [31179,0.862], + [31181,0.747], + [31183,0.754], + [31185,0.844], + [32001,0.852], + [32003,0.828], + [32005,0.892], + [32007,0.844], + [32009,0.536], + [32011,0.817], + [32013,0.81], + [32015,0.858], + [32017,0.761], + [32019,0.848], + [32021,0.68], + [32023,0.728], + [32027,0.749], + [32029,0.742], + [32031,0.855], + [32033,0.766], + [32510,0.824], + [33001,0.865], + [33003,0.869], + [33005,0.838], + [33007,0.782], + [33009,0.827], + [33011,0.896], + [33013,0.865], + [33015,0.913], + [33017,0.861], + [33019,0.816], + [34001,0.834], + [34003,0.897], + [34005,0.888], + [34007,0.839], + [34009,0.846], + [34011,0.78], + [34013,0.805], + [34015,0.88], + [34017,0.855], + [34019,0.905], + [34021,0.83], + [34023,0.864], + [34025,0.886], + [34027,0.914], + [34029,0.823], + [34031,0.813], + [34033,0.804], + [34035,0.922], + [34037,0.899], + [34039,0.837], + [34041,0.862], + [35001,0.798], + [35003,0.537], + [35005,0.695], + [35006,0.579], + [35007,0.674], + [35009,0.809], + [35011,0.682], + [35013,0.73], + [35015,0.793], + [35017,0.706], + [35019,0.378], + [35021,0.507], + [35023,0.703], + [35025,0.777], + [35027,0.746], + [35028,0.896], + [35029,0.63], + [35031,0.438], + [35033,0.539], + [35035,0.783], + [35037,0.561], + [35039,0.576], + [35041,0.784], + [35043,0.827], + [35045,0.665], + [35047,0.569], + [35049,0.806], + [35051,0.622], + [35053,0.553], + [35055,0.668], + [35057,0.63], + [35059,0.611], + [35061,0.68], + [36001,0.835], + [36003,0.751], + [36005,0.757], + [36007,0.818], + [36009,0.717], + [36011,0.797], + [36013,0.762], + [36015,0.804], + [36017,0.781], + [36019,0.798], + [36021,0.797], + [36023,0.738], + [36025,0.76], + [36027,0.881], + [36029,0.812], + [36031,0.781], + [36033,0.739], + [36035,0.77], + [36037,0.806], + [36039,0.735], + [36041,0.752], + [36043,0.799], + [36045,0.838], + [36047,0.8], + [36049,0.784], + [36051,0.837], + [36053,0.817], + [36055,0.84], + [36057,0.76], + [36059,0.898], + [36061,0.852], + [36063,0.797], + [36065,0.807], + [36067,0.802], + [36069,0.848], + [36071,0.801], + [36073,0.807], + [36075,0.845], + [36077,0.793], + [36079,0.918], + [36081,0.835], + [36083,0.85], + [36085,0.817], + [36087,0.822], + [36089,0.8], + [36091,0.893], + [36093,0.838], + [36095,0.75], + [36097,0.788], + [36099,0.796], + [36101,0.782], + [36103,0.884], + [36105,0.802], + [36107,0.833], + [36109,0.853], + [36111,0.861], + [36113,0.831], + [36115,0.797], + [36117,0.807], + [36119,0.862], + [36121,0.773], + [36123,0.754], + [37001,0.776], + [37003,0.74], + [37005,0.764], + [37007,0.746], + [37009,0.704], + [37011,0.709], + [37013,0.693], + [37015,0.582], + [37017,0.702], + [37019,0.845], + [37021,0.816], + [37023,0.719], + [37025,0.887], + [37027,0.781], + [37029,0.862], + [37031,0.846], + [37033,0.653], + [37035,0.81], + [37037,0.777], + [37039,0.742], + [37041,0.69], + [37043,0.772], + [37045,0.661], + [37047,0.666], + [37049,0.814], + [37051,0.844], + [37053,0.831], + [37055,0.907], + [37057,0.789], + [37059,0.835], + [37061,0.654], + [37063,0.87], + [37065,0.643], + [37067,0.812], + [37069,0.786], + [37071,0.799], + [37073,0.73], + [37075,0.572], + [37077,0.796], + [37079,0.728], + [37081,0.763], + [37083,0.581], + [37085,0.789], + [37087,0.715], + [37089,0.823], + [37091,0.646], + [37093,0.803], + [37095,0.564], + [37097,0.829], + [37099,0.714], + [37101,0.778], + [37103,0.589], + [37105,0.739], + [37107,0.753], + [37109,0.826], + [37111,0.733], + [37113,0.75], + [37115,0.726], + [37117,0.683], + [37119,0.882], + [37121,0.722], + [37123,0.693], + [37125,0.821], + [37127,0.766], + [37129,0.854], + [37131,0.529], + [37133,0.871], + [37135,0.882], + [37137,0.738], + [37139,0.787], + [37141,0.792], + [37143,0.726], + [37145,0.786], + [37147,0.808], + [37149,0.773], + [37151,0.757], + [37153,0.728], + [37155,0.591], + [37157,0.696], + [37159,0.807], + [37161,0.702], + [37163,0.642], + [37165,0.613], + [37167,0.814], + [37169,0.701], + [37171,0.656], + [37173,0.603], + [37175,0.808], + [37177,0.634], + [37179,0.908], + [37181,0.704], + [37183,0.914], + [37185,0.585], + [37187,0.628], + [37189,0.829], + [37191,0.799], + [37193,0.746], + [37195,0.753], + [37197,0.717], + [37199,0.703], + [38001,0.781], + [38003,0.77], + [38005,0.584], + [38007,0.705], + [38009,0.804], + [38011,0.826], + [38013,0.744], + [38015,0.828], + [38017,0.854], + [38019,0.784], + [38021,0.79], + [38023,0.605], + [38025,0.807], + [38027,0.723], + [38029,0.625], + [38031,0.79], + [38033,0.715], + [38035,0.808], + [38037,0.697], + [38039,0.768], + [38041,0.763], + [38043,0.704], + [38045,0.753], + [38047,0.724], + [38049,0.779], + [38051,0.692], + [38053,0.854], + [38055,0.723], + [38057,0.836], + [38059,0.814], + [38061,0.723], + [38063,0.695], + [38065,0.771], + [38067,0.715], + [38069,0.801], + [38071,0.751], + [38073,0.767], + [38075,0.808], + [38077,0.797], + [38079,0.667], + [38081,0.812], + [38083,0.661], + [38085,0.577], + [38087,0.779], + [38089,0.802], + [38091,0.806], + [38093,0.783], + [38095,0.661], + [38097,0.811], + [38099,0.701], + [38101,0.866], + [38103,0.771], + [38105,0.759], + [39001,0.642], + [39003,0.81], + [39005,0.792], + [39007,0.754], + [39009,0.756], + [39011,0.851], + [39013,0.739], + [39015,0.752], + [39017,0.868], + [39019,0.741], + [39021,0.836], + [39023,0.827], + [39025,0.855], + [39027,0.812], + [39029,0.783], + [39031,0.704], + [39033,0.782], + [39035,0.788], + [39037,0.786], + [39039,0.802], + [39041,0.933], + [39043,0.806], + [39045,0.846], + [39047,0.762], + [39049,0.872], + [39051,0.822], + [39053,0.682], + [39055,0.815], + [39057,0.873], + [39059,0.729], + [39061,0.838], + [39063,0.852], + [39065,0.77], + [39067,0.721], + [39069,0.844], + [39071,0.714], + [39073,0.766], + [39075,0.556], + [39077,0.799], + [39079,0.753], + [39081,0.77], + [39083,0.8], + [39085,0.863], + [39087,0.738], + [39089,0.851], + [39091,0.822], + [39093,0.802], + [39095,0.814], + [39097,0.845], + [39099,0.798], + [39101,0.792], + [39103,0.872], + [39105,0.679], + [39107,0.838], + [39109,0.834], + [39111,0.654], + [39113,0.832], + [39115,0.695], + [39117,0.789], + [39119,0.78], + [39121,0.672], + [39123,0.808], + [39125,0.755], + [39127,0.741], + [39129,0.818], + [39131,0.711], + [39133,0.814], + [39135,0.788], + [39137,0.821], + [39139,0.768], + [39141,0.787], + [39143,0.787], + [39145,0.739], + [39147,0.79], + [39149,0.816], + [39151,0.829], + [39153,0.825], + [39155,0.768], + [39157,0.753], + [39159,0.884], + [39161,0.763], + [39163,0.64], + [39165,0.915], + [39167,0.733], + [39169,0.794], + [39171,0.812], + [39173,0.854], + [39175,0.775], + [40001,0.496], + [40003,0.764], + [40005,0.683], + [40007,0.776], + [40009,0.775], + [40011,0.709], + [40013,0.721], + [40015,0.686], + [40017,0.867], + [40019,0.665], + [40021,0.693], + [40023,0.631], + [40025,0.635], + [40027,0.875], + [40029,0.643], + [40031,0.843], + [40033,0.744], + [40035,0.69], + [40037,0.789], + [40039,0.797], + [40041,0.69], + [40043,0.767], + [40045,0.685], + [40047,0.782], + [40049,0.758], + [40051,0.727], + [40053,0.713], + [40055,0.71], + [40057,0.747], + [40059,0.663], + [40061,0.663], + [40063,0.506], + [40065,0.807], + [40067,0.664], + [40069,0.636], + [40071,0.699], + [40073,0.718], + [40075,0.706], + [40077,0.675], + [40079,0.683], + [40081,0.665], + [40083,0.802], + [40085,0.699], + [40087,0.859], + [40089,0.606], + [40091,0.621], + [40093,0.744], + [40095,0.616], + [40097,0.771], + [40099,0.655], + [40101,0.689], + [40103,0.733], + [40105,0.638], + [40107,0.649], + [40109,0.826], + [40111,0.696], + [40113,0.72], + [40115,0.675], + [40117,0.616], + [40119,0.802], + [40121,0.753], + [40123,0.691], + [40125,0.748], + [40127,0.642], + [40129,0.707], + [40131,0.811], + [40133,0.612], + [40135,0.713], + [40137,0.767], + [40139,0.743], + [40141,0.71], + [40143,0.842], + [40145,0.864], + [40147,0.778], + [40149,0.733], + [40151,0.778], + [40153,0.771], + [41001,0.763], + [41003,0.905], + [41005,0.878], + [41007,0.83], + [41009,0.848], + [41011,0.778], + [41013,0.81], + [41015,0.77], + [41017,0.886], + [41019,0.814], + [41021,0.736], + [41023,0.786], + [41025,0.782], + [41027,0.824], + [41029,0.845], + [41031,0.806], + [41033,0.802], + [41035,0.801], + [41037,0.644], + [41039,0.851], + [41041,0.824], + [41043,0.83], + [41045,0.736], + [41047,0.861], + [41049,0.785], + [41051,0.879], + [41053,0.86], + [41055,0.774], + [41057,0.819], + [41059,0.797], + [41061,0.811], + [41063,0.776], + [41065,0.786], + [41067,0.907], + [41069,0.752], + [41071,0.837], + [42001,0.81], + [42003,0.839], + [42005,0.749], + [42007,0.808], + [42009,0.734], + [42011,0.826], + [42013,0.784], + [42015,0.793], + [42017,0.889], + [42019,0.847], + [42021,0.762], + [42023,0.721], + [42025,0.799], + [42027,0.821], + [42029,0.888], + [42031,0.769], + [42033,0.729], + [42035,0.767], + [42037,0.777], + [42039,0.777], + [42041,0.847], + [42043,0.817], + [42045,0.861], + [42047,0.782], + [42049,0.812], + [42051,0.751], + [42053,0.655], + [42055,0.805], + [42057,0.693], + [42059,0.783], + [42061,0.759], + [42063,0.739], + [42065,0.739], + [42067,0.738], + [42069,0.797], + [42071,0.786], + [42073,0.779], + [42075,0.802], + [42077,0.833], + [42079,0.775], + [42081,0.778], + [42083,0.765], + [42085,0.783], + [42087,0.706], + [42089,0.843], + [42091,0.894], + [42093,0.762], + [42095,0.829], + [42097,0.729], + [42099,0.783], + [42101,0.768], + [42103,0.864], + [42105,0.761], + [42107,0.766], + [42109,0.752], + [42111,0.714], + [42113,0.728], + [42115,0.811], + [42117,0.771], + [42119,0.737], + [42121,0.774], + [42123,0.766], + [42125,0.823], + [42127,0.789], + [42129,0.804], + [42131,0.829], + [42133,0.816], + [44001,0.862], + [44003,0.865], + [44005,0.861], + [44007,0.816], + [44009,0.894], + [45001,0.688], + [45003,0.788], + [45005,0.555], + [45007,0.766], + [45009,0.626], + [45011,0.653], + [45013,0.848], + [45015,0.821], + [45017,0.692], + [45019,0.782], + [45021,0.655], + [45023,0.579], + [45025,0.663], + [45027,0.705], + [45029,0.761], + [45031,0.694], + [45033,0.537], + [45035,0.808], + [45037,0.683], + [45039,0.615], + [45041,0.731], + [45043,0.741], + [45045,0.833], + [45047,0.734], + [45049,0.687], + [45051,0.842], + [45053,0.682], + [45055,0.741], + [45057,0.788], + [45059,0.731], + [45061,0.565], + [45063,0.835], + [45065,0.714], + [45067,0.484], + [45069,0.577], + [45071,0.674], + [45073,0.748], + [45075,0.688], + [45077,0.783], + [45079,0.823], + [45081,0.69], + [45083,0.791], + [45085,0.749], + [45087,0.663], + [45089,0.513], + [45091,0.876], + [46003,0.724], + [46005,0.721], + [46007,0.659], + [46009,0.722], + [46011,0.831], + [46013,0.801], + [46015,0.723], + [46017,0.535], + [46019,0.758], + [46021,0.716], + [46023,0.661], + [46025,0.746], + [46027,0.876], + [46029,0.806], + [46031,0.605], + [46033,0.794], + [46035,0.822], + [46037,0.702], + [46039,0.764], + [46041,0.584], + [46043,0.723], + [46045,0.755], + [46047,0.81], + [46049,0.722], + [46051,0.805], + [46053,0.709], + [46055,0.637], + [46057,0.75], + [46059,0.788], + [46061,0.866], + [46063,0.885], + [46065,0.812], + [46067,0.704], + [46069,0.811], + [46071,0.483], + [46073,0.724], + [46075,0.76], + [46077,0.756], + [46079,0.854], + [46081,0.851], + [46083,0.91], + [46085,0.728], + [46087,0.806], + [46089,0.65], + [46091,0.739], + [46093,0.826], + [46095,0.44], + [46097,0.759], + [46099,0.854], + [46101,0.819], + [46102,0.452], + [46103,0.837], + [46105,0.786], + [46107,0.779], + [46109,0.742], + [46111,0.805], + [46115,0.815], + [46117,0.799], + [46119,0.791], + [46121,0.406], + [46123,0.781], + [46125,0.74], + [46127,0.826], + [46129,0.635], + [46135,0.78], + [46137,0.557], + [47001,0.804], + [47003,0.746], + [47005,0.642], + [47007,0.705], + [47009,0.791], + [47011,0.789], + [47013,0.634], + [47015,0.696], + [47017,0.69], + [47019,0.658], + [47021,0.808], + [47023,0.765], + [47025,0.627], + [47027,0.603], + [47029,0.635], + [47031,0.709], + [47033,0.701], + [47035,0.785], + [47037,0.851], + [47039,0.712], + [47041,0.72], + [47043,0.748], + [47045,0.765], + [47047,0.758], + [47049,0.685], + [47051,0.713], + [47053,0.734], + [47055,0.735], + [47057,0.718], + [47059,0.716], + [47061,0.653], + [47063,0.755], + [47065,0.808], + [47067,0.512], + [47069,0.649], + [47071,0.719], + [47073,0.701], + [47075,0.606], + [47077,0.736], + [47079,0.72], + [47081,0.637], + [47083,0.695], + [47085,0.706], + [47087,0.648], + [47089,0.736], + [47091,0.616], + [47093,0.827], + [47095,0.647], + [47097,0.721], + [47099,0.719], + [47101,0.591], + [47103,0.658], + [47105,0.791], + [47107,0.728], + [47109,0.715], + [47111,0.705], + [47113,0.774], + [47115,0.73], + [47117,0.765], + [47119,0.82], + [47121,0.67], + [47123,0.755], + [47125,0.864], + [47127,0.68], + [47129,0.715], + [47131,0.755], + [47133,0.637], + [47135,0.588], + [47137,0.729], + [47139,0.714], + [47141,0.776], + [47143,0.726], + [47145,0.745], + [47147,0.826], + [47149,0.867], + [47151,0.663], + [47153,0.732], + [47155,0.774], + [47157,0.753], + [47159,0.757], + [47161,0.667], + [47163,0.79], + [47165,0.849], + [47167,0.754], + [47169,0.7], + [47171,0.674], + [47173,0.657], + [47175,0.69], + [47177,0.7], + [47179,0.818], + [47181,0.676], + [47183,0.699], + [47185,0.7], + [47187,0.934], + [47189,0.853], + [48001,0.679], + [48003,0.862], + [48005,0.823], + [48007,0.818], + [48009,0.754], + [48011,0.816], + [48013,0.802], + [48015,0.743], + [48017,0.705], + [48019,0.818], + [48021,0.804], + [48023,0.747], + [48025,0.629], + [48027,0.85], + [48029,0.813], + [48031,0.853], + [48033,0.797], + [48035,0.747], + [48037,0.724], + [48039,0.871], + [48041,0.819], + [48043,0.765], + [48045,0.709], + [48047,0.607], + [48049,0.758], + [48051,0.731], + [48053,0.786], + [48055,0.698], + [48057,0.788], + [48059,0.714], + [48061,0.575], + [48063,0.654], + [48065,0.763], + [48067,0.693], + [48069,0.686], + [48071,0.843], + [48073,0.729], + [48075,0.732], + [48077,0.753], + [48079,0.66], + [48081,0.687], + [48083,0.709], + [48085,0.928], + [48087,0.694], + [48089,0.718], + [48091,0.892], + [48093,0.726], + [48095,0.751], + [48097,0.762], + [48099,0.857], + [48101,0.656], + [48103,0.662], + [48105,0.695], + [48107,0.689], + [48109,0.555], + [48111,0.745], + [48113,0.811], + [48115,0.688], + [48117,0.791], + [48119,0.703], + [48121,0.918], + [48123,0.627], + [48125,0.773], + [48127,0.592], + [48129,0.631], + [48131,0.64], + [48133,0.668], + [48135,0.822], + [48137,0.459], + [48139,0.878], + [48141,0.785], + [48143,0.808], + [48145,0.613], + [48147,0.721], + [48149,0.634], + [48151,0.702], + [48153,0.738], + [48155,0.7], + [48157,0.926], + [48159,0.809], + [48161,0.67], + [48163,0.631], + [48165,0.769], + [48167,0.858], + [48169,0.789], + [48171,0.792], + [48173,0.732], + [48175,0.67], + [48177,0.754], + [48179,0.731], + [48181,0.757], + [48183,0.791], + [48185,0.73], + [48187,0.861], + [48189,0.772], + [48191,0.599], + [48193,0.724], + [48195,0.757], + [48197,0.669], + [48199,0.813], + [48201,0.836], + [48203,0.681], + [48205,0.831], + [48207,0.635], + [48209,0.848], + [48211,0.781], + [48213,0.75], + [48215,0.684], + [48217,0.778], + [48219,0.758], + [48221,0.852], + [48223,0.787], + [48225,0.635], + [48227,0.736], + [48229,0.542], + [48231,0.781], + [48233,0.792], + [48235,0.676], + [48237,0.689], + [48239,0.728], + [48241,0.653], + [48243,0.612], + [48245,0.728], + [48247,0.564], + [48249,0.593], + [48251,0.856], + [48253,0.768], + [48255,0.683], + [48257,0.811], + [48259,0.884], + [48261,0.482], + [48263,0.736], + [48265,0.831], + [48267,0.703], + [48269,0.883], + [48271,0.482], + [48273,0.734], + [48275,0.752], + [48277,0.658], + [48279,0.673], + [48281,0.767], + [48283,0.563], + [48285,0.758], + [48287,0.774], + [48289,0.708], + [48291,0.792], + [48293,0.638], + [48295,0.827], + [48297,0.589], + [48299,0.81], + [48301,0.733], + [48303,0.798], + [48305,0.716], + [48307,0.763], + [48309,0.777], + [48311,0.763], + [48313,0.691], + [48315,0.629], + [48317,0.629], + [48319,0.732], + [48321,0.634], + [48323,0.613], + [48325,0.736], + [48327,0.661], + [48329,0.841], + [48331,0.685], + [48333,0.715], + [48335,0.662], + [48337,0.722], + [48339,0.899], + [48341,0.844], + [48343,0.78], + [48345,0.695], + [48347,0.789], + [48349,0.761], + [48351,0.699], + [48353,0.728], + [48355,0.813], + [48357,0.756], + [48359,0.793], + [48361,0.807], + [48363,0.756], + [48365,0.733], + [48367,0.851], + [48369,0.66], + [48371,0.633], + [48373,0.715], + [48375,0.74], + [48377,0.484], + [48379,0.726], + [48381,0.882], + [48383,0.731], + [48385,0.617], + [48387,0.641], + [48389,0.618], + [48391,0.699], + [48393,0.814], + [48395,0.737], + [48397,0.931], + [48399,0.721], + [48401,0.625], + [48403,0.748], + [48405,0.669], + [48407,0.736], + [48409,0.722], + [48411,0.759], + [48413,0.646], + [48415,0.735], + [48417,0.776], + [48419,0.687], + [48421,0.768], + [48423,0.807], + [48425,0.776], + [48427,0.561], + [48429,0.758], + [48431,0.856], + [48433,0.772], + [48435,0.524], + [48437,0.754], + [48439,0.869], + [48441,0.771], + [48443,0.584], + [48445,0.707], + [48447,0.716], + [48449,0.739], + [48451,0.781], + [48453,0.882], + [48455,0.652], + [48457,0.685], + [48459,0.789], + [48461,0.498], + [48463,0.652], + [48465,0.676], + [48467,0.714], + [48469,0.707], + [48471,0.808], + [48473,0.706], + [48475,0.718], + [48477,0.736], + [48479,0.669], + [48481,0.698], + [48483,0.728], + [48485,0.774], + [48487,0.656], + [48489,0.602], + [48491,0.926], + [48493,0.827], + [48495,0.733], + [48497,0.775], + [48499,0.775], + [48501,0.75], + [48503,0.75], + [48505,0.586], + [48507,0.524], + [49001,0.741], + [49003,0.866], + [49005,0.878], + [49007,0.807], + [49009,0.883], + [49011,0.913], + [49013,0.846], + [49015,0.805], + [49017,0.811], + [49019,0.891], + [49021,0.839], + [49023,0.794], + [49025,0.782], + [49027,0.819], + [49029,0.947], + [49031,0.771], + [49033,0.846], + [49035,0.878], + [49037,0.534], + [49039,0.818], + [49041,0.834], + [49043,0.928], + [49045,0.908], + [49047,0.834], + [49049,0.872], + [49051,0.902], + [49053,0.865], + [49055,0.773], + [49057,0.873], + [50001,0.835], + [50003,0.811], + [50005,0.756], + [50007,0.854], + [50009,0.709], + [50011,0.817], + [50013,0.842], + [50015,0.825], + [50017,0.791], + [50019,0.763], + [50021,0.801], + [50023,0.833], + [50025,0.735], + [50027,0.829], + [51001,0.685], + [51003,0.853], + [51005,0.697], + [51007,0.719], + [51009,0.692], + [51011,0.694], + [51013,0.913], + [51015,0.758], + [51017,0.686], + [51019,0.761], + [51021,0.708], + [51023,0.802], + [51025,0.666], + [51027,0.647], + [51029,0.639], + [51031,0.733], + [51033,0.736], + [51035,0.679], + [51036,0.615], + [51037,0.597], + [51041,0.901], + [51043,0.787], + [51045,0.735], + [51047,0.835], + [51049,0.606], + [51051,0.623], + [51053,0.745], + [51057,0.614], + [51059,0.939], + [51061,0.883], + [51063,0.736], + [51065,0.858], + [51067,0.735], + [51069,0.813], + [51071,0.737], + [51073,0.85], + [51075,0.832], + [51077,0.692], + [51079,0.853], + [51081,0.632], + [51083,0.572], + [51085,0.86], + [51087,0.862], + [51089,0.702], + [51091,0.765], + [51093,0.781], + [51095,0.867], + [51097,0.606], + [51099,0.899], + [51101,0.74], + [51103,0.723], + [51105,0.485], + [51107,0.946], + [51109,0.78], + [51111,0.561], + [51113,0.707], + [51115,0.709], + [51117,0.607], + [51119,0.67], + [51121,0.878], + [51125,0.685], + [51127,0.791], + [51131,0.723], + [51133,0.775], + [51135,0.652], + [51137,0.783], + [51139,0.671], + [51141,0.668], + [51143,0.716], + [51145,0.895], + [51147,0.667], + [51149,0.833], + [51153,0.942], + [51155,0.704], + [51157,0.771], + [51159,0.674], + [51161,0.841], + [51163,0.757], + [51165,0.763], + [51167,0.597], + [51169,0.643], + [51171,0.744], + [51173,0.7], + [51175,0.743], + [51177,0.898], + [51179,0.943], + [51181,0.648], + [51183,0.664], + [51185,0.73], + [51187,0.832], + [51191,0.754], + [51193,0.749], + [51195,0.644], + [51197,0.71], + [51199,0.901], + [51510,0.915], + [51520,0.773], + [51530,0.697], + [51540,0.843], + [51550,0.899], + [51570,0.781], + [51580,0.772], + [51590,0.719], + [51595,0.652], + [51600,0.954], + [51610,0.937], + [51620,0.729], + [51630,0.847], + [51640,0.685], + [51650,0.82], + [51660,0.78], + [51670,0.757], + [51678,0.719], + [51680,0.796], + [51683,0.89], + [51685,0.896], + [51690,0.739], + [51700,0.764], + [51710,0.834], + [51720,0.68], + [51730,0.69], + [51735,0.868], + [51740,0.796], + [51750,0.798], + [51760,0.754], + [51770,0.749], + [51775,0.793], + [51790,0.749], + [51800,0.811], + [51810,0.899], + [51820,0.726], + [51830,0.862], + [51840,0.754], + [53001,0.748], + [53003,0.812], + [53005,0.849], + [53007,0.813], + [53009,0.845], + [53011,0.901], + [53013,0.783], + [53015,0.826], + [53017,0.803], + [53019,0.659], + [53021,0.846], + [53023,0.771], + [53025,0.826], + [53027,0.83], + [53029,0.906], + [53031,0.865], + [53033,0.916], + [53035,0.914], + [53037,0.843], + [53039,0.802], + [53041,0.801], + [53043,0.825], + [53045,0.84], + [53047,0.772], + [53049,0.818], + [53051,0.707], + [53053,0.876], + [53055,0.849], + [53057,0.879], + [53059,0.78], + [53061,0.908], + [53063,0.87], + [53065,0.748], + [53067,0.879], + [53069,0.81], + [53071,0.85], + [53073,0.878], + [53075,0.839], + [53077,0.803], + [54001,0.697], + [54003,0.833], + [54005,0.766], + [54007,0.666], + [54009,0.744], + [54011,0.714], + [54013,0.694], + [54015,0.738], + [54017,0.671], + [54019,0.731], + [54021,0.711], + [54023,0.718], + [54025,0.743], + [54027,0.708], + [54029,0.772], + [54031,0.796], + [54033,0.788], + [54035,0.739], + [54037,0.853], + [54039,0.782], + [54041,0.703], + [54043,0.727], + [54045,0.796], + [54047,0.656], + [54049,0.817], + [54051,0.72], + [54053,0.696], + [54055,0.713], + [54057,0.788], + [54059,0.717], + [54061,0.861], + [54063,0.685], + [54065,0.767], + [54067,0.775], + [54069,0.718], + [54071,0.588], + [54073,0.761], + [54075,0.697], + [54077,0.76], + [54079,0.77], + [54081,0.762], + [54083,0.699], + [54085,0.707], + [54087,0.678], + [54089,0.637], + [54091,0.796], + [54093,0.754], + [54095,0.698], + [54097,0.734], + [54099,0.648], + [54101,0.679], + [54103,0.713], + [54105,0.697], + [54107,0.8], + [54109,0.749], + [55001,0.744], + [55003,0.707], + [55005,0.753], + [55007,0.815], + [55009,0.853], + [55011,0.806], + [55013,0.764], + [55015,0.869], + [55017,0.828], + [55019,0.71], + [55021,0.808], + [55023,0.757], + [55025,0.884], + [55027,0.821], + [55029,0.807], + [55031,0.781], + [55033,0.816], + [55035,0.857], + [55037,0.725], + [55039,0.815], + [55041,0.715], + [55043,0.786], + [55045,0.788], + [55047,0.74], + [55049,0.811], + [55051,0.754], + [55053,0.75], + [55055,0.829], + [55057,0.763], + [55059,0.847], + [55061,0.779], + [55063,0.844], + [55065,0.748], + [55067,0.768], + [55069,0.78], + [55071,0.793], + [55073,0.826], + [55075,0.783], + [55077,0.771], + [55078,0.726], + [55079,0.785], + [55081,0.783], + [55083,0.796], + [55085,0.818], + [55087,0.864], + [55089,0.883], + [55091,0.807], + [55093,0.833], + [55095,0.765], + [55097,0.854], + [55099,0.739], + [55101,0.837], + [55103,0.726], + [55105,0.802], + [55107,0.725], + [55109,0.85], + [55111,0.819], + [55113,0.751], + [55115,0.779], + [55117,0.838], + [55119,0.744], + [55121,0.782], + [55123,0.729], + [55125,0.771], + [55127,0.831], + [55129,0.767], + [55131,0.869], + [55133,0.899], + [55135,0.79], + [55137,0.751], + [55139,0.838], + [55141,0.812], + [56001,0.864], + [56003,0.787], + [56005,0.91], + [56007,0.794], + [56009,0.798], + [56011,0.735], + [56013,0.78], + [56015,0.756], + [56017,0.775], + [56019,0.793], + [56021,0.855], + [56023,0.831], + [56025,0.825], + [56027,0.722], + [56029,0.857], + [56031,0.709], + [56033,0.829], + [56035,0.856], + [56037,0.84], + [56039,0.871], + [56041,0.895], + [56043,0.782], + [56045,0.768] + ] +} diff --git a/data/regional/united-states/technology/us-technology-computer-2017.json b/data/regional/united-states/technology/us-technology-computer-2017.json new file mode 100644 index 0000000..5bab845 --- /dev/null +++ b/data/regional/united-states/technology/us-technology-computer-2017.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Home Computer Access", + "description" : "Percent of households that have a computer.", + "units" : "%", + "year" : "2017", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "technology", + "tags" : ["regional","us","counties","technology","computers"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.technology.computer.2017"], + [1001,0.862], + [1003,0.869], + [1005,0.734], + [1007,0.748], + [1009,0.782], + [1011,0.642], + [1013,0.683], + [1015,0.829], + [1017,0.727], + [1019,0.794], + [1021,0.738], + [1023,0.704], + [1025,0.587], + [1027,0.771], + [1029,0.739], + [1031,0.841], + [1033,0.803], + [1035,0.515], + [1037,0.699], + [1039,0.741], + [1041,0.705], + [1043,0.789], + [1045,0.813], + [1047,0.692], + [1049,0.753], + [1051,0.867], + [1053,0.634], + [1055,0.807], + [1057,0.738], + [1059,0.742], + [1061,0.79], + [1063,0.558], + [1065,0.643], + [1067,0.779], + [1069,0.782], + [1071,0.75], + [1073,0.844], + [1075,0.733], + [1077,0.788], + [1079,0.746], + [1081,0.883], + [1083,0.828], + [1085,0.641], + [1087,0.705], + [1089,0.895], + [1091,0.669], + [1093,0.762], + [1095,0.798], + [1097,0.8], + [1099,0.498], + [1101,0.844], + [1103,0.828], + [1105,0.545], + [1107,0.71], + [1109,0.717], + [1111,0.768], + [1113,0.802], + [1115,0.848], + [1117,0.924], + [1119,0.648], + [1121,0.785], + [1123,0.773], + [1125,0.842], + [1127,0.77], + [1129,0.744], + [1131,0.604], + [1133,0.725], + [2013,0.853], + [2016,0.918], + [2020,0.946], + [2050,0.82], + [2060,0.913], + [2068,0.95], + [2070,0.816], + [2090,0.938], + [2100,0.935], + [2105,0.835], + [2110,0.945], + [2122,0.894], + [2130,0.912], + [2150,0.9], + [2158,null], + [2164,0.828], + [2170,0.934], + [2180,0.855], + [2185,0.844], + [2188,0.799], + [2195,0.901], + [2198,0.861], + [2220,0.921], + [2230,0.962], + [2240,0.887], + [2261,0.923], + [2275,0.845], + [2282,0.89], + [2290,0.651], + [4001,0.548], + [4003,0.854], + [4005,0.875], + [4007,0.791], + [4009,0.839], + [4011,0.882], + [4012,0.737], + [4013,0.898], + [4015,0.848], + [4017,0.734], + [4019,0.895], + [4021,0.864], + [4023,0.798], + [4025,0.884], + [4027,0.81], + [5001,0.792], + [5003,0.755], + [5005,0.813], + [5007,0.903], + [5009,0.822], + [5011,0.724], + [5013,0.733], + [5015,0.804], + [5017,0.71], + [5019,0.766], + [5021,0.733], + [5023,0.793], + [5025,0.786], + [5027,0.728], + [5029,0.742], + [5031,0.876], + [5033,0.818], + [5035,0.78], + [5037,0.732], + [5039,0.724], + [5041,0.731], + [5043,0.783], + [5045,0.881], + [5047,0.72], + [5049,0.817], + [5051,0.843], + [5053,0.87], + [5055,0.845], + [5057,0.733], + [5059,0.809], + [5061,0.77], + [5063,0.804], + [5065,0.818], + [5067,0.706], + [5069,0.79], + [5071,0.754], + [5073,0.641], + [5075,0.746], + [5077,0.669], + [5079,0.728], + [5081,0.783], + [5083,0.793], + [5085,0.858], + [5087,0.746], + [5089,0.806], + [5091,0.828], + [5093,0.779], + [5095,0.669], + [5097,0.717], + [5099,0.637], + [5101,0.718], + [5103,0.663], + [5105,0.793], + [5107,0.687], + [5109,0.747], + [5111,0.767], + [5113,0.773], + [5115,0.832], + [5117,0.725], + [5119,0.842], + [5121,0.744], + [5123,0.682], + [5125,0.877], + [5127,0.729], + [5129,0.728], + [5131,0.805], + [5133,0.773], + [5135,0.763], + [5137,0.751], + [5139,0.714], + [5141,0.767], + [5143,0.898], + [5145,0.829], + [5147,0.611], + [5149,0.729], + [6001,0.925], + [6003,0.914], + [6005,0.868], + [6007,0.892], + [6009,0.843], + [6011,0.823], + [6013,0.934], + [6015,0.85], + [6017,0.92], + [6019,0.853], + [6021,0.806], + [6023,0.885], + [6025,0.825], + [6027,0.874], + [6029,0.83], + [6031,0.855], + [6033,0.813], + [6035,0.824], + [6037,0.887], + [6039,0.842], + [6041,0.931], + [6043,0.829], + [6045,0.843], + [6047,0.868], + [6049,0.754], + [6051,0.885], + [6053,0.855], + [6055,0.92], + [6057,0.899], + [6059,0.934], + [6061,0.932], + [6063,0.826], + [6065,0.902], + [6067,0.917], + [6069,0.931], + [6071,0.893], + [6073,0.927], + [6075,0.908], + [6077,0.864], + [6079,0.918], + [6081,0.937], + [6083,0.894], + [6085,0.944], + [6087,0.909], + [6089,0.856], + [6091,0.758], + [6093,0.832], + [6095,0.916], + [6097,0.918], + [6099,0.875], + [6101,0.872], + [6103,0.822], + [6105,0.815], + [6107,0.809], + [6109,0.864], + [6111,0.909], + [6113,0.915], + [6115,0.895], + [8001,0.912], + [8003,0.815], + [8005,0.94], + [8007,0.895], + [8009,0.811], + [8011,0.799], + [8013,0.953], + [8014,0.961], + [8015,0.889], + [8017,0.832], + [8019,0.932], + [8021,0.691], + [8023,0.619], + [8025,0.847], + [8027,0.891], + [8029,0.822], + [8031,0.902], + [8033,0.806], + [8035,0.978], + [8037,0.954], + [8039,0.946], + [8041,0.932], + [8043,0.856], + [8045,0.925], + [8047,0.929], + [8049,0.9], + [8051,0.917], + [8053,0.897], + [8055,0.771], + [8057,0.831], + [8059,0.935], + [8061,0.835], + [8063,0.825], + [8065,0.87], + [8067,0.898], + [8069,0.946], + [8071,0.765], + [8073,0.846], + [8075,0.841], + [8077,0.893], + [8079,0.891], + [8081,0.86], + [8083,0.843], + [8085,0.828], + [8087,0.831], + [8089,0.829], + [8091,0.923], + [8093,0.912], + [8095,0.892], + [8097,0.947], + [8099,0.816], + [8101,0.84], + [8103,0.845], + [8105,0.746], + [8107,0.932], + [8109,0.83], + [8111,0.886], + [8113,0.941], + [8115,0.798], + [8117,0.966], + [8119,0.933], + [8121,0.846], + [8123,0.907], + [8125,0.789], + [9001,0.907], + [9003,0.872], + [9005,0.891], + [9007,0.893], + [9009,0.857], + [9011,0.887], + [9013,0.916], + [9015,0.873], + [10001,0.893], + [10003,0.89], + [10005,0.863], + [11001,0.882], + [12001,0.89], + [12003,0.844], + [12005,0.886], + [12007,0.728], + [12009,0.899], + [12011,0.902], + [12013,0.743], + [12015,0.883], + [12017,0.864], + [12019,0.931], + [12021,0.912], + [12023,0.855], + [12027,0.605], + [12029,0.695], + [12031,0.875], + [12033,0.883], + [12035,0.892], + [12037,0.784], + [12039,0.713], + [12041,0.782], + [12043,0.671], + [12045,0.82], + [12047,0.767], + [12049,0.677], + [12051,0.724], + [12053,0.876], + [12055,0.78], + [12057,0.902], + [12059,0.757], + [12061,0.856], + [12063,0.736], + [12065,0.805], + [12067,0.777], + [12069,0.882], + [12071,0.9], + [12073,0.935], + [12075,0.797], + [12077,0.763], + [12079,0.707], + [12081,0.891], + [12083,0.835], + [12085,0.895], + [12086,0.851], + [12087,0.888], + [12089,0.908], + [12091,0.897], + [12093,0.771], + [12095,0.918], + [12097,0.813], + [12099,0.892], + [12101,0.87], + [12103,0.864], + [12105,0.834], + [12107,0.759], + [12109,0.925], + [12111,0.873], + [12113,0.927], + [12115,0.89], + [12117,0.94], + [12119,0.904], + [12121,0.824], + [12123,0.789], + [12125,0.727], + [12127,0.882], + [12129,0.888], + [12131,0.871], + [12133,0.797], + [13001,0.741], + [13003,0.686], + [13005,0.804], + [13007,0.575], + [13009,0.783], + [13011,0.73], + [13013,0.881], + [13015,0.873], + [13017,0.707], + [13019,0.771], + [13021,0.812], + [13023,0.733], + [13025,0.813], + [13027,0.804], + [13029,0.913], + [13031,0.872], + [13033,0.809], + [13035,0.769], + [13037,0.682], + [13039,0.9], + [13043,0.704], + [13045,0.863], + [13047,0.864], + [13049,0.764], + [13051,0.89], + [13053,0.852], + [13055,0.76], + [13057,0.944], + [13059,0.877], + [13061,0.646], + [13063,0.9], + [13065,0.64], + [13067,0.944], + [13069,0.74], + [13071,0.797], + [13073,0.921], + [13075,0.752], + [13077,0.9], + [13079,0.821], + [13081,0.739], + [13083,0.827], + [13085,0.902], + [13087,0.636], + [13089,0.916], + [13091,0.649], + [13093,0.685], + [13095,0.798], + [13097,0.919], + [13099,0.614], + [13101,0.66], + [13103,0.902], + [13105,0.654], + [13107,0.756], + [13109,0.775], + [13111,0.819], + [13113,0.931], + [13115,0.82], + [13117,0.954], + [13119,0.759], + [13121,0.903], + [13123,0.812], + [13125,0.75], + [13127,0.848], + [13129,0.796], + [13131,0.785], + [13133,0.787], + [13135,0.946], + [13137,0.732], + [13139,0.868], + [13141,0.637], + [13143,0.813], + [13145,0.872], + [13147,0.752], + [13149,0.76], + [13151,0.94], + [13153,0.866], + [13155,0.664], + [13157,0.843], + [13159,0.793], + [13161,0.754], + [13163,0.685], + [13165,0.685], + [13167,0.698], + [13169,0.855], + [13171,0.822], + [13173,0.737], + [13175,0.693], + [13177,0.894], + [13179,0.913], + [13181,0.68], + [13183,0.889], + [13185,0.847], + [13187,0.862], + [13189,0.71], + [13191,0.804], + [13193,0.701], + [13195,0.769], + [13197,0.706], + [13199,0.688], + [13201,0.59], + [13205,0.727], + [13207,0.84], + [13209,0.775], + [13211,0.864], + [13213,0.83], + [13215,0.841], + [13217,0.893], + [13219,0.928], + [13221,0.724], + [13223,0.92], + [13225,0.814], + [13227,0.855], + [13229,0.798], + [13231,0.859], + [13233,0.834], + [13235,0.732], + [13237,0.89], + [13239,0.624], + [13241,0.76], + [13243,0.703], + [13245,0.819], + [13247,0.908], + [13249,0.81], + [13251,0.757], + [13253,0.681], + [13255,0.781], + [13257,0.806], + [13259,0.645], + [13261,0.809], + [13263,0.679], + [13265,0.575], + [13267,0.814], + [13269,0.695], + [13271,0.407], + [13273,0.737], + [13275,0.818], + [13277,0.726], + [13279,0.723], + [13281,0.778], + [13283,0.685], + [13285,0.814], + [13287,0.746], + [13289,0.613], + [13291,0.839], + [13293,0.759], + [13295,0.807], + [13297,0.894], + [13299,0.809], + [13301,0.628], + [13303,0.735], + [13305,0.794], + [13307,0.675], + [13309,0.331], + [13311,0.767], + [13313,0.814], + [13315,0.61], + [13317,0.556], + [13319,0.68], + [13321,0.76], + [15001,0.851], + [15003,0.9], + [15005,0.736], + [15007,0.873], + [15009,0.886], + [16001,0.912], + [16003,0.79], + [16005,0.909], + [16007,0.842], + [16009,0.788], + [16011,0.871], + [16013,0.917], + [16015,0.881], + [16017,0.851], + [16019,0.91], + [16021,0.846], + [16023,0.849], + [16025,0.795], + [16027,0.882], + [16029,0.903], + [16031,0.884], + [16033,0.728], + [16035,0.798], + [16037,0.866], + [16039,0.869], + [16041,0.883], + [16043,0.855], + [16045,0.85], + [16047,0.809], + [16049,0.782], + [16051,0.92], + [16053,0.822], + [16055,0.903], + [16057,0.938], + [16059,0.828], + [16061,0.763], + [16063,0.786], + [16065,0.95], + [16067,0.873], + [16069,0.872], + [16071,0.88], + [16073,0.751], + [16075,0.853], + [16077,0.886], + [16079,0.834], + [16081,0.883], + [16083,0.883], + [16085,0.91], + [16087,0.793], + [17001,0.819], + [17003,0.556], + [17005,0.817], + [17007,0.887], + [17009,0.779], + [17011,0.839], + [17013,0.733], + [17015,0.827], + [17017,0.801], + [17019,0.912], + [17021,0.83], + [17023,0.833], + [17025,0.832], + [17027,0.825], + [17029,0.854], + [17031,0.859], + [17033,0.832], + [17035,0.801], + [17037,0.91], + [17039,0.841], + [17041,0.789], + [17043,0.921], + [17045,0.797], + [17047,0.819], + [17049,0.841], + [17051,0.717], + [17053,0.824], + [17055,0.761], + [17057,0.807], + [17059,0.75], + [17061,0.767], + [17063,0.9], + [17065,0.779], + [17067,0.778], + [17069,0.729], + [17071,0.81], + [17073,0.823], + [17075,0.825], + [17077,0.858], + [17079,0.762], + [17081,0.825], + [17083,0.816], + [17085,0.858], + [17087,0.71], + [17089,0.914], + [17091,0.847], + [17093,0.955], + [17095,0.791], + [17097,0.923], + [17099,0.842], + [17101,0.799], + [17103,0.846], + [17105,0.849], + [17107,0.841], + [17109,0.845], + [17111,0.931], + [17113,0.915], + [17115,0.831], + [17117,0.841], + [17119,0.86], + [17121,0.825], + [17123,0.813], + [17125,0.802], + [17127,0.674], + [17129,0.85], + [17131,0.844], + [17133,0.877], + [17135,0.808], + [17137,0.839], + [17139,0.791], + [17141,0.86], + [17143,0.84], + [17145,0.766], + [17147,0.881], + [17149,0.766], + [17151,0.669], + [17153,0.598], + [17155,0.845], + [17157,0.787], + [17159,0.801], + [17161,0.844], + [17163,0.804], + [17165,0.78], + [17167,0.877], + [17169,0.822], + [17171,0.82], + [17173,0.818], + [17175,0.791], + [17177,0.829], + [17179,0.865], + [17181,0.725], + [17183,0.764], + [17185,0.829], + [17187,0.828], + [17189,0.792], + [17191,0.758], + [17193,0.809], + [17195,0.827], + [17197,0.918], + [17199,0.795], + [17201,0.861], + [17203,0.871], + [18001,0.749], + [18003,0.881], + [18005,0.851], + [18007,0.86], + [18009,0.81], + [18011,0.914], + [18013,0.869], + [18015,0.836], + [18017,0.827], + [18019,0.855], + [18021,0.828], + [18023,0.854], + [18025,0.754], + [18027,0.722], + [18029,0.877], + [18031,0.822], + [18033,0.864], + [18035,0.858], + [18037,0.844], + [18039,0.828], + [18041,0.793], + [18043,0.85], + [18045,0.821], + [18047,0.803], + [18049,0.807], + [18051,0.85], + [18053,0.818], + [18055,0.77], + [18057,0.96], + [18059,0.912], + [18061,0.849], + [18063,0.931], + [18065,0.81], + [18067,0.842], + [18069,0.854], + [18071,0.808], + [18073,0.862], + [18075,0.767], + [18077,0.834], + [18079,0.805], + [18081,0.906], + [18083,0.866], + [18085,0.855], + [18087,0.639], + [18089,0.844], + [18091,0.857], + [18093,0.811], + [18095,0.829], + [18097,0.84], + [18099,0.814], + [18101,0.779], + [18103,0.845], + [18105,0.916], + [18107,0.866], + [18109,0.878], + [18111,0.854], + [18113,0.855], + [18115,0.777], + [18117,0.758], + [18119,0.778], + [18121,0.741], + [18123,0.763], + [18125,0.774], + [18127,0.9], + [18129,0.872], + [18131,0.818], + [18133,0.887], + [18135,0.824], + [18137,0.842], + [18139,0.794], + [18141,0.834], + [18143,0.813], + [18145,0.837], + [18147,0.783], + [18149,0.807], + [18151,0.875], + [18153,0.759], + [18155,0.772], + [18157,0.923], + [18159,0.851], + [18161,0.812], + [18163,0.848], + [18165,0.823], + [18167,0.839], + [18169,0.854], + [18171,0.85], + [18173,0.898], + [18175,0.764], + [18177,0.814], + [18179,0.855], + [18181,0.85], + [18183,0.88], + [19001,0.838], + [19003,0.793], + [19005,0.766], + [19007,0.788], + [19009,0.808], + [19011,0.853], + [19013,0.856], + [19015,0.885], + [19017,0.855], + [19019,0.824], + [19021,0.861], + [19023,0.79], + [19025,0.81], + [19027,0.807], + [19029,0.818], + [19031,0.855], + [19033,0.829], + [19035,0.834], + [19037,0.817], + [19039,0.859], + [19041,0.866], + [19043,0.774], + [19045,0.815], + [19047,0.791], + [19049,0.939], + [19051,0.718], + [19053,0.763], + [19055,0.835], + [19057,0.838], + [19059,0.887], + [19061,0.875], + [19063,0.824], + [19065,0.814], + [19067,0.804], + [19069,0.768], + [19071,0.832], + [19073,0.85], + [19075,0.846], + [19077,0.832], + [19079,0.832], + [19081,0.821], + [19083,0.802], + [19085,0.829], + [19087,0.837], + [19089,0.802], + [19091,0.813], + [19093,0.805], + [19095,0.852], + [19097,0.79], + [19099,0.844], + [19101,0.868], + [19103,0.937], + [19105,0.818], + [19107,0.784], + [19109,0.844], + [19111,0.814], + [19113,0.891], + [19115,0.823], + [19117,0.833], + [19119,0.883], + [19121,0.848], + [19123,0.845], + [19125,0.848], + [19127,0.836], + [19129,0.859], + [19131,0.803], + [19133,0.81], + [19135,0.841], + [19137,0.834], + [19139,0.849], + [19141,0.837], + [19143,0.836], + [19145,0.838], + [19147,0.852], + [19149,0.857], + [19151,0.831], + [19153,0.909], + [19155,0.847], + [19157,0.851], + [19159,0.779], + [19161,0.836], + [19163,0.843], + [19165,0.817], + [19167,0.879], + [19169,0.943], + [19171,0.853], + [19173,0.811], + [19175,0.818], + [19177,0.762], + [19179,0.822], + [19181,0.898], + [19183,0.845], + [19185,0.726], + [19187,0.813], + [19189,0.836], + [19191,0.839], + [19193,0.84], + [19195,0.787], + [19197,0.796], + [20001,0.794], + [20003,0.77], + [20005,0.796], + [20007,0.849], + [20009,0.835], + [20011,0.768], + [20013,0.817], + [20015,0.872], + [20017,0.76], + [20019,0.756], + [20021,0.806], + [20023,0.804], + [20025,0.775], + [20027,0.803], + [20029,0.814], + [20031,0.861], + [20033,0.853], + [20035,0.837], + [20037,0.841], + [20039,0.817], + [20041,0.821], + [20043,0.775], + [20045,0.936], + [20047,0.819], + [20049,0.772], + [20051,0.881], + [20053,0.83], + [20055,0.864], + [20057,0.834], + [20059,0.836], + [20061,0.904], + [20063,0.854], + [20065,0.828], + [20067,0.87], + [20069,0.886], + [20071,0.836], + [20073,0.76], + [20075,0.848], + [20077,0.822], + [20079,0.831], + [20081,0.849], + [20083,0.858], + [20085,0.82], + [20087,0.851], + [20089,0.759], + [20091,0.945], + [20093,0.861], + [20095,0.833], + [20097,0.81], + [20099,0.824], + [20101,0.871], + [20103,0.903], + [20105,0.813], + [20107,0.764], + [20109,0.846], + [20111,0.873], + [20113,0.882], + [20115,0.807], + [20117,0.814], + [20119,0.83], + [20121,0.878], + [20123,0.827], + [20125,0.818], + [20127,0.841], + [20129,0.801], + [20131,0.829], + [20133,0.77], + [20135,0.789], + [20137,0.764], + [20139,0.813], + [20141,0.826], + [20143,0.802], + [20145,0.808], + [20147,0.849], + [20149,0.892], + [20151,0.808], + [20153,0.832], + [20155,0.836], + [20157,0.753], + [20159,0.82], + [20161,0.935], + [20163,0.832], + [20165,0.809], + [20167,0.787], + [20169,0.841], + [20171,0.908], + [20173,0.853], + [20175,0.821], + [20177,0.848], + [20179,0.853], + [20181,0.861], + [20183,0.795], + [20185,0.831], + [20187,0.832], + [20189,0.9], + [20191,0.821], + [20193,0.926], + [20195,0.906], + [20197,0.821], + [20199,0.779], + [20201,0.773], + [20203,0.855], + [20205,0.751], + [20207,0.733], + [20209,0.828], + [21001,0.737], + [21003,0.767], + [21005,0.853], + [21007,0.788], + [21009,0.802], + [21011,0.762], + [21013,0.664], + [21015,0.925], + [21017,0.803], + [21019,0.86], + [21021,0.818], + [21023,0.776], + [21025,0.675], + [21027,0.744], + [21029,0.877], + [21031,0.719], + [21033,0.781], + [21035,0.86], + [21037,0.877], + [21039,0.797], + [21041,0.764], + [21043,0.75], + [21045,0.728], + [21047,0.806], + [21049,0.846], + [21051,0.734], + [21053,0.652], + [21055,0.733], + [21057,0.711], + [21059,0.841], + [21061,0.787], + [21063,0.671], + [21065,0.724], + [21067,0.906], + [21069,0.743], + [21071,0.764], + [21073,0.863], + [21075,0.736], + [21077,0.762], + [21079,0.809], + [21081,0.801], + [21083,0.772], + [21085,0.8], + [21087,0.722], + [21089,0.846], + [21091,0.809], + [21093,0.88], + [21095,0.688], + [21097,0.733], + [21099,0.724], + [21101,0.819], + [21103,0.801], + [21105,0.68], + [21107,0.771], + [21109,0.725], + [21111,0.856], + [21113,0.889], + [21115,0.775], + [21117,0.885], + [21119,0.735], + [21121,0.612], + [21123,0.851], + [21125,0.783], + [21127,0.745], + [21129,0.634], + [21131,0.684], + [21133,0.761], + [21135,0.705], + [21137,0.734], + [21139,0.748], + [21141,0.701], + [21143,0.765], + [21145,0.803], + [21147,0.584], + [21149,0.809], + [21151,0.877], + [21153,0.71], + [21155,0.739], + [21157,0.852], + [21159,0.715], + [21161,0.758], + [21163,0.865], + [21165,0.721], + [21167,0.783], + [21169,0.781], + [21171,0.715], + [21173,0.818], + [21175,0.718], + [21177,0.744], + [21179,0.844], + [21181,0.714], + [21183,0.766], + [21185,0.944], + [21187,0.729], + [21189,0.693], + [21191,0.791], + [21193,0.759], + [21195,0.783], + [21197,0.707], + [21199,0.761], + [21201,0.638], + [21203,0.75], + [21205,0.842], + [21207,0.705], + [21209,0.904], + [21211,0.862], + [21213,0.742], + [21215,0.893], + [21217,0.771], + [21219,0.684], + [21221,0.769], + [21223,0.856], + [21225,0.794], + [21227,0.875], + [21229,0.77], + [21231,0.644], + [21233,0.762], + [21235,0.704], + [21237,0.64], + [21239,0.895], + [22001,0.768], + [22003,0.781], + [22005,0.899], + [22007,0.763], + [22009,0.737], + [22011,0.83], + [22013,0.702], + [22015,0.848], + [22017,0.801], + [22019,0.843], + [22021,0.657], + [22023,0.819], + [22025,0.661], + [22027,0.663], + [22029,0.648], + [22031,0.772], + [22033,0.863], + [22035,0.421], + [22037,0.764], + [22039,0.698], + [22041,0.65], + [22043,0.736], + [22045,0.795], + [22047,0.782], + [22049,0.749], + [22051,0.836], + [22053,0.764], + [22055,0.878], + [22057,0.828], + [22059,0.737], + [22061,0.847], + [22063,0.879], + [22065,0.589], + [22067,0.622], + [22069,0.669], + [22071,0.791], + [22073,0.776], + [22075,0.816], + [22077,0.762], + [22079,0.816], + [22081,0.747], + [22083,0.617], + [22085,0.701], + [22087,0.807], + [22089,0.877], + [22091,0.707], + [22093,0.783], + [22095,0.844], + [22097,0.731], + [22099,0.817], + [22101,0.779], + [22103,0.905], + [22105,0.842], + [22107,0.5], + [22109,0.85], + [22111,0.677], + [22113,0.798], + [22115,0.846], + [22117,0.723], + [22119,0.659], + [22121,0.849], + [22123,0.582], + [22125,0.825], + [22127,0.706], + [23001,0.866], + [23003,0.798], + [23005,0.909], + [23007,0.864], + [23009,0.866], + [23011,0.858], + [23013,0.883], + [23015,0.89], + [23017,0.828], + [23019,0.862], + [23021,0.811], + [23023,0.884], + [23025,0.812], + [23027,0.865], + [23029,0.805], + [23031,0.89], + [24001,0.784], + [24003,0.928], + [24005,0.894], + [24009,0.929], + [24011,0.824], + [24013,0.901], + [24015,0.868], + [24017,0.9], + [24019,0.82], + [24021,0.911], + [24023,0.805], + [24025,0.91], + [24027,0.962], + [24029,0.817], + [24031,0.951], + [24033,0.922], + [24035,0.906], + [24037,0.875], + [24039,0.807], + [24041,0.876], + [24043,0.83], + [24045,0.881], + [24047,0.857], + [24510,0.818], + [25001,0.905], + [25003,0.86], + [25005,0.847], + [25007,0.906], + [25009,0.885], + [25011,0.866], + [25013,0.835], + [25015,0.905], + [25017,0.911], + [25019,0.955], + [25021,0.917], + [25023,0.909], + [25025,0.877], + [25027,0.887], + [26001,0.78], + [26003,0.772], + [26005,0.816], + [26007,0.82], + [26009,0.867], + [26011,0.764], + [26013,0.785], + [26015,0.865], + [26017,0.828], + [26019,0.867], + [26021,0.842], + [26023,0.829], + [26025,0.832], + [26027,0.854], + [26029,0.88], + [26031,0.811], + [26033,0.817], + [26035,0.783], + [26037,0.897], + [26039,0.838], + [26041,0.817], + [26043,0.816], + [26045,0.89], + [26047,0.863], + [26049,0.83], + [26051,0.741], + [26053,0.759], + [26055,0.902], + [26057,0.833], + [26059,0.787], + [26061,0.829], + [26063,0.798], + [26065,0.898], + [26067,0.869], + [26069,0.804], + [26071,0.757], + [26073,0.894], + [26075,0.861], + [26077,0.901], + [26079,0.822], + [26081,0.894], + [26083,0.773], + [26085,0.717], + [26087,0.878], + [26089,0.894], + [26091,0.87], + [26093,0.924], + [26095,0.737], + [26097,0.808], + [26099,0.875], + [26101,0.816], + [26103,0.862], + [26105,0.846], + [26107,0.847], + [26109,0.793], + [26111,0.866], + [26113,0.827], + [26115,0.869], + [26117,0.813], + [26119,0.794], + [26121,0.844], + [26123,0.812], + [26125,0.919], + [26127,0.822], + [26129,0.798], + [26131,0.743], + [26133,0.776], + [26135,0.713], + [26137,0.865], + [26139,0.907], + [26141,0.777], + [26143,0.814], + [26145,0.81], + [26147,0.865], + [26149,0.829], + [26151,0.806], + [26153,0.747], + [26155,0.85], + [26157,0.833], + [26159,0.831], + [26161,0.931], + [26163,0.836], + [26165,0.819], + [27001,0.814], + [27003,0.917], + [27005,0.832], + [27007,0.857], + [27009,0.882], + [27011,0.768], + [27013,0.904], + [27015,0.844], + [27017,0.829], + [27019,0.933], + [27021,0.834], + [27023,0.837], + [27025,0.899], + [27027,0.858], + [27029,0.789], + [27031,0.862], + [27033,0.821], + [27035,0.871], + [27037,0.933], + [27039,0.894], + [27041,0.861], + [27043,0.809], + [27045,0.819], + [27047,0.835], + [27049,0.878], + [27051,0.841], + [27053,0.915], + [27055,0.853], + [27057,0.867], + [27059,0.871], + [27061,0.837], + [27063,0.831], + [27065,0.825], + [27067,0.863], + [27069,0.787], + [27071,0.797], + [27073,0.806], + [27075,0.855], + [27077,0.799], + [27079,0.876], + [27081,0.772], + [27083,0.884], + [27085,0.866], + [27087,0.733], + [27089,0.815], + [27091,0.816], + [27093,0.838], + [27095,0.826], + [27097,0.806], + [27099,0.844], + [27101,0.826], + [27103,0.881], + [27105,0.84], + [27107,0.749], + [27109,0.919], + [27111,0.833], + [27113,0.825], + [27115,0.792], + [27117,0.797], + [27119,0.832], + [27121,0.849], + [27123,0.896], + [27125,0.804], + [27127,0.821], + [27129,0.814], + [27131,0.874], + [27133,0.86], + [27135,0.83], + [27137,0.844], + [27139,0.938], + [27141,0.935], + [27143,0.831], + [27145,0.891], + [27147,0.861], + [27149,0.86], + [27151,0.801], + [27153,0.786], + [27155,0.798], + [27157,0.842], + [27159,0.796], + [27161,0.877], + [27163,0.939], + [27165,0.771], + [27167,0.812], + [27169,0.87], + [27171,0.916], + [27173,0.832], + [28001,0.751], + [28003,0.767], + [28005,0.633], + [28007,0.749], + [28009,0.774], + [28011,0.707], + [28013,0.701], + [28015,0.717], + [28017,0.69], + [28019,0.698], + [28021,0.652], + [28023,0.708], + [28025,0.748], + [28027,0.663], + [28029,0.671], + [28031,0.779], + [28033,0.889], + [28035,0.849], + [28037,0.792], + [28039,0.761], + [28041,0.762], + [28043,0.743], + [28045,0.847], + [28047,0.832], + [28049,0.823], + [28051,0.605], + [28053,0.694], + [28055,0.588], + [28057,0.789], + [28059,0.847], + [28061,0.734], + [28063,0.656], + [28065,0.632], + [28067,0.752], + [28069,0.622], + [28071,0.896], + [28073,0.893], + [28075,0.778], + [28077,0.663], + [28079,0.705], + [28081,0.815], + [28083,0.594], + [28085,0.719], + [28087,0.817], + [28089,0.883], + [28091,0.709], + [28093,0.721], + [28095,0.709], + [28097,0.713], + [28099,0.764], + [28101,0.764], + [28103,0.651], + [28105,0.847], + [28107,0.704], + [28109,0.831], + [28111,0.758], + [28113,0.704], + [28115,0.771], + [28117,0.739], + [28119,0.65], + [28121,0.892], + [28123,0.692], + [28125,0.67], + [28127,0.698], + [28129,0.716], + [28131,0.78], + [28133,0.737], + [28135,0.653], + [28137,0.791], + [28139,0.761], + [28141,0.77], + [28143,0.814], + [28145,0.779], + [28147,0.697], + [28149,0.792], + [28151,0.742], + [28153,0.736], + [28155,0.773], + [28157,0.666], + [28159,0.706], + [28161,0.676], + [28163,0.682], + [29001,0.845], + [29003,0.843], + [29005,0.786], + [29007,0.784], + [29009,0.788], + [29011,0.735], + [29013,0.817], + [29015,0.766], + [29017,0.761], + [29019,0.922], + [29021,0.815], + [29023,0.802], + [29025,0.778], + [29027,0.826], + [29029,0.851], + [29031,0.855], + [29033,0.781], + [29035,0.769], + [29037,0.909], + [29039,0.745], + [29041,0.732], + [29043,0.907], + [29045,0.761], + [29047,0.919], + [29049,0.873], + [29051,0.858], + [29053,0.834], + [29055,0.754], + [29057,0.778], + [29059,0.771], + [29061,0.765], + [29063,0.771], + [29065,0.779], + [29067,0.727], + [29069,0.759], + [29071,0.865], + [29073,0.829], + [29075,0.798], + [29077,0.873], + [29079,0.755], + [29081,0.813], + [29083,0.818], + [29085,0.757], + [29087,0.797], + [29089,0.804], + [29091,0.786], + [29093,0.768], + [29095,0.855], + [29097,0.839], + [29099,0.888], + [29101,0.91], + [29103,0.76], + [29105,0.799], + [29107,0.822], + [29109,0.822], + [29111,0.803], + [29113,0.873], + [29115,0.778], + [29117,0.808], + [29119,0.755], + [29121,0.76], + [29123,0.753], + [29125,0.693], + [29127,0.831], + [29129,0.712], + [29131,0.797], + [29133,0.758], + [29135,0.786], + [29137,0.757], + [29139,0.765], + [29141,0.754], + [29143,0.762], + [29145,0.815], + [29147,0.868], + [29149,0.758], + [29151,0.801], + [29153,0.719], + [29155,0.695], + [29157,0.812], + [29159,0.831], + [29161,0.866], + [29163,0.783], + [29165,0.939], + [29167,0.824], + [29169,0.891], + [29171,0.802], + [29173,0.84], + [29175,0.802], + [29177,0.845], + [29179,0.764], + [29181,0.778], + [29183,0.932], + [29185,0.723], + [29186,0.822], + [29187,0.798], + [29189,0.895], + [29195,0.796], + [29197,0.75], + [29199,0.81], + [29201,0.798], + [29203,0.678], + [29205,0.8], + [29207,0.81], + [29209,0.849], + [29211,0.728], + [29213,0.877], + [29215,0.767], + [29217,0.835], + [29219,0.848], + [29221,0.754], + [29223,0.748], + [29225,0.787], + [29227,0.764], + [29229,0.758], + [29510,0.806], + [30001,0.849], + [30003,0.733], + [30005,0.762], + [30007,0.831], + [30009,0.84], + [30011,0.761], + [30013,0.813], + [30015,0.775], + [30017,0.84], + [30019,0.829], + [30021,0.861], + [30023,0.794], + [30025,0.876], + [30027,0.838], + [30029,0.877], + [30031,0.943], + [30033,0.772], + [30035,0.633], + [30037,0.815], + [30039,0.843], + [30041,0.82], + [30043,0.877], + [30045,0.827], + [30047,0.842], + [30049,0.884], + [30051,0.75], + [30053,0.806], + [30055,0.761], + [30057,0.82], + [30059,0.782], + [30061,0.788], + [30063,0.915], + [30065,0.814], + [30067,0.856], + [30069,0.835], + [30071,0.793], + [30073,0.775], + [30075,0.853], + [30077,0.833], + [30079,0.772], + [30081,0.87], + [30083,0.843], + [30085,0.718], + [30087,0.761], + [30089,0.749], + [30091,0.871], + [30093,0.811], + [30095,0.857], + [30097,0.798], + [30099,0.844], + [30101,0.82], + [30103,0.863], + [30105,0.845], + [30107,0.755], + [30109,0.728], + [30111,0.889], + [31001,0.855], + [31003,0.802], + [31005,0.791], + [31007,0.93], + [31009,0.875], + [31011,0.822], + [31013,0.834], + [31015,0.755], + [31017,0.774], + [31019,0.889], + [31021,0.769], + [31023,0.81], + [31025,0.906], + [31027,0.821], + [31029,0.828], + [31031,0.818], + [31033,0.857], + [31035,0.851], + [31037,0.78], + [31039,0.782], + [31041,0.798], + [31043,0.87], + [31045,0.794], + [31047,0.849], + [31049,0.846], + [31051,0.825], + [31053,0.852], + [31055,0.873], + [31057,0.81], + [31059,0.815], + [31061,0.81], + [31063,0.799], + [31065,0.798], + [31067,0.827], + [31069,0.826], + [31071,0.778], + [31073,0.824], + [31075,0.785], + [31077,0.781], + [31079,0.834], + [31081,0.887], + [31083,0.808], + [31085,0.818], + [31087,0.765], + [31089,0.82], + [31091,0.753], + [31093,0.816], + [31095,0.779], + [31097,0.762], + [31099,0.851], + [31101,0.85], + [31103,0.85], + [31105,0.838], + [31107,0.775], + [31109,0.915], + [31111,0.855], + [31113,0.803], + [31115,0.776], + [31117,0.734], + [31119,0.848], + [31121,0.816], + [31123,0.816], + [31125,0.773], + [31127,0.834], + [31129,0.824], + [31131,0.835], + [31133,0.722], + [31135,0.888], + [31137,0.871], + [31139,0.825], + [31141,0.834], + [31143,0.86], + [31145,0.835], + [31147,0.784], + [31149,0.786], + [31151,0.819], + [31153,0.94], + [31155,0.852], + [31157,0.835], + [31159,0.873], + [31161,0.739], + [31163,0.809], + [31165,0.798], + [31167,0.845], + [31169,0.814], + [31171,0.823], + [31173,0.77], + [31175,0.784], + [31177,0.889], + [31179,0.906], + [31181,0.806], + [31183,0.815], + [31185,0.864], + [32001,0.88], + [32003,0.901], + [32005,0.911], + [32007,0.914], + [32009,0.85], + [32011,0.826], + [32013,0.834], + [32015,0.825], + [32017,0.821], + [32019,0.872], + [32021,0.77], + [32023,0.857], + [32027,0.759], + [32029,0.873], + [32031,0.898], + [32033,0.831], + [32510,0.871], + [33001,0.894], + [33003,0.904], + [33005,0.891], + [33007,0.841], + [33009,0.9], + [33011,0.925], + [33013,0.895], + [33015,0.932], + [33017,0.912], + [33019,0.876], + [34001,0.872], + [34003,0.912], + [34005,0.914], + [34007,0.874], + [34009,0.873], + [34011,0.809], + [34013,0.856], + [34015,0.908], + [34017,0.883], + [34019,0.927], + [34021,0.886], + [34023,0.901], + [34025,0.912], + [34027,0.931], + [34029,0.865], + [34031,0.836], + [34033,0.836], + [34035,0.93], + [34037,0.923], + [34039,0.874], + [34041,0.895], + [35001,0.866], + [35003,0.696], + [35005,0.804], + [35006,0.735], + [35007,0.749], + [35009,0.854], + [35011,0.77], + [35013,0.83], + [35015,0.84], + [35017,0.805], + [35019,0.437], + [35021,0.576], + [35023,0.718], + [35025,0.822], + [35027,0.782], + [35028,0.919], + [35029,0.701], + [35031,0.549], + [35033,0.557], + [35035,0.823], + [35037,0.679], + [35039,0.586], + [35041,0.815], + [35043,0.872], + [35045,0.746], + [35047,0.649], + [35049,0.857], + [35051,0.732], + [35053,0.667], + [35055,0.747], + [35057,0.791], + [35059,0.68], + [35061,0.764], + [36001,0.878], + [36003,0.805], + [36005,0.824], + [36007,0.855], + [36009,0.801], + [36011,0.836], + [36013,0.824], + [36015,0.857], + [36017,0.843], + [36019,0.86], + [36021,0.86], + [36023,0.828], + [36025,0.82], + [36027,0.9], + [36029,0.847], + [36031,0.849], + [36033,0.808], + [36035,0.837], + [36037,0.841], + [36039,0.831], + [36041,0.83], + [36043,0.826], + [36045,0.894], + [36047,0.841], + [36049,0.826], + [36051,0.872], + [36053,0.854], + [36055,0.867], + [36057,0.811], + [36059,0.916], + [36061,0.891], + [36063,0.822], + [36065,0.841], + [36067,0.864], + [36069,0.883], + [36071,0.88], + [36073,0.832], + [36075,0.881], + [36077,0.862], + [36079,0.94], + [36081,0.869], + [36083,0.883], + [36085,0.872], + [36087,0.869], + [36089,0.845], + [36091,0.914], + [36093,0.874], + [36095,0.831], + [36097,0.833], + [36099,0.855], + [36101,0.83], + [36103,0.909], + [36105,0.829], + [36107,0.849], + [36109,0.917], + [36111,0.882], + [36113,0.874], + [36115,0.837], + [36117,0.838], + [36119,0.9], + [36121,0.838], + [36123,0.793], + [37001,0.852], + [37003,0.764], + [37005,0.774], + [37007,0.749], + [37009,0.758], + [37011,0.759], + [37013,0.742], + [37015,0.667], + [37017,0.75], + [37019,0.892], + [37021,0.864], + [37023,0.763], + [37025,0.911], + [37027,0.794], + [37029,0.875], + [37031,0.889], + [37033,0.736], + [37035,0.837], + [37037,0.859], + [37039,0.777], + [37041,0.779], + [37043,0.846], + [37045,0.733], + [37047,0.712], + [37049,0.878], + [37051,0.883], + [37053,0.897], + [37055,0.928], + [37057,0.824], + [37059,0.85], + [37061,0.756], + [37063,0.904], + [37065,0.724], + [37067,0.867], + [37069,0.827], + [37071,0.828], + [37073,0.77], + [37075,0.617], + [37077,0.839], + [37079,0.799], + [37081,0.846], + [37083,0.734], + [37085,0.875], + [37087,0.81], + [37089,0.853], + [37091,0.731], + [37093,0.842], + [37095,0.724], + [37097,0.873], + [37099,0.816], + [37101,0.879], + [37103,0.729], + [37105,0.826], + [37107,0.792], + [37109,0.835], + [37111,0.796], + [37113,0.796], + [37115,0.77], + [37117,0.742], + [37119,0.919], + [37121,0.751], + [37123,0.722], + [37125,0.848], + [37127,0.799], + [37129,0.897], + [37131,0.68], + [37133,0.917], + [37135,0.931], + [37137,0.83], + [37139,0.812], + [37141,0.858], + [37143,0.801], + [37145,0.792], + [37147,0.863], + [37149,0.838], + [37151,0.8], + [37153,0.742], + [37155,0.675], + [37157,0.776], + [37159,0.835], + [37161,0.756], + [37163,0.76], + [37165,0.725], + [37167,0.829], + [37169,0.788], + [37171,0.753], + [37173,0.607], + [37175,0.875], + [37177,0.678], + [37179,0.922], + [37181,0.758], + [37183,0.946], + [37185,0.723], + [37187,0.693], + [37189,0.877], + [37191,0.831], + [37193,0.779], + [37195,0.808], + [37197,0.765], + [37199,0.712], + [38001,0.833], + [38003,0.832], + [38005,0.723], + [38007,0.758], + [38009,0.852], + [38011,0.881], + [38013,0.843], + [38015,0.884], + [38017,0.91], + [38019,0.837], + [38021,0.888], + [38023,0.771], + [38025,0.846], + [38027,0.759], + [38029,0.716], + [38031,0.831], + [38033,0.772], + [38035,0.895], + [38037,0.77], + [38039,0.767], + [38041,0.781], + [38043,0.781], + [38045,0.795], + [38047,0.813], + [38049,0.818], + [38051,0.768], + [38053,0.92], + [38055,0.852], + [38057,0.845], + [38059,0.875], + [38061,0.835], + [38063,0.81], + [38065,0.835], + [38067,0.789], + [38069,0.777], + [38071,0.821], + [38073,0.83], + [38075,0.846], + [38077,0.853], + [38079,0.753], + [38081,0.86], + [38083,0.784], + [38085,0.683], + [38087,0.722], + [38089,0.868], + [38091,0.847], + [38093,0.857], + [38095,0.804], + [38097,0.85], + [38099,0.779], + [38101,0.909], + [38103,0.787], + [38105,0.919], + [39001,0.716], + [39003,0.845], + [39005,0.831], + [39007,0.803], + [39009,0.847], + [39011,0.873], + [39013,0.797], + [39015,0.823], + [39017,0.891], + [39019,0.81], + [39021,0.875], + [39023,0.845], + [39025,0.895], + [39027,0.841], + [39029,0.831], + [39031,0.778], + [39033,0.815], + [39035,0.837], + [39037,0.825], + [39039,0.856], + [39041,0.951], + [39043,0.854], + [39045,0.893], + [39047,0.803], + [39049,0.902], + [39051,0.875], + [39053,0.776], + [39055,0.859], + [39057,0.9], + [39059,0.795], + [39061,0.862], + [39063,0.888], + [39065,0.79], + [39067,0.772], + [39069,0.875], + [39071,0.776], + [39073,0.814], + [39075,0.631], + [39077,0.85], + [39079,0.812], + [39081,0.793], + [39083,0.828], + [39085,0.879], + [39087,0.778], + [39089,0.883], + [39091,0.851], + [39093,0.867], + [39095,0.866], + [39097,0.864], + [39099,0.824], + [39101,0.838], + [39103,0.914], + [39105,0.776], + [39107,0.867], + [39109,0.863], + [39111,0.73], + [39113,0.861], + [39115,0.771], + [39117,0.84], + [39119,0.831], + [39121,0.672], + [39123,0.881], + [39125,0.805], + [39127,0.799], + [39129,0.853], + [39131,0.783], + [39133,0.885], + [39135,0.846], + [39137,0.862], + [39139,0.818], + [39141,0.835], + [39143,0.84], + [39145,0.767], + [39147,0.845], + [39149,0.85], + [39151,0.852], + [39153,0.858], + [39155,0.809], + [39157,0.796], + [39159,0.894], + [39161,0.856], + [39163,0.728], + [39165,0.926], + [39167,0.776], + [39169,0.829], + [39171,0.842], + [39173,0.9], + [39175,0.832], + [40001,0.695], + [40003,0.832], + [40005,0.776], + [40007,0.806], + [40009,0.844], + [40011,0.772], + [40013,0.823], + [40015,0.764], + [40017,0.918], + [40019,0.816], + [40021,0.759], + [40023,0.651], + [40025,0.818], + [40027,0.925], + [40029,0.725], + [40031,0.878], + [40033,0.806], + [40035,0.768], + [40037,0.802], + [40039,0.882], + [40041,0.816], + [40043,0.819], + [40045,0.794], + [40047,0.84], + [40049,0.795], + [40051,0.84], + [40053,0.809], + [40055,0.785], + [40057,0.794], + [40059,0.818], + [40061,0.745], + [40063,0.661], + [40065,0.834], + [40067,0.721], + [40069,0.754], + [40071,0.824], + [40073,0.84], + [40075,0.789], + [40077,0.758], + [40079,0.733], + [40081,0.788], + [40083,0.836], + [40085,0.817], + [40087,0.888], + [40089,0.655], + [40091,0.767], + [40093,0.793], + [40095,0.816], + [40097,0.826], + [40099,0.844], + [40101,0.791], + [40103,0.803], + [40105,0.784], + [40107,0.719], + [40109,0.876], + [40111,0.773], + [40113,0.814], + [40115,0.741], + [40117,0.777], + [40119,0.886], + [40121,0.794], + [40123,0.796], + [40125,0.828], + [40127,0.717], + [40129,0.818], + [40131,0.895], + [40133,0.768], + [40135,0.792], + [40137,0.818], + [40139,0.772], + [40141,0.77], + [40143,0.88], + [40145,0.906], + [40147,0.843], + [40149,0.863], + [40151,0.842], + [40153,0.868], + [41001,0.832], + [41003,0.947], + [41005,0.924], + [41007,0.884], + [41009,0.882], + [41011,0.832], + [41013,0.871], + [41015,0.833], + [41017,0.933], + [41019,0.862], + [41021,0.798], + [41023,0.837], + [41025,0.838], + [41027,0.9], + [41029,0.89], + [41031,0.857], + [41033,0.859], + [41035,0.848], + [41037,0.784], + [41039,0.909], + [41041,0.87], + [41043,0.883], + [41045,0.817], + [41047,0.895], + [41049,0.848], + [41051,0.918], + [41053,0.914], + [41055,0.873], + [41057,0.858], + [41059,0.855], + [41061,0.863], + [41063,0.839], + [41065,0.849], + [41067,0.946], + [41069,0.79], + [41071,0.906], + [42001,0.861], + [42003,0.861], + [42005,0.798], + [42007,0.826], + [42009,0.767], + [42011,0.855], + [42013,0.801], + [42015,0.824], + [42017,0.908], + [42019,0.874], + [42021,0.791], + [42023,0.782], + [42025,0.835], + [42027,0.901], + [42029,0.912], + [42031,0.814], + [42033,0.78], + [42035,0.817], + [42037,0.816], + [42039,0.814], + [42041,0.876], + [42043,0.858], + [42045,0.888], + [42047,0.812], + [42049,0.851], + [42051,0.759], + [42053,0.733], + [42055,0.826], + [42057,0.768], + [42059,0.815], + [42061,0.801], + [42063,0.791], + [42065,0.772], + [42067,0.769], + [42069,0.816], + [42071,0.84], + [42073,0.802], + [42075,0.839], + [42077,0.865], + [42079,0.808], + [42081,0.831], + [42083,0.824], + [42085,0.816], + [42087,0.762], + [42089,0.889], + [42091,0.911], + [42093,0.816], + [42095,0.863], + [42097,0.768], + [42099,0.821], + [42101,0.813], + [42103,0.904], + [42105,0.787], + [42107,0.793], + [42109,0.796], + [42111,0.776], + [42113,0.785], + [42115,0.848], + [42117,0.821], + [42119,0.803], + [42121,0.817], + [42123,0.822], + [42125,0.844], + [42127,0.836], + [42129,0.825], + [42131,0.847], + [42133,0.855], + [44001,0.876], + [44003,0.883], + [44005,0.892], + [44007,0.845], + [44009,0.901], + [45001,0.746], + [45003,0.841], + [45005,0.641], + [45007,0.816], + [45009,0.704], + [45011,0.705], + [45013,0.913], + [45015,0.896], + [45017,0.728], + [45019,0.889], + [45021,0.738], + [45023,0.702], + [45025,0.738], + [45027,0.745], + [45029,0.814], + [45031,0.744], + [45033,0.7], + [45035,0.886], + [45037,0.773], + [45039,0.723], + [45041,0.798], + [45043,0.832], + [45045,0.854], + [45047,0.803], + [45049,0.721], + [45051,0.889], + [45053,0.761], + [45055,0.812], + [45057,0.821], + [45059,0.788], + [45061,0.691], + [45063,0.883], + [45065,0.771], + [45067,0.7], + [45069,0.7], + [45071,0.729], + [45073,0.817], + [45075,0.72], + [45077,0.829], + [45079,0.9], + [45081,0.685], + [45083,0.842], + [45085,0.816], + [45087,0.717], + [45089,0.658], + [45091,0.896], + [46003,0.775], + [46005,0.832], + [46007,0.758], + [46009,0.812], + [46011,0.922], + [46013,0.836], + [46015,0.766], + [46017,0.625], + [46019,0.835], + [46021,0.765], + [46023,0.706], + [46025,0.76], + [46027,0.923], + [46029,0.863], + [46031,0.598], + [46033,0.878], + [46035,0.852], + [46037,0.794], + [46039,0.82], + [46041,0.585], + [46043,0.792], + [46045,0.836], + [46047,0.83], + [46049,0.72], + [46051,0.832], + [46053,0.741], + [46055,0.741], + [46057,0.894], + [46059,0.791], + [46061,0.869], + [46063,0.886], + [46065,0.823], + [46067,0.775], + [46069,0.799], + [46071,0.642], + [46073,0.82], + [46075,0.857], + [46077,0.806], + [46079,0.863], + [46081,0.877], + [46083,0.939], + [46085,0.807], + [46087,0.875], + [46089,0.696], + [46091,0.854], + [46093,0.879], + [46095,0.596], + [46097,0.821], + [46099,0.89], + [46101,0.846], + [46102,null], + [46103,0.878], + [46105,0.777], + [46107,0.848], + [46109,0.774], + [46111,0.838], + [46115,0.838], + [46117,0.835], + [46119,0.802], + [46121,0.621], + [46123,0.801], + [46125,0.802], + [46127,0.87], + [46129,0.735], + [46135,0.837], + [46137,0.564], + [47001,0.8], + [47003,0.841], + [47005,0.74], + [47007,0.728], + [47009,0.851], + [47011,0.818], + [47013,0.68], + [47015,0.802], + [47017,0.746], + [47019,0.741], + [47021,0.863], + [47023,0.805], + [47025,0.703], + [47027,0.64], + [47029,0.714], + [47031,0.834], + [47033,0.729], + [47035,0.817], + [47037,0.891], + [47039,0.776], + [47041,0.752], + [47043,0.765], + [47045,0.808], + [47047,0.819], + [47049,0.748], + [47051,0.806], + [47053,0.791], + [47055,0.803], + [47057,0.778], + [47059,0.763], + [47061,0.699], + [47063,0.781], + [47065,0.842], + [47067,0.63], + [47069,0.713], + [47071,0.755], + [47073,0.768], + [47075,0.699], + [47077,0.767], + [47079,0.797], + [47081,0.676], + [47083,0.708], + [47085,0.725], + [47087,0.668], + [47089,0.826], + [47091,0.694], + [47093,0.876], + [47095,0.691], + [47097,0.752], + [47099,0.757], + [47101,0.699], + [47103,0.773], + [47105,0.858], + [47107,0.757], + [47109,0.755], + [47111,0.728], + [47113,0.824], + [47115,0.767], + [47117,0.822], + [47119,0.869], + [47121,0.724], + [47123,0.754], + [47125,0.898], + [47127,0.761], + [47129,0.76], + [47131,0.8], + [47133,0.7], + [47135,0.614], + [47137,0.692], + [47139,0.774], + [47141,0.788], + [47143,0.766], + [47145,0.796], + [47147,0.85], + [47149,0.92], + [47151,0.727], + [47153,0.835], + [47155,0.831], + [47157,0.824], + [47159,0.765], + [47161,0.74], + [47163,0.823], + [47165,0.88], + [47167,0.846], + [47169,0.696], + [47171,0.76], + [47173,0.768], + [47175,0.723], + [47177,0.744], + [47179,0.858], + [47181,0.704], + [47183,0.805], + [47185,0.73], + [47187,0.948], + [47189,0.894], + [48001,0.793], + [48003,0.881], + [48005,0.864], + [48007,0.872], + [48009,0.852], + [48011,0.88], + [48013,0.838], + [48015,0.837], + [48017,0.826], + [48019,0.849], + [48021,0.871], + [48023,0.829], + [48025,0.83], + [48027,0.9], + [48029,0.873], + [48031,0.88], + [48033,0.903], + [48035,0.833], + [48037,0.772], + [48039,0.909], + [48041,0.917], + [48043,0.811], + [48045,0.756], + [48047,0.673], + [48049,0.788], + [48051,0.726], + [48053,0.874], + [48055,0.822], + [48057,0.878], + [48059,0.703], + [48061,0.736], + [48063,0.761], + [48065,0.865], + [48067,0.701], + [48069,0.797], + [48071,0.863], + [48073,0.803], + [48075,0.773], + [48077,0.819], + [48079,0.717], + [48081,0.842], + [48083,0.782], + [48085,0.966], + [48087,0.811], + [48089,0.781], + [48091,0.911], + [48093,0.77], + [48095,0.756], + [48097,0.844], + [48099,0.898], + [48101,0.711], + [48103,0.874], + [48105,0.784], + [48107,0.785], + [48109,0.654], + [48111,0.833], + [48113,0.872], + [48115,0.78], + [48117,0.79], + [48119,0.807], + [48121,0.958], + [48123,0.71], + [48125,0.811], + [48127,0.674], + [48129,0.737], + [48131,0.649], + [48133,0.688], + [48135,0.868], + [48137,0.574], + [48139,0.91], + [48141,0.823], + [48143,0.891], + [48145,0.707], + [48147,0.841], + [48149,0.74], + [48151,0.776], + [48153,0.803], + [48155,0.824], + [48157,0.956], + [48159,0.826], + [48161,0.8], + [48163,0.686], + [48165,0.845], + [48167,0.887], + [48169,0.796], + [48171,0.847], + [48173,0.886], + [48175,0.766], + [48177,0.766], + [48179,0.818], + [48181,0.852], + [48183,0.854], + [48185,0.801], + [48187,0.89], + [48189,0.815], + [48191,0.75], + [48193,0.774], + [48195,0.835], + [48197,0.8], + [48199,0.859], + [48201,0.883], + [48203,0.751], + [48205,0.861], + [48207,0.709], + [48209,0.928], + [48211,0.9], + [48213,0.782], + [48215,0.813], + [48217,0.819], + [48219,0.815], + [48221,0.897], + [48223,0.841], + [48225,0.74], + [48227,0.821], + [48229,0.652], + [48231,0.848], + [48233,0.844], + [48235,0.881], + [48237,0.831], + [48239,0.81], + [48241,0.757], + [48243,0.887], + [48245,0.777], + [48247,0.638], + [48249,0.641], + [48251,0.9], + [48253,0.824], + [48255,0.675], + [48257,0.875], + [48259,0.933], + [48261,0.434], + [48263,0.745], + [48265,0.836], + [48267,0.775], + [48269,0.921], + [48271,0.712], + [48273,0.868], + [48275,0.791], + [48277,0.807], + [48279,0.793], + [48281,0.854], + [48283,0.678], + [48285,0.767], + [48287,0.833], + [48289,0.813], + [48291,0.818], + [48293,0.762], + [48295,0.864], + [48297,0.729], + [48299,0.845], + [48301,0.935], + [48303,0.888], + [48305,0.804], + [48307,0.801], + [48309,0.848], + [48311,0.665], + [48313,0.789], + [48315,0.708], + [48317,0.848], + [48319,0.753], + [48321,0.768], + [48323,0.721], + [48325,0.816], + [48327,0.7], + [48329,0.905], + [48331,0.768], + [48333,0.801], + [48335,0.81], + [48337,0.829], + [48339,0.926], + [48341,0.84], + [48343,0.785], + [48345,0.832], + [48347,0.842], + [48349,0.827], + [48351,0.751], + [48353,0.854], + [48355,0.857], + [48357,0.879], + [48359,0.85], + [48361,0.846], + [48363,0.814], + [48365,0.761], + [48367,0.912], + [48369,0.772], + [48371,0.738], + [48373,0.775], + [48375,0.819], + [48377,0.599], + [48379,0.811], + [48381,0.919], + [48383,0.852], + [48385,0.801], + [48387,0.722], + [48389,0.728], + [48391,0.769], + [48393,0.917], + [48395,0.817], + [48397,0.952], + [48399,0.764], + [48401,0.787], + [48403,0.815], + [48405,0.666], + [48407,0.828], + [48409,0.86], + [48411,0.738], + [48413,0.809], + [48415,0.873], + [48417,0.748], + [48419,0.735], + [48421,0.852], + [48423,0.873], + [48425,0.86], + [48427,0.744], + [48429,0.769], + [48431,0.851], + [48433,0.738], + [48435,0.751], + [48437,0.797], + [48439,0.917], + [48441,0.872], + [48443,0.598], + [48445,0.799], + [48447,0.757], + [48449,0.779], + [48451,0.84], + [48453,0.931], + [48455,0.77], + [48457,0.782], + [48459,0.821], + [48461,0.809], + [48463,0.724], + [48465,0.778], + [48467,0.822], + [48469,0.838], + [48471,0.889], + [48473,0.838], + [48475,0.796], + [48477,0.78], + [48479,0.726], + [48481,0.78], + [48483,0.858], + [48485,0.851], + [48487,0.801], + [48489,0.68], + [48491,0.949], + [48493,0.87], + [48495,0.809], + [48497,0.886], + [48499,0.834], + [48501,0.83], + [48503,0.834], + [48505,0.812], + [48507,0.649], + [49001,0.857], + [49003,0.891], + [49005,0.944], + [49007,0.859], + [49009,0.988], + [49011,0.954], + [49013,0.881], + [49015,0.862], + [49017,0.896], + [49019,0.919], + [49021,0.924], + [49023,0.897], + [49025,0.888], + [49027,0.902], + [49029,0.958], + [49031,0.835], + [49033,0.93], + [49035,0.935], + [49037,0.632], + [49039,0.889], + [49041,0.89], + [49043,0.956], + [49045,0.928], + [49047,0.877], + [49049,0.964], + [49051,0.95], + [49053,0.922], + [49055,0.881], + [49057,0.918], + [50001,0.867], + [50003,0.874], + [50005,0.828], + [50007,0.924], + [50009,0.765], + [50011,0.854], + [50013,0.909], + [50015,0.887], + [50017,0.849], + [50019,0.804], + [50021,0.856], + [50023,0.869], + [50025,0.879], + [50027,0.877], + [51001,0.777], + [51003,0.913], + [51005,0.77], + [51007,0.835], + [51009,0.752], + [51011,0.753], + [51013,0.949], + [51015,0.812], + [51017,0.78], + [51019,0.828], + [51021,0.813], + [51023,0.86], + [51025,0.734], + [51027,0.682], + [51029,0.778], + [51031,0.804], + [51033,0.823], + [51035,0.731], + [51036,0.724], + [51037,0.645], + [51041,0.926], + [51043,0.84], + [51045,0.734], + [51047,0.861], + [51049,0.781], + [51051,0.713], + [51053,0.824], + [51057,0.737], + [51059,0.962], + [51061,0.906], + [51063,0.754], + [51065,0.904], + [51067,0.79], + [51069,0.88], + [51071,0.77], + [51073,0.875], + [51075,0.89], + [51077,0.717], + [51079,0.884], + [51081,0.777], + [51083,0.666], + [51085,0.909], + [51087,0.903], + [51089,0.787], + [51091,0.747], + [51093,0.856], + [51095,0.916], + [51097,0.702], + [51099,0.916], + [51101,0.838], + [51103,0.813], + [51105,0.693], + [51107,0.966], + [51109,0.855], + [51111,0.67], + [51113,0.836], + [51115,0.864], + [51117,0.696], + [51119,0.796], + [51121,0.905], + [51125,0.817], + [51127,0.913], + [51131,0.754], + [51133,0.82], + [51135,0.698], + [51137,0.877], + [51139,0.733], + [51141,0.724], + [51143,0.761], + [51145,0.925], + [51147,0.746], + [51149,0.886], + [51153,0.96], + [51155,0.788], + [51157,0.846], + [51159,0.747], + [51161,0.882], + [51163,0.75], + [51165,0.809], + [51167,0.692], + [51169,0.701], + [51171,0.814], + [51173,0.756], + [51175,0.809], + [51177,0.927], + [51179,0.955], + [51181,0.831], + [51183,0.739], + [51185,0.754], + [51187,0.882], + [51191,0.8], + [51193,0.81], + [51195,0.793], + [51197,0.757], + [51199,0.942], + [51510,0.946], + [51520,0.795], + [51530,0.698], + [51540,0.899], + [51550,0.92], + [51570,0.818], + [51580,0.715], + [51590,0.752], + [51595,0.722], + [51600,0.966], + [51610,0.968], + [51620,0.809], + [51630,0.906], + [51640,0.728], + [51650,0.893], + [51660,0.88], + [51670,0.732], + [51678,0.771], + [51680,0.83], + [51683,0.929], + [51685,0.955], + [51690,0.769], + [51700,0.889], + [51710,0.882], + [51720,0.816], + [51730,0.77], + [51735,0.908], + [51740,0.845], + [51750,0.846], + [51760,0.842], + [51770,0.826], + [51775,0.871], + [51790,0.833], + [51800,0.888], + [51810,0.936], + [51820,0.814], + [51830,0.908], + [51840,0.81], + [53001,0.77], + [53003,0.876], + [53005,0.892], + [53007,0.874], + [53009,0.87], + [53011,0.935], + [53013,0.836], + [53015,0.872], + [53017,0.907], + [53019,0.776], + [53021,0.847], + [53023,0.871], + [53025,0.854], + [53027,0.849], + [53029,0.931], + [53031,0.9], + [53033,0.94], + [53035,0.933], + [53037,0.916], + [53039,0.844], + [53041,0.859], + [53043,0.89], + [53045,0.871], + [53047,0.808], + [53049,0.836], + [53051,0.856], + [53053,0.91], + [53055,0.932], + [53057,0.896], + [53059,0.811], + [53061,0.932], + [53063,0.901], + [53065,0.832], + [53067,0.914], + [53069,0.865], + [53071,0.891], + [53073,0.911], + [53075,0.937], + [53077,0.831], + [54001,0.79], + [54003,0.877], + [54005,0.754], + [54007,0.691], + [54009,0.81], + [54011,0.827], + [54013,0.744], + [54015,0.698], + [54017,0.776], + [54019,0.781], + [54021,0.734], + [54023,0.683], + [54025,0.767], + [54027,0.604], + [54029,0.799], + [54031,0.776], + [54033,0.804], + [54035,0.743], + [54037,0.9], + [54039,0.836], + [54041,0.791], + [54043,0.752], + [54045,0.778], + [54047,0.687], + [54049,0.819], + [54051,0.787], + [54053,0.736], + [54055,0.766], + [54057,0.663], + [54059,0.747], + [54061,0.887], + [54063,0.712], + [54065,0.828], + [54067,0.792], + [54069,0.8], + [54071,0.68], + [54073,0.829], + [54075,0.73], + [54077,0.808], + [54079,0.847], + [54081,0.795], + [54083,0.736], + [54085,0.737], + [54087,0.724], + [54089,0.728], + [54091,0.767], + [54093,0.778], + [54095,0.75], + [54097,0.793], + [54099,0.734], + [54101,0.693], + [54103,0.729], + [54105,0.8], + [54107,0.836], + [54109,0.718], + [55001,0.803], + [55003,0.8], + [55005,0.841], + [55007,0.854], + [55009,0.883], + [55011,0.825], + [55013,0.816], + [55015,0.907], + [55017,0.863], + [55019,0.739], + [55021,0.86], + [55023,0.788], + [55025,0.934], + [55027,0.836], + [55029,0.872], + [55031,0.864], + [55033,0.883], + [55035,0.882], + [55037,0.84], + [55039,0.858], + [55041,0.78], + [55043,0.827], + [55045,0.835], + [55047,0.8], + [55049,0.85], + [55051,0.819], + [55053,0.81], + [55055,0.866], + [55057,0.818], + [55059,0.884], + [55061,0.832], + [55063,0.887], + [55065,0.798], + [55067,0.796], + [55069,0.83], + [55071,0.838], + [55073,0.858], + [55075,0.821], + [55077,0.806], + [55078,0.71], + [55079,0.837], + [55081,0.819], + [55083,0.838], + [55085,0.858], + [55087,0.892], + [55089,0.91], + [55091,0.833], + [55093,0.877], + [55095,0.844], + [55097,0.882], + [55099,0.799], + [55101,0.86], + [55103,0.786], + [55105,0.868], + [55107,0.789], + [55109,0.915], + [55111,0.844], + [55113,0.818], + [55115,0.803], + [55117,0.866], + [55119,0.767], + [55121,0.799], + [55123,0.762], + [55125,0.817], + [55127,0.895], + [55129,0.827], + [55131,0.889], + [55133,0.92], + [55135,0.831], + [55137,0.802], + [55139,0.871], + [55141,0.82], + [56001,0.945], + [56003,0.867], + [56005,0.934], + [56007,0.834], + [56009,0.91], + [56011,0.9], + [56013,0.861], + [56015,0.819], + [56017,0.851], + [56019,0.796], + [56021,0.915], + [56023,0.918], + [56025,0.889], + [56027,0.858], + [56029,0.905], + [56031,0.824], + [56033,0.859], + [56035,0.939], + [56037,0.921], + [56039,0.954], + [56041,0.912], + [56043,0.877], + [56045,0.829] + ] +} diff --git a/data/regional/united-states/technology/us-technology-computer-2019.json b/data/regional/united-states/technology/us-technology-computer-2019.json new file mode 100644 index 0000000..61206ed --- /dev/null +++ b/data/regional/united-states/technology/us-technology-computer-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Home Computer Access", + "description" : "Percent of households that have a computer.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "technology", + "tags" : ["regional","us","counties","technology","computers"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.technology.computer.2019"], + [1001,0.73], + [1003,0.763], + [1005,0.519], + [1007,0.547], + [1009,0.635], + [1011,0.525], + [1013,0.605], + [1015,0.678], + [1017,0.586], + [1019,0.573], + [1021,0.587], + [1023,0.591], + [1025,0.525], + [1027,0.606], + [1029,0.605], + [1031,0.697], + [1033,0.629], + [1035,0.434], + [1037,0.553], + [1039,0.572], + [1041,0.579], + [1043,0.623], + [1045,0.676], + [1047,0.548], + [1049,0.605], + [1051,0.715], + [1053,0.463], + [1055,0.634], + [1057,0.559], + [1059,0.53], + [1061,0.608], + [1063,0.42], + [1065,0.508], + [1067,0.599], + [1069,0.659], + [1071,0.606], + [1073,0.711], + [1075,0.574], + [1077,0.666], + [1079,0.531], + [1081,0.797], + [1083,0.745], + [1085,0.458], + [1087,0.548], + [1089,0.816], + [1091,0.523], + [1093,0.58], + [1095,0.663], + [1097,0.654], + [1099,0.412], + [1101,0.683], + [1103,0.7], + [1105,0.427], + [1107,0.519], + [1109,0.583], + [1111,0.617], + [1113,0.635], + [1115,0.737], + [1117,0.832], + [1119,0.51], + [1121,0.606], + [1123,0.672], + [1125,0.714], + [1127,0.604], + [1129,0.573], + [1131,0.471], + [1133,0.57], + [2013,0.634], + [2016,0.714], + [2020,0.851], + [2050,0.512], + [2060,0.818], + [2068,0.915], + [2070,0.577], + [2090,0.83], + [2100,0.793], + [2105,0.607], + [2110,0.853], + [2122,0.792], + [2130,0.81], + [2150,0.782], + [2158,0.368], + [2164,0.58], + [2170,0.843], + [2180,0.592], + [2185,0.624], + [2188,0.594], + [2195,0.833], + [2198,0.615], + [2220,0.791], + [2230,0.843], + [2240,0.759], + [2261,0.829], + [2275,0.676], + [2282,0.685], + [2290,0.432], + [4001,0.435], + [4003,0.773], + [4005,0.787], + [4007,0.659], + [4009,0.681], + [4011,0.648], + [4012,0.618], + [4013,0.823], + [4015,0.753], + [4017,0.593], + [4019,0.789], + [4021,0.804], + [4023,0.657], + [4025,0.814], + [4027,0.675], + [5001,0.544], + [5003,0.557], + [5005,0.729], + [5007,0.799], + [5009,0.716], + [5011,0.537], + [5013,0.588], + [5015,0.674], + [5017,0.504], + [5019,0.631], + [5021,0.572], + [5023,0.639], + [5025,0.582], + [5027,0.507], + [5029,0.588], + [5031,0.72], + [5033,0.641], + [5035,0.585], + [5037,0.58], + [5039,0.49], + [5041,0.473], + [5043,0.649], + [5045,0.774], + [5047,0.558], + [5049,0.671], + [5051,0.698], + [5053,0.656], + [5055,0.643], + [5057,0.578], + [5059,0.552], + [5061,0.581], + [5063,0.63], + [5065,0.68], + [5067,0.543], + [5069,0.566], + [5071,0.601], + [5073,0.519], + [5075,0.618], + [5077,0.464], + [5079,0.553], + [5081,0.551], + [5083,0.63], + [5085,0.739], + [5087,0.6], + [5089,0.695], + [5091,0.628], + [5093,0.588], + [5095,0.479], + [5097,0.578], + [5099,0.473], + [5101,0.608], + [5103,0.559], + [5105,0.631], + [5107,0.512], + [5109,0.59], + [5111,0.567], + [5113,0.644], + [5115,0.695], + [5117,0.495], + [5119,0.72], + [5121,0.601], + [5123,0.463], + [5125,0.744], + [5127,0.51], + [5129,0.612], + [5131,0.667], + [5133,0.596], + [5135,0.594], + [5137,0.623], + [5139,0.608], + [5141,0.614], + [5143,0.779], + [5145,0.648], + [5147,0.493], + [5149,0.607], + [6001,0.867], + [6003,0.857], + [6005,0.808], + [6007,0.818], + [6009,0.794], + [6011,0.66], + [6013,0.86], + [6015,0.748], + [6017,0.858], + [6019,0.705], + [6021,0.678], + [6023,0.787], + [6025,0.671], + [6027,0.839], + [6029,0.7], + [6031,0.709], + [6033,0.732], + [6035,0.706], + [6037,0.803], + [6039,0.708], + [6041,0.902], + [6043,0.757], + [6045,0.748], + [6047,0.69], + [6049,0.644], + [6051,0.856], + [6053,0.749], + [6055,0.855], + [6057,0.857], + [6059,0.876], + [6061,0.902], + [6063,0.745], + [6065,0.81], + [6067,0.836], + [6069,0.828], + [6071,0.776], + [6073,0.864], + [6075,0.861], + [6077,0.743], + [6079,0.862], + [6081,0.891], + [6083,0.826], + [6085,0.899], + [6087,0.852], + [6089,0.768], + [6091,0.657], + [6093,0.748], + [6095,0.84], + [6097,0.861], + [6099,0.74], + [6101,0.744], + [6103,0.71], + [6105,0.727], + [6107,0.652], + [6109,0.794], + [6111,0.839], + [6113,0.846], + [6115,0.739], + [8001,0.8], + [8003,0.685], + [8005,0.87], + [8007,0.854], + [8009,0.671], + [8011,0.606], + [8013,0.908], + [8014,0.93], + [8015,0.827], + [8017,0.685], + [8019,0.838], + [8021,0.613], + [8023,0.574], + [8025,0.706], + [8027,0.831], + [8029,0.739], + [8031,0.824], + [8033,0.715], + [8035,0.95], + [8037,0.803], + [8039,0.888], + [8041,0.861], + [8043,0.788], + [8045,0.743], + [8047,0.882], + [8049,0.835], + [8051,0.838], + [8053,0.785], + [8055,0.652], + [8057,0.753], + [8059,0.881], + [8061,0.749], + [8063,0.731], + [8065,0.708], + [8067,0.816], + [8069,0.896], + [8071,0.652], + [8073,0.759], + [8075,0.771], + [8077,0.803], + [8079,0.828], + [8081,0.743], + [8083,0.729], + [8085,0.776], + [8087,0.7], + [8089,0.624], + [8091,0.916], + [8093,0.861], + [8095,0.761], + [8097,0.873], + [8099,0.658], + [8101,0.709], + [8103,0.776], + [8105,0.651], + [8107,0.884], + [8109,0.701], + [8111,0.827], + [8113,0.864], + [8115,0.653], + [8117,0.886], + [8119,0.89], + [8121,0.75], + [8123,0.821], + [8125,0.661], + [9001,0.845], + [9003,0.785], + [9005,0.833], + [9007,0.838], + [9009,0.774], + [9011,0.806], + [9013,0.858], + [9015,0.77], + [10001,0.771], + [10003,0.774], + [10005,0.771], + [11001,0.805], + [12001,0.823], + [12003,0.713], + [12005,0.778], + [12007,0.577], + [12009,0.842], + [12011,0.82], + [12013,0.632], + [12015,0.803], + [12017,0.793], + [12019,0.845], + [12021,0.814], + [12023,0.723], + [12027,0.543], + [12029,0.583], + [12031,0.772], + [12033,0.796], + [12035,0.791], + [12037,0.673], + [12039,0.583], + [12041,0.677], + [12043,0.513], + [12045,0.721], + [12047,0.522], + [12049,0.56], + [12051,0.504], + [12053,0.816], + [12055,0.702], + [12057,0.814], + [12059,0.63], + [12061,0.791], + [12063,0.583], + [12065,0.663], + [12067,0.636], + [12069,0.802], + [12071,0.82], + [12073,0.848], + [12075,0.67], + [12077,0.614], + [12079,0.572], + [12081,0.813], + [12083,0.759], + [12085,0.814], + [12086,0.755], + [12087,0.824], + [12089,0.837], + [12091,0.823], + [12093,0.638], + [12095,0.836], + [12097,0.797], + [12099,0.805], + [12101,0.815], + [12103,0.801], + [12105,0.732], + [12107,0.64], + [12109,0.872], + [12111,0.803], + [12113,0.852], + [12115,0.822], + [12117,0.872], + [12119,0.851], + [12121,0.693], + [12123,0.651], + [12125,0.537], + [12127,0.778], + [12129,0.774], + [12131,0.78], + [12133,0.663], + [13001,0.516], + [13003,0.555], + [13005,0.578], + [13007,0.397], + [13009,0.692], + [13011,0.67], + [13013,0.791], + [13015,0.731], + [13017,0.546], + [13019,0.588], + [13021,0.68], + [13023,0.62], + [13025,0.616], + [13027,0.633], + [13029,0.796], + [13031,0.735], + [13033,0.637], + [13035,0.696], + [13037,0.5], + [13039,0.769], + [13043,0.549], + [13045,0.738], + [13047,0.734], + [13049,0.617], + [13051,0.777], + [13053,0.719], + [13055,0.57], + [13057,0.881], + [13059,0.809], + [13061,0.44], + [13063,0.752], + [13065,0.542], + [13067,0.884], + [13069,0.571], + [13071,0.586], + [13073,0.823], + [13075,0.606], + [13077,0.812], + [13079,0.661], + [13081,0.535], + [13083,0.653], + [13085,0.843], + [13087,0.496], + [13089,0.797], + [13091,0.6], + [13093,0.557], + [13095,0.637], + [13097,0.821], + [13099,0.41], + [13101,0.479], + [13103,0.795], + [13105,0.552], + [13107,0.6], + [13109,0.563], + [13111,0.764], + [13113,0.9], + [13115,0.668], + [13117,0.92], + [13119,0.632], + [13121,0.832], + [13123,0.689], + [13125,0.6], + [13127,0.723], + [13129,0.689], + [13131,0.61], + [13133,0.669], + [13135,0.87], + [13137,0.666], + [13139,0.781], + [13141,0.509], + [13143,0.652], + [13145,0.824], + [13147,0.648], + [13149,0.643], + [13151,0.87], + [13153,0.789], + [13155,0.556], + [13157,0.759], + [13159,0.691], + [13161,0.6], + [13163,0.453], + [13165,0.494], + [13167,0.529], + [13169,0.729], + [13171,0.638], + [13173,0.642], + [13175,0.608], + [13177,0.84], + [13179,0.787], + [13181,0.583], + [13183,0.775], + [13185,0.711], + [13187,0.766], + [13189,0.588], + [13191,0.648], + [13193,0.55], + [13195,0.673], + [13197,0.597], + [13199,0.565], + [13201,0.45], + [13205,0.56], + [13207,0.706], + [13209,0.613], + [13211,0.687], + [13213,0.639], + [13215,0.702], + [13217,0.808], + [13219,0.88], + [13221,0.617], + [13223,0.85], + [13225,0.635], + [13227,0.777], + [13229,0.616], + [13231,0.739], + [13233,0.628], + [13235,0.676], + [13237,0.727], + [13239,0.461], + [13241,0.702], + [13243,0.537], + [13245,0.668], + [13247,0.8], + [13249,0.703], + [13251,0.636], + [13253,0.566], + [13255,0.698], + [13257,0.682], + [13259,0.473], + [13261,0.604], + [13263,0.54], + [13265,0.476], + [13267,0.66], + [13269,0.551], + [13271,0.415], + [13273,0.566], + [13275,0.683], + [13277,0.604], + [13279,0.578], + [13281,0.729], + [13283,0.516], + [13285,0.653], + [13287,0.54], + [13289,0.556], + [13291,0.762], + [13293,0.669], + [13295,0.691], + [13297,0.773], + [13299,0.581], + [13301,0.46], + [13303,0.568], + [13305,0.65], + [13307,0.555], + [13309,0.366], + [13311,0.686], + [13313,0.671], + [13315,0.492], + [13317,0.519], + [13319,0.572], + [13321,0.586], + [15001,0.753], + [15003,0.819], + [15005,0.769], + [15007,0.781], + [15009,0.798], + [16001,0.868], + [16003,0.783], + [16005,0.809], + [16007,0.755], + [16009,0.681], + [16011,0.784], + [16013,0.824], + [16015,0.83], + [16017,0.762], + [16019,0.824], + [16021,0.739], + [16023,0.819], + [16025,0.789], + [16027,0.789], + [16029,0.829], + [16031,0.758], + [16033,0.521], + [16035,0.731], + [16037,0.752], + [16039,0.786], + [16041,0.84], + [16043,0.777], + [16045,0.771], + [16047,0.695], + [16049,0.727], + [16051,0.837], + [16053,0.669], + [16055,0.8], + [16057,0.877], + [16059,0.733], + [16061,0.678], + [16063,0.691], + [16065,0.916], + [16067,0.739], + [16069,0.767], + [16071,0.814], + [16073,0.679], + [16075,0.757], + [16077,0.716], + [16079,0.708], + [16081,0.845], + [16083,0.772], + [16085,0.904], + [16087,0.658], + [17001,0.703], + [17003,0.381], + [17005,0.712], + [17007,0.813], + [17009,0.682], + [17011,0.74], + [17013,0.657], + [17015,0.743], + [17017,0.655], + [17019,0.836], + [17021,0.72], + [17023,0.724], + [17025,0.695], + [17027,0.718], + [17029,0.736], + [17031,0.771], + [17033,0.681], + [17035,0.687], + [17037,0.82], + [17039,0.736], + [17041,0.674], + [17043,0.864], + [17045,0.713], + [17047,0.684], + [17049,0.734], + [17051,0.595], + [17053,0.724], + [17055,0.644], + [17057,0.7], + [17059,0.541], + [17061,0.627], + [17063,0.817], + [17065,0.653], + [17067,0.724], + [17069,0.657], + [17071,0.703], + [17073,0.716], + [17075,0.733], + [17077,0.741], + [17079,0.669], + [17081,0.677], + [17083,0.689], + [17085,0.757], + [17087,0.567], + [17089,0.819], + [17091,0.731], + [17093,0.88], + [17095,0.651], + [17097,0.851], + [17099,0.727], + [17101,0.69], + [17103,0.745], + [17105,0.734], + [17107,0.71], + [17109,0.751], + [17111,0.87], + [17113,0.814], + [17115,0.706], + [17117,0.702], + [17119,0.768], + [17121,0.678], + [17123,0.686], + [17125,0.71], + [17127,0.499], + [17129,0.77], + [17131,0.716], + [17133,0.833], + [17135,0.706], + [17137,0.687], + [17139,0.706], + [17141,0.761], + [17143,0.715], + [17145,0.648], + [17147,0.784], + [17149,0.652], + [17151,0.467], + [17153,0.337], + [17155,0.722], + [17157,0.683], + [17159,0.698], + [17161,0.727], + [17163,0.716], + [17165,0.608], + [17167,0.763], + [17169,0.725], + [17171,0.686], + [17173,0.687], + [17175,0.684], + [17177,0.736], + [17179,0.743], + [17181,0.508], + [17183,0.657], + [17185,0.7], + [17187,0.708], + [17189,0.708], + [17191,0.641], + [17193,0.675], + [17195,0.732], + [17197,0.846], + [17199,0.634], + [17201,0.742], + [17203,0.811], + [18001,0.665], + [18003,0.773], + [18005,0.775], + [18007,0.746], + [18009,0.691], + [18011,0.858], + [18013,0.769], + [18015,0.732], + [18017,0.672], + [18019,0.756], + [18021,0.681], + [18023,0.667], + [18025,0.603], + [18027,0.582], + [18029,0.77], + [18031,0.73], + [18033,0.747], + [18035,0.748], + [18037,0.748], + [18039,0.713], + [18041,0.69], + [18043,0.765], + [18045,0.699], + [18047,0.703], + [18049,0.729], + [18051,0.703], + [18053,0.68], + [18055,0.657], + [18057,0.919], + [18059,0.828], + [18061,0.705], + [18063,0.877], + [18065,0.705], + [18067,0.729], + [18069,0.726], + [18071,0.709], + [18073,0.759], + [18075,0.646], + [18077,0.703], + [18079,0.683], + [18081,0.819], + [18083,0.689], + [18085,0.752], + [18087,0.508], + [18089,0.718], + [18091,0.741], + [18093,0.687], + [18095,0.704], + [18097,0.722], + [18099,0.693], + [18101,0.651], + [18103,0.694], + [18105,0.836], + [18107,0.723], + [18109,0.75], + [18111,0.743], + [18113,0.708], + [18115,0.699], + [18117,0.637], + [18119,0.613], + [18121,0.602], + [18123,0.676], + [18125,0.6], + [18127,0.81], + [18129,0.736], + [18131,0.669], + [18133,0.715], + [18135,0.697], + [18137,0.725], + [18139,0.678], + [18141,0.747], + [18143,0.612], + [18145,0.716], + [18147,0.68], + [18149,0.707], + [18151,0.76], + [18153,0.587], + [18155,0.65], + [18157,0.796], + [18159,0.72], + [18161,0.663], + [18163,0.725], + [18165,0.703], + [18167,0.725], + [18169,0.712], + [18171,0.736], + [18173,0.79], + [18175,0.657], + [18177,0.702], + [18179,0.746], + [18181,0.724], + [18183,0.784], + [19001,0.685], + [19003,0.723], + [19005,0.686], + [19007,0.652], + [19009,0.715], + [19011,0.784], + [19013,0.764], + [19015,0.788], + [19017,0.792], + [19019,0.747], + [19021,0.723], + [19023,0.709], + [19025,0.757], + [19027,0.764], + [19029,0.688], + [19031,0.761], + [19033,0.716], + [19035,0.72], + [19037,0.683], + [19039,0.678], + [19041,0.726], + [19043,0.682], + [19045,0.717], + [19047,0.668], + [19049,0.859], + [19051,0.644], + [19053,0.678], + [19055,0.743], + [19057,0.706], + [19059,0.765], + [19061,0.76], + [19063,0.726], + [19065,0.72], + [19067,0.664], + [19069,0.7], + [19071,0.76], + [19073,0.733], + [19075,0.783], + [19077,0.718], + [19079,0.745], + [19081,0.72], + [19083,0.722], + [19085,0.736], + [19087,0.721], + [19089,0.655], + [19091,0.747], + [19093,0.719], + [19095,0.775], + [19097,0.736], + [19099,0.734], + [19101,0.773], + [19103,0.874], + [19105,0.75], + [19107,0.706], + [19109,0.729], + [19111,0.678], + [19113,0.808], + [19115,0.702], + [19117,0.683], + [19119,0.802], + [19121,0.748], + [19123,0.703], + [19125,0.726], + [19127,0.704], + [19129,0.792], + [19131,0.753], + [19133,0.659], + [19135,0.724], + [19137,0.745], + [19139,0.723], + [19141,0.737], + [19143,0.75], + [19145,0.73], + [19147,0.722], + [19149,0.766], + [19151,0.735], + [19153,0.801], + [19155,0.759], + [19157,0.749], + [19159,0.71], + [19161,0.762], + [19163,0.758], + [19165,0.755], + [19167,0.807], + [19169,0.885], + [19171,0.706], + [19173,0.705], + [19175,0.71], + [19177,0.624], + [19179,0.682], + [19181,0.814], + [19183,0.774], + [19185,0.592], + [19187,0.691], + [19189,0.697], + [19191,0.785], + [19193,0.717], + [19195,0.704], + [19197,0.698], + [20001,0.689], + [20003,0.679], + [20005,0.693], + [20007,0.689], + [20009,0.707], + [20011,0.658], + [20013,0.69], + [20015,0.787], + [20017,0.644], + [20019,0.585], + [20021,0.685], + [20023,0.716], + [20025,0.703], + [20027,0.647], + [20029,0.745], + [20031,0.76], + [20033,0.617], + [20035,0.717], + [20037,0.747], + [20039,0.731], + [20041,0.728], + [20043,0.653], + [20045,0.869], + [20047,0.673], + [20049,0.658], + [20051,0.774], + [20053,0.714], + [20055,0.661], + [20057,0.613], + [20059,0.697], + [20061,0.816], + [20063,0.762], + [20065,0.696], + [20067,0.686], + [20069,0.758], + [20071,0.676], + [20073,0.573], + [20075,0.591], + [20077,0.648], + [20079,0.764], + [20081,0.647], + [20083,0.746], + [20085,0.705], + [20087,0.755], + [20089,0.67], + [20091,0.893], + [20093,0.746], + [20095,0.689], + [20097,0.73], + [20099,0.699], + [20101,0.819], + [20103,0.808], + [20105,0.679], + [20107,0.627], + [20109,0.691], + [20111,0.77], + [20113,0.774], + [20115,0.701], + [20117,0.706], + [20119,0.711], + [20121,0.779], + [20123,0.72], + [20125,0.666], + [20127,0.761], + [20129,0.65], + [20131,0.746], + [20133,0.632], + [20135,0.723], + [20137,0.711], + [20139,0.702], + [20141,0.725], + [20143,0.726], + [20145,0.677], + [20147,0.749], + [20149,0.802], + [20151,0.728], + [20153,0.785], + [20155,0.744], + [20157,0.669], + [20159,0.681], + [20161,0.881], + [20163,0.754], + [20165,0.744], + [20167,0.677], + [20169,0.727], + [20171,0.774], + [20173,0.756], + [20175,0.578], + [20177,0.746], + [20179,0.792], + [20181,0.8], + [20183,0.723], + [20185,0.66], + [20187,0.674], + [20189,0.677], + [20191,0.733], + [20193,0.769], + [20195,0.766], + [20197,0.707], + [20199,0.753], + [20201,0.667], + [20203,0.668], + [20205,0.611], + [20207,0.614], + [20209,0.671], + [21001,0.65], + [21003,0.611], + [21005,0.694], + [21007,0.699], + [21009,0.675], + [21011,0.635], + [21013,0.539], + [21015,0.85], + [21017,0.638], + [21019,0.688], + [21021,0.7], + [21023,0.619], + [21025,0.567], + [21027,0.645], + [21029,0.76], + [21031,0.588], + [21033,0.619], + [21035,0.765], + [21037,0.777], + [21039,0.72], + [21041,0.545], + [21043,0.581], + [21045,0.583], + [21047,0.688], + [21049,0.722], + [21051,0.57], + [21053,0.478], + [21055,0.585], + [21057,0.583], + [21059,0.71], + [21061,0.65], + [21063,0.614], + [21065,0.549], + [21067,0.807], + [21069,0.621], + [21071,0.665], + [21073,0.726], + [21075,0.578], + [21077,0.595], + [21079,0.71], + [21081,0.617], + [21083,0.676], + [21085,0.63], + [21087,0.587], + [21089,0.716], + [21091,0.654], + [21093,0.743], + [21095,0.585], + [21097,0.564], + [21099,0.585], + [21101,0.666], + [21103,0.675], + [21105,0.58], + [21107,0.651], + [21109,0.597], + [21111,0.742], + [21113,0.748], + [21115,0.682], + [21117,0.79], + [21119,0.625], + [21121,0.561], + [21123,0.684], + [21125,0.671], + [21127,0.626], + [21129,0.495], + [21131,0.574], + [21133,0.648], + [21135,0.615], + [21137,0.609], + [21139,0.687], + [21141,0.645], + [21143,0.624], + [21145,0.742], + [21147,0.544], + [21149,0.646], + [21151,0.756], + [21153,0.618], + [21155,0.555], + [21157,0.745], + [21159,0.581], + [21161,0.646], + [21163,0.767], + [21165,0.635], + [21167,0.65], + [21169,0.638], + [21171,0.556], + [21173,0.621], + [21175,0.624], + [21177,0.659], + [21179,0.725], + [21181,0.492], + [21183,0.577], + [21185,0.877], + [21187,0.594], + [21189,0.585], + [21191,0.648], + [21193,0.63], + [21195,0.664], + [21197,0.623], + [21199,0.659], + [21201,0.544], + [21203,0.566], + [21205,0.711], + [21207,0.648], + [21209,0.753], + [21211,0.74], + [21213,0.695], + [21215,0.776], + [21217,0.66], + [21219,0.513], + [21221,0.675], + [21223,0.622], + [21225,0.625], + [21227,0.764], + [21229,0.613], + [21231,0.583], + [21233,0.583], + [21235,0.592], + [21237,0.473], + [21239,0.8], + [22001,0.62], + [22003,0.585], + [22005,0.777], + [22007,0.614], + [22009,0.572], + [22011,0.674], + [22013,0.508], + [22015,0.733], + [22017,0.636], + [22019,0.69], + [22021,0.539], + [22023,0.734], + [22025,0.529], + [22027,0.418], + [22029,0.528], + [22031,0.613], + [22033,0.741], + [22035,0.363], + [22037,0.58], + [22039,0.515], + [22041,0.493], + [22043,0.578], + [22045,0.61], + [22047,0.65], + [22049,0.542], + [22051,0.713], + [22053,0.579], + [22055,0.766], + [22057,0.672], + [22059,0.581], + [22061,0.693], + [22063,0.735], + [22065,0.491], + [22067,0.517], + [22069,0.579], + [22071,0.665], + [22073,0.64], + [22075,0.697], + [22077,0.56], + [22079,0.681], + [22081,0.62], + [22083,0.474], + [22085,0.556], + [22087,0.672], + [22089,0.767], + [22091,0.619], + [22093,0.648], + [22095,0.71], + [22097,0.546], + [22099,0.627], + [22101,0.588], + [22103,0.815], + [22105,0.662], + [22107,0.45], + [22109,0.67], + [22111,0.549], + [22113,0.656], + [22115,0.712], + [22117,0.512], + [22119,0.469], + [22121,0.749], + [22123,0.492], + [22125,0.649], + [22127,0.546], + [23001,0.783], + [23003,0.705], + [23005,0.849], + [23007,0.764], + [23009,0.797], + [23011,0.786], + [23013,0.832], + [23015,0.827], + [23017,0.773], + [23019,0.779], + [23021,0.716], + [23023,0.774], + [23025,0.74], + [23027,0.776], + [23029,0.72], + [23031,0.822], + [24001,0.683], + [24003,0.877], + [24005,0.828], + [24009,0.876], + [24011,0.731], + [24013,0.838], + [24015,0.806], + [24017,0.85], + [24019,0.697], + [24021,0.852], + [24023,0.714], + [24025,0.865], + [24027,0.917], + [24029,0.697], + [24031,0.905], + [24033,0.819], + [24035,0.837], + [24037,0.835], + [24039,0.693], + [24041,0.822], + [24043,0.727], + [24045,0.758], + [24047,0.779], + [24510,0.68], + [25001,0.854], + [25003,0.786], + [25005,0.757], + [25007,0.835], + [25009,0.801], + [25011,0.79], + [25013,0.713], + [25015,0.865], + [25017,0.871], + [25019,0.904], + [25021,0.873], + [25023,0.834], + [25025,0.788], + [25027,0.807], + [26001,0.67], + [26003,0.73], + [26005,0.744], + [26007,0.715], + [26009,0.772], + [26011,0.637], + [26013,0.715], + [26015,0.751], + [26017,0.728], + [26019,0.804], + [26021,0.731], + [26023,0.703], + [26025,0.696], + [26027,0.732], + [26029,0.758], + [26031,0.736], + [26033,0.75], + [26035,0.65], + [26037,0.812], + [26039,0.735], + [26041,0.691], + [26043,0.725], + [26045,0.79], + [26047,0.761], + [26049,0.709], + [26051,0.65], + [26053,0.672], + [26055,0.824], + [26057,0.698], + [26059,0.682], + [26061,0.755], + [26063,0.688], + [26065,0.802], + [26067,0.709], + [26069,0.714], + [26071,0.669], + [26073,0.781], + [26075,0.735], + [26077,0.806], + [26079,0.715], + [26081,0.805], + [26083,0.753], + [26085,0.602], + [26087,0.778], + [26089,0.84], + [26091,0.746], + [26093,0.854], + [26095,0.702], + [26097,0.732], + [26099,0.785], + [26101,0.744], + [26103,0.798], + [26105,0.725], + [26107,0.735], + [26109,0.693], + [26111,0.785], + [26113,0.674], + [26115,0.769], + [26117,0.66], + [26119,0.676], + [26121,0.711], + [26123,0.698], + [26125,0.849], + [26127,0.705], + [26129,0.674], + [26131,0.702], + [26133,0.654], + [26135,0.62], + [26137,0.779], + [26139,0.828], + [26141,0.689], + [26143,0.719], + [26145,0.694], + [26147,0.744], + [26149,0.681], + [26151,0.68], + [26153,0.693], + [26155,0.728], + [26157,0.712], + [26159,0.726], + [26161,0.872], + [26163,0.692], + [26165,0.714], + [27001,0.697], + [27003,0.847], + [27005,0.746], + [27007,0.758], + [27009,0.763], + [27011,0.714], + [27013,0.842], + [27015,0.76], + [27017,0.728], + [27019,0.896], + [27021,0.722], + [27023,0.685], + [27025,0.832], + [27027,0.811], + [27029,0.713], + [27031,0.803], + [27033,0.709], + [27035,0.778], + [27037,0.869], + [27039,0.838], + [27041,0.796], + [27043,0.715], + [27045,0.746], + [27047,0.711], + [27049,0.772], + [27051,0.739], + [27053,0.857], + [27055,0.786], + [27057,0.756], + [27059,0.786], + [27061,0.729], + [27063,0.774], + [27065,0.707], + [27067,0.749], + [27069,0.719], + [27071,0.721], + [27073,0.747], + [27075,0.753], + [27077,0.697], + [27079,0.765], + [27081,0.713], + [27083,0.8], + [27085,0.791], + [27087,0.554], + [27089,0.727], + [27091,0.696], + [27093,0.755], + [27095,0.692], + [27097,0.709], + [27099,0.719], + [27101,0.722], + [27103,0.799], + [27105,0.694], + [27107,0.701], + [27109,0.853], + [27111,0.727], + [27113,0.764], + [27115,0.712], + [27117,0.711], + [27119,0.728], + [27121,0.753], + [27123,0.813], + [27125,0.693], + [27127,0.726], + [27129,0.715], + [27131,0.774], + [27133,0.759], + [27135,0.732], + [27137,0.746], + [27139,0.891], + [27141,0.851], + [27143,0.723], + [27145,0.788], + [27147,0.768], + [27149,0.784], + [27151,0.696], + [27153,0.675], + [27155,0.718], + [27157,0.764], + [27159,0.679], + [27161,0.737], + [27163,0.876], + [27165,0.698], + [27167,0.761], + [27169,0.81], + [27171,0.831], + [27173,0.76], + [28001,0.609], + [28003,0.608], + [28005,0.514], + [28007,0.552], + [28009,0.452], + [28011,0.558], + [28013,0.528], + [28015,0.595], + [28017,0.483], + [28019,0.521], + [28021,0.576], + [28023,0.536], + [28025,0.554], + [28027,0.527], + [28029,0.527], + [28031,0.478], + [28033,0.775], + [28035,0.666], + [28037,0.558], + [28039,0.555], + [28041,0.532], + [28043,0.564], + [28045,0.707], + [28047,0.7], + [28049,0.638], + [28051,0.469], + [28053,0.499], + [28055,0.395], + [28057,0.582], + [28059,0.719], + [28061,0.461], + [28063,0.491], + [28065,0.477], + [28067,0.561], + [28069,0.442], + [28071,0.799], + [28073,0.758], + [28075,0.631], + [28077,0.54], + [28079,0.48], + [28081,0.629], + [28083,0.545], + [28085,0.578], + [28087,0.65], + [28089,0.779], + [28091,0.527], + [28093,0.539], + [28095,0.519], + [28097,0.541], + [28099,0.492], + [28101,0.569], + [28103,0.487], + [28105,0.751], + [28107,0.525], + [28109,0.705], + [28111,0.568], + [28113,0.529], + [28115,0.551], + [28117,0.55], + [28119,0.468], + [28121,0.772], + [28123,0.522], + [28125,0.515], + [28127,0.575], + [28129,0.484], + [28131,0.6], + [28133,0.55], + [28135,0.488], + [28137,0.626], + [28139,0.556], + [28141,0.553], + [28143,0.536], + [28145,0.559], + [28147,0.504], + [28149,0.637], + [28151,0.545], + [28153,0.582], + [28155,0.556], + [28157,0.498], + [28159,0.502], + [28161,0.498], + [28163,0.52], + [29001,0.756], + [29003,0.722], + [29005,0.687], + [29007,0.678], + [29009,0.651], + [29011,0.66], + [29013,0.675], + [29015,0.668], + [29017,0.563], + [29019,0.842], + [29021,0.676], + [29023,0.632], + [29025,0.666], + [29027,0.716], + [29029,0.757], + [29031,0.757], + [29033,0.675], + [29035,0.613], + [29037,0.801], + [29039,0.711], + [29041,0.678], + [29043,0.783], + [29045,0.577], + [29047,0.818], + [29049,0.724], + [29051,0.755], + [29053,0.712], + [29055,0.638], + [29057,0.57], + [29059,0.641], + [29061,0.648], + [29063,0.622], + [29065,0.64], + [29067,0.634], + [29069,0.592], + [29071,0.751], + [29073,0.717], + [29075,0.65], + [29077,0.765], + [29079,0.644], + [29081,0.655], + [29083,0.688], + [29085,0.589], + [29087,0.664], + [29089,0.708], + [29091,0.681], + [29093,0.612], + [29095,0.747], + [29097,0.691], + [29099,0.789], + [29101,0.817], + [29103,0.617], + [29105,0.655], + [29107,0.709], + [29109,0.644], + [29111,0.659], + [29113,0.775], + [29115,0.627], + [29117,0.623], + [29119,0.591], + [29121,0.645], + [29123,0.616], + [29125,0.624], + [29127,0.694], + [29129,0.614], + [29131,0.694], + [29133,0.519], + [29135,0.713], + [29137,0.636], + [29139,0.647], + [29141,0.656], + [29143,0.572], + [29145,0.685], + [29147,0.79], + [29149,0.642], + [29151,0.693], + [29153,0.591], + [29155,0.554], + [29157,0.684], + [29159,0.732], + [29161,0.77], + [29163,0.633], + [29165,0.854], + [29167,0.713], + [29169,0.795], + [29171,0.657], + [29173,0.696], + [29175,0.681], + [29177,0.724], + [29179,0.695], + [29181,0.64], + [29183,0.881], + [29185,0.633], + [29186,0.662], + [29187,0.691], + [29189,0.805], + [29195,0.668], + [29197,0.637], + [29199,0.71], + [29201,0.64], + [29203,0.568], + [29205,0.639], + [29207,0.643], + [29209,0.778], + [29211,0.641], + [29213,0.762], + [29215,0.633], + [29217,0.729], + [29219,0.769], + [29221,0.609], + [29223,0.618], + [29225,0.637], + [29227,0.646], + [29229,0.605], + [29510,0.669], + [30001,0.775], + [30003,0.633], + [30005,0.639], + [30007,0.706], + [30009,0.74], + [30011,0.764], + [30013,0.727], + [30015,0.7], + [30017,0.757], + [30019,0.687], + [30021,0.718], + [30023,0.638], + [30025,0.774], + [30027,0.721], + [30029,0.811], + [30031,0.888], + [30033,0.747], + [30035,0.604], + [30037,0.707], + [30039,0.778], + [30041,0.719], + [30043,0.823], + [30045,0.723], + [30047,0.763], + [30049,0.806], + [30051,0.723], + [30053,0.763], + [30055,0.755], + [30057,0.784], + [30059,0.718], + [30061,0.677], + [30063,0.833], + [30065,0.691], + [30067,0.779], + [30069,0.755], + [30071,0.699], + [30073,0.763], + [30075,0.78], + [30077,0.735], + [30079,0.815], + [30081,0.799], + [30083,0.75], + [30085,0.555], + [30087,0.688], + [30089,0.695], + [30091,0.817], + [30093,0.716], + [30095,0.789], + [30097,0.738], + [30099,0.752], + [30101,0.68], + [30103,0.758], + [30105,0.759], + [30107,0.688], + [30109,0.725], + [30111,0.799], + [31001,0.736], + [31003,0.689], + [31005,0.726], + [31007,0.802], + [31009,0.822], + [31011,0.71], + [31013,0.744], + [31015,0.677], + [31017,0.765], + [31019,0.782], + [31021,0.694], + [31023,0.717], + [31025,0.825], + [31027,0.738], + [31029,0.74], + [31031,0.734], + [31033,0.732], + [31035,0.75], + [31037,0.638], + [31039,0.654], + [31041,0.702], + [31043,0.708], + [31045,0.813], + [31047,0.653], + [31049,0.698], + [31051,0.691], + [31053,0.736], + [31055,0.799], + [31057,0.678], + [31059,0.729], + [31061,0.68], + [31063,0.675], + [31065,0.652], + [31067,0.744], + [31069,0.762], + [31071,0.689], + [31073,0.751], + [31075,0.788], + [31077,0.726], + [31079,0.699], + [31081,0.774], + [31083,0.731], + [31085,0.715], + [31087,0.647], + [31089,0.755], + [31091,0.642], + [31093,0.719], + [31095,0.708], + [31097,0.669], + [31099,0.705], + [31101,0.733], + [31103,0.76], + [31105,0.72], + [31107,0.699], + [31109,0.841], + [31111,0.705], + [31113,0.689], + [31115,0.721], + [31117,0.712], + [31119,0.74], + [31121,0.674], + [31123,0.698], + [31125,0.677], + [31127,0.765], + [31129,0.682], + [31131,0.724], + [31133,0.679], + [31135,0.715], + [31137,0.756], + [31139,0.761], + [31141,0.729], + [31143,0.751], + [31145,0.736], + [31147,0.724], + [31149,0.716], + [31151,0.738], + [31153,0.878], + [31155,0.768], + [31157,0.708], + [31159,0.794], + [31161,0.669], + [31163,0.673], + [31165,0.711], + [31167,0.783], + [31169,0.684], + [31171,0.819], + [31173,0.613], + [31175,0.689], + [31177,0.815], + [31179,0.843], + [31181,0.713], + [31183,0.72], + [31185,0.772], + [32001,0.798], + [32003,0.79], + [32005,0.855], + [32007,0.799], + [32009,0.752], + [32011,0.773], + [32013,0.752], + [32015,0.754], + [32017,0.759], + [32019,0.787], + [32021,0.662], + [32023,0.716], + [32027,0.686], + [32029,0.779], + [32031,0.825], + [32033,0.685], + [32510,0.772], + [33001,0.834], + [33003,0.821], + [33005,0.811], + [33007,0.754], + [33009,0.835], + [33011,0.855], + [33013,0.842], + [33015,0.88], + [33017,0.848], + [33019,0.801], + [34001,0.78], + [34003,0.858], + [34005,0.857], + [34007,0.779], + [34009,0.812], + [34011,0.709], + [34013,0.731], + [34015,0.842], + [34017,0.792], + [34019,0.891], + [34021,0.801], + [34023,0.84], + [34025,0.849], + [34027,0.89], + [34029,0.808], + [34031,0.749], + [34033,0.74], + [34035,0.9], + [34037,0.875], + [34039,0.792], + [34041,0.818], + [35001,0.763], + [35003,0.692], + [35005,0.646], + [35006,0.573], + [35007,0.628], + [35009,0.69], + [35011,0.64], + [35013,0.693], + [35015,0.702], + [35017,0.67], + [35019,0.353], + [35021,0.536], + [35023,0.594], + [35025,0.639], + [35027,0.744], + [35028,0.893], + [35029,0.467], + [35031,0.424], + [35033,0.441], + [35035,0.733], + [35037,0.594], + [35039,0.525], + [35041,0.725], + [35043,0.807], + [35045,0.665], + [35047,0.571], + [35049,0.786], + [35051,0.581], + [35053,0.617], + [35055,0.695], + [35057,0.65], + [35059,0.535], + [35061,0.681], + [36001,0.799], + [36003,0.727], + [36005,0.644], + [36007,0.773], + [36009,0.677], + [36011,0.745], + [36013,0.734], + [36015,0.76], + [36017,0.734], + [36019,0.776], + [36021,0.785], + [36023,0.777], + [36025,0.744], + [36027,0.833], + [36029,0.748], + [36031,0.78], + [36033,0.684], + [36035,0.649], + [36037,0.756], + [36039,0.733], + [36041,0.661], + [36043,0.752], + [36045,0.775], + [36047,0.761], + [36049,0.751], + [36051,0.8], + [36053,0.781], + [36055,0.777], + [36057,0.69], + [36059,0.866], + [36061,0.83], + [36063,0.747], + [36065,0.743], + [36067,0.786], + [36069,0.82], + [36071,0.794], + [36073,0.744], + [36075,0.775], + [36077,0.757], + [36079,0.877], + [36081,0.782], + [36083,0.787], + [36085,0.802], + [36087,0.807], + [36089,0.733], + [36091,0.858], + [36093,0.766], + [36095,0.726], + [36097,0.781], + [36099,0.749], + [36101,0.744], + [36103,0.864], + [36105,0.746], + [36107,0.802], + [36109,0.864], + [36111,0.814], + [36113,0.791], + [36115,0.741], + [36117,0.763], + [36119,0.822], + [36121,0.743], + [36123,0.731], + [37001,0.724], + [37003,0.687], + [37005,0.665], + [37007,0.572], + [37009,0.661], + [37011,0.663], + [37013,0.669], + [37015,0.578], + [37017,0.619], + [37019,0.808], + [37021,0.765], + [37023,0.636], + [37025,0.84], + [37027,0.678], + [37029,0.817], + [37031,0.81], + [37033,0.596], + [37035,0.707], + [37037,0.783], + [37039,0.716], + [37041,0.632], + [37043,0.658], + [37045,0.639], + [37047,0.598], + [37049,0.757], + [37051,0.768], + [37053,0.814], + [37055,0.851], + [37057,0.726], + [37059,0.769], + [37061,0.568], + [37063,0.814], + [37065,0.569], + [37067,0.757], + [37069,0.728], + [37071,0.714], + [37073,0.71], + [37075,0.535], + [37077,0.726], + [37079,0.605], + [37081,0.765], + [37083,0.586], + [37085,0.779], + [37087,0.678], + [37089,0.761], + [37091,0.597], + [37093,0.746], + [37095,0.538], + [37097,0.797], + [37099,0.721], + [37101,0.791], + [37103,0.593], + [37105,0.731], + [37107,0.624], + [37109,0.765], + [37111,0.653], + [37113,0.709], + [37115,0.673], + [37117,0.663], + [37119,0.831], + [37121,0.635], + [37123,0.603], + [37125,0.778], + [37127,0.686], + [37129,0.834], + [37131,0.545], + [37133,0.827], + [37135,0.876], + [37137,0.736], + [37139,0.697], + [37141,0.764], + [37143,0.697], + [37145,0.727], + [37147,0.721], + [37149,0.747], + [37151,0.695], + [37153,0.614], + [37155,0.527], + [37157,0.651], + [37159,0.725], + [37161,0.658], + [37163,0.589], + [37165,0.561], + [37167,0.71], + [37169,0.697], + [37171,0.67], + [37173,0.566], + [37175,0.731], + [37177,0.604], + [37179,0.839], + [37181,0.608], + [37183,0.883], + [37185,0.569], + [37187,0.506], + [37189,0.834], + [37191,0.693], + [37193,0.687], + [37195,0.647], + [37197,0.675], + [37199,0.669], + [38001,0.747], + [38003,0.766], + [38005,0.577], + [38007,0.76], + [38009,0.779], + [38011,0.801], + [38013,0.749], + [38015,0.811], + [38017,0.821], + [38019,0.692], + [38021,0.741], + [38023,0.708], + [38025,0.745], + [38027,0.702], + [38029,0.64], + [38031,0.753], + [38033,0.692], + [38035,0.809], + [38037,0.703], + [38039,0.699], + [38041,0.69], + [38043,0.709], + [38045,0.712], + [38047,0.718], + [38049,0.717], + [38051,0.697], + [38053,0.839], + [38055,0.744], + [38057,0.798], + [38059,0.815], + [38061,0.741], + [38063,0.744], + [38065,0.794], + [38067,0.692], + [38069,0.73], + [38071,0.703], + [38073,0.744], + [38075,0.82], + [38077,0.781], + [38079,0.571], + [38081,0.712], + [38083,0.703], + [38085,0.528], + [38087,0.779], + [38089,0.748], + [38091,0.767], + [38093,0.747], + [38095,0.643], + [38097,0.748], + [38099,0.64], + [38101,0.802], + [38103,0.735], + [38105,0.784], + [39001,0.618], + [39003,0.727], + [39005,0.715], + [39007,0.67], + [39009,0.753], + [39011,0.801], + [39013,0.684], + [39015,0.703], + [39017,0.799], + [39019,0.664], + [39021,0.753], + [39023,0.729], + [39025,0.804], + [39027,0.702], + [39029,0.704], + [39031,0.647], + [39033,0.694], + [39035,0.722], + [39037,0.745], + [39039,0.747], + [39041,0.908], + [39043,0.772], + [39045,0.805], + [39047,0.67], + [39049,0.796], + [39051,0.775], + [39053,0.621], + [39055,0.794], + [39057,0.829], + [39059,0.655], + [39061,0.757], + [39063,0.802], + [39065,0.721], + [39067,0.648], + [39069,0.756], + [39071,0.651], + [39073,0.716], + [39075,0.511], + [39077,0.735], + [39079,0.652], + [39081,0.67], + [39083,0.735], + [39085,0.811], + [39087,0.659], + [39089,0.813], + [39091,0.743], + [39093,0.791], + [39095,0.719], + [39097,0.76], + [39099,0.706], + [39101,0.702], + [39103,0.852], + [39105,0.621], + [39107,0.78], + [39109,0.764], + [39111,0.597], + [39113,0.742], + [39115,0.632], + [39117,0.732], + [39119,0.701], + [39121,0.633], + [39123,0.789], + [39125,0.723], + [39127,0.656], + [39129,0.74], + [39131,0.642], + [39133,0.801], + [39135,0.753], + [39137,0.777], + [39139,0.705], + [39141,0.718], + [39143,0.733], + [39145,0.663], + [39147,0.735], + [39149,0.749], + [39151,0.743], + [39153,0.765], + [39155,0.708], + [39157,0.679], + [39159,0.831], + [39161,0.735], + [39163,0.57], + [39165,0.869], + [39167,0.696], + [39169,0.739], + [39171,0.745], + [39173,0.83], + [39175,0.737], + [40001,0.49], + [40003,0.718], + [40005,0.563], + [40007,0.659], + [40009,0.712], + [40011,0.593], + [40013,0.659], + [40015,0.577], + [40017,0.818], + [40019,0.641], + [40021,0.627], + [40023,0.525], + [40025,0.582], + [40027,0.827], + [40029,0.54], + [40031,0.727], + [40033,0.647], + [40035,0.615], + [40037,0.668], + [40039,0.714], + [40041,0.656], + [40043,0.663], + [40045,0.679], + [40047,0.705], + [40049,0.62], + [40051,0.718], + [40053,0.673], + [40055,0.655], + [40057,0.619], + [40059,0.703], + [40061,0.577], + [40063,0.559], + [40065,0.702], + [40067,0.563], + [40069,0.53], + [40071,0.668], + [40073,0.662], + [40075,0.575], + [40077,0.593], + [40079,0.565], + [40081,0.626], + [40083,0.747], + [40085,0.61], + [40087,0.764], + [40089,0.555], + [40091,0.578], + [40093,0.684], + [40095,0.592], + [40097,0.649], + [40099,0.645], + [40101,0.632], + [40103,0.686], + [40105,0.6], + [40107,0.524], + [40109,0.732], + [40111,0.601], + [40113,0.668], + [40115,0.61], + [40117,0.598], + [40119,0.775], + [40121,0.623], + [40123,0.655], + [40125,0.659], + [40127,0.55], + [40129,0.591], + [40131,0.769], + [40133,0.559], + [40135,0.58], + [40137,0.647], + [40139,0.591], + [40141,0.606], + [40143,0.751], + [40145,0.77], + [40147,0.73], + [40149,0.676], + [40151,0.718], + [40153,0.671], + [41001,0.774], + [41003,0.902], + [41005,0.865], + [41007,0.808], + [41009,0.782], + [41011,0.741], + [41013,0.795], + [41015,0.775], + [41017,0.878], + [41019,0.765], + [41021,0.723], + [41023,0.755], + [41025,0.786], + [41027,0.801], + [41029,0.804], + [41031,0.749], + [41033,0.774], + [41035,0.747], + [41037,0.692], + [41039,0.831], + [41041,0.775], + [41043,0.781], + [41045,0.628], + [41047,0.795], + [41049,0.699], + [41051,0.849], + [41053,0.823], + [41055,0.759], + [41057,0.762], + [41059,0.725], + [41061,0.762], + [41063,0.771], + [41065,0.744], + [41067,0.893], + [41069,0.744], + [41071,0.825], + [42001,0.769], + [42003,0.779], + [42005,0.715], + [42007,0.734], + [42009,0.67], + [42011,0.752], + [42013,0.718], + [42015,0.729], + [42017,0.856], + [42019,0.8], + [42021,0.693], + [42023,0.7], + [42025,0.729], + [42027,0.852], + [42029,0.866], + [42031,0.732], + [42033,0.696], + [42035,0.735], + [42037,0.726], + [42039,0.713], + [42041,0.824], + [42043,0.749], + [42045,0.809], + [42047,0.751], + [42049,0.742], + [42051,0.674], + [42053,0.672], + [42055,0.767], + [42057,0.675], + [42059,0.689], + [42061,0.709], + [42063,0.691], + [42065,0.684], + [42067,0.681], + [42069,0.732], + [42071,0.769], + [42073,0.706], + [42075,0.743], + [42077,0.776], + [42079,0.701], + [42081,0.734], + [42083,0.714], + [42085,0.708], + [42087,0.645], + [42089,0.817], + [42091,0.863], + [42093,0.699], + [42095,0.788], + [42097,0.673], + [42099,0.742], + [42101,0.696], + [42103,0.841], + [42105,0.718], + [42107,0.717], + [42109,0.714], + [42111,0.676], + [42113,0.698], + [42115,0.78], + [42117,0.735], + [42119,0.736], + [42121,0.703], + [42123,0.737], + [42125,0.749], + [42127,0.754], + [42129,0.762], + [42131,0.751], + [42133,0.767], + [44001,0.834], + [44003,0.817], + [44005,0.823], + [44007,0.738], + [44009,0.858], + [45001,0.609], + [45003,0.719], + [45005,0.46], + [45007,0.703], + [45009,0.582], + [45011,0.553], + [45013,0.822], + [45015,0.779], + [45017,0.631], + [45019,0.782], + [45021,0.628], + [45023,0.602], + [45025,0.619], + [45027,0.633], + [45029,0.618], + [45031,0.598], + [45033,0.477], + [45035,0.808], + [45037,0.615], + [45039,0.663], + [45041,0.678], + [45043,0.732], + [45045,0.767], + [45047,0.648], + [45049,0.535], + [45051,0.763], + [45053,0.657], + [45055,0.742], + [45057,0.739], + [45059,0.622], + [45061,0.554], + [45063,0.768], + [45065,0.613], + [45067,0.449], + [45069,0.49], + [45071,0.606], + [45073,0.697], + [45075,0.622], + [45077,0.736], + [45079,0.78], + [45081,0.603], + [45083,0.715], + [45085,0.701], + [45087,0.554], + [45089,0.503], + [45091,0.806], + [46003,0.673], + [46005,0.659], + [46007,0.646], + [46009,0.713], + [46011,0.817], + [46013,0.753], + [46015,0.701], + [46017,0.433], + [46019,0.747], + [46021,0.727], + [46023,0.657], + [46025,0.734], + [46027,0.862], + [46029,0.765], + [46031,0.616], + [46033,0.78], + [46035,0.78], + [46037,0.677], + [46039,0.717], + [46041,0.566], + [46043,0.729], + [46045,0.777], + [46047,0.761], + [46049,0.709], + [46051,0.731], + [46053,0.631], + [46055,0.652], + [46057,0.732], + [46059,0.775], + [46061,0.806], + [46063,0.867], + [46065,0.762], + [46067,0.714], + [46069,0.755], + [46071,0.486], + [46073,0.714], + [46075,0.787], + [46077,0.732], + [46079,0.807], + [46081,0.81], + [46083,0.881], + [46085,0.676], + [46087,0.75], + [46089,0.675], + [46091,0.75], + [46093,0.787], + [46095,0.539], + [46097,0.717], + [46099,0.797], + [46101,0.725], + [46102,0.43], + [46103,0.795], + [46105,0.757], + [46107,0.77], + [46109,0.647], + [46111,0.688], + [46115,0.744], + [46117,0.751], + [46119,0.757], + [46121,0.464], + [46123,0.766], + [46125,0.712], + [46127,0.796], + [46129,0.643], + [46135,0.755], + [46137,0.549], + [47001,0.728], + [47003,0.652], + [47005,0.635], + [47007,0.624], + [47009,0.748], + [47011,0.715], + [47013,0.573], + [47015,0.691], + [47017,0.606], + [47019,0.626], + [47021,0.727], + [47023,0.653], + [47025,0.569], + [47027,0.558], + [47029,0.515], + [47031,0.695], + [47033,0.58], + [47035,0.732], + [47037,0.789], + [47039,0.648], + [47041,0.619], + [47043,0.693], + [47045,0.645], + [47047,0.694], + [47049,0.581], + [47051,0.682], + [47053,0.648], + [47055,0.619], + [47057,0.633], + [47059,0.625], + [47061,0.611], + [47063,0.655], + [47065,0.736], + [47067,0.474], + [47069,0.539], + [47071,0.629], + [47073,0.626], + [47075,0.527], + [47077,0.596], + [47079,0.663], + [47081,0.579], + [47083,0.604], + [47085,0.662], + [47087,0.597], + [47089,0.665], + [47091,0.607], + [47093,0.784], + [47095,0.5], + [47097,0.563], + [47099,0.638], + [47101,0.555], + [47103,0.621], + [47105,0.744], + [47107,0.623], + [47109,0.579], + [47111,0.624], + [47113,0.694], + [47115,0.651], + [47117,0.672], + [47119,0.766], + [47121,0.563], + [47123,0.631], + [47125,0.819], + [47127,0.626], + [47129,0.608], + [47131,0.623], + [47133,0.625], + [47135,0.555], + [47137,0.635], + [47139,0.582], + [47141,0.747], + [47143,0.627], + [47145,0.676], + [47147,0.735], + [47149,0.824], + [47151,0.545], + [47153,0.685], + [47155,0.719], + [47157,0.675], + [47159,0.683], + [47161,0.61], + [47163,0.72], + [47165,0.781], + [47167,0.69], + [47169,0.582], + [47171,0.649], + [47173,0.589], + [47175,0.62], + [47177,0.627], + [47179,0.742], + [47181,0.546], + [47183,0.648], + [47185,0.635], + [47187,0.924], + [47189,0.829], + [48001,0.63], + [48003,0.716], + [48005,0.711], + [48007,0.775], + [48009,0.705], + [48011,0.784], + [48013,0.634], + [48015,0.698], + [48017,0.673], + [48019,0.785], + [48021,0.741], + [48023,0.713], + [48025,0.613], + [48027,0.811], + [48029,0.744], + [48031,0.798], + [48033,0.811], + [48035,0.689], + [48037,0.654], + [48039,0.805], + [48041,0.819], + [48043,0.687], + [48045,0.651], + [48047,0.378], + [48049,0.676], + [48051,0.641], + [48053,0.774], + [48055,0.591], + [48057,0.691], + [48059,0.661], + [48061,0.545], + [48063,0.581], + [48065,0.769], + [48067,0.554], + [48069,0.532], + [48071,0.766], + [48073,0.62], + [48075,0.644], + [48077,0.716], + [48079,0.491], + [48081,0.622], + [48083,0.633], + [48085,0.911], + [48087,0.631], + [48089,0.628], + [48091,0.843], + [48093,0.695], + [48095,0.7], + [48097,0.674], + [48099,0.779], + [48101,0.604], + [48103,0.619], + [48105,0.707], + [48107,0.628], + [48109,0.36], + [48111,0.671], + [48113,0.741], + [48115,0.537], + [48117,0.614], + [48119,0.675], + [48121,0.894], + [48123,0.605], + [48125,0.716], + [48127,0.5], + [48129,0.631], + [48131,0.47], + [48133,0.62], + [48135,0.655], + [48137,0.502], + [48139,0.799], + [48141,0.693], + [48143,0.758], + [48145,0.548], + [48147,0.692], + [48149,0.666], + [48151,0.608], + [48153,0.577], + [48155,0.602], + [48157,0.902], + [48159,0.748], + [48161,0.644], + [48163,0.507], + [48165,0.639], + [48167,0.783], + [48169,0.634], + [48171,0.743], + [48173,0.71], + [48175,0.652], + [48177,0.544], + [48179,0.632], + [48181,0.703], + [48183,0.671], + [48185,0.667], + [48187,0.797], + [48189,0.602], + [48191,0.566], + [48193,0.715], + [48195,0.618], + [48197,0.609], + [48199,0.743], + [48201,0.762], + [48203,0.658], + [48205,0.843], + [48207,0.535], + [48209,0.844], + [48211,0.642], + [48213,0.668], + [48215,0.573], + [48217,0.649], + [48219,0.641], + [48221,0.801], + [48223,0.669], + [48225,0.599], + [48227,0.661], + [48229,0.548], + [48231,0.703], + [48233,0.724], + [48235,0.698], + [48237,0.622], + [48239,0.626], + [48241,0.477], + [48243,0.843], + [48245,0.648], + [48247,0.417], + [48249,0.569], + [48251,0.773], + [48253,0.666], + [48255,0.612], + [48257,0.774], + [48259,0.886], + [48261,0.315], + [48263,0.718], + [48265,0.771], + [48267,0.64], + [48269,0.753], + [48271,0.495], + [48273,0.687], + [48275,0.647], + [48277,0.611], + [48279,0.57], + [48281,0.773], + [48283,0.521], + [48285,0.636], + [48287,0.66], + [48289,0.645], + [48291,0.639], + [48293,0.599], + [48295,0.708], + [48297,0.554], + [48299,0.77], + [48301,0.933], + [48303,0.747], + [48305,0.598], + [48307,0.662], + [48309,0.711], + [48311,0.596], + [48313,0.637], + [48315,0.489], + [48317,0.69], + [48319,0.669], + [48321,0.62], + [48323,0.529], + [48325,0.673], + [48327,0.46], + [48329,0.757], + [48331,0.592], + [48333,0.687], + [48335,0.589], + [48337,0.668], + [48339,0.838], + [48341,0.619], + [48343,0.593], + [48345,0.753], + [48347,0.707], + [48349,0.635], + [48351,0.476], + [48353,0.611], + [48355,0.665], + [48357,0.739], + [48359,0.727], + [48361,0.699], + [48363,0.693], + [48365,0.62], + [48367,0.813], + [48369,0.594], + [48371,0.603], + [48373,0.654], + [48375,0.623], + [48377,0.504], + [48379,0.665], + [48381,0.822], + [48383,0.666], + [48385,0.678], + [48387,0.58], + [48389,0.593], + [48391,0.563], + [48393,0.85], + [48395,0.629], + [48397,0.914], + [48399,0.626], + [48401,0.641], + [48403,0.705], + [48405,0.572], + [48407,0.662], + [48409,0.675], + [48411,0.619], + [48413,0.684], + [48415,0.638], + [48417,0.655], + [48419,0.565], + [48421,0.624], + [48423,0.648], + [48425,0.797], + [48427,0.473], + [48429,0.647], + [48431,0.806], + [48433,0.688], + [48435,0.555], + [48437,0.614], + [48439,0.806], + [48441,0.724], + [48443,0.684], + [48445,0.584], + [48447,0.633], + [48449,0.579], + [48451,0.717], + [48453,0.859], + [48455,0.574], + [48457,0.6], + [48459,0.693], + [48461,0.542], + [48463,0.618], + [48465,0.609], + [48467,0.69], + [48469,0.653], + [48471,0.758], + [48473,0.685], + [48475,0.659], + [48477,0.662], + [48479,0.601], + [48481,0.584], + [48483,0.685], + [48485,0.696], + [48487,0.627], + [48489,0.528], + [48491,0.893], + [48493,0.749], + [48495,0.643], + [48497,0.733], + [48499,0.732], + [48501,0.587], + [48503,0.651], + [48505,0.449], + [48507,0.415], + [49001,0.741], + [49003,0.867], + [49005,0.896], + [49007,0.779], + [49009,0.804], + [49011,0.898], + [49013,0.767], + [49015,0.761], + [49017,0.86], + [49019,0.838], + [49021,0.848], + [49023,0.771], + [49025,0.814], + [49027,0.818], + [49029,0.925], + [49031,0.754], + [49033,0.844], + [49035,0.865], + [49037,0.539], + [49039,0.826], + [49041,0.817], + [49043,0.91], + [49045,0.845], + [49047,0.786], + [49049,0.92], + [49051,0.904], + [49053,0.853], + [49055,0.812], + [49057,0.825], + [50001,0.827], + [50003,0.804], + [50005,0.748], + [50007,0.862], + [50009,0.711], + [50011,0.788], + [50013,0.87], + [50015,0.794], + [50017,0.78], + [50019,0.723], + [50021,0.785], + [50023,0.808], + [50025,0.833], + [50027,0.809], + [51001,0.601], + [51003,0.846], + [51005,0.633], + [51007,0.655], + [51009,0.675], + [51011,0.674], + [51013,0.914], + [51015,0.73], + [51017,0.691], + [51019,0.754], + [51021,0.638], + [51023,0.778], + [51025,0.595], + [51027,0.548], + [51029,0.639], + [51031,0.686], + [51033,0.728], + [51035,0.618], + [51036,0.617], + [51037,0.523], + [51041,0.86], + [51043,0.769], + [51045,0.662], + [51047,0.79], + [51049,0.588], + [51051,0.539], + [51053,0.691], + [51057,0.605], + [51059,0.923], + [51061,0.834], + [51063,0.7], + [51065,0.846], + [51067,0.739], + [51069,0.805], + [51071,0.619], + [51073,0.8], + [51075,0.808], + [51077,0.559], + [51079,0.852], + [51081,0.641], + [51083,0.563], + [51085,0.848], + [51087,0.812], + [51089,0.632], + [51091,0.761], + [51093,0.762], + [51095,0.871], + [51097,0.631], + [51099,0.849], + [51101,0.751], + [51103,0.712], + [51105,0.49], + [51107,0.935], + [51109,0.735], + [51111,0.576], + [51113,0.728], + [51115,0.782], + [51117,0.599], + [51119,0.684], + [51121,0.83], + [51125,0.759], + [51127,0.85], + [51131,0.633], + [51133,0.771], + [51135,0.584], + [51137,0.755], + [51139,0.628], + [51141,0.637], + [51143,0.652], + [51145,0.868], + [51147,0.679], + [51149,0.821], + [51153,0.9], + [51155,0.678], + [51157,0.787], + [51159,0.633], + [51161,0.808], + [51163,0.662], + [51165,0.72], + [51167,0.533], + [51169,0.599], + [51171,0.706], + [51173,0.636], + [51175,0.728], + [51177,0.862], + [51179,0.904], + [51181,0.66], + [51183,0.587], + [51185,0.627], + [51187,0.794], + [51191,0.704], + [51193,0.7], + [51195,0.638], + [51197,0.633], + [51199,0.892], + [51510,0.881], + [51520,0.695], + [51530,0.643], + [51540,0.828], + [51550,0.839], + [51570,0.723], + [51580,0.669], + [51590,0.587], + [51595,0.538], + [51600,0.935], + [51610,0.954], + [51620,0.635], + [51630,0.817], + [51640,0.644], + [51650,0.8], + [51660,0.771], + [51670,0.634], + [51678,0.757], + [51680,0.743], + [51683,0.822], + [51685,0.874], + [51690,0.606], + [51700,0.762], + [51710,0.741], + [51720,0.688], + [51730,0.611], + [51735,0.852], + [51740,0.683], + [51750,0.753], + [51760,0.716], + [51770,0.66], + [51775,0.743], + [51790,0.706], + [51800,0.792], + [51810,0.86], + [51820,0.716], + [51830,0.87], + [51840,0.745], + [53001,0.599], + [53003,0.776], + [53005,0.821], + [53007,0.783], + [53009,0.798], + [53011,0.867], + [53013,0.763], + [53015,0.766], + [53017,0.783], + [53019,0.648], + [53021,0.745], + [53023,0.762], + [53025,0.725], + [53027,0.751], + [53029,0.881], + [53031,0.833], + [53033,0.888], + [53035,0.882], + [53037,0.859], + [53039,0.77], + [53041,0.763], + [53043,0.797], + [53045,0.795], + [53047,0.712], + [53049,0.752], + [53051,0.753], + [53053,0.84], + [53055,0.889], + [53057,0.825], + [53059,0.791], + [53061,0.877], + [53063,0.819], + [53065,0.737], + [53067,0.858], + [53069,0.822], + [53071,0.817], + [53073,0.856], + [53075,0.883], + [53077,0.68], + [54001,0.656], + [54003,0.771], + [54005,0.647], + [54007,0.628], + [54009,0.715], + [54011,0.669], + [54013,0.653], + [54015,0.604], + [54017,0.644], + [54019,0.628], + [54021,0.662], + [54023,0.613], + [54025,0.651], + [54027,0.669], + [54029,0.681], + [54031,0.738], + [54033,0.717], + [54035,0.645], + [54037,0.806], + [54039,0.679], + [54041,0.647], + [54043,0.649], + [54045,0.666], + [54047,0.589], + [54049,0.701], + [54051,0.669], + [54053,0.621], + [54055,0.633], + [54057,0.681], + [54059,0.543], + [54061,0.825], + [54063,0.602], + [54065,0.698], + [54067,0.673], + [54069,0.714], + [54071,0.585], + [54073,0.729], + [54075,0.671], + [54077,0.693], + [54079,0.75], + [54081,0.666], + [54083,0.623], + [54085,0.652], + [54087,0.639], + [54089,0.556], + [54091,0.657], + [54093,0.703], + [54095,0.672], + [54097,0.63], + [54099,0.652], + [54101,0.59], + [54103,0.651], + [54105,0.652], + [54107,0.719], + [54109,0.618], + [55001,0.687], + [55003,0.705], + [55005,0.745], + [55007,0.78], + [55009,0.786], + [55011,0.729], + [55013,0.722], + [55015,0.828], + [55017,0.766], + [55019,0.65], + [55021,0.771], + [55023,0.72], + [55025,0.874], + [55027,0.767], + [55029,0.805], + [55031,0.75], + [55033,0.791], + [55035,0.808], + [55037,0.717], + [55039,0.774], + [55041,0.669], + [55043,0.751], + [55045,0.759], + [55047,0.711], + [55049,0.746], + [55051,0.734], + [55053,0.687], + [55055,0.788], + [55057,0.705], + [55059,0.784], + [55061,0.755], + [55063,0.815], + [55065,0.682], + [55067,0.701], + [55069,0.738], + [55071,0.752], + [55073,0.784], + [55075,0.717], + [55077,0.716], + [55078,0.507], + [55079,0.71], + [55081,0.735], + [55083,0.746], + [55085,0.787], + [55087,0.816], + [55089,0.863], + [55091,0.725], + [55093,0.794], + [55095,0.742], + [55097,0.807], + [55099,0.703], + [55101,0.759], + [55103,0.701], + [55105,0.758], + [55107,0.68], + [55109,0.826], + [55111,0.761], + [55113,0.708], + [55115,0.711], + [55117,0.782], + [55119,0.699], + [55121,0.711], + [55123,0.7], + [55125,0.734], + [55127,0.81], + [55129,0.75], + [55131,0.834], + [55133,0.873], + [55135,0.739], + [55137,0.7], + [55139,0.795], + [55141,0.753], + [56001,0.884], + [56003,0.764], + [56005,0.805], + [56007,0.727], + [56009,0.807], + [56011,0.773], + [56013,0.74], + [56015,0.724], + [56017,0.754], + [56019,0.716], + [56021,0.823], + [56023,0.833], + [56025,0.78], + [56027,0.776], + [56029,0.846], + [56031,0.701], + [56033,0.801], + [56035,0.837], + [56037,0.819], + [56039,0.901], + [56041,0.803], + [56043,0.772], + [56045,0.742] + ] +} diff --git a/data/regional/united-states/technology/us-technology-smartphone-2019.json b/data/regional/united-states/technology/us-technology-smartphone-2019.json new file mode 100644 index 0000000..270bef9 --- /dev/null +++ b/data/regional/united-states/technology/us-technology-smartphone-2019.json @@ -0,0 +1,3164 @@ +{ + "metadata" : { + "name" : "Smartphone Access", + "description" : "Percent of households that have a smartphone.", + "units" : "%", + "year" : "2019", + "notes" : [], + "type" : "regional", + "scope" : "United States", + "categorty" : "technology", + "tags" : ["regional","us","counties","technology","phones","smartphones"], + "authors" : [ + "United States Census Bureau" + ], + "sources" : [ + "https://www.openintro.org/data/?data=county_complete" + ] + }, + "data" : [ + ["us.county.fips","us.technology.smartphone.2019"], + [1001,0.784], + [1003,0.817], + [1005,0.642], + [1007,0.666], + [1009,0.701], + [1011,0.706], + [1013,0.571], + [1015,0.749], + [1017,0.687], + [1019,0.714], + [1021,0.691], + [1023,0.637], + [1025,0.568], + [1027,0.701], + [1029,0.692], + [1031,0.764], + [1033,0.717], + [1035,0.514], + [1037,0.678], + [1039,0.676], + [1041,0.639], + [1043,0.715], + [1045,0.761], + [1047,0.644], + [1049,0.717], + [1051,0.794], + [1053,0.597], + [1055,0.731], + [1057,0.68], + [1059,0.634], + [1061,0.673], + [1063,0.51], + [1065,0.642], + [1067,0.744], + [1069,0.696], + [1071,0.69], + [1073,0.793], + [1075,0.629], + [1077,0.734], + [1079,0.677], + [1081,0.837], + [1083,0.781], + [1085,0.584], + [1087,0.667], + [1089,0.833], + [1091,0.611], + [1093,0.659], + [1095,0.746], + [1097,0.743], + [1099,0.41], + [1101,0.778], + [1103,0.749], + [1105,0.501], + [1107,0.672], + [1109,0.593], + [1111,0.704], + [1113,0.777], + [1115,0.745], + [1117,0.865], + [1119,0.626], + [1121,0.718], + [1123,0.703], + [1125,0.796], + [1127,0.73], + [1129,0.664], + [1131,0.503], + [1133,0.682], + [2013,0.821], + [2016,0.837], + [2020,0.882], + [2050,0.833], + [2060,0.809], + [2068,0.798], + [2070,0.827], + [2090,0.863], + [2100,0.756], + [2105,0.718], + [2110,0.87], + [2122,0.795], + [2130,0.814], + [2150,0.815], + [2158,0.778], + [2164,0.796], + [2170,0.852], + [2180,0.857], + [2185,0.808], + [2188,0.804], + [2195,0.78], + [2198,0.741], + [2220,0.847], + [2230,0.837], + [2240,0.77], + [2261,0.833], + [2275,0.691], + [2282,0.772], + [2290,0.555], + [4001,0.453], + [4003,0.74], + [4005,0.81], + [4007,0.683], + [4009,0.777], + [4011,0.833], + [4012,0.675], + [4013,0.843], + [4015,0.712], + [4017,0.659], + [4019,0.813], + [4021,0.8], + [4023,0.731], + [4025,0.742], + [4027,0.751], + [5001,0.733], + [5003,0.664], + [5005,0.691], + [5007,0.851], + [5009,0.744], + [5011,0.737], + [5013,0.617], + [5015,0.693], + [5017,0.621], + [5019,0.742], + [5021,0.674], + [5023,0.732], + [5025,0.735], + [5027,0.623], + [5029,0.697], + [5031,0.824], + [5033,0.739], + [5035,0.746], + [5037,0.702], + [5039,0.66], + [5041,0.69], + [5043,0.766], + [5045,0.833], + [5047,0.668], + [5049,0.673], + [5051,0.78], + [5053,0.79], + [5055,0.779], + [5057,0.723], + [5059,0.689], + [5061,0.706], + [5063,0.746], + [5065,0.684], + [5067,0.687], + [5069,0.744], + [5071,0.691], + [5073,0.63], + [5075,0.684], + [5077,0.616], + [5079,0.675], + [5081,0.757], + [5083,0.742], + [5085,0.804], + [5087,0.674], + [5089,0.699], + [5091,0.73], + [5093,0.716], + [5095,0.626], + [5097,0.643], + [5099,0.624], + [5101,0.54], + [5103,0.628], + [5105,0.682], + [5107,0.673], + [5109,0.668], + [5111,0.741], + [5113,0.694], + [5115,0.772], + [5117,0.733], + [5119,0.793], + [5121,0.673], + [5123,0.695], + [5125,0.829], + [5127,0.61], + [5129,0.624], + [5131,0.768], + [5133,0.75], + [5135,0.639], + [5137,0.575], + [5139,0.541], + [5141,0.7], + [5143,0.838], + [5145,0.783], + [5147,0.538], + [5149,0.681], + [6001,0.87], + [6003,0.743], + [6005,0.737], + [6007,0.792], + [6009,0.713], + [6011,0.787], + [6013,0.872], + [6015,0.723], + [6017,0.829], + [6019,0.812], + [6021,0.751], + [6023,0.766], + [6025,0.788], + [6027,0.74], + [6029,0.793], + [6031,0.829], + [6033,0.731], + [6035,0.684], + [6037,0.843], + [6039,0.812], + [6041,0.847], + [6043,0.657], + [6045,0.714], + [6047,0.834], + [6049,0.605], + [6051,0.808], + [6053,0.816], + [6055,0.822], + [6057,0.797], + [6059,0.876], + [6061,0.861], + [6063,0.732], + [6065,0.835], + [6067,0.853], + [6069,0.868], + [6071,0.847], + [6073,0.868], + [6075,0.862], + [6077,0.828], + [6079,0.832], + [6081,0.877], + [6083,0.826], + [6085,0.888], + [6087,0.817], + [6089,0.752], + [6091,0.62], + [6093,0.696], + [6095,0.861], + [6097,0.821], + [6099,0.832], + [6101,0.801], + [6103,0.723], + [6105,0.565], + [6107,0.802], + [6109,0.728], + [6111,0.833], + [6113,0.854], + [6115,0.797], + [8001,0.854], + [8003,0.738], + [8005,0.867], + [8007,0.771], + [8009,0.702], + [8011,0.733], + [8013,0.867], + [8014,0.889], + [8015,0.717], + [8017,0.722], + [8019,0.815], + [8021,0.625], + [8023,0.636], + [8025,0.709], + [8027,0.691], + [8029,0.649], + [8031,0.851], + [8033,0.607], + [8035,0.918], + [8037,0.911], + [8039,0.861], + [8041,0.858], + [8043,0.725], + [8045,0.84], + [8047,0.813], + [8049,0.793], + [8051,0.831], + [8053,0.767], + [8055,0.629], + [8057,0.615], + [8059,0.849], + [8061,0.771], + [8063,0.749], + [8065,0.812], + [8067,0.81], + [8069,0.861], + [8071,0.688], + [8073,0.683], + [8075,0.743], + [8077,0.788], + [8079,0.741], + [8081,0.745], + [8083,0.685], + [8085,0.693], + [8087,0.779], + [8089,0.678], + [8091,0.814], + [8093,0.794], + [8095,0.79], + [8097,0.916], + [8099,0.726], + [8101,0.755], + [8103,0.765], + [8105,0.65], + [8107,0.862], + [8109,0.67], + [8111,0.651], + [8113,0.858], + [8115,0.707], + [8117,0.902], + [8119,0.821], + [8121,0.781], + [8123,0.847], + [8125,0.742], + [9001,0.824], + [9003,0.789], + [9005,0.777], + [9007,0.794], + [9009,0.78], + [9011,0.778], + [9013,0.805], + [9015,0.758], + [10001,0.785], + [10003,0.833], + [10005,0.761], + [11001,0.846], + [12001,0.833], + [12003,0.755], + [12005,0.811], + [12007,0.502], + [12009,0.792], + [12011,0.847], + [12013,0.682], + [12015,0.743], + [12017,0.703], + [12019,0.837], + [12021,0.809], + [12023,0.783], + [12027,0.547], + [12029,0.656], + [12031,0.821], + [12033,0.801], + [12035,0.746], + [12037,0.743], + [12039,0.624], + [12041,0.719], + [12043,0.643], + [12045,0.781], + [12047,0.674], + [12049,0.603], + [12051,0.69], + [12053,0.756], + [12055,0.654], + [12057,0.854], + [12059,0.679], + [12061,0.711], + [12063,0.673], + [12065,0.716], + [12067,0.709], + [12069,0.785], + [12071,0.81], + [12073,0.874], + [12075,0.689], + [12077,0.7], + [12079,0.58], + [12081,0.791], + [12083,0.711], + [12085,0.793], + [12086,0.822], + [12087,0.831], + [12089,0.838], + [12091,0.82], + [12093,0.699], + [12095,0.874], + [12097,0.829], + [12099,0.822], + [12101,0.771], + [12103,0.773], + [12105,0.742], + [12107,0.671], + [12109,0.846], + [12111,0.793], + [12113,0.848], + [12115,0.757], + [12117,0.876], + [12119,0.74], + [12121,0.702], + [12123,0.634], + [12125,0.491], + [12127,0.788], + [12129,0.84], + [12131,0.808], + [12133,0.718], + [13001,0.713], + [13003,0.66], + [13005,0.689], + [13007,0.533], + [13009,0.698], + [13011,0.688], + [13013,0.812], + [13015,0.803], + [13017,0.666], + [13019,0.69], + [13021,0.754], + [13023,0.678], + [13025,0.802], + [13027,0.705], + [13029,0.86], + [13031,0.831], + [13033,0.743], + [13035,0.697], + [13037,0.669], + [13039,0.835], + [13043,0.663], + [13045,0.816], + [13047,0.803], + [13049,0.65], + [13051,0.847], + [13053,0.807], + [13055,0.603], + [13057,0.885], + [13059,0.838], + [13061,0.661], + [13063,0.835], + [13065,0.629], + [13067,0.9], + [13069,0.692], + [13071,0.734], + [13073,0.845], + [13075,0.687], + [13077,0.836], + [13079,0.761], + [13081,0.696], + [13083,0.725], + [13085,0.834], + [13087,0.565], + [13089,0.854], + [13091,0.613], + [13093,0.64], + [13095,0.736], + [13097,0.866], + [13099,0.488], + [13101,0.557], + [13103,0.867], + [13105,0.56], + [13107,0.733], + [13109,0.719], + [13111,0.708], + [13113,0.852], + [13115,0.744], + [13117,0.905], + [13119,0.674], + [13121,0.862], + [13123,0.701], + [13125,0.728], + [13127,0.769], + [13129,0.736], + [13131,0.685], + [13133,0.707], + [13135,0.89], + [13137,0.696], + [13139,0.818], + [13141,0.555], + [13143,0.781], + [13145,0.807], + [13147,0.69], + [13149,0.72], + [13151,0.875], + [13153,0.826], + [13155,0.624], + [13157,0.794], + [13159,0.755], + [13161,0.716], + [13163,0.682], + [13165,0.679], + [13167,0.649], + [13169,0.768], + [13171,0.744], + [13173,0.72], + [13175,0.542], + [13177,0.848], + [13179,0.854], + [13181,0.545], + [13183,0.861], + [13185,0.765], + [13187,0.755], + [13189,0.721], + [13191,0.733], + [13193,0.618], + [13195,0.704], + [13197,0.623], + [13199,0.629], + [13201,0.456], + [13205,0.702], + [13207,0.795], + [13209,0.683], + [13211,0.782], + [13213,0.729], + [13215,0.781], + [13217,0.841], + [13219,0.856], + [13221,0.647], + [13223,0.863], + [13225,0.733], + [13227,0.773], + [13229,0.765], + [13231,0.809], + [13233,0.774], + [13235,0.669], + [13237,0.779], + [13239,0.583], + [13241,0.683], + [13243,0.72], + [13245,0.77], + [13247,0.871], + [13249,0.672], + [13251,0.671], + [13253,0.567], + [13255,0.723], + [13257,0.645], + [13259,0.675], + [13261,0.73], + [13263,0.602], + [13265,0.526], + [13267,0.756], + [13269,0.642], + [13271,0.34], + [13273,0.675], + [13275,0.765], + [13277,0.612], + [13279,0.682], + [13281,0.699], + [13283,0.662], + [13285,0.73], + [13287,0.661], + [13289,0.542], + [13291,0.734], + [13293,0.698], + [13295,0.743], + [13297,0.82], + [13299,0.774], + [13301,0.622], + [13303,0.661], + [13305,0.747], + [13307,0.674], + [13309,0.25], + [13311,0.742], + [13313,0.751], + [13315,0.501], + [13317,0.481], + [13319,0.579], + [13321,0.724], + [15001,0.721], + [15003,0.835], + [15005,0.615], + [15007,0.803], + [15009,0.819], + [16001,0.82], + [16003,0.666], + [16005,0.815], + [16007,0.749], + [16009,0.66], + [16011,0.802], + [16013,0.825], + [16015,0.712], + [16017,0.713], + [16019,0.842], + [16021,0.671], + [16023,0.692], + [16025,0.751], + [16027,0.79], + [16029,0.807], + [16031,0.825], + [16033,0.69], + [16035,0.607], + [16037,0.618], + [16039,0.78], + [16041,0.802], + [16043,0.774], + [16045,0.731], + [16047,0.7], + [16049,0.577], + [16051,0.874], + [16053,0.744], + [16055,0.806], + [16057,0.809], + [16059,0.653], + [16061,0.586], + [16063,0.714], + [16065,0.904], + [16067,0.788], + [16069,0.749], + [16071,0.768], + [16073,0.707], + [16075,0.784], + [16077,0.845], + [16079,0.693], + [16081,0.837], + [16083,0.795], + [16085,0.79], + [16087,0.679], + [17001,0.724], + [17003,0.567], + [17005,0.731], + [17007,0.804], + [17009,0.696], + [17011,0.748], + [17013,0.6], + [17015,0.674], + [17017,0.726], + [17019,0.851], + [17021,0.721], + [17023,0.773], + [17025,0.716], + [17027,0.71], + [17029,0.763], + [17031,0.802], + [17033,0.712], + [17035,0.721], + [17037,0.848], + [17039,0.722], + [17041,0.706], + [17043,0.851], + [17045,0.7], + [17047,0.701], + [17049,0.747], + [17051,0.655], + [17053,0.712], + [17055,0.712], + [17057,0.709], + [17059,0.663], + [17061,0.675], + [17063,0.825], + [17065,0.71], + [17067,0.653], + [17069,0.673], + [17071,0.695], + [17073,0.717], + [17075,0.719], + [17077,0.785], + [17079,0.708], + [17081,0.762], + [17083,0.699], + [17085,0.724], + [17087,0.648], + [17089,0.847], + [17091,0.755], + [17093,0.883], + [17095,0.672], + [17097,0.858], + [17099,0.756], + [17101,0.73], + [17103,0.744], + [17105,0.732], + [17107,0.753], + [17109,0.724], + [17111,0.857], + [17113,0.85], + [17115,0.741], + [17117,0.749], + [17119,0.776], + [17121,0.735], + [17123,0.717], + [17125,0.731], + [17127,0.618], + [17129,0.834], + [17131,0.735], + [17133,0.797], + [17135,0.713], + [17137,0.725], + [17139,0.744], + [17141,0.756], + [17143,0.773], + [17145,0.721], + [17147,0.793], + [17149,0.7], + [17151,0.55], + [17153,0.509], + [17155,0.721], + [17157,0.715], + [17159,0.709], + [17161,0.772], + [17163,0.772], + [17165,0.715], + [17167,0.786], + [17169,0.698], + [17171,0.738], + [17173,0.702], + [17175,0.717], + [17177,0.697], + [17179,0.767], + [17181,0.669], + [17183,0.711], + [17185,0.71], + [17187,0.768], + [17189,0.712], + [17191,0.649], + [17193,0.705], + [17195,0.727], + [17197,0.853], + [17199,0.724], + [17201,0.774], + [17203,0.789], + [18001,0.655], + [18003,0.795], + [18005,0.777], + [18007,0.748], + [18009,0.693], + [18011,0.851], + [18013,0.784], + [18015,0.733], + [18017,0.723], + [18019,0.774], + [18021,0.726], + [18023,0.789], + [18025,0.66], + [18027,0.655], + [18029,0.768], + [18031,0.762], + [18033,0.751], + [18035,0.772], + [18037,0.733], + [18039,0.733], + [18041,0.716], + [18043,0.797], + [18045,0.728], + [18047,0.73], + [18049,0.75], + [18051,0.762], + [18053,0.732], + [18055,0.707], + [18057,0.905], + [18059,0.824], + [18061,0.728], + [18063,0.863], + [18065,0.719], + [18067,0.76], + [18069,0.753], + [18071,0.711], + [18073,0.751], + [18075,0.693], + [18077,0.729], + [18079,0.712], + [18081,0.834], + [18083,0.747], + [18085,0.76], + [18087,0.566], + [18089,0.767], + [18091,0.76], + [18093,0.708], + [18095,0.75], + [18097,0.762], + [18099,0.702], + [18101,0.652], + [18103,0.726], + [18105,0.846], + [18107,0.787], + [18109,0.786], + [18111,0.764], + [18113,0.756], + [18115,0.681], + [18117,0.691], + [18119,0.713], + [18121,0.642], + [18123,0.679], + [18125,0.713], + [18127,0.82], + [18129,0.812], + [18131,0.692], + [18133,0.765], + [18135,0.73], + [18137,0.718], + [18139,0.73], + [18141,0.716], + [18143,0.663], + [18145,0.774], + [18147,0.707], + [18149,0.68], + [18151,0.77], + [18153,0.718], + [18155,0.664], + [18157,0.85], + [18159,0.774], + [18161,0.702], + [18163,0.783], + [18165,0.732], + [18167,0.765], + [18169,0.738], + [18171,0.734], + [18173,0.841], + [18175,0.657], + [18177,0.737], + [18179,0.762], + [18181,0.742], + [18183,0.762], + [19001,0.697], + [19003,0.704], + [19005,0.623], + [19007,0.664], + [19009,0.698], + [19011,0.747], + [19013,0.765], + [19015,0.786], + [19017,0.76], + [19019,0.72], + [19021,0.782], + [19023,0.691], + [19025,0.693], + [19027,0.725], + [19029,0.73], + [19031,0.728], + [19033,0.711], + [19035,0.686], + [19037,0.69], + [19039,0.709], + [19041,0.737], + [19043,0.625], + [19045,0.686], + [19047,0.714], + [19049,0.869], + [19051,0.616], + [19053,0.695], + [19055,0.728], + [19057,0.712], + [19059,0.769], + [19061,0.776], + [19063,0.692], + [19065,0.714], + [19067,0.681], + [19069,0.691], + [19071,0.743], + [19073,0.754], + [19075,0.735], + [19077,0.717], + [19079,0.692], + [19081,0.694], + [19083,0.672], + [19085,0.713], + [19087,0.731], + [19089,0.686], + [19091,0.701], + [19093,0.713], + [19095,0.725], + [19097,0.688], + [19099,0.761], + [19101,0.723], + [19103,0.856], + [19105,0.725], + [19107,0.692], + [19109,0.728], + [19111,0.726], + [19113,0.804], + [19115,0.725], + [19117,0.706], + [19119,0.752], + [19121,0.756], + [19123,0.759], + [19125,0.757], + [19127,0.752], + [19129,0.767], + [19131,0.683], + [19133,0.677], + [19135,0.76], + [19137,0.716], + [19139,0.78], + [19141,0.69], + [19143,0.734], + [19145,0.723], + [19147,0.749], + [19149,0.783], + [19151,0.689], + [19153,0.83], + [19155,0.745], + [19157,0.762], + [19159,0.702], + [19161,0.693], + [19163,0.772], + [19165,0.7], + [19167,0.773], + [19169,0.851], + [19171,0.727], + [19173,0.689], + [19175,0.674], + [19177,0.67], + [19179,0.726], + [19181,0.813], + [19183,0.74], + [19185,0.615], + [19187,0.699], + [19189,0.711], + [19191,0.739], + [19193,0.767], + [19195,0.702], + [19197,0.661], + [20001,0.704], + [20003,0.6], + [20005,0.677], + [20007,0.724], + [20009,0.744], + [20011,0.659], + [20013,0.718], + [20015,0.792], + [20017,0.671], + [20019,0.65], + [20021,0.718], + [20023,0.681], + [20025,0.73], + [20027,0.652], + [20029,0.708], + [20031,0.775], + [20033,0.764], + [20035,0.727], + [20037,0.762], + [20039,0.706], + [20041,0.725], + [20043,0.671], + [20045,0.87], + [20047,0.712], + [20049,0.611], + [20051,0.763], + [20053,0.719], + [20055,0.783], + [20057,0.763], + [20059,0.748], + [20061,0.848], + [20063,0.705], + [20065,0.641], + [20067,0.784], + [20069,0.768], + [20071,0.773], + [20073,0.643], + [20075,0.722], + [20077,0.705], + [20079,0.761], + [20081,0.824], + [20083,0.704], + [20085,0.718], + [20087,0.763], + [20089,0.607], + [20091,0.866], + [20093,0.76], + [20095,0.707], + [20097,0.724], + [20099,0.753], + [20101,0.764], + [20103,0.817], + [20105,0.691], + [20107,0.706], + [20109,0.762], + [20111,0.8], + [20113,0.778], + [20115,0.683], + [20117,0.697], + [20119,0.789], + [20121,0.787], + [20123,0.699], + [20125,0.692], + [20127,0.671], + [20129,0.719], + [20131,0.716], + [20133,0.665], + [20135,0.702], + [20137,0.642], + [20139,0.723], + [20141,0.706], + [20143,0.7], + [20145,0.724], + [20147,0.717], + [20149,0.783], + [20151,0.786], + [20153,0.751], + [20155,0.744], + [20157,0.661], + [20159,0.732], + [20161,0.862], + [20163,0.725], + [20165,0.681], + [20167,0.642], + [20169,0.749], + [20171,0.79], + [20173,0.789], + [20175,0.82], + [20177,0.752], + [20179,0.72], + [20181,0.77], + [20183,0.693], + [20185,0.728], + [20187,0.749], + [20189,0.767], + [20191,0.733], + [20193,0.791], + [20195,0.756], + [20197,0.713], + [20199,0.686], + [20201,0.587], + [20203,0.766], + [20205,0.678], + [20207,0.651], + [20209,0.775], + [21001,0.65], + [21003,0.732], + [21005,0.778], + [21007,0.708], + [21009,0.708], + [21011,0.713], + [21013,0.59], + [21015,0.84], + [21017,0.756], + [21019,0.746], + [21021,0.739], + [21023,0.683], + [21025,0.559], + [21027,0.658], + [21029,0.792], + [21031,0.721], + [21033,0.684], + [21035,0.768], + [21037,0.77], + [21039,0.756], + [21041,0.689], + [21043,0.552], + [21045,0.575], + [21047,0.773], + [21049,0.773], + [21051,0.577], + [21053,0.526], + [21055,0.667], + [21057,0.63], + [21059,0.787], + [21061,0.692], + [21063,0.592], + [21065,0.615], + [21067,0.853], + [21069,0.718], + [21071,0.656], + [21073,0.782], + [21075,0.673], + [21077,0.735], + [21079,0.721], + [21081,0.721], + [21083,0.707], + [21085,0.666], + [21087,0.655], + [21089,0.736], + [21091,0.768], + [21093,0.787], + [21095,0.611], + [21097,0.671], + [21099,0.614], + [21101,0.745], + [21103,0.763], + [21105,0.565], + [21107,0.703], + [21109,0.613], + [21111,0.8], + [21113,0.808], + [21115,0.675], + [21117,0.801], + [21119,0.622], + [21121,0.564], + [21123,0.729], + [21125,0.674], + [21127,0.565], + [21129,0.547], + [21131,0.594], + [21133,0.635], + [21135,0.564], + [21137,0.665], + [21139,0.637], + [21141,0.578], + [21143,0.661], + [21145,0.753], + [21147,0.572], + [21149,0.728], + [21151,0.807], + [21153,0.606], + [21155,0.663], + [21157,0.71], + [21159,0.623], + [21161,0.713], + [21163,0.795], + [21165,0.587], + [21167,0.721], + [21169,0.642], + [21171,0.654], + [21173,0.764], + [21175,0.587], + [21177,0.69], + [21179,0.771], + [21181,0.666], + [21183,0.711], + [21185,0.885], + [21187,0.698], + [21189,0.56], + [21191,0.734], + [21193,0.661], + [21195,0.686], + [21197,0.679], + [21199,0.706], + [21201,0.663], + [21203,0.641], + [21205,0.739], + [21207,0.632], + [21209,0.854], + [21211,0.817], + [21213,0.642], + [21215,0.823], + [21217,0.69], + [21219,0.519], + [21221,0.686], + [21223,0.707], + [21225,0.75], + [21227,0.818], + [21229,0.712], + [21231,0.557], + [21233,0.69], + [21235,0.627], + [21237,0.56], + [21239,0.796], + [22001,0.753], + [22003,0.746], + [22005,0.865], + [22007,0.701], + [22009,0.689], + [22011,0.784], + [22013,0.665], + [22015,0.799], + [22017,0.752], + [22019,0.772], + [22021,0.624], + [22023,0.76], + [22025,0.607], + [22027,0.632], + [22029,0.581], + [22031,0.742], + [22033,0.831], + [22035,0.394], + [22037,0.739], + [22039,0.693], + [22041,0.671], + [22043,0.652], + [22045,0.76], + [22047,0.762], + [22049,0.714], + [22051,0.778], + [22053,0.683], + [22055,0.837], + [22057,0.772], + [22059,0.72], + [22061,0.807], + [22063,0.836], + [22065,0.576], + [22067,0.538], + [22069,0.55], + [22071,0.771], + [22073,0.717], + [22075,0.788], + [22077,0.707], + [22079,0.762], + [22081,0.68], + [22083,0.617], + [22085,0.613], + [22087,0.797], + [22089,0.812], + [22091,0.695], + [22093,0.711], + [22095,0.781], + [22097,0.667], + [22099,0.757], + [22101,0.717], + [22103,0.83], + [22105,0.782], + [22107,0.512], + [22109,0.781], + [22111,0.588], + [22113,0.753], + [22115,0.759], + [22117,0.726], + [22119,0.647], + [22121,0.839], + [22123,0.491], + [22125,0.828], + [22127,0.694], + [23001,0.726], + [23003,0.584], + [23005,0.802], + [23007,0.673], + [23009,0.72], + [23011,0.724], + [23013,0.707], + [23015,0.704], + [23017,0.654], + [23019,0.722], + [23021,0.625], + [23023,0.748], + [23025,0.654], + [23027,0.698], + [23029,0.611], + [23031,0.76], + [24001,0.663], + [24003,0.848], + [24005,0.807], + [24009,0.836], + [24011,0.769], + [24013,0.813], + [24015,0.788], + [24017,0.833], + [24019,0.743], + [24021,0.836], + [24023,0.688], + [24025,0.818], + [24027,0.894], + [24029,0.722], + [24031,0.874], + [24033,0.853], + [24035,0.827], + [24037,0.787], + [24039,0.677], + [24041,0.8], + [24043,0.731], + [24045,0.795], + [24047,0.751], + [24510,0.761], + [25001,0.785], + [25003,0.711], + [25005,0.757], + [25007,0.79], + [25009,0.794], + [25011,0.708], + [25013,0.734], + [25015,0.779], + [25017,0.828], + [25019,0.865], + [25021,0.826], + [25023,0.807], + [25025,0.83], + [25027,0.795], + [26001,0.635], + [26003,0.539], + [26005,0.763], + [26007,0.678], + [26009,0.741], + [26011,0.643], + [26013,0.6], + [26015,0.768], + [26017,0.733], + [26019,0.721], + [26021,0.746], + [26023,0.742], + [26025,0.725], + [26027,0.74], + [26029,0.757], + [26031,0.679], + [26033,0.674], + [26035,0.63], + [26037,0.804], + [26039,0.718], + [26041,0.649], + [26043,0.681], + [26045,0.798], + [26047,0.769], + [26049,0.749], + [26051,0.612], + [26053,0.608], + [26055,0.8], + [26057,0.719], + [26059,0.685], + [26061,0.721], + [26063,0.674], + [26065,0.815], + [26067,0.786], + [26069,0.658], + [26071,0.593], + [26073,0.795], + [26075,0.765], + [26077,0.816], + [26079,0.72], + [26081,0.817], + [26083,0.66], + [26085,0.599], + [26087,0.782], + [26089,0.762], + [26091,0.786], + [26093,0.841], + [26095,0.6], + [26097,0.688], + [26099,0.789], + [26101,0.652], + [26103,0.732], + [26105,0.73], + [26107,0.703], + [26109,0.632], + [26111,0.772], + [26113,0.709], + [26115,0.768], + [26117,0.686], + [26119,0.671], + [26121,0.74], + [26123,0.699], + [26125,0.846], + [26127,0.717], + [26129,0.666], + [26131,0.525], + [26133,0.69], + [26135,0.616], + [26137,0.729], + [26139,0.82], + [26141,0.615], + [26143,0.674], + [26145,0.721], + [26147,0.759], + [26149,0.732], + [26151,0.694], + [26153,0.598], + [26155,0.759], + [26157,0.709], + [26159,0.753], + [26161,0.855], + [26163,0.771], + [26165,0.703], + [27001,0.686], + [27003,0.829], + [27005,0.743], + [27007,0.74], + [27009,0.785], + [27011,0.662], + [27013,0.806], + [27015,0.741], + [27017,0.754], + [27019,0.86], + [27021,0.729], + [27023,0.684], + [27025,0.811], + [27027,0.792], + [27029,0.676], + [27031,0.66], + [27033,0.711], + [27035,0.781], + [27037,0.851], + [27039,0.782], + [27041,0.763], + [27043,0.685], + [27045,0.701], + [27047,0.701], + [27049,0.768], + [27051,0.783], + [27053,0.843], + [27055,0.708], + [27057,0.724], + [27059,0.79], + [27061,0.726], + [27063,0.726], + [27065,0.715], + [27067,0.773], + [27069,0.686], + [27071,0.669], + [27073,0.691], + [27075,0.719], + [27077,0.632], + [27079,0.765], + [27081,0.671], + [27083,0.777], + [27085,0.757], + [27087,0.664], + [27089,0.714], + [27091,0.714], + [27093,0.754], + [27095,0.735], + [27097,0.698], + [27099,0.732], + [27101,0.681], + [27103,0.791], + [27105,0.722], + [27107,0.691], + [27109,0.814], + [27111,0.736], + [27113,0.738], + [27115,0.703], + [27117,0.735], + [27119,0.736], + [27121,0.72], + [27123,0.808], + [27125,0.676], + [27127,0.72], + [27129,0.712], + [27131,0.77], + [27133,0.736], + [27135,0.745], + [27137,0.746], + [27139,0.869], + [27141,0.849], + [27143,0.743], + [27145,0.794], + [27147,0.753], + [27149,0.737], + [27151,0.69], + [27153,0.676], + [27155,0.7], + [27157,0.745], + [27159,0.669], + [27161,0.729], + [27163,0.851], + [27165,0.692], + [27167,0.711], + [27169,0.76], + [27171,0.83], + [27173,0.738], + [28001,0.682], + [28003,0.732], + [28005,0.607], + [28007,0.707], + [28009,0.747], + [28011,0.696], + [28013,0.65], + [28015,0.702], + [28017,0.672], + [28019,0.671], + [28021,0.654], + [28023,0.688], + [28025,0.735], + [28027,0.671], + [28029,0.658], + [28031,0.762], + [28033,0.848], + [28035,0.78], + [28037,0.74], + [28039,0.689], + [28041,0.671], + [28043,0.729], + [28045,0.772], + [28047,0.784], + [28049,0.793], + [28051,0.523], + [28053,0.691], + [28055,0.526], + [28057,0.749], + [28059,0.798], + [28061,0.669], + [28063,0.671], + [28065,0.651], + [28067,0.751], + [28069,0.632], + [28071,0.856], + [28073,0.85], + [28075,0.749], + [28077,0.652], + [28079,0.687], + [28081,0.769], + [28083,0.479], + [28085,0.683], + [28087,0.768], + [28089,0.856], + [28091,0.672], + [28093,0.781], + [28095,0.709], + [28097,0.678], + [28099,0.733], + [28101,0.755], + [28103,0.649], + [28105,0.836], + [28107,0.719], + [28109,0.738], + [28111,0.742], + [28113,0.669], + [28115,0.751], + [28117,0.704], + [28119,0.632], + [28121,0.833], + [28123,0.712], + [28125,0.681], + [28127,0.705], + [28129,0.725], + [28131,0.727], + [28133,0.682], + [28135,0.625], + [28137,0.729], + [28139,0.721], + [28141,0.708], + [28143,0.797], + [28145,0.742], + [28147,0.621], + [28149,0.76], + [28151,0.656], + [28153,0.699], + [28155,0.711], + [28157,0.612], + [28159,0.698], + [28161,0.663], + [28163,0.68], + [29001,0.768], + [29003,0.727], + [29005,0.699], + [29007,0.685], + [29009,0.694], + [29011,0.68], + [29013,0.697], + [29015,0.695], + [29017,0.713], + [29019,0.849], + [29021,0.754], + [29023,0.722], + [29025,0.694], + [29027,0.751], + [29029,0.757], + [29031,0.8], + [29033,0.66], + [29035,0.677], + [29037,0.828], + [29039,0.673], + [29041,0.582], + [29043,0.829], + [29045,0.694], + [29047,0.841], + [29049,0.804], + [29051,0.79], + [29053,0.728], + [29055,0.631], + [29057,0.697], + [29059,0.702], + [29061,0.662], + [29063,0.733], + [29065,0.625], + [29067,0.592], + [29069,0.682], + [29071,0.777], + [29073,0.688], + [29075,0.706], + [29077,0.784], + [29079,0.643], + [29081,0.678], + [29083,0.741], + [29085,0.573], + [29087,0.697], + [29089,0.64], + [29091,0.707], + [29093,0.624], + [29095,0.797], + [29097,0.79], + [29099,0.819], + [29101,0.822], + [29103,0.605], + [29105,0.754], + [29107,0.71], + [29109,0.75], + [29111,0.679], + [29113,0.784], + [29115,0.681], + [29117,0.687], + [29119,0.621], + [29121,0.654], + [29123,0.684], + [29125,0.624], + [29127,0.749], + [29129,0.57], + [29131,0.723], + [29133,0.638], + [29135,0.702], + [29137,0.668], + [29139,0.678], + [29141,0.633], + [29143,0.707], + [29145,0.749], + [29147,0.769], + [29149,0.624], + [29151,0.696], + [29153,0.565], + [29155,0.685], + [29157,0.775], + [29159,0.731], + [29161,0.752], + [29163,0.699], + [29165,0.878], + [29167,0.736], + [29169,0.818], + [29171,0.662], + [29173,0.692], + [29175,0.674], + [29177,0.733], + [29179,0.586], + [29181,0.592], + [29183,0.852], + [29185,0.655], + [29186,0.735], + [29187,0.754], + [29189,0.814], + [29195,0.691], + [29197,0.592], + [29199,0.622], + [29201,0.709], + [29203,0.549], + [29205,0.691], + [29207,0.708], + [29209,0.738], + [29211,0.623], + [29213,0.762], + [29215,0.686], + [29217,0.726], + [29219,0.732], + [29221,0.679], + [29223,0.575], + [29225,0.731], + [29227,0.654], + [29229,0.668], + [29510,0.764], + [30001,0.707], + [30003,0.628], + [30005,0.622], + [30007,0.712], + [30009,0.717], + [30011,0.611], + [30013,0.709], + [30015,0.606], + [30017,0.704], + [30019,0.697], + [30021,0.73], + [30023,0.645], + [30025,0.678], + [30027,0.69], + [30029,0.739], + [30031,0.862], + [30033,0.527], + [30035,0.541], + [30037,0.538], + [30039,0.629], + [30041,0.712], + [30043,0.767], + [30045,0.683], + [30047,0.725], + [30049,0.758], + [30051,0.649], + [30053,0.595], + [30055,0.696], + [30057,0.693], + [30059,0.536], + [30061,0.648], + [30063,0.81], + [30065,0.614], + [30067,0.711], + [30069,0.662], + [30071,0.632], + [30073,0.651], + [30075,0.672], + [30077,0.664], + [30079,0.541], + [30081,0.742], + [30083,0.789], + [30085,0.633], + [30087,0.566], + [30089,0.542], + [30091,0.711], + [30093,0.692], + [30095,0.724], + [30097,0.616], + [30099,0.71], + [30101,0.658], + [30103,0.558], + [30105,0.674], + [30107,0.65], + [30109,0.695], + [30111,0.786], + [31001,0.735], + [31003,0.678], + [31005,0.624], + [31007,0.65], + [31009,0.69], + [31011,0.709], + [31013,0.758], + [31015,0.615], + [31017,0.66], + [31019,0.804], + [31021,0.704], + [31023,0.726], + [31025,0.788], + [31027,0.695], + [31029,0.765], + [31031,0.727], + [31033,0.775], + [31035,0.746], + [31037,0.712], + [31039,0.698], + [31041,0.731], + [31043,0.806], + [31045,0.744], + [31047,0.763], + [31049,0.736], + [31051,0.683], + [31053,0.741], + [31055,0.805], + [31057,0.678], + [31059,0.709], + [31061,0.654], + [31063,0.667], + [31065,0.686], + [31067,0.711], + [31069,0.69], + [31071,0.655], + [31073,0.757], + [31075,0.743], + [31077,0.663], + [31079,0.769], + [31081,0.814], + [31083,0.708], + [31085,0.732], + [31087,0.652], + [31089,0.721], + [31091,0.585], + [31093,0.674], + [31095,0.63], + [31097,0.698], + [31099,0.761], + [31101,0.731], + [31103,0.641], + [31105,0.756], + [31107,0.655], + [31109,0.828], + [31111,0.765], + [31113,0.7], + [31115,0.735], + [31117,0.602], + [31119,0.739], + [31121,0.708], + [31123,0.708], + [31125,0.713], + [31127,0.749], + [31129,0.658], + [31131,0.739], + [31133,0.618], + [31135,0.765], + [31137,0.768], + [31139,0.716], + [31141,0.736], + [31143,0.709], + [31145,0.761], + [31147,0.612], + [31149,0.701], + [31151,0.721], + [31153,0.862], + [31155,0.765], + [31157,0.72], + [31159,0.761], + [31161,0.671], + [31163,0.661], + [31165,0.673], + [31167,0.675], + [31169,0.664], + [31171,0.816], + [31173,0.71], + [31175,0.723], + [31177,0.758], + [31179,0.799], + [31181,0.689], + [31183,0.702], + [31185,0.743], + [32001,0.777], + [32003,0.837], + [32005,0.811], + [32007,0.817], + [32009,0.642], + [32011,0.748], + [32013,0.748], + [32015,0.771], + [32017,0.656], + [32019,0.758], + [32021,0.628], + [32023,0.718], + [32027,0.589], + [32029,0.743], + [32031,0.836], + [32033,0.762], + [32510,0.763], + [33001,0.773], + [33003,0.732], + [33005,0.733], + [33007,0.643], + [33009,0.705], + [33011,0.816], + [33013,0.771], + [33015,0.821], + [33017,0.8], + [33019,0.699], + [34001,0.779], + [34003,0.838], + [34005,0.823], + [34007,0.795], + [34009,0.775], + [34011,0.703], + [34013,0.81], + [34015,0.811], + [34017,0.843], + [34019,0.831], + [34021,0.814], + [34023,0.832], + [34025,0.832], + [34027,0.844], + [34029,0.737], + [34031,0.794], + [34033,0.737], + [34035,0.85], + [34037,0.829], + [34039,0.807], + [34041,0.777], + [35001,0.799], + [35003,0.334], + [35005,0.706], + [35006,0.673], + [35007,0.64], + [35009,0.785], + [35011,0.68], + [35013,0.773], + [35015,0.8], + [35017,0.699], + [35019,0.431], + [35021,0.469], + [35023,0.683], + [35025,0.815], + [35027,0.729], + [35028,0.797], + [35029,0.642], + [35031,0.543], + [35033,0.454], + [35035,0.736], + [35037,0.579], + [35039,0.593], + [35041,0.751], + [35043,0.78], + [35045,0.701], + [35047,0.597], + [35049,0.777], + [35051,0.579], + [35053,0.483], + [35055,0.647], + [35057,0.694], + [35059,0.549], + [35061,0.683], + [36001,0.774], + [36003,0.66], + [36005,0.784], + [36007,0.717], + [36009,0.647], + [36011,0.71], + [36013,0.672], + [36015,0.729], + [36017,0.644], + [36019,0.707], + [36021,0.758], + [36023,0.736], + [36025,0.605], + [36027,0.795], + [36029,0.743], + [36031,0.697], + [36033,0.649], + [36035,0.701], + [36037,0.716], + [36039,0.644], + [36041,0.559], + [36043,0.665], + [36045,0.779], + [36047,0.789], + [36049,0.668], + [36051,0.741], + [36053,0.715], + [36055,0.768], + [36057,0.678], + [36059,0.841], + [36061,0.837], + [36063,0.709], + [36065,0.721], + [36067,0.754], + [36069,0.764], + [36071,0.782], + [36073,0.702], + [36075,0.738], + [36077,0.677], + [36079,0.84], + [36081,0.816], + [36083,0.763], + [36085,0.77], + [36087,0.764], + [36089,0.695], + [36091,0.8], + [36093,0.764], + [36095,0.663], + [36097,0.694], + [36099,0.706], + [36101,0.685], + [36103,0.813], + [36105,0.705], + [36107,0.699], + [36109,0.812], + [36111,0.76], + [36113,0.714], + [36115,0.716], + [36117,0.727], + [36119,0.823], + [36121,0.69], + [36123,0.653], + [37001,0.787], + [37003,0.715], + [37005,0.667], + [37007,0.673], + [37009,0.639], + [37011,0.691], + [37013,0.69], + [37015,0.633], + [37017,0.676], + [37019,0.782], + [37021,0.766], + [37023,0.692], + [37025,0.833], + [37027,0.694], + [37029,0.817], + [37031,0.785], + [37033,0.661], + [37035,0.768], + [37037,0.762], + [37039,0.676], + [37041,0.677], + [37043,0.721], + [37045,0.675], + [37047,0.655], + [37049,0.782], + [37051,0.813], + [37053,0.826], + [37055,0.841], + [37057,0.745], + [37059,0.756], + [37061,0.719], + [37063,0.841], + [37065,0.667], + [37067,0.798], + [37069,0.75], + [37071,0.771], + [37073,0.711], + [37075,0.582], + [37077,0.761], + [37079,0.733], + [37081,0.783], + [37083,0.671], + [37085,0.835], + [37087,0.716], + [37089,0.76], + [37091,0.671], + [37093,0.802], + [37095,0.708], + [37097,0.789], + [37099,0.749], + [37101,0.814], + [37103,0.634], + [37105,0.762], + [37107,0.716], + [37109,0.793], + [37111,0.697], + [37113,0.68], + [37115,0.711], + [37117,0.694], + [37119,0.869], + [37121,0.627], + [37123,0.652], + [37125,0.725], + [37127,0.749], + [37129,0.829], + [37131,0.62], + [37133,0.864], + [37135,0.856], + [37137,0.719], + [37139,0.748], + [37141,0.772], + [37143,0.661], + [37145,0.723], + [37147,0.812], + [37149,0.701], + [37151,0.753], + [37153,0.683], + [37155,0.668], + [37157,0.666], + [37159,0.756], + [37161,0.685], + [37163,0.724], + [37165,0.686], + [37167,0.758], + [37169,0.649], + [37171,0.639], + [37173,0.645], + [37175,0.741], + [37177,0.683], + [37179,0.853], + [37181,0.689], + [37183,0.89], + [37185,0.625], + [37187,0.588], + [37189,0.802], + [37191,0.755], + [37193,0.671], + [37195,0.716], + [37197,0.705], + [37199,0.651], + [38001,0.669], + [38003,0.727], + [38005,0.626], + [38007,0.739], + [38009,0.71], + [38011,0.754], + [38013,0.719], + [38015,0.799], + [38017,0.836], + [38019,0.713], + [38021,0.798], + [38023,0.753], + [38025,0.738], + [38027,0.678], + [38029,0.582], + [38031,0.671], + [38033,0.662], + [38035,0.813], + [38037,0.566], + [38039,0.702], + [38041,0.651], + [38043,0.64], + [38045,0.713], + [38047,0.647], + [38049,0.711], + [38051,0.633], + [38053,0.904], + [38055,0.764], + [38057,0.768], + [38059,0.786], + [38061,0.765], + [38063,0.655], + [38065,0.711], + [38067,0.642], + [38069,0.726], + [38071,0.718], + [38073,0.725], + [38075,0.775], + [38077,0.753], + [38079,0.654], + [38081,0.749], + [38083,0.618], + [38085,0.562], + [38087,0.647], + [38089,0.762], + [38091,0.744], + [38093,0.741], + [38095,0.721], + [38097,0.788], + [38099,0.703], + [38101,0.81], + [38103,0.678], + [38105,0.844], + [39001,0.631], + [39003,0.732], + [39005,0.716], + [39007,0.665], + [39009,0.753], + [39011,0.775], + [39013,0.68], + [39015,0.726], + [39017,0.823], + [39019,0.676], + [39021,0.781], + [39023,0.749], + [39025,0.796], + [39027,0.763], + [39029,0.718], + [39031,0.656], + [39033,0.714], + [39035,0.758], + [39037,0.699], + [39039,0.742], + [39041,0.888], + [39043,0.757], + [39045,0.795], + [39047,0.748], + [39049,0.84], + [39051,0.773], + [39053,0.69], + [39055,0.759], + [39057,0.817], + [39059,0.674], + [39061,0.796], + [39063,0.789], + [39065,0.676], + [39067,0.626], + [39069,0.755], + [39071,0.717], + [39073,0.705], + [39075,0.56], + [39077,0.725], + [39079,0.712], + [39081,0.69], + [39083,0.738], + [39085,0.778], + [39087,0.7], + [39089,0.778], + [39091,0.773], + [39093,0.764], + [39095,0.786], + [39097,0.799], + [39099,0.744], + [39101,0.738], + [39103,0.811], + [39105,0.654], + [39107,0.746], + [39109,0.767], + [39111,0.602], + [39113,0.777], + [39115,0.606], + [39117,0.73], + [39119,0.72], + [39121,0.572], + [39123,0.726], + [39125,0.712], + [39127,0.717], + [39129,0.765], + [39131,0.708], + [39133,0.785], + [39135,0.735], + [39137,0.762], + [39139,0.703], + [39141,0.735], + [39143,0.722], + [39145,0.659], + [39147,0.725], + [39149,0.754], + [39151,0.757], + [39153,0.766], + [39155,0.715], + [39157,0.72], + [39159,0.85], + [39161,0.741], + [39163,0.627], + [39165,0.857], + [39167,0.679], + [39169,0.706], + [39171,0.73], + [39173,0.814], + [39175,0.721], + [40001,0.607], + [40003,0.758], + [40005,0.727], + [40007,0.739], + [40009,0.81], + [40011,0.755], + [40013,0.777], + [40015,0.734], + [40017,0.846], + [40019,0.758], + [40021,0.729], + [40023,0.645], + [40025,0.744], + [40027,0.867], + [40029,0.675], + [40031,0.823], + [40033,0.726], + [40035,0.698], + [40037,0.773], + [40039,0.832], + [40041,0.719], + [40043,0.784], + [40045,0.667], + [40047,0.769], + [40049,0.789], + [40051,0.797], + [40053,0.749], + [40055,0.699], + [40057,0.731], + [40059,0.668], + [40061,0.726], + [40063,0.494], + [40065,0.804], + [40067,0.704], + [40069,0.68], + [40071,0.741], + [40073,0.785], + [40075,0.708], + [40077,0.7], + [40079,0.669], + [40081,0.742], + [40083,0.779], + [40085,0.778], + [40087,0.839], + [40089,0.592], + [40091,0.684], + [40093,0.768], + [40095,0.75], + [40097,0.779], + [40099,0.759], + [40101,0.739], + [40103,0.714], + [40105,0.715], + [40107,0.706], + [40109,0.822], + [40111,0.724], + [40113,0.753], + [40115,0.663], + [40117,0.746], + [40119,0.815], + [40121,0.749], + [40123,0.775], + [40125,0.778], + [40127,0.667], + [40129,0.756], + [40131,0.83], + [40133,0.689], + [40135,0.75], + [40137,0.761], + [40139,0.763], + [40141,0.668], + [40143,0.83], + [40145,0.839], + [40147,0.762], + [40149,0.801], + [40151,0.759], + [40153,0.806], + [41001,0.7], + [41003,0.845], + [41005,0.84], + [41007,0.766], + [41009,0.769], + [41011,0.693], + [41013,0.766], + [41015,0.675], + [41017,0.84], + [41019,0.718], + [41021,0.647], + [41023,0.671], + [41025,0.681], + [41027,0.818], + [41029,0.794], + [41031,0.772], + [41033,0.703], + [41035,0.751], + [41037,0.709], + [41039,0.797], + [41041,0.719], + [41043,0.788], + [41045,0.714], + [41047,0.808], + [41049,0.782], + [41051,0.853], + [41053,0.804], + [41055,0.694], + [41057,0.71], + [41059,0.781], + [41061,0.753], + [41063,0.7], + [41065,0.736], + [41067,0.878], + [41069,0.534], + [41071,0.805], + [42001,0.723], + [42003,0.768], + [42005,0.663], + [42007,0.729], + [42009,0.604], + [42011,0.759], + [42013,0.695], + [42015,0.652], + [42017,0.819], + [42019,0.755], + [42021,0.655], + [42023,0.617], + [42025,0.717], + [42027,0.791], + [42029,0.796], + [42031,0.678], + [42033,0.646], + [42035,0.677], + [42037,0.693], + [42039,0.66], + [42041,0.77], + [42043,0.756], + [42045,0.81], + [42047,0.671], + [42049,0.742], + [42051,0.668], + [42053,0.553], + [42055,0.705], + [42057,0.625], + [42059,0.7], + [42061,0.657], + [42063,0.676], + [42065,0.64], + [42067,0.633], + [42069,0.734], + [42071,0.734], + [42073,0.705], + [42075,0.722], + [42077,0.782], + [42079,0.714], + [42081,0.696], + [42083,0.659], + [42085,0.696], + [42087,0.645], + [42089,0.792], + [42091,0.831], + [42093,0.694], + [42095,0.767], + [42097,0.634], + [42099,0.691], + [42101,0.761], + [42103,0.747], + [42105,0.581], + [42107,0.683], + [42109,0.671], + [42111,0.622], + [42113,0.573], + [42115,0.664], + [42117,0.661], + [42119,0.652], + [42121,0.675], + [42123,0.643], + [42125,0.748], + [42127,0.681], + [42129,0.713], + [42131,0.707], + [42133,0.767], + [44001,0.785], + [44003,0.78], + [44005,0.779], + [44007,0.763], + [44009,0.8], + [45001,0.655], + [45003,0.781], + [45005,0.622], + [45007,0.767], + [45009,0.636], + [45011,0.687], + [45013,0.845], + [45015,0.833], + [45017,0.671], + [45019,0.828], + [45021,0.699], + [45023,0.643], + [45025,0.671], + [45027,0.676], + [45029,0.756], + [45031,0.674], + [45033,0.645], + [45035,0.821], + [45037,0.692], + [45039,0.709], + [45041,0.756], + [45043,0.733], + [45045,0.806], + [45047,0.734], + [45049,0.706], + [45051,0.802], + [45053,0.764], + [45055,0.748], + [45057,0.768], + [45059,0.714], + [45061,0.621], + [45063,0.821], + [45065,0.659], + [45067,0.582], + [45069,0.638], + [45071,0.707], + [45073,0.744], + [45075,0.705], + [45077,0.777], + [45079,0.849], + [45081,0.695], + [45083,0.773], + [45085,0.739], + [45087,0.668], + [45089,0.584], + [45091,0.857], + [46003,0.698], + [46005,0.667], + [46007,0.552], + [46009,0.646], + [46011,0.826], + [46013,0.755], + [46015,0.689], + [46017,0.573], + [46019,0.668], + [46021,0.634], + [46023,0.589], + [46025,0.711], + [46027,0.849], + [46029,0.738], + [46031,0.438], + [46033,0.703], + [46035,0.757], + [46037,0.676], + [46039,0.73], + [46041,0.484], + [46043,0.685], + [46045,0.753], + [46047,0.649], + [46049,0.67], + [46051,0.699], + [46053,0.663], + [46055,0.634], + [46057,0.762], + [46059,0.729], + [46061,0.734], + [46063,0.776], + [46065,0.715], + [46067,0.603], + [46069,0.623], + [46071,0.507], + [46073,0.648], + [46075,0.718], + [46077,0.728], + [46079,0.774], + [46081,0.786], + [46083,0.841], + [46085,0.692], + [46087,0.753], + [46089,0.615], + [46091,0.704], + [46093,0.75], + [46095,0.481], + [46097,0.715], + [46099,0.811], + [46101,0.755], + [46102,0.453], + [46103,0.766], + [46105,0.603], + [46107,0.683], + [46109,0.673], + [46111,0.736], + [46115,0.708], + [46117,0.685], + [46119,0.733], + [46121,0.569], + [46123,0.667], + [46125,0.674], + [46127,0.8], + [46129,0.596], + [46135,0.71], + [46137,0.426], + [47001,0.746], + [47003,0.752], + [47005,0.638], + [47007,0.699], + [47009,0.772], + [47011,0.773], + [47013,0.642], + [47015,0.711], + [47017,0.666], + [47019,0.603], + [47021,0.794], + [47023,0.713], + [47025,0.643], + [47027,0.601], + [47029,0.657], + [47031,0.745], + [47033,0.691], + [47035,0.689], + [47037,0.842], + [47039,0.668], + [47041,0.642], + [47043,0.718], + [47045,0.735], + [47047,0.748], + [47049,0.644], + [47051,0.724], + [47053,0.73], + [47055,0.722], + [47057,0.695], + [47059,0.677], + [47061,0.628], + [47063,0.716], + [47065,0.783], + [47067,0.586], + [47069,0.695], + [47071,0.72], + [47073,0.707], + [47075,0.654], + [47077,0.725], + [47079,0.702], + [47081,0.62], + [47083,0.604], + [47085,0.629], + [47087,0.583], + [47089,0.773], + [47091,0.494], + [47093,0.827], + [47095,0.642], + [47097,0.701], + [47099,0.698], + [47101,0.616], + [47103,0.699], + [47105,0.776], + [47107,0.724], + [47109,0.703], + [47111,0.659], + [47113,0.764], + [47115,0.724], + [47117,0.757], + [47119,0.812], + [47121,0.703], + [47123,0.706], + [47125,0.853], + [47127,0.752], + [47129,0.683], + [47131,0.72], + [47133,0.606], + [47135,0.502], + [47137,0.555], + [47139,0.678], + [47141,0.759], + [47143,0.729], + [47145,0.724], + [47147,0.816], + [47149,0.872], + [47151,0.696], + [47153,0.715], + [47155,0.772], + [47157,0.765], + [47159,0.698], + [47161,0.659], + [47163,0.726], + [47165,0.798], + [47167,0.793], + [47169,0.737], + [47171,0.627], + [47173,0.778], + [47175,0.588], + [47177,0.677], + [47179,0.776], + [47181,0.648], + [47183,0.704], + [47185,0.599], + [47187,0.903], + [47189,0.838], + [48001,0.739], + [48003,0.841], + [48005,0.781], + [48007,0.781], + [48009,0.8], + [48011,0.791], + [48013,0.83], + [48015,0.783], + [48017,0.788], + [48019,0.764], + [48021,0.795], + [48023,0.688], + [48025,0.765], + [48027,0.822], + [48029,0.834], + [48031,0.823], + [48033,0.837], + [48035,0.759], + [48037,0.711], + [48039,0.861], + [48041,0.876], + [48043,0.753], + [48045,0.691], + [48047,0.71], + [48049,0.755], + [48051,0.742], + [48053,0.799], + [48055,0.781], + [48057,0.774], + [48059,0.69], + [48061,0.733], + [48063,0.684], + [48065,0.806], + [48067,0.615], + [48069,0.737], + [48071,0.834], + [48073,0.779], + [48075,0.728], + [48077,0.77], + [48079,0.673], + [48081,0.762], + [48083,0.739], + [48085,0.924], + [48087,0.76], + [48089,0.714], + [48091,0.839], + [48093,0.737], + [48095,0.673], + [48097,0.78], + [48099,0.834], + [48101,0.621], + [48103,0.875], + [48105,0.754], + [48107,0.721], + [48109,0.572], + [48111,0.74], + [48113,0.829], + [48115,0.736], + [48117,0.783], + [48119,0.749], + [48121,0.914], + [48123,0.662], + [48125,0.727], + [48127,0.625], + [48129,0.695], + [48131,0.69], + [48133,0.67], + [48135,0.839], + [48137,0.558], + [48139,0.868], + [48141,0.798], + [48143,0.823], + [48145,0.642], + [48147,0.773], + [48149,0.642], + [48151,0.692], + [48153,0.741], + [48155,0.69], + [48157,0.914], + [48159,0.759], + [48161,0.74], + [48163,0.659], + [48165,0.78], + [48167,0.853], + [48169,0.82], + [48171,0.749], + [48173,0.824], + [48175,0.697], + [48177,0.742], + [48179,0.748], + [48181,0.785], + [48183,0.813], + [48185,0.77], + [48187,0.839], + [48189,0.772], + [48191,0.64], + [48193,0.721], + [48195,0.818], + [48197,0.706], + [48199,0.81], + [48201,0.844], + [48203,0.715], + [48205,0.865], + [48207,0.606], + [48209,0.891], + [48211,0.843], + [48213,0.747], + [48215,0.804], + [48217,0.757], + [48219,0.789], + [48221,0.828], + [48223,0.784], + [48225,0.693], + [48227,0.786], + [48229,0.756], + [48231,0.801], + [48233,0.793], + [48235,0.708], + [48237,0.745], + [48239,0.803], + [48241,0.729], + [48243,0.665], + [48245,0.724], + [48247,0.605], + [48249,0.528], + [48251,0.851], + [48253,0.802], + [48255,0.759], + [48257,0.837], + [48259,0.889], + [48261,0.558], + [48263,0.773], + [48265,0.775], + [48267,0.661], + [48269,0.896], + [48271,0.461], + [48273,0.811], + [48275,0.699], + [48277,0.716], + [48279,0.741], + [48281,0.781], + [48283,0.72], + [48285,0.698], + [48287,0.736], + [48289,0.72], + [48291,0.771], + [48293,0.716], + [48295,0.799], + [48297,0.613], + [48299,0.754], + [48301,0.833], + [48303,0.851], + [48305,0.73], + [48307,0.739], + [48309,0.806], + [48311,0.83], + [48313,0.714], + [48315,0.659], + [48317,0.746], + [48319,0.737], + [48321,0.726], + [48323,0.679], + [48325,0.725], + [48327,0.708], + [48329,0.865], + [48331,0.7], + [48333,0.702], + [48335,0.783], + [48337,0.77], + [48339,0.886], + [48341,0.846], + [48343,0.691], + [48345,0.706], + [48347,0.791], + [48349,0.763], + [48351,0.725], + [48353,0.76], + [48355,0.808], + [48357,0.808], + [48359,0.801], + [48361,0.792], + [48363,0.787], + [48365,0.726], + [48367,0.867], + [48369,0.742], + [48371,0.727], + [48373,0.72], + [48375,0.804], + [48377,0.517], + [48379,0.687], + [48381,0.865], + [48383,0.798], + [48385,0.538], + [48387,0.602], + [48389,0.727], + [48391,0.759], + [48393,0.857], + [48395,0.76], + [48397,0.909], + [48399,0.701], + [48401,0.736], + [48403,0.647], + [48405,0.696], + [48407,0.76], + [48409,0.799], + [48411,0.714], + [48413,0.739], + [48415,0.791], + [48417,0.768], + [48419,0.702], + [48421,0.751], + [48423,0.823], + [48425,0.793], + [48427,0.756], + [48429,0.787], + [48431,0.86], + [48433,0.702], + [48435,0.7], + [48437,0.748], + [48439,0.876], + [48441,0.815], + [48443,0.658], + [48445,0.77], + [48447,0.696], + [48449,0.749], + [48451,0.78], + [48453,0.884], + [48455,0.709], + [48457,0.692], + [48459,0.75], + [48461,0.706], + [48463,0.681], + [48465,0.771], + [48467,0.75], + [48469,0.788], + [48471,0.845], + [48473,0.823], + [48475,0.768], + [48477,0.702], + [48479,0.736], + [48481,0.72], + [48483,0.819], + [48485,0.794], + [48487,0.741], + [48489,0.76], + [48491,0.889], + [48493,0.861], + [48495,0.775], + [48497,0.836], + [48499,0.75], + [48501,0.861], + [48503,0.767], + [48505,0.757], + [48507,0.622], + [49001,0.798], + [49003,0.826], + [49005,0.874], + [49007,0.753], + [49009,0.779], + [49011,0.894], + [49013,0.801], + [49015,0.772], + [49017,0.738], + [49019,0.763], + [49021,0.863], + [49023,0.835], + [49025,0.774], + [49027,0.814], + [49029,0.908], + [49031,0.667], + [49033,0.872], + [49035,0.873], + [49037,0.566], + [49039,0.812], + [49041,0.796], + [49043,0.92], + [49045,0.86], + [49047,0.83], + [49049,0.915], + [49051,0.914], + [49053,0.818], + [49055,0.693], + [49057,0.857], + [50001,0.732], + [50003,0.684], + [50005,0.649], + [50007,0.814], + [50009,0.51], + [50011,0.713], + [50013,0.746], + [50015,0.75], + [50017,0.663], + [50019,0.601], + [50021,0.675], + [50023,0.701], + [50025,0.677], + [50027,0.704], + [51001,0.674], + [51003,0.82], + [51005,0.648], + [51007,0.689], + [51009,0.694], + [51011,0.687], + [51013,0.894], + [51015,0.73], + [51017,0.552], + [51019,0.728], + [51021,0.681], + [51023,0.781], + [51025,0.684], + [51027,0.543], + [51029,0.649], + [51031,0.726], + [51033,0.795], + [51035,0.627], + [51036,0.693], + [51037,0.564], + [51041,0.847], + [51043,0.785], + [51045,0.744], + [51047,0.796], + [51049,0.704], + [51051,0.587], + [51053,0.744], + [51057,0.724], + [51059,0.892], + [51061,0.823], + [51063,0.668], + [51065,0.777], + [51067,0.703], + [51069,0.784], + [51071,0.69], + [51073,0.766], + [51075,0.83], + [51077,0.617], + [51079,0.793], + [51081,0.659], + [51083,0.552], + [51085,0.826], + [51087,0.825], + [51089,0.649], + [51091,0.519], + [51093,0.787], + [51095,0.825], + [51097,0.708], + [51099,0.865], + [51101,0.824], + [51103,0.688], + [51105,0.59], + [51107,0.914], + [51109,0.77], + [51111,0.509], + [51113,0.718], + [51115,0.673], + [51117,0.594], + [51119,0.723], + [51121,0.846], + [51125,0.728], + [51127,0.863], + [51131,0.687], + [51133,0.692], + [51135,0.648], + [51137,0.783], + [51139,0.616], + [51141,0.599], + [51143,0.685], + [51145,0.841], + [51147,0.616], + [51149,0.824], + [51153,0.903], + [51155,0.719], + [51157,0.707], + [51159,0.622], + [51161,0.795], + [51163,0.677], + [51165,0.722], + [51167,0.606], + [51169,0.552], + [51171,0.721], + [51173,0.625], + [51175,0.728], + [51177,0.855], + [51179,0.904], + [51181,0.727], + [51183,0.669], + [51185,0.656], + [51187,0.79], + [51191,0.701], + [51193,0.728], + [51195,0.668], + [51197,0.659], + [51199,0.857], + [51510,0.888], + [51520,0.728], + [51530,0.692], + [51540,0.825], + [51550,0.855], + [51570,0.761], + [51580,0.694], + [51590,0.699], + [51595,0.714], + [51600,0.897], + [51610,0.902], + [51620,0.679], + [51630,0.843], + [51640,0.658], + [51650,0.806], + [51660,0.817], + [51670,0.716], + [51678,0.733], + [51680,0.776], + [51683,0.848], + [51685,0.911], + [51690,0.709], + [51700,0.807], + [51710,0.832], + [51720,0.656], + [51730,0.699], + [51735,0.834], + [51740,0.786], + [51750,0.809], + [51760,0.795], + [51770,0.752], + [51775,0.786], + [51790,0.736], + [51800,0.828], + [51810,0.869], + [51820,0.71], + [51830,0.798], + [51840,0.753], + [53001,0.751], + [53003,0.761], + [53005,0.819], + [53007,0.78], + [53009,0.701], + [53011,0.848], + [53013,0.661], + [53015,0.765], + [53017,0.804], + [53019,0.595], + [53021,0.823], + [53023,0.693], + [53025,0.782], + [53027,0.715], + [53029,0.819], + [53031,0.723], + [53033,0.876], + [53035,0.838], + [53037,0.844], + [53039,0.709], + [53041,0.74], + [53043,0.767], + [53045,0.747], + [53047,0.713], + [53049,0.695], + [53051,0.736], + [53053,0.841], + [53055,0.79], + [53057,0.795], + [53059,0.7], + [53061,0.861], + [53063,0.816], + [53065,0.705], + [53067,0.822], + [53069,0.714], + [53071,0.789], + [53073,0.817], + [53075,0.845], + [53077,0.781], + [54001,0.657], + [54003,0.798], + [54005,0.615], + [54007,0.546], + [54009,0.693], + [54011,0.744], + [54013,0.508], + [54015,0.579], + [54017,0.625], + [54019,0.662], + [54021,0.618], + [54023,0.614], + [54025,0.653], + [54027,0.571], + [54029,0.692], + [54031,0.64], + [54033,0.738], + [54035,0.673], + [54037,0.82], + [54039,0.728], + [54041,0.622], + [54043,0.628], + [54045,0.641], + [54047,0.443], + [54049,0.719], + [54051,0.615], + [54053,0.613], + [54055,0.672], + [54057,0.671], + [54059,0.567], + [54061,0.824], + [54063,0.597], + [54065,0.702], + [54067,0.657], + [54069,0.672], + [54071,0.447], + [54073,0.681], + [54075,0.448], + [54077,0.668], + [54079,0.77], + [54081,0.678], + [54083,0.578], + [54085,0.549], + [54087,0.603], + [54089,0.628], + [54091,0.701], + [54093,0.665], + [54095,0.483], + [54097,0.648], + [54099,0.597], + [54101,0.575], + [54103,0.523], + [54105,0.629], + [54107,0.723], + [54109,0.62], + [55001,0.646], + [55003,0.631], + [55005,0.709], + [55007,0.672], + [55009,0.787], + [55011,0.694], + [55013,0.691], + [55015,0.805], + [55017,0.739], + [55019,0.62], + [55021,0.755], + [55023,0.645], + [55025,0.847], + [55027,0.737], + [55029,0.733], + [55031,0.737], + [55033,0.758], + [55035,0.784], + [55037,0.666], + [55039,0.74], + [55041,0.663], + [55043,0.716], + [55045,0.723], + [55047,0.685], + [55049,0.734], + [55051,0.629], + [55053,0.675], + [55055,0.756], + [55057,0.696], + [55059,0.798], + [55061,0.71], + [55063,0.771], + [55065,0.681], + [55067,0.652], + [55069,0.697], + [55071,0.72], + [55073,0.745], + [55075,0.69], + [55077,0.675], + [55078,0.648], + [55079,0.759], + [55081,0.696], + [55083,0.733], + [55085,0.703], + [55087,0.788], + [55089,0.804], + [55091,0.69], + [55093,0.795], + [55095,0.726], + [55097,0.77], + [55099,0.63], + [55101,0.773], + [55103,0.632], + [55105,0.766], + [55107,0.643], + [55109,0.831], + [55111,0.739], + [55113,0.671], + [55115,0.686], + [55117,0.753], + [55119,0.621], + [55121,0.704], + [55123,0.619], + [55125,0.685], + [55127,0.798], + [55129,0.689], + [55131,0.772], + [55133,0.817], + [55135,0.707], + [55137,0.665], + [55139,0.775], + [55141,0.679], + [56001,0.86], + [56003,0.71], + [56005,0.868], + [56007,0.74], + [56009,0.778], + [56011,0.747], + [56013,0.722], + [56015,0.679], + [56017,0.748], + [56019,0.765], + [56021,0.808], + [56023,0.815], + [56025,0.814], + [56027,0.65], + [56029,0.772], + [56031,0.687], + [56033,0.715], + [56035,0.877], + [56037,0.834], + [56039,0.853], + [56041,0.848], + [56043,0.723], + [56045,0.747] + ] +} diff --git a/examples/global-fertility-mortality-alcohol.r b/examples/global-fertility-mortality-alcohol.r new file mode 100644 index 0000000..814a0e5 --- /dev/null +++ b/examples/global-fertility-mortality-alcohol.r @@ -0,0 +1,27 @@ +#!/usr/bin/env Rscript + + + +setwd( paste(this.path::initwd,'/../',sep='') ) +source('src/masterset.r') + + + +#--------[ Load Data Sets]--------# +masterset_load('data/global/meta/countries.json') +masterset_load('data/global/health/drugs/alcohol-consumption.json') +masterset_load('data/global/health/mortality-rate/mortality-rate-total-cia.json') +masterset_load('data/global/demographics/fertility-rate.json') + + + +#--------[ Create Graph ]--------# +masterset_graph_init( g_plab = 'Fertility vs. Mortality, and Alcohol Consumption' ) + +masterset_graph_points( + g_xvar = masterset$fertility.rate, + g_yvar = masterset$mortality.rate.total.cia, + g_size = masterset$alcohol.consumption +) + +masterset_graph_save( 'examples/global-fertility-mortality-alcohol.svg' ) \ No newline at end of file diff --git a/examples/global-fertility-mortality-alcohol.svg b/examples/global-fertility-mortality-alcohol.svg new file mode 100644 index 0000000..2a3786f --- /dev/null +++ b/examples/global-fertility-mortality-alcohol.svg @@ -0,0 +1,433 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Afghanistan +Albania +Algeria +Angola +Austria +Azerbaijan +Bahamas +Bahrain +Barbados +Belarus +Belgium +Belize +Benin +Bhutan +Bolivia +Botswana +Brunei +Bulgaria +Burkina Faso +Burundi +Cameroon +Canada +Cape Verde +Central African Republic +Chad +Chile +China +Colombia +Comoros +DR Congo +Congo +Costa Rica +Côte d'Ivoire +Croatia +Cuba +Cyprus +Czech Republic +Egypt +Equatorial Guinea +Eritrea +Estonia +Eswatini +Ethiopia +Fiji +Finland +Gabon +Gambia +Georgia +Germany +Ghana +Greece +Grenada +Guatemala +Guinea +Guinea-Bissau +Guyana +Haiti +Honduras +Hungary +Iceland +India +Indonesia +Iran +Iraq +Israel +Italy +Jamaica +Japan +Jordan +Kazakhstan +Kenya +South Korea +Kuwait +Kyrgyz Republic +Laos +Latvia +Lesotho +Liberia +Libya +Lithuania +Luxembourg +Madagascar +Malawi +Maldives +Mali +Malta +Mauritania +Mauritius +Moldova +Mongolia +Montenegro +Morocco +Mozambique +Myanmar +Namibia +Nepal +Niger +Nigeria +Norway +Oman +Pakistan +Panama +Papua New Guinea +Paraguay +Peru +Philippines +Poland +Portugal +Qatar +Romania +Russia +Rwanda +Saint Lucia +São Tomé and Príncipe +Saudi Arabia +Senegal +Serbia +Seychelles +Sierra Leone +Singapore +Slovakia +Slovenia +Solomon Islands +Somalia +South Africa +Spain +Sudan +Suriname +Switzerland +Syria +Tajikistan +Tanzania +Thailand +Timor-Leste +Togo +Tonga +Trinidad and Tobago +Uganda +Ukraine +United Arab Emirates +United States +Uzbekistan +Vanuatu +Venezuela +Yemen +Zambia +Zimbabwe +● Size: Alcohol Consumption (litres per-capita per-year) + + + +4 +8 +12 +16 + + + + + + + + + + +1 +2 +3 +4 +5 +6 +Total Fertility Rate (children/woman) +Mortality Rate (deaths/1k population) + +Country Metadata + + + + + + + + + + + + +Africa +Asia +Europe +North America +Oceania +South America +Fertility vs. Mortality, and Alcohol Consumption + + diff --git a/examples/global-gdp-iq-fertiliaty.r b/examples/global-gdp-iq-fertiliaty.r new file mode 100644 index 0000000..516ac51 --- /dev/null +++ b/examples/global-gdp-iq-fertiliaty.r @@ -0,0 +1,30 @@ +#!/usr/bin/env Rscript + + + +setwd( paste(this.path::initwd,'/../',sep='') ) +source('src/masterset.r') + + + +#--------[ Load Data Sets]--------# +masterset_load('data/global/meta/countries.json') +masterset_load('data/global/economics/gdp/gdp-ppp/gdp-ppp-pc-cia.json') +masterset_load('data/global/health/psychology/intelligence-quotent.json') +masterset_load('data/global/demographics/fertility-rate.json') +masterset_load('data/global/politics/governance/democracy-index/democracy-index-regime.json') + + + +#--------[ Create Graph ]--------# +masterset_graph_init( g_plab = 'IQ vs. GDP, and Fertility Rate by Regime Type' ) + +masterset_graph_points( + g_xvar = masterset$gdp.ppp.pc.cia, + g_yvar = masterset$iq, + g_size = masterset$fertility.rate, + g_col = masterset$democracy.regime + #g_xlog = TRUE +) + +masterset_graph_save('examples/global-gdp-iq-fertility.svg') diff --git a/examples/historical-us-social-trajectory.r b/examples/historical-us-social-trajectory.r new file mode 100644 index 0000000..83b6ddf --- /dev/null +++ b/examples/historical-us-social-trajectory.r @@ -0,0 +1,71 @@ +#!/usr/bin/env Rscript + + + +setwd( paste(this.path::initwd,'/../',sep='') ) +source('src/masterset.r') + + + +#--------[ Load Data Sets]--------# +masterset_load('data/historical/united-states/culture/marriage/us-marriage-rate.json') +masterset_load('data/historical/united-states/culture/divorce/rate/us-divorce-rate-crude.json') +masterset_load('data/historical/united-states/culture/divorce/rate/us-divorce-rate-real.json') +masterset_load('data/historical/united-states/demographics/fertility/us-fertility-total-rate.json') +masterset_load('data/historical/united-states/culture/families/us-families-children-oneparent-mother-rate.json') +masterset_load('data/historical/united-states/crime/us-crime-total-rate.json') +masterset_load('data/historical/united-states/economics/welfare/us-welfare-total-percapita.json') +masterset_load('data/historical/united-states/economics/debt/us-debt-gdp.json') +masterset_load('data/historical/united-states/culture/religion/practice/us-religion-none.json') + + + +#--------[ Process Data ]--------# + +# Values considered socially positive are left normal (eg high marriage rate is considered good) +# Values considered socially negative are inverted (eg, low crime rate is considered good) + +masterset_new( + new_key = 'us.social.trajectory', + new_name = 'Social Trajectory', + new_units = 'trajectory', + new_data = masterset_average(data.frame( + masterset$us.marriage.rate, + masterset_rev(masterset$us.divorce.rate.crude), + masterset$us.fertility.total.rate, + masterset_rev(masterset$us.families.children.oneparent.mother.rate), + masterset_rev(masterset$us.crime.total.rate), + masterset_rev(masterset$us.welfare.total.percapita), + masterset_rev(masterset$us.debt.gdp), + masterset_rev(masterset$us.religion.none) + )) +) + + + +#--------[ Create Graph ]--------# +masterset_graph_init( g_plab = 'United States Social Trajectory (Biology > Culture > Ideology)', g_norm=TRUE) + +masterset_graph_event( 'World War I', 1914, 1918 ) +masterset_graph_event( '19th Amendment (Female Sufferage)', 1920 ) +masterset_graph_event( 'Great Depression', 1929, 1935 ) +masterset_graph_event( 'World War II', 1938, 1945 ) +masterset_graph_event( 'Birth Control pill', 1960 ) +masterset_graph_event( 'No Fault Divorce (California)', 1969 ) +masterset_graph_event( 'No Fault Divorce (National)', 1977 ) +masterset_graph_event( '9/11 Attack', 2001 ) +masterset_graph_event( 'Great Ressession', 2008, 2012 ) +masterset_graph_event( 'Covid-19 Pandemic', 2019, 2023 ) + +masterset_graph_line( g_yvar=masterset$us.marriage.rate, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.divorce.rate.crude, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.divorce.rate.real, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.fertility.total.rate, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.families.children.oneparent.mother.rate, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.crime.total.rate, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.debt.gdp, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.welfare.total.percapita, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.religion.none, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$us.social.trajectory ) + +masterset_graph_save( 'examples/historical-us-social-trajectory.svg' ) diff --git a/examples/lifespan-sexual-market-value.r b/examples/lifespan-sexual-market-value.r new file mode 100644 index 0000000..b3246dd --- /dev/null +++ b/examples/lifespan-sexual-market-value.r @@ -0,0 +1,78 @@ +#!/usr/bin/env Rscript + + + + +setwd( paste(this.path::initwd,'/../',sep='') ) +source('src/masterset.r') + + + + +#--------[ Load Data Sets]--------# +masterset_load('data/lifespan/generic/health/fertility/female/fertility-female-pregnancy.json') +masterset_load('data/lifespan/generic/health/fertility/female/fertility-female-sterility.json') +masterset_load('data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-female.json') +masterset_load('data/lifespan/generic/health/aging/facial-aging-trajectory-female.json') +masterset_load('data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-female.json') +masterset_load('data/lifespan/generic/health/hormones/estrogen-female.json') + +masterset_load('data/lifespan/united-states/economics/income/individual/us-income-individual-mean-male.json') +masterset_load('data/lifespan/generic/health/fertility/male/fertility-male-sperm-totalmotility.json') +masterset_load('data/lifespan/generic/dating/okcupid/okcupid-looks-preference-distance-male.json') +masterset_load('data/lifespan/generic/health/aging/facial-aging-trajectory-male.json') +masterset_load('data/lifespan/generic/health/aging/facial-aging-trajectory-cumulative-male.json') +masterset_load('data/lifespan/generic/health/hormones/testosterone-male.json') + + + + +#--------[ Process Data ]--------# +masterset_new( + new_key = 'smv.female', + new_name = 'Female Sexual Market Value', + new_units = 'smv', + new_data = masterset_average(data.frame( + masterset$fertility.female.pregnancy, + masterset_rev(masterset$fertility.female.sterility), + masterset$estrogen.free.female, + masterset_rev(masterset$okcupid.looks.distance.female), + masterset_rev(masterset$aging.facial.trajectory.cumulative.female) + )) +) + +masterset_new( + new_key = 'smv.male', + new_name = 'Male Sexual Market Value', + new_units = 'smv', + new_data = masterset_average(data.frame( + masterset$us.income.individual.mean.male, + masterset$fertility.male.sperm.totalmotility, + masterset$testosterone.free.male, + masterset_rev(masterset$ok.cupid.looks.distance.male), + masterset_rev(masterset$aging.facial.trajectory.cumulative.male) + )) +) + + + + +#--------[ Create Graph ]--------# +masterset_graph_init( g_plab = 'Sexual Marketplace Value' ) + +masterset_graph_line( g_yvar=masterset$fertility.female.pregnancy, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$fertility.female.sterility, g_alpha=0.2, g_rev=TRUE) +masterset_graph_line( g_yvar=masterset$estrogen.free.female, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$aging.facial.trajectory.female, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$okcupid.looks.distance.female, g_alpha=0.2 ) + +masterset_graph_line( g_yvar=masterset$us.income.individual.mean.male, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$fertility.male.sperm.totalmotility, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$testosterone.free.male, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$aging.facial.tragectory.male, g_alpha=0.2 ) +masterset_graph_line( g_yvar=masterset$ok.cupid.looks.distance.male, g_alpha=0.2 ) + +masterset_graph_line( g_yvar=masterset$smv.female ) +masterset_graph_line( g_yvar=masterset$smv.male ) + +masterset_graph_save('examples/lifespan-sexual-market-value.svg') diff --git a/examples/regional-us-education-income.r b/examples/regional-us-education-income.r new file mode 100644 index 0000000..c6f501a --- /dev/null +++ b/examples/regional-us-education-income.r @@ -0,0 +1,29 @@ +#!/usr/bin/env Rscript + + + +setwd( paste(this.path::initwd,'/../',sep='') ) +source('src/masterset.r') + + + +#--------[ Load Data Sets]--------# +masterset_load('data/regional/united-states/meta/us-counties.json') +masterset_load('data/regional/united-states/economics/income/us-income-individual-mean-2019.json') +masterset_load('data/regional/united-states/education/us-education-bachelor-2019.json') +masterset_load('data/regional/united-states/technology/us-technology-broadband-2019.json') +masterset_load('data/regional/united-states/demographics/race/us-race-black-2019.json') + + + +#--------[ Create Graph ]--------# +masterset_graph_init( g_plab = 'Education vs. Income Per-Capita') + +masterset_graph_points( + g_xvar = masterset$us.education.bachelor.2019, + g_yvar = masterset$us.income.individual.mean.2019, + g_col = masterset$us.technology.broadband.2019, + g_size = masterset$us.race.black.2019 +) + +masterset_graph_save( 'examples/regional-us-education-income.svg' ) diff --git a/examples/regional-us-population-politics.r b/examples/regional-us-population-politics.r new file mode 100644 index 0000000..2299770 --- /dev/null +++ b/examples/regional-us-population-politics.r @@ -0,0 +1,40 @@ +#!/usr/bin/env Rscript + + + +setwd( paste(this.path::initwd,'/../',sep='') ) +source('src/masterset.r') + + + +#--------[ Load Data Sets]--------# +masterset_load('data/regional/united-states/meta/us-counties.json') +masterset_load('data/regional/united-states/economics/income/us-income-household-mean-2019.json') +masterset_load('data/regional/united-states/politics/elections/election-presidential-2020/us-election-presidential-2020-swing.json') +masterset_load('data/regional/united-states/demographics/population/us-population-2019.json') +masterset_load('data/regional/united-states/geography/us-area-land-2013.json') + + + +#--------[ Process Data ]--------# +masterset_new( + new_key = 'us.population.density', + new_name = 'Population Density', + new_units = 'people/km²', + new_data = masterset$us.population.2019 / masterset$us.area.land.2013 +) + + + +#--------[ Create Graph ]--------# +masterset_graph_init( g_plab = 'Population Density vs Political Leaning') + +masterset_graph_points( + g_xvar = masterset$us.population.density, + g_yvar = masterset$us.election.presidential.2020.swing, + g_size = masterset$us.population.2019, + g_col = masterset$us.income.household.mean.2019, + g_xlog = TRUE +) + +masterset_graph_save( 'examples/regional-us-population-politics.svg' ) diff --git a/src/masterset.r b/src/masterset.r new file mode 100644 index 0000000..70b8fd1 --- /dev/null +++ b/src/masterset.r @@ -0,0 +1,46 @@ +#!/usr/bin/env Rscript + + + +#--------[ Required Libraries ]--------# +library('jsonlite') # JSON Library + +library('plyr') # Data Manipulation Library +library('zoo') # Data Manipulation Library (na.approx) +library('stringr') # Data Manipulation Library (str_replace) + +library('ggplot2') # Plot Main Library +library('ggrepel') # Plot Repel Label Library +library('ggforce') # Plot Additional Library +library('scales') # Plot Unit/Scale Library +library('svglite') # Plot Save SVG Library + + + +#--------[ Global Variables ]--------# +masterset <- data.frame() # Main Dataframe +masterset_scope <- '' # Data Scope +masterset_graph <- data.frame() # Graph Data Object +masterset_meta <- data.frame( # Metadata Dataframe + id = character(), + id.cat = character(), + name = character(), + description = character(), + units = character(), + year = integer(), + author = character() +) +masterset_conf <- data.frame( g_norm=FALSE ) # Global Config Variables + + + +#--------[ Load MasterSet Modules ]--------# +source('src/masterset_utils.r') # MasterSet Utilities +source('src/masterset_load.r') # MasterSet Load and Merge Data +source('src/masterset_graph_init.r') # Masterset Draw Graph-Init +source('src/masterset_graph_points.r') # Masterset Draw Graph-Points +source('src/masterset_graph_line.r') # MasterSet Draw Graph-Lines +source('src/masterset_graph_events.r') # MasterSet Draw Graph Historic Events +source('src/masterset_graph_save.r') # MasterSet Save Graph + + diff --git a/src/masterset_graph_events.r b/src/masterset_graph_events.r new file mode 100644 index 0000000..689b2aa --- /dev/null +++ b/src/masterset_graph_events.r @@ -0,0 +1,72 @@ +#!/usr/bin/env Rscript + + + +masterset_graph_event <- function( + g_xlab = NULL, + g_start = NULL, + g_end = NULL +){ + + + + #--------[ Draw Vertical Line ]--------# + if( is.null(g_end) ){ + masterset_graph <<- masterset_graph + geom_vline( + xintercept = g_start, + size = 1, + alpha = 0.1 + ) + }else{ +# masterset_graph <<- masterset_graph + geom_rect( + masterset_graph <<- masterset_graph + annotate( + geom = 'rect', + xmin = g_start, + ymin = Inf, + xmax = g_end, + ymax = -Inf, + color = alpha('#000000', 0.10), + fill = alpha('#000000', 0.05) + ) + } + + + #--------[ Draw Top Text Label ]--------# + masterset_graph <<- masterset_graph + annotate( + geom = 'text', + x = ifelse( is.null(g_end), g_start, (g_start+g_end)/2 ), + y = 0.9, + label = g_xlab, + angle = 90, + size = 2.5, + hjust = 0, + alpha = 0.5 + ) + + #--------[ Draw Middle Text Label ]--------# + masterset_graph <<- masterset_graph + annotate( + "text", + x = ifelse( is.null(g_end), g_start, (g_start+g_end)/2 ), + y = 0.5, + label = g_xlab, + angle = 90, + size = 2.5, + hjust = 0.5, + alpha = 0.5 + ) + + #--------[ Draw Bottom Text Label ]--------# + masterset_graph <<- masterset_graph + annotate( + "text", + x = ifelse( is.null(g_end), g_start, (g_start+g_end)/2 ), + y = 0.1, + label = g_xlab, + angle = 90, + size = 2.5, + hjust = 1, + alpha = 0.5 + ) + + + +} \ No newline at end of file diff --git a/src/masterset_graph_init.r b/src/masterset_graph_init.r new file mode 100644 index 0000000..7c3e821 --- /dev/null +++ b/src/masterset_graph_init.r @@ -0,0 +1,86 @@ +#!/usr/bin/env Rscript + + + +masterset_graph_init <- function( + g_xvar = NULL, # X-Axis variable + g_yvar = NULL, # Y-Axis variable + + g_plab = NULL, # Main plot title/label (default set none) + g_labs = NULL, # Plot-Point labels (default set by masterset_scope) + g_llab = NULL, # Legend title/lable (default set by masterset_scope) + g_col = NULL, # Plot-Colors (default set by masterset_scope) + g_size = NULL, # Plot-Point size (default set by dataset size) + g_cat = NULL, # Plot-Category circles (default set none) + g_src = NULL, # Show data source (default set true) + + g_xlab = NULL, # X-Axis title/label (default set by masterset_meta) + g_xunit = NULL, # X-Axis grid units (default set by masterset_meta) + g_xlog = NULL, # X-Axis rescale to logarithmic + + g_ylab = NULL, # Y-Axis title/label (default set by masterset_meta) + g_yunit = NULL, # Y-Axis grid units (default set by masterset_meta) + g_ylog = NULL, # Y-Axis rescale to logarithmic + + g_norm = NULL, # Normalize data (only applies to timescale data) + g_rev = NULL, # Invert Y-Axis data (only applise to timescale data) + + g_save = NULL # Save graph +) { + + + + #--------[ Global Config Variables ]--------# + if(masterset_scope=='lifespan'){ + if(!is.null(g_norm)){ masterset_conf$g_norm <<- g_norm }else{ masterset_conf$g_norm <<- TRUE } + }else{ + if(!is.null(g_norm)){ masterset_conf$g_norm <<- g_norm }else{ masterset_conf$g_norm <<- FALSE } + } + if(!is.null(g_xlog)){ masterset_conf$g_xlog <<- g_xlog }else{ masterset_conf$g_xlog <<- FALSE } + if(!is.null(g_ylog)){ masterset_conf$g_ylog <<- g_ylog }else{ masterset_conf$g_ylog <<- FALSE } + if(!is.null(g_src)) { masterset_conf$g_src <<- g_src }else{ masterset_conf$g_src <<- TRUE } + + + + #--------[ Create Graph ]--------# + masterset_graph <<- ggplot( + data=masterset + ) + + + + #--------[ Common Theme Elements ]--------# + masterset_graph <<- masterset_graph + theme( + plot.margin = unit(c(0.25, 0.25, 0.25, 0.25), 'inch'), + panel.border = element_rect(color='#000000', fill=NA), + panel.background = element_rect(fill='#cccccc'), + + plot.title = element_text(size=18, hjust=0.5), + plot.title.position = 'plot', + axis.title.x = element_text(size=13), + axis.title.y = element_text(size=13), + plot.caption = element_text(size=7), + ) + + + + #--------[ Draw Titles And Labels]--------# + if( !is.null(g_plab) ){ masterset_graph <<- masterset_graph + ggtitle(g_plab) } + if( !is.null(g_xlab) ){ masterset_graph <<- masterset_graph + xlab(g_xlab) } + if( !is.null(g_ylab) ){ masterset_graph <<- masterset_graph + ylab(g_ylab) } + + + + #--------[ Legend Theme And Position ]--------# + masterset_graph <<- masterset_graph + guides( fill = guide_legend(override.aes = list(size=8)) ) + + if( masterset_scope=='lifespan'){ + masterset_graph <<- masterset_graph + theme( legend.position = c(0.98,0.95), legend.justification = c(1,1) ) + }else if( masterset_scope=='historical'){ + masterset_graph <<- masterset_graph + theme( legend.position = c(0.02,0.5), legend.justification = c(0,0.5) ) + }else{ + masterset_graph <<- masterset_graph + theme( legend.position = c(0.98,0.05), legend.justification = c(1,0) ) + } + + +} diff --git a/src/masterset_graph_line.r b/src/masterset_graph_line.r new file mode 100644 index 0000000..5825b4a --- /dev/null +++ b/src/masterset_graph_line.r @@ -0,0 +1,85 @@ +#!/usr/bin/env Rscript + + + +masterset_graph_line <- function( + g_xvar = NULL, # X-Axis variable + g_yvar = NULL, # Y-Axis variable + + g_alpha = 1.0, # Line Alpha + + g_llab = NULL, # Legend title/lable (default set by masterset_scope) + + g_rev = FALSE # Invert Y-Axis data (only applise to timescale data) +){ + + + + #--------[ Global Variables ]--------# + if( is.null(g_xvar) ){ + if( masterset_scope == 'historical' ){ + g_xvar <- masterset$year + masterset_graph <<- masterset_graph + xlab('Year') + } + if( masterset_scope == 'lifespan' ){ + g_xvar <- masterset$age + masterset_graph <<- masterset_graph + xlab('Age') + } + } + + + + #--------[ Set Labels ]--------# + if( masterset_conf$g_norm ){ masterset_graph <<- masterset_graph + ylab('Normalised Variables') } + else{ masterset_graph <<- masterset_graph + ylab('Raw Variables') } + + if( g_rev ){ tmp_lab <- paste(get_meta(g_yvar)$name,"(inverted)") } + else{ tmp_lab <- get_meta(g_yvar)$name } + + if( length(unique(masterset_meta$id.cat)) > 1 ){ + masterset_graph <<- masterset_graph + scale_color_discrete( name = "Variables" ) + tmp_lab <- paste(get_meta(g_yvar)$id.cat, '|', tmp_lab ) + }else{ + masterset_graph <<- masterset_graph + scale_color_discrete( name = masterset_meta$id.cat[1] ) + } + + + + #--------[ Process Data ]--------# + g_yvar_temp <- g_yvar + if( masterset_conf$g_norm ){ g_yvar_temp <- masterset_norm(g_yvar_temp) } + if( g_rev ){ g_yvar_temp <- masterset_rev(g_yvar_temp) } + + + + #--------[ Graph Points ]--------# + masterset_graph <<- masterset_graph + geom_point( + aes( + x = g_xvar, + y = g_yvar_temp, + color = tmp_lab + ), + size = 1, + alpha = g_alpha + ) + + + + #--------[ Graph Lines ]--------# + masterset_graph <<- masterset_graph + geom_line( + aes( + x = g_xvar, + y = na.approx(g_yvar_temp, na.rm=FALSE), + color = tmp_lab + ), + alpha = g_alpha + ) + + + + #--------[ Draw Graph]--------# + print( masterset_graph ) + + + +} \ No newline at end of file diff --git a/src/masterset_graph_points.r b/src/masterset_graph_points.r new file mode 100644 index 0000000..d23a1c6 --- /dev/null +++ b/src/masterset_graph_points.r @@ -0,0 +1,210 @@ +#!/usr/bin/env Rscript + + + +masterset_graph_points <- function( + g_xvar = NULL, # X-Axis variable + g_yvar = NULL, # Y-Axis variable + + g_col = NULL, # Plot-Colors (default set by masterset_scope) + g_size = NULL, # Plot-Point size (default set by dataset size) + g_cat = NULL, # Plot-Category circles (default set none) + g_labs = NULL, # Plot-Point labels (default set by masterset_scope) + + g_llab = NULL, # Legend title/lable (default set by masterset_scope) + g_src = TRUE, # Show data source (default set true) + + g_xlab = NULL, # X-Axis title/label (default set by masterset_meta) + g_xunit = NULL, # X-Axis grid units (default set by masterset_meta) + g_xlog = FALSE, # X-Axis rescale to logarithmic + + g_ylab = NULL, # Y-Axis title/label (default set by masterset_meta) + g_yunit = NULL, # Y-Axis grid units (default set by masterset_meta) + g_ylog = FALSE # Y-Axis rescale to logarithmic + +){ + + + + #--------[ Process Data ]--------# + if( is.null(g_size) ){ + g_size_tmp = 8 + if( length(g_xvar) > 100 ){ g_size_tmp = 6 } + if( length(g_xvar) > 200 ){ g_size_tmp = 4 } + if( length(g_xvar) > 300 ){ g_size_tmp = 2 } + }else{ + g_size_tmp = 1 + (28 * masterset_norm(g_size)) + if( length(g_xvar) > 100 ){ g_size_tmp = 1 + (24 * masterset_norm(g_size)) } + if( length(g_xvar) > 200 ){ g_size_tmp = 1 + (20 * masterset_norm(g_size)) } + if( length(g_xvar) > 300 ){ g_size_tmp = 1 + (16 * masterset_norm(g_size)) } + } + + if( is.null(g_col) ){ + if( masterset_scope=='global' ){ g_col = masterset$country.continent } + if( masterset_scope=='regional/united-states' ){ g_col = masterset$us.county.state } + } + + if( is.null(g_labs) ){ + if( masterset_scope=='global' ){ g_labs = masterset$country.name.short } + if( masterset_scope=='regional/united-states' ){ g_labs = masterset$us.county.name } + } + + if( is.null(g_llab) ){ + if( is.null(g_col) ){ + if( masterset_scope=='global' ){ g_llab = 'Continent' } + if( masterset_scope=='regional/united-states' ){ g_llab = 'State' } + }else{ + g_llab = get_meta(g_col)$name + } + } + + + #--------[ Graph Best Fit ]--------# + masterset_graph <<- masterset_graph + stat_smooth( + aes( + x = g_xvar, + y = g_yvar + ), + size = 1, + method = 'loess', + geom = 'line', + se = FALSE, + color = '#000000', + alpha = 0.5, + na.rm = TRUE + ) + + + + + #--------[ Graph Points ]--------# + + + masterset_graph <<- masterset_graph + geom_point( + aes( + x = g_xvar, + y = g_yvar, + fill = g_col, + ), + color = '#000000', + shape = 21, + size = g_size_tmp, + alpha = 0.5 + ) + + + + #--------[ Graph Labels ]--------# + masterset_graph <<- masterset_graph + geom_text_repel( + aes( + x = g_xvar, + y = g_yvar, + ), + label = g_labs, + max.overlaps = 5, + size = 2.5, + hjust = 0, + alpha = 0.85, + na.rm = TRUE, + ) + + + + #--------[ Set X-Axis Scale ]--------# + if( is.null(g_xlab) ){ g_xlab = get_meta(g_xvar)$name } + if( is.null(g_xunit) ){ g_xunit = get_meta(g_xvar)$units } + if( g_xunit!='$' && g_xunit!='%'){ g_xlab = paste(g_xlab,' (',g_xunit,')',sep='') } + if( g_xlog ){ g_xlab = paste(g_xlab, " | Scale: log(10)", sep='')} + + if( g_xlog ){ + if( g_xunit=='$' ){ + masterset_graph <<- masterset_graph + scale_x_log10(labels=scales::dollar) + }else if( g_xunit=='%' ){ + masterset_graph <<- masterset_graph + scale_x_log10(labels=scales::percent) + }else if( nchar(g_xunit)<=4 ){ + masterset_graph <<- masterset_graph + scale_x_log10(labels=comma_format( suffix=paste(' ',g_xunit) )) + }else{ + masterset_graph <<- masterset_graph + scale_x_log10(labels=comma) + } + }else{ + if( g_xunit=='$' ){ + masterset_graph <<- masterset_graph + scale_x_continuous(labels=scales::dollar) + }else if( g_xunit=='%' ){ + masterset_graph <<- masterset_graph + scale_x_continuous(labels=scales::percent) + }else if( nchar(g_xunit)<=4 ){ + masterset_graph <<- masterset_graph + scale_x_continuous(labels=comma_format( suffix=paste(' ',g_xunit) )) + }else{ + masterset_graph <<- masterset_graph + scale_x_continuous(labels=comma) + } + } + + + + #--------[ Set Y-Axis Scale ]--------# + if( is.null(g_ylab) ){ g_ylab = get_meta(g_yvar)$name } + if( is.null(g_yunit) ){ g_yunit = get_meta(g_yvar)$units } + if( g_yunit!='$' && g_yunit!='%'){ g_ylab = paste(g_ylab,' (',g_yunit,')',sep='') } + if( g_ylog ){ g_ylab = paste(g_ylab, " | Scale: log(10)", sep='')} + + if( g_ylog ){ + if( g_yunit=='$' ){ + masterset_graph <<- masterset_graph + scale_y_log10(labels=scales::dollar) + }else if( g_yunit=='%' ){ + masterset_graph <<- masterset_graph + scale_y_log10(labels=scales::percent) + }else if( nchar(g_yunit)<=4 ){ + masterset_graph <<- masterset_graph + scale_y_log10(labels=comma_format( suffix=paste(' ',g_yunit) )) + }else{ + masterset_graph <<- masterset_graph + scale_y_log10(labels=comma) + } + }else{ + if( g_yunit=='$' ){ + masterset_graph <<- masterset_graph + scale_y_continuous(labels=scales::dollar) + }else if( g_yunit=='%' ){ + masterset_graph <<- masterset_graph + scale_y_continuous(labels=scales::percent) + }else if( nchar(g_yunit)<=4 ){ + masterset_graph <<- masterset_graph + scale_y_continuous(labels=comma_format( suffix=paste(' ',g_yunit) )) + }else{ + masterset_graph <<- masterset_graph + scale_y_continuous(labels=comma) + } + } + + + + #--------[ Graph Titles ]--------# + masterset_graph <<- masterset_graph + xlab(g_xlab) + masterset_graph <<- masterset_graph + ylab(g_ylab) + + if( !is.null(g_size) ){ + g_sizelab = paste('● Size: ',get_meta(g_size)$name,' (',get_meta(g_size)$units,")", sep='') + masterset_graph <<- masterset_graph + annotate( + geom = 'text', + label = g_sizelab, + x = Inf, + y = -Inf, + hjust = 1.1, + vjust = -1.5 + ) + } + + if( is.numeric(g_col) ){ + masterset_graph <<- masterset_graph + scale_fill_continuous( + name = g_llab, + low = "blue", + high = "red" + ) + }else{ + if( length(unique(g_col)) < 10 ){ + masterset_graph <<- masterset_graph + scale_fill_discrete( name=g_llab ) + }else{ + masterset_graph <<- masterset_graph + guides(fill='none') + } + } + + + + #--------[ Draw Graph ]--------# + print( masterset_graph ) + + + +} \ No newline at end of file diff --git a/src/masterset_graph_save.r b/src/masterset_graph_save.r new file mode 100644 index 0000000..3a8dd1d --- /dev/null +++ b/src/masterset_graph_save.r @@ -0,0 +1,24 @@ +#!/usr/bin/env Rscript + + + +masterset_graph_save <- function( + tmp_file = NULL +){ + + + + #--------[ Check Filename ]--------# + if( is.null(tmp_file) ){ + } + + + + #--------[ Save Graph To File ]--------# + ggsave( + filename = tmp_file, + plot = masterset_graph, + width = 1920/96, + height = 1080/96 + ) +} \ No newline at end of file diff --git a/src/masterset_load.r b/src/masterset_load.r new file mode 100644 index 0000000..7e6e37e --- /dev/null +++ b/src/masterset_load.r @@ -0,0 +1,149 @@ +#!/usr/bin/env Rscript + + + +#--------[ Load Data Function ]--------# +masterset_load <- function(filename) { + + + + #--------[ Load File Data ]--------# + fileData <- paste(readLines(filename), collapse=' ') + tmpData <- as.data.frame(fromJSON(fileData)$data) + + colnames(tmpData) <- tmpData[1,] + tmpData <- tmpData[-1,] + + + + #--------[ Process Data Bins ]--------# + if( colnames(tmpData)[1]=='age.bin' || colnames(tmpData)[1]=='year.bin' ){ + + if( colnames(tmpData)[1]=='age.bin' ){ tmp_bin <- 'age.bin' } + if( colnames(tmpData)[1]=='year.bin' ){ tmp_bin <- 'year.bin' } + + for( i in 1:length(tmpData[,tmp_bin]) ){ + if( grepl('-', tmpData[,tmp_bin][i], fixed=TRUE) ){ + tmp_row <- strsplit(tmpData[,tmp_bin][i], split='-') + tmpData[,tmp_bin][i] <- (as.numeric(tmp_row[[1]][1]) + as.numeric(tmp_row[[1]][2]))/2 + } + if( grepl('+', tmpData[,tmp_bin][i], fixed=TRUE) ){ + tmp_row <- str_replace(tmpData[,tmp_bin][i], '\\+', '') + tmpData[,tmp_bin][i] <- as.numeric(tmp_row) + } + if( grepl('>', tmpData[,tmp_bin][i], fixed=TRUE) ){ + tmp_row <- str_replace(tmpData[,tmp_bin][i], '>', '') + tmpData[,tmp_bin][i] <- as.numeric(tmp_row) + } + if( grepl('<', tmpData[,tmp_bin][i], fixed=TRUE) ){ + tmp_row <- str_replace(tmpData[,tmp_bin][i], '<', '') + tmpData[,tmp_bin][i] <- as.numeric(tmp_row) + } + } + + if( colnames(tmpData)[1]=='age.bin' ){ colnames(tmpData)[1] <- 'age' } + if( colnames(tmpData)[1]=='year.bin' ){ colnames(tmpData)[1] <- 'year' } + } + + + + #--------[ Process Each Data Column ]--------# + for (i in colnames(tmpData)){ + if (suppressWarnings( !is.na(as.numeric( tmpData[[i]][1] )) )) { + tmpData[[i]] <- as.numeric(tmpData[[i]]) + } + + #--------[ Compile Metadata ]--------# + if ( + i != 'country.name' && + i != 'county.fips' && + i != 'year' && + i != 'age' + ){ + tmpMeta <- fromJSON(fileData)$metadata + masterset_meta <<- rbind(masterset_meta, data.frame( + id = i, + id.cat = tmpMeta$scope, + name = tmpMeta$name, + description = tmpMeta$description, + units = tmpMeta$units, + year = tmpMeta$year, + author = tmpMeta$author[1], + source = tmpMeta$source[1] + )) + } + } + + + + #--------[ Merge Current Global Data ]--------# + if (grepl('global', filename, fixed=TRUE)) { + message(paste('[MASTERSET] importing global data -> ',filename)) + masterset_scope <<- 'global' + #--------[ Check country.name Column and Merge ]--------# + if ('country.name' %in% colnames(masterset)) { + masterset <<- merge( + masterset, + tmpData, + by.x = 'country.name' + ) + }else{ + masterset <<- tmpData + } + } + + + #--------[ Merge Historical Global Data ]--------# + if (grepl('historical', filename, fixed=TRUE)) { + message(paste('[MASTERSET] importing historical data -> ',filename)) + masterset_scope <<- 'historical' + #--------[ Check country.name Column and Merge ]--------# + if ('year' %in% colnames(masterset)) { + masterset <<- merge( + masterset, + tmpData, + by.x = 'year', + all = TRUE + ) + }else{ + masterset <<- tmpData + } + } + + + #--------[ Merge Country/United-States Data ]--------# + if (grepl('regional/united-states', filename, fixed=TRUE)) { + message(paste('[MASTERSET] importing regional/united-states data -> ',filename)) + masterset_scope <<- 'regional/united-states' + #--------[ Check country.name Column and Merge ]--------# + if ('us.county.fips' %in% colnames(masterset)) { + masterset <<- merge( + masterset, + tmpData, + by.x = 'us.county.fips' + ) + }else{ + masterset <<- tmpData + } + } + + + #--------[ Merge Lifespan Data ]--------# + if (grepl('lifespan', filename, fixed=TRUE)) { + message(paste('[MASTERSET] importing lifespan data -> ',filename)) + masterset_scope <<- 'lifespan' + #--------[ Check country.name Column and Merge ]--------# + if ('age' %in% colnames(masterset)) { + masterset <<- merge( + masterset, + tmpData, + by.x = 'age', + all = TRUE + ) + }else{ + masterset <<- tmpData + } + } + + +} diff --git a/src/masterset_utils.r b/src/masterset_utils.r new file mode 100644 index 0000000..fd5059d --- /dev/null +++ b/src/masterset_utils.r @@ -0,0 +1,74 @@ +#!/usr/bin/env Rscript + + + +#--------[ Get Metadata for Dataset ]--------# +get_meta <- function(tmp_var) { + for (col in colnames(masterset)){ + if ( identical(tmp_var, masterset[[col]]) ){ + return(masterset_meta[masterset_meta$id==col,]) + } + } +} + + + +#--------[ Normalise Data Values ]--------# +masterset_norm <- function(tmp_data) { + return( (tmp_data - min(tmp_data, na.rm=TRUE)) / (max(tmp_data, na.rm=TRUE)-min(tmp_data, na.rm=TRUE)) ) +} + + + +#--------[ Reverse Data Values ]--------# +masterset_rev <- function(tmp_data) { + return( max(tmp_data, na.rm=TRUE) - tmp_data ) +} + + + +#--------[ Interpolate NA Values ]--------# +masterset_est <- function(tmp_data) { + +} + + + +#--------[ Create New Dataset ]--------# +masterset_new <- function( + new_data, + new_key, + new_name, + new_units='' +){ + masterset[new_key] <<- new_data + masterset_meta[nrow(masterset_meta)+1,] <<- c( + id = new_key, + id.cat = ifelse(length(unique(masterset_meta$id.cat))>1, 'Generated', masterset_meta$id.cat[1] ), + name = new_name, + description = 'R Generated', + units = new_units, + year = format(Sys.Date(), "%Y"), + author = 'R-Script', + source = 'R-Script' + ) +} + + +#--------[ Averate Datasets ]--------# +masterset_average <- function( dataset ){ + + for( i in 1:ncol(dataset) ){ + NonNAindex <- which( !is.na(dataset[i]) ) + + dataset[1, i] <- dataset[min(NonNAindex),i] + dataset[nrow(dataset), i] <- dataset[max(NonNAindex),i] + + dataset[i] <- na.approx( dataset[i] ) + dataset[i] <- masterset_norm( dataset[i] ) + } + + tmp_dataset <- rowMeans( dataset ) + return( tmp_dataset ) +} +